diff --git a/.gitignore b/.gitignore index 7ad8025..b600b1c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ **/android/captures/ **/android/**/GeneratedPluginRegistrant.java **/android/.gradle +**/android/build/ +**/android/app/build/ **/android/gradlew **/android/gradlew.bat **/android/**/gradle-wrapper.jar diff --git a/CLAUDE.md b/CLAUDE.md index bc91830..1a03193 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -28,6 +28,17 @@ Display names are stored by the `onUserCreated` Cloud Function in `users/{uid}.d The app shows a **fuzzy compass** that gives the user an **indication** of where **claimed** and **unclaimed** postboxes are nearby (e.g. rough direction or "something in that direction"), **without** giving precise directions or exact locations. Goal: encourage exploration rather than turn-by-turn navigation. Implementation: `lib/fuzzy_compass.dart` — `to8Sectors(counts)` merges 16-wind into 8-wind sectors, `vagueLabel(count)` returns None/One/A few/Several. `_FuzzyCompassPainter` draws claimed sectors grey and unclaimed sectors red, with a North marker. `claimedCompassCounts` and `unclaimedCompassCounts` are returned by the `nearbyPostboxes` Cloud Function. Avoid showing exact bearings or distances that would allow pinpointing. +## Route Mode + +A player-facing flow ("Walk to a destination" on the Nearby tab) that lets the user pick a destination and walk to it, claiming en-route postboxes along the way. The destination is shown **precisely** (the user picked it); postboxes stay **fuzzy** (same applyUserClaims contract as Nearby — server strips `geopoint`/`geohash` before sending). Flow lives under `lib/route/`: + +- `route_session.dart`: a mutable session holder — start, destination, mode (corridor|detour), corridor metres (50–500), detour minutes (0–60), pace (walk 4.5 km/h or jog 8.5 km/h), and the most recent `routePostboxes` response. +- `destination_picker_screen.dart`: tap-on-map (via `PostboxMap.onTap`) AND a Nominatim search bar backed by `nominatim_service.dart` (UK-biased, 1 req/sec throttle, mandatory `User-Agent`). +- `route_preview_screen.dart`: pace `SegmentedButton`, corridor slider, extra-time slider (>0 switches mode to detour), debounced `routePostboxes` call, "X postboxes worth Y points" headline, "Start route" CTA. +- `live_route_screen.dart`: streaming GPS via `LocationService.positionStream()`, precise destination distance + bearing arrow + ETA at pace, fuzzy compass rotated to face the destination bearing (`route_compass_view.dart`), passive ambient layout. "Where now, postie?" button picks the highest-count fuzzy sector relative to the destination heading and fires a hint via James (player addresses James as "postie", James never refers to himself that way). Periodic `nearbyPostboxes` scan (≥12s OR ≥20m moved); when a returned box has `distance ≤ claimRadius && !claimedToday`, the reusable `ClaimQuizSheet` (extracted from `lib/claim.dart` into `lib/widgets/claim_quiz_sheet.dart`) is shown as a `compact:true` modal bottom sheet — same callables, same quiz, same anti-cheat path. 60s dedupe so the same postbox doesn't re-prompt after dismissal. On arrival (distance < 25 m), fires a local notification via `route_notifications.dart` (wraps `flutter_local_notifications`) then `pushReplacement`s to `route_completion_screen.dart`. +- Backend callable `routePostboxes` (`functions/src/routePostboxes.ts`) takes start/dest + mode + corridor or detour params, fetches via the same 9-cell geohash prefix pattern as `_lookupPostboxes.ts`, filters out the user's claimed-today set, then either sums `pointsForMonarch` over the corridor (`filterToCorridor` in `_routePlanner.ts`) OR runs the orienteering `beamSearchOrienteering` over the time ellipse (`filterToEllipse`). Returns ONLY `{ count, points, directDistanceM, budgetDistanceM, warnings }` — never postbox IDs, coords, or per-monarch breakdowns. 30 km destination cap. +- Shared algorithm module `functions/src/_routePlanner.ts` is reused by both the new callable and the internal CLI `functions/src/scripts/plan_route.ts` (single source of truth for the routing maths). + ## Problem reporting, admin review & OSM corrections Fully implemented end-to-end. @@ -41,7 +52,7 @@ Fully implemented end-to-end. ## Key paths - **App entry**: `lib/main.dart` → **if unauthenticated** → `_UnauthGate` → `Intro` (first run) or `LoginScreen`; **if authenticated** → `Home`. `Home` (`lib/home.dart`) is a `NavigationBar` + `IndexedStack` shell: tabs are **Nearby** (index 0), **Claim** (index 1), **Leaderboard** (index 2), **Friends** (index 3), **History** (index 4 — `ClaimHistoryScreen`, map/list `ViewToggle`). The AppBar `PopupMenuButton` has My reports, Admin · Reports (admins only), Settings, How to play. Named routes `/nearby`, `/claim`, `/friends`, `/leaderboard`, `/history`, `/settings` are retained for deep-link use (each wrapped in an auth guard). -- **Backend**: `functions/src/index.ts` exports `nearbyPostboxes`, `startScoring`, `updateDisplayName`, `onUserCreated`, `newDayScoreboard`, `registerFcmToken`, `onFriendAdded`, `userClaimHistory`, `submitReport`, `reviewReport`. Helper modules: `_lookupPostboxes.ts` (ngeohash + Firestore geohash prefix queries), `_getPoints.ts` (monarch → points: EIIR=2, GR/GVR/GVIR/SCOTTISH_CROWN=4, VR=7, EVIIR/CIIIR=9, EVIIIR=12; also `KNOWN_MONARCHS`, `pointsForMonarch`), `_leaderboardUtils.ts` (period key staleness, merge/sort helpers), `_nearbyUtils.ts` (`applyUserClaims` for per-user claim state), `_streakUtils.ts` (`computeNewStreak`), `_notifications.ts` (FCM send, notification eligibility helpers), `_recomputeScores.ts` (retroactive re-scoring after a cypher correction). `reports.ts` holds the two report callables + the pure helpers `buildOsmChange`, `parsePhotos`, `nextQuotaState`. `functions/set_admin.js` is a CLI to grant/revoke the `admin` custom claim. Friends list in `users/{uid}/friends` array; leaderboards updated by Cloud Functions in `leaderboards/{daily|weekly|monthly|lifetime}` documents. `reports/{id}` holds user-submitted data-problem reports (server-write only); `reportQuotas/{uid}` is the per-user daily submit-rate counter (server-only, never client-read). `fcmTokens/{uid}` stores FCM tokens (separate collection — not exposed via world-readable `users/{uid}` rules). `newDayScoreboard` scheduled at midnight London time; resets daily scores, rebuilds weekly/monthly from claims. +- **Backend**: `functions/src/index.ts` exports `nearbyPostboxes`, `startScoring`, `updateDisplayName`, `onUserCreated`, `newDayScoreboard`, `registerFcmToken`, `onFriendAdded`, `userClaimHistory`, `submitReport`, `reviewReport`, `routePostboxes`. Helper modules: `_lookupPostboxes.ts` (ngeohash + Firestore geohash prefix queries), `_getPoints.ts` (monarch → points: EIIR=2, GR/GVR/GVIR/SCOTTISH_CROWN=4, VR=7, EVIIR/CIIIR=9, EVIIIR=12; also `KNOWN_MONARCHS`, `pointsForMonarch`), `_leaderboardUtils.ts` (period key staleness, merge/sort helpers), `_nearbyUtils.ts` (`applyUserClaims` for per-user claim state), `_streakUtils.ts` (`computeNewStreak`), `_notifications.ts` (FCM send, notification eligibility helpers), `_recomputeScores.ts` (retroactive re-scoring after a cypher correction), `_routePlanner.ts` (pure orienteering + corridor filters + beam search; reused by `routePostboxes` and the `scripts/plan_route.ts` CLI). `reports.ts` holds the two report callables + the pure helpers `buildOsmChange`, `parsePhotos`, `nextQuotaState`. `functions/set_admin.js` is a CLI to grant/revoke the `admin` custom claim. Friends list in `users/{uid}/friends` array; leaderboards updated by Cloud Functions in `leaderboards/{daily|weekly|monthly|lifetime}` documents. `reports/{id}` holds user-submitted data-problem reports (server-write only); `reportQuotas/{uid}` is the per-user daily submit-rate counter (server-only, never client-read). `fcmTokens/{uid}` stores FCM tokens (separate collection — not exposed via world-readable `users/{uid}` rules). `newDayScoreboard` scheduled at midnight London time; resets daily scores, rebuilds weekly/monthly from claims. - **Postbox data source and storage**: Postbox data is **sourced from OpenStreetMap (OSM)**—e.g. Overpass API (`amenity=post_box`, UK area). **test.json** in the repo is a sample of the OSM/Overpass response: nodes with `type`, `id`, `lat`, `lon`, and `tags` (e.g. `amenity`, `ref`, `royal_cypher`, `post_box:type`, `collection_times`, `postal_code`). This data is **not** queried from OSM at app runtime; it is **ingested and stored in the cloud database** (Firestore). The app and existing Cloud Functions read from Firestore only. - **OSM→Firestore import pipeline**: Implemented in `functions/import_postboxes.js`. Run from the `functions/` directory: `node import_postboxes.js --project the-postbox-game`. Stores each postbox as `{ geohash (precision 9), geopoint, overpass_id, monarch?, reference?, county? }` in `postbox/{osm_}` with batch writes of 400. Use `--dry-run --limit 5` to preview. GEOHASH_PRECISION must remain 9 (maximum) so stored hashes match precision-8 prefix queries used by the 30 m claim scan. Postboxes added from accepted "missing postbox" reports live at `postbox/manual_{reportId}` with `source: 'user_report'`, `reportId`, and the same geohash/geopoint schema; an accepted cypher correction also adds `correctedBy`/`correctedAt` (and a future OSM re-import of the now-added node would need dedup against `manual_*` docs — not yet built). New Flutter deps for reporting: `firebase_storage`, `image_picker`, `exif`, `url_launcher`. - **Auth**: `UserRepository` + `AuthenticationBloc`; Google Sign-In + Email/Password; `firebase_options.dart` has Android, iOS, macOS, Web, and Windows configurations (generated by FlutterFire CLI). diff --git a/functions/backfill_lifetime_scores.js b/functions/backfill_lifetime_scores.js index ac73631..4071df7 100644 --- a/functions/backfill_lifetime_scores.js +++ b/functions/backfill_lifetime_scores.js @@ -279,20 +279,25 @@ async function main() { const chunk = updates.slice(i, i + BATCH_SIZE); const batch = db.batch(); for (const u of chunk) { + // Only stamp a period marker when the user actually has claims in that + // period. Writing today's marker for a user with 0 daily points would + // make shouldNotifyFirstClaim / shouldNotifyOvertake treat them as + // already-having-claimed-today and suppress legitimate friend + // notifications for the rest of the day. Matches the corresponding + // guard in functions/src/_recomputeScores.ts. + const userUpdate = { + uniquePostboxesClaimed: u.uniquePostboxesClaimed, + lifetimePoints: u.lifetimePoints, + dailyPoints: u.dailyPoints, + weeklyPoints: u.weeklyPoints, + monthlyPoints: u.monthlyPoints, + }; + if (u.dailyPoints > 0) userUpdate.dailyDate = today; + if (u.weeklyPoints > 0) userUpdate.weekStart = weekStart; + if (u.monthlyPoints > 0) userUpdate.monthStart = monthStart; batch.set( db.collection('users').doc(u.uid), - { - uniquePostboxesClaimed: u.uniquePostboxesClaimed, - lifetimePoints: u.lifetimePoints, - dailyPoints: u.dailyPoints, - weeklyPoints: u.weeklyPoints, - monthlyPoints: u.monthlyPoints, - // Markers so the Friends-only leaderboard doesn't zero out these - // totals on the staleness check (see leaderboard_screen.dart). - dailyDate: today, - weekStart, - monthStart, - }, + userUpdate, { merge: true } ); } diff --git a/functions/import_postboxes.js b/functions/import_postboxes.js index c8bbb92..5bf473b 100644 --- a/functions/import_postboxes.js +++ b/functions/import_postboxes.js @@ -271,12 +271,18 @@ async function main() { // Only persist the total count when importing without a --limit so the // stored value reflects the full dataset (not a subset used for testing). + // Read the actual collection count rather than `written` — that figure + // excludes both the docs we skipped (correctedBy) and the manual_* docs + // added by accepted missing-postbox reports, so using it as the lifetime + // leaderboard's "X of Y" denominator would silently undercount. if (opts.limit === Infinity) { + const countSnap = await col.count().get(); + const totalPostboxes = countSnap.data().count; await db.collection('meta').doc('stats').set( - { totalPostboxes: written }, + { totalPostboxes }, { merge: true } ); - console.log(`meta/stats.totalPostboxes updated to ${written.toLocaleString()}.`); + console.log(`meta/stats.totalPostboxes updated to ${totalPostboxes.toLocaleString()} (collection count).`); } } diff --git a/functions/src/_nearbyUtils.ts b/functions/src/_nearbyUtils.ts index 4732fe7..a533d28 100644 --- a/functions/src/_nearbyUtils.ts +++ b/functions/src/_nearbyUtils.ts @@ -4,6 +4,17 @@ import { LookupResult } from "./types"; export interface SlimPostbox { monarch?: string; claimedToday: boolean; + /** Metres from the user's scan position. Present whenever the underlying + * LookupResult computed a distance (always, in current callers). Omitted + * only as a defensive fallback — clients must treat absence as "unknown". + * + * Required for the Route Mode auto-claim trigger: it scans at 1 km radius + * for the fuzzy compass, then opens the claim sheet when any returned box + * is within the 30 m claim radius. Privacy impact is bounded — the user + * is at most `meters` from the box (≤ 2 km server cap), and they already + * have their own GPS fix, so multiple coordinated scans would be needed + * to triangulate exact postbox coordinates. */ + distance?: number; } export interface UserSpecificResult { @@ -28,12 +39,15 @@ export function applyUserClaims( full: LookupResult, userClaimedKeys: Set ): UserSpecificResult { - // Strip precise location fields; override claimedToday per-user. + // Strip precise location fields; override claimedToday per-user. Distance is + // carried over so the client can show range cues and so Route Mode can detect + // when an unclaimed box is within the claim radius. const slimPostboxes: Record = {}; for (const [id, pb] of Object.entries(full.postboxes)) { slimPostboxes[id] = { ...(pb.monarch !== undefined ? { monarch: pb.monarch } : {}), claimedToday: userClaimedKeys.has(id), + ...(typeof pb.distance === "number" ? { distance: pb.distance } : {}), }; } diff --git a/functions/src/_recomputeScores.ts b/functions/src/_recomputeScores.ts index 9e715b4..02284c7 100644 --- a/functions/src/_recomputeScores.ts +++ b/functions/src/_recomputeScores.ts @@ -61,12 +61,23 @@ export async function repointClaimsForPostbox( const plain = !(typeof newMonarch === "string" && newMonarch.length > 0); const batches: admin.firestore.WriteBatch[] = []; + let rewritten = 0; for (let i = 0; i < snap.docs.length; i += WRITE_BATCH_SIZE) { const batch = db.batch(); + let writesInBatch = 0; for (const doc of snap.docs.slice(i, i + WRITE_BATCH_SIZE)) { const d = doc.data(); const uid = d.userid as string | undefined; const oldPts = typeof d.points === "number" ? d.points : 0; + const currentMonarch = (typeof d.monarch === "string" && d.monarch.length > 0) ? d.monarch : null; + const targetMonarch = plain ? null : newMonarch; + // Skip claims that already match the target state. Two reasons: + // - Avoids re-stamping correctedFromMonarch / correctedFromPoints with + // the post-correction values (which would happen on a retry after a + // partial-success run), corrupting the audit trail by losing the + // real pre-correction values. + // - Saves writes on no-op admin retries. + if (currentMonarch === targetMonarch && oldPts === newPts) continue; const update: Record = { points: newPts, correctedAt: now, @@ -75,13 +86,17 @@ export async function repointClaimsForPostbox( monarch: plain ? admin.firestore.FieldValue.delete() : newMonarch, }; batch.set(doc.ref, update, { merge: true }); + writesInBatch++; if (uid) deltaByUid.set(uid, (deltaByUid.get(uid) ?? 0) + (newPts - oldPts)); } - batches.push(batch); + if (writesInBatch > 0) { + batches.push(batch); + rewritten += writesInBatch; + } } await Promise.all(batches.map((b) => b.commit())); - return { deltaByUid, claimCount: snap.docs.length }; + return { deltaByUid, claimCount: rewritten }; } /** @@ -146,22 +161,30 @@ export async function recomputeUserAggregates( const freshDisplayName = (uSnap.data()?.displayName as string | undefined) || displayName; const currentLifetime = (uSnap.data()?.lifetimePoints as number | undefined) ?? 0; - const newLifetimePoints = currentLifetime + countyDelta; + // Clamp at 0 in case earlier bugs left lifetimePoints under-reported + // and a points-reducing cypher correction's delta would otherwise push + // it negative. Defensive — in healthy state currentLifetime is always + // ≥ |countyDelta| because countyDelta is the sum of point deltas on + // claims the user actually made. + const newLifetimePoints = Math.max(0, currentLifetime + countyDelta); const currentUnique = (uSnap.data()?.uniquePostboxesClaimed as number | undefined) ?? 0; - tx.set( - userRef, - { - lifetimePoints: newLifetimePoints, - maxDailyPoints, - dailyPoints: periodSums.dailyPoints, - dailyDate: today, - weeklyPoints: periodSums.weeklyPoints, - weekStart, - monthlyPoints: periodSums.monthlyPoints, - monthStart, - }, - { merge: true } - ); + // Only stamp the per-period markers when the user actually has claims + // in that period. Otherwise the rescore would overwrite a stale-but- + // truthful marker (e.g. yesterday) with today, and downstream code + // that treats `dailyDate === today` as evidence of a claim (notably + // shouldNotifyFirstClaim / shouldNotifyOvertake) would wrongly skip + // notifications for a user who hasn't claimed today. + const userUpdate: Record = { + lifetimePoints: newLifetimePoints, + maxDailyPoints, + dailyPoints: periodSums.dailyPoints, + weeklyPoints: periodSums.weeklyPoints, + monthlyPoints: periodSums.monthlyPoints, + }; + if (periodSums.dailyPoints > 0) userUpdate.dailyDate = today; + if (periodSums.weeklyPoints > 0) userUpdate.weekStart = weekStart; + if (periodSums.monthlyPoints > 0) userUpdate.monthStart = monthStart; + tx.set(userRef, userUpdate, { merge: true }); const existing = (lSnap.data()?.entries ?? []) as LifetimeLeaderboardEntry[]; const updated = mergeLifetimeEntries(existing, uid, freshDisplayName, currentUnique, newLifetimePoints); tx.set(lifetimeRef, { periodKey: "lifetime", entries: updated }, { merge: false }); @@ -182,7 +205,16 @@ export async function recomputeUserAggregates( await db.runTransaction(async (tx) => { const [sSnap, lbSnap, uSnap] = await Promise.all([tx.get(statsRef), tx.get(lbRef), tx.get(userRef)]); const prev = sSnap.data() ?? {}; - const newTotal = ((prev.totalPoints as number | undefined) ?? 0) + countyDelta; + // Clamp at 0: if the stats doc doesn't exist (legacy claim made + // before per-county tracking, never backfilled), a negative + // countyDelta from a points-reducing cypher correction would + // otherwise write negative totalPoints. The leaderboard then + // sorts the user below users with 0 points, which is the right + // user-facing result. + const newTotal = Math.max( + 0, + ((prev.totalPoints as number | undefined) ?? 0) + countyDelta, + ); const newUnique = (prev.uniquePostboxesClaimed as number | undefined) ?? 0; const name = (prev.county as string | undefined) || countyName || countySlugVal; const freshDisplayName = diff --git a/functions/src/_routePlanner.ts b/functions/src/_routePlanner.ts new file mode 100644 index 0000000..4285145 --- /dev/null +++ b/functions/src/_routePlanner.ts @@ -0,0 +1,202 @@ +/** + * _routePlanner.ts — pure route-planning helpers shared between the + * plan_route CLI script and the routePostboxes Cloud Function. + * + * No firebase-admin, no fs, no process imports — safe to require in any context. + */ + +import * as geolib from "geolib"; + +// ---------- types ---------- + +export type Point = { lat: number; lng: number }; + +export type Candidate = { + id: string; + lat: number; + lng: number; + monarch: string | null; + points: number; + reference?: string; + county?: string; +}; + +export type RouteStop = { + postbox: Candidate; + legMeters: number; + cumSeconds: number; +}; + +export type SearchState = { + current: Point; + currentId: string; + visited: Set; + timeUsed: number; + score: number; + route: RouteStop[]; +}; + +// ---------- geometry helpers ---------- + +/** Wrapper over geolib.getDistance for lat/lng Points. */ +export function metresBetween(a: Point, b: Point): number { + return geolib.getDistance({ latitude: a.lat, longitude: a.lng }, { latitude: b.lat, longitude: b.lng }); +} + +/** Crude lat/lng average midpoint — fine at city scale. */ +export function midpoint(a: Point, b: Point): Point { + return { lat: (a.lat + b.lat) / 2, lng: (a.lng + b.lng) / 2 }; +} + +/** + * Retain candidates reachable within budgetMetres via start→candidate→end + * (i.e. they lie inside the time ellipse formed by the two foci). + */ +export function filterToEllipse( + candidates: Candidate[], + start: Point, + end: Point, + budgetMetres: number, +): Candidate[] { + const out: Candidate[] = []; + for (const c of candidates) { + const p: Point = { lat: c.lat, lng: c.lng }; + if (metresBetween(start, p) + metresBetween(p, end) <= budgetMetres) out.push(c); + } + return out; +} + +/** + * Retain candidates that are within halfWidthMetres of the start-end segment + * AND whose projection onto that segment falls between the two endpoints + * (0 ≤ t ≤ 1 in normalised segment coordinates). + * + * Uses a local-tangent-plane approximation (small-angle) around the midpoint, + * valid at city scale where 1° lat ≈ 111 km and 1° lng ≈ 111·cos(lat) km. + */ +export function filterToCorridor( + candidates: Candidate[], + start: Point, + end: Point, + halfWidthMetres: number, +): Candidate[] { + const mid = midpoint(start, end); + // Metres-per-degree scale factors at the midpoint latitude. + const mPerLat = 111_319.5; + const mPerLng = 111_319.5 * Math.cos((mid.lat * Math.PI) / 180); + + // Segment vector in metres (local tangent plane). + const sx = (end.lng - start.lng) * mPerLng; + const sy = (end.lat - start.lat) * mPerLat; + const segLenSq = sx * sx + sy * sy; + + const out: Candidate[] = []; + for (const c of candidates) { + const px = (c.lng - start.lng) * mPerLng; + const py = (c.lat - start.lat) * mPerLat; + + // Projection parameter along segment (0 = start, 1 = end). + // degenerate segment: every candidate is "on" it; filter by distance to start instead. + const t = segLenSq > 0 ? (px * sx + py * sy) / segLenSq : 0; + if (t < 0 || t > 1) continue; + + // Perpendicular distance. + const perpX = px - t * sx; + const perpY = py - t * sy; + const perpDist = Math.sqrt(perpX * perpX + perpY * perpY); + if (perpDist <= halfWidthMetres) out.push(c); + } + return out; +} + +/** + * Beam-search orienteering solver. + * + * Explores combinations of postboxes that maximise score while keeping the + * total walk time (travel + per-claim dwell) within budgetSeconds, leaving + * enough time to reach `end` from the last visited postbox. + */ +export function beamSearchOrienteering( + start: Point, + end: Point, + candidates: Candidate[], + budgetSeconds: number, + speedMps: number, + perClaimSeconds: number, + beamWidth: number, +): SearchState { + const initial: SearchState = { + current: start, + currentId: "__START__", + visited: new Set(), + timeUsed: 0, + score: 0, + route: [], + }; + + let best = initial; + let beam: SearchState[] = [initial]; + + while (beam.length > 0) { + const next: SearchState[] = []; + const dedup = new Map(); + + for (const state of beam) { + for (const c of candidates) { + if (state.visited.has(c.id)) continue; + const legMetres = metresBetween(state.current, { lat: c.lat, lng: c.lng }); + const closingMetres = metresBetween({ lat: c.lat, lng: c.lng }, end); + const newTime = state.timeUsed + legMetres / speedMps + perClaimSeconds; + if (newTime + closingMetres / speedMps > budgetSeconds) continue; + + const visited = new Set(state.visited); + visited.add(c.id); + const dedupKey = `${c.id}|${Array.from(visited).sort().join("|")}`; + const existing = dedup.get(dedupKey); + if (existing && existing.timeUsed <= newTime) continue; + + const candidateState: SearchState = { + current: { lat: c.lat, lng: c.lng }, + currentId: c.id, + visited, + timeUsed: newTime, + score: state.score + c.points, + route: [...state.route, { postbox: c, legMeters: legMetres, cumSeconds: newTime }], + }; + dedup.set(dedupKey, candidateState); + } + } + + for (const s of dedup.values()) { + next.push(s); + if (s.score > best.score || (s.score === best.score && s.timeUsed < best.timeUsed)) best = s; + } + + next.sort((a, b) => (b.score - a.score) || (a.timeUsed - b.timeUsed)); + beam = next.slice(0, beamWidth); + } + + return best; +} + +/** + * Compute the final leg from the last visited stop to the destination and + * return the complete route summary. + */ +export function finaliseRoute( + state: SearchState, + end: Point, + speedMps: number, +): { + state: SearchState; + closingMetres: number; + closingSeconds: number; + totalMetres: number; + totalSeconds: number; +} { + const closingMetres = metresBetween(state.current, end); + const closingSeconds = closingMetres / speedMps; + const totalSeconds = state.timeUsed + closingSeconds; + const totalMetres = state.route.reduce((s, r) => s + r.legMeters, 0) + closingMetres; + return { state, closingMetres, closingSeconds, totalMetres, totalSeconds }; +} diff --git a/functions/src/index.ts b/functions/src/index.ts index 96ba3bf..d1e9ab1 100644 --- a/functions/src/index.ts +++ b/functions/src/index.ts @@ -7,6 +7,7 @@ import { newDayScoreboard } from "./newDayScoreboard"; import { registerFcmToken, onFriendAdded } from "./_notifications"; import { userClaimHistory } from "./userClaimHistory"; import { submitReport, reviewReport } from "./reports"; +import { routePostboxes } from "./routePostboxes"; export { nearbyPostboxes, @@ -19,4 +20,5 @@ export { userClaimHistory, submitReport, reviewReport, + routePostboxes, }; diff --git a/functions/src/routePostboxes.ts b/functions/src/routePostboxes.ts new file mode 100644 index 0000000..aea8872 --- /dev/null +++ b/functions/src/routePostboxes.ts @@ -0,0 +1,217 @@ +import "./adminInit"; +import * as admin from "firebase-admin"; +import * as functions from "firebase-functions"; +import * as geohash from "ngeohash"; +import { getTodayLondon } from "./_dateUtils"; +import { setPrecision, getLatLng } from "./_lookupPostboxes"; +import { pointsForMonarch } from "./_getPoints"; +import type { PostboxDoc } from "./types"; +import { + metresBetween, + midpoint, + filterToCorridor, + filterToEllipse, + beamSearchOrienteering, + type Candidate, + type Point, +} from "./_routePlanner"; + +const MAX_DIRECT_DISTANCE_M = 30_000; +const BEAM_WIDTH = 50; +const DEFAULT_SPEED_KMH = 4.5; +const DEFAULT_PER_CLAIM_SECONDS = 60; + +interface RouteCallData { + startLat?: number; + startLng?: number; + destLat?: number; + destLng?: number; + mode?: string; + corridorMetres?: number; + detourMinutes?: number; + speedKmh?: number; + perClaimSeconds?: number; +} + +export const routePostboxes = functions.https.onCall(async (request) => { + if (!request.auth?.uid) { + throw new functions.https.HttpsError("unauthenticated", "Must be signed in to plan a route"); + } + const uid = request.auth.uid; + const data = (request.data ?? {}) as RouteCallData; + + // ── Validate lat/lng inputs ─────────────────────────────────────────────── + const { startLat, startLng, destLat, destLng } = data; + if (startLat === undefined || startLat === null || + startLng === undefined || startLng === null || + destLat === undefined || destLat === null || + destLng === undefined || destLng === null) { + throw new functions.https.HttpsError("invalid-argument", "startLat, startLng, destLat, and destLng are required"); + } + if (!Number.isFinite(startLat) || startLat < -90 || startLat > 90) { + throw new functions.https.HttpsError("invalid-argument", "startLat must be a finite number between -90 and 90"); + } + if (!Number.isFinite(startLng) || startLng < -180 || startLng > 180) { + throw new functions.https.HttpsError("invalid-argument", "startLng must be a finite number between -180 and 180"); + } + if (!Number.isFinite(destLat) || destLat < -90 || destLat > 90) { + throw new functions.https.HttpsError("invalid-argument", "destLat must be a finite number between -90 and 90"); + } + if (!Number.isFinite(destLng) || destLng < -180 || destLng > 180) { + throw new functions.https.HttpsError("invalid-argument", "destLng must be a finite number between -180 and 180"); + } + + // ── Validate mode ───────────────────────────────────────────────────────── + const { mode } = data; + if (mode !== "corridor" && mode !== "detour") { + throw new functions.https.HttpsError("invalid-argument", 'mode must be "corridor" or "detour"'); + } + + // ── Validate mode-specific params ───────────────────────────────────────── + let corridorMetres = 0; + if (mode === "corridor") { + if (data.corridorMetres === undefined || data.corridorMetres === null) { + throw new functions.https.HttpsError("invalid-argument", "corridorMetres is required for corridor mode"); + } + if (!Number.isFinite(data.corridorMetres) || data.corridorMetres < 50 || data.corridorMetres > 500) { + throw new functions.https.HttpsError("invalid-argument", "corridorMetres must be a finite number between 50 and 500"); + } + corridorMetres = data.corridorMetres; + } + + let detourMinutes = 0; + if (mode === "detour") { + if (data.detourMinutes === undefined || data.detourMinutes === null) { + throw new functions.https.HttpsError("invalid-argument", "detourMinutes is required for detour mode"); + } + if (!Number.isFinite(data.detourMinutes) || data.detourMinutes < 0 || data.detourMinutes > 120) { + throw new functions.https.HttpsError("invalid-argument", "detourMinutes must be a finite number between 0 and 120"); + } + detourMinutes = data.detourMinutes; + } + + // ── Optional params ─────────────────────────────────────────────────────── + let speedKmh = DEFAULT_SPEED_KMH; + if (data.speedKmh !== undefined && data.speedKmh !== null) { + if (!Number.isFinite(data.speedKmh) || data.speedKmh < 2 || data.speedKmh > 14) { + throw new functions.https.HttpsError("invalid-argument", "speedKmh must be a finite number between 2 and 14"); + } + speedKmh = data.speedKmh; + } + + let perClaimSeconds = DEFAULT_PER_CLAIM_SECONDS; + if (data.perClaimSeconds !== undefined && data.perClaimSeconds !== null) { + if (!Number.isFinite(data.perClaimSeconds) || data.perClaimSeconds < 0 || data.perClaimSeconds > 300) { + throw new functions.https.HttpsError("invalid-argument", "perClaimSeconds must be a finite number between 0 and 300"); + } + perClaimSeconds = data.perClaimSeconds; + } + + // ── Distance cap ────────────────────────────────────────────────────────── + const start: Point = { lat: startLat, lng: startLng }; + const dest: Point = { lat: destLat, lng: destLng }; + const directDistanceM = metresBetween(start, dest); + if (directDistanceM > MAX_DIRECT_DISTANCE_M) { + throw new functions.https.HttpsError("invalid-argument", `Direct distance (${Math.round(directDistanceM)} m) exceeds the 30 km limit`); + } + + // ── Budget computations ─────────────────────────────────────────────────── + const speedMps = speedKmh * 1000 / 3600; + const budgetSeconds = mode === "corridor" + ? directDistanceM / speedMps + : directDistanceM / speedMps + detourMinutes * 60; + const budgetDistanceM = speedMps * budgetSeconds; + + // ── Bounding-circle radius and centre for Firestore query ───────────────── + const queryRadiusM = mode === "corridor" + ? directDistanceM / 2 + corridorMetres + 50 + : budgetDistanceM / 2; + const centre = midpoint(start, dest); + + // ── Fetch candidate postboxes (inline geohash prefix query) ─────────────── + const radiusKm = queryRadiusM / 1000; + const precision = setPrecision(radiusKm); + const centreHash = geohash.encode(centre.lat, centre.lng, precision); + const neighborHashes = geohash.neighbors(centreHash); + const areas = [centreHash, ...neighborHashes]; + + const db = admin.firestore(); + const postboxRef = db.collection("postbox"); + const queries = areas.map((prefix) => { + const end = prefix + ""; + return postboxRef.orderBy("geohash").startAt(prefix).endAt(end).get(); + }); + + const [snapshots, userClaimsSnap] = await Promise.all([ + Promise.all(queries), + db.collection("claims") + .where("userid", "==", uid) + .where("dailyDate", "==", getTodayLondon()) + .get(), + ]); + + // Build claimed-today set + const userClaimedKeys = new Set( + userClaimsSnap.docs + .map(d => d.data().postboxes as string | undefined) + .filter((ref): ref is string => typeof ref === "string") + .map(ref => ref.replace(/^\/postbox\//, "")) + ); + + // Dedupe and map to Candidates + const seen = new Set(); + const candidates: Candidate[] = []; + + for (const snapshot of snapshots) { + for (const doc of snapshot.docs) { + if (seen.has(doc.id)) continue; + seen.add(doc.id); + + const data2 = doc.data() as PostboxDoc; + const pos = getLatLng(data2.geopoint); + if (!pos) continue; + + // Skip already-claimed-today + if (userClaimedKeys.has(doc.id)) continue; + + candidates.push({ + id: doc.id, + lat: pos.lat, + lng: pos.lng, + monarch: data2.monarch ?? null, + points: pointsForMonarch(data2.monarch), + reference: data2.reference, + county: data2.county, + }); + } + } + + // ── Mode-specific filter and scoring ───────────────────────────────────── + const warnings: string[] = []; + let count: number; + let points: number; + + if (mode === "corridor") { + const filtered = filterToCorridor(candidates, start, dest, corridorMetres); + count = filtered.length; + points = filtered.reduce((s, c) => s + c.points, 0); + if (count === 0) warnings.push("no unclaimed postboxes en-route"); + } else { + const filtered = filterToEllipse(candidates, start, dest, budgetDistanceM); + const result = beamSearchOrienteering( + start, dest, filtered, budgetSeconds, speedMps, perClaimSeconds, BEAM_WIDTH + ); + count = result.visited.size; + points = result.score; + if (count === 0) warnings.push("no unclaimed postboxes en-route"); + } + + // ── Response (never includes per-postbox ids, coords, or details) ───────── + return { + count, + points, + directDistanceM, + budgetDistanceM, + warnings, + }; +}); diff --git a/functions/src/scripts/plan_route.ts b/functions/src/scripts/plan_route.ts index 8369a91..7fe89af 100644 --- a/functions/src/scripts/plan_route.ts +++ b/functions/src/scripts/plan_route.ts @@ -21,36 +21,17 @@ import * as fs from "fs"; import * as admin from "firebase-admin"; import * as geohash from "ngeohash"; -import * as geolib from "geolib"; import { pointsForMonarch, KNOWN_MONARCHS } from "../_getPoints"; - -type Point = { lat: number; lng: number }; - -type Candidate = { - id: string; - lat: number; - lng: number; - monarch: string | null; - points: number; - reference?: string; - county?: string; -}; - -type RouteStop = { - postbox: Candidate; - legMeters: number; - cumSeconds: number; -}; - -type SearchState = { - current: Point; - currentId: string; - visited: Set; - visitedKey: string; - timeUsed: number; - score: number; - route: RouteStop[]; -}; +import { + type Point, + type Candidate, + type RouteStop, + metresBetween, + midpoint, + filterToEllipse, + beamSearchOrienteering, + finaliseRoute, +} from "../_routePlanner"; type Options = { start: Point; @@ -237,108 +218,6 @@ function loadFromFile(path: string): Candidate[] { return out; } -// ---------- geometry helpers ---------- - -function metresBetween(a: Point, b: Point): number { - return geolib.getDistance({ latitude: a.lat, longitude: a.lng }, { latitude: b.lat, longitude: b.lng }); -} - -function midpoint(a: Point, b: Point): Point { - // Crude midpoint — fine at city scale where the haversine vs planar error is negligible. - return { lat: (a.lat + b.lat) / 2, lng: (a.lng + b.lng) / 2 }; -} - -// ---------- beam-search orienteering ---------- - -function filterToEllipse(candidates: Candidate[], start: Point, end: Point, budgetMetres: number): Candidate[] { - const out: Candidate[] = []; - for (const c of candidates) { - const p: Point = { lat: c.lat, lng: c.lng }; - if (metresBetween(start, p) + metresBetween(p, end) <= budgetMetres) out.push(c); - } - return out; -} - -function finalise(state: SearchState, end: Point, speedMps: number): { - state: SearchState; - closingMetres: number; - closingSeconds: number; - totalMetres: number; - totalSeconds: number; -} { - const closingMetres = metresBetween(state.current, end); - const closingSeconds = closingMetres / speedMps; - const totalSeconds = state.timeUsed + closingSeconds; - const totalMetres = state.route.reduce((s, r) => s + r.legMeters, 0) + closingMetres; - return { state, closingMetres, closingSeconds, totalMetres, totalSeconds }; -} - -function beamSearch( - start: Point, - end: Point, - candidates: Candidate[], - budgetSeconds: number, - speedMps: number, - perClaimSeconds: number, - beamWidth: number, -): SearchState { - const initial: SearchState = { - current: start, - currentId: "__START__", - visited: new Set(), - visitedKey: "", - timeUsed: 0, - score: 0, - route: [], - }; - - let best = initial; - let beam: SearchState[] = [initial]; - - while (beam.length > 0) { - const next: SearchState[] = []; - const dedup = new Map(); - - for (const state of beam) { - for (const c of candidates) { - if (state.visited.has(c.id)) continue; - const legMetres = metresBetween(state.current, { lat: c.lat, lng: c.lng }); - const closingMetres = metresBetween({ lat: c.lat, lng: c.lng }, end); - const newTime = state.timeUsed + legMetres / speedMps + perClaimSeconds; - if (newTime + closingMetres / speedMps > budgetSeconds) continue; - - const visited = new Set(state.visited); - visited.add(c.id); - const visitedKey = Array.from(visited).sort().join("|"); - const dedupKey = `${c.id}|${visitedKey}`; - const existing = dedup.get(dedupKey); - if (existing && existing.timeUsed <= newTime) continue; - - const candidateState: SearchState = { - current: { lat: c.lat, lng: c.lng }, - currentId: c.id, - visited, - visitedKey, - timeUsed: newTime, - score: state.score + c.points, - route: [...state.route, { postbox: c, legMeters: legMetres, cumSeconds: newTime }], - }; - dedup.set(dedupKey, candidateState); - } - } - - for (const s of dedup.values()) { - next.push(s); - if (s.score > best.score || (s.score === best.score && s.timeUsed < best.timeUsed)) best = s; - } - - next.sort((a, b) => (b.score - a.score) || (a.timeUsed - b.timeUsed)); - beam = next.slice(0, beamWidth); - } - - return best; -} - // ---------- formatting ---------- function fmtMin(s: number): string { @@ -369,7 +248,7 @@ function printReport( totalCandidates: number, retainedCandidates: number, directMetres: number, - result: ReturnType, + result: ReturnType, ): void { const { state, closingMetres, totalMetres, totalSeconds } = result; const budgetSeconds = opts.minutes * 60; @@ -445,7 +324,7 @@ async function main(): Promise { const inEllipse = filterToEllipse(allCandidates, opts.start, opts.end, budgetMetres); process.stderr.write(`Filtered to ${inEllipse.length} candidates inside the time ellipse.\n`); - const bestState = beamSearch( + const bestState = beamSearchOrienteering( opts.start, opts.end, inEllipse, @@ -455,7 +334,7 @@ async function main(): Promise { opts.beam, ); - const result = finalise(bestState, opts.end, speedMps); + const result = finaliseRoute(bestState, opts.end, speedMps); printReport(opts, allCandidates.length, inEllipse.length, directMetres, result); } diff --git a/functions/src/test/test.index.ts b/functions/src/test/test.index.ts index 5362807..6afffb2 100644 --- a/functions/src/test/test.index.ts +++ b/functions/src/test/test.index.ts @@ -1,6 +1,7 @@ import assert from "assert"; import test from "firebase-functions-test"; import * as myFunctions from "../index"; +import { filterToCorridor, filterToEllipse, beamSearchOrienteering } from "../_routePlanner"; import { getPoints } from "../_getPoints"; import { getTodayLondon } from "../_dateUtils"; import { getWeekStart, getMonthStart, getPeriodKey, mergePeriodEntries, mergeLifetimeEntries, updateUserLeaderboards, countySlug } from "../_leaderboardUtils"; @@ -678,6 +679,7 @@ describe("Cloud Functions", function (this: Mocha.Suite) { const wrappedUpdateDisplayName = testEnv.wrap(myFunctions.updateDisplayName) as (data: unknown, context?: unknown) => Promise; const wrappedRegisterFcmToken = testEnv.wrap(myFunctions.registerFcmToken) as (data: unknown, context?: unknown) => Promise; const wrappedUserClaimHistory = testEnv.wrap(myFunctions.userClaimHistory) as (data: unknown, context?: unknown) => Promise; + const wrappedRoutePostboxes = testEnv.wrap(myFunctions.routePostboxes) as (data: unknown, context?: unknown) => Promise; after(() => { testEnv.cleanup(); @@ -1082,6 +1084,239 @@ describe("Cloud Functions", function (this: Mocha.Suite) { }); }); }); + + describe("routePostboxes (onCall)", () => { + // Valid corridor request used as a baseline throughout. + const validCorridorReq = { + data: { + startLat: 51.45, startLng: -0.95, + destLat: 51.46, destLng: -0.94, + mode: "corridor", corridorMetres: 100, + }, + auth: { uid: "test-uid" }, + }; + + it("throws unauthenticated when no auth context", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ data: validCorridorReq.data }); + assert.fail("Expected unauthenticated error"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "unauthenticated"); + } + }); + + it("throws invalid-argument when lat/lng are missing", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ data: {}, auth: { uid: "test-uid" } }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for startLat out of range", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { ...validCorridorReq.data, startLat: 999 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for destLng out of range", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { ...validCorridorReq.data, destLng: 999 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for invalid mode", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { startLat: 51.45, startLng: -0.95, destLat: 51.46, destLng: -0.94, mode: "turbo" }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for corridor mode without corridorMetres", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { startLat: 51.45, startLng: -0.95, destLat: 51.46, destLng: -0.94, mode: "corridor" }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for corridorMetres below 50", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { ...validCorridorReq.data, corridorMetres: 10 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for corridorMetres above 500", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { ...validCorridorReq.data, corridorMetres: 999 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for detour mode without detourMinutes", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { startLat: 51.45, startLng: -0.95, destLat: 51.46, destLng: -0.94, mode: "detour" }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for detourMinutes above 120", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { startLat: 51.45, startLng: -0.95, destLat: 51.46, destLng: -0.94, mode: "detour", detourMinutes: 200 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for speedKmh out of range", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { ...validCorridorReq.data, speedKmh: 100 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument for perClaimSeconds out of range", async function (this: Mocha.Context) { + this.timeout(5000); + try { + await wrappedRoutePostboxes({ + data: { ...validCorridorReq.data, perClaimSeconds: 999 }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("throws invalid-argument when direct distance exceeds 30 km", async function (this: Mocha.Context) { + this.timeout(5000); + // London to Manchester (~260 km apart) — well over 30 km. + try { + await wrappedRoutePostboxes({ + data: { + startLat: 51.5074, startLng: -0.1278, + destLat: 53.4808, destLng: -2.2426, + mode: "corridor", corridorMetres: 100, + }, + auth: { uid: "test-uid" }, + }); + assert.fail("Expected invalid-argument"); + } catch (e: unknown) { + assert.strictEqual((e as { code?: string }).code, "invalid-argument"); + } + }); + + it("returns correct response shape and no per-postbox detail on valid corridor request", async function (this: Mocha.Context) { + this.timeout(10000); + try { + const result = (await wrappedRoutePostboxes(validCorridorReq)) as Record; + assert.ok("count" in result, "response must have count"); + assert.ok("points" in result, "response must have points"); + assert.ok("directDistanceM" in result, "response must have directDistanceM"); + assert.ok("budgetDistanceM" in result, "response must have budgetDistanceM"); + assert.ok("warnings" in result, "response must have warnings"); + assert.strictEqual(typeof result.count, "number"); + assert.strictEqual(typeof result.points, "number"); + assert.ok(Array.isArray(result.warnings)); + // Must NOT expose per-postbox fields. + assert.ok(!("postboxes" in result), "must not leak postbox list"); + assert.ok(!("ids" in result), "must not leak IDs"); + assert.ok(!("locations" in result), "must not leak locations"); + } catch (e: unknown) { + const err = e as { code?: string; message?: string }; + // Acceptable: permission-denied when Firebase emulator is not running. + if (!(err.message ?? "").includes("PERMISSION_DENIED") && err.code !== "permission-denied") { + throw e; + } + } + }); + + it("returns correct response shape on valid detour request", async function (this: Mocha.Context) { + this.timeout(10000); + const req = { + data: { + startLat: 51.45, startLng: -0.95, + destLat: 51.46, destLng: -0.94, + mode: "detour", detourMinutes: 30, + }, + auth: { uid: "test-uid" }, + }; + try { + const result = (await wrappedRoutePostboxes(req)) as Record; + assert.ok("count" in result); + assert.ok("points" in result); + assert.ok("directDistanceM" in result); + assert.ok("budgetDistanceM" in result); + assert.ok("warnings" in result); + assert.strictEqual(typeof result.count, "number"); + assert.strictEqual(typeof result.points, "number"); + assert.ok(Array.isArray(result.warnings)); + } catch (e: unknown) { + const err = e as { code?: string; message?: string }; + if (!(err.message ?? "").includes("PERMISSION_DENIED") && err.code !== "permission-denied") { + throw e; + } + } + }); + }); }); // ── applyUserClaims pure unit tests (no Firebase required) ──────────────────── @@ -1230,6 +1465,37 @@ describe("applyUserClaims", () => { assert.strictEqual(updatedPoints.max, 0); }); + it("carries through distance on slim postboxes when present on input", () => { + // Route Mode auto-claim trigger reads box['distance'] from this callable + // to detect when a postbox is within the 30 m claim radius. Without it the + // trigger never fires. + const full = { + postboxes: { + near: { monarch: "EIIR", compass: { exact: "N" }, distance: 12 }, + far: { monarch: "VR", compass: { exact: "S" }, distance: 450 }, + }, + counts: { total: 2, claimedToday: 0, EIIR: 1, VR: 1 }, + points: { min: 2, max: 7 }, + compass: { N: 1, S: 1 }, + }; + const { slimPostboxes } = applyUserClaims(full, new Set()); + assert.strictEqual(slimPostboxes.near.distance, 12); + assert.strictEqual(slimPostboxes.far.distance, 450); + }); + + it("omits distance on slim postboxes when missing on input", () => { + const full = { + postboxes: { + noDistance: { monarch: "EIIR", compass: { exact: "N" } }, + }, + counts: { total: 1, claimedToday: 0 }, + points: { min: 2, max: 2 }, + compass: { N: 1 }, + }; + const { slimPostboxes } = applyUserClaims(full, new Set()); + assert.strictEqual("distance" in slimPostboxes.noDistance, false); + }); + it("slim postbox for no-monarch has no monarch field", () => { const full = { postboxes: { @@ -2207,6 +2473,31 @@ describe("repointClaimsForPostbox (unit, mock Firestore)", () => { assert.strictEqual(writes.length, 1); assert.strictEqual(writes[0].update.points, 4); }); + + it("skips claims already at the target monarch+points (idempotent retry)", async () => { + // Simulates an admin re-running reviewReport after a partial-success run: + // some claims were already rewritten on the first attempt. The retry must + // not re-stamp those claims' correctedFromMonarch with the new (post- + // correction) monarch, which would erase the original pre-correction + // value from the audit trail. + const claims: ClaimDoc[] = [ + // Already rewritten on the first run: monarch === target, points === target. + { id: "c1", userid: "u1", points: 4, monarch: "GR", postboxes: "/postbox/osm_42" }, + // Not yet rewritten — still on the old cypher. + { id: "c2", userid: "u2", points: 9, monarch: "EVIIR", postboxes: "/postbox/osm_42" }, + ]; + const { db, writes } = makeMockDb(claims); + const result = await repointClaimsForPostbox(db, "osm_42", "GR"); + // Only the unrewritten claim is touched. + assert.strictEqual(result.claimCount, 1); + assert.strictEqual(writes.length, 1); + assert.strictEqual(writes[0].ref.id, "c2"); + assert.strictEqual(writes[0].update.correctedFromMonarch, "EVIIR", + "audit trail preserves the real pre-correction monarch on the still-old claim"); + // u1 contributes no delta — its claim already matches; u2 contributes -5. + assert.strictEqual(result.deltaByUid.has("u1"), false); + assert.strictEqual(result.deltaByUid.get("u2"), -5); + }); }); describe("maxDailyFromClaims", () => { @@ -2270,3 +2561,170 @@ describe("submitReport / reviewReport (onCall) — auth & validation", function } }); }); + +// ── filterToCorridor ────────────────────────────────────────────────────────── +// +// Fixture: start = (0, 0), end = (0, 0.01) (roughly ~1.1 km due-east at equator) +// halfWidthMetres = 200 m +// +// pb_on (0, 0.005) — lies on the segment midpoint, perp dist ≈ 0 m → IN +// pb_near (0.001, 0.005) — slightly north of midpoint, perp dist ≈ 111 m → IN +// pb_far (0.01, 0.005) — well north (~1.1 km), perp dist ≈ 1110 m → OUT + +describe("filterToCorridor", () => { + const start = { lat: 0, lng: 0 }; + const end = { lat: 0, lng: 0.01 }; + const halfWidth = 200; + + const makeCandidates = () => [ + { id: "pb_on", lat: 0, lng: 0.005, monarch: "EIIR", points: 2 }, + { id: "pb_near", lat: 0.001, lng: 0.005, monarch: "EIIR", points: 2 }, + { id: "pb_far", lat: 0.01, lng: 0.005, monarch: "EIIR", points: 2 }, + ]; + + it("returns candidates within the corridor half-width", () => { + const result = filterToCorridor(makeCandidates(), start, end, halfWidth); + assert.strictEqual(result.length, 2); + const ids = result.map((c) => c.id); + assert.ok(ids.includes("pb_on"), "pb_on should be included"); + assert.ok(ids.includes("pb_near"), "pb_near should be included"); + }); + + it("excludes the candidate beyond the half-width", () => { + const result = filterToCorridor(makeCandidates(), start, end, halfWidth); + assert.ok(!result.map((c) => c.id).includes("pb_far"), "pb_far should be excluded"); + }); + + it("excludes candidates whose projection falls outside [0,1] (before start)", () => { + const behind = [{ id: "pb_behind", lat: 0, lng: -0.005, monarch: "EIIR", points: 2 }]; + const result = filterToCorridor(behind, start, end, halfWidth); + assert.strictEqual(result.length, 0); + }); + + it("excludes candidates whose projection falls outside [0,1] (beyond end)", () => { + const beyond = [{ id: "pb_beyond", lat: 0, lng: 0.015, monarch: "EIIR", points: 2 }]; + const result = filterToCorridor(beyond, start, end, halfWidth); + assert.strictEqual(result.length, 0); + }); + + it("returns all candidates when half-width is very large", () => { + const result = filterToCorridor(makeCandidates(), start, end, 50_000); + assert.strictEqual(result.length, 3); + }); + + it("returns empty array when half-width is 0 and no candidate is exactly on-line", () => { + // pb_near is 0.001° off; pb_on lies exactly on the segment so its perp dist is 0. + const result = filterToCorridor(makeCandidates(), start, end, 0); + // Exactly one candidate (pb_on) has zero perpendicular distance. + assert.strictEqual(result.length, 1); + }); +}); + +// ── routePostboxes pure logic tests ────────────────────────────────────────── +// +// Fixture: start=51.5000,-0.1000 end=51.5000,-0.0900 (~780 m due east) +// +// box_a EVIIIR (12 pts) — on the line, lng midpoint → IN corridor 100m +// box_b VR ( 7 pts) — on the line, 3/4 along → IN corridor 100m +// box_c EIIR ( 2 pts) — 200 m north of midpoint → OUT corridor 100m, IN ellipse (generous budget) +// box_d GR ( 4 pts) — 200 m south of midpoint → OUT corridor 100m, IN ellipse (generous budget) +// box_far EIIR ( 2 pts) — far away (0.5° lat north) → OUT both +// +describe("routePostboxes pure corridor logic", () => { + const start = { lat: 51.5000, lng: -0.1000 }; + const end = { lat: 51.5000, lng: -0.0900 }; + // ~0.0011° ≈ 75m at this latitude; well within 100m corridor + const midLng = (start.lng + end.lng) / 2; // -0.0950 + + const candidates = [ + { id: "box_a", lat: 51.5000, lng: midLng, monarch: "EVIIIR", points: 12 }, + { id: "box_b", lat: 51.5000, lng: -0.0925, monarch: "VR", points: 7 }, + { id: "box_c", lat: 51.5018, lng: midLng, monarch: "EIIR", points: 2 }, // ~200m north + { id: "box_d", lat: 51.4982, lng: midLng, monarch: "GR", points: 4 }, // ~200m south + { id: "box_far", lat: 52.0000, lng: midLng, monarch: "EIIR", points: 2 }, // far away + ]; + + it("corridor 100m: count=2, points=19 (12+7)", () => { + const filtered = filterToCorridor(candidates, start, end, 100); + assert.strictEqual(filtered.length, 2); + const ids = filtered.map(c => c.id).sort(); + assert.deepStrictEqual(ids, ["box_a", "box_b"]); + const points = filtered.reduce((s, c) => s + c.points, 0); + assert.strictEqual(points, 19); + }); + + it("corridor result contains no coordinates or IDs beyond the count/points aggregate", () => { + const filtered = filterToCorridor(candidates, start, end, 100); + const count = filtered.length; + const points = filtered.reduce((s, c) => s + c.points, 0); + // Simulate what routePostboxes returns — only aggregate fields. + const response = { count, points, directDistanceM: 780, budgetDistanceM: 780, warnings: [] }; + assert.ok(!("postboxes" in response)); + assert.ok(!("ids" in response)); + assert.ok(!("locations" in response)); + assert.strictEqual(response.count, 2); + assert.strictEqual(response.points, 19); + }); + + it("claimed-today filter reduces corridor count by 1 when one in-corridor box is claimed", () => { + const claimedIds = new Set(["box_a"]); + const unclaimed = candidates.filter(c => !claimedIds.has(c.id)); + const filtered = filterToCorridor(unclaimed, start, end, 100); + assert.strictEqual(filtered.length, 1); + assert.strictEqual(filtered[0].id, "box_b"); + assert.strictEqual(filtered.reduce((s, c) => s + c.points, 0), 7); + }); +}); + +describe("routePostboxes pure detour logic", () => { + const start = { lat: 51.5000, lng: -0.1000 }; + const end = { lat: 51.5000, lng: -0.0900 }; + const midLng = (start.lng + end.lng) / 2; + + const candidates = [ + { id: "box_a", lat: 51.5000, lng: midLng, monarch: "EVIIIR", points: 12 }, + { id: "box_b", lat: 51.5000, lng: -0.0925, monarch: "VR", points: 7 }, + { id: "box_c", lat: 51.5018, lng: midLng, monarch: "EIIR", points: 2 }, + { id: "box_d", lat: 51.4982, lng: midLng, monarch: "GR", points: 4 }, + { id: "box_far", lat: 52.0000, lng: midLng, monarch: "EIIR", points: 2 }, + ]; + + // A generous detour budget: direct ~780 m + 60 min detour at 4.5 km/h + const speedMps = 4.5 * 1000 / 3600; // 1.25 m/s + const directM = 780; + const budgetSeconds = directM / speedMps + 60 * 60; // huge budget + const budgetM = speedMps * budgetSeconds; + + it("ellipse filter with generous budget includes in-corridor boxes and nearby off-line boxes", () => { + const filtered = filterToEllipse(candidates, start, end, budgetM); + const ids = filtered.map(c => c.id).sort(); + // box_far is 55km away — excluded regardless. + assert.ok(!ids.includes("box_far"), "box_far should be excluded"); + // box_a, box_b, box_c, box_d should all be inside the generous ellipse. + assert.ok(ids.includes("box_a"), "box_a should be included"); + assert.ok(ids.includes("box_b"), "box_b should be included"); + assert.ok(ids.includes("box_c"), "box_c should be included"); + assert.ok(ids.includes("box_d"), "box_d should be included"); + }); + + it("beam search returns count and score consistent with filtered candidates", () => { + const filtered = filterToEllipse(candidates.filter(c => c.id !== "box_far"), start, end, budgetM); + const result = beamSearchOrienteering(start, end, filtered, budgetSeconds, speedMps, 60, 50); + // With a huge budget all 4 near candidates should be visitable. + assert.strictEqual(typeof result.score, "number"); + assert.ok(result.score >= 12, "should score at least 12 (EVIIIR alone)"); + assert.ok(result.visited.size >= 1, "should visit at least one box"); + }); + + it("detour with zero budget visits no boxes (just the direct walk)", () => { + // Budget = direct walk time only; no time to detour. + const tightBudget = directM / speedMps; + const tightBudgetM = speedMps * tightBudget; + // With the tight budget the ellipse degenerates to the segment — only exactly + // on-line boxes qualify. box_c and box_d are off-line; box_a and box_b are on it. + const filtered = filterToEllipse(candidates, start, end, tightBudgetM); + const result = beamSearchOrienteering(start, end, filtered, tightBudget, speedMps, 60, 50); + // Beam search can't add dwell time when budget is exactly the walk time. + assert.strictEqual(typeof result.visited.size, "number"); + }); +}); diff --git "a/interpreter?data=[out:json];%0Aarea%0A [\"name\"=\"United Kingdom\"];%0Aout body;%0Anode%0A [amenity=post_box]%0A (area);%0Aout;" "b/interpreter?data=[out:json];%0Aarea%0A [\"name\"=\"United Kingdom\"];%0Aout body;%0Anode%0A [amenity=post_box]%0A (area);%0Aout;" deleted file mode 100644 index ff569e6..0000000 --- "a/interpreter?data=[out:json];%0Aarea%0A [\"name\"=\"United Kingdom\"];%0Aout body;%0Anode%0A [amenity=post_box]%0A (area);%0Aout;" +++ /dev/null @@ -1,1307576 +0,0 @@ -{ - "version": 0.6, - "generator": "Overpass API 0.7.62.1 084b4234", - "osm3s": { - "timestamp_osm_base": "2024-08-14T09:49:29Z", - "timestamp_areas_base": "2024-08-14T07:35:09Z", - "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL." - }, - "elements": [ - -{ - "type": "area", - "id": 3600062149, - "tags": { - "ISO3166-1": "GB", - "ISO3166-1:alpha2": "GB", - "ISO3166-1:alpha3": "GBR", - "ISO3166-1:numeric": "826", - "admin_level": "2", - "alt_name:be": "Вялікая Брытанія;Брытанія;Злучанае Каралеўства", - "alt_name:eo": "Britio;Britujo", - "boundary": "administrative", - "currency": "GBP", - "default_language": "en", - "driving_side": "left", - "flag": "https://upload.wikimedia.org/wikipedia/commons/8/83/Flag_of_the_United_Kingdom_%283-5%29.svg", - "int_name": "United Kingdom", - "name": "United Kingdom", - "name:ab": "Британиа Ду", - "name:ace": "Keurajeuën Inggréh", - "name:ady": "Британиешхо Пачъыхьыгъо", - "name:af": "Verenigde Koninkryk", - "name:ak": "United Kingdom", - "name:als": "Vereinigtes Königreich", - "name:am": "ዩናይትድ ኪንግደም", - "name:an": "Reino Unito", - "name:ang": "Geāned Cynerīce", - "name:ar": "المملكة المتحدة", - "name:arc": "ܡܠܟܘܬܐ ܡܚܝܕܬܐ", - "name:ary": "لمملكة لمتحدة", - "name:arz": "المملكه المتحده", - "name:as": "যুক্তৰাজ্য", - "name:ast": "Reinu Xuníu", - "name:av": "Кӏудабиритан", - "name:avk": "Tanaragazaxo", - "name:awa": "यूनाइटेड किंगडम", - "name:az": "Böyük Britaniya", - "name:azb": "بیرلشمیش شاهلیق", - "name:ba": "Бөйөк Британия", - "name:ban": "Britania Agung", - "name:bar": "Vaeinigts Kinireich", - "name:bat-smg": "Jongtėnė Karalīstė", - "name:bcl": "Reyno Unido", - "name:be": "Вялікабрытанія", - "name:be-tarask": "Вялікабрытанія", - "name:bg": "Обединено кралство Великобритания и Северна Ирландия", - "name:bh": "यूनाइटेड किंगडम", - "name:bi": "Unaeted Kingdom", - "name:bjn": "Britania Raya", - "name:bn": "যুক্তরাজ্য", - "name:bo": "དབྱིན་ཇི་མཉམ་འབྲེལ།", - "name:bpy": "তিলপারাজ্য", - "name:br": "Rouantelezh-Unanet", - "name:bs": "Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske", - "name:bug": "United Kingdom", - "name:bxr": "Нэгдсэн Вант Улс", - "name:ca": "Regne Unit", - "name:cbk-zam": "Reinos Unidos de Gran Britania y Norte Irelandia", - "name:cdo": "Ĭng-guók", - "name:ce": "Йоккха Британи", - "name:ceb": "Hiniusang Gingharian", - "name:ch": "Reinu Unidu", - "name:chr": "ᎡᎵᏏᎯ", - "name:chy": "United Kingdom", - "name:ckb": "شانشینی یەکگرتوو", - "name:co": "Regnu Unitu", - "name:crh": "Büyük Britaniya", - "name:cs": "Spojené království", - "name:csb": "Wiôlgô Britanijô", - "name:cu": "Вєлика Британїꙗ", - "name:cv": "Аслă Британи", - "name:cy": "Deyrnas Unedig", - "name:da": "Storbritannien", - "name:de": "Vereinigtes Königreich", - "name:din": "Amatnhom Mäcŋaknhom", - "name:diq": "Qraliya Yewbiyayiye", - "name:dsb": "Wjelika Britaniska", - "name:dty": "संयुक्त अधिराज्य", - "name:dv": "ޔުނައިޓެޑް ކިންގްޑަމް", - "name:dz": "ཡུ་ནའི་ཊེཊ་ཀིང་ཌམ", - "name:ee": "United Kingdom", - "name:el": "Ηνωμένο Βασίλειο", - "name:eml": "Régn Unî", - "name:en": "United Kingdom", - "name:eo": "Unuiĝinta Reĝlando", - "name:es": "Reino Unido", - "name:et": "Suurbritannia", - "name:eu": "Erresuma Batua", - "name:ext": "Réinu Uniu", - "name:fa": "بریتانیا", - "name:ff": "Biritaani-Mawndi", - "name:fi": "Yhdistynyt kuningaskunta", - "name:fj": "Matanitu Cokovata", - "name:fo": "Stóra Bretland", - "name:fr": "Royaume-Uni", - "name:frp": "Royômo-Uni", - "name:frr": "Feriind Kiningrik", - "name:fur": "Ream Unît", - "name:fy": "Feriene Keninkryk", - "name:ga": "An Ríocht Aontaithe", - "name:gag": "Büük Britaniya", - "name:gan": "英國", - "name:gcr": "Rwéyonm-Ini", - "name:gd": "An Rìoghachd Aonaichte", - "name:gl": "Reino Unido", - "name:gn": "Tavetã Joaju", - "name:gom": "युनायटेड किंगडम", - "name:gsw": "Verëënichtes Kìnnigrëich", - "name:gu": "યુનાઇટેડ કિંગડમ", - "name:gv": "Reeriaght Unnaneysit", - "name:ha": "Birtaniya", - "name:hak": "Yîn-koet", - "name:haw": "Aupuni Mōʻī Hui Pū ʻia", - "name:he": "הממלכה המאוחדת", - "name:hi": "यूनाइटेड किंगडम", - "name:hif": "United Kingdom", - "name:hr": "Ujedinjeno Kraljevstvo", - "name:hsb": "Zjednoćene kralestwo", - "name:ht": "Wayòm Ini", - "name:hu": "Egyesült Királyság", - "name:hy": "Միացյալ Թագավորություն", - "name:ia": "Regno Unite", - "name:id": "Britania Raya", - "name:ie": "Reyatu Unit", - "name:ig": "Obodoézè Nà Ofú", - "name:ik": "Tannapta Umialgutia", - "name:ilo": "Nagkaykaysa a Pagarian", - "name:inh": "Великобритани", - "name:io": "Unionita Rejio", - "name:is": "Bretland", - "name:it": "Regno Unito", - "name:iu": "ᑐᓗᐃᑦ ᓄᓈᑦ", - "name:ja": "イギリス", - "name:jam": "Yunaitid Kindom", - "name:jbo": "ritygu'e", - "name:jv": "Britania Raya", - "name:ka": "გაერთიანებული სამეფო", - "name:kaa": "Ullı Britaniya", - "name:kab": "Legliz", - "name:kbd": "Британиэшхуэ", - "name:kg": "Royaume-Uni", - "name:ki": "United Kingdom", - "name:kk": "Ұлыбритания", - "name:kl": "Tuluit Nunaat", - "name:km": "រាជាណាចក្ររួម", - "name:kn": "ಯುನೈಟೆಡ್ ಕಿಂಗ್‌ಡಂ", - "name:ko": "영국", - "name:koi": "Ыджыт Бритму", - "name:krc": "Уллу Британия", - "name:ksh": "Jrußbritannie", - "name:ku": "Keyaniya Yekbûyî", - "name:kv": "Ыджыд Британия", - "name:kw": "Ruvaneth Unys", - "name:ky": "Улуу Британия жана Түндүк Ирландия", - "name:la": "Britanniarum Regnum", - "name:lad": "Reyno Unido", - "name:lb": "Groussbritannien an Nordirland", - "name:lez": "ЧIехибритания", - "name:li": "Vereineg Keuninkriek", - "name:lij": "Regno Unïo", - "name:lmo": "Regn Ünì", - "name:ln": "Ingɛlɛ́tɛlɛ", - "name:lo": "ສະຫະຣາຊອານາຈັກ", - "name:lt": "Jungtinė Karalystė", - "name:ltg": "Lelbrytaneja", - "name:lv": "Apvienotā Karaliste", - "name:lzh": "英國", - "name:mad": "Britania Raya", - "name:mai": "संयुक्त अधिराज्य", - "name:mdf": "Оцю Британия", - "name:mg": "Fanjakana Mitambatra", - "name:mhr": "Ушымо Королевстве", - "name:mi": "Kīngitanga Kotahi", - "name:min": "Baritania Rayo", - "name:mk": "Обединето Кралство", - "name:ml": "യുണൈറ്റഡ് കിങ്ഡം", - "name:mn": "Их Британи", - "name:mni": "ꯌꯨꯅꯥꯢꯇꯦꯗ ꯀꯤꯡꯗꯝ", - "name:mr": "युनायटेड किंग्डम", - "name:mrj": "Кого Британи", - "name:ms": "United Kingdom", - "name:mt": "Renju Unit", - "name:mwl": "Reino Ounido", - "name:my": "ယူနိုက်တက်ကင်းဒမ်းနိုင်ငံ", - "name:myv": "Инебритания Мастор", - "name:mzn": "بریتانیا", - "name:na": "Ingerand", - "name:nah": "Tlacetilīlli Huēyitlahtohcāyōtl", - "name:nan": "Liân-ha̍p Ông-kok", - "name:nap": "Gran Vretagna", - "name:nds": "Vereenigt Königriek vun Grootbritannien un Noordirland", - "name:nds-nl": "Verienigd Keuninkriek", - "name:ne": "संयुक्त अधिराज्य", - "name:new": "संयुक्त अधिराज्य", - "name:nl": "Verenigd Koninkrijk", - "name:nn": "Storbritannia", - "name:no": "Storbritannia", - "name:nov": "Unionati Regia", - "name:nqo": "ߡߊ߲߬ߛߊ߬ߟߊ߫ ߘߍ߬ߣߍ߲", - "name:nrm": "Rouoyaume Unni", - "name:nso": "United Kingdom", - "name:nv": "Tótaʼ Dineʼé Bikéyah", - "name:ny": "United Kingdom", - "name:oc": "Reialme Unit", - "name:om": "Yunaayitid Kingidem", - "name:or": "ଯୁକ୍ତରାଜ୍ୟ", - "name:os": "Стыр Британи", - "name:pa": "ਸੰਯੁਕਤ ਬਾਦਸ਼ਾਹੀ", - "name:pag": "Reino Unido", - "name:pam": "Pisanmetung a Ka-arian", - "name:pap": "Reino Uni", - "name:pcd": "Roéyôme-Uni", - "name:pih": "Yunitid Kingdum", - "name:pl": "Wielka Brytania", - "name:pms": "Regn Unì", - "name:pnb": "برطانیہ", - "name:pnt": "Ηνωμένο Βασίλειο", - "name:ps": "بريتانيا", - "name:pt": "Reino Unido", - "name:qu": "Hukllachasqa Qhapaq Suyu", - "name:rm": "Reginavel Unì", - "name:rmy": "Phandlo Thagaripen la Bare Britaniyako thai le Nordutne Irlandesko", - "name:ro": "Regatul Unit al Marii Britanii și al Irlandei de Nord", - "name:roa-rup": "Britania Mari", - "name:roa-tara": "Regne Aunìte", - "name:ru": "Соединённое Королевство", - "name:rue": "Велика Брітанія", - "name:rw": "Ubwongereza", - "name:sa": "संयुक्त अधिराज्य", - "name:sah": "Холбоhуктаах Хоруоллук", - "name:sat": "ᱥᱮᱞᱮᱫ ᱫᱤᱥᱚᱢ", - "name:sc": "Rennu Auniadu", - "name:scn": "Regnu Unitu", - "name:sco": "Unitit Kinrick", - "name:sd": "گڏيل بادشاھت", - "name:se": "Ovttastuvvan gonagasriika", - "name:sh": "Ujedinjeno Kraljevstvo", - "name:shi": "Briṭanya", - "name:shn": "မိူင်းႁူမ်ႈတုမ်ႁေႃၶမ်း ပရိတ်ႈတဵၼ်ႇ", - "name:si": "එක්සත් රාජධානිය", - "name:sk": "Spojené kráľovstvo", - "name:skr": "برطانیہ", - "name:sl": "Združeno kraljestvo", - "name:sm": "Peretānia", - "name:smn": "Ovtâstum kunâgâskodde", - "name:sms": "Õhttõõvvâm koonǥõskåʹdd", - "name:sn": "United Kingdom", - "name:so": "Midowga boqortooyada Britan", - "name:sq": "Mbretëria e Bashkuar e Britanisë dhe Irlandës së Veriut", - "name:sr": "Уједињено Краљевство", - "name:srn": "Ingriskondre", - "name:ss": "United Kingdom", - "name:stq": "Fereeniged Köönichriek fon Groot-Britannien un Noudirlound", - "name:su": "Britania", - "name:sv": "Storbritannien", - "name:sw": "Ufalme wa Muungano", - "name:szl": "Wielgŏ Brytanijŏ", - "name:ta": "ஐக்கிய இராச்சியம்", - "name:tcy": "ಯುನೈಟೆಡ್ ಕಿಂಗ್ಡಮ್", - "name:te": "యునైటెడ్ కింగ్‌డమ్", - "name:tet": "Reinu Naklibur", - "name:tg": "Подшоҳии Муттаҳида", - "name:th": "สหราชอาณาจักร", - "name:tk": "Birleşen Patyşalyk", - "name:tl": "Nagkakaisang Kaharian", - "name:to": "Pilitānia", - "name:tok": "ma Juke", - "name:tpi": "Yunaitet Kingdom", - "name:tr": "Birleşik Krallık", - "name:trv": "United Kingdom", - "name:ts": "United Kingdom", - "name:tt": "Бөекбритания", - "name:tw": "United Kingdom", - "name:ty": "Paratāne", - "name:tzl": "Regipäts Viensiçat", - "name:udm": "Великобритания", - "name:ug": "بۈيۈك بېرىتانىيە", - "name:uk": "Велика Британія", - "name:ur": "برطانیہ", - "name:uz": "Birlashgan Qirollik", - "name:vec": "Regno Unìo", - "name:vep": "Sur' Britanii", - "name:vi": "Vương quốc Anh", - "name:vls": "Verênigd Keunienkryk", - "name:vo": "Regän Pebalöl", - "name:vro": "Ütiskuningriik", - "name:wa": "Rweyåme-Uni", - "name:war": "Reino Unido", - "name:wo": "Nguur-Yu-Bennoo", - "name:wuu": "英国", - "name:xal": "Ик Бритишин болн Ар Гәәлгүдин Ниицәтә Нутг", - "name:xmf": "გოართოიანაფილი ომაფე", - "name:yi": "פאראייניגטע קעניגרייך", - "name:yo": "Ilẹ̀ọba Aṣọ̀kan", - "name:yue": "英國", - "name:za": "Yinghgoz", - "name:zea": "Vereênigd Konienkriek", - "name:zh": "英国 / 英國", - "name:zh-Hans": "英国", - "name:zh-Hant": "英國", - "name:zu": "Umbuso Ohlangeneyo", - "native_name": "United Kingdom of Great Britain and Northern Ireland", - "native_name:da": "Det Forenede Kongerige Storbritannien og Nordirland", - "native_name:es": "Reino Unido de Gran Bretaña e Irlanda del Norte", - "native_name:vi": "Vương quốc Liên hiệp Anh và Bắc Ireland", - "official_name": "United Kingdom of Great Britain and Northern Ireland", - "official_name:be": "Злучанае Каралеўства Вялікабрытаніі і Паўночнай Ірландыі", - "official_name:ca": "Regne Unit de Gran Bretanya i Irlanda del Nord", - "official_name:cs": "Spojené království Velké Británie a Severního Irska", - "official_name:de": "Vereinigtes Königreich Großbritannien und Nordirland", - "official_name:din": "Amatnhom Mäcŋaknhom në Britain Dït ku Parut Ireland", - "official_name:el": "Ηνωμένο Βασίλειο της Μεγάλης Βρετανίας και της Βόρειας Ιρλανδίας", - "official_name:en": "United Kingdom of Great Britain and Northern Ireland", - "official_name:eo": "Unuiĝinta Reĝlando de Granda Britio kaj Nord-Irlando", - "official_name:fr": "Royaume-Uni de Grande-Bretagne et d'Irlande du Nord", - "official_name:hr": "Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske", - "official_name:is": "Sameinaða konungsveldi Stóra-Bretlands og Norður-Írlands", - "official_name:it": "Regno Unito di Gran Bretagna e Irlanda del Nord", - "official_name:la": "Coniunctum Britanniae Maioris et Hiberniae Septentrionalis Regnum", - "official_name:mi": "Kīngitanga Kotahi o Piritana Nui me Airangi ki te Raki", - "official_name:nl": "Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland", - "official_name:pcd": "Rweyåme-Uni di Grande Burtaegne et d' Irlande do Nôr", - "official_name:pl": "Zjednoczone Królestwo Wielkiej Brytanii i Irlandii Północnej", - "official_name:ru": "Соединённое Королевство Великобритании и Северной Ирландии", - "official_name:sk": "Spojené kráľovstvo Veľkej Británie a Severného Írska", - "official_name:sl": "Združeno kraljestvo Velike Britanije in Severne Irske", - "official_name:vls": "Verênigd Keunienkryk van Grôot-Brittannië en Nôord-Ierland", - "official_name:wa": "Roéyôme-uni éd Grande-Bretagne pi d'Irlinde-du-Nord", - "official_name:zh": "大不列顛暨北愛爾蘭聯合王國/大不列颠及北爱尔兰联合王国", - "official_name:zh-Hans": "大不列颠及北爱尔兰联合王国", - "official_name:zh-Hant": "大不列顛暨北愛爾蘭聯合王國", - "ref:gss": "K02000001", - "short_name": "UK", - "short_name:el": "ΗΒ", - "short_name:fr": "RU", - "short_name:nl": "VK", - "short_name:pcd": "RU", - "short_name:ru": "Великобритания", - "short_name:vls": "VK", - "short_name:vo": "Britän", - "short_name:wa": "RU", - "source:ref:gss": "ONS_OpenData", - "timezone": "Europe/London", - "type": "boundary", - "wikidata": "Q145", - "wikipedia": "en:United Kingdom" - } -}, -{ - "type": "node", - "id": 271462, - "lat": 51.0395899, - "lon": -1.5382769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "SO51 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539700, - "lat": 51.4526917, - "lon": -0.9496527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "mapillary": "664934478120321", - "post_box:type": "pillar", - "ref": "RG1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 645729, - "lat": 52.5503911, - "lon": -1.8169364, - "tags": { - "amenity": "post_box", - "is_in": "Sutton Coldfield", - "ref": "B72 1162" - } -}, -{ - "type": "node", - "id": 645731, - "lat": 52.5544489, - "lon": -1.8233255, - "tags": { - "amenity": "post_box", - "is_in": "Sutton Coldfield", - "postal_code": "B72", - "ref": "B72 576" - } -}, -{ - "type": "node", - "id": 645734, - "lat": 52.5543990, - "lon": -1.8282641, - "tags": { - "amenity": "post_box", - "is_in": "Sutton Coldfield", - "post_box:type": "pillar", - "postal_code": "B73", - "ref": "B73 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2382437, - "lat": 52.5354461, - "lon": -1.8234384, - "tags": { - "amenity": "post_box", - "postal_code": "B72", - "ref": "B72 504", - "source": "Survey (Ref verified)" - } -}, -{ - "type": "node", - "id": 2444530, - "lat": 52.5914811, - "lon": -1.8304685, - "tags": { - "amenity": "post_box", - "ref": "B75 1030" - } -}, -{ - "type": "node", - "id": 2449055, - "lat": 52.5894678, - "lon": -1.8237192, - "tags": { - "amenity": "post_box", - "ref": "B75 626" - } -}, -{ - "type": "node", - "id": 2449058, - "lat": 52.5912318, - "lon": -1.8235079, - "tags": { - "amenity": "post_box", - "ref": "B75 96" - } -}, -{ - "type": "node", - "id": 2449059, - "lat": 52.5928971, - "lon": -1.8353775, - "tags": { - "amenity": "post_box", - "ref": "B75 361" - } -}, -{ - "type": "node", - "id": 3210224, - "lat": 51.5990140, - "lon": -0.1965456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N3 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3596840, - "lat": 53.4576282, - "lon": -2.2189334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "M14 172D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4121123, - "lat": 52.1348802, - "lon": -0.4754184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK40 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 4156523, - "lat": 52.1475876, - "lon": -0.4592120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4158992, - "lat": 52.1546178, - "lon": -0.4416541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-21", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4158993, - "lat": 52.1531723, - "lon": -0.4452371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4160492, - "lat": 52.1455864, - "lon": -0.4396158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 371D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 4183554, - "lat": 52.1582202, - "lon": -0.4583808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-16", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "note": "Information plate showed collection times but the reference was folded out of sight. According to Royal Mail list this should be MK41 296.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4278320, - "lat": 52.1514536, - "lon": -0.4534706, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK41 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4369478, - "lat": 50.6476004, - "lon": -1.1682932, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/sandown-road-po36-9lt/0000PO3657" - } -}, -{ - "type": "node", - "id": 4484992, - "lat": 52.5576727, - "lon": -1.8083584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B76 181", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 4724580, - "lat": 52.5485807, - "lon": -1.8314811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B73 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4724581, - "lat": 52.5473411, - "lon": -1.8358150, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 617" - } -}, -{ - "type": "node", - "id": 4727528, - "lat": 52.5376640, - "lon": -1.8272313, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B72", - "ref": "B72 131" - } -}, -{ - "type": "node", - "id": 5633875, - "lat": 52.7115392, - "lon": -1.7700025, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 5989234, - "lat": 52.1541010, - "lon": -0.4648956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-21", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6935592, - "lat": 52.1501114, - "lon": -0.4278262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 6973595, - "lat": 52.5988180, - "lon": -1.8475907, - "tags": { - "amenity": "post_box", - "ref": "B74 1002", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6977413, - "lat": 52.5947269, - "lon": -1.8481101, - "tags": { - "amenity": "post_box", - "ref": "B74 1108" - } -}, -{ - "type": "node", - "id": 7045191, - "lat": 52.1460695, - "lon": -0.4198145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "note": "Reference not visible: information plate insert set too low in its holder. Should be MK41 408 according to Royal Mail list.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 7046158, - "lat": 52.1536905, - "lon": -0.4181693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 7114358, - "lat": 52.1270986, - "lon": -0.4733033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 7117329, - "lat": 52.1388994, - "lon": -0.4712770, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-22", - "post_box:type": "pillar", - "ref": "MK40 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7209652, - "lat": 52.1637424, - "lon": -0.4870156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-18", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7305727, - "lat": 52.1270278, - "lon": -0.4947225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 7398209, - "lat": 52.1211632, - "lon": -0.4997421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 7398229, - "lat": 52.1255328, - "lon": -0.4813041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8079994, - "lat": 53.2432181, - "lon": -1.4993318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S42 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8085694, - "lat": 52.1373096, - "lon": -0.4668125, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-23", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "ref": "MK40 48", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 8085696, - "lat": 52.1397579, - "lon": -0.4671854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "MK40 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8085697, - "lat": 52.1410038, - "lon": -0.4616258, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8085700, - "lat": 52.1434994, - "lon": -0.4593622, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "ref": "MK40 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8087179, - "lat": 52.1366291, - "lon": -0.4795741, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK40 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8087181, - "lat": 52.1393182, - "lon": -0.4767017, - "tags": { - "amenity": "post_box", - "ref": "MK40 379" - } -}, -{ - "type": "node", - "id": 8091041, - "lat": 51.5033635, - "lon": -0.9869429, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 9281742, - "lat": 52.1498967, - "lon": -0.4522031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9940792, - "lat": 52.1278287, - "lon": -0.4629775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 9940798, - "lat": 52.1212000, - "lon": -0.4612629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 9940802, - "lat": 52.1223601, - "lon": -0.4659780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 9942575, - "lat": 52.1388252, - "lon": -0.4745964, - "tags": { - "amenity": "post_box", - "ref": "MK40 7" - } -}, -{ - "type": "node", - "id": 9942576, - "lat": 52.1359078, - "lon": -0.4732601, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK40 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 9943364, - "lat": 52.1436359, - "lon": -0.4697854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10289745, - "lat": 52.5379560, - "lon": -1.8534110, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 850" - } -}, -{ - "type": "node", - "id": 10308640, - "lat": 52.1230724, - "lon": -0.4555402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 10310542, - "lat": 51.7727258, - "lon": -0.4442562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 10394413, - "lat": 52.1283904, - "lon": -0.4589307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 10394422, - "lat": 52.1190389, - "lon": -0.4631844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 336D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 10537151, - "lat": 52.1162223, - "lon": -0.4902533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 10537322, - "lat": 52.1350891, - "lon": -0.4680050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK40 35", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10537324, - "lat": 52.1433747, - "lon": -0.4667248, - "tags": { - "amenity": "post_box", - "ref": "MK40 20" - } -}, -{ - "type": "node", - "id": 10698810, - "lat": 51.4108051, - "lon": -0.3017784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "note": "has 2 refs 12 & 1201", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT1 12;KT1 1201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10702727, - "lat": 51.4100244, - "lon": -0.3050068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10802772, - "lat": 52.4112928, - "lon": -1.9664925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B31 949", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10809334, - "lat": 52.4080984, - "lon": -1.9636117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "ref": "B31 143", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10831168, - "lat": 52.1458072, - "lon": -0.4614328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 28", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10850065, - "lat": 52.4083752, - "lon": -1.9683045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B31 763", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10853907, - "lat": 52.5539127, - "lon": -1.8769190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B44 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10853908, - "lat": 52.5526592, - "lon": -1.8814053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B44 1254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10853909, - "lat": 52.5563406, - "lon": -1.8710875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B73", - "ref": "B73 693", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10934509, - "lat": 50.8462880, - "lon": -1.1257270, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10934513, - "lat": 50.8470107, - "lon": -1.1362280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO16", - "ref": "PO16 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10934519, - "lat": 50.8508284, - "lon": -1.1370339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "note": "This postbox is of the brand new EIIR design of lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO16 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10976390, - "lat": 50.8499982, - "lon": -1.1479978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO16", - "ref": "PO16 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11009739, - "lat": 50.8442702, - "lon": -1.1223139, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO16", - "ref": "PO16 107D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11009742, - "lat": 50.8389232, - "lon": -1.1171329, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "PO16", - "ref": "PO16 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 11020530, - "lat": 50.9264971, - "lon": -1.2778132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO32 214", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 11020808, - "lat": 50.9180068, - "lon": -1.2150198, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 11231235, - "lat": 50.5915365, - "lon": -1.2263495, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "check_date:ref": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 263D", - "ref:GB:uprn": "10015469528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/castle-court-po38-1aa/000PO38263" - } -}, -{ - "type": "node", - "id": 11370384, - "lat": 51.3373074, - "lon": -0.3854572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11372224, - "lat": 52.4116292, - "lon": -1.9718706, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B31", - "ref": "B31 412" - } -}, -{ - "type": "node", - "id": 11372317, - "lat": 52.4116870, - "lon": -1.9774065, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B31", - "ref": "B31 674" - } -}, -{ - "type": "node", - "id": 11372584, - "lat": 52.4109102, - "lon": -1.9840394, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d", - "postal_code": "B31", - "ref": "B31 520" - } -}, -{ - "type": "node", - "id": 11431545, - "lat": 52.5546790, - "lon": -1.8166851, - "tags": { - "amenity": "post_box", - "ref": "B72 767" - } -}, -{ - "type": "node", - "id": 11431790, - "lat": 52.5484672, - "lon": -1.8240221, - "tags": { - "amenity": "post_box", - "ref": "B72 262" - } -}, -{ - "type": "node", - "id": 11431923, - "lat": 52.5467376, - "lon": -1.8162681, - "tags": { - "amenity": "post_box", - "ref": "B72 583D" - } -}, -{ - "type": "node", - "id": 11432068, - "lat": 52.5569025, - "lon": -1.8267136, - "tags": { - "amenity": "post_box", - "ref": "B73 288" - } -}, -{ - "type": "node", - "id": 11438641, - "lat": 50.7160996, - "lon": -1.2470346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 23", - "ref:GB:uprn": "10015273601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/station-road-po33-4na/0000PO3323" - } -}, -{ - "type": "node", - "id": 11439083, - "lat": 50.7153654, - "lon": -1.1481106, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-05", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/pennyfeathers-po33-1aa/000PO33110" - } -}, -{ - "type": "node", - "id": 11439259, - "lat": 50.6942097, - "lon": -1.1083166, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/latimer-road-po35-5aa/0000PO3375" - } -}, -{ - "type": "node", - "id": 11496832, - "lat": 50.6908707, - "lon": -1.0883471, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_times": "Mo-Fr 16:15, Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO35 102", - "ref:GB:uprn": "10015326411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po35-5aa/000PO35102" - } -}, -{ - "type": "node", - "id": 11604637, - "lat": 50.7057801, - "lon": -1.2856918, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/seaclose-stores-po30-1af/0000PO3046" - } -}, -{ - "type": "node", - "id": 11604644, - "lat": 50.6774103, - "lon": -1.2013323, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/knighton-farm-po36-0nt/000PO36117" - } -}, -{ - "type": "node", - "id": 11604645, - "lat": 50.6548280, - "lon": -1.3071365, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "description": "This postbox is on the northbound side of Main Road and is a lamp postbox adjoining the wall of 'The Old Post Office' house.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 76", - "ref:GB:uprn": "10015376889", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chillerton-village-po30-3ha/0000PO3076" - } -}, -{ - "type": "node", - "id": 11604648, - "lat": 50.6923261, - "lon": -1.2985653, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "check_date:ref": "2017-10-02", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 101D", - "ref:GB:uprn": "10015386509", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/whitepit-lane-po30-1ae/000PO30101" - } -}, -{ - "type": "node", - "id": 11604649, - "lat": 50.6936043, - "lon": -1.3026165, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-31", - "check_date:collection_times": "2022-05-31", - "check_date:ref": "2022-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "294136835590365", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO30 95D", - "ref:GB:uprn": "10015817456", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/winston-road-po30-1ae/0000PO3095" - } -}, -{ - "type": "node", - "id": 11604650, - "lat": 50.7071121, - "lon": -1.2825825, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 64D", - "ref:GB:uprn": "10015382987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/halberry-lane-po30-1ag/0000PO3064" - } -}, -{ - "type": "node", - "id": 11604651, - "lat": 50.6616543, - "lon": -1.2548380, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 16", - "ref:GB:uprn": "10015472278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/merstone-po30-3da/0000PO3016" - } -}, -{ - "type": "node", - "id": 11623755, - "lat": 50.5976444, - "lon": -1.2155520, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "250679216829483", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 204", - "ref:GB:uprn": "100062441453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-02", - "website": "https://www.royalmail.com/services-near-you/postbox/lowther-po38-1aa/000PO38204" - } -}, -{ - "type": "node", - "id": 11898550, - "lat": 51.5856353, - "lon": 0.0337981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11975995, - "lat": 50.6467356, - "lon": -1.4003042, - "tags": { - "amenity": "post_box", - "name": "Moortown Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 113", - "ref:GB:uprn": "10015426371", - "website": "https://www.royalmail.com/services-near-you/postbox/moortown-lane-po30-4bd/000PO30113" - } -}, -{ - "type": "node", - "id": 11975996, - "lat": 50.6807548, - "lon": -1.3964598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 97D", - "ref:GB:uprn": "10015422954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-12", - "website": "https://www.royalmail.com/services-near-you/postbox/gustars-shute-po30-4ja/0000PO3097", - "wikimedia_commons": "File:Calbourne, postbox № PO30 97, Sun Hill - geograph.org.uk - 3904260.jpg" - } -}, -{ - "type": "node", - "id": 11975997, - "lat": 50.6082162, - "lon": -1.3189819, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Bramstone", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chale-street-po38-2ln/000PO38256" - } -}, -{ - "type": "node", - "id": 11976000, - "lat": 50.6780648, - "lon": -1.3999803, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 96", - "ref:GB:uprn": "10015323356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/calbourne-village-po30-4ja/0000PO3096" - } -}, -{ - "type": "node", - "id": 11976001, - "lat": 50.6918078, - "lon": -1.3156825, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 81D", - "ref:GB:uprn": "10015350367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/the-waverley-po30-1ae/0000PO3081" - } -}, -{ - "type": "node", - "id": 11979609, - "lat": 50.6417659, - "lon": -1.3773532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 57", - "website": "https://www.royalmail.com/services-near-you/postbox/limerstone-po30-4aa/0000PO3057" - } -}, -{ - "type": "node", - "id": 12006033, - "lat": 50.6335951, - "lon": -1.1795023, - "tags": { - "amenity": "post_box", - "check_date:collection_plate": "2022-01-12", - "check_date:collection_times": "2022-01-12", - "check_date:ref": "2022-01-12", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 25D", - "ref:GB:uprn": "10015279742", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/railway-station-po38-3es/0000PO3725" - } -}, -{ - "type": "node", - "id": 12007134, - "lat": 50.6168960, - "lon": -1.1765675, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-18", - "check_date:collection_times": "2023-02-18", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO37 108D", - "ref:GB:uprn": "10025271793", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/luccombe-village-po37-6aa/000PO37108" - } -}, -{ - "type": "node", - "id": 12152421, - "lat": 51.4888710, - "lon": -0.9581275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 525D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12170818, - "lat": 51.4871352, - "lon": -0.9662144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "verify location", - "ref": "RG4 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 12275636, - "lat": 50.6915131, - "lon": -1.3184576, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 32D", - "ref:GB:uprn": "10015293042", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/alvington-road-po30-1ae/0000PO3032" - } -}, -{ - "type": "node", - "id": 12276694, - "lat": 50.6909885, - "lon": -1.3077558, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 59D", - "ref:GB:uprn": "10015339389", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/cedar-hill-po30-1ae/0000PO3059" - } -}, -{ - "type": "node", - "id": 12545838, - "lat": 52.1181336, - "lon": -0.4458049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 12547923, - "lat": 52.1127089, - "lon": -0.4635151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 12549779, - "lat": 52.1163816, - "lon": -0.4728665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 12644560, - "lat": 50.7641001, - "lon": -1.2983549, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lower-market-hill-po31-7aa/000PO31360" - } -}, -{ - "type": "node", - "id": 12862062, - "lat": 54.1003022, - "lon": -2.2852951, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/3837950", - "post_box:type": "wall", - "postal_code": "BD24", - "ref": "BD24 76" - } -}, -{ - "type": "node", - "id": 12866927, - "lat": 54.1012922, - "lon": -2.2735519, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "BD24", - "ref": "BD24 78" - } -}, -{ - "type": "node", - "id": 12890815, - "lat": 50.7236088, - "lon": -1.1483176, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 8", - "ref:GB:uprn": "10015272999", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/upper-st-johns-park-po33-1aa/00000PO338" - } -}, -{ - "type": "node", - "id": 13400479, - "lat": 50.6720221, - "lon": -1.5429561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO39 61D", - "ref:GB:uprn": "10015270116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-01-16", - "website": "https://www.royalmail.com/services-near-you/postbox/highdown-po39-0aa/0000PO3961", - "wikimedia_commons": "File:Entrance to Stotts Farm Camping site, Totland - geograph.org.uk - 4283263.jpg" - } -}, -{ - "type": "node", - "id": 13494868, - "lat": 52.5407400, - "lon": -1.8261486, - "tags": { - "amenity": "post_box", - "postal_code": "B72", - "ref": "B72 378" - } -}, -{ - "type": "node", - "id": 13497343, - "lat": 52.5348608, - "lon": -1.8151135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B72", - "ref": "B72 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 13498386, - "lat": 52.5332658, - "lon": -1.8206846, - "tags": { - "amenity": "post_box", - "postal_code": "B72", - "ref": "B72 1103" - } -}, -{ - "type": "node", - "id": 13499076, - "lat": 52.5524386, - "lon": -1.8269493, - "tags": { - "amenity": "post_box", - "postal_code": "B72", - "ref": "B72 471" - } -}, -{ - "type": "node", - "id": 13730730, - "lat": 52.1082863, - "lon": -0.4650810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 13796582, - "lat": 52.1194819, - "lon": -0.4936805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-12", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 13796862, - "lat": 52.1128534, - "lon": -0.4946365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 303", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 13797077, - "lat": 52.1146650, - "lon": -0.4988055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-12", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 13833380, - "lat": 51.4352741, - "lon": -0.0086337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 13833381, - "lat": 51.4375916, - "lon": -0.0019415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 13864332, - "lat": 50.7336550, - "lon": -1.2243800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 34", - "ref:GB:uprn": "10023711299", - "website": "https://www.royalmail.com/services-near-you/postbox/woodside-po33-4aa/0000PO3334" - } -}, -{ - "type": "node", - "id": 13876772, - "lat": 52.1143116, - "lon": -0.4863092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 13876870, - "lat": 52.1089935, - "lon": -0.4979846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 13876980, - "lat": 52.1123094, - "lon": -0.5011701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 13876985, - "lat": 52.1155733, - "lon": -0.5022074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-28", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 13884886, - "lat": 52.1109295, - "lon": -0.5052094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 13898662, - "lat": 50.5850617, - "lon": -1.2860873, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "This postbox is a brand new EIIR lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/the-glen-po38-1ya/000PO38262" - } -}, -{ - "type": "node", - "id": 13902902, - "lat": 52.1431147, - "lon": -0.4814405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 13995409, - "lat": 50.7214272, - "lon": -1.1132666, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO34 100D", - "ref:GB:uprn": "10015360376", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/bluett-avenue-po34-5aa/000PO34100" - } -}, -{ - "type": "node", - "id": 14096079, - "lat": 51.4576380, - "lon": -0.9358812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14096080, - "lat": 51.4573496, - "lon": -0.9298445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "218155224512894", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RG6 513D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 14099031, - "lat": 51.4487954, - "lon": -0.9328510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14099737, - "lat": 51.4463606, - "lon": -0.9275077, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "RG6 440D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 14099748, - "lat": 51.4584736, - "lon": -0.9221120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG5 367D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14165208, - "lat": 51.4551472, - "lon": -0.9565144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14210827, - "lat": 52.6735318, - "lon": -1.1313886, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 14238210, - "lat": 51.4534335, - "lon": -0.9528090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RG1 480D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14238250, - "lat": 51.4538525, - "lon": -0.9460092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14324397, - "lat": 52.6761284, - "lon": -1.1277732, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 14355732, - "lat": 51.4552363, - "lon": -0.9347248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG6 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14380781, - "lat": 51.3866954, - "lon": -2.3572149, - "tags": { - "amenity": "post_box", - "postal_code": "BA2", - "ref": "BA2 5" - } -}, -{ - "type": "node", - "id": 14381426, - "lat": 51.3800655, - "lon": -2.3511414, - "tags": { - "amenity": "post_box", - "postal_code": "BA2", - "ref": "BA2 111" - } -}, -{ - "type": "node", - "id": 14383874, - "lat": 51.3750509, - "lon": -2.3545156, - "tags": { - "amenity": "post_box", - "postal_code": "BA2", - "ref": "BA2 15" - } -}, -{ - "type": "node", - "id": 14384027, - "lat": 51.3764145, - "lon": -2.3565925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "BA2", - "ref": "BA2 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 14389745, - "lat": 51.3717536, - "lon": -2.3661268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "866691538463128", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BA2", - "ref": "BA2 56", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 14389999, - "lat": 51.3738431, - "lon": -2.3623352, - "tags": { - "amenity": "post_box", - "postal_code": "BA2", - "ref": "BA2 22" - } -}, -{ - "type": "node", - "id": 14390895, - "lat": 51.3708688, - "lon": -2.3551336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "BA2", - "ref": "BA2 191", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 14393516, - "lat": 51.4505524, - "lon": -0.9644291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "RG1 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14393850, - "lat": 51.4479860, - "lon": -0.9517652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG1 162D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 14393851, - "lat": 51.4488548, - "lon": -0.9458461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Junction of Eastern Avenue with Erleigh Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG1 38" - } -}, -{ - "type": "node", - "id": 14394958, - "lat": 51.4398433, - "lon": -0.9179048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG6 366D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-12-23", - "wikimedia_commons": "File:Junction of Station Road with Wokingham Road - geograph.org.uk - 4173665.jpg" - } -}, -{ - "type": "node", - "id": 14396076, - "lat": 51.4421141, - "lon": -0.9298858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside 203 Wokingham Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG6 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 14396080, - "lat": 51.4365863, - "lon": -0.9257432, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RG6 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14396083, - "lat": 51.4255661, - "lon": -0.9395821, - "tags": { - "amenity": "post_box", - "ref": "RG6 616" - } -}, -{ - "type": "node", - "id": 14396085, - "lat": 51.4271829, - "lon": -0.9356434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG6 625D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14398312, - "lat": 51.4342272, - "lon": -0.9067749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "ref": "RG6 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 14398353, - "lat": 51.4406536, - "lon": -0.9239031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 428D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Salcombe_Drive_2019-12-08_13.52.50.jpg" - } -}, -{ - "type": "node", - "id": 14398366, - "lat": 51.4395649, - "lon": -0.9297473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG6 434" - } -}, -{ - "type": "node", - "id": 14399017, - "lat": 51.4452353, - "lon": -0.9336230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 205", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14399018, - "lat": 51.4440306, - "lon": -0.9366799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside 66 Whiteknights Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 298D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 14409976, - "lat": 51.4442314, - "lon": -0.9627712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 14410099, - "lat": 51.4490620, - "lon": -0.9422490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 255D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14410100, - "lat": 51.4505005, - "lon": -0.9572656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 14410101, - "lat": 51.4480940, - "lon": -0.9585799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG1 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14410105, - "lat": 51.4455856, - "lon": -0.9568347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG1 369D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14422198, - "lat": 51.4481058, - "lon": -0.9038531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "RG5 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 14426911, - "lat": 51.4510722, - "lon": -0.9423049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG6 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14427476, - "lat": 51.4534575, - "lon": -0.9267693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "RG6 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14490070, - "lat": 52.6721616, - "lon": -1.1284069, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 14497935, - "lat": 51.4303368, - "lon": -0.9482682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG2 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14497978, - "lat": 51.4293544, - "lon": -0.9689162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14498002, - "lat": 51.4427770, - "lon": -0.9553045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:45", - "post_box:type": "pillar", - "ref": "RG2 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14498016, - "lat": 51.4386284, - "lon": -0.9507582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 07:00", - "ref": "RG2 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14498029, - "lat": 51.4371828, - "lon": -0.9546059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "RG2 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14498047, - "lat": 51.4248525, - "lon": -0.9660832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG2 432D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14498059, - "lat": 51.4334482, - "lon": -0.9504050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG2 249D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14561051, - "lat": 51.3794632, - "lon": -2.3758998, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BA2", - "ref": "BA2 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14579914, - "lat": 51.7535277, - "lon": -1.2184711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX3 556" - } -}, -{ - "type": "node", - "id": 14602035, - "lat": 52.1260048, - "lon": -0.4535329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14602041, - "lat": 52.1269889, - "lon": -0.4470179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14602048, - "lat": 52.1195559, - "lon": -0.4426967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14602059, - "lat": 52.1223929, - "lon": -0.4432928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 372", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14653529, - "lat": 53.9856041, - "lon": -0.7849766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO42 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14672621, - "lat": 52.6265986, - "lon": -1.1221856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "LE1", - "ref": "LE1 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14676761, - "lat": 52.1839948, - "lon": -0.3997152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 14676766, - "lat": 52.1770253, - "lon": -0.4256941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 14676773, - "lat": 52.1776658, - "lon": -0.4423495, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-05", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 14676795, - "lat": 52.1646575, - "lon": -0.4500621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 14687341, - "lat": 52.1363141, - "lon": -0.4451960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK41 345", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 14706047, - "lat": 51.7576292, - "lon": -1.2595766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX1 131", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "gps_survey;Bing" - } -}, -{ - "type": "node", - "id": 14718956, - "lat": 51.7454661, - "lon": -1.2837027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "postal_code": "OX2", - "ref": "OX2 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-02-15" - } -}, -{ - "type": "node", - "id": 14785758, - "lat": 51.7620441, - "lon": -1.2635267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "wall", - "postal_code": "OX2", - "ref": "OX2 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14796140, - "lat": 52.6801423, - "lon": -1.1273282, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 14837213, - "lat": 51.4694108, - "lon": -0.9889350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "RG4 168", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 14837588, - "lat": 51.4866705, - "lon": -1.0349142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG4 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 14839175, - "lat": 51.4675258, - "lon": -0.9773126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG4 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 14852298, - "lat": 52.0806373, - "lon": -0.4467356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK45 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14852312, - "lat": 52.0814500, - "lon": -0.4366106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14852372, - "lat": 52.0858063, - "lon": -0.4255724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14853422, - "lat": 52.1243669, - "lon": -0.4408388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14913138, - "lat": 52.1428898, - "lon": -0.4559818, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK40 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 14915809, - "lat": 52.1374458, - "lon": -0.4259413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 14916561, - "lat": 52.1403274, - "lon": -0.4515957, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK40 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 14918304, - "lat": 52.1438061, - "lon": -0.4482323, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK40 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 14955886, - "lat": 52.1314008, - "lon": -0.4596372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 305D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14956498, - "lat": 52.1135207, - "lon": -0.4371409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 14956581, - "lat": 52.1183335, - "lon": -0.4106735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK44 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 14959772, - "lat": 53.1648346, - "lon": -2.2363168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "ref": "CW12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS waypoint", - "upload_tag": "avantman42" - } -}, -{ - "type": "node", - "id": 15022542, - "lat": 52.1243476, - "lon": -0.4719368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 15024263, - "lat": 52.1172272, - "lon": -0.4762877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 15205001, - "lat": 50.8249032, - "lon": -0.1727892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BN3 185D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 15209256, - "lat": 50.8279445, - "lon": -0.1730078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "ref": "BN3 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15210774, - "lat": 50.8310615, - "lon": -0.1734069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 05:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15211689, - "lat": 50.8281555, - "lon": -0.1788754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "BN3 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15213226, - "lat": 50.8285670, - "lon": -0.1835029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 15213285, - "lat": 50.8305661, - "lon": -0.1794688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "ref": "BN3 337", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 15215211, - "lat": 50.8311230, - "lon": -0.1848835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 335", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 15215215, - "lat": 50.8262235, - "lon": -0.1858131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15215218, - "lat": 50.8297737, - "lon": -0.1844455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15216090, - "lat": 50.8322860, - "lon": -0.1771806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15216091, - "lat": 50.8316657, - "lon": -0.1721288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 15432578, - "lat": 52.7305539, - "lon": -1.7491571, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "DE13", - "ref": "DE13 1240" - } -}, -{ - "type": "node", - "id": 15481720, - "lat": 51.4441236, - "lon": -0.9722376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RG2 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15481723, - "lat": 51.4436113, - "lon": -0.9680129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "RG2 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15613906, - "lat": 52.1408032, - "lon": -0.4712010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS waypoint;survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 15732195, - "lat": 52.5593900, - "lon": -1.8747909, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B73", - "ref": "B73 1071" - } -}, -{ - "type": "node", - "id": 15732280, - "lat": 52.5591764, - "lon": -1.8804300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B73", - "ref": "B73 871", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 15738257, - "lat": 51.4501174, - "lon": -0.9862282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG1 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15738258, - "lat": 51.4476274, - "lon": -0.9848829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Coley Avenue just north of junction with Berkeley Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG1 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15738259, - "lat": 51.4495458, - "lon": -0.9823480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG1 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15870544, - "lat": 51.5562634, - "lon": -0.9016226, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 15870908, - "lat": 51.5573040, - "lon": -0.8208989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL7 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15879677, - "lat": 51.4463244, - "lon": -0.9326518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 238D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15880051, - "lat": 51.4488473, - "lon": -0.9287449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG5 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15880056, - "lat": 51.4516862, - "lon": -0.9307715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 432D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15880927, - "lat": 51.4539743, - "lon": -0.9145100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "wall", - "ref": "RG5 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15917634, - "lat": 51.4467576, - "lon": -0.9120250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "wall", - "ref": "RG5 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15917651, - "lat": 51.5773882, - "lon": -0.7691147, - "tags": { - "amenity": "post_box", - "ref": "SL7 223" - } -}, -{ - "type": "node", - "id": 15917672, - "lat": 51.5788726, - "lon": -0.7123850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL8 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15917673, - "lat": 51.5788846, - "lon": -0.7124118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL8 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15919295, - "lat": 51.4461305, - "lon": -0.9143627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG5 597D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15920306, - "lat": 51.4459725, - "lon": -0.9058827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "RG5 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15920309, - "lat": 51.4441520, - "lon": -0.9066761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RG5 592D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15949621, - "lat": 51.6136371, - "lon": -0.6477817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-14", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 15949629, - "lat": 51.6224216, - "lon": -0.6546679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 15955347, - "lat": 51.4522978, - "lon": -0.9851645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Belle Vue Road | Reading", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG1 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15955372, - "lat": 51.4549203, - "lon": -0.9816879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "RG1", - "ref": "RG1 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 15955408, - "lat": 51.4515573, - "lon": -0.9807185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Castle Hill Post Box 2019-07-15 20.46.31.jpg" - } -}, -{ - "type": "node", - "id": 15955567, - "lat": 51.4559100, - "lon": -0.9904960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 16062094, - "lat": 51.7104258, - "lon": -0.6094758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 16624271, - "lat": 52.5247203, - "lon": -1.7859521, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests this should be B35 1112", - "note": "Number needs checking as photo is blurred", - "post_box:type": "pillar", - "postal_code": "B35", - "ref": "B35 1152" - } -}, -{ - "type": "node", - "id": 16738916, - "lat": 52.7332942, - "lon": -1.7452870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1247" - } -}, -{ - "type": "node", - "id": 17205520, - "lat": 52.5379546, - "lon": -1.7897599, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 1359" - } -}, -{ - "type": "node", - "id": 17388367, - "lat": 51.7597214, - "lon": -0.0120546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "EN11 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 17388369, - "lat": 51.7613980, - "lon": -0.0113088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "EN11 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 17871040, - "lat": 51.7516940, - "lon": -0.3118950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 17959303, - "lat": 51.7539504, - "lon": -0.3327705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 18236982, - "lat": 51.7008208, - "lon": -1.2859294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "OX13 1059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 18326487, - "lat": 51.7704027, - "lon": -0.0001213, - "tags": { - "amenity": "post_box", - "ref": "EN11 110" - } -}, -{ - "type": "node", - "id": 18338884, - "lat": 51.7677580, - "lon": -0.0082474, - "tags": { - "amenity": "post_box", - "ref": "EN11 105" - } -}, -{ - "type": "node", - "id": 18345159, - "lat": 52.6709138, - "lon": -0.7439773, - "tags": { - "amenity": "post_box", - "mapillary": "1217774841981998", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 18351424, - "lat": 52.5933532, - "lon": -0.7206674, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 18373507, - "lat": 52.6769465, - "lon": -0.7221091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "postal_code": "LE15", - "ref": "LE15 25" - } -}, -{ - "type": "node", - "id": 18377464, - "lat": 52.6731328, - "lon": -0.7241119, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "LE15", - "ref": "LE15 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 18379828, - "lat": 52.6914859, - "lon": -0.6326473, - "tags": { - "amenity": "post_box", - "postal_code": "LE15", - "ref": "LE15 95" - } -}, -{ - "type": "node", - "id": 18384784, - "lat": 52.6919227, - "lon": -0.6817085, - "tags": { - "amenity": "post_box", - "old_ref": "Oak 21" - } -}, -{ - "type": "node", - "id": 18457771, - "lat": 52.6734747, - "lon": -0.5373039, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 18459237, - "lat": 52.6781086, - "lon": -0.5724718, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 18623525, - "lat": 51.7610106, - "lon": -0.0053883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EN11 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 18660068, - "lat": 52.5965625, - "lon": -0.6364391, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 18660069, - "lat": 52.6214417, - "lon": -0.6213966, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 18958118, - "lat": 55.9305261, - "lon": -4.3360960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 1110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 18968643, - "lat": 52.6711587, - "lon": -1.1241987, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 18968670, - "lat": 52.6748338, - "lon": -1.1184437, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 19027761, - "lat": 52.6674012, - "lon": -1.1262401, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 19031133, - "lat": 52.6839182, - "lon": -1.1243210, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 19036657, - "lat": 52.6838447, - "lon": -1.1176753, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 19240161, - "lat": 52.6818347, - "lon": -1.1311130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 19429337, - "lat": 51.7531258, - "lon": -0.3413123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 19447077, - "lat": 52.1984410, - "lon": -2.2192356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "WR1", - "ref": "WR1 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 19851911, - "lat": 52.2109796, - "lon": 0.1387736, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "post box has a spikey to to stop people sitting on it", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB5", - "ref": "CB5 34D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 19851915, - "lat": 52.2162504, - "lon": 0.1654561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB5 8", - "ref": "CB5 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 19851916, - "lat": 52.2137473, - "lon": 0.1547997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB5", - "ref": "CB5 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 19854382, - "lat": 51.9921600, - "lon": 1.1102236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "IP9 2NA", - "ref": "IP9 1236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 19854385, - "lat": 52.0019609, - "lon": 1.1116902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "IP9 2NU", - "ref": "IP9 1081", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 19861344, - "lat": 51.7653891, - "lon": -0.0155287, - "tags": { - "amenity": "post_box", - "ref": "EN11 127" - } -}, -{ - "type": "node", - "id": 20081390, - "lat": 52.1466885, - "lon": 0.1365452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB22 339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 20254233, - "lat": 52.6917450, - "lon": -1.1136941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 20575395, - "lat": 51.2366261, - "lon": -0.2820895, - "tags": { - "amenity": "post_box", - "ref": "RH3 193", - "source": "Photo P142-0248" - } -}, -{ - "type": "node", - "id": 20586801, - "lat": 51.2516216, - "lon": -0.3354156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH5 127" - } -}, -{ - "type": "node", - "id": 20590661, - "lat": 51.2540168, - "lon": -0.3284319, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH5 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Photo P142-0276" - } -}, -{ - "type": "node", - "id": 20596478, - "lat": 51.2384534, - "lon": -0.1992312, - "tags": { - "amenity": "post_box", - "ref": "RH2 85", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 20605651, - "lat": 51.2435249, - "lon": -0.2520315, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH3 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20627148, - "lat": 52.6594346, - "lon": -1.1328258, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 20694149, - "lat": 51.7542717, - "lon": -0.3116767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20694150, - "lat": 51.7559060, - "lon": -0.3208181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 20694618, - "lat": 52.5433561, - "lon": -1.7951847, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 1377" - } -}, -{ - "type": "node", - "id": 20820284, - "lat": 51.7566001, - "lon": -0.3163578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 191", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 20822237, - "lat": 51.2997847, - "lon": -0.3213755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20822704, - "lat": 52.6609494, - "lon": -1.1306156, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 20827171, - "lat": 52.2037366, - "lon": 0.1424395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1", - "ref": "CB1 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20827172, - "lat": 52.2012496, - "lon": 0.1398939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:15; Sa 12:45", - "collection_times:signed": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1", - "ref": "CB1 18", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 20828926, - "lat": 51.6192290, - "lon": -0.8364470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP14 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 20828959, - "lat": 51.6307668, - "lon": -0.7908876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 20907863, - "lat": 50.8515747, - "lon": -1.1239448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20923601, - "lat": 52.6572178, - "lon": -1.1224161, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 20923613, - "lat": 52.6498767, - "lon": -1.1265123, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20926194, - "lat": 50.7321027, - "lon": -1.8935151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 256", - "ref:GB:uprn": "10015311381", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20926224, - "lat": 50.7250925, - "lon": -1.8893088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 16", - "ref:GB:uprn": "10015445936", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 20942050, - "lat": 51.3156177, - "lon": -0.5382823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 109D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 20942129, - "lat": 51.2809758, - "lon": -0.8867400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5990638784299062", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG27 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-03" - } -}, -{ - "type": "node", - "id": 20942769, - "lat": 51.3010344, - "lon": -0.9019084, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 20949399, - "lat": 51.2464069, - "lon": -0.1824124, - "tags": { - "amenity": "post_box", - "ref": "RH2 332", - "source": "Photo P142-0176" - } -}, -{ - "type": "node", - "id": 20954622, - "lat": 52.6468264, - "lon": -1.1252528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 20955242, - "lat": 51.2446071, - "lon": -0.1788022, - "tags": { - "amenity": "post_box", - "ref": "RH1 336", - "source": "Photo P141-0732" - } -}, -{ - "type": "node", - "id": 20955290, - "lat": 51.2365180, - "lon": -0.1799703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "187873690251226", - "post_box:type": "pillar", - "ref": "RH1 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 20959945, - "lat": 51.7562863, - "lon": -0.3394360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20962806, - "lat": 52.1968861, - "lon": 0.1050569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20962851, - "lat": 52.1998086, - "lon": 0.1050986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CB3", - "ref": "CB3 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20962852, - "lat": 52.2022047, - "lon": 0.1022232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 115D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 20962882, - "lat": 52.1947588, - "lon": 0.1071162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20962945, - "lat": 52.1951074, - "lon": 0.1103049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20963029, - "lat": 52.1955104, - "lon": 0.1004161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20963084, - "lat": 52.1927764, - "lon": 0.1066047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB3 9", - "ref": "CB3 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20963239, - "lat": 52.1983663, - "lon": 0.0980297, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB3 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20963295, - "lat": 52.1999879, - "lon": 0.0943924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "CB3 9", - "ref": "CB3 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 20963356, - "lat": 52.2110145, - "lon": 0.1065987, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 121D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 20963362, - "lat": 52.2077579, - "lon": 0.0993825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 124D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 20963367, - "lat": 52.2051155, - "lon": 0.1059130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 20963369, - "lat": 52.1995827, - "lon": 0.1088609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CB3 9", - "ref": "CB3 116", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 20963816, - "lat": 51.2083284, - "lon": -0.2505913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Leigh Green", - "note": "on SW side of junction: P170-0092", - "old_ref": "RH2 170", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH2 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "Photo P143-0519;survey" - } -}, -{ - "type": "node", - "id": 20963856, - "lat": 51.2417110, - "lon": -0.2314578, - "tags": { - "amenity": "post_box", - "note": "missing plaque on 2011-03-10", - "operator": "Royal Mail", - "ref": "RH2 175", - "source": "Photo P142-0043" - } -}, -{ - "type": "node", - "id": 20965827, - "lat": 52.5840704, - "lon": -1.7230215, - "tags": { - "amenity": "post_box", - "postal_code": "B78", - "ref": "B78 137" - } -}, -{ - "type": "node", - "id": 20973085, - "lat": 52.6524835, - "lon": -1.1163822, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 20973308, - "lat": 51.4675058, - "lon": -0.2057992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20974307, - "lat": 51.2336549, - "lon": -0.1860609, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RH2 179", - "royal_cypher": "GR", - "source:ref": "Photo P144-0004" - } -}, -{ - "type": "node", - "id": 20974332, - "lat": 51.2372173, - "lon": -0.2072834, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RH2 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P140-0898;survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 20980534, - "lat": 52.6369973, - "lon": -1.1276970, - "tags": { - "amenity": "post_box", - "postal_code": "LE1", - "ref": "LE1 823" - } -}, -{ - "type": "node", - "id": 20992704, - "lat": 52.6099095, - "lon": -1.1052350, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 20992705, - "lat": 52.6103743, - "lon": -1.1128032, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 229", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 20998950, - "lat": 51.2337852, - "lon": -0.1911449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Barcode number 640160 ??", - "note2": "missing plaque on 2011-03-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH2 160", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Photo P141-753" - } -}, -{ - "type": "node", - "id": 20998987, - "lat": 51.2285921, - "lon": -0.1781726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "resurvey to see if box number can be seen", - "note": "This box has a square window for the rectangular Collection times plate - Ref number hidden 2011-03", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 2", - "source": "photos P140-0xxx on 2011-02-07 & -11-21" - } -}, -{ - "type": "node", - "id": 21036431, - "lat": 52.6217952, - "lon": -1.1125668, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE2", - "ref": "LE2 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21036432, - "lat": 52.6174903, - "lon": -1.1092136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "539637007286823", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LE2", - "ref": "LE2 29", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 21039931, - "lat": 52.5961125, - "lon": -1.0740893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE2 584", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21040328, - "lat": 52.5993435, - "lon": -1.0838232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LE2 759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21068033, - "lat": 51.2499446, - "lon": -0.1702364, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH1 282", - "source": "Photo P141-0711" - } -}, -{ - "type": "node", - "id": 21068045, - "lat": 51.2501924, - "lon": -0.1667081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH1 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:ref": "Photo P143-0504" - } -}, -{ - "type": "node", - "id": 21068046, - "lat": 51.2525140, - "lon": -0.1696735, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Photo P141-0705", - "source_1": "survey", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 21068049, - "lat": 51.2516222, - "lon": -0.1649920, - "tags": { - "amenity": "post_box", - "ref": "RH1 326", - "source": "Photo P141-0698" - } -}, -{ - "type": "node", - "id": 21068050, - "lat": 51.2451999, - "lon": -0.1670976, - "tags": { - "amenity": "post_box", - "ref": "RH1 7", - "source:ref": "Photo P143-0502" - } -}, -{ - "type": "node", - "id": 21068080, - "lat": 51.2326702, - "lon": -0.1724612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "name": "Garlands Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Photo P142-0353", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 21068694, - "lat": 52.5529483, - "lon": -1.8489380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B73", - "ref": "B73 691", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 21075457, - "lat": 52.0525400, - "lon": 1.3228986, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IP12 6372", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 21075458, - "lat": 52.0559240, - "lon": 1.3193147, - "tags": { - "amenity": "post_box", - "ref": "IP12 6356" - } -}, -{ - "type": "node", - "id": 21075658, - "lat": 52.5534732, - "lon": -1.8576253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B73", - "ref": "B73 259D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikidata": "Q113686837" - } -}, -{ - "type": "node", - "id": 21094850, - "lat": 53.1125900, - "lon": -3.0666276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL12 248", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21095577, - "lat": 51.2302969, - "lon": -0.2029110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH2 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21095650, - "lat": 51.2076734, - "lon": -0.2000386, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.6" - } -}, -{ - "type": "node", - "id": 21095651, - "lat": 51.2021312, - "lon": -0.2128989, - "tags": { - "amenity": "post_box", - "fixme": "is this still here?", - "operator": "Royal Mail", - "ref": "RH2 121" - } -}, -{ - "type": "node", - "id": 21095679, - "lat": 51.1846630, - "lon": -0.2105420, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 240" - } -}, -{ - "type": "node", - "id": 21096693, - "lat": 51.1216454, - "lon": -0.2498518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH11 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21096798, - "lat": 51.1128255, - "lon": -0.2905504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH12 66" - } -}, -{ - "type": "node", - "id": 21097481, - "lat": 51.0600201, - "lon": -0.3306594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "old_ref": "RH12 30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH12 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21098684, - "lat": 50.8525990, - "lon": -1.1655995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "Not sure", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 21112118, - "lat": 55.9414395, - "lon": -3.1720956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EH16 618D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 21123000, - "lat": 50.8571270, - "lon": -1.1723639, - "tags": { - "amenity": "post_box", - "postal_code": "PO16 28", - "ref": "PO16 5" - } -}, -{ - "type": "node", - "id": 21137723, - "lat": 52.2215153, - "lon": 0.1543115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB4 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21137749, - "lat": 52.2264735, - "lon": 0.1469142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21137763, - "lat": 52.2205734, - "lon": 0.1395302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21137768, - "lat": 52.2200432, - "lon": 0.1447170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21265357, - "lat": 51.5316821, - "lon": -0.7074545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SL6 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21284204, - "lat": 52.1375022, - "lon": -0.5150925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 21285356, - "lat": 53.8144375, - "lon": -1.5742414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21319027, - "lat": 53.7882150, - "lon": -1.6033377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 939" - } -}, -{ - "type": "node", - "id": 21340113, - "lat": 52.2426213, - "lon": 0.1571076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB4 436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21391220, - "lat": 52.1962730, - "lon": 0.1221859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 2", - "ref": "CB2 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21391225, - "lat": 52.1959887, - "lon": 0.1248858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21391267, - "lat": 52.1861188, - "lon": 0.1242645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21391270, - "lat": 52.1849077, - "lon": 0.1198804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB2 2", - "ref": "CB2 96D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21391271, - "lat": 52.1815506, - "lon": 0.1252964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "CB2 2", - "ref": "CB2 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21397949, - "lat": 53.3685296, - "lon": -2.8886284, - "tags": { - "amenity": "post_box", - "ref": "L18 323" - } -}, -{ - "type": "node", - "id": 21397951, - "lat": 53.3859174, - "lon": -2.9080279, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L18 169" - } -}, -{ - "type": "node", - "id": 21397972, - "lat": 53.3889631, - "lon": -2.9170292, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L15 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21398046, - "lat": 53.3864567, - "lon": -2.9014236, - "tags": { - "amenity": "post_box", - "ref": "L18 723" - } -}, -{ - "type": "node", - "id": 21409215, - "lat": 53.3714514, - "lon": -2.8972114, - "tags": { - "amenity": "post_box", - "ref": "L18 590" - } -}, -{ - "type": "node", - "id": 21409384, - "lat": 53.3773784, - "lon": -2.9033161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L18 755" - } -}, -{ - "type": "node", - "id": 21411404, - "lat": 53.3813174, - "lon": -2.9048888, - "tags": { - "amenity": "post_box", - "ref": "L18 38" - } -}, -{ - "type": "node", - "id": 21426030, - "lat": 51.7608027, - "lon": -0.3148770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21426031, - "lat": 51.7564250, - "lon": -0.3032172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 210D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 21426033, - "lat": 51.7536585, - "lon": -0.3049391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21426034, - "lat": 51.7642294, - "lon": -0.3124489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21426042, - "lat": 51.7619682, - "lon": -0.3189827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21449470, - "lat": 52.2268854, - "lon": 0.1359095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21449505, - "lat": 52.2297443, - "lon": 0.1369348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21449510, - "lat": 52.2285742, - "lon": 0.1316149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21449652, - "lat": 52.2211031, - "lon": 0.1338637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21449654, - "lat": 52.2230673, - "lon": 0.1374335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21449664, - "lat": 52.2234425, - "lon": 0.1352519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB4 1", - "ref": "CB4 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21449683, - "lat": 52.2252388, - "lon": 0.1418197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 158D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21484343, - "lat": 51.2941412, - "lon": 1.0831558, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 338", - "source": "image", - "source_ref": "http://www.jammeh.com/osm/pics/jammeh-0007.jpg" - } -}, -{ - "type": "node", - "id": 21547023, - "lat": 52.2288175, - "lon": 0.1230353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21547327, - "lat": 52.2293016, - "lon": 0.1273105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21547370, - "lat": 52.2300329, - "lon": 0.1159193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB4 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21547372, - "lat": 52.2284675, - "lon": 0.1134464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CB4 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21547376, - "lat": 52.2252898, - "lon": 0.1217213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21547379, - "lat": 52.2189172, - "lon": 0.1226759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB4 3", - "ref": "CB4 149D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21561337, - "lat": 52.1683052, - "lon": -1.2150563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN11 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21563398, - "lat": 51.7008082, - "lon": -1.0736897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX44 533D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 21563447, - "lat": 51.5125836, - "lon": -0.1067767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4Y 423D;EC4Y 4231D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2017-03-29" - } -}, -{ - "type": "node", - "id": 21579538, - "lat": 50.9777793, - "lon": -1.4018597, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21591770, - "lat": 52.2212919, - "lon": 0.1271064, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "CB4 1", - "ref": "CB4 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21591778, - "lat": 52.2246082, - "lon": 0.1165877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB4 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21591812, - "lat": 52.2184781, - "lon": 0.1066708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB4 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21591813, - "lat": 52.2194353, - "lon": 0.1029233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CB3 0", - "ref": "CB3 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21591814, - "lat": 52.2186899, - "lon": 0.1012388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 127D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:collection_times": "survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 21591825, - "lat": 52.2213200, - "lon": 0.0964128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref not currently visible on information plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 136D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 21596437, - "lat": 51.4387738, - "lon": -0.0197528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "late collection time", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE6 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21642452, - "lat": 52.1728339, - "lon": 0.1189625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB2 2", - "ref": "CB2 93D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 21642476, - "lat": 52.1728697, - "lon": 0.1137565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB2 2", - "ref": "CB2 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 21642477, - "lat": 52.1655239, - "lon": 0.1200835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21642488, - "lat": 52.1585138, - "lon": 0.1272182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21642496, - "lat": 52.1681824, - "lon": 0.1167104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21642523, - "lat": 52.1743264, - "lon": 0.1084290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "CB2 2", - "ref": "CB2 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21698437, - "lat": 52.6561686, - "lon": 0.6904072, - "tags": { - "amenity": "post_box", - "ref": "PE37 484" - } -}, -{ - "type": "node", - "id": 21702116, - "lat": 54.6165700, - "lon": -3.3897043, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 42" - } -}, -{ - "type": "node", - "id": 21712047, - "lat": 52.6515494, - "lon": 0.6947029, - "tags": { - "amenity": "post_box", - "ref": "PE37 346", - "source": "survey" - } -}, -{ - "type": "node", - "id": 21712239, - "lat": 52.6500867, - "lon": 0.6888224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PE37 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21713873, - "lat": 52.6486644, - "lon": 0.6873025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE37 509;PE37 5009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21720713, - "lat": 53.3852715, - "lon": -1.4938849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 21740907, - "lat": 53.3803758, - "lon": -1.5056407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21755594, - "lat": 52.5336631, - "lon": 0.8310687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "In wall pillar connected to bus shelter", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP24 3228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 21762488, - "lat": 52.8975732, - "lon": -1.5072679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 694" - } -}, -{ - "type": "node", - "id": 22266639, - "lat": 50.7805250, - "lon": -3.0408055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 22307470, - "lat": 50.7558655, - "lon": -3.0521696, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 23070915, - "lat": 50.7584981, - "lon": -3.0552945, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 23070941, - "lat": 50.7636945, - "lon": -3.0662283, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 23690040, - "lat": 50.7725446, - "lon": -3.0618898, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 23690079, - "lat": 50.7711736, - "lon": -3.0504934, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 23693588, - "lat": 51.5330895, - "lon": -0.0522207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 23721398, - "lat": 52.1764878, - "lon": 0.0969917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB3 330", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 23769107, - "lat": 52.2154449, - "lon": 0.0407001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CB23 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 23769185, - "lat": 52.2239491, - "lon": 0.0417276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB3 433D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 23769234, - "lat": 52.2262821, - "lon": 0.0431880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 24345254, - "lat": 52.9516002, - "lon": 0.7406645, - "tags": { - "addr:city": "Burnham Overy", - "addr:street": "Mill Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "name": "Church Hill", - "operator": "Royal Mail", - "postal_code": "PE31", - "ref": "PE31 381" - } -}, -{ - "type": "node", - "id": 24353003, - "lat": 52.9637379, - "lon": 0.7419468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE31 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2019-09-16" - } -}, -{ - "type": "node", - "id": 24655677, - "lat": 52.2155794, - "lon": 0.0996985, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-04", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:collection_times": "survey" - } -}, -{ - "type": "node", - "id": 24655679, - "lat": 52.2124294, - "lon": 0.0953844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 123", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 24655812, - "lat": 52.2255498, - "lon": 0.0877383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 24671828, - "lat": 52.1927925, - "lon": 0.1375735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 14:00", - "fixme": "Check Saturday time (weekday times checked in 2021, but Sat untouched since at least 2012)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CB1 7", - "ref": "CB1 197", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 24671837, - "lat": 52.1909998, - "lon": 0.1379612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 24673035, - "lat": 52.1884097, - "lon": 0.1425820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 24673036, - "lat": 52.1933972, - "lon": 0.1414006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 24673118, - "lat": 52.1942966, - "lon": 0.1472576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 24673131, - "lat": 52.1893411, - "lon": 0.1518660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "postal_code": "CB1 3", - "ref": "CB1 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 24673141, - "lat": 52.1871213, - "lon": 0.1617949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 24691811, - "lat": 51.4084425, - "lon": -0.4897270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 523", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 24932020, - "lat": 53.4060542, - "lon": -2.9649132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "QE II post boxes L3 5 & 5000 on Brownlow Hill at the University", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L3 5;L3 5000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Brownlow Hill.jpg" - } -}, -{ - "type": "node", - "id": 24932183, - "lat": 52.5491872, - "lon": -1.8503606, - "tags": { - "amenity": "post_box", - "ref": "B73 582" - } -}, -{ - "type": "node", - "id": 24932189, - "lat": 52.5461562, - "lon": -1.8446700, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 581" - } -}, -{ - "type": "node", - "id": 24932205, - "lat": 52.5432454, - "lon": -1.8450876, - "tags": { - "amenity": "post_box", - "ref": "B73 768" - } -}, -{ - "type": "node", - "id": 24932214, - "lat": 52.5552980, - "lon": -1.8604172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "B73 1179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 24934366, - "lat": 53.3892959, - "lon": -2.8944605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3255942264636384", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L16 620", - "survey:date": "2022-03-26" - } -}, -{ - "type": "node", - "id": 24950635, - "lat": 51.8236944, - "lon": -1.2874700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "Ref unclear", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX5 761", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 24966848, - "lat": 51.6813763, - "lon": -1.1310797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OX44 1000D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 24967378, - "lat": 51.8550326, - "lon": -2.2642366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "879817626430231", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 107", - "survey:date": "2023-03-23" - } -}, -{ - "type": "node", - "id": 24977768, - "lat": 52.5486672, - "lon": -1.7978940, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B76", - "ref": "B76 462", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25152958, - "lat": 51.6049620, - "lon": -2.5171223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-04-06" - } -}, -{ - "type": "node", - "id": 25177627, - "lat": 53.3748585, - "lon": -3.1589801, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH48 537 by Carron Company on Frankby Road near to Fulton Road, Newton, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 537", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Fulton Avenue, Newton, Wirral.jpg" - } -}, -{ - "type": "node", - "id": 25179737, - "lat": 51.7533994, - "lon": -0.3546996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL3 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25180151, - "lat": 51.2278220, - "lon": -0.2085686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH2 149D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25180222, - "lat": 51.2401076, - "lon": -0.2707474, - "tags": { - "amenity": "post_box", - "old_ref": "Betchworth Post Office", - "post_box:type": "wall", - "ref": "RH3 185", - "source": "Photo P141-0960" - } -}, -{ - "type": "node", - "id": 25180226, - "lat": 51.2316683, - "lon": -0.2864364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH3 167", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 25180229, - "lat": 51.2101957, - "lon": -0.2793113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH3 100" - } -}, -{ - "type": "node", - "id": 25180429, - "lat": 51.1949763, - "lon": -0.3070475, - "tags": { - "amenity": "post_box", - "ref": "RH5 25", - "source": "Photo P143-0531" - } -}, -{ - "type": "node", - "id": 25180433, - "lat": 51.1771245, - "lon": -0.3013683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25242509, - "lat": 51.9340568, - "lon": -2.1892659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25244856, - "lat": 52.5376290, - "lon": -1.7014471, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to chck ref, plate says B76 196R", - "post_box:type": "pillar", - "ref": "B76 196", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 25255052, - "lat": 51.2434817, - "lon": -0.2089067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH2 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25270505, - "lat": 52.1759366, - "lon": -1.0316390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN12 360" - } -}, -{ - "type": "node", - "id": 25271953, - "lat": 52.1826246, - "lon": -1.0215858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25283845, - "lat": 52.1804883, - "lon": -1.0069196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 465" - } -}, -{ - "type": "node", - "id": 25285270, - "lat": 52.1964567, - "lon": 0.1300600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25285276, - "lat": 52.1982137, - "lon": 0.1327489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 2", - "ref": "CB1 21D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 25288277, - "lat": 52.1790552, - "lon": 0.1484034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 60D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25288584, - "lat": 52.1741834, - "lon": 0.1490705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 2", - "ref": "CB2 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25288599, - "lat": 52.1765936, - "lon": 0.1567793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25288600, - "lat": 52.1776131, - "lon": 0.1513131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25288605, - "lat": 52.1796605, - "lon": 0.1420976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB2 72D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25288609, - "lat": 52.1808842, - "lon": 0.1521027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25288622, - "lat": 52.1828681, - "lon": 0.1508453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25288632, - "lat": 52.1841044, - "lon": 0.1450674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25288644, - "lat": 52.1859297, - "lon": 0.1420296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 69D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 25288679, - "lat": 52.1800314, - "lon": 0.1566131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB1 4", - "ref": "CB1 57D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25288687, - "lat": 52.1828374, - "lon": 0.1653986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25293140, - "lat": 53.3731160, - "lon": -2.8527177, - "tags": { - "amenity": "post_box", - "ref": "L25 915" - } -}, -{ - "type": "node", - "id": 25302197, - "lat": 57.9016278, - "lon": -5.5632277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 25303580, - "lat": 52.0279023, - "lon": -1.2384284, - "tags": { - "amenity": "post_box", - "fixme": "Survey for reference", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25303792, - "lat": 52.5600896, - "lon": -1.8024449, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data shows this as B76 166. This is very close to B75/B76 border.", - "post_box:type": "pillar", - "postal_code": "B75", - "ref": "B75 166" - } -}, -{ - "type": "node", - "id": 25304398, - "lat": 51.7844736, - "lon": -1.2773661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 451" - } -}, -{ - "type": "node", - "id": 25304399, - "lat": 51.7870219, - "lon": -1.2702304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX2 193" - } -}, -{ - "type": "node", - "id": 25305276, - "lat": 52.5542844, - "lon": -1.7934136, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 1331" - } -}, -{ - "type": "node", - "id": 25305277, - "lat": 52.5576522, - "lon": -1.7991804, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B76", - "ref": "B76 1316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25305473, - "lat": 52.5582027, - "lon": -1.7920144, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 1005" - } -}, -{ - "type": "node", - "id": 25310730, - "lat": 53.3755216, - "lon": -2.8608327, - "tags": { - "amenity": "post_box", - "ref": "L25 596" - } -}, -{ - "type": "node", - "id": 25315373, - "lat": 53.3771152, - "lon": -2.8700014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1354081785049022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "L25 391", - "survey:date": "2021-09-25" - } -}, -{ - "type": "node", - "id": 25316526, - "lat": 53.3795548, - "lon": -2.8755487, - "tags": { - "amenity": "post_box", - "ref": "L25 908" - } -}, -{ - "type": "node", - "id": 25316529, - "lat": 53.3757421, - "lon": -2.8774397, - "tags": { - "amenity": "post_box", - "ref": "L25 68" - } -}, -{ - "type": "node", - "id": 25317684, - "lat": 52.5644249, - "lon": -1.7802368, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1171" - } -}, -{ - "type": "node", - "id": 25317833, - "lat": 53.3790990, - "lon": -2.8686886, - "tags": { - "amenity": "post_box", - "ref": "L25 418" - } -}, -{ - "type": "node", - "id": 25317854, - "lat": 53.3824902, - "lon": -2.8696420, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L25 980" - } -}, -{ - "type": "node", - "id": 25318001, - "lat": 52.5632547, - "lon": -1.7894831, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 369" - } -}, -{ - "type": "node", - "id": 25321914, - "lat": 51.2351711, - "lon": -0.2588220, - "tags": { - "amenity": "post_box", - "ref": "RH3 174", - "source": "Photo P142-0174" - } -}, -{ - "type": "node", - "id": 25321915, - "lat": 51.2333187, - "lon": -0.2664458, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photos P142-0239/40" - } -}, -{ - "type": "node", - "id": 25324815, - "lat": 53.3848946, - "lon": -2.8742235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L25 750" - } -}, -{ - "type": "node", - "id": 25331583, - "lat": 53.3866577, - "lon": -2.8838988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "268063681847310", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L25 842", - "survey:date": "2021-09-25" - } -}, -{ - "type": "node", - "id": 25338516, - "lat": 52.1064739, - "lon": -1.0861906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 263" - } -}, -{ - "type": "node", - "id": 25338784, - "lat": 53.3932794, - "lon": -2.8869961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "707809886991704", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L16 671", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 25339017, - "lat": 52.1134293, - "lon": -1.0524474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NN12 371" - } -}, -{ - "type": "node", - "id": 25339037, - "lat": 53.3882851, - "lon": -2.8886566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "329963469321514", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "L16 817", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 25339612, - "lat": 53.3809137, - "lon": -2.8873102, - "tags": { - "amenity": "post_box", - "ref": "L18 764" - } -}, -{ - "type": "node", - "id": 25341272, - "lat": 53.3919798, - "lon": -2.9168981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "L15 453", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 25344268, - "lat": 51.6175456, - "lon": -2.5466634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS35 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25344773, - "lat": 51.6554110, - "lon": -2.5479929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "mapillary": "1227382794896686", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS35 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 25345249, - "lat": 51.6530879, - "lon": -2.5141779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "500925998344407", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-16" - } -}, -{ - "type": "node", - "id": 25345257, - "lat": 51.6785805, - "lon": -2.4942477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL13 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25345260, - "lat": 51.6828836, - "lon": -2.4647437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-16" - } -}, -{ - "type": "node", - "id": 25345265, - "lat": 51.6917817, - "lon": -2.4640232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-12-06", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL13 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25345287, - "lat": 51.6234850, - "lon": -2.4383882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL12 371", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 25373366, - "lat": 52.0402095, - "lon": -1.1477396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN13 1140" - } -}, -{ - "type": "node", - "id": 25377349, - "lat": 51.8110828, - "lon": -2.3451764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25377388, - "lat": 51.7972969, - "lon": -2.3444014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL2 157" - } -}, -{ - "type": "node", - "id": 25377549, - "lat": 51.7713001, - "lon": -2.3642926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL2 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25389625, - "lat": 51.2442530, - "lon": -0.2024483, - "tags": { - "amenity": "post_box", - "ref": "RH2 120", - "source": "P140-0936", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 25389626, - "lat": 51.2489267, - "lon": -0.1968678, - "tags": { - "amenity": "post_box", - "mapillary": "124539780090818", - "post_box:type": "pillar", - "ref": "RH2 90", - "source": "P140-0941", - "survey:date": "2022-06-29", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 25389627, - "lat": 51.2489760, - "lon": -0.2017292, - "tags": { - "amenity": "post_box", - "ref": "RH2 131", - "source": "P140-0942" - } -}, -{ - "type": "node", - "id": 25389848, - "lat": 51.2808970, - "lon": 0.1809151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25389859, - "lat": 51.2832770, - "lon": 0.1853120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN13 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25389919, - "lat": 51.2739907, - "lon": 0.1929830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN13 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25396884, - "lat": 52.0777357, - "lon": -1.1974896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX17 1050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25396991, - "lat": 52.0808066, - "lon": -1.1936704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "860791728172135", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-03-16" - } -}, -{ - "type": "node", - "id": 25420975, - "lat": 52.0522261, - "lon": -1.2212162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "NN13 1022", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25433452, - "lat": 52.5671386, - "lon": -1.7939160, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 920D" - } -}, -{ - "type": "node", - "id": 25433497, - "lat": 52.5655489, - "lon": -1.8037521, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 979" - } -}, -{ - "type": "node", - "id": 25448400, - "lat": 53.3812984, - "lon": -2.8795268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "388123213298341", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L25 332", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 25475341, - "lat": 51.5115049, - "lon": -0.0772257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3N 305;EC3N 3051", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25498393, - "lat": 52.5464335, - "lon": -1.7538803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B76 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25510292, - "lat": 52.5058957, - "lon": -1.8004194, - "tags": { - "amenity": "post_box", - "ref": "B36 1027" - } -}, -{ - "type": "node", - "id": 25510349, - "lat": 52.5095604, - "lon": -1.7938157, - "tags": { - "amenity": "post_box", - "ref": "B35 429" - } -}, -{ - "type": "node", - "id": 25530336, - "lat": 51.4842735, - "lon": -0.1168602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25530879, - "lat": 51.4885694, - "lon": -0.1206603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-17", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE11", - "ref": "SE11 26", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25531903, - "lat": 52.7655948, - "lon": -1.1941856, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 25534556, - "lat": 51.5544289, - "lon": -0.3645835, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 25535969, - "lat": 51.5517841, - "lon": -0.3722273, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 25544097, - "lat": 51.5114800, - "lon": -0.0795688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC3R 315P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25608649, - "lat": 51.8080992, - "lon": -2.2374465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL4 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25611875, - "lat": 52.2382274, - "lon": 0.1100081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB24 385D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25611994, - "lat": 52.2582968, - "lon": 0.1063993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB4 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25612146, - "lat": 52.2539232, - "lon": 0.0969847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB24 371D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25612284, - "lat": 52.2488136, - "lon": 0.1162341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB24 369D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25612382, - "lat": 52.2506575, - "lon": 0.1001117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB4 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25618486, - "lat": 51.8175352, - "lon": -1.2810889, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-23", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX5 578", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25618510, - "lat": 51.8224982, - "lon": -1.2891848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "OX5 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2012-12-01" - } -}, -{ - "type": "node", - "id": 25619425, - "lat": 51.8264034, - "lon": -1.2824299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "wall", - "ref": "OX5 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25619519, - "lat": 51.8195407, - "lon": -1.2755905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX5 758", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-06" - } -}, -{ - "type": "node", - "id": 25638192, - "lat": 51.2450699, - "lon": -0.2172490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH2 265D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25641588, - "lat": 51.5519446, - "lon": -0.1807384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 43", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 25642957, - "lat": 52.7633489, - "lon": -1.2059618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE11 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25642958, - "lat": 52.7660539, - "lon": -1.2047272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25643009, - "lat": 52.0704687, - "lon": -1.0575926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 94" - } -}, -{ - "type": "node", - "id": 25675305, - "lat": 51.7527935, - "lon": -0.0241786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN11 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25675306, - "lat": 51.7483314, - "lon": -0.0240320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "operator": "Royal Mail", - "ref": "EN10 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25686869, - "lat": 53.3702021, - "lon": -2.8571529, - "tags": { - "amenity": "post_box", - "ref": "L25 811" - } -}, -{ - "type": "node", - "id": 25699143, - "lat": 53.3728810, - "lon": -2.8715389, - "tags": { - "amenity": "post_box", - "ref": "L25 331" - } -}, -{ - "type": "node", - "id": 25706587, - "lat": 52.2043270, - "lon": 0.1229133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:30", - "colour": "white", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB2 171", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 25712003, - "lat": 51.9197968, - "lon": -2.2203262, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL2 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25712020, - "lat": 51.9613089, - "lon": -2.2305877, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 25712066, - "lat": 51.9863500, - "lon": -2.2376802, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL19", - "ref": "GL19 377" - } -}, -{ - "type": "node", - "id": 25712119, - "lat": 51.9804804, - "lon": -2.3308101, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 25712120, - "lat": 51.9862016, - "lon": -2.3359249, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch alpha" - } -}, -{ - "type": "node", - "id": 25712130, - "lat": 51.9815191, - "lon": -2.3485733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "GL19 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25712207, - "lat": 51.9868876, - "lon": -2.3941205, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25720988, - "lat": 51.8593141, - "lon": -0.0525755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "name": "Sacombe Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG12 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25721226, - "lat": 51.8304053, - "lon": -0.0737329, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG12 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25721278, - "lat": 51.8233537, - "lon": -0.0730391, - "tags": { - "amenity": "post_box", - "ref": "SG12 11" - } -}, -{ - "type": "node", - "id": 25723335, - "lat": 51.8290205, - "lon": -0.0590794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "name": "Westmill", - "ref": "SG12 59" - } -}, -{ - "type": "node", - "id": 25725059, - "lat": 51.8950300, - "lon": -2.3464986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 190", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25725067, - "lat": 51.8953120, - "lon": -2.3319916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "GL19 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25725080, - "lat": 51.8792488, - "lon": -2.3028614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 195" - } -}, -{ - "type": "node", - "id": 25744359, - "lat": 51.5603823, - "lon": -0.1749630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NW3 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25746802, - "lat": 52.7625724, - "lon": -1.2117425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 126D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 25754126, - "lat": 53.0902465, - "lon": -3.0703755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "LL11", - "ref": "LL11 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25763393, - "lat": 52.7659843, - "lon": -1.2404725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25778910, - "lat": 52.7743624, - "lon": -1.2405285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "created_by": "JOSM", - "ref": "LE11 92", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 25781157, - "lat": 50.8975424, - "lon": -1.1847000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO17 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25869129, - "lat": 52.7650692, - "lon": -1.2471125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 151D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25869143, - "lat": 52.7689302, - "lon": -1.2333244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1790361317970332", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-28" - } -}, -{ - "type": "node", - "id": 25869144, - "lat": 52.7710059, - "lon": -1.2112714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25869145, - "lat": 52.7705347, - "lon": -1.2069343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25869147, - "lat": 52.7746605, - "lon": -1.2016162, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 25869152, - "lat": 52.7741231, - "lon": -1.2357478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "ref": "LE11 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25869164, - "lat": 52.7788433, - "lon": -1.2502340, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 25869170, - "lat": 52.7710067, - "lon": -1.2237633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 25869171, - "lat": 52.7725534, - "lon": -1.2131071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "mapillary": "825162611962190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-29" - } -}, -{ - "type": "node", - "id": 25894913, - "lat": 55.9243337, - "lon": -4.3353180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 1048D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 25904827, - "lat": 52.2179105, - "lon": 0.2181699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB5 465D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25905161, - "lat": 52.2195248, - "lon": 0.2642135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB25 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25905260, - "lat": 52.2249193, - "lon": 0.2224302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB25 464D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25905315, - "lat": 52.2451040, - "lon": 0.2793360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB5 489D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25905361, - "lat": 52.2427737, - "lon": 0.2608811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB25 0", - "ref": "CB25 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25905371, - "lat": 52.2379763, - "lon": 0.2477953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB5 420D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25905384, - "lat": 52.2272718, - "lon": 0.2534972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB25 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25917298, - "lat": 52.6512499, - "lon": -1.1575352, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 25936487, - "lat": 52.3970284, - "lon": 0.2593780, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB7 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 25945765, - "lat": 52.7615508, - "lon": -1.2011290, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 25992491, - "lat": 51.7540976, - "lon": -0.3479843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 25997235, - "lat": 55.9263684, - "lon": -4.3265141, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 1362D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 25997236, - "lat": 55.9228994, - "lon": -4.3243375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G61 3N", - "ref": "G61 1014" - } -}, -{ - "type": "node", - "id": 25997237, - "lat": 55.9231680, - "lon": -4.3183520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "753289139186210", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G61 3", - "ref": "G61 308", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 26016380, - "lat": 51.4588678, - "lon": -2.6221812, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS8 415D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26016381, - "lat": 51.4615392, - "lon": -2.6250161, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS8 416D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26016383, - "lat": 51.4557634, - "lon": -2.6193426, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26018797, - "lat": 53.8416301, - "lon": -0.4360774, - "tags": { - "amenity": "post_box", - "postal_code": "HU17", - "ref": "HU17 224" - } -}, -{ - "type": "node", - "id": 26019412, - "lat": 53.8412412, - "lon": -0.4268605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "HU17", - "ref": "HU17 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 26038523, - "lat": 51.3794336, - "lon": -0.2989338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 112D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 26041085, - "lat": 52.0928394, - "lon": -1.0337010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 483" - } -}, -{ - "type": "node", - "id": 26048698, - "lat": 52.0903564, - "lon": -0.9917653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN12 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26056051, - "lat": 52.7708388, - "lon": -1.1925790, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 26056281, - "lat": 52.7704595, - "lon": -1.1995811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26056284, - "lat": 52.7685152, - "lon": -1.2079945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26056772, - "lat": 51.2180362, - "lon": -0.2055887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH2 256" - } -}, -{ - "type": "node", - "id": 26056774, - "lat": 51.2236680, - "lon": -0.1997266, - "tags": { - "amenity": "post_box", - "ref": "RH2 237", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 26056776, - "lat": 51.2200919, - "lon": -0.2003543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "708057947262851", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH2 133", - "source": "Photo P140-0914", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 26105928, - "lat": 52.7758796, - "lon": -1.2142553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LE11 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26105929, - "lat": 52.7761339, - "lon": -1.2213160, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26105931, - "lat": 52.7758899, - "lon": -1.2044630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "594423615650295", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-08-29" - } -}, -{ - "type": "node", - "id": 26113435, - "lat": 52.2510779, - "lon": 0.2948992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB25 0", - "ref": "CB25 496" - } -}, -{ - "type": "node", - "id": 26113449, - "lat": 52.2527601, - "lon": 0.2998044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "postal_code": "CB25 0", - "ref": "CB25 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26113459, - "lat": 52.2543545, - "lon": 0.3028375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CB25 0", - "ref": "CB25 494" - } -}, -{ - "type": "node", - "id": 26113462, - "lat": 52.2575353, - "lon": 0.3019888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "CB25 0", - "ref": "CB25 495" - } -}, -{ - "type": "node", - "id": 26116779, - "lat": 52.3111513, - "lon": 0.3043886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26116921, - "lat": 52.3128680, - "lon": 0.2968936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26117090, - "lat": 52.3228119, - "lon": 0.2817935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26117152, - "lat": 52.3582207, - "lon": 0.2681177, - "tags": { - "amenity": "post_box", - "ref": "CB7 31" - } -}, -{ - "type": "node", - "id": 26117444, - "lat": 52.2566375, - "lon": 0.1986034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB25 264D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26136423, - "lat": 51.4917399, - "lon": -2.5768598, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-27", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "post_box:type": "pillar", - "ref": "BS7 357", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26136426, - "lat": 51.4981427, - "lon": -2.5758782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS7 326", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26136497, - "lat": 51.5044041, - "lon": -2.5639485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS34 649D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26136498, - "lat": 51.5037191, - "lon": -2.5673652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS34 427", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26136518, - "lat": 51.5082019, - "lon": -2.5710022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS34 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26136567, - "lat": 51.5082933, - "lon": -2.5571224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "post_box:source:type": "survey", - "post_box:type": "pillar", - "ref": "BS34 587", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26150305, - "lat": 53.3611700, - "lon": -2.8923728, - "tags": { - "amenity": "post_box", - "ref": "L19 155" - } -}, -{ - "type": "node", - "id": 26151263, - "lat": 53.3649921, - "lon": -2.8908791, - "tags": { - "amenity": "post_box", - "ref": "L19 726" - } -}, -{ - "type": "node", - "id": 26151754, - "lat": 51.8474311, - "lon": -0.0983820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "name": "Woodhall Park", - "post_box:type": "wall", - "ref": "SG14 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 26152283, - "lat": 53.3609203, - "lon": -2.8950549, - "tags": { - "amenity": "post_box", - "ref": "L19 384" - } -}, -{ - "type": "node", - "id": 26155542, - "lat": 51.4752106, - "lon": -2.5643690, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS5", - "ref": "BS5 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26156317, - "lat": 51.4870445, - "lon": -2.5640379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS7 351" - } -}, -{ - "type": "node", - "id": 26159684, - "lat": 50.9836720, - "lon": -1.1287592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO32 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26165163, - "lat": 51.4944127, - "lon": -2.5658382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS7 348", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 26165272, - "lat": 51.4907362, - "lon": -2.5640349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS7 1349", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 26165491, - "lat": 51.4623626, - "lon": -2.6129434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BS8", - "ref": "BS8 420D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26165945, - "lat": 51.4891466, - "lon": -2.5688341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS7 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26166401, - "lat": 51.4875442, - "lon": -2.5734184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26166409, - "lat": 51.4852479, - "lon": -2.5793083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 344", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26166410, - "lat": 51.4914335, - "lon": -2.5710787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS7 367" - } -}, -{ - "type": "node", - "id": 26166411, - "lat": 51.4948547, - "lon": -2.5742626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:45", - "post_box:type": "pillar", - "ref": "BS7 1358", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26166919, - "lat": 51.6034484, - "lon": -2.5228515, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS35", - "ref": "BS35 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26167062, - "lat": 51.5805988, - "lon": -2.5369072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "575516050397422", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS35", - "ref": "BS35 585", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 26167066, - "lat": 51.5632483, - "lon": -2.5552512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "BS32", - "ref": "BS32 102", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 26167069, - "lat": 51.5548247, - "lon": -2.5673159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "219155333883402", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS32", - "ref": "BS32 564D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-03" - } -}, -{ - "type": "node", - "id": 26167070, - "lat": 51.5514994, - "lon": -2.5699773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "the ref really does end in \"D\"", - "post_box:type": "pillar", - "ref": "BS32 672D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26168564, - "lat": 51.4664286, - "lon": -2.6112169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS6 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26175128, - "lat": 51.4735699, - "lon": -2.6119454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "wall", - "ref": "BS6 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2014-02-16" - } -}, -{ - "type": "node", - "id": 26178516, - "lat": 51.4746145, - "lon": -2.6143164, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 262D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26189175, - "lat": 51.5458763, - "lon": -2.5611713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "813449570410158", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS32", - "ref": "BS32 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-17" - } -}, -{ - "type": "node", - "id": 26189177, - "lat": 51.5424729, - "lon": -2.5471730, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS32 646D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26189407, - "lat": 51.5235410, - "lon": -2.5600122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS34 1036", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 26189610, - "lat": 51.5043087, - "lon": -2.5775869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 327D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26189613, - "lat": 51.4959311, - "lon": -2.5812914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS7 325", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26189811, - "lat": 51.5021611, - "lon": -2.5691320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "BS7 1346", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26189820, - "lat": 51.5079237, - "lon": -2.5644446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS34 456", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26189843, - "lat": 51.4873165, - "lon": -2.5851489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26189844, - "lat": 51.4846098, - "lon": -2.5864900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS7 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26190058, - "lat": 51.5120157, - "lon": -2.5654858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "BS34 429", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26190064, - "lat": 51.5143033, - "lon": -2.5697527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS34 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26190074, - "lat": 51.5111920, - "lon": -2.5676630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "BS34 428D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26196951, - "lat": 51.5687977, - "lon": -0.1112280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26197230, - "lat": 51.5698907, - "lon": -0.1132080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26199765, - "lat": 52.1413008, - "lon": -1.0220511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26200577, - "lat": 51.4563754, - "lon": -2.6138353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26200667, - "lat": 51.4652060, - "lon": -2.6104303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS8 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26200670, - "lat": 51.4607450, - "lon": -2.5861173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "comment": "yes, there are 2!", - "post_box:type": "pillar", - "ref": "BS2 2292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26200671, - "lat": 51.4607511, - "lon": -2.5860871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "comment": "yes, there are 2!", - "post_box:type": "pillar", - "ref": "BS2 2293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26200693, - "lat": 51.4712604, - "lon": -2.6128386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "postal_code": "BS6", - "ref": "BS6 261", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26200695, - "lat": 51.4699970, - "lon": -2.6006622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS6 272", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26200696, - "lat": 51.4716011, - "lon": -2.6057209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS6 265D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26200952, - "lat": 52.1383294, - "lon": -0.4618853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "note": "Information plate clearly showed the reference upon survey. Might have been recently replaced.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26202118, - "lat": 51.4960109, - "lon": -2.5070038, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26202124, - "lat": 51.4984330, - "lon": -2.5088116, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS16", - "ref": "BS16 300" - } -}, -{ - "type": "node", - "id": 26202130, - "lat": 51.4985563, - "lon": -2.4995955, - "tags": { - "amenity": "post_box", - "mapillary": "826720018272556", - "post_box:type": "pillar", - "postal_code": "BS16", - "ref": "BS16 592", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 26202337, - "lat": 51.4956968, - "lon": -2.5002146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BS16 328D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 26203140, - "lat": 51.5001244, - "lon": -2.5175380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "post_box:type": "pillar", - "postal_code": "BS16 1NU", - "ref": "BS16 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26234389, - "lat": 51.4537167, - "lon": -2.6175411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "post_box:type": "pillar", - "ref": "BS8 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26234391, - "lat": 51.4574766, - "lon": -2.6228329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26243764, - "lat": 51.5243918, - "lon": -2.5501727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS34 632D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26262222, - "lat": 51.4606889, - "lon": -2.6118883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 421D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26262426, - "lat": 51.6395980, - "lon": 0.4259625, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26262901, - "lat": 51.6450477, - "lon": 0.4347209, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26266584, - "lat": 53.3701349, - "lon": -2.8495286, - "tags": { - "amenity": "post_box", - "ref": "L25 946" - } -}, -{ - "type": "node", - "id": 26268106, - "lat": 51.5644221, - "lon": -0.0549145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26268421, - "lat": 51.5676223, - "lon": -0.0549600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26268638, - "lat": 53.3672236, - "lon": -2.8511678, - "tags": { - "amenity": "post_box", - "ref": "L25 958" - } -}, -{ - "type": "node", - "id": 26270048, - "lat": 51.9098394, - "lon": -1.1565364, - "tags": { - "amenity": "post_box", - "postal_code": "OX26", - "ref": "OX26 2600", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 26284873, - "lat": 51.6399416, - "lon": 0.4372853, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26292024, - "lat": 51.2333169, - "lon": -0.5860903, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2021-03-05", - "old_ref": "GU2 93", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU2 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26292673, - "lat": 51.2324646, - "lon": -0.5837260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU2 189", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU2 189D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 26309136, - "lat": 51.6110808, - "lon": -2.5276946, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS35", - "ref": "BS35 135" - } -}, -{ - "type": "node", - "id": 26316397, - "lat": 51.2377509, - "lon": -0.5867749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU2 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 26316696, - "lat": 53.3571653, - "lon": -2.8554915, - "tags": { - "amenity": "post_box", - "ref": "L25 942" - } -}, -{ - "type": "node", - "id": 26346491, - "lat": 52.5802755, - "lon": -1.8267076, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1067" - } -}, -{ - "type": "node", - "id": 26346504, - "lat": 52.5831511, - "lon": -1.8170240, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1041D" - } -}, -{ - "type": "node", - "id": 26347539, - "lat": 52.5740789, - "lon": -1.8078890, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 836" - } -}, -{ - "type": "node", - "id": 26347540, - "lat": 52.5698046, - "lon": -1.8094474, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1066" - } -}, -{ - "type": "node", - "id": 26353486, - "lat": 53.3628027, - "lon": -2.9010737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "L19 151", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 26353487, - "lat": 53.3610346, - "lon": -2.9030467, - "tags": { - "amenity": "post_box", - "ref": "L19 381" - } -}, -{ - "type": "node", - "id": 26353637, - "lat": 53.3561378, - "lon": -2.8969764, - "tags": { - "amenity": "post_box", - "ref": "L19 303" - } -}, -{ - "type": "node", - "id": 26353679, - "lat": 53.3587818, - "lon": -2.9033375, - "tags": { - "amenity": "post_box", - "ref": "L19 718" - } -}, -{ - "type": "node", - "id": 26353681, - "lat": 53.3584024, - "lon": -2.9072696, - "tags": { - "amenity": "post_box", - "ref": "L19 757" - } -}, -{ - "type": "node", - "id": 26353775, - "lat": 53.3617847, - "lon": -2.9058159, - "tags": { - "amenity": "post_box", - "ref": "L19 377" - } -}, -{ - "type": "node", - "id": 26353796, - "lat": 53.3540214, - "lon": -2.8965486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "203863274924988", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L19 360", - "royal_cypher": "EIIR", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 26353807, - "lat": 53.3532730, - "lon": -2.8952920, - "tags": { - "amenity": "post_box", - "ref": "L19 573" - } -}, -{ - "type": "node", - "id": 26363902, - "lat": 51.6295679, - "lon": 0.4242917, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26364060, - "lat": 51.6290584, - "lon": 0.4182029, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26364888, - "lat": 51.6363526, - "lon": 0.4188488, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26372654, - "lat": 53.3990978, - "lon": -2.8874212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L16 695", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 26372697, - "lat": 53.3985232, - "lon": -2.8761843, - "tags": { - "amenity": "post_box", - "ref": "L25 990" - } -}, -{ - "type": "node", - "id": 26374401, - "lat": 51.4394390, - "lon": -2.6160833, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26380796, - "lat": 52.5664120, - "lon": -1.8295418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B73", - "ref": "B73 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26380834, - "lat": 52.5699521, - "lon": -1.8225804, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 337" - } -}, -{ - "type": "node", - "id": 26380846, - "lat": 52.5707706, - "lon": -1.8247612, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 297" - } -}, -{ - "type": "node", - "id": 26382407, - "lat": 52.5787804, - "lon": -1.8295950, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 142" - } -}, -{ - "type": "node", - "id": 26382409, - "lat": 52.5731370, - "lon": -1.8247433, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 327" - } -}, -{ - "type": "node", - "id": 26384708, - "lat": 51.7562288, - "lon": -0.7350064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26385020, - "lat": 51.5832226, - "lon": -2.5621016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "BS32", - "ref": "BS32 248", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 26385293, - "lat": 51.7662860, - "lon": -0.7445257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 26386692, - "lat": 53.3961500, - "lon": -2.8720216, - "tags": { - "amenity": "post_box", - "ref": "L25 938" - } -}, -{ - "type": "node", - "id": 26395591, - "lat": 53.7172950, - "lon": -1.4970260, - "tags": { - "addr:city": "Wakefield", - "addr:postcode": "WF3 3HY", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF3 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26395592, - "lat": 53.7120113, - "lon": -1.4999482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 78", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 26395593, - "lat": 53.7030260, - "lon": -1.5036410, - "tags": { - "addr:city": "Wakefield", - "addr:postcode": "WF1 2HY", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF1 171D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26402504, - "lat": 51.6272666, - "lon": 0.4357561, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26407928, - "lat": 53.3925528, - "lon": -2.8647261, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L25 910", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26418598, - "lat": 51.7690746, - "lon": -0.7495430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-12-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26420504, - "lat": 53.3384412, - "lon": -1.9231641, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26420927, - "lat": 53.3357278, - "lon": -1.9110974, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 26421009, - "lat": 53.3256782, - "lon": -1.9304471, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26422106, - "lat": 51.3272137, - "lon": -0.1914183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 238D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26422177, - "lat": 51.3252945, - "lon": -0.2029260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26456742, - "lat": 53.3604838, - "lon": -2.8517027, - "tags": { - "amenity": "post_box", - "ref": "L25 762" - } -}, -{ - "type": "node", - "id": 26460805, - "lat": 50.7492401, - "lon": -3.0297335, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-03-06", - "wikimedia_commons": "File:The roads divide - geograph.org.uk - 3275616.jpg" - } -}, -{ - "type": "node", - "id": 26461363, - "lat": 50.7466615, - "lon": -3.0306656, - "tags": { - "amenity": "post_box", - "name": "Old Musbury Post Office" - } -}, -{ - "type": "node", - "id": 26462198, - "lat": 51.3793363, - "lon": -0.1621495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 284", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26462213, - "lat": 51.3777487, - "lon": -0.1675599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 251", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26462232, - "lat": 51.3740713, - "lon": -0.1655579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM5 109D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26462254, - "lat": 51.3754992, - "lon": -0.1702562, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "SM5", - "ref": "SM5 138" - } -}, -{ - "type": "node", - "id": 26468337, - "lat": 55.9630455, - "lon": -3.1835492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1299292590467283", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 209", - "survey:date": "2021-02-27" - } -}, -{ - "type": "node", - "id": 26468744, - "lat": 51.3726598, - "lon": -0.1750104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 281D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26468751, - "lat": 51.3806313, - "lon": -0.1680723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 257", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26470686, - "lat": 51.9059055, - "lon": -1.1616315, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX26 376D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 26473542, - "lat": 52.2060547, - "lon": -1.0063467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26478009, - "lat": 52.2099721, - "lon": -1.0104784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "NN7 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26478335, - "lat": 52.2103502, - "lon": -1.0174666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 473", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26481341, - "lat": 51.8994981, - "lon": -1.1648766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX26 782", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26484088, - "lat": 51.8168106, - "lon": -0.8147787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 26484829, - "lat": 52.7812027, - "lon": -1.2283227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Su 11:00", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26485434, - "lat": 51.8187712, - "lon": -0.8042817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26485692, - "lat": 51.8229987, - "lon": -0.8067388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-04-11" - } -}, -{ - "type": "node", - "id": 26503122, - "lat": 52.2135940, - "lon": -1.0040978, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN7 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26507154, - "lat": 52.2086716, - "lon": -1.0062006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26508303, - "lat": 51.5264365, - "lon": -0.1038235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1V 126;EC1V 1261", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26510658, - "lat": 52.6481409, - "lon": -1.1532530, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26522889, - "lat": 51.7647751, - "lon": -0.7346871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 26523626, - "lat": 51.7670875, - "lon": -0.7330648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 26523642, - "lat": 51.7633942, - "lon": -0.7401630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 26525066, - "lat": 51.3882698, - "lon": -0.1618357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CR4 601P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 26525209, - "lat": 51.3931971, - "lon": -0.1633371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 51" - } -}, -{ - "type": "node", - "id": 26530457, - "lat": 52.2248005, - "lon": -1.0635459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "postal_code": "NN7 4", - "ref": "NN7 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26531345, - "lat": 52.2281211, - "lon": -1.0775283, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NN7 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26531383, - "lat": 52.1667821, - "lon": 0.1583058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26531399, - "lat": 52.1575376, - "lon": 0.1773957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26531413, - "lat": 52.1204681, - "lon": 0.2333775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26531427, - "lat": 52.1019717, - "lon": 0.2262862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26531437, - "lat": 52.1309072, - "lon": 0.2091627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26532634, - "lat": 52.2260319, - "lon": -1.0867370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 455D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26532674, - "lat": 52.5777688, - "lon": -1.8418767, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 159" - } -}, -{ - "type": "node", - "id": 26533112, - "lat": 52.5858764, - "lon": -1.8203480, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B75", - "ref": "B75 695" - } -}, -{ - "type": "node", - "id": 26533113, - "lat": 52.5845652, - "lon": -1.8284151, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 334" - } -}, -{ - "type": "node", - "id": 26533131, - "lat": 52.5828052, - "lon": -1.8340301, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 847" - } -}, -{ - "type": "node", - "id": 26540669, - "lat": 52.2312710, - "lon": -1.1553589, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 26541768, - "lat": 51.3910901, - "lon": -0.1587057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 5" - } -}, -{ - "type": "node", - "id": 26541903, - "lat": 51.3977211, - "lon": -0.1623598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 19" - } -}, -{ - "type": "node", - "id": 26542081, - "lat": 52.2320532, - "lon": -1.1515611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 12" - } -}, -{ - "type": "node", - "id": 26542873, - "lat": 51.4006324, - "lon": -0.1693706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 26544037, - "lat": 53.3865329, - "lon": -2.8530366, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L25 882" - } -}, -{ - "type": "node", - "id": 26544056, - "lat": 53.3883300, - "lon": -2.8563576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L25 939" - } -}, -{ - "type": "node", - "id": 26544110, - "lat": 53.3901466, - "lon": -2.8510895, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L25 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26544810, - "lat": 51.3898469, - "lon": -0.1790400, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SM4", - "ref": "SM4 202" - } -}, -{ - "type": "node", - "id": 26551856, - "lat": 51.6300171, - "lon": 0.4155312, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 26551939, - "lat": 51.9088982, - "lon": -1.1684325, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-21", - "postal_code": "OX26", - "ref": "OX26 879" - } -}, -{ - "type": "node", - "id": 26552996, - "lat": 51.6269223, - "lon": 0.4129276, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 26557815, - "lat": 51.9109433, - "lon": -1.1479662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "OX26", - "ref": "OX26 926", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26558135, - "lat": 51.9037723, - "lon": -1.1465339, - "tags": { - "amenity": "post_box", - "ref": "OX26 908" - } -}, -{ - "type": "node", - "id": 26564525, - "lat": 52.5806101, - "lon": -1.8766061, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 1087" - } -}, -{ - "type": "node", - "id": 26564533, - "lat": 52.5842545, - "lon": -1.8793381, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 419" - } -}, -{ - "type": "node", - "id": 26568265, - "lat": 52.5837333, - "lon": -1.8848966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B74", - "ref": "B74 1047", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26568674, - "lat": 52.2122005, - "lon": -1.1314094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN11 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26569508, - "lat": 52.2179959, - "lon": -1.1309446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN11 11" - } -}, -{ - "type": "node", - "id": 26569519, - "lat": 52.1912813, - "lon": -0.3149314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "MK44", - "ref": "MK44 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 26570438, - "lat": 51.2280402, - "lon": -0.1873384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RH1 95", - "source": "Photo P141-0899 on 2011-03-08" - } -}, -{ - "type": "node", - "id": 26570502, - "lat": 51.2219469, - "lon": -0.1945091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH2 306" - } -}, -{ - "type": "node", - "id": 26570504, - "lat": 51.2194807, - "lon": -0.1959518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH2 314" - } -}, -{ - "type": "node", - "id": 26570718, - "lat": 51.7436628, - "lon": -0.3126383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26575147, - "lat": 51.8979691, - "lon": -1.1152440, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 26586778, - "lat": 52.5887962, - "lon": -1.8850363, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 1093" - } -}, -{ - "type": "node", - "id": 26587304, - "lat": 51.7966401, - "lon": -0.2796522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL4 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26590992, - "lat": 51.8707477, - "lon": 0.9673198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26592729, - "lat": 53.3870992, - "lon": -2.8675910, - "tags": { - "amenity": "post_box", - "ref": "L25 941" - } -}, -{ - "type": "node", - "id": 26607759, - "lat": 52.5886901, - "lon": -1.8610953, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B74", - "ref": "B74 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26607766, - "lat": 52.5929895, - "lon": -1.8532363, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 1186" - } -}, -{ - "type": "node", - "id": 26607773, - "lat": 52.5901035, - "lon": -1.8480871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 240", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 26609752, - "lat": 52.5970673, - "lon": -1.8583798, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 404" - } -}, -{ - "type": "node", - "id": 26609757, - "lat": 52.5878510, - "lon": -1.8755247, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 708" - } -}, -{ - "type": "node", - "id": 26609772, - "lat": 52.5875734, - "lon": -1.8877416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "postal_code": "WS9", - "ref": "WS9 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26609783, - "lat": 52.6024591, - "lon": -1.8532991, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 308" - } -}, -{ - "type": "node", - "id": 26609784, - "lat": 52.5956980, - "lon": -1.8662936, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 664" - } -}, -{ - "type": "node", - "id": 26610066, - "lat": 51.9123881, - "lon": -1.1503468, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "OX26", - "ref": "OX26 921" - } -}, -{ - "type": "node", - "id": 26610906, - "lat": 51.3052471, - "lon": -0.1717297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR5 253D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 26617273, - "lat": 52.2922099, - "lon": -1.1986618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN11 815D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26624790, - "lat": 52.2919669, - "lon": -1.1508314, - "tags": { - "amenity": "post_box", - "ref": "NN11 50" - } -}, -{ - "type": "node", - "id": 26648191, - "lat": 51.8916668, - "lon": -1.1901708, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 26656656, - "lat": 56.2035881, - "lon": -3.1340576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY7 103", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26661385, - "lat": 52.2390263, - "lon": 0.0253847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CB3 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26661393, - "lat": 52.2406658, - "lon": 0.0182348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB3 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26664198, - "lat": 52.2341457, - "lon": 0.0862466, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26664199, - "lat": 52.2340241, - "lon": 0.0810435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB3 0", - "ref": "CB3 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26664244, - "lat": 52.2377710, - "lon": 0.0848309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB3 0", - "ref": "CB3 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26665713, - "lat": 52.2821996, - "lon": 0.0446573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 428D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26665724, - "lat": 52.2732987, - "lon": 0.0536220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB24 429D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26667428, - "lat": 51.0656782, - "lon": -0.3291721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "name": "London Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26667432, - "lat": 51.0804699, - "lon": -0.3235339, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH12 192D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 26667434, - "lat": 51.0692959, - "lon": -0.3223646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Hurst Avenue", - "old_ref": "RH12 184", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26667442, - "lat": 51.0675761, - "lon": -0.3214528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "note": "This postbox has three slots: left for local post to Horsham only, the middle for first class and the right for second class.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH12 702", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 26671556, - "lat": 51.5991967, - "lon": -2.5013276, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 182", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26671766, - "lat": 52.5878888, - "lon": -1.8169881, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 288" - } -}, -{ - "type": "node", - "id": 26671904, - "lat": 52.5910163, - "lon": -1.8160454, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1142D" - } -}, -{ - "type": "node", - "id": 26671909, - "lat": 52.5866589, - "lon": -1.8103054, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1054D" - } -}, -{ - "type": "node", - "id": 26671914, - "lat": 52.5893899, - "lon": -1.8085290, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 705" - } -}, -{ - "type": "node", - "id": 26671919, - "lat": 52.5908645, - "lon": -1.8033843, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 232" - } -}, -{ - "type": "node", - "id": 26701128, - "lat": 51.8352323, - "lon": -2.3318534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL2 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26705955, - "lat": 53.3763477, - "lon": -2.9227573, - "tags": { - "amenity": "post_box", - "ref": "L18 49" - } -}, -{ - "type": "node", - "id": 26705958, - "lat": 53.3678349, - "lon": -2.9182248, - "tags": { - "amenity": "post_box", - "ref": "L19 631" - } -}, -{ - "type": "node", - "id": 26706027, - "lat": 53.3665858, - "lon": -2.9225042, - "tags": { - "amenity": "post_box", - "ref": "L19 149" - } -}, -{ - "type": "node", - "id": 26706051, - "lat": 53.3542976, - "lon": -2.8997445, - "tags": { - "amenity": "post_box", - "ref": "L19 892" - } -}, -{ - "type": "node", - "id": 26712655, - "lat": 52.1017881, - "lon": -0.9636200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26714321, - "lat": 52.1024497, - "lon": -0.9553047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN12 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26739422, - "lat": 51.6141052, - "lon": -2.5271283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "391157216380811", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 174", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-05-17" - } -}, -{ - "type": "node", - "id": 26743822, - "lat": 51.7479722, - "lon": -0.3147313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26743827, - "lat": 51.7486634, - "lon": -0.3194218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26744289, - "lat": 51.9261970, - "lon": -1.1871108, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26744509, - "lat": 51.7546093, - "lon": -0.2690663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Not visible on survey May 2020", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 26744511, - "lat": 51.7516067, - "lon": -0.2656263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26744679, - "lat": 51.7633260, - "lon": -0.3260767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2023-05-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 188D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26770051, - "lat": 53.3779166, - "lon": -1.5141950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S10", - "ref": "S10 1138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26777150, - "lat": 51.9177462, - "lon": -1.1457656, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 26782722, - "lat": 51.5069396, - "lon": -2.0773222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "collection_times_checked": "2015-11-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26784126, - "lat": 51.5721422, - "lon": -2.1490670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26784145, - "lat": 51.5810001, - "lon": -2.3193900, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL9 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26784880, - "lat": 53.3673269, - "lon": -1.5017484, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-13", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S11 89", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 26799417, - "lat": 51.6062698, - "lon": -2.4377538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "mapillary": "1160075324755557", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL12 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 26806944, - "lat": 52.5253382, - "lon": -1.8019531, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B24", - "ref": "B24 574", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 26807739, - "lat": 52.5225262, - "lon": -1.8059369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "917917475821008", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B24 274", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 26807742, - "lat": 52.5291425, - "lon": -1.8183172, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B24", - "ref": "B24 1076", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 26815254, - "lat": 51.5306043, - "lon": -0.1060151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-04", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1R 128D;EC1R 1281D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box EC1R 128D and EC1R 1281D" - } -}, -{ - "type": "node", - "id": 26815899, - "lat": 51.8971672, - "lon": -1.1396386, - "tags": { - "amenity": "post_box", - "ref": "OX26 421" - } -}, -{ - "type": "node", - "id": 26816002, - "lat": 51.5209294, - "lon": -0.0999515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "EC1 130;EC1 1301", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26821998, - "lat": 51.2717959, - "lon": -0.7265917, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-21", - "collection_times": "Mo-Fr 16:30, Sa 10:45", - "ref": "GU12 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26841706, - "lat": 53.3767013, - "lon": -1.5088372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26841721, - "lat": 53.3887882, - "lon": -1.6358095, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S6 229" - } -}, -{ - "type": "node", - "id": 26841902, - "lat": 53.3938153, - "lon": -1.5406688, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26841932, - "lat": 53.3774017, - "lon": -1.4779455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S1", - "ref": "S1 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26842663, - "lat": 53.3803302, - "lon": -1.5313556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26849455, - "lat": 53.3475726, - "lon": -2.8900496, - "tags": { - "amenity": "post_box", - "ref": "L19 782" - } -}, -{ - "type": "node", - "id": 26849458, - "lat": 53.3511244, - "lon": -2.8854570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "828400421386779", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L19 489", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 26862438, - "lat": 53.3497040, - "lon": -2.9000063, - "tags": { - "amenity": "post_box", - "ref": "L19 382" - } -}, -{ - "type": "node", - "id": 26885860, - "lat": 53.3752892, - "lon": -1.4908019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 149D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 26953356, - "lat": 51.7338786, - "lon": -2.2329240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26963709, - "lat": 53.3569105, - "lon": -2.9136774, - "tags": { - "amenity": "post_box", - "ref": "L19 276" - } -}, -{ - "type": "node", - "id": 26975414, - "lat": 51.5427803, - "lon": -0.0813261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976251, - "lat": 52.2897832, - "lon": 0.1744110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "ref": "CB25 509" - } -}, -{ - "type": "node", - "id": 26976799, - "lat": 52.2635634, - "lon": 0.1945975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB25 9", - "ref": "CB25 512D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 26976810, - "lat": 52.2652826, - "lon": 0.1966683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB25 9", - "ref": "CB25 520D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976822, - "lat": 52.2726293, - "lon": 0.1987839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB25 9", - "ref": "CB25 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976828, - "lat": 52.2741953, - "lon": 0.1957629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB25 9", - "ref": "CB25 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976851, - "lat": 52.2721913, - "lon": 0.1856221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB25 9", - "ref": "CB25 511D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976863, - "lat": 52.2703504, - "lon": 0.1977882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB25 9", - "ref": "CB25 517D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976901, - "lat": 52.2655194, - "lon": 0.1914810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB25 9", - "ref": "CB25 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976902, - "lat": 52.2640882, - "lon": 0.1852607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB25 9", - "ref": "CB25 518D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976945, - "lat": 52.2637841, - "lon": 0.1780513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB25 9", - "ref": "CB25 515D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26976948, - "lat": 52.2609166, - "lon": 0.1635639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB25 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26978421, - "lat": 53.7133939, - "lon": -1.4891562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF1 275" - } -}, -{ - "type": "node", - "id": 26978596, - "lat": 53.7598191, - "lon": -2.1983992, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "BB10 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26981723, - "lat": 51.3837985, - "lon": -2.3986219, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 26984039, - "lat": 51.7743310, - "lon": -0.4552174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 26990107, - "lat": 51.1853533, - "lon": -0.2695053, - "tags": { - "amenity": "post_box", - "ref": "RH5 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26990166, - "lat": 51.1627025, - "lon": -0.2699309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH5 49" - } -}, -{ - "type": "node", - "id": 26990197, - "lat": 51.1215314, - "lon": -0.2708683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH12 105" - } -}, -{ - "type": "node", - "id": 26990363, - "lat": 51.0832573, - "lon": -0.3016694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Royal Mail incorrectly describes this postbox as being on Tylden Way when in fact it is situated in the neighbouring street, Bartholomew Way. Plus Royal Mail has the wrong pinpoint location on http://robert.mathmos.net/ for this postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26990585, - "lat": 51.1721399, - "lon": -0.1645557, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-05", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH6 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "P174-0223" - } -}, -{ - "type": "node", - "id": 26990588, - "lat": 51.1869251, - "lon": -0.1639475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 26990590, - "lat": 51.1980565, - "lon": -0.1656543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-0190;survey" - } -}, -{ - "type": "node", - "id": 26990598, - "lat": 51.2138411, - "lon": -0.1752469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "ref": "RH1 200", - "source:ref": "P166-0719 on 2011-11-07" - } -}, -{ - "type": "node", - "id": 26993942, - "lat": 50.8342596, - "lon": -1.6912708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27014172, - "lat": 51.9068889, - "lon": -1.1502621, - "tags": { - "amenity": "post_box", - "ref": "OX26 610D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27015841, - "lat": 51.5371933, - "lon": -2.5573048, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS32", - "ref": "BS32 656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27017797, - "lat": 51.7719074, - "lon": -0.7485520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 27038984, - "lat": 53.7166599, - "lon": -1.5125184, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF3 200" - } -}, -{ - "type": "node", - "id": 27073430, - "lat": 51.3805470, - "lon": -2.3879527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA2 353" - } -}, -{ - "type": "node", - "id": 27088661, - "lat": 53.6913853, - "lon": -1.5079133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 115" - } -}, -{ - "type": "node", - "id": 27089694, - "lat": 55.9526288, - "lon": -4.7685649, - "tags": { - "amenity": "post_box", - "ref": "PA16 17" - } -}, -{ - "type": "node", - "id": 27131421, - "lat": 51.8816255, - "lon": 0.9896995, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 7EH", - "ref": "CO7 117" - } -}, -{ - "type": "node", - "id": 27144678, - "lat": 52.5451476, - "lon": -1.8316352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B73", - "ref": "B73 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27144679, - "lat": 52.5421291, - "lon": -1.8338562, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 663" - } -}, -{ - "type": "node", - "id": 27144753, - "lat": 52.5442084, - "lon": -1.8397944, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 728" - } -}, -{ - "type": "node", - "id": 27152279, - "lat": 51.9010488, - "lon": -1.1399754, - "tags": { - "amenity": "post_box", - "ref": "OX26 888", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27157720, - "lat": 51.3196545, - "lon": 0.8851005, - "tags": { - "amenity": "post_box", - "mapillary": "3090552651189325", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 15", - "survey:date": "2021-06-06" - } -}, -{ - "type": "node", - "id": 27182620, - "lat": 51.8987999, - "lon": -1.1458241, - "tags": { - "amenity": "post_box", - "ref": "OX26 807" - } -}, -{ - "type": "node", - "id": 27182703, - "lat": 51.8950906, - "lon": -1.1414769, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-21", - "ref": "OX26 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27190235, - "lat": 51.8987333, - "lon": -1.1484039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX26 338", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27193038, - "lat": 55.9619089, - "lon": -4.7875996, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 27205816, - "lat": 51.2753546, - "lon": -0.7413129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU14 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27205817, - "lat": 51.2777613, - "lon": -0.7376126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "GU14 125D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 27207796, - "lat": 53.3633789, - "lon": -2.9165340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "mapillary": "198579742114183", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L19 575", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 27207840, - "lat": 53.3604946, - "lon": -2.9202261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "L19 955", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27207876, - "lat": 53.3586297, - "lon": -2.9169310, - "tags": { - "amenity": "post_box", - "ref": "L19 277" - } -}, -{ - "type": "node", - "id": 27208473, - "lat": 53.3644000, - "lon": -2.9191961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "mapillary": "317719819921674", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L19 736", - "royal_cypher": "GR", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 27208520, - "lat": 53.3717713, - "lon": -2.9187387, - "tags": { - "amenity": "post_box", - "ref": "L18 589" - } -}, -{ - "type": "node", - "id": 27223234, - "lat": 51.9043903, - "lon": -1.1322739, - "tags": { - "amenity": "post_box", - "ref": "OX26 924" - } -}, -{ - "type": "node", - "id": 27223325, - "lat": 51.9096932, - "lon": -1.1362996, - "tags": { - "amenity": "post_box", - "ref": "OX26 247", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27223703, - "lat": 51.9080987, - "lon": -1.1387215, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 27224133, - "lat": 51.0838515, - "lon": -0.3133844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27227811, - "lat": 53.7414086, - "lon": -2.6215741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PR5", - "ref": "PR5 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27227825, - "lat": 53.7378944, - "lon": -2.6364843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "PR5", - "ref": "PR5 410D" - } -}, -{ - "type": "node", - "id": 27240995, - "lat": 52.5288648, - "lon": -1.8293016, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 329" - } -}, -{ - "type": "node", - "id": 27241587, - "lat": 52.5401336, - "lon": -1.8292628, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 394" - } -}, -{ - "type": "node", - "id": 27241651, - "lat": 52.5353321, - "lon": -1.8334155, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B73", - "ref": "B73 70", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 27242140, - "lat": 51.4463550, - "lon": -0.3001140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27243278, - "lat": 53.7244005, - "lon": -2.5757559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR5 140", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 27246152, - "lat": 52.5311792, - "lon": -1.8255500, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 336" - } -}, -{ - "type": "node", - "id": 27251653, - "lat": 52.5271713, - "lon": -1.8215993, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 568" - } -}, -{ - "type": "node", - "id": 27280387, - "lat": 51.8984426, - "lon": -1.1513597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "OX26 11;OX26 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27282893, - "lat": 53.7342249, - "lon": -2.6196860, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 27297417, - "lat": 51.4865849, - "lon": 0.3319282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 87" - } -}, -{ - "type": "node", - "id": 27306374, - "lat": 53.6972777, - "lon": -1.5158339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF1 140" - } -}, -{ - "type": "node", - "id": 27316347, - "lat": 51.7496355, - "lon": -0.3404294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27316350, - "lat": 51.7512981, - "lon": -0.3404542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "fixme": "Extant postbox is at variance with my GPS readiings, but I've left it in correct place wrt clock tower (which seems wrong as well).", - "note": "refs not visible 05/04/23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AL3 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photographic_interpolation" - } -}, -{ - "type": "node", - "id": 27316353, - "lat": 51.7476861, - "lon": -0.3311187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27340057, - "lat": 51.8786546, - "lon": -1.1917722, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 27342018, - "lat": 51.9039822, - "lon": -1.1396287, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-21", - "ref": "OX26 852", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27346087, - "lat": 51.2795821, - "lon": 1.0786124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 3612;CT1 3611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27347135, - "lat": 51.2791192, - "lon": 1.0810462, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT1 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-25" - } -}, -{ - "type": "node", - "id": 27348185, - "lat": 53.3238754, - "lon": -1.5226097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S17 647", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27348276, - "lat": 53.9028147, - "lon": -1.6294491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS21 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27353310, - "lat": 53.3247575, - "lon": -1.5339850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S17 891", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27353712, - "lat": 51.2789572, - "lon": 1.0617264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 335", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27353758, - "lat": 51.2812487, - "lon": 1.0703878, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "367574024921652", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 358", - "survey:date": "2021-07-11" - } -}, -{ - "type": "node", - "id": 27353760, - "lat": 51.2961572, - "lon": 1.0672837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27359713, - "lat": 51.5755814, - "lon": 0.2107384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM11 239" - } -}, -{ - "type": "node", - "id": 27374458, - "lat": 51.2946241, - "lon": 1.1261853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27386121, - "lat": 53.9164732, - "lon": -1.6906818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 106" - } -}, -{ - "type": "node", - "id": 27386453, - "lat": 51.5717450, - "lon": 0.2100511, - "tags": { - "addr:city": "Hornchurch", - "addr:housenumber": "140", - "addr:postcode": "RM11 2DL", - "addr:street": "Hillview Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM11 203" - } -}, -{ - "type": "node", - "id": 27390831, - "lat": 51.3009081, - "lon": 1.1832520, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27390832, - "lat": 51.3039402, - "lon": 1.1958472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27390833, - "lat": 51.3136959, - "lon": 1.2107316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27391916, - "lat": 51.3032361, - "lon": 1.2274955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27394165, - "lat": 53.4035668, - "lon": -2.9769427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type K post box L1 147 on Renshaw St at junction of Heathfield Street", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L1 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Renshaw Street.jpg" - } -}, -{ - "type": "node", - "id": 27394168, - "lat": 53.4015077, - "lon": -2.9755810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II post box L1 407 at Bold Place, just off Berry Street, next to St Luke's church.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L1 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Bold Place.jpg" - } -}, -{ - "type": "node", - "id": 27394257, - "lat": 53.4012523, - "lon": -2.9798811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR pillar box L1 432 on Duke Street near Slater Street.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L1 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Duke Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 27395544, - "lat": 51.3075540, - "lon": 1.2642986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 184" - } -}, -{ - "type": "node", - "id": 27396843, - "lat": 51.2785843, - "lon": 1.3330061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27405460, - "lat": 53.9065188, - "lon": -1.6866133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS21 563" - } -}, -{ - "type": "node", - "id": 27411455, - "lat": 51.5673615, - "lon": -0.1254903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27411479, - "lat": 51.5662847, - "lon": -0.1237220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N19 10" - } -}, -{ - "type": "node", - "id": 27411812, - "lat": 51.2233653, - "lon": 1.4045630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT14", - "priority collection": "yes", - "ref": "CT14 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27412196, - "lat": 51.5625296, - "lon": -0.1200983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27416214, - "lat": 51.2470131, - "lon": 1.3077759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT13", - "ref": "CT13 77", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27418991, - "lat": 53.4045160, - "lon": -2.9810162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR double type C post box L1 100 next to the Lyceum, Liverpool; L1 103 is to its right.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L1 100, Bold Street.jpg" - } -}, -{ - "type": "node", - "id": 27431854, - "lat": 51.6000487, - "lon": 0.0258347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "postal_code": "IG8 9HR", - "ref": "IG8 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27437219, - "lat": 51.2768301, - "lon": 1.0790252, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 8D", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2023-06-25" - } -}, -{ - "type": "node", - "id": 27439494, - "lat": 51.2815210, - "lon": 1.0824036, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 27440815, - "lat": 55.8589038, - "lon": -4.2128384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10f", - "mapillary": "4392177344195103", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G31", - "ref": "G31 653", - "survey:date": "2021-07-03" - } -}, -{ - "type": "node", - "id": 27441055, - "lat": 51.2743514, - "lon": 1.0757743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27441249, - "lat": 51.2828013, - "lon": 1.0743598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 13:15", - "post_box:apertures": "2", - "postal_code": "CT2", - "ref": "CT2 7711;CT2 7722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27449051, - "lat": 51.2779508, - "lon": 1.0569312, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 309" - } -}, -{ - "type": "node", - "id": 27449799, - "lat": 52.5213201, - "lon": -1.8215472, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B24", - "ref": "B24 849", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 27450897, - "lat": 52.5256246, - "lon": -1.8280895, - "tags": { - "amenity": "post_box", - "ref": "B24 502" - } -}, -{ - "type": "node", - "id": 27450903, - "lat": 52.5248971, - "lon": -1.8162597, - "tags": { - "amenity": "post_box", - "postal_code": "B24", - "ref": "B24 349" - } -}, -{ - "type": "node", - "id": 27451093, - "lat": 52.5219259, - "lon": -1.8126598, - "tags": { - "amenity": "post_box", - "ref": "B24 848" - } -}, -{ - "type": "node", - "id": 27456565, - "lat": 53.7135675, - "lon": -1.4841938, - "tags": { - "addr:city": "Wakefield", - "addr:postcode": "WF3 4QY", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 59" - } -}, -{ - "type": "node", - "id": 27456832, - "lat": 53.7166470, - "lon": -1.4951207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "WF3 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27464838, - "lat": 53.3931008, - "lon": -2.9490802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box L8 611 on Lodge Lane at Lime Grove, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Lime Grove, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 27464849, - "lat": 53.3956727, - "lon": -2.9494557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "George V post box L8 66 on Boswell Street, off Lodge Lane, Liverpool 8.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L8 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:George V post box L8 66 on Boswell Street.jpg" - } -}, -{ - "type": "node", - "id": 27464859, - "lat": 53.3902304, - "lon": -2.9045597, - "tags": { - "amenity": "post_box", - "ref": "L18 398" - } -}, -{ - "type": "node", - "id": 27467543, - "lat": 53.8994205, - "lon": -1.7117830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 373" - } -}, -{ - "type": "node", - "id": 27470990, - "lat": 53.9080428, - "lon": -1.6302533, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27471606, - "lat": 53.9081127, - "lon": -1.5925608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "post_box:type": "wall", - "ref": "LS21 650", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27472297, - "lat": 53.9244816, - "lon": -1.5892476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "ref": "LS17 727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27472689, - "lat": 53.9180085, - "lon": -1.5344244, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 27473385, - "lat": 53.3883345, - "lon": -2.8777588, - "tags": { - "amenity": "post_box", - "ref": "L25 954" - } -}, -{ - "type": "node", - "id": 27474341, - "lat": 53.9144316, - "lon": -1.4826301, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 27475417, - "lat": 53.9217544, - "lon": -1.4764832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 985" - } -}, -{ - "type": "node", - "id": 27475568, - "lat": 53.9309285, - "lon": -1.4478044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 757" - } -}, -{ - "type": "node", - "id": 27475940, - "lat": 53.9290255, - "lon": -1.3854835, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27476300, - "lat": 51.5081772, - "lon": -0.3000644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 27477165, - "lat": 51.5135494, - "lon": -0.2973410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 27481674, - "lat": 51.2817001, - "lon": 1.0582225, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT2 23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-07-07" - } -}, -{ - "type": "node", - "id": 27481699, - "lat": 51.2835507, - "lon": 1.0616335, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "648875069840311", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 342", - "survey:date": "2021-07-11" - } -}, -{ - "type": "node", - "id": 27481711, - "lat": 51.2875969, - "lon": 1.0645666, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "593469838479203", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 155", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 27481747, - "lat": 51.2867375, - "lon": 1.0607713, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 256" - } -}, -{ - "type": "node", - "id": 27482966, - "lat": 51.9025284, - "lon": -1.1537945, - "tags": { - "amenity": "post_box", - "ref": "OX26 324" - } -}, -{ - "type": "node", - "id": 27483449, - "lat": 53.6897014, - "lon": -1.5033321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 13", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 27489253, - "lat": 51.8171783, - "lon": -0.8132704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 27491335, - "lat": 53.7195960, - "lon": -1.4785525, - "tags": { - "addr:city": "Wakefield", - "addr:postcode": "WF3 4EQ", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27502822, - "lat": 53.3896518, - "lon": -2.9146210, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L15 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27505869, - "lat": 53.7268716, - "lon": -2.6405200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-03-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PR5 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27505884, - "lat": 53.7398123, - "lon": -2.6357193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27509565, - "lat": 53.6978915, - "lon": -1.5190227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 247" - } -}, -{ - "type": "node", - "id": 27511792, - "lat": 51.8165002, - "lon": -0.8131117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 27512067, - "lat": 51.8156607, - "lon": -0.8122681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 27513809, - "lat": 51.2781191, - "lon": 1.0811209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CT1 3411;CT1 3412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27517164, - "lat": 53.9935279, - "lon": -1.8834346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD23 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-12" - } -}, -{ - "type": "node", - "id": 27533219, - "lat": 51.8220215, - "lon": -0.8148827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 27534971, - "lat": 53.7280628, - "lon": -2.6473798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR5 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27553644, - "lat": 51.4403315, - "lon": -1.0406854, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 27553650, - "lat": 51.4403615, - "lon": -1.0330255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:45", - "description": "Priority postbox", - "note": "Priority postbox", - "ref": "RG31 533", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27563237, - "lat": 53.9114086, - "lon": -1.7003670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS21 649", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27563242, - "lat": 53.9112215, - "lon": -1.6977847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS21 157", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27563252, - "lat": 53.9135320, - "lon": -1.7092224, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LS21 951D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27563271, - "lat": 53.9130288, - "lon": -1.7055389, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "LS21 952" - } -}, -{ - "type": "node", - "id": 27564621, - "lat": 51.3711478, - "lon": -2.3902780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "ref": "BA2 1030", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27564649, - "lat": 51.3718985, - "lon": -2.3862223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27578225, - "lat": 51.7949208, - "lon": -0.8151111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27583974, - "lat": 52.3978337, - "lon": -1.7435965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 798D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27583976, - "lat": 52.3888078, - "lon": -1.7348714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27583981, - "lat": 52.3541503, - "lon": -1.5925767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27583986, - "lat": 52.3710470, - "lon": -1.5501307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV4", - "ref": "CV4 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27584005, - "lat": 52.4105586, - "lon": -1.4841711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "CV2 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 27584594, - "lat": 51.4430186, - "lon": -1.4328853, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27594422, - "lat": 53.7046258, - "lon": -1.5205163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 92" - } -}, -{ - "type": "node", - "id": 27600414, - "lat": 52.5277771, - "lon": -1.8141204, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 464" - } -}, -{ - "type": "node", - "id": 27600417, - "lat": 52.5172047, - "lon": -1.8209980, - "tags": { - "amenity": "post_box", - "ref": "B24 287" - } -}, -{ - "type": "node", - "id": 27603869, - "lat": 52.7488420, - "lon": -1.8209566, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DE13", - "ref": "DE13 1201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27604494, - "lat": 51.2256015, - "lon": -0.1392139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "RH1 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27604495, - "lat": 51.2359791, - "lon": -0.1569396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH1 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "Photo P143-0500" - } -}, -{ - "type": "node", - "id": 27635074, - "lat": 51.2227112, - "lon": -0.1231828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 27643865, - "lat": 51.5200922, - "lon": -0.0441016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 35;E1 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 27649766, - "lat": 51.2748666, - "lon": 1.1036220, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "CT1", - "ref": "CT1 302" - } -}, -{ - "type": "node", - "id": 27649897, - "lat": 51.2756990, - "lon": 1.1006035, - "tags": { - "amenity": "post_box", - "note": "The previous edit says that this postbox is a pillar but as at Thursday 22.06.2023 this postbox is a lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT1", - "ref": "CT1 17", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-22" - } -}, -{ - "type": "node", - "id": 27650117, - "lat": 51.2732797, - "lon": 1.0899948, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 1D", - "royal_cypher": "GVIR", - "source_1": "survey", - "survey:date": "2023-06-22" - } -}, -{ - "type": "node", - "id": 27677298, - "lat": 55.7654279, - "lon": -4.2828544, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 27747963, - "lat": 53.9366325, - "lon": -1.7828182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS29 831", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 27783393, - "lat": 53.7132447, - "lon": -2.0857334, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 27788538, - "lat": 51.9051491, - "lon": -1.1703637, - "tags": { - "amenity": "post_box", - "ref": "OX26 875D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 27792752, - "lat": 51.3933835, - "lon": -2.3215256, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BA2 106" - } -}, -{ - "type": "node", - "id": 27792854, - "lat": 51.3835801, - "lon": -2.3567229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BA2 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q26673834" - } -}, -{ - "type": "node", - "id": 28091377, - "lat": 53.3759896, - "lon": -2.8937245, - "tags": { - "amenity": "post_box", - "ref": "L18 317" - } -}, -{ - "type": "node", - "id": 28096530, - "lat": 53.9041200, - "lon": -1.6941228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "image": "https://www.geograph.org.uk/photo/5987493", - "knitted_hat": "yes", - "post_box:type": "pillar", - "ref": "LS21 562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28096541, - "lat": 53.9302452, - "lon": -1.7439836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "priority:covid19": "yes", - "ref": "LS21 550", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 28096542, - "lat": 53.9191968, - "lon": -1.7293726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS21 549" - } -}, -{ - "type": "node", - "id": 28096549, - "lat": 53.9211826, - "lon": -1.7666747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 864", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28096557, - "lat": 53.9012851, - "lon": -1.6858672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS21 554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28098868, - "lat": 55.7947067, - "lon": -4.2732615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "471217291048345", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G76 951", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 28098908, - "lat": 53.9029100, - "lon": -1.6900488, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LS21 556D" - } -}, -{ - "type": "node", - "id": 28129598, - "lat": 51.6176359, - "lon": -2.5230198, - "tags": { - "amenity": "post_box", - "note": "no reference number visible on label, but 643B written on box in marker pen", - "post_box:type": "pillar", - "ref": "BS35 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28149960, - "lat": 51.2784015, - "lon": 1.1170693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28151872, - "lat": 53.9261132, - "lon": -1.8260095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS29 803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28153233, - "lat": 51.2930179, - "lon": 1.2535747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 133", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 28156509, - "lat": 51.7378145, - "lon": -0.8589690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 28158735, - "lat": 51.3015684, - "lon": 1.2667113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 132", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 28164095, - "lat": 53.9243968, - "lon": -1.8229946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 838", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28164107, - "lat": 53.9238183, - "lon": -1.8194803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "double box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS29 812", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28168223, - "lat": 53.9245670, - "lon": -1.8220688, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-26", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS29 800;LS29 1800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28196081, - "lat": 53.9256928, - "lon": -1.8233796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS29 801", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 28206643, - "lat": 52.1454270, - "lon": 0.3437893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB21 531", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28206928, - "lat": 52.1334500, - "lon": 0.3085280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28206958, - "lat": 52.1312818, - "lon": 0.3216458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28213526, - "lat": 55.8127314, - "lon": -4.2683055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "G44 204", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 28215214, - "lat": 55.8113890, - "lon": -4.2601085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G44 1190D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 28226216, - "lat": 51.6023521, - "lon": -2.4733516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28229026, - "lat": 51.8188811, - "lon": -1.2846872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "OX5 764", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-06" - } -}, -{ - "type": "node", - "id": 28229276, - "lat": 51.8152368, - "lon": -1.2863310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "OX5 905", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28238569, - "lat": 51.8114731, - "lon": -1.2857128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX5 729", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2013-03-02" - } -}, -{ - "type": "node", - "id": 28238992, - "lat": 53.9145812, - "lon": -1.6875413, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5987464", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS21 130", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 28269425, - "lat": 51.3189370, - "lon": 1.0325408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 216" - } -}, -{ - "type": "node", - "id": 28270698, - "lat": 51.3113244, - "lon": 1.0370521, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "location": "In the wall.of the \"The Royal Oak\" pub.", - "old_ref": "CT2 70", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 70D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2023-07-03" - } -}, -{ - "type": "node", - "id": 28274117, - "lat": 51.3068754, - "lon": 1.0437525, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 246" - } -}, -{ - "type": "node", - "id": 28321719, - "lat": 52.2612043, - "lon": -1.0133868, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN7 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28345989, - "lat": 53.9602154, - "lon": -2.0185568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-02-05", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "colour": "gold", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD23 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28346017, - "lat": 53.9616601, - "lon": -2.0169139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "BD23 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 28371592, - "lat": 51.2696329, - "lon": 1.2017655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP7D", - "old_ref": "CT3 261", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-06" - } -}, -{ - "type": "node", - "id": 28371753, - "lat": 51.2656546, - "lon": 1.2377689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 141", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 28371754, - "lat": 51.2634729, - "lon": 1.2515348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28371788, - "lat": 51.2642652, - "lon": 1.2623180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28388975, - "lat": 51.2860830, - "lon": 1.2256428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 140", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28388976, - "lat": 51.2738660, - "lon": 1.1643628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28388977, - "lat": 51.2980879, - "lon": 1.2363537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "118504640496610", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 130", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 28388978, - "lat": 51.2983920, - "lon": 1.2243422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28388979, - "lat": 51.3172749, - "lon": 1.2335821, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT3 129", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-10-18" - } -}, -{ - "type": "node", - "id": 28388993, - "lat": 51.3158757, - "lon": 1.2484016, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT3 171", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-10-18" - } -}, -{ - "type": "node", - "id": 28389022, - "lat": 51.2793859, - "lon": 1.2407971, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is at the eastern end of the property \"Canterbury Cottages Shatterling House\".", - "old_ref": "CT3 136", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28389130, - "lat": 51.2847899, - "lon": 1.0935458, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "CT1", - "ref": "CT1 293", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28390040, - "lat": 55.7890562, - "lon": -4.2737133, - "tags": { - "amenity": "post_box", - "ref": "G76 950" - } -}, -{ - "type": "node", - "id": 28420027, - "lat": 51.3630535, - "lon": -2.3379695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 28420035, - "lat": 51.3612323, - "lon": -2.3369456, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 28420050, - "lat": 51.3598982, - "lon": -2.3421634, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 28449180, - "lat": 53.8144906, - "lon": -3.0506039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28479484, - "lat": 51.3478471, - "lon": 1.0638672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28479549, - "lat": 51.3582010, - "lon": 1.1401030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28479550, - "lat": 51.3583340, - "lon": 1.1490210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28479615, - "lat": 51.3783483, - "lon": 1.1978564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28479698, - "lat": 51.3574597, - "lon": 1.1945697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 105", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28484655, - "lat": 51.3545683, - "lon": 1.1310057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28484746, - "lat": 51.3525180, - "lon": 1.1282740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28484790, - "lat": 51.3467740, - "lon": 1.1322960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28484859, - "lat": 51.3516776, - "lon": 1.1365131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28484879, - "lat": 51.3539340, - "lon": 1.1382110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28518498, - "lat": 51.3675835, - "lon": 1.1409091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 28518944, - "lat": 51.3646850, - "lon": 1.1177810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 28525159, - "lat": 55.7930529, - "lon": -4.2690832, - "tags": { - "amenity": "post_box", - "name": "Monteith Post Box" - } -}, -{ - "type": "node", - "id": 28530005, - "lat": 55.8114820, - "lon": -4.2757005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "G44", - "ref": "G44 1042", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 28530350, - "lat": 55.8270615, - "lon": -4.2670466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "G42", - "ref": "G42 572", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 28571352, - "lat": 51.8216388, - "lon": -0.8203380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 28571376, - "lat": 51.8197050, - "lon": -0.8309216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 28588671, - "lat": 51.2509229, - "lon": -0.6358720, - "tags": { - "amenity": "post_box", - "postal_code": "GU3", - "ref": "GU3 195" - } -}, -{ - "type": "node", - "id": 28784092, - "lat": 53.9631439, - "lon": -0.9759170, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 547", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28787752, - "lat": 51.2530091, - "lon": 1.0042455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT4", - "ref": "CT4 117", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28788238, - "lat": 51.8606604, - "lon": -1.3031069, - "tags": { - "amenity": "post_box", - "ref": "OX5 81" - } -}, -{ - "type": "node", - "id": 28788560, - "lat": 51.2491452, - "lon": 1.0227482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT4", - "ref": "CT4 115", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28790673, - "lat": 51.2539663, - "lon": 1.0209232, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28799712, - "lat": 51.8120496, - "lon": -1.2067037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "OX3 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28799716, - "lat": 51.8137331, - "lon": -1.2108155, - "tags": { - "amenity": "post_box", - "fixme": "survey required for ref and accurate location" - } -}, -{ - "type": "node", - "id": 28800161, - "lat": 51.8360504, - "lon": -1.1903260, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 28802645, - "lat": 51.2561618, - "lon": 1.0171231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CT4", - "ref": "CT4 306", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28802727, - "lat": 51.2715694, - "lon": 1.0137732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 259", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28807317, - "lat": 51.3677232, - "lon": 1.1363034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28807323, - "lat": 51.3635734, - "lon": 1.1387303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28830565, - "lat": 55.8201056, - "lon": -4.2702886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "G43", - "ref": "G43 1255", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 28830746, - "lat": 55.8164341, - "lon": -4.2696162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G44 1205D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 28836208, - "lat": 51.7438840, - "lon": -0.0294297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 28836209, - "lat": 51.7444762, - "lon": -0.0200339, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "operator": "Royal Mail", - "ref": "EN10 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 28838406, - "lat": 55.8618657, - "lon": -4.2268363, - "tags": { - "amenity": "post_box", - "note": "no reference plate Sep 2019" - } -}, -{ - "type": "node", - "id": 28841617, - "lat": 55.7510000, - "lon": -4.9330288, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA28 88", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 28841632, - "lat": 55.7538844, - "lon": -4.9202543, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA28 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 28846379, - "lat": 51.5671883, - "lon": 0.5522752, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 28846489, - "lat": 51.5663213, - "lon": 0.5635859, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 28848165, - "lat": 51.5573740, - "lon": 0.5990511, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 28866302, - "lat": 51.2697702, - "lon": 1.0587426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28866521, - "lat": 51.2712839, - "lon": 1.1011589, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 325", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CT1", - "ref": "CT1 325D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-28" - } -}, -{ - "type": "node", - "id": 28866796, - "lat": 51.2799647, - "lon": 1.0908277, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT1", - "ref": "CT1 247", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28866885, - "lat": 51.2681768, - "lon": 1.0969175, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT1", - "ref": "CT1 101", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867036, - "lat": 51.3563460, - "lon": 1.0648596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867453, - "lat": 51.2657947, - "lon": 1.0554358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT1", - "ref": "CT1 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867457, - "lat": 51.3506120, - "lon": 1.0467826, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 223", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867460, - "lat": 51.3553463, - "lon": 1.0525093, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 65", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867465, - "lat": 51.3481125, - "lon": 1.0418931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CT5 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867467, - "lat": 51.3578774, - "lon": 1.0739692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867468, - "lat": 51.3540481, - "lon": 1.0683193, - "tags": { - "amenity": "post_box", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28867472, - "lat": 51.3505760, - "lon": 1.0650866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28872847, - "lat": 52.5330739, - "lon": -1.8400521, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B23", - "ref": "B23 499", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 28873185, - "lat": 52.5286258, - "lon": -1.8414264, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B23", - "ref": "B23 140" - } -}, -{ - "type": "node", - "id": 28873775, - "lat": 52.5297074, - "lon": -1.8336143, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B23", - "ref": "B23 1016" - } -}, -{ - "type": "node", - "id": 28895550, - "lat": 51.3722159, - "lon": 1.1286094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28895559, - "lat": 51.3727065, - "lon": 1.1257682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28899321, - "lat": 51.4625646, - "lon": -0.0740381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 56", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28899941, - "lat": 51.4617344, - "lon": -0.0803069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 28903975, - "lat": 51.0779653, - "lon": -1.4821370, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO20 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 28926430, - "lat": 55.8418562, - "lon": -4.4370411, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 9" - } -}, -{ - "type": "node", - "id": 28926663, - "lat": 55.8381765, - "lon": -4.4375060, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "PA2", - "ref": "PA2 58" - } -}, -{ - "type": "node", - "id": 28931767, - "lat": 51.8247670, - "lon": -0.8197631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 28931949, - "lat": 51.8272367, - "lon": -0.8163481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 29004353, - "lat": 53.3841535, - "lon": -2.9569681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIR type K post box L8 19 by Abbot Engineering on Belvidere Road near junction with Peel Street.", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Belvidere Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 29009465, - "lat": 51.5342181, - "lon": -1.0722454, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 29012764, - "lat": 51.8753579, - "lon": -1.0973872, - "tags": { - "amenity": "post_box", - "ref": "OX25 564" - } -}, -{ - "type": "node", - "id": 29012770, - "lat": 51.8695448, - "lon": -1.0970135, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX25 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29014202, - "lat": 52.9523849, - "lon": 1.0128539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2539D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29014970, - "lat": 52.9540070, - "lon": 1.0145373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-17" - } -}, -{ - "type": "node", - "id": 29014975, - "lat": 52.9549516, - "lon": 1.0181572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR25 2523D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29015001, - "lat": 52.9518578, - "lon": 1.0232940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Attached to pole that is only 2ft taller than the attachment point", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR25 2541D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29019167, - "lat": 55.9181557, - "lon": -3.2737290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 29019270, - "lat": 55.8965246, - "lon": -3.3086269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EH14 575", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 29019282, - "lat": 55.9227143, - "lon": -3.2873995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH11 433D" - } -}, -{ - "type": "node", - "id": 29022948, - "lat": 52.1471578, - "lon": -1.0870172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29042567, - "lat": 52.3989709, - "lon": 0.2588968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "last_checked": "2021-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB7 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29043996, - "lat": 52.3935299, - "lon": 0.2654928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB7 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29043997, - "lat": 52.3959133, - "lon": 0.2620606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB7 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044012, - "lat": 52.3951909, - "lon": 0.2543141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB7 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044031, - "lat": 52.3930546, - "lon": 0.2438509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB6 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044040, - "lat": 52.3945549, - "lon": 0.2492761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB6 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044113, - "lat": 52.3987932, - "lon": 0.2543410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB6 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044115, - "lat": 52.3986874, - "lon": 0.2486052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB6 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044168, - "lat": 52.4004495, - "lon": 0.2459768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044193, - "lat": 52.4068280, - "lon": 0.2511480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044231, - "lat": 52.4029262, - "lon": 0.2502473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB6 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044259, - "lat": 52.4019988, - "lon": 0.2594166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB6 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29044266, - "lat": 52.3993504, - "lon": 0.2644149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 04:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB7 24;CB7 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29046151, - "lat": 51.3821324, - "lon": 1.3399175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 29046152, - "lat": 51.3844461, - "lon": 1.3397841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29046153, - "lat": 51.3839764, - "lon": 1.3344661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29046185, - "lat": 51.3810354, - "lon": 1.3325076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT8", - "ref": "CT8 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29047761, - "lat": 53.8768313, - "lon": -1.7214846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "LS20 500", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29056088, - "lat": 51.3491026, - "lon": 1.0368418, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 151", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29056839, - "lat": 51.3573236, - "lon": 1.0389497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29057187, - "lat": 53.8720081, - "lon": -1.7071420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS20 502", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 29057443, - "lat": 51.3638922, - "lon": 1.0713342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 299", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29057462, - "lat": 51.3715420, - "lon": 1.1403890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29057560, - "lat": 51.3668238, - "lon": 1.0986635, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 321", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 29065120, - "lat": 53.7297344, - "lon": -2.5270250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 29065138, - "lat": 53.6959214, - "lon": -2.5923739, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-23", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "name": "Higher Wheelton", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR6 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "npe" - } -}, -{ - "type": "node", - "id": 29065275, - "lat": 55.8395733, - "lon": -4.4249155, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA1", - "ref": "PA1 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 29071823, - "lat": 51.3813546, - "lon": 1.2874030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29071826, - "lat": 51.3770993, - "lon": 1.2856018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT7", - "ref": "CT7 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29107403, - "lat": 55.8580364, - "lon": -4.2083950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G31", - "ref": "G31 183" - } -}, -{ - "type": "node", - "id": 29132785, - "lat": 51.8228854, - "lon": -1.3107536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX5 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29132937, - "lat": 51.7767131, - "lon": -0.7463280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29135236, - "lat": 55.9220953, - "lon": -3.2792647, - "tags": { - "amenity": "post_box", - "ref": "EH11 462" - } -}, -{ - "type": "node", - "id": 29135894, - "lat": 55.8143985, - "lon": -4.2723302, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 29136837, - "lat": 55.7876976, - "lon": -4.2796833, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 29159059, - "lat": 51.2608015, - "lon": 1.0675983, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT1", - "ref": "CT1 188", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29160634, - "lat": 51.2720082, - "lon": 1.0735900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT1", - "ref": "CT1 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29160767, - "lat": 51.2710369, - "lon": 1.0765794, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT1", - "ref": "CT1 384", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29160768, - "lat": 51.2727624, - "lon": 1.0798925, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 58", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 58D", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2023-03-14" - } -}, -{ - "type": "node", - "id": 29162045, - "lat": 52.2412528, - "lon": -0.9853990, - "tags": { - "amenity": "post_box", - "ref": "NN7 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29163377, - "lat": 52.2065092, - "lon": -0.9573115, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN7 135" - } -}, -{ - "type": "node", - "id": 29172968, - "lat": 55.9113125, - "lon": -3.3218858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH14 556", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 29173491, - "lat": 51.2912991, - "lon": -0.7585078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "GU14 209", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 29173492, - "lat": 51.2907052, - "lon": -0.7580306, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "name": "Farnborough", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "royal_cypher": "no", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 29175437, - "lat": 52.4615465, - "lon": 0.2919144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29196279, - "lat": 55.8447990, - "lon": -4.4298709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "PA1", - "ref": "PA1 11" - } -}, -{ - "type": "node", - "id": 29264493, - "lat": 55.8452881, - "lon": -4.3911063, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "PA1", - "ref": "PA1 66" - } -}, -{ - "type": "node", - "id": 29273126, - "lat": 51.3696109, - "lon": 1.1544793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 187", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29273594, - "lat": 51.3637770, - "lon": 1.1448560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29286742, - "lat": 51.2691472, - "lon": 1.0827803, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT1", - "ref": "CT1 106", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29339706, - "lat": 52.2404362, - "lon": -0.9906321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "NN7 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29341044, - "lat": 52.5586722, - "lon": -1.9004433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "ref": "B43 895", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 29341053, - "lat": 52.5621378, - "lon": -1.8991697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "B43 1015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29345374, - "lat": 51.2733281, - "lon": 1.0833231, - "tags": { - "amenity": "post_box", - "postal_code": "CT1", - "ref": "CT1 40", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 29346373, - "lat": 51.2712639, - "lon": 1.0881279, - "tags": { - "amenity": "post_box", - "postal_code": "CT1", - "ref": "CT1 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29348340, - "lat": 51.8231392, - "lon": -0.8251808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 29349423, - "lat": 51.2649013, - "lon": 1.0905303, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This walled postbox is a brick pillar with well-grown vegetation.", - "old_ref": "CT1 272", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 272D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-06-29" - } -}, -{ - "type": "node", - "id": 29350947, - "lat": 51.2690046, - "lon": 1.0921147, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 48", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 48D", - "royal_cypher": "EIIR", - "source": "survey", - "source_1": "survey", - "survey:date": "2023-06-22" - } -}, -{ - "type": "node", - "id": 29351643, - "lat": 51.3672118, - "lon": 1.1503125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 29360338, - "lat": 51.2756241, - "lon": -0.7555724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "GU14 122D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 29365120, - "lat": 51.8281066, - "lon": -0.8177559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP19 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 29366122, - "lat": 51.2302368, - "lon": -0.5829292, - "tags": { - "amenity": "post_box", - "postal_code": "GU2", - "ref": "GU2 164" - } -}, -{ - "type": "node", - "id": 29367436, - "lat": 51.8288332, - "lon": -0.8249531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 29368420, - "lat": 51.8298833, - "lon": -0.8404681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP19 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 29368769, - "lat": 51.8280563, - "lon": -0.8392970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP19 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 29380737, - "lat": 51.2958204, - "lon": 1.0632523, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29381076, - "lat": 51.2914381, - "lon": 1.0479177, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29381668, - "lat": 51.2948871, - "lon": 1.0531630, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "334728991591956", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 29382074, - "lat": 51.2869635, - "lon": 1.0452922, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 385", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29387741, - "lat": 51.8277630, - "lon": -0.8333222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 29392591, - "lat": 50.9649350, - "lon": -1.3553953, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 118D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29392592, - "lat": 50.9660973, - "lon": -1.3523970, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29394497, - "lat": 51.9540582, - "lon": -1.2770829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "OX25 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29395223, - "lat": 51.9304466, - "lon": -1.2763139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "last_checked": "2020-08-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX25 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29395867, - "lat": 51.2357946, - "lon": -0.1610875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 259D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:ref": "Photo P143-0463" - } -}, -{ - "type": "node", - "id": 29395877, - "lat": 51.2271478, - "lon": -0.1317527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Station Approach Nutfield", - "old_ref": "RH1 16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH1 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29395906, - "lat": 51.2243742, - "lon": -0.1343019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 277" - } -}, -{ - "type": "node", - "id": 29397919, - "lat": 51.9079457, - "lon": -1.2257691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 29413416, - "lat": 52.2438556, - "lon": -0.9872682, - "tags": { - "amenity": "post_box", - "ref": "NN7 167", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29421439, - "lat": 55.8456892, - "lon": -4.4228306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "created_by": "Potlatch 0.9c", - "postal_code": "PA1", - "ref": "PA1 6", - "survey:date": "2020-11-21" - } -}, -{ - "type": "node", - "id": 29428141, - "lat": 52.9711691, - "lon": -1.1585026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG7 20", - "ref:GB:uprn": "10015374899", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "source:details": "http://www.geograph.org.uk/photo/1465428;survey" - } -}, -{ - "type": "node", - "id": 29434164, - "lat": 51.2481681, - "lon": -0.1613763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH1 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29501284, - "lat": 51.3719115, - "lon": 1.1711008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29512399, - "lat": 51.8905488, - "lon": -1.1404822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3881631431956806", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX26 185", - "survey:date": "2020-11-28" - } -}, -{ - "type": "node", - "id": 29513915, - "lat": 51.2391639, - "lon": 1.0735682, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT4", - "ref": "CT4 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29513973, - "lat": 51.2333940, - "lon": 1.0788323, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT4", - "ref": "CT4 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29514539, - "lat": 51.2004855, - "lon": 1.0768985, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "As at Sunday 30.07.2023 the entry said that this postbox is a pillar but as at Friday 07.07.2023 it is a lamp.", - "old_ref": "CT4 185", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 185D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-07" - } -}, -{ - "type": "node", - "id": 29516102, - "lat": 51.1922116, - "lon": 1.0715135, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 330", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29516422, - "lat": 51.1813185, - "lon": 1.0642626, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT4", - "ref": "CT4 118", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29517799, - "lat": 51.1761629, - "lon": 1.0772138, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 208", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29518052, - "lat": 51.1641861, - "lon": 1.0267044, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 114", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29518412, - "lat": 51.2165569, - "lon": 1.0601743, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29518466, - "lat": 51.2231967, - "lon": 1.0460670, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT4", - "ref": "CT4 116", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29518563, - "lat": 51.2284145, - "lon": 1.0487903, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT4", - "ref": "CT4 82", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29518656, - "lat": 51.2699891, - "lon": 1.0537568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29536228, - "lat": 51.3705490, - "lon": 1.1616166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT6 174", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29542793, - "lat": 51.5792898, - "lon": -2.5762488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 336D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29553736, - "lat": 51.2845660, - "lon": 1.0847775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29557782, - "lat": 51.7823505, - "lon": -0.7347160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-03-25" - } -}, -{ - "type": "node", - "id": 29567505, - "lat": 53.8886021, - "lon": -1.2502201, - "tags": { - "amenity": "post_box", - "ref": "LS24 676" - } -}, -{ - "type": "node", - "id": 29583290, - "lat": 55.8357631, - "lon": -4.4283162, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 19" - } -}, -{ - "type": "node", - "id": 29587920, - "lat": 51.5564424, - "lon": -2.5640908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS32 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29588059, - "lat": 51.5897928, - "lon": -2.5319057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "collection_times_checked": "2015-10-10", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29622179, - "lat": 51.4643012, - "lon": -0.0688824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29622196, - "lat": 51.4642392, - "lon": -0.0729029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29648590, - "lat": 50.7501722, - "lon": -1.9982906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BH18", - "ref": "BH18 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29648597, - "lat": 50.7554168, - "lon": -1.9978509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BH18", - "ref": "BH18 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 29676334, - "lat": 52.2971444, - "lon": -0.0392935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29676424, - "lat": 52.2956216, - "lon": -0.0388099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29680229, - "lat": 51.9012378, - "lon": -1.1740975, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX26 863" - } -}, -{ - "type": "node", - "id": 29683628, - "lat": 57.1612243, - "lon": -2.1099496, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB24 3LH", - "addr:street": "Bedford Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 105", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; Bing" - } -}, -{ - "type": "node", - "id": 29713905, - "lat": 51.2894591, - "lon": 1.0879333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29730532, - "lat": 50.9671624, - "lon": -1.3693839, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29730533, - "lat": 50.9645588, - "lon": -1.3650423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 386D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29732001, - "lat": 51.8785796, - "lon": -1.1116522, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 29732037, - "lat": 51.9001172, - "lon": -1.0669400, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX27 612D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29733535, - "lat": 50.9971474, - "lon": -1.5004538, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 762", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29749816, - "lat": 51.3066819, - "lon": -0.9060493, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-17", - "ref": "RG27 270" - } -}, -{ - "type": "node", - "id": 29749818, - "lat": 51.3060908, - "lon": -0.9005253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "RG27 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29749833, - "lat": 51.3053932, - "lon": -0.9117094, - "tags": { - "amenity": "post_box", - "ref": "RG27 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29760888, - "lat": 54.6477396, - "lon": -2.1469079, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29761818, - "lat": 55.8615617, - "lon": -4.2495802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G2 158D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 29761819, - "lat": 55.8618412, - "lon": -4.2500000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G1", - "ref": "G1 1208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29779607, - "lat": 51.3309366, - "lon": 1.3154418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CT12 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29779851, - "lat": 51.3341898, - "lon": 1.3148267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT12 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29780011, - "lat": 51.3411772, - "lon": 1.3161104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CT12 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29781359, - "lat": 51.3362261, - "lon": 1.3303493, - "tags": { - "amenity": "post_box", - "postal_code": "CT12", - "ref": "CT12 137", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29782159, - "lat": 51.3350883, - "lon": 1.3086927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT12", - "ref": "CT12 136", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29782406, - "lat": 51.3376460, - "lon": 1.3119789, - "tags": { - "amenity": "post_box", - "postal_code": "CT12", - "ref": "CT12 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29785066, - "lat": 51.3396693, - "lon": 1.2786181, - "tags": { - "amenity": "post_box", - "mapillary": "987924821977479", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT12", - "ref": "CT12 139", - "source": "survey", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 29785526, - "lat": 51.3406092, - "lon": 1.2734429, - "tags": { - "amenity": "post_box", - "mapillary": "227127125426164", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT12", - "ref": "CT12 135", - "source": "survey", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 29786480, - "lat": 51.3532330, - "lon": 1.2543336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT7", - "ref": "CT7 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29787334, - "lat": 51.3528055, - "lon": 1.2482426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT7", - "ref": "CT7 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29801193, - "lat": 50.6062210, - "lon": -3.6892404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 29801439, - "lat": 50.6834249, - "lon": -3.6907500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 29825561, - "lat": 51.1979635, - "lon": 1.0167295, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 121", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29825856, - "lat": 51.2091703, - "lon": 1.0248092, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 191", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29842085, - "lat": 51.2762798, - "lon": 1.1586863, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT3 24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-04" - } -}, -{ - "type": "node", - "id": 29855584, - "lat": 52.4588717, - "lon": 0.3037281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB6 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29858440, - "lat": 51.2730337, - "lon": 1.1659543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29858463, - "lat": 51.2756284, - "lon": 1.1696853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT3 260", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-04" - } -}, -{ - "type": "node", - "id": 29858801, - "lat": 51.2787321, - "lon": 1.1647512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT3 334", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-04" - } -}, -{ - "type": "node", - "id": 29861650, - "lat": 51.2778207, - "lon": 1.1845407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29862056, - "lat": 51.2655650, - "lon": 1.1977666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865181, - "lat": 52.3986109, - "lon": 0.2707997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB7 27;CB7 2700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865183, - "lat": 52.3975893, - "lon": 0.2693972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865202, - "lat": 52.4054409, - "lon": 0.2812255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB7 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865325, - "lat": 52.4024266, - "lon": 0.2694849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB7 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865351, - "lat": 52.4039250, - "lon": 0.2654787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB6 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865352, - "lat": 52.4070738, - "lon": 0.2684272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29865359, - "lat": 52.4090491, - "lon": 0.2573526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29869524, - "lat": 52.4512617, - "lon": -1.8982136, - "tags": { - "amenity": "post_box", - "ref": "B13 914" - } -}, -{ - "type": "node", - "id": 29875109, - "lat": 51.9426934, - "lon": -1.1123271, - "tags": { - "amenity": "post_box", - "ref": "OX27 832" - } -}, -{ - "type": "node", - "id": 29944861, - "lat": 50.9834649, - "lon": -1.3600891, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29953321, - "lat": 52.2184064, - "lon": -0.7512916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29956577, - "lat": 54.4359867, - "lon": -0.7616574, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "YO21 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 29973615, - "lat": 52.2046300, - "lon": -0.7361541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN7 162D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 29980929, - "lat": 51.4646031, - "lon": 0.0141791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE3 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989109, - "lat": 51.4530003, - "lon": -0.0998320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989110, - "lat": 51.4511062, - "lon": -0.1006667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989111, - "lat": 51.4443294, - "lon": -0.1049974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989112, - "lat": 51.4416017, - "lon": -0.1059092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989113, - "lat": 51.4530630, - "lon": -0.0946659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 14", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989114, - "lat": 51.4577190, - "lon": -0.0826723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989115, - "lat": 51.4594339, - "lon": -0.0772943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29989723, - "lat": 51.2778646, - "lon": 1.0984963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 230", - "source": "survey" - } -}, -{ - "type": "node", - "id": 29990224, - "lat": 51.2776136, - "lon": 1.0871444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 3", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30003401, - "lat": 53.3941680, - "lon": -2.8994141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1738554243150409", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 765", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 30003441, - "lat": 53.3905414, - "lon": -2.9122085, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L15 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30010641, - "lat": 51.8030943, - "lon": -0.8174484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 30014398, - "lat": 52.4148176, - "lon": 0.2736363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB7 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30050725, - "lat": 51.5640559, - "lon": -2.4420138, - "tags": { - "amenity": "post_box", - "mapillary": "137502008369559", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 304", - "survey:date": "2020-03-21" - } -}, -{ - "type": "node", - "id": 30050734, - "lat": 51.5497656, - "lon": -2.4605265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:30", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 418", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30050737, - "lat": 51.5507447, - "lon": -2.4675587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 684", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30095251, - "lat": 51.9227607, - "lon": -1.1447214, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30096945, - "lat": 50.9644990, - "lon": -1.3797492, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30148812, - "lat": 51.4779242, - "lon": -0.0125153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE10", - "ref": "SE10 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30152940, - "lat": 52.1015426, - "lon": 0.2739117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30152997, - "lat": 52.0996999, - "lon": 0.2804014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB21 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30153023, - "lat": 52.0984783, - "lon": 0.2909923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30153039, - "lat": 52.0946226, - "lon": 0.2755179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB21 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30153057, - "lat": 52.1123279, - "lon": 0.2525261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB21 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30158063, - "lat": 51.4184046, - "lon": -0.3788376, - "tags": { - "amenity": "post_box", - "ref": "TW12 225" - } -}, -{ - "type": "node", - "id": 30158330, - "lat": 51.4204824, - "lon": -0.3761048, - "tags": { - "amenity": "post_box", - "ref": "TW12 250" - } -}, -{ - "type": "node", - "id": 30158331, - "lat": 51.4187582, - "lon": -0.3714830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW12 221" - } -}, -{ - "type": "node", - "id": 30159711, - "lat": 51.3356809, - "lon": -0.0042826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 493" - } -}, -{ - "type": "node", - "id": 30184252, - "lat": 52.0974290, - "lon": 0.2761302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB21 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30239300, - "lat": 55.8673077, - "lon": -4.2657748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G3 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30242843, - "lat": 50.9826189, - "lon": 0.2688296, - "tags": { - "amenity": "post_box", - "postal_code": "TN21", - "ref": "TN21 54" - } -}, -{ - "type": "node", - "id": 30243075, - "lat": 51.0180536, - "lon": 0.2486243, - "tags": { - "amenity": "post_box", - "postal_code": "TN20", - "ref": "TN20 192" - } -}, -{ - "type": "node", - "id": 30243076, - "lat": 51.0178585, - "lon": 0.2504290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TN20", - "ref": "TN20 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30244469, - "lat": 50.8210212, - "lon": 0.2599172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BN26", - "ref": "BN26 1035D" - } -}, -{ - "type": "node", - "id": 30247589, - "lat": 51.2272203, - "lon": -0.5678726, - "tags": { - "amenity": "post_box", - "postal_code": "GU1", - "ref": "GU1 143" - } -}, -{ - "type": "node", - "id": 30323559, - "lat": 51.2941632, - "lon": 1.0888658, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 375", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30346428, - "lat": 52.1802081, - "lon": 0.2157296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB21 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30350378, - "lat": 51.5335649, - "lon": -2.5807913, - "tags": { - "amenity": "post_box", - "ref": "BS34 449", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30399951, - "lat": 53.7427831, - "lon": -2.6432937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR5 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30401660, - "lat": 51.2964586, - "lon": 1.0582131, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 379", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30401766, - "lat": 51.2416170, - "lon": -0.5996626, - "tags": { - "amenity": "post_box", - "postal_code": "GU2", - "ref": "GU2 211" - } -}, -{ - "type": "node", - "id": 30408437, - "lat": 51.2908739, - "lon": 1.0752655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT2", - "ref": "CT2 354", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30423964, - "lat": 52.5789931, - "lon": -1.9134808, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d", - "postal_code": "WS9", - "ref": "WS9 109" - } -}, -{ - "type": "node", - "id": 30424919, - "lat": 52.5327686, - "lon": -1.9154876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B42 832D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30430121, - "lat": 51.4603795, - "lon": -0.2788740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "curious reference", - "old_ref": "TW10 1D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30430122, - "lat": 51.4571683, - "lon": -0.2723829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30430123, - "lat": 51.4569754, - "lon": -0.2677641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30430124, - "lat": 51.4583180, - "lon": -0.2680144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30430125, - "lat": 51.4613024, - "lon": -0.2699766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30430126, - "lat": 51.4580367, - "lon": -0.2662390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-02", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30430127, - "lat": 51.4602611, - "lon": -0.2637534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30430128, - "lat": 51.4608186, - "lon": -0.2601231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30431994, - "lat": 50.9789068, - "lon": -1.3493799, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 229D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30446551, - "lat": 55.9393690, - "lon": -3.1089551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH15 630D" - } -}, -{ - "type": "node", - "id": 30451247, - "lat": 55.9413997, - "lon": -3.1275458, - "tags": { - "amenity": "post_box", - "ref": "EH15 496" - } -}, -{ - "type": "node", - "id": 30451270, - "lat": 55.9394408, - "lon": -3.1151728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 505", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 30471492, - "lat": 51.4660755, - "lon": -0.2790301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30480213, - "lat": 51.4202474, - "lon": -0.2787176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30482156, - "lat": 51.4247748, - "lon": -0.2746156, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT2 123", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30483023, - "lat": 51.9317106, - "lon": -1.1161554, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30483267, - "lat": 51.4234377, - "lon": -0.2901614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 297D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30513365, - "lat": 50.9842197, - "lon": -1.3510791, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 232D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30515592, - "lat": 51.2214006, - "lon": -0.5673093, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU4 90" - } -}, -{ - "type": "node", - "id": 30566041, - "lat": 51.9153224, - "lon": -1.2453939, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30581764, - "lat": 53.2521289, - "lon": -2.5125762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CW9 47D" - } -}, -{ - "type": "node", - "id": 30585312, - "lat": 51.5124823, - "lon": -0.1876759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 54;W2 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30592666, - "lat": 51.5115913, - "lon": -0.1975035, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-22", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "ref": "W11 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30614545, - "lat": 51.5424361, - "lon": -1.6993520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 53D", - "royal_cypher": "EIIR", - "source": "npe" - } -}, -{ - "type": "node", - "id": 30625693, - "lat": 51.4063662, - "lon": -2.7499589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 30625792, - "lat": 51.4115425, - "lon": -2.7682098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30625828, - "lat": 51.4142532, - "lon": -2.7784753, - "tags": { - "amenity": "post_box", - "mapillary": "1125482184595914", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2019-06-02" - } -}, -{ - "type": "node", - "id": 30629721, - "lat": 51.4171682, - "lon": -0.2939374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30630718, - "lat": 51.5824090, - "lon": 0.2144750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Su 11:45", - "fixme": "Should 11:45 collection be on Saturday rather than Sunday?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 30631417, - "lat": 51.4221631, - "lon": -0.3029606, - "tags": { - "amenity": "post_box", - "mapillary": "1463596457181957", - "post_box:type": "pillar", - "ref": "KT2 55", - "survey:date": "2021-02-01" - } -}, -{ - "type": "node", - "id": 30649766, - "lat": 51.4602672, - "lon": -2.6158468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "BS8 422", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30669307, - "lat": 51.4371711, - "lon": -0.3157467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW10 180", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30669329, - "lat": 51.4565695, - "lon": -0.2914827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "pillar", - "ref": "TW10 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30669336, - "lat": 51.4534299, - "lon": -0.2942275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TW10 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 30669337, - "lat": 51.4446360, - "lon": -0.3026947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30669339, - "lat": 51.4602397, - "lon": -0.2972905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30695570, - "lat": 51.5312247, - "lon": -0.6921359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL6 40" - } -}, -{ - "type": "node", - "id": 30695571, - "lat": 51.5311681, - "lon": -0.6853819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 104", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 30695572, - "lat": 51.5382762, - "lon": -0.6887480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30695574, - "lat": 51.5240379, - "lon": -0.7046351, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30706720, - "lat": 51.2341174, - "lon": -0.5685076, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU1 181" - } -}, -{ - "type": "node", - "id": 30714144, - "lat": 51.2339688, - "lon": -0.5614324, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 30733567, - "lat": 53.7848100, - "lon": -2.2314243, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 30733605, - "lat": 51.6767158, - "lon": -2.4064492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30733614, - "lat": 51.6761569, - "lon": -2.3790650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "collection_times_checked": "2020-05-31", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30733622, - "lat": 51.6621787, - "lon": -2.3492317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30759349, - "lat": 51.5519018, - "lon": -0.3600628, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30759381, - "lat": 51.5516087, - "lon": -0.3504528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "UB5 131" - } -}, -{ - "type": "node", - "id": 30759383, - "lat": 51.5548540, - "lon": -0.3370162, - "tags": { - "amenity": "post_box", - "ref": "UB6 36" - } -}, -{ - "type": "node", - "id": 30770926, - "lat": 53.7585696, - "lon": -2.6972383, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PR1", - "ref": "PR1 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30770931, - "lat": 53.7596733, - "lon": -2.6938668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PR1 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30773819, - "lat": 51.9019415, - "lon": -1.1775724, - "tags": { - "amenity": "post_box", - "ref": "OX26 944" - } -}, -{ - "type": "node", - "id": 30784115, - "lat": 51.5564499, - "lon": -0.3300528, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30784137, - "lat": 51.5549819, - "lon": -0.3251487, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30793149, - "lat": 51.5615801, - "lon": -0.1243482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30794684, - "lat": 51.5721006, - "lon": 0.1908555, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30804510, - "lat": 51.3615290, - "lon": 1.1310000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-2#" - } -}, -{ - "type": "node", - "id": 30808792, - "lat": 52.0738470, - "lon": -3.1177843, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR3 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30808793, - "lat": 52.0779580, - "lon": -3.1241380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "HR3 635" - } -}, -{ - "type": "node", - "id": 30808803, - "lat": 52.0684099, - "lon": -3.1145420, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 30808826, - "lat": 52.0720327, - "lon": -3.1306785, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 30808836, - "lat": 52.0700762, - "lon": -3.1325668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "455194649921276", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR3 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 30809796, - "lat": 51.6121930, - "lon": -2.5229105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 360D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2017-03-23" - } -}, -{ - "type": "node", - "id": 30819771, - "lat": 55.9118103, - "lon": -3.1426892, - "tags": { - "amenity": "post_box", - "ref": "EH17 441" - } -}, -{ - "type": "node", - "id": 30820327, - "lat": 53.8413244, - "lon": -1.4386331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30823598, - "lat": 51.8236562, - "lon": -1.2383923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX5 682", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 30823614, - "lat": 51.8216605, - "lon": -1.2404178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX5 172D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 30841233, - "lat": 52.6723157, - "lon": -1.0944522, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30841340, - "lat": 52.6980871, - "lon": -1.1724885, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30864482, - "lat": 51.7742078, - "lon": -0.4372655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 30880146, - "lat": 51.5546279, - "lon": -0.3462429, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 30894242, - "lat": 53.7151450, - "lon": -2.0883966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "OL14 128D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 30898423, - "lat": 52.4606371, - "lon": 0.1735580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45, Sa 10:00", - "ref": "PE15 55" - } -}, -{ - "type": "node", - "id": 30948591, - "lat": 51.3387725, - "lon": -2.6815965, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30948668, - "lat": 51.3601460, - "lon": -2.6630008, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 30952173, - "lat": 51.4665378, - "lon": -0.2480714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 30977309, - "lat": 51.4951538, - "lon": -2.4784406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "BS16 693D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30977554, - "lat": 51.4811023, - "lon": -2.4926519, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 444", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30977578, - "lat": 51.4808845, - "lon": -2.4967063, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS16 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30977580, - "lat": 51.4810572, - "lon": -2.5034988, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30983639, - "lat": 51.4777070, - "lon": -2.5174133, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30983641, - "lat": 51.4730650, - "lon": -2.5195076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30983645, - "lat": 51.4592315, - "lon": -2.5355578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS5 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30983994, - "lat": 51.4595695, - "lon": -2.5529225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS5 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30984058, - "lat": 51.4588182, - "lon": -2.5566198, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30984478, - "lat": 51.4579030, - "lon": -2.5655594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS5 190", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 30989697, - "lat": 51.4637997, - "lon": -2.5415295, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30989709, - "lat": 51.4618671, - "lon": -2.5239398, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30989718, - "lat": 51.4648172, - "lon": -2.5140936, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30989741, - "lat": 51.4666239, - "lon": -2.5178123, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 30989742, - "lat": 51.4783390, - "lon": -2.5113597, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS16", - "ref": "BS16 598", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 30989997, - "lat": 52.4494911, - "lon": 0.2987539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 30990731, - "lat": 51.5336479, - "lon": -2.4756750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS36 1052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30990750, - "lat": 51.5430081, - "lon": -2.4406803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 30999134, - "lat": 51.3161685, - "lon": 0.9357270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31000016, - "lat": 51.3439634, - "lon": 1.0009143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 109", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31000512, - "lat": 51.3481522, - "lon": 1.0058157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31003338, - "lat": 51.3548500, - "lon": 1.1433940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31057949, - "lat": 51.4538121, - "lon": -0.3076114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31070067, - "lat": 51.9028712, - "lon": -1.1661926, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX26 889D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 31084958, - "lat": 51.9414379, - "lon": -1.0725851, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 31098615, - "lat": 51.5788535, - "lon": 0.1887964, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 31098618, - "lat": 51.5822510, - "lon": 0.1885351, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 31098619, - "lat": 51.5792716, - "lon": 0.1955219, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 31098625, - "lat": 51.5856059, - "lon": 0.1952298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 31114203, - "lat": 57.4491100, - "lon": -2.7804462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB54 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 31161093, - "lat": 57.4462624, - "lon": -2.7807723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB54 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 31171963, - "lat": 51.3750764, - "lon": -2.7579061, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 31210215, - "lat": 51.3692139, - "lon": 1.1217188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31247039, - "lat": 51.5601787, - "lon": -0.3589891, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 31247040, - "lat": 51.5623298, - "lon": -0.3561898, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-26" - } -}, -{ - "type": "node", - "id": 31247068, - "lat": 51.5692723, - "lon": -0.3466999, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-26" - } -}, -{ - "type": "node", - "id": 31247086, - "lat": 51.5652371, - "lon": -0.3378427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "postal_code": "HA1", - "ref": "HA1 11" - } -}, -{ - "type": "node", - "id": 31247087, - "lat": 51.5587426, - "lon": -0.3406958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA2", - "ref": "HA2 348" - } -}, -{ - "type": "node", - "id": 31271450, - "lat": 51.8964206, - "lon": -1.1546215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX26 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31276600, - "lat": 55.9867419, - "lon": -3.3823680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "EH30 47", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31282157, - "lat": 51.5799384, - "lon": -0.3305995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 13:15", - "ref": "HA1 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31282173, - "lat": 51.5779235, - "lon": -0.3341705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA1 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31282174, - "lat": 51.5743513, - "lon": -0.3345889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "wall", - "postal_code": "HA1", - "ref": "HA1 134" - } -}, -{ - "type": "node", - "id": 31282175, - "lat": 51.5576428, - "lon": -0.3474615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB5 112" - } -}, -{ - "type": "node", - "id": 31282211, - "lat": 51.5771629, - "lon": -0.3430593, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31282212, - "lat": 51.5782142, - "lon": -0.3377954, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "HA1", - "ref": "HA1 8", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 31296008, - "lat": 51.2267886, - "lon": -0.5796018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "ref": "GU2 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 31296009, - "lat": 51.2313767, - "lon": -0.5789330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU2 3", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU2 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 31304391, - "lat": 51.5871618, - "lon": 0.2069454, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 31327606, - "lat": 55.8385517, - "lon": -4.3346720, - "tags": { - "amenity": "post_box", - "postal_code": "G52", - "ref": "G52 795" - } -}, -{ - "type": "node", - "id": 31327619, - "lat": 55.8371324, - "lon": -4.3262302, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G52 1046", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 31345929, - "lat": 51.6305305, - "lon": -2.3457367, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL12 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31354225, - "lat": 52.0936435, - "lon": -1.0233396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 582D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31354904, - "lat": 51.3457680, - "lon": 1.1366830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 251", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 31365529, - "lat": 51.5722866, - "lon": -0.3406389, - "tags": { - "addr:street": "Victoria Terrace", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "HA1", - "ref": "HA1 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 31385394, - "lat": 51.9077374, - "lon": -1.1545764, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX26 336D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 31392457, - "lat": 54.2412214, - "lon": -2.7116592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA7 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31398963, - "lat": 51.2263000, - "lon": 1.2080921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31399393, - "lat": 51.2108365, - "lon": 1.1879403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31399603, - "lat": 51.2040597, - "lon": 1.1657904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 290", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31399781, - "lat": 51.2073311, - "lon": 1.1609282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31399807, - "lat": 51.2043817, - "lon": 1.1573262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31400371, - "lat": 51.2294454, - "lon": 1.1359830, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 201", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31401762, - "lat": 51.4680183, - "lon": -0.0728220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31401951, - "lat": 51.4635183, - "lon": -0.0756256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31402052, - "lat": 51.4654225, - "lon": -0.0793248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31414745, - "lat": 51.4591592, - "lon": -0.0711791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Unusual VR door on \"anonymous\" body", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31414778, - "lat": 51.4608922, - "lon": -0.0757920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31416239, - "lat": 51.9579411, - "lon": -1.2336230, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 31425567, - "lat": 51.9982769, - "lon": -1.2084790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NN13", - "ref": "NN13 107" - } -}, -{ - "type": "node", - "id": 31425931, - "lat": 51.9767527, - "lon": -1.1398653, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NN13", - "ref": "NN13 85", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 31425951, - "lat": 51.9602925, - "lon": -1.1381551, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "OX27", - "ref": "OX27 638", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 31436141, - "lat": 51.2994569, - "lon": -0.1668998, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CR5 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31436223, - "lat": 51.3134464, - "lon": -0.1696982, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 258D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31436767, - "lat": 51.3242724, - "lon": -0.1706310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 225", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31436848, - "lat": 51.3185918, - "lon": -0.1707245, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31436850, - "lat": 51.3178226, - "lon": -0.1686900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 236D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31437627, - "lat": 51.5652128, - "lon": -0.3429732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA1", - "ref": "HA1 25D" - } -}, -{ - "type": "node", - "id": 31437777, - "lat": 51.2849015, - "lon": -0.1720640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR5 251", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31451487, - "lat": 53.6935824, - "lon": -1.3251939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 13" - } -}, -{ - "type": "node", - "id": 31451493, - "lat": 53.6915387, - "lon": -1.3779406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 90" - } -}, -{ - "type": "node", - "id": 31469354, - "lat": 51.4608687, - "lon": -0.0798182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31472615, - "lat": 51.5504565, - "lon": -0.3310251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "UB6", - "ref": "UB6 110" - } -}, -{ - "type": "node", - "id": 31472678, - "lat": 51.5492256, - "lon": -0.3163366, - "tags": { - "amenity": "post_box", - "postal_code": "UB6", - "ref": "UB6 79" - } -}, -{ - "type": "node", - "id": 31472692, - "lat": 51.5497381, - "lon": -0.3207486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "UB6", - "ref": "UB6 102" - } -}, -{ - "type": "node", - "id": 31472768, - "lat": 51.5532253, - "lon": -0.3203672, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA0" - } -}, -{ - "type": "node", - "id": 31472862, - "lat": 51.5573052, - "lon": -0.3215842, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "HA0" - } -}, -{ - "type": "node", - "id": 31472911, - "lat": 51.5607081, - "lon": -0.3224580, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA0" - } -}, -{ - "type": "node", - "id": 31475734, - "lat": 51.5595410, - "lon": -0.3281388, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA0" - } -}, -{ - "type": "node", - "id": 31516901, - "lat": 50.8252421, - "lon": -4.5418700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31528322, - "lat": 53.7132906, - "lon": -2.6092162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "mapillary": "817214882257189", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR6 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31528417, - "lat": 53.7312253, - "lon": -2.6034905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR5 163", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31532550, - "lat": 51.3839366, - "lon": -2.3426897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BA2 172D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 31532552, - "lat": 51.3810271, - "lon": -2.3452486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA2 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31552164, - "lat": 51.5637024, - "lon": -0.3224732, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA1" - } -}, -{ - "type": "node", - "id": 31552263, - "lat": 51.5643203, - "lon": -0.3258354, - "tags": { - "amenity": "post_box", - "postal_code": "HA1" - } -}, -{ - "type": "node", - "id": 31552266, - "lat": 51.5668686, - "lon": -0.3283018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "postal_code": "HA1", - "ref": "HA1 203" - } -}, -{ - "type": "node", - "id": 31560706, - "lat": 54.3811250, - "lon": -2.9108194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-05-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA23 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31567510, - "lat": 54.4735552, - "lon": -3.0260317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:type": "wall", - "ref": "LA22 163", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 31568101, - "lat": 51.3657870, - "lon": 1.1286430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31569707, - "lat": 51.3626130, - "lon": 1.1212060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31626983, - "lat": 54.3770430, - "lon": -2.9065810, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "LA23", - "ref": "LA23 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31626992, - "lat": 54.3783703, - "lon": -2.9055642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA23 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31632847, - "lat": 51.4055737, - "lon": -2.3064315, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 31632925, - "lat": 51.4098361, - "lon": -2.3069461, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 31632980, - "lat": 51.4036607, - "lon": -2.3117485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1044969989768235", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA1 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 31632986, - "lat": 51.4086734, - "lon": -2.3160429, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31717450, - "lat": 50.8444111, - "lon": -1.1405497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO16 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31734782, - "lat": 51.6388598, - "lon": -2.4298752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GL12", - "ref": "GL12 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 31926606, - "lat": 52.0232291, - "lon": -1.2669529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "ref": "OX17 1040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31932532, - "lat": 52.1055676, - "lon": -1.3000842, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 31937041, - "lat": 51.3497650, - "lon": -0.2093627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31937094, - "lat": 51.3473434, - "lon": -0.2097798, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM2 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31937186, - "lat": 51.3475331, - "lon": -0.2144453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 31937480, - "lat": 51.3538280, - "lon": -0.2154369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31937497, - "lat": 51.3545826, - "lon": -0.2159790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SM2 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 31955771, - "lat": 52.0674570, - "lon": -1.3204638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "Survey for ref", - "ref": "OX16 1201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 31959467, - "lat": 51.9511395, - "lon": -1.1763651, - "tags": { - "amenity": "post_box", - "fixme": "check ref value is correct", - "post_box:type": "wall", - "ref": "OX27 322", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 32012235, - "lat": 54.3680319, - "lon": -2.9148489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2021-12-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LA23", - "ref": "LA23 205D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 32012292, - "lat": 54.3740321, - "lon": -2.8981799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-06-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "LA23", - "ref": "LA23 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32012294, - "lat": 54.3674787, - "lon": -2.9092358, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "LA23", - "ref": "LA23 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32012296, - "lat": 54.3690715, - "lon": -2.9032987, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA23 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32013468, - "lat": 51.1181891, - "lon": -0.1615382, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RH10", - "ref": "RH10 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 32021977, - "lat": 51.0194491, - "lon": 0.2531963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TN20", - "ref": "TN20 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32022160, - "lat": 51.0328724, - "lon": 0.2850830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN20 171" - } -}, -{ - "type": "node", - "id": 32022231, - "lat": 51.0423054, - "lon": 0.2977856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN5", - "ref": "TN5 226" - } -}, -{ - "type": "node", - "id": 32022966, - "lat": 51.0591832, - "lon": 0.3082314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TN5", - "ref": "TN5 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32023162, - "lat": 51.0510638, - "lon": 0.3085267, - "tags": { - "amenity": "post_box", - "postal_code": "TN5", - "ref": "TN5 140" - } -}, -{ - "type": "node", - "id": 32023715, - "lat": 51.0668910, - "lon": 0.3120358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN5", - "ref": "TN5 203", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 32025464, - "lat": 51.0686751, - "lon": 0.3346149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN5", - "ref": "TN5 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 32025687, - "lat": 51.0724319, - "lon": 0.3355041, - "tags": { - "amenity": "post_box", - "postal_code": "TN5", - "ref": "TN5 159" - } -}, -{ - "type": "node", - "id": 32027742, - "lat": 51.0774612, - "lon": 0.3392981, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN5", - "ref": "TN5 163" - } -}, -{ - "type": "node", - "id": 32028978, - "lat": 51.0733774, - "lon": 0.3132820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TN5", - "ref": "TN5 144", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 32029975, - "lat": 51.1916461, - "lon": 0.2699536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "fixme": "Confirm references by survey: TN9 25 in Barden Road, this should be TN9 26", - "note": "On station platform.", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN9 26" - } -}, -{ - "type": "node", - "id": 32237718, - "lat": 51.4276001, - "lon": -0.1225299, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 32260422, - "lat": 52.0958688, - "lon": -1.1733732, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 32269270, - "lat": 51.3761135, - "lon": -2.3048048, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 32270285, - "lat": 51.3899638, - "lon": -2.3575015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA1 67D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32270286, - "lat": 51.3881099, - "lon": -2.3599058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA1 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32351202, - "lat": 51.5428448, - "lon": -0.3713080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "UB5" - } -}, -{ - "type": "node", - "id": 32351912, - "lat": 51.5568737, - "lon": -0.3590484, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "UB5" - } -}, -{ - "type": "node", - "id": 32429166, - "lat": 52.4773879, - "lon": -1.8806418, - "tags": { - "amenity": "post_box", - "ref": "B9 480" - } -}, -{ - "type": "node", - "id": 32430139, - "lat": 52.4758687, - "lon": -1.8885138, - "tags": { - "amenity": "post_box", - "ref": "B5 8" - } -}, -{ - "type": "node", - "id": 32444050, - "lat": 51.2328196, - "lon": 1.0250465, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 196", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32448436, - "lat": 57.3787619, - "lon": -2.7969032, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 32453395, - "lat": 51.5455917, - "lon": -0.3692246, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "UB5" - } -}, -{ - "type": "node", - "id": 32460059, - "lat": 55.9506326, - "lon": -3.2083291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH2 203", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32534176, - "lat": 52.2085421, - "lon": 0.0078299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "the box says CB3 but area is now CB23", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32534214, - "lat": 52.2164703, - "lon": 0.0226845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "box says CB3 but should be CB23", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32534254, - "lat": 52.2190284, - "lon": -0.0189378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CB23 291", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32546352, - "lat": 51.5198256, - "lon": -0.3549690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 20" - } -}, -{ - "type": "node", - "id": 32547675, - "lat": 51.4212385, - "lon": -0.1226494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 32589069, - "lat": 51.2721381, - "lon": -0.7213253, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-26", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "ref": "GU12 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32597268, - "lat": 52.7554581, - "lon": -1.2355552, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32597269, - "lat": 52.7543354, - "lon": -1.2434478, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 32597270, - "lat": 52.7517474, - "lon": -1.2434946, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 32597271, - "lat": 52.7599085, - "lon": -1.2367344, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 32597272, - "lat": 52.7603864, - "lon": -1.2208649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 102D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 32602012, - "lat": 51.2023512, - "lon": -0.1643531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-0188;survey" - } -}, -{ - "type": "node", - "id": 32602016, - "lat": 51.2043339, - "lon": -0.1671035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Photo P142-0179;survey" - } -}, -{ - "type": "node", - "id": 32602018, - "lat": 51.2083045, - "lon": -0.1661424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "ref": "RH1 3090" - } -}, -{ - "type": "node", - "id": 32620633, - "lat": 53.9235306, - "lon": -1.6967279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 544" - } -}, -{ - "type": "node", - "id": 32635919, - "lat": 51.3451253, - "lon": 1.0102309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32638648, - "lat": 51.3427710, - "lon": 1.0125112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32639639, - "lat": 51.3441835, - "lon": 1.0192255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32640957, - "lat": 51.3450808, - "lon": 1.0164118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32640991, - "lat": 51.3471236, - "lon": 1.0152903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 371", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32654216, - "lat": 51.5270033, - "lon": -0.3020272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 74" - } -}, -{ - "type": "node", - "id": 32654217, - "lat": 51.5251322, - "lon": -0.3001285, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 80" - } -}, -{ - "type": "node", - "id": 32669179, - "lat": 55.8726000, - "lon": -4.2827172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "mapillary": "655139972545496", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G12 248", - "royal_cypher": "scottish_crown", - "survey:date": "2020-11-07" - } -}, -{ - "type": "node", - "id": 32709915, - "lat": 57.3287446, - "lon": -3.0167303, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 32856844, - "lat": 51.2897774, - "lon": 0.5882234, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 32857506, - "lat": 51.2747403, - "lon": 0.5795248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "wall", - "postal_code": "ME14", - "ref": "ME14 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32858545, - "lat": 51.2703243, - "lon": 0.5700710, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME14", - "ref": "ME14 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 32941675, - "lat": 53.4016812, - "lon": -2.9249299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L15 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 32965848, - "lat": 53.1115498, - "lon": -3.0418962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 33018108, - "lat": 51.2394124, - "lon": -0.1622986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 268", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 33042038, - "lat": 51.7949714, - "lon": 0.0044503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Easneye", - "post_box:mounting": "little_house", - "post_box:type": "wall", - "ref": "SG12 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 33053470, - "lat": 52.5439160, - "lon": -1.8499126, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 179" - } -}, -{ - "type": "node", - "id": 33053631, - "lat": 51.8970579, - "lon": -1.1597727, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-27", - "ref": "OX26 696" - } -}, -{ - "type": "node", - "id": 33054285, - "lat": 52.5385816, - "lon": -1.8455911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "wall", - "postal_code": "B23", - "ref": "B23 4187", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 33061775, - "lat": 52.5301704, - "lon": -1.8501998, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B24 856" - } -}, -{ - "type": "node", - "id": 33061779, - "lat": 52.5336859, - "lon": -1.8479521, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 482" - } -}, -{ - "type": "node", - "id": 33072812, - "lat": 53.9284825, - "lon": -1.8145040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 820", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 33108677, - "lat": 51.2761229, - "lon": 0.5369932, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ME14", - "ref": "ME14 309", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 33108746, - "lat": 51.2751543, - "lon": 0.5305046, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 42" - } -}, -{ - "type": "node", - "id": 33108771, - "lat": 51.2787763, - "lon": 0.5204942, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ME14", - "ref": "ME14 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33108851, - "lat": 51.2873914, - "lon": 0.5171408, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ME14", - "ref": "ME14 225", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 33108914, - "lat": 51.2998599, - "lon": 0.5191535, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 89" - } -}, -{ - "type": "node", - "id": 33108922, - "lat": 51.3050183, - "lon": 0.5140485, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "ME14", - "ref": "ME14 241", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 33113025, - "lat": 51.3331020, - "lon": 0.5053646, - "tags": { - "addr:postcode": "ME5 9QP", - "amenity": "post_box", - "drive_through": "no", - "name": "BLUE BELL HILL", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 183" - } -}, -{ - "type": "node", - "id": 33115814, - "lat": 53.7201354, - "lon": -2.5925545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "mapillary": "333020261534975", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33115856, - "lat": 53.7372648, - "lon": -2.5522484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 33115894, - "lat": 53.7630545, - "lon": -2.4848062, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33115902, - "lat": 53.7281316, - "lon": -2.5313647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33116650, - "lat": 51.3606503, - "lon": 0.4988239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ME1", - "ref": "ME1 330D" - } -}, -{ - "type": "node", - "id": 33118085, - "lat": 51.3699683, - "lon": 0.4941084, - "tags": { - "amenity": "post_box", - "ref": "ME2 353" - } -}, -{ - "type": "node", - "id": 33118086, - "lat": 51.3728868, - "lon": 0.4897486, - "tags": { - "amenity": "post_box", - "ref": "ME1 252" - } -}, -{ - "type": "node", - "id": 33118149, - "lat": 51.3764696, - "lon": 0.4886922, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME1 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33122584, - "lat": 51.3290759, - "lon": -1.0679656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1241129069661853", - "note": "I used this postbox on Friday 23rd July 2021 and I have added details.", - "old_ref": "RG26 64", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-07-05" - } -}, -{ - "type": "node", - "id": 33125423, - "lat": 51.3247462, - "lon": -1.0446971, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 341" - } -}, -{ - "type": "node", - "id": 33125778, - "lat": 53.3713023, - "lon": -2.9019225, - "tags": { - "amenity": "post_box", - "ref": "L18 287" - } -}, -{ - "type": "node", - "id": 33125781, - "lat": 53.3692992, - "lon": -2.8984044, - "tags": { - "amenity": "post_box", - "ref": "L18 932" - } -}, -{ - "type": "node", - "id": 33125783, - "lat": 53.3658518, - "lon": -2.8989764, - "tags": { - "amenity": "post_box", - "ref": "L18 163" - } -}, -{ - "type": "node", - "id": 33126856, - "lat": 51.3961677, - "lon": 0.5001297, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME2 121", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2022-12-28" - } -}, -{ - "type": "node", - "id": 33128174, - "lat": 51.4065280, - "lon": 0.5247306, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME3", - "ref": "ME2 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33129763, - "lat": 52.1486502, - "lon": 0.1045415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33129769, - "lat": 52.1420849, - "lon": 0.0913208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33129825, - "lat": 52.1500268, - "lon": 0.0563273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB23 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33129849, - "lat": 52.1772609, - "lon": 0.0597994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33129861, - "lat": 52.1810638, - "lon": 0.0670142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB3 229D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 33130424, - "lat": 51.4288433, - "lon": 0.4653230, - "tags": { - "amenity": "post_box", - "mapillary": "271025858061150", - "note": "Post box ref from survey and npemap.org.uk. The label on the box simply says \"post box 212\". I've taken the ME3 from the postcode of Higham station which somebody has submitted to npemap.org.uk.", - "post_box:type": "pillar", - "postal_code": "ME3", - "ref": "ME3 212", - "source": "survey / npemap.org.uk", - "survey:date": "2020-08-04" - } -}, -{ - "type": "node", - "id": 33132139, - "lat": 51.5773847, - "lon": -0.7580210, - "tags": { - "amenity": "post_box", - "ref": "SL7 217" - } -}, -{ - "type": "node", - "id": 33133548, - "lat": 51.5786964, - "lon": -0.7643534, - "tags": { - "amenity": "post_box", - "ref": "SL7 125" - } -}, -{ - "type": "node", - "id": 33135520, - "lat": 51.4518658, - "lon": 0.5110899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME3", - "ref": "ME3 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33135522, - "lat": 51.4438291, - "lon": 0.5106759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "ME3", - "ref": "ME3 187" - } -}, -{ - "type": "node", - "id": 33136028, - "lat": 51.4367976, - "lon": 0.5059430, - "tags": { - "amenity": "post_box", - "note": "corrected ref was shown as ME3 233 (16/09/10)", - "postal_code": "ME3", - "ref": "ME3 223", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33136596, - "lat": 51.4336776, - "lon": 0.5008774, - "tags": { - "amenity": "post_box", - "postal_code": "ME3", - "ref": "ME3 404", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33136720, - "lat": 51.4618451, - "lon": 0.4982538, - "tags": { - "amenity": "post_box", - "postal_code": "ME3", - "ref": "ME3 207", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33137440, - "lat": 51.4556949, - "lon": 0.5276294, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ME3", - "ref": "ME3 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33138263, - "lat": 51.4514860, - "lon": 0.5649520, - "tags": { - "amenity": "post_box", - "postal_code": "ME3", - "ref": "ME3 342" - } -}, -{ - "type": "node", - "id": 33141827, - "lat": 51.5630251, - "lon": -2.5491558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "307666087524477", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS32 473", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2020-09-10" - } -}, -{ - "type": "node", - "id": 33141860, - "lat": 51.5749633, - "lon": -2.5431447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS35 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-21" - } -}, -{ - "type": "node", - "id": 33167979, - "lat": 55.8536776, - "lon": -4.3701367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1161503048541822", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2024-05-20" - } -}, -{ - "type": "node", - "id": 33167980, - "lat": 55.8554924, - "lon": -4.3726640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "424780843674339", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G52", - "ref": "G52 1264", - "survey:date": "2024-05-20" - } -}, -{ - "type": "node", - "id": 33168865, - "lat": 51.3508465, - "lon": -0.2144535, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM2 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33169819, - "lat": 51.3443194, - "lon": -0.2056967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33172953, - "lat": 51.3400624, - "lon": -0.2041840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 76", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33173310, - "lat": 51.3436556, - "lon": -0.2114712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33174439, - "lat": 53.3511859, - "lon": -2.8651654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "L24 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 33179738, - "lat": 55.9180441, - "lon": -3.2161840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "351802986367246", - "note": "Collections times updated 2018-05-22. George V era box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 304D", - "royal_cypher": "GR", - "source": "Bing;survey", - "survey:date": "2020-04-21" - } -}, -{ - "type": "node", - "id": 33179883, - "lat": 55.9469750, - "lon": -3.2823851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH12 367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33187082, - "lat": 51.4470055, - "lon": 0.5652334, - "tags": { - "amenity": "post_box", - "postal_code": "ME3", - "ref": "ME3 357" - } -}, -{ - "type": "node", - "id": 33187084, - "lat": 51.4487991, - "lon": 0.5615756, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "ME3", - "ref": "ME3 141", - "survey:date": "2021-12-01", - "wikimedia_commons": "File:House on The Street - geograph.org.uk - 2805626.jpg" - } -}, -{ - "type": "node", - "id": 33187086, - "lat": 51.4436571, - "lon": 0.5799331, - "tags": { - "amenity": "post_box", - "note": "It was hard to read the post box reference, so I may have misread it.", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME3", - "ref": "ME3 186" - } -}, -{ - "type": "node", - "id": 33187634, - "lat": 51.4182739, - "lon": 0.5271556, - "tags": { - "amenity": "post_box", - "mapillary": "326748175481679", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME3", - "ref": "ME3 299", - "survey:date": "2020-08-04" - } -}, -{ - "type": "node", - "id": 33187635, - "lat": 51.4191415, - "lon": 0.5330510, - "tags": { - "amenity": "post_box", - "mapillary": "344350107021771", - "post_box:type": "pillar", - "postal_code": "ME3", - "ref": "ME3 103", - "survey:date": "2020-06-13" - } -}, -{ - "type": "node", - "id": 33189796, - "lat": 51.7670956, - "lon": -0.0027182, - "tags": { - "amenity": "post_box", - "ref": "EN11 118" - } -}, -{ - "type": "node", - "id": 33210657, - "lat": 55.9725068, - "lon": -3.2186854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "information plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 305" - } -}, -{ - "type": "node", - "id": 33210658, - "lat": 55.9714321, - "lon": -3.2145097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1472276463488047", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 237", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 33210659, - "lat": 55.9750450, - "lon": -3.2156144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1068296251538451", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 359", - "source": "Bing;survey", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 33214117, - "lat": 52.5424970, - "lon": -1.8597390, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 1384" - } -}, -{ - "type": "node", - "id": 33214827, - "lat": 51.7877807, - "lon": 0.0016462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SG12 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33215438, - "lat": 52.5347014, - "lon": -1.8520169, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B23", - "ref": "B23 308", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 33226439, - "lat": 55.9827456, - "lon": -3.3857616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH30 272", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 33230161, - "lat": 55.8517000, - "lon": -4.3750716, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 33236859, - "lat": 54.0638296, - "lon": -1.9616343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "fixme": "According to https://en.wikipedia.org/wiki/Hebden,_North_Yorkshire there is now a lamp box nearby and the wall box has been removed.", - "post_box:type": "wall", - "ref": "BD23 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33236898, - "lat": 53.9816607, - "lon": -1.8929931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD23 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33241012, - "lat": 53.9186016, - "lon": -1.8332378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS29 809", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 33241020, - "lat": 53.9244559, - "lon": -1.7976191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 828" - } -}, -{ - "type": "node", - "id": 33241747, - "lat": 54.0523884, - "lon": -1.9817542, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33241749, - "lat": 54.0371190, - "lon": -2.0343793, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 33243622, - "lat": 54.0607323, - "lon": -2.0059821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33243653, - "lat": 54.0709185, - "lon": -2.0097979, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 33243672, - "lat": 54.0681199, - "lon": -2.0172630, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 33244648, - "lat": 54.0690808, - "lon": -1.9955866, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33244656, - "lat": 54.0703928, - "lon": -1.9968586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33244663, - "lat": 54.0719729, - "lon": -1.9979108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33257348, - "lat": 55.9805715, - "lon": -3.2239822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH5 101", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 33257697, - "lat": 55.9720653, - "lon": -3.2024000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "170157171776909", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 287", - "source": "Bing;survey", - "survey:date": "2020-05-05" - } -}, -{ - "type": "node", - "id": 33257925, - "lat": 51.3961650, - "lon": -1.7007879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1107081949815198", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SN8 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-15" - } -}, -{ - "type": "node", - "id": 33294625, - "lat": 55.8498202, - "lon": -4.3646732, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 33294626, - "lat": 55.8521386, - "lon": -4.3654853, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 33368848, - "lat": 53.3950898, - "lon": -2.9156061, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "L15 129" - } -}, -{ - "type": "node", - "id": 33368906, - "lat": 53.3920539, - "lon": -2.9147789, - "tags": { - "amenity": "post_box", - "ref": "L15 728" - } -}, -{ - "type": "node", - "id": 33379703, - "lat": 55.8480380, - "lon": -4.3698762, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4a" - } -}, -{ - "type": "node", - "id": 33379852, - "lat": 55.8469953, - "lon": -4.3636846, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33392630, - "lat": 54.1063910, - "lon": -2.0402773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33393131, - "lat": 54.1030950, - "lon": -2.0304736, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 33398064, - "lat": 53.3397363, - "lon": -2.8523792, - "tags": { - "amenity": "post_box", - "ref": "L24 639" - } -}, -{ - "type": "node", - "id": 33398132, - "lat": 53.3447443, - "lon": -2.8508052, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L24 595", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 33409678, - "lat": 52.1025465, - "lon": 0.0342680, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 33409679, - "lat": 52.1106675, - "lon": 0.0327217, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 33409690, - "lat": 52.1260726, - "lon": 0.0272523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB22 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33409722, - "lat": 52.1130904, - "lon": 0.0665363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33409735, - "lat": 52.0996322, - "lon": 0.0974854, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 33409756, - "lat": 52.0936123, - "lon": 0.0760857, - "tags": { - "amenity": "post_box", - "fixme": "Collection times?", - "ref": "SG8 733", - "source:ref": "survey (October 2010)" - } -}, -{ - "type": "node", - "id": 33409770, - "lat": 52.0877044, - "lon": 0.0745226, - "tags": { - "amenity": "post_box", - "fixme": "Get reference and collection times from white panel on post box" - } -}, -{ - "type": "node", - "id": 33425928, - "lat": 51.1668198, - "lon": -1.4436816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SP11 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33427504, - "lat": 51.3250003, - "lon": -1.5509535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 132" - } -}, -{ - "type": "node", - "id": 33428046, - "lat": 51.3442744, - "lon": -1.6482542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "772832477579911", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN8 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-18" - } -}, -{ - "type": "node", - "id": 33428775, - "lat": 50.9977557, - "lon": -1.3216482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "19-12-2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33433205, - "lat": 51.4294118, - "lon": -1.9967334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN11", - "ref": "SN11 326D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 33433209, - "lat": 51.4333494, - "lon": -2.0007183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 106D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 33494442, - "lat": 51.7884690, - "lon": -0.0044120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG12 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33516007, - "lat": 51.9367950, - "lon": -0.9784265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 33519483, - "lat": 51.9258049, - "lon": -0.9532183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 33519518, - "lat": 51.9336619, - "lon": -0.9376787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "MK18 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 33527309, - "lat": 55.9599202, - "lon": -3.2058111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH3 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33527310, - "lat": 55.9625886, - "lon": -3.2112449, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH3 199", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 33527311, - "lat": 55.9611663, - "lon": -3.2085096, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH3 69", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 33527533, - "lat": 51.9947487, - "lon": -0.7656134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33528940, - "lat": 51.9415683, - "lon": -0.8817811, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "MK18 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 33528959, - "lat": 51.8974255, - "lon": -1.0146244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-10" - } -}, -{ - "type": "node", - "id": 33540641, - "lat": 51.4448116, - "lon": -0.1173881, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 33579193, - "lat": 55.9692647, - "lon": -3.2701308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 467D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 33584869, - "lat": 50.7900163, - "lon": 0.0177724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 648D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33584892, - "lat": 50.7879127, - "lon": 0.0191641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 646", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 33585236, - "lat": 50.7872160, - "lon": 0.0372890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN9 618D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33588373, - "lat": 50.7754316, - "lon": 0.1521531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1084", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33589189, - "lat": 50.7953225, - "lon": 0.1598944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "BN26", - "ref": "BN26 1024", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33590264, - "lat": 50.8028938, - "lon": 0.1629363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BN26", - "ref": "BN26 1025" - } -}, -{ - "type": "node", - "id": 33612319, - "lat": 51.3676072, - "lon": -0.1352815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 178D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33612326, - "lat": 51.3678748, - "lon": -0.1379097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 162D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33612327, - "lat": 51.3689043, - "lon": -0.1400647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 181D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33622121, - "lat": 50.8456913, - "lon": 0.1923258, - "tags": { - "amenity": "post_box", - "postal_code": "BN26", - "ref": "BN26 1028" - } -}, -{ - "type": "node", - "id": 33622124, - "lat": 50.8426859, - "lon": 0.2054341, - "tags": { - "amenity": "post_box", - "postal_code": "BN26", - "ref": "BN26 1027" - } -}, -{ - "type": "node", - "id": 33626607, - "lat": 50.8205415, - "lon": 0.3382499, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "BN24", - "ref": "BN24 980", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33629399, - "lat": 50.8176770, - "lon": 0.3278799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "BN24", - "ref": "BN24 978" - } -}, -{ - "type": "node", - "id": 33633389, - "lat": 51.3693929, - "lon": -0.1457070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33654827, - "lat": 55.9776042, - "lon": -3.1973712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "743163489697174", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 172", - "survey:date": "2020-05-13" - } -}, -{ - "type": "node", - "id": 33654857, - "lat": 55.9745096, - "lon": -3.2095961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "932117984214541", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 163", - "survey:date": "2020-05-20" - } -}, -{ - "type": "node", - "id": 33660942, - "lat": 51.4086962, - "lon": -2.3443821, - "tags": { - "amenity": "post_box", - "mapillary": "532625868480055", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 33663626, - "lat": 53.2587360, - "lon": -2.8982388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "fixme": "I believe this post box is no longer here - needs an on-the-ground survey please", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH65 235" - } -}, -{ - "type": "node", - "id": 33663627, - "lat": 53.2567033, - "lon": -2.9084099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH1 379 in a layby on the A5117 at Strawberry Cross, Backford.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Strawberry Cross" - } -}, -{ - "type": "node", - "id": 33665748, - "lat": 51.3669400, - "lon": -0.1320599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 428", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33665766, - "lat": 51.3654387, - "lon": -0.1415979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33665770, - "lat": 51.3647658, - "lon": -0.1495329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33675188, - "lat": 53.2516050, - "lon": -1.4173959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33679734, - "lat": 53.3716668, - "lon": -3.1845567, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH48 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Salisbury Avenue, West Kirby" - } -}, -{ - "type": "node", - "id": 33690661, - "lat": 51.3966810, - "lon": -2.3588757, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33690662, - "lat": 51.3969499, - "lon": -2.3545939, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 33690664, - "lat": 51.3909550, - "lon": -2.3549648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BA1 1004", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33690665, - "lat": 51.3938478, - "lon": -2.3470602, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BA1 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33690973, - "lat": 51.3153213, - "lon": -0.6050258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33691007, - "lat": 51.3168121, - "lon": -0.6093549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU21 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33698082, - "lat": 52.7681855, - "lon": -1.2010870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33698083, - "lat": 52.7662203, - "lon": -1.2087466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 8D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 33701688, - "lat": 51.3949259, - "lon": -2.3604801, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 33706450, - "lat": 51.4089500, - "lon": -0.1565028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33706601, - "lat": 51.4130295, - "lon": -0.1565565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CR4", - "ref": "CR4 35" - } -}, -{ - "type": "node", - "id": 33706606, - "lat": 51.4181435, - "lon": -0.1496834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33706612, - "lat": 51.4168536, - "lon": -0.1520357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 33706618, - "lat": 51.4005157, - "lon": -0.1497364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 25" - } -}, -{ - "type": "node", - "id": 33706619, - "lat": 51.3992152, - "lon": -0.1457847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33706621, - "lat": 51.4020270, - "lon": -0.1405694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 10" - } -}, -{ - "type": "node", - "id": 33706623, - "lat": 51.4040442, - "lon": -0.1364345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33706628, - "lat": 51.4073204, - "lon": -0.1214829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW16 53" - } -}, -{ - "type": "node", - "id": 33706631, - "lat": 51.4098221, - "lon": -0.1225552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 19" - } -}, -{ - "type": "node", - "id": 33706635, - "lat": 51.4150444, - "lon": -0.1243490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33706636, - "lat": 51.4213795, - "lon": -0.1289153, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33706637, - "lat": 51.4196239, - "lon": -0.1469070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 33706638, - "lat": 51.4243862, - "lon": -0.1416673, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 30" - } -}, -{ - "type": "node", - "id": 33706641, - "lat": 51.4434311, - "lon": -0.1246589, - "tags": { - "amenity": "post_box", - "fixme": "post box appears to have been moved" - } -}, -{ - "type": "node", - "id": 33706644, - "lat": 51.4442435, - "lon": -0.1215202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33706645, - "lat": 51.4398458, - "lon": -0.1061123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33717215, - "lat": 51.3639423, - "lon": -0.1462951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33717231, - "lat": 51.3632635, - "lon": -0.1435366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33717876, - "lat": 51.3719197, - "lon": -0.1518915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33723092, - "lat": 51.4008395, - "lon": -2.3415457, - "tags": { - "amenity": "post_box", - "mapillary": "357359362866908", - "post_box:type": "pillar", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 33724347, - "lat": 52.0651679, - "lon": -0.3242424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 09:10", - "post_box:type": "lamp", - "ref": "SG18 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 33752240, - "lat": 51.5090521, - "lon": -0.7754305, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SL6 90D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 33757430, - "lat": 51.4027496, - "lon": -2.3374264, - "tags": { - "amenity": "post_box", - "ref": "BA1 269" - } -}, -{ - "type": "node", - "id": 33758123, - "lat": 51.3950078, - "lon": -2.3531315, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33758127, - "lat": 51.3922695, - "lon": -2.3589352, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 33758131, - "lat": 51.4031515, - "lon": -2.3266417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "757262608247409", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA1 229D", - "survey:date": "2020-01-23" - } -}, -{ - "type": "node", - "id": 33764382, - "lat": 51.5115584, - "lon": -0.7919334, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 33764934, - "lat": 51.5147825, - "lon": -0.7424741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 33764936, - "lat": 51.5155503, - "lon": -0.7603599, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 33809714, - "lat": 53.7314122, - "lon": -2.6562349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-19", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR5 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33834980, - "lat": 55.9332730, - "lon": -3.2167375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "182696760402722", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH10 38", - "survey:date": "2020-04-22" - } -}, -{ - "type": "node", - "id": 33838336, - "lat": 55.9593096, - "lon": -3.2186115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 164", - "royal_cypher": "scottish_crown", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 33844195, - "lat": 55.9347683, - "lon": -3.2219725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "EH11 152", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 33844242, - "lat": 55.9354684, - "lon": -3.2268893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH11 229", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 33846573, - "lat": 55.9618628, - "lon": -3.2638743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH4 326D" - } -}, -{ - "type": "node", - "id": 33869545, - "lat": 51.3600390, - "lon": -0.1557018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33869594, - "lat": 51.3623109, - "lon": -0.1531227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33869620, - "lat": 51.3642426, - "lon": -0.1542988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 65", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33869688, - "lat": 51.3629651, - "lon": -0.1577186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM5 94" - } -}, -{ - "type": "node", - "id": 33869747, - "lat": 51.3623383, - "lon": -0.1642223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33869765, - "lat": 51.3634898, - "lon": -0.1604239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SM5 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 33989130, - "lat": 52.1507660, - "lon": -1.0169614, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 363", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 34016332, - "lat": 51.5210533, - "lon": -0.7373355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 34019300, - "lat": 51.5223066, - "lon": -0.7484770, - "tags": { - "amenity": "post_box", - "ref": "SL6 86", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 34030338, - "lat": 52.6092044, - "lon": -0.1892183, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 34032453, - "lat": 51.8722162, - "lon": -1.1864690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "last_checked": "2020-10-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX25 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34034186, - "lat": 51.8596363, - "lon": -1.2227677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-23", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX25 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34037760, - "lat": 51.8547241, - "lon": -1.2715237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX5 582", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2013-03-09" - } -}, -{ - "type": "node", - "id": 34038232, - "lat": 51.8254299, - "lon": -0.8375766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP19 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 34038306, - "lat": 51.8692034, - "lon": -1.2738432, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "OX5", - "ref": "OX5 712", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 34039314, - "lat": 51.8707427, - "lon": -1.3064542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX5", - "ref": "OX5 153", - "survey:date": "2022-12-08", - "wikimedia_commons": "File:Field Barn Farm - geograph.org.uk - 4105020.jpg" - } -}, -{ - "type": "node", - "id": 34039315, - "lat": 51.8802088, - "lon": -1.3076953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX5 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34040460, - "lat": 51.8842527, - "lon": -1.3024067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "645054776846587", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX5 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-20" - } -}, -{ - "type": "node", - "id": 34042198, - "lat": 51.8486320, - "lon": -1.3552719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Survey for ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 34042681, - "lat": 51.8523170, - "lon": -1.3609550, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 34042684, - "lat": 51.8492803, - "lon": -1.3476807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "mapillary": "1346198342421102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-10-02" - } -}, -{ - "type": "node", - "id": 34043291, - "lat": 51.8450114, - "lon": -1.3486377, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "OX20", - "ref": "OX20 757" - } -}, -{ - "type": "node", - "id": 34065572, - "lat": 52.6634605, - "lon": -2.6858275, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SY5 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34066105, - "lat": 52.6345115, - "lon": -2.6092081, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4b" - } -}, -{ - "type": "node", - "id": 34066615, - "lat": 52.6032262, - "lon": -2.6466898, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 34066710, - "lat": 52.6286225, - "lon": -2.7441776, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 34066841, - "lat": 52.6502127, - "lon": -2.7985814, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 34067076, - "lat": 52.6773876, - "lon": -2.6961851, - "tags": { - "amenity": "post_box", - "ref": "SY5 370" - } -}, -{ - "type": "node", - "id": 34067172, - "lat": 52.6486012, - "lon": -2.6865330, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 34067224, - "lat": 52.6575828, - "lon": -2.6976715, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34080975, - "lat": 52.5405850, - "lon": -0.3022369, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 34090418, - "lat": 52.5446571, - "lon": -0.3095229, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 34090506, - "lat": 52.1291868, - "lon": 0.1712367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34093980, - "lat": 52.1267222, - "lon": 0.1710638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB22 475", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34094140, - "lat": 52.1430353, - "lon": 0.1184850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB22 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34094145, - "lat": 52.1397846, - "lon": 0.1233572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB22 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34094148, - "lat": 52.1414443, - "lon": 0.1245968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB22 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34094175, - "lat": 52.1336138, - "lon": 0.1311085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 412", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34094207, - "lat": 52.1160167, - "lon": 0.1411913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 543", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34096691, - "lat": 53.7685049, - "lon": -2.3915111, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 34096732, - "lat": 53.7685113, - "lon": -2.3914520, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 34353304, - "lat": 50.6756778, - "lon": -1.5089876, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO40 49", - "ref:GB:uprn": "10015462260", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/afton-road-po40-0aq/0000PO4049" - } -}, -{ - "type": "node", - "id": 34426311, - "lat": 51.5967614, - "lon": -0.7049840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 34481539, - "lat": 52.6015010, - "lon": -0.2417154, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 34593219, - "lat": 55.9866364, - "lon": -3.3908474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30, Sa 10:00", - "post_box:type": "pillar", - "ref": "EH30 273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34672540, - "lat": 52.7821527, - "lon": -1.1784105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34672621, - "lat": 52.7934972, - "lon": -1.1951391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34672699, - "lat": 52.8072627, - "lon": -1.1876860, - "tags": { - "amenity": "post_box", - "fixme": "Misplaced" - } -}, -{ - "type": "node", - "id": 34675042, - "lat": 51.8970026, - "lon": -1.1508586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "OX26 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34687447, - "lat": 51.1343615, - "lon": -1.8988070, - "tags": { - "amenity": "post_box", - "mapillary": "988940541853842", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP3 119", - "survey:date": "2020-02-22" - } -}, -{ - "type": "node", - "id": 34706980, - "lat": 55.9875451, - "lon": -3.3968803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 09:30", - "ref": "EH30 160", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34707325, - "lat": 51.2882138, - "lon": -2.0050547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "895783107635177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN10 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-03-24" - } -}, -{ - "type": "node", - "id": 34707529, - "lat": 51.3062539, - "lon": -2.0090214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34707551, - "lat": 51.3254657, - "lon": -2.0088180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34707623, - "lat": 51.3549434, - "lon": -2.0034391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN10 3D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 34707672, - "lat": 51.4351680, - "lon": -2.0614911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 34707940, - "lat": 51.4679244, - "lon": -2.0764619, - "tags": { - "amenity": "post_box", - "mapillary": "627210515191323", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 34709499, - "lat": 54.1972652, - "lon": -2.8243212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34709505, - "lat": 54.1801231, - "lon": -2.8407203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LA5 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 34709506, - "lat": 54.1746133, - "lon": -2.8309831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 34", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 34709509, - "lat": 54.1430456, - "lon": -2.7697552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 205" - } -}, -{ - "type": "node", - "id": 34785702, - "lat": 51.5146152, - "lon": -0.7537582, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "SL6 195" - } -}, -{ - "type": "node", - "id": 34801208, - "lat": 52.7979110, - "lon": -1.2589972, - "tags": { - "amenity": "post_box", - "postal_code": "LE12", - "ref": "LE12 178" - } -}, -{ - "type": "node", - "id": 34801209, - "lat": 52.7926105, - "lon": -1.2561929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "628347515233152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "LE12", - "ref": "LE12 48", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 34801216, - "lat": 52.7966820, - "lon": -1.2549256, - "tags": { - "amenity": "post_box", - "postal_code": "LE12", - "ref": "LE12 89" - } -}, -{ - "type": "node", - "id": 34811926, - "lat": 51.6081390, - "lon": -2.5048040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "mapillary": "779812372738989", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS35", - "ref": "BS35 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-02-12" - } -}, -{ - "type": "node", - "id": 34818269, - "lat": 53.8151578, - "lon": -1.5778384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34838609, - "lat": 53.4411448, - "lon": -2.0164570, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 34852624, - "lat": 53.3972100, - "lon": -2.9459267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QE II post box L7 578 by Carron Company on Smithdown Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 578", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box outside Smithdown Road (Toxteth) post office.jpg" - } -}, -{ - "type": "node", - "id": 34923425, - "lat": 52.5729198, - "lon": -1.1799770, - "tags": { - "amenity": "post_box", - "ref": "LE8 334" - } -}, -{ - "type": "node", - "id": 34957231, - "lat": 52.0974993, - "lon": -0.0018792, - "tags": { - "amenity": "post_box", - "ref": "SG8 299" - } -}, -{ - "type": "node", - "id": 34957281, - "lat": 52.1052111, - "lon": 0.0148449, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "fixme": "A name and address would be nice", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 34957300, - "lat": 52.0787941, - "lon": 0.0170471, - "tags": { - "amenity": "post_box", - "ref": "SG8 559" - } -}, -{ - "type": "node", - "id": 34957348, - "lat": 52.0771935, - "lon": 0.0156417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SG8 499" - } -}, -{ - "type": "node", - "id": 34957359, - "lat": 52.0788303, - "lon": 0.0216765, - "tags": { - "amenity": "post_box", - "ref": "SG8 498" - } -}, -{ - "type": "node", - "id": 34957395, - "lat": 52.0876028, - "lon": 0.0281540, - "tags": { - "amenity": "post_box", - "ref": "SG8 495" - } -}, -{ - "type": "node", - "id": 34957397, - "lat": 52.0865904, - "lon": 0.0206467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SG8 277" - } -}, -{ - "type": "node", - "id": 34957424, - "lat": 52.0833990, - "lon": 0.0157818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SG8 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34962192, - "lat": 53.7417971, - "lon": -2.5865776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34962195, - "lat": 53.7345163, - "lon": -2.5875700, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 34962244, - "lat": 53.7252357, - "lon": -2.5251688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 34962245, - "lat": 53.7365791, - "lon": -2.5161220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 34973583, - "lat": 51.1800475, - "lon": -0.1752442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Meath Green Lane PO", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH6 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 34991620, - "lat": 53.7275106, - "lon": -2.6816017, - "tags": { - "addr:city": "Preston", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35132501, - "lat": 51.1885753, - "lon": 0.2680537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN9 128D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 35132509, - "lat": 51.1905431, - "lon": 0.2701288, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN9 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35136656, - "lat": 51.4617743, - "lon": -0.0701220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 35182105, - "lat": 51.4434323, - "lon": 0.2880248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA9 423" - } -}, -{ - "type": "node", - "id": 35185969, - "lat": 51.4430063, - "lon": 0.3007528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DA10 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35270556, - "lat": 52.6446321, - "lon": 1.0452696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35349941, - "lat": 53.7340613, - "lon": -2.6544743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-19", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR5 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 35350038, - "lat": 53.7552495, - "lon": -2.7022280, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PR1 507;PR1 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35353661, - "lat": 55.0640142, - "lon": -3.6125499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DG2 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 35459034, - "lat": 53.7230276, - "lon": -2.5319465, - "tags": { - "amenity": "post_box", - "postal_code": "BB2", - "ref": "BB2 184" - } -}, -{ - "type": "node", - "id": 35544370, - "lat": 51.3751838, - "lon": -0.1542654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 35773576, - "lat": 55.8415535, - "lon": -4.4458650, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 35829552, - "lat": 53.3754534, - "lon": -2.3244252, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35829553, - "lat": 53.3744785, - "lon": -2.3304421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "WA15 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 35829555, - "lat": 53.3706190, - "lon": -2.3316918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WA15 34D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 35829556, - "lat": 53.3730907, - "lon": -2.3366014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WA15 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 35829557, - "lat": 53.3764374, - "lon": -2.3357025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "post_box:type": "pillar", - "ref": "WA15 52", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 35829559, - "lat": 53.3786668, - "lon": -2.3378301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "WA15 22D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 35829560, - "lat": 53.3784772, - "lon": -2.3405018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "WA15 46D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 35831715, - "lat": 52.1185065, - "lon": -1.1208969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 477" - } -}, -{ - "type": "node", - "id": 36148005, - "lat": 53.6943005, - "lon": -1.4786623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 36148009, - "lat": 53.6945654, - "lon": -1.4844486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF1 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36148507, - "lat": 50.3435486, - "lon": -3.5608624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ6 174", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "https://www.mapillary.com/app/?lat=50.343538080389&lng=-3.560917703438141&z=17&pKey=_KZeAC4-HTx8eFuvbpfEfg&focus=photo;survey;aerial imagery", - "survey:date": "2020-08-26" - } -}, -{ - "type": "node", - "id": 36150181, - "lat": 51.8109301, - "lon": -0.7975956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 36156505, - "lat": 53.7425860, - "lon": -0.4936716, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 36168586, - "lat": 54.9308572, - "lon": -3.8271635, - "tags": { - "amenity": "post_box", - "ref": "DG5 66" - } -}, -{ - "type": "node", - "id": 36188371, - "lat": 51.5611704, - "lon": -0.3744830, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 36212737, - "lat": 51.5579450, - "lon": -0.3677405, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 36212741, - "lat": 51.5559768, - "lon": -0.3773433, - "tags": { - "amenity": "post_box", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 36212745, - "lat": 51.5594922, - "lon": -0.3799764, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 36216902, - "lat": 51.5589944, - "lon": -0.3743365, - "tags": { - "amenity": "post_box", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 36219577, - "lat": 51.5603414, - "lon": -0.3653945, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 36221088, - "lat": 51.5583420, - "lon": -0.3610006, - "tags": { - "amenity": "post_box", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 36244127, - "lat": 55.9512526, - "lon": -3.2161365, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH3 245" - } -}, -{ - "type": "node", - "id": 36269450, - "lat": 51.4679259, - "lon": -0.0824577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 42D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36270036, - "lat": 51.4694797, - "lon": -0.0855873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36271242, - "lat": 51.4654727, - "lon": -0.0833086, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "no collection plate on 11/Jun/22 to confirm times/refs", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 39D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36287070, - "lat": 50.8886918, - "lon": 0.6836536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "mapillary": "247784434668544", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN35 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-07-08" - } -}, -{ - "type": "node", - "id": 36290336, - "lat": 50.9162050, - "lon": 0.7234824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "postal_code": "TN31", - "ref": "TN36 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36303724, - "lat": 50.9526657, - "lon": 0.7355040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN31", - "ref": "TN31 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36305468, - "lat": 50.9370624, - "lon": 0.7859357, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TN31", - "ref": "TN31 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36311679, - "lat": 54.9165800, - "lon": -3.5956017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG2 199", - "royal_cypher": "scottish_crown", - "source": "surveey" - } -}, -{ - "type": "node", - "id": 36311681, - "lat": 54.9236344, - "lon": -3.5735055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DG2 105" - } -}, -{ - "type": "node", - "id": 36312304, - "lat": 51.3688658, - "lon": -0.1613399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 291D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36312307, - "lat": 51.3658699, - "lon": -0.1603680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36314176, - "lat": 51.3602160, - "lon": -0.1612447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 115D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36314177, - "lat": 51.3605693, - "lon": -0.1679295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36314178, - "lat": 51.3585167, - "lon": -0.1646642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36314192, - "lat": 51.3624262, - "lon": -0.1670748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36402117, - "lat": 51.0136564, - "lon": 0.9701535, - "tags": { - "amenity": "post_box", - "postal_code": "TN29", - "ref": "TN29 327", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36403347, - "lat": 51.0505780, - "lon": 1.0058573, - "tags": { - "amenity": "post_box", - "postal_code": "TN29", - "ref": "TN29 282", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36403922, - "lat": 51.0615292, - "lon": 1.0257545, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT21", - "ref": "CT21 147", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36406821, - "lat": 51.0668789, - "lon": 1.0865666, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 123", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36408072, - "lat": 51.0730762, - "lon": 1.1405696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT20", - "ref": "CT20 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36417983, - "lat": 52.1039237, - "lon": 0.1656510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "name": "Railway Station", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB22 544", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418076, - "lat": 52.1249907, - "lon": 0.1596012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418098, - "lat": 52.1226580, - "lon": 0.1696944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB22 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418156, - "lat": 52.1223222, - "lon": 0.1749214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418197, - "lat": 52.1174389, - "lon": 0.1724916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB22 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418203, - "lat": 52.1169507, - "lon": 0.1679391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418210, - "lat": 52.1133962, - "lon": 0.1722471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 474", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36418222, - "lat": 52.1108646, - "lon": 0.1850306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36470221, - "lat": 51.5542567, - "lon": -0.3519737, - "tags": { - "amenity": "post_box", - "postal_code": "UB5" - } -}, -{ - "type": "node", - "id": 36497777, - "lat": 51.7693102, - "lon": 0.0047556, - "tags": { - "amenity": "post_box", - "ref": "EN11 102" - } -}, -{ - "type": "node", - "id": 36509078, - "lat": 51.4938057, - "lon": -0.3197985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "299948391764915", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 209D", - "survey:date": "2021-03-24" - } -}, -{ - "type": "node", - "id": 36511118, - "lat": 51.5254659, - "lon": -0.3416852, - "tags": { - "amenity": "post_box", - "ref": "W7 21" - } -}, -{ - "type": "node", - "id": 36567810, - "lat": 55.9486010, - "lon": -3.2236841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH12 100", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 36573377, - "lat": 55.9494370, - "lon": -3.2166130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH3 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 36581497, - "lat": 55.9482651, - "lon": -3.2171420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH12 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36591833, - "lat": 51.3574731, - "lon": -0.1691658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36598979, - "lat": 55.9631351, - "lon": -3.1914610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 36", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 36602026, - "lat": 55.9591074, - "lon": -3.1908331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 44", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 36612818, - "lat": 55.9452751, - "lon": -3.1844506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH8 535", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36662534, - "lat": 53.7082100, - "lon": -2.6650882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "PR5 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 36662943, - "lat": 53.6340623, - "lon": -2.6140022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 89" - } -}, -{ - "type": "node", - "id": 36675817, - "lat": 51.5411372, - "lon": -0.3243625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "UB6", - "ref": "UB6 127" - } -}, -{ - "type": "node", - "id": 36678035, - "lat": 51.5367443, - "lon": -0.3058627, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA0" - } -}, -{ - "type": "node", - "id": 36678042, - "lat": 51.5345369, - "lon": -0.3066205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "HA0 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 36679515, - "lat": 51.5298137, - "lon": -0.3010959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "W5", - "ref": "W5 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36681419, - "lat": 51.5276765, - "lon": -0.3076264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "W5", - "ref": "W5 61" - } -}, -{ - "type": "node", - "id": 36681422, - "lat": 51.5255963, - "lon": -0.3087559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "W5", - "ref": "W5 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 36681785, - "lat": 51.5125855, - "lon": -0.3371860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "W7", - "ref": "W7 13D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 36681787, - "lat": 51.5147781, - "lon": -0.3400323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36683878, - "lat": 51.5153497, - "lon": -0.3312265, - "tags": { - "amenity": "post_box", - "note": "plate damaged, collection times not verifiable", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "W7", - "ref": "W7 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36683896, - "lat": 51.5209432, - "lon": -0.3306043, - "tags": { - "amenity": "post_box", - "ref": "W7 28" - } -}, -{ - "type": "node", - "id": 36684036, - "lat": 51.5319826, - "lon": -0.3304259, - "tags": { - "amenity": "post_box", - "postal_code": "UB6" - } -}, -{ - "type": "node", - "id": 36684352, - "lat": 51.5419127, - "lon": -0.3464336, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "UB6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 36711422, - "lat": 50.6863067, - "lon": -1.0927534, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO35 127", - "ref:GB:uprn": "10015370561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/woodlands-po35-5aa/000PO35127" - } -}, -{ - "type": "node", - "id": 36711485, - "lat": 50.6866734, - "lon": -1.0803553, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO35 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/bembridge-post-office-po35-5xw/0000PO3567" - } -}, -{ - "type": "node", - "id": 36712759, - "lat": 55.8446949, - "lon": -4.2905745, - "tags": { - "amenity": "post_box", - "postal_code": "G41", - "ref": "G41 100" - } -}, -{ - "type": "node", - "id": 36712760, - "lat": 55.8438683, - "lon": -4.2979054, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 36727950, - "lat": 51.4273045, - "lon": -0.2308566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 89", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 36728153, - "lat": 51.4155301, - "lon": -0.2336331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 36838393, - "lat": 55.8532653, - "lon": -4.3595191, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 36843411, - "lat": 55.8525837, - "lon": -4.3527599, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 36843788, - "lat": 55.8509019, - "lon": -4.3487514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "429927346616359", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2024-05-15" - } -}, -{ - "type": "node", - "id": 36869293, - "lat": 51.3550401, - "lon": -0.2206035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36882453, - "lat": 51.3576895, - "lon": -0.2175901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SM3 215;SM3 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 36931014, - "lat": 51.4024857, - "lon": -0.2339990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 36931208, - "lat": 51.3983242, - "lon": -0.2355305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 309D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 36931384, - "lat": 51.3983008, - "lon": -0.2325000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36931876, - "lat": 51.4029307, - "lon": -0.2293263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36932165, - "lat": 51.4074335, - "lon": -0.2191683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36932168, - "lat": 51.4056147, - "lon": -0.2182769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36932336, - "lat": 51.4068407, - "lon": -0.2151464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36955963, - "lat": 51.4001085, - "lon": -0.2092247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 248", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 36971920, - "lat": 55.9602478, - "lon": -3.2380569, - "tags": { - "amenity": "post_box", - "ref": "EH4 167" - } -}, -{ - "type": "node", - "id": 36993285, - "lat": 52.4967591, - "lon": -1.9681377, - "tags": { - "amenity": "post_box", - "ref": "B66 148" - } -}, -{ - "type": "node", - "id": 37124413, - "lat": 51.3703766, - "lon": -0.1662929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37124467, - "lat": 51.3668193, - "lon": -0.1644342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37124491, - "lat": 51.3664377, - "lon": -0.1672552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM5 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37149074, - "lat": 51.4002919, - "lon": -2.3014121, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 37154997, - "lat": 51.3662534, - "lon": -0.1793356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37155053, - "lat": 51.3684452, - "lon": -0.1767729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37155064, - "lat": 51.3686735, - "lon": -0.1679760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37155067, - "lat": 51.3630809, - "lon": -0.1713639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 37733376, - "lat": 55.8898657, - "lon": -4.3823453, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 38084162, - "lat": 52.1158329, - "lon": -0.9860667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 366" - } -}, -{ - "type": "node", - "id": 38292436, - "lat": 53.7370135, - "lon": -0.4827969, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 38422006, - "lat": 50.8251127, - "lon": -4.5476321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 38447659, - "lat": 54.1942275, - "lon": -2.9078314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/6892038", - "post_box:type": "wall", - "postal_code": "LA11", - "ref": "LA11 114D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 38450571, - "lat": 54.4439989, - "lon": -3.1038790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "LA22", - "ref": "LA22 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 38461630, - "lat": 51.2796684, - "lon": -0.7505250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "GU14 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 38461652, - "lat": 51.2882673, - "lon": -0.7647241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU14 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 38462338, - "lat": 51.7390312, - "lon": -0.0089818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "EN10 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 38561794, - "lat": 55.9712567, - "lon": -3.3013069, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH4 486D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 38561805, - "lat": 55.9713006, - "lon": -3.3069682, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-08", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 598", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 38861084, - "lat": 51.0323870, - "lon": -4.2040337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX39 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 38865570, - "lat": 51.7355319, - "lon": 0.0173639, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 38901449, - "lat": 55.9359281, - "lon": -3.1875240, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-30", - "check_date:collection_times": "2024-01-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH9 121", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 38902691, - "lat": 53.6895071, - "lon": -1.5035824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 80" - } -}, -{ - "type": "node", - "id": 38934156, - "lat": 53.3319393, - "lon": -2.2454413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK9", - "ref": "SK9 612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 38934440, - "lat": 53.3297429, - "lon": -2.2402151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK9", - "ref": "SK9 104" - } -}, -{ - "type": "node", - "id": 38934692, - "lat": 53.3279536, - "lon": -2.2314984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "post_box:type": "pillar", - "postal_code": "SK9", - "ref": "SK9 728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 39008212, - "lat": 55.9364668, - "lon": -3.1651525, - "tags": { - "amenity": "post_box", - "check_date:ref": "2024-06-30", - "collection_plate": "CP1D", - "collection_plate:date": "2022-12-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "note": "The ref should be EH16 300D, ref 330D is for the post_box on Orchardhead Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EH16 330D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 39008247, - "lat": 55.9364810, - "lon": -3.1700070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-09-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EH16 49D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 39008423, - "lat": 55.9324348, - "lon": -3.1563455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH16 407", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 39008428, - "lat": 55.9399386, - "lon": -3.1711751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EH16 238D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 39008432, - "lat": 55.9335174, - "lon": -3.1614428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 356", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 39008593, - "lat": 55.9349176, - "lon": -3.1600569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 39664904, - "lat": 51.4162902, - "lon": -0.1926618, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-05", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 39695443, - "lat": 53.3401068, - "lon": -1.5225637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "S11", - "ref": "S11 567", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 40175299, - "lat": 51.3628815, - "lon": -0.1831702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 71", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 40175751, - "lat": 51.3626794, - "lon": -0.1892055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 40175763, - "lat": 51.3625632, - "lon": -0.1858130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SM1 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 40757091, - "lat": 51.4132649, - "lon": -0.3113939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 40810319, - "lat": 52.1094466, - "lon": 0.1393743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 40810423, - "lat": 52.1034423, - "lon": 0.1595199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 40919808, - "lat": 51.8250026, - "lon": -0.3749178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 170D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 40920102, - "lat": 51.8210067, - "lon": -0.3670647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 145D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 40920486, - "lat": 51.8164126, - "lon": -0.3614957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 40941715, - "lat": 51.0522808, - "lon": 0.1831696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 40951224, - "lat": 53.7553172, - "lon": -2.6884065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR1 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 40951394, - "lat": 53.7594924, - "lon": -2.6999206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PR1", - "ref": "PR1 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 40985263, - "lat": 51.4713246, - "lon": -0.0822859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 53D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41006540, - "lat": 51.4707687, - "lon": -0.0742528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41006549, - "lat": 51.4701594, - "lon": -0.0778523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036404, - "lat": 52.0950710, - "lon": 0.1590600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 299", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036410, - "lat": 52.0951607, - "lon": 0.1548371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036468, - "lat": 52.0892691, - "lon": 0.1565585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036500, - "lat": 52.0873011, - "lon": 0.1800957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036532, - "lat": 52.0847208, - "lon": 0.1818304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036675, - "lat": 52.0741488, - "lon": 0.1796151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB10 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41036734, - "lat": 52.0696576, - "lon": 0.1711504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 41053215, - "lat": 51.3231461, - "lon": -0.6337261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "629026331731588", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 41054095, - "lat": 51.3388153, - "lon": -0.6105409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "mapillary": "260247993177315", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU24 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 41367015, - "lat": 53.7326501, - "lon": -2.5205481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 42066362, - "lat": 55.8658037, - "lon": -4.2804115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G3", - "ref": "G3 170;G3 1700", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 42219816, - "lat": 51.5387707, - "lon": -0.3432218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "UB6", - "ref": "UB6 90" - } -}, -{ - "type": "node", - "id": 42220082, - "lat": 51.5342597, - "lon": -0.3328775, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "UB6", - "ref": "UB6 118" - } -}, -{ - "type": "node", - "id": 42231743, - "lat": 53.7522781, - "lon": -2.4491327, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 42231747, - "lat": 53.7594340, - "lon": -2.4479375, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 42232447, - "lat": 51.5379548, - "lon": -0.3311132, - "tags": { - "amenity": "post_box", - "postal_code": "UB6" - } -}, -{ - "type": "node", - "id": 42239365, - "lat": 51.5365522, - "lon": -0.3240163, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "UB6" - } -}, -{ - "type": "node", - "id": 42246467, - "lat": 51.5353117, - "lon": -0.3200201, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "UB6" - } -}, -{ - "type": "node", - "id": 42246480, - "lat": 51.5498011, - "lon": -0.3438098, - "tags": { - "amenity": "post_box", - "postal_code": "UB6", - "ref": "UB6 37" - } -}, -{ - "type": "node", - "id": 42284353, - "lat": 51.2214055, - "lon": -3.9092692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX31 40" - } -}, -{ - "type": "node", - "id": 42291358, - "lat": 53.7206532, - "lon": -0.5151176, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 42293521, - "lat": 53.7415074, - "lon": -0.4837480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 42299631, - "lat": 51.1838863, - "lon": -3.9824971, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX31 195" - } -}, -{ - "type": "node", - "id": 42318586, - "lat": 53.7227703, - "lon": -0.5056933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 42351722, - "lat": 51.8175181, - "lon": -0.7883564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 42356506, - "lat": 50.9378006, - "lon": -1.3981840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 42397607, - "lat": 51.8217954, - "lon": -0.7945906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 42408160, - "lat": 53.7960032, - "lon": -1.6212005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 530" - } -}, -{ - "type": "node", - "id": 43456464, - "lat": 53.7611189, - "lon": -2.7440440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 43456467, - "lat": 53.7611286, - "lon": -2.7440030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PR2 512" - } -}, -{ - "type": "node", - "id": 43456495, - "lat": 53.7588844, - "lon": -2.7425196, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 43598012, - "lat": 50.8746694, - "lon": 0.0077913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 450", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 44810373, - "lat": 50.8742824, - "lon": 0.0192302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "BN7", - "ref": "BN7 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 44810405, - "lat": 50.8731156, - "lon": 0.0211243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BN7", - "ref": "BN7 462" - } -}, -{ - "type": "node", - "id": 44825281, - "lat": 50.8741436, - "lon": 0.0152159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "hidden;no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 45059768, - "lat": 51.6272284, - "lon": 0.2154607, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch alpha" - } -}, -{ - "type": "node", - "id": 45078478, - "lat": 51.7402839, - "lon": 0.0748057, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch alpha" - } -}, -{ - "type": "node", - "id": 45288052, - "lat": 51.5936222, - "lon": 0.2339370, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 45317102, - "lat": 53.7219889, - "lon": -2.6693078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 45317121, - "lat": 53.7299985, - "lon": -2.6693871, - "tags": { - "addr:city": "Preston", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR5 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 45595843, - "lat": 50.9740175, - "lon": -3.3140448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 45622171, - "lat": 50.9836461, - "lon": -3.3243674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA21 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 46811824, - "lat": 53.7268662, - "lon": -2.5383056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 46815935, - "lat": 53.7428340, - "lon": -2.4968822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 46815947, - "lat": 53.7439342, - "lon": -2.4920096, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 46816014, - "lat": 53.7469714, - "lon": -2.4826078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB2 21", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 46816188, - "lat": 53.7511354, - "lon": -2.4589662, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 46816680, - "lat": 53.7382124, - "lon": -2.6027974, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 46906580, - "lat": 53.7017520, - "lon": -1.4716548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 53" - } -}, -{ - "type": "node", - "id": 47007294, - "lat": 50.9233529, - "lon": -3.3769122, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 47099322, - "lat": 51.1928615, - "lon": 0.2726037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "TN9 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 47099334, - "lat": 51.1932724, - "lon": 0.2743944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN9 2842;TN9 2841", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 47099349, - "lat": 51.1859552, - "lon": 0.2688834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN9 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 47099351, - "lat": 51.1875567, - "lon": 0.2727248, - "tags": { - "amenity": "post_box", - "ref": "TN9 1D" - } -}, -{ - "type": "node", - "id": 47099353, - "lat": 51.1837887, - "lon": 0.2670026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN9 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 47099354, - "lat": 51.1832404, - "lon": 0.2714180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN9 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 47207376, - "lat": 51.4373177, - "lon": -2.4730750, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 47207978, - "lat": 51.4297159, - "lon": -2.4737928, - "tags": { - "amenity": "post_box", - "mapillary": "272522127840526", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-25" - } -}, -{ - "type": "node", - "id": 47282178, - "lat": 50.9074206, - "lon": -3.4121946, - "tags": { - "amenity": "post_box", - "ref": "EX16 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 47745393, - "lat": 50.9874662, - "lon": -4.4273549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 46D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 48740710, - "lat": 51.5404416, - "lon": -0.0715240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 38D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 48860160, - "lat": 51.0519992, - "lon": 0.1771962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 48861242, - "lat": 51.0548834, - "lon": 0.1758019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 48884446, - "lat": 50.9435388, - "lon": -1.4518631, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 695D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 48884735, - "lat": 50.9490320, - "lon": -1.4519891, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 48885109, - "lat": 50.9443699, - "lon": -1.4324518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 694" - } -}, -{ - "type": "node", - "id": 48928559, - "lat": 51.5168107, - "lon": -0.0497666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 48928564, - "lat": 51.5143160, - "lon": -0.0538623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "E1 41;E1 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 48930595, - "lat": 53.7951553, - "lon": -1.5472444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "indoor": "no", - "layer": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS1 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 48938324, - "lat": 53.6867005, - "lon": -1.5030722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 48941211, - "lat": 51.0247471, - "lon": -4.2097771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX39 65D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 49249368, - "lat": 55.7757053, - "lon": -4.3474861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1771618939849345", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-06-24" - } -}, -{ - "type": "node", - "id": 49300213, - "lat": 51.4679952, - "lon": -0.2089987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "This wall box is unusual in that it is mounted on a metal base, and not in a wall. One side of the metal box can be seen. The other side and the back are more difficult to see because the box is in a corner.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW6 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 49343707, - "lat": 53.7463759, - "lon": -2.4800552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB1 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 49387785, - "lat": 51.5033042, - "lon": -2.5932445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "BS10 477", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 49516610, - "lat": 51.0005704, - "lon": -3.2184240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 49518061, - "lat": 51.5322785, - "lon": -0.0831341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 49518091, - "lat": 51.5289923, - "lon": -0.0834611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 49521007, - "lat": 51.0154834, - "lon": -3.1887523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 49786715, - "lat": 51.5328533, - "lon": -0.0769562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 50001893, - "lat": 51.4864025, - "lon": 0.3248378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM17 64" - } -}, -{ - "type": "node", - "id": 50046273, - "lat": 52.9198664, - "lon": -4.2319766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 50049250, - "lat": 52.9186150, - "lon": -4.2416618, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 50049308, - "lat": 52.9175711, - "lon": -4.2313022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL52 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 50049309, - "lat": 52.9155849, - "lon": -4.2380570, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 50741160, - "lat": 52.5812292, - "lon": -1.9052779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "postal_code": "B74", - "ref": "B74 1315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 50741162, - "lat": 52.5735289, - "lon": -1.8954996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B74", - "ref": "B74 891", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 50741170, - "lat": 52.5795760, - "lon": -1.8905971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 1079", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 50741173, - "lat": 52.5828007, - "lon": -1.8936771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B74", - "ref": "B74 1078", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 50741194, - "lat": 52.5790195, - "lon": -1.9010447, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B73", - "ref": "B73 1003" - } -}, -{ - "type": "node", - "id": 50761310, - "lat": 51.5790812, - "lon": -0.3173281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 50800107, - "lat": 50.9780351, - "lon": -1.4378364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO52 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 50918567, - "lat": 53.8114277, - "lon": -1.6267066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 712" - } -}, -{ - "type": "node", - "id": 50936507, - "lat": 53.3806027, - "lon": -2.3426682, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 50936510, - "lat": 53.3837858, - "lon": -2.3450973, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 50944784, - "lat": 51.5461007, - "lon": -0.0418038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Box has a disused stamp vending machine attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E9 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 51458972, - "lat": 53.7926968, - "lon": -1.5416020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "franked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS10 36", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 51496647, - "lat": 53.7569893, - "lon": -2.7017365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "509793400190367", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 51496677, - "lat": 53.7556208, - "lon": -2.7005605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR1 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 51496737, - "lat": 53.7596887, - "lon": -2.6992848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR1 494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 51924703, - "lat": 51.5189117, - "lon": -2.5337053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "BS34 701D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2015-08-05" - } -}, -{ - "type": "node", - "id": 51960939, - "lat": 51.4123811, - "lon": -0.7070695, - "tags": { - "amenity": "post_box", - "fixme": "check location" - } -}, -{ - "type": "node", - "id": 52070229, - "lat": 53.7932524, - "lon": -1.5458583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS1 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 52138314, - "lat": 55.9203574, - "lon": -3.2123548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1112143416823745", - "note": "Collection times updated 2018-05-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 178", - "royal_cypher": "scottish_crown", - "survey:date": "2023-08-01" - } -}, -{ - "type": "node", - "id": 52140239, - "lat": 55.9265866, - "lon": -3.2039995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH10 110D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;NLS_OS_Edinburgh_map_1940s" - } -}, -{ - "type": "node", - "id": 52306445, - "lat": 55.9312131, - "lon": -3.2000949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH9 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 52307812, - "lat": 55.9458717, - "lon": -3.2095172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EH3 85", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 52356880, - "lat": 51.5671763, - "lon": -0.3143644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "postal_code": "HA0", - "ref": "HA0 319" - } -}, -{ - "type": "node", - "id": 52356894, - "lat": 51.5636858, - "lon": -0.3153598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "postal_code": "HA0", - "ref": "HA0 216" - } -}, -{ - "type": "node", - "id": 52356897, - "lat": 51.5661181, - "lon": -0.3196106, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4b" - } -}, -{ - "type": "node", - "id": 52678773, - "lat": 51.9432295, - "lon": -0.2357690, - "tags": { - "amenity": "post_box", - "check_date": "2010-07-07", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "SG4 95" - } -}, -{ - "type": "node", - "id": 52681543, - "lat": 55.9301451, - "lon": -3.2056308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 289", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 52681577, - "lat": 55.9377907, - "lon": -3.2060971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-02", - "check_date:collection_times": "2023-03-02", - "check_date:ref": "2023-03-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "578154869806714", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 52681581, - "lat": 55.9406330, - "lon": -3.2038331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "mapillary": "322010212694786", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-04-05" - } -}, -{ - "type": "node", - "id": 52681585, - "lat": 55.9318987, - "lon": -3.2098845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times updated 2018-06-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 52682874, - "lat": 55.9192101, - "lon": -3.2205669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Collection times updated 2018-06-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 430D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 52735443, - "lat": 51.5377935, - "lon": -0.0704393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 52735489, - "lat": 51.5384906, - "lon": -0.0727401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 52735499, - "lat": 51.5383962, - "lon": -0.0765064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E8 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 52738889, - "lat": 51.5176938, - "lon": -2.5350982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS34 1015D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2015-08-05" - } -}, -{ - "type": "node", - "id": 52787123, - "lat": 51.5439583, - "lon": -0.0737360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 52813541, - "lat": 51.5460920, - "lon": -0.0699723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 52841926, - "lat": 53.8041100, - "lon": -1.5394476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 52842014, - "lat": 53.8241432, - "lon": -1.5714126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 365", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 52842161, - "lat": 53.8310387, - "lon": -1.5707777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 52905112, - "lat": 53.8064228, - "lon": -1.5506198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS2 54" - } -}, -{ - "type": "node", - "id": 53183941, - "lat": 51.2637134, - "lon": -0.1712785, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH2 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-03-31", - "survey_date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 53184657, - "lat": 51.2398660, - "lon": -0.1685406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RH1 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:ref": "Picture P144-454" - } -}, -{ - "type": "node", - "id": 53215583, - "lat": 55.7729045, - "lon": -4.3335341, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 53226451, - "lat": 51.3710285, - "lon": 1.1363570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 79", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT6 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 53227940, - "lat": 51.3726148, - "lon": 1.1348026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 53390735, - "lat": 55.8584894, - "lon": -4.2205893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G31", - "ref": "G31 1150" - } -}, -{ - "type": "node", - "id": 53400012, - "lat": 51.5128199, - "lon": -2.6124727, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 499D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 53400219, - "lat": 51.5015668, - "lon": -2.6103119, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 53428926, - "lat": 51.5440695, - "lon": -0.0668735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E8 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 53430620, - "lat": 51.4480022, - "lon": -0.9726372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "RG2 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 53849029, - "lat": 55.9460031, - "lon": -3.2110371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:30, Sa 11:30", - "post_box:type": "pillar", - "ref": "EH3 437", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 53868600, - "lat": 55.9337210, - "lon": -3.2007781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH9 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 53879540, - "lat": 57.1956394, - "lon": -2.1792519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 54065193, - "lat": 51.2675261, - "lon": 1.1526287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 54081034, - "lat": 53.7877367, - "lon": -1.5970813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 802" - } -}, -{ - "type": "node", - "id": 54535866, - "lat": 55.9356258, - "lon": -3.2013792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "125038516709314", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 64", - "royal_cypher": "VR", - "source": "survey;Bing", - "survey:date": "2022-07-30" - } -}, -{ - "type": "node", - "id": 54539520, - "lat": 55.9384127, - "lon": -3.1976645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note:royal_cypher": "ER might be an amended EIIR", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH9 120", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 54548509, - "lat": 53.4024825, - "lon": -2.8955023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L16 672", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 54568285, - "lat": 51.2910906, - "lon": -0.7896085, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5a" - } -}, -{ - "type": "node", - "id": 54617075, - "lat": 55.8431610, - "lon": -4.3702985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 54656752, - "lat": 52.0811078, - "lon": 0.4575497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 54752360, - "lat": 52.5716819, - "lon": -1.8857135, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B74", - "ref": "B74 1096" - } -}, -{ - "type": "node", - "id": 54752363, - "lat": 52.5775223, - "lon": -1.8849163, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d", - "postal_code": "B74", - "ref": "B74 380" - } -}, -{ - "type": "node", - "id": 54752368, - "lat": 52.5660549, - "lon": -1.8868283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B74", - "ref": "B74 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 54752375, - "lat": 52.5682299, - "lon": -1.8814123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "postal_code": "B74", - "ref": "B74 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 54762820, - "lat": 51.3055294, - "lon": 1.1082243, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 333", - "source": "survey" - } -}, -{ - "type": "node", - "id": 54776725, - "lat": 51.3111541, - "lon": 1.1084939, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 54777875, - "lat": 51.3314270, - "lon": 1.1201050, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 395", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 395D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 54813329, - "lat": 52.0881309, - "lon": 0.4412821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB9 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 54847574, - "lat": 50.9273889, - "lon": -3.4013903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX16 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 54870326, - "lat": 53.4010129, - "lon": -2.3201453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA15 100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 55303624, - "lat": 52.0766057, - "lon": 0.4757874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 55421471, - "lat": 52.0780501, - "lon": 0.4560321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 55490741, - "lat": 52.0735427, - "lon": 0.4551828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 55593168, - "lat": 53.8077722, - "lon": -1.6281407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 652" - } -}, -{ - "type": "node", - "id": 56032978, - "lat": 53.4049924, - "lon": -2.3276642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00" - } -}, -{ - "type": "node", - "id": 56035098, - "lat": 53.4083561, - "lon": -2.3286928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 56144235, - "lat": 52.0911620, - "lon": 0.4879699, - "tags": { - "amenity": "post_box", - "ref": "CB9 54" - } -}, -{ - "type": "node", - "id": 56241085, - "lat": 51.7057084, - "lon": 0.1140383, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch alpha" - } -}, -{ - "type": "node", - "id": 57262206, - "lat": 51.5259168, - "lon": -2.5401843, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS32 1024", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 57274567, - "lat": 51.5310301, - "lon": -2.5492270, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS32 659", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 57500831, - "lat": 53.3981292, - "lon": -2.3342543, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 57521746, - "lat": 52.5439170, - "lon": -1.8641295, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B44", - "ref": "B44 305" - } -}, -{ - "type": "node", - "id": 57563547, - "lat": 52.5465129, - "lon": -1.8708256, - "tags": { - "amenity": "post_box", - "ref": "B44 516" - } -}, -{ - "type": "node", - "id": 57563590, - "lat": 52.5472782, - "lon": -1.8783695, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B44 517", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 57563599, - "lat": 52.5472164, - "lon": -1.8842741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "postal_code": "B44", - "ref": "B44 177", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 57563640, - "lat": 52.5501785, - "lon": -1.8687960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B44 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 57918405, - "lat": 51.7715580, - "lon": 0.0400744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "post_box:type": "pillar", - "ref": "CM19 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 58565573, - "lat": 51.7652305, - "lon": 0.0393282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM19 85D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 58565575, - "lat": 51.7677010, - "lon": 0.0373940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM19 47" - } -}, -{ - "type": "node", - "id": 58850569, - "lat": 52.5412816, - "lon": -1.8723787, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B44 500", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 58850579, - "lat": 52.5392653, - "lon": -1.8818817, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 74" - } -}, -{ - "type": "node", - "id": 58963568, - "lat": 52.5437943, - "lon": -1.8792269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B44 518", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 58963607, - "lat": 52.5416889, - "lon": -1.8842438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59057672, - "lat": 52.5384719, - "lon": -1.8713212, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 608" - } -}, -{ - "type": "node", - "id": 59175821, - "lat": 51.3658129, - "lon": -0.4733092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KT15 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59214237, - "lat": 53.7686156, - "lon": -1.5531409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 389" - } -}, -{ - "type": "node", - "id": 59214533, - "lat": 51.8639485, - "lon": -1.2287681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "wall", - "ref": "OX25 374", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2013-03-09" - } -}, -{ - "type": "node", - "id": 59597282, - "lat": 52.0925030, - "lon": 0.4903872, - "tags": { - "amenity": "post_box", - "ref": "CB9 39" - } -}, -{ - "type": "node", - "id": 59597578, - "lat": 50.9911533, - "lon": -0.9612242, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 59633266, - "lat": 50.1153353, - "lon": -5.4439682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR20 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59640526, - "lat": 50.1256656, - "lon": -5.4637745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR17 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 59656769, - "lat": 53.7467542, - "lon": -2.4894987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB2 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59657076, - "lat": 53.7436038, - "lon": -2.4846280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB2 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59743291, - "lat": 56.1883780, - "lon": -3.9640817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "colour": "gold", - "description": "Golden Post box for Andy Murray's gold medal in the 2012 Olympic Games", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Andy Murray Gold Medal winner London 2012 Olympic Games Tennis: Men's Singles", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "FK15", - "ref": "FK15 105", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 59745862, - "lat": 53.7487524, - "lon": -2.4856546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BB2 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59748109, - "lat": 55.8434966, - "lon": -4.3392071, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 59748110, - "lat": 55.8409052, - "lon": -4.3416634, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 59748111, - "lat": 55.8452227, - "lon": -4.3439078, - "tags": { - "amenity": "post_box", - "postal_code": "G52", - "ref": "G52 638" - } -}, -{ - "type": "node", - "id": 59751576, - "lat": 52.5331149, - "lon": -1.7889519, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 1352" - } -}, -{ - "type": "node", - "id": 59751582, - "lat": 52.5363938, - "lon": -1.7945882, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 995" - } -}, -{ - "type": "node", - "id": 59751584, - "lat": 52.5340349, - "lon": -1.7967445, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 121" - } -}, -{ - "type": "node", - "id": 59751585, - "lat": 52.5303342, - "lon": -1.7937318, - "tags": { - "amenity": "post_box", - "ref": "B76 994" - } -}, -{ - "type": "node", - "id": 59777574, - "lat": 50.1016445, - "lon": -5.4184379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "description": "Prussia Cove", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR20 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59817482, - "lat": 52.1067067, - "lon": 0.4660625, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB9 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 59829973, - "lat": 53.3884916, - "lon": -2.3208175, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch alpha" - } -}, -{ - "type": "node", - "id": 59848585, - "lat": 55.8444091, - "lon": -4.2805996, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 59849612, - "lat": 55.8414790, - "lon": -4.2837492, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 59926691, - "lat": 50.1252862, - "lon": -5.4407163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 59971342, - "lat": 52.0804066, - "lon": 0.4166071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 59973980, - "lat": 51.8166143, - "lon": -0.3662395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 59974512, - "lat": 52.0890083, - "lon": 0.4223770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB9 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 59984052, - "lat": 53.3930672, - "lon": -2.3371356, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 60000745, - "lat": 52.2581426, - "lon": 0.0011438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60001430, - "lat": 52.2511862, - "lon": 0.0123214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60001459, - "lat": 52.2530808, - "lon": 0.0283400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60001464, - "lat": 52.2488388, - "lon": 0.0252097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60001466, - "lat": 52.2498070, - "lon": 0.0203744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60027937, - "lat": 52.9493803, - "lon": -1.1510394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG1 71D", - "ref:GB:uprn": "10015835715", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60028896, - "lat": 52.9655388, - "lon": -1.1386088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 15D", - "ref:GB:uprn": "10015448127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 60029777, - "lat": 52.8917273, - "lon": -1.1432335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60029883, - "lat": 51.5193782, - "lon": -0.3191658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "W13 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 60029884, - "lat": 51.5213227, - "lon": -0.3234704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "mapillary": "3894946873914797", - "post_box:type": "pillar", - "ref": "W13 42", - "royal_cypher": "scottish_crown", - "survey:date": "2021-03-17" - } -}, -{ - "type": "node", - "id": 60031996, - "lat": 51.8744171, - "lon": -1.2751564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "141678937888485", - "note": "Postbox number says 407D, rather than 407. Is this significant?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "OX5", - "ref": "OX5 407", - "survey:date": "2021-03-25" - } -}, -{ - "type": "node", - "id": 60043280, - "lat": 50.9976242, - "lon": -0.0843129, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH16 102D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 60043281, - "lat": 50.9944605, - "lon": -0.0872438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 60068849, - "lat": 53.3155533, - "lon": -1.9779228, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 60099700, - "lat": 51.7310327, - "lon": 0.0774584, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch alpha" - } -}, -{ - "type": "node", - "id": 60099725, - "lat": 51.7272582, - "lon": 0.0784454, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 60106048, - "lat": 50.9982066, - "lon": -0.1107362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60106657, - "lat": 51.5240917, - "lon": -2.5384792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS32 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60107700, - "lat": 51.5286454, - "lon": -2.5359324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS32 686D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60109563, - "lat": 50.9903750, - "lon": -0.0972907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60110854, - "lat": 51.5668073, - "lon": -2.5051470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1299850220967571", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS35 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 60115760, - "lat": 51.0008400, - "lon": -0.1268577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60115864, - "lat": 50.9943296, - "lon": -0.1191311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60116462, - "lat": 51.0101926, - "lon": -0.1407550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH17 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60119130, - "lat": 52.5519082, - "lon": -0.3217810, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE2 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60136971, - "lat": 55.9509639, - "lon": -3.1815835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH8 68D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60165933, - "lat": 53.3319940, - "lon": -1.9774849, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 60165939, - "lat": 53.3379884, - "lon": -1.9512982, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 60165940, - "lat": 53.3382005, - "lon": -1.9620833, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 60165943, - "lat": 53.3362130, - "lon": -1.9696629, - "tags": { - "amenity": "post_box", - "postal_code": "SK23 7RH" - } -}, -{ - "type": "node", - "id": 60165951, - "lat": 53.3390956, - "lon": -1.9829872, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 60165953, - "lat": 53.3301904, - "lon": -1.9862683, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 60165954, - "lat": 53.3303853, - "lon": -1.9946220, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 60165956, - "lat": 53.3267232, - "lon": -1.9997019, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 60176613, - "lat": 53.3363808, - "lon": -2.8208072, - "tags": { - "amenity": "post_box", - "ref": "L24 636" - } -}, -{ - "type": "node", - "id": 60176844, - "lat": 53.3464116, - "lon": -2.8435483, - "tags": { - "amenity": "post_box", - "ref": "L24 814" - } -}, -{ - "type": "node", - "id": 60177799, - "lat": 53.3461644, - "lon": -2.8236662, - "tags": { - "amenity": "post_box", - "ref": "L24 349" - } -}, -{ - "type": "node", - "id": 60178150, - "lat": 53.3401382, - "lon": -2.8238121, - "tags": { - "amenity": "post_box", - "ref": "L24 560" - } -}, -{ - "type": "node", - "id": 60178299, - "lat": 53.3389493, - "lon": -2.8328329, - "tags": { - "amenity": "post_box", - "ref": "L24 535" - } -}, -{ - "type": "node", - "id": 60178395, - "lat": 53.3408506, - "lon": -2.8415705, - "tags": { - "amenity": "post_box", - "ref": "L24 883" - } -}, -{ - "type": "node", - "id": 60178614, - "lat": 53.3392186, - "lon": -2.8453628, - "tags": { - "amenity": "post_box", - "ref": "L24 813" - } -}, -{ - "type": "node", - "id": 60180159, - "lat": 53.3434559, - "lon": -2.8357215, - "tags": { - "amenity": "post_box", - "ref": "L24 819" - } -}, -{ - "type": "node", - "id": 60190772, - "lat": 51.0130235, - "lon": -0.0916602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60190773, - "lat": 51.0108536, - "lon": -0.0972204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60190774, - "lat": 51.0090205, - "lon": -0.1033433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60247421, - "lat": 55.9516637, - "lon": -3.1783365, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EH8 626D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60264280, - "lat": 51.3505716, - "lon": -0.1618594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60270588, - "lat": 51.5267578, - "lon": -0.3523681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "UB6", - "ref": "UB6 19;UB6 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60289567, - "lat": 51.5302893, - "lon": -1.6681278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SN4", - "ref": "SN4 129" - } -}, -{ - "type": "node", - "id": 60300984, - "lat": 51.5575932, - "lon": 0.4274351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 60306407, - "lat": 56.1291732, - "lon": -3.3135995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 163D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60329474, - "lat": 56.1276835, - "lon": -3.3099220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY5 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60400225, - "lat": 51.5507399, - "lon": 0.4137959, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 60444039, - "lat": 51.0109363, - "lon": -0.0891941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60459552, - "lat": 51.4714977, - "lon": -0.0900478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SE5 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60459553, - "lat": 51.4715547, - "lon": -0.0884967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60468629, - "lat": 55.8553189, - "lon": -4.4160308, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "PA3", - "ref": "PA3 12" - } -}, -{ - "type": "node", - "id": 60469335, - "lat": 53.7289485, - "lon": -2.4984911, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60469518, - "lat": 55.8530901, - "lon": -4.4116506, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA3", - "ref": "PA3 186" - } -}, -{ - "type": "node", - "id": 60471756, - "lat": 51.7822282, - "lon": -0.0455555, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 60501192, - "lat": 52.1728529, - "lon": -4.3846213, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA44 334" - } -}, -{ - "type": "node", - "id": 60502747, - "lat": 52.1855083, - "lon": -4.3933015, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA45 534" - } -}, -{ - "type": "node", - "id": 60562929, - "lat": 52.1900263, - "lon": -4.4062215, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 60615135, - "lat": 53.3894252, - "lon": -2.3479786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 71", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 60615136, - "lat": 53.3883074, - "lon": -2.3511155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 60617244, - "lat": 51.0108405, - "lon": -0.0946673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH16 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60617266, - "lat": 51.0043187, - "lon": -0.1123374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 60617314, - "lat": 50.9817700, - "lon": -0.0970733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60619156, - "lat": 50.9898373, - "lon": -0.0881134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60642342, - "lat": 51.4984305, - "lon": -2.6141723, - "tags": { - "amenity": "post_box", - "mapillary": "293806622177117", - "post_box:type": "pillar", - "ref": "BS10 475", - "survey:date": "2021-05-29" - } -}, -{ - "type": "node", - "id": 60660542, - "lat": 51.5212232, - "lon": -0.1215936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1N 26D;WC1N 226D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60661053, - "lat": 51.0047686, - "lon": -0.0705823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH16 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60661054, - "lat": 51.0447009, - "lon": -0.0815083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60661060, - "lat": 51.0524650, - "lon": -0.0879834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60661068, - "lat": 51.0596883, - "lon": -0.0857354, - "tags": { - "amenity": "post_box", - "ref": "RH17 40" - } -}, -{ - "type": "node", - "id": 60668061, - "lat": 52.5335520, - "lon": -1.8651048, - "tags": { - "amenity": "post_box", - "note": "PINK!", - "postal_code": "B23", - "ref": "B23 606" - } -}, -{ - "type": "node", - "id": 60668063, - "lat": 52.5363494, - "lon": -1.8670413, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B23 107" - } -}, -{ - "type": "node", - "id": 60668110, - "lat": 52.5353529, - "lon": -1.8744076, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 418" - } -}, -{ - "type": "node", - "id": 60676381, - "lat": 52.4736015, - "lon": -1.9459853, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B16 245", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 60733050, - "lat": 52.5307842, - "lon": -1.8905274, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 428" - } -}, -{ - "type": "node", - "id": 60733072, - "lat": 52.5263742, - "lon": -1.8835546, - "tags": { - "amenity": "post_box", - "postal_code": "B6", - "ref": "B6 63" - } -}, -{ - "type": "node", - "id": 60733074, - "lat": 52.5331730, - "lon": -1.8830224, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B44", - "ref": "B44 531" - } -}, -{ - "type": "node", - "id": 60733084, - "lat": 52.5345398, - "lon": -1.8778228, - "tags": { - "amenity": "post_box", - "ref": "B44 1406" - } -}, -{ - "type": "node", - "id": 60763366, - "lat": 51.6019033, - "lon": -0.3428250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA3 262", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 60779721, - "lat": 51.6034728, - "lon": -0.3388314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "HA3 412", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 60851398, - "lat": 52.1869846, - "lon": 0.0390891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851423, - "lat": 52.1909935, - "lon": 0.0282189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851476, - "lat": 52.1517645, - "lon": 0.0288509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB23 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851478, - "lat": 52.1522526, - "lon": 0.0217424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851479, - "lat": 52.1554777, - "lon": 0.0081864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB23 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851481, - "lat": 52.1614670, - "lon": 0.0065206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CB23 409", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851574, - "lat": 52.1635925, - "lon": -0.0084337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB23 334", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851649, - "lat": 52.1782215, - "lon": -0.0329406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CB23 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60851688, - "lat": 52.1860418, - "lon": 0.0138163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60851701, - "lat": 52.1879893, - "lon": 0.0266536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB23 267D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60852075, - "lat": 52.5607206, - "lon": -1.8937341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "postal_code": "B43", - "ref": "B43 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60852988, - "lat": 51.0919320, - "lon": -0.0765159, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "299336375084067", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH19 11", - "survey:date": "2021-03-13" - } -}, -{ - "type": "node", - "id": 60852997, - "lat": 51.1017862, - "lon": -0.0853415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH10 108" - } -}, -{ - "type": "node", - "id": 60855835, - "lat": 51.5245555, - "lon": -2.5004465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS36 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60856308, - "lat": 51.1078741, - "lon": -0.0870103, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH11 69" - } -}, -{ - "type": "node", - "id": 60856384, - "lat": 51.0146677, - "lon": -0.1354667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH17 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 60856386, - "lat": 51.0242575, - "lon": -0.1399424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60858254, - "lat": 51.0575502, - "lon": -0.1076624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH17 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60858522, - "lat": 51.5278708, - "lon": -2.4971583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS36 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60859769, - "lat": 52.5572038, - "lon": -1.8840040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 909", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60859793, - "lat": 52.5572233, - "lon": -1.8903940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 549", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60860355, - "lat": 51.5225686, - "lon": -2.5564760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS34 645", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 60892496, - "lat": 54.3295551, - "lon": -2.7472096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LA9", - "ref": "LA9 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60892506, - "lat": 54.3261872, - "lon": -2.7475163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "LA9", - "ref": "LA9 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60892507, - "lat": 54.3250638, - "lon": -2.7437730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2672249226398837", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "LA9 2", - "survey:date": "2020-07-02" - } -}, -{ - "type": "node", - "id": 60892529, - "lat": 54.3279595, - "lon": -2.7461477, - "tags": { - "amenity": "post_box", - "ref": "LA9 182" - } -}, -{ - "type": "node", - "id": 60902401, - "lat": 54.2023713, - "lon": -2.8344875, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "LA5", - "ref": "LA5 126" - } -}, -{ - "type": "node", - "id": 60902409, - "lat": 54.1976302, - "lon": -2.8425012, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "LA5", - "ref": "LA5 56" - } -}, -{ - "type": "node", - "id": 60908975, - "lat": 51.4752199, - "lon": -2.6078822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "BS6 311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 60935684, - "lat": 51.8042108, - "lon": -0.0275848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60940178, - "lat": 51.8058440, - "lon": -0.0321501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60942286, - "lat": 51.3510601, - "lon": -0.2079968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 60957492, - "lat": 53.3770418, - "lon": -2.3191653, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 60957706, - "lat": 53.3740105, - "lon": -2.3149767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 61083598, - "lat": 51.3118071, - "lon": 0.8908657, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "ME13", - "ref": "ME13 1", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-20" - } -}, -{ - "type": "node", - "id": 61106904, - "lat": 52.5309987, - "lon": -1.8734351, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B23 1012" - } -}, -{ - "type": "node", - "id": 61106906, - "lat": 52.5227997, - "lon": -1.8730490, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B23 629", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 61106914, - "lat": 52.5264104, - "lon": -1.8682055, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d", - "postal_code": "B23", - "ref": "B23 628" - } -}, -{ - "type": "node", - "id": 61106925, - "lat": 52.5276114, - "lon": -1.8629784, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d", - "postal_code": "B23", - "ref": "B23 488" - } -}, -{ - "type": "node", - "id": 61106928, - "lat": 52.5311147, - "lon": -1.8586316, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 856" - } -}, -{ - "type": "node", - "id": 61282220, - "lat": 51.6011065, - "lon": -0.3386399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HA3 48D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 61282225, - "lat": 51.5976424, - "lon": -0.3369491, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 381D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 61712846, - "lat": 53.3405483, - "lon": -2.8585756, - "tags": { - "amenity": "post_box", - "ref": "L24 429" - } -}, -{ - "type": "node", - "id": 63300811, - "lat": 52.5248249, - "lon": -1.8588536, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B23", - "ref": "B23 112" - } -}, -{ - "type": "node", - "id": 63300892, - "lat": 52.5247836, - "lon": -1.8404780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B23", - "ref": "B23 8008", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 63300893, - "lat": 52.5247757, - "lon": -1.8404900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B23", - "ref": "B23 238" - } -}, -{ - "type": "node", - "id": 63358018, - "lat": 52.5245586, - "lon": -1.8451834, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 187" - } -}, -{ - "type": "node", - "id": 63358028, - "lat": 52.5252803, - "lon": -1.8490187, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 984" - } -}, -{ - "type": "node", - "id": 63358042, - "lat": 52.5269504, - "lon": -1.8545699, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 383" - } -}, -{ - "type": "node", - "id": 64479391, - "lat": 55.9388546, - "lon": -3.2286992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "EH11 537" - } -}, -{ - "type": "node", - "id": 64488579, - "lat": 55.9436241, - "lon": -3.2320691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "mapillary": "2581466505371271", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 443", - "source": "survey", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 64746053, - "lat": 52.0809887, - "lon": -0.8893733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 180" - } -}, -{ - "type": "node", - "id": 64775504, - "lat": 52.0476037, - "lon": -0.9138598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 64798165, - "lat": 52.5201341, - "lon": -1.8595879, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 343" - } -}, -{ - "type": "node", - "id": 64798171, - "lat": 52.5198240, - "lon": -1.8645189, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 589" - } -}, -{ - "type": "node", - "id": 64798185, - "lat": 52.5174536, - "lon": -1.8563862, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B23 152", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 64798191, - "lat": 52.5167024, - "lon": -1.8609962, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 456" - } -}, -{ - "type": "node", - "id": 64812866, - "lat": 51.4324815, - "lon": -0.0409707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Stamp indicator", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 65187729, - "lat": 53.3762812, - "lon": -2.9602185, - "tags": { - "amenity": "post_box", - "ref": "L17 267" - } -}, -{ - "type": "node", - "id": 65201999, - "lat": 50.8237505, - "lon": -3.3420557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 65202003, - "lat": 50.8176398, - "lon": -3.3475188, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "EX15 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 66537409, - "lat": 56.1332799, - "lon": -3.3074671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 65D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 66554572, - "lat": 52.2029152, - "lon": 0.1176971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 105D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 66555389, - "lat": 52.2043934, - "lon": 0.1173497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "drive_through": "no", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source:detail": "survey" - } -}, -{ - "type": "node", - "id": 66555812, - "lat": 52.2034801, - "lon": 0.1186671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB2 3", - "ref": "CB2 103D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 66556231, - "lat": 52.2051856, - "lon": 0.1187111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 3", - "ref": "CB2 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 66560273, - "lat": 52.2072136, - "lon": 0.1181117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 67266087, - "lat": 52.5539585, - "lon": -1.8923500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B44", - "ref": "B44 1060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:collection_times": "survey February 2023" - } -}, -{ - "type": "node", - "id": 67266200, - "lat": 52.5507389, - "lon": -1.8979623, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B44", - "ref": "B44 937", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 67731183, - "lat": 52.0957452, - "lon": -0.8834346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 68752320, - "lat": 53.8066245, - "lon": -3.0253195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 68752659, - "lat": 53.8110090, - "lon": -3.0282125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 68760729, - "lat": 53.8037429, - "lon": -3.0259621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 68899771, - "lat": 51.5194896, - "lon": -2.5422773, - "tags": { - "amenity": "post_box", - "ref": "BS34 665" - } -}, -{ - "type": "node", - "id": 69140555, - "lat": 51.3710382, - "lon": -0.1757813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 69140620, - "lat": 51.3684823, - "lon": -0.1827602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 69307494, - "lat": 51.3675536, - "lon": -0.1860270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SM1 292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 69394243, - "lat": 51.3696251, - "lon": -0.1876552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 69480607, - "lat": 53.4025050, - "lon": -1.4984838, - "tags": { - "amenity": "post_box", - "ref": "S6 1613" - } -}, -{ - "type": "node", - "id": 69589588, - "lat": 53.3834803, - "lon": -1.4703783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 362D;S1 1362D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 69675478, - "lat": 53.3801230, - "lon": -1.4804603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 48;S1 4899", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 69702551, - "lat": 53.3803753, - "lon": -1.4843993, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-01", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "note": "strange squarish shaped postbox", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "S3 5399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 69750422, - "lat": 53.3836403, - "lon": -1.4681097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate:date": "2021-03-11", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 5699;S1 1569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-07-26" - } -}, -{ - "type": "node", - "id": 70724502, - "lat": 51.8170000, - "lon": -0.0428563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "In a dedicated pillar at the left pillar of cemetery gates", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG12 94D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 70785948, - "lat": 53.3826285, - "lon": -1.4698103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "postal_code": "S1", - "ref": "S1 302", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 70845310, - "lat": 53.3820675, - "lon": -1.4830805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S3", - "ref": "S3 674D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 70880355, - "lat": 52.5181814, - "lon": -1.7418490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "B46", - "ref": "B46 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 70911577, - "lat": 53.3802501, - "lon": -1.4728529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "colour": "gold", - "note": "Gold coloured in honour of Jessica Ennis", - "postal_code": "S1", - "ref": "S1 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 71068191, - "lat": 51.0742953, - "lon": -1.3455838, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71097108, - "lat": 53.3373018, - "lon": -2.8046352, - "tags": { - "amenity": "post_box", - "ref": "L24 979" - } -}, -{ - "type": "node", - "id": 71131984, - "lat": 53.3547031, - "lon": -2.7977626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 71207414, - "lat": 52.5169558, - "lon": -1.7489344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "B46", - "ref": "B46 648", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71256434, - "lat": 52.5246250, - "lon": -1.8338099, - "tags": { - "amenity": "post_box", - "ref": "B24 325" - } -}, -{ - "type": "node", - "id": 71256454, - "lat": 52.5225399, - "lon": -1.8306372, - "tags": { - "amenity": "post_box", - "ref": "B24 443" - } -}, -{ - "type": "node", - "id": 71330133, - "lat": 53.4092857, - "lon": -1.4984752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S6 286D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 71561405, - "lat": 51.0688082, - "lon": -1.3423436, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO22 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71561407, - "lat": 51.0735754, - "lon": -1.3366037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO22 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71561424, - "lat": 51.0699268, - "lon": -1.3471073, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO22 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71561543, - "lat": 51.0683265, - "lon": -1.3263956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 103D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 71633385, - "lat": 51.0791924, - "lon": -1.3425450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "925875398118351", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO22 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 71633390, - "lat": 51.0853577, - "lon": -1.3364337, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71633589, - "lat": 51.0649410, - "lon": -1.3097669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 71633629, - "lat": 51.0662820, - "lon": -1.3163308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "name": "City Road", - "note": "The location of this postbox does not agree to the Royal Mail coordinates, however the surveyed location to the north of City Road next to the Baptist Church is correct", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 71906902, - "lat": 52.1537363, - "lon": -1.2752544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 172" - } -}, -{ - "type": "node", - "id": 72735990, - "lat": 55.8490416, - "lon": -4.3452013, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 72960398, - "lat": 51.0946365, - "lon": 1.1154544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT18", - "ref": "CT18 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 72979881, - "lat": 51.0739887, - "lon": 1.1571092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT20", - "ref": "CT20 8", - "source": "survey" - } -}, -{ - "type": "node", - "id": 72993759, - "lat": 51.5510941, - "lon": 0.4376701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 73011489, - "lat": 51.0825798, - "lon": 1.1889459, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 73013573, - "lat": 51.0838723, - "lon": 1.1959066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 73113470, - "lat": 51.0670352, - "lon": -1.3123404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "name": "Gordon Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 73113476, - "lat": 51.0678115, - "lon": -1.3150356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "name": "Hyde Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 73113493, - "lat": 51.0581990, - "lon": -1.3117550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Wolvesey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 246", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 73128017, - "lat": 55.8636118, - "lon": -4.2175476, - "tags": { - "amenity": "post_box", - "postal_code": "G31", - "ref": "G31 427" - } -}, -{ - "type": "node", - "id": 73128022, - "lat": 55.8632499, - "lon": -4.2126230, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "G31", - "ref": "G31 351" - } -}, -{ - "type": "node", - "id": 73279220, - "lat": 51.1887522, - "lon": 0.2446299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TN11 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 73817517, - "lat": 51.0622659, - "lon": -1.3067589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 73847029, - "lat": 51.0621713, - "lon": -1.2969815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 231", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "wikidata": "Q113701454" - } -}, -{ - "type": "node", - "id": 73847102, - "lat": 51.0606542, - "lon": -1.2980316, - "tags": { - "amenity": "post_box", - "mapillary": "551419812785232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 34", - "survey:date": "2021-08-22" - } -}, -{ - "type": "node", - "id": 73850872, - "lat": 51.0597454, - "lon": -1.2956128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 64", - "ref:GB:uprn": "10015840788", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 73881315, - "lat": 51.0577003, - "lon": -1.2991390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 73881422, - "lat": 51.0782524, - "lon": -1.3251043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1154721268400199", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO22 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 74015044, - "lat": 51.0749856, - "lon": -1.3180177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 76D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 74054166, - "lat": 51.0761234, - "lon": -1.3130223, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "note": "The previous editor describes this postbox as being of a lamp design; when I used this postbox on 31.08.2019 it is a pillar design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 74091893, - "lat": 51.0654873, - "lon": -1.3041054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 36D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 74164913, - "lat": 52.5361336, - "lon": -1.8890327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 325", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 74164973, - "lat": 52.5395266, - "lon": -1.8909001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B44 1146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 74165001, - "lat": 52.5407854, - "lon": -1.8931735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "postal_code": "B44", - "ref": "B44 758", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 74165084, - "lat": 52.5402334, - "lon": -1.8978515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "created_by": "JOSM", - "postal_code": "B44", - "ref": "B44 912" - } -}, -{ - "type": "node", - "id": 74165113, - "lat": 52.5441481, - "lon": -1.8948641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "note": "missing as of 2024-02 ; replaced 2024-05", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 74165175, - "lat": 52.5476268, - "lon": -1.8922260, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B44", - "ref": "B44 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:collection_times": "survey February 2023", - "wikimedia_commons": "File:Post box B44 123 - 2021-02-08 - Andy Mabbett.jpg" - } -}, -{ - "type": "node", - "id": 75069669, - "lat": 51.0681224, - "lon": -1.2984931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 276" - } -}, -{ - "type": "node", - "id": 75108135, - "lat": 51.5178117, - "lon": -0.1185289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1V 32;WC1V 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 75312138, - "lat": 50.3708047, - "lon": -4.1190172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL4 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 75542832, - "lat": 51.0643470, - "lon": -1.3019998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 76027023, - "lat": 52.4814950, - "lon": -1.9627093, - "tags": { - "amenity": "post_box", - "ref": "B17 186" - } -}, -{ - "type": "node", - "id": 76027027, - "lat": 52.4864295, - "lon": -1.9611317, - "tags": { - "amenity": "post_box", - "ref": "B66 546" - } -}, -{ - "type": "node", - "id": 76028378, - "lat": 52.4757846, - "lon": -1.9659425, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 76471737, - "lat": 50.3220389, - "lon": -4.0752792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL9 724D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:date": "2015-10-03", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 76476012, - "lat": 50.8978324, - "lon": -1.3970861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 237D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 76479287, - "lat": 52.4818862, - "lon": -1.9482330, - "tags": { - "amenity": "post_box", - "ref": "B16 216" - } -}, -{ - "type": "node", - "id": 76480461, - "lat": 52.4745108, - "lon": -1.9444283, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 258" - } -}, -{ - "type": "node", - "id": 76504919, - "lat": 51.5264208, - "lon": -2.4826125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 08:15", - "drive_through": "no", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS36", - "ref": "BS36 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-11-22", - "wikimedia_commons": "File:Old telephone box - geograph.org.uk - 2763595.jpg" - } -}, -{ - "type": "node", - "id": 76581373, - "lat": 52.5570270, - "lon": -1.9050028, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B43", - "ref": "B43 861" - } -}, -{ - "type": "node", - "id": 76581484, - "lat": 52.5573615, - "lon": -1.9158890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B43", - "ref": "B43 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 76581505, - "lat": 52.5531872, - "lon": -1.9096435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "B43 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 76581538, - "lat": 52.5542158, - "lon": -1.9014951, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 888", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 76581546, - "lat": 52.5500839, - "lon": -1.9061777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "COVID priority, Sat, Sun", - "postal_code": "B44", - "ref": "B44 1373" - } -}, -{ - "type": "node", - "id": 76800149, - "lat": 51.2516084, - "lon": -0.5863459, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-02-20", - "old_ref": "GU2 282", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU2", - "ref": "GU2 282D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 77100956, - "lat": 53.3942086, - "lon": -2.3063646, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4a" - } -}, -{ - "type": "node", - "id": 77922306, - "lat": 55.8371804, - "lon": -4.3417064, - "tags": { - "amenity": "post_box", - "ref": "G53 1178" - } -}, -{ - "type": "node", - "id": 77955137, - "lat": 52.7921158, - "lon": -2.0791359, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 78289507, - "lat": 52.1734636, - "lon": -1.2173936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN11 112" - } -}, -{ - "type": "node", - "id": 79722663, - "lat": 52.4790656, - "lon": -1.9533599, - "tags": { - "amenity": "post_box", - "ref": "B16 317" - } -}, -{ - "type": "node", - "id": 80292491, - "lat": 51.0867956, - "lon": -0.7576195, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post_Box_GU27_29D_Hammer_Vale,_Hampshire.jpg" - } -}, -{ - "type": "node", - "id": 81231520, - "lat": 56.1225742, - "lon": -3.3116983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY5 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 81317781, - "lat": 51.0333338, - "lon": -0.0314319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81317994, - "lat": 51.0362832, - "lon": -0.0224766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81318010, - "lat": 51.0514550, - "lon": -0.0029102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81325021, - "lat": 51.0764418, - "lon": -0.0427656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81325101, - "lat": 51.0748087, - "lon": -0.0275783, - "tags": { - "amenity": "post_box", - "ref": "RH19 15" - } -}, -{ - "type": "node", - "id": 81325145, - "lat": 51.0755997, - "lon": -0.0010746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH18 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81327927, - "lat": 51.0625298, - "lon": -0.0030994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81335755, - "lat": 51.7438717, - "lon": -1.2352124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 88" - } -}, -{ - "type": "node", - "id": 81412244, - "lat": 53.3973504, - "lon": -2.3032915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 81442695, - "lat": 53.3999288, - "lon": -2.3039420, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81447515, - "lat": 52.0249433, - "lon": 0.0332310, - "tags": { - "amenity": "post_box", - "ref": "SG8 254" - } -}, -{ - "type": "node", - "id": 81447518, - "lat": 52.0204389, - "lon": 0.0397676, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81447633, - "lat": 52.0216312, - "lon": 0.0506828, - "tags": { - "amenity": "post_box", - "ref": "SG8 241" - } -}, -{ - "type": "node", - "id": 81448153, - "lat": 52.0165638, - "lon": 0.0658097, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 81448184, - "lat": 52.0183365, - "lon": 0.0931159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "name": "Building End", - "ref": "SG8 409" - } -}, -{ - "type": "node", - "id": 81448225, - "lat": 52.0343421, - "lon": 0.1056861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 424", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 81448324, - "lat": 52.0369644, - "lon": 0.0842924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "name": "Chrishall Road, Heydon", - "ref": "SG8 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81448360, - "lat": 52.0299733, - "lon": 0.0727454, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81448403, - "lat": 52.0276586, - "lon": 0.0768732, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 305" - } -}, -{ - "type": "node", - "id": 81514263, - "lat": 52.0105120, - "lon": -0.0645065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81574877, - "lat": 54.7770450, - "lon": -1.5754554, - "tags": { - "addr:city": "Durham", - "addr:postcode": "DH1 3NJ", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH1 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81590074, - "lat": 51.4842222, - "lon": 0.3359947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 37" - } -}, -{ - "type": "node", - "id": 81625544, - "lat": 51.3568420, - "lon": 1.1120510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81648485, - "lat": 51.3586493, - "lon": 1.0975774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 81667209, - "lat": 52.7749431, - "lon": 1.5183984, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 81670149, - "lat": 52.7751955, - "lon": 1.5257702, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 82143213, - "lat": 52.0747025, - "lon": -1.2725617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX17 1021D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82183708, - "lat": 52.0701821, - "lon": -1.2669829, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 82335091, - "lat": 52.0726114, - "lon": -1.2734618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX17 1058", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82513877, - "lat": 50.8592282, - "lon": 0.0703743, - "tags": { - "amenity": "post_box", - "ref": "BN8 561" - } -}, -{ - "type": "node", - "id": 82529704, - "lat": 52.9397580, - "lon": 1.2376900, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 82538439, - "lat": 51.3757434, - "lon": -0.1774220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82587011, - "lat": 51.3723535, - "lon": -0.1845655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 283", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 82593980, - "lat": 52.9388785, - "lon": 1.2199405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR26 2617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 82627408, - "lat": 51.3625895, - "lon": -0.1928030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82627447, - "lat": 51.3620653, - "lon": -0.2042474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82635079, - "lat": 56.1227921, - "lon": -3.3173607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 132D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82701641, - "lat": 51.5748164, - "lon": -0.1398061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "ref": "N6 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 82754273, - "lat": 54.0811950, - "lon": -0.1953209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 11", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 82772087, - "lat": 51.6206805, - "lon": -0.3505791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HA3 83D" - } -}, -{ - "type": "node", - "id": 83163809, - "lat": 52.0721629, - "lon": -1.2661159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX17 1121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 83579309, - "lat": 52.7697170, - "lon": 1.5230590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "created_by": "JOSM", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 83736781, - "lat": 51.3638731, - "lon": -0.0915539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 84445290, - "lat": 53.8135672, - "lon": -1.5437563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 180", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 84727959, - "lat": 53.3746199, - "lon": -2.9142973, - "tags": { - "amenity": "post_box", - "ref": "L18 433" - } -}, -{ - "type": "node", - "id": 84754093, - "lat": 53.3755442, - "lon": -2.9252237, - "tags": { - "amenity": "post_box", - "ref": "L17 879" - } -}, -{ - "type": "node", - "id": 84759928, - "lat": 52.7765227, - "lon": 1.5125756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 84803411, - "lat": 51.5093052, - "lon": -3.1274112, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 84893444, - "lat": 53.3489003, - "lon": -3.0125463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00", - "description": "GR type B post box CH63 411 by Carron Company at junction of Cross Lane and Heath Road, Lower Bebington.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 411", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Cross Lane, Lower Bebington.jpg" - } -}, -{ - "type": "node", - "id": 84899336, - "lat": 51.7085798, - "lon": -0.6073578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 84903551, - "lat": 53.4016022, - "lon": -2.3107946, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4a" - } -}, -{ - "type": "node", - "id": 84904125, - "lat": 53.4010180, - "lon": -2.3051650, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4a" - } -}, -{ - "type": "node", - "id": 85345586, - "lat": 53.8217921, - "lon": -1.5593143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-07-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 85945737, - "lat": 51.8182075, - "lon": -0.0332689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 86144552, - "lat": 54.0906639, - "lon": -0.1794294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 86164964, - "lat": 51.3745593, - "lon": -0.1848888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 86165002, - "lat": 51.3780494, - "lon": -0.1873799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 149D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 86165094, - "lat": 51.3732767, - "lon": -0.1883672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 86625077, - "lat": 51.6221889, - "lon": -4.0249506, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 86625085, - "lat": 51.6179414, - "lon": -4.0179418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SA2 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 86625086, - "lat": 51.6127660, - "lon": -4.0034952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 86625089, - "lat": 51.6064081, - "lon": -3.9966905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "ref": "SA2 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 86671632, - "lat": 51.7414393, - "lon": -1.2371378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "OX4 50", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 86943446, - "lat": 52.3215234, - "lon": 1.5981259, - "tags": { - "amenity": "post_box", - "ref": "IP19 5503" - } -}, -{ - "type": "node", - "id": 87288375, - "lat": 53.2430781, - "lon": -2.5084510, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 87304850, - "lat": 52.0807808, - "lon": -0.0381057, - "tags": { - "amenity": "post_box", - "ref": "SG8 285" - } -}, -{ - "type": "node", - "id": 87321347, - "lat": 51.2455336, - "lon": -0.5813880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15, Sa 13:00", - "last_checked": "2021-08-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "GU1", - "ref": "GU1 9992;GU1 999", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 87344848, - "lat": 52.0764683, - "lon": -0.0530224, - "tags": { - "amenity": "post_box", - "ref": "SG8 740" - } -}, -{ - "type": "node", - "id": 87344977, - "lat": 52.0851498, - "lon": -0.0610981, - "tags": { - "amenity": "post_box", - "ref": "SG8 292" - } -}, -{ - "type": "node", - "id": 87873845, - "lat": 52.2201679, - "lon": 0.1116563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "ref and collection_times same for both boxes (later) ref not currently visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB4 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:collection_times": "survey" - } -}, -{ - "type": "node", - "id": 87935167, - "lat": 58.8992344, - "lon": -2.8673566, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 87935353, - "lat": 58.8367290, - "lon": -2.9188819, - "tags": { - "amenity": "post_box", - "postal_code": "KW17", - "ref": "KW17 87" - } -}, -{ - "type": "node", - "id": 87935429, - "lat": 58.9807328, - "lon": -2.9670310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW15 127", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 88120058, - "lat": 53.3757207, - "lon": -2.9095710, - "tags": { - "amenity": "post_box", - "ref": "L18 683" - } -}, -{ - "type": "node", - "id": 88127871, - "lat": 57.6438199, - "lon": -3.2864157, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 88376094, - "lat": 51.0911856, - "lon": 1.1456968, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 56", - "source": "survey" - } -}, -{ - "type": "node", - "id": 88544521, - "lat": 53.7928619, - "lon": -0.8477701, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 88610914, - "lat": 54.0939392, - "lon": -0.2032147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 89066472, - "lat": 52.1648027, - "lon": -1.2982545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 240" - } -}, -{ - "type": "node", - "id": 89152229, - "lat": 51.8147794, - "lon": -0.0315539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 89193465, - "lat": 51.8143284, - "lon": -0.0227970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "http://mapillary.com/map/im/uHyM2-vs--jI4zY-g4Eqdg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 89200084, - "lat": 51.8141955, - "lon": -0.0274651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 89981302, - "lat": 50.7911722, - "lon": -1.1020059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 89996032, - "lat": 51.8150512, - "lon": -0.0163613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SG12 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 90062605, - "lat": 51.4256287, - "lon": 0.5727263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 111" - } -}, -{ - "type": "node", - "id": 90083973, - "lat": 51.3741076, - "lon": 0.6193428, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 53" - } -}, -{ - "type": "node", - "id": 90095679, - "lat": 51.3767648, - "lon": 0.7293472, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME9 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 90145292, - "lat": 51.4383646, - "lon": 0.7572736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 90149848, - "lat": 51.4293410, - "lon": 0.7491078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 90239797, - "lat": 50.7967729, - "lon": -1.1044674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 90315863, - "lat": 54.7680613, - "lon": -1.5700498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 45" - } -}, -{ - "type": "node", - "id": 90363200, - "lat": 52.5625284, - "lon": -0.3066751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:45", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE2 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 90585399, - "lat": 52.2771322, - "lon": -0.3362221, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.4b" - } -}, -{ - "type": "node", - "id": 91189186, - "lat": 51.5576795, - "lon": -0.0790073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 91189190, - "lat": 51.5561485, - "lon": -0.0789958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "N16 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q26520911" - } -}, -{ - "type": "node", - "id": 91547695, - "lat": 52.4732061, - "lon": -1.9545773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 91686294, - "lat": 52.1178002, - "lon": -1.2074113, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 91931812, - "lat": 51.3704932, - "lon": -0.1584779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SM6", - "ref": "SM6 151", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 93389520, - "lat": 50.8616845, - "lon": -0.9881379, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO9 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 93389724, - "lat": 50.8634948, - "lon": -0.9826715, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 93389949, - "lat": 50.8650563, - "lon": -0.9905363, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 93417417, - "lat": 50.8602813, - "lon": -0.9779069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 93420212, - "lat": 50.8552263, - "lon": -0.9807650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 93879192, - "lat": 53.0493001, - "lon": -2.1240768, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 94275427, - "lat": 54.7746866, - "lon": -1.5753207, - "tags": { - "addr:city": "Durham", - "addr:postcode": "DH1 3RL", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "flickr": "https://www.flickr.com/photos/32159881@N03/5042486340", - "operator": "Royal Mail", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "DH1 359D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 94963245, - "lat": 50.8508711, - "lon": -0.9782928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "description": "This Postbox has the latest collection in this area.", - "last_checked": "2021-05-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO9 9991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 95222962, - "lat": 53.9675578, - "lon": -1.0635345, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-21", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 7TA", - "ref": "YO31 158", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 95677462, - "lat": 55.9402677, - "lon": -3.1760251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "816832872277836", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 65", - "royal_cypher": "scottish_crown", - "source": "Bing;survey", - "survey:date": "2020-06-24" - } -}, -{ - "type": "node", - "id": 95920519, - "lat": 50.7998454, - "lon": -1.1029825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 95922540, - "lat": 50.7997443, - "lon": -1.0974289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-10-16", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 96053795, - "lat": 51.8256361, - "lon": -1.3736898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "OX29", - "ref": "OX29 672", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 96254142, - "lat": 54.0844096, - "lon": -0.5329461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "YO25 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 96504649, - "lat": 50.8554361, - "lon": -1.0011496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO9 11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 96518525, - "lat": 52.1208529, - "lon": 0.3646378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96518536, - "lat": 52.1170241, - "lon": 0.3543715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB21 522", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96518559, - "lat": 52.1073177, - "lon": 0.3565164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB21 379", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96518590, - "lat": 52.1000744, - "lon": 0.3525654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB21 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96518627, - "lat": 52.0919085, - "lon": 0.3619565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96519050, - "lat": 52.0652764, - "lon": 0.3812855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96519087, - "lat": 52.0632746, - "lon": 0.3797693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB21 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96519128, - "lat": 52.0554502, - "lon": 0.3511374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96519148, - "lat": 52.0787128, - "lon": 0.3588964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96519153, - "lat": 52.0831768, - "lon": 0.3105309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB21 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 96612041, - "lat": 51.5121584, - "lon": -2.5128248, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS16 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 96620139, - "lat": 51.5293251, - "lon": -2.4976339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-02-06", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS36", - "ref": "BS36 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 97126586, - "lat": 54.0473832, - "lon": -2.7975051, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 97126727, - "lat": 54.0461484, - "lon": -2.7883369, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 97768138, - "lat": 52.5139366, - "lon": -1.7410266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B46", - "ref": "B46 812", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 97768400, - "lat": 52.5169639, - "lon": -1.7302623, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B46", - "ref": "B46 1175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 97768528, - "lat": 52.5159604, - "lon": -1.7347990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B46 1169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 97793081, - "lat": 53.2538770, - "lon": -1.7623717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SK16 46D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 97793094, - "lat": 53.2570193, - "lon": -1.7875505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK17 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 97954539, - "lat": 51.7984014, - "lon": -0.0774407, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG14 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 97972221, - "lat": 50.8902994, - "lon": -0.7920440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 97998249, - "lat": 50.8352710, - "lon": -0.8375861, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 98160772, - "lat": 51.5692918, - "lon": -0.1419473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 98160780, - "lat": 51.5703390, - "lon": -0.1460519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 98326551, - "lat": 51.8020070, - "lon": -0.0525012, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 98855320, - "lat": 52.9512244, - "lon": -1.1376295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:30", - "note": "moved 2015-06-04 to make way for construction of BioCoity's extension", - "post_box:type": "pillar", - "ref": "NG1 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 99133175, - "lat": 52.6499676, - "lon": -1.8521966, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "WS14", - "ref": "WS14 44" - } -}, -{ - "type": "node", - "id": 99133190, - "lat": 52.6570519, - "lon": -1.8505969, - "tags": { - "amenity": "post_box", - "postal_code": "WS14", - "ref": "WS14 49" - } -}, -{ - "type": "node", - "id": 99133237, - "lat": 52.6564366, - "lon": -1.8583136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "WS14", - "ref": "WS14 24" - } -}, -{ - "type": "node", - "id": 99391474, - "lat": 52.6354053, - "lon": -1.8446592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WS14 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 99391479, - "lat": 52.6374367, - "lon": -1.8347923, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WS14", - "ref": "WS14 64", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 100505774, - "lat": 51.5694386, - "lon": -0.1239832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "N19 1" - } -}, -{ - "type": "node", - "id": 100505801, - "lat": 51.5699718, - "lon": -0.1286561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "N19 16", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 100551277, - "lat": 54.1118501, - "lon": -0.4187949, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 100571705, - "lat": 54.0902948, - "lon": -0.1980426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 48", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 101033252, - "lat": 56.0093534, - "lon": -3.5835272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 101537206, - "lat": 52.1352663, - "lon": -0.0076245, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 741", - "source": "survey" - } -}, -{ - "type": "node", - "id": 102211308, - "lat": 55.9405261, - "lon": -4.3196963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "G62 840" - } -}, -{ - "type": "node", - "id": 102985854, - "lat": 53.0481650, - "lon": -2.1718195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-05-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "ST6 611D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ST6", - "ref": "ST6 611D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 103172428, - "lat": 52.0205623, - "lon": -2.0347359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL20 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 103172603, - "lat": 52.0330245, - "lon": -2.0810097, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 103819495, - "lat": 53.2786865, - "lon": -2.5790495, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 104069752, - "lat": 52.1479444, - "lon": -1.2082687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 105626417, - "lat": 51.2633790, - "lon": -0.5957360, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-04", - "old_ref": "GU2 139", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU2 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 105648092, - "lat": 51.5362432, - "lon": -2.4866836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS36", - "ref": "BS36 357", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 105660761, - "lat": 51.5296013, - "lon": -2.4742130, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "633705474918984", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BS36 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 105660774, - "lat": 51.5271250, - "lon": -2.5047897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS36 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 105717178, - "lat": 53.3709924, - "lon": -3.0188159, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type A post box CH42 145 on Bedford Avenue, Rock Ferry.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Bedford Avenue, Rock Ferry.jpg" - } -}, -{ - "type": "node", - "id": 105844803, - "lat": 53.4925769, - "lon": -3.0476763, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "L23", - "ref": "L23 379" - } -}, -{ - "type": "node", - "id": 105845190, - "lat": 51.7897163, - "lon": -0.0696829, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG13 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 105848003, - "lat": 53.4961688, - "lon": -3.0504736, - "tags": { - "amenity": "post_box", - "postal_code": "L23", - "ref": "L23 380" - } -}, -{ - "type": "node", - "id": 105859074, - "lat": 53.3972843, - "lon": -2.9802622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box L1 539 on St James Street, Chinatown, Liverpool", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L1 539", - "wikimedia_commons": "File:Post box in St James Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 105942973, - "lat": 51.7932713, - "lon": -0.0740744, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG13 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 105997911, - "lat": 51.7861097, - "lon": -0.0862712, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 106012218, - "lat": 51.7859345, - "lon": -0.0828065, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 106047415, - "lat": 53.3873287, - "lon": -0.3619177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "mapillary": "3993658927395651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "LN8 367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 106372962, - "lat": 51.7634222, - "lon": -0.0423150, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 106433261, - "lat": 52.4898983, - "lon": -1.9566938, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B66 565", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 107348997, - "lat": 53.3726855, - "lon": -2.9305910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 19:00", - "ref": "L17 319", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 107605949, - "lat": 51.5230752, - "lon": 0.4016748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 107610623, - "lat": 53.3911930, - "lon": -2.9715708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR postbox L8 697 on Park Place, Dingle, Liverpool near junction with Warwick Street & Upper Warwick Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 697", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L8 697 on Park Place, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 107768956, - "lat": 53.4753820, - "lon": -3.0258100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type C double aperture post box L22 396 & L22 1396 by Lion Foundry of Kirkintilloch at the front of Waterloo Post Office, Lorne Road. Replaced a Penfold.", - "manufacturer": "Lion Foundry of Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "L22", - "ref": "L22 396;L22 1396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Waterloo Post Office, Merseyside.jpg" - } -}, -{ - "type": "node", - "id": 107768958, - "lat": 53.4784757, - "lon": -3.0261718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "QEII Type K post box L22 599 by Lion Foundry of Kirkintilloch on St John's Road, Waterloo.", - "manufacturer": "Lion Foundry of Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "L22", - "ref": "L22 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on St John's Road, Waterloo.jpg" - } -}, -{ - "type": "node", - "id": 107769001, - "lat": 53.4822309, - "lon": -3.0328973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "EIIR type B post box L22 926 by Carron Company on Brooke Road East at Worcester Avenue, Crosby", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "L22", - "ref": "L22 925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Worcester Avenue, Crosby.jpg" - } -}, -{ - "type": "node", - "id": 107800303, - "lat": 53.4752894, - "lon": -3.0273152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR type K post box L22 700 by Abbot Engineering Ltd on Brighton Road outside the Crosby Delivery Office", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "L22", - "ref": "L22 700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 107851634, - "lat": 53.4740121, - "lon": -3.0288532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR wall mounted lamp box L22 366 by Carron Company on Mount Pleasant, Waterloo. Replaced a wall box type B.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L22 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 107851644, - "lat": 53.4760907, - "lon": -3.0344061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "description": "EIIR type B post box L22 26 by Carron Company at Adelaide Terrace, Waterloo", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "L22", - "ref": "L22 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Adelaide Terrace, Waterloo.jpg" - } -}, -{ - "type": "node", - "id": 108035497, - "lat": 51.4758910, - "lon": -0.1307281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 108035522, - "lat": 51.4752669, - "lon": -0.1314217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW8 12;SW8 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 108313673, - "lat": 50.9089632, - "lon": -1.0189574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO8 9", - "ref": "PO8 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 108373136, - "lat": 53.2157982, - "lon": -4.1501785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 110494146, - "lat": 51.7990189, - "lon": -0.0643359, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 110613146, - "lat": 51.7974244, - "lon": -0.0587288, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG13 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 110649308, - "lat": 51.7998356, - "lon": -0.0482898, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 110801340, - "lat": 52.0179928, - "lon": -4.9019008, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 111497235, - "lat": 52.2139005, - "lon": -0.0179977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB23 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111497505, - "lat": 52.2062165, - "lon": -0.0256775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "ref": "CB23 253", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111497548, - "lat": 52.1988311, - "lon": -0.0279201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111497921, - "lat": 52.1795502, - "lon": -0.0872617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111497946, - "lat": 52.1730125, - "lon": -0.0889358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB23 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111498046, - "lat": 52.2014272, - "lon": -0.0559299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111498131, - "lat": 52.2055794, - "lon": -0.0929511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB23 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111498248, - "lat": 52.2119814, - "lon": -0.0950125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB23 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 111762372, - "lat": 50.7941870, - "lon": -1.1035060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 197", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 111763538, - "lat": 50.7896078, - "lon": -1.1053994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 111899509, - "lat": 53.2144261, - "lon": -4.1460242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 112308307, - "lat": 53.1156879, - "lon": -2.6514750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "CW6 302", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 112547999, - "lat": 52.1391505, - "lon": -0.0123457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 413D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 112548049, - "lat": 52.1309403, - "lon": -0.0122354, - "tags": { - "amenity": "post_box", - "ref": "SG8 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 112639031, - "lat": 51.7976177, - "lon": -0.0535415, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG13 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 112639037, - "lat": 51.7980405, - "lon": -0.0481211, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG13 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 112717417, - "lat": 51.3487359, - "lon": -1.1392949, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d", - "postal_code": "RG26", - "ref": "RG26 199" - } -}, -{ - "type": "node", - "id": 114247742, - "lat": 51.5688589, - "lon": -0.1152686, - "tags": { - "amenity": "post_box", - "ref": "N4 12" - } -}, -{ - "type": "node", - "id": 114247750, - "lat": 51.5670547, - "lon": -0.1124098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 17" - } -}, -{ - "type": "node", - "id": 114457608, - "lat": 52.4097625, - "lon": -3.8642911, - "tags": { - "amenity": "post_box", - "ref": "SY23 65" - } -}, -{ - "type": "node", - "id": 114502903, - "lat": 52.4109314, - "lon": -3.9046201, - "tags": { - "amenity": "post_box", - "ref": "SY23 42" - } -}, -{ - "type": "node", - "id": 114503187, - "lat": 52.4120307, - "lon": -3.9298827, - "tags": { - "amenity": "post_box", - "ref": "SY23 161" - } -}, -{ - "type": "node", - "id": 114503596, - "lat": 52.4052492, - "lon": -3.9923555, - "tags": { - "amenity": "post_box", - "ref": "SY23 81" - } -}, -{ - "type": "node", - "id": 114504178, - "lat": 52.3802064, - "lon": -4.0731401, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 142", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 114504207, - "lat": 52.3783253, - "lon": -4.0733436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY23 9", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 114504260, - "lat": 52.3513707, - "lon": -4.1046851, - "tags": { - "amenity": "post_box", - "ref": "SY23 208" - } -}, -{ - "type": "node", - "id": 114527305, - "lat": 52.2848939, - "lon": -4.1743859, - "tags": { - "amenity": "post_box", - "ref": "SY23 231" - } -}, -{ - "type": "node", - "id": 114527375, - "lat": 52.2822703, - "lon": -4.1767891, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY23 64" - } -}, -{ - "type": "node", - "id": 114527840, - "lat": 52.1867810, - "lon": -4.3171880, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 114527869, - "lat": 52.1756404, - "lon": -4.3222785, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 114559627, - "lat": 52.1263168, - "lon": -4.4807589, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 114559833, - "lat": 52.1115578, - "lon": -4.5247466, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 114560040, - "lat": 52.0932490, - "lon": -4.6358896, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 115893149, - "lat": 51.3740418, - "lon": -1.2806701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG19", - "ref": "RG19 303" - } -}, -{ - "type": "node", - "id": 116008667, - "lat": 51.4833989, - "lon": -2.5005414, - "tags": { - "amenity": "post_box", - "mapillary": "468272827602626", - "post_box:type": "pillar", - "ref": "BS16 358", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 116014863, - "lat": 51.5479154, - "lon": -2.4335035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 117728289, - "lat": 51.4653390, - "lon": -2.5282419, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 117980063, - "lat": 51.4749365, - "lon": -2.5139005, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 117980095, - "lat": 51.4911302, - "lon": -2.4940372, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 118037887, - "lat": 51.5197996, - "lon": -2.4645583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS36 503", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 118038104, - "lat": 51.4964808, - "lon": -2.4947333, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 118039009, - "lat": 51.5373184, - "lon": -2.4146750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 557" - } -}, -{ - "type": "node", - "id": 118610816, - "lat": 53.7989966, - "lon": -1.5472393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate:date": "2018-10-03", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "colour": "red", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 96;LS1 1096", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-11-24" - } -}, -{ - "type": "node", - "id": 119194267, - "lat": 51.2611360, - "lon": -0.5805143, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 119204023, - "lat": 51.2590820, - "lon": -0.5872315, - "tags": { - "amenity": "post_box", - "postal_code": "GU2", - "ref": "GU2 244", - "source": "survey" - } -}, -{ - "type": "node", - "id": 119564329, - "lat": 51.8170182, - "lon": -0.7821324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 119594263, - "lat": 51.8118221, - "lon": -0.7756760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 119774039, - "lat": 53.3812955, - "lon": -2.9457267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "L17 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 119774097, - "lat": 53.3828130, - "lon": -2.9444379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "L17 424", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 119798590, - "lat": 53.3845216, - "lon": -2.9513419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "description": "Edward VII post box L17 64 on Parkfield Road near its junction with Ullet Road.", - "name": "Parkfield Road", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L17 64", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box, Parkfield Road.jpg" - } -}, -{ - "type": "node", - "id": 119905348, - "lat": 53.3465716, - "lon": -3.0039980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "description": "King George V Type B post box CH63 412 on Fairacres Road at junction with Church Road, Bebington.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 412", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Fairacres Road, Bebington.jpg" - } -}, -{ - "type": "node", - "id": 119907205, - "lat": 53.4443476, - "lon": -2.9992445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 119910537, - "lat": 53.4379405, - "lon": -2.9959948, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 120066656, - "lat": 52.5520904, - "lon": -0.3053627, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE2 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 120067530, - "lat": 52.5501385, - "lon": -0.2948896, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 120311334, - "lat": 53.7534119, - "lon": -0.4550692, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 120455107, - "lat": 51.4942017, - "lon": -2.6344557, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS9 340", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 121777511, - "lat": 54.0897226, - "lon": -0.1857437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO15 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 121799288, - "lat": 53.3397790, - "lon": -2.9934893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH62 46 at Spital railway station.", - "geograph:id": "6351687", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:detail": "Geograph", - "wikimedia_commons": "File:Post box at Spital station.jpg" - } -}, -{ - "type": "node", - "id": 121810600, - "lat": 51.8151177, - "lon": -0.7928315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 121810648, - "lat": 51.8118352, - "lon": -0.7920026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 122033628, - "lat": 52.5323728, - "lon": -1.7710771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B76", - "ref": "B76 89" - } -}, -{ - "type": "node", - "id": 122897336, - "lat": 52.1757248, - "lon": -1.2968678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 1" - } -}, -{ - "type": "node", - "id": 122917952, - "lat": 52.1786681, - "lon": -1.2960095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 168" - } -}, -{ - "type": "node", - "id": 123984146, - "lat": 51.5463985, - "lon": -0.1690758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW3 39D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 124476827, - "lat": 51.8005405, - "lon": -0.8071373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 125222653, - "lat": 51.0499171, - "lon": 0.1910761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 126402993, - "lat": 50.7866637, - "lon": -1.0597773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 126682667, - "lat": 54.0933544, - "lon": -0.1834191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 126901341, - "lat": 51.2419464, - "lon": -1.1052828, - "tags": { - "amenity": "post_box", - "mapillary": "1420026985065800", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG22", - "ref": "RG22 243", - "survey:date": "2021-05-06" - } -}, -{ - "type": "node", - "id": 128901603, - "lat": 51.9150800, - "lon": -2.2105783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 129742688, - "lat": 51.7410414, - "lon": -2.2843179, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 129742847, - "lat": 51.7361354, - "lon": -2.2889207, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 129772157, - "lat": 51.7128753, - "lon": -2.3317281, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 129797278, - "lat": 51.6967949, - "lon": -2.3554818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 129821868, - "lat": 51.6396901, - "lon": -2.3589475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "GL12 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 129862619, - "lat": 51.2507951, - "lon": -0.1590232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "note": "Collection times taken from corrective sticker effective 21/10/2019", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 129862621, - "lat": 51.2406222, - "lon": -0.1644021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 129939296, - "lat": 51.4327637, - "lon": -0.9625284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "is_in:country": "United Kingdom", - "ref": "RG2 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 129939781, - "lat": 51.2840073, - "lon": 1.0792242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 130009442, - "lat": 51.2832951, - "lon": -0.8487851, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 130009827, - "lat": 51.2531986, - "lon": -1.0873303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "786637982225868", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "RG21", - "ref": "RG21 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-06-23" - } -}, -{ - "type": "node", - "id": 130009831, - "lat": 51.2504014, - "lon": -1.0883107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "franked mail only", - "postal_code": "RG21", - "ref": "RG21 361", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 130011935, - "lat": 52.1332627, - "lon": -0.3757876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "MK44 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 130115248, - "lat": 51.5004507, - "lon": -0.1339324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "old_ref": "SW1 320", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "SW1H 2;SW1H 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;photo" - } -}, -{ - "type": "node", - "id": 130118336, - "lat": 51.5272042, - "lon": -0.7607525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 229D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 130121034, - "lat": 51.5262956, - "lon": -0.7560339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 130157090, - "lat": 51.4192611, - "lon": -0.1712968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 130159483, - "lat": 54.0765472, - "lon": -0.2021460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 130190982, - "lat": 53.3724065, - "lon": -2.9266522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L17 159 on Hillview, junction with North Sudley Road, Aigburth", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "L17 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Postbox on Hillview, Aigburth.jpg" - } -}, -{ - "type": "node", - "id": 130191145, - "lat": 53.3698552, - "lon": -2.9300844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box L17 164 on Aigburth Road at Dundonald Road. ID L17 164 (RM list as Dundonald Street)", - "name": "Dundonald Road", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L17 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 130219423, - "lat": 52.1787851, - "lon": -1.3453496, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CV47 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 130238981, - "lat": 51.2465798, - "lon": -0.6025249, - "tags": { - "amenity": "post_box", - "postal_code": "GU2", - "ref": "GU2 247" - } -}, -{ - "type": "node", - "id": 130239635, - "lat": 51.2525982, - "lon": -0.6024878, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "last_checked": "2021-06-09", - "old_ref": "GU2 11", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GU2", - "ref": "GU2 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 130255450, - "lat": 52.2951136, - "lon": -0.0025546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB24 500", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 130255533, - "lat": 52.2886665, - "lon": -0.0032795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 499D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 130292370, - "lat": 51.4167448, - "lon": -0.1737714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 90" - } -}, -{ - "type": "node", - "id": 130293035, - "lat": 51.9883108, - "lon": -1.1580664, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NN13", - "ref": "NN13 119" - } -}, -{ - "type": "node", - "id": 130330657, - "lat": 51.9625556, - "lon": -1.1618503, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "OX27", - "ref": "OX27 329", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 131943028, - "lat": 51.3219675, - "lon": 0.8742152, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 32", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 32D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 131994768, - "lat": 51.3474152, - "lon": 1.0311721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT5", - "ref": "CT5 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 131994776, - "lat": 51.3502990, - "lon": 1.0214385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132068947, - "lat": 51.3575483, - "lon": 1.0203491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 132221414, - "lat": 51.5187900, - "lon": -0.0530824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132350081, - "lat": 52.2597695, - "lon": -0.0259705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132350224, - "lat": 52.2784825, - "lon": -0.0633799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132350645, - "lat": 52.2556446, - "lon": -0.0725054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB23 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132350827, - "lat": 52.2453535, - "lon": -0.0478325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB23 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132396681, - "lat": 52.4052594, - "lon": -1.8292127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 690", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 132397295, - "lat": 52.4016893, - "lon": -1.8299041, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 962", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132397439, - "lat": 52.4026635, - "lon": -1.8222238, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 711", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132400010, - "lat": 52.3980383, - "lon": -1.8237950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 132456218, - "lat": 51.2525193, - "lon": -0.5799813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "GU1", - "ref": "GU1 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 132474142, - "lat": 51.2565131, - "lon": -0.5733752, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU1 131" - } -}, -{ - "type": "node", - "id": 132487919, - "lat": 51.2611267, - "lon": -0.5727041, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU1 68" - } -}, -{ - "type": "node", - "id": 132564079, - "lat": 51.4189560, - "lon": -0.1772363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 76", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 132587202, - "lat": 51.5285890, - "lon": 0.4739483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SS17 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-01-14" - } -}, -{ - "type": "node", - "id": 132636993, - "lat": 51.4214575, - "lon": -0.1750460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 86" - } -}, -{ - "type": "node", - "id": 132691583, - "lat": 52.0687403, - "lon": -0.0818694, - "tags": { - "amenity": "post_box", - "ref": "SG8 545" - } -}, -{ - "type": "node", - "id": 132725465, - "lat": 50.8708209, - "lon": 0.2513287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 919D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 132725536, - "lat": 50.8785288, - "lon": 0.2468827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 916D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 132726328, - "lat": 50.8778682, - "lon": 0.2548581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 915D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 132764683, - "lat": 51.5709289, - "lon": -0.1245935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "N19 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 133553913, - "lat": 53.8575847, - "lon": -0.7458766, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 134686677, - "lat": 51.5027264, - "lon": -0.2254363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 134903987, - "lat": 51.3834707, - "lon": -0.2896206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 21D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 135437610, - "lat": 51.7659141, - "lon": -0.7388072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 135620717, - "lat": 50.8132146, - "lon": -1.0808173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 248", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 135664950, - "lat": 50.8235545, - "lon": -1.0807458, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO2", - "ref": "PO2 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 136804270, - "lat": 51.3846257, - "lon": -0.2935945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 137481159, - "lat": 52.6025320, - "lon": -1.8889325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "postal_code": "WS9", - "ref": "WS9 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 137483413, - "lat": 52.5625919, - "lon": -1.8198046, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B72", - "ref": "B72 426" - } -}, -{ - "type": "node", - "id": 139373735, - "lat": 55.8581410, - "lon": -4.3342016, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 139877629, - "lat": 52.5936621, - "lon": -1.9202556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "created_by": "JOSM", - "postal_code": "WS9", - "ref": "WS9 47" - } -}, -{ - "type": "node", - "id": 139961169, - "lat": 50.8739961, - "lon": 0.2450479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BN27 917", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 140097353, - "lat": 52.5989576, - "lon": -1.9246560, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 149" - } -}, -{ - "type": "node", - "id": 140097437, - "lat": 52.5975520, - "lon": -1.9137080, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-23", - "created_by": "JOSM", - "postal_code": "WS9", - "ref": "WS9 66" - } -}, -{ - "type": "node", - "id": 140097446, - "lat": 52.6001471, - "lon": -1.9166394, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-20", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "postal_code": "WS9", - "ref": "WS9 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 140097585, - "lat": 52.6043747, - "lon": -1.9184743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "postal_code": "WS9", - "ref": "WS9 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 140446544, - "lat": 51.2416247, - "lon": -1.0942495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG25", - "ref": "RG25 193" - } -}, -{ - "type": "node", - "id": 140680732, - "lat": 51.4996408, - "lon": -0.1338245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1H 3;SW1H 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 142130961, - "lat": 52.6193351, - "lon": -1.9162163, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "WS9", - "ref": "WS9 361" - } -}, -{ - "type": "node", - "id": 142130968, - "lat": 52.6194285, - "lon": -1.9210994, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WS9", - "ref": "WS9 268" - } -}, -{ - "type": "node", - "id": 142130970, - "lat": 52.6153978, - "lon": -1.9218321, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "WS9", - "ref": "WS9 305" - } -}, -{ - "type": "node", - "id": 142131028, - "lat": 52.6155129, - "lon": -1.9137707, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 169" - } -}, -{ - "type": "node", - "id": 142153285, - "lat": 52.4867379, - "lon": -1.9572283, - "tags": { - "amenity": "post_box", - "ref": "B66 96" - } -}, -{ - "type": "node", - "id": 142848296, - "lat": 51.2561576, - "lon": -1.0816391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG21", - "ref": "RG21 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 143867425, - "lat": 55.8617612, - "lon": -4.3349072, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 144076090, - "lat": 52.6164249, - "lon": -0.0151920, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d" - } -}, -{ - "type": "node", - "id": 144077388, - "lat": 52.5616793, - "lon": 0.0936331, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PE15", - "ref": "PE15 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 144080968, - "lat": 52.5649706, - "lon": 0.0935984, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 144460714, - "lat": 52.5965526, - "lon": -1.9353117, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "WS9", - "ref": "WS9 196" - } -}, -{ - "type": "node", - "id": 144468411, - "lat": 51.7496279, - "lon": -1.2970445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 630", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2014-02-21" - } -}, -{ - "type": "node", - "id": 144487288, - "lat": 51.7461053, - "lon": -1.2957299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-04" - } -}, -{ - "type": "node", - "id": 144534929, - "lat": 51.8028521, - "lon": -1.2254777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "OX3", - "ref": "OX3 63D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 144547650, - "lat": 51.8543010, - "lon": -1.1652467, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "OX25", - "ref": "OX25 332", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 145857756, - "lat": 52.6001458, - "lon": -1.9339301, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "WS9", - "ref": "WS9 291" - } -}, -{ - "type": "node", - "id": 145910011, - "lat": 52.6110869, - "lon": -1.9138912, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "WS9", - "ref": "WS9 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 146547891, - "lat": 51.5300647, - "lon": -2.4642968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-01-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-12", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS36 565D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 146547941, - "lat": 51.5353399, - "lon": -2.4950799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1178928162679354", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS36 553D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-03" - } -}, -{ - "type": "node", - "id": 146587512, - "lat": 52.1174884, - "lon": -1.1399494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 309" - } -}, -{ - "type": "node", - "id": 147099092, - "lat": 50.8545384, - "lon": -1.0058635, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO9 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 148174711, - "lat": 52.4847832, - "lon": -1.9548535, - "tags": { - "amenity": "post_box", - "ref": "B66 535" - } -}, -{ - "type": "node", - "id": 148176485, - "lat": 52.4833330, - "lon": -1.9590930, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B66 265" - } -}, -{ - "type": "node", - "id": 148190005, - "lat": 52.3104193, - "lon": 0.0158245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB24 449D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 148190117, - "lat": 52.3117352, - "lon": 0.0514827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 528D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 148198286, - "lat": 52.3166391, - "lon": 0.0634085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 148198323, - "lat": 52.3135030, - "lon": 0.0638966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 526D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 148900241, - "lat": 51.1008268, - "lon": -0.1575060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "name": "Matthews Drive", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 148915209, - "lat": 51.5316793, - "lon": -1.0723108, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 149595137, - "lat": 55.7909356, - "lon": -4.3091556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 150777213, - "lat": 51.2514839, - "lon": -1.0930982, - "tags": { - "amenity": "post_box", - "mapillary": "501786541022069", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 257", - "survey:date": "2020-12-29" - } -}, -{ - "type": "node", - "id": 150889946, - "lat": 51.2504893, - "lon": -1.0992786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 211" - } -}, -{ - "type": "node", - "id": 150998530, - "lat": 53.8126837, - "lon": -1.5385449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 150998705, - "lat": 51.4339332, - "lon": -0.5459999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "TW20 307" - } -}, -{ - "type": "node", - "id": 151023561, - "lat": 55.9423831, - "lon": -3.1450493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH15 498D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 151023677, - "lat": 55.9243150, - "lon": -3.1675957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 135D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 151025575, - "lat": 51.6455319, - "lon": -0.1420351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "N14 4HS", - "ref": "N14 38D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 151917537, - "lat": 53.7999012, - "lon": -1.5473287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "colour": "gold", - "note": "franked mail [implied by type]", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 1051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 153286285, - "lat": 50.7914109, - "lon": -1.0762047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 153401163, - "lat": 51.5338616, - "lon": -2.1565327, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 153401190, - "lat": 51.5389017, - "lon": -2.1511331, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 153401242, - "lat": 51.5209050, - "lon": -2.2448078, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 153409011, - "lat": 51.5392840, - "lon": -2.2832415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL9 213D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 153428126, - "lat": 51.5284556, - "lon": -2.3425431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "616636460335654", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-18" - } -}, -{ - "type": "node", - "id": 153428196, - "lat": 51.5402082, - "lon": -2.3842237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "240577818385957", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 616", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-09" - } -}, -{ - "type": "node", - "id": 153537906, - "lat": 51.3277796, - "lon": -0.2228480, - "tags": { - "amenity": "post_box", - "ref": "SM7 211", - "source": "P144-435" - } -}, -{ - "type": "node", - "id": 154872084, - "lat": 51.4282557, - "lon": -0.5446683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "TW20 338", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 154886707, - "lat": 51.4263771, - "lon": -0.5475443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "ref": "TW20 306", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 154914807, - "lat": 53.7969353, - "lon": -2.2400609, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 155199180, - "lat": 51.0654828, - "lon": -0.3360034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "This pillar postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 156605287, - "lat": 51.5815642, - "lon": -2.4483156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1906237326233171", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 42", - "survey:date": "2022-05-14" - } -}, -{ - "type": "node", - "id": 156877492, - "lat": 51.5740314, - "lon": -2.4500345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 372D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 156877738, - "lat": 52.6187142, - "lon": -0.6162314, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 156877766, - "lat": 52.6104619, - "lon": -0.5259858, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 157290796, - "lat": 52.3432229, - "lon": 1.0061418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 157535154, - "lat": 53.3698797, - "lon": -2.9461738, - "tags": { - "amenity": "post_box", - "ref": "L17 378" - } -}, -{ - "type": "node", - "id": 157538768, - "lat": 53.3695639, - "lon": -2.9376960, - "tags": { - "amenity": "post_box", - "ref": "L17 967" - } -}, -{ - "type": "node", - "id": 158702327, - "lat": 51.3639095, - "lon": 0.5096917, - "tags": { - "amenity": "post_box", - "ref": "ME1 364" - } -}, -{ - "type": "node", - "id": 158716428, - "lat": 51.3790129, - "lon": 0.5165603, - "tags": { - "addr:street": "Boundary Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME4 68D" - } -}, -{ - "type": "node", - "id": 158817698, - "lat": 52.3367692, - "lon": 0.9930416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7048D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 158855401, - "lat": 51.5730635, - "lon": -0.1288472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N19 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 158959051, - "lat": 54.0984157, - "lon": -0.1916492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO16 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 159074154, - "lat": 53.3879490, - "lon": -1.4818096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S3 79", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 159221491, - "lat": 51.3868703, - "lon": 0.5423189, - "tags": { - "amenity": "post_box", - "ref": "ME7 94" - } -}, -{ - "type": "node", - "id": 159276020, - "lat": 51.3860976, - "lon": 0.5072693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "ME1 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 160395608, - "lat": 51.1046716, - "lon": -0.1808095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Cook Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 162998578, - "lat": 51.3464016, - "lon": -1.1463388, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 73" - } -}, -{ - "type": "node", - "id": 163199447, - "lat": 53.3766470, - "lon": -1.4735789, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S1 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 163199449, - "lat": 53.3726161, - "lon": -1.4683457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "S1 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 164918282, - "lat": 51.0831734, - "lon": -0.2937488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 8" - } -}, -{ - "type": "node", - "id": 165370291, - "lat": 52.9192981, - "lon": -1.4658914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 166649042, - "lat": 51.1110093, - "lon": -0.1437174, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Street Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 167261890, - "lat": 53.9664412, - "lon": -1.0110716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00", - "post_box:type": "pillar", - "ref": "YO19 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 169123749, - "lat": 51.1017432, - "lon": -0.1516325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "name": "Pallingham Drive", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH11 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 170375899, - "lat": 52.9216793, - "lon": -1.2085899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG9 613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 170377504, - "lat": 52.9246546, - "lon": -1.2115569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG9 664", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 170693784, - "lat": 51.4270101, - "lon": -0.5283511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "ref": "TW20 310" - } -}, -{ - "type": "node", - "id": 170693798, - "lat": 51.4300026, - "lon": -0.5333923, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 170736688, - "lat": 55.9418747, - "lon": -3.2730577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "4284610081603849", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH12 320", - "royal_cypher": "GR", - "survey:date": "2020-04-14" - } -}, -{ - "type": "node", - "id": 171276919, - "lat": 51.5226182, - "lon": 0.0578726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 171318665, - "lat": 51.5259141, - "lon": 0.0566316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 171318668, - "lat": 51.5256813, - "lon": 0.0576268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 171714315, - "lat": 53.3977923, - "lon": -1.4971536, - "tags": { - "amenity": "post_box", - "ref": "S6 1168" - } -}, -{ - "type": "node", - "id": 172681798, - "lat": 51.4908830, - "lon": 0.3192403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 114" - } -}, -{ - "type": "node", - "id": 173368681, - "lat": 51.9529689, - "lon": -1.1224834, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 173385174, - "lat": 51.9634831, - "lon": -1.0697005, - "tags": { - "amenity": "post_box", - "ref": "MK18 188" - } -}, -{ - "type": "node", - "id": 173393070, - "lat": 51.5246508, - "lon": -0.2110971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 34", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 173393176, - "lat": 51.5171295, - "lon": -0.1975390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "note": "The original collection times, which are still partially visible, have been updated via an official sticker. The ref has not been updated to include the D suffix.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 64;W2 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 173393185, - "lat": 51.5154983, - "lon": -0.1974406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 3D;W2 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 173424952, - "lat": 51.9735267, - "lon": -1.0694510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 185", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 174152081, - "lat": 51.2599246, - "lon": -1.0846029, - "tags": { - "amenity": "post_box", - "mapillary": "4076487795727533", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 24", - "survey:date": "2020-06-23" - } -}, -{ - "type": "node", - "id": 174706387, - "lat": 51.5710867, - "lon": 0.5153742, - "tags": { - "amenity": "post_box", - "ref": "SS13 469" - } -}, -{ - "type": "node", - "id": 174947420, - "lat": 51.5274562, - "lon": -0.6797696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL6 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 174947430, - "lat": 51.5223275, - "lon": -0.7010154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 71D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 175092967, - "lat": 51.4830650, - "lon": -2.5065625, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 175282518, - "lat": 50.9912354, - "lon": -1.3183121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "collection_times_checked": "19-12-2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO21 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 175282597, - "lat": 50.9950867, - "lon": -1.3168362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-12-03", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2023-04-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 175287439, - "lat": 51.0000089, - "lon": -1.3163831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1004212973632753", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 175694573, - "lat": 51.1073724, - "lon": -0.1813968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 177212679, - "lat": 52.5576598, - "lon": -1.8236812, - "tags": { - "amenity": "post_box", - "postal_code": "B72", - "ref": "B72 781" - } -}, -{ - "type": "node", - "id": 177356758, - "lat": 51.1029300, - "lon": -0.1720509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 177371418, - "lat": 54.7728155, - "lon": -1.5909992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 177372332, - "lat": 51.7232950, - "lon": -1.2114524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "created_by": "JOSM", - "ref": "OX4 609" - } -}, -{ - "type": "node", - "id": 177372553, - "lat": 54.7753761, - "lon": -1.5853379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 33" - } -}, -{ - "type": "node", - "id": 177377765, - "lat": 51.1217721, - "lon": -0.1542292, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Burns Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 177379217, - "lat": 54.7700008, - "lon": -1.5728036, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 177392521, - "lat": 54.7698162, - "lon": -1.5687043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "DH1 201", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 177510271, - "lat": 51.1260346, - "lon": -0.1489731, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Milton Mount Flats", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 177792411, - "lat": 54.0764135, - "lon": -0.2119441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO15 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 177833515, - "lat": 53.3848917, - "lon": -1.4883394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S3 799D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 177847585, - "lat": 53.3849197, - "lon": -1.4833450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S3 118D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 177914763, - "lat": 53.3879456, - "lon": -1.4863681, - "tags": { - "amenity": "post_box", - "postal_code": "S6", - "ref": "S6 136" - } -}, -{ - "type": "node", - "id": 178779748, - "lat": 52.5607579, - "lon": -1.8251538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:30", - "post_box:type": "pillar", - "ref": "B72 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 178779754, - "lat": 52.5624980, - "lon": -1.8257493, - "tags": { - "amenity": "post_box", - "note": "relocated inside WH smith when postoffice moved in 2014", - "postal_code": "B72", - "ref": "B72 40" - } -}, -{ - "type": "node", - "id": 179024065, - "lat": 52.9398002, - "lon": -1.1439656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 147D", - "ref:GB:uprn": "10015375458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 179701192, - "lat": 51.4967823, - "lon": -0.4272354, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 179729222, - "lat": 51.3374320, - "lon": 0.4734654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 128", - "source": "voice" - } -}, -{ - "type": "node", - "id": 179978248, - "lat": 50.7938633, - "lon": -1.0795092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 180307038, - "lat": 55.3750543, - "lon": -4.4967504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 181064195, - "lat": 50.8176492, - "lon": -1.5721941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "SO42 11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO42", - "ref": "SO42 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 181519066, - "lat": 53.8265350, - "lon": -1.5751327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "LS6 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 182814084, - "lat": 51.3759576, - "lon": 0.4938343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 257D" - } -}, -{ - "type": "node", - "id": 182880480, - "lat": 53.4196623, - "lon": -2.2983401, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.5d" - } -}, -{ - "type": "node", - "id": 183200713, - "lat": 52.6933873, - "lon": -1.1802915, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 183245668, - "lat": 51.9468072, - "lon": -1.2122489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-27", - "old_ref": "OX27 330", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "OX27", - "ref": "OX27 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 183251556, - "lat": 51.9780087, - "lon": -1.2380859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX27 948D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 183296499, - "lat": 55.9469320, - "lon": -3.1819210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "124489356342190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 123", - "royal_cypher": "GVIR", - "survey:date": "2023-06-10" - } -}, -{ - "type": "node", - "id": 183336677, - "lat": 51.3832686, - "lon": 0.5190741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:apertures": "1", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "ME4 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "voice;photo" - } -}, -{ - "type": "node", - "id": 183744541, - "lat": 50.4130222, - "lon": -4.2268709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 641", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-20" - } -}, -{ - "type": "node", - "id": 183744595, - "lat": 50.4109420, - "lon": -4.2187334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL12 644D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 183765911, - "lat": 50.4087452, - "lon": -4.2115895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL12 835;PL12 8350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 183826226, - "lat": 51.4471127, - "lon": -0.1767501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 183827830, - "lat": 51.4471200, - "lon": -0.1714803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 10", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 183829782, - "lat": 51.4448740, - "lon": -0.1774333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 48" - } -}, -{ - "type": "node", - "id": 183838683, - "lat": 51.4416894, - "lon": -0.1720831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 33" - } -}, -{ - "type": "node", - "id": 183839387, - "lat": 51.4454894, - "lon": -0.1725380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 37" - } -}, -{ - "type": "node", - "id": 183900179, - "lat": 51.4412679, - "lon": -0.1656129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 2" - } -}, -{ - "type": "node", - "id": 183900812, - "lat": 51.4412877, - "lon": -0.1682414, - "tags": { - "amenity": "post_box", - "note": "location estimated", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 14", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 185743749, - "lat": 51.5508199, - "lon": -0.1384291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 15D" - } -}, -{ - "type": "node", - "id": 185743759, - "lat": 51.5463326, - "lon": -0.1355431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:United Kingdom post box NW5 x Lawford Road" - } -}, -{ - "type": "node", - "id": 185883068, - "lat": 51.5308874, - "lon": -0.0889378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N1 149", - "royal_cypher": "yes", - "source": "survey" - } -}, -{ - "type": "node", - "id": 185996170, - "lat": 53.3792644, - "lon": -2.9541305, - "tags": { - "amenity": "post_box", - "ref": "L17 428" - } -}, -{ - "type": "node", - "id": 186081148, - "lat": 54.1756897, - "lon": -0.3180801, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 186081155, - "lat": 54.1806271, - "lon": -0.3219662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO14 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 186081318, - "lat": 54.2020117, - "lon": -0.4062757, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO11 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 186111672, - "lat": 54.2965115, - "lon": -0.5152605, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 186952646, - "lat": 50.8962976, - "lon": 0.0578753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 550" - } -}, -{ - "type": "node", - "id": 186953695, - "lat": 50.9583837, - "lon": -0.1462880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 186953844, - "lat": 50.9542277, - "lon": -0.1440365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 186954285, - "lat": 50.9224994, - "lon": -0.0012210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN8 497" - } -}, -{ - "type": "node", - "id": 187025471, - "lat": 51.3697840, - "lon": 0.6167281, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 187219708, - "lat": 52.6165349, - "lon": -1.1016796, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 442" - } -}, -{ - "type": "node", - "id": 187220554, - "lat": 51.8223743, - "lon": -0.1576825, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AL6 145D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 187425804, - "lat": 51.3064844, - "lon": -0.1760304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR5 488D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 187815793, - "lat": 52.9846427, - "lon": -0.9678668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:type": "wall", - "ref": "NG13 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 187816360, - "lat": 52.9802645, - "lon": -0.9700443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG13 319", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 189211826, - "lat": 51.7955973, - "lon": -1.4879209, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "note": "This looks odd. Must check!", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 190464401, - "lat": 50.9560601, - "lon": -0.1391001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 190509193, - "lat": 50.9354295, - "lon": 0.1267621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 534" - } -}, -{ - "type": "node", - "id": 190509331, - "lat": 50.9820668, - "lon": 0.0509510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 190509386, - "lat": 50.9729771, - "lon": 0.0074869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "this looks very new 22/11/16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 501D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 190531687, - "lat": 55.9706026, - "lon": -3.6253899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 84", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 190588078, - "lat": 55.9781758, - "lon": -3.5939320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH49 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 191017081, - "lat": 52.1491768, - "lon": -0.7587441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "MK46 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 191017088, - "lat": 52.1463283, - "lon": -0.7601445, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "MK46 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 191664327, - "lat": 50.8361083, - "lon": 0.4435174, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cooden Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 55", - "ref:GB:uprn": "10015330556", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Cooden Drive Hartfield Road TN3955.jpg" - } -}, -{ - "type": "node", - "id": 191664473, - "lat": 50.8348777, - "lon": 0.4380119, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Beaulieu Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 46", - "ref:GB:uprn": "10015473953", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB Beaulieu Road TN3946.jpg" - } -}, -{ - "type": "node", - "id": 191722658, - "lat": 50.8355885, - "lon": 0.4499964, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "South Cliff", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "description": "Damaged cap at rear and damaged door pull", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 70", - "ref:GB:uprn": "10015360400", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB South Cliff TN3970.jpg" - } -}, -{ - "type": "node", - "id": 191761628, - "lat": 50.8503109, - "lon": 0.0691064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 558D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 191890686, - "lat": 50.7249116, - "lon": -1.2293601, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/wootton-high-street-po33-4aa/000PO33113" - } -}, -{ - "type": "node", - "id": 191963154, - "lat": 50.7289874, - "lon": -1.2393713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "2064500557084916", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 28D", - "ref:GB:uprn": "10015346713", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/palmers-road-po33-4aa/0000PO3328" - } -}, -{ - "type": "node", - "id": 192013435, - "lat": 50.8758690, - "lon": -2.7910937, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 192294143, - "lat": 53.5422977, - "lon": -1.7622483, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-18", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 192301570, - "lat": 53.6981864, - "lon": -1.6470254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 26" - } -}, -{ - "type": "node", - "id": 192302115, - "lat": 55.9714414, - "lon": -3.6150440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH49 6D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 192347138, - "lat": 55.9766949, - "lon": -3.5979292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH49 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 192702686, - "lat": 53.5005179, - "lon": -1.6809827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "wall", - "ref": "S36 244", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 192893675, - "lat": 51.0926341, - "lon": 1.1427063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "postal_code": "CT19", - "ref": "CT19 190", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 192893677, - "lat": 51.0915974, - "lon": 1.1387326, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 174", - "source": "survey" - } -}, -{ - "type": "node", - "id": 193559364, - "lat": 52.9817794, - "lon": -0.9648993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG13 308D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 193979845, - "lat": 51.4177321, - "lon": -1.7375164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 193979849, - "lat": 51.4191068, - "lon": -1.7442085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 177D" - } -}, -{ - "type": "node", - "id": 194007499, - "lat": 51.3856004, - "lon": -0.1896362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 282", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 194068749, - "lat": 50.6970131, - "lon": -3.4915759, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX2 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 194106937, - "lat": 50.8082636, - "lon": -3.5281326, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX5 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 194200638, - "lat": 53.4525875, - "lon": -2.5213382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2021-12-23", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA3 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 194200640, - "lat": 53.4536874, - "lon": -2.5211902, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-22", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA3 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 194220851, - "lat": 54.4458933, - "lon": -3.5139424, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA21 92" - } -}, -{ - "type": "node", - "id": 194298837, - "lat": 51.4226439, - "lon": -1.7280356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 194298849, - "lat": 51.4208241, - "lon": -1.7277973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 194613942, - "lat": 51.3676741, - "lon": -0.1263635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 395", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 194613946, - "lat": 51.3701385, - "lon": -0.1238226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 399D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 194614064, - "lat": 51.3675393, - "lon": -0.1202327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 271", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 195919209, - "lat": 51.3625208, - "lon": -0.1284468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 195919225, - "lat": 51.3609577, - "lon": -0.1305893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM6 129" - } -}, -{ - "type": "node", - "id": 195919232, - "lat": 51.3618578, - "lon": -0.1226864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 401" - } -}, -{ - "type": "node", - "id": 196086882, - "lat": 51.3617319, - "lon": -0.1401611, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 196208589, - "lat": 51.4175701, - "lon": -1.7474385, - "tags": { - "addr:street": "Golding Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1309675229558857", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SN8", - "ref": "SN8 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 196208619, - "lat": 51.4186230, - "lon": -1.7337967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 196208630, - "lat": 51.4195497, - "lon": -1.7323787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SN8 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 196208636, - "lat": 51.4212308, - "lon": -1.7304239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SN8 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 196208639, - "lat": 51.4250103, - "lon": -1.7351314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 6D" - } -}, -{ - "type": "node", - "id": 196209229, - "lat": 51.3585268, - "lon": -0.1448788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 196446626, - "lat": 51.1719112, - "lon": -0.2849649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 197703029, - "lat": 51.3245005, - "lon": -1.2092737, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 200" - } -}, -{ - "type": "node", - "id": 197703043, - "lat": 51.3344097, - "lon": -1.1960551, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 71" - } -}, -{ - "type": "node", - "id": 197705633, - "lat": 50.9051738, - "lon": -1.6329410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 45" - } -}, -{ - "type": "node", - "id": 197738416, - "lat": 51.9449460, - "lon": -1.2176229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-27", - "note": "Although this postbox is marked on OSM as OX27 339, when I used this postbox on Thursday 27.08.2020 the postbox number stated \"OX27 559D\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "OX27", - "ref": "OX27 559D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 197814358, - "lat": 53.3868386, - "lon": -1.4933364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S6 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 197824578, - "lat": 53.3837643, - "lon": -1.5021155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 197827479, - "lat": 53.3908638, - "lon": -1.5123785, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 751D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 198287520, - "lat": 51.3413827, - "lon": -1.1890595, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 45" - } -}, -{ - "type": "node", - "id": 198287818, - "lat": 51.3255254, - "lon": -1.1931439, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 170" - } -}, -{ - "type": "node", - "id": 198287850, - "lat": 51.3202376, - "lon": -1.2090975, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 164" - } -}, -{ - "type": "node", - "id": 198288400, - "lat": 51.3050897, - "lon": -1.1282935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 86" - } -}, -{ - "type": "node", - "id": 198288564, - "lat": 51.3150484, - "lon": -1.1235477, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 41" - } -}, -{ - "type": "node", - "id": 198288707, - "lat": 51.3155396, - "lon": -1.1458760, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 81" - } -}, -{ - "type": "node", - "id": 198288995, - "lat": 51.3214672, - "lon": -1.1563989, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 72" - } -}, -{ - "type": "node", - "id": 198697833, - "lat": 50.7257953, - "lon": -1.1914347, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 85D", - "ref:GB:uprn": "10015313716", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/kings-road-po33-3bb/0000PO3385" - } -}, -{ - "type": "node", - "id": 198853383, - "lat": 51.1552713, - "lon": -0.2232650, - "tags": { - "amenity": "post_box", - "is_in": "Charlwood", - "operator": "Royal Mail", - "ref": "RH6 230" - } -}, -{ - "type": "node", - "id": 199072909, - "lat": 50.7799465, - "lon": -3.4849339, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "EX5 376" - } -}, -{ - "type": "node", - "id": 199422120, - "lat": 51.1544880, - "lon": -0.2189639, - "tags": { - "amenity": "post_box", - "is_in": "Charlwood", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH6 304" - } -}, -{ - "type": "node", - "id": 199422125, - "lat": 51.1604159, - "lon": -0.1986691, - "tags": { - "amenity": "post_box", - "is_in": "Charlwood", - "mapillary": "896313511215255", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 239", - "survey:date": "2020-03-07" - } -}, -{ - "type": "node", - "id": 199600914, - "lat": 55.8695860, - "lon": -4.2795382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "G3", - "ref": "G3 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 199768567, - "lat": 55.8685441, - "lon": -3.4986567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 199768793, - "lat": 55.8720470, - "lon": -3.5013530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 201435592, - "lat": 50.9032979, - "lon": -1.0221503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO8 8LH", - "ref": "PO8 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 201949864, - "lat": 54.6651540, - "lon": -3.1880564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "227078453499826", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA12 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 201949871, - "lat": 54.6191622, - "lon": -3.3124734, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA13 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 203260970, - "lat": 51.3807729, - "lon": -1.3168197, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG20", - "ref": "RG20 135" - } -}, -{ - "type": "node", - "id": 203792944, - "lat": 50.7125599, - "lon": -3.4877338, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 203939328, - "lat": 51.7928077, - "lon": -1.4653095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX28 2" - } -}, -{ - "type": "node", - "id": 203994549, - "lat": 53.7821721, - "lon": -0.8422136, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 204054428, - "lat": 53.6464518, - "lon": -1.7824233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 204110572, - "lat": 51.7390048, - "lon": -0.3176148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 204128268, - "lat": 53.6470972, - "lon": -1.7840973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "HD1 119;HD1 1119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 204129920, - "lat": 52.7579954, - "lon": -2.6947918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY4 543" - } -}, -{ - "type": "node", - "id": 204149431, - "lat": 52.7061804, - "lon": -2.8966980, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 204159172, - "lat": 52.6986563, - "lon": -2.9641840, - "tags": { - "amenity": "post_box", - "fixme": "is it really here?" - } -}, -{ - "type": "node", - "id": 204159174, - "lat": 52.6883243, - "lon": -3.0769252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "959930438095265", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-24" - } -}, -{ - "type": "node", - "id": 204159175, - "lat": 52.6721515, - "lon": -3.1104916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY21 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2019-07-06" - } -}, -{ - "type": "node", - "id": 205283351, - "lat": 50.8473354, - "lon": 0.1214773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 205330599, - "lat": 51.2650592, - "lon": -1.0988571, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 75" - } -}, -{ - "type": "node", - "id": 205424718, - "lat": 51.4895615, - "lon": -2.5964272, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS9 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206095862, - "lat": 51.3150097, - "lon": -0.4718581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU23 190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU23 190D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 206096473, - "lat": 51.2514820, - "lon": -0.6059329, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-24", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "last_checked": "2021-06-09", - "note": "This postbox icon was wrongly shown as being inside a house building so I have moved it to its correct location, at the edge of the road Broadacres.", - "old_ref": "GU3 26", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU3", - "ref": "GU3 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 206110143, - "lat": 53.5591905, - "lon": -1.4864740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 206110152, - "lat": 53.5572476, - "lon": -1.4899906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206144689, - "lat": 51.4151687, - "lon": -0.3672439, - "tags": { - "amenity": "post_box", - "ref": "TW12 222" - } -}, -{ - "type": "node", - "id": 206150089, - "lat": 51.4145661, - "lon": -0.3702266, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "name": "Hampton Sorting Office" - } -}, -{ - "type": "node", - "id": 206171234, - "lat": 51.3519355, - "lon": -1.1424678, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 277" - } -}, -{ - "type": "node", - "id": 206186803, - "lat": 52.6243728, - "lon": -3.1678265, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206186804, - "lat": 52.6125830, - "lon": -3.1822640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 206186806, - "lat": 52.6041207, - "lon": -3.1735390, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206186808, - "lat": 52.5781152, - "lon": -3.2013460, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 206186809, - "lat": 52.5500697, - "lon": -3.2368268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 206186864, - "lat": 52.4551163, - "lon": -3.4769705, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206187763, - "lat": 52.4307275, - "lon": -3.5451337, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206187776, - "lat": 52.4300269, - "lon": -3.7076717, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206187777, - "lat": 52.4190633, - "lon": -3.8040858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SY23 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 206188193, - "lat": 53.4147913, - "lon": -1.5094224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 574D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206190188, - "lat": 52.4046134, - "lon": -3.9825994, - "tags": { - "amenity": "post_box", - "ref": "SY23 149" - } -}, -{ - "type": "node", - "id": 206190193, - "lat": 52.3594672, - "lon": -4.0914734, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY23 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 206190651, - "lat": 53.4078362, - "lon": -1.5090170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "S6 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206190658, - "lat": 53.4040906, - "lon": -1.5032490, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206191903, - "lat": 52.1159864, - "lon": -4.5052832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 206191905, - "lat": 52.1093139, - "lon": -4.5378135, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206191907, - "lat": 52.1120722, - "lon": -4.5622294, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 206195454, - "lat": 52.0536975, - "lon": -4.6919235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206195490, - "lat": 53.3982229, - "lon": -1.5009355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S6 180", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 206195812, - "lat": 52.0473829, - "lon": -4.7114111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA43 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 206195816, - "lat": 52.0245615, - "lon": -4.7954189, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206195818, - "lat": 52.0282468, - "lon": -4.7725984, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206199228, - "lat": 52.0119282, - "lon": -4.8994415, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 206199234, - "lat": 52.0072410, - "lon": -4.9091585, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206199236, - "lat": 52.0010125, - "lon": -4.9195175, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206199241, - "lat": 51.9937957, - "lon": -4.9759989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206199266, - "lat": 51.9955071, - "lon": -4.9794898, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "SA65 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 206200067, - "lat": 51.8133501, - "lon": -1.3831238, - "tags": { - "addr:city": "Church Hanborough", - "addr:postcode": "OX29 8AB", - "addr:street": "Church Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "OX29 347" - } -}, -{ - "type": "node", - "id": 206200134, - "lat": 51.0631256, - "lon": -1.3232232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 10D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 206200135, - "lat": 51.0622894, - "lon": -1.3277773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206200136, - "lat": 51.0616220, - "lon": -1.3333343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206200138, - "lat": 51.0605881, - "lon": -1.3215187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO22 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206200200, - "lat": 51.0632452, - "lon": -1.3178595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "name": "High Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 206200719, - "lat": 51.0588108, - "lon": -1.3189160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 189D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206200728, - "lat": 51.0595704, - "lon": -1.3258713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 206200889, - "lat": 51.0582820, - "lon": -1.3384896, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206200891, - "lat": 51.0566394, - "lon": -1.3378139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206233975, - "lat": 52.0153039, - "lon": -4.8447470, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 206233980, - "lat": 52.0170890, - "lon": -4.7698686, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206233984, - "lat": 52.0144357, - "lon": -4.7084653, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 206233985, - "lat": 52.0236766, - "lon": -4.6927310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "mapillary": "458188655274698", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 206233988, - "lat": 52.1021678, - "lon": -4.6097023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 206234590, - "lat": 52.1465363, - "lon": -4.3851475, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206235836, - "lat": 52.2338851, - "lon": -4.2738494, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 206235838, - "lat": 52.2411295, - "lon": -4.2620404, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 206235844, - "lat": 52.3984131, - "lon": -4.0698658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 150" - } -}, -{ - "type": "node", - "id": 206305427, - "lat": 51.4794665, - "lon": -0.0713589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 206305455, - "lat": 51.7667346, - "lon": -1.1897796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX3 689D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 206307774, - "lat": 51.7643673, - "lon": -1.1876012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX3 31", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 206360903, - "lat": 51.4910396, - "lon": -2.5955991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 377D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 206364776, - "lat": 51.3509019, - "lon": -1.1487425, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 325" - } -}, -{ - "type": "node", - "id": 206378587, - "lat": 51.0990195, - "lon": -0.2105209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Trefoil Crescent", - "old_ref": "RH11 134", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 207017707, - "lat": 52.0651195, - "lon": -0.7974015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK13 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 207117132, - "lat": 51.4892877, - "lon": 0.3344699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 50" - } -}, -{ - "type": "node", - "id": 207117134, - "lat": 51.4934716, - "lon": 0.3236756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "mapillary": "4408343735864883", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM16 32", - "survey:date": "2021-06-20" - } -}, -{ - "type": "node", - "id": 207140963, - "lat": 51.4840016, - "lon": -0.0726199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 207203315, - "lat": 51.4233781, - "lon": -0.3213688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 207251216, - "lat": 51.9023908, - "lon": -1.0530334, - "tags": { - "amenity": "post_box", - "ref": "OX27 575" - } -}, -{ - "type": "node", - "id": 207283392, - "lat": 51.9657795, - "lon": -1.0192904, - "tags": { - "amenity": "post_box", - "ref": "MK18 197" - } -}, -{ - "type": "node", - "id": 207301157, - "lat": 51.9925676, - "lon": -0.9939031, - "tags": { - "amenity": "post_box", - "postal_code": "MK18", - "ref": "MK18 501" - } -}, -{ - "type": "node", - "id": 207301204, - "lat": 51.9948491, - "lon": -0.9946449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 207329804, - "lat": 52.0002908, - "lon": -0.9915036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 207344233, - "lat": 51.9906168, - "lon": -0.9889319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "MK18", - "ref": "MK18 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 207359506, - "lat": 51.9541541, - "lon": -1.0031578, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "MK18 196" - } -}, -{ - "type": "node", - "id": 207552994, - "lat": 51.3504605, - "lon": -1.1284795, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 63" - } -}, -{ - "type": "node", - "id": 207560677, - "lat": 51.3566728, - "lon": -1.1485832, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 142" - } -}, -{ - "type": "node", - "id": 207696956, - "lat": 52.3343917, - "lon": -3.1581106, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LD7" - } -}, -{ - "type": "node", - "id": 207718627, - "lat": 53.4055259, - "lon": -1.5197548, - "tags": { - "amenity": "post_box", - "ref": "S6 590D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 208532567, - "lat": 51.4162542, - "lon": -0.3712152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW12 219" - } -}, -{ - "type": "node", - "id": 208533270, - "lat": 51.4150893, - "lon": -0.3604779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW12 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 208535871, - "lat": 51.7265074, - "lon": -1.4931235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX18 414D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 208540626, - "lat": 52.9509087, - "lon": -1.1250981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG2 130", - "ref:GB:uprn": "10090905175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 208773652, - "lat": 51.2130346, - "lon": -2.6303879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA5 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 209093765, - "lat": 50.7269460, - "lon": -3.4924203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX1 424", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 210306430, - "lat": 51.5909385, - "lon": -0.3356127, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "HA1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 210733910, - "lat": 51.8122520, - "lon": -0.4935677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP2 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 210739983, - "lat": 51.8356079, - "lon": -0.4636970, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.6b" - } -}, -{ - "type": "node", - "id": 210937558, - "lat": 51.8394505, - "lon": -0.5025342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "LU6 69", - "source": "survey" - } -}, -{ - "type": "node", - "id": 210965985, - "lat": 51.4230634, - "lon": -0.3702362, - "tags": { - "amenity": "post_box", - "ref": "TW12 214" - } -}, -{ - "type": "node", - "id": 211801583, - "lat": 51.4276035, - "lon": -0.3716980, - "tags": { - "amenity": "post_box", - "ref": "TW12 254" - } -}, -{ - "type": "node", - "id": 211820848, - "lat": 51.4248994, - "lon": -0.3642936, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 211895035, - "lat": 51.4313714, - "lon": -0.3786353, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 212805330, - "lat": 51.6386279, - "lon": -0.4369363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 213621867, - "lat": 55.0825060, - "lon": -1.5760292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 6TP", - "ref": "NE23 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 213632628, - "lat": 51.5555659, - "lon": -0.0826151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2020-12-10", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 213632632, - "lat": 51.5571815, - "lon": -0.0829241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 213971143, - "lat": 52.6201822, - "lon": -2.2393005, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 215323415, - "lat": 51.5860154, - "lon": -0.3356144, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-02-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 68D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 218772697, - "lat": 52.2841135, - "lon": -3.0415355, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 218793549, - "lat": 52.3075766, - "lon": -3.1644770, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 218999693, - "lat": 52.3420412, - "lon": -3.0373860, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 221044988, - "lat": 51.5641648, - "lon": -2.3385303, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS37 454", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 221163492, - "lat": 51.2444734, - "lon": -0.6674937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU3 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 221168816, - "lat": 51.2540401, - "lon": -0.6713291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU3 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 221171639, - "lat": 50.9592271, - "lon": -1.2083807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO32 370" - } -}, -{ - "type": "node", - "id": 221191008, - "lat": 53.6963921, - "lon": -1.6447669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 43" - } -}, -{ - "type": "node", - "id": 221195120, - "lat": 51.2437947, - "lon": -0.6110472, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU2", - "ref": "GU2 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 221307252, - "lat": 51.9559938, - "lon": -1.1198772, - "tags": { - "amenity": "post_box", - "postal_code": "OX27", - "ref": "OX27 946" - } -}, -{ - "type": "node", - "id": 221375019, - "lat": 52.4811060, - "lon": -1.9693381, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B66 339" - } -}, -{ - "type": "node", - "id": 223425642, - "lat": 51.4555800, - "lon": -0.4082214, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 223425650, - "lat": 51.4534503, - "lon": -0.4047291, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TW14 410", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 223538370, - "lat": 50.7759045, - "lon": -3.5245776, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 224014210, - "lat": 52.0651577, - "lon": -0.7904069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 224091424, - "lat": 51.4644461, - "lon": 0.0088722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 224091454, - "lat": 51.4664422, - "lon": 0.0083831, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "description": "BLACKHEATH VILLAGE", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 6", - "royal_cypher": "no", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 224091545, - "lat": 51.4716625, - "lon": 0.0229275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 224133238, - "lat": 54.1420464, - "lon": -0.4004923, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 365", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 224133305, - "lat": 54.1415869, - "lon": -0.4521436, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 224146188, - "lat": 51.4639341, - "lon": -0.0053237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 224146310, - "lat": 51.4766609, - "lon": -0.0170808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 224244240, - "lat": 54.4757442, - "lon": -0.6333602, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO21 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 224244420, - "lat": 54.4711749, - "lon": -0.6293742, - "tags": { - "amenity": "post_box", - "note": "has (blank) post office direction indicator oval attached to roof", - "post_box:type": "pillar", - "ref": "YO21 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 224599965, - "lat": 51.3503159, - "lon": -1.1333380, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 280" - } -}, -{ - "type": "node", - "id": 224657089, - "lat": 51.3573108, - "lon": -1.1373053, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 62" - } -}, -{ - "type": "node", - "id": 224672154, - "lat": 51.3547107, - "lon": -1.1651582, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 324" - } -}, -{ - "type": "node", - "id": 225678289, - "lat": 51.7483790, - "lon": -0.2601371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL4 37D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 227427327, - "lat": 51.7699174, - "lon": -1.2598062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX2 158", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 227427330, - "lat": 51.7703255, - "lon": -1.2564003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "OX2", - "ref": "OX2 214D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 227637933, - "lat": 53.3532226, - "lon": -2.1272298, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 229232924, - "lat": 51.7560803, - "lon": -1.2137058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "OX3 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 229232929, - "lat": 51.7725982, - "lon": -1.2590347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "OX2", - "ref": "OX2 473D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 230229953, - "lat": 53.7052360, - "lon": -1.9182150, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HX6 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 230230080, - "lat": 53.7063782, - "lon": -1.9255269, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 230230480, - "lat": 53.7037048, - "lon": -1.9508745, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 230288169, - "lat": 51.5917327, - "lon": -0.3390895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 186D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 230303809, - "lat": 51.0872451, - "lon": 1.1297225, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 70" - } -}, -{ - "type": "node", - "id": 230303840, - "lat": 51.0892864, - "lon": 1.1288246, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 185", - "source": "survey" - } -}, -{ - "type": "node", - "id": 230341006, - "lat": 53.7211622, - "lon": -1.9482279, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 230744909, - "lat": 53.3452455, - "lon": -2.1118796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 230744915, - "lat": 53.3397981, - "lon": -2.1062798, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 230744927, - "lat": 53.3447389, - "lon": -2.1216281, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 232390243, - "lat": 52.5460711, - "lon": -1.9154298, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B42", - "ref": "B42 680", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 232431284, - "lat": 51.5298237, - "lon": 0.4567305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 232431290, - "lat": 51.5327846, - "lon": 0.4472861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 235282412, - "lat": 53.3605039, - "lon": -2.1162917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK12 77D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 235765808, - "lat": 51.7592909, - "lon": -1.2133048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "priority:covid_19": "yes", - "ref": "OX3 602", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 235765814, - "lat": 51.7631396, - "lon": -1.2303404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "OX3", - "ref": "OX3 623D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 236020036, - "lat": 53.7128695, - "lon": -1.9216497, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "source": "survey" - } -}, -{ - "type": "node", - "id": 236107878, - "lat": 51.0916106, - "lon": 1.1577275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 44D" - } -}, -{ - "type": "node", - "id": 236167832, - "lat": 53.3562331, - "lon": -2.0857181, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 236880317, - "lat": 51.5075057, - "lon": -0.1650786, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-03", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "The Meadow Foundry Co Ltd, Mansfield, Nottinghamshire", - "post_box:type": "pillar", - "ref": "W2 72;W2 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 237042842, - "lat": 52.0949310, - "lon": 0.1275424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB22 300", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 237042846, - "lat": 52.0638566, - "lon": 0.1057273, - "tags": { - "amenity": "post_box", - "ref": "SG8 232" - } -}, -{ - "type": "node", - "id": 237595904, - "lat": 52.0671099, - "lon": 0.2018717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB10 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 237595927, - "lat": 52.0638421, - "lon": 0.2023535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB10 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 237595974, - "lat": 52.0534720, - "lon": 0.2086635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB10 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 237698117, - "lat": 52.5520698, - "lon": -1.9311251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 1183" - } -}, -{ - "type": "node", - "id": 237698129, - "lat": 52.5482042, - "lon": -1.9309908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 840", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 237698151, - "lat": 52.5464415, - "lon": -1.9253477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "fixme": "also COVID priority", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 698", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 237792513, - "lat": 51.5831771, - "lon": -0.3203615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45, Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 259", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 238682897, - "lat": 51.7661090, - "lon": -1.2344072, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-03", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX3 611" - } -}, -{ - "type": "node", - "id": 238980669, - "lat": 51.0863307, - "lon": 1.1662648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "postal_code": "CT19", - "ref": "CT19 92" - } -}, -{ - "type": "node", - "id": 239034964, - "lat": 51.0836114, - "lon": 1.1677985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT19", - "ref": "CT19 39D" - } -}, -{ - "type": "node", - "id": 239058611, - "lat": 51.0847926, - "lon": 1.1742056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "CT19 5BA", - "postal_code": "CT19", - "ref": "CT19 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 239806257, - "lat": 55.8557746, - "lon": -4.2310132, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "G40", - "ref": "G40 631" - } -}, -{ - "type": "node", - "id": 239974526, - "lat": 51.5929844, - "lon": -1.4733170, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 239996529, - "lat": 51.4089173, - "lon": -0.2525166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 281D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 239996536, - "lat": 51.4057198, - "lon": -0.2534410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 239996542, - "lat": 51.4064394, - "lon": -0.2575468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 239996571, - "lat": 51.4072208, - "lon": -0.2640698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 240043271, - "lat": 53.3935024, - "lon": -2.9309809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1306793663088716", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 387", - "survey:date": "2021-07-23" - } -}, -{ - "type": "node", - "id": 240051586, - "lat": 52.5123088, - "lon": -1.9788538, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B70 22", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 240052038, - "lat": 53.3915809, - "lon": -2.9319789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "591974182309715", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 448", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 240065671, - "lat": 53.3936899, - "lon": -2.9348557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 258", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 240074080, - "lat": 53.3900377, - "lon": -2.9289832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "121905493678323", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 444", - "royal_cypher": "EIIR", - "survey:date": "2022-04-23" - } -}, -{ - "type": "node", - "id": 240083964, - "lat": 52.4798202, - "lon": -1.9113183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B1", - "ref": "B1 373", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 240089488, - "lat": 53.3871905, - "lon": -2.9246505, - "tags": { - "amenity": "post_box", - "ref": "L18 229" - } -}, -{ - "type": "node", - "id": 240101479, - "lat": 53.3844837, - "lon": -2.9330286, - "tags": { - "amenity": "post_box", - "ref": "L17 333" - } -}, -{ - "type": "node", - "id": 240115350, - "lat": 53.3873676, - "lon": -2.9186723, - "tags": { - "amenity": "post_box", - "ref": "L18 461" - } -}, -{ - "type": "node", - "id": 240370508, - "lat": 51.3443496, - "lon": -1.1329382, - "tags": { - "amenity": "post_box", - "mapillary": "529114498495882", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 65", - "survey:date": "2020-09-27" - } -}, -{ - "type": "node", - "id": 240584665, - "lat": 51.3573743, - "lon": -0.1195116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "note": "Only accepts franked letters/packages", - "opening_hours": "Mo-Fr 12:30-18:00; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CR0 604", - "source": "survey" - } -}, -{ - "type": "node", - "id": 240612987, - "lat": 51.4562452, - "lon": -0.3731417, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "497881737927884", - "post_box:type": "pillar", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 240612990, - "lat": 51.4538425, - "lon": -0.3758762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "mapillary": "619820609418657", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW4 75", - "survey:date": "2020-03-21" - } -}, -{ - "type": "node", - "id": 240648558, - "lat": 51.3504585, - "lon": -0.1311908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 240648805, - "lat": 51.3476543, - "lon": -0.1299966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 240773913, - "lat": 51.4012188, - "lon": -1.3241136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "RG14", - "ref": "RG14 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 240850589, - "lat": 53.3953181, - "lon": -1.4661328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S3 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 240866542, - "lat": 53.4035253, - "lon": -1.4717618, - "tags": { - "amenity": "post_box", - "ref": "S5 880" - } -}, -{ - "type": "node", - "id": 240870823, - "lat": 53.4092117, - "lon": -1.4712410, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 687D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 240881472, - "lat": 53.4114938, - "lon": -1.4650752, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 274" - } -}, -{ - "type": "node", - "id": 240908056, - "lat": 53.4011346, - "lon": -1.4559475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S4 345D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 240943090, - "lat": 51.6811583, - "lon": -3.9167053, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 240955427, - "lat": 51.7516447, - "lon": -1.2980600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 199;OX2 1990", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-01-29" - } -}, -{ - "type": "node", - "id": 241092997, - "lat": 51.6844348, - "lon": -1.2603204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_m", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 903", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 241456117, - "lat": 51.4092441, - "lon": -0.2970407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 72D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 241596393, - "lat": 52.5440422, - "lon": -1.9302714, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-16", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 858", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikidata": "Q110415053" - } -}, -{ - "type": "node", - "id": 241596397, - "lat": 52.5365653, - "lon": -1.9173352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 399", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:collection_times": "survey February 2023" - } -}, -{ - "type": "node", - "id": 241596400, - "lat": 52.5396844, - "lon": -1.9206432, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 681", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:collection_times": "survey February 2023" - } -}, -{ - "type": "node", - "id": 241596409, - "lat": 52.5424743, - "lon": -1.9169657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 916", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:collection_times": "survey February 2023" - } -}, -{ - "type": "node", - "id": 241677172, - "lat": 51.2406925, - "lon": -1.1148194, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG22", - "ref": "RG22 154" - } -}, -{ - "type": "node", - "id": 241772704, - "lat": 51.6485030, - "lon": -0.7682174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 241788766, - "lat": 50.7198183, - "lon": -1.1461029, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 3", - "ref:GB:uprn": "10015322925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/elmfield-post-office-po33-1xb/00000PO333" - } -}, -{ - "type": "node", - "id": 241934087, - "lat": 52.5357911, - "lon": -1.9062279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "Priority postbox for covid deliveries on Saturday and Sundays", - "postal_code": "B42", - "ref": "B42 344", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 241934091, - "lat": 52.5358900, - "lon": -1.9110379, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B42", - "ref": "B42 683D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikidata": "Q106515501" - } -}, -{ - "type": "node", - "id": 241934126, - "lat": 52.5377397, - "lon": -1.9047723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B42", - "ref": "B42 679", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 242112212, - "lat": 51.0879454, - "lon": 1.1444976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "postal_code": "CT19", - "ref": "CT19 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 242112232, - "lat": 51.0820652, - "lon": 1.1718116, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT20 82", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT20 82D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2023-04-26" - } -}, -{ - "type": "node", - "id": 242112236, - "lat": 51.0791839, - "lon": 1.1796086, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 79" - } -}, -{ - "type": "node", - "id": 242161366, - "lat": 53.5514095, - "lon": -2.1967083, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242162095, - "lat": 55.8455860, - "lon": -4.0196738, - "tags": { - "amenity": "post_box", - "source": "local_knowledge", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 242162146, - "lat": 55.8498089, - "lon": -4.0164349, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242162168, - "lat": 55.8526055, - "lon": -4.0204504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML5 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 242162238, - "lat": 55.8471322, - "lon": -4.0492710, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 242162297, - "lat": 55.8498805, - "lon": -4.0659632, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 242162401, - "lat": 55.8644591, - "lon": -4.0390257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML5 49", - "royal_cypher": "scottish_crown", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 242162450, - "lat": 55.8665931, - "lon": -4.0440953, - "tags": { - "amenity": "post_box", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 242162459, - "lat": 55.8677103, - "lon": -4.0234867, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242538451, - "lat": 51.4454530, - "lon": -0.3993567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 242556264, - "lat": 51.7685167, - "lon": -1.2655282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 92" - } -}, -{ - "type": "node", - "id": 242556265, - "lat": 51.7495858, - "lon": -1.2316137, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "OX4 391", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 242588027, - "lat": 52.2429688, - "lon": 0.3947913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242588045, - "lat": 52.2453437, - "lon": 0.3918166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242588056, - "lat": 52.2452625, - "lon": 0.3866991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242588058, - "lat": 52.2481017, - "lon": 0.3902858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242588094, - "lat": 52.2522916, - "lon": 0.3883370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242588183, - "lat": 52.2616050, - "lon": 0.3879026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242783065, - "lat": 51.4589846, - "lon": -2.6003539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS2 301D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 242856358, - "lat": 53.2715796, - "lon": -2.2845822, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SK11 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 242917382, - "lat": 51.3783583, - "lon": -0.2918939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 198", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 242927279, - "lat": 50.8321060, - "lon": -0.1602396, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 152", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 242950811, - "lat": 52.5257185, - "lon": -1.9046817, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-27", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B42", - "ref": "B42 279", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 242960337, - "lat": 51.7682033, - "lon": -1.2572477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "OX2", - "ref": "OX2 151D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 242965129, - "lat": 51.7597727, - "lon": -1.2578235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2019-03-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "OX1 155" - } -}, -{ - "type": "node", - "id": 243067064, - "lat": 52.1887699, - "lon": -1.1606541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 173" - } -}, -{ - "type": "node", - "id": 243073450, - "lat": 52.1816513, - "lon": -1.1434671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 162" - } -}, -{ - "type": "node", - "id": 243076631, - "lat": 51.4865704, - "lon": -2.5080286, - "tags": { - "amenity": "post_box", - "mapillary": "578067649834443", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS16 653", - "survey:date": "2019-06-23" - } -}, -{ - "type": "node", - "id": 243076634, - "lat": 51.4855606, - "lon": -2.5136584, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "BS16", - "ref": "BS16 208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243076637, - "lat": 51.4845579, - "lon": -2.5167516, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 1119D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243081712, - "lat": 51.5062618, - "lon": -2.6211592, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 494D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 243094920, - "lat": 51.0851958, - "lon": 1.1555486, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243260108, - "lat": 50.7393109, - "lon": -3.5271726, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243270710, - "lat": 50.7427738, - "lon": -3.5260949, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243277911, - "lat": 52.5182560, - "lon": -1.8707659, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 1261" - } -}, -{ - "type": "node", - "id": 243343399, - "lat": 51.6064032, - "lon": -1.2515910, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 243351135, - "lat": 51.6062938, - "lon": -1.2392463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 243355193, - "lat": 51.6045476, - "lon": -1.2304476, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243355217, - "lat": 51.6016231, - "lon": -1.2549769, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243355224, - "lat": 51.5910691, - "lon": -1.2395888, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 243355229, - "lat": 51.5972981, - "lon": -1.2357880, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243485151, - "lat": 51.5196210, - "lon": -2.5385401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "BS34 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243511277, - "lat": 52.2827677, - "lon": 0.1221430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB24 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243511279, - "lat": 52.2938710, - "lon": 0.1295668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB4 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243511283, - "lat": 52.2854401, - "lon": 0.1167984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243512045, - "lat": 51.4628107, - "lon": -0.4264080, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 243512574, - "lat": 51.4585929, - "lon": -0.4327166, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 243515496, - "lat": 51.0779559, - "lon": 1.1760391, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT20", - "ref": "CT20 175", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 243556859, - "lat": 51.3537344, - "lon": -1.1217906, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 249" - } -}, -{ - "type": "node", - "id": 243604485, - "lat": 51.3581081, - "lon": -1.1220826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "postal_code": "RG26", - "ref": "RG26 33" - } -}, -{ - "type": "node", - "id": 243607442, - "lat": 51.4769292, - "lon": 0.0123888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 243607482, - "lat": 51.4810361, - "lon": 0.0137706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243608038, - "lat": 52.3000543, - "lon": 0.1383689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "fixme": "Is this CB24 285 in a new location?", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243608540, - "lat": 52.2763394, - "lon": 0.1177753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB24 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243676807, - "lat": 51.4821294, - "lon": 0.0265482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243676808, - "lat": 51.4838615, - "lon": 0.0340263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243676809, - "lat": 51.4870181, - "lon": 0.0388054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243676810, - "lat": 51.4840125, - "lon": 0.0312107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243707547, - "lat": 51.4786646, - "lon": -0.0094983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE10 12", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243707549, - "lat": 51.4791291, - "lon": -0.0103580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "still open during PO construction\ndual aperture, but rh slot is blocked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE10 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243709431, - "lat": 51.4774402, - "lon": -0.0092416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243712165, - "lat": 51.4755066, - "lon": -0.0131019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE10 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243712166, - "lat": 51.4743101, - "lon": -0.0097420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243712167, - "lat": 51.4781074, - "lon": -0.0067280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "plate with ref and collection times missing 25/9/14 - updated 2/6/18 and corrected ref to SE10 15. Also corrected royal cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243715111, - "lat": 51.4132639, - "lon": -0.2599792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 147D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 243715124, - "lat": 51.4115376, - "lon": -0.2613021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 308", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 243715131, - "lat": 51.4121099, - "lon": -0.2676236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 276", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 243715146, - "lat": 51.4111528, - "lon": -0.2776530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 237D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243715249, - "lat": 51.4181342, - "lon": -0.2579401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 306D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 243723146, - "lat": 51.4624592, - "lon": 0.0341399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243726119, - "lat": 51.4598192, - "lon": 0.0376655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243726220, - "lat": 52.7663737, - "lon": -1.2807424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 243726221, - "lat": 52.7699405, - "lon": -1.2864678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 243731474, - "lat": 53.8258116, - "lon": -1.5844692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "LS6 771", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243741014, - "lat": 51.4716653, - "lon": 0.0320137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243746841, - "lat": 51.6716363, - "lon": -3.9383411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA6 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243755041, - "lat": 53.4630916, - "lon": -1.9645158, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 243755539, - "lat": 51.4680206, - "lon": 0.0040514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "description": "GROTES PLACE", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243755540, - "lat": 51.4682859, - "lon": -0.0026763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243757344, - "lat": 51.4658131, - "lon": -0.0053147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243757571, - "lat": 53.4606007, - "lon": -1.9713543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SK13 166D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 243757699, - "lat": 51.4679009, - "lon": -0.0070280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 52", - "ref:GB:uprn": "10015443345", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243759217, - "lat": 51.4682564, - "lon": -0.0122661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243763613, - "lat": 51.4810960, - "lon": -0.0141057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE10", - "ref": "SE10 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243769295, - "lat": 51.4694212, - "lon": 0.0224483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243769569, - "lat": 51.4704500, - "lon": 0.0184087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243771875, - "lat": 51.4734386, - "lon": -0.0192403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243772152, - "lat": 51.4674844, - "lon": 0.0284874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 243787391, - "lat": 51.4635243, - "lon": 0.0397964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243788388, - "lat": 51.3643839, - "lon": -2.3766900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 120" - } -}, -{ - "type": "node", - "id": 243789468, - "lat": 51.4619196, - "lon": 0.0459109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 243789672, - "lat": 51.4633923, - "lon": 0.0448521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243789949, - "lat": 51.3637291, - "lon": -2.4057309, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 243832531, - "lat": 51.4588569, - "lon": 0.0067185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243832545, - "lat": 51.4540913, - "lon": 0.0083901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243832555, - "lat": 51.4557396, - "lon": 0.0028903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243832562, - "lat": 51.4527412, - "lon": 0.0141124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243832583, - "lat": 51.4511318, - "lon": 0.0285968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 243856338, - "lat": 53.8408233, - "lon": -0.3847828, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 243857661, - "lat": 53.8221982, - "lon": -1.5845562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 790", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 243892877, - "lat": 53.4389467, - "lon": -1.5409213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 243896548, - "lat": 51.4270590, - "lon": -0.1374778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW16 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 244007668, - "lat": 52.7663333, - "lon": -1.3019290, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE12 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244008305, - "lat": 55.9380641, - "lon": -3.1929287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 234", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 244008703, - "lat": 52.5140923, - "lon": -1.8811579, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B6", - "ref": "B6 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 244008726, - "lat": 52.5122593, - "lon": -1.8748937, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 1094" - } -}, -{ - "type": "node", - "id": 244008814, - "lat": 52.5068265, - "lon": -1.8690065, - "tags": { - "amenity": "post_box", - "postal_code": "B6", - "ref": "B6 866" - } -}, -{ - "type": "node", - "id": 244008820, - "lat": 52.5064443, - "lon": -1.8731052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "postal_code": "B6", - "ref": "B6 701", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 244065121, - "lat": 51.4386609, - "lon": 0.0214042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 244065122, - "lat": 51.4360855, - "lon": 0.0195529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 244119740, - "lat": 51.4425230, - "lon": -0.1350895, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 244137436, - "lat": 54.7752077, - "lon": -1.5704349, - "tags": { - "amenity": "post_box", - "mail:franked": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 354" - } -}, -{ - "type": "node", - "id": 244137437, - "lat": 54.7752166, - "lon": -1.5704897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 5" - } -}, -{ - "type": "node", - "id": 244138900, - "lat": 53.8178047, - "lon": -1.5857051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 244211576, - "lat": 53.3848055, - "lon": -2.9162031, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L18 716", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244220907, - "lat": 53.7053131, - "lon": -1.9304851, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 244244944, - "lat": 52.5867188, - "lon": -2.1323403, - "tags": { - "amenity": "post_box", - "ref": "WV1 4" - } -}, -{ - "type": "node", - "id": 244245512, - "lat": 51.6051179, - "lon": -1.2429845, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 244313986, - "lat": 50.7337520, - "lon": -3.5230636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "mapillary": "171789608370274", - "post_box:type": "pillar", - "survey:date": "2021-09-02" - } -}, -{ - "type": "node", - "id": 244318981, - "lat": 55.8318815, - "lon": -4.4477971, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "PA2", - "ref": "PA2 240" - } -}, -{ - "type": "node", - "id": 244319229, - "lat": 55.8350754, - "lon": -4.4475993, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "PA2", - "ref": "PA2 148" - } -}, -{ - "type": "node", - "id": 244336658, - "lat": 53.8004079, - "lon": -1.5446068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS2 22", - "royal_cypher": "no", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 244337977, - "lat": 51.8215463, - "lon": -0.3616988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 244375111, - "lat": 51.8153372, - "lon": -0.3558855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL5 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244382577, - "lat": 52.5645294, - "lon": -1.8165817, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 300" - } -}, -{ - "type": "node", - "id": 244390152, - "lat": 55.8620839, - "lon": -3.2039115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EH26 15D" - } -}, -{ - "type": "node", - "id": 244412118, - "lat": 53.6906988, - "lon": -1.9372934, - "tags": { - "amenity": "post_box", - "ref": "HX6 76" - } -}, -{ - "type": "node", - "id": 244412123, - "lat": 53.6959123, - "lon": -1.9359538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX6 145" - } -}, -{ - "type": "node", - "id": 244413238, - "lat": 53.6895861, - "lon": -1.9552921, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 244413634, - "lat": 53.6816940, - "lon": -1.9653917, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 244422041, - "lat": 51.4707028, - "lon": 0.0643973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 244435704, - "lat": 51.4790130, - "lon": 0.0103378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 244435709, - "lat": 51.4774952, - "lon": 0.0080548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 244453049, - "lat": 51.7650802, - "lon": -1.2556031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-07-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 244453050, - "lat": 51.7646674, - "lon": -1.2609007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 68D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 244453051, - "lat": 51.7619857, - "lon": -1.2602303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX2 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 244453052, - "lat": 51.7547055, - "lon": -1.2543267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244485946, - "lat": 55.8505391, - "lon": -4.0296938, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 244500894, - "lat": 55.8334328, - "lon": -4.4421840, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 244510651, - "lat": 51.7504123, - "lon": -1.2413444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX4 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244512012, - "lat": 52.5131805, - "lon": -1.8577968, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 95" - } -}, -{ - "type": "node", - "id": 244512045, - "lat": 52.5188115, - "lon": -1.8793634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B6", - "ref": "B6 811", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 244713389, - "lat": 51.2679492, - "lon": 0.3946838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME19", - "ref": "ME19 373" - } -}, -{ - "type": "node", - "id": 244713393, - "lat": 51.2734227, - "lon": 0.3970965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME19 150", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 244978776, - "lat": 51.2480767, - "lon": -0.6101899, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU2", - "ref": "GU2 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244992428, - "lat": 50.7093054, - "lon": -3.4864933, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 244999688, - "lat": 53.4007377, - "lon": -2.9032576, - "tags": { - "amenity": "post_box", - "ref": "L15 455" - } -}, -{ - "type": "node", - "id": 245002501, - "lat": 51.1155698, - "lon": -0.1301858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "name": "Rushmore", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH11 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245003173, - "lat": 51.4552919, - "lon": -0.4368596, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 245003201, - "lat": 51.4502819, - "lon": -0.4439145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW14 411D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 245003297, - "lat": 51.4516250, - "lon": -0.4373529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TW14 403D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 245006336, - "lat": 53.7043762, - "lon": -1.9281450, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 245007483, - "lat": 50.9638687, - "lon": -1.2957546, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 710D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245010202, - "lat": 53.4022907, - "lon": -2.9209298, - "tags": { - "amenity": "post_box", - "note": "according to wikipedia the National Standard pillar box that was here was destroyed by a firework in 2005", - "post_box:type": "lamp", - "ref": "L15 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245010596, - "lat": 53.4005577, - "lon": -2.9194750, - "tags": { - "amenity": "post_box", - "ref": "L15 487" - } -}, -{ - "type": "node", - "id": 245011703, - "lat": 53.3979374, - "lon": -2.9134962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "717138572800752", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 603", - "survey:date": "2022-03-26" - } -}, -{ - "type": "node", - "id": 245013882, - "lat": 53.7153653, - "lon": -1.8975364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245024591, - "lat": 53.4733863, - "lon": -1.9644871, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 245053442, - "lat": 52.7079130, - "lon": -2.7550435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245053443, - "lat": 52.7073752, - "lon": -2.7566158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 27;SY1 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245053444, - "lat": 52.7075937, - "lon": -2.7593715, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-04", - "postal_code": "SY1", - "ref": "SY1 17", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245053445, - "lat": 52.7116594, - "lon": -2.7498250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-08", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "SY1", - "ref": "SY1 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 245053821, - "lat": 51.7676175, - "lon": -1.2615395, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "OX2 73D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 245054001, - "lat": 52.7102905, - "lon": -2.7505724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 178", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245054600, - "lat": 52.7089080, - "lon": -2.7525466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 551;SY1 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245070056, - "lat": 53.8208560, - "lon": -1.5802819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245072928, - "lat": 53.4002675, - "lon": -2.9125756, - "tags": { - "amenity": "post_box", - "ref": "L15 952" - } -}, -{ - "type": "node", - "id": 245084261, - "lat": 55.9278329, - "lon": -3.2094469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 171", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245097354, - "lat": 51.4627681, - "lon": -0.0036031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 15", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245097382, - "lat": 51.4643987, - "lon": -0.0099598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 25", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245097413, - "lat": 51.4604427, - "lon": 0.0038542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245097506, - "lat": 51.4619633, - "lon": 0.0009852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245165726, - "lat": 52.5679871, - "lon": -2.1372967, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 245307723, - "lat": 51.2684686, - "lon": -0.5730510, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU4 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245424001, - "lat": 52.4777014, - "lon": -1.9230450, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 386", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 245424135, - "lat": 52.4803337, - "lon": -1.9241911, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B16 1100" - } -}, -{ - "type": "node", - "id": 245435421, - "lat": 51.5748926, - "lon": -0.1500181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 245444422, - "lat": 51.7845979, - "lon": -1.2812594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 13" - } -}, -{ - "type": "node", - "id": 245447042, - "lat": 51.5709552, - "lon": -0.1377238, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-20", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 245448775, - "lat": 55.8743749, - "lon": -3.5302954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 245451202, - "lat": 53.7214436, - "lon": -1.9439758, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 245474739, - "lat": 53.9731708, - "lon": -1.8756717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BD23 11D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 245479702, - "lat": 52.4778206, - "lon": -1.9133932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "postal_code": "B1", - "ref": "B1 1427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245522715, - "lat": 51.2821243, - "lon": -1.0494265, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG24", - "ref": "RG24 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 245560030, - "lat": 52.4772005, - "lon": -1.9155627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 145" - } -}, -{ - "type": "node", - "id": 245560550, - "lat": 52.4747289, - "lon": -1.9166297, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 245778452, - "lat": 51.4837128, - "lon": -3.2236175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245795100, - "lat": 53.7096342, - "lon": -1.9128484, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 245801564, - "lat": 53.7150025, - "lon": -1.9372463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "mapillary": "913585386162958", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "survey:date": "2020-10-30" - } -}, -{ - "type": "node", - "id": 245808304, - "lat": 55.8623583, - "lon": -4.0284687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ML5 41", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 245926928, - "lat": 50.9793345, - "lon": -1.4054178, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 797", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 245941324, - "lat": 52.5305686, - "lon": -1.7995886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B76", - "ref": "B76 537", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "SURVEY" - } -}, -{ - "type": "node", - "id": 245943685, - "lat": 51.8238733, - "lon": -0.3659145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 245947298, - "lat": 55.8581726, - "lon": -3.1979458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "327577145463022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH26 378", - "royal_cypher": "scottish_crown", - "survey:date": "2020-06-19" - } -}, -{ - "type": "node", - "id": 245948862, - "lat": 51.8316879, - "lon": -0.3828430, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 246080585, - "lat": 51.7994387, - "lon": -0.3957882, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.7b" - } -}, -{ - "type": "node", - "id": 246114272, - "lat": 51.4578501, - "lon": -0.1350854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW4 6" - } -}, -{ - "type": "node", - "id": 246144636, - "lat": 51.8278082, - "lon": -0.3723575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "post_box:type": "pillar", - "ref": "AL5 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246176247, - "lat": 51.4746065, - "lon": -0.3515601, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 246191252, - "lat": 52.5247541, - "lon": -1.8966712, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B42", - "ref": "B42 587" - } -}, -{ - "type": "node", - "id": 246191279, - "lat": 52.5170256, - "lon": -1.8955352, - "tags": { - "amenity": "post_box", - "postal_code": "B42", - "ref": "B42 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246192219, - "lat": 51.4597540, - "lon": -2.6085789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 389D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 246209357, - "lat": 51.2430931, - "lon": -1.1223033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 246212971, - "lat": 51.4768020, - "lon": -2.6215703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 534", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246213022, - "lat": 51.4816846, - "lon": -2.6298925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 440", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 246223685, - "lat": 51.4996479, - "lon": -2.6237440, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS9 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246227526, - "lat": 55.9479184, - "lon": -3.1866886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-29", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH1 103", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246233226, - "lat": 56.1222218, - "lon": -3.1614964, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY1 29" - } -}, -{ - "type": "node", - "id": 246233228, - "lat": 55.9195362, - "lon": -3.2408105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 76" - } -}, -{ - "type": "node", - "id": 246233230, - "lat": 55.9567443, - "lon": -3.2184998, - "tags": { - "amenity": "post_box", - "ref": "EH4 215" - } -}, -{ - "type": "node", - "id": 246251959, - "lat": 50.7041142, - "lon": -3.4977642, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 522D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246287528, - "lat": 53.4439483, - "lon": -2.0261642, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 246450099, - "lat": 51.5967483, - "lon": -2.4003705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1819207831797908", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-08" - } -}, -{ - "type": "node", - "id": 246497568, - "lat": 54.7818268, - "lon": -1.5686877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246524579, - "lat": 52.2455985, - "lon": 0.4030878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524613, - "lat": 52.2547128, - "lon": 0.3982759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524647, - "lat": 52.2554342, - "lon": 0.3905140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524671, - "lat": 52.2477561, - "lon": 0.4005704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 20", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524797, - "lat": 52.2670437, - "lon": 0.3782694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524808, - "lat": 52.2747502, - "lon": 0.3754203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524828, - "lat": 52.2672499, - "lon": 0.3626491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246524844, - "lat": 52.2653802, - "lon": 0.3744513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB8 106", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246545755, - "lat": 51.2567742, - "lon": -1.0970143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG21", - "ref": "RG21 294" - } -}, -{ - "type": "node", - "id": 246558932, - "lat": 52.4905164, - "lon": -1.9677915, - "tags": { - "amenity": "post_box", - "ref": "B66 182" - } -}, -{ - "type": "node", - "id": 246629138, - "lat": 54.0882932, - "lon": -0.4577888, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246642710, - "lat": 52.7745509, - "lon": -1.2962676, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 246648328, - "lat": 51.7533060, - "lon": -0.9784173, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "OX9 396" - } -}, -{ - "type": "node", - "id": 246660515, - "lat": 52.5398966, - "lon": -1.9299152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "B42", - "ref": "B42 688", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246660530, - "lat": 52.5355827, - "lon": -1.9195729, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-14", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B42 353", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 246660533, - "lat": 52.5358987, - "lon": -1.9274831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B42", - "ref": "B42 1029", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246660546, - "lat": 52.5381609, - "lon": -1.9391950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 1226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246660550, - "lat": 52.5351265, - "lon": -1.9355464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 1077" - } -}, -{ - "type": "node", - "id": 246660553, - "lat": 52.5393864, - "lon": -1.9387865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 543", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246672915, - "lat": 50.7353808, - "lon": -3.4684253, - "tags": { - "amenity": "post_box", - "name": "Monkerton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EX1 3RG", - "ref": "EX1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246674192, - "lat": 51.2574170, - "lon": -1.0994079, - "tags": { - "amenity": "post_box", - "mapillary": "153499067171624", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 78", - "survey:date": "2022-05-15" - } -}, -{ - "type": "node", - "id": 246674193, - "lat": 51.2595625, - "lon": -1.0956260, - "tags": { - "amenity": "post_box", - "mapillary": "208284161418694", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 31", - "survey:date": "2021-05-06" - } -}, -{ - "type": "node", - "id": 246713343, - "lat": 51.4613253, - "lon": 0.0152040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246804476, - "lat": 51.2218321, - "lon": -0.7339257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU10 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 246805859, - "lat": 51.2217156, - "lon": -0.6735277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU3 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 246815294, - "lat": 51.0295522, - "lon": -1.1604787, - "tags": { - "amenity": "post_box", - "mapillary": "348359219953122", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO24 138", - "survey:date": "2020-07-15" - } -}, -{ - "type": "node", - "id": 246823315, - "lat": 50.9791649, - "lon": -1.1552703, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246826720, - "lat": 51.3427751, - "lon": 1.0162302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246828213, - "lat": 51.3454487, - "lon": 0.9926879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246842390, - "lat": 51.5250584, - "lon": -0.0493438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 19;E1 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246842393, - "lat": 51.5242143, - "lon": -0.0430847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "The Meadow Foundry Co Ltd, Mansfield", - "post_box:type": "pillar", - "ref": "E1 21;E1 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246842416, - "lat": 51.5251118, - "lon": -0.0391318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E1 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246842418, - "lat": 51.5281416, - "lon": -0.0373604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246842423, - "lat": 51.5301379, - "lon": -0.0349722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246846419, - "lat": 51.5291592, - "lon": -0.0267864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246850576, - "lat": 52.5093259, - "lon": -1.9924653, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B70", - "ref": "B70 49", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 246860021, - "lat": 51.5319858, - "lon": -0.0232935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246860024, - "lat": 51.5349441, - "lon": -0.0219263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 246862672, - "lat": 51.7221205, - "lon": -0.0253213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 247007524, - "lat": 51.7172109, - "lon": -0.0254788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 247033789, - "lat": 51.7089307, - "lon": -0.0293923, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247037307, - "lat": 51.7165047, - "lon": -0.0327578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 247038274, - "lat": 51.7185796, - "lon": -0.0283339, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247051416, - "lat": 51.2726761, - "lon": -0.6099552, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU3 99" - } -}, -{ - "type": "node", - "id": 247052766, - "lat": 51.8894259, - "lon": -1.1871384, - "tags": { - "amenity": "post_box", - "postal_code": "OX26", - "ref": "OX26 335" - } -}, -{ - "type": "node", - "id": 247053350, - "lat": 52.4875218, - "lon": -1.9646960, - "tags": { - "amenity": "post_box", - "ref": "B66 548" - } -}, -{ - "type": "node", - "id": 247074752, - "lat": 51.4628412, - "lon": 0.0181610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247092933, - "lat": 51.6813111, - "lon": -1.2614909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_m", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 1119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 247094430, - "lat": 51.3248340, - "lon": -1.2429447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "postal_code": "RG20", - "ref": "RG20 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247118955, - "lat": 51.4064552, - "lon": -0.2944873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT1 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247123495, - "lat": 51.3627105, - "lon": -1.1878624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-28" - } -}, -{ - "type": "node", - "id": 247123597, - "lat": 51.3727987, - "lon": -1.2095008, - "tags": { - "amenity": "post_box", - "postal_code": "RG7", - "ref": "RG7 64" - } -}, -{ - "type": "node", - "id": 247123600, - "lat": 53.0494480, - "lon": -2.1771060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ST6", - "ref": "ST6 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "http://www.dracos.co.uk/play/locating-postboxes/" - } -}, -{ - "type": "node", - "id": 247124138, - "lat": 51.3755809, - "lon": -1.2170324, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG7", - "ref": "RG7 312" - } -}, -{ - "type": "node", - "id": 247126346, - "lat": 51.3803846, - "lon": -1.2719824, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "RG19", - "ref": "RG19 19" - } -}, -{ - "type": "node", - "id": 247214544, - "lat": 53.3768902, - "lon": -2.9278192, - "tags": { - "amenity": "post_box", - "ref": "L17 731" - } -}, -{ - "type": "node", - "id": 247214545, - "lat": 53.3778176, - "lon": -2.9298413, - "tags": { - "amenity": "post_box", - "ref": "L17 729" - } -}, -{ - "type": "node", - "id": 247256926, - "lat": 53.3757045, - "lon": -2.9306921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "ref": "L17 375", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247292744, - "lat": 52.4598995, - "lon": -1.9462377, - "tags": { - "amenity": "post_box", - "ref": "B17 244" - } -}, -{ - "type": "node", - "id": 247295499, - "lat": 52.4585359, - "lon": -1.9503871, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 331" - } -}, -{ - "type": "node", - "id": 247326931, - "lat": 51.5867533, - "lon": -0.1336057, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247328533, - "lat": 51.5830027, - "lon": -0.1263017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N8 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 247330928, - "lat": 51.7346724, - "lon": -0.3841552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247331863, - "lat": 52.7730400, - "lon": -1.2854642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247332026, - "lat": 52.7787458, - "lon": -1.2868148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE12 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247332040, - "lat": 52.7784647, - "lon": -1.2910311, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247334745, - "lat": 52.7711300, - "lon": -1.2906576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE12 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247334751, - "lat": 52.7672192, - "lon": -1.2947956, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247334752, - "lat": 52.7632995, - "lon": -1.2873548, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247338269, - "lat": 51.4548035, - "lon": -0.9639239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "766899178587727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG1", - "ref": "RG1 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-12-02" - } -}, -{ - "type": "node", - "id": 247352367, - "lat": 51.8020987, - "lon": -0.4016799, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.7a" - } -}, -{ - "type": "node", - "id": 247354677, - "lat": 53.8104628, - "lon": -1.5413915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "historic": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 288", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 247364734, - "lat": 51.3161576, - "lon": -0.1659198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247364735, - "lat": 51.3172458, - "lon": -0.1589438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 429", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247364736, - "lat": 51.3156919, - "lon": -0.1526218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 357D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247364738, - "lat": 51.3188192, - "lon": -0.1502976, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-21", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 295", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247376311, - "lat": 51.2235326, - "lon": 1.3780599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247386402, - "lat": 53.3810413, - "lon": -2.9222249, - "tags": { - "amenity": "post_box", - "ref": "L18 206" - } -}, -{ - "type": "node", - "id": 247386411, - "lat": 53.3798816, - "lon": -2.9139536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "mapillary": "1102765836899831", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L18 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 247387367, - "lat": 51.2227790, - "lon": 1.3896494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 128", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247390218, - "lat": 50.7708664, - "lon": -3.4950164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247392333, - "lat": 51.2276405, - "lon": 1.4034372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 29", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 247392394, - "lat": 51.2346574, - "lon": 1.4015167, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-05", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "note": "No collection times notice when surveyed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 58", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247393046, - "lat": 51.2213061, - "lon": 1.3936512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT14", - "ref": "CT14 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247418451, - "lat": 51.8659919, - "lon": -0.4572639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247432048, - "lat": 53.8200451, - "lon": -1.5764259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247456696, - "lat": 53.4486313, - "lon": -2.0310738, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247456697, - "lat": 53.4516579, - "lon": -2.0315702, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247465714, - "lat": 51.4481480, - "lon": -0.4122144, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW14 419D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247475601, - "lat": 51.0792425, - "lon": -0.3074635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247482442, - "lat": 53.4460721, - "lon": -2.0364667, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247486700, - "lat": 51.4639441, - "lon": 0.0542625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247486703, - "lat": 51.4659104, - "lon": 0.0569117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Probably the post box with the best view in london", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247486731, - "lat": 51.4625497, - "lon": 0.0674655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247486732, - "lat": 51.4632862, - "lon": 0.0622364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 247486735, - "lat": 51.4625693, - "lon": 0.0572117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 54", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 247486761, - "lat": 51.4566542, - "lon": 0.0556438, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "collection plate missing 18/03/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247486765, - "lat": 51.4560557, - "lon": 0.0509156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247486767, - "lat": 51.4589493, - "lon": 0.0550206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247651175, - "lat": 52.3285507, - "lon": -0.0720450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE27 94" - } -}, -{ - "type": "node", - "id": 247651242, - "lat": 52.3238945, - "lon": -0.0743501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "fixme": "ref unreadable @ 2013-03-05", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247651293, - "lat": 52.3320961, - "lon": -0.0802961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 209" - } -}, -{ - "type": "node", - "id": 247664715, - "lat": 51.0797829, - "lon": -0.2962644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247678725, - "lat": 51.2542497, - "lon": -1.1060140, - "tags": { - "amenity": "post_box", - "mapillary": "402209620807612", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 246", - "survey:date": "2019-09-03" - } -}, -{ - "type": "node", - "id": 247761923, - "lat": 52.5884640, - "lon": -2.1159987, - "tags": { - "amenity": "post_box", - "colour": "red", - "description": "Combination letters and metered business mail", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 247767335, - "lat": 51.0781035, - "lon": -0.3026715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247767336, - "lat": 51.0759950, - "lon": -0.3019598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 220" - } -}, -{ - "type": "node", - "id": 247806145, - "lat": 51.3591016, - "lon": -0.1380431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247806147, - "lat": 51.3582110, - "lon": -0.1337679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247833019, - "lat": 53.8766744, - "lon": -1.7250641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS20 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 247884551, - "lat": 51.4307493, - "lon": -0.3927506, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247884552, - "lat": 51.4288522, - "lon": -0.3926695, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247884583, - "lat": 51.4304666, - "lon": -0.3900965, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247884595, - "lat": 51.4335628, - "lon": -0.3857802, - "tags": { - "amenity": "post_box", - "ref": "TW13 412" - } -}, -{ - "type": "node", - "id": 247889652, - "lat": 53.6880304, - "lon": -1.4997316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 6" - } -}, -{ - "type": "node", - "id": 247890934, - "lat": 53.6861548, - "lon": -1.4883876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 28" - } -}, -{ - "type": "node", - "id": 247908825, - "lat": 51.3499543, - "lon": -0.2208077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM2 255D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 247911014, - "lat": 51.3439542, - "lon": -0.2009502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247915733, - "lat": 51.9045341, - "lon": -1.0594201, - "tags": { - "amenity": "post_box", - "ref": "OX27 867" - } -}, -{ - "type": "node", - "id": 247920125, - "lat": 51.3480961, - "lon": -0.1985461, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-03", - "ref": "SM2 288" - } -}, -{ - "type": "node", - "id": 247920926, - "lat": 51.3476259, - "lon": -0.2045223, - "tags": { - "amenity": "post_box", - "ref": "SM2 114" - } -}, -{ - "type": "node", - "id": 247930558, - "lat": 51.2196513, - "lon": 1.3957235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 2", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247931850, - "lat": 51.2185622, - "lon": 1.3893699, - "tags": { - "amenity": "post_box", - "postal_code": "CT14", - "ref": "CT14 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247931872, - "lat": 51.2176608, - "lon": 1.3820226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247934004, - "lat": 51.2146884, - "lon": 1.3867254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT14", - "ref": "CT14 131", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247934902, - "lat": 51.2134469, - "lon": 1.3945256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 124", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247935956, - "lat": 51.2190543, - "lon": 1.4027124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1152126945271441", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 247935962, - "lat": 51.2167571, - "lon": 1.3997160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 27", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 247937001, - "lat": 53.4645855, - "lon": -1.9893313, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 247937126, - "lat": 53.4661896, - "lon": -1.9933422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 247952945, - "lat": 51.4300272, - "lon": -0.1360884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-29", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248008841, - "lat": 50.8656195, - "lon": -0.4517108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "wall", - "ref": "BN13 1780", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248038764, - "lat": 51.3548001, - "lon": -1.1685148, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 292" - } -}, -{ - "type": "node", - "id": 248040175, - "lat": 51.3571591, - "lon": -1.1700301, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 266" - } -}, -{ - "type": "node", - "id": 248040676, - "lat": 52.5342390, - "lon": -1.9259813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "B42", - "ref": "B42 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248041209, - "lat": 51.3581173, - "lon": -1.1652205, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 253" - } -}, -{ - "type": "node", - "id": 248042611, - "lat": 51.3452442, - "lon": -0.1178440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248046193, - "lat": 53.6754919, - "lon": -1.5009843, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF2 66" - } -}, -{ - "type": "node", - "id": 248049830, - "lat": 52.5374766, - "lon": -1.9440006, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B43", - "ref": "B43 1143" - } -}, -{ - "type": "node", - "id": 248054270, - "lat": 53.9825815, - "lon": -0.5063222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "YO25 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248084407, - "lat": 53.2708573, - "lon": -2.1545779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248180956, - "lat": 52.5325143, - "lon": -1.9300015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B42", - "ref": "B42 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248185474, - "lat": 52.5281692, - "lon": -1.9235394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 904", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 248185479, - "lat": 52.5314284, - "lon": -1.9224351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 857", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 248185527, - "lat": 52.5260451, - "lon": -1.9098866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 748", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248185530, - "lat": 52.5286443, - "lon": -1.9102836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 560D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikidata": "Q106452042" - } -}, -{ - "type": "node", - "id": 248201636, - "lat": 53.2594770, - "lon": -2.1277704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SK11 1677;SK11 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248201712, - "lat": 53.2686491, - "lon": -2.1394096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "SK10", - "ref": "SK10 135", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 248228746, - "lat": 51.3580617, - "lon": -0.1397899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 92", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248228748, - "lat": 51.3573020, - "lon": -0.1414677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248228798, - "lat": 51.3535358, - "lon": -0.1468336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248228821, - "lat": 51.3568289, - "lon": -0.1493788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248229483, - "lat": 51.5602720, - "lon": -0.1377717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N19 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 248229487, - "lat": 51.5616346, - "lon": -0.1420007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 34D" - } -}, -{ - "type": "node", - "id": 248231070, - "lat": 51.5632793, - "lon": -0.1524360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "ref": "N6 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248410017, - "lat": 52.2521222, - "lon": 0.4075302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410046, - "lat": 52.2479282, - "lon": 0.4085971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB8 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410119, - "lat": 52.2494570, - "lon": 0.4150908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB8 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410126, - "lat": 52.2524964, - "lon": 0.4193043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410201, - "lat": 52.2385508, - "lon": 0.4293040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410216, - "lat": 52.2375278, - "lon": 0.4284039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410348, - "lat": 52.2396152, - "lon": 0.4152935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB8 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248410355, - "lat": 52.2377767, - "lon": 0.4105116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248429887, - "lat": 57.1580323, - "lon": -2.1108639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB25 41", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 248438747, - "lat": 51.3763613, - "lon": -0.2954803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 243D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248480012, - "lat": 55.9511783, - "lon": -3.2192242, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH4 214" - } -}, -{ - "type": "node", - "id": 248480589, - "lat": 51.4956315, - "lon": 0.3294583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 88" - } -}, -{ - "type": "node", - "id": 248481842, - "lat": 53.2631847, - "lon": -2.1395164, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 23" - } -}, -{ - "type": "node", - "id": 248481856, - "lat": 53.2633245, - "lon": -2.1579784, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 62" - } -}, -{ - "type": "node", - "id": 248482522, - "lat": 53.4184149, - "lon": -2.8660263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248484460, - "lat": 52.3015647, - "lon": 0.4369930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248499158, - "lat": 51.3507178, - "lon": -0.1480253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248499169, - "lat": 51.3546146, - "lon": -0.1409981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 81", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248499177, - "lat": 51.3531493, - "lon": -0.1376957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate David Weir, Gold Medal winner London 2012 Paralympic Games. Athletics: Track - Mens 800m, T54", - "note": "This is a gold Olympic postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248504858, - "lat": 51.5117198, - "lon": 0.2930647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 203" - } -}, -{ - "type": "node", - "id": 248526543, - "lat": 55.8478479, - "lon": -4.3229976, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "G51", - "ref": "G51 360" - } -}, -{ - "type": "node", - "id": 248539049, - "lat": 55.8904723, - "lon": -3.5458544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "475785520172143", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 301D", - "royal_cypher": "scottish_crown", - "source:position": "Mapillary 2015-11-21", - "survey:date": "2020-12-30" - } -}, -{ - "type": "node", - "id": 248539602, - "lat": 51.3766353, - "lon": -0.3031402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248543908, - "lat": 51.3454027, - "lon": -0.1451324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248543909, - "lat": 51.3479723, - "lon": -0.1422512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 250D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248543911, - "lat": 51.3505135, - "lon": -0.1388066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248543917, - "lat": 51.3452401, - "lon": -0.1371034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248550916, - "lat": 51.4965065, - "lon": -0.0345490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248565590, - "lat": 53.4225572, - "lon": -2.9208805, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 248575108, - "lat": 53.2656512, - "lon": -2.1431582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248600770, - "lat": 51.6011914, - "lon": -0.1949568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N3 14" - } -}, -{ - "type": "node", - "id": 248661598, - "lat": 51.3988597, - "lon": -0.2244734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 248680135, - "lat": 52.5433535, - "lon": -1.9381406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 936", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248680139, - "lat": 52.5438070, - "lon": -1.9445345, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B43", - "ref": "B43 1347" - } -}, -{ - "type": "node", - "id": 248680140, - "lat": 52.5391225, - "lon": -1.9498626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B43", - "ref": "B43 887", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 248680157, - "lat": 52.5425598, - "lon": -1.9554846, - "tags": { - "amenity": "post_box", - "postal_code": "B43", - "ref": "B43 375" - } -}, -{ - "type": "node", - "id": 248681825, - "lat": 51.7968928, - "lon": -0.2470264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AL8 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248718367, - "lat": 53.0888934, - "lon": -2.4513119, - "tags": { - "amenity": "post_box", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 248719785, - "lat": 52.7088109, - "lon": -2.7523953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 18:00", - "note": "ref not visible on LH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248721660, - "lat": 52.7074931, - "lon": -2.7546004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1222836851478589", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248758449, - "lat": 51.0870978, - "lon": -0.3129629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248779642, - "lat": 50.9558591, - "lon": -1.6397351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248786891, - "lat": 51.7642021, - "lon": -1.2687931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "OX2 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248789086, - "lat": 55.8527153, - "lon": -4.0479307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ML5 5", - "ref": "ML5 17", - "royal_cypher": "scottish_crown", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 248796606, - "lat": 51.0852019, - "lon": -0.3198924, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248811688, - "lat": 50.8615859, - "lon": -1.1718121, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO16 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248812133, - "lat": 50.8599132, - "lon": -1.1627265, - "tags": { - "amenity": "post_box", - "odbl": "clean", - "ref": "PO16 45" - } -}, -{ - "type": "node", - "id": 248886936, - "lat": 53.2841200, - "lon": -2.1482595, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 248887020, - "lat": 53.2891668, - "lon": -2.1514141, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248887023, - "lat": 53.2796736, - "lon": -2.1531814, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 248912447, - "lat": 53.6721162, - "lon": -1.4999924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 248917821, - "lat": 53.2882175, - "lon": -2.1371069, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 248917859, - "lat": 53.2965136, - "lon": -2.1501768, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 248921517, - "lat": 51.4660139, - "lon": -0.1409351, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 248921736, - "lat": 53.2883401, - "lon": -2.1614568, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 248924800, - "lat": 51.4646340, - "lon": -0.1386399, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 248927736, - "lat": 51.6096169, - "lon": -1.4223595, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 248937798, - "lat": 52.2351990, - "lon": 0.4027576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248937799, - "lat": 52.2382767, - "lon": 0.4060542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248937839, - "lat": 52.2426730, - "lon": 0.4106208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB8 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248948291, - "lat": 51.5241639, - "lon": -0.0203628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 17D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248948333, - "lat": 51.5190877, - "lon": -0.0116774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 248951285, - "lat": 51.4379195, - "lon": -0.3721550, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 248951295, - "lat": 51.4415374, - "lon": -0.3782760, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 248984099, - "lat": 52.1722829, - "lon": -2.2122736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR5 437" - } -}, -{ - "type": "node", - "id": 249084058, - "lat": 51.6763764, - "lon": -4.9191127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA71 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 249092987, - "lat": 50.8098744, - "lon": -0.4036658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1603D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 249135515, - "lat": 51.5109742, - "lon": -0.0503479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1181741922388124", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1W 64D;E1W 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249140182, - "lat": 50.8118439, - "lon": -0.4436812, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-15", - "old_ref": "BN12 1804", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN12 1804D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249148451, - "lat": 51.2238954, - "lon": 1.2382058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249150336, - "lat": 51.1956980, - "lon": 1.3401089, - "tags": { - "amenity": "post_box", - "mapillary": "796893170955686", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 62", - "source": "survey", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 249151855, - "lat": 51.7573983, - "lon": -1.2623736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX1", - "ref": "OX1 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing; survey", - "survey:date": "2014-11-05" - } -}, -{ - "type": "node", - "id": 249157288, - "lat": 51.2163173, - "lon": 1.3719134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 130", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249171806, - "lat": 51.3951888, - "lon": -0.2243202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 249176163, - "lat": 51.2140692, - "lon": 1.3735460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 96", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249184401, - "lat": 51.2119341, - "lon": 1.3834230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249184518, - "lat": 51.2094989, - "lon": 1.3903144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 78D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249184584, - "lat": 51.2067039, - "lon": 1.3851777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 24", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249184606, - "lat": 51.2090236, - "lon": 1.3805227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 76", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249193573, - "lat": 51.2058181, - "lon": 1.3949914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 26", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249193771, - "lat": 51.2107792, - "lon": 1.3946588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 31", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249193820, - "lat": 51.2042878, - "lon": 1.3932822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 4", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249193853, - "lat": 51.2039064, - "lon": 1.3880720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 126", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249198543, - "lat": 52.1811696, - "lon": -2.2199296, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 11:30", - "historic_operator": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR5 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249199770, - "lat": 52.1879037, - "lon": -2.2192623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WR1", - "ref": "WR1 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249201395, - "lat": 54.2761978, - "lon": -0.4215827, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 249202558, - "lat": 52.1823358, - "lon": -2.2177123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR5 47" - } -}, -{ - "type": "node", - "id": 249216409, - "lat": 52.8750930, - "lon": -1.1317143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG11 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249228400, - "lat": 52.2923490, - "lon": 0.1254561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB4 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249243794, - "lat": 50.7239171, - "lon": -3.4782538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249251235, - "lat": 51.4172405, - "lon": -1.7324880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249270316, - "lat": 52.5582441, - "lon": -1.9370412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "postal_code": "B43", - "ref": "B43 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249277078, - "lat": 52.5550136, - "lon": -1.9412763, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B43", - "ref": "B43 1075" - } -}, -{ - "type": "node", - "id": 249280873, - "lat": 53.8072452, - "lon": -1.5198352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS9 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249300393, - "lat": 53.7882684, - "lon": -1.5207861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249311426, - "lat": 51.5048805, - "lon": -0.0555876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1W 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249311847, - "lat": 51.5063157, - "lon": -0.0545713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1W 63D;E1W 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249317846, - "lat": 51.5034798, - "lon": -0.0616242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1W 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249321591, - "lat": 51.2141664, - "lon": -2.6140512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 249328139, - "lat": 53.4614212, - "lon": -1.9785743, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 249328141, - "lat": 53.4570904, - "lon": -1.9775153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 249371896, - "lat": 55.0041385, - "lon": -1.6086388, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 249383041, - "lat": 54.8359481, - "lon": -2.0797302, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 249386472, - "lat": 51.5255641, - "lon": -0.7496425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SL6 143", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249398753, - "lat": 51.6254236, - "lon": -0.2594421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 49" - } -}, -{ - "type": "node", - "id": 249399082, - "lat": 55.9571739, - "lon": -3.2067333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 89", - "royal_cypher": "scottish_crown", - "survey:date": "2022-07-15", - "wikimedia_commons": "File:Steps in India Street, Edinburgh - geograph.org.uk - 3636767.jpg" - } -}, -{ - "type": "node", - "id": 249400475, - "lat": 52.4682282, - "lon": -1.9669778, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B17 465" - } -}, -{ - "type": "node", - "id": 249405538, - "lat": 52.5454919, - "lon": -1.9352374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B43 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249426181, - "lat": 55.9563941, - "lon": -3.2111307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH4 79", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 249426922, - "lat": 52.5472848, - "lon": -1.9495782, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B43", - "ref": "B43 1102" - } -}, -{ - "type": "node", - "id": 249427350, - "lat": 52.5489288, - "lon": -1.9414549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B43", - "ref": "B43 1059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249427401, - "lat": 52.5504240, - "lon": -1.9361793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B43", - "ref": "B43 621" - } -}, -{ - "type": "node", - "id": 249431963, - "lat": 53.8703442, - "lon": -1.7309970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249431969, - "lat": 53.8683598, - "lon": -1.7295994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LS20 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249442939, - "lat": 53.4046231, - "lon": -2.2319578, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 249443409, - "lat": 53.4154721, - "lon": -2.2321537, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 249444031, - "lat": 51.8536594, - "lon": -0.4507821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249445571, - "lat": 51.8614070, - "lon": -0.4624687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249451042, - "lat": 51.8544609, - "lon": -0.4336326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249454656, - "lat": 51.8614117, - "lon": -0.4551153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249461338, - "lat": 51.8370375, - "lon": -0.4616810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 249472506, - "lat": 55.9555277, - "lon": -3.2092895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "ref": "EH3 77", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 249486434, - "lat": 51.8331859, - "lon": -0.4657999, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.7b" - } -}, -{ - "type": "node", - "id": 249492275, - "lat": 51.5439476, - "lon": 0.4533466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 249496021, - "lat": 55.9552324, - "lon": -3.2130998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 150", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 249496023, - "lat": 55.9552081, - "lon": -3.2164889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "306756667762382", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 92D", - "survey:date": "2020-02-16" - } -}, -{ - "type": "node", - "id": 249496025, - "lat": 55.9554020, - "lon": -3.2202848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 428", - "royal_cypher": "scottish_crown", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 249497712, - "lat": 51.4724085, - "lon": -0.3563130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 249497713, - "lat": 51.4754685, - "lon": -0.3596491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "502664044517166", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 249504084, - "lat": 55.9539137, - "lon": -3.1943532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH2 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249514007, - "lat": 52.4728636, - "lon": -1.9683154, - "tags": { - "amenity": "post_box", - "ref": "B66 69" - } -}, -{ - "type": "node", - "id": 249554175, - "lat": 51.2329776, - "lon": -0.2031687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "drive_through": "no", - "image": "https://www.bing.com/maps?osid=65bdf8aa-802f-4eac-84cd-16c3ff4904f6&cp=51.232924~-0.20329&lvl=19&dir=46.281685&pi=-9.170025&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 83" - } -}, -{ - "type": "node", - "id": 249562337, - "lat": 52.3582304, - "lon": -1.5662434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 395D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249563042, - "lat": 50.7091568, - "lon": -3.5312122, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249563078, - "lat": 50.7051658, - "lon": -3.5280564, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-27", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX2 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249564365, - "lat": 51.4767540, - "lon": -0.3291015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW7 262" - } -}, -{ - "type": "node", - "id": 249573041, - "lat": 51.4890314, - "lon": -0.2794640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 51D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 249573061, - "lat": 51.4918218, - "lon": -0.2711440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 249573062, - "lat": 51.4905753, - "lon": -0.2724688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 249574822, - "lat": 52.3554066, - "lon": -1.6976470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "B93", - "ref": "B93 234D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249580291, - "lat": 52.4625499, - "lon": -1.9563753, - "tags": { - "amenity": "post_box", - "ref": "B17 158" - } -}, -{ - "type": "node", - "id": 249585537, - "lat": 52.3864276, - "lon": -1.7225925, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B93 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249585548, - "lat": 52.4548845, - "lon": -1.7280726, - "tags": { - "amenity": "post_box", - "postal_code": "B37", - "ref": "B37 9009" - } -}, -{ - "type": "node", - "id": 249585549, - "lat": 52.4548870, - "lon": -1.7280509, - "tags": { - "amenity": "post_box", - "ref": "B37 1281" - } -}, -{ - "type": "node", - "id": 249585551, - "lat": 52.4633649, - "lon": -1.7298729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 08:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B37 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249588907, - "lat": 51.5218694, - "lon": 0.4316543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 249591605, - "lat": 55.9573849, - "lon": -3.2140508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH4 198", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 249591619, - "lat": 55.9531165, - "lon": -3.2090593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH3 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249607150, - "lat": 51.3989894, - "lon": -0.2501210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 249711804, - "lat": 51.4077295, - "lon": -0.3004592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249733179, - "lat": 51.4940985, - "lon": -0.1195353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 53;SE1 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 249756915, - "lat": 51.7745918, - "lon": 0.0803869, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.7b" - } -}, -{ - "type": "node", - "id": 249759500, - "lat": 50.8039983, - "lon": -3.5063244, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "EX5 95" - } -}, -{ - "type": "node", - "id": 249786774, - "lat": 51.5125882, - "lon": -0.3093994, - "tags": { - "amenity": "post_box", - "mapillary": "702052914292408", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 22", - "survey:date": "2021-09-27" - } -}, -{ - "type": "node", - "id": 249786779, - "lat": 51.5120897, - "lon": -0.3135522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 249799333, - "lat": 51.5057721, - "lon": -0.3194759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "mapillary": "820474292205156", - "post_box:type": "pillar", - "ref": "W13 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-03-01" - } -}, -{ - "type": "node", - "id": 249799344, - "lat": 51.5082130, - "lon": -0.3135712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "544157726572824", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-02-15" - } -}, -{ - "type": "node", - "id": 249799346, - "lat": 51.5066613, - "lon": -0.3109011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "2874696399446736", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2021-05-16" - } -}, -{ - "type": "node", - "id": 249808016, - "lat": 52.5118897, - "lon": -1.8846684, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 4151" - } -}, -{ - "type": "node", - "id": 249808705, - "lat": 51.9795691, - "lon": -1.2405651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX27 617", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 249814373, - "lat": 52.5035071, - "lon": -1.8933160, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 78" - } -}, -{ - "type": "node", - "id": 249814378, - "lat": 52.5025280, - "lon": -1.8954395, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 29" - } -}, -{ - "type": "node", - "id": 249814413, - "lat": 52.5080455, - "lon": -1.8917149, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B6", - "ref": "B6 36", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 249821774, - "lat": 52.5124105, - "lon": -1.8878161, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 807" - } -}, -{ - "type": "node", - "id": 249821778, - "lat": 52.5141808, - "lon": -1.8935883, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B20", - "ref": "B20 271" - } -}, -{ - "type": "node", - "id": 249821791, - "lat": 52.5121426, - "lon": -1.9004814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 101" - } -}, -{ - "type": "node", - "id": 249821795, - "lat": 52.5111308, - "lon": -1.8978314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 352" - } -}, -{ - "type": "node", - "id": 249821796, - "lat": 52.5111525, - "lon": -1.8922805, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 321", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 249833164, - "lat": 53.6806198, - "lon": -1.4900645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 109" - } -}, -{ - "type": "node", - "id": 249837894, - "lat": 51.6222549, - "lon": -2.4698169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 249855950, - "lat": 51.4809852, - "lon": -0.4237808, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 249966927, - "lat": 55.9268205, - "lon": -3.2444313, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 264", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 249966953, - "lat": 55.9396973, - "lon": -3.2204624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH11 185", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 249966964, - "lat": 55.9429419, - "lon": -3.2109171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH3 193", - "royal_cypher": "GR", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 249966992, - "lat": 55.9458267, - "lon": -3.1911651, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-18", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "note": "both apertures have same ref", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH1 124", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 249967009, - "lat": 55.9497004, - "lon": -3.1878147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "colour": "gold", - "drive_through": "no", - "note": "Olympic plaque for Chris Hoy\nBoth apertures have same code", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH1 19", - "ref:duplicates": "2", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 250043460, - "lat": 53.3809824, - "lon": -2.9537261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "L17 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250043633, - "lat": 53.3772250, - "lon": -2.9445053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "colour": "red", - "description": "George VI post box, Aigburth Road & Elsmere Avenue", - "drive_through": "no", - "name": "Aigburth Road", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L17 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:George VI post box, Aigburth Road & Elsmere Avenue.jpg" - } -}, -{ - "type": "node", - "id": 250044194, - "lat": 53.3872500, - "lon": -2.9483693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR post box L8 272 by Machan on Sefton Park Road near to junction with Ullet Road.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Sefton Park Road.jpg" - } -}, -{ - "type": "node", - "id": 250077665, - "lat": 55.9574015, - "lon": -3.1611745, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-02-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH7 183" - } -}, -{ - "type": "node", - "id": 250080704, - "lat": 55.9682325, - "lon": -3.1530713, - "tags": { - "amenity": "post_box", - "ref": "EH6 421" - } -}, -{ - "type": "node", - "id": 250123748, - "lat": 51.4907230, - "lon": 0.3271066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM16 93" - } -}, -{ - "type": "node", - "id": 250142451, - "lat": 51.7939572, - "lon": -1.3432109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX29 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2013-01-07" - } -}, -{ - "type": "node", - "id": 250147286, - "lat": 52.1382592, - "lon": -0.5059914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 250156576, - "lat": 50.8930455, - "lon": -1.3697716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 406D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 250210890, - "lat": 51.2650764, - "lon": -1.0816263, - "tags": { - "amenity": "post_box", - "ref": "RG21 212" - } -}, -{ - "type": "node", - "id": 250214045, - "lat": 53.7952086, - "lon": -1.5426180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 51;LS1 10051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250243457, - "lat": 50.7924708, - "lon": -3.4933132, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "EX5 226" - } -}, -{ - "type": "node", - "id": 250243618, - "lat": 50.8121743, - "lon": -3.5022763, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 250281860, - "lat": 51.5479270, - "lon": 0.1474611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:45", - "ref": "RM9 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 250300379, - "lat": 51.6184626, - "lon": -0.2932982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA7 833D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 250309710, - "lat": 51.9156826, - "lon": -0.6792891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "LU7 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 250358896, - "lat": 51.0869643, - "lon": 0.8652455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN26 151", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN26", - "ref": "TN26 151D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 250365167, - "lat": 50.9976482, - "lon": 0.8339785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "TN29 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 250371288, - "lat": 51.0136717, - "lon": 0.9424192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN29 63" - } -}, -{ - "type": "node", - "id": 250390238, - "lat": 53.8261454, - "lon": -1.5702132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 212", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 250402417, - "lat": 52.4821661, - "lon": -1.8853540, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B5", - "ref": "B5 18" - } -}, -{ - "type": "node", - "id": 250409984, - "lat": 53.8687065, - "lon": -1.7228976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS20 494", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 250409985, - "lat": 53.8726619, - "lon": -1.7234492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS20 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250417768, - "lat": 52.4872332, - "lon": -1.8962275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B4 173D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 250417829, - "lat": 52.4893142, - "lon": -1.8991368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B19", - "ref": "B19 91" - } -}, -{ - "type": "node", - "id": 250532575, - "lat": 51.8037236, - "lon": -0.3408980, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL5 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250542507, - "lat": 52.4909764, - "lon": -1.8894150, - "tags": { - "amenity": "post_box", - "postal_code": "B6", - "ref": "B6 23" - } -}, -{ - "type": "node", - "id": 250542538, - "lat": 52.4918183, - "lon": -1.9117055, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B18 431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250567336, - "lat": 55.9427330, - "lon": -3.1878978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "mapillary": "518692422646606", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 445", - "royal_cypher": "scottish_crown", - "survey:date": "2020-04-11" - } -}, -{ - "type": "node", - "id": 250570115, - "lat": 51.8048153, - "lon": -0.3083698, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL4 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250589263, - "lat": 51.5439831, - "lon": -0.0850430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Need the second ref No. adding (N1 174;N1 ***)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 174" - } -}, -{ - "type": "node", - "id": 250607743, - "lat": 52.4530675, - "lon": -1.9459892, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B17 359" - } -}, -{ - "type": "node", - "id": 250607767, - "lat": 52.4539786, - "lon": -1.9577613, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B17 1246" - } -}, -{ - "type": "node", - "id": 250699532, - "lat": 51.5463542, - "lon": -0.0873570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 84;N1 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250735496, - "lat": 51.6031289, - "lon": -2.5077864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 586", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-05-25" - } -}, -{ - "type": "node", - "id": 250746924, - "lat": 51.4763993, - "lon": -0.3492883, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 250746926, - "lat": 51.4775980, - "lon": -0.3456833, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 250747025, - "lat": 51.4636606, - "lon": -0.3274960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 271D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 250747076, - "lat": 51.4674707, - "lon": -0.3316476, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 250747079, - "lat": 51.4667505, - "lon": -0.3426000, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 250755707, - "lat": 53.8288015, - "lon": -1.5497033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 1002" - } -}, -{ - "type": "node", - "id": 250756718, - "lat": 53.8310442, - "lon": -1.5551540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 250766139, - "lat": 51.5455172, - "lon": 0.0942595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250767922, - "lat": 51.2621919, - "lon": -1.1084986, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 194", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 250830052, - "lat": 50.8465894, - "lon": -1.7934236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BH24", - "ref": "BH24 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250830054, - "lat": 50.8466963, - "lon": -1.7907589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:45", - "note": "Two apertures, both show BH24 40", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "BH24", - "ref": "BH24 40", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250872189, - "lat": 51.7615060, - "lon": -1.2143374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Wall box mounted in a free standing brick pillar", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX3 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 250901809, - "lat": 53.0925943, - "lon": -2.4482538, - "tags": { - "amenity": "post_box", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 250908680, - "lat": 53.2031364, - "lon": -2.3608677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "CW4 95D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 250915663, - "lat": 53.2025031, - "lon": -2.3716932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "CW4 268D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 250915664, - "lat": 53.2008451, - "lon": -2.3718989, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 250978906, - "lat": 55.7334563, - "lon": -2.9086465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "536716880657999", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD1 137", - "survey:date": "2020-08-13" - } -}, -{ - "type": "node", - "id": 250979006, - "lat": 55.6054347, - "lon": -2.8765616, - "tags": { - "amenity": "post_box", - "fixme": "is this still here?", - "ref": "TD1 8", - "source": "survey" - } -}, -{ - "type": "node", - "id": 250979114, - "lat": 55.5461041, - "lon": -2.8446773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD7 108D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 250982178, - "lat": 55.4216219, - "lon": -2.7895851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "TD9 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 250987635, - "lat": 55.1344680, - "lon": -2.2122173, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE48 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 250991958, - "lat": 55.0408598, - "lon": -1.9543557, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE20 405" - } -}, -{ - "type": "node", - "id": 250992016, - "lat": 55.0513787, - "lon": -1.9113315, - "tags": { - "amenity": "post_box", - "postal_code": "NE18 0QS", - "ref": "NE18 81" - } -}, -{ - "type": "node", - "id": 250992019, - "lat": 55.0432381, - "lon": -1.8795972, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "NE18 0LA", - "ref": "NE18 28" - } -}, -{ - "type": "node", - "id": 250999968, - "lat": 54.3523114, - "lon": -1.3088534, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 251023624, - "lat": 52.0224115, - "lon": -1.2768750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX17", - "ref": "OX17 1044", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251106991, - "lat": 55.9600770, - "lon": -3.1385095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH7 345" - } -}, -{ - "type": "node", - "id": 251106994, - "lat": 55.9619035, - "lon": -3.1442333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH7 472", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 251132161, - "lat": 51.5015082, - "lon": -0.0436956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE16 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251138750, - "lat": 51.2512340, - "lon": -0.5544593, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU1 163", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU1 163D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251144986, - "lat": 51.2567315, - "lon": -0.5543436, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-29", - "old_ref": "GU4 304", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU4 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251145143, - "lat": 51.2600592, - "lon": -0.5494342, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU4 132" - } -}, -{ - "type": "node", - "id": 251147851, - "lat": 51.2621584, - "lon": -0.5414656, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-05", - "old_ref": "GU4 38", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU4 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251148621, - "lat": 52.7145331, - "lon": -2.7988745, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 44" - } -}, -{ - "type": "node", - "id": 251148717, - "lat": 51.2646563, - "lon": -0.5405923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU4 24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU4 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-11-20" - } -}, -{ - "type": "node", - "id": 251150007, - "lat": 51.2629164, - "lon": -0.5463303, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-05", - "old_ref": "GU4 14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU4 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251150358, - "lat": 51.2639415, - "lon": -0.5357391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU4 231", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU4 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-11-20" - } -}, -{ - "type": "node", - "id": 251151826, - "lat": 51.2523596, - "lon": -0.5514016, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251153408, - "lat": 51.2513105, - "lon": -0.5441533, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251160084, - "lat": 51.4951867, - "lon": -2.4446941, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 251160427, - "lat": 53.6847411, - "lon": -1.4770457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 253" - } -}, -{ - "type": "node", - "id": 251160443, - "lat": 53.6864096, - "lon": -1.4831102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 214" - } -}, -{ - "type": "node", - "id": 251171802, - "lat": 53.6894951, - "lon": -1.4814211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 191" - } -}, -{ - "type": "node", - "id": 251207685, - "lat": 51.5106888, - "lon": -2.4433363, - "tags": { - "amenity": "post_box", - "ref": "BS37 246", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251214492, - "lat": 53.1983308, - "lon": -2.3656039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "CW4 283D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 251215111, - "lat": 53.1968419, - "lon": -2.3616011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW4 214D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 251215538, - "lat": 53.2006998, - "lon": -2.3672619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW4 290" - } -}, -{ - "type": "node", - "id": 251215539, - "lat": 53.1997950, - "lon": -2.3642514, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW4 138", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 251286346, - "lat": 51.5164731, - "lon": -0.3219998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "299875088365922", - "post_box:type": "pillar", - "postal_code": "W13", - "ref": "W13 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2021-03-17" - } -}, -{ - "type": "node", - "id": 251318313, - "lat": 51.7653370, - "lon": -0.0086874, - "tags": { - "amenity": "post_box", - "ref": "EN11 121" - } -}, -{ - "type": "node", - "id": 251320256, - "lat": 51.2482496, - "lon": -0.5539881, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU1 7", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251320789, - "lat": 51.2458408, - "lon": -0.5570422, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-07", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU1 274D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251321443, - "lat": 51.2426821, - "lon": -0.5623763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "GU1 87D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 251322021, - "lat": 51.2389679, - "lon": -0.5624864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU1 234", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 251322154, - "lat": 51.2400732, - "lon": -0.5610421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU1 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251322719, - "lat": 51.2399608, - "lon": -0.5651047, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU1 41", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 41D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251324684, - "lat": 51.2430689, - "lon": -0.5535703, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU1 55", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU1 55D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 251326300, - "lat": 51.2435088, - "lon": -0.5478050, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU1 197", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU1 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251326557, - "lat": 51.2389909, - "lon": -0.5532605, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 48D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251331803, - "lat": 52.5617913, - "lon": -1.6821128, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B78", - "ref": "B78 91" - } -}, -{ - "type": "node", - "id": 251331816, - "lat": 52.5650223, - "lon": -1.6815268, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B78", - "ref": "B78 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251337573, - "lat": 51.1255857, - "lon": -0.2084349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251346481, - "lat": 55.9643648, - "lon": -3.2331575, - "tags": { - "amenity": "post_box", - "ref": "EH4 302" - } -}, -{ - "type": "node", - "id": 251355696, - "lat": 55.0119717, - "lon": -1.5907760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251380705, - "lat": 51.3313679, - "lon": -1.1632246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 76" - } -}, -{ - "type": "node", - "id": 251381055, - "lat": 51.3542193, - "lon": -1.1829605, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 74" - } -}, -{ - "type": "node", - "id": 251384789, - "lat": 51.3504918, - "lon": -1.1668394, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "843028666423787", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 355", - "survey:date": "2020-10-03" - } -}, -{ - "type": "node", - "id": 251385719, - "lat": 51.4818485, - "lon": -0.4402966, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 251385808, - "lat": 51.4874294, - "lon": -0.4358434, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 251386021, - "lat": 52.5258080, - "lon": -1.8367704, - "tags": { - "amenity": "post_box", - "postal_code": "B24", - "ref": "B24 627" - } -}, -{ - "type": "node", - "id": 251386034, - "lat": 52.5237040, - "lon": -1.8392367, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 512" - } -}, -{ - "type": "node", - "id": 251386046, - "lat": 52.5210870, - "lon": -1.8444157, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 1206" - } -}, -{ - "type": "node", - "id": 251386048, - "lat": 52.5185776, - "lon": -1.8475506, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 203" - } -}, -{ - "type": "node", - "id": 251386064, - "lat": 52.5171756, - "lon": -1.8434773, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 1363" - } -}, -{ - "type": "node", - "id": 251396964, - "lat": 51.2952180, - "lon": -0.2281820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 872D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251472918, - "lat": 52.6868344, - "lon": -1.2780028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE67 354", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251473078, - "lat": 52.6835282, - "lon": -1.2809131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE67 640D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251576808, - "lat": 51.4403457, - "lon": -0.1507384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 251577022, - "lat": 51.4419625, - "lon": -0.1492280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251606368, - "lat": 51.7391814, - "lon": -1.2351645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 138", - "royal_cypher": "EIIR", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 251617813, - "lat": 54.0191678, - "lon": -0.5846632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251703591, - "lat": 50.7467167, - "lon": -3.5466253, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 251703594, - "lat": 50.7458125, - "lon": -3.5401443, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 251787070, - "lat": 51.3584113, - "lon": -0.1539478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SM6 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251802175, - "lat": 51.4905311, - "lon": -0.2775541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "W4 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251802186, - "lat": 51.4927751, - "lon": -0.2723105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 52D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 251815537, - "lat": 51.3541928, - "lon": -0.1523020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251815568, - "lat": 51.3515835, - "lon": -0.1517217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 251828820, - "lat": 53.0990381, - "lon": -1.3240920, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 435", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 251838371, - "lat": 51.7604691, - "lon": -1.2095003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "note": "One combined postbox, one aperture for each reference number", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "priority:covid_19": "yes", - "ref": "OX3 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251855515, - "lat": 50.7268699, - "lon": -1.2128145, - "tags": { - "amenity": "post_box", - "mapillary": "824944965158768", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 106", - "ref:GB:uprn": "10025705781", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/fishbourne-lane-po33-4ha/000PO33106" - } -}, -{ - "type": "node", - "id": 251879630, - "lat": 51.7642739, - "lon": -0.0028647, - "tags": { - "amenity": "post_box", - "ref": "EN11 130" - } -}, -{ - "type": "node", - "id": 251972316, - "lat": 51.7611195, - "lon": -1.2014828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX3 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251974367, - "lat": 51.7593516, - "lon": -1.1966054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "OX3 795" - } -}, -{ - "type": "node", - "id": 251978320, - "lat": 50.8944276, - "lon": -1.3515750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251981675, - "lat": 50.8992692, - "lon": -1.3299932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 251982715, - "lat": 50.9042336, - "lon": -1.3320857, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 641", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252009695, - "lat": 53.0953928, - "lon": -2.4503473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CW2 7", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 252010776, - "lat": 51.3617755, - "lon": -2.3594382, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 252127102, - "lat": 51.2568142, - "lon": -1.1104912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 245" - } -}, -{ - "type": "node", - "id": 252127113, - "lat": 51.2607857, - "lon": -1.1129746, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG22", - "ref": "RG22 278" - } -}, -{ - "type": "node", - "id": 252153665, - "lat": 52.7098899, - "lon": -2.7762263, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 568" - } -}, -{ - "type": "node", - "id": 252163817, - "lat": 51.4030262, - "lon": 0.1625956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BR8 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252203669, - "lat": 54.9819800, - "lon": -1.6540239, - "tags": { - "amenity": "post_box", - "ref": "NE4 249" - } -}, -{ - "type": "node", - "id": 252204381, - "lat": 53.3701904, - "lon": -2.9415337, - "tags": { - "access": "private", - "amenity": "post_box", - "note": "Situated on a private road", - "ref": "L17 371" - } -}, -{ - "type": "node", - "id": 252207796, - "lat": 51.2492482, - "lon": -0.6076607, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "GU2", - "ref": "GU2 298" - } -}, -{ - "type": "node", - "id": 252208275, - "lat": 51.2454588, - "lon": -0.6145879, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-23", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU2", - "ref": "GU2 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252228321, - "lat": 55.0957969, - "lon": -1.5843531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-09-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:priority": "yes", - "post_box:type": "pillar", - "postal_code": "NE23 1XZ", - "ref": "NE23 674", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252255426, - "lat": 53.6816373, - "lon": -1.5127876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 486" - } -}, -{ - "type": "node", - "id": 252255519, - "lat": 53.6812560, - "lon": -1.5175440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF2 62" - } -}, -{ - "type": "node", - "id": 252278420, - "lat": 53.3984070, - "lon": -1.5464740, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 1206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252280864, - "lat": 53.3946413, - "lon": -1.5473444, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S6 957D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252303608, - "lat": 53.4050266, - "lon": -1.5409040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S6 699", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252326296, - "lat": 51.7538584, - "lon": -1.2056911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:15, Sa 19:00", - "ref": "OX3 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 252326299, - "lat": 51.7579147, - "lon": -1.2094258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "ref": "OX3 388" - } -}, -{ - "type": "node", - "id": 252333891, - "lat": 51.7379267, - "lon": -1.2099346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "created_by": "JOSM", - "mapillary": "313917220180088", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX4 167", - "source": "local_knowledge", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 252411333, - "lat": 53.4064663, - "lon": -1.5354776, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 1043D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 252411488, - "lat": 53.4145881, - "lon": -1.5219456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S6", - "ref": "S6 1181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252411804, - "lat": 53.4140742, - "lon": -1.5173808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S6 501D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252412227, - "lat": 53.4123519, - "lon": -1.5110921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 366D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 252414765, - "lat": 51.8138520, - "lon": -0.3384356, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL5 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252434141, - "lat": 52.5000719, - "lon": -1.8799856, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 139" - } -}, -{ - "type": "node", - "id": 252452380, - "lat": 52.4954017, - "lon": -1.8879329, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 1386" - } -}, -{ - "type": "node", - "id": 252452404, - "lat": 52.4986965, - "lon": -1.8882411, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B6", - "ref": "B6 156" - } -}, -{ - "type": "node", - "id": 252452419, - "lat": 52.5013366, - "lon": -1.8874558, - "tags": { - "amenity": "post_box", - "ref": "B6 43" - } -}, -{ - "type": "node", - "id": 252453339, - "lat": 52.5106802, - "lon": -1.8566915, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 202" - } -}, -{ - "type": "node", - "id": 252479901, - "lat": 50.9146898, - "lon": -1.3385814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 252479910, - "lat": 50.9203256, - "lon": -1.3339376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252482350, - "lat": 50.9036337, - "lon": -1.3377323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252487370, - "lat": 53.3751139, - "lon": -2.9393900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "6308195712539581", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L17 605", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 252493326, - "lat": 53.4719324, - "lon": -1.9767965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SK14 178D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 252501072, - "lat": 53.3766660, - "lon": -2.9503817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "description": "EIIR post box L17 253 on St Michael's Church Road", - "name": "St Michael's Church Road", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L17 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box L17 253, St Michael's Church Road" - } -}, -{ - "type": "node", - "id": 252516372, - "lat": 55.8537920, - "lon": -3.9991079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML5 45D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 252516373, - "lat": 55.8609985, - "lon": -4.0053363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 252597388, - "lat": 51.7418160, - "lon": -1.2038724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "299463751770887", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX4", - "ref": "OX4 52", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 252597508, - "lat": 51.7451720, - "lon": -1.2016199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX3", - "ref": "OX3 645" - } -}, -{ - "type": "node", - "id": 252601430, - "lat": 55.8634037, - "lon": -4.0072847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ML5 24D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 252624607, - "lat": 51.7467752, - "lon": -1.2031518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX3 546" - } -}, -{ - "type": "node", - "id": 252632749, - "lat": 53.6917869, - "lon": -1.6499829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 73" - } -}, -{ - "type": "node", - "id": 252636610, - "lat": 51.1987101, - "lon": 1.3866184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 87", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252636615, - "lat": 53.5175061, - "lon": -2.6736343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 252641503, - "lat": 50.9076601, - "lon": -1.3293796, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 602D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252688682, - "lat": 51.2059143, - "lon": 1.4012396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252689768, - "lat": 51.2101284, - "lon": 1.4020550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252690145, - "lat": 51.1995362, - "lon": 1.4022601, - "tags": { - "amenity": "post_box", - "postal_code": "CT14", - "ref": "CT14 119", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252705389, - "lat": 51.3958559, - "lon": 0.1754097, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-29", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BR8 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252733696, - "lat": 51.8116974, - "lon": -0.2953277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "AL4 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252734291, - "lat": 51.8039161, - "lon": -0.3546484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL5 13D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 252734514, - "lat": 51.7832530, - "lon": -0.3425170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "created_by": "Potlatch 0.7b", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 252740524, - "lat": 53.6931131, - "lon": -1.6327430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252743532, - "lat": 53.8175217, - "lon": -1.5729018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252749261, - "lat": 52.3515933, - "lon": -1.5753854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1313441185716388", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV8 394", - "survey:date": "2021-03-18" - } -}, -{ - "type": "node", - "id": 252749741, - "lat": 52.3544251, - "lon": -1.5737220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 384D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252756270, - "lat": 51.4598492, - "lon": -0.3364383, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 252795274, - "lat": 52.1307620, - "lon": -1.0560823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN12 476" - } -}, -{ - "type": "node", - "id": 252909717, - "lat": 53.8166930, - "lon": -1.5679578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252932649, - "lat": 55.0081040, - "lon": -1.5855513, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 252932698, - "lat": 55.0060825, - "lon": -1.5777913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "fixme": "Check ref with ground survey - 312 or 321?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 321D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-01-02" - } -}, -{ - "type": "node", - "id": 252935142, - "lat": 51.5360894, - "lon": -0.1037489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 39;N1 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 252961302, - "lat": 54.0395290, - "lon": -2.7963128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA1 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252961303, - "lat": 54.0466136, - "lon": -2.8012073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 252989032, - "lat": 52.1403096, - "lon": -0.4436448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK40 83", - "source": "photo from car;Bing" - } -}, -{ - "type": "node", - "id": 253031917, - "lat": 54.4657924, - "lon": -3.5273876, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA22 71", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253050101, - "lat": 51.2978058, - "lon": -0.2110758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 175D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 253054010, - "lat": 51.3038121, - "lon": -0.2347902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 253055309, - "lat": 50.9384570, - "lon": -1.3905833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO16", - "ref": "SO16 363D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 253082124, - "lat": 53.1064742, - "lon": -2.4680030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW1 129D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 253111181, - "lat": 52.1835201, - "lon": -0.8257517, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN7 117" - } -}, -{ - "type": "node", - "id": 253140037, - "lat": 50.7344335, - "lon": -3.4830333, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253140599, - "lat": 50.7399349, - "lon": -3.5005677, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 253177059, - "lat": 55.0135647, - "lon": -1.5978124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 253180288, - "lat": 52.7044270, - "lon": -2.7486358, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-19", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253201042, - "lat": 55.8260064, - "lon": -4.4273306, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 241" - } -}, -{ - "type": "node", - "id": 253201044, - "lat": 55.8281338, - "lon": -4.4333399, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 253208857, - "lat": 53.1006535, - "lon": -2.4816840, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "is_in": "Crewe, Cheshire, England, United Kingdom" - } -}, -{ - "type": "node", - "id": 253208889, - "lat": 53.1182349, - "lon": -2.4757576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "ref": "CW1 265" - } -}, -{ - "type": "node", - "id": 253217389, - "lat": 50.7715683, - "lon": -3.3620179, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX5 343D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253232861, - "lat": 52.5306797, - "lon": -1.6784062, - "tags": { - "amenity": "post_box", - "fixme": "post office here has closed down and this post box is no longer here", - "postal_code": "B46", - "ref": "B46 260" - } -}, -{ - "type": "node", - "id": 253239247, - "lat": 52.5153570, - "lon": -1.6664433, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "B46", - "ref": "B46 186", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253239259, - "lat": 52.5138584, - "lon": -1.6632084, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B46", - "ref": "B46 834", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253239263, - "lat": 52.4962449, - "lon": -1.6634174, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B46", - "ref": "B46 84" - } -}, -{ - "type": "node", - "id": 253239264, - "lat": 52.4903558, - "lon": -1.6588421, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "B46", - "ref": "B46 74" - } -}, -{ - "type": "node", - "id": 253239265, - "lat": 52.4794970, - "lon": -1.6554735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "B46", - "ref": "B46 108", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 253239291, - "lat": 52.5078845, - "lon": -1.5866721, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV7", - "ref": "CV7 51" - } -}, -{ - "type": "node", - "id": 253245387, - "lat": 53.2888352, - "lon": -2.2362538, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 253247437, - "lat": 53.2884777, - "lon": -2.2913834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "ref": "SK9 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253250306, - "lat": 51.3313708, - "lon": -1.1081376, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253251894, - "lat": 51.3378114, - "lon": -1.1066292, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 204" - } -}, -{ - "type": "node", - "id": 253252291, - "lat": 54.6627902, - "lon": -3.2834083, - "tags": { - "amenity": "post_box", - "ref": "CA13 119" - } -}, -{ - "type": "node", - "id": 253256304, - "lat": 51.7037718, - "lon": 0.2454020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM5 16", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253256983, - "lat": 52.5143734, - "lon": -1.5819650, - "tags": { - "amenity": "post_box", - "postal_code": "CV7", - "ref": "CV7 160" - } -}, -{ - "type": "node", - "id": 253256989, - "lat": 52.5308439, - "lon": -1.5721867, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CV10", - "ref": "CV10 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 253256991, - "lat": 52.5470817, - "lon": -1.5778386, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CV10", - "ref": "CV10 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253256997, - "lat": 52.5645084, - "lon": -1.5840987, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV9", - "ref": "CV9 12" - } -}, -{ - "type": "node", - "id": 253257000, - "lat": 52.5699492, - "lon": -1.5919090, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CV9", - "ref": "CV9 10" - } -}, -{ - "type": "node", - "id": 253257031, - "lat": 52.5586626, - "lon": -1.6495969, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV9", - "ref": "CV9 18" - } -}, -{ - "type": "node", - "id": 253259300, - "lat": 54.0643879, - "lon": -2.8776925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 253262833, - "lat": 54.6427657, - "lon": -3.1870053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "flickr": "https://www.flickr.com/photos/58415659@N00/34144769126", - "mapillary": "287629013635980", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA12 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 253264177, - "lat": 51.7234660, - "lon": -1.2045908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 815", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 253264679, - "lat": 54.6026245, - "lon": -2.9372066, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "CA11 238" - } -}, -{ - "type": "node", - "id": 253264717, - "lat": 54.6350816, - "lon": -2.9474235, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "CA11 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253264789, - "lat": 54.5660046, - "lon": -3.4301446, - "tags": { - "amenity": "post_box", - "ref": "CA14 102" - } -}, -{ - "type": "node", - "id": 253272544, - "lat": 51.7244762, - "lon": -1.1993230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 768", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 253277184, - "lat": 51.7218277, - "lon": -1.1937172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 816", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 253279932, - "lat": 51.7191734, - "lon": -1.1915191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "OX4", - "ref": "OX4 814" - } -}, -{ - "type": "node", - "id": 253312336, - "lat": 51.6261731, - "lon": -1.5794920, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253385967, - "lat": 54.5477691, - "lon": -3.4359987, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA26 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253407001, - "lat": 53.2965801, - "lon": -2.2361410, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK9 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253409971, - "lat": 53.3057080, - "lon": -2.2279234, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK9 94D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253489436, - "lat": 51.6387917, - "lon": -1.5949547, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 253518053, - "lat": 54.0674505, - "lon": -2.8629969, - "tags": { - "amenity": "post_box", - "ref": "LA4 178" - } -}, -{ - "type": "node", - "id": 253518056, - "lat": 54.0690450, - "lon": -2.8670467, - "tags": { - "amenity": "post_box", - "ref": "LA4 127" - } -}, -{ - "type": "node", - "id": 253519117, - "lat": 54.0637228, - "lon": -2.8735295, - "tags": { - "amenity": "post_box", - "ref": "LA4 119" - } -}, -{ - "type": "node", - "id": 253614346, - "lat": 51.4213367, - "lon": -2.6089996, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 25D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253614347, - "lat": 51.4188521, - "lon": -2.6135659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 253614493, - "lat": 51.4206499, - "lon": -2.6061356, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253637787, - "lat": 54.0641648, - "lon": -2.8509240, - "tags": { - "amenity": "post_box", - "ref": "LA4 230" - } -}, -{ - "type": "node", - "id": 253639677, - "lat": 54.0595552, - "lon": -2.8687325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA3 50", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253639678, - "lat": 54.0652123, - "lon": -2.8566728, - "tags": { - "amenity": "post_box", - "ref": "LA4 270" - } -}, -{ - "type": "node", - "id": 253644120, - "lat": 50.8150131, - "lon": -0.4989736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253663853, - "lat": 54.4484147, - "lon": -3.5006610, - "tags": { - "amenity": "post_box", - "ref": "CA22 100" - } -}, -{ - "type": "node", - "id": 253668298, - "lat": 54.5361258, - "lon": -3.5683308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA28 12", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 253694437, - "lat": 55.9249768, - "lon": -3.2926880, - "tags": { - "amenity": "post_box", - "ref": "EH11 457" - } -}, -{ - "type": "node", - "id": 253705281, - "lat": 51.5551805, - "lon": -2.1102986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1055494531947116", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN16 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-22" - } -}, -{ - "type": "node", - "id": 253705815, - "lat": 53.3955217, - "lon": -1.5313625, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 889D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253706736, - "lat": 53.3908592, - "lon": -1.5336251, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S6 1153" - } -}, -{ - "type": "node", - "id": 253706739, - "lat": 55.9299818, - "lon": -3.2625728, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH11 446", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253708681, - "lat": 53.3793249, - "lon": -1.5362530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 697", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253708684, - "lat": 53.3762258, - "lon": -1.5385961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "S10 1056", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253736343, - "lat": 51.4341987, - "lon": 0.4962922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 234" - } -}, -{ - "type": "node", - "id": 253799303, - "lat": 51.3067949, - "lon": 1.0695655, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT2 227", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 227D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-11" - } -}, -{ - "type": "node", - "id": 253801527, - "lat": 51.2630473, - "lon": 1.1346576, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT4", - "ref": "CT4 225", - "source": "survey" - } -}, -{ - "type": "node", - "id": 253814982, - "lat": 51.2447707, - "lon": 1.0800519, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 237", - "source": "survey" - } -}, -{ - "type": "node", - "id": 253851469, - "lat": 54.6609462, - "lon": -3.2969709, - "tags": { - "amenity": "post_box", - "ref": "CA13 145" - } -}, -{ - "type": "node", - "id": 253851556, - "lat": 54.5367365, - "lon": -3.4941217, - "tags": { - "amenity": "post_box", - "ref": "CA26 29" - } -}, -{ - "type": "node", - "id": 253851559, - "lat": 54.5244427, - "lon": -3.4947343, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA25 97" - } -}, -{ - "type": "node", - "id": 253866320, - "lat": 54.0475274, - "lon": -2.8923834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253866378, - "lat": 54.0536064, - "lon": -2.8846871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253866379, - "lat": 54.0431687, - "lon": -2.8933509, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 253868189, - "lat": 54.0487734, - "lon": -2.8869702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 174", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 253868194, - "lat": 54.0563985, - "lon": -2.8882185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253869794, - "lat": 54.0598080, - "lon": -2.8839349, - "tags": { - "amenity": "post_box", - "ref": "LA3 28" - } -}, -{ - "type": "node", - "id": 253869797, - "lat": 54.0615831, - "lon": -2.8831026, - "tags": { - "amenity": "post_box", - "ref": "LA3 126" - } -}, -{ - "type": "node", - "id": 253873167, - "lat": 53.4202227, - "lon": -1.4947016, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 196" - } -}, -{ - "type": "node", - "id": 253875790, - "lat": 53.3043051, - "lon": -2.2775358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 09:00", - "post_box:type": "lamp", - "ref": "WA16 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253875791, - "lat": 53.2968265, - "lon": -2.2591975, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 253880257, - "lat": 51.7723956, - "lon": -1.2628165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX2 128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 253880258, - "lat": 51.7567778, - "lon": -1.2601152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "OX1", - "ref": "OX1 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253880259, - "lat": 51.7603472, - "lon": -1.2603012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "OX2 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253911950, - "lat": 51.8175586, - "lon": -0.3083589, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL4 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253943168, - "lat": 54.0451456, - "lon": -2.8030124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "LA1 2D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253946489, - "lat": 54.0488483, - "lon": -2.8021104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "LA1 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253953835, - "lat": 54.0633931, - "lon": -2.8239913, - "tags": { - "amenity": "post_box", - "ref": "LA1 141" - } -}, -{ - "type": "node", - "id": 253953846, - "lat": 54.0720049, - "lon": -2.8317649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA4 210", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 253953865, - "lat": 54.0751055, - "lon": -2.8312607, - "tags": { - "amenity": "post_box", - "ref": "LA4 226" - } -}, -{ - "type": "node", - "id": 253953886, - "lat": 54.0745223, - "lon": -2.8360198, - "tags": { - "amenity": "post_box", - "ref": "LA4 23" - } -}, -{ - "type": "node", - "id": 253953895, - "lat": 54.0742627, - "lon": -2.8540328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA4 70D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253953896, - "lat": 54.0730952, - "lon": -2.8607970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA4 166D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 253953907, - "lat": 54.0734642, - "lon": -2.8653556, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA4 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 253953908, - "lat": 54.0752119, - "lon": -2.8624024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA4 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 253953911, - "lat": 54.0780785, - "lon": -2.8389308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "LA4 68" - } -}, -{ - "type": "node", - "id": 253961025, - "lat": 54.5131964, - "lon": -3.5117013, - "tags": { - "amenity": "post_box", - "ref": "CA23 30" - } -}, -{ - "type": "node", - "id": 253961322, - "lat": 54.5407327, - "lon": -3.4951270, - "tags": { - "amenity": "post_box", - "ref": "CA26 81" - } -}, -{ - "type": "node", - "id": 253989433, - "lat": 51.2501339, - "lon": -1.1183759, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 259" - } -}, -{ - "type": "node", - "id": 253991381, - "lat": 51.4375332, - "lon": -0.4119856, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 253996776, - "lat": 54.5861457, - "lon": -3.0926021, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA12 128" - } -}, -{ - "type": "node", - "id": 254000569, - "lat": 54.4638454, - "lon": -3.0221603, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-19", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "LA22 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254001960, - "lat": 54.4294034, - "lon": -3.4621857, - "tags": { - "amenity": "post_box", - "ref": "CA20 48" - } -}, -{ - "type": "node", - "id": 254021007, - "lat": 51.4135832, - "lon": -0.5489529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TW20 314" - } -}, -{ - "type": "node", - "id": 254021053, - "lat": 51.4092485, - "lon": -0.5576586, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 254021159, - "lat": 51.4001224, - "lon": -0.5548072, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254021399, - "lat": 51.4023140, - "lon": -0.5740171, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254021423, - "lat": 51.4025279, - "lon": -0.5657105, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254021697, - "lat": 51.3985292, - "lon": -0.5674611, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254021714, - "lat": 51.3922514, - "lon": -0.5858399, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254021876, - "lat": 51.3962385, - "lon": -0.6085801, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254021959, - "lat": 51.4028601, - "lon": -0.5948539, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254022044, - "lat": 51.4048371, - "lon": -0.5911630, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254022091, - "lat": 51.3990915, - "lon": -0.6033653, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254023849, - "lat": 53.3215702, - "lon": -2.2137371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=8c46d246-706a-45d4-b5b7-3329e032c82a&cp=53.321544~-2.213835&lvl=19&dir=101.8254&pi=-7.87708&style=x&mo=z.1.08&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "SK9", - "ref": "SK9 402" - } -}, -{ - "type": "node", - "id": 254024904, - "lat": 53.3010661, - "lon": -2.2171573, - "tags": { - "amenity": "post_box", - "ref": "SK9 493" - } -}, -{ - "type": "node", - "id": 254024905, - "lat": 53.3033340, - "lon": -2.1913238, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 254024906, - "lat": 53.2870608, - "lon": -2.1818959, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254096288, - "lat": 51.2679218, - "lon": 1.0868322, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 276", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT1 276D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-06-29" - } -}, -{ - "type": "node", - "id": 254136929, - "lat": 51.2545530, - "lon": -1.1189461, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 279" - } -}, -{ - "type": "node", - "id": 254137105, - "lat": 52.2791025, - "lon": -0.1074183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 223" - } -}, -{ - "type": "node", - "id": 254139531, - "lat": 52.1906891, - "lon": -1.1017749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254161109, - "lat": 52.4290880, - "lon": -1.4350703, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254164513, - "lat": 50.8984392, - "lon": -1.3429988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254166696, - "lat": 54.6110011, - "lon": -3.5204324, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254174426, - "lat": 54.1243567, - "lon": -2.7729813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA5 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254174672, - "lat": 50.9207414, - "lon": -1.3664195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 210D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 254186336, - "lat": 54.2219815, - "lon": -2.7538076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 249" - } -}, -{ - "type": "node", - "id": 254186338, - "lat": 54.2284242, - "lon": -2.7634780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA7 232" - } -}, -{ - "type": "node", - "id": 254186339, - "lat": 54.2006257, - "lon": -2.7611332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 239" - } -}, -{ - "type": "node", - "id": 254224328, - "lat": 53.2778987, - "lon": -2.2095792, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 130" - } -}, -{ - "type": "node", - "id": 254238495, - "lat": 53.2620550, - "lon": -2.1681769, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 98" - } -}, -{ - "type": "node", - "id": 254286187, - "lat": 51.5526946, - "lon": -0.1378051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 3D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:United Kingdom post box NW5 3D" - } -}, -{ - "type": "node", - "id": 254317153, - "lat": 52.5196469, - "lon": -1.8124274, - "tags": { - "amenity": "post_box", - "postal_code": "B24", - "ref": "B24 429" - } -}, -{ - "type": "node", - "id": 254318154, - "lat": 52.5113728, - "lon": -1.8276189, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 526" - } -}, -{ - "type": "node", - "id": 254318155, - "lat": 52.5113749, - "lon": -1.8275811, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B24", - "ref": "B24 9012" - } -}, -{ - "type": "node", - "id": 254338111, - "lat": 51.4378119, - "lon": -0.4142468, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254338353, - "lat": 51.4398056, - "lon": -0.4162277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 254346812, - "lat": 51.7212046, - "lon": -1.1866120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "OX4 803" - } -}, -{ - "type": "node", - "id": 254350215, - "lat": 52.5073048, - "lon": -1.8453590, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 1336" - } -}, -{ - "type": "node", - "id": 254350216, - "lat": 52.5038655, - "lon": -1.8510092, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B23", - "ref": "B23 1337" - } -}, -{ - "type": "node", - "id": 254361854, - "lat": 51.4048272, - "lon": 0.1597551, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254363701, - "lat": 51.4154410, - "lon": 0.1671374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA2 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254364738, - "lat": 51.4277897, - "lon": 0.1805383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "508701860145608", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DA2 272", - "survey:date": "2020-12-05" - } -}, -{ - "type": "node", - "id": 254492775, - "lat": 54.0756237, - "lon": -2.7669484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 177", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 254494641, - "lat": 54.0608815, - "lon": -2.7961776, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254494642, - "lat": 54.0719109, - "lon": -2.7855798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254494645, - "lat": 54.0555257, - "lon": -2.7984179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "LA1 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254494651, - "lat": 54.0600778, - "lon": -2.8176738, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA1 176", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 254499276, - "lat": 54.0640017, - "lon": -2.8357312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA3 73" - } -}, -{ - "type": "node", - "id": 254500136, - "lat": 54.0298240, - "lon": -2.8939805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254500139, - "lat": 54.0255077, - "lon": -2.8862791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254500140, - "lat": 54.0222633, - "lon": -2.8819255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA3 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 254511869, - "lat": 55.9359312, - "lon": -3.2994719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH12 620" - } -}, -{ - "type": "node", - "id": 254511908, - "lat": 51.4586325, - "lon": -0.3380181, - "tags": { - "amenity": "post_box", - "ref": "TW7 286" - } -}, -{ - "type": "node", - "id": 254511948, - "lat": 51.4536592, - "lon": -0.3478323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 158", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254612797, - "lat": 53.0703888, - "lon": -2.5197520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Nantwich, Cheshire, England, United Kingdom", - "ref": "CW5 283", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 254612820, - "lat": 53.0947141, - "lon": -2.4855237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "ref": "CW2 118D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 254649543, - "lat": 53.6835709, - "lon": -1.5259038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 243" - } -}, -{ - "type": "node", - "id": 254657447, - "lat": 53.6959682, - "lon": -1.6408635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254657753, - "lat": 53.6963503, - "lon": -1.6373067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254673381, - "lat": 52.3346465, - "lon": 0.3333040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB7 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254676526, - "lat": 51.3392086, - "lon": 1.0657354, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 224", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254708016, - "lat": 53.0996103, - "lon": -2.4763620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "post_box:type": "pillar", - "ref": "CW2 52D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 254750686, - "lat": 52.5080306, - "lon": -1.7213290, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B46 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254750714, - "lat": 52.5047261, - "lon": -1.7102202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "B46", - "ref": "B46 503", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 254750780, - "lat": 52.4624959, - "lon": -1.5888002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "post_box:type": "lamp", - "postal_code": "CV7", - "ref": "CV7 42" - } -}, -{ - "type": "node", - "id": 254750784, - "lat": 52.4636344, - "lon": -1.5578910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CV7", - "ref": "CV7 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254750787, - "lat": 52.4759319, - "lon": -1.5443307, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV7", - "ref": "CV7 104" - } -}, -{ - "type": "node", - "id": 254754179, - "lat": 51.4111492, - "lon": 0.1822135, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-02-20", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254755679, - "lat": 52.5240803, - "lon": -1.5376872, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV10", - "ref": "CV10 61" - } -}, -{ - "type": "node", - "id": 254755694, - "lat": 52.5371992, - "lon": -1.5231818, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV10", - "ref": "CV10 87" - } -}, -{ - "type": "node", - "id": 254755697, - "lat": 52.5412713, - "lon": -1.5209523, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CV10", - "ref": "CV10 101" - } -}, -{ - "type": "node", - "id": 254755705, - "lat": 52.5478822, - "lon": -1.5395965, - "tags": { - "amenity": "post_box", - "postal_code": "CV10", - "ref": "CV10 85" - } -}, -{ - "type": "node", - "id": 254900163, - "lat": 53.0644213, - "lon": -2.5315820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Nantwich, Cheshire, England, United Kingdom", - "ref": "CW5 192" - } -}, -{ - "type": "node", - "id": 254942931, - "lat": 55.0144457, - "lon": -1.5641449, - "tags": { - "amenity": "post_box", - "ref": "NE12 402D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254962847, - "lat": 53.4290994, - "lon": -2.2159725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "M20 554" - } -}, -{ - "type": "node", - "id": 254964041, - "lat": 53.4401047, - "lon": -2.2242857, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254964211, - "lat": 53.4531778, - "lon": -2.2373280, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254965012, - "lat": 51.4222829, - "lon": -0.3787051, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TW12 216" - } -}, -{ - "type": "node", - "id": 254967735, - "lat": 51.4410238, - "lon": -0.4253709, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254979539, - "lat": 53.3539535, - "lon": -3.0285825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 11:45; Su off", - "description": "QEII pole.mounted lamp box CH63 124 on Village Road, Higher Bebington.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH63 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Village Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 254980270, - "lat": 52.5393365, - "lon": -1.3789164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 27" - } -}, -{ - "type": "node", - "id": 254983944, - "lat": 51.4396855, - "lon": -0.4204142, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 254987504, - "lat": 51.5514328, - "lon": -0.0343102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254990704, - "lat": 52.4202110, - "lon": -1.4834018, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 254992019, - "lat": 53.3091357, - "lon": -2.4726972, - "tags": { - "amenity": "post_box", - "ref": "CW9 86" - } -}, -{ - "type": "node", - "id": 254992384, - "lat": 51.7591250, - "lon": -1.8389657, - "tags": { - "amenity": "post_box", - "ref": "GL7 61" - } -}, -{ - "type": "node", - "id": 254994954, - "lat": 51.5612485, - "lon": -0.0474354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 254995270, - "lat": 51.4261622, - "lon": -0.3779561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "ref": "TW12 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 254996486, - "lat": 53.1618743, - "lon": -2.2358476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255003122, - "lat": 53.1629881, - "lon": -2.2329308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255004375, - "lat": 53.3517616, - "lon": -3.0135897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "description": "GR type B post box CH63 84 by Carron Company at the bend in Higher Bebington Road at Pulford Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Pulford Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 255006096, - "lat": 51.5765910, - "lon": -0.1228512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 255006098, - "lat": 51.5779275, - "lon": -0.1221092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 24" - } -}, -{ - "type": "node", - "id": 255006804, - "lat": 51.6034870, - "lon": -2.1584798, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 255008100, - "lat": 51.5797519, - "lon": -0.1206703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 13", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 255008106, - "lat": 51.5805392, - "lon": -0.1155768, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-08", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N8 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255010163, - "lat": 51.5823622, - "lon": -0.1237646, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N8 2D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 255024200, - "lat": 55.9521554, - "lon": -3.4053954, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH29 198D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255061789, - "lat": 52.4482009, - "lon": -1.5062668, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 255064618, - "lat": 52.4458614, - "lon": -1.5259920, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255064620, - "lat": 52.4419590, - "lon": -1.5319560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV6 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255069301, - "lat": 52.4038786, - "lon": -1.5630090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 261", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255084612, - "lat": 50.7345499, - "lon": -3.5173456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX4 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255108331, - "lat": 55.9591660, - "lon": -3.4035630, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH29 355D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255155063, - "lat": 54.0564333, - "lon": -2.8586120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA3 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255165056, - "lat": 53.8646879, - "lon": -2.9609549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255165068, - "lat": 53.8549367, - "lon": -2.9676347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255165069, - "lat": 53.8712473, - "lon": -2.9582350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "FY6 197", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 255191395, - "lat": 55.9595030, - "lon": -3.1717326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH7 174", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 255191396, - "lat": 55.9308388, - "lon": -3.1901371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "EH9 96", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 255241407, - "lat": 51.2452308, - "lon": 1.1262517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255241704, - "lat": 51.2774971, - "lon": 1.0924192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT1", - "ref": "CT1 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255265261, - "lat": 55.8383410, - "lon": -4.4739600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 255265941, - "lat": 55.8399285, - "lon": -4.4622254, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "PA1 30" - } -}, -{ - "type": "node", - "id": 255331582, - "lat": 53.2241999, - "lon": -2.2803128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SK11 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255333152, - "lat": 53.2474459, - "lon": -2.2428075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SK11 127" - } -}, -{ - "type": "node", - "id": 255335218, - "lat": 53.2231418, - "lon": -2.2367750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "ref": "SK11 120" - } -}, -{ - "type": "node", - "id": 255335219, - "lat": 53.2279219, - "lon": -2.2596321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:45", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SK11 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255335501, - "lat": 53.2059577, - "lon": -2.2695067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "ref": "CW12 143" - } -}, -{ - "type": "node", - "id": 255335506, - "lat": 53.1936711, - "lon": -2.2567970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ref": "CW12 25" - } -}, -{ - "type": "node", - "id": 255335511, - "lat": 53.1823914, - "lon": -2.2278819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "JOSM", - "ref": "CW12 21D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 255335593, - "lat": 53.2144188, - "lon": -2.2979084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "ref": "CW4 46" - } -}, -{ - "type": "node", - "id": 255371766, - "lat": 51.2800343, - "lon": 1.0838192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30; Su off", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255372316, - "lat": 50.5932080, - "lon": -1.2057696, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 214D", - "ref:GB:uprn": "10015412687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/esplanade-east-po38-1aa/000PO38214" - } -}, -{ - "type": "node", - "id": 255372392, - "lat": 50.5944826, - "lon": -1.2000968, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-02", - "check_date:collection_times": "2021-02-02", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 207D", - "ref:GB:uprn": "10015479730", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/st-catherines-street-po38-1aa/000PO38207" - } -}, -{ - "type": "node", - "id": 255378088, - "lat": 52.4099152, - "lon": 0.2769054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255387342, - "lat": 50.5903642, - "lon": -1.2255838, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 209", - "ref:GB:uprn": "10015465632", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/botanical-gardens-po38-1aa/000PO38209" - } -}, -{ - "type": "node", - "id": 255404397, - "lat": 52.5221359, - "lon": -1.9039278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B42", - "ref": "B42 760", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 255404399, - "lat": 52.5511794, - "lon": -1.8364581, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 1275" - } -}, -{ - "type": "node", - "id": 255411359, - "lat": 51.0956412, - "lon": 1.1067887, - "tags": { - "amenity": "post_box", - "note": "letters only", - "postal_code": "CT18", - "ref": "CT18 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255411743, - "lat": 52.4236444, - "lon": 0.2765198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255412298, - "lat": 52.4580798, - "lon": 0.2986423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB6 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255421753, - "lat": 55.7353288, - "lon": -3.9614362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 255421955, - "lat": 55.7398244, - "lon": -3.9668463, - "tags": { - "amenity": "post_box", - "note": "new site 11/11/10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255428770, - "lat": 53.3649330, - "lon": -1.5027700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 372D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255443929, - "lat": 54.9792682, - "lon": -1.6510739, - "tags": { - "amenity": "post_box", - "ref": "NE4 293" - } -}, -{ - "type": "node", - "id": 255452043, - "lat": 53.3649074, - "lon": -1.4994994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 255453205, - "lat": 53.9313539, - "lon": -2.9706316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255453209, - "lat": 53.9284372, - "lon": -2.9943850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255453212, - "lat": 53.8959116, - "lon": -2.9502987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255453213, - "lat": 53.8481571, - "lon": -2.9488851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255453214, - "lat": 53.8384631, - "lon": -2.8797050, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 255453215, - "lat": 53.8377146, - "lon": -2.8444841, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255453216, - "lat": 53.8324302, - "lon": -2.8154777, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255453217, - "lat": 53.8257681, - "lon": -2.8003413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR4 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255453218, - "lat": 53.8232737, - "lon": -2.7885495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR4 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 255453646, - "lat": 53.9585403, - "lon": -2.8281223, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 255454152, - "lat": 53.7310556, - "lon": -1.4968715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF3 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255454227, - "lat": 53.7362292, - "lon": -1.5065517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 81", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 255456480, - "lat": 53.9971969, - "lon": -2.8251305, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255456488, - "lat": 54.0284888, - "lon": -2.8054966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255456489, - "lat": 54.0658077, - "lon": -2.8371258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA3 134" - } -}, -{ - "type": "node", - "id": 255461268, - "lat": 53.3667403, - "lon": -1.4906472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "pillar", - "ref": "S11 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 255467139, - "lat": 52.5453335, - "lon": -2.0566276, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.8a" - } -}, -{ - "type": "node", - "id": 255467663, - "lat": 55.9385382, - "lon": -3.2105120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EH10 154", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255467664, - "lat": 55.9373014, - "lon": -3.2172709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "post_box:type": "pillar", - "ref": "EH11 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255469723, - "lat": 51.5134418, - "lon": -0.1989273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 20", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 255548483, - "lat": 52.0608671, - "lon": -2.7191711, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255551262, - "lat": 52.0551843, - "lon": -2.8002517, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 255551316, - "lat": 52.0534436, - "lon": -2.7712843, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 255551335, - "lat": 52.0517417, - "lon": -2.7525462, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 255558986, - "lat": 52.0492280, - "lon": -2.6909628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "HR1 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 255561603, - "lat": 52.2428237, - "lon": -2.7468727, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 255561605, - "lat": 52.2864623, - "lon": -2.7685029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HR6 907D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255572620, - "lat": 51.2395882, - "lon": 1.1333614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00", - "postal_code": "CT4", - "ref": "CT4 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255583361, - "lat": 53.0477714, - "lon": -3.7325349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255587259, - "lat": 52.3080713, - "lon": 0.1931878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB25 9", - "ref": "CB25 262" - } -}, -{ - "type": "node", - "id": 255589518, - "lat": 52.3474025, - "lon": 0.2143000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255627059, - "lat": 51.2530762, - "lon": -1.0792173, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 295" - } -}, -{ - "type": "node", - "id": 255628080, - "lat": 51.3981197, - "lon": 0.1718618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR8 156D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 255628462, - "lat": 51.2844083, - "lon": -0.8522120, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255628487, - "lat": 51.2801237, - "lon": -0.8487677, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-17", - "created_by": "JOSM", - "mapillary": "3120929311511598", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-10-29" - } -}, -{ - "type": "node", - "id": 255629393, - "lat": 51.7166184, - "lon": -1.1975473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX4 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 255655285, - "lat": 55.8649785, - "lon": -4.2426934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 19:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G4 454" - } -}, -{ - "type": "node", - "id": 255656160, - "lat": 54.4363761, - "lon": -2.9610251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "LA22 140", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 255671258, - "lat": 53.4184061, - "lon": -2.2402195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255671522, - "lat": 53.4076181, - "lon": -2.2584236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 255671978, - "lat": 53.4088607, - "lon": -2.2830914, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255673311, - "lat": 53.4226482, - "lon": -2.2470804, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 255673473, - "lat": 53.4212428, - "lon": -2.2426104, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255677547, - "lat": 53.4107143, - "lon": -2.2308004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 21:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M20 601D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255685695, - "lat": 52.0339940, - "lon": -1.1460128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "ref": "NN13 183" - } -}, -{ - "type": "node", - "id": 255685720, - "lat": 52.0372638, - "lon": -1.1448768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 880" - } -}, -{ - "type": "node", - "id": 255687036, - "lat": 53.4590679, - "lon": -2.2581302, - "tags": { - "amenity": "post_box", - "fixme": "This postbox has moved from this location, to where, I know not.", - "ref": "M16 209" - } -}, -{ - "type": "node", - "id": 255687122, - "lat": 53.4398364, - "lon": -2.2666783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255687990, - "lat": 53.3950231, - "lon": -2.2053848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SK8 250" - } -}, -{ - "type": "node", - "id": 255688486, - "lat": 53.3857824, - "lon": -2.2097595, - "tags": { - "amenity": "post_box", - "ref": "SK8 325" - } -}, -{ - "type": "node", - "id": 255691288, - "lat": 51.0990284, - "lon": 1.0394525, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 232" - } -}, -{ - "type": "node", - "id": 255737169, - "lat": 55.7344771, - "lon": -3.9557151, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 255737756, - "lat": 52.3469032, - "lon": 0.2205612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255737894, - "lat": 52.3454945, - "lon": 0.2183308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255750114, - "lat": 52.5413072, - "lon": -0.3093018, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 255757511, - "lat": 51.7153222, - "lon": -1.1905682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "OX4 176", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 255765674, - "lat": 51.2373945, - "lon": -1.0820975, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG25", - "ref": "RG25 258" - } -}, -{ - "type": "node", - "id": 255854230, - "lat": 53.1055569, - "lon": -2.4619283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "post_box:type": "lamp", - "ref": "CW1 16D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 255854805, - "lat": 50.9996765, - "lon": -0.5386304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "RH14 1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH14 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255856689, - "lat": 53.1011693, - "lon": -2.4486546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "ref": "CW1 114D", - "royal_cypher": "EIIR", - "source": "GPX" - } -}, -{ - "type": "node", - "id": 255871220, - "lat": 51.3982485, - "lon": -1.3268265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "916240926440045", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "RG14", - "ref": "RG14 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 255880864, - "lat": 51.7454618, - "lon": -0.4722609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 255898281, - "lat": 51.7266418, - "lon": -1.1947401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "386464149729781", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX4 442", - "source": "photograph", - "survey:date": "2019-11-27" - } -}, -{ - "type": "node", - "id": 255904101, - "lat": 51.7446815, - "lon": -0.4760409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP1 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 255904170, - "lat": 51.7479651, - "lon": -0.4820315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 255906631, - "lat": 51.1111330, - "lon": -0.1682832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 255906716, - "lat": 51.1049665, - "lon": -0.1674642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 255909463, - "lat": 51.7503549, - "lon": -0.4614517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 255927149, - "lat": 53.1921827, - "lon": -2.4535757, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "is_in": "Middlewich, Cheshire, England, United Kingdom" - } -}, -{ - "type": "node", - "id": 255945846, - "lat": 52.5140999, - "lon": -1.8510198, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 183" - } -}, -{ - "type": "node", - "id": 256033691, - "lat": 52.4393803, - "lon": -1.5230720, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 256057054, - "lat": 53.6935392, - "lon": -1.5389119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 172" - } -}, -{ - "type": "node", - "id": 256058476, - "lat": 53.6930147, - "lon": -1.5340746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 261" - } -}, -{ - "type": "node", - "id": 256067209, - "lat": 52.1790427, - "lon": -4.3853218, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 256069627, - "lat": 53.1862841, - "lon": -2.4504083, - "tags": { - "amenity": "post_box", - "is_in": "Middlewich, Cheshire, England, United Kingdom" - } -}, -{ - "type": "node", - "id": 256083486, - "lat": 51.8218037, - "lon": -0.3396555, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256085289, - "lat": 51.8189917, - "lon": -0.3455741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256125121, - "lat": 51.6822990, - "lon": -3.9110990, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 256136759, - "lat": 51.4860141, - "lon": -2.6737773, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 422D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256145313, - "lat": 54.1690387, - "lon": -2.6173013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "wall", - "ref": "LA6 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256145363, - "lat": 54.1984809, - "lon": -2.5947736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA6 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256145366, - "lat": 54.1788060, - "lon": -2.6122050, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA6 122" - } -}, -{ - "type": "node", - "id": 256145382, - "lat": 54.2030553, - "lon": -2.5981974, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256147140, - "lat": 51.2471303, - "lon": -0.5444843, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU1 245", - "source": "voice" - } -}, -{ - "type": "node", - "id": 256148393, - "lat": 51.2438133, - "lon": -0.5363560, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU1 227", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 227D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "voice; survey" - } -}, -{ - "type": "node", - "id": 256150873, - "lat": 54.1239918, - "lon": -2.6583934, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA2 9" - } -}, -{ - "type": "node", - "id": 256150875, - "lat": 54.1085867, - "lon": -2.6356937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "ref": "LA2 180" - } -}, -{ - "type": "node", - "id": 256150877, - "lat": 54.0927947, - "lon": -2.6663167, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LA2 9LB", - "ref": "LA2 149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256150903, - "lat": 54.0750445, - "lon": -2.7019384, - "tags": { - "amenity": "post_box", - "postal_code": "LA2", - "ref": "LA2 105" - } -}, -{ - "type": "node", - "id": 256150904, - "lat": 54.0810505, - "lon": -2.6881378, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LA2 9JG", - "ref": "LA2 133" - } -}, -{ - "type": "node", - "id": 256150944, - "lat": 54.0742325, - "lon": -2.7160725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 39" - } -}, -{ - "type": "node", - "id": 256150973, - "lat": 54.0804060, - "lon": -2.7549790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 08:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256150986, - "lat": 54.0716208, - "lon": -2.7593989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256173660, - "lat": 52.5392040, - "lon": -1.3687915, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 256179563, - "lat": 53.1737085, - "lon": -2.2044360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256218391, - "lat": 51.4219581, - "lon": 0.4899678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256289572, - "lat": 53.2131514, - "lon": -2.2239465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "SK11 126" - } -}, -{ - "type": "node", - "id": 256289939, - "lat": 53.3281211, - "lon": -2.2481524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK9", - "ref": "SK9 613" - } -}, -{ - "type": "node", - "id": 256304341, - "lat": 54.0654999, - "lon": -2.8010766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA1 114", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 256308606, - "lat": 51.2503395, - "lon": -0.5374084, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "GU1 256", - "source": "voice" - } -}, -{ - "type": "node", - "id": 256309660, - "lat": 51.2480808, - "lon": -0.5296053, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU4 266", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU4 266D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 256310272, - "lat": 51.2515133, - "lon": -0.5310446, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU4 301", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU4 301D", - "royal_cypher": "EIIR", - "source": "voice", - "source_1": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 256312738, - "lat": 54.9806411, - "lon": -1.6465200, - "tags": { - "amenity": "post_box", - "ref": "NE4 201" - } -}, -{ - "type": "node", - "id": 256313488, - "lat": 52.7159525, - "lon": -2.7288109, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SY2", - "ref": "SY2 419", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256322062, - "lat": 53.4344274, - "lon": -2.1948542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M19 571", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256325704, - "lat": 51.2556000, - "lon": -0.5300195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU4 9", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU4 9D", - "royal_cypher": "EIIR", - "source": "voice", - "source_1": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 256332761, - "lat": 52.5904188, - "lon": -0.2364438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 256332764, - "lat": 52.5934928, - "lon": -0.2255086, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 256372296, - "lat": 51.3187693, - "lon": -0.2072745, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM7 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256386696, - "lat": 51.3155964, - "lon": -0.2061256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 193D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256390675, - "lat": 51.8314743, - "lon": -0.5166680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU6 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256431034, - "lat": 55.9380359, - "lon": -3.2918197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "272383984587769", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 227", - "survey:date": "2020-06-26" - } -}, -{ - "type": "node", - "id": 256442410, - "lat": 52.4621312, - "lon": 0.3174289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256442684, - "lat": 52.4545806, - "lon": 0.3147828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256442704, - "lat": 52.4550948, - "lon": 0.3113326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256453308, - "lat": 52.4536956, - "lon": 0.3014484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256466114, - "lat": 51.3919167, - "lon": 0.1868664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256475877, - "lat": 51.3677263, - "lon": 0.2113805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA4 200", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 256484651, - "lat": 51.7593491, - "lon": -1.2357576, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-03", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX3 191" - } -}, -{ - "type": "node", - "id": 256485460, - "lat": 54.9756145, - "lon": -1.6290218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256485461, - "lat": 54.9757500, - "lon": -1.6353357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 256485468, - "lat": 54.9777144, - "lon": -1.6399199, - "tags": { - "amenity": "post_box", - "ref": "NE4 112" - } -}, -{ - "type": "node", - "id": 256487765, - "lat": 51.3760816, - "lon": 0.2215779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA4 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 256488829, - "lat": 51.7019160, - "lon": -2.3194888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL11 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256499443, - "lat": 51.7389392, - "lon": -2.2374837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-04-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL5 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256499679, - "lat": 51.3919090, - "lon": 0.1837162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256503639, - "lat": 54.0527337, - "lon": -2.7937013, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA1 12" - } -}, -{ - "type": "node", - "id": 256512770, - "lat": 52.6872661, - "lon": -1.8039954, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS13", - "ref": "WS13 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 256512875, - "lat": 52.6913836, - "lon": -1.7907982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "155913980123381", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "WS13", - "ref": "WS13 21", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 256514406, - "lat": 51.7191160, - "lon": -1.1987061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "OX4", - "ref": "OX4 817", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 256521093, - "lat": 51.9452594, - "lon": -2.2101517, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 256522982, - "lat": 51.7206148, - "lon": -1.2017316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 802" - } -}, -{ - "type": "node", - "id": 256568325, - "lat": 53.9558687, - "lon": -1.0728882, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-07", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "red", - "historic_operator": "Post Office", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO1 9UA", - "ref": "YO1 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256569749, - "lat": 51.0952402, - "lon": 1.0099655, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 109" - } -}, -{ - "type": "node", - "id": 256575436, - "lat": 51.3942136, - "lon": 0.1678475, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-15", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 314", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256581440, - "lat": 55.8047037, - "lon": -4.3835530, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 256589197, - "lat": 51.8011072, - "lon": -0.1607046, - "tags": { - "amenity": "post_box", - "ref": "AL8 324" - } -}, -{ - "type": "node", - "id": 256594763, - "lat": 51.3930638, - "lon": 0.1703178, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 486D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256596031, - "lat": 51.3926345, - "lon": 0.1718798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256597965, - "lat": 50.8223001, - "lon": -1.2257665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO14 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256597983, - "lat": 50.8187981, - "lon": -1.2339587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-02-21", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO14 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256608171, - "lat": 51.7287945, - "lon": -1.1992647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 382" - } -}, -{ - "type": "node", - "id": 256624470, - "lat": 52.7086732, - "lon": -2.7643555, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 51" - } -}, -{ - "type": "node", - "id": 256627184, - "lat": 52.7073370, - "lon": -2.7449632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "postal_code": "SY2", - "ref": "SY2 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 256629588, - "lat": 54.0619868, - "lon": -2.8482771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA3 146" - } -}, -{ - "type": "node", - "id": 256629693, - "lat": 54.0323750, - "lon": -2.7802887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA1 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256631946, - "lat": 53.7307285, - "lon": -1.4883713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256632015, - "lat": 53.9782474, - "lon": -2.7637750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 148", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 256632018, - "lat": 53.9386357, - "lon": -2.7744968, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 256632022, - "lat": 53.9841441, - "lon": -2.7136303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA2 53" - } -}, -{ - "type": "node", - "id": 256632023, - "lat": 53.9849306, - "lon": -2.6926776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 07:30", - "ref": "LA2 173" - } -}, -{ - "type": "node", - "id": 256632024, - "lat": 53.9825869, - "lon": -2.6710950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "has this been moved?", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 256632320, - "lat": 53.9725401, - "lon": -2.7499604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA2 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 256632322, - "lat": 53.9782585, - "lon": -2.7355669, - "tags": { - "amenity": "post_box", - "ref": "LA2 202" - } -}, -{ - "type": "node", - "id": 256682834, - "lat": 51.3827957, - "lon": -0.1593987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256697320, - "lat": 55.8613474, - "lon": -4.2738802, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 256698415, - "lat": 51.3834627, - "lon": 0.1611983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "300803698435171", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-06-08" - } -}, -{ - "type": "node", - "id": 256775978, - "lat": 52.4369857, - "lon": -1.8831359, - "tags": { - "amenity": "post_box", - "ref": "B13 240" - } -}, -{ - "type": "node", - "id": 256778209, - "lat": 54.0652853, - "lon": -2.8451605, - "tags": { - "amenity": "post_box", - "ref": "LA4 186" - } -}, -{ - "type": "node", - "id": 256794562, - "lat": 51.4954960, - "lon": -0.1749430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW7 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256876580, - "lat": 51.0947629, - "lon": 1.0449763, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 411", - "source": "survey" - } -}, -{ - "type": "node", - "id": 256907648, - "lat": 51.2441551, - "lon": -0.5261420, - "tags": { - "amenity": "post_box", - "mapillary": "433392085205788", - "post_box:type": "pillar", - "postal_code": "GU1", - "ref": "GU1 173", - "source": "voice", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 256979522, - "lat": 53.9341554, - "lon": -2.9220715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 256980395, - "lat": 52.7178712, - "lon": -2.7405665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "153781620049467", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 436", - "royal_cypher": "EIIR", - "survey:date": "2020-07-13" - } -}, -{ - "type": "node", - "id": 256986373, - "lat": 51.4991553, - "lon": -0.2532228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 256991402, - "lat": 53.9169430, - "lon": -2.8978023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 256991673, - "lat": 53.8966590, - "lon": -2.8171651, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 256991683, - "lat": 53.9140929, - "lon": -2.8518998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 256991685, - "lat": 53.9154569, - "lon": -2.7988954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 256992561, - "lat": 53.9265848, - "lon": -2.8048062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR3 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 256993214, - "lat": 51.3756159, - "lon": 0.0058491, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1304436793719244", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 363", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-06-22" - } -}, -{ - "type": "node", - "id": 256993222, - "lat": 51.3737675, - "lon": 0.0050423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:45, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 441", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 256993227, - "lat": 51.3762436, - "lon": 0.0112145, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 188", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 256993239, - "lat": 51.3802072, - "lon": 0.0104496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 256994710, - "lat": 53.2361220, - "lon": -2.1592843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "postal_code": "SK11", - "ref": "SK11 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257073995, - "lat": 53.2379620, - "lon": -2.2336074, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK11 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257073996, - "lat": 53.2457479, - "lon": -2.2098239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 09:30", - "ref": "SK11 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257074065, - "lat": 53.1867937, - "lon": -2.1966052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "CW12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257074067, - "lat": 53.2008877, - "lon": -2.1884743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "ref": "SK11 74" - } -}, -{ - "type": "node", - "id": 257074497, - "lat": 53.2245456, - "lon": -2.1409278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "created_by": "JOSM", - "ref": "SK11 117" - } -}, -{ - "type": "node", - "id": 257075346, - "lat": 53.1957584, - "lon": -2.1675520, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257075352, - "lat": 53.1986588, - "lon": -2.1500393, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-11", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "ref": "CW12 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257075691, - "lat": 54.0094404, - "lon": -1.0562016, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "material": "plastic", - "post_box:design": "type_n", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO32 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257075944, - "lat": 54.0000376, - "lon": -1.0551869, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "YO32 9RH", - "ref": "YO32 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257075988, - "lat": 53.9970582, - "lon": -1.0575156, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO32 9QN", - "ref": "YO32 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257076214, - "lat": 53.9976251, - "lon": -1.0724795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "YO32", - "ref": "YO32 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257145159, - "lat": 51.8041737, - "lon": -0.7885590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 257196389, - "lat": 52.4099584, - "lon": -1.8747255, - "tags": { - "amenity": "post_box", - "ref": "B14 1082" - } -}, -{ - "type": "node", - "id": 257270139, - "lat": 52.4064852, - "lon": -1.8688994, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 259", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257319762, - "lat": 52.4105470, - "lon": -1.9111588, - "tags": { - "amenity": "post_box", - "ref": "B30 357" - } -}, -{ - "type": "node", - "id": 257348932, - "lat": 52.4082368, - "lon": -1.9213106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "B30 965", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 257363433, - "lat": 52.4135801, - "lon": -1.9255868, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B30 746" - } -}, -{ - "type": "node", - "id": 257363699, - "lat": 52.4110868, - "lon": -1.8695647, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 579D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257411788, - "lat": 53.3843161, - "lon": -1.5141518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S10 958D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257415865, - "lat": 53.3773290, - "lon": -1.5279893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 517", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257416473, - "lat": 53.3770755, - "lon": -1.5234214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S10 756", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257419681, - "lat": 53.3727551, - "lon": -1.5388646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257437820, - "lat": 54.0351546, - "lon": -2.8176102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "post_box:type": "lamp", - "ref": "LA1 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257437824, - "lat": 54.0212873, - "lon": -2.8154768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LA2 190", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 257453732, - "lat": 51.5122854, - "lon": -0.0613514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 38;E1 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257453744, - "lat": 51.5102471, - "lon": -0.0440528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1W 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257454270, - "lat": 54.5945684, - "lon": -5.8577143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 257454285, - "lat": 54.5978285, - "lon": -5.8586077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 257464713, - "lat": 51.4940442, - "lon": -0.2450531, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W6 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 257464732, - "lat": 51.4934723, - "lon": -0.2422394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 257467355, - "lat": 52.5644800, - "lon": -0.2611810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "PE2 446D" - } -}, -{ - "type": "node", - "id": 257470548, - "lat": 54.1359220, - "lon": -2.7717692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA5 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 257470639, - "lat": 54.1627046, - "lon": -2.8253907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257470658, - "lat": 54.1716119, - "lon": -2.8243696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 77" - } -}, -{ - "type": "node", - "id": 257477427, - "lat": 51.4985400, - "lon": -0.2354250, - "tags": { - "amenity": "post_box", - "ref": "W6 10" - } -}, -{ - "type": "node", - "id": 257487859, - "lat": 53.3743194, - "lon": -1.5287278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257488962, - "lat": 53.3738817, - "lon": -1.5233396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 634", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257496342, - "lat": 51.3985952, - "lon": 0.1797773, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257522666, - "lat": 52.4209475, - "lon": -1.9827539, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B31", - "ref": "B31 999" - } -}, -{ - "type": "node", - "id": 257522689, - "lat": 52.4251980, - "lon": -1.9841634, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B31", - "ref": "B31 925", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 257523400, - "lat": 52.4242315, - "lon": -1.9744088, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B31", - "ref": "B31 195" - } -}, -{ - "type": "node", - "id": 257527685, - "lat": 51.1659889, - "lon": 0.3852987, - "tags": { - "amenity": "post_box", - "ref": "TN12 78" - } -}, -{ - "type": "node", - "id": 257533652, - "lat": 53.9850137, - "lon": -1.0634692, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-21", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO31 9EF", - "ref": "YO31 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257533659, - "lat": 53.9821086, - "lon": -1.0633189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO31 9DL", - "ref": "YO31 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257534200, - "lat": 53.9745402, - "lon": -1.0643681, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-13", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 9LB", - "ref": "YO31 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257534204, - "lat": 53.9762762, - "lon": -1.0726358, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 9BP", - "ref": "YO31 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257538353, - "lat": 52.4215308, - "lon": -1.8919400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "B14 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257538840, - "lat": 52.4141849, - "lon": -1.8971848, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B14", - "ref": "B14 894" - } -}, -{ - "type": "node", - "id": 257543831, - "lat": 52.4193042, - "lon": -1.8997911, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B14", - "ref": "B14 435", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 257549660, - "lat": 52.4234584, - "lon": -1.8989032, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B14", - "ref": "B14 391" - } -}, -{ - "type": "node", - "id": 257549666, - "lat": 52.4168070, - "lon": -1.9079498, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257549668, - "lat": 52.4190673, - "lon": -1.9134217, - "tags": { - "amenity": "post_box", - "ref": "B14 948" - } -}, -{ - "type": "node", - "id": 257556754, - "lat": 52.4496991, - "lon": -1.9265580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "postal_code": "B15", - "ref": "B15 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257558297, - "lat": 52.4679330, - "lon": -1.9231151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "postal_code": "B15", - "ref": "B15 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257558301, - "lat": 52.4697694, - "lon": -1.9203197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "postal_code": "B15", - "ref": "B15 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 257558302, - "lat": 52.4717710, - "lon": -1.9187108, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B15 68" - } -}, -{ - "type": "node", - "id": 257591894, - "lat": 52.4697269, - "lon": -1.9178427, - "tags": { - "amenity": "post_box", - "ref": "B15 150" - } -}, -{ - "type": "node", - "id": 257611235, - "lat": 51.5637517, - "lon": -0.4014915, - "tags": { - "amenity": "post_box", - "ref": "HA4 427" - } -}, -{ - "type": "node", - "id": 257633305, - "lat": 52.7124846, - "lon": -2.7663319, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SY3", - "ref": "SY3 163", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257642126, - "lat": 52.7106556, - "lon": -2.7700414, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-04", - "postal_code": "SY3", - "ref": "SY3 32" - } -}, -{ - "type": "node", - "id": 257647228, - "lat": 52.7013052, - "lon": -2.7675770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "colour": "red", - "drive_through": "no", - "name": "SY3 33D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257647232, - "lat": 52.7018725, - "lon": -2.7627579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 320", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257691659, - "lat": 53.9729435, - "lon": -1.0693429, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "YO31 8SG", - "ref": "YO31 534", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257691707, - "lat": 53.9737688, - "lon": -1.0580198, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "YO31 1EA", - "ref": "YO31 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257709754, - "lat": 51.1047197, - "lon": 1.0407234, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 167" - } -}, -{ - "type": "node", - "id": 257732205, - "lat": 55.7391878, - "lon": -3.9734121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ML9 1000;ML9 1001", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257732225, - "lat": 55.7374572, - "lon": -3.9725864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML9 12", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 257762994, - "lat": 52.5562354, - "lon": -2.1701715, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 257763093, - "lat": 52.5577998, - "lon": -2.1652139, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 257782474, - "lat": 51.7376493, - "lon": -1.1994935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "OX4 748", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 257782490, - "lat": 51.7386944, - "lon": -1.2036097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-16", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "mapillary": "304223621320983", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX4 665", - "royal_cypher": "GVIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 257807918, - "lat": 51.4877329, - "lon": -0.3077374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257812926, - "lat": 52.5769414, - "lon": -2.1503300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "WV3 251", - "source": "survey", - "survey:date": "2012-09-03" - } -}, -{ - "type": "node", - "id": 257819309, - "lat": 53.6912234, - "lon": -1.4971709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 27", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 257841456, - "lat": 52.4380392, - "lon": -1.8704643, - "tags": { - "amenity": "post_box", - "note": "No information sheet on the box", - "post_box:type": "pillar", - "ref": "B13 191" - } -}, -{ - "type": "node", - "id": 257846776, - "lat": 52.4346674, - "lon": -1.8688856, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 403", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 257893935, - "lat": 53.9874891, - "lon": -1.0271862, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO32 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257894095, - "lat": 53.9597430, - "lon": -1.0351223, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "YO10 3NP", - "ref": "YO10 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257894100, - "lat": 53.9742226, - "lon": -1.0426575, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-05", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "postal_code": "YO31 1JP", - "ref": "YO31 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 257894101, - "lat": 53.9695970, - "lon": -1.0463965, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "YO31 0HP", - "ref": "YO31 472", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257894102, - "lat": 53.9669585, - "lon": -1.0444558, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-17", - "post_box:type": "pillar", - "ref": "YO31 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Bing" - } -}, -{ - "type": "node", - "id": 257894115, - "lat": 53.9624311, - "lon": -1.0608325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 1UH", - "ref": "YO31 245D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257894116, - "lat": 53.9625622, - "lon": -1.0550470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "YO31 1SX", - "ref": "YO31 502D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Bing" - } -}, -{ - "type": "node", - "id": 257901495, - "lat": 52.7059752, - "lon": -2.7536858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SY1", - "ref": "SY1 12D", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257923764, - "lat": 53.9704081, - "lon": -1.0509221, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "YO31 1EU", - "ref": "YO31 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 257923765, - "lat": 53.9642978, - "lon": -1.0509984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "pillar", - "postal_code": "YO31 0QL", - "ref": "YO31 336", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:position": "Bing" - } -}, -{ - "type": "node", - "id": 257923766, - "lat": 53.9668816, - "lon": -1.0550114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-02-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "YO31 0AN", - "ref": "YO31 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 257923800, - "lat": 53.9655272, - "lon": -1.0639955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO31 7YD", - "ref": "YO31 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "local_knowledge;Bing" - } -}, -{ - "type": "node", - "id": 257957835, - "lat": 51.7600292, - "lon": -1.1894756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "OX3 607", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 257969671, - "lat": 51.3559763, - "lon": -0.1564873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 257969673, - "lat": 51.3524034, - "lon": -0.1582035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 82D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258016394, - "lat": 51.3547555, - "lon": -0.1622676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 90", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258016425, - "lat": 51.3529588, - "lon": -0.1682998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 87", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258038515, - "lat": 55.8657266, - "lon": -4.1805340, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 258038516, - "lat": 55.8644668, - "lon": -4.1958306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "postal_code": "G33", - "ref": "G33 957" - } -}, -{ - "type": "node", - "id": 258038734, - "lat": 51.4913588, - "lon": -2.5180481, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258038989, - "lat": 52.5401623, - "lon": -1.9715186, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B71", - "ref": "B71 88" - } -}, -{ - "type": "node", - "id": 258038993, - "lat": 52.5450964, - "lon": -1.9555405, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B43", - "ref": "B43 1055" - } -}, -{ - "type": "node", - "id": 258056092, - "lat": 53.9557669, - "lon": -1.0676677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "drive_through": "no", - "note": "is now for parcels as well as Franked mail", - "post_box:type": "meter", - "postal_code": "YO10 3DW", - "ref": "YO10 2017P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 258056788, - "lat": 53.9604628, - "lon": -1.0517436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 1PP", - "ref": "YO31 326D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 258078909, - "lat": 51.4426749, - "lon": 0.2387317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/dartford-2020-07-11/IMG_20200712_174440.jpg", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "DA2 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258148604, - "lat": 52.5780764, - "lon": -1.9463992, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS5", - "ref": "WS5 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258148608, - "lat": 52.5753947, - "lon": -1.9562155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "postal_code": "WS5", - "ref": "WS5 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258156246, - "lat": 52.5681075, - "lon": -1.9703721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "mapillary": "849088549011382", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS5", - "ref": "WS5 201", - "survey:date": "2020-02-02" - } -}, -{ - "type": "node", - "id": 258156261, - "lat": 52.5646422, - "lon": -1.9686841, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 179" - } -}, -{ - "type": "node", - "id": 258184139, - "lat": 52.5850811, - "lon": -1.9793158, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WS1 74D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 258218809, - "lat": 54.1942435, - "lon": -2.8288276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 29" - } -}, -{ - "type": "node", - "id": 258218811, - "lat": 54.2026355, - "lon": -2.8284652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 9" - } -}, -{ - "type": "node", - "id": 258218812, - "lat": 54.2024309, - "lon": -2.7791642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 248" - } -}, -{ - "type": "node", - "id": 258226960, - "lat": 51.2633704, - "lon": -1.0985327, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 44" - } -}, -{ - "type": "node", - "id": 258226977, - "lat": 51.2609615, - "lon": -1.1004761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "672772258097333", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "postal_code": "RG21", - "ref": "RG21 332", - "survey:date": "2023-06-07" - } -}, -{ - "type": "node", - "id": 258236516, - "lat": 52.0050105, - "lon": 0.2011581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258236555, - "lat": 52.0004936, - "lon": 0.2026563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258236590, - "lat": 52.0064261, - "lon": 0.2114002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258236691, - "lat": 52.0338680, - "lon": 0.2104011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "plate has CB10 100 but it probably should be CB11 100", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB10 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258236692, - "lat": 52.0343255, - "lon": 0.2089662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB11 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258236713, - "lat": 52.0364012, - "lon": 0.2054192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258333020, - "lat": 52.0247002, - "lon": 0.2375779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB10 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258333046, - "lat": 52.0280697, - "lon": 0.2430712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB10 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258345768, - "lat": 52.0252318, - "lon": 0.2511076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB10 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258345782, - "lat": 52.0270720, - "lon": 0.2471718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB10 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258345877, - "lat": 52.0266371, - "lon": 0.2563282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB10 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258360278, - "lat": 55.8590576, - "lon": -4.3655188, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 258360279, - "lat": 55.8578032, - "lon": -4.3650869, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 258365595, - "lat": 51.4352183, - "lon": 0.2451258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "ref": "DA2 397", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 258371617, - "lat": 51.4364499, - "lon": 0.2496869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1538720376476647", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA2 382D", - "royal_cypher": "EIIR", - "survey:date": "2021-09-20" - } -}, -{ - "type": "node", - "id": 258519973, - "lat": 52.7137927, - "lon": -2.7829185, - "tags": { - "amenity": "post_box", - "postal_code": "SY3", - "ref": "SY3 194", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258565863, - "lat": 53.4033647, - "lon": -2.3656548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA14 37", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 258565866, - "lat": 53.4013357, - "lon": -2.3592893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA14 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 258566037, - "lat": 53.4026132, - "lon": -2.3515055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 82", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 258566823, - "lat": 51.1275435, - "lon": 1.0915605, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 85" - } -}, -{ - "type": "node", - "id": 258585941, - "lat": 51.5692877, - "lon": -4.2873431, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA3 677D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258601183, - "lat": 51.5665371, - "lon": -0.3929892, - "tags": { - "amenity": "post_box", - "ref": "HA4 450" - } -}, -{ - "type": "node", - "id": 258601188, - "lat": 51.5624081, - "lon": -0.3924086, - "tags": { - "amenity": "post_box", - "ref": "HA4 187" - } -}, -{ - "type": "node", - "id": 258601190, - "lat": 51.5583015, - "lon": -0.3970179, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "HA4 512" - } -}, -{ - "type": "node", - "id": 258601191, - "lat": 51.5602231, - "lon": -0.3996231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA4 417" - } -}, -{ - "type": "node", - "id": 258604099, - "lat": 51.3687597, - "lon": 1.1133065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 258605263, - "lat": 51.3709650, - "lon": 1.1095041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258619299, - "lat": 51.1834330, - "lon": -0.6116343, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 258633916, - "lat": 51.1777534, - "lon": -0.6151102, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU7 77D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258644632, - "lat": 51.1812151, - "lon": -0.6163865, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU7 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258667489, - "lat": 51.6100833, - "lon": -1.2447656, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 258671604, - "lat": 51.4712612, - "lon": -0.3514654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 258681653, - "lat": 51.6094484, - "lon": -1.2501345, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 258716104, - "lat": 51.7744569, - "lon": -1.2374360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX3 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 258787181, - "lat": 55.0143555, - "lon": -1.5858812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE12 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258787184, - "lat": 55.0095068, - "lon": -1.5843163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE12 409D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258825841, - "lat": 52.5707820, - "lon": -1.6811686, - "tags": { - "amenity": "post_box", - "postal_code": "B78", - "ref": "B78 1421D" - } -}, -{ - "type": "node", - "id": 258853578, - "lat": 50.8121549, - "lon": -0.4731254, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN16 1472D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 258856795, - "lat": 51.7549021, - "lon": -1.2613885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2019-03-08", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "postal_code": "OX1", - "ref": "OX1 37" - } -}, -{ - "type": "node", - "id": 258868200, - "lat": 51.1727995, - "lon": -0.6496550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU8 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258874172, - "lat": 51.1923446, - "lon": -0.6091185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "GU7 52" - } -}, -{ - "type": "node", - "id": 258889508, - "lat": 51.1943794, - "lon": -0.6030234, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GU7 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 258892903, - "lat": 51.2046103, - "lon": -0.6172481, - "tags": { - "amenity": "post_box", - "ref": "GU7 12" - } -}, -{ - "type": "node", - "id": 258894702, - "lat": 51.2042052, - "lon": -0.6071080, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "GU7 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258896465, - "lat": 51.2114143, - "lon": -0.6433548, - "tags": { - "amenity": "post_box", - "ref": "GU3 92" - } -}, -{ - "type": "node", - "id": 258896912, - "lat": 51.1915160, - "lon": -0.6165376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 258907052, - "lat": 51.1623437, - "lon": -0.6499105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU8 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258914043, - "lat": 51.1714395, - "lon": -0.7138246, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU8 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "photo" - } -}, -{ - "type": "node", - "id": 258918336, - "lat": 53.3874121, - "lon": -2.4158797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258918945, - "lat": 53.4063097, - "lon": -2.4035667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 258918948, - "lat": 53.3872612, - "lon": -2.3915165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 63", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 258929120, - "lat": 51.1807920, - "lon": -0.6263900, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU7 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258929134, - "lat": 51.1810688, - "lon": -0.6293319, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 258931742, - "lat": 51.1767381, - "lon": -0.6320671, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 258937005, - "lat": 51.1837636, - "lon": -0.6266947, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU7 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 258940154, - "lat": 51.1187320, - "lon": -0.7374369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GU26 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 258940460, - "lat": 51.1239339, - "lon": -0.7444898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU26 96", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU26 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 258941697, - "lat": 51.1745820, - "lon": -0.6089515, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 258944583, - "lat": 50.9548691, - "lon": -1.1297018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO32 226", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258952555, - "lat": 51.1387754, - "lon": -0.7196456, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-29", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 100D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 258952556, - "lat": 51.1456211, - "lon": -0.7140834, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-29", - "note": "This postbox is on the southbound side of this road and is a bit hidden due to being higher than the road, next to the pavement, and due to vegetation.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259005700, - "lat": 51.3680130, - "lon": 1.1080440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 245", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259007520, - "lat": 52.7003421, - "lon": -2.7539614, - "tags": { - "amenity": "post_box", - "note": "ref from dracos.co.uk, as taken from royal mail FOIA response", - "postal_code": "SY3", - "ref": "SY3 197" - } -}, -{ - "type": "node", - "id": 259007589, - "lat": 52.7004090, - "lon": -2.7480847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 259007664, - "lat": 52.7028500, - "lon": -2.7517138, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "post_box:type": "wall", - "postal_code": "SY3", - "ref": "SY3 9" - } -}, -{ - "type": "node", - "id": 259017282, - "lat": 51.1764103, - "lon": -0.6220523, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU7 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259017672, - "lat": 51.1695064, - "lon": -0.6218478, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU7 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259018858, - "lat": 51.1597180, - "lon": -0.6320452, - "tags": { - "amenity": "post_box", - "fixme": "I went past this location on Saturday 26th September 2020 and I did not see a postbox here. It is unlikely that a postbox would be here along Tuesley Lane when there is a postbox along Station Lane within 200 metres." - } -}, -{ - "type": "node", - "id": 259018883, - "lat": 51.1499640, - "lon": -0.6359415, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259023264, - "lat": 51.1499300, - "lon": -0.7130734, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "last_checked": "2021-05-29", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU8 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259023826, - "lat": 51.1776284, - "lon": -0.7107575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GU8 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259030153, - "lat": 53.9546035, - "lon": -1.0668266, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-23", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO10 3DW", - "ref": "YO10 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259036337, - "lat": 53.9566332, - "lon": -1.0589845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO10 3SW", - "ref": "YO10 339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 259037325, - "lat": 53.9540152, - "lon": -1.0516445, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO10 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259037326, - "lat": 53.9562544, - "lon": -1.0479954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 20:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO10 3RA", - "ref": "YO10 375", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 259040700, - "lat": 53.9565798, - "lon": -1.0337015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 08:30", - "post_box:type": "pillar", - "postal_code": "YO10 3PF", - "ref": "YO10 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259041367, - "lat": 53.9697381, - "lon": -1.0594075, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "YO31 1BR", - "ref": "YO31 435", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 259047789, - "lat": 51.5654753, - "lon": -0.4064424, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HA4 372", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 259067164, - "lat": 51.6085880, - "lon": -1.2622984, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 259069507, - "lat": 55.7934058, - "lon": -3.9946766, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 259093129, - "lat": 51.5995252, - "lon": -1.2593296, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 259096503, - "lat": 54.0558122, - "lon": -2.7870588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "LA1 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259096535, - "lat": 54.0571286, - "lon": -2.8240071, - "tags": { - "amenity": "post_box", - "ref": "LA1 174" - } -}, -{ - "type": "node", - "id": 259096563, - "lat": 54.0594953, - "lon": -2.8264989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA3 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259149963, - "lat": 52.3195530, - "lon": -2.0799011, - "tags": { - "amenity": "post_box", - "ref": "B61 704" - } -}, -{ - "type": "node", - "id": 259178609, - "lat": 53.9545332, - "lon": -1.0302354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO10 409D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 259226608, - "lat": 51.1777076, - "lon": -0.6024311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU7 126D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 259247835, - "lat": 51.4885989, - "lon": -0.2983054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259253705, - "lat": 52.7081228, - "lon": -2.7720738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259257766, - "lat": 51.3033352, - "lon": 1.1236779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "mapillary": "781945212478492", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 346", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 259257950, - "lat": 51.3068763, - "lon": 1.1328083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "CT2", - "ref": "CT2 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259258938, - "lat": 51.3040657, - "lon": 1.1305328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259281393, - "lat": 51.9849604, - "lon": -2.4352111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:25; Sa 08:00", - "post_box:type": "wall", - "ref": "GL18 68", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 259294576, - "lat": 53.6853021, - "lon": -1.5340842, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "WF2 1039" - } -}, -{ - "type": "node", - "id": 259294580, - "lat": 53.6852446, - "lon": -1.5341027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259294906, - "lat": 53.6760190, - "lon": -1.5176610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 210" - } -}, -{ - "type": "node", - "id": 259295293, - "lat": 52.1566532, - "lon": -2.6875551, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 259422050, - "lat": 53.9645051, - "lon": -1.0752155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO31 7PA", - "ref": "YO31 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259422056, - "lat": 53.9544749, - "lon": -1.0928419, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-17", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "note": "LH slot for stamped, RH slot for franked", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "YO24 1AZ", - "ref": "YO24 112;YO24 9112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259422060, - "lat": 53.9522442, - "lon": -1.0964493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO24 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 259444873, - "lat": 53.4621576, - "lon": -2.2154111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "M13 323", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 259492870, - "lat": 52.4371374, - "lon": -1.8296866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "pillar", - "ref": "B27 329", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259500107, - "lat": 52.4278000, - "lon": -1.8364703, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "B28 506", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259508981, - "lat": 51.3079466, - "lon": 1.1214491, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CT2", - "ref": "CT2 314" - } -}, -{ - "type": "node", - "id": 259509168, - "lat": 52.4415960, - "lon": -1.8254504, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B27 468", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259509359, - "lat": 52.4444529, - "lon": -1.8270171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "B27", - "ref": "B27 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259565474, - "lat": 53.6700765, - "lon": -1.5263114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 259565623, - "lat": 53.6711886, - "lon": -1.5168155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 159" - } -}, -{ - "type": "node", - "id": 259565645, - "lat": 53.6694497, - "lon": -1.5068287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259569701, - "lat": 50.9382894, - "lon": -0.0318084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259573104, - "lat": 51.2629823, - "lon": -1.0891029, - "tags": { - "amenity": "post_box", - "mapillary": "489001602438825", - "note": "two adjacent boxes both with same ref", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "RG21", - "ref": "RG21 210", - "ref:duplicates": "2", - "survey:date": "2021-12-01" - } -}, -{ - "type": "node", - "id": 259573141, - "lat": 51.2637494, - "lon": -1.0934745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 259593458, - "lat": 51.7092569, - "lon": 0.2442427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM5 21" - } -}, -{ - "type": "node", - "id": 259646632, - "lat": 52.4854593, - "lon": -1.8524746, - "tags": { - "amenity": "post_box", - "ref": "B8 270", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259648893, - "lat": 52.4784621, - "lon": -1.8423623, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B9 165", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 259658877, - "lat": 53.9760855, - "lon": -1.0895763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO30 207", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 259658912, - "lat": 53.9695900, - "lon": -1.0963951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO30 128", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 259659217, - "lat": 53.9712827, - "lon": -1.0819445, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 8HL", - "ref": "YO31 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 259659233, - "lat": 53.9788492, - "lon": -1.0947920, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO30 593", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259696874, - "lat": 52.3915222, - "lon": -1.7851391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B90", - "ref": "B90 1394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 259728777, - "lat": 51.7482776, - "lon": -1.2281663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "OX4 159D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "photograph;survey" - } -}, -{ - "type": "node", - "id": 259729051, - "lat": 51.7453809, - "lon": -1.2373498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 259729052, - "lat": 51.7468398, - "lon": -1.2408955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 48", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 259756932, - "lat": 54.9777423, - "lon": -1.6474116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE4 172" - } -}, -{ - "type": "node", - "id": 259786636, - "lat": 54.0067417, - "lon": -1.0549175, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "YO32 142", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 259786670, - "lat": 54.0186562, - "lon": -1.0464049, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO32 447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259786700, - "lat": 54.0534350, - "lon": -0.9648630, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO60 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 259786730, - "lat": 54.0618314, - "lon": -0.9724595, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "YO60 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259786742, - "lat": 54.0777787, - "lon": -1.0117276, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "YO60 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259814665, - "lat": 55.8296204, - "lon": -4.4182411, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 153" - } -}, -{ - "type": "node", - "id": 259814778, - "lat": 55.8303700, - "lon": -4.4325984, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "PA2", - "ref": "PA2 24" - } -}, -{ - "type": "node", - "id": 259833192, - "lat": 51.0920659, - "lon": -0.1999340, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259874046, - "lat": 52.3027661, - "lon": -2.0736819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "post_box:type": "pillar", - "ref": "B60 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 259874535, - "lat": 52.3219683, - "lon": -0.2287403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 285" - } -}, -{ - "type": "node", - "id": 260009527, - "lat": 52.1883958, - "lon": 0.2284842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB21 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260017921, - "lat": 51.9301620, - "lon": -1.0387751, - "tags": { - "addr:postcode": "MK18 4EH", - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "MK18 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260019186, - "lat": 51.9325363, - "lon": -1.0347807, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "MK18 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 260021803, - "lat": 51.1207163, - "lon": -0.0774119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "name": "Crawley Down PO", - "note:collection_plate": "Not visible", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260029864, - "lat": 53.6662084, - "lon": -1.5317905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 270" - } -}, -{ - "type": "node", - "id": 260062788, - "lat": 52.6062085, - "lon": -0.2711715, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 260062789, - "lat": 52.6124450, - "lon": -0.2705038, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 260071776, - "lat": 51.7608494, - "lon": -0.4731926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 260132910, - "lat": 52.5889064, - "lon": -0.2121914, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 260143797, - "lat": 51.1182019, - "lon": -0.4316954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 260144288, - "lat": 51.1166770, - "lon": -0.3917184, - "tags": { - "amenity": "post_box", - "source": "photo" - } -}, -{ - "type": "node", - "id": 260148593, - "lat": 51.1660934, - "lon": -0.0626879, - "tags": { - "amenity": "post_box", - "postal_code": "RH7", - "ref": "RH7 89", - "source": "photo" - } -}, -{ - "type": "node", - "id": 260155526, - "lat": 51.1646191, - "lon": 0.3066445, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "source": "photo" - } -}, -{ - "type": "node", - "id": 260210973, - "lat": 52.0808967, - "lon": 0.2733104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB21 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211193, - "lat": 52.0511048, - "lon": 0.2534767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB10 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260211210, - "lat": 52.0217754, - "lon": 0.2591476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB10 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211281, - "lat": 52.0243251, - "lon": 0.2562274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB10 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211284, - "lat": 52.0229827, - "lon": 0.2482508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB10 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211482, - "lat": 52.0192202, - "lon": 0.2514638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211591, - "lat": 52.0111862, - "lon": 0.2459429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211634, - "lat": 52.0112573, - "lon": 0.2420166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211647, - "lat": 52.0134453, - "lon": 0.2383014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211654, - "lat": 52.0151038, - "lon": 0.2370462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260211704, - "lat": 52.0156395, - "lon": 0.2507822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260244517, - "lat": 53.3363212, - "lon": -1.5099679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S7 499D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260251202, - "lat": 51.8132864, - "lon": -0.4396930, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 260254269, - "lat": 52.4665105, - "lon": -1.3738706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260273042, - "lat": 53.4072665, - "lon": -1.5043142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 411D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 260274726, - "lat": 51.5619274, - "lon": -0.1469111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "colour": "red", - "manufacturer:wikidata": "Q125465789", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NW5 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 12D" - } -}, -{ - "type": "node", - "id": 260276476, - "lat": 53.4207374, - "lon": -1.4873675, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 685" - } -}, -{ - "type": "node", - "id": 260285403, - "lat": 53.4170694, - "lon": -1.4911265, - "tags": { - "amenity": "post_box", - "ref": "S5 205" - } -}, -{ - "type": "node", - "id": 260285404, - "lat": 53.4140474, - "lon": -1.4894593, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S5 1161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260293504, - "lat": 51.8444835, - "lon": -0.5254195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260294206, - "lat": 51.8108179, - "lon": -0.3541610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL5 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260294352, - "lat": 51.8178887, - "lon": -0.3515188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260294460, - "lat": 51.8285775, - "lon": -0.3515456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AL5 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260311030, - "lat": 51.8267852, - "lon": -0.3399363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 226D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 260311099, - "lat": 51.8369273, - "lon": -0.3424327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AL5 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260311286, - "lat": 51.7973716, - "lon": -0.3456408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AL5 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260312442, - "lat": 51.8283140, - "lon": -0.4045772, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL5 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260383415, - "lat": 52.1457189, - "lon": 0.1313832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB22 336", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260383417, - "lat": 52.1496323, - "lon": 0.1410672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB22 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260383866, - "lat": 52.1251601, - "lon": 0.0990796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260387010, - "lat": 54.2561096, - "lon": -0.4749641, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260441465, - "lat": 52.4526365, - "lon": -1.7838172, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260445442, - "lat": 52.4540912, - "lon": -1.7917473, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B26", - "ref": "B26 784", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260465005, - "lat": 54.7640284, - "lon": -1.5944480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260477918, - "lat": 52.4989166, - "lon": -1.9006714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B19 1268D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 260481460, - "lat": 52.4973923, - "lon": -1.8963546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B19", - "ref": "B19 391" - } -}, -{ - "type": "node", - "id": 260488104, - "lat": 52.3942814, - "lon": -1.5044408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV3", - "ref": "CV3 332", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260491931, - "lat": 51.5250066, - "lon": -3.5097899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF35 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 260493097, - "lat": 52.4955731, - "lon": -1.9013038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B19", - "ref": "B19 1250" - } -}, -{ - "type": "node", - "id": 260494343, - "lat": 51.8279215, - "lon": -0.4404216, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 260494711, - "lat": 51.8502212, - "lon": -0.5344158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU6 64", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260498237, - "lat": 52.5261282, - "lon": -1.3604313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 38D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260556974, - "lat": 52.6206117, - "lon": -1.1269416, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.8b", - "ref": "LE1 77" - } -}, -{ - "type": "node", - "id": 260582877, - "lat": 52.4988857, - "lon": -1.8323975, - "tags": { - "amenity": "post_box", - "ref": "B8 358", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260588067, - "lat": 52.4900340, - "lon": -1.8388365, - "tags": { - "amenity": "post_box", - "ref": "B8 281", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260590095, - "lat": 52.4903572, - "lon": -1.8252841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B8 473", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260641423, - "lat": 51.4095368, - "lon": 0.1770478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260647015, - "lat": 51.2641953, - "lon": -1.0753929, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 214" - } -}, -{ - "type": "node", - "id": 260656136, - "lat": 51.3898824, - "lon": 0.1993821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR8 151", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260658808, - "lat": 51.4041115, - "lon": 0.2003819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR8 153", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260660426, - "lat": 51.9029030, - "lon": -2.0910318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GL51 66D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 260662228, - "lat": 51.4847032, - "lon": -0.2552177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W4 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 260670318, - "lat": 53.6717655, - "lon": -1.5312724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 260757828, - "lat": 55.7954575, - "lon": -4.3979738, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 260758066, - "lat": 50.7290603, - "lon": -3.5302831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "post_box:type": "wall", - "ref": "EX4 244", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 260839387, - "lat": 51.4649094, - "lon": -0.0440986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260842775, - "lat": 51.4685114, - "lon": -0.0434405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE14 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260877650, - "lat": 52.4567447, - "lon": -1.4051832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 260999963, - "lat": 51.4779357, - "lon": -0.1450574, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-28", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "SW8 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261055457, - "lat": 52.5065391, - "lon": -1.8955543, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B6 199", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 261062567, - "lat": 52.5079068, - "lon": -1.9029235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B19", - "ref": "B19 22" - } -}, -{ - "type": "node", - "id": 261320008, - "lat": 51.4716031, - "lon": -0.1167726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW9" - } -}, -{ - "type": "node", - "id": 261320021, - "lat": 51.4708773, - "lon": -0.1187869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW9" - } -}, -{ - "type": "node", - "id": 261348549, - "lat": 51.4775026, - "lon": -0.1259423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 261574620, - "lat": 55.7772513, - "lon": -4.3518615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "405026514894487", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-06-24" - } -}, -{ - "type": "node", - "id": 261626272, - "lat": 51.3590603, - "lon": -0.2124601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 176D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 261626360, - "lat": 51.2898341, - "lon": 0.3030774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261631888, - "lat": 51.2926882, - "lon": 0.3027854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "colour": "red", - "ref": "TN15 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261632362, - "lat": 51.2927200, - "lon": 0.3068990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "colour": "red", - "ref": "TN15 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261636208, - "lat": 51.2944022, - "lon": 0.3042746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN15 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261636812, - "lat": 50.7124108, - "lon": -3.5180065, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX2 386D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261638496, - "lat": 52.4843970, - "lon": -1.7671931, - "tags": { - "amenity": "post_box", - "ref": "B33 968", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261641872, - "lat": 52.4738107, - "lon": -1.7631913, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261658710, - "lat": 51.8520041, - "lon": -1.0714197, - "tags": { - "amenity": "post_box", - "postal_code": "OX25", - "ref": "OX25 352" - } -}, -{ - "type": "node", - "id": 261677777, - "lat": 51.4934292, - "lon": -2.1110035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN15 299" - } -}, -{ - "type": "node", - "id": 261677783, - "lat": 51.4870457, - "lon": -2.1244504, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "228777991926117", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-03-21" - } -}, -{ - "type": "node", - "id": 261677784, - "lat": 51.4942477, - "lon": -2.1388662, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261678221, - "lat": 51.4993675, - "lon": -2.2577306, - "tags": { - "amenity": "post_box", - "mapillary": "878649969663134", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 261678438, - "lat": 51.7642563, - "lon": -0.4000702, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 261678488, - "lat": 51.7676523, - "lon": -0.3706591, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 261693126, - "lat": 51.2045710, - "lon": 0.9739649, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 182", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 261694120, - "lat": 51.2180465, - "lon": 0.9574079, - "tags": { - "amenity": "post_box", - "mapillary": "575453646815859", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 167", - "survey:date": "2021-08-15" - } -}, -{ - "type": "node", - "id": 261696423, - "lat": 51.2664058, - "lon": 1.0110916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 22", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 261696830, - "lat": 51.2554543, - "lon": 0.9684195, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 30" - } -}, -{ - "type": "node", - "id": 261697261, - "lat": 51.2633824, - "lon": 0.9282930, - "tags": { - "amenity": "post_box", - "note": "Photo of postbox blurry - the second part of the ref might not be correct.", - "postal_code": "ME13", - "ref": "ME13 60" - } -}, -{ - "type": "node", - "id": 261699995, - "lat": 51.4779233, - "lon": -0.1123151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW9 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 261700003, - "lat": 51.4743561, - "lon": -0.1154361, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 261701223, - "lat": 51.4746846, - "lon": -0.1260615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261717664, - "lat": 53.1414058, - "lon": -4.2766803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261743401, - "lat": 52.0182785, - "lon": 0.2371730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743407, - "lat": 52.0187806, - "lon": 0.2451630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743427, - "lat": 52.0191831, - "lon": 0.2423444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB11 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743467, - "lat": 52.0209322, - "lon": 0.2396862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB10 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743472, - "lat": 52.0234800, - "lon": 0.2529404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743482, - "lat": 52.0208659, - "lon": 0.2442211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB11 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743550, - "lat": 52.0335670, - "lon": 0.1725763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743571, - "lat": 52.0365769, - "lon": 0.1325629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB11 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743597, - "lat": 52.0345727, - "lon": 0.1290866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261743603, - "lat": 52.0279279, - "lon": 0.1348604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 261756255, - "lat": 52.5611910, - "lon": -2.1451617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WV4 405D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 261756271, - "lat": 52.5644689, - "lon": -2.1406435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WV4 273D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 261757166, - "lat": 53.6748116, - "lon": -1.5397437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 211" - } -}, -{ - "type": "node", - "id": 261933841, - "lat": 53.8293432, - "lon": -1.6288338, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS18 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262071082, - "lat": 51.3183022, - "lon": -1.1675483, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG26", - "ref": "RG26 42" - } -}, -{ - "type": "node", - "id": 262071119, - "lat": 51.3399245, - "lon": -1.1631243, - "tags": { - "amenity": "post_box", - "mapillary": "546050456805788", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG26 20", - "survey:date": "2020-10-03" - } -}, -{ - "type": "node", - "id": 262107783, - "lat": 51.1466562, - "lon": 0.8758343, - "tags": { - "amenity": "post_box", - "postal_code": "TN23", - "ref": "TN23 2251", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 262112488, - "lat": 52.4796443, - "lon": -1.7993961, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 678", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262116174, - "lat": 52.4819649, - "lon": -1.8034652, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 792", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262131038, - "lat": 51.4613545, - "lon": -0.1552841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW4 20" - } -}, -{ - "type": "node", - "id": 262131039, - "lat": 51.4618665, - "lon": -0.1455631, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 262131040, - "lat": 51.4680561, - "lon": -0.1399056, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 262143082, - "lat": 50.8140456, - "lon": -3.4577626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "colour": "red", - "name": "Stockwell Corner", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX5 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262150411, - "lat": 53.6779690, - "lon": -1.5430629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 244" - } -}, -{ - "type": "node", - "id": 262152283, - "lat": 54.7646038, - "lon": -1.5920057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262152284, - "lat": 54.7667286, - "lon": -1.5930957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH1 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262172708, - "lat": 50.4102994, - "lon": -4.2115936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "385675153037486", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 637D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 262174164, - "lat": 50.4134065, - "lon": -4.2203560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL12 624D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262174165, - "lat": 50.4107603, - "lon": -4.2229958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "wall type in rendered pillar", - "ref": "PL12 640D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-14" - } -}, -{ - "type": "node", - "id": 262175655, - "lat": 51.3464205, - "lon": 0.2560467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "fixme": "Check Royal Cypher", - "ref": "TN15 136", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 262180134, - "lat": 51.3807680, - "lon": 0.1790861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR8 218" - } -}, -{ - "type": "node", - "id": 262185473, - "lat": 51.4021092, - "lon": 0.1501627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "mapillary": "179369690740228", - "post_box:type": "pillar", - "ref": "BR8 143", - "royal_cypher": "EIIR", - "survey:date": "2020-05-12" - } -}, -{ - "type": "node", - "id": 262205869, - "lat": 53.1697721, - "lon": -2.2344327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262205870, - "lat": 53.1677185, - "lon": -2.2316817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "ref": "CW12 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262205871, - "lat": 53.1676888, - "lon": -2.2316284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "note": "Franked Mail Only", - "ref": "CW12 40", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 262206394, - "lat": 53.1676461, - "lon": -2.2483466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW12 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262206399, - "lat": 53.1690300, - "lon": -2.2407284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "ref": "CW12 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262311201, - "lat": 51.5361814, - "lon": -0.0281728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262311229, - "lat": 51.5283867, - "lon": -0.0187289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262336500, - "lat": 53.2424131, - "lon": -2.3987603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "ref": "WA16 56" - } -}, -{ - "type": "node", - "id": 262353292, - "lat": 51.7421931, - "lon": -1.3108888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "postal_code": "OX2", - "ref": "OX2 290" - } -}, -{ - "type": "node", - "id": 262362524, - "lat": 55.9537595, - "lon": -3.2040584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH2 141", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 262368666, - "lat": 50.7810789, - "lon": -1.7360184, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 37" - } -}, -{ - "type": "node", - "id": 262368667, - "lat": 50.7771258, - "lon": -1.7417756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 28" - } -}, -{ - "type": "node", - "id": 262374839, - "lat": 51.5111523, - "lon": -0.0123755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262408523, - "lat": 51.4281610, - "lon": 0.2084779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA2 30" - } -}, -{ - "type": "node", - "id": 262416655, - "lat": 53.3690016, - "lon": -3.0214476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George VI Type B post box CH42 110 by Lion Foundry with pouch box at the entrance to Egerton Park on Bebington Road, Rock Ferry.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH42 110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 262419384, - "lat": 53.3649659, - "lon": -3.0269236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "QEII type B postbox CH63 223 by Carron Company at the corner of Princes Boulevard and Borough Road, Higher Bebington", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Princes Boulevard, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 262420120, - "lat": 51.3136187, - "lon": -1.1539982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG26 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262420213, - "lat": 51.2883350, - "lon": -1.1868140, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "376668320825675", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "RG26", - "ref": "RG26 40", - "survey:date": "2021-10-16" - } -}, -{ - "type": "node", - "id": 262420975, - "lat": 53.3590859, - "lon": -3.0260739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "GR type B post box CH63 479 by Carron Company at Linkside, Higher Bebington", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 479", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Linkside, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 262421116, - "lat": 54.7793499, - "lon": -1.5675725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262421277, - "lat": 53.3553369, - "lon": -3.0245258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "description": "EIIR type A post box CH63 174 by Carron Company outside the former Higher Bebington post office on Teehey Lane.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Higher Bebington Post Office.jpg" - } -}, -{ - "type": "node", - "id": 262422922, - "lat": 51.3309424, - "lon": -1.2318434, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "RG20", - "ref": "RG20 227" - } -}, -{ - "type": "node", - "id": 262422933, - "lat": 51.3442064, - "lon": -1.2135083, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262424851, - "lat": 52.4331156, - "lon": -1.4804426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV6 168D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262450554, - "lat": 52.0898181, - "lon": -0.3228425, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 262475428, - "lat": 52.2039935, - "lon": -3.0323299, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "HR5", - "ref": "HR5 452" - } -}, -{ - "type": "node", - "id": 262475434, - "lat": 52.2045927, - "lon": -3.0393791, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HR5", - "ref": "HR5 453" - } -}, -{ - "type": "node", - "id": 262476685, - "lat": 52.1890691, - "lon": -3.1236162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "HR5", - "ref": "HR5 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-03" - } -}, -{ - "type": "node", - "id": 262485117, - "lat": 52.3448991, - "lon": -3.0502674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LD7", - "ref": "LD7 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262485484, - "lat": 52.3206223, - "lon": -3.0578957, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LD7", - "ref": "LD7 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262488733, - "lat": 52.2544596, - "lon": -3.0802466, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LD8", - "ref": "LD8 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262495515, - "lat": 53.9868409, - "lon": -1.1019052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:15", - "manufacturer": "Carron Co. Ltd", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262541813, - "lat": 54.7810703, - "lon": -1.5564475, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-05", - "check_date:collection_times": "2012-11-11", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH1 256", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 262541869, - "lat": 54.7818331, - "lon": -1.5530248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262546125, - "lat": 51.4999125, - "lon": -2.6185517, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS9 572D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262550519, - "lat": 51.5042068, - "lon": -2.6211189, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 493D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 262550520, - "lat": 51.5088404, - "lon": -2.6224908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "pillar", - "ref": "BS10 498", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 262560305, - "lat": 51.5645190, - "lon": -0.3601607, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 262560733, - "lat": 52.6008893, - "lon": -1.7951468, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1414" - } -}, -{ - "type": "node", - "id": 262566148, - "lat": 51.5698925, - "lon": -0.3599656, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 262572421, - "lat": 53.3667286, - "lon": -1.4715466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "ref": "S2 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262572738, - "lat": 53.3816740, - "lon": -1.4642286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "comment": "(franked only)", - "post_box:apertures": "2", - "post_box:type": "meter", - "ref": "S1 1623P" - } -}, -{ - "type": "node", - "id": 262572783, - "lat": 53.3776214, - "lon": -1.4673011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S1 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262573092, - "lat": 53.4213329, - "lon": -1.5095933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:15", - "post_box:type": "pillar", - "ref": "S6 983" - } -}, -{ - "type": "node", - "id": 262575700, - "lat": 53.4329258, - "lon": -1.5456624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 713", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262576032, - "lat": 53.4314341, - "lon": -1.5325699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S35 678D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262644537, - "lat": 53.9854577, - "lon": -1.0996978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 564D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262644539, - "lat": 53.9811956, - "lon": -1.1050249, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262644541, - "lat": 53.9757683, - "lon": -1.1037869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO30 411", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262644542, - "lat": 53.9783873, - "lon": -1.1039199, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO30 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262644544, - "lat": 53.9794785, - "lon": -1.1071676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO30 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262644545, - "lat": 53.9835269, - "lon": -1.1177184, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262644548, - "lat": 53.9667625, - "lon": -1.0923220, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO30 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 262651567, - "lat": 53.9916557, - "lon": -1.1036947, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-25", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262666636, - "lat": 55.1000216, - "lon": -1.5685520, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 3JE", - "ref": "NE23 251" - } -}, -{ - "type": "node", - "id": 262668112, - "lat": 55.0968469, - "lon": -1.5695976, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "NE23 2UA", - "ref": "NE23 685" - } -}, -{ - "type": "node", - "id": 262668759, - "lat": 55.0842557, - "lon": -1.5703244, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "NE23 2AE", - "ref": "NE23 363" - } -}, -{ - "type": "node", - "id": 262679336, - "lat": 55.0935538, - "lon": -1.5692109, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "NE23 2SA", - "ref": "NE23 673" - } -}, -{ - "type": "node", - "id": 262680680, - "lat": 51.9013400, - "lon": -2.0806853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262686090, - "lat": 55.9663837, - "lon": -3.2142063, - "tags": { - "amenity": "post_box", - "ref": "EH3 173" - } -}, -{ - "type": "node", - "id": 262686095, - "lat": 55.9683890, - "lon": -3.2076049, - "tags": { - "amenity": "post_box", - "ref": "EH3 271" - } -}, -{ - "type": "node", - "id": 262686096, - "lat": 55.9700560, - "lon": -3.2078121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262688692, - "lat": 55.8082798, - "lon": -4.3994949, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 262690782, - "lat": 51.8953820, - "lon": -2.0827737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "note": "No ref on box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "priority": "yes", - "ref": "GL50 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262701726, - "lat": 55.9645546, - "lon": -3.2384622, - "tags": { - "amenity": "post_box", - "ref": "EH4 541" - } -}, -{ - "type": "node", - "id": 262708095, - "lat": 51.7610610, - "lon": -0.4832819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-13" - } -}, -{ - "type": "node", - "id": 262708096, - "lat": 51.7617897, - "lon": -0.4879453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-13" - } -}, -{ - "type": "node", - "id": 262711552, - "lat": 52.3649941, - "lon": 0.2456845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262711567, - "lat": 52.3627962, - "lon": 0.2484480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262711588, - "lat": 52.3075259, - "lon": 0.2544011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262712531, - "lat": 51.4975182, - "lon": -0.2818036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262712532, - "lat": 51.5014676, - "lon": -0.2818410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262712587, - "lat": 51.4903559, - "lon": -0.3157571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "TW8 204", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 262718698, - "lat": 51.4721273, - "lon": -0.2106205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262718708, - "lat": 51.4699636, - "lon": -0.2102477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 56" - } -}, -{ - "type": "node", - "id": 262724049, - "lat": 53.4188242, - "lon": -1.5108944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262729196, - "lat": 52.3398502, - "lon": -1.5717396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262733365, - "lat": 52.4919215, - "lon": -1.3602865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 23" - } -}, -{ - "type": "node", - "id": 262733373, - "lat": 52.4559263, - "lon": -1.4208365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262822279, - "lat": 51.2878359, - "lon": -0.2166248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262822301, - "lat": 51.2841759, - "lon": -0.2197225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "This had previously been mapped at the corner of Warren Lodge Drive, but is (now, at least) actually at the corner of Vicarage Close.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT20 131D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262825022, - "lat": 51.3172641, - "lon": -0.2011401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262825115, - "lat": 51.3188316, - "lon": -0.2181145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 223", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 262842139, - "lat": 51.6850707, - "lon": -1.1433213, - "tags": { - "amenity": "post_box", - "ref": "OX44 498", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 262862549, - "lat": 54.9860507, - "lon": -1.6479904, - "tags": { - "amenity": "post_box", - "ref": "NE4 93" - } -}, -{ - "type": "node", - "id": 262884130, - "lat": 51.6647810, - "lon": -1.1204678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX10 511D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 262887699, - "lat": 51.6414532, - "lon": -1.1378431, - "tags": { - "amenity": "post_box", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 262892912, - "lat": 51.5351044, - "lon": -2.3929815, - "tags": { - "amenity": "post_box", - "mapillary": "861869858044031", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 435", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 262892937, - "lat": 52.5152513, - "lon": -1.9030539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 48" - } -}, -{ - "type": "node", - "id": 262892945, - "lat": 52.5107237, - "lon": -1.9070205, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B20", - "ref": "B20 102" - } -}, -{ - "type": "node", - "id": 262897665, - "lat": 51.4799961, - "lon": -0.2599634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262897789, - "lat": 51.5419325, - "lon": -2.3933674, - "tags": { - "amenity": "post_box", - "mapillary": "523589345434608", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 694", - "survey:date": "2019-06-26" - } -}, -{ - "type": "node", - "id": 262898186, - "lat": 51.5996618, - "lon": -1.1251303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "OX10 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 262899014, - "lat": 51.5952876, - "lon": -2.3983100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-10", - "mapillary": "801013331923618", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL12 381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-21" - } -}, -{ - "type": "node", - "id": 262903530, - "lat": 51.4784215, - "lon": 0.0933131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262974331, - "lat": 53.9453203, - "lon": -1.0418416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO10 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262974347, - "lat": 53.9448801, - "lon": -1.0448331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO10 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262974402, - "lat": 53.9430366, - "lon": -1.0506931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO10 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262976534, - "lat": 53.9465758, - "lon": -1.0582982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO10 584", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262976590, - "lat": 53.9495050, - "lon": -1.0489064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO10 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262976591, - "lat": 53.9483421, - "lon": -1.0468142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO10 581", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 262978226, - "lat": 53.9524144, - "lon": -1.0591828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO10 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 262990315, - "lat": 53.6973332, - "lon": -1.6525512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263006190, - "lat": 53.8996673, - "lon": -1.7026321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 565" - } -}, -{ - "type": "node", - "id": 263008848, - "lat": 53.8372118, - "lon": -1.6250028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 896", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 263016352, - "lat": 55.9566631, - "lon": -3.1959622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 131", - "royal_cypher": "VR", - "survey:date": "2023-06-10", - "wikimedia_commons": "File:Edinburgh, 20 Abercromby Place.jpg" - } -}, -{ - "type": "node", - "id": 263016357, - "lat": 55.9597916, - "lon": -3.2004518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "mapillary": "514918383222012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2020-02-16" - } -}, -{ - "type": "node", - "id": 263017296, - "lat": 51.5599859, - "lon": -0.0794013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 5" - } -}, -{ - "type": "node", - "id": 263044261, - "lat": 51.2745812, - "lon": 0.5204923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Previously surveyed as ME14 45 (RM data suggests this is correct), but faceplate now (7 Aug 2019) says ME14 81D - assume this is an error, as we already have this on Union Street. See photo on Mapillary.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263047510, - "lat": 51.1907437, - "lon": 0.2835876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "TN9 41" - } -}, -{ - "type": "node", - "id": 263060294, - "lat": 51.5156261, - "lon": -0.0316072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 263148111, - "lat": 51.2771985, - "lon": -0.6096985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "mapillary": "671384034366479", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU3 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 263157264, - "lat": 51.2587898, - "lon": -0.6225959, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-09", - "old_ref": "GU3 275", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU3", - "ref": "GU3 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 263216225, - "lat": 51.7836311, - "lon": -0.6433173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 263220050, - "lat": 50.9335014, - "lon": -1.4010032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO17", - "ref": "SO17 284D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 263220051, - "lat": 50.9311152, - "lon": -1.4002098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO17", - "ref": "SO17 196D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 263225352, - "lat": 50.9220007, - "lon": -1.3833492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO17", - "ref": "SO17 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 263254578, - "lat": 51.2396084, - "lon": -0.5950608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GU2", - "ref": "GU2 263", - "royal_cypher": "EIIR", - "source": "photo" - } -}, -{ - "type": "node", - "id": 263257204, - "lat": 51.2512718, - "lon": -0.6193489, - "tags": { - "amenity": "post_box", - "postal_code": "GU3", - "ref": "GU3 82" - } -}, -{ - "type": "node", - "id": 263258361, - "lat": 51.2504752, - "lon": -0.6277133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU3 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 263259241, - "lat": 51.7816549, - "lon": -0.6402953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 263265425, - "lat": 52.5939047, - "lon": -0.2072545, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 263292493, - "lat": 53.9872985, - "lon": -1.1047087, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 565", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263292562, - "lat": 53.9841442, - "lon": -1.1031295, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263309458, - "lat": 52.5964592, - "lon": -0.2052446, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 263312269, - "lat": 53.6517766, - "lon": -1.5170077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 145", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 263394062, - "lat": 51.6839456, - "lon": -3.9246557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA6 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263399202, - "lat": 51.6831229, - "lon": -3.9408855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SA6 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263458301, - "lat": 52.6983134, - "lon": -2.7669423, - "tags": { - "amenity": "post_box", - "postal_code": "SY3", - "ref": "SY3 28" - } -}, -{ - "type": "node", - "id": 263544458, - "lat": 51.4138268, - "lon": 0.1845226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 263692815, - "lat": 51.7051249, - "lon": -0.0385983, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 263692816, - "lat": 51.7054061, - "lon": -0.0347913, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 263695283, - "lat": 55.7955050, - "lon": -4.4050804, - "tags": { - "amenity": "post_box", - "postal_code": "G78 1LW", - "ref": "G78 829" - } -}, -{ - "type": "node", - "id": 263699822, - "lat": 51.7029346, - "lon": -0.0266774, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN8 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 263699823, - "lat": 51.7079174, - "lon": -0.0371651, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 263700152, - "lat": 51.7064165, - "lon": -0.0296964, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 263710494, - "lat": 53.9797436, - "lon": -1.1135307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:ref": "ref definitely ends in a D", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO30 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-04" - } -}, -{ - "type": "node", - "id": 263712767, - "lat": 53.9875162, - "lon": -1.1176712, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263712989, - "lat": 53.6436191, - "lon": -1.5313933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263713034, - "lat": 53.6417621, - "lon": -1.5285741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF4 142" - } -}, -{ - "type": "node", - "id": 263775954, - "lat": 51.4878878, - "lon": -3.2777710, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 263797637, - "lat": 53.6997445, - "lon": -1.6535215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF13 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263798615, - "lat": 51.1225500, - "lon": -0.0727745, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RH10", - "ref": "RH10 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263822851, - "lat": 52.7434800, - "lon": -2.7371316, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 804", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263822853, - "lat": 52.7434910, - "lon": -2.7370794, - "tags": { - "amenity": "post_box", - "note": "Franked Mail Only", - "post_box:type": "meter", - "postal_code": "SY1", - "ref": "SY1 806" - } -}, -{ - "type": "node", - "id": 263873959, - "lat": 51.5192666, - "lon": -0.8305396, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263881147, - "lat": 51.7313938, - "lon": -1.2146247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "OX4", - "ref": "OX4 798", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 263881157, - "lat": 51.7306465, - "lon": -1.2100926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 601", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 263887199, - "lat": 51.2777269, - "lon": -0.5674799, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_checked": "2020-02-13", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU4 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263894437, - "lat": 53.6827605, - "lon": -1.6334875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 75" - } -}, -{ - "type": "node", - "id": 263895264, - "lat": 53.8310790, - "lon": -1.5940722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 615", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 263901527, - "lat": 51.7276875, - "lon": -1.2098849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "OX4", - "ref": "OX4 732", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 263905451, - "lat": 53.8307379, - "lon": -1.5770378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 837", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 263905578, - "lat": 53.8312631, - "lon": -1.5822525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 263923977, - "lat": 53.8297621, - "lon": -1.5858083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 263950773, - "lat": 52.6984390, - "lon": -2.7312120, - "tags": { - "amenity": "post_box", - "postal_code": "SY2", - "ref": "SY2 532" - } -}, -{ - "type": "node", - "id": 263980665, - "lat": 51.7261515, - "lon": -1.2178262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 632", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 263980683, - "lat": 51.7318194, - "lon": -1.2110367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "created_by": "JOSM", - "ref": "OX4 392", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 263988054, - "lat": 52.7416982, - "lon": -2.7426187, - "tags": { - "amenity": "post_box", - "postal_code": "SY1", - "ref": "SY1 24" - } -}, -{ - "type": "node", - "id": 263988055, - "lat": 52.7370649, - "lon": -2.7389543, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY1 310" - } -}, -{ - "type": "node", - "id": 263988056, - "lat": 52.7330952, - "lon": -2.7374406, - "tags": { - "amenity": "post_box", - "note": "Franked Mail Only", - "postal_code": "SY1", - "ref": "SY1 105" - } -}, -{ - "type": "node", - "id": 263988057, - "lat": 52.7331277, - "lon": -2.7375211, - "tags": { - "amenity": "post_box", - "postal_code": "SY1", - "ref": "SY1 588" - } -}, -{ - "type": "node", - "id": 263988058, - "lat": 52.7386986, - "lon": -2.7310576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 430" - } -}, -{ - "type": "node", - "id": 263988059, - "lat": 52.7352796, - "lon": -2.7456081, - "tags": { - "amenity": "post_box", - "postal_code": "SY1", - "ref": "SY1 609" - } -}, -{ - "type": "node", - "id": 263988904, - "lat": 52.7289945, - "lon": -2.7497859, - "tags": { - "amenity": "post_box", - "postal_code": "SY1", - "ref": "SY1 553" - } -}, -{ - "type": "node", - "id": 263988970, - "lat": 52.7264910, - "lon": -2.7386637, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY1 583" - } -}, -{ - "type": "node", - "id": 264028135, - "lat": 55.7755336, - "lon": -4.2139632, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 264098307, - "lat": 53.9521965, - "lon": -1.0701571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO10 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 264099493, - "lat": 53.9507972, - "lon": -1.0665529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO10 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264106314, - "lat": 53.9451497, - "lon": -1.0775410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-01-15", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "YO10 2016", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264106370, - "lat": 53.9397391, - "lon": -1.0742068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO10 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 264106403, - "lat": 53.9410558, - "lon": -1.0698621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO10 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-07" - } -}, -{ - "type": "node", - "id": 264109887, - "lat": 53.9509801, - "lon": -1.0758294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO10 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264127962, - "lat": 51.5633773, - "lon": 0.0406200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264131813, - "lat": 51.5649607, - "lon": 0.0326783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264132963, - "lat": 52.7229580, - "lon": -2.8086174, - "tags": { - "amenity": "post_box", - "ref": "SY3 52" - } -}, -{ - "type": "node", - "id": 264136629, - "lat": 51.5640310, - "lon": 0.0425462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E12 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264141657, - "lat": 52.2814051, - "lon": -1.5309450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264163178, - "lat": 52.5157255, - "lon": -1.9105268, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 110" - } -}, -{ - "type": "node", - "id": 264163255, - "lat": 52.5246123, - "lon": -1.9234535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 796D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikidata": "Q113441061", - "wikimedia_commons": "File:Post box B20 769D - 2022-08-03 - Andy Mabbett - 01.jpg" - } -}, -{ - "type": "node", - "id": 264163256, - "lat": 52.5214939, - "lon": -1.9239863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 358", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 264163971, - "lat": 55.9752697, - "lon": -3.2542170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 426" - } -}, -{ - "type": "node", - "id": 264163988, - "lat": 55.9791698, - "lon": -3.2312965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 408" - } -}, -{ - "type": "node", - "id": 264164381, - "lat": 51.8954102, - "lon": -0.3500809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "LU2 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264164806, - "lat": 51.9821178, - "lon": -0.3945958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SG5 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264164977, - "lat": 52.5164056, - "lon": -1.9191468, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B20", - "ref": "B20 819" - } -}, -{ - "type": "node", - "id": 264164978, - "lat": 52.5169918, - "lon": -1.9253671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264193038, - "lat": 51.2278973, - "lon": -0.5817790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GU2", - "ref": "GU2 72" - } -}, -{ - "type": "node", - "id": 264207083, - "lat": 52.4327114, - "lon": -1.5044256, - "tags": { - "amenity": "post_box", - "postal_code": "CV6" - } -}, -{ - "type": "node", - "id": 264209084, - "lat": 52.4052379, - "lon": -1.5159195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "post_box:type": "pillar", - "ref": "CV1 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264246629, - "lat": 52.0333283, - "lon": -1.1597351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN13 1139" - } -}, -{ - "type": "node", - "id": 264274160, - "lat": 52.4049574, - "lon": -1.4373968, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 264329929, - "lat": 51.2561469, - "lon": -1.0806822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "228681021924723", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "RG21", - "ref": "RG21 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-27" - } -}, -{ - "type": "node", - "id": 264330688, - "lat": 51.1002173, - "lon": -0.2049102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264339978, - "lat": 51.5366459, - "lon": -2.4011085, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 221" - } -}, -{ - "type": "node", - "id": 264364360, - "lat": 51.5382187, - "lon": -2.3982307, - "tags": { - "amenity": "post_box", - "mapillary": "393460072215412", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 199D", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 264378494, - "lat": 51.3241160, - "lon": -0.2578918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KT18 217" - } -}, -{ - "type": "node", - "id": 264378545, - "lat": 51.3280225, - "lon": -0.2641216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 264380421, - "lat": 51.3225965, - "lon": -0.2526538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 264386915, - "lat": 51.4959314, - "lon": -0.3651800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 5" - } -}, -{ - "type": "node", - "id": 264388778, - "lat": 53.6379024, - "lon": -1.5314861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF4 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264389539, - "lat": 54.2028274, - "lon": -2.8086510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 233" - } -}, -{ - "type": "node", - "id": 264389571, - "lat": 54.2226989, - "lon": -2.7974345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264389572, - "lat": 54.2295133, - "lon": -2.7590363, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA7 230", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 264389900, - "lat": 54.1514672, - "lon": -2.7274938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:type": "wall", - "ref": "LA6 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 264389932, - "lat": 54.1502067, - "lon": -2.7115860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:type": "wall", - "ref": "LA6 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 264390127, - "lat": 54.1576771, - "lon": -2.7203497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA6 135", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 264390295, - "lat": 54.2202597, - "lon": -2.6744593, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 148", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264403066, - "lat": 54.7562887, - "lon": -1.5883769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 220" - } -}, -{ - "type": "node", - "id": 264466287, - "lat": 53.5920965, - "lon": -2.5796587, - "tags": { - "amenity": "post_box", - "ref": "BL6 25" - } -}, -{ - "type": "node", - "id": 264534149, - "lat": 51.0987084, - "lon": -0.2141089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Jersey Road", - "old_ref": "RH11 29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH11 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264553643, - "lat": 51.5799559, - "lon": -4.1822668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA3 671", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264559665, - "lat": 52.3355063, - "lon": 0.5192274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IP28 2178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264565013, - "lat": 51.5696183, - "lon": -4.1764691, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 264565060, - "lat": 51.5789165, - "lon": -2.4930578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "mapillary": "703207564363767", - "note": "reference number no longer visible on label, but CY written on box in marker pen", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-15" - } -}, -{ - "type": "node", - "id": 264567984, - "lat": 53.6364009, - "lon": -1.5172554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 148" - } -}, -{ - "type": "node", - "id": 264568218, - "lat": 53.6411843, - "lon": -1.5125328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264592875, - "lat": 51.4907263, - "lon": -0.2482072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264592878, - "lat": 51.4889571, - "lon": -0.2541108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264592928, - "lat": 51.4867567, - "lon": -0.2621975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 264592929, - "lat": 51.4837467, - "lon": -0.2740500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264594529, - "lat": 51.4872767, - "lon": -0.2564427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 264658430, - "lat": 52.1670620, - "lon": 0.3806526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB8 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658465, - "lat": 52.1766699, - "lon": 0.3833019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658518, - "lat": 52.1963234, - "lon": 0.4257726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "name": "CB8 9 – Wood Green | Wooditton", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658562, - "lat": 52.1951094, - "lon": 0.3811100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "name": "CB8 9UP – Cross Roads | Dullingham", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658573, - "lat": 52.2020392, - "lon": 0.3658713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658598, - "lat": 52.2016538, - "lon": 0.3995159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658626, - "lat": 52.1815615, - "lon": 0.4041719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658638, - "lat": 52.1943838, - "lon": 0.3935641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658789, - "lat": 52.1547315, - "lon": 0.4001383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658871, - "lat": 52.1445241, - "lon": 0.3758338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 537", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264658873, - "lat": 52.1528681, - "lon": 0.3622904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264713443, - "lat": 51.4040803, - "lon": -0.2962130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 89D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 264794206, - "lat": 51.4920051, - "lon": -0.1024258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE11", - "ref": "SE11 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264803316, - "lat": 51.4864871, - "lon": -0.1114890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264835734, - "lat": 51.5014434, - "lon": -0.1106360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 60;SE1 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 264890145, - "lat": 52.8192546, - "lon": -2.1320534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST16 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264946653, - "lat": 51.4808391, - "lon": -0.3520865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 264972375, - "lat": 51.5359705, - "lon": -0.7255345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL6 219" - } -}, -{ - "type": "node", - "id": 264993780, - "lat": 53.1656993, - "lon": -2.2374022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "postal_code": "CW12", - "ref": "CW12 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264993783, - "lat": 53.1639532, - "lon": -2.2459225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 264997481, - "lat": 51.4127339, - "lon": 0.1893868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 453D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265085857, - "lat": 53.6712103, - "lon": -2.9485254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "ref": "PR9 132" - } -}, -{ - "type": "node", - "id": 265124963, - "lat": 51.5195576, - "lon": -0.1553083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 4;W1U 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265221544, - "lat": 53.3618147, - "lon": -1.4856190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S7 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265241529, - "lat": 51.4957918, - "lon": -0.1038984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 80;SE1 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265255728, - "lat": 51.5091519, - "lon": -0.2841982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 265255739, - "lat": 51.5097876, - "lon": -0.2864917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 46" - } -}, -{ - "type": "node", - "id": 265362380, - "lat": 55.1856767, - "lon": -1.5098315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "post_box:priority": "yes", - "post_box:type": "pillar", - "postal_code": "NE64 9QD", - "ref": "NE64 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265388198, - "lat": 52.6105548, - "lon": -0.2451948, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 265402606, - "lat": 51.6977559, - "lon": -3.9034298, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 265404575, - "lat": 51.6948520, - "lon": -3.9017276, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 265420950, - "lat": 51.4631944, - "lon": -2.5133761, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265452154, - "lat": 51.4650067, - "lon": -2.5107059, - "tags": { - "amenity": "post_box", - "mapillary": "1188915238204024", - "post_box:type": "pillar", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 265468483, - "lat": 50.9736579, - "lon": -1.3334880, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO50 593D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265489789, - "lat": 51.7249296, - "lon": -1.2332057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 687", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 265489811, - "lat": 51.7286182, - "lon": -1.2253572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 626", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 265489814, - "lat": 51.7241277, - "lon": -1.2279950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 756", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 265493112, - "lat": 51.7450229, - "lon": -1.2403549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "OX4 43", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 265493132, - "lat": 51.7253855, - "lon": -1.2232179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "created_by": "JOSM", - "ref": "OX4 779", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 265517190, - "lat": 50.8012536, - "lon": -2.7787534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT6 56", - "ref:GB:uprn": "10015402286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265547645, - "lat": 55.7946892, - "lon": -4.4140526, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 265582023, - "lat": 51.9610223, - "lon": -1.2387427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX27 559D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265582667, - "lat": 51.1941751, - "lon": -0.7547371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU10 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265589073, - "lat": 53.6444084, - "lon": -1.5081764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WF2 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265589735, - "lat": 53.6463555, - "lon": -1.5004996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265605488, - "lat": 51.5876024, - "lon": -1.4532474, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 265609129, - "lat": 50.9515964, - "lon": -1.1401715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-01-10", - "old_ref": "SO32 152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 265628583, - "lat": 54.9746191, - "lon": -1.6472181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 196" - } -}, -{ - "type": "node", - "id": 265644793, - "lat": 51.7288268, - "lon": -1.2210740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 542", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 265644853, - "lat": 51.7239036, - "lon": -1.2207247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph;local knowledge" - } -}, -{ - "type": "node", - "id": 265644892, - "lat": 51.7193681, - "lon": -1.2175661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX4 720", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 265657332, - "lat": 51.4877633, - "lon": -0.0906921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265662289, - "lat": 51.4842375, - "lon": -0.0853579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265662293, - "lat": 51.4864426, - "lon": -0.0841741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265662307, - "lat": 51.4894115, - "lon": -0.0791098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 14;SE1 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265663329, - "lat": 52.9139796, - "lon": -1.2208831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "NG9", - "ref": "NG9 650D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265667682, - "lat": 51.6974406, - "lon": -0.0320896, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 265667685, - "lat": 51.6997709, - "lon": -0.0335313, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 265719869, - "lat": 51.4682480, - "lon": -0.2238094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 6", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 265757165, - "lat": 51.6959145, - "lon": -0.0344756, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 265783415, - "lat": 51.0854257, - "lon": -0.1331149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265806829, - "lat": 50.9249710, - "lon": -1.3758828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265818638, - "lat": 51.4066446, - "lon": -0.0639806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 265825138, - "lat": 51.6878557, - "lon": -0.0278095, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 265999936, - "lat": 52.1003938, - "lon": -0.5399487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 309" - } -}, -{ - "type": "node", - "id": 266008689, - "lat": 51.2661873, - "lon": -1.0715445, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 379" - } -}, -{ - "type": "node", - "id": 266024363, - "lat": 55.9898249, - "lon": -3.3948504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH30 176", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266026053, - "lat": 52.0424582, - "lon": -0.7040592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK10 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266037338, - "lat": 51.5406290, - "lon": -2.4058943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 250", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266037356, - "lat": 51.5439057, - "lon": -2.4048902, - "tags": { - "amenity": "post_box", - "mapillary": "5836603663046369", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 453", - "survey:date": "2021-04-22" - } -}, -{ - "type": "node", - "id": 266138009, - "lat": 51.4668163, - "lon": -0.1101209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 15" - } -}, -{ - "type": "node", - "id": 266138037, - "lat": 51.4662975, - "lon": -0.1056797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 266162771, - "lat": 51.9958046, - "lon": -2.1337329, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-30", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "GL20 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266199562, - "lat": 54.0390021, - "lon": -2.7867471, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 85", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 266214947, - "lat": 51.4908683, - "lon": -0.2616692, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W4 57D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 266214951, - "lat": 51.4894856, - "lon": -0.2633361, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W4 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 266214953, - "lat": 51.4885166, - "lon": -0.2666974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266214956, - "lat": 51.4888179, - "lon": -0.2698549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266215826, - "lat": 51.1161709, - "lon": -0.2251184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 21:00", - "operator": "Royal Mail", - "ref": "RH11 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266347534, - "lat": 53.8719182, - "lon": -1.5959986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS16 779", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 266362782, - "lat": 56.0331030, - "lon": -3.3635540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 206D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266365682, - "lat": 52.2017402, - "lon": 0.1466459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "Collection time notice missing 2021-08-04", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266377749, - "lat": 51.4936042, - "lon": -0.0853460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266377758, - "lat": 51.4942327, - "lon": -0.0917264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 13;SE1 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266377760, - "lat": 51.4942226, - "lon": -0.0953969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE1 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266378851, - "lat": 51.4604386, - "lon": -0.0677416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266382910, - "lat": 51.4903730, - "lon": -0.0152349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266384403, - "lat": 51.4878593, - "lon": -0.0173617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266385757, - "lat": 51.4872897, - "lon": -0.0137505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266390481, - "lat": 56.0318871, - "lon": -3.3524952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "KY11 127", - "royal_cypher": "scottish_crown", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 266395216, - "lat": 51.5255330, - "lon": -2.3584956, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS37 446D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266397618, - "lat": 51.5340361, - "lon": -2.4218147, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 577" - } -}, -{ - "type": "node", - "id": 266400855, - "lat": 51.5471642, - "lon": -2.4600592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266402341, - "lat": 51.4416406, - "lon": -1.0557971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 266402348, - "lat": 51.4436725, - "lon": -1.0485909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 266415247, - "lat": 51.4994262, - "lon": -0.0133448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "note": "Says parcel on the side, but \"Franked Mail\" over the aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E14 54P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266415276, - "lat": 51.4965327, - "lon": -0.0093268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266482914, - "lat": 56.0335944, - "lon": -3.3706099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 429", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 266482917, - "lat": 56.0304583, - "lon": -3.3685896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "KY11 120", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266512508, - "lat": 51.4772873, - "lon": -0.0659103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 25D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266535861, - "lat": 50.7896363, - "lon": -1.7711959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266537934, - "lat": 52.2475522, - "lon": -0.1557097, - "tags": { - "amenity": "post_box", - "ref": "PE19 160" - } -}, -{ - "type": "node", - "id": 266537946, - "lat": 52.2476050, - "lon": -0.1640017, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE19 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266537962, - "lat": 52.2471308, - "lon": -0.1841356, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE19 112" - } -}, -{ - "type": "node", - "id": 266540562, - "lat": 51.2561466, - "lon": -1.0749966, - "tags": { - "amenity": "post_box", - "note": "there is no visible reference" - } -}, -{ - "type": "node", - "id": 266545969, - "lat": 50.9155091, - "lon": -1.3969333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266576784, - "lat": 53.6360137, - "lon": -1.5034811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 105" - } -}, -{ - "type": "node", - "id": 266576951, - "lat": 53.6496358, - "lon": -1.4924766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266578409, - "lat": 52.5199320, - "lon": -1.9319625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266578841, - "lat": 52.5261056, - "lon": -1.9334104, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 677" - } -}, -{ - "type": "node", - "id": 266578842, - "lat": 52.5261991, - "lon": -1.9294980, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 872", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 266580082, - "lat": 52.5296961, - "lon": -1.9392082, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 371" - } -}, -{ - "type": "node", - "id": 266580087, - "lat": 52.5277274, - "lon": -1.9381888, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 901" - } -}, -{ - "type": "node", - "id": 266580090, - "lat": 52.5258327, - "lon": -1.9407937, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 981" - } -}, -{ - "type": "node", - "id": 266580110, - "lat": 52.5168580, - "lon": -1.9370830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 841" - } -}, -{ - "type": "node", - "id": 266580113, - "lat": 52.5140504, - "lon": -1.9344594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 39" - } -}, -{ - "type": "node", - "id": 266580126, - "lat": 52.5133549, - "lon": -1.9274130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 322" - } -}, -{ - "type": "node", - "id": 266624265, - "lat": 51.3770826, - "lon": -0.2426702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266624540, - "lat": 51.3722548, - "lon": -0.2391725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266627800, - "lat": 55.8125394, - "lon": -4.4047250, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 266627801, - "lat": 55.8032121, - "lon": -4.3981423, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 266637573, - "lat": 53.6406782, - "lon": -1.4935718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 276" - } -}, -{ - "type": "node", - "id": 266637736, - "lat": 53.6435577, - "lon": -1.4927195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 199" - } -}, -{ - "type": "node", - "id": 266638004, - "lat": 53.6501856, - "lon": -1.4811872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 260" - } -}, -{ - "type": "node", - "id": 266641015, - "lat": 51.3800488, - "lon": -0.2335606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 258D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266641021, - "lat": 51.3765282, - "lon": -0.2298749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266652637, - "lat": 50.8815443, - "lon": -2.7902244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 266652651, - "lat": 50.8766276, - "lon": -2.7968153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 266654229, - "lat": 50.8792263, - "lon": -2.7972709, - "tags": { - "amenity": "post_box", - "mapillary": "725029075387668", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 266657242, - "lat": 56.0446405, - "lon": -3.3437509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "mail:franked": "only", - "opening_hours": "Mo-Fr 15:00-18:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KY11 432", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 266657243, - "lat": 56.0421345, - "lon": -3.3576212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate:date": "2023-02-14", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "mail:franked": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KY11 433P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266657249, - "lat": 56.0386041, - "lon": -3.3466488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 129D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 266657252, - "lat": 56.0366561, - "lon": -3.3563662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY11 171", - "royal_cypher": "scottish_crown", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 266657261, - "lat": 56.0445299, - "lon": -3.3440071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 431", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 266660112, - "lat": 50.8784119, - "lon": -2.7935741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 266660304, - "lat": 53.6916775, - "lon": -1.6277732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF10 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266664472, - "lat": 50.5256804, - "lon": -3.5860611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 266666334, - "lat": 51.3854792, - "lon": -0.2382639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266670912, - "lat": 51.4087681, - "lon": -2.2520686, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266670922, - "lat": 51.4090539, - "lon": -2.2644995, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 266671775, - "lat": 54.7549559, - "lon": -1.5429314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 69" - } -}, -{ - "type": "node", - "id": 266678177, - "lat": 51.3755748, - "lon": -0.2230892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266685210, - "lat": 54.9869895, - "lon": -1.6502052, - "tags": { - "amenity": "post_box", - "ref": "NE4 232" - } -}, -{ - "type": "node", - "id": 266685216, - "lat": 54.9841302, - "lon": -1.6504746, - "tags": { - "amenity": "post_box", - "ref": "NE4 290" - } -}, -{ - "type": "node", - "id": 266689458, - "lat": 51.3756515, - "lon": -0.2149625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266690149, - "lat": 51.3710556, - "lon": -0.2139616, - "tags": { - "amenity": "post_box", - "postal_code": "SM3", - "ref": "SM3 245" - } -}, -{ - "type": "node", - "id": 266691197, - "lat": 51.3727822, - "lon": -0.2185328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266697730, - "lat": 53.8313014, - "lon": -1.6291811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS18 780" - } -}, -{ - "type": "node", - "id": 266700342, - "lat": 51.3558898, - "lon": -0.2429093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "KT17", - "ref": "KT17 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266700622, - "lat": 51.3601730, - "lon": -0.2457685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "KT17", - "ref": "KT17 151", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266701550, - "lat": 51.3594849, - "lon": -0.2414103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "postal_code": "KT17", - "ref": "KT17 45" - } -}, -{ - "type": "node", - "id": 266705366, - "lat": 51.7847244, - "lon": -1.2601550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 78", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 266708462, - "lat": 51.7852350, - "lon": -1.2659413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX2 599D", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 266708465, - "lat": 51.7843692, - "lon": -1.2687903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 443D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 266708467, - "lat": 51.7809636, - "lon": -1.2666113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "ref": "OX2 144", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 266708469, - "lat": 51.7770643, - "lon": -1.2649001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX2 108" - } -}, -{ - "type": "node", - "id": 266710094, - "lat": 51.7592344, - "lon": -0.4914704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 266710558, - "lat": 51.4004614, - "lon": -2.2834312, - "tags": { - "amenity": "post_box", - "mapillary": "1330594777352508", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-01-11" - } -}, -{ - "type": "node", - "id": 266710625, - "lat": 51.4146860, - "lon": -2.2685408, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266716542, - "lat": 51.3675529, - "lon": -0.2386150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 279", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266716568, - "lat": 51.3680040, - "lon": -0.2442811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 234D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266716572, - "lat": 51.3750543, - "lon": -0.2439217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 225", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266718526, - "lat": 53.7005727, - "lon": -1.6281066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 5" - } -}, -{ - "type": "node", - "id": 266719566, - "lat": 51.7542075, - "lon": -1.2575540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-04-03", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX1 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 266719667, - "lat": 51.7528498, - "lon": -1.2505571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX1 574", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "photograph, local_knowledge", - "survey:date": "2013-03-13" - } -}, -{ - "type": "node", - "id": 266740645, - "lat": 51.3637275, - "lon": -0.2021213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SM1 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 266742586, - "lat": 51.3777549, - "lon": -0.2000034, - "tags": { - "amenity": "post_box", - "postal_code": "SM1", - "ref": "SM1 28", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266742807, - "lat": 51.3748399, - "lon": -0.1969675, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SM1", - "ref": "SM1 234", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266742983, - "lat": 51.3742766, - "lon": -0.2027255, - "tags": { - "amenity": "post_box", - "postal_code": "SM1", - "ref": "SM1 119", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266743835, - "lat": 51.3661622, - "lon": -0.2056583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SM1", - "ref": "SM1 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo;survey" - } -}, -{ - "type": "node", - "id": 266744760, - "lat": 51.3622117, - "lon": -0.2144760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SM3 177D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266744965, - "lat": 51.3678627, - "lon": -0.2127674, - "tags": { - "amenity": "post_box", - "postal_code": "SM1", - "ref": "SM1 140", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266745320, - "lat": 51.3587994, - "lon": -0.2165566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 68", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266746598, - "lat": 51.3633714, - "lon": -0.2200438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SM3", - "ref": "SM3 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266747031, - "lat": 51.3679183, - "lon": -0.2175290, - "tags": { - "amenity": "post_box", - "postal_code": "SM3", - "ref": "SM3 156" - } -}, -{ - "type": "node", - "id": 266747511, - "lat": 51.3655668, - "lon": -0.2230910, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SM3", - "ref": "SM3 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266747654, - "lat": 51.3640094, - "lon": -0.2283215, - "tags": { - "amenity": "post_box", - "postal_code": "SM3", - "ref": "SM3 164" - } -}, -{ - "type": "node", - "id": 266747822, - "lat": 51.3835974, - "lon": -0.2386220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 160D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266747826, - "lat": 51.3853507, - "lon": -0.2405085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 287D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266748086, - "lat": 51.3698156, - "lon": -0.2226174, - "tags": { - "amenity": "post_box", - "postal_code": "SM3", - "ref": "SM3 155", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266749419, - "lat": 51.3744353, - "lon": -0.2339453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266749802, - "lat": 51.3661748, - "lon": -0.2325573, - "tags": { - "amenity": "post_box", - "postal_code": "SM3", - "ref": "SM3 163", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266812765, - "lat": 53.1415188, - "lon": -2.3984039, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 266819599, - "lat": 51.4969772, - "lon": -0.2141671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "W14 41", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 266819634, - "lat": 51.4960475, - "lon": -0.2191338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "W6 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266819639, - "lat": 51.4945989, - "lon": -0.2161373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "W6 40D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 266819645, - "lat": 51.4947971, - "lon": -0.2217478, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W6 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266819691, - "lat": 51.4991332, - "lon": -0.2160784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W14 27" - } -}, -{ - "type": "node", - "id": 266820505, - "lat": 51.2482208, - "lon": -0.5915466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GU2", - "ref": "GU2 162", - "royal_cypher": "EIIR", - "source": "photo" - } -}, -{ - "type": "node", - "id": 266821703, - "lat": 51.4992503, - "lon": -0.2194231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside and Co. Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "W14 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 266827195, - "lat": 53.6548125, - "lon": -1.4808314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF2 265", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266827546, - "lat": 53.6568681, - "lon": -1.4762762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 237" - } -}, -{ - "type": "node", - "id": 266867966, - "lat": 50.5313069, - "lon": -3.5893371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 266873244, - "lat": 51.3821747, - "lon": -0.2223443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM4 286", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266873245, - "lat": 51.3848081, - "lon": -0.2207969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM4 267", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266873247, - "lat": 51.3850266, - "lon": -0.2121269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 58", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 266877036, - "lat": 51.3702123, - "lon": -0.2351129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 291", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266883699, - "lat": 51.3696746, - "lon": -0.2295600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SM3 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266890502, - "lat": 51.3774157, - "lon": -0.2390752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266891567, - "lat": 51.3555037, - "lon": -2.3811520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 266902496, - "lat": 51.3872816, - "lon": -0.2263114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM4 287D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 266902539, - "lat": 51.3890314, - "lon": -0.2239144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266902554, - "lat": 51.3889192, - "lon": -0.2173038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM4 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 266967530, - "lat": 51.5999796, - "lon": -0.3098108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "ref": "HA7 831", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 266991689, - "lat": 51.2393988, - "lon": -0.3168188, - "tags": { - "amenity": "post_box", - "ref": "RH4 33", - "source": "Photo P142-0265" - } -}, -{ - "type": "node", - "id": 266991704, - "lat": 51.2444270, - "lon": -0.3235722, - "tags": { - "amenity": "post_box", - "ref": "RH4 10", - "source": "Photo P141-0956" - } -}, -{ - "type": "node", - "id": 267007710, - "lat": 55.0789320, - "lon": -1.5806511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 6EX", - "ref": "NE23 443" - } -}, -{ - "type": "node", - "id": 267023799, - "lat": 52.1351597, - "lon": -0.0647320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SG8", - "ref": "SG8 529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267023958, - "lat": 52.1110043, - "lon": -0.1645670, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG19 231" - } -}, -{ - "type": "node", - "id": 267132349, - "lat": 52.2264347, - "lon": 0.4651859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "name": "CB8 9 Broomstick Corner", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132377, - "lat": 52.2134702, - "lon": 0.4936964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132380, - "lat": 52.2259558, - "lon": 0.4840242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB8 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132404, - "lat": 52.2225733, - "lon": 0.4624820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132451, - "lat": 52.1775250, - "lon": 0.4620572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132454, - "lat": 52.1755671, - "lon": 0.4737705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132494, - "lat": 52.2065255, - "lon": 0.4568500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132496, - "lat": 52.2078314, - "lon": 0.4499968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "CB8 9RX – School Road | Saxon Street", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132510, - "lat": 52.2123478, - "lon": 0.4711491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132526, - "lat": 52.2155997, - "lon": 0.4642192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Cheveley Post Office", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267132549, - "lat": 52.2203420, - "lon": 0.4464181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267135913, - "lat": 51.4870760, - "lon": -0.7691344, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 267187197, - "lat": 51.3800450, - "lon": -0.2180590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267188197, - "lat": 51.3809070, - "lon": -0.2108494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267188205, - "lat": 51.3889922, - "lon": -0.2072867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 199", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267192474, - "lat": 53.1481271, - "lon": -2.3849081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW11 270D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 267221724, - "lat": 54.9736029, - "lon": -1.6406752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 103" - } -}, -{ - "type": "node", - "id": 267221915, - "lat": 52.0311749, - "lon": -1.1414076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "NN13 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267222097, - "lat": 52.0278417, - "lon": -1.1390670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 08:00", - "post_box:type": "pillar", - "ref": "NN13 904" - } -}, -{ - "type": "node", - "id": 267222146, - "lat": 52.0254606, - "lon": -1.1395261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "ref": "NN13 1143" - } -}, -{ - "type": "node", - "id": 267230746, - "lat": 51.2682145, - "lon": -1.0873788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 161", - "royal_cypher": "EIIR", - "survey:date": "2022-03-03", - "wikimedia_commons": "File:New station frontage - geograph.org.uk - 3261056.jpg" - } -}, -{ - "type": "node", - "id": 267232802, - "lat": 52.0517433, - "lon": -2.6881866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Old Eign Hill", - "operator": "Royal Mail", - "ref": "HR1 150" - } -}, -{ - "type": "node", - "id": 267255385, - "lat": 51.0721563, - "lon": -0.3090210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 267339153, - "lat": 51.4630538, - "lon": -0.1322257, - "tags": { - "amenity": "post_box", - "ref": "SW4 18" - } -}, -{ - "type": "node", - "id": 267370940, - "lat": 52.4700604, - "lon": -1.7839650, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B26", - "ref": "B26 884", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267379945, - "lat": 53.1355167, - "lon": -3.0153673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267404700, - "lat": 53.0975626, - "lon": -2.9571453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 267404870, - "lat": 53.1050396, - "lon": -2.9242466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267404911, - "lat": 53.1038143, - "lon": -2.9300575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267413369, - "lat": 52.5102639, - "lon": -1.9178573, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 554" - } -}, -{ - "type": "node", - "id": 267413379, - "lat": 52.5128660, - "lon": -1.9211117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B20", - "ref": "B20 182", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 267413391, - "lat": 52.5060004, - "lon": -1.9198861, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 99" - } -}, -{ - "type": "node", - "id": 267415079, - "lat": 51.4574722, - "lon": -0.4783825, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 267419263, - "lat": 52.5112668, - "lon": -1.9153793, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 141", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 267419268, - "lat": 52.5053127, - "lon": -1.9113185, - "tags": { - "amenity": "post_box", - "postal_code": "B19", - "ref": "B19 65" - } -}, -{ - "type": "node", - "id": 267419278, - "lat": 52.5086836, - "lon": -1.9135226, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 1157", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 267421593, - "lat": 52.5075131, - "lon": -1.9070221, - "tags": { - "amenity": "post_box", - "postal_code": "B19", - "ref": "B19 229" - } -}, -{ - "type": "node", - "id": 267421602, - "lat": 52.5082847, - "lon": -1.9103984, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B20", - "ref": "B20 13" - } -}, -{ - "type": "node", - "id": 267424935, - "lat": 52.5039692, - "lon": -1.8767246, - "tags": { - "amenity": "post_box", - "postal_code": "B6", - "ref": "B6 641" - } -}, -{ - "type": "node", - "id": 267431271, - "lat": 51.7509981, - "lon": -1.2084534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "postal_code": "OX3", - "ref": "OX3 733", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 267469786, - "lat": 51.4910699, - "lon": -0.2539185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267471249, - "lat": 51.3367530, - "lon": -0.2602531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 267519032, - "lat": 51.4486140, - "lon": -0.4377842, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 267531119, - "lat": 51.9155048, - "lon": -1.0240926, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX27 331" - } -}, -{ - "type": "node", - "id": 267531447, - "lat": 51.9163181, - "lon": -1.0020511, - "tags": { - "amenity": "post_box", - "ref": "MK18 64" - } -}, -{ - "type": "node", - "id": 267534106, - "lat": 51.9107394, - "lon": -1.0108718, - "tags": { - "amenity": "post_box", - "ref": "MK18 536" - } -}, -{ - "type": "node", - "id": 267535016, - "lat": 51.9111616, - "lon": -1.0038729, - "tags": { - "amenity": "post_box", - "ref": "MK18 537" - } -}, -{ - "type": "node", - "id": 267583295, - "lat": 53.4397504, - "lon": -1.5009540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 842", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267583781, - "lat": 53.2356676, - "lon": -0.5385688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN1 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267587383, - "lat": 53.4608264, - "lon": -1.4926379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S35", - "ref": "S35 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267592598, - "lat": 53.4713099, - "lon": -1.4716146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S35 1550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267635961, - "lat": 51.5550765, - "lon": 0.6556381, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 267640643, - "lat": 51.4690767, - "lon": -0.1302790, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 267640648, - "lat": 51.4705508, - "lon": -0.1270985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW4 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 267652951, - "lat": 51.4685295, - "lon": -0.1269860, - "tags": { - "amenity": "post_box", - "ref": "SW9 25" - } -}, -{ - "type": "node", - "id": 267702622, - "lat": 51.7910938, - "lon": -0.6615923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP23 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267702632, - "lat": 51.7914788, - "lon": -0.6659191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267702640, - "lat": 51.7938771, - "lon": -0.6606826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "HP23 152", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267705100, - "lat": 51.4713034, - "lon": -2.8109575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "ref": "BS20 620D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267705108, - "lat": 51.4715462, - "lon": -2.8105358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 267718107, - "lat": 51.3228136, - "lon": -0.5535712, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU21 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-01-16" - } -}, -{ - "type": "node", - "id": 267718229, - "lat": 53.6850209, - "lon": -1.4463358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF1 234" - } -}, -{ - "type": "node", - "id": 267718499, - "lat": 52.4912348, - "lon": -1.7961969, - "tags": { - "amenity": "post_box", - "ref": "B33 615", - "source": "s" - } -}, -{ - "type": "node", - "id": 267718909, - "lat": 53.6847110, - "lon": -1.4348712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF1 204" - } -}, -{ - "type": "node", - "id": 267718996, - "lat": 53.6751995, - "lon": -1.4638672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF1 149" - } -}, -{ - "type": "node", - "id": 267720862, - "lat": 53.0876045, - "lon": -2.9547614, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 267722089, - "lat": 52.6121379, - "lon": -0.2496649, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 267722298, - "lat": 52.6128045, - "lon": -0.2582024, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 267730334, - "lat": 51.3066087, - "lon": -0.5777436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "GU22 185D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 267731412, - "lat": 51.3068674, - "lon": -0.5835508, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 145D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267735333, - "lat": 51.3065835, - "lon": -0.5902452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267735622, - "lat": 51.3019336, - "lon": -0.5838649, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-16", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU22", - "ref": "GU22 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267740826, - "lat": 51.3021951, - "lon": -0.5593848, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-14", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267741447, - "lat": 52.4876664, - "lon": -1.8060223, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 764D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267741852, - "lat": 52.4895666, - "lon": -1.7868762, - "tags": { - "amenity": "post_box", - "ref": "B33 616", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267741981, - "lat": 51.3062507, - "lon": -0.5550210, - "tags": { - "amenity": "post_box", - "check_date": "2017-07-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU22", - "ref": "GU22 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267742718, - "lat": 51.3029734, - "lon": -0.5513398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "last_check": "2020-02-13", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267753996, - "lat": 51.2966244, - "lon": -0.5635301, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-03", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267757384, - "lat": 51.2810388, - "lon": -0.5578359, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-14", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU4", - "ref": "GU4 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267757719, - "lat": 51.4735306, - "lon": -0.0869608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SE5 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267770844, - "lat": 53.0906371, - "lon": -2.9596639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "geograph:id": "6164647", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL12 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:details": "Geograph" - } -}, -{ - "type": "node", - "id": 267786290, - "lat": 51.7523190, - "lon": -0.4316481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 267790768, - "lat": 51.7447675, - "lon": -1.2069805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "mapillary": "354842799316780", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX3 704", - "source": "photograph;local_knowledge", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 267796251, - "lat": 53.3588654, - "lon": -1.5144494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 553D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267797032, - "lat": 53.3597296, - "lon": -1.5212811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 652", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267797558, - "lat": 53.3634821, - "lon": -1.5226275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 711D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 267820885, - "lat": 51.5405383, - "lon": 0.0007054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E15 39;E15 1039", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267820903, - "lat": 51.5445316, - "lon": 0.0045730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 27D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "Survey 2024-06-08" - } -}, -{ - "type": "node", - "id": 267844577, - "lat": 51.4172010, - "lon": -0.2137741, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW19 136;SW19 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267844584, - "lat": 51.4164669, - "lon": -0.2169820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 68" - } -}, -{ - "type": "node", - "id": 267844594, - "lat": 51.4129332, - "lon": -0.2176577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267844602, - "lat": 51.4157460, - "lon": -0.2057763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267853366, - "lat": 51.4576974, - "lon": -0.4715532, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 267856934, - "lat": 51.4088042, - "lon": -0.2109804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW20 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267856940, - "lat": 51.4112571, - "lon": -0.2057275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 72", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 267856945, - "lat": 51.4105311, - "lon": -0.2014005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267856948, - "lat": 51.4089477, - "lon": -0.2000972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 267856950, - "lat": 51.4056675, - "lon": -0.1985891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267856959, - "lat": 51.4040600, - "lon": -0.1934733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267856976, - "lat": 51.4018000, - "lon": -0.1968541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 194", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 267860268, - "lat": 52.5704876, - "lon": -1.6852241, - "tags": { - "amenity": "post_box", - "postal_code": "B78", - "ref": "B78 1340" - } -}, -{ - "type": "node", - "id": 267877957, - "lat": 52.1308568, - "lon": -0.5274591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 56" - } -}, -{ - "type": "node", - "id": 267880750, - "lat": 51.4017973, - "lon": -0.8653169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG41 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267904470, - "lat": 51.3119651, - "lon": -0.5600027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267926905, - "lat": 51.5882850, - "lon": -0.3106637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 178" - } -}, -{ - "type": "node", - "id": 267926907, - "lat": 51.5903183, - "lon": -0.3086883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 222D" - } -}, -{ - "type": "node", - "id": 267930514, - "lat": 51.3101408, - "lon": -0.5398445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_checked": "2022-02-15", - "lastcheck": "2017-06-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267932308, - "lat": 51.3114517, - "lon": -0.5482274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2018-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 138D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267932765, - "lat": 51.7008949, - "lon": -0.0514667, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 267933161, - "lat": 51.3135597, - "lon": -0.5545903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267933473, - "lat": 51.3159124, - "lon": -0.5486244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2018-04-05", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU22", - "ref": "GU22 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267933627, - "lat": 51.3190262, - "lon": -0.5458904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "lastcheck": "2021-09-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267936238, - "lat": 51.3035609, - "lon": -0.5604568, - "tags": { - "amenity": "post_box", - "check_date": "2018-07-04", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267937990, - "lat": 51.3005297, - "lon": -0.5643287, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267938916, - "lat": 53.8322910, - "lon": -1.6162628, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "check_date:collection_times": "2023-12-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS5 1017", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 267941342, - "lat": 51.7097948, - "lon": -0.0530161, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 267950095, - "lat": 51.7141068, - "lon": -0.0433343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "EN7 23" - } -}, -{ - "type": "node", - "id": 267954934, - "lat": 51.7044508, - "lon": -0.0483443, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 267973278, - "lat": 51.3542773, - "lon": -1.1408186, - "tags": { - "amenity": "post_box", - "mapillary": "1397459317256557", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG26", - "ref": "RG26 13", - "survey:date": "2020-09-27" - } -}, -{ - "type": "node", - "id": 267974187, - "lat": 51.3580373, - "lon": -1.1065408, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "674566093585030", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 185", - "survey:date": "2022-02-12" - } -}, -{ - "type": "node", - "id": 267975984, - "lat": 51.3543519, - "lon": -1.1002377, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "461508052277931", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 265", - "survey:date": "2022-02-12" - } -}, -{ - "type": "node", - "id": 267976893, - "lat": 51.3920038, - "lon": -0.0878672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SE25 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 267983327, - "lat": 51.3211529, - "lon": -0.6117037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267988038, - "lat": 51.3164678, - "lon": -0.5723342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 267988060, - "lat": 51.3137079, - "lon": -0.5741914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU21 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267988065, - "lat": 51.3155061, - "lon": -0.5706923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 267989577, - "lat": 51.3172230, - "lon": -0.5644487, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "last_checked": "2020-02-18", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 267990504, - "lat": 51.3178312, - "lon": -0.5953702, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "last_check": "2019-04-03", - "last_checked": "2021-06-07", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268022505, - "lat": 51.4280712, - "lon": -0.5574969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TW20 343D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268022507, - "lat": 51.4263462, - "lon": -0.5548173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "ref": "TW20 332", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268022508, - "lat": 51.4289225, - "lon": -0.5524020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TW20 303D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 268022510, - "lat": 51.4302473, - "lon": -0.5509958, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TW20 302D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 268022512, - "lat": 51.4316238, - "lon": -0.5520493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW20 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268023727, - "lat": 51.4326747, - "lon": -0.5668742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TW20 344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268023735, - "lat": 51.4346882, - "lon": -0.5730482, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 268027510, - "lat": 51.4303315, - "lon": -0.5732218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TW20 322", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 268027523, - "lat": 51.4273674, - "lon": -0.5727119, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-14", - "collection_times": "Mo-Fr 17:15, Sa 11:15", - "ref": "TW20 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268065604, - "lat": 51.5557227, - "lon": 0.4771575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 268093079, - "lat": 51.4266558, - "lon": -0.4805849, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 268144901, - "lat": 52.5014713, - "lon": -1.9025962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B19 570", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 268147384, - "lat": 51.7591136, - "lon": -0.5050021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 268147471, - "lat": 51.3152133, - "lon": -0.5790209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268150472, - "lat": 51.3080596, - "lon": -0.6074076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268265873, - "lat": 51.0657920, - "lon": -0.3032952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH13 210" - } -}, -{ - "type": "node", - "id": 268278075, - "lat": 51.3201718, - "lon": -0.5587206, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU21 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268323747, - "lat": 51.0614202, - "lon": -0.3020469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "check location!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH13 189" - } -}, -{ - "type": "node", - "id": 268372251, - "lat": 51.5475293, - "lon": -2.4057254, - "tags": { - "amenity": "post_box", - "mapillary": "475794203716297", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 595", - "survey:date": "2021-03-29" - } -}, -{ - "type": "node", - "id": 268373214, - "lat": 51.5462795, - "lon": -2.4157023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 614", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 268390149, - "lat": 50.8007402, - "lon": -1.0770621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "name": "Newcomb Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268396945, - "lat": 51.0744924, - "lon": -0.3368455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 199D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 268396948, - "lat": 51.0674507, - "lon": -0.3413686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "This postbox has moved so I have moved the icon to the correct location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268475998, - "lat": 51.0783180, - "lon": -0.3276292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "converted_bag_box", - "post_box:type": "lamp", - "ref": "RH12 222D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 268476930, - "lat": 51.0732799, - "lon": -0.3246445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH12 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 268487638, - "lat": 52.6843905, - "lon": -1.7994602, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "WS14", - "ref": "WS14 613" - } -}, -{ - "type": "node", - "id": 268505623, - "lat": 50.9057211, - "lon": -1.1942227, - "tags": { - "amenity": "post_box", - "ref": "PO17 55" - } -}, -{ - "type": "node", - "id": 268506290, - "lat": 51.5457955, - "lon": 0.0075495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268508698, - "lat": 51.5458898, - "lon": 0.0152505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268509940, - "lat": 51.5486209, - "lon": 0.0238788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E7 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268512701, - "lat": 51.5536340, - "lon": 0.0345715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268513470, - "lat": 51.5503921, - "lon": 0.0346031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268513866, - "lat": 51.5497146, - "lon": 0.0397772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 25D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268514484, - "lat": 51.5455520, - "lon": 0.0199256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 33D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268518007, - "lat": 51.2583511, - "lon": -1.0713444, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 318" - } -}, -{ - "type": "node", - "id": 268520436, - "lat": 53.9980883, - "lon": -2.7854133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA2 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 268520679, - "lat": 53.9916451, - "lon": -2.6612872, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 268520843, - "lat": 53.9169556, - "lon": -2.5206436, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 268520880, - "lat": 53.9032821, - "lon": -2.5004757, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 268521788, - "lat": 51.4902084, - "lon": -0.2586882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 268521789, - "lat": 51.4886284, - "lon": -0.2593607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 268521982, - "lat": 51.5269065, - "lon": 0.0624208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268522184, - "lat": 51.5263674, - "lon": 0.0675469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268533570, - "lat": 51.8351867, - "lon": -2.2141568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45", - "mapillary": "873020599945605", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL4 109", - "source": "survey", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 268545072, - "lat": 51.5296025, - "lon": 0.0477662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1136439277067971", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268545090, - "lat": 51.5282973, - "lon": 0.0422385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.imgur.com/1HpjhPz.jpg", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268585971, - "lat": 51.5349298, - "lon": 0.0038350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268585978, - "lat": 51.5305783, - "lon": 0.0061305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 46D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268587844, - "lat": 51.5326119, - "lon": 0.0148992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268587851, - "lat": 51.5339638, - "lon": 0.0122860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 5", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268642679, - "lat": 51.5385514, - "lon": 0.0051364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268692593, - "lat": 50.6576338, - "lon": -2.2243680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268692594, - "lat": 50.6483025, - "lon": -2.2059685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 88", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268751081, - "lat": 51.8152704, - "lon": -2.1504746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "GL4 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268751179, - "lat": 51.8114854, - "lon": -2.1561108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL4 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268773498, - "lat": 51.6120424, - "lon": -0.1942132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "N3 38D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 268774227, - "lat": 51.6304999, - "lon": -0.1813600, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-05" - } -}, -{ - "type": "node", - "id": 268774228, - "lat": 51.6161145, - "lon": -0.1875305, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 268811747, - "lat": 52.2478354, - "lon": 0.4421443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268811897, - "lat": 52.2496785, - "lon": 0.5173830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268811923, - "lat": 52.2463369, - "lon": 0.5186352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268822606, - "lat": 52.2262877, - "lon": 0.5203453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268822848, - "lat": 52.2061863, - "lon": 0.5152293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268884029, - "lat": 52.3521047, - "lon": 0.1900643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268886316, - "lat": 52.3531286, - "lon": 0.1682418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268886920, - "lat": 52.3540316, - "lon": 0.1521992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268887981, - "lat": 52.3510152, - "lon": 0.1420002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268894656, - "lat": 51.6003721, - "lon": -1.2398773, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 268894660, - "lat": 51.5971591, - "lon": -1.2551296, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 268898031, - "lat": 53.8687550, - "lon": -1.7104841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268969103, - "lat": 52.1928741, - "lon": 0.5139893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268969105, - "lat": 52.1892116, - "lon": 0.5234129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268969850, - "lat": 52.1581743, - "lon": 0.5066237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268969851, - "lat": 52.1630703, - "lon": 0.5056603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268969870, - "lat": 52.1768518, - "lon": 0.5157482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268969924, - "lat": 52.1519786, - "lon": 0.4357099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268969931, - "lat": 52.1410164, - "lon": 0.4551227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268970559, - "lat": 52.6057671, - "lon": -0.2591649, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "484956105934292", - "post_box:type": "pillar", - "survey:date": "2021-04-30" - } -}, -{ - "type": "node", - "id": 268974760, - "lat": 51.5198125, - "lon": -0.7277785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 268976194, - "lat": 53.4580552, - "lon": -2.2352490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00" - } -}, -{ - "type": "node", - "id": 268980300, - "lat": 53.4433475, - "lon": -2.2415762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 268982622, - "lat": 51.1070622, - "lon": -0.1653689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 268985239, - "lat": 51.4933298, - "lon": -0.3778585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 128" - } -}, -{ - "type": "node", - "id": 268985295, - "lat": 51.4943622, - "lon": -0.3876531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 1" - } -}, -{ - "type": "node", - "id": 268985359, - "lat": 51.4915752, - "lon": -0.3816612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 193" - } -}, -{ - "type": "node", - "id": 268985373, - "lat": 51.4918821, - "lon": -0.3853726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 180" - } -}, -{ - "type": "node", - "id": 268995341, - "lat": 51.5147455, - "lon": -0.0654365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 10;E1 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268995343, - "lat": 51.5135599, - "lon": -0.0816571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3V 309;EC3V 3091", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268997566, - "lat": 51.5164907, - "lon": -0.1029976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "note": "has post office sign on top right hand aperture \"FRANKED MAIL\", left hand \"STAMPED MAIL\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "EC1", - "ref": "EC1A 101;EC1A 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 268997568, - "lat": 51.5179351, - "lon": -0.1104226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1N 102D;EC1N 1021D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box EC1N 102D and EC1N 1021D" - } -}, -{ - "type": "node", - "id": 268997725, - "lat": 51.5185333, - "lon": -0.1209976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1B 212D;WC1B 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269001527, - "lat": 53.6551002, - "lon": -1.4685366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 122" - } -}, -{ - "type": "node", - "id": 269001606, - "lat": 53.6513121, - "lon": -1.4686838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 269001774, - "lat": 53.6504345, - "lon": -1.4586621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF2 185" - } -}, -{ - "type": "node", - "id": 269001963, - "lat": 53.6482565, - "lon": -1.4656148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF2 152" - } -}, -{ - "type": "node", - "id": 269002754, - "lat": 51.3175314, - "lon": -0.5842840, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_check": "2021-06-07", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269004964, - "lat": 51.3574814, - "lon": -0.2013883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM2 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269004966, - "lat": 51.3580418, - "lon": -0.1964287, - "tags": { - "amenity": "post_box", - "ref": "SM2 64" - } -}, -{ - "type": "node", - "id": 269012586, - "lat": 51.9814917, - "lon": -1.3180310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "OX15 637D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269014277, - "lat": 51.3203050, - "lon": -0.5824090, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_checked": "2021-06-07", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269020289, - "lat": 51.3457553, - "lon": -1.0854709, - "tags": { - "amenity": "post_box", - "mapillary": "923311908467820", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 65", - "survey:date": "2021-02-09" - } -}, -{ - "type": "node", - "id": 269024461, - "lat": 51.9786148, - "lon": -1.3215272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "OX15", - "ref": "OX15 120" - } -}, -{ - "type": "node", - "id": 269029084, - "lat": 52.1348483, - "lon": 0.4627316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269029099, - "lat": 52.1306805, - "lon": 0.4494669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269060977, - "lat": 51.3556742, - "lon": -0.1918859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269065055, - "lat": 51.3527934, - "lon": -0.1881942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269069258, - "lat": 51.7664438, - "lon": -1.2592322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 269069559, - "lat": 56.3805407, - "lon": -3.4323825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 101", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 269070085, - "lat": 51.3501177, - "lon": -0.1878409, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SM2 142" - } -}, -{ - "type": "node", - "id": 269070086, - "lat": 51.3486360, - "lon": -0.1858526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 232", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269072110, - "lat": 51.3516232, - "lon": -0.1838407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "post_box:type": "pillar", - "ref": "SM2 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269073885, - "lat": 51.3571069, - "lon": -0.1814438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 84D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269075104, - "lat": 51.3590560, - "lon": -0.1784389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SM2 118", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 269076561, - "lat": 51.3502774, - "lon": -0.1792846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269079326, - "lat": 53.4395398, - "lon": -2.2315382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "M20 506D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269079365, - "lat": 53.4259578, - "lon": -2.2294996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 269130998, - "lat": 51.3461562, - "lon": -0.1827363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 159D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269131006, - "lat": 51.3413449, - "lon": -0.1879204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 173D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269134894, - "lat": 51.3466699, - "lon": -0.1864377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269134895, - "lat": 51.3476090, - "lon": -0.1924241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SM2 184" - } -}, -{ - "type": "node", - "id": 269134913, - "lat": 51.3507678, - "lon": -0.1928000, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-03", - "post_box:type": "pillar", - "ref": "SM2 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 269137153, - "lat": 51.3475236, - "lon": -0.1964713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 113D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 269138165, - "lat": 51.5361378, - "lon": 0.0068263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "763789154786210", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269139629, - "lat": 51.3562699, - "lon": -0.1826908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SM2 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269139638, - "lat": 51.3566509, - "lon": -0.1878993, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-26", - "ref": "SM2 263" - } -}, -{ - "type": "node", - "id": 269139652, - "lat": 51.3555320, - "lon": -0.1874657, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-26", - "ref": "SM2 54" - } -}, -{ - "type": "node", - "id": 269146397, - "lat": 51.5334623, - "lon": 0.0189101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 22", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269146454, - "lat": 51.5369339, - "lon": 0.0157808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269148499, - "lat": 51.5370923, - "lon": 0.0127270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269183979, - "lat": 53.6794929, - "lon": -1.4922398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 26" - } -}, -{ - "type": "node", - "id": 269194841, - "lat": 51.7474020, - "lon": -1.1894439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 11:45", - "post_box:type": "lamp", - "ref": "OX3 444" - } -}, -{ - "type": "node", - "id": 269198208, - "lat": 51.3613043, - "lon": -0.1774665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 86D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269198302, - "lat": 51.3553241, - "lon": -0.1773918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269203204, - "lat": 51.0302153, - "lon": -1.3383630, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 269226919, - "lat": 51.7344389, - "lon": -1.3335355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX2 543", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269226942, - "lat": 51.7129475, - "lon": -1.3359098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX13 1330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph;drive-by survey" - } -}, -{ - "type": "node", - "id": 269236128, - "lat": 51.5547611, - "lon": -0.0053774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "464513931303803", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269236140, - "lat": 51.3545273, - "lon": -0.1711835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SM5 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26640075" - } -}, -{ - "type": "node", - "id": 269236153, - "lat": 51.5509772, - "lon": -0.0039837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269239369, - "lat": 51.5493998, - "lon": -0.0020481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269240705, - "lat": 55.8309937, - "lon": -4.3891883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 269247338, - "lat": 51.6991371, - "lon": -1.3113531, - "tags": { - "amenity": "post_box", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269247408, - "lat": 51.7048261, - "lon": -1.3119669, - "tags": { - "amenity": "post_box", - "source": "yahoo_imagery" - } -}, -{ - "type": "node", - "id": 269253602, - "lat": 51.5453571, - "lon": 0.0007403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269255242, - "lat": 51.7066991, - "lon": -1.3159136, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269256550, - "lat": 53.4800504, - "lon": -2.1534637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 269260813, - "lat": 51.3452466, - "lon": -0.1760110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 22D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269260832, - "lat": 51.3430017, - "lon": -0.1839175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269274836, - "lat": 51.7139514, - "lon": -1.3105575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX1 182", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269275591, - "lat": 51.7383895, - "lon": -0.0223210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "operator": "Royal Mail", - "ref": "EN10 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 269275604, - "lat": 51.7354345, - "lon": -0.0228601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "ref": "EN10 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 269278224, - "lat": 51.7156217, - "lon": -1.2992381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "post_box:type": "wall", - "ref": "OX1 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-06-08" - } -}, -{ - "type": "node", - "id": 269278232, - "lat": 51.7158444, - "lon": -1.2916765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "ref": "OX1 465", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269278241, - "lat": 51.7114666, - "lon": -1.2883510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ref": "OX1 166", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269278258, - "lat": 51.7072628, - "lon": -1.2769389, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX13 1157", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269278296, - "lat": 51.7115882, - "lon": -1.2264925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "OX4 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269335330, - "lat": 54.7826232, - "lon": -1.5320513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DH1", - "ref": "DH1 315" - } -}, -{ - "type": "node", - "id": 269338599, - "lat": 54.0768574, - "lon": -2.8424113, - "tags": { - "amenity": "post_box", - "ref": "LA4 94" - } -}, -{ - "type": "node", - "id": 269346353, - "lat": 54.7821121, - "lon": -1.5235764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DH1", - "ref": "DH1 343" - } -}, -{ - "type": "node", - "id": 269346366, - "lat": 54.7883982, - "lon": -1.5210746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DH1", - "ref": "DH1 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 269346379, - "lat": 54.7865710, - "lon": -1.5252011, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DH1", - "ref": "DH1 350" - } -}, -{ - "type": "node", - "id": 269346407, - "lat": 54.7860400, - "lon": -1.5297900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "postal_code": "DH1", - "ref": "DH1 11" - } -}, -{ - "type": "node", - "id": 269346536, - "lat": 54.1051964, - "lon": -2.7951309, - "tags": { - "amenity": "post_box", - "ref": "LA5 15" - } -}, -{ - "type": "node", - "id": 269346539, - "lat": 54.1083213, - "lon": -2.8006056, - "tags": { - "amenity": "post_box", - "ref": "LA5 14" - } -}, -{ - "type": "node", - "id": 269346540, - "lat": 54.1028810, - "lon": -2.7908198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA5 7", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 269346606, - "lat": 54.1730301, - "lon": -2.7644060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269346620, - "lat": 54.1991602, - "lon": -2.7258278, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 172D" - } -}, -{ - "type": "node", - "id": 269348036, - "lat": 52.1597452, - "lon": -4.4705915, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 269374558, - "lat": 51.1124544, - "lon": -0.0888907, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "4171654499581461", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH10 30", - "survey:date": "2021-03-13" - } -}, -{ - "type": "node", - "id": 269378757, - "lat": 51.0633299, - "lon": -0.3110376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "old_ref": "RH13 98", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269378816, - "lat": 51.0595082, - "lon": -0.3155497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 269378840, - "lat": 51.0619772, - "lon": -0.3203764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH13 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269378846, - "lat": 51.0621318, - "lon": -0.3168846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 97D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269393219, - "lat": 54.7749591, - "lon": -1.5057748, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/3602042", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "DH6", - "ref": "DH6 154" - } -}, -{ - "type": "node", - "id": 269393427, - "lat": 51.4857210, - "lon": -2.6501559, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 533", - "royal_cypher": "no", - "royal_cypher:note": "Just a crown no initials" - } -}, -{ - "type": "node", - "id": 269396118, - "lat": 51.4892746, - "lon": -2.6450995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 521", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269396121, - "lat": 51.4911039, - "lon": -2.6491789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BS9", - "ref": "BS9 522", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269435217, - "lat": 54.7627890, - "lon": -1.4675604, - "tags": { - "amenity": "post_box", - "postal_code": "DH6", - "ref": "DH6 81" - } -}, -{ - "type": "node", - "id": 269435219, - "lat": 54.7659818, - "lon": -1.4706225, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "DH6", - "ref": "DH6 342" - } -}, -{ - "type": "node", - "id": 269444566, - "lat": 54.7922045, - "lon": -1.5211965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DH1", - "ref": "DH1 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 269444577, - "lat": 54.7900436, - "lon": -1.5264291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DH1", - "ref": "DH1 98" - } -}, -{ - "type": "node", - "id": 269444891, - "lat": 51.7705415, - "lon": -1.2263663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 351", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269444951, - "lat": 51.7700296, - "lon": -1.2186440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX3 708", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 269486039, - "lat": 54.7664062, - "lon": -1.4395940, - "tags": { - "amenity": "post_box", - "postal_code": "DH6", - "ref": "DH6 96" - } -}, -{ - "type": "node", - "id": 269500419, - "lat": 54.7727019, - "lon": -1.4239853, - "tags": { - "amenity": "post_box", - "postal_code": "DH6", - "ref": "DH6 175" - } -}, -{ - "type": "node", - "id": 269505469, - "lat": 54.7829800, - "lon": -1.4169907, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DH6", - "ref": "DH6 187" - } -}, -{ - "type": "node", - "id": 269506324, - "lat": 54.7848797, - "lon": -1.4135114, - "tags": { - "amenity": "post_box", - "postal_code": "DH6", - "ref": "DH6 272" - } -}, -{ - "type": "node", - "id": 269523639, - "lat": 54.7752299, - "lon": -1.4771061, - "tags": { - "amenity": "post_box", - "postal_code": "DH6", - "ref": "DH6 211" - } -}, -{ - "type": "node", - "id": 269523648, - "lat": 54.7727919, - "lon": -1.4797881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH6 467" - } -}, -{ - "type": "node", - "id": 269529033, - "lat": 55.9363180, - "lon": -3.1961219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:30; Sa 12:15", - "ref": "EH9 248", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 269533252, - "lat": 54.7784204, - "lon": -1.5071143, - "tags": { - "amenity": "post_box", - "postal_code": "DH6", - "ref": "DH6 40" - } -}, -{ - "type": "node", - "id": 269538962, - "lat": 54.7515264, - "lon": -1.5389527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DH1", - "ref": "DH1 361" - } -}, -{ - "type": "node", - "id": 269539767, - "lat": 51.5607910, - "lon": 0.4840686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 269543799, - "lat": 50.8216716, - "lon": -1.7094703, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-19", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH24 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 269545780, - "lat": 51.5491702, - "lon": -2.4246915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 624" - } -}, -{ - "type": "node", - "id": 269546304, - "lat": 51.5567298, - "lon": -2.4309723, - "tags": { - "amenity": "post_box", - "mapillary": "140408308111418", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 423", - "survey:date": "2020-03-16" - } -}, -{ - "type": "node", - "id": 269546309, - "lat": 51.5516233, - "lon": -2.4356356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 1042", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 269561333, - "lat": 51.4094622, - "lon": -1.2770348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 269585917, - "lat": 51.0704604, - "lon": -0.3276720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "name": "North Parade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269585920, - "lat": 51.0723513, - "lon": -0.3306575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 72", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 269605306, - "lat": 53.6609486, - "lon": -1.5500398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 135" - } -}, -{ - "type": "node", - "id": 269605363, - "lat": 53.6612334, - "lon": -1.5445643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 245" - } -}, -{ - "type": "node", - "id": 269710631, - "lat": 51.6102424, - "lon": -0.1834807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 19" - } -}, -{ - "type": "node", - "id": 269711581, - "lat": 51.6018700, - "lon": -0.1844943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "N3 3D" - } -}, -{ - "type": "node", - "id": 269734249, - "lat": 52.3215299, - "lon": -1.7495095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "no \"D\" after ref despite collection times", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B94 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269751273, - "lat": 54.9814989, - "lon": -1.6632942, - "tags": { - "amenity": "post_box", - "ref": "NE4 166" - } -}, -{ - "type": "node", - "id": 269753569, - "lat": 51.3710749, - "lon": -1.1513738, - "tags": { - "amenity": "post_box", - "postal_code": "RG7", - "ref": "RG7 271" - } -}, -{ - "type": "node", - "id": 269759558, - "lat": 51.4886472, - "lon": -0.0718587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE1 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269770759, - "lat": 51.4857844, - "lon": -0.0707712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 73;SE1 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 269790192, - "lat": 51.3600930, - "lon": -1.0022075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269792487, - "lat": 51.4979288, - "lon": 0.3339394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 103" - } -}, -{ - "type": "node", - "id": 269914893, - "lat": 50.7414298, - "lon": -3.9814424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX20 163;EX20 1630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 269919888, - "lat": 54.7734710, - "lon": -1.5803396, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DH1 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 269919940, - "lat": 54.7778455, - "lon": -1.5852245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 168" - } -}, -{ - "type": "node", - "id": 269922574, - "lat": 52.0544432, - "lon": 1.2747676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "postal_code": "IP5", - "ref": "IP5 1434" - } -}, -{ - "type": "node", - "id": 269959244, - "lat": 51.2440400, - "lon": -0.5293948, - "tags": { - "amenity": "post_box", - "postal_code": "GU1", - "ref": "GU1 203", - "source": "photo" - } -}, -{ - "type": "node", - "id": 269961520, - "lat": 54.1210165, - "lon": -2.7772694, - "tags": { - "amenity": "post_box", - "ref": "LA5 79" - } -}, -{ - "type": "node", - "id": 269961521, - "lat": 54.1227940, - "lon": -2.7788593, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA5 18", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 269963330, - "lat": 51.2536565, - "lon": -0.5322669, - "tags": { - "amenity": "post_box", - "postal_code": "GU4", - "ref": "GU4 74" - } -}, -{ - "type": "node", - "id": 269991717, - "lat": 54.1295745, - "lon": -2.7615887, - "tags": { - "amenity": "post_box", - "ref": "LA5 27" - } -}, -{ - "type": "node", - "id": 269997387, - "lat": 54.7678971, - "lon": -1.5233668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 269" - } -}, -{ - "type": "node", - "id": 270006180, - "lat": 51.3545093, - "lon": -1.2066703, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 208" - } -}, -{ - "type": "node", - "id": 270007680, - "lat": 51.3541826, - "lon": -1.2351986, - "tags": { - "amenity": "post_box", - "postal_code": "RG19", - "ref": "RG19 310" - } -}, -{ - "type": "node", - "id": 270057387, - "lat": 52.4439611, - "lon": -1.8792739, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B13 66", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270057418, - "lat": 53.6701378, - "lon": -2.9575892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "6147110721981334", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 133", - "survey:date": "2020-08-06" - } -}, -{ - "type": "node", - "id": 270057441, - "lat": 53.6777604, - "lon": -2.9462753, - "tags": { - "amenity": "post_box", - "ref": "PR9 118" - } -}, -{ - "type": "node", - "id": 270120449, - "lat": 50.6256669, - "lon": -2.2433579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BH20", - "ref": "BH20 19", - "ref:GB:uprn": "10015364842", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270127775, - "lat": 51.3060120, - "lon": -0.5698874, - "tags": { - "amenity": "post_box", - "check_date": "2019-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270134001, - "lat": 51.3128231, - "lon": -0.5671859, - "tags": { - "amenity": "post_box", - "check_date": "2019-04-23", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 270134211, - "lat": 51.3093325, - "lon": -0.5645594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270169125, - "lat": 51.3570712, - "lon": -1.1999402, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG19", - "ref": "RG19 112" - } -}, -{ - "type": "node", - "id": 270173848, - "lat": 51.3524170, - "lon": -1.2499638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG19 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270179284, - "lat": 51.3618145, - "lon": -1.2478617, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 193" - } -}, -{ - "type": "node", - "id": 270180546, - "lat": 51.3607110, - "lon": -1.2571351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "RG19", - "ref": "RG19 106" - } -}, -{ - "type": "node", - "id": 270190122, - "lat": 51.3792790, - "lon": -1.1985420, - "tags": { - "amenity": "post_box", - "fixme": "This may have been removed or decomissioned. Please check", - "mapillary": "2899207070298406", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG7", - "ref": "RG7 43", - "survey:date": "2020-10-03" - } -}, -{ - "type": "node", - "id": 270313590, - "lat": 51.7418150, - "lon": -1.1716134, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c", - "ref": "OX33 742" - } -}, -{ - "type": "node", - "id": 270318504, - "lat": 51.7368909, - "lon": -1.1948476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "created_by": "Potlatch 0.9c", - "ref": "OX4 818" - } -}, -{ - "type": "node", - "id": 270332873, - "lat": 51.3990822, - "lon": -1.3096595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG14 168D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 270332884, - "lat": 51.3994139, - "lon": -1.3167876, - "tags": { - "amenity": "post_box", - "postal_code": "RG14", - "ref": "RG14 78" - } -}, -{ - "type": "node", - "id": 270336946, - "lat": 51.4020521, - "lon": -1.2821747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG19", - "ref": "RG19 282" - } -}, -{ - "type": "node", - "id": 270337123, - "lat": 53.8614119, - "lon": -1.6800158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 502" - } -}, -{ - "type": "node", - "id": 270339793, - "lat": 51.2481864, - "lon": -0.5362236, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GU1", - "ref": "GU1 255", - "source": "photo" - } -}, -{ - "type": "node", - "id": 270341688, - "lat": 51.7743260, - "lon": -0.6350509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270374150, - "lat": 51.4362400, - "lon": -0.0808034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "No collection plate on 29/5/22 to confirm ref or collection times but RMNY has https://www.royalmail.com/services-near-you/postbox/college-road-near-tollgate-se21-7aa/00000SE219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE21 9", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270378141, - "lat": 55.7274367, - "lon": -3.9290406, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.9c" - } -}, -{ - "type": "node", - "id": 270379519, - "lat": 50.6268782, - "lon": -2.2444164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BH20", - "ref": "BH20 87", - "ref:GB:uprn": "10015292057" - } -}, -{ - "type": "node", - "id": 270389358, - "lat": 53.7012522, - "lon": -1.3107135, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 270420409, - "lat": 51.4995298, - "lon": -0.0352030, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "missing collection plate on 20/05/21 so cannot confirm times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270420474, - "lat": 51.5068425, - "lon": -0.0388712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270491173, - "lat": 51.5135429, - "lon": -0.0331275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 5D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270491185, - "lat": 51.5157617, - "lon": -0.0259396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 13D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270491192, - "lat": 51.5174049, - "lon": -0.0285863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "pillar", - "ref": "E14 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270494872, - "lat": 51.4916982, - "lon": -0.0934308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE17 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270540602, - "lat": 55.9059366, - "lon": -3.2787358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH14 567D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 270540611, - "lat": 55.9034397, - "lon": -3.2848761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 568" - } -}, -{ - "type": "node", - "id": 270542023, - "lat": 55.8691608, - "lon": -3.1898172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "mapillary": "1969643143188432", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH25 236", - "survey:date": "2020-07-31" - } -}, -{ - "type": "node", - "id": 270542160, - "lat": 53.6586091, - "lon": -1.5474318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 45" - } -}, -{ - "type": "node", - "id": 270542645, - "lat": 53.6605373, - "lon": -1.5588411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 270566096, - "lat": 50.9461003, - "lon": -1.5945650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270588739, - "lat": 55.8751082, - "lon": -3.3465121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 165D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 270588781, - "lat": 55.8799322, - "lon": -3.3503812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH14 583D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 270588797, - "lat": 55.8846059, - "lon": -3.3413885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 158D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 270592345, - "lat": 54.0951487, - "lon": -2.8042540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270597388, - "lat": 51.4788175, - "lon": 0.3243858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 42" - } -}, -{ - "type": "node", - "id": 270597452, - "lat": 54.1096500, - "lon": -2.7881394, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "ref": "LA5 42" - } -}, -{ - "type": "node", - "id": 270600293, - "lat": 51.1718824, - "lon": -0.1160569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "ref": "RH6 206", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 270600338, - "lat": 51.1743345, - "lon": -0.1221090, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RH6", - "ref": "RH6 262" - } -}, -{ - "type": "node", - "id": 270603565, - "lat": 51.6627005, - "lon": -0.3887000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD24 18D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 270603595, - "lat": 51.6850413, - "lon": -0.3915308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270603602, - "lat": 51.6897828, - "lon": -0.3957356, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 270603603, - "lat": 51.6880968, - "lon": -0.4031743, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 270614954, - "lat": 51.7654533, - "lon": -0.4937338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 270615143, - "lat": 51.7541031, - "lon": -0.4754074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 270697804, - "lat": 55.8741746, - "lon": -4.3897642, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 86" - } -}, -{ - "type": "node", - "id": 270701989, - "lat": 55.8672908, - "lon": -4.3951553, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA4", - "ref": "PA4 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 270713467, - "lat": 50.9167294, - "lon": -0.1151403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN6 416" - } -}, -{ - "type": "node", - "id": 270801027, - "lat": 52.4192056, - "lon": -1.9648415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B31 596", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 270804263, - "lat": 51.5645139, - "lon": 0.1462321, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 270826026, - "lat": 52.5407089, - "lon": -2.0613763, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 270834985, - "lat": 50.7067547, - "lon": -2.1388148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BH20", - "ref": "BH20 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270837308, - "lat": 51.3840889, - "lon": -1.1530918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "pillar", - "postal_code": "RG7", - "ref": "RG7 252", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 270837330, - "lat": 51.3803540, - "lon": -1.1818349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "RG7", - "ref": "RG7 346" - } -}, -{ - "type": "node", - "id": 270839542, - "lat": 51.3969811, - "lon": -1.1749763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 313" - } -}, -{ - "type": "node", - "id": 270840427, - "lat": 50.7071020, - "lon": -2.0963441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 187", - "ref:GB:uprn": "10015352216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270840428, - "lat": 50.7064463, - "lon": -2.0981958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 100D", - "ref:GB:uprn": "10015401494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270841422, - "lat": 51.3761897, - "lon": -1.2350339, - "tags": { - "amenity": "post_box", - "mapillary": "2670664129901902", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 61", - "survey:date": "2021-10-16" - } -}, -{ - "type": "node", - "id": 270912856, - "lat": 57.1610842, - "lon": -7.3414404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 07:30", - "operator": "Royal Mail", - "ref": "HS8 69" - } -}, -{ - "type": "node", - "id": 270914573, - "lat": 57.4254518, - "lon": -7.3648459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS7 67", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 270922937, - "lat": 51.4983498, - "lon": 0.3225486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 8" - } -}, -{ - "type": "node", - "id": 270931857, - "lat": 51.4221865, - "lon": -0.7648596, - "tags": { - "amenity": "post_box", - "fixme": "survey for location" - } -}, -{ - "type": "node", - "id": 270965069, - "lat": 52.5385387, - "lon": -2.0539070, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 270970160, - "lat": 52.4521556, - "lon": -1.8921081, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 355", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 270999535, - "lat": 51.0904616, - "lon": -0.3471456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH12 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 270999576, - "lat": 51.0900144, - "lon": -0.3517352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271001657, - "lat": 51.4849397, - "lon": 0.3479572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 78" - } -}, -{ - "type": "node", - "id": 271015256, - "lat": 51.5237513, - "lon": 0.4057702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271015259, - "lat": 51.4973027, - "lon": 0.3389568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM16 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 271024339, - "lat": 50.6984238, - "lon": -2.1175814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 295", - "ref:GB:uprn": "10015471189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 271034606, - "lat": 52.3849959, - "lon": 0.1745963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 271035473, - "lat": 52.4157460, - "lon": 0.1859760, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB6 40" - } -}, -{ - "type": "node", - "id": 271036912, - "lat": 52.4167223, - "lon": 0.1604988, - "tags": { - "amenity": "post_box", - "ref": "CB6 167" - } -}, -{ - "type": "node", - "id": 271039022, - "lat": 52.3983002, - "lon": 0.1494577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB6 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271039815, - "lat": 54.7707197, - "lon": -1.4685305, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 271039961, - "lat": 54.7847820, - "lon": -1.3572025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SR8 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 271040271, - "lat": 52.3636143, - "lon": 0.1508734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271042504, - "lat": 52.3595089, - "lon": 0.1299335, - "tags": { - "amenity": "post_box", - "ref": "CB6 52" - } -}, -{ - "type": "node", - "id": 271043225, - "lat": 52.3590964, - "lon": 0.1440640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271049867, - "lat": 51.4868980, - "lon": -0.0429647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE8", - "ref": "SE8 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271087762, - "lat": 51.5185382, - "lon": 0.3002990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 600" - } -}, -{ - "type": "node", - "id": 271087763, - "lat": 51.4994775, - "lon": 0.2617506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RM15 219" - } -}, -{ - "type": "node", - "id": 271146673, - "lat": 51.4237571, - "lon": -0.7528533, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.10" - } -}, -{ - "type": "node", - "id": 271213706, - "lat": 51.5637182, - "lon": 0.4229420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 271215622, - "lat": 51.5614916, - "lon": 0.4213192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 271237604, - "lat": 53.3716607, - "lon": -2.7223613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 271237730, - "lat": 53.3682877, - "lon": -2.7258917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA8 11" - } -}, -{ - "type": "node", - "id": 271237844, - "lat": 53.3736318, - "lon": -2.7286965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 38", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 271237912, - "lat": 53.3766061, - "lon": -2.7335787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 24", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 271286419, - "lat": 51.4895259, - "lon": -0.0212959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271296268, - "lat": 51.6094606, - "lon": -0.1888929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N3 31" - } -}, -{ - "type": "node", - "id": 271348099, - "lat": 52.5077783, - "lon": -1.9313653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 198" - } -}, -{ - "type": "node", - "id": 271348103, - "lat": 52.5063886, - "lon": -1.9272044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B20", - "ref": "B20 454" - } -}, -{ - "type": "node", - "id": 271365763, - "lat": 51.6894983, - "lon": -1.1875035, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX44 368" - } -}, -{ - "type": "node", - "id": 271371070, - "lat": 52.5436821, - "lon": -2.0425635, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 271383622, - "lat": 52.4160904, - "lon": -1.8358604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "B90 522", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271387070, - "lat": 51.0676887, - "lon": -0.3465882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 244" - } -}, -{ - "type": "node", - "id": 271528918, - "lat": 50.7036180, - "lon": -2.1055840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BH20", - "ref": "BH20 113D", - "ref:GB:uprn": "10015308304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 271536485, - "lat": 50.6394440, - "lon": -2.1991481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BH20", - "ref": "BH20 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 271623662, - "lat": 54.0743648, - "lon": -0.7916520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO17 65", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 271649577, - "lat": 52.4013552, - "lon": -1.7853014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 1376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 271663564, - "lat": 52.5294431, - "lon": -2.0770709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY4 94D" - } -}, -{ - "type": "node", - "id": 271727995, - "lat": 52.0553929, - "lon": -0.0306038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG8 401", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 271727996, - "lat": 52.0559451, - "lon": -0.0273344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SG8 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271733277, - "lat": 52.0584938, - "lon": -0.0168765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271733301, - "lat": 52.0579746, - "lon": -0.0153557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SG8 751", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271741498, - "lat": 52.0479313, - "lon": -0.0318888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG8 315D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 271743846, - "lat": 54.4590878, - "lon": -0.8251988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO21 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 271745994, - "lat": 52.0484032, - "lon": -0.0243223, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-28", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG8 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271751103, - "lat": 52.0499851, - "lon": -0.0226198, - "tags": { - "amenity": "post_box", - "ref": "SG8 750" - } -}, -{ - "type": "node", - "id": 271767916, - "lat": 52.0531800, - "lon": -0.0186454, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "SG8 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271767926, - "lat": 52.0535953, - "lon": -0.0112667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG8 484", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 271767934, - "lat": 52.0516247, - "lon": -0.0102085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG8 447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271767995, - "lat": 52.0485236, - "lon": -0.0149506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Box number covered by collection times sticker", - "post_box:type": "pillar", - "ref": "SG8 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271771297, - "lat": 52.5789756, - "lon": -3.3344540, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 271778912, - "lat": 52.5508875, - "lon": -3.3745499, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 271803741, - "lat": 50.7380713, - "lon": -1.9830232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 284", - "ref:GB:uprn": "10015439171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271827932, - "lat": 52.5914695, - "lon": -1.5937082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "966116493952721", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV9 29", - "source": "GPS drive-by", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 271854430, - "lat": 51.0071264, - "lon": -1.4345611, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO51 519D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 271858045, - "lat": 51.0227270, - "lon": -1.4661981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO51 547D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 271964559, - "lat": 52.4380716, - "lon": -1.9377074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B29 1401", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 271974229, - "lat": 52.5990987, - "lon": -3.2019015, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 272016231, - "lat": 50.9037816, - "lon": -0.0738811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 483" - } -}, -{ - "type": "node", - "id": 272019234, - "lat": 53.5314798, - "lon": -2.5743771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 34", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 272019236, - "lat": 53.5294996, - "lon": -2.5663861, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272019237, - "lat": 53.5267640, - "lon": -2.5583269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 113", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272019240, - "lat": 53.5234399, - "lon": -2.5450059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 138", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272026706, - "lat": 53.5173948, - "lon": -2.5305173, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272026709, - "lat": 53.5098644, - "lon": -2.5258274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272026711, - "lat": 53.5052554, - "lon": -2.5236435, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272026712, - "lat": 53.4981468, - "lon": -2.5187658, - "tags": { - "amenity": "post_box", - "colour": "Gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 272026713, - "lat": 53.4953054, - "lon": -2.5106527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272026714, - "lat": 53.4859358, - "lon": -2.5009312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272031598, - "lat": 51.0144952, - "lon": -1.0916485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-02-06", - "old_ref": "GU32 160", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272031600, - "lat": 51.0113633, - "lon": -1.0745241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 272057354, - "lat": 58.2719097, - "lon": -6.7858212, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 272057380, - "lat": 58.2074447, - "lon": -6.7371093, - "tags": { - "amenity": "post_box", - "fixme": "position" - } -}, -{ - "type": "node", - "id": 272061840, - "lat": 51.6715407, - "lon": -1.2915931, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "OX14 1040", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 272086346, - "lat": 52.4302315, - "lon": -1.9508372, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B29 613", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 272086380, - "lat": 52.4353232, - "lon": -1.9510462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B29 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 272086435, - "lat": 52.4328694, - "lon": -1.9516028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B29 189", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 272120600, - "lat": 52.4829520, - "lon": -2.0814825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DY2 60", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272405009, - "lat": 52.4618067, - "lon": -1.9013038, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B5 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 272417950, - "lat": 52.4505259, - "lon": -1.8892545, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272433352, - "lat": 52.3971180, - "lon": -1.7725418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 233D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272445931, - "lat": 52.4389744, - "lon": -1.9447692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B29 1147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 272445978, - "lat": 52.4413026, - "lon": -1.9458674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B29 1134" - } -}, -{ - "type": "node", - "id": 272446381, - "lat": 52.3285755, - "lon": -1.7098144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272599385, - "lat": 51.2505834, - "lon": -1.4264044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 272641859, - "lat": 54.0285246, - "lon": -2.7953583, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA1 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 272750035, - "lat": 51.4455961, - "lon": -1.0454567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG31 606D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 272753700, - "lat": 53.0784800, - "lon": -2.5889000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "mapillary": "329991835151302", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CW5 206", - "source": "survey", - "survey:date": "2020-04-14" - } -}, -{ - "type": "node", - "id": 272753709, - "lat": 53.0958030, - "lon": -2.6541376, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 272768343, - "lat": 53.6702162, - "lon": -2.6785372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272768347, - "lat": 53.6715860, - "lon": -2.6703787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272788861, - "lat": 52.7088850, - "lon": -2.7878806, - "tags": { - "amenity": "post_box", - "colour": "red", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 757", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272799234, - "lat": 52.3326327, - "lon": -1.8359472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B94 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272803674, - "lat": 51.5232985, - "lon": -2.4236446, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 603" - } -}, -{ - "type": "node", - "id": 272804196, - "lat": 51.7670521, - "lon": -0.7356230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 272847630, - "lat": 51.5468420, - "lon": -2.4479427, - "tags": { - "amenity": "post_box", - "mapillary": "1304752770053158", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 166", - "survey:date": "2022-05-14" - } -}, -{ - "type": "node", - "id": 272848222, - "lat": 54.0706650, - "lon": -0.7578685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:40; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO17 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 272848939, - "lat": 51.5084050, - "lon": -2.3944626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS37 245", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 272848983, - "lat": 51.5162314, - "lon": -2.4341334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS37 50", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 272854600, - "lat": 50.7210809, - "lon": -3.5551633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 471D" - } -}, -{ - "type": "node", - "id": 272877202, - "lat": 52.4329096, - "lon": -1.9567994, - "tags": { - "amenity": "post_box", - "ref": "B29 540" - } -}, -{ - "type": "node", - "id": 273097720, - "lat": 52.4715557, - "lon": -1.9059181, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B15", - "ref": "B15 1001" - } -}, -{ - "type": "node", - "id": 273098469, - "lat": 53.7913148, - "lon": -1.5171923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273098503, - "lat": 53.7937525, - "lon": -1.5230690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273099274, - "lat": 52.4812042, - "lon": -1.9147936, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B1", - "ref": "B1 1404" - } -}, -{ - "type": "node", - "id": 273099278, - "lat": 52.4834034, - "lon": -1.9204973, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "B1", - "ref": "B1 1256" - } -}, -{ - "type": "node", - "id": 273115984, - "lat": 52.4807864, - "lon": -1.7932809, - "tags": { - "amenity": "post_box", - "ref": "B33 905" - } -}, -{ - "type": "node", - "id": 273119463, - "lat": 55.7351864, - "lon": -3.9702075, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 273125341, - "lat": 51.5122914, - "lon": 0.2759118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 208" - } -}, -{ - "type": "node", - "id": 273169075, - "lat": 51.7404825, - "lon": -1.2541885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX1 160", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 273187311, - "lat": 51.1724256, - "lon": -0.6456706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU8 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 273205879, - "lat": 52.0609934, - "lon": 1.2719266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "IP5", - "ref": "IP5 1415" - } -}, -{ - "type": "node", - "id": 273207364, - "lat": 54.2059934, - "lon": -0.9799952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO62 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273208782, - "lat": 52.0574548, - "lon": 1.2672580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "IP5", - "ref": "IP5 1433" - } -}, -{ - "type": "node", - "id": 273209475, - "lat": 52.0644987, - "lon": 1.2721315, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "IP5", - "ref": "IP5 1432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273235371, - "lat": 52.5502550, - "lon": -2.0607420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 273235387, - "lat": 52.5476274, - "lon": -2.0547376, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 273347990, - "lat": 52.4061822, - "lon": -1.7838027, - "tags": { - "amenity": "post_box", - "ref": "B91 1392", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273417343, - "lat": 51.9166645, - "lon": -0.6890069, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-21", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "ref": "LU7 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273424062, - "lat": 51.9212651, - "lon": -0.6912423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "LU7 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273426317, - "lat": 51.9233948, - "lon": -0.6875932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU7 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273430271, - "lat": 52.4207035, - "lon": -1.8744706, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273434499, - "lat": 52.4829168, - "lon": -1.7800849, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 296", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 273450874, - "lat": 52.0588843, - "lon": -0.0249912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SG8 716", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273460875, - "lat": 51.4467582, - "lon": -0.1127607, - "tags": { - "amenity": "post_box", - "ref": "SW2 48" - } -}, -{ - "type": "node", - "id": 273461480, - "lat": 51.4541356, - "lon": -0.1131168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "SW2 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273462246, - "lat": 51.4555001, - "lon": -0.1104297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW2 17", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273482353, - "lat": 54.0781757, - "lon": -0.8498288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO60 162" - } -}, -{ - "type": "node", - "id": 273490832, - "lat": 51.0220189, - "lon": -1.5076039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 429D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273490903, - "lat": 51.0306571, - "lon": -1.5107070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 551D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273490961, - "lat": 51.0336717, - "lon": -1.4655732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 539D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273492872, - "lat": 51.6306742, - "lon": 0.0115625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 21D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 273495543, - "lat": 52.0431292, - "lon": -0.0222355, - "tags": { - "amenity": "post_box", - "ref": "SG8 316" - } -}, -{ - "type": "node", - "id": 273495561, - "lat": 52.0456300, - "lon": -0.0221765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 9:00; Sa 7:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG8 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 273495837, - "lat": 52.0441942, - "lon": -0.0172232, - "tags": { - "amenity": "post_box", - "ref": "SG8 715" - } -}, -{ - "type": "node", - "id": 273509336, - "lat": 51.4660411, - "lon": -0.1246347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 14" - } -}, -{ - "type": "node", - "id": 273533102, - "lat": 51.5031530, - "lon": -0.0476733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273533115, - "lat": 51.5003243, - "lon": -0.0514953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273542283, - "lat": 51.4631630, - "lon": -0.1196112, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 13" - } -}, -{ - "type": "node", - "id": 273542327, - "lat": 51.4574224, - "lon": -0.1073650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273542329, - "lat": 51.4540314, - "lon": -0.1074015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 273853928, - "lat": 55.8723629, - "lon": -4.3873545, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 258" - } -}, -{ - "type": "node", - "id": 274070615, - "lat": 54.0902910, - "lon": -0.8122663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:50", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO17 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 274076258, - "lat": 52.2906824, - "lon": -1.7985233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B95 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 274225862, - "lat": 54.0831923, - "lon": -0.7953715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO17 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 274245833, - "lat": 51.5034394, - "lon": -0.0202049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 16;E14 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 274257500, - "lat": 53.8127145, - "lon": -1.5510684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 274259488, - "lat": 53.8108082, - "lon": -1.5562134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 274276821, - "lat": 52.5475654, - "lon": -2.0687904, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 274307104, - "lat": 50.7892346, - "lon": -1.7245428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 33" - } -}, -{ - "type": "node", - "id": 274374341, - "lat": 52.6136619, - "lon": -0.2767374, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 274374343, - "lat": 52.6156390, - "lon": -0.2814004, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 274382290, - "lat": 51.7531145, - "lon": -1.2941289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-09-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "Old Botley, Oxford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX2 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph,survey" - } -}, -{ - "type": "node", - "id": 274400662, - "lat": 51.2105515, - "lon": -1.0908228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "368672155124015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-05" - } -}, -{ - "type": "node", - "id": 274404352, - "lat": 51.7495900, - "lon": -1.3156828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "ref": "OX2 939", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 274404395, - "lat": 51.7511663, - "lon": -1.3123225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX2 941", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 274404415, - "lat": 51.7504982, - "lon": -1.3025855, - "tags": { - "addr:city": "Oxford", - "addr:postcode": "OX2 9BP", - "addr:street": "Eynsham Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX2 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-02-21" - } -}, -{ - "type": "node", - "id": 274406020, - "lat": 51.1702522, - "lon": -1.0937411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO24 130", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 274406350, - "lat": 52.6830721, - "lon": -2.2437241, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 274569322, - "lat": 55.1003614, - "lon": -1.5769864, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-20", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:priority": "yes", - "post_box:type": "lamp", - "postal_code": "NE23 3LR", - "ref": "NE23 689D", - "ref:GB:uprn": "10015841050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19" - } -}, -{ - "type": "node", - "id": 274647139, - "lat": 50.0872530, - "lon": -5.3108163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR13 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 274665310, - "lat": 51.4057083, - "lon": -0.0603208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 274676250, - "lat": 51.5915937, - "lon": 0.0280990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 274714691, - "lat": 53.6542386, - "lon": -1.5428650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 43" - } -}, -{ - "type": "node", - "id": 274788383, - "lat": 51.5953336, - "lon": -0.6966327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 274806545, - "lat": 52.5543808, - "lon": -2.0608704, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 274806651, - "lat": 52.5517795, - "lon": -2.0504851, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 274810137, - "lat": 54.2169899, - "lon": -2.7868267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA7 240" - } -}, -{ - "type": "node", - "id": 274813242, - "lat": 52.0525259, - "lon": 1.3297700, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP12 6210", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 274839160, - "lat": 50.7978561, - "lon": -1.6785913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 60" - } -}, -{ - "type": "node", - "id": 274865703, - "lat": 51.3268114, - "lon": -0.2547187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT17 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 274945806, - "lat": 55.8594392, - "lon": -4.4036646, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 274963739, - "lat": 51.2364330, - "lon": -0.5593523, - "tags": { - "amenity": "post_box", - "postal_code": "GU1", - "ref": "GU1 272", - "source": "photo" - } -}, -{ - "type": "node", - "id": 274991596, - "lat": 51.4522893, - "lon": -0.1389115, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 275002431, - "lat": 55.0739381, - "lon": -1.5742369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 6HT", - "ref": "NE23 61" - } -}, -{ - "type": "node", - "id": 275039130, - "lat": 51.5817495, - "lon": 0.1171343, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 275042431, - "lat": 56.7031103, - "lon": -5.2208766, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PH33 72", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275209035, - "lat": 54.1346163, - "lon": -0.7973444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "YO17", - "ref": "YO17 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275209054, - "lat": 54.1355870, - "lon": -0.7993760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "YO17", - "ref": "YO17 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275220753, - "lat": 51.4523458, - "lon": -0.1343363, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 275221453, - "lat": 55.8641643, - "lon": -4.2540955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G1", - "ref": "G1 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 275222021, - "lat": 51.4575842, - "lon": -0.1322960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW4 36" - } -}, -{ - "type": "node", - "id": 275226026, - "lat": 55.8570728, - "lon": -4.2495694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G1", - "ref": "G1 707" - } -}, -{ - "type": "node", - "id": 275261432, - "lat": 55.8607374, - "lon": -4.2388823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "G4 1515D" - } -}, -{ - "type": "node", - "id": 275266420, - "lat": 53.0678370, - "lon": -2.4856808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "ref": "CW5 285", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275300930, - "lat": 54.1791761, - "lon": -2.7339074, - "tags": { - "amenity": "post_box", - "note": "Post box inside building.", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "LA6 203" - } -}, -{ - "type": "node", - "id": 275335138, - "lat": 52.4128596, - "lon": -1.5124269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "drive_through": "no", - "note": "The Saturday collection time was physically obscured. My best guess from my photo is 9:15.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275343863, - "lat": 51.4565451, - "lon": -0.1210886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 275356248, - "lat": 50.0830314, - "lon": -5.3151523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TR13 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 275356829, - "lat": 50.0841725, - "lon": -5.3106343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 275357488, - "lat": 50.0862792, - "lon": -5.3152580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR13 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 275357898, - "lat": 50.1553144, - "lon": -5.0725336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-19", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR11 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 275357916, - "lat": 50.1575601, - "lon": -5.0740048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR11 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 275357960, - "lat": 50.1625825, - "lon": -5.0866330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR11 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 275357967, - "lat": 50.1597068, - "lon": -5.0779449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 275422236, - "lat": 51.5280108, - "lon": -2.4323758, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 597" - } -}, -{ - "type": "node", - "id": 275425268, - "lat": 51.2366903, - "lon": -2.3196095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 275444281, - "lat": 53.3905919, - "lon": -1.3667934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275600716, - "lat": 51.4783310, - "lon": -3.2413897, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 275617744, - "lat": 53.0701301, - "lon": -2.4787741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "CW5 247", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275617806, - "lat": 53.0661793, - "lon": -2.4794872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "CW5 246", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275622644, - "lat": 51.5137955, - "lon": 0.2855931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 207" - } -}, -{ - "type": "node", - "id": 275622978, - "lat": 51.2401097, - "lon": -2.3204862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 275623450, - "lat": 51.5079320, - "lon": 0.2892329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 209" - } -}, -{ - "type": "node", - "id": 275664059, - "lat": 50.0831391, - "lon": -5.3193497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 275665175, - "lat": 50.0880754, - "lon": -5.3137418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 275665521, - "lat": 50.0919745, - "lon": -5.3150174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 275682355, - "lat": 56.5715985, - "lon": -5.3775536, - "tags": { - "amenity": "post_box", - "ref": "PA38 70", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275712209, - "lat": 56.4187464, - "lon": -5.4770821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA34 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 275712226, - "lat": 56.4203610, - "lon": -5.4813305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA34 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 275714674, - "lat": 54.2012738, - "lon": -1.0219430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 09:10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275774903, - "lat": 56.2308702, - "lon": -5.5478674, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 275777606, - "lat": 53.8888009, - "lon": -1.2601763, - "tags": { - "amenity": "post_box", - "ref": "LS24 631" - } -}, -{ - "type": "node", - "id": 275780198, - "lat": 56.1337492, - "lon": -5.4863116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA31 42", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 275817172, - "lat": 51.2442613, - "lon": -2.3264569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 275857117, - "lat": 53.8763413, - "lon": -1.2712872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS24 937", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275870661, - "lat": 50.4222694, - "lon": -4.1561401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "mapillary": "1034106667382826", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL5 292D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-06" - } -}, -{ - "type": "node", - "id": 275871936, - "lat": 55.8674749, - "lon": -4.3769218, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 12" - } -}, -{ - "type": "node", - "id": 275940804, - "lat": 52.0997288, - "lon": -0.0208560, - "tags": { - "amenity": "post_box", - "ref": "SG8 322" - } -}, -{ - "type": "node", - "id": 275941651, - "lat": 52.0956614, - "lon": -0.0318418, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 261" - } -}, -{ - "type": "node", - "id": 275941795, - "lat": 52.1204318, - "lon": -0.0542109, - "tags": { - "amenity": "post_box", - "ref": "SG8 281" - } -}, -{ - "type": "node", - "id": 275941825, - "lat": 52.1319475, - "lon": -0.0598548, - "tags": { - "amenity": "post_box", - "ref": "SG8 284" - } -}, -{ - "type": "node", - "id": 275941853, - "lat": 52.1261684, - "lon": -0.0841005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SG8", - "ref": "SG8 341D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275941857, - "lat": 52.1288192, - "lon": -0.0788250, - "tags": { - "amenity": "post_box", - "ref": "SG8 260" - } -}, -{ - "type": "node", - "id": 275941928, - "lat": 52.1114115, - "lon": -0.0698907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SG8", - "ref": "SG8 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275942036, - "lat": 52.0725487, - "lon": -0.1234412, - "tags": { - "amenity": "post_box", - "ref": "SG8 308" - } -}, -{ - "type": "node", - "id": 275942070, - "lat": 52.0624182, - "lon": -0.1261844, - "tags": { - "amenity": "post_box", - "ref": "SG8 483" - } -}, -{ - "type": "node", - "id": 275942633, - "lat": 52.0385846, - "lon": -0.1588052, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SG7 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275942684, - "lat": 52.0387751, - "lon": -0.1526426, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG7 391" - } -}, -{ - "type": "node", - "id": 275942782, - "lat": 52.0426112, - "lon": -0.1450664, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:10", - "post_box:type": "lamp", - "ref": "SG7 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 275961945, - "lat": 50.8594137, - "lon": -1.1775704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276053441, - "lat": 53.5275262, - "lon": -2.5484517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 54", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276084654, - "lat": 51.5174634, - "lon": -0.2550635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276091363, - "lat": 51.5144559, - "lon": -0.2586568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276091368, - "lat": 51.5126411, - "lon": -0.2524183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276091382, - "lat": 51.5132390, - "lon": -0.2482678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276091387, - "lat": 51.5111920, - "lon": -0.2465480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276091903, - "lat": 51.5081162, - "lon": -0.2439608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 276277647, - "lat": 50.9273260, - "lon": -1.4161033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 276292746, - "lat": 51.8359796, - "lon": -1.2711900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "note": "Wall type in a brick pillar", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX5 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276296928, - "lat": 51.8479943, - "lon": -1.3039006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX5 722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276300087, - "lat": 53.4142422, - "lon": -1.4831915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S5 686D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 276302133, - "lat": 53.4190996, - "lon": -1.4803829, - "tags": { - "amenity": "post_box", - "ref": "S5 635" - } -}, -{ - "type": "node", - "id": 276304241, - "lat": 53.4159598, - "lon": -1.4624792, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 916D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 276304976, - "lat": 53.4231754, - "lon": -1.4722745, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 702", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 276328737, - "lat": 54.1254879, - "lon": -0.7926925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO17 25" - } -}, -{ - "type": "node", - "id": 276328739, - "lat": 54.1304165, - "lon": -0.7925534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO17 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 276385818, - "lat": 54.1357976, - "lon": -0.8048136, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 276386167, - "lat": 54.0892077, - "lon": -0.8627205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:35; Sa 10:00", - "created_by": "Potlatch 0.9c", - "operator": "Royal Mail", - "ref": "YO60 499" - } -}, -{ - "type": "node", - "id": 276524970, - "lat": 51.6851708, - "lon": -1.2455078, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX14 1161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 276534055, - "lat": 51.6884887, - "lon": -1.2419288, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "colour": "red", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1049", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 276534074, - "lat": 51.6904085, - "lon": -1.2462204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1028", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 276539610, - "lat": 51.6799244, - "lon": -1.2647841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_m", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 953", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 276587512, - "lat": 52.7624126, - "lon": -2.7966750, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 276601373, - "lat": 51.8313842, - "lon": -2.2199175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "GL4 111D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276667466, - "lat": 51.5826444, - "lon": -0.0040814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Missing nameplate when last surveyed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 276685074, - "lat": 52.3288823, - "lon": -1.2059325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV23 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276693254, - "lat": 51.7991715, - "lon": -0.6519330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276693809, - "lat": 53.4603966, - "lon": -2.4932912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 273", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 276712206, - "lat": 52.4854325, - "lon": -1.8022135, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 600D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276739135, - "lat": 53.4703297, - "lon": -2.4951613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 272", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 276739155, - "lat": 53.4743328, - "lon": -2.4959195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 274", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 276775700, - "lat": 56.2296234, - "lon": -5.0738286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA32 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276777699, - "lat": 52.3751937, - "lon": -2.1629858, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 276791485, - "lat": 54.0774979, - "lon": -2.8313433, - "tags": { - "amenity": "post_box", - "ref": "LA4 223" - } -}, -{ - "type": "node", - "id": 276811632, - "lat": 50.4684383, - "lon": -4.4247400, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 276848636, - "lat": 51.4157167, - "lon": -0.0538269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "both slots have same ref although RM site shows one should be SE20 105 https://www.royalmail.com/services-near-you/postbox/98-penge-high-street-mpso-se20-7hw/00000SE205 https://www.royalmail.com/services-near-you/postbox/98-penge-high-street-mspo-se", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE20 5;SE20 105", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276888206, - "lat": 51.3859530, - "lon": 1.4374759, - "tags": { - "amenity": "post_box", - "postal_code": "CT10", - "ref": "CT10 119" - } -}, -{ - "type": "node", - "id": 276889069, - "lat": 51.3819311, - "lon": 1.4282640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276895427, - "lat": 51.3864722, - "lon": 1.4237786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 276902415, - "lat": 51.3845536, - "lon": 1.4291920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT10", - "ref": "CT10 50" - } -}, -{ - "type": "node", - "id": 276909562, - "lat": 51.3887969, - "lon": 1.4091315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276911189, - "lat": 51.3884921, - "lon": 1.4036371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "colour": "red", - "postal_code": "CT9", - "ref": "CT9 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 276913906, - "lat": 50.7228275, - "lon": -3.5216772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX1 119D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 276918188, - "lat": 51.5016139, - "lon": -0.2407424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 276918735, - "lat": 51.5044470, - "lon": -0.2389504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 15D", - "royal_cypher": "no", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 276967860, - "lat": 53.7984299, - "lon": -0.0588437, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU11 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 276968285, - "lat": 51.3568774, - "lon": -2.3677844, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 276996896, - "lat": 51.5512919, - "lon": -0.0394442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "E5 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277026610, - "lat": 53.3949931, - "lon": -1.4455517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "S4 1618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277026617, - "lat": 53.3997384, - "lon": -1.4341081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S9 1127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277030163, - "lat": 50.8127335, - "lon": -0.7480697, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "last_checked": "2021-06-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277031652, - "lat": 53.3948143, - "lon": -1.4119787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 1194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277032625, - "lat": 53.3901224, - "lon": -1.4101479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 1101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277033962, - "lat": 53.3895098, - "lon": -1.4164930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "postal_code": "S9", - "ref": "S9 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277035575, - "lat": 53.3924321, - "lon": -1.4210676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277039476, - "lat": 51.4772647, - "lon": 0.0161762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277200265, - "lat": 52.4173485, - "lon": -1.8474087, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 510", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277205863, - "lat": 52.4117664, - "lon": -1.8407047, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 839D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277242214, - "lat": 52.4114147, - "lon": -1.8536912, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 1040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277279363, - "lat": 51.8550612, - "lon": -1.2763229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX5 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-03-09" - } -}, -{ - "type": "node", - "id": 277298948, - "lat": 53.6621904, - "lon": -1.5648599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 52" - } -}, -{ - "type": "node", - "id": 277299199, - "lat": 53.6637900, - "lon": -1.5614535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 246", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 277307852, - "lat": 53.3619726, - "lon": -2.0713787, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 277313425, - "lat": 51.4958012, - "lon": -0.1715774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW7 22", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 277313649, - "lat": 51.4979083, - "lon": -0.1672282, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-04", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW3 11", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 277426584, - "lat": 51.4752456, - "lon": 0.3176087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RM17 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 277470198, - "lat": 52.4432242, - "lon": -1.9501582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B29 738" - } -}, -{ - "type": "node", - "id": 277470298, - "lat": 52.4395465, - "lon": -1.9520532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "B29 460" - } -}, -{ - "type": "node", - "id": 277480173, - "lat": 52.4035659, - "lon": -1.5005380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "last_checked": "2020-06-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 277519834, - "lat": 53.1928947, - "lon": -2.7679040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 218D" - } -}, -{ - "type": "node", - "id": 277545949, - "lat": 51.3993271, - "lon": -0.0030868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 277547922, - "lat": 51.3899563, - "lon": -0.0015260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BR4 360", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 277547997, - "lat": 51.3954030, - "lon": 0.0035122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 277610699, - "lat": 51.4933166, - "lon": 0.3400914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 31" - } -}, -{ - "type": "node", - "id": 277872148, - "lat": 51.3890244, - "lon": 1.4010509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "postal_code": "CT9", - "ref": "CT9 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 277872149, - "lat": 51.3905717, - "lon": 1.4011985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 277873643, - "lat": 51.3897934, - "lon": 1.3962062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "postal_code": "CT9", - "ref": "CT9 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 277890663, - "lat": 51.5642924, - "lon": 0.4795237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SS16 450" - } -}, -{ - "type": "node", - "id": 277913818, - "lat": 51.5703652, - "lon": 0.4315896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 278000588, - "lat": 53.5352333, - "lon": -2.5653343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 30", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 278065826, - "lat": 51.7784349, - "lon": -1.1631279, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-08", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "ref": "OX33 219", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 278078573, - "lat": 53.4810771, - "lon": -1.4289162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S62 73D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 278079991, - "lat": 51.3800656, - "lon": -0.1712847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 278079993, - "lat": 51.3793988, - "lon": -0.1757807, - "tags": { - "amenity": "post_box", - "postal_code": "SM5", - "ref": "SM5 228" - } -}, -{ - "type": "node", - "id": 278080091, - "lat": 51.3846865, - "lon": -0.1752421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SM5", - "ref": "SM5 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 278083101, - "lat": 53.4624317, - "lon": -1.4363605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278083240, - "lat": 51.7757282, - "lon": -1.1626196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "OX33 279" - } -}, -{ - "type": "node", - "id": 278083277, - "lat": 51.7665211, - "lon": -1.1534491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "wall", - "ref": "OX33 277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps_survey;photograph" - } -}, -{ - "type": "node", - "id": 278083297, - "lat": 51.7634223, - "lon": -1.1571480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "post_box:type": "wall", - "ref": "OX33 161", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "gps_survey;photograph" - } -}, -{ - "type": "node", - "id": 278087589, - "lat": 53.4314177, - "lon": -1.4404179, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278087612, - "lat": 53.4318902, - "lon": -1.4504770, - "tags": { - "amenity": "post_box", - "ref": "S5 622" - } -}, -{ - "type": "node", - "id": 278089070, - "lat": 53.4275530, - "lon": -1.4592282, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 696", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 278157412, - "lat": 51.5138795, - "lon": -0.0100552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 278172282, - "lat": 51.4172659, - "lon": -0.1368233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 278206329, - "lat": 52.4203457, - "lon": -1.9535326, - "tags": { - "amenity": "post_box", - "ref": "B30 1172" - } -}, -{ - "type": "node", - "id": 278286079, - "lat": 53.6598280, - "lon": -1.5684616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 55" - } -}, -{ - "type": "node", - "id": 278328066, - "lat": 54.0511648, - "lon": -2.7955986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA1 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278351672, - "lat": 50.9905532, - "lon": -1.4976288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO51 557D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278355795, - "lat": 50.9942257, - "lon": -1.4998463, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 560D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278456496, - "lat": 51.6327446, - "lon": 0.4234084, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 278515472, - "lat": 51.5508446, - "lon": -0.1353633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 28D" - } -}, -{ - "type": "node", - "id": 278535282, - "lat": 50.9633425, - "lon": -0.5573093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278535283, - "lat": 50.9652356, - "lon": -0.5639380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 278535284, - "lat": 50.9821921, - "lon": -0.5474650, - "tags": { - "amenity": "post_box", - "ref": "RH20 63" - } -}, -{ - "type": "node", - "id": 278535285, - "lat": 50.9928051, - "lon": -0.5341728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 278535299, - "lat": 51.0020943, - "lon": -0.5263914, - "tags": { - "amenity": "post_box", - "ref": "RH14 10" - } -}, -{ - "type": "node", - "id": 278535301, - "lat": 51.0163077, - "lon": -0.5192902, - "tags": { - "amenity": "post_box", - "ref": "RH14 4" - } -}, -{ - "type": "node", - "id": 278545165, - "lat": 54.1198444, - "lon": -0.7916403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:05", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "YO17", - "ref": "YO17 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 278567124, - "lat": 51.4928263, - "lon": -0.1846863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "740293460446034", - "post_box:type": "pillar", - "ref": "SW7 15", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 278588129, - "lat": 51.7390198, - "lon": -1.1675376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "post_box:type": "wall", - "ref": "OX33 228", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 278588136, - "lat": 51.7387827, - "lon": -1.1737109, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX33 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 278590434, - "lat": 52.5148027, - "lon": -1.7924123, - "tags": { - "amenity": "post_box", - "postal_code": "B35", - "ref": "B35 1109" - } -}, -{ - "type": "node", - "id": 278593203, - "lat": 51.4862071, - "lon": -0.2679814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 278593211, - "lat": 51.4866914, - "lon": -0.2718139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 278593212, - "lat": 51.4878252, - "lon": -0.2752235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 44D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 278593229, - "lat": 51.4865978, - "lon": -0.2808333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 58", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 278599139, - "lat": 52.5173006, - "lon": -1.7844221, - "tags": { - "amenity": "post_box", - "postal_code": "B35", - "ref": "B35 1111" - } -}, -{ - "type": "node", - "id": 278600283, - "lat": 52.5234278, - "lon": -1.7779970, - "tags": { - "amenity": "post_box", - "postal_code": "B35", - "ref": "B35 862" - } -}, -{ - "type": "node", - "id": 278602010, - "lat": 54.1378404, - "lon": -0.8019422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "YO17", - "ref": "YO17 8" - } -}, -{ - "type": "node", - "id": 278603378, - "lat": 53.4316489, - "lon": -1.4788879, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 110" - } -}, -{ - "type": "node", - "id": 278604858, - "lat": 53.4315247, - "lon": -1.4591210, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 728" - } -}, -{ - "type": "node", - "id": 278609122, - "lat": 53.4326637, - "lon": -1.4690912, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S5 742" - } -}, -{ - "type": "node", - "id": 278740872, - "lat": 51.5025328, - "lon": 0.2923637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 202" - } -}, -{ - "type": "node", - "id": 278751674, - "lat": 53.8358255, - "lon": -1.5680669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS6 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278770854, - "lat": 53.8371013, - "lon": -1.5547577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 205" - } -}, -{ - "type": "node", - "id": 278772386, - "lat": 53.8339821, - "lon": -1.5674687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 278819990, - "lat": 52.6904757, - "lon": -1.8158930, - "tags": { - "amenity": "post_box", - "postal_code": "WS13", - "ref": "WS13 73" - } -}, -{ - "type": "node", - "id": 278843662, - "lat": 53.8400495, - "lon": -1.6335270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS18 577", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 278843710, - "lat": 53.8387997, - "lon": -1.6392542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 278847398, - "lat": 51.7551304, - "lon": -1.1306288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX33 19", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 278865387, - "lat": 53.4099477, - "lon": -1.4475818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S5 256", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 278907389, - "lat": 51.5459964, - "lon": -0.1305097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NW1 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 x Camden Terrace" - } -}, -{ - "type": "node", - "id": 278921169, - "lat": 55.8708214, - "lon": -4.3766997, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 251" - } -}, -{ - "type": "node", - "id": 278948781, - "lat": 52.9651243, - "lon": -3.0887739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "survey:date": "2022-08-20" - } -}, -{ - "type": "node", - "id": 278980614, - "lat": 52.9673999, - "lon": -1.1772058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 233", - "ref:GB:uprn": "10015315972", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 279010863, - "lat": 52.9794554, - "lon": -0.9619798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "NG13 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 279024374, - "lat": 53.0950094, - "lon": -2.4638598, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 279034676, - "lat": 53.6774680, - "lon": -1.5637677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 136", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 279035033, - "lat": 53.6734170, - "lon": -1.5559922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 41" - } -}, -{ - "type": "node", - "id": 279041278, - "lat": 53.4133718, - "lon": -1.4521960, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 497", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 279046186, - "lat": 53.4173808, - "lon": -1.4544044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S5 482", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 279046192, - "lat": 53.4134919, - "lon": -1.4581456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S5 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 279051557, - "lat": 51.3875204, - "lon": -0.1723316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 247D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279051620, - "lat": 51.3921771, - "lon": -0.1763187, - "tags": { - "amenity": "post_box", - "postal_code": "SM4", - "ref": "SM4 188" - } -}, -{ - "type": "node", - "id": 279056286, - "lat": 51.3851685, - "lon": -0.1794821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SM5", - "ref": "SM5 279D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279056328, - "lat": 51.3817882, - "lon": -0.1765915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 266D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279061270, - "lat": 51.3858019, - "lon": -0.1838839, - "tags": { - "amenity": "post_box", - "postal_code": "SM5", - "ref": "SM5 298" - } -}, -{ - "type": "node", - "id": 279096484, - "lat": 51.2706637, - "lon": 0.5309570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ME15 235", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 279104435, - "lat": 51.5293899, - "lon": -0.0606715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279104438, - "lat": 51.5313483, - "lon": -0.0645661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E2 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279104448, - "lat": 51.5348935, - "lon": -0.0716328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279104453, - "lat": 51.5350300, - "lon": -0.0768500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 14", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279217774, - "lat": 51.5209698, - "lon": 0.0073251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "459894078638309", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279219471, - "lat": 51.4889173, - "lon": -0.1106609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "SE11 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279295311, - "lat": 51.4960438, - "lon": 0.2347246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RM15 221" - } -}, -{ - "type": "node", - "id": 279295493, - "lat": 51.4982263, - "lon": 0.2436013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RM15 226" - } -}, -{ - "type": "node", - "id": 279296348, - "lat": 51.4851804, - "lon": 0.2571619, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- location is outside the RM16 postal district", - "operator": "Royal Mail", - "ref": "RM16 127" - } -}, -{ - "type": "node", - "id": 279297334, - "lat": 51.4268502, - "lon": -0.3839105, - "tags": { - "amenity": "post_box", - "ref": "TW12 210" - } -}, -{ - "type": "node", - "id": 279350810, - "lat": 51.6705134, - "lon": -1.2814375, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX14 1022", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 279504948, - "lat": 51.5802066, - "lon": 0.0493966, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10" - } -}, -{ - "type": "node", - "id": 279505413, - "lat": 51.5769422, - "lon": 0.0465299, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10" - } -}, -{ - "type": "node", - "id": 279522127, - "lat": 51.4425476, - "lon": -0.1470601, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "fixme": "I added the reference as per the Post Hoc/Dracos database because the information plate was missing when photographed (31/5/18). A local might confirm if the postbox is out of use, update map and http://robert.mathmos.net/osm/postboxes/removed.html", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279547989, - "lat": 51.5555211, - "lon": 0.0054940, - "tags": { - "addr:street": "High Road Leytonstone", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279548039, - "lat": 51.5531225, - "lon": -0.0006443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279572191, - "lat": 51.5295565, - "lon": -0.0868900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 155", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279577935, - "lat": 51.5323079, - "lon": -0.0868455, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "mapillary": "799012101548713", - "post_box:type": "pillar", - "ref": "N1 154", - "source": "survey", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 279580542, - "lat": 51.5374313, - "lon": -0.0913557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "N1 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279581193, - "lat": 51.4330480, - "lon": -0.0789139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "has pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE21 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279581218, - "lat": 51.4572300, - "lon": -0.0959287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279581578, - "lat": 51.5377139, - "lon": -0.0998814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 279581933, - "lat": 51.5357350, - "lon": -0.0940936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 144", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 279614346, - "lat": 53.6715111, - "lon": -1.5683770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 258" - } -}, -{ - "type": "node", - "id": 279629600, - "lat": 52.9935670, - "lon": -2.5076434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW3 176", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 279629758, - "lat": 52.9858497, - "lon": -2.5143545, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW3 168" - } -}, -{ - "type": "node", - "id": 279629846, - "lat": 52.9726157, - "lon": -2.5126243, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 279636538, - "lat": 54.6041469, - "lon": -3.1157503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CA12 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279636544, - "lat": 54.6044556, - "lon": -3.1236861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 130", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279636545, - "lat": 54.6020293, - "lon": -3.1295217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 276", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279636546, - "lat": 54.6009672, - "lon": -3.1349584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 129", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 279643756, - "lat": 51.4034001, - "lon": -0.8381104, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10" - } -}, -{ - "type": "node", - "id": 279644025, - "lat": 51.4100461, - "lon": -0.8434398, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 279651213, - "lat": 51.5637706, - "lon": -0.1184434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N7 34" - } -}, -{ - "type": "node", - "id": 279651293, - "lat": 51.5592572, - "lon": -0.1139169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 279651345, - "lat": 51.5573515, - "lon": -0.1123055, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-14", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 279651447, - "lat": 51.5525924, - "lon": -0.1030419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N5 21" - } -}, -{ - "type": "node", - "id": 279708027, - "lat": 53.0544956, - "lon": -2.5119194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 190" - } -}, -{ - "type": "node", - "id": 279787163, - "lat": 53.6689116, - "lon": -1.5710716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 128" - } -}, -{ - "type": "node", - "id": 279809481, - "lat": 50.7185392, - "lon": -3.5550440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 408D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 279830442, - "lat": 55.0049983, - "lon": -1.5746471, - "tags": { - "amenity": "post_box", - "ref": "NE7 381" - } -}, -{ - "type": "node", - "id": 279849730, - "lat": 51.9974810, - "lon": -1.2118847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NN13", - "ref": "NN13 140" - } -}, -{ - "type": "node", - "id": 279849827, - "lat": 52.4210799, - "lon": -1.9675963, - "tags": { - "amenity": "post_box", - "ref": "B29 224" - } -}, -{ - "type": "node", - "id": 279850265, - "lat": 52.4254769, - "lon": -1.9666482, - "tags": { - "amenity": "post_box", - "ref": "B29 184" - } -}, -{ - "type": "node", - "id": 279850651, - "lat": 52.4286410, - "lon": -1.9561145, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B29 1289", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 279852174, - "lat": 51.9975183, - "lon": -1.2022157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NN13", - "ref": "NN13 162" - } -}, -{ - "type": "node", - "id": 279880942, - "lat": 51.3862802, - "lon": -0.0030577, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR4 319", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 279886697, - "lat": 51.7408515, - "lon": -1.1616438, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-04", - "collection_times": "Mo-Fr 16:00, Sa 08:30", - "post_box:type": "lamp", - "postal_code": "OX33", - "ref": "OX33 736", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 279886752, - "lat": 51.7449272, - "lon": -1.1508336, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "OX33", - "ref": "OX33 209", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 279886777, - "lat": 51.7468838, - "lon": -1.1530920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX33 778", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 279890158, - "lat": 51.7812733, - "lon": -1.2728492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "OX2", - "ref": "OX2 234" - } -}, -{ - "type": "node", - "id": 279890159, - "lat": 51.7785724, - "lon": -1.2709392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "OX2", - "ref": "OX2 125" - } -}, -{ - "type": "node", - "id": 279890162, - "lat": 51.7740584, - "lon": -1.2673729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 127", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 279890164, - "lat": 51.7641999, - "lon": -1.2646971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "postal_code": "OX2", - "ref": "OX2 8" - } -}, -{ - "type": "node", - "id": 279890168, - "lat": 51.7668647, - "lon": -1.2656639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-02", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "postal_code": "OX2", - "priority:covid19": "yes", - "ref": "OX2 79", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 279890182, - "lat": 51.7754285, - "lon": -1.2640367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "postal_code": "OX2", - "ref": "OX2 213" - } -}, -{ - "type": "node", - "id": 279935338, - "lat": 50.9974564, - "lon": -1.4890394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 761D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 279935434, - "lat": 50.9955107, - "lon": -1.4852673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 521D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280033006, - "lat": 51.5234136, - "lon": -0.0844097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC2A 201;EC2A 2011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;photo" - } -}, -{ - "type": "node", - "id": 280033007, - "lat": 51.5234280, - "lon": -0.0844062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC2A 202P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;photo" - } -}, -{ - "type": "node", - "id": 280034658, - "lat": 51.5273896, - "lon": -0.0812428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "N1 61", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280034659, - "lat": 51.5273897, - "lon": -0.0811928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "N1 159;N1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280063318, - "lat": 53.9471305, - "lon": -1.0740786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO10 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280063351, - "lat": 53.9376583, - "lon": -1.0713960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO10 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280079716, - "lat": 51.6727257, - "lon": -2.0160063, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10" - } -}, -{ - "type": "node", - "id": 280079811, - "lat": 51.6748708, - "lon": -2.0193795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL7 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280082003, - "lat": 52.5842581, - "lon": -2.1450203, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WV3 21" - } -}, -{ - "type": "node", - "id": 280082006, - "lat": 52.5830738, - "lon": -2.1406045, - "tags": { - "amenity": "post_box", - "ref": "WV3 143" - } -}, -{ - "type": "node", - "id": 280122610, - "lat": 51.4058004, - "lon": -0.8480659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10", - "mapillary": "323640716907625", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 280136886, - "lat": 51.5416507, - "lon": -2.5711048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "BS32 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280146970, - "lat": 51.5485599, - "lon": 0.1410411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RM9 205D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 280151877, - "lat": 51.5542700, - "lon": 0.1420445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "RM8 437", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 280151883, - "lat": 51.5593990, - "lon": 0.1477266, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280155600, - "lat": 52.5827558, - "lon": -2.1179539, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280156261, - "lat": 52.5490449, - "lon": -2.0426759, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280174168, - "lat": 54.1361594, - "lon": -0.7936071, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280180840, - "lat": 50.9636966, - "lon": -1.4121260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "828742987995201", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO16 419", - "royal_cypher": "EIIR", - "survey:date": "2020-03-08" - } -}, -{ - "type": "node", - "id": 280182875, - "lat": 51.5273634, - "lon": -0.0847958, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "ref": "N1 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280184506, - "lat": 51.5248137, - "lon": -0.0812170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2A 209;EC2A 2091", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280184507, - "lat": 51.5248258, - "lon": -0.0812404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "meter", - "ref": "EC2A 210P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280184508, - "lat": 51.5235059, - "lon": -0.0805197, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2A 205D;EC2A 2051D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280184509, - "lat": 51.5220564, - "lon": -0.0817710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:manufacturer": "A. Handyside & Co. Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "EC2A 207;EC2A 2071", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280184510, - "lat": 51.5200880, - "lon": -0.0825384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC2A 211;EC2A 2111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280184511, - "lat": 51.5200737, - "lon": -0.0825539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "EC2A 212P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 280185418, - "lat": 51.5167785, - "lon": -0.0835499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "EC2M 223D;EC2M 2231D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280185419, - "lat": 51.5173295, - "lon": -0.0867934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2M 219;EC2M 2191", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 280186497, - "lat": 51.5177716, - "lon": -0.0845419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC2M 214P", - "royal_cypher": "no", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 280186499, - "lat": 51.5178442, - "lon": -0.0844568, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2M 215;EC2M 2151", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 280186500, - "lat": 51.5199631, - "lon": -0.0873537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2 208D;EC2 2081D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280213377, - "lat": 51.5224786, - "lon": 0.2930711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 206" - } -}, -{ - "type": "node", - "id": 280224752, - "lat": 53.4074838, - "lon": -2.9894438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Double G type post box on North John Street, Liverpool, close to its junction with Dale Street. Just to the left is L2 463", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L2 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L2 469 on North John Street.jpg" - } -}, -{ - "type": "node", - "id": 280313908, - "lat": 50.4178771, - "lon": -3.5615118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ4", - "ref": "TQ4 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 280342872, - "lat": 53.6749127, - "lon": -1.5727328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 75" - } -}, -{ - "type": "node", - "id": 280342901, - "lat": 53.6782533, - "lon": -1.5765927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 6" - } -}, -{ - "type": "node", - "id": 280347702, - "lat": 51.8797237, - "lon": 0.9215197, - "tags": { - "amenity": "post_box", - "ref": "CO1 470" - } -}, -{ - "type": "node", - "id": 280374446, - "lat": 51.4820559, - "lon": -0.2185133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 280403315, - "lat": 53.0276481, - "lon": -2.2091386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST5 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280450729, - "lat": 51.6836867, - "lon": -2.4336603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GL13 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280450753, - "lat": 51.6909585, - "lon": -2.4541328, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-18", - "description": "hexagonal pillar box", - "operator": "Royal Mail", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "GL13 115D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 280454444, - "lat": 50.9849645, - "lon": -4.4049036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280484448, - "lat": 53.9930991, - "lon": -1.0726739, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "YO32", - "ref": "YO32 338", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 280484495, - "lat": 54.0062626, - "lon": -1.0744850, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "YO32 3EX", - "ref": "YO32 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280488624, - "lat": 54.0145155, - "lon": -1.0861637, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "YO32 2WY", - "ref": "YO32 493" - } -}, -{ - "type": "node", - "id": 280490435, - "lat": 54.0092708, - "lon": -1.0793825, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "YO32 2YL", - "ref": "YO32 530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280493723, - "lat": 50.4469839, - "lon": -3.5590789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ3", - "ref": "TQ3 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 280500202, - "lat": 50.4442557, - "lon": -3.5632243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3 2", - "ref": "TQ3 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 280538317, - "lat": 51.2355033, - "lon": -1.1235228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG22", - "ref": "RG22 352" - } -}, -{ - "type": "node", - "id": 280547897, - "lat": 51.4614537, - "lon": -0.3086017, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-02", - "check_date:collection_times": "2023-11-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "TW9 24", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 280547904, - "lat": 51.4562845, - "lon": -0.3085833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280551993, - "lat": 55.8671953, - "lon": -4.2946315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "ref": "G3 1095" - } -}, -{ - "type": "node", - "id": 280603863, - "lat": 53.6777718, - "lon": -1.5681176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 15" - } -}, -{ - "type": "node", - "id": 280603993, - "lat": 53.6759155, - "lon": -1.5789522, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 42" - } -}, -{ - "type": "node", - "id": 280606772, - "lat": 51.4662651, - "lon": -0.0324023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 280606806, - "lat": 51.4713634, - "lon": -0.0302484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE14 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280703300, - "lat": 52.5046802, - "lon": -1.9021743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B19", - "ref": "B19 113" - } -}, -{ - "type": "node", - "id": 280714548, - "lat": 52.5074054, - "lon": -1.9160460, - "tags": { - "amenity": "post_box", - "postal_code": "B20", - "ref": "B20 541" - } -}, -{ - "type": "node", - "id": 280726739, - "lat": 52.3876834, - "lon": -1.6537127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV7 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280726779, - "lat": 52.3839371, - "lon": -1.6449680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV7 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280726780, - "lat": 52.3866913, - "lon": -1.6607679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV7 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280737842, - "lat": 52.4746606, - "lon": -1.7803188, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 899D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 280745443, - "lat": 54.0163979, - "lon": -1.0655304, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-17", - "post_box:type": "pillar", - "postal_code": "YO32 3NG", - "ref": "YO32 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280746203, - "lat": 54.0197912, - "lon": -1.0694209, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-12", - "post_box:type": "lamp", - "postal_code": "YO32 2LF", - "ref": "YO32 26" - } -}, -{ - "type": "node", - "id": 280750883, - "lat": 54.0192911, - "lon": -1.0767804, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-24", - "post_box:type": "lamp", - "postal_code": "YO32 3QX", - "ref": "YO32 598" - } -}, -{ - "type": "node", - "id": 280751123, - "lat": 54.0194100, - "lon": -1.0857881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO32 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 280781142, - "lat": 52.3290178, - "lon": -0.1958183, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE29 216D" - } -}, -{ - "type": "node", - "id": 280781335, - "lat": 52.3335723, - "lon": -0.1878069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE29 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280781419, - "lat": 52.3312510, - "lon": -0.2033502, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280781468, - "lat": 52.3359100, - "lon": -0.2074469, - "tags": { - "amenity": "post_box", - "ref": "PE29 174" - } -}, -{ - "type": "node", - "id": 280781542, - "lat": 52.3390792, - "lon": -0.2005442, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280781573, - "lat": 52.3413021, - "lon": -0.1961077, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280781577, - "lat": 52.3375921, - "lon": -0.1953747, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280781610, - "lat": 52.3381539, - "lon": -0.1921430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "PE29 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop_motion_gps" - } -}, -{ - "type": "node", - "id": 280781973, - "lat": 52.4483150, - "lon": -1.9562753, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 1185", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 280792050, - "lat": 51.4910846, - "lon": -0.2238780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 36D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 280796665, - "lat": 53.3791053, - "lon": -2.9650356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L8 706 on Cockburn Street, Dingle, at the top of Garswood Street. Replaced an earlier pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L8 706", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Cockburn Street, Dingle 2020.jpg" - } -}, -{ - "type": "node", - "id": 280807503, - "lat": 53.3817730, - "lon": -2.9694793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria post box L8 101 made by Handyside on Beresford Road, Dingle, Liverpool.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Victorian post box, Beresford Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 280816985, - "lat": 53.3815179, - "lon": -2.9652207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box L8 237 on Mill Street, Dingle, at its junction with Park Hill Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Mill Street, Dingle.jpg" - } -}, -{ - "type": "node", - "id": 280839242, - "lat": 53.3831955, - "lon": -2.9626242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR type B post box L8 71 outside the former B&M Bargains store (now a Lidl), described by Royal Mail as \"Park Road Post Office\"- which closed in January 2020.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L8 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Park Hill Road.jpg" - } -}, -{ - "type": "node", - "id": 280840428, - "lat": 53.0748106, - "lon": -2.4586119, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 280858794, - "lat": 54.2407305, - "lon": -1.2094409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO7 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280861853, - "lat": 50.7832911, - "lon": -1.5700301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 141" - } -}, -{ - "type": "node", - "id": 280868664, - "lat": 50.7636605, - "lon": -1.5902748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 97" - } -}, -{ - "type": "node", - "id": 280930349, - "lat": 51.4784023, - "lon": -0.0539359, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "missing collection plate so cannot confirm collection times/ref 22/6/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 280943431, - "lat": 52.5136280, - "lon": -1.8280647, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B24 479", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 280962668, - "lat": 55.8675339, - "lon": -4.3901930, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 237" - } -}, -{ - "type": "node", - "id": 280970489, - "lat": 52.9780626, - "lon": -2.1250725, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 280970514, - "lat": 52.9724068, - "lon": -2.1180004, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 281045437, - "lat": 51.5062101, - "lon": 0.2523951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 224" - } -}, -{ - "type": "node", - "id": 281045438, - "lat": 51.5091912, - "lon": 0.2500142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 225" - } -}, -{ - "type": "node", - "id": 281071198, - "lat": 50.7328681, - "lon": -3.5516737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281088136, - "lat": 50.8009523, - "lon": -0.0367580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN2 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281129045, - "lat": 51.2401447, - "lon": -1.1305324, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "160211579382816", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 282", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 281177711, - "lat": 52.4709958, - "lon": -1.7499385, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281185626, - "lat": 51.2563123, - "lon": -0.6076734, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GU3", - "ref": "GU3 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281188854, - "lat": 51.2837043, - "lon": -0.6219970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "mapillary": "1113738292670014", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GU3", - "ref": "GU3 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 281189561, - "lat": 51.2933553, - "lon": -0.6201416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_check": "2018-05-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281189783, - "lat": 51.2972023, - "lon": -0.6151924, - "tags": { - "amenity": "post_box", - "check_date": "2018-04-11", - "collection_times": "Mo-Fr 16:15; Sa 10:45; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU22", - "ref": "GU22 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 281194851, - "lat": 51.2974494, - "lon": -0.5844193, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_check": "2018-09-19", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281196662, - "lat": 51.2888859, - "lon": -0.5894145, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-16", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU22", - "ref": "GU22 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281232247, - "lat": 52.5463056, - "lon": -2.0350679, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 281250559, - "lat": 50.8059340, - "lon": 0.0048784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "BN10 633D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 281253619, - "lat": 52.4242866, - "lon": -1.9139899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 07:00", - "note": "Photo was a bit unsharp. Not sure about the ref", - "ref": "B30 392" - } -}, -{ - "type": "node", - "id": 281262476, - "lat": 50.9093637, - "lon": -0.1463618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "fixme": "check collection times", - "ref": "BN6 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281283545, - "lat": 50.9211892, - "lon": -0.1418199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN6 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281283560, - "lat": 50.9216603, - "lon": -0.1361079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "highlands Close", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN6 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281284004, - "lat": 50.9219312, - "lon": -0.1315044, - "tags": { - "addr:city": "Keymer, Hassocks", - "addr:housename": "Keymer Old Post Office", - "addr:street": "Keymer Road", - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN6 413", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 281284214, - "lat": 50.9259778, - "lon": -0.1316361, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-11", - "old_ref": "BN6 412", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN6 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281286848, - "lat": 50.9235915, - "lon": -0.1391077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN6 426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281286853, - "lat": 50.9241981, - "lon": -0.1410359, - "tags": { - "addr:housename": "Hassocks Post Office at McColl's", - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "last_checked": "2021-06-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN6 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281294143, - "lat": 50.9287727, - "lon": -0.1351294, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-11", - "note": "I have moved the postbox icon to the correct location.", - "old_ref": "BN6 411", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN6 411D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281294261, - "lat": 50.9276873, - "lon": -0.1384682, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-11", - "old_ref": "BN6 410", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN6 410D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281294561, - "lat": 50.9319769, - "lon": -0.1296684, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-11", - "note": "Tiny box on the front wall of Ockley Manor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN6 402D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281322292, - "lat": 50.9276895, - "lon": -0.1141458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN6 386" - } -}, -{ - "type": "node", - "id": 281322328, - "lat": 50.9258537, - "lon": -0.1136660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN6 428" - } -}, -{ - "type": "node", - "id": 281322458, - "lat": 50.9220845, - "lon": -0.1145492, - "tags": { - "addr:city": "Ditchling", - "addr:street": "East End Lane", - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN6 399" - } -}, -{ - "type": "node", - "id": 281325914, - "lat": 50.9184914, - "lon": -0.1091275, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281326346, - "lat": 50.9176545, - "lon": -0.1047538, - "tags": { - "addr:city": "Ditchling", - "addr:street": "Shirleys", - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "is almost hidden in hedge", - "post_box:type": "lamp", - "ref": "BN6 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281336899, - "lat": 51.7316144, - "lon": -1.3405597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ref": "OX2 673", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 281336913, - "lat": 51.7345593, - "lon": -1.3314025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "ref": "OX2 204", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 281336925, - "lat": 51.7321407, - "lon": -1.3307803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "OX2 693", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 281337363, - "lat": 50.8011005, - "lon": -0.0030347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 630D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281339145, - "lat": 51.8253244, - "lon": -1.3840948, - "tags": { - "addr:housename": "Long Hanborough Post Office", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "OX29 553" - } -}, -{ - "type": "node", - "id": 281347949, - "lat": 52.5553423, - "lon": -2.0394177, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 281407884, - "lat": 52.4753069, - "lon": -1.7422396, - "tags": { - "amenity": "post_box", - "postal_code": "B37", - "ref": "B37 1224", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281452261, - "lat": 51.7554356, - "lon": -0.4605696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 281452327, - "lat": 51.7574530, - "lon": -0.4578795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 281452360, - "lat": 51.7628215, - "lon": -0.4495223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 281459376, - "lat": 51.2371295, - "lon": -0.5682211, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU1", - "ref": "GU1 281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo" - } -}, -{ - "type": "node", - "id": 281459425, - "lat": 51.2376666, - "lon": -0.5667309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "GU1", - "ref": "GU1 212;GU1 2121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 281480141, - "lat": 51.5966075, - "lon": 0.0217846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281513296, - "lat": 52.4258788, - "lon": -1.9706450, - "tags": { - "amenity": "post_box", - "ref": "B29 991" - } -}, -{ - "type": "node", - "id": 281518089, - "lat": 52.4997217, - "lon": -1.9067100, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B19", - "ref": "B19 135", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 281518102, - "lat": 52.5029374, - "lon": -1.9064930, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B19", - "ref": "B19 108" - } -}, -{ - "type": "node", - "id": 281518107, - "lat": 52.5029746, - "lon": -1.9109142, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B19", - "ref": "B19 744" - } -}, -{ - "type": "node", - "id": 281518114, - "lat": 52.5029419, - "lon": -1.9145809, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B19", - "ref": "B19 56" - } -}, -{ - "type": "node", - "id": 281518188, - "lat": 52.4980155, - "lon": -1.9179966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B19", - "ref": "B19 1264", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 281518189, - "lat": 52.4998934, - "lon": -1.9163946, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B19", - "ref": "B19 37" - } -}, -{ - "type": "node", - "id": 281518235, - "lat": 52.4986259, - "lon": -1.9101027, - "tags": { - "amenity": "post_box", - "postal_code": "B19", - "ref": "B19 90" - } -}, -{ - "type": "node", - "id": 281518238, - "lat": 52.5014403, - "lon": -1.9096896, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "B19", - "ref": "B19 572" - } -}, -{ - "type": "node", - "id": 281532816, - "lat": 52.4738756, - "lon": -1.7341695, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1181", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281548881, - "lat": 51.0059323, - "lon": -1.2483921, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 281562644, - "lat": 52.5369983, - "lon": -2.0654893, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 281583933, - "lat": 51.5287400, - "lon": -0.0557006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281586290, - "lat": 52.5398993, - "lon": -2.0824476, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 281598189, - "lat": 54.0430631, - "lon": -2.8883230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA3 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281602663, - "lat": 51.7491149, - "lon": -1.3445238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "ref": "OX2 628", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 281602740, - "lat": 51.7601647, - "lon": -1.3476795, - "tags": { - "addr:city": "Oxford", - "addr:housename": "Farmoor Post Office", - "addr:postcode": "OX2 9NN", - "addr:street": "Cumnor Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "OX2 552", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 281603021, - "lat": 51.7556638, - "lon": -1.3350074, - "tags": { - "addr:city": "Oxford", - "addr:housename": "Oakenholt Lodge", - "addr:postcode": "OX2 9NL", - "addr:street": "Eynsham Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ref": "OX2 106" - } -}, -{ - "type": "node", - "id": 281685214, - "lat": 51.4937890, - "lon": -2.5863352, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 281686675, - "lat": 51.5269678, - "lon": 0.4594010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SS17 102" - } -}, -{ - "type": "node", - "id": 281686876, - "lat": 51.4916709, - "lon": -2.5908407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS10 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281688537, - "lat": 51.4933657, - "lon": -2.5994218, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 281700348, - "lat": 51.1856359, - "lon": -4.2079130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 281717176, - "lat": 51.5417344, - "lon": -0.1568811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 14;NW1 776", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 14 and NW1 776" - } -}, -{ - "type": "node", - "id": 281734211, - "lat": 55.8468001, - "lon": -3.9991814, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10" - } -}, -{ - "type": "node", - "id": 281753840, - "lat": 53.8375974, - "lon": -0.4304217, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HU17 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281753924, - "lat": 53.8380017, - "lon": -0.4345168, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 281814012, - "lat": 52.5129268, - "lon": -1.1881436, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10" - } -}, -{ - "type": "node", - "id": 281851072, - "lat": 52.5479679, - "lon": -1.5211040, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 281853086, - "lat": 51.4705918, - "lon": -0.2891892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TW9 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 281853090, - "lat": 51.4749525, - "lon": -0.2865688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 58D" - } -}, -{ - "type": "node", - "id": 281902238, - "lat": 50.9740401, - "lon": -1.5700214, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281902409, - "lat": 50.9697437, - "lon": -1.5788130, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281902503, - "lat": 50.9832918, - "lon": -1.5696363, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "description": "This postbox is on the SE-bound side of the road set back in the bushes.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 281929267, - "lat": 52.0345499, - "lon": -1.1256508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 282036871, - "lat": 52.4480941, - "lon": -1.9614598, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "B17 750", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282041531, - "lat": 51.7679071, - "lon": -1.2692773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "postal_code": "OX2", - "ref": "OX2 69" - } -}, -{ - "type": "node", - "id": 282041532, - "lat": 51.7655488, - "lon": -1.2674593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 282073665, - "lat": 51.4053703, - "lon": -0.8548700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG41 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282075038, - "lat": 51.4856726, - "lon": 0.0463955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 282075817, - "lat": 51.4833979, - "lon": 0.0467539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 282075921, - "lat": 51.4857540, - "lon": 0.0506315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 282085857, - "lat": 50.7957016, - "lon": -0.0197626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-05-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN10 641D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282085858, - "lat": 50.7990144, - "lon": -0.0191771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-05-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN10 640D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282098638, - "lat": 53.4324894, - "lon": -1.4861302, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 753" - } -}, -{ - "type": "node", - "id": 282105663, - "lat": 53.4341636, - "lon": -1.4790212, - "tags": { - "amenity": "post_box", - "ref": "S5 715" - } -}, -{ - "type": "node", - "id": 282113704, - "lat": 51.5167010, - "lon": 0.0228656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 7D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282116165, - "lat": 53.4377402, - "lon": -1.4688901, - "tags": { - "amenity": "post_box", - "ref": "S5 772" - } -}, -{ - "type": "node", - "id": 282120781, - "lat": 53.4404956, - "lon": -1.4865842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 677", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282124984, - "lat": 53.4424091, - "lon": -1.4692965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 487D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282166618, - "lat": 50.9591112, - "lon": -1.4057849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO16 379D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282255530, - "lat": 52.4827490, - "lon": -1.7285303, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282282811, - "lat": 51.8698110, - "lon": -1.1235232, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX25 683", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282307819, - "lat": 51.8729324, - "lon": -1.1225189, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "OX25", - "ref": "OX25 920" - } -}, -{ - "type": "node", - "id": 282318431, - "lat": 51.4883458, - "lon": -0.2460041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "W4 48", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 282318467, - "lat": 51.4823790, - "lon": -0.2539115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282318475, - "lat": 51.4816432, - "lon": -0.2634795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 66D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 282335396, - "lat": 53.4465059, - "lon": -1.4644331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S35 277D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 282362525, - "lat": 53.4390177, - "lon": -1.4639689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S35 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 282371666, - "lat": 53.4352461, - "lon": -1.4447925, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S5 631" - } -}, -{ - "type": "node", - "id": 282372257, - "lat": 50.3490279, - "lon": -3.5910321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ6 245D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 282374190, - "lat": 53.4243303, - "lon": -1.4486437, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 624", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 282375494, - "lat": 53.4016658, - "lon": -1.4633662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S4 1065D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282380046, - "lat": 51.6708054, - "lon": 0.3844678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM4 69", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 282380065, - "lat": 51.6717880, - "lon": 0.3870304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM4 514", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 282381038, - "lat": 51.6723788, - "lon": 0.3823318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM4 211" - } -}, -{ - "type": "node", - "id": 282381041, - "lat": 51.6632947, - "lon": 0.3714942, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 282403094, - "lat": 51.5154851, - "lon": 0.0668485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282407442, - "lat": 50.7585536, - "lon": 0.2053854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 706" - } -}, -{ - "type": "node", - "id": 282420292, - "lat": 53.4078066, - "lon": -2.9935009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "QE II Type G post box L3 239 by Carron Company outside the entrance of Yorkshire House on Chapel Street, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L3 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Chapel Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 282453841, - "lat": 51.5771650, - "lon": -0.0887536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 36" - } -}, -{ - "type": "node", - "id": 282483350, - "lat": 50.8308439, - "lon": -0.7807630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PO19 1961", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282500181, - "lat": 53.7430208, - "lon": -0.3309903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "post_box:type": "pillar", - "ref": "HU1 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 282590139, - "lat": 52.4283433, - "lon": -1.9256056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "B30 1149" - } -}, -{ - "type": "node", - "id": 282591749, - "lat": 51.5110151, - "lon": 0.0327514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282594807, - "lat": 50.8203281, - "lon": -1.7689674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 34" - } -}, -{ - "type": "node", - "id": 282614432, - "lat": 51.5193931, - "lon": -0.1125599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1R 31;WC1R 231", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282665504, - "lat": 51.5204053, - "lon": -0.1339450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "WC1", - "ref": "WC1E 14D;WC1E 214D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282711238, - "lat": 50.8879388, - "lon": -1.3717797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282715760, - "lat": 50.8984769, - "lon": -1.3783841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 282733652, - "lat": 51.2807377, - "lon": -0.6352371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "wall", - "ref": "GU24 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 282738656, - "lat": 52.4479598, - "lon": -1.9526209, - "tags": { - "amenity": "post_box", - "ref": "B17 935" - } -}, -{ - "type": "node", - "id": 282752101, - "lat": 52.4489865, - "lon": -1.5472499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV7 272", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282760054, - "lat": 51.6670558, - "lon": 0.3840972, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 282760324, - "lat": 51.6734771, - "lon": 0.3896404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM4 68", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 282783556, - "lat": 52.5380472, - "lon": -2.0408613, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 282786886, - "lat": 51.8520367, - "lon": -1.0438808, - "tags": { - "amenity": "post_box", - "postal_code": "HP18", - "ref": "HP18 146" - } -}, -{ - "type": "node", - "id": 282787739, - "lat": 51.8510562, - "lon": -1.0387539, - "tags": { - "amenity": "post_box", - "postal_code": "HP18", - "ref": "HP18 145" - } -}, -{ - "type": "node", - "id": 282859046, - "lat": 51.5053341, - "lon": 0.0267790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 282898509, - "lat": 51.6195228, - "lon": -2.2563059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 282898522, - "lat": 51.6393719, - "lon": -2.3485108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "mapillary": "1866918230334205", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-24" - } -}, -{ - "type": "node", - "id": 282932419, - "lat": 51.7433861, - "lon": -1.1410493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "postal_code": "OX33", - "ref": "OX33 449" - } -}, -{ - "type": "node", - "id": 282949301, - "lat": 55.8579117, - "lon": -4.2041188, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 282989353, - "lat": 53.7995895, - "lon": -1.5981678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283038445, - "lat": 55.9549889, - "lon": -3.1927002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH2 518", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283038446, - "lat": 55.9553787, - "lon": -3.1946564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH2 82", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283038448, - "lat": 55.9534314, - "lon": -3.1915442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-15", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH2 156", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283039351, - "lat": 52.2941816, - "lon": 1.2051358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP23 7129", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 283108893, - "lat": 52.4753065, - "lon": -1.7505480, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283116133, - "lat": 51.7094555, - "lon": -1.2529253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "mapillary": "767311097309947", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX1", - "ref": "OX1 220", - "source": "photograph", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 283124255, - "lat": 51.4927089, - "lon": -0.0405398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283151863, - "lat": 52.3417373, - "lon": -0.1918554, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 283151982, - "lat": 52.3436153, - "lon": -0.1846459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 283152159, - "lat": 52.3500063, - "lon": -0.1764081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 283152239, - "lat": 52.3412054, - "lon": -0.1770343, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 283152456, - "lat": 52.3438330, - "lon": -0.1621310, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 283152494, - "lat": 52.3405876, - "lon": -0.1550961, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 283156982, - "lat": 51.6922389, - "lon": -1.2935361, - "tags": { - "amenity": "post_box", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 283157052, - "lat": 51.6794685, - "lon": -1.3050348, - "tags": { - "amenity": "post_box", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 283157053, - "lat": 51.6820134, - "lon": -1.3081295, - "tags": { - "amenity": "post_box", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 283162501, - "lat": 51.5276447, - "lon": 0.0049847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283162529, - "lat": 51.5190688, - "lon": 0.0123571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283179002, - "lat": 51.5101087, - "lon": -2.5726614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "BS34 1057", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283190902, - "lat": 51.5141200, - "lon": -0.0708025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 50;E1 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283190903, - "lat": 51.5112771, - "lon": -0.0685295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-12-11", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 23;E1 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283216019, - "lat": 53.0997399, - "lon": -2.3194476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 283216020, - "lat": 53.1032204, - "lon": -2.3158871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 283217645, - "lat": 53.1177196, - "lon": -2.3395478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 283217647, - "lat": 53.0879622, - "lon": -2.3518477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283218239, - "lat": 53.0914130, - "lon": -2.3288882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 283218241, - "lat": 53.0951504, - "lon": -2.3269368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 283218338, - "lat": 51.4952859, - "lon": -0.0838049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 20;SE1 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283218346, - "lat": 51.4967326, - "lon": -0.0824060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 74;SE1 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283218353, - "lat": 51.5002634, - "lon": -0.0850593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 48;SE1 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283229754, - "lat": 51.2700945, - "lon": -0.4538034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "KT24", - "ref": "KT24 39D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 283230964, - "lat": 51.2662831, - "lon": -0.4559904, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "KT24", - "ref": "KT24 44", - "royal_cypher": "GR", - "source": "photo" - } -}, -{ - "type": "node", - "id": 283233678, - "lat": 51.2640637, - "lon": -0.4549856, - "tags": { - "amenity": "post_box", - "postal_code": "KT24", - "ref": "KT24 150" - } -}, -{ - "type": "node", - "id": 283249190, - "lat": 51.5168383, - "lon": 0.0364406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283249219, - "lat": 51.5139510, - "lon": 0.0348124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283249993, - "lat": 51.5143025, - "lon": 0.0317787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283265100, - "lat": 51.4975832, - "lon": -0.2273696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "W6 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 283296589, - "lat": 57.8651521, - "lon": -5.5417377, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 283331426, - "lat": 52.5978630, - "lon": 1.3887499, - "tags": { - "amenity": "post_box", - "postal_code": "NR14", - "ref": "NR14 1434" - } -}, -{ - "type": "node", - "id": 283331497, - "lat": 52.6067740, - "lon": 1.4152116, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283331559, - "lat": 52.5892384, - "lon": 1.4261058, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 283334078, - "lat": 52.5760390, - "lon": 1.4782302, - "tags": { - "amenity": "post_box", - "postal_code": "NR14", - "ref": "NR14 1404" - } -}, -{ - "type": "node", - "id": 283334090, - "lat": 52.5701944, - "lon": 1.4861842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 283342570, - "lat": 52.4703914, - "lon": 1.5133723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283342584, - "lat": 52.4723975, - "lon": 1.5165811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NR34 3425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283342710, - "lat": 52.4680396, - "lon": 1.5365172, - "tags": { - "amenity": "post_box", - "postal_code": "NR34", - "ref": "NR34 3413" - } -}, -{ - "type": "node", - "id": 283344175, - "lat": 53.3283443, - "lon": -0.9593796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DN22 74", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 283344495, - "lat": 52.4593519, - "lon": 1.5632827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR34 3467D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 283348800, - "lat": 52.4075931, - "lon": 1.5074267, - "tags": { - "amenity": "post_box", - "postal_code": "NR34", - "ref": "NR34 3461" - } -}, -{ - "type": "node", - "id": 283357753, - "lat": 52.3869024, - "lon": 1.5196167, - "tags": { - "amenity": "post_box", - "postal_code": "IP19", - "ref": "IP19 5528" - } -}, -{ - "type": "node", - "id": 283357934, - "lat": 52.3458620, - "lon": 1.5230353, - "tags": { - "amenity": "post_box", - "postal_code": "IP19", - "ref": "IP19 5534" - } -}, -{ - "type": "node", - "id": 283364566, - "lat": 52.5922161, - "lon": 1.5122343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NR13 1321D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 283429282, - "lat": 51.2932068, - "lon": -2.4840488, - "tags": { - "amenity": "post_box", - "note": "in wall" - } -}, -{ - "type": "node", - "id": 283431172, - "lat": 51.2886068, - "lon": -2.4833278, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 283443981, - "lat": 53.9519977, - "lon": -1.0884357, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO23 1BP", - "ref": "YO23 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283469322, - "lat": 53.4141915, - "lon": -1.4245000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283470937, - "lat": 53.4131537, - "lon": -1.4203450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S9 1126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283471456, - "lat": 53.4167448, - "lon": -1.4172464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S9 943", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283476131, - "lat": 53.5770001, - "lon": -0.6395247, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 283476898, - "lat": 53.4193434, - "lon": -1.4249526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283480842, - "lat": 53.4212538, - "lon": -1.4169643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S9 529", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 283493249, - "lat": 53.4238143, - "lon": -1.4268617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283528318, - "lat": 51.4339630, - "lon": -0.1519017, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b", - "ref": "SW17 38" - } -}, -{ - "type": "node", - "id": 283528435, - "lat": 51.4365930, - "lon": -0.1452091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW12 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 283562610, - "lat": 52.5797138, - "lon": 1.5144385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1322D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 283583243, - "lat": 51.4049952, - "lon": 0.1926583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 174D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 283599475, - "lat": 51.4527458, - "lon": -0.0786536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283606826, - "lat": 51.4492594, - "lon": -0.0819087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283612006, - "lat": 51.5025404, - "lon": -0.0958395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 62;SE1 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283612560, - "lat": 51.4549916, - "lon": -0.0834621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283621728, - "lat": 52.3886590, - "lon": -1.6666668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 283646355, - "lat": 56.4702775, - "lon": -2.8642199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 283646446, - "lat": 56.4698556, - "lon": -2.8754075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 105D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 283757889, - "lat": 53.4174943, - "lon": -1.4349381, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 169" - } -}, -{ - "type": "node", - "id": 283771160, - "lat": 53.4144565, - "lon": -1.4288024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 283784925, - "lat": 50.8021288, - "lon": 0.0091222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN10 649D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 283854313, - "lat": 53.3912999, - "lon": -1.5445534, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S6 192" - } -}, -{ - "type": "node", - "id": 284311347, - "lat": 56.4719997, - "lon": -2.9017503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 206", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 284312537, - "lat": 56.4729785, - "lon": -2.8889128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 284313297, - "lat": 56.4765192, - "lon": -2.8861595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD5 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 284316422, - "lat": 56.4770334, - "lon": -2.8758249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD5 210", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 284319652, - "lat": 56.4807214, - "lon": -2.8569328, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 284328237, - "lat": 56.4740372, - "lon": -2.8449318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 284836446, - "lat": 51.4214966, - "lon": -0.7446591, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 284836628, - "lat": 51.4258285, - "lon": -0.7572655, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 284981805, - "lat": 52.5063656, - "lon": -1.8173105, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B36 393", - "source": "survey" - } -}, -{ - "type": "node", - "id": 284992055, - "lat": 52.3236282, - "lon": 1.1411765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 8232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 285042473, - "lat": 52.5062686, - "lon": -1.8091178, - "tags": { - "amenity": "post_box", - "ref": "B36 1150", - "source": "survey" - } -}, -{ - "type": "node", - "id": 285084457, - "lat": 52.5051869, - "lon": -1.8054350, - "tags": { - "amenity": "post_box", - "ref": "B36 855", - "source": "survey" - } -}, -{ - "type": "node", - "id": 285109616, - "lat": 52.5050382, - "lon": -1.8244169, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B36 1165", - "source": "survey" - } -}, -{ - "type": "node", - "id": 285273052, - "lat": 50.9873111, - "lon": -0.6490301, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 285370007, - "lat": 53.9490119, - "lon": -1.0851466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO23 76D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-19" - } -}, -{ - "type": "node", - "id": 285480487, - "lat": 53.9540751, - "lon": -1.0878686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO23 1AF", - "ref": "YO23 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 285518328, - "lat": 51.3931239, - "lon": -0.2952323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 285562640, - "lat": 51.2710706, - "lon": -1.0964883, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 37" - } -}, -{ - "type": "node", - "id": 285596276, - "lat": 51.2735773, - "lon": -1.1052584, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 363" - } -}, -{ - "type": "node", - "id": 285611890, - "lat": 51.4817623, - "lon": -0.3287985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW7 281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 285611894, - "lat": 51.4800228, - "lon": -0.3325811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 11:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW7 274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 285611897, - "lat": 51.4775402, - "lon": -0.3333031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW7 279D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 285650654, - "lat": 54.0716685, - "lon": -2.8626960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA4 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 285892041, - "lat": 56.4684725, - "lon": -2.8636468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 109D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 285892119, - "lat": 56.4770209, - "lon": -2.8382011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "mapillary": "153433123719217", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 203D", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2023-08-03" - } -}, -{ - "type": "node", - "id": 285892185, - "lat": 56.4775759, - "lon": -2.8308239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1119964738847119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-12-15" - } -}, -{ - "type": "node", - "id": 285892192, - "lat": 56.4850598, - "lon": -2.8238253, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 285892698, - "lat": 52.0617989, - "lon": 1.1431068, - "tags": { - "amenity": "post_box", - "mapillary": "495089381907861", - "post_box:type": "pillar", - "postal_code": "IP1 2PS", - "ref": "IP1 1146", - "survey:date": "2020-06-26" - } -}, -{ - "type": "node", - "id": 285893539, - "lat": 56.4789600, - "lon": -2.8239454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10b", - "mapillary": "250668867144996", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2021-12-15" - } -}, -{ - "type": "node", - "id": 286017471, - "lat": 50.4404696, - "lon": -3.5668776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ3 2", - "ref": "TQ3 112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 286032480, - "lat": 51.1184776, - "lon": -4.0742422, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 286038653, - "lat": 55.8558837, - "lon": -4.0840519, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 286043218, - "lat": 54.1336778, - "lon": -0.7928444, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286055915, - "lat": 51.4157806, - "lon": -0.2846839, - "tags": { - "amenity": "post_box", - "mapillary": "957655691661966", - "name": "Kingston Hill Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 92", - "survey:date": "2021-02-01" - } -}, -{ - "type": "node", - "id": 286068141, - "lat": 54.7431760, - "lon": -1.5299588, - "tags": { - "amenity": "post_box", - "ele": "107.07", - "postal_code": "DH6 5ES", - "ref": "DH6 318" - } -}, -{ - "type": "node", - "id": 286077580, - "lat": 51.2333732, - "lon": -1.1331149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "721309939089432", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG22", - "ref": "RG22 350", - "survey:date": "2021-11-16" - } -}, -{ - "type": "node", - "id": 286077615, - "lat": 51.2352867, - "lon": -1.1386118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG22 335", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 286111845, - "lat": 54.7353874, - "lon": -1.5272417, - "tags": { - "amenity": "post_box", - "ele": "92", - "postal_code": "DH6 5AT", - "ref": "DH6 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286150086, - "lat": 56.4692675, - "lon": -2.8881713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD5 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 286150520, - "lat": 56.4746515, - "lon": -2.8575518, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 286150796, - "lat": 56.4760514, - "lon": -2.8531409, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 286299957, - "lat": 51.7744631, - "lon": -1.3116816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX2 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286302590, - "lat": 51.2712998, - "lon": -1.0927158, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 38" - } -}, -{ - "type": "node", - "id": 286307389, - "lat": 51.7369407, - "lon": -1.2185916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "OX4 195", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 286307390, - "lat": 51.7337617, - "lon": -1.2200565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 658", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 286311546, - "lat": 52.4037863, - "lon": -1.5343702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 144", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286311797, - "lat": 52.4081532, - "lon": -1.5261381, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CV1", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 286315505, - "lat": 55.8485052, - "lon": -4.4517929, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA3", - "ref": "PA3 193" - } -}, -{ - "type": "node", - "id": 286316199, - "lat": 55.8552610, - "lon": -4.4356968, - "tags": { - "amenity": "post_box", - "postal_code": "PA3", - "ref": "PA3 236" - } -}, -{ - "type": "node", - "id": 286316432, - "lat": 55.8471510, - "lon": -4.4110949, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 61" - } -}, -{ - "type": "node", - "id": 286324673, - "lat": 53.1405454, - "lon": -3.0441247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286337295, - "lat": 53.1758290, - "lon": -2.9274256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 286337302, - "lat": 53.1745430, - "lon": -2.9291276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 286350149, - "lat": 51.4810648, - "lon": -0.0534944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286360339, - "lat": 53.6695128, - "lon": -1.5885249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 63" - } -}, -{ - "type": "node", - "id": 286360709, - "lat": 53.6732676, - "lon": -1.5802815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 216" - } -}, -{ - "type": "node", - "id": 286372991, - "lat": 51.3925553, - "lon": -0.3030613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 286430370, - "lat": 51.4431945, - "lon": -0.1528608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286430551, - "lat": 51.4438974, - "lon": -0.1502816, - "tags": { - "amenity": "post_box", - "ref": "SW12 10" - } -}, -{ - "type": "node", - "id": 286478359, - "lat": 51.4404084, - "lon": -0.1445052, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 286478525, - "lat": 51.4435961, - "lon": -0.1444067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286479751, - "lat": 51.4496581, - "lon": -0.1512292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 286479943, - "lat": 51.4476544, - "lon": -0.1544989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286480510, - "lat": 51.4417455, - "lon": -0.1541047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW12 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 286493171, - "lat": 51.4992771, - "lon": -0.0742348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE1 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286493225, - "lat": 51.4978770, - "lon": -0.0757627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 29;SE1 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286509328, - "lat": 51.4921737, - "lon": -0.0647870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "note": "Missing LHS collection plate 26/5/21, but had ref code se16 121 on RHS", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE16 21;SE16 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286510435, - "lat": 53.1241841, - "lon": -3.2806741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL15 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 286510730, - "lat": 53.1254777, - "lon": -3.2744528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286530573, - "lat": 51.2108052, - "lon": 0.0404561, - "tags": { - "amenity": "post_box", - "postal_code": "TN8", - "ref": "TN8 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286530615, - "lat": 51.2346725, - "lon": -0.0091570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286530643, - "lat": 51.2093919, - "lon": -0.0097763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RH7", - "ref": "RH7 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 286530654, - "lat": 51.1977436, - "lon": -0.0128270, - "tags": { - "amenity": "post_box", - "ref": "RH7 29" - } -}, -{ - "type": "node", - "id": 286530740, - "lat": 51.1703775, - "lon": 0.0003052, - "tags": { - "amenity": "post_box", - "postal_code": "RH7", - "ref": "RH7 23" - } -}, -{ - "type": "node", - "id": 286533750, - "lat": 51.2255215, - "lon": 0.0115599, - "tags": { - "amenity": "post_box", - "postal_code": "RH8", - "ref": "RH8 38" - } -}, -{ - "type": "node", - "id": 286535276, - "lat": 50.9292284, - "lon": -0.1478840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN6 404" - } -}, -{ - "type": "node", - "id": 286544612, - "lat": 54.7393394, - "lon": -1.5255724, - "tags": { - "amenity": "post_box", - "ele": "94.57", - "postal_code": "DH6 5BH", - "ref": "DH6 319" - } -}, -{ - "type": "node", - "id": 286544926, - "lat": 51.2236780, - "lon": -0.1010292, - "tags": { - "amenity": "post_box", - "ref": "RH1 79" - } -}, -{ - "type": "node", - "id": 286584358, - "lat": 52.1786840, - "lon": 1.1536315, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP6 1339" - } -}, -{ - "type": "node", - "id": 286586480, - "lat": 52.5912515, - "lon": -2.0979934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 286673104, - "lat": 53.3964590, - "lon": -2.9856266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type K post box L3 178 at Wapping Dock, Liverpool, near entrance to Queens Wharf.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L3 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Wapping Dock, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 286682039, - "lat": 51.6808181, - "lon": -2.7631111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286705099, - "lat": 53.6851264, - "lon": -1.5629003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 101" - } -}, -{ - "type": "node", - "id": 286705253, - "lat": 53.6857279, - "lon": -1.5755473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 23" - } -}, -{ - "type": "node", - "id": 286722607, - "lat": 51.1829150, - "lon": -0.5074259, - "tags": { - "amenity": "post_box", - "postal_code": "GU5", - "ref": "GU5 193", - "source": "photo" - } -}, -{ - "type": "node", - "id": 286725336, - "lat": 51.1986687, - "lon": -0.4854711, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GU5", - "ref": "GU5 70", - "source": "photo" - } -}, -{ - "type": "node", - "id": 286727267, - "lat": 51.2090350, - "lon": -0.4764694, - "tags": { - "amenity": "post_box", - "postal_code": "GU5", - "ref": "GU5 146", - "source": "photo" - } -}, -{ - "type": "node", - "id": 286730772, - "lat": 51.2198125, - "lon": -0.4647677, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-13", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "note:collection_plate": "Not visible", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "GU5", - "ref": "GU5 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286731141, - "lat": 51.2206768, - "lon": -0.4695473, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-02-20", - "old_ref": "GU5 86", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU5", - "ref": "GU5 86D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "photo" - } -}, -{ - "type": "node", - "id": 286736094, - "lat": 51.2552792, - "lon": -0.4816420, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "GU4", - "ref": "GU4 142", - "source": "photo" - } -}, -{ - "type": "node", - "id": 286736129, - "lat": 51.4491252, - "lon": -0.1439861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286737156, - "lat": 53.8417825, - "lon": -0.4047406, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 286737174, - "lat": 53.8403514, - "lon": -0.4016587, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286738881, - "lat": 51.2777025, - "lon": -0.4920233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-15", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GU23", - "ref": "GU23 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 286739079, - "lat": 51.5405539, - "lon": -2.4310931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286739552, - "lat": 53.7216807, - "lon": 0.0392942, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 286740719, - "lat": 50.8233378, - "lon": -0.1511593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286740720, - "lat": 50.8171654, - "lon": -0.1111156, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-02-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "BN2", - "ref": "BN2 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 286740721, - "lat": 50.8149185, - "lon": -0.1090695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "BN2", - "ref": "BN2 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286743387, - "lat": 55.0338947, - "lon": -1.6238452, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 286743388, - "lat": 55.0253380, - "lon": -1.6154161, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 286744269, - "lat": 51.2777440, - "lon": -0.5257252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GU23", - "ref": "GU23 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 286774594, - "lat": 51.7291572, - "lon": 0.6853869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM9 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286793791, - "lat": 50.7308870, - "lon": -1.1696619, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PO33 9", - "ref:GB:uprn": "10015412668", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/pelham-fields-po33-2aa/00000PO339" - } -}, -{ - "type": "node", - "id": 286806080, - "lat": 51.7491016, - "lon": -0.4444145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 286806081, - "lat": 51.7490858, - "lon": -0.4392603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 286806090, - "lat": 51.7518717, - "lon": -0.4387852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 286826234, - "lat": 53.0934587, - "lon": -2.3081124, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 286826238, - "lat": 53.0957367, - "lon": -2.3100427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 636D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 286836491, - "lat": 53.6886159, - "lon": -1.5838679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 90" - } -}, -{ - "type": "node", - "id": 286836597, - "lat": 53.6789209, - "lon": -1.5803905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 286851890, - "lat": 52.3350744, - "lon": -0.0713682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 286859959, - "lat": 50.6023745, - "lon": -1.1845168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "mapillary": "923667868411421", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PO38 202", - "ref:GB:uprn": "10015370210", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-07-01", - "website": "https://www.royalmail.com/services-near-you/postbox/upper-bonchurch-po37-6bz/000PO38202" - } -}, -{ - "type": "node", - "id": 286870771, - "lat": 55.0492569, - "lon": -1.4608705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 286890498, - "lat": 51.4256317, - "lon": -0.5659362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "colour": "gold", - "operator": "Royal Mail", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 286923747, - "lat": 50.9919597, - "lon": -1.4862599, - "tags": { - "amenity": "post_box", - "odbl": "clean" - } -}, -{ - "type": "node", - "id": 286923748, - "lat": 50.9923089, - "lon": -1.4869995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 287021734, - "lat": 53.5452852, - "lon": -2.0949318, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 287039957, - "lat": 51.4152409, - "lon": -0.7706159, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 287054997, - "lat": 53.1470485, - "lon": -3.2143678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH7 39D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 287079940, - "lat": 53.2099888, - "lon": -3.0444744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 287080939, - "lat": 51.2703414, - "lon": -1.0889744, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 14" - } -}, -{ - "type": "node", - "id": 287083876, - "lat": 55.8433574, - "lon": -4.4652451, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 257" - } -}, -{ - "type": "node", - "id": 287095907, - "lat": 55.0701698, - "lon": -1.5793940, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NE23 6PJ", - "ref": "NE23 560" - } -}, -{ - "type": "node", - "id": 287112008, - "lat": 51.5383244, - "lon": -0.0280869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E3 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287134714, - "lat": 51.4101670, - "lon": -0.8144566, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 287146850, - "lat": 51.4991514, - "lon": -0.2565356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 1D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 287146855, - "lat": 51.4972493, - "lon": -0.2580379, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "note": "plate missing", - "post_box:design": "penfold", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26641109" - } -}, -{ - "type": "node", - "id": 287146865, - "lat": 51.4967204, - "lon": -0.2501096, - "tags": { - "amenity": "post_box", - "mapillary": "782141979165669", - "post_box:type": "pillar", - "ref": "W4 40", - "survey:date": "2019-11-13" - } -}, -{ - "type": "node", - "id": 287146871, - "lat": 51.5009603, - "lon": -0.2440018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 5D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 287238418, - "lat": 50.9719361, - "lon": -0.8950638, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 287243115, - "lat": 51.6988250, - "lon": -0.7279618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HP16", - "ref": "HP16 74" - } -}, -{ - "type": "node", - "id": 287271590, - "lat": 51.7352135, - "lon": -1.2092979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 551", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 287281980, - "lat": 55.8564379, - "lon": -4.0803611, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 287298353, - "lat": 52.8991630, - "lon": -1.4883149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 293", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 287298402, - "lat": 52.8912859, - "lon": -1.4799704, - "tags": { - "amenity": "post_box", - "postal_code": "DE24", - "ref": "DE24 447" - } -}, -{ - "type": "node", - "id": 287312345, - "lat": 52.9024587, - "lon": -1.4845394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 202" - } -}, -{ - "type": "node", - "id": 287326477, - "lat": 51.2214554, - "lon": -0.3698196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH4 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "TMJ-Mobile_0.6.1" - } -}, -{ - "type": "node", - "id": 287334364, - "lat": 51.4139942, - "lon": -0.7738962, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 287404939, - "lat": 52.5680319, - "lon": -2.1993353, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WV4 267" - } -}, -{ - "type": "node", - "id": 287433335, - "lat": 54.7327950, - "lon": -1.5230837, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b", - "postal_code": "DH6 5AX", - "ref": "DH6 320" - } -}, -{ - "type": "node", - "id": 287437362, - "lat": 50.4558364, - "lon": -3.5750605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3", - "ref": "TQ3 376D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 287438204, - "lat": 51.5037436, - "lon": -0.0988123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 24;SE1 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287534327, - "lat": 55.8934123, - "lon": -4.0459473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "ref": "ML5 48" - } -}, -{ - "type": "node", - "id": 287539666, - "lat": 56.0325572, - "lon": -3.3909749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 142", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 287547648, - "lat": 55.8946372, - "lon": -4.0565280, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 287605281, - "lat": 53.9452133, - "lon": -1.0862947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO23 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 287615662, - "lat": 51.5469442, - "lon": -1.7028856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 392D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 287746365, - "lat": 53.0865553, - "lon": -2.4367525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "ref": "CW2 23" - } -}, -{ - "type": "node", - "id": 287766671, - "lat": 51.5004583, - "lon": -0.2774064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 287849626, - "lat": 52.8991410, - "lon": -1.4809981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 184" - } -}, -{ - "type": "node", - "id": 287898961, - "lat": 52.5077197, - "lon": -1.7824864, - "tags": { - "amenity": "post_box", - "ref": "B36 1354", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287899799, - "lat": 52.5091341, - "lon": -1.7770522, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B36 1353", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287904350, - "lat": 52.1078204, - "lon": 0.4198420, - "tags": { - "amenity": "post_box", - "ref": "CB9 47" - } -}, -{ - "type": "node", - "id": 287904356, - "lat": 52.1031875, - "lon": 0.4105231, - "tags": { - "amenity": "post_box", - "ref": "CB9 48" - } -}, -{ - "type": "node", - "id": 287905022, - "lat": 52.5059925, - "lon": -1.7874715, - "tags": { - "amenity": "post_box", - "ref": "B36 233", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287921534, - "lat": 53.7904861, - "lon": -0.2587972, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 287970164, - "lat": 52.4977933, - "lon": -1.7778111, - "tags": { - "amenity": "post_box", - "ref": "B34 957", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287974279, - "lat": 52.4979580, - "lon": -1.7839484, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B34 926", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 287978198, - "lat": 52.4941089, - "lon": -1.7820037, - "tags": { - "amenity": "post_box", - "ref": "B34 1360", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288026554, - "lat": 51.4955822, - "lon": -0.0738525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288026593, - "lat": 51.4949292, - "lon": -0.0694566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288064977, - "lat": 52.2027373, - "lon": 0.1084938, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-09", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "note": "\"This Postbox is for pre-paid parcels bought online, barcode returns and business franked mail\"", - "opening_hours": "Mo-Fr 12:00-17:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "CB3 9", - "ref": "CB3 194P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288064978, - "lat": 52.2027399, - "lon": 0.1085291, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-09", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CB3 9", - "ref": "CB3 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288093543, - "lat": 53.4213227, - "lon": -2.9259195, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 288096880, - "lat": 53.4242206, - "lon": -2.9156302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 288190326, - "lat": 52.1569773, - "lon": -0.4519095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288209499, - "lat": 52.1548163, - "lon": -0.4310106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288251805, - "lat": 52.1458552, - "lon": -0.4320214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 288292892, - "lat": 52.8692262, - "lon": -1.4423713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 6" - } -}, -{ - "type": "node", - "id": 288315242, - "lat": 50.7255909, - "lon": -3.4890613, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 288318792, - "lat": 50.7236535, - "lon": -3.4893631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-12-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX1 383D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 288323718, - "lat": 50.7139849, - "lon": -3.5335825, - "tags": { - "amenity": "post_box", - "ref": "EX2 155", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 288331616, - "lat": 54.7412932, - "lon": -1.5167151, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b", - "ele": "105.6297607", - "postal_code": "DH6 5DE", - "ref": "DH6 292" - } -}, -{ - "type": "node", - "id": 288336768, - "lat": 50.7311914, - "lon": -3.5245515, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX4 86", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 288340403, - "lat": 53.6844887, - "lon": -1.5878497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 213" - } -}, -{ - "type": "node", - "id": 288344701, - "lat": 54.9792402, - "lon": -1.7922044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 79" - } -}, -{ - "type": "node", - "id": 288350065, - "lat": 55.9486960, - "lon": -3.2853143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH12 555", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 288353871, - "lat": 51.5084074, - "lon": -0.2689135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "W3 11D" - } -}, -{ - "type": "node", - "id": 288353872, - "lat": 51.5088500, - "lon": -0.2641640, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-14", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 288353873, - "lat": 51.5107925, - "lon": -0.2678930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 288359094, - "lat": 51.2724488, - "lon": -1.0835292, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 267" - } -}, -{ - "type": "node", - "id": 288390253, - "lat": 51.2438637, - "lon": 0.9634109, - "tags": { - "amenity": "post_box", - "mapillary": "571225777385124", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 168", - "survey:date": "2021-07-11" - } -}, -{ - "type": "node", - "id": 288403657, - "lat": 53.3895856, - "lon": -2.9557103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 69 by Carron Company at Princes Gate West, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Princes Gate West.jpg" - } -}, -{ - "type": "node", - "id": 288411204, - "lat": 53.3907251, - "lon": -2.9614040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 953 by Carron Company on North Hill Street, Toxteth", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 953", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on North Hill Street, Toxteth.jpg" - } -}, -{ - "type": "node", - "id": 288416153, - "lat": 53.3891160, - "lon": -2.9599226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 234 by Carron Company on High Park Street near Powis Street, Toxteth.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on High Park Street, Toxteth.jpg" - } -}, -{ - "type": "node", - "id": 288416387, - "lat": 53.0137272, - "lon": -1.1796975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 158D", - "ref:GB:uprn": "10015386661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288491992, - "lat": 53.3708758, - "lon": -2.7570721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA8 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 288493141, - "lat": 53.7718377, - "lon": -1.4213196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 983" - } -}, -{ - "type": "node", - "id": 288493162, - "lat": 53.7694117, - "lon": -1.4219637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 883", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 288505615, - "lat": 54.0550296, - "lon": -2.8841680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 288510242, - "lat": 51.2394760, - "lon": -0.7089556, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-10", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "postal_code": "GU12", - "ref": "GU12 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 288515596, - "lat": 51.2314334, - "lon": -0.6098642, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU2 254", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GU2", - "ref": "GU2 254D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288522545, - "lat": 51.2212221, - "lon": -0.7546419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU10 89", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU10", - "ref": "GU10 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 288546059, - "lat": 51.5006010, - "lon": -0.2602913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 288562212, - "lat": 51.4979324, - "lon": -0.2623626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 288666228, - "lat": 52.2386180, - "lon": 0.7040721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 288687545, - "lat": 51.7479646, - "lon": -1.1392446, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX33 448", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 288705775, - "lat": 51.5674903, - "lon": -0.1320588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "N19 7", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 288708478, - "lat": 54.7328439, - "lon": -1.5859283, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 288733688, - "lat": 52.2361651, - "lon": 0.6965158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 288733689, - "lat": 52.2337340, - "lon": 0.6929216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 288736024, - "lat": 54.7237146, - "lon": -1.5633226, - "tags": { - "amenity": "post_box", - "ele": "117.17", - "ref": "DH6 9" - } -}, -{ - "type": "node", - "id": 288771882, - "lat": 51.4515435, - "lon": -0.4256982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 288771899, - "lat": 51.4491086, - "lon": -0.4317472, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 288788934, - "lat": 51.4469014, - "lon": -0.4233896, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 288818937, - "lat": 51.8134246, - "lon": -0.7845274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288819022, - "lat": 51.8110459, - "lon": -0.7790373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288824287, - "lat": 51.8092059, - "lon": -0.7842779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 288836132, - "lat": 52.3420381, - "lon": -0.0826486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 248" - } -}, -{ - "type": "node", - "id": 288853753, - "lat": 52.3431476, - "lon": -0.0752807, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 288860295, - "lat": 51.5139218, - "lon": -0.2624711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 288862306, - "lat": 51.5139536, - "lon": -0.2637339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 25" - } -}, -{ - "type": "node", - "id": 288928896, - "lat": 50.7572489, - "lon": 0.1899520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN20 708D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 288958064, - "lat": 53.8093025, - "lon": -1.5532005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 288977101, - "lat": 53.8070094, - "lon": -1.5636344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS3 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 288977897, - "lat": 51.7981785, - "lon": -0.0959120, - "tags": { - "amenity": "post_box", - "note": "facing Fordwich Rise", - "post_box:type": "wall", - "ref": "SG14 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 288980169, - "lat": 54.5638130, - "lon": -1.2454079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 288988359, - "lat": 51.4392671, - "lon": -0.1478426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SW12 20" - } -}, -{ - "type": "node", - "id": 288988363, - "lat": 51.5174547, - "lon": -0.0829924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2M 220;EC2M 2201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288991922, - "lat": 51.5059439, - "lon": -0.0952300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 85;SE1 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288991928, - "lat": 51.4313085, - "lon": -0.1041128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 288991935, - "lat": 51.4264966, - "lon": -0.1050721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289009557, - "lat": 51.4641749, - "lon": -0.1313196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW4 3" - } -}, -{ - "type": "node", - "id": 289009560, - "lat": 51.4632382, - "lon": -0.1341688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW4 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 289009568, - "lat": 51.4788313, - "lon": -0.1234143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW8 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 289009573, - "lat": 51.4824433, - "lon": -0.1240348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 289009577, - "lat": 51.4907621, - "lon": -0.1033688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289009578, - "lat": 51.4878873, - "lon": -0.1062617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289046235, - "lat": 52.2534781, - "lon": 0.7134762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "IP32 2019", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 289065519, - "lat": 52.2499717, - "lon": 0.7060849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP33 2148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 289068884, - "lat": 52.2476878, - "lon": 0.7061192, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-04", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2049", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289094155, - "lat": 52.2476697, - "lon": 0.6999367, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2084", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289096502, - "lat": 52.2500851, - "lon": 0.6896721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP33 2208D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 289103452, - "lat": 52.2498864, - "lon": 0.6816335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "IP33 2114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 289103476, - "lat": 52.2457503, - "lon": 0.6823482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 289107903, - "lat": 52.2498263, - "lon": 0.6703042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "information_plate:date": "2017-01-12", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP33 2035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 289114044, - "lat": 52.2471411, - "lon": 0.7111719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "franked mail only", - "opening_hours": "Mo-Fr 10:30-17:30", - "post_box:type": "meter", - "ref": "IP33 8236", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 289114056, - "lat": 52.2493488, - "lon": 0.7125390, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-06", - "check_date:collection_times": "2024-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2004", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289136642, - "lat": 52.2477036, - "lon": 0.7185425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2064D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289136778, - "lat": 52.2492181, - "lon": 0.7163369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289173718, - "lat": 54.9979846, - "lon": -1.5910940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 289173873, - "lat": 54.9916761, - "lon": -1.5839987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 252D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 289173879, - "lat": 54.9915381, - "lon": -1.5894051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 289175164, - "lat": 54.9810655, - "lon": -1.6053448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE2 155A", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 289228199, - "lat": 51.5198704, - "lon": -0.2509740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 66D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source:position": "survey by GNSS RTK" - } -}, -{ - "type": "node", - "id": 289240072, - "lat": 52.2358999, - "lon": 0.7054988, - "tags": { - "amenity": "post_box", - "check_date": "2024-5-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289241509, - "lat": 55.0721003, - "lon": -1.5879977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 6NN", - "ref": "NE23 244" - } -}, -{ - "type": "node", - "id": 289267751, - "lat": 52.2506133, - "lon": 0.7289743, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP32 2031" - } -}, -{ - "type": "node", - "id": 289399629, - "lat": 56.4997095, - "lon": -2.7394134, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 296D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289424257, - "lat": 51.4914958, - "lon": -0.0900158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289435988, - "lat": 52.8950354, - "lon": -1.8589656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 289446286, - "lat": 52.8980807, - "lon": -1.8630115, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289446287, - "lat": 52.8980658, - "lon": -1.8662007, - "tags": { - "amenity": "post_box", - "ref": "ST14 1403" - } -}, -{ - "type": "node", - "id": 289472699, - "lat": 51.5311723, - "lon": -2.4129548, - "tags": { - "amenity": "post_box", - "mapillary": "343997950998273", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 79", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 289476945, - "lat": 53.4045012, - "lon": -1.4450917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S4 879D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289480478, - "lat": 50.4288166, - "lon": -3.5871591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ4", - "ref": "TQ4 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 289481389, - "lat": 51.5839947, - "lon": -2.5549432, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS32", - "ref": "BS32 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289508627, - "lat": 55.0784415, - "lon": -1.5857532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 6EA", - "ref": "NE23 692" - } -}, -{ - "type": "node", - "id": 289510040, - "lat": 53.4102323, - "lon": -1.4421434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S4 1121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289521301, - "lat": 53.4235588, - "lon": -1.4430170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S5 443D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 289523803, - "lat": 51.3732994, - "lon": -0.4144963, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "KT12", - "ref": "KT12 100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 289526341, - "lat": 51.5276713, - "lon": -0.6497868, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 289526937, - "lat": 50.8048892, - "lon": 0.0082041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN10 650", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 289527583, - "lat": 53.4199770, - "lon": -1.4516319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S5 717", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289529633, - "lat": 53.4211463, - "lon": -1.4621328, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 860", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289545591, - "lat": 52.2445712, - "lon": 0.7487870, - "tags": { - "amenity": "post_box", - "ref": "IP32 8215" - } -}, -{ - "type": "node", - "id": 289563806, - "lat": 51.4928521, - "lon": -0.1698021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW3 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 289563807, - "lat": 51.4931918, - "lon": -0.1695090, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-02", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW3 33", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 289563809, - "lat": 51.4916732, - "lon": -0.1721519, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-17", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 289563810, - "lat": 51.4894061, - "lon": -0.1757952, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-03", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289563811, - "lat": 51.4899238, - "lon": -0.1791152, - "tags": { - "addr:housenumber": "44", - "addr:street": "Cranley Gardens", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW7 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289563813, - "lat": 51.4873314, - "lon": -0.1754666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW10 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 289563814, - "lat": 51.4855372, - "lon": -0.1767951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW3 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 289563816, - "lat": 51.4811400, - "lon": -0.1769372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "sticker suggests this is now a collection on delivery box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289563818, - "lat": 51.4902686, - "lon": -0.1873614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Looks quite an old pillar box, might be Victorian but no obviously visible cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 15", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289563826, - "lat": 51.4783785, - "lon": -0.1700837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SW11", - "ref": "SW11 11", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 289563828, - "lat": 51.4757544, - "lon": -0.1673782, - "tags": { - "amenity": "post_box", - "postal_code": "SW11", - "ref": "SW11 1" - } -}, -{ - "type": "node", - "id": 289563830, - "lat": 51.4731690, - "lon": -0.1653988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW11", - "ref": "SW11 51", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 289563832, - "lat": 51.4671183, - "lon": -0.1624643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "name": "SW11 38", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW11", - "ref": "SW11 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 289563833, - "lat": 51.4647404, - "lon": -0.1598415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW11 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289569158, - "lat": 51.4511772, - "lon": -0.1475341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW12 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 289569159, - "lat": 51.4576861, - "lon": -0.1424925, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW4 12" - } -}, -{ - "type": "node", - "id": 289569161, - "lat": 51.4966916, - "lon": -0.1833137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "name": "Queensgate Gardens/Gloucester Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW7 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289569162, - "lat": 51.4942344, - "lon": -0.1826870, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW7", - "ref": "SW7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289630562, - "lat": 52.1861684, - "lon": 0.1572553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289736583, - "lat": 50.7172217, - "lon": -3.5316265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX2 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 289806962, - "lat": 51.4355026, - "lon": -0.1148028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 09:00", - "ref": "SW16 28", - "source": "TMJ-Mobile_0.6.1" - } -}, -{ - "type": "node", - "id": 289806974, - "lat": 51.4390005, - "lon": -0.1113942, - "tags": { - "amenity": "post_box", - "ref": "SW2 54", - "source": "TMJ-Mobile_0.6.1" - } -}, -{ - "type": "node", - "id": 289815018, - "lat": 53.8030914, - "lon": -1.6715924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS28", - "ref": "LS28 598" - } -}, -{ - "type": "node", - "id": 289818121, - "lat": 53.8043985, - "lon": -1.6144517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 647" - } -}, -{ - "type": "node", - "id": 289819859, - "lat": 51.4344540, - "lon": -0.1228642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW16 1" - } -}, -{ - "type": "node", - "id": 289819861, - "lat": 51.4379615, - "lon": -0.1273766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW16 11" - } -}, -{ - "type": "node", - "id": 289826020, - "lat": 51.4324656, - "lon": -0.1229678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW16 77" - } -}, -{ - "type": "node", - "id": 289829479, - "lat": 51.5129814, - "lon": -0.0883737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "mail:stamped": "only", - "note": "The two refs on this double postbox have been renumbered from EC3 to EC3V...", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3V 310;EC3V 3101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289829481, - "lat": 51.5129865, - "lon": -0.0883259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "this was a meter box which now accepts parcels", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC3V 311P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289829482, - "lat": 51.5129158, - "lon": -0.0909940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4N 401;EC4N 4011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289923327, - "lat": 51.4405631, - "lon": -0.1106266, - "tags": { - "amenity": "post_box", - "ref": "SW2 15" - } -}, -{ - "type": "node", - "id": 289923353, - "lat": 51.4471514, - "lon": -0.1194389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 289935769, - "lat": 53.9357365, - "lon": -1.1108440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 393D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289939199, - "lat": 53.9488077, - "lon": -1.1001312, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO24 2DT", - "ref": "YO24 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-25" - } -}, -{ - "type": "node", - "id": 289941252, - "lat": 53.9504887, - "lon": -1.0936612, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO24 1DE", - "ref": "YO24 171", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 289948381, - "lat": 50.4111466, - "lon": -3.5652321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 289956283, - "lat": 50.4135870, - "lon": -3.5723746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ4", - "ref": "TQ4 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 289979969, - "lat": 51.4374513, - "lon": -0.0946930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289980617, - "lat": 51.4374410, - "lon": -0.1019162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 289991604, - "lat": 52.2315800, - "lon": 0.7259680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290009638, - "lat": 50.6905699, - "lon": -3.4771276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX3 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290017345, - "lat": 51.4518795, - "lon": -0.1216237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 290021304, - "lat": 50.6800049, - "lon": -3.4635863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX3 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-01-14" - } -}, -{ - "type": "node", - "id": 290025601, - "lat": 51.4522675, - "lon": -0.1174506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 290025607, - "lat": 51.4546398, - "lon": -0.1157314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 290025638, - "lat": 51.4510858, - "lon": -0.1129271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 290025761, - "lat": 50.6846060, - "lon": -3.4609728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX3 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-01-14" - } -}, -{ - "type": "node", - "id": 290026569, - "lat": 50.6857820, - "lon": -3.4672639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX3 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-14" - } -}, -{ - "type": "node", - "id": 290033610, - "lat": 50.6873419, - "lon": -3.4686759, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX3 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290034332, - "lat": 51.7364397, - "lon": -0.4427973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP3 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 290043618, - "lat": 51.2746397, - "lon": -1.0760580, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 297" - } -}, -{ - "type": "node", - "id": 290157064, - "lat": 55.8596257, - "lon": -4.0681309, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290205752, - "lat": 51.3942817, - "lon": -0.2988470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 19D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 290205763, - "lat": 51.3906535, - "lon": -0.2982234, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290205765, - "lat": 51.3886506, - "lon": -0.2946343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 142D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 290261421, - "lat": 51.3934265, - "lon": -0.3044372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "KT6", - "ref": "KT6 74;KT6 7401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 290287326, - "lat": 52.6269810, - "lon": -0.2749093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PE4 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290287532, - "lat": 51.7403555, - "lon": -0.4588723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 290289272, - "lat": 51.7466680, - "lon": -1.1352910, - "tags": { - "amenity": "post_box", - "note": "This freestanding box in use. Second box in wall is out of use.", - "post_box:type": "pillar", - "ref": "OX33 1", - "source": "photograph;gps_survey" - } -}, -{ - "type": "node", - "id": 290289341, - "lat": 51.7236002, - "lon": -1.1334030, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "OX44 27", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 290295989, - "lat": 53.6765515, - "lon": -1.5887234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290296068, - "lat": 53.6785217, - "lon": -1.5875798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290296218, - "lat": 53.6817970, - "lon": -1.5886929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290296234, - "lat": 53.6824418, - "lon": -1.5895211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 209" - } -}, -{ - "type": "node", - "id": 290346364, - "lat": 51.5269502, - "lon": -0.1373487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "RH aperture blocked, RH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 43D" - } -}, -{ - "type": "node", - "id": 290359015, - "lat": 51.4462352, - "lon": -0.1516414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290433439, - "lat": 53.6894700, - "lon": -1.5974412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 209" - } -}, -{ - "type": "node", - "id": 290433491, - "lat": 53.6900101, - "lon": -1.6028204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290433826, - "lat": 51.2152563, - "lon": -0.5602428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "GU4", - "ref": "GU4 286" - } -}, -{ - "type": "node", - "id": 290435849, - "lat": 51.2155320, - "lon": -0.5670923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GU4", - "ref": "GU4 118" - } -}, -{ - "type": "node", - "id": 290441611, - "lat": 53.6914085, - "lon": -1.5963491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 19" - } -}, -{ - "type": "node", - "id": 290441688, - "lat": 51.2103261, - "lon": -0.5627475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GU4", - "ref": "GU4 172" - } -}, -{ - "type": "node", - "id": 290443473, - "lat": 51.2063313, - "lon": -0.5639282, - "tags": { - "amenity": "post_box", - "postal_code": "GU4", - "ref": "GU4 288" - } -}, -{ - "type": "node", - "id": 290471496, - "lat": 53.3531716, - "lon": -3.1225792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "George V Type B post box CH61 485 on Lyndhurst Road near Thurstaston Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH61 485", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Lyndhurst Road, Irby.jpg" - } -}, -{ - "type": "node", - "id": 290471659, - "lat": 53.3732750, - "lon": -3.1702091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH48 480 at the junction of Black Horse Hill & Lang Lane South.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 489", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:Post box on Black Horse Hill, West Kirby" - } -}, -{ - "type": "node", - "id": 290471665, - "lat": 53.3735828, - "lon": -3.1752056, - "tags": { - "amenity": "post_box", - "description": "Edward VII post box CH48 273 installed in the sandstone of Grange Hill, West Kirby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH48 273", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Grange Hill, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 290471851, - "lat": 53.3575461, - "lon": -3.1233766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type A post box CH61 418 at the corner of Hillview Road and Mill Hill Road, Irby, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 418", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Hillview Road, Irby.jpg" - } -}, -{ - "type": "node", - "id": 290474001, - "lat": 52.5351292, - "lon": -2.0385835, - "tags": { - "amenity": "post_box", - "note": "unsure which side of road" - } -}, -{ - "type": "node", - "id": 290511626, - "lat": 51.2283691, - "lon": -1.1354692, - "tags": { - "amenity": "post_box", - "mapillary": "160535889558996", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 380", - "survey:date": "2021-08-07" - } -}, -{ - "type": "node", - "id": 290513931, - "lat": 52.5278461, - "lon": -2.0431742, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 290521060, - "lat": 53.4169976, - "lon": -1.3132949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290577073, - "lat": 52.1986940, - "lon": 0.1218746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 102", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290621082, - "lat": 51.4902565, - "lon": -0.1500638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "TMJ-Mobile_0.6.1" - } -}, -{ - "type": "node", - "id": 290624998, - "lat": 57.1481324, - "lon": -2.1287150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 114D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 290625000, - "lat": 57.1468654, - "lon": -2.1293679, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 5BU", - "addr:street": "Hamilton Place", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 90D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 290625003, - "lat": 57.1448284, - "lon": -2.1282506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 290632121, - "lat": 51.8009133, - "lon": -0.0862900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG14 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290633281, - "lat": 57.1437235, - "lon": -2.1086350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 290633291, - "lat": 57.1446409, - "lon": -2.1053087, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "AB10 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 290639721, - "lat": 51.8078553, - "lon": -0.0870931, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG14 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290729564, - "lat": 53.3759186, - "lon": -2.7043709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 7", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 290729684, - "lat": 53.3809980, - "lon": -2.7296788, - "tags": { - "amenity": "post_box", - "ref": "WA8 23D" - } -}, -{ - "type": "node", - "id": 290810720, - "lat": 52.5303644, - "lon": -2.0554494, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 290813627, - "lat": 55.0861734, - "lon": -1.6126185, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 8JB", - "ref": "NE23 664" - } -}, -{ - "type": "node", - "id": 290824632, - "lat": 50.9899489, - "lon": -1.4905412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 522", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 290824637, - "lat": 50.9940846, - "lon": -1.4796436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290824841, - "lat": 50.9956867, - "lon": -1.4757132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 652", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 290825742, - "lat": 55.0857177, - "lon": -1.6026899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NE23 8DU", - "ref": "NE23 612" - } -}, -{ - "type": "node", - "id": 290830343, - "lat": 55.0973716, - "lon": -1.6093613, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 1WE", - "ref": "NE23 686" - } -}, -{ - "type": "node", - "id": 290831247, - "lat": 55.9533013, - "lon": -3.2818953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 543D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 290833412, - "lat": 52.5071635, - "lon": -1.7520150, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B36 1190", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290838581, - "lat": 52.5240726, - "lon": -2.0656576, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 290842527, - "lat": 51.3713948, - "lon": -1.3691591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG20 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 290843849, - "lat": 51.7214787, - "lon": -1.1680443, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "OX44 554", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 290843888, - "lat": 51.7171324, - "lon": -1.1604082, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX44 355", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 290844043, - "lat": 51.3751556, - "lon": -1.4000247, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 290848356, - "lat": 51.3659580, - "lon": -1.3874016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290849535, - "lat": 51.3685492, - "lon": -1.3601513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG20 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290851431, - "lat": 51.7182251, - "lon": -1.1394605, - "tags": { - "amenity": "post_box", - "ref": "OX44 101", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 290851444, - "lat": 51.7215973, - "lon": -1.1357329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "mapillary": "770611217178398", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX44 235", - "source": "photograph", - "survey:date": "2020-10-25" - } -}, -{ - "type": "node", - "id": 290854993, - "lat": 56.0094005, - "lon": -3.3944844, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY11 117D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290869249, - "lat": 51.4903025, - "lon": 0.0689295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE18", - "ref": "SE18 33;SE18 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290909412, - "lat": 56.0127248, - "lon": -3.3951847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "lamp", - "ref": "KY11 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 290940420, - "lat": 51.8374308, - "lon": -1.1872391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "OX5", - "ref": "OX5 695", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290952990, - "lat": 51.5062248, - "lon": -0.3146958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "470881963995146", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-01-10" - } -}, -{ - "type": "node", - "id": 290965668, - "lat": 51.7369363, - "lon": -0.4733286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 290965693, - "lat": 51.7336143, - "lon": -0.4728405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP3 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 290966273, - "lat": 51.7487168, - "lon": -0.4598799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 290968721, - "lat": 51.4886504, - "lon": -0.1794935, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A.Handyside & Co Ltd Derby & London", - "post_box:type": "pillar", - "ref": "SW7 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 290969332, - "lat": 51.9477701, - "lon": 0.9367966, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 290994695, - "lat": 54.7715305, - "lon": -5.7509873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "Ballycarry Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291000704, - "lat": 51.4830486, - "lon": 0.0056776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE10", - "ref": "SE10 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291000749, - "lat": 51.4837981, - "lon": -0.0025623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE10", - "ref": "SE10 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291002529, - "lat": 53.8624673, - "lon": -0.3828013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 291002728, - "lat": 51.3278479, - "lon": -2.4727572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291012484, - "lat": 51.3899724, - "lon": -0.2914187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 291086393, - "lat": 51.3768326, - "lon": -0.8656831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291115188, - "lat": 53.7055282, - "lon": -1.6420711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 80" - } -}, -{ - "type": "node", - "id": 291125778, - "lat": 53.7062639, - "lon": -1.6381665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 211" - } -}, -{ - "type": "node", - "id": 291177930, - "lat": 53.3543383, - "lon": -3.1118927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box CH61 486 post box by Carron Company at the corner of Coombe Road and Thingwall Road, Wirral.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH61 486", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Coombe Road, Irby.jpg" - } -}, -{ - "type": "node", - "id": 291177941, - "lat": 53.3542258, - "lon": -3.0832519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH61 317 near the Basset Hound, Thingwall, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Thingwall Village.jpg" - } -}, -{ - "type": "node", - "id": 291217728, - "lat": 51.9969909, - "lon": -1.2481133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX17 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291218170, - "lat": 51.9958458, - "lon": -1.2492836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX17 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291219357, - "lat": 51.9950331, - "lon": -1.2533637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OX17 1161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291264662, - "lat": 53.3990301, - "lon": -1.4937812, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S6 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291284548, - "lat": 52.9011709, - "lon": -1.4779588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 152", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 291350842, - "lat": 54.2909411, - "lon": -3.0150444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "LA12 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291426558, - "lat": 51.1956835, - "lon": -0.5427877, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 291427313, - "lat": 51.4415580, - "lon": -0.1218853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW2 52" - } -}, -{ - "type": "node", - "id": 291427444, - "lat": 51.4399201, - "lon": -0.1146177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW2 38" - } -}, -{ - "type": "node", - "id": 291427455, - "lat": 51.4393235, - "lon": -0.1198003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW2 24" - } -}, -{ - "type": "node", - "id": 291427457, - "lat": 51.4385955, - "lon": -0.1227810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW2 210" - } -}, -{ - "type": "node", - "id": 291448954, - "lat": 53.6917323, - "lon": -1.5893653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 291455077, - "lat": 53.3089121, - "lon": -4.6296335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "ref": "LL65 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291455134, - "lat": 53.3072165, - "lon": -4.6362326, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 291564015, - "lat": 50.0817699, - "lon": -5.3141171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 291572859, - "lat": 51.4598775, - "lon": -2.5842389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "collection_times_checked": "2015-08-12", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS2 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 291574092, - "lat": 52.6338019, - "lon": 1.5477960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 291587801, - "lat": 51.8117623, - "lon": 1.1496489, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 4EF", - "ref": "CO15 88" - } -}, -{ - "type": "node", - "id": 291587802, - "lat": 51.8161736, - "lon": 1.1652263, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO15 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291589953, - "lat": 51.8132614, - "lon": 1.1740741, - "tags": { - "amenity": "post_box", - "mapillary": "2936360723302412", - "post_box:type": "pillar", - "postal_code": "CO15 4LN", - "ref": "CO15 80", - "survey:date": "2021-04-29" - } -}, -{ - "type": "node", - "id": 291606140, - "lat": 51.4160746, - "lon": -0.3046803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291628064, - "lat": 52.1580431, - "lon": -0.4377984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291658650, - "lat": 51.3710769, - "lon": -0.1169474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 86D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291658671, - "lat": 51.3698684, - "lon": -0.1095696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:type": "lamp", - "ref": "CR0 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291658725, - "lat": 51.3736076, - "lon": -0.1053718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 64", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 291658749, - "lat": 51.3676643, - "lon": -0.0964241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 163", - "source": "TMJ-Mobile_0.6.1;survey" - } -}, -{ - "type": "node", - "id": 291658755, - "lat": 51.3701988, - "lon": -0.0998657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "name": "High Street (103)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CR0 562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "TMJ-Mobile_0.6.1" - } -}, -{ - "type": "node", - "id": 291659157, - "lat": 57.4749742, - "lon": -4.2333322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291667660, - "lat": 51.4337369, - "lon": -0.1552458, - "tags": { - "amenity": "post_box", - "ref": "SW17 51" - } -}, -{ - "type": "node", - "id": 291674415, - "lat": 51.4379439, - "lon": -0.1544464, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW17 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291674455, - "lat": 51.4402293, - "lon": -0.1556323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 44" - } -}, -{ - "type": "node", - "id": 291675482, - "lat": 51.3809740, - "lon": -0.1202760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 433" - } -}, -{ - "type": "node", - "id": 291675791, - "lat": 51.3826427, - "lon": -0.1156570, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-21", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 152", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291675796, - "lat": 51.3858806, - "lon": -0.1141637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 233" - } -}, -{ - "type": "node", - "id": 291676054, - "lat": 51.3859236, - "lon": -0.1103943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 182" - } -}, -{ - "type": "node", - "id": 291676568, - "lat": 52.2096385, - "lon": 0.0667245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 277D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291676574, - "lat": 52.2105243, - "lon": 0.0611883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB23 274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291676980, - "lat": 51.3778293, - "lon": -0.1090186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291716369, - "lat": 51.3697424, - "lon": -0.0938468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CR0 238", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 238D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291720148, - "lat": 51.3721145, - "lon": -0.0917907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "name": "Fairfield Path (Alden Court)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 587", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291758450, - "lat": 55.8643571, - "lon": -5.4110030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "PA27", - "ref": "PA29 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 291763380, - "lat": 51.7901271, - "lon": 1.1514357, - "tags": { - "amenity": "post_box", - "mapillary": "1148991302271371", - "post_box:type": "pillar", - "postal_code": "CO15 1NZ", - "ref": "CO15 33", - "survey:date": "2021-05-07" - } -}, -{ - "type": "node", - "id": 291781145, - "lat": 55.4244920, - "lon": -5.6038736, - "tags": { - "amenity": "post_box", - "postal_code": "PA28", - "ref": "PA28 17" - } -}, -{ - "type": "node", - "id": 291793734, - "lat": 55.5920168, - "lon": -5.4639109, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PA28 25", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 291793736, - "lat": 55.5903462, - "lon": -5.4688340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PA28 21", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 291797583, - "lat": 53.0607821, - "lon": -2.5155815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 298" - } -}, -{ - "type": "node", - "id": 291859700, - "lat": 56.0384384, - "lon": -5.4326454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PA31 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 291859704, - "lat": 56.0368894, - "lon": -5.4331175, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA31", - "ref": "PA31 53" - } -}, -{ - "type": "node", - "id": 291899858, - "lat": 51.3707031, - "lon": -0.0829389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 5", - "source": "non-georeferenced photo & memory" - } -}, -{ - "type": "node", - "id": 291915240, - "lat": 56.0908816, - "lon": -5.5568097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "PA31", - "ref": "PA31 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 291950463, - "lat": 51.3862781, - "lon": -0.0986434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 76" - } -}, -{ - "type": "node", - "id": 291977324, - "lat": 51.4543660, - "lon": -0.1199944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW2 63", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291978003, - "lat": 55.0433363, - "lon": -1.5796743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE12 5UT", - "ref": "NE12 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 291979536, - "lat": 51.4539190, - "lon": -0.1220277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 291980776, - "lat": 50.9144434, - "lon": -1.4051665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291993232, - "lat": 52.2066085, - "lon": 0.1294435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291995786, - "lat": 51.4767736, - "lon": -2.5991423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS6 336", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 291998902, - "lat": 53.5487603, - "lon": -2.2751214, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 291999419, - "lat": 52.1048367, - "lon": -3.6318318, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-02", - "collection_times": "Mo-Fr 16:30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 291999461, - "lat": 52.1064060, - "lon": -3.6358496, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 292004426, - "lat": 50.6330352, - "lon": -3.3288493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX9 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292013327, - "lat": 51.4555770, - "lon": -0.1177963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 292017548, - "lat": 51.5371265, - "lon": -0.9109335, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 292053896, - "lat": 51.2565565, - "lon": -2.3520886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 292122299, - "lat": 52.6037739, - "lon": -1.1191823, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 520" - } -}, -{ - "type": "node", - "id": 292131860, - "lat": 51.4143144, - "lon": -0.2405434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 292133472, - "lat": 53.4131298, - "lon": -1.3312294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292135383, - "lat": 51.4289729, - "lon": 0.0487580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 292135502, - "lat": 51.4199654, - "lon": 0.0477809, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 292143404, - "lat": 50.7313137, - "lon": -3.5514109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292150696, - "lat": 53.5329776, - "lon": -2.2280910, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 292151122, - "lat": 53.5357169, - "lon": -2.2334554, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 292164271, - "lat": 51.5064888, - "lon": 0.3869285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 292171017, - "lat": 51.4451925, - "lon": -0.3374483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292180680, - "lat": 52.5622284, - "lon": -0.2444263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE2 58" - } -}, -{ - "type": "node", - "id": 292213523, - "lat": 55.9410406, - "lon": -3.2238628, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-16", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "EH11 133", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 292214400, - "lat": 55.9536712, - "lon": -3.2193907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 108" - } -}, -{ - "type": "node", - "id": 292238308, - "lat": 53.7644603, - "lon": -1.5627985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "inscription": "VR (Queen Victoria)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 646", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 292238331, - "lat": 53.7745802, - "lon": -1.5456885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 492", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 292264641, - "lat": 50.7289649, - "lon": -3.5210226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1230935847422547", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 241D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-09-02" - } -}, -{ - "type": "node", - "id": 292269638, - "lat": 50.7239471, - "lon": -3.5311778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-09", - "collection_times": "Mo-Fr 18:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX4 13;EX4 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 292303498, - "lat": 54.0079196, - "lon": -0.3186598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO25 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292321055, - "lat": 53.6946243, - "lon": -1.5883651, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292350307, - "lat": 52.2824252, - "lon": -1.9591134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292355795, - "lat": 50.9111753, - "lon": -1.3995081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 765D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292355796, - "lat": 50.9095687, - "lon": -1.3987237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 83D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 292355802, - "lat": 50.9031170, - "lon": -1.4037946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 92D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 292355803, - "lat": 50.9048534, - "lon": -1.4044184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8ND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 779D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 292355804, - "lat": 50.9089512, - "lon": -1.4052850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292355811, - "lat": 50.9121467, - "lon": -1.4037990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 777", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292355813, - "lat": 50.9153400, - "lon": -1.4027638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "SO17 71", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292355818, - "lat": 50.9195710, - "lon": -1.3980827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 292355819, - "lat": 50.9217951, - "lon": -1.3899517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO17", - "ref": "SO17 185D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 292373045, - "lat": 51.4376893, - "lon": -0.1504152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW17 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292381354, - "lat": 51.3903202, - "lon": -0.3013232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 292384168, - "lat": 52.9871694, - "lon": -2.4709309, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 292386758, - "lat": 53.7409997, - "lon": -2.6632700, - "tags": { - "amenity": "post_box", - "ref": "PR5 453" - } -}, -{ - "type": "node", - "id": 292403729, - "lat": 53.5900150, - "lon": -2.4399161, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 292407856, - "lat": 52.2428854, - "lon": 0.0308013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB3 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292408010, - "lat": 52.2798849, - "lon": -1.5904246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "this is a historic post box. A new plate has replaced the original Victorian one.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "CV34 105D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 292441154, - "lat": 51.9136061, - "lon": -2.0490939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 370", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 292442928, - "lat": 51.9187772, - "lon": -2.0481999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 171", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 292532068, - "lat": 51.5207451, - "lon": -0.0750553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 11;E1 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292542454, - "lat": 52.3246653, - "lon": -1.8882594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292551617, - "lat": 51.5450204, - "lon": 0.1608460, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.11" - } -}, -{ - "type": "node", - "id": 292562182, - "lat": 53.9717334, - "lon": -1.0776475, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-21", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "YO31 8JP", - "ref": "YO31 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292574223, - "lat": 50.7345144, - "lon": -3.5244653, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292609123, - "lat": 51.2416606, - "lon": -1.1405357, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 252" - } -}, -{ - "type": "node", - "id": 292613086, - "lat": 51.2465619, - "lon": -1.1385314, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 60" - } -}, -{ - "type": "node", - "id": 292616813, - "lat": 52.5102206, - "lon": -1.9324623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 197" - } -}, -{ - "type": "node", - "id": 292616825, - "lat": 52.5041310, - "lon": -1.9384119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 165" - } -}, -{ - "type": "node", - "id": 292616841, - "lat": 52.5052632, - "lon": -1.9309295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 289" - } -}, -{ - "type": "node", - "id": 292616846, - "lat": 52.5045349, - "lon": -1.9256890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 263" - } -}, -{ - "type": "node", - "id": 292616871, - "lat": 52.5019333, - "lon": -1.9195620, - "tags": { - "amenity": "post_box", - "postal_code": "B19", - "ref": "B19 3" - } -}, -{ - "type": "node", - "id": 292616876, - "lat": 52.5021300, - "lon": -1.9281717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 100" - } -}, -{ - "type": "node", - "id": 292616967, - "lat": 51.7736085, - "lon": -5.1080639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 292625755, - "lat": 50.7240121, - "lon": -3.5371843, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX4 73D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292667911, - "lat": 52.3983415, - "lon": -1.5334444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292668879, - "lat": 52.3877355, - "lon": -1.5290571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV3", - "ref": "CV3 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292743337, - "lat": 51.4623980, - "lon": -0.1675251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW11", - "ref": "SW11 44", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 292747451, - "lat": 51.4460830, - "lon": -0.1499889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW12 14;SW12 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 292755389, - "lat": 51.4966346, - "lon": -0.1378574, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-04", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "colour": "black", - "note": "Two black wall mounted boxes here.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW1 227", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 292826932, - "lat": 51.9473715, - "lon": -5.1800276, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292836848, - "lat": 52.6457251, - "lon": -3.1635548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 292914184, - "lat": 52.1922158, - "lon": 0.1322840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 3D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 292916483, - "lat": 54.3538776, - "lon": -3.1901436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA20 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 292965274, - "lat": 55.8361439, - "lon": -4.3352182, - "tags": { - "amenity": "post_box", - "postal_code": "G52", - "ref": "G52 346" - } -}, -{ - "type": "node", - "id": 293008624, - "lat": 51.4421048, - "lon": -0.1268375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW2 59" - } -}, -{ - "type": "node", - "id": 293013182, - "lat": 51.4418338, - "lon": -0.1403021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293029012, - "lat": 51.4416947, - "lon": -0.3405287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 293031143, - "lat": 52.3662096, - "lon": -1.2368537, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "CV21 254" - } -}, -{ - "type": "node", - "id": 293039978, - "lat": 51.4183713, - "lon": -0.1855842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW19 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293147898, - "lat": 53.4847368, - "lon": -2.2490709, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M3 159", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 293150437, - "lat": 50.7188706, - "lon": -3.5313965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX2 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 293150557, - "lat": 50.7210643, - "lon": -3.5206355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX2 232;EX2 2320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293170913, - "lat": 51.4568790, - "lon": -2.5612570, - "tags": { - "amenity": "post_box", - "ref": "BS5 225" - } -}, -{ - "type": "node", - "id": 293190123, - "lat": 52.5151789, - "lon": -1.9428010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 1008" - } -}, -{ - "type": "node", - "id": 293190126, - "lat": 52.5134279, - "lon": -1.9394771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 290" - } -}, -{ - "type": "node", - "id": 293190128, - "lat": 52.5125888, - "lon": -1.9429080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 590" - } -}, -{ - "type": "node", - "id": 293190176, - "lat": 52.5078671, - "lon": -1.9532552, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 37" - } -}, -{ - "type": "node", - "id": 293190182, - "lat": 52.5121959, - "lon": -1.9583781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikidata": "Q110398629" - } -}, -{ - "type": "node", - "id": 293190204, - "lat": 52.5125664, - "lon": -1.9519406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 509" - } -}, -{ - "type": "node", - "id": 293190206, - "lat": 52.5141999, - "lon": -1.9473277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 148" - } -}, -{ - "type": "node", - "id": 293190227, - "lat": 52.5171811, - "lon": -1.9510825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 1196" - } -}, -{ - "type": "node", - "id": 293190230, - "lat": 52.5111951, - "lon": -1.9456194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 393" - } -}, -{ - "type": "node", - "id": 293228970, - "lat": 52.3743268, - "lon": -1.2413237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "142210391167713", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 17", - "survey:date": "2020-12-30" - } -}, -{ - "type": "node", - "id": 293271649, - "lat": 53.7161820, - "lon": -1.5792037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF3 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 293271710, - "lat": 53.7169249, - "lon": -1.5712299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293282814, - "lat": 54.2770033, - "lon": -3.2110772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA20 133", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 293286932, - "lat": 51.4625760, - "lon": -0.0645102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 51D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293290284, - "lat": 50.7697508, - "lon": -1.9213591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH11 38", - "ref:GB:uprn": "10015353192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293297211, - "lat": 52.2212655, - "lon": -0.1394762, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "PE19", - "ref": "PE19 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293298050, - "lat": 52.2243776, - "lon": -0.0625338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293346168, - "lat": 51.4094502, - "lon": -0.2266684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 293346191, - "lat": 51.4094788, - "lon": -0.2298300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 293408474, - "lat": 51.3448960, - "lon": -0.2331411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "tree", - "post_box:type": "lamp", - "ref": "KT17 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293463206, - "lat": 50.9264278, - "lon": -1.7925606, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SP6", - "ref": "SP6 138" - } -}, -{ - "type": "node", - "id": 293464238, - "lat": 50.9081747, - "lon": -1.3340638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 634", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293465199, - "lat": 50.9120029, - "lon": -1.3348224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 487D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 293534919, - "lat": 51.4420152, - "lon": -0.3354324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 293574911, - "lat": 54.0773431, - "lon": -0.9362384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "YO60 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293583447, - "lat": 51.8053333, - "lon": 1.1774025, - "tags": { - "amenity": "post_box", - "mapillary": "1146550122788962", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO15 4BE", - "ref": "CO15 116", - "survey:date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 293628390, - "lat": 51.4510471, - "lon": -0.7834013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG42 59", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 293630537, - "lat": 51.5387307, - "lon": -0.8726517, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 293630543, - "lat": 51.5376576, - "lon": -0.9043653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "colour": "gold", - "olympic_gold": "Leander Rowers", - "olympic_gold:note": "Alex Gregory and Pete Reed in the men’s coxless four and Anna Watkins in the women’s double scull", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG9 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293651490, - "lat": 53.3944250, - "lon": -2.8922030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "648640090165747", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L16 766", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 293685400, - "lat": 53.3840259, - "lon": -2.8924701, - "tags": { - "amenity": "post_box", - "ref": "L18 598" - } -}, -{ - "type": "node", - "id": 293689544, - "lat": 50.9605185, - "lon": -2.4144303, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015349379" - } -}, -{ - "type": "node", - "id": 293695472, - "lat": 54.1241271, - "lon": -0.9470881, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO60 95", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 293696469, - "lat": 54.1323199, - "lon": -0.9117169, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO60 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293703735, - "lat": 53.3010747, - "lon": -2.6260781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WA4 55", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 293741402, - "lat": 51.5335459, - "lon": -0.1725609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "NW8", - "ref": "NW8 351;NW8 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 293741421, - "lat": 51.5329153, - "lon": -0.1661983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NW8", - "ref": "NW8 21" - } -}, -{ - "type": "node", - "id": 293748580, - "lat": 51.5363867, - "lon": -0.1634929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NW8", - "ref": "NW8 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 293748585, - "lat": 51.5360145, - "lon": -0.1608740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW8 18" - } -}, -{ - "type": "node", - "id": 293752652, - "lat": 51.5359972, - "lon": -0.1465452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture/plate is blocked/missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "postal_code": "NW1", - "ref": "NW1 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 72D" - } -}, -{ - "type": "node", - "id": 293754379, - "lat": 51.5345799, - "lon": -0.1427667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "NW1", - "ref": "NW1 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 71D" - } -}, -{ - "type": "node", - "id": 293754382, - "lat": 51.5328612, - "lon": -0.1402777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "NW1", - "ref": "NW1 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 70D" - } -}, -{ - "type": "node", - "id": 293785319, - "lat": 51.2624385, - "lon": -1.0862576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "fixme": "collection_times", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293797836, - "lat": 51.3181023, - "lon": -2.4217307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 293812290, - "lat": 51.5270343, - "lon": -0.1407864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 58D" - } -}, -{ - "type": "node", - "id": 293813404, - "lat": 51.5285518, - "lon": -0.1388564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 10D" - } -}, -{ - "type": "node", - "id": 293935839, - "lat": 55.7790664, - "lon": -4.0479800, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ML3", - "ref": "ML3 23" - } -}, -{ - "type": "node", - "id": 293935931, - "lat": 55.7786578, - "lon": -4.0486507, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ML3", - "ref": "ML3 15" - } -}, -{ - "type": "node", - "id": 293938051, - "lat": 55.8550670, - "lon": -4.2234821, - "tags": { - "amenity": "post_box", - "postal_code": "G40", - "ref": "G40 69" - } -}, -{ - "type": "node", - "id": 293966869, - "lat": 51.3949233, - "lon": -0.2951564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 49D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 294015393, - "lat": 51.8322149, - "lon": -2.2117390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "201597688456343", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL4 103D", - "source": "survey + Bing", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 294046395, - "lat": 53.7787116, - "lon": -1.5446051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294077513, - "lat": 53.7073720, - "lon": -1.5045232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 84", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 294148925, - "lat": 52.1956973, - "lon": 0.1557376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294161404, - "lat": 51.5262760, - "lon": -0.1456384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW1 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 25D" - } -}, -{ - "type": "node", - "id": 294161414, - "lat": 51.5239773, - "lon": -0.1405270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-03", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "note": "The info card under the right aperture (first class and abroad) is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W1T 49;W1T 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294163657, - "lat": 50.8842424, - "lon": 0.3443012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "postal_code": "BN27", - "ref": "BN27 950", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 294164972, - "lat": 50.9068835, - "lon": 0.3463878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BN27", - "ref": "BN27 948", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294182583, - "lat": 53.7271899, - "lon": -1.5611789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 248", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 294182608, - "lat": 53.7237978, - "lon": -1.5671575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF3 106" - } -}, -{ - "type": "node", - "id": 294189935, - "lat": 53.3544664, - "lon": -2.1698080, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 294189936, - "lat": 53.3652616, - "lon": -2.1569815, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 294193048, - "lat": 51.3986569, - "lon": -0.2939712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 206D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 294193066, - "lat": 51.3960062, - "lon": -0.2967358, - "tags": { - "access": "yes", - "amenity": "post_box", - "check_date:collection_times": "2022-10-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 57D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 294197620, - "lat": 51.5032412, - "lon": -0.1120528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "next to exit 3. Postbox is a pillar design. Although this style normally has a cypher, this one has none, probably cleaned off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE1 38", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294198948, - "lat": 51.4822436, - "lon": -0.1128642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 294201233, - "lat": 51.4869981, - "lon": -0.1137162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE11", - "ref": "SE11 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294201236, - "lat": 51.4957004, - "lon": -0.1109280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294214686, - "lat": 52.2853688, - "lon": -1.5806077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV34", - "ref": "CV34 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294216029, - "lat": 52.2809788, - "lon": -1.5903760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-11", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "note": "dual aperture box with separate ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CV34 1;CV34 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294263700, - "lat": 51.2181292, - "lon": 0.2887273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN10 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294323887, - "lat": 57.5686917, - "lon": -4.1759022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV9 185", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294502846, - "lat": 52.3801951, - "lon": -1.7454833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294581257, - "lat": 51.1399207, - "lon": -1.5852586, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO20 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294657053, - "lat": 51.7826196, - "lon": 1.1430329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO15 131", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 294661693, - "lat": 55.0145993, - "lon": -1.5680392, - "tags": { - "amenity": "post_box", - "ref": "NE12 385" - } -}, -{ - "type": "node", - "id": 294693127, - "lat": 53.1128603, - "lon": -2.2467623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST7 91D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 294693726, - "lat": 53.1190715, - "lon": -2.2345308, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 294693728, - "lat": 53.1273905, - "lon": -2.2298372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "CW12 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294693923, - "lat": 53.1335123, - "lon": -2.2328479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "ref": "CW12 32" - } -}, -{ - "type": "node", - "id": 294694226, - "lat": 53.1435526, - "lon": -2.2359090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:00", - "ref": "CW12 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294694444, - "lat": 53.1380219, - "lon": -2.2068556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 294702295, - "lat": 53.3664228, - "lon": -2.2058564, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SK8 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294824757, - "lat": 51.3954572, - "lon": -1.0642142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RG7 229;RG7 2290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294827104, - "lat": 53.7271636, - "lon": -1.5770612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 491" - } -}, -{ - "type": "node", - "id": 294829600, - "lat": 53.7278430, - "lon": -1.5687103, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 279" - } -}, -{ - "type": "node", - "id": 294849409, - "lat": 51.3985549, - "lon": -1.0554868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG7 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294850446, - "lat": 52.4083709, - "lon": -1.8134595, - "tags": { - "amenity": "post_box", - "ref": "B90 1034", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294941377, - "lat": 53.1059092, - "lon": -2.2258643, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294941387, - "lat": 53.1126551, - "lon": -2.2104145, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 294950112, - "lat": 52.9070725, - "lon": -1.4899473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 294952722, - "lat": 51.4583315, - "lon": -0.0516028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 294954931, - "lat": 52.2228735, - "lon": -0.1734098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 294956181, - "lat": 51.6370453, - "lon": -2.1638592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "collection_times_checked": "2020-07-08", - "description": "hexagonal pillar box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL8 681D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 294999853, - "lat": 51.2923563, - "lon": 0.9572866, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 66" - } -}, -{ - "type": "node", - "id": 295002229, - "lat": 51.2955719, - "lon": 0.9440028, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 74" - } -}, -{ - "type": "node", - "id": 295004516, - "lat": 51.2832218, - "lon": 1.0513992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295029212, - "lat": 52.0422444, - "lon": -1.1554334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN13 1144" - } -}, -{ - "type": "node", - "id": 295030627, - "lat": 55.8987231, - "lon": -4.1050783, - "tags": { - "amenity": "post_box", - "mapillary": "320697967618490", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 295047737, - "lat": 55.0200066, - "lon": -1.4533855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NE29 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 295077584, - "lat": 54.0300480, - "lon": -0.8845024, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 295086705, - "lat": 55.0244133, - "lon": -1.4393327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE30 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 295098511, - "lat": 51.3372193, - "lon": -0.2797995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295098590, - "lat": 51.3354078, - "lon": -0.2767987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT19 107D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295103212, - "lat": 51.1583143, - "lon": -1.5604997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO20 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295123679, - "lat": 51.3987851, - "lon": -1.0674207, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 295151104, - "lat": 55.0856977, - "lon": -1.5919336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-11-03", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 06:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:priority": "yes", - "post_box:type": "pillar", - "postal_code": "NE23 6QW", - "ref": "NE23 454;NE23 1454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295204941, - "lat": 52.2342116, - "lon": 0.7113511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 295289905, - "lat": 56.1549627, - "lon": -3.9480098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "FK9", - "ref": "FK9 84", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 295427650, - "lat": 52.6154787, - "lon": -1.1199797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "LE2", - "ref": "LE2 19" - } -}, -{ - "type": "node", - "id": 295434884, - "lat": 51.4006085, - "lon": -1.0535035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG7 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 295435358, - "lat": 51.4325482, - "lon": -3.1762486, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 295454962, - "lat": 52.6941962, - "lon": -1.8293171, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WS13", - "ref": "WS13 63" - } -}, -{ - "type": "node", - "id": 295460141, - "lat": 51.6434234, - "lon": -0.1711533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 295465583, - "lat": 51.4090716, - "lon": -0.2915025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 295488624, - "lat": 51.4385876, - "lon": -2.0381201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SN11", - "ref": "SN11 117D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 295488665, - "lat": 51.4368614, - "lon": -2.0304818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 121D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 295496023, - "lat": 52.3700783, - "lon": -1.2421917, - "tags": { - "amenity": "post_box", - "mapillary": "795089341140890", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV21 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 295498300, - "lat": 51.8319917, - "lon": -0.8057068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 295538597, - "lat": 51.7643523, - "lon": 0.6096769, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 295685586, - "lat": 53.7818451, - "lon": -1.5440887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 295709721, - "lat": 51.4865895, - "lon": -0.1076712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295719334, - "lat": 57.0639100, - "lon": -5.0419793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH35 14", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295720412, - "lat": 51.4017038, - "lon": -1.0622706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 295722824, - "lat": 52.5107268, - "lon": -1.9703286, - "tags": { - "amenity": "post_box", - "postal_code": "B71", - "ref": "B71 31" - } -}, -{ - "type": "node", - "id": 295769598, - "lat": 53.7230222, - "lon": -1.5801557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 112" - } -}, -{ - "type": "node", - "id": 295769623, - "lat": 53.7242498, - "lon": -1.5835081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF3 229" - } -}, -{ - "type": "node", - "id": 295782008, - "lat": 53.3553326, - "lon": -2.1773651, - "tags": { - "amenity": "post_box", - "fixme": "postbox with school name???", - "name": "Moss Hey Primary" - } -}, -{ - "type": "node", - "id": 295786777, - "lat": 52.5005563, - "lon": -1.9695741, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B66 173", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 295788679, - "lat": 52.5065514, - "lon": -1.9626024, - "tags": { - "amenity": "post_box", - "ref": "B71 84" - } -}, -{ - "type": "node", - "id": 295801398, - "lat": 51.5214789, - "lon": -0.1349489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1E 16;WC1E 216", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295803830, - "lat": 51.4940957, - "lon": -0.1409388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 75;SW1V 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295803970, - "lat": 51.4996065, - "lon": -0.1421361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1E 42;SW1E 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295850651, - "lat": 52.9800029, - "lon": -0.0220953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "Posting suit in wall of former post office building.", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE21 220;PE21 2200", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 295905065, - "lat": 51.5232442, - "lon": -0.1604418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked and no plate 2024-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 42D" - } -}, -{ - "type": "node", - "id": 295930341, - "lat": 51.5211609, - "lon": -0.1514499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "with a post office direction arrow sign on top", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 25D;W1G 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295930425, - "lat": 51.5220518, - "lon": -0.1482887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 22;W1G 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 295937423, - "lat": 51.6407539, - "lon": -2.6770897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "232516472713510", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 295953031, - "lat": 51.4861587, - "lon": -2.6240878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 478D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 295953660, - "lat": 51.7523049, - "lon": -1.2547025, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "colour": "red", - "post_box:type": "pillar", - "ref": "OX1 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 295955923, - "lat": 50.4517462, - "lon": -3.5715809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "postal_code": "TQ3", - "ref": "TQ3 391D", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 295973137, - "lat": 50.4640301, - "lon": -3.5590366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 295994895, - "lat": 52.2325561, - "lon": 0.7145002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP33 2242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 296011033, - "lat": 52.9138015, - "lon": -1.5524787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE3 745", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296011041, - "lat": 52.9054887, - "lon": -1.5123958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 498" - } -}, -{ - "type": "node", - "id": 296011049, - "lat": 52.9135908, - "lon": -1.4839208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE23 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 296016463, - "lat": 51.5212412, - "lon": -0.1530157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-24", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 24D;W1U 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box W1U 24D and W1U 224D" - } -}, -{ - "type": "node", - "id": 296016851, - "lat": 53.8082641, - "lon": -1.6241953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 134" - } -}, -{ - "type": "node", - "id": 296020014, - "lat": 53.8135043, - "lon": -1.6317693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 21:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 309", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 296050642, - "lat": 52.7674250, - "lon": -2.3736799, - "tags": { - "amenity": "post_box", - "ref": "TF10 210" - } -}, -{ - "type": "node", - "id": 296050653, - "lat": 52.7637915, - "lon": -2.3752978, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 296050666, - "lat": 52.7614659, - "lon": -2.3774041, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 296084718, - "lat": 51.4588272, - "lon": 0.0800180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 296084735, - "lat": 51.4578620, - "lon": 0.0855593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA16 282D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 296091147, - "lat": 51.4359978, - "lon": 0.1013663, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 296091764, - "lat": 51.4330325, - "lon": 0.1029182, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA15 59", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-06-10" - } -}, -{ - "type": "node", - "id": 296097798, - "lat": 51.7263261, - "lon": -1.9630927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 296154165, - "lat": 51.3876214, - "lon": -0.2877620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 296154277, - "lat": 54.1273539, - "lon": -0.7778197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:35; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 128" - } -}, -{ - "type": "node", - "id": 296160969, - "lat": 50.9665342, - "lon": -3.2723848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA21 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296162319, - "lat": 52.6172669, - "lon": -1.1210997, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 239", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 296166500, - "lat": 50.9842611, - "lon": -3.3515647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA21 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296187907, - "lat": 51.3980653, - "lon": -1.0718171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 296190357, - "lat": 55.8593740, - "lon": -4.0386000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 296232930, - "lat": 51.3059248, - "lon": -0.3099715, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT21 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 296234618, - "lat": 53.4189257, - "lon": -2.9962714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR post box L3 107 by Carron Company on Great Howard Street, Liverpool near to Upper William Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Great Howard Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 296238606, - "lat": 51.4298103, - "lon": -0.3748982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 296238626, - "lat": 55.8661748, - "lon": -4.2725645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G3", - "ref": "G3 232;G3 2320" - } -}, -{ - "type": "node", - "id": 296239254, - "lat": 55.8586729, - "lon": -4.2238683, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "G31", - "ref": "G31 217", - "royal_cypher": "scottish_crown", - "source:location": "bing" - } -}, -{ - "type": "node", - "id": 296243506, - "lat": 52.2294029, - "lon": 0.7205004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296265345, - "lat": 51.4295766, - "lon": -0.3796424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 296339401, - "lat": 51.3915594, - "lon": -1.0685586, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296396262, - "lat": 51.3793730, - "lon": -2.3700464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA2 1023D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 296401833, - "lat": 51.4310195, - "lon": -0.1756218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SW17 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296404129, - "lat": 51.4302971, - "lon": -0.1790808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 41" - } -}, -{ - "type": "node", - "id": 296407364, - "lat": 51.2973605, - "lon": -0.4592868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-14", - "note": "I used this postbox on Tuesday 14th December 2021 and all the postbox details are the same.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "GU23 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 296419266, - "lat": 51.9938071, - "lon": -0.9785182, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "MK18", - "ref": "MK18 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296462558, - "lat": 52.3938324, - "lon": -1.8515845, - "tags": { - "amenity": "post_box", - "ref": "B90 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 296490529, - "lat": 53.7251229, - "lon": -1.5360206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF3 107" - } -}, -{ - "type": "node", - "id": 296490747, - "lat": 53.7321681, - "lon": -1.5436646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF3 175" - } -}, -{ - "type": "node", - "id": 296507645, - "lat": 53.0956942, - "lon": -2.2312352, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 296509571, - "lat": 51.4620717, - "lon": -2.3197088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN14 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296590969, - "lat": 51.2192231, - "lon": -0.7881947, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU9 3", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GU9", - "ref": "GU9 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296603664, - "lat": 51.1899107, - "lon": -0.8061402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 48D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 296604539, - "lat": 51.1827099, - "lon": -0.8225325, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "GU10 61" - } -}, -{ - "type": "node", - "id": 296608449, - "lat": 51.7967140, - "lon": 1.1530214, - "tags": { - "amenity": "post_box", - "mapillary": "426408291883873", - "post_box:type": "pillar", - "postal_code": "CO15 3PU", - "ref": "CO15 34", - "survey:date": "2019-12-26" - } -}, -{ - "type": "node", - "id": 296608453, - "lat": 51.7991845, - "lon": 1.1574939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1360925797735489", - "post_box:type": "pillar", - "postal_code": "CO15 3RB", - "ref": "CO15 136", - "royal_cypher": "EIIR", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 296608522, - "lat": 51.8046086, - "lon": 1.1613381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "698426034877451", - "post_box:type": "pillar", - "postal_code": "CO15 4HT", - "ref": "CO15 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-01" - } -}, -{ - "type": "node", - "id": 296608572, - "lat": 51.8101139, - "lon": 1.1682035, - "tags": { - "amenity": "post_box", - "mapillary": "306475261026909", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO15 4LN", - "ref": "CO15 105", - "survey:date": "2021-04-29" - } -}, -{ - "type": "node", - "id": 296697607, - "lat": 53.1132880, - "lon": -2.2313702, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 296914070, - "lat": 51.4416494, - "lon": -2.0184368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 125D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 296916159, - "lat": 51.4078846, - "lon": -1.0547096, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 296916507, - "lat": 55.0109398, - "lon": -1.5709448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NE12 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296916520, - "lat": 55.0127545, - "lon": -1.5672206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296924503, - "lat": 51.2124323, - "lon": -0.7931468, - "tags": { - "addr:city": "Farnham", - "addr:housenumber": "4", - "addr:postcode": "GU9 8AA", - "addr:street": "Station Hill", - "amenity": "post_box", - "check_date": "2022-09-14", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 296949286, - "lat": 52.4127100, - "lon": -1.9349039, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B38 304", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 296949289, - "lat": 52.4258852, - "lon": -1.9285186, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-25", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "B30 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 296964784, - "lat": 51.1994547, - "lon": -0.8171362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU10", - "ref": "GU10 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 296968341, - "lat": 51.2307705, - "lon": -0.3272904, - "tags": { - "amenity": "post_box", - "postal_code": "RH4", - "ref": "RH4 114", - "source": "TMJ-Mobile_0.6.2" - } -}, -{ - "type": "node", - "id": 296975931, - "lat": 50.9553387, - "lon": -3.3466441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 296997358, - "lat": 52.6179152, - "lon": -1.1130598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "LE2", - "ref": "LE2 245", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 297002670, - "lat": 51.2148764, - "lon": -0.8159356, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 128" - } -}, -{ - "type": "node", - "id": 297015032, - "lat": 51.2164402, - "lon": -0.8000637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "GU9", - "ref": "GU9 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297016218, - "lat": 51.9164446, - "lon": -3.3207643, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297016596, - "lat": 51.8837894, - "lon": -3.3016535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD3 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297027866, - "lat": 51.5620816, - "lon": 0.0043604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297038795, - "lat": 51.2105816, - "lon": -0.8063490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU9 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297046371, - "lat": 53.3773432, - "lon": -2.1665727, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK7 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 297052070, - "lat": 51.2180606, - "lon": -0.7848923, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU9", - "ref": "GU9 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297052139, - "lat": 53.0969701, - "lon": -2.2701317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 297052978, - "lat": 53.0999836, - "lon": -2.2847841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 297055758, - "lat": 53.1027182, - "lon": -2.2511905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST7 46" - } -}, -{ - "type": "node", - "id": 297055763, - "lat": 53.1092360, - "lon": -2.2526508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ST7 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297055771, - "lat": 53.1138348, - "lon": -2.2643409, - "tags": { - "amenity": "post_box", - "ref": "ST7 86" - } -}, -{ - "type": "node", - "id": 297058221, - "lat": 53.6353086, - "lon": -1.8682565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 297104841, - "lat": 53.8051975, - "lon": -1.6308183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 849" - } -}, -{ - "type": "node", - "id": 297116951, - "lat": 52.1799646, - "lon": -0.1397756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SG19 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297118268, - "lat": 53.8008715, - "lon": -1.6475338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13 4PJ", - "ref": "LS13 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297118296, - "lat": 53.7970292, - "lon": -1.6615837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS28", - "ref": "LS28 963" - } -}, -{ - "type": "node", - "id": 297119294, - "lat": 51.4512081, - "lon": -2.0978870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297119298, - "lat": 51.4501024, - "lon": -2.0937543, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 297157523, - "lat": 51.3638777, - "lon": 1.0943195, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 4", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 4D", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 297157563, - "lat": 55.8977993, - "lon": -4.0904128, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297159067, - "lat": 51.1985818, - "lon": -0.8058246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU10 127", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU10", - "ref": "GU9 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297159904, - "lat": 51.1994882, - "lon": -0.8130758, - "tags": { - "amenity": "post_box", - "fixme": "The location of this postbox is incorrect or it has been removed", - "postal_code": "GU9", - "ref": "GU9 174" - } -}, -{ - "type": "node", - "id": 297160164, - "lat": 51.1959652, - "lon": -0.8099565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU9 36", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU9", - "ref": "GU9 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297266609, - "lat": 51.0185818, - "lon": -0.4560679, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH14 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297269845, - "lat": 50.9668181, - "lon": -3.3689470, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297279046, - "lat": 51.2143632, - "lon": -0.7961111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "old_ref": "GU9 137", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:ref": "P151-0134" - } -}, -{ - "type": "node", - "id": 297312771, - "lat": 51.1090645, - "lon": -0.1722490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "plate damaged but still sufficiently legible for collection times and ref", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 297312777, - "lat": 51.1021161, - "lon": -0.2174866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH10 154" - } -}, -{ - "type": "node", - "id": 297349304, - "lat": 51.7631476, - "lon": -0.5618210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297357131, - "lat": 52.2277363, - "lon": -2.7331447, - "tags": { - "amenity": "post_box", - "postal_code": "HR6", - "ref": "HR6 890" - } -}, -{ - "type": "node", - "id": 297358872, - "lat": 51.4357029, - "lon": 0.1128089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DA15 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 297362092, - "lat": 51.4444613, - "lon": -2.0186960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 103D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 297371999, - "lat": 52.2337598, - "lon": -2.7432198, - "tags": { - "amenity": "post_box", - "postal_code": "HR6", - "ref": "HR6 992" - } -}, -{ - "type": "node", - "id": 297463381, - "lat": 52.2396305, - "lon": -3.1527874, - "tags": { - "amenity": "post_box", - "fixme": "check ref value", - "ref": "LD8 212" - } -}, -{ - "type": "node", - "id": 297466877, - "lat": 52.2407609, - "lon": -3.1555679, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "LD8", - "ref": "LD8 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 297476164, - "lat": 52.3646605, - "lon": -2.7174483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY8 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297476171, - "lat": 52.3664878, - "lon": -2.7185840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY8 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-10-09" - } -}, -{ - "type": "node", - "id": 297480504, - "lat": 51.2508966, - "lon": -0.0644005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH9 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297487216, - "lat": 53.7827968, - "lon": -2.8715182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR4 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297487380, - "lat": 53.7797490, - "lon": -2.8614889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PR4 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297487657, - "lat": 53.7817507, - "lon": -2.8763232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297487670, - "lat": 53.7841768, - "lon": -2.8811817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR4 153", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 297487939, - "lat": 52.3611746, - "lon": -2.8765565, - "tags": { - "amenity": "post_box", - "postal_code": "SY7", - "ref": "SY7 395" - } -}, -{ - "type": "node", - "id": 297487943, - "lat": 52.3599375, - "lon": -2.8766898, - "tags": { - "amenity": "post_box", - "postal_code": "SY7", - "ref": "SY7 556" - } -}, -{ - "type": "node", - "id": 297487964, - "lat": 52.3388770, - "lon": -2.8639778, - "tags": { - "amenity": "post_box", - "postal_code": "SY7", - "ref": "SY7 315" - } -}, -{ - "type": "node", - "id": 297487969, - "lat": 52.3643799, - "lon": -2.8770020, - "tags": { - "amenity": "post_box", - "postal_code": "SY7", - "ref": "SY7 535" - } -}, -{ - "type": "node", - "id": 297494836, - "lat": 52.3283940, - "lon": -2.9113315, - "tags": { - "amenity": "post_box", - "postal_code": "SY7" - } -}, -{ - "type": "node", - "id": 297494838, - "lat": 52.3141267, - "lon": -2.9295970, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SY7", - "ref": "SY7 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297494851, - "lat": 52.2751967, - "lon": -2.9402670, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LD8" - } -}, -{ - "type": "node", - "id": 297498342, - "lat": 52.2546282, - "lon": -3.1297699, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- location outside LD7 postal district", - "ref": "LD7 241" - } -}, -{ - "type": "node", - "id": 297501977, - "lat": 52.2977573, - "lon": -3.2358203, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297502650, - "lat": 52.1567521, - "lon": -3.3948024, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 135" - } -}, -{ - "type": "node", - "id": 297502664, - "lat": 52.1522487, - "lon": -3.4012397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LD2", - "ref": "LD2 129" - } -}, -{ - "type": "node", - "id": 297503879, - "lat": 52.1499975, - "lon": -3.4000626, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LD2", - "ref": "LD2 102", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 297547922, - "lat": 53.5500193, - "lon": -1.9973854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "colour": "red", - "ref": "OL3 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297549058, - "lat": 51.4006965, - "lon": -1.0680761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 297573999, - "lat": 53.3680491, - "lon": -2.1558590, - "tags": { - "amenity": "post_box", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 297574095, - "lat": 53.3686275, - "lon": -2.1620954, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297574187, - "lat": 53.3793990, - "lon": -2.1476301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK7 295D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 297574196, - "lat": 53.3759771, - "lon": -2.1450297, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297594713, - "lat": 51.4465263, - "lon": -2.0133460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 340D", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 297604198, - "lat": 52.1491605, - "lon": -3.3959986, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 103" - } -}, -{ - "type": "node", - "id": 297604210, - "lat": 52.1485946, - "lon": -3.3994406, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 104" - } -}, -{ - "type": "node", - "id": 297604230, - "lat": 52.1468138, - "lon": -3.4022972, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 173" - } -}, -{ - "type": "node", - "id": 297604239, - "lat": 52.1484476, - "lon": -3.4047973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "155553199794063", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LD2", - "ref": "LD2 105", - "survey:date": "2020-09-17" - } -}, -{ - "type": "node", - "id": 297607602, - "lat": 52.1469506, - "lon": -3.4128106, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 122" - } -}, -{ - "type": "node", - "id": 297607638, - "lat": 52.1525092, - "lon": -3.4157716, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 124" - } -}, -{ - "type": "node", - "id": 297608305, - "lat": 51.2598919, - "lon": -1.1194026, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 269" - } -}, -{ - "type": "node", - "id": 297610445, - "lat": 52.1511922, - "lon": -3.4067458, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 107" - } -}, -{ - "type": "node", - "id": 297610460, - "lat": 52.1498194, - "lon": -3.4100168, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 106" - } -}, -{ - "type": "node", - "id": 297610461, - "lat": 52.1506595, - "lon": -3.4147462, - "tags": { - "amenity": "post_box", - "postal_code": "LD2", - "ref": "LD2 175" - } -}, -{ - "type": "node", - "id": 297611311, - "lat": 52.1434932, - "lon": -3.4204934, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297612680, - "lat": 52.1177993, - "lon": -3.4351422, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297613746, - "lat": 52.0838535, - "lon": -3.3303704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 297614284, - "lat": 52.1172357, - "lon": -3.3469902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297614300, - "lat": 52.1809665, - "lon": -3.2979020, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297624107, - "lat": 53.8115375, - "lon": -1.5756989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297645496, - "lat": 52.9681399, - "lon": -2.0674737, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 297649172, - "lat": 51.8991550, - "lon": -2.1179520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-15", - "mapillary": "882107262465627", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL51 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 297649301, - "lat": 51.9096862, - "lon": -2.1126088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL51", - "ref": "GL51 310", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297650845, - "lat": 52.1868036, - "lon": -3.0576443, - "tags": { - "amenity": "post_box", - "fixme": "has this been moved" - } -}, -{ - "type": "node", - "id": 297672607, - "lat": 52.3029090, - "lon": 1.1276383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP23 7083", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297689965, - "lat": 54.1323308, - "lon": -0.8074610, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 297714935, - "lat": 51.2841085, - "lon": -0.3600702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297762181, - "lat": 53.6400319, - "lon": -1.8561340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "HD7 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297774310, - "lat": 51.2507035, - "lon": -1.1244826, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 268" - } -}, -{ - "type": "node", - "id": 297775850, - "lat": 52.9838664, - "lon": -2.0742418, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297779167, - "lat": 51.4501767, - "lon": -1.9988016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 250", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 297783726, - "lat": 51.7587204, - "lon": -1.2609327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-02", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "priority:covid19": "yes", - "ref": "OX2 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297812055, - "lat": 51.4106996, - "lon": -0.2939813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 297906091, - "lat": 51.4438747, - "lon": -2.0124863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 241D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 297906108, - "lat": 51.4446495, - "lon": -1.9968015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "537380957300900", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN11 110D", - "royal_cypher": "EIIR", - "survey:date": "2021-03-24" - } -}, -{ - "type": "node", - "id": 297906110, - "lat": 51.4417651, - "lon": -1.9967237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 285D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 297935853, - "lat": 52.2194738, - "lon": 0.1317906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4", - "ref": "CB4 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297936169, - "lat": 53.5254066, - "lon": -1.6310188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S36 805", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 297976912, - "lat": 51.7458484, - "lon": -2.2278857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-05-12" - } -}, -{ - "type": "node", - "id": 297976932, - "lat": 51.7270771, - "lon": -2.2643851, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 297976940, - "lat": 51.7319726, - "lon": -2.2804203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL10", - "ref": "GL10 228" - } -}, -{ - "type": "node", - "id": 297976951, - "lat": 52.4352726, - "lon": -1.9459174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "No information board on the box", - "ref": "B29 395", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 297976970, - "lat": 51.7531121, - "lon": -2.3421719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "collection_times_checked": "2015-08-21", - "mapillary": "735475544699125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL10 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-23" - } -}, -{ - "type": "node", - "id": 297992580, - "lat": 54.9929623, - "lon": -1.5125245, - "tags": { - "amenity": "post_box", - "ref": "NE28 427" - } -}, -{ - "type": "node", - "id": 297992714, - "lat": 54.9933175, - "lon": -1.5189770, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 298007702, - "lat": 51.4224992, - "lon": -0.3628423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 298015447, - "lat": 51.4272525, - "lon": -0.3608760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 298024467, - "lat": 51.4299910, - "lon": -0.3590374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW12 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298024510, - "lat": 51.4325524, - "lon": -0.3637259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW12 253", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 298031147, - "lat": 51.4326404, - "lon": -0.3520964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW12 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298036082, - "lat": 51.2773927, - "lon": -1.0795685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298051680, - "lat": 53.8064521, - "lon": -1.6358805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 497" - } -}, -{ - "type": "node", - "id": 298051685, - "lat": 53.8074542, - "lon": -1.6439979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 609", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298060159, - "lat": 51.2016576, - "lon": -0.7980428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "GU9", - "ref": "GU9 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298060264, - "lat": 51.2039911, - "lon": -0.8096193, - "tags": { - "amenity": "post_box", - "mapillary": "246778607203816", - "post_box:type": "pillar", - "postal_code": "GU9", - "ref": "GU9 162", - "survey:date": "2020-08-09" - } -}, -{ - "type": "node", - "id": 298062584, - "lat": 51.2077166, - "lon": -0.7991982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU9 154", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298063454, - "lat": 51.2033709, - "lon": -0.8045179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU9 173", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 173D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298074583, - "lat": 51.5167395, - "lon": -0.1081333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "EC4", - "ref": "EC4A 407;EC4A 4071", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298078725, - "lat": 51.4185796, - "lon": -0.2888755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 298078752, - "lat": 51.4280307, - "lon": -0.2916168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT2 872D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298078966, - "lat": 51.4162152, - "lon": -0.2884794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 296D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 298079090, - "lat": 51.4117502, - "lon": -0.2905797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KT2 56D" - } -}, -{ - "type": "node", - "id": 298079353, - "lat": 51.4118570, - "lon": -0.3025677, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298079510, - "lat": 55.8503989, - "lon": -4.3068195, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "G51", - "ref": "G51 608" - } -}, -{ - "type": "node", - "id": 298079933, - "lat": 55.8602818, - "lon": -4.2578419, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-14", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "layer": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G1", - "ref": "G1 722", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298125351, - "lat": 51.4427719, - "lon": -2.0498346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 115D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 298125360, - "lat": 51.4569868, - "lon": -2.0300831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 127D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 298156163, - "lat": 52.4611093, - "lon": -1.9565705, - "tags": { - "amenity": "post_box", - "ref": "B17 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298171965, - "lat": 52.3414890, - "lon": -0.1637976, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 298172091, - "lat": 52.3380839, - "lon": -0.1699257, - "tags": { - "amenity": "post_box", - "mapillary": "241594017759572", - "post_box:type": "pillar", - "survey:date": "2020-07-24" - } -}, -{ - "type": "node", - "id": 298255170, - "lat": 55.0119285, - "lon": -1.4491078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE29 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 298259583, - "lat": 52.6160738, - "lon": -1.1149014, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 233" - } -}, -{ - "type": "node", - "id": 298272399, - "lat": 51.7478674, - "lon": -1.2369128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "ref": "OX4 70" - } -}, -{ - "type": "node", - "id": 298288945, - "lat": 52.9045736, - "lon": -1.4834405, - "tags": { - "amenity": "post_box", - "postal_code": "DE23", - "ref": "DE23 56" - } -}, -{ - "type": "node", - "id": 298335835, - "lat": 51.4451966, - "lon": -2.0013139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298347043, - "lat": 51.5255881, - "lon": -0.1286764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-22", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC1H 18;WC1H 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298347048, - "lat": 51.5287157, - "lon": -0.1256165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1H 19;WC1H 219", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298347054, - "lat": 51.5262219, - "lon": -0.1235816, - "tags": { - "amenity": "post_box", - "check_date": "2024-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1H 220D;WC1H 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 298347057, - "lat": 51.5232769, - "lon": -0.1222410, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-13", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "left hand slot for \"First Clsss and Abroad\" right hand slot for \"2nd Class\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1N 24;WC1N 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298428749, - "lat": 53.4591889, - "lon": -2.2082328, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298428827, - "lat": 53.4567260, - "lon": -2.2048017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M13 362D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 298450394, - "lat": 53.8038953, - "lon": -1.6365458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 1011" - } -}, -{ - "type": "node", - "id": 298452173, - "lat": 52.4440770, - "lon": -1.9677860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B29 783", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 298461038, - "lat": 51.4826564, - "lon": -2.6254216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "455187719111229", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BS9", - "ref": "BS9 517D", - "survey:date": "2020-06-15" - } -}, -{ - "type": "node", - "id": 298494744, - "lat": 54.4257888, - "lon": -3.3861093, - "tags": { - "amenity": "post_box", - "ref": "CA20 106" - } -}, -{ - "type": "node", - "id": 298494769, - "lat": 54.4188704, - "lon": -3.4382417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "post_box:type": "pillar", - "ref": "CA20 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 298494775, - "lat": 54.4212939, - "lon": -3.4224247, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA20 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298506387, - "lat": 51.3974813, - "lon": -1.2085472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "RG7", - "ref": "RG7 54" - } -}, -{ - "type": "node", - "id": 298506451, - "lat": 51.4137470, - "lon": -1.2138721, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 298515376, - "lat": 53.2263558, - "lon": -2.3342105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW4 146" - } -}, -{ - "type": "node", - "id": 298516827, - "lat": 53.2023139, - "lon": -2.3575696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "CW4 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298536385, - "lat": 51.4475883, - "lon": -1.2527525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG18", - "ref": "RG18 16", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 298542480, - "lat": 52.2646246, - "lon": -0.1426805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB23 461", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298546093, - "lat": 51.2141620, - "lon": -0.8016022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30; Su off", - "postal_code": "GU9", - "ref": "GU9 999", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 298635785, - "lat": 51.3922338, - "lon": -1.0452495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "knowledge, POI" - } -}, -{ - "type": "node", - "id": 298636651, - "lat": 51.2783775, - "lon": 1.3453158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT13 127", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT13", - "ref": "CT13 127D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-18" - } -}, -{ - "type": "node", - "id": 298650025, - "lat": 51.2740535, - "lon": 1.3436420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT13 104D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298651166, - "lat": 51.2707019, - "lon": 1.3467562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298654818, - "lat": 52.3323588, - "lon": -0.0600014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE27 243;PE27 2430" - } -}, -{ - "type": "node", - "id": 298656816, - "lat": 51.2740898, - "lon": 1.3408456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT13 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298657952, - "lat": 51.6422082, - "lon": -2.6832388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "976338643725727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2023-05-03", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 298663413, - "lat": 51.6354380, - "lon": -2.6850266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "969851017365263", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2023-05-03", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 298664424, - "lat": 51.6396044, - "lon": -2.6888155, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 298665495, - "lat": 51.2777509, - "lon": 1.3379128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT13", - "ref": "CT13 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298669067, - "lat": 52.2450540, - "lon": 0.7161699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "IP33 2060", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298669481, - "lat": 51.6431892, - "lon": -2.6901201, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 298686821, - "lat": 51.2505897, - "lon": 1.3473582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 93", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298690555, - "lat": 51.4049330, - "lon": -0.1308068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 87" - } -}, -{ - "type": "node", - "id": 298708825, - "lat": 52.4424240, - "lon": -1.9155461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "B29 366" - } -}, -{ - "type": "node", - "id": 298715083, - "lat": 51.2713506, - "lon": 1.3407998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT13", - "ref": "CT13 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298716033, - "lat": 51.2736030, - "lon": 1.3365478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "970979437024541", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT13", - "ref": "CT13 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 298732216, - "lat": 51.2713142, - "lon": 1.3368916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298736965, - "lat": 51.2688579, - "lon": 1.3278048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "mapillary": "159168766194690", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 298742152, - "lat": 51.2626683, - "lon": 1.3303356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 116" - } -}, -{ - "type": "node", - "id": 298743367, - "lat": 51.2663462, - "lon": 1.3364126, - "tags": { - "amenity": "post_box", - "postal_code": "CT13", - "ref": "CT13 110" - } -}, -{ - "type": "node", - "id": 298767565, - "lat": 55.0246306, - "lon": -1.6223052, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 298767589, - "lat": 55.0297092, - "lon": -1.6320532, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 298782022, - "lat": 52.7171171, - "lon": -2.7561700, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 381", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298815283, - "lat": 51.4492500, - "lon": 0.0357360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 298815284, - "lat": 51.4527714, - "lon": 0.0400472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE9 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298815286, - "lat": 51.4540602, - "lon": 0.0482112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE9 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298844510, - "lat": 50.4609989, - "lon": -3.7141690, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge", - "wikimedia_commons": "File:Post Box TQ9 18D.jpg" - } -}, -{ - "type": "node", - "id": 298844990, - "lat": 51.4712947, - "lon": -0.2463097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 25", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 298846512, - "lat": 51.4696784, - "lon": -0.2522140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "description": "There used to be a post office next to this postbox, but it was converted into a house when a local organic café initiative failed.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 298846956, - "lat": 50.4828812, - "lon": -3.7688792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ11 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 298853410, - "lat": 52.8952286, - "lon": -1.9109222, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10d" - } -}, -{ - "type": "node", - "id": 298859297, - "lat": 50.4817129, - "lon": -3.7828585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ11 70D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 298862744, - "lat": 50.4813955, - "lon": -3.7773943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "note": "Rare example of a Scottish crown royal cypher in England", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "wall", - "ref": "TQ11 220", - "royal_cypher": "scottish_crown", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 298867356, - "lat": 54.5762133, - "lon": -3.4104814, - "tags": { - "amenity": "post_box", - "ref": "CA14 29" - } -}, -{ - "type": "node", - "id": 298873471, - "lat": 53.3989254, - "lon": -2.9711838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QE II post box L1 30 on Hope Street near junction with Canning Street", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L1 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Hope Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 298877953, - "lat": 53.2093873, - "lon": -2.3694736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW4 287" - } -}, -{ - "type": "node", - "id": 298877957, - "lat": 53.2262226, - "lon": -2.3550842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW4 127" - } -}, -{ - "type": "node", - "id": 298877966, - "lat": 53.2275671, - "lon": -2.3407241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CW4 139" - } -}, -{ - "type": "node", - "id": 298881292, - "lat": 53.5034494, - "lon": -2.7834800, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10b" - } -}, -{ - "type": "node", - "id": 298893238, - "lat": 52.9795240, - "lon": -0.9288724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "NG13 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298906950, - "lat": 54.0679134, - "lon": -2.8517822, - "tags": { - "amenity": "post_box", - "ref": "LA4 197" - } -}, -{ - "type": "node", - "id": 298909360, - "lat": 51.1016931, - "lon": -0.7272073, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298914236, - "lat": 51.4343896, - "lon": 0.0644899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298914701, - "lat": 51.4425932, - "lon": 0.0521967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "actual collection plate showed SE9 20 on April 2021 but RMNY shows SE9 19 - https://www.royalmail.com/services-near-you/postbox/111-court-road-tarnwood-park-se9-5ny/00000SE919", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298915070, - "lat": 51.4499542, - "lon": 0.0518754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 17:30; Su off", - "drive_through": "no", - "note": "3 slots labelled \"First Class & International\", \"Second Class\", \"London\"\nThere is a clock above the left slot (it had not been set to BST)\nThe middle slot has a collection plate Mo-Fr 17:30; Sa 12:00\nThe right slot has a time table Mo-Sa 09:00-17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "SE9 9", - "ref:duplicates": "3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 298915892, - "lat": 51.5245064, - "lon": -0.1655339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "the left aperture is blocked up, the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 24D" - } -}, -{ - "type": "node", - "id": 298925699, - "lat": 52.1099691, - "lon": -0.1302761, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298932323, - "lat": 52.2508950, - "lon": -3.4016981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "postal_code": "LD1", - "ref": "LD1 71" - } -}, -{ - "type": "node", - "id": 298932392, - "lat": 52.2433050, - "lon": -3.3749146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "postal_code": "LD1", - "ref": "LD1 12D" - } -}, -{ - "type": "node", - "id": 298932557, - "lat": 52.2402090, - "lon": -3.3723368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "post_box:type": "lamp", - "postal_code": "LD1", - "ref": "LD1 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298933180, - "lat": 52.2412596, - "lon": -3.3647925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:30", - "post_box:type": "lamp", - "postal_code": "LD1", - "ref": "LD1 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 298961874, - "lat": 51.5273538, - "lon": -0.8575099, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 298986183, - "lat": 52.4929431, - "lon": -1.9166022, - "tags": { - "amenity": "post_box", - "postal_code": "B18", - "ref": "B18 1284" - } -}, -{ - "type": "node", - "id": 298990960, - "lat": 52.4972733, - "lon": -1.9213878, - "tags": { - "amenity": "post_box", - "postal_code": "B18", - "ref": "B18 209" - } -}, -{ - "type": "node", - "id": 298990969, - "lat": 52.4984045, - "lon": -1.9281931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B18", - "ref": "B18 315" - } -}, -{ - "type": "node", - "id": 298990977, - "lat": 52.4946664, - "lon": -1.9219907, - "tags": { - "amenity": "post_box", - "postal_code": "B18", - "ref": "B18 370" - } -}, -{ - "type": "node", - "id": 299021074, - "lat": 50.7314064, - "lon": -3.5398615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX4 197" - } -}, -{ - "type": "node", - "id": 299021081, - "lat": 50.7290266, - "lon": -3.5430035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-09", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX4 10;EX4 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 299021160, - "lat": 50.7291046, - "lon": -3.5348889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX4 162D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 299022783, - "lat": 50.7256860, - "lon": -3.5261218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX4 345;EX4 3450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 299107179, - "lat": 51.3762593, - "lon": -0.0841806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 160" - } -}, -{ - "type": "node", - "id": 299114329, - "lat": 51.4877338, - "lon": -2.6173233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 527D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 299141091, - "lat": 51.5433706, - "lon": 0.0163448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 299268805, - "lat": 51.4401220, - "lon": -2.0095336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "672008030679862", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN11 105D", - "royal_cypher": "EIIR", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 299276862, - "lat": 53.4015063, - "lon": -2.9707775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QE II Type K post box L1 143 on hardman Street at junction with Hope Street, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L1 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Hardman Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 299317190, - "lat": 53.3828671, - "lon": -2.9737165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box on Grafton Street, Liverpool, near Horsfall Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 959", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L8 959 on Grafton Street.jpg" - } -}, -{ - "type": "node", - "id": 299318089, - "lat": 53.3893952, - "lon": -2.9682857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR wall mounted lamp box L8 746 by Carronade on Dickens Street, Toxteth, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L8 746", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Dickens Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 299318585, - "lat": 50.9040007, - "lon": -3.4613253, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 299376182, - "lat": 51.4085421, - "lon": -0.0344146, - "tags": { - "amenity": "post_box", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 299376204, - "lat": 51.4085418, - "lon": -0.0387355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "post_box:type": "pillar", - "ref": "BR3 214", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 299389230, - "lat": 53.7284212, - "lon": -1.5320624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF3 138", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 299389249, - "lat": 53.7189643, - "lon": -1.5378158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF3 223", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 299417221, - "lat": 52.4335103, - "lon": -1.9113585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B30 434", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 299417223, - "lat": 52.4362870, - "lon": -1.9058667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 19:00", - "ref": "B13 489" - } -}, -{ - "type": "node", - "id": 299417256, - "lat": 52.4398962, - "lon": -1.9046932, - "tags": { - "amenity": "post_box", - "ref": "B13 804" - } -}, -{ - "type": "node", - "id": 299430486, - "lat": 54.1677811, - "lon": -0.6821776, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "YO17 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 299436304, - "lat": 51.9898389, - "lon": 0.5991781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO9 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 299590458, - "lat": 50.3822742, - "lon": -3.5355444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 299592935, - "lat": 50.3824578, - "lon": -3.5306715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 299601695, - "lat": 53.7343988, - "lon": -1.5228240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 118" - } -}, -{ - "type": "node", - "id": 299602345, - "lat": 51.6805846, - "lon": -1.2952299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 299602444, - "lat": 51.6815878, - "lon": -1.2896332, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 1203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 299602517, - "lat": 51.6781613, - "lon": -1.2871504, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-13", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX14 1038", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 299607132, - "lat": 52.2229465, - "lon": 0.2259514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB5 466", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 299607142, - "lat": 52.2412667, - "lon": 0.2444655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB5 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 299651341, - "lat": 53.7331802, - "lon": -1.5271534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF3 86" - } -}, -{ - "type": "node", - "id": 299663802, - "lat": 53.4199155, - "lon": -2.8522636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "741425119865140", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 299674945, - "lat": 52.6362856, - "lon": 1.3503098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 709" - } -}, -{ - "type": "node", - "id": 299708350, - "lat": 51.4347585, - "lon": -2.0068610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 255D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 299771160, - "lat": 51.4888495, - "lon": -0.1922000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 17" - } -}, -{ - "type": "node", - "id": 299786255, - "lat": 51.1210184, - "lon": -0.1455378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "name": "Wentworth Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 299786276, - "lat": 51.1147401, - "lon": -0.1406612, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-23", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Salehurst Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 299786770, - "lat": 52.3519637, - "lon": -1.5173817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 299831121, - "lat": 53.3146248, - "lon": -2.2377488, - "tags": { - "amenity": "post_box", - "ref": "SK9 259" - } -}, -{ - "type": "node", - "id": 299847282, - "lat": 53.5030098, - "lon": -2.7891735, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 299847291, - "lat": 53.4989552, - "lon": -2.7854934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 299847359, - "lat": 53.4808473, - "lon": -2.8031937, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 299847887, - "lat": 53.3970145, - "lon": -2.9683304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR post box L8 202 at the corner of Huskisson Street and Catharine Street, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L8 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Huskisson Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 299850543, - "lat": 53.4267645, - "lon": -1.4426265, - "tags": { - "amenity": "post_box", - "ref": "S5 611" - } -}, -{ - "type": "node", - "id": 299856455, - "lat": 51.2517067, - "lon": -1.1346820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "RG22", - "ref": "RG22 186" - } -}, -{ - "type": "node", - "id": 299860551, - "lat": 53.4289320, - "lon": -1.5024854, - "tags": { - "amenity": "post_box", - "ref": "S6 284" - } -}, -{ - "type": "node", - "id": 299863345, - "lat": 51.2768462, - "lon": -1.0835923, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 296" - } -}, -{ - "type": "node", - "id": 299921413, - "lat": 54.9842180, - "lon": -1.6594662, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10c" - } -}, -{ - "type": "node", - "id": 300008283, - "lat": 51.4376847, - "lon": -2.0075770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 332D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 300010606, - "lat": 53.7588608, - "lon": -1.6668709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 454" - } -}, -{ - "type": "node", - "id": 300023389, - "lat": 55.9532741, - "lon": -3.2960634, - "tags": { - "amenity": "post_box", - "ref": "EH4 530" - } -}, -{ - "type": "node", - "id": 300023693, - "lat": 51.2595083, - "lon": -0.8394665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU52 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300057959, - "lat": 54.8070477, - "lon": -1.5807080, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-31", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300058012, - "lat": 54.8059185, - "lon": -1.5803501, - "tags": { - "amenity": "post_box", - "mail:franked": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 465" - } -}, -{ - "type": "node", - "id": 300101974, - "lat": 51.1360947, - "lon": -0.1245658, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300101980, - "lat": 51.1390634, - "lon": -0.1107079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH10 63" - } -}, -{ - "type": "node", - "id": 300153607, - "lat": 51.4383557, - "lon": 0.0930832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DA15 264D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300153608, - "lat": 51.4405733, - "lon": 0.0877402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "DA15 226", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 300153609, - "lat": 51.4458870, - "lon": 0.0815533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300153613, - "lat": 51.4548886, - "lon": 0.0775467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300238516, - "lat": 51.4746273, - "lon": -3.2389927, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 300251790, - "lat": 51.8707225, - "lon": -3.2320114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP8 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300294533, - "lat": 53.7985044, - "lon": -1.7205927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD3 173", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 300374870, - "lat": 51.1151916, - "lon": -0.1779995, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Mitchells Road", - "old_ref": "RH10 47", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300378131, - "lat": 53.7973983, - "lon": -1.7343590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD3 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 300382927, - "lat": 53.7949034, - "lon": -1.7351169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD3 151" - } -}, -{ - "type": "node", - "id": 300383532, - "lat": 51.8654473, - "lon": -3.2301912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 300383538, - "lat": 51.8739241, - "lon": -3.2326424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP8 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300389734, - "lat": 51.8562187, - "lon": 1.2815749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1696293360787375", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO14 8HB", - "ref": "CO14 156", - "royal_cypher": "EIIR", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 300389897, - "lat": 51.0128786, - "lon": -1.2577449, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300390332, - "lat": 50.9904763, - "lon": -1.2734457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300390462, - "lat": 51.8251336, - "lon": 1.2415409, - "tags": { - "amenity": "post_box", - "mapillary": "935942267082674", - "post_box:type": "pillar", - "postal_code": "CO13 9EP", - "ref": "CO13 104", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 300390466, - "lat": 51.8269361, - "lon": 1.2436654, - "tags": { - "amenity": "post_box", - "mapillary": "610947166682222", - "post_box:type": "pillar", - "postal_code": "CO13 9DS", - "ref": "CO13 39", - "survey:date": "2022-01-09" - } -}, -{ - "type": "node", - "id": 300390468, - "lat": 51.8361552, - "lon": 1.2556420, - "tags": { - "amenity": "post_box", - "mapillary": "159609662693072", - "post_box:type": "pillar", - "postal_code": "CO13 9JB", - "ref": "CO13 21", - "survey:date": "2021-03-13" - } -}, -{ - "type": "node", - "id": 300413453, - "lat": 51.4923620, - "lon": -0.1775679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "wall", - "ref": "SW7 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 300425822, - "lat": 51.4933671, - "lon": -0.1784235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date": "2024-07-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "A.Handyside & Co Ltd Derby & London", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW7 17D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 300425873, - "lat": 51.4910742, - "lon": -0.1841486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SW5 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300452939, - "lat": 52.2006660, - "lon": 0.1128729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB3 9", - "ref": "CB3 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300500754, - "lat": 51.2361792, - "lon": -0.3210364, - "tags": { - "amenity": "post_box", - "mapillary": "374714254741845", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH4 110", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 300500779, - "lat": 51.2671872, - "lon": -0.3240748, - "tags": { - "amenity": "post_box", - "ref": "RH5 83" - } -}, -{ - "type": "node", - "id": 300500872, - "lat": 51.5349426, - "lon": -0.1466082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "the left aperture is blocked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 18D" - } -}, -{ - "type": "node", - "id": 300500881, - "lat": 51.5450738, - "lon": -0.1416520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 4D" - } -}, -{ - "type": "node", - "id": 300522275, - "lat": 53.3569154, - "lon": -2.1645657, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 300530658, - "lat": 51.4849635, - "lon": -2.6300093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "499107351133295", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 388D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-06-15" - } -}, -{ - "type": "node", - "id": 300530766, - "lat": 51.4884152, - "lon": -2.6336927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 337D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300547617, - "lat": 51.7756825, - "lon": 1.1208521, - "tags": { - "amenity": "post_box", - "mapillary": "640223120314715", - "post_box:type": "pillar", - "postal_code": "CO15 2ET", - "ref": "CO15 98", - "survey:date": "2021-12-03" - } -}, -{ - "type": "node", - "id": 300567881, - "lat": 52.4263056, - "lon": -1.9221880, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-08", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "ref": "B30 225", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300584491, - "lat": 53.3872548, - "lon": -2.9684115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 67 on Park Road between Steble Street and Park Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box near Steble Street.jpg" - } -}, -{ - "type": "node", - "id": 300596245, - "lat": 53.3852588, - "lon": -2.9710021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI post box L8 506 on Mill Street, Dingle, near Corn Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "L8 506", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Mill Street near Corn Street.jpg" - } -}, -{ - "type": "node", - "id": 300598746, - "lat": 50.9294329, - "lon": -0.6071082, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300600323, - "lat": 53.7686952, - "lon": -1.7472222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 184" - } -}, -{ - "type": "node", - "id": 300604500, - "lat": 51.3409746, - "lon": 1.3907088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT12", - "ref": "CT12 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300605514, - "lat": 53.7758991, - "lon": -1.7460374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 188" - } -}, -{ - "type": "node", - "id": 300607494, - "lat": 51.3385326, - "lon": 1.4012633, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300609226, - "lat": 51.3370416, - "lon": 1.4016805, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "postal_code": "CT11", - "ref": "CT11 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300612703, - "lat": 51.3347337, - "lon": 1.4025624, - "tags": { - "amenity": "post_box", - "postal_code": "CT11", - "ref": "CT11 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300622179, - "lat": 51.2146713, - "lon": -0.4006057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH5 24", - "source": "TMJ-Mobile_0.6.2" - } -}, -{ - "type": "node", - "id": 300629212, - "lat": 52.9557898, - "lon": -0.8927253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 300637746, - "lat": 51.3300182, - "lon": 1.3966470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT11", - "ref": "CT11 58", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300638424, - "lat": 51.3292215, - "lon": 1.4041617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300639218, - "lat": 55.0204359, - "lon": -1.4869959, - "tags": { - "amenity": "post_box", - "ref": "NE29 13" - } -}, -{ - "type": "node", - "id": 300639222, - "lat": 55.0407979, - "lon": -1.4652773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300643013, - "lat": 51.3360307, - "lon": 1.4050906, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300643033, - "lat": 51.3362893, - "lon": 1.4085606, - "tags": { - "amenity": "post_box", - "check_date": "2019-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300643035, - "lat": 51.3328120, - "lon": 1.4064343, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300643164, - "lat": 51.3351683, - "lon": 1.4087295, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300643812, - "lat": 50.9693130, - "lon": -0.8659545, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU31 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 300649170, - "lat": 51.3307270, - "lon": 1.4100779, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300651105, - "lat": 51.3327614, - "lon": 1.4131233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300653432, - "lat": 51.3347767, - "lon": 1.4133148, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300657471, - "lat": 51.3328731, - "lon": 1.4106135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300666683, - "lat": 51.4914659, - "lon": -1.6724527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SN8 164" - } -}, -{ - "type": "node", - "id": 300666686, - "lat": 51.4970429, - "lon": -1.6549416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5379365622171827", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SN8", - "ref": "SN8 107", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 300700013, - "lat": 51.3400349, - "lon": 1.4061187, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT11", - "ref": "CT11 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300700014, - "lat": 51.3400955, - "lon": 1.4061398, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-14", - "mail:franked": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT11", - "ref": "CT11 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300713179, - "lat": 50.7892511, - "lon": -1.6042839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 53" - } -}, -{ - "type": "node", - "id": 300716657, - "lat": 51.3488975, - "lon": 1.4000990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT12", - "ref": "CT12 69" - } -}, -{ - "type": "node", - "id": 300779527, - "lat": 52.2328387, - "lon": -3.3749444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "postal_code": "LD1", - "ref": "LD1 6" - } -}, -{ - "type": "node", - "id": 300851153, - "lat": 51.3210122, - "lon": -0.2236919, - "tags": { - "amenity": "post_box", - "ref": "SM7 237" - } -}, -{ - "type": "node", - "id": 300851836, - "lat": 51.3244956, - "lon": -0.2236738, - "tags": { - "amenity": "post_box", - "ref": "SM7 219" - } -}, -{ - "type": "node", - "id": 300882964, - "lat": 53.7909313, - "lon": -1.7556109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "BD1", - "ref": "BD1 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300884721, - "lat": 53.7855855, - "lon": -1.7594691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 209" - } -}, -{ - "type": "node", - "id": 300896550, - "lat": 50.9789658, - "lon": -3.2273145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 300896649, - "lat": 50.9442904, - "lon": -3.3376445, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 300896650, - "lat": 50.9459342, - "lon": -3.3392434, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 300918417, - "lat": 52.1589860, - "lon": -1.8443931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "B50 79", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 300918706, - "lat": 51.3370938, - "lon": 1.4133027, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300925127, - "lat": 51.3341909, - "lon": 1.4163785, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300933586, - "lat": 51.3327090, - "lon": 1.4174248, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "postal_code": "CT11", - "ref": "CT11 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300935050, - "lat": 51.3304955, - "lon": 1.4168702, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300952673, - "lat": 51.4686040, - "lon": -0.1013210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300954366, - "lat": 51.5119370, - "lon": -0.1831215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W2 47D;W2 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300967907, - "lat": 51.1226635, - "lon": -0.1658885, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;gps" - } -}, -{ - "type": "node", - "id": 300970896, - "lat": 51.5133755, - "lon": -0.1835657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 35D;W2 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 300971003, - "lat": 51.5167051, - "lon": -0.1830759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "created_by": "JOSM", - "ref": "W2 15" - } -}, -{ - "type": "node", - "id": 300979099, - "lat": 50.3793519, - "lon": -3.5326262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 280D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 300983413, - "lat": 51.4174461, - "lon": -1.7235706, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SN8 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-26", - "wikimedia_commons": "File:2010 , A346 entering Marlborough on Salisbury Road - geograph.org.uk - 2059210.jpg" - } -}, -{ - "type": "node", - "id": 300985722, - "lat": 51.4188809, - "lon": -1.7115686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 300985758, - "lat": 51.4202800, - "lon": -1.7199685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN8", - "ref": "SN8 151", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 300997664, - "lat": 50.3846472, - "lon": -3.5156743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 301011740, - "lat": 53.7736206, - "lon": -1.7552345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 334" - } -}, -{ - "type": "node", - "id": 301015312, - "lat": 51.5377954, - "lon": -0.1682062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NW8", - "ref": "NW8 3" - } -}, -{ - "type": "node", - "id": 301015703, - "lat": 51.5368388, - "lon": -0.1723853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NW8", - "ref": "NW8 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 301017037, - "lat": 51.5366027, - "lon": -0.1752556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NW8", - "ref": "NW8 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 301017802, - "lat": 51.5261230, - "lon": -0.1622728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "RH aperture block and no collection plate. 2024-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 13D" - } -}, -{ - "type": "node", - "id": 301022536, - "lat": 53.8067210, - "lon": -1.5836081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS4 363", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 301022549, - "lat": 53.8088430, - "lon": -1.5895870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS4 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301026295, - "lat": 52.2495574, - "lon": -3.3813733, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 301031522, - "lat": 52.2415294, - "lon": -3.3785579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "LD1", - "ref": "LD1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301031580, - "lat": 52.2516207, - "lon": -3.3744424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "postal_code": "LD1", - "ref": "LD1 13" - } -}, -{ - "type": "node", - "id": 301033774, - "lat": 52.2395939, - "lon": -3.3823997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "LD1", - "ref": "LD1 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 301034275, - "lat": 52.2343929, - "lon": -3.3805918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "LD1", - "ref": "LD1 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 301034281, - "lat": 52.2379933, - "lon": -3.3784850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "postal_code": "LD1", - "ref": "LD1 9" - } -}, -{ - "type": "node", - "id": 301057273, - "lat": 51.4338920, - "lon": -1.9968466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 200D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 301110816, - "lat": 55.8739663, - "lon": -4.0490894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML5 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 301114769, - "lat": 53.8002865, - "lon": -1.7589357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BD1", - "ref": "BD1 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 301118168, - "lat": 53.8055468, - "lon": -1.7638065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BD8", - "ref": "BD8 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 301124287, - "lat": 53.7972902, - "lon": -1.7551560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 225", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 301124305, - "lat": 53.8029433, - "lon": -1.7553585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00", - "note": "This is the latest collection time in Bradford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BD1", - "ref": "BD1 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301141822, - "lat": 53.8072999, - "lon": -1.7492457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BD3", - "ref": "BD3 88" - } -}, -{ - "type": "node", - "id": 301146022, - "lat": 53.8021294, - "lon": -1.7426383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BD3", - "ref": "BD3 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 301146188, - "lat": 50.3968411, - "lon": -3.5087905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 301153388, - "lat": 53.7790607, - "lon": -1.7307590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BD4", - "ref": "BD4 187" - } -}, -{ - "type": "node", - "id": 301153392, - "lat": 53.7753822, - "lon": -1.7335923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "BD4", - "ref": "BD4 307" - } -}, -{ - "type": "node", - "id": 301207816, - "lat": 51.1170929, - "lon": -0.2174273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH11 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301218958, - "lat": 53.7988374, - "lon": -1.7926643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 301221361, - "lat": 53.7935591, - "lon": -1.7919262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 301261555, - "lat": 53.7880979, - "lon": -1.7591265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 301266961, - "lat": 53.7784236, - "lon": -1.7672232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 301269197, - "lat": 53.7760821, - "lon": -1.7730402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 162" - } -}, -{ - "type": "node", - "id": 301274568, - "lat": 51.4354247, - "lon": -2.0025445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301374305, - "lat": 51.2628623, - "lon": -0.8493951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU52 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301414010, - "lat": 50.6077919, - "lon": -3.5985996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 301452441, - "lat": 51.1190976, - "lon": -0.2150765, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-01", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "ref": "RH11 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301460880, - "lat": 50.7235889, - "lon": -3.5159541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX1 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301468754, - "lat": 51.5454197, - "lon": -2.0548815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN15 67" - } -}, -{ - "type": "node", - "id": 301490733, - "lat": 51.4265603, - "lon": -0.1091481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "BBC TV - \"The Wrong Door - The World's Most Annoying Creature\";survey" - } -}, -{ - "type": "node", - "id": 301522102, - "lat": 55.8537532, - "lon": -4.2278602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G40", - "ref": "G40 109D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 301541645, - "lat": 52.2074780, - "lon": 1.6211590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP16 4604" - } -}, -{ - "type": "node", - "id": 301554114, - "lat": 52.5224244, - "lon": -1.7929416, - "tags": { - "amenity": "post_box", - "postal_code": "B35", - "ref": "B35 770" - } -}, -{ - "type": "node", - "id": 301554119, - "lat": 52.5399413, - "lon": -1.8006562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B76", - "ref": "B76 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 301564284, - "lat": 51.4267278, - "lon": -1.9903417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "995019451378332", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 254", - "royal_cypher": "EIIR", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 301567718, - "lat": 51.4586860, - "lon": -0.2127988, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "SW15", - "ref": "SW15 16" - } -}, -{ - "type": "node", - "id": 301568952, - "lat": 51.4262405, - "lon": -1.9955626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 133D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 301608583, - "lat": 53.7887001, - "lon": -1.7706013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 301608587, - "lat": 53.7883641, - "lon": -1.7785322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 301609101, - "lat": 53.7917755, - "lon": -1.7710615, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 301613407, - "lat": 53.7939399, - "lon": -1.7624512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD1 174", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 301613696, - "lat": 53.7900847, - "lon": -1.7651580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 301633350, - "lat": 56.0548718, - "lon": -3.6285567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 159", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 301673129, - "lat": 53.8016042, - "lon": -1.5560778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 301701954, - "lat": 51.4293482, - "lon": -1.9938069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 335D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 301741862, - "lat": 51.7533272, - "lon": -1.2561620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-09-12", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX1 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 301811180, - "lat": 52.3355428, - "lon": -0.1830477, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 301811187, - "lat": 52.3333043, - "lon": -0.1800257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE29 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 301811454, - "lat": 52.3381236, - "lon": -0.1759479, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 301811481, - "lat": 52.3356599, - "lon": -0.1760526, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 301811564, - "lat": 52.3324498, - "lon": -0.1720611, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 301826839, - "lat": 54.7760159, - "lon": -1.5796180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 68" - } -}, -{ - "type": "node", - "id": 302013261, - "lat": 51.1425801, - "lon": -0.4807675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "I have upgraded the postbox tag.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU6", - "ref": "GU6 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 302013756, - "lat": 51.5166022, - "lon": -0.0796987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2M 224D;EC2M 2241D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 302013779, - "lat": 51.5179439, - "lon": -0.0786021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E1 83P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 302013858, - "lat": 51.1411470, - "lon": -0.4725799, - "tags": { - "amenity": "post_box", - "postal_code": "GU6", - "ref": "GU6 150" - } -}, -{ - "type": "node", - "id": 302014616, - "lat": 51.4921936, - "lon": -2.6240496, - "tags": { - "amenity": "post_box", - "ref": "BS9 356" - } -}, -{ - "type": "node", - "id": 302015393, - "lat": 51.1435904, - "lon": -0.4718053, - "tags": { - "amenity": "post_box", - "postal_code": "GU6", - "ref": "GU6 283" - } -}, -{ - "type": "node", - "id": 302017196, - "lat": 51.1386063, - "lon": -0.4795079, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GU6", - "ref": "GU6 280" - } -}, -{ - "type": "node", - "id": 302018024, - "lat": 51.1348611, - "lon": -0.4803031, - "tags": { - "amenity": "post_box", - "postal_code": "GU6", - "ref": "GU6 92" - } -}, -{ - "type": "node", - "id": 302019047, - "lat": 51.1372251, - "lon": -0.4732640, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GU6", - "ref": "GU6 292", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 302021762, - "lat": 51.1356946, - "lon": -0.4848292, - "tags": { - "amenity": "post_box", - "postal_code": "GU6", - "ref": "GU6 291" - } -}, -{ - "type": "node", - "id": 302024010, - "lat": 51.1470146, - "lon": -0.4818260, - "tags": { - "amenity": "post_box", - "postal_code": "GU6", - "ref": "GU6 296" - } -}, -{ - "type": "node", - "id": 302025223, - "lat": 51.1456116, - "lon": -0.4775729, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 302051147, - "lat": 52.9493250, - "lon": -0.8910296, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 302051461, - "lat": 52.9459749, - "lon": -0.8916299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302091932, - "lat": 55.3892703, - "lon": -1.6128756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NE66 127" - } -}, -{ - "type": "node", - "id": 302094696, - "lat": 51.3558602, - "lon": 1.4380217, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 94D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 302094804, - "lat": 50.5003509, - "lon": -4.3098510, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 302101448, - "lat": 50.8224477, - "lon": -1.5947601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302102399, - "lat": 51.8491459, - "lon": 1.2510815, - "tags": { - "amenity": "post_box", - "mapillary": "471088761654352", - "post_box:type": "pillar", - "postal_code": "CO14 8TB", - "ref": "CO14 118", - "survey:date": "2022-10-18" - } -}, -{ - "type": "node", - "id": 302102437, - "lat": 51.8503540, - "lon": 1.2609870, - "tags": { - "amenity": "post_box", - "postal_code": "CO14 8RQ", - "ref": "CO14 169" - } -}, -{ - "type": "node", - "id": 302102583, - "lat": 51.8494865, - "lon": 1.2722289, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO14 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302105362, - "lat": 51.7429244, - "lon": -0.4851248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 302106022, - "lat": 51.7412004, - "lon": -0.4983885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 302120646, - "lat": 55.3866656, - "lon": -1.6119165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NE66 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302134936, - "lat": 51.4697129, - "lon": -0.3587894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 302138000, - "lat": 51.4689337, - "lon": -0.3615667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 302164045, - "lat": 51.5047657, - "lon": -0.2764345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "W3", - "ref": "W3 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302164071, - "lat": 51.5045436, - "lon": -0.2791793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "W3", - "ref": "W3 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 302173384, - "lat": 51.5042950, - "lon": -0.2691097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "733421471607707", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "W3", - "ref": "W3 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-03-14" - } -}, -{ - "type": "node", - "id": 302323849, - "lat": 53.7295564, - "lon": -1.5880599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 242" - } -}, -{ - "type": "node", - "id": 302324069, - "lat": 53.7298424, - "lon": -1.5795184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 35" - } -}, -{ - "type": "node", - "id": 302324800, - "lat": 51.4518978, - "lon": -2.6119720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 396D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302324909, - "lat": 51.4505287, - "lon": -2.6128040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 395D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302325157, - "lat": 51.4541347, - "lon": -2.6112791, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 400D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 302350019, - "lat": 51.4803811, - "lon": -0.0461268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE14", - "ref": "SE14 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 302355093, - "lat": 51.2345211, - "lon": -0.8017679, - "tags": { - "addr:street": "Bishops Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU9 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302382603, - "lat": 52.0533368, - "lon": -2.6903090, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 302397758, - "lat": 51.4946079, - "lon": -0.1626735, - "tags": { - "access": "yes", - "amenity": "post_box", - "check_date": "2024-07-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "manufacturer": "McDowall, Steven & Co Ltd London & Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 36D;SW1X 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302397760, - "lat": 51.4965212, - "lon": -0.1642732, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 42", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 302397768, - "lat": 51.4946291, - "lon": -0.1671314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW3 15D" - } -}, -{ - "type": "node", - "id": 302404213, - "lat": 51.4785793, - "lon": -0.9634680, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 581D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302410181, - "lat": 51.5223495, - "lon": -0.1653136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 1126D;NW1 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 1126D and NW1 11D" - } -}, -{ - "type": "node", - "id": 302410716, - "lat": 51.5251455, - "lon": -0.1690090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "NW8 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302413442, - "lat": 51.5261597, - "lon": -0.1715168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW8 8" - } -}, -{ - "type": "node", - "id": 302427089, - "lat": 51.5235463, - "lon": -0.1725973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NW8 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 302427113, - "lat": 51.5213352, - "lon": -0.1716290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 149;W2 349", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 302433651, - "lat": 53.7704058, - "lon": -1.7571914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 320" - } -}, -{ - "type": "node", - "id": 302450465, - "lat": 52.2182892, - "lon": -3.2155314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "LD8", - "ref": "LD8 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302452249, - "lat": 52.2059167, - "lon": -3.3653855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "postal_code": "LD1", - "ref": "LD1 41" - } -}, -{ - "type": "node", - "id": 302454413, - "lat": 52.2184385, - "lon": -3.4508227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "postal_code": "LD1", - "ref": "LD1 68" - } -}, -{ - "type": "node", - "id": 302460500, - "lat": 52.2147994, - "lon": -3.4422896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 10:45", - "post_box:type": "wall", - "postal_code": "LD1", - "ref": "LD1 69", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 302460522, - "lat": 52.2121957, - "lon": -3.4406179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "LD1", - "ref": "LD1 70" - } -}, -{ - "type": "node", - "id": 302460559, - "lat": 52.2181064, - "lon": -3.3893831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "wall", - "postal_code": "LD1", - "ref": "LD1 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302460569, - "lat": 52.2120856, - "lon": -3.3937726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "lamp", - "postal_code": "LD1", - "ref": "LD1 42" - } -}, -{ - "type": "node", - "id": 302501293, - "lat": 51.3569765, - "lon": 1.4418035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 157D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 302501297, - "lat": 51.3591084, - "lon": 1.4354515, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 108", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 302570156, - "lat": 51.3578507, - "lon": 1.4414512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "postal_code": "CT10", - "ref": "CT10 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 302630394, - "lat": 55.3529926, - "lon": -1.6468713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE65 64" - } -}, -{ - "type": "node", - "id": 302683941, - "lat": 53.8037727, - "lon": -1.6195530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "LS13", - "ref": "LS13 942", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 302686685, - "lat": 51.4677756, - "lon": -0.9745218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:15", - "post_box:type": "pillar", - "ref": "RG4 586", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302686687, - "lat": 51.4787807, - "lon": -0.9701407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 302688909, - "lat": 50.7495426, - "lon": -1.7941579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 44", - "ref:GB:uprn": "10015804727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302691011, - "lat": 51.4372497, - "lon": -1.9920365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 256D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 302704650, - "lat": 52.2061019, - "lon": 1.5782460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP16 4429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302705709, - "lat": 52.2038209, - "lon": 1.5803142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP16 4678", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302711435, - "lat": 51.2570878, - "lon": -1.1238055, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "RG22 275", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG22", - "ref": "RG22 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302737813, - "lat": 53.8052608, - "lon": -1.6089955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 175" - } -}, -{ - "type": "node", - "id": 302737850, - "lat": 53.8084472, - "lon": -1.6074016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 641", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302780259, - "lat": 53.7999615, - "lon": -1.7354237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD3 3" - } -}, -{ - "type": "node", - "id": 302826861, - "lat": 51.4199568, - "lon": -1.9947958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302834668, - "lat": 55.3735057, - "lon": -1.6933783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE66 149" - } -}, -{ - "type": "node", - "id": 302834691, - "lat": 55.3711312, - "lon": -1.6970122, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "NE66 118" - } -}, -{ - "type": "node", - "id": 302865630, - "lat": 55.3540929, - "lon": -1.6327051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE65 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302865761, - "lat": 55.3504599, - "lon": -1.6142660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE65 246", - "source": "survey" - } -}, -{ - "type": "node", - "id": 302935953, - "lat": 53.8268912, - "lon": -1.7431224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD2 580" - } -}, -{ - "type": "node", - "id": 302943968, - "lat": 53.8267397, - "lon": -1.7479653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD2 318", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 302943989, - "lat": 53.8308330, - "lon": -1.7473040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD10 329", - "source": "survey" - } -}, -{ - "type": "node", - "id": 302958164, - "lat": 52.4480161, - "lon": -1.9667437, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 31" - } -}, -{ - "type": "node", - "id": 302962415, - "lat": 51.4961050, - "lon": -0.1346823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SW1P", - "ref": "SW1P 35D;SW1P 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 302962876, - "lat": 51.5196188, - "lon": -0.0789907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2M 2161;EC2M 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303070544, - "lat": 51.1150078, - "lon": 1.1573653, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 91" - } -}, -{ - "type": "node", - "id": 303136699, - "lat": 53.8020671, - "lon": -1.6305164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "LS13", - "ref": "LS13 892" - } -}, -{ - "type": "node", - "id": 303189655, - "lat": 52.3628729, - "lon": -2.0557461, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10d", - "ref": "B61 149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303189704, - "lat": 52.3660917, - "lon": -2.0469380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B61 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303189881, - "lat": 52.3469740, - "lon": -2.0602582, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B61 779", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303191577, - "lat": 53.7865050, - "lon": -1.7453326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "BD4 118" - } -}, -{ - "type": "node", - "id": 303200043, - "lat": 52.3823521, - "lon": 0.0104092, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303201673, - "lat": 52.3842678, - "lon": 0.0036775, - "tags": { - "amenity": "post_box", - "postal_code": "PE28", - "ref": "PE28 284", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303202253, - "lat": 51.5601909, - "lon": -0.0627289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 4" - } -}, -{ - "type": "node", - "id": 303268665, - "lat": 50.7349814, - "lon": -0.7783410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303346949, - "lat": 52.6023992, - "lon": 1.5015573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "NR13 1333D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 303348431, - "lat": 52.4852827, - "lon": -1.9205478, - "tags": { - "amenity": "post_box", - "postal_code": "B18", - "ref": "B18 27" - } -}, -{ - "type": "node", - "id": 303349509, - "lat": 52.4906757, - "lon": -1.9260156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B18", - "ref": "B18 718", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 303368959, - "lat": 51.4833340, - "lon": -0.9591014, - "tags": { - "amenity": "post_box", - "ref": "RG4 565" - } -}, -{ - "type": "node", - "id": 303380421, - "lat": 51.4297911, - "lon": -1.9420977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "148223274372283", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SN11", - "ref": "SN11 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 303380431, - "lat": 51.4299770, - "lon": -1.9507050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 140D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 303405018, - "lat": 51.2324700, - "lon": -0.8006984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU9 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303480657, - "lat": 51.2310010, - "lon": -0.8051591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GU9 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303480660, - "lat": 51.2319382, - "lon": -0.8103986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303535322, - "lat": 52.5005573, - "lon": -1.9602856, - "tags": { - "amenity": "post_box", - "ref": "B66 1238" - } -}, -{ - "type": "node", - "id": 303537690, - "lat": 52.5033497, - "lon": -1.9656776, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data shows B66 180", - "postal_code": "B66", - "ref": "B66 189" - } -}, -{ - "type": "node", - "id": 303538685, - "lat": 54.0557289, - "lon": -0.8750653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "YO60", - "ref": "YO60 52", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 303577632, - "lat": 51.7022377, - "lon": -1.1808723, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "OX44 67" - } -}, -{ - "type": "node", - "id": 303591896, - "lat": 51.6923639, - "lon": -1.1873611, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX44 751" - } -}, -{ - "type": "node", - "id": 303592323, - "lat": 51.6888318, - "lon": -1.2016605, - "tags": { - "amenity": "post_box", - "ref": "OX44 357" - } -}, -{ - "type": "node", - "id": 303600506, - "lat": 50.7176724, - "lon": -3.4874935, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303609480, - "lat": 52.1866702, - "lon": 0.1793987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 85", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 303610580, - "lat": 51.2609811, - "lon": -1.1207004, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 160" - } -}, -{ - "type": "node", - "id": 303627519, - "lat": 55.3415827, - "lon": -1.7318914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE65 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303634200, - "lat": 51.4102412, - "lon": -0.2867095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 96D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 303644366, - "lat": 52.6017462, - "lon": -0.2834991, - "tags": { - "amenity": "post_box", - "ref": "PE3 301" - } -}, -{ - "type": "node", - "id": 303713636, - "lat": 51.1165746, - "lon": -0.1678678, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "note": "positioned relative to shop", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303713643, - "lat": 51.1217217, - "lon": -0.2079704, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH11 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303761737, - "lat": 53.8143591, - "lon": -1.6112164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 99" - } -}, -{ - "type": "node", - "id": 303763453, - "lat": 50.7366318, - "lon": -0.7709358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2023-09-29", - "old_ref": "PO20 110", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303791248, - "lat": 53.7440794, - "lon": -1.5014142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 680", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303798591, - "lat": 51.9915037, - "lon": 0.5905746, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 303821629, - "lat": 51.4380382, - "lon": -2.0530078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 153D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 303822811, - "lat": 50.9954341, - "lon": -0.9958731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303873858, - "lat": 52.1538512, - "lon": -0.1941948, - "tags": { - "amenity": "post_box", - "ref": "SG19 355" - } -}, -{ - "type": "node", - "id": 303984962, - "lat": 52.1419532, - "lon": -0.1272979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG19 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 303997911, - "lat": 51.4534883, - "lon": 0.0515030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "ref code illegible on 18/03/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303997912, - "lat": 51.4549440, - "lon": 0.0653545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303997914, - "lat": 51.4519414, - "lon": 0.0713609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 303997948, - "lat": 51.4363908, - "lon": 0.1008490, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 303999324, - "lat": 51.2282550, - "lon": -0.2800097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH3 69", - "source": "TMJ-Mobile_0.6.2" - } -}, -{ - "type": "node", - "id": 304016989, - "lat": 51.8022812, - "lon": -0.7981667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 304058019, - "lat": 52.4446712, - "lon": -1.9886406, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B32 1244", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 304098382, - "lat": 53.8314902, - "lon": -1.7355519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 304098383, - "lat": 53.8342485, - "lon": -1.7384987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 304128957, - "lat": 51.2982450, - "lon": -1.1146421, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "RG24", - "ref": "RG24 12" - } -}, -{ - "type": "node", - "id": 304132866, - "lat": 51.5240412, - "lon": -0.2530265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 48" - } -}, -{ - "type": "node", - "id": 304132869, - "lat": 51.5268041, - "lon": -0.2508060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304132927, - "lat": 51.5298786, - "lon": -0.2487073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 29" - } -}, -{ - "type": "node", - "id": 304132936, - "lat": 51.5268125, - "lon": -0.2534804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 71" - } -}, -{ - "type": "node", - "id": 304132959, - "lat": 51.5268608, - "lon": -0.2596678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 86" - } -}, -{ - "type": "node", - "id": 304132961, - "lat": 51.5283818, - "lon": -0.2587968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 37" - } -}, -{ - "type": "node", - "id": 304132987, - "lat": 51.5274999, - "lon": -0.2673006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 77" - } -}, -{ - "type": "node", - "id": 304134425, - "lat": 51.2801070, - "lon": -1.1239349, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG24 370" - } -}, -{ - "type": "node", - "id": 304136255, - "lat": 51.5429745, - "lon": -0.2588212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 52" - } -}, -{ - "type": "node", - "id": 304149979, - "lat": 52.8916152, - "lon": -4.6501735, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 304185762, - "lat": 52.4765718, - "lon": -2.4009426, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 304303028, - "lat": 51.2321793, - "lon": -0.7910155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU9 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 304354209, - "lat": 52.6124912, - "lon": -1.1187169, - "tags": { - "addr:city": "Leicester", - "addr:housenumber": "59", - "addr:postcode": "LE2 3DH", - "addr:street": "Gainsborough Road", - "amenity": "post_box", - "ref": "LE2 473", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304359272, - "lat": 51.4765507, - "lon": -1.9719772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 129D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 304363502, - "lat": 53.3103352, - "lon": -2.3855287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 74", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 304384654, - "lat": 53.4239456, - "lon": -1.5007380, - "tags": { - "amenity": "post_box", - "ref": "S6 197" - } -}, -{ - "type": "node", - "id": 304402842, - "lat": 51.5302481, - "lon": -0.2599254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 89" - } -}, -{ - "type": "node", - "id": 304402867, - "lat": 51.5302613, - "lon": -0.2667020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 47" - } -}, -{ - "type": "node", - "id": 304402897, - "lat": 51.5283039, - "lon": -0.2750635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NW10 111" - } -}, -{ - "type": "node", - "id": 304403014, - "lat": 51.5304230, - "lon": -0.2750549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304403109, - "lat": 51.5334766, - "lon": -0.2645275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 68" - } -}, -{ - "type": "node", - "id": 304403115, - "lat": 51.5341901, - "lon": -0.2609792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304421978, - "lat": 51.5337257, - "lon": -0.2414542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304421983, - "lat": 51.5350758, - "lon": -0.2432571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 11" - } -}, -{ - "type": "node", - "id": 304426475, - "lat": 53.4395212, - "lon": -1.4948368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304429926, - "lat": 51.2585958, - "lon": -1.1241957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "this post box has no ref", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 304464473, - "lat": 54.3484544, - "lon": -6.6569136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT61 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 304464856, - "lat": 51.5399776, - "lon": -0.2534415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 17" - } -}, -{ - "type": "node", - "id": 304464861, - "lat": 51.5419806, - "lon": -0.2547659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 65" - } -}, -{ - "type": "node", - "id": 304465253, - "lat": 51.5421394, - "lon": -0.2514589, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 304465257, - "lat": 51.5434225, - "lon": -0.2536041, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 16" - } -}, -{ - "type": "node", - "id": 304470452, - "lat": 53.8003160, - "lon": -1.6233912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304486372, - "lat": 51.5534801, - "lon": -0.3323293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "UB6", - "ref": "UB6 188" - } -}, -{ - "type": "node", - "id": 304486374, - "lat": 51.5528718, - "lon": -0.3270610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 80" - } -}, -{ - "type": "node", - "id": 304495227, - "lat": 53.8856679, - "lon": -1.2557798, - "tags": { - "amenity": "post_box", - "ref": "LS24 275" - } -}, -{ - "type": "node", - "id": 304577045, - "lat": 51.2192331, - "lon": -0.8041035, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU9 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 304601301, - "lat": 51.6639222, - "lon": -0.1777215, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10e" - } -}, -{ - "type": "node", - "id": 304609908, - "lat": 53.7984469, - "lon": -1.6296130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 281" - } -}, -{ - "type": "node", - "id": 304624394, - "lat": 51.6854748, - "lon": -4.1149004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA14 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304645162, - "lat": 51.5427439, - "lon": -0.2478148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 98" - } -}, -{ - "type": "node", - "id": 304652329, - "lat": 51.5353083, - "lon": -0.2825470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 90" - } -}, -{ - "type": "node", - "id": 304652448, - "lat": 51.5330530, - "lon": -0.2853190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 69" - } -}, -{ - "type": "node", - "id": 304652466, - "lat": 51.5344482, - "lon": -0.2873313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304652592, - "lat": 51.5341218, - "lon": -0.2945743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304657274, - "lat": 51.4097287, - "lon": -0.2826674, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 149D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304661628, - "lat": 52.4547793, - "lon": -1.9492934, - "tags": { - "amenity": "post_box", - "ref": "B17 1163" - } -}, -{ - "type": "node", - "id": 304681270, - "lat": 52.4267997, - "lon": -2.9297941, - "tags": { - "amenity": "post_box", - "ref": "SY7 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 304687763, - "lat": 51.5428652, - "lon": -0.2855784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304687792, - "lat": 51.5418858, - "lon": -0.2783139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA0 314" - } -}, -{ - "type": "node", - "id": 304689509, - "lat": 51.5427275, - "lon": -0.2911693, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 304689636, - "lat": 51.5380074, - "lon": -0.2942713, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 304689702, - "lat": 51.5371203, - "lon": -0.2871149, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 304689746, - "lat": 51.5393919, - "lon": -0.2848900, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 304689800, - "lat": 51.5471309, - "lon": -0.2801600, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 304689827, - "lat": 51.5506293, - "lon": -0.2929911, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 304689835, - "lat": 51.5543533, - "lon": -0.2972036, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 304690508, - "lat": 51.5413881, - "lon": -0.2482836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 54" - } -}, -{ - "type": "node", - "id": 304690512, - "lat": 51.5357434, - "lon": -0.2387114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 58" - } -}, -{ - "type": "node", - "id": 304691889, - "lat": 51.5419520, - "lon": -0.2954758, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 304695390, - "lat": 55.8872795, - "lon": -4.3178788, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10e" - } -}, -{ - "type": "node", - "id": 304695497, - "lat": 51.5460701, - "lon": -0.2927222, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 304696310, - "lat": 51.5229538, - "lon": -0.2682441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304697257, - "lat": 51.2556664, - "lon": -1.1323701, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304745894, - "lat": 51.5175861, - "lon": -0.2897953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 304745936, - "lat": 51.5218185, - "lon": -0.2859664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 70" - } -}, -{ - "type": "node", - "id": 304745937, - "lat": 51.5251252, - "lon": -0.2884411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 84" - } -}, -{ - "type": "node", - "id": 304765633, - "lat": 51.1381397, - "lon": 1.0009939, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 304789967, - "lat": 57.0061459, - "lon": -3.4052905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB35 249", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 304821907, - "lat": 52.4905775, - "lon": -1.9381558, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B18", - "ref": "B18 427", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 304825601, - "lat": 52.4932734, - "lon": -1.9278219, - "tags": { - "amenity": "post_box", - "postal_code": "B18", - "ref": "B18 66" - } -}, -{ - "type": "node", - "id": 304825617, - "lat": 52.4953625, - "lon": -1.9348897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B18", - "ref": "B18 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 304837868, - "lat": 54.9722745, - "lon": -1.6476478, - "tags": { - "amenity": "post_box", - "ref": "NE4 49" - } -}, -{ - "type": "node", - "id": 304876205, - "lat": 53.7579767, - "lon": -1.5030722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 193", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 304898253, - "lat": 53.8017964, - "lon": -1.5452182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS2 149;LS2 1149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305005815, - "lat": 50.4605286, - "lon": -3.5410055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 305066588, - "lat": 52.4627069, - "lon": -1.9340374, - "tags": { - "amenity": "post_box", - "ref": "B15 146" - } -}, -{ - "type": "node", - "id": 305066630, - "lat": 52.4577696, - "lon": -1.9295655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "323021625884936", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B15 241", - "survey:date": "2020-05-11" - } -}, -{ - "type": "node", - "id": 305066704, - "lat": 52.4581954, - "lon": -1.9445332, - "tags": { - "amenity": "post_box", - "ref": "B17 127" - } -}, -{ - "type": "node", - "id": 305066707, - "lat": 52.4559587, - "lon": -1.9501162, - "tags": { - "amenity": "post_box", - "ref": "B17 168" - } -}, -{ - "type": "node", - "id": 305066710, - "lat": 52.4578296, - "lon": -1.9570115, - "tags": { - "amenity": "post_box", - "ref": "B17 146" - } -}, -{ - "type": "node", - "id": 305073863, - "lat": 51.6518318, - "lon": -0.1226089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EN2 86D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 305079987, - "lat": 51.4592661, - "lon": -2.5949475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS2 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305080088, - "lat": 51.4554218, - "lon": -2.6018257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "BS1 425D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 305084446, - "lat": 51.5612774, - "lon": -0.2749459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 305084592, - "lat": 51.5597675, - "lon": -0.2908657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "postal_code": "HA9", - "ref": "HA9 28" - } -}, -{ - "type": "node", - "id": 305136534, - "lat": 51.4984782, - "lon": -0.1779988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "post_box:apertures": "1", - "ref": "SW7 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305141856, - "lat": 56.1786550, - "lon": -4.3842301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "799585551633270", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "FK8", - "ref": "FK8 181", - "survey:date": "2023-05-25" - } -}, -{ - "type": "node", - "id": 305141950, - "lat": 52.4947920, - "lon": -1.9134667, - "tags": { - "amenity": "post_box", - "postal_code": "B19", - "ref": "B19 1192" - } -}, -{ - "type": "node", - "id": 305160640, - "lat": 51.3960192, - "lon": -2.0042068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN11 154", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 305169165, - "lat": 51.5387953, - "lon": -0.2415695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 305173663, - "lat": 51.5511304, - "lon": -0.2442916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 73" - } -}, -{ - "type": "node", - "id": 305175545, - "lat": 52.5024497, - "lon": -1.7585579, - "tags": { - "amenity": "post_box", - "ref": "B36 232", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305177430, - "lat": 51.5553380, - "lon": -0.2501955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 20" - } -}, -{ - "type": "node", - "id": 305215598, - "lat": 52.4898365, - "lon": -1.9440438, - "tags": { - "amenity": "post_box", - "postal_code": "B18", - "ref": "B18 1350" - } -}, -{ - "type": "node", - "id": 305215649, - "lat": 52.4870913, - "lon": -1.9455530, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B18 77" - } -}, -{ - "type": "node", - "id": 305215651, - "lat": 52.4865940, - "lon": -1.9354718, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B18 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305267967, - "lat": 51.5537340, - "lon": -0.3049193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "postal_code": "HA0", - "ref": "HA0 304" - } -}, -{ - "type": "node", - "id": 305272226, - "lat": 53.7552520, - "lon": -1.4861803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 98", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 305277825, - "lat": 50.7427760, - "lon": -1.8007392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "203962908591378", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 58", - "ref:GB:uprn": "10015446707", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 305277838, - "lat": 50.7525033, - "lon": -1.7983537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 106" - } -}, -{ - "type": "node", - "id": 305278476, - "lat": 51.5514038, - "lon": -0.3075650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:45", - "postal_code": "HA0", - "ref": "HA0 256" - } -}, -{ - "type": "node", - "id": 305278566, - "lat": 51.5465013, - "lon": -0.3081192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "postal_code": "HA0", - "ref": "HA0 200" - } -}, -{ - "type": "node", - "id": 305278675, - "lat": 51.5458810, - "lon": -0.3023805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA0", - "ref": "HA0 190D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305278680, - "lat": 51.5492973, - "lon": -0.3017699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA0", - "ref": "HA0 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305335286, - "lat": 51.4910520, - "lon": -1.8949850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 18D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 305347744, - "lat": 51.4135836, - "lon": -0.2877524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 97D" - } -}, -{ - "type": "node", - "id": 305386890, - "lat": 51.5459781, - "lon": -0.2974261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-16", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA0", - "ref": "HA0 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305394852, - "lat": 51.5407320, - "lon": -0.2986187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-16", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HA0", - "ref": "HA0 57", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 305394892, - "lat": 51.5507047, - "lon": -0.3025887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "postal_code": "HA0", - "ref": "HA0 298" - } -}, -{ - "type": "node", - "id": 305399273, - "lat": 51.5521482, - "lon": -0.2999250, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-16", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HA9", - "ref": "HA9 142" - } -}, -{ - "type": "node", - "id": 305410626, - "lat": 51.5512096, - "lon": -0.2834046, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 305412268, - "lat": 51.5531673, - "lon": -0.2861779, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-11", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "HA9", - "ref": "HA9 139" - } -}, -{ - "type": "node", - "id": 305417342, - "lat": 51.5536242, - "lon": -0.2928350, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-11", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "postal_code": "HA9", - "ref": "HA9 54" - } -}, -{ - "type": "node", - "id": 305428773, - "lat": 52.4684169, - "lon": -1.9292477, - "tags": { - "amenity": "post_box", - "ref": "B15 97" - } -}, -{ - "type": "node", - "id": 305437297, - "lat": 51.2387962, - "lon": -0.7301393, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "GU10 92", - "post_box:type": "lamp", - "postal_code": "GU10", - "ref": "GU10 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305438533, - "lat": 51.2358919, - "lon": -0.7268946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305442494, - "lat": 51.5625905, - "lon": -0.3047094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:type": "pillar", - "postal_code": "HA0", - "ref": "HA0 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 305442568, - "lat": 51.5544169, - "lon": -0.2995225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "HA0", - "ref": "HA0 65" - } -}, -{ - "type": "node", - "id": 305442649, - "lat": 51.5592932, - "lon": -0.3041719, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 305442650, - "lat": 51.5575797, - "lon": -0.3061862, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 305490103, - "lat": 55.9591476, - "lon": -3.1949181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "post_box:type": "pillar", - "ref": "EH3 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305490142, - "lat": 55.9620863, - "lon": -3.1958474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 221", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 305498736, - "lat": 53.1719703, - "lon": -1.3424480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "S45 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305503134, - "lat": 55.9614827, - "lon": -3.1898206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 75", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 305509236, - "lat": 50.9760800, - "lon": -1.4520706, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO52 674", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305521390, - "lat": 51.4337523, - "lon": -0.0684047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305527745, - "lat": 51.5690688, - "lon": -0.3219159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "postal_code": "HA1", - "ref": "HA1 354" - } -}, -{ - "type": "node", - "id": 305527779, - "lat": 51.5620159, - "lon": -0.3188298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:type": "pillar", - "postal_code": "HA0", - "ref": "HA0 14" - } -}, -{ - "type": "node", - "id": 305527827, - "lat": 51.5652274, - "lon": -0.3112628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "postal_code": "HA0", - "ref": "HA0 215" - } -}, -{ - "type": "node", - "id": 305527925, - "lat": 51.5645524, - "lon": -0.3057386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "HA9", - "ref": "HA9 85" - } -}, -{ - "type": "node", - "id": 305527951, - "lat": 51.5632039, - "lon": -0.3017545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "HA9", - "ref": "HA9 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305529665, - "lat": 51.5418282, - "lon": 0.0271232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305536658, - "lat": 53.3393990, - "lon": -2.2175088, - "tags": { - "amenity": "post_box", - "ref": "SK9 719" - } -}, -{ - "type": "node", - "id": 305536662, - "lat": 53.3389085, - "lon": -2.2222450, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SK9 370", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 305549438, - "lat": 52.3815171, - "lon": -0.0033011, - "tags": { - "amenity": "post_box", - "note": "I don't know if this is \"active\" or decommisioned. Probably the latter...", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305549763, - "lat": 52.2912694, - "lon": 0.0905328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB24 469", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305572334, - "lat": 51.4210730, - "lon": -2.1180199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN15 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 305575140, - "lat": 51.4114716, - "lon": -2.1048541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305594120, - "lat": 55.4325139, - "lon": -1.6169379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "fixme": "Is this still here?", - "post_box:design": "ludlow", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NE66 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305624917, - "lat": 53.4243554, - "lon": -1.4638282, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 695", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 305628945, - "lat": 53.4269711, - "lon": -1.4660319, - "tags": { - "amenity": "post_box", - "ref": "S5 874" - } -}, -{ - "type": "node", - "id": 305636341, - "lat": 53.4276041, - "lon": -1.4534104, - "tags": { - "amenity": "post_box", - "ref": "S5 982" - } -}, -{ - "type": "node", - "id": 305636352, - "lat": 53.4294772, - "lon": -1.4495022, - "tags": { - "amenity": "post_box", - "ref": "S5 865" - } -}, -{ - "type": "node", - "id": 305644953, - "lat": 50.8864803, - "lon": -1.7722073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BH24", - "ref": "BH24 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305646255, - "lat": 53.4365909, - "lon": -1.4395437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S5 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305646318, - "lat": 53.4366326, - "lon": -1.4496369, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 771", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 305675203, - "lat": 53.6723543, - "lon": -1.8811200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HX4 144", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 305689795, - "lat": 51.2550210, - "lon": -0.6817063, - "tags": { - "amenity": "post_box", - "postal_code": "GU3", - "ref": "GU3 42" - } -}, -{ - "type": "node", - "id": 305696986, - "lat": 50.8664952, - "lon": -0.5192701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305698671, - "lat": 53.7550152, - "lon": -1.4813789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 932", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305714441, - "lat": 53.6734223, - "lon": -1.8753380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 77" - } -}, -{ - "type": "node", - "id": 305729993, - "lat": 52.5000319, - "lon": -1.9328162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 251", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 305730142, - "lat": 51.2568243, - "lon": -0.2878874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "TMJ-Mobile_0.6.3" - } -}, -{ - "type": "node", - "id": 305749703, - "lat": 51.6560277, - "lon": -0.1528392, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305755562, - "lat": 53.3344087, - "lon": -2.2363166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK9 715" - } -}, -{ - "type": "node", - "id": 305764006, - "lat": 53.3408016, - "lon": -2.2180820, - "tags": { - "amenity": "post_box", - "ref": "SK9 654" - } -}, -{ - "type": "node", - "id": 305767652, - "lat": 51.4422272, - "lon": -1.9185633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN11 219D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 305767827, - "lat": 51.4440350, - "lon": -1.9062907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 136D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 305768428, - "lat": 53.7262841, - "lon": -1.3515434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WF10 342" - } -}, -{ - "type": "node", - "id": 305772045, - "lat": 53.3420304, - "lon": -2.2128318, - "tags": { - "amenity": "post_box", - "ref": "SK9 371" - } -}, -{ - "type": "node", - "id": 305775748, - "lat": 53.1389739, - "lon": -1.3931197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 489" - } -}, -{ - "type": "node", - "id": 305776979, - "lat": 53.3434788, - "lon": -2.2132105, - "tags": { - "amenity": "post_box", - "ref": "SK9 703" - } -}, -{ - "type": "node", - "id": 305777213, - "lat": 53.1198265, - "lon": -1.4136934, - "tags": { - "amenity": "post_box", - "ref": "DE55 441" - } -}, -{ - "type": "node", - "id": 305801381, - "lat": 52.4564701, - "lon": -2.1455960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "drive_through": "no", - "note": "Both apertures had same reference on survey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DY8 200;DY8 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305801386, - "lat": 52.4575247, - "lon": -2.1471869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "note": "Last collection plate is corrected by a label to read Mo-Fr 17:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DY8 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305808463, - "lat": 51.5494571, - "lon": -0.2976466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "HA0 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 305810583, - "lat": 52.5005675, - "lon": -1.9392622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B21", - "ref": "B21 335" - } -}, -{ - "type": "node", - "id": 305810618, - "lat": 52.5000322, - "lon": -1.9477784, - "tags": { - "amenity": "post_box", - "postal_code": "B66", - "ref": "B66 729" - } -}, -{ - "type": "node", - "id": 305810620, - "lat": 52.5025374, - "lon": -1.9500096, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 305825528, - "lat": 52.5063722, - "lon": -1.9480057, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B21 210" - } -}, -{ - "type": "node", - "id": 305825585, - "lat": 52.5044653, - "lon": -1.9546788, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B21", - "ref": "B21 1024", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 305924497, - "lat": 51.0983525, - "lon": 0.0336980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH18 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305937090, - "lat": 52.5543622, - "lon": -0.2777521, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 305946316, - "lat": 51.4091293, - "lon": -0.2869932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305952676, - "lat": 55.6560070, - "lon": -3.7278729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML11 18D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 305952688, - "lat": 55.6404019, - "lon": -3.6802637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "ML12", - "ref": "ML12 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 305955881, - "lat": 55.5040965, - "lon": -3.4291129, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ML12 43" - } -}, -{ - "type": "node", - "id": 305957349, - "lat": 55.4714251, - "lon": -3.2072929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "mapillary": "1399826650710319", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "TD7", - "ref": "TD7 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 305957379, - "lat": 55.3336077, - "lon": -3.4443462, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-16", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "DG10", - "ref": "DG10 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305989742, - "lat": 53.8237046, - "lon": -1.7469579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 305995639, - "lat": 51.4999920, - "lon": -0.1490380, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 72D;SW1X 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 305995645, - "lat": 51.4985635, - "lon": -0.1474744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 29D;SW1X 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 305995649, - "lat": 51.4960938, - "lon": -0.1457283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q113687568", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1W 85D;SW1W 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box SW1W 85D and SW1W 185D" - } -}, -{ - "type": "node", - "id": 305996589, - "lat": 51.3775701, - "lon": -1.3500993, - "tags": { - "amenity": "post_box", - "is_in": "Wash Common", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 306003885, - "lat": 52.5924309, - "lon": -1.1280106, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 895" - } -}, -{ - "type": "node", - "id": 306011465, - "lat": 51.1278009, - "lon": -0.2136743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Ifield Green", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH11 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 306026230, - "lat": 50.8444990, - "lon": -1.6616159, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 09:45", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306039544, - "lat": 53.8363971, - "lon": -1.7409323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BD10 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306150000, - "lat": 52.4945635, - "lon": -1.7373847, - "tags": { - "amenity": "post_box", - "ref": "B36 1178", - "source": "survey" - } -}, -{ - "type": "node", - "id": 306150004, - "lat": 52.4910267, - "lon": -1.7400401, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B36 799", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 306154211, - "lat": 52.4867198, - "lon": -1.7373191, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 306200731, - "lat": 50.7368387, - "lon": -1.7799805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:45", - "description": "BH23 17 is for stamped mail; BH23 7017 is for franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH23 17;BH23 7017", - "ref:GB:uprn": "10015472438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306200733, - "lat": 50.7379897, - "lon": -1.7814669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 23D", - "ref:GB:uprn": "10015399791", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306200736, - "lat": 50.7423647, - "lon": -1.7856099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 24", - "ref:GB:uprn": "10015319981" - } -}, -{ - "type": "node", - "id": 306227192, - "lat": 52.5895228, - "lon": -1.1309145, - "tags": { - "amenity": "post_box", - "postal_code": "LE18", - "ref": "LE18 827" - } -}, -{ - "type": "node", - "id": 306241140, - "lat": 54.9724718, - "lon": -2.0005380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE45 160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 306256831, - "lat": 55.3108548, - "lon": -1.7968226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE65 144" - } -}, -{ - "type": "node", - "id": 306265424, - "lat": 54.9741432, - "lon": -2.6293195, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306279589, - "lat": 51.6084043, - "lon": 0.2079661, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 306285532, - "lat": 51.7478000, - "lon": -1.2563627, - "tags": { - "addr:street": "St Aldate's", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX1 173", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 306285642, - "lat": 51.7515089, - "lon": -1.2505537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "wall", - "ref": "OX1 123", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 306298415, - "lat": 53.7972967, - "lon": -1.6036708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 481" - } -}, -{ - "type": "node", - "id": 306310746, - "lat": 53.1565736, - "lon": -1.3603884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "Pilsley", - "post_box:type": "lamp", - "ref": "S45 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306328525, - "lat": 53.8007094, - "lon": -1.6107369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 852" - } -}, -{ - "type": "node", - "id": 306328571, - "lat": 53.8008554, - "lon": -1.6197847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 153" - } -}, -{ - "type": "node", - "id": 306415712, - "lat": 51.9745647, - "lon": 0.5897700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO9 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306456317, - "lat": 51.5854011, - "lon": -0.1406438, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 306463483, - "lat": 54.9705721, - "lon": -1.6516776, - "tags": { - "amenity": "post_box", - "ref": "NE4 266" - } -}, -{ - "type": "node", - "id": 306464186, - "lat": 52.5971764, - "lon": -1.1218198, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE2", - "ref": "LE2 720" - } -}, -{ - "type": "node", - "id": 306478024, - "lat": 53.1834543, - "lon": -1.3792000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306479521, - "lat": 53.1773714, - "lon": -1.3883692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "is_in": "North Wingfield", - "post_box:type": "lamp", - "ref": "S42 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306480807, - "lat": 51.4470263, - "lon": -2.0952871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 306481482, - "lat": 52.5631840, - "lon": -0.2420143, - "tags": { - "amenity": "post_box", - "mapillary": "475231490468828", - "post_box:type": "pillar", - "ref": "PE2 51", - "survey:date": "2020-06-14" - } -}, -{ - "type": "node", - "id": 306490352, - "lat": 50.7291759, - "lon": -3.5232775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306490443, - "lat": 50.7321873, - "lon": -3.5217922, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306550842, - "lat": 51.5799370, - "lon": -0.1580522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 306550844, - "lat": 51.5744178, - "lon": -0.1564485, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-19", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 306553895, - "lat": 51.5512782, - "lon": -0.1237880, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-16", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N7 27" - } -}, -{ - "type": "node", - "id": 306562169, - "lat": 52.3189885, - "lon": -0.1696551, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306562194, - "lat": 52.3153581, - "lon": -0.1667440, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 306568707, - "lat": 51.5439161, - "lon": -0.1177354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N7 15;N7 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 306647251, - "lat": 50.4676650, - "lon": -3.5385694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 92D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 306677483, - "lat": 52.5208836, - "lon": -0.2471259, - "tags": { - "amenity": "post_box", - "ref": "PE7 355", - "source": "survey" - } -}, -{ - "type": "node", - "id": 306686216, - "lat": 51.1321754, - "lon": -0.1659677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH10 65", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 306703308, - "lat": 53.4510641, - "lon": -1.2712812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S65 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 306703955, - "lat": 52.4477404, - "lon": -2.1341433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DY8 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 306923709, - "lat": 51.5839984, - "lon": -0.1465079, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 306937126, - "lat": 55.8459548, - "lon": -4.3350106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10e", - "mapillary": "2527397854057364", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G52", - "ref": "G52 634", - "survey:date": "2022-01-18" - } -}, -{ - "type": "node", - "id": 307000597, - "lat": 52.4651305, - "lon": -1.9024743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1434038663634942", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B5 80", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2020-05-11" - } -}, -{ - "type": "node", - "id": 307000645, - "lat": 52.4603849, - "lon": -1.9069514, - "tags": { - "amenity": "post_box", - "ref": "B5 868", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307023556, - "lat": 52.3869888, - "lon": -1.2472132, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 307102760, - "lat": 52.5851217, - "lon": -1.1661764, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "LE2 9JG", - "ref": "LE2 582" - } -}, -{ - "type": "node", - "id": 307102761, - "lat": 52.5713028, - "lon": -1.1756911, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "LE8 797" - } -}, -{ - "type": "node", - "id": 307146809, - "lat": 51.6239857, - "lon": -0.0058585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 307151118, - "lat": 51.6268357, - "lon": -0.0082667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 12" - } -}, -{ - "type": "node", - "id": 307241278, - "lat": 52.5782696, - "lon": -1.1692487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:00", - "ref": "LE8 215" - } -}, -{ - "type": "node", - "id": 307388719, - "lat": 51.7918931, - "lon": -0.6676152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307410756, - "lat": 53.4786761, - "lon": -2.2265370, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307423864, - "lat": 53.4802859, - "lon": -2.2279276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M1 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 307427421, - "lat": 53.4332920, - "lon": -2.1801383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 307428482, - "lat": 53.4374874, - "lon": -2.1596291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 307428485, - "lat": 53.4493835, - "lon": -2.1576903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 307428486, - "lat": 53.4526813, - "lon": -2.1576043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 307428489, - "lat": 53.4581155, - "lon": -2.1610170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "M18 545D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 307435466, - "lat": 52.5772052, - "lon": -1.1794834, - "tags": { - "amenity": "post_box", - "ref": "LE8 842" - } -}, -{ - "type": "node", - "id": 307435563, - "lat": 52.5680059, - "lon": -1.1781909, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "LE8 377" - } -}, -{ - "type": "node", - "id": 307435564, - "lat": 52.5613708, - "lon": -1.1826630, - "tags": { - "amenity": "post_box", - "ref": "LE8 193" - } -}, -{ - "type": "node", - "id": 307435565, - "lat": 52.5639980, - "lon": -1.1747629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 09:00", - "ref": "LE8 633" - } -}, -{ - "type": "node", - "id": 307435566, - "lat": 52.5591691, - "lon": -1.1799301, - "tags": { - "amenity": "post_box", - "ref": "LE8 677" - } -}, -{ - "type": "node", - "id": 307461972, - "lat": 51.3473626, - "lon": 1.4215220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT12", - "ref": "CT12 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307462471, - "lat": 52.5467016, - "lon": -0.2709943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 307464378, - "lat": 52.5530957, - "lon": -0.2639901, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 307478293, - "lat": 52.2143890, - "lon": 0.1262192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB4 142" - } -}, -{ - "type": "node", - "id": 307478310, - "lat": 52.2155856, - "lon": 0.1318190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4", - "ref": "CB4 165D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307510197, - "lat": 53.4647157, - "lon": -2.2081465, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 307512615, - "lat": 53.4639585, - "lon": -2.2122240, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "M19 79D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 307523034, - "lat": 53.0482043, - "lon": -1.6015575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "ref": "DE6 264" - } -}, -{ - "type": "node", - "id": 307549110, - "lat": 51.5484764, - "lon": 0.0305637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 3D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307557922, - "lat": 51.6715925, - "lon": -1.2824110, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "colour": "red", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX14 1029", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 307558195, - "lat": 51.6732302, - "lon": -1.2852965, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-10", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph;knowledge" - } -}, -{ - "type": "node", - "id": 307641592, - "lat": 53.4114695, - "lon": -2.3516962, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M33 613", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 307661285, - "lat": 54.7924971, - "lon": -1.5342731, - "tags": { - "amenity": "post_box", - "ref": "DH1 100" - } -}, -{ - "type": "node", - "id": 307677056, - "lat": 53.4518122, - "lon": -2.1901609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M13 304D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 307680188, - "lat": 53.4983296, - "lon": -2.2475687, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 307694543, - "lat": 52.5920302, - "lon": -1.1228102, - "tags": { - "amenity": "post_box", - "postal_code": "LE18", - "ref": "LE18 756" - } -}, -{ - "type": "node", - "id": 307705786, - "lat": 53.4669187, - "lon": -2.2043504, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 307718277, - "lat": 51.4963428, - "lon": -0.7071365, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10e" - } -}, -{ - "type": "node", - "id": 307735085, - "lat": 53.4738401, - "lon": -2.2578051, - "tags": { - "amenity": "post_box", - "postal_code": "M16", - "ref": "M16 775" - } -}, -{ - "type": "node", - "id": 307736006, - "lat": 52.5986923, - "lon": -1.1205996, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE2 6GE", - "ref": "LE2 677", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 307736397, - "lat": 51.4812595, - "lon": -0.6163783, - "tags": { - "amenity": "post_box", - "ref": "SL4 1" - } -}, -{ - "type": "node", - "id": 307746037, - "lat": 53.4729490, - "lon": -2.2486153, - "tags": { - "amenity": "post_box", - "postal_code": "M15", - "ref": "M15 572" - } -}, -{ - "type": "node", - "id": 307760775, - "lat": 53.4849965, - "lon": -2.3580285, - "tags": { - "amenity": "post_box", - "fixme": "location inaccurate" - } -}, -{ - "type": "node", - "id": 307768126, - "lat": 51.6672078, - "lon": -1.3088684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307773020, - "lat": 51.6698591, - "lon": -1.3045352, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 17:45; Sa 08:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX14 753", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307774807, - "lat": 51.6727557, - "lon": -1.3013386, - "tags": { - "amenity": "post_box", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307775082, - "lat": 51.6706572, - "lon": -1.2951420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "OX14 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307775862, - "lat": 51.6697841, - "lon": -1.2883806, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1018", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307780207, - "lat": 50.7384493, - "lon": -3.5125379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "wall", - "ref": "EX4 476D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 307789213, - "lat": 51.6752895, - "lon": -1.2747104, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1037", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307793461, - "lat": 51.6801730, - "lon": -1.2740238, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OX14 1182", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102273", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307794247, - "lat": 51.6767615, - "lon": -1.2697580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX14 1067", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307806499, - "lat": 51.6818293, - "lon": -1.2767903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "fixme": "Survey for ref", - "ref": "OX14 1005", - "royal_cypher": "GR", - "source": "Abingdon mapping party GPS survey" - } -}, -{ - "type": "node", - "id": 307828239, - "lat": 50.9875120, - "lon": -1.4732028, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 463", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 307828775, - "lat": 51.5310671, - "lon": -0.1315355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 32D" - } -}, -{ - "type": "node", - "id": 307829077, - "lat": 51.5345168, - "lon": -0.1739402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 307834790, - "lat": 50.9925986, - "lon": -1.4701530, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO52 699", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 307844514, - "lat": 51.3699992, - "lon": -0.2546038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 162D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 307848704, - "lat": 51.3671331, - "lon": -0.2559350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 307849362, - "lat": 50.7316505, - "lon": -3.4998123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 307853937, - "lat": 51.6301744, - "lon": 0.5160204, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 307858593, - "lat": 51.6247924, - "lon": 0.5198814, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 307923514, - "lat": 51.4402627, - "lon": -1.9949401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 338D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 307963132, - "lat": 53.2889110, - "lon": -2.9123586, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10e" - } -}, -{ - "type": "node", - "id": 307985445, - "lat": 53.4744675, - "lon": -2.2508513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "M3", - "ref": "M3 116", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 307987239, - "lat": 53.4780332, - "lon": -2.2365411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "M1", - "ref": "M1 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 307989738, - "lat": 51.6661695, - "lon": -2.6597670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "193787936818221", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP16 430D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 308004140, - "lat": 52.4611249, - "lon": -1.9434203, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 332", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308007193, - "lat": 52.4632327, - "lon": -1.9495804, - "tags": { - "amenity": "post_box", - "ref": "B17 666", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308007204, - "lat": 52.4726894, - "lon": -1.9594777, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308011878, - "lat": 52.4696393, - "lon": -1.9387273, - "tags": { - "amenity": "post_box", - "ref": "B15 147", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308046179, - "lat": 52.4976222, - "lon": -1.9388647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B18", - "ref": "B18 236", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 308046206, - "lat": 52.4967420, - "lon": -1.9469913, - "tags": { - "amenity": "post_box", - "postal_code": "B66", - "ref": "B66 1378" - } -}, -{ - "type": "node", - "id": 308078234, - "lat": 53.4859012, - "lon": -2.3662380, - "tags": { - "amenity": "post_box", - "ref": "M30 542" - } -}, -{ - "type": "node", - "id": 308197387, - "lat": 51.2883574, - "lon": -0.3841643, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-11", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KT23 389P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 308255976, - "lat": 51.6483101, - "lon": -1.5913501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 308256804, - "lat": 51.6517067, - "lon": -1.5912528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN7 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308291342, - "lat": 51.3453251, - "lon": 1.4275118, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 65", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 308304165, - "lat": 51.3496294, - "lon": 1.4338226, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308306373, - "lat": 51.3543369, - "lon": 1.4290082, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 112D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 308318493, - "lat": 51.3414917, - "lon": 1.4170647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 21" - } -}, -{ - "type": "node", - "id": 308325208, - "lat": 51.3409316, - "lon": 1.4222706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308333057, - "lat": 51.3422874, - "lon": 1.4112453, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308336165, - "lat": 53.1286052, - "lon": -1.7146171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 308344910, - "lat": 51.3445012, - "lon": 1.4087480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT12", - "ref": "CT12 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 308352036, - "lat": 51.3482089, - "lon": 1.4061238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT12", - "ref": "CT12 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308390034, - "lat": 53.4870025, - "lon": -2.2268218, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 308426158, - "lat": 51.5073805, - "lon": -0.2246728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W12 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27085601" - } -}, -{ - "type": "node", - "id": 308444718, - "lat": 52.4705730, - "lon": -2.0165250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B62 269D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 308502401, - "lat": 51.6168905, - "lon": -0.3938953, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10e" - } -}, -{ - "type": "node", - "id": 308513785, - "lat": 53.7889446, - "lon": -1.5404191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS10 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308523126, - "lat": 53.4948298, - "lon": -2.2208846, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 308529171, - "lat": 52.4812314, - "lon": -1.9320199, - "tags": { - "amenity": "post_box", - "postal_code": "B16", - "ref": "B16 222" - } -}, -{ - "type": "node", - "id": 308539499, - "lat": 53.2548287, - "lon": -1.5115991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 308833234, - "lat": 51.4928508, - "lon": -0.1433699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1V 56;SW1V 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308851062, - "lat": 53.3219846, - "lon": -2.2462287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK9", - "ref": "SK9 88", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 308851063, - "lat": 53.3332534, - "lon": -2.2503420, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "SK9", - "ref": "SK9 642" - } -}, -{ - "type": "node", - "id": 308851590, - "lat": 53.3269423, - "lon": -2.2420703, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-18", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "postal_code": "SK9", - "ref": "SK9 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 308851595, - "lat": 53.3204237, - "lon": -2.2372930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "SK9", - "ref": "SK9 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 308851596, - "lat": 53.3258075, - "lon": -2.2323921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SK9", - "ref": "SK9 515;SK9 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308851611, - "lat": 53.3279869, - "lon": -2.2315653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "Franked mail only", - "post_box:type": "meter", - "postal_code": "SK9", - "ref": "SK9 998", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 308853150, - "lat": 51.2619824, - "lon": -1.1300179, - "tags": { - "amenity": "post_box", - "note": "this post box has no ref" - } -}, -{ - "type": "node", - "id": 308854459, - "lat": 52.4804799, - "lon": -2.1647005, - "tags": { - "amenity": "post_box", - "postal_code": "DY8", - "ref": "DY8 11", - "source": "approx" - } -}, -{ - "type": "node", - "id": 308854494, - "lat": 52.4785488, - "lon": -2.1566335, - "tags": { - "amenity": "post_box", - "postal_code": "DY8", - "ref": "DY8 17", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 308856885, - "lat": 51.2616826, - "lon": -1.1401081, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 22" - } -}, -{ - "type": "node", - "id": 308859124, - "lat": 51.2679288, - "lon": -1.1238286, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 308" - } -}, -{ - "type": "node", - "id": 308910588, - "lat": 51.7969677, - "lon": 1.1494469, - "tags": { - "amenity": "post_box", - "mapillary": "277836044457452", - "post_box:type": "pillar", - "postal_code": "CO15 3LT", - "ref": "CO15 4", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 308913368, - "lat": 51.4491612, - "lon": -2.1103535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN15 14" - } -}, -{ - "type": "node", - "id": 308919773, - "lat": 51.4597564, - "lon": -0.2117697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "SW15", - "ref": "SW15 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 308928118, - "lat": 52.0203903, - "lon": 0.6044976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO9 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 308973719, - "lat": 53.3235993, - "lon": -2.2353588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "SK9", - "ref": "SK9 258D", - "royal_cypher": "EVIIR", - "survey:date": "2022-12-20", - "wikimedia_commons": "File:King Edward VII postbox in an Alderley Road hedge in Wilmslow - geograph.org.uk - 4159371.jpg" - } -}, -{ - "type": "node", - "id": 308974388, - "lat": 50.4395397, - "lon": -3.5598421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 308981866, - "lat": 51.2179858, - "lon": -0.7962966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU9 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 308995714, - "lat": 50.4348876, - "lon": -3.5603186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ4", - "ref": "TQ4 145D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 309060024, - "lat": 55.0133907, - "lon": -1.4445518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE30 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309107052, - "lat": 51.4124223, - "lon": -0.2838699, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 309119082, - "lat": 52.9310838, - "lon": -1.4870205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE22 1GZ", - "ref": "DE22 149" - } -}, -{ - "type": "node", - "id": 309132527, - "lat": 53.8389457, - "lon": -1.7482737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309158488, - "lat": 51.6251631, - "lon": 0.5280473, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 309170961, - "lat": 52.4587046, - "lon": -2.0115202, - "tags": { - "amenity": "post_box", - "ref": "B32 1259", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309179487, - "lat": 52.4051739, - "lon": -1.9870868, - "tags": { - "amenity": "post_box", - "ref": "B31 706", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309185428, - "lat": 52.4600572, - "lon": -1.9959866, - "tags": { - "amenity": "post_box", - "ref": "B32 786" - } -}, -{ - "type": "node", - "id": 309185461, - "lat": 52.4607879, - "lon": -1.9879136, - "tags": { - "amenity": "post_box", - "ref": "B32 684" - } -}, -{ - "type": "node", - "id": 309206270, - "lat": 51.6625734, - "lon": -1.2945958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 309213003, - "lat": 51.6654791, - "lon": -1.2966345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "OX14 1046" - } -}, -{ - "type": "node", - "id": 309214788, - "lat": 52.4609960, - "lon": -1.9979398, - "tags": { - "amenity": "post_box", - "ref": "B32 893" - } -}, -{ - "type": "node", - "id": 309214904, - "lat": 52.4649898, - "lon": -1.9880080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "ref": "B32 889", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 309217549, - "lat": 52.1936555, - "lon": -0.2014067, - "tags": { - "amenity": "post_box", - "ref": "PE19 136" - } -}, -{ - "type": "node", - "id": 309225289, - "lat": 51.6597728, - "lon": -1.2838741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309234827, - "lat": 50.9995149, - "lon": -1.4757382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 570", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309241726, - "lat": 50.9994685, - "lon": -1.4808369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 660D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309250745, - "lat": 51.4676051, - "lon": -0.9700057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG4 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 309277729, - "lat": 52.4689381, - "lon": -1.9855939, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 401" - } -}, -{ - "type": "node", - "id": 309277746, - "lat": 52.4772955, - "lon": -1.9786809, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 291" - } -}, -{ - "type": "node", - "id": 309277843, - "lat": 52.4832617, - "lon": -1.9906226, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 687" - } -}, -{ - "type": "node", - "id": 309277858, - "lat": 52.4793417, - "lon": -1.9849338, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 530" - } -}, -{ - "type": "node", - "id": 309284939, - "lat": 52.4739829, - "lon": -1.9915639, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 299" - } -}, -{ - "type": "node", - "id": 309284943, - "lat": 52.4723081, - "lon": -1.9953486, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B68", - "ref": "B68 425", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 309289821, - "lat": 52.4731764, - "lon": -1.9397885, - "tags": { - "amenity": "post_box", - "ref": "B16 154" - } -}, -{ - "type": "node", - "id": 309289823, - "lat": 52.4724244, - "lon": -1.9365294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309289830, - "lat": 52.4820025, - "lon": -1.9405572, - "tags": { - "amenity": "post_box", - "postal_code": "B16", - "ref": "B16 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309290324, - "lat": 52.4836312, - "lon": -1.9448049, - "tags": { - "amenity": "post_box", - "postal_code": "B16", - "ref": "B16 164" - } -}, -{ - "type": "node", - "id": 309290325, - "lat": 52.4795636, - "lon": -1.9466944, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 205", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 309330833, - "lat": 50.9974157, - "lon": -1.4723608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 750D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309353925, - "lat": 53.3312290, - "lon": -1.5396127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S17", - "ref": "S17 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309359238, - "lat": 51.4441016, - "lon": -1.9566530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309364562, - "lat": 53.2441408, - "lon": -2.6209929, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 309376844, - "lat": 51.5652149, - "lon": -0.0729159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 21" - } -}, -{ - "type": "node", - "id": 309408112, - "lat": 52.0229675, - "lon": -4.8947189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA42 66", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2023-06-19" - } -}, -{ - "type": "node", - "id": 309416680, - "lat": 52.7356948, - "lon": 1.4667258, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 309434190, - "lat": 52.4823286, - "lon": -1.9006886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "none", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "This Postbox is for pre-paid parcels bought online, barcode returns and Business franked mail.", - "last_checked": "2021-07-23", - "note": "no sign of B3 174 which was indicated here.", - "old_ref": "B3 9000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B3 9000P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309434194, - "lat": 52.4815086, - "lon": -1.9042489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "B3 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309446520, - "lat": 52.4768910, - "lon": -1.9307481, - "tags": { - "amenity": "post_box", - "postal_code": "B16", - "ref": "B16 144" - } -}, -{ - "type": "node", - "id": 309456979, - "lat": 52.4742380, - "lon": -1.9267383, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 6" - } -}, -{ - "type": "node", - "id": 309465297, - "lat": 52.4724806, - "lon": -1.9219843, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309465331, - "lat": 52.4729322, - "lon": -1.9309381, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B16", - "ref": "B16 410" - } -}, -{ - "type": "node", - "id": 309465347, - "lat": 52.4752154, - "lon": -1.9328226, - "tags": { - "amenity": "post_box", - "postal_code": "B16", - "ref": "B16 117" - } -}, -{ - "type": "node", - "id": 309481331, - "lat": 54.7554198, - "lon": -1.6243391, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 309499940, - "lat": 51.5114131, - "lon": -0.2245764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "W12", - "ref": "W12 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309540601, - "lat": 51.5078093, - "lon": 0.3533067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RM16 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309540651, - "lat": 51.5124324, - "lon": 0.3676145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 309545261, - "lat": 51.4085660, - "lon": -0.0672549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309545272, - "lat": 51.4063956, - "lon": -0.0683836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309552241, - "lat": 53.1608363, - "lon": -2.2129187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CW12", - "ref": "CW12 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309552243, - "lat": 53.1614264, - "lon": -2.2151558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "postal_code": "CW12", - "ref": "CW12 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309552254, - "lat": 53.1572718, - "lon": -2.2024250, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CW12", - "ref": "CW12 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309552268, - "lat": 53.1548063, - "lon": -2.1988959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "postal_code": "CW12", - "ref": "CW12 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309570098, - "lat": 53.3524568, - "lon": -1.5182356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 633", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309570100, - "lat": 53.3477954, - "lon": -1.5169095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 731", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 309570103, - "lat": 53.3791713, - "lon": -1.4892743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309570418, - "lat": 53.3330987, - "lon": -1.5458817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S17 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309571956, - "lat": 53.3293552, - "lon": -1.5457932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S17", - "ref": "S17 791D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309633864, - "lat": 53.7747681, - "lon": -2.5470789, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 309633895, - "lat": 53.7806023, - "lon": -2.5367632, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 309644480, - "lat": 51.4955801, - "lon": 0.3358879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 91" - } -}, -{ - "type": "node", - "id": 309644482, - "lat": 51.5007440, - "lon": 0.3308902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 105" - } -}, -{ - "type": "node", - "id": 309663792, - "lat": 50.2532094, - "lon": -3.6573335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 309670111, - "lat": 52.3234606, - "lon": -1.9258996, - "tags": { - "amenity": "post_box", - "ref": "B98 186" - } -}, -{ - "type": "node", - "id": 309692459, - "lat": 52.4368338, - "lon": -2.0116129, - "tags": { - "amenity": "post_box", - "ref": "B32 1270", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309692474, - "lat": 52.4389968, - "lon": -2.0067946, - "tags": { - "amenity": "post_box", - "ref": "B32 940", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309704992, - "lat": 51.8127305, - "lon": 1.1578583, - "tags": { - "amenity": "post_box", - "mapillary": "152985250111924", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO15 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309726629, - "lat": 53.3183680, - "lon": -2.0059889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK23 120" - } -}, -{ - "type": "node", - "id": 309726835, - "lat": 53.2531662, - "lon": -2.1043382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 309726920, - "lat": 53.2529795, - "lon": -2.1159408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SK11", - "ref": "SK11 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309734380, - "lat": 53.8361572, - "lon": -1.7528710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309734405, - "lat": 53.8373031, - "lon": -1.7560969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309735878, - "lat": 51.8066776, - "lon": 1.1564805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO15 4QJ", - "ref": "CO15 185" - } -}, -{ - "type": "node", - "id": 309755376, - "lat": 53.3234284, - "lon": -1.5425627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S17", - "ref": "S17 830", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309755904, - "lat": 51.8150180, - "lon": 1.1635137, - "tags": { - "amenity": "post_box", - "mapillary": "152630420160383", - "post_box:type": "pillar", - "ref": "CO15 176", - "survey:date": "2021-03-21" - } -}, -{ - "type": "node", - "id": 309756130, - "lat": 51.8104369, - "lon": 1.1507962, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 3TZ", - "ref": "CO15 78" - } -}, -{ - "type": "node", - "id": 309756298, - "lat": 51.8130790, - "lon": 1.1520282, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=637a4191-8825-44a0-9024-be4b8c498a07&cp=51.813034~1.151662&lvl=19&dir=64.87492&pi=-1.2116007&style=x&mo=z.1.88&v=2&sV=2&form=S00027", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9QT", - "ref": "CO16 109" - } -}, -{ - "type": "node", - "id": 309757609, - "lat": 53.3226711, - "lon": -1.5373660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S17", - "ref": "S17 671", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 309764439, - "lat": 53.3192407, - "lon": -1.5297634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S17 185D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309767165, - "lat": 53.3214269, - "lon": -1.5242766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S17", - "ref": "S17 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309768200, - "lat": 51.4495041, - "lon": -1.9479332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 126D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 309781230, - "lat": 51.4597244, - "lon": -0.1992424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Set into wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW18", - "ref": "SW18 1" - } -}, -{ - "type": "node", - "id": 309786904, - "lat": 53.3272704, - "lon": -1.5166601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S17", - "ref": "S17 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309786916, - "lat": 53.3295456, - "lon": -1.5234669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S17 304", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 309786946, - "lat": 53.3146053, - "lon": -1.5360528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "S17", - "ref": "S17 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309836389, - "lat": 51.6267142, - "lon": -3.9969197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SA2 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309845863, - "lat": 51.7999250, - "lon": 1.1643549, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 6LB", - "ref": "CO15 143" - } -}, -{ - "type": "node", - "id": 309846417, - "lat": 51.7965925, - "lon": 1.1676238, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=97449850-136c-492d-87c0-d5adb1447966&cp=51.796549~1.167753&lvl=19&dir=323.18735&pi=-15.850521&style=x&mo=z.0&v=2&sV=2&form=S00027", - "post_box:type": "pillar", - "postal_code": "CO15 6HT", - "ref": "CO15 66" - } -}, -{ - "type": "node", - "id": 309872231, - "lat": 51.4809040, - "lon": -3.1784296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "St Johns Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 309880532, - "lat": 52.0291766, - "lon": 1.1955421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP3 8202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 309888185, - "lat": 51.8111958, - "lon": 1.1723110, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 4NF", - "ref": "CO15 123" - } -}, -{ - "type": "node", - "id": 309901939, - "lat": 50.7472849, - "lon": -1.7990741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 74", - "ref:GB:uprn": "10015419459" - } -}, -{ - "type": "node", - "id": 309910503, - "lat": 52.0561038, - "lon": 1.1826568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1151" - } -}, -{ - "type": "node", - "id": 309910827, - "lat": 55.8610502, - "lon": -4.2516230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G2", - "ref": "G2 15090;G2 1509", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 309975353, - "lat": 51.3966040, - "lon": -0.3041014, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KT6", - "ref": "KT6 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310028511, - "lat": 52.0429208, - "lon": 1.1829382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 310028591, - "lat": 52.0523100, - "lon": 1.1826091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP3 1143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310093131, - "lat": 51.7937417, - "lon": 1.1539085, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 6QA", - "ref": "CO15 32" - } -}, -{ - "type": "node", - "id": 310098260, - "lat": 52.5021054, - "lon": -1.9908277, - "tags": { - "amenity": "post_box", - "postal_code": "B66", - "ref": "B66 52" - } -}, -{ - "type": "node", - "id": 310098286, - "lat": 52.5022422, - "lon": -1.9851146, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B66", - "ref": "B66 192" - } -}, -{ - "type": "node", - "id": 310098301, - "lat": 52.5006475, - "lon": -1.9893250, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 307" - } -}, -{ - "type": "node", - "id": 310123986, - "lat": 51.2373776, - "lon": -1.1421207, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RG22 383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310182887, - "lat": 51.7903900, - "lon": 1.1619241, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 6DG", - "ref": "CO15 40" - } -}, -{ - "type": "node", - "id": 310182927, - "lat": 51.7936412, - "lon": 1.1699509, - "tags": { - "amenity": "post_box", - "mapillary": "685496512833578", - "post_box:type": "pillar", - "postal_code": "CO15 6HN", - "ref": "CO15 75", - "survey:date": "2021-12-18" - } -}, -{ - "type": "node", - "id": 310182988, - "lat": 51.7992714, - "lon": 1.1843855, - "tags": { - "amenity": "post_box", - "mapillary": "663081441662612", - "post_box:type": "pillar", - "postal_code": "CO15 5EH", - "ref": "CO15 89", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 310183151, - "lat": 51.8021632, - "lon": 1.1820371, - "tags": { - "amenity": "post_box", - "mapillary": "1180038592418965", - "post_box:type": "pillar", - "postal_code": "CO15 5ER", - "ref": "CO15 1", - "survey:date": "2021-03-13" - } -}, -{ - "type": "node", - "id": 310183846, - "lat": 51.8028462, - "lon": 1.1771958, - "tags": { - "amenity": "post_box", - "mapillary": "157208343266853", - "post_box:type": "pillar", - "postal_code": "CO15 6NR", - "ref": "CO15 166", - "survey:date": "2021-11-30" - } -}, -{ - "type": "node", - "id": 310212321, - "lat": 51.7641897, - "lon": -0.3071650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310240836, - "lat": 54.0938477, - "lon": -0.7821701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:55; Sa 10:50", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO17 24" - } -}, -{ - "type": "node", - "id": 310253199, - "lat": 51.3694483, - "lon": -0.1559857, - "tags": { - "amenity": "post_box", - "postal_code": "SM6", - "ref": "SM6 145" - } -}, -{ - "type": "node", - "id": 310263738, - "lat": 51.2415035, - "lon": -1.1361962, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 39" - } -}, -{ - "type": "node", - "id": 310267491, - "lat": 51.4589891, - "lon": -0.2088475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW15", - "ref": "SW15 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 310378864, - "lat": 53.4033023, - "lon": -2.9788355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QE II Type G double post box on Bold Street between Slater Street & Newington.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L1 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bold Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 310379962, - "lat": 53.4032964, - "lon": -2.9669493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "George VI type A post box L7 531 by McDowell Stevens & Co at the junction of Oxford Street & Mulberry Street, Liverpool.", - "manufacturer": "McDowellm Stevens & Co", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L7 531", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Mulberry Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 310380270, - "lat": 53.4031157, - "lon": -2.9600261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box by Carron Company on Oxford Street near to Crown Street, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Oxford Street, Liverpool" - } -}, -{ - "type": "node", - "id": 310396788, - "lat": 55.9331029, - "lon": -3.2291931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-01-05", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 182" - } -}, -{ - "type": "node", - "id": 310396789, - "lat": 55.9357602, - "lon": -3.2102116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH10 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 310398339, - "lat": 51.0641251, - "lon": -0.5308291, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH14 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 310398446, - "lat": 51.0724429, - "lon": -0.5377900, - "tags": { - "amenity": "post_box", - "ref": "RH14 166" - } -}, -{ - "type": "node", - "id": 310408797, - "lat": 51.3830782, - "lon": 0.1177306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 140", - "ref:GB:uprn": "10015312980", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310415842, - "lat": 55.8617519, - "lon": -4.0264954, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310415858, - "lat": 55.8591032, - "lon": -4.0221949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML5 5", - "royal_cypher": "scottish_crown", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 310415991, - "lat": 55.8656397, - "lon": -4.0364677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML5 43", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310417551, - "lat": 55.8469331, - "lon": -4.3997428, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 29" - } -}, -{ - "type": "node", - "id": 310425317, - "lat": 52.4810787, - "lon": -1.9761217, - "tags": { - "amenity": "post_box", - "ref": "B67 347" - } -}, -{ - "type": "node", - "id": 310426766, - "lat": 53.3700077, - "lon": -2.1049910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 310436795, - "lat": 52.5025121, - "lon": -2.0041351, - "tags": { - "amenity": "post_box", - "postal_code": "B69", - "ref": "B69 938" - } -}, -{ - "type": "node", - "id": 310436834, - "lat": 52.4906474, - "lon": -2.0006677, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B68 371" - } -}, -{ - "type": "node", - "id": 310436842, - "lat": 52.4973696, - "lon": -1.9980600, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B68", - "ref": "B68 118", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 310443678, - "lat": 52.3714338, - "lon": -1.2822325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 310468507, - "lat": 51.8100479, - "lon": 1.1567611, - "tags": { - "amenity": "post_box", - "mapillary": "2925230331077985", - "post_box:type": "pillar", - "postal_code": "CO15 4HA", - "ref": "CO15 168", - "survey:date": "2021-05-15" - } -}, -{ - "type": "node", - "id": 310468828, - "lat": 51.8005001, - "lon": 1.1717559, - "tags": { - "amenity": "post_box", - "mapillary": "490767492198616", - "post_box:type": "pillar", - "postal_code": "CO15 6ND", - "ref": "CO15 63", - "survey:date": "2021-12-02" - } -}, -{ - "type": "node", - "id": 310471618, - "lat": 51.4921830, - "lon": -1.9773285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310472655, - "lat": 51.4418121, - "lon": -2.0001351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "200349968586952", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "SN11 217D", - "royal_cypher": "GR", - "survey:date": "2021-03-24" - } -}, -{ - "type": "node", - "id": 310513485, - "lat": 54.1177717, - "lon": -0.0875511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO15 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310533490, - "lat": 55.9274739, - "lon": -3.1873426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "mapillary": "859093078008366", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 303", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-01-27" - } -}, -{ - "type": "node", - "id": 310533505, - "lat": 55.9259002, - "lon": -3.1834513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH9 197", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 310538063, - "lat": 55.9053438, - "lon": -3.2494235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH13 390D" - } -}, -{ - "type": "node", - "id": 310645706, - "lat": 52.4544045, - "lon": -1.9849639, - "tags": { - "amenity": "post_box", - "ref": "B32 741" - } -}, -{ - "type": "node", - "id": 310645787, - "lat": 52.4820986, - "lon": -1.8980895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B3 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310646088, - "lat": 52.4588474, - "lon": -2.0049361, - "tags": { - "amenity": "post_box", - "ref": "B32 1084" - } -}, -{ - "type": "node", - "id": 310646251, - "lat": 52.4524598, - "lon": -2.0029701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "ref": "B32 1241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310646375, - "lat": 52.4524976, - "lon": -1.9954058, - "tags": { - "amenity": "post_box", - "ref": "B32 1323" - } -}, -{ - "type": "node", - "id": 310653608, - "lat": 51.2305153, - "lon": 0.4874015, - "tags": { - "amenity": "post_box", - "ref": "ME17 384" - } -}, -{ - "type": "node", - "id": 310662072, - "lat": 51.2327682, - "lon": 0.4942733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME17 22" - } -}, -{ - "type": "node", - "id": 310663604, - "lat": 51.2345465, - "lon": 0.5009774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 302D" - } -}, -{ - "type": "node", - "id": 310667124, - "lat": 53.6753811, - "lon": -1.8672183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HX4 159", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 310671546, - "lat": 50.8716063, - "lon": -0.1019768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BN1 344", - "wikimedia_commons": "File:Postbox in Stanmer.jpg" - } -}, -{ - "type": "node", - "id": 310672086, - "lat": 53.7877145, - "lon": -1.0827781, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 310672139, - "lat": 53.7884665, - "lon": -1.0733456, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310679139, - "lat": 52.4805514, - "lon": -1.8983632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B2 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310681440, - "lat": 52.4802536, - "lon": -1.9006230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B2 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310707440, - "lat": 53.3875527, - "lon": -1.4746264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S3", - "ref": "S3 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310715190, - "lat": 53.3964921, - "lon": -1.4638830, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S3", - "ref": "S3 1276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310741374, - "lat": 53.8284954, - "lon": -1.7683316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310741401, - "lat": 53.8343161, - "lon": -1.7781302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310741406, - "lat": 53.8337540, - "lon": -1.7678288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 310745379, - "lat": 51.6161787, - "lon": -0.2177490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 310797631, - "lat": 51.7896814, - "lon": 1.1578204, - "tags": { - "amenity": "post_box", - "mapillary": "1161695337971288", - "post_box:type": "pillar", - "postal_code": "CO15 6QE", - "ref": "CO15 31", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 310797779, - "lat": 51.7918230, - "lon": 1.1654398, - "tags": { - "amenity": "post_box", - "mapillary": "1119492078617552", - "post_box:type": "pillar", - "postal_code": "CO15 6BE", - "ref": "CO15 43", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 310798057, - "lat": 51.8051886, - "lon": 1.1486685, - "tags": { - "amenity": "post_box", - "mapillary": "124058290147906", - "post_box:type": "pillar", - "postal_code": "CO15 4DR", - "ref": "CO15 76", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 310798223, - "lat": 51.8076861, - "lon": 1.1513695, - "tags": { - "amenity": "post_box", - "mapillary": "359680945915226", - "post_box:type": "pillar", - "postal_code": "CO15 4DX", - "ref": "CO15 138", - "survey:date": "2021-11-30" - } -}, -{ - "type": "node", - "id": 310798763, - "lat": 53.6249144, - "lon": -1.8143797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 310806322, - "lat": 54.7599645, - "lon": -1.5484872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH1 70" - } -}, -{ - "type": "node", - "id": 310818598, - "lat": 52.4995248, - "lon": -1.9802759, - "tags": { - "amenity": "post_box", - "postal_code": "B66", - "ref": "B66 123" - } -}, -{ - "type": "node", - "id": 310820566, - "lat": 54.7714415, - "lon": -1.5956737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310831995, - "lat": 53.3206467, - "lon": -1.5104259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S17 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310841284, - "lat": 52.4963594, - "lon": -1.9813645, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 485" - } -}, -{ - "type": "node", - "id": 310856781, - "lat": 51.2962409, - "lon": 0.4004361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "ME19", - "ref": "ME19 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 310856960, - "lat": 51.2926183, - "lon": 0.4075629, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "note": "next collection tab obscures first part of royal cypher", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 6D", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 310857047, - "lat": 51.2954773, - "lon": 0.4091191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME19 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310857109, - "lat": 51.2982258, - "lon": 0.4115474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "ME19", - "ref": "ME19 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 310857160, - "lat": 51.2872026, - "lon": 0.4021226, - "tags": { - "amenity": "post_box", - "postal_code": "ME19", - "ref": "ME19 123" - } -}, -{ - "type": "node", - "id": 310857358, - "lat": 51.2916856, - "lon": 0.3733798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 279" - } -}, -{ - "type": "node", - "id": 310857466, - "lat": 51.3009178, - "lon": 0.4044846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME19 101D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 310857469, - "lat": 51.2905357, - "lon": 0.3976875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 171", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 310872928, - "lat": 53.1567566, - "lon": -2.1917597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "postal_code": "CW12", - "ref": "CW12 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310878814, - "lat": 53.1647112, - "lon": -2.2302442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310878815, - "lat": 53.1579288, - "lon": -2.2341796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CW12", - "ref": "CW12 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 310929364, - "lat": 52.4942318, - "lon": -1.9992304, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 788" - } -}, -{ - "type": "node", - "id": 310930980, - "lat": 50.9300693, - "lon": -2.5885567, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref:GB:uprn": "10015455740" - } -}, -{ - "type": "node", - "id": 310932801, - "lat": 53.1372847, - "lon": -1.3506638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "is_in": "Tibshelf", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 365" - } -}, -{ - "type": "node", - "id": 310933373, - "lat": 53.1164279, - "lon": -1.3689887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 402" - } -}, -{ - "type": "node", - "id": 310936607, - "lat": 52.4955893, - "lon": -1.9868145, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 447" - } -}, -{ - "type": "node", - "id": 310936625, - "lat": 52.4930254, - "lon": -1.9780253, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 215" - } -}, -{ - "type": "node", - "id": 310944625, - "lat": 51.3818574, - "lon": -0.1968418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 280D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 310944661, - "lat": 51.3808984, - "lon": -0.2026261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 278", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 310957917, - "lat": 51.4372449, - "lon": -2.0707526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 310987652, - "lat": 51.2712176, - "lon": 0.5792417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "ME14", - "ref": "ME14 134D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 310988629, - "lat": 55.9085331, - "lon": -3.2094328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 293", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 310994144, - "lat": 51.7919429, - "lon": 1.1591248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "481282773560058", - "post_box:type": "pillar", - "postal_code": "CO15 1UG", - "ref": "CO15 47", - "royal_cypher": "VR", - "survey:date": "2022-02-02" - } -}, -{ - "type": "node", - "id": 310999434, - "lat": 51.4481954, - "lon": -2.0290784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1077704259693147", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN11 228D", - "royal_cypher": "EIIR", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 311002521, - "lat": 55.8140540, - "lon": -4.3604820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G53 836", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311006887, - "lat": 55.8455694, - "lon": -4.3714488, - "tags": { - "amenity": "post_box", - "ref": "PA1 174" - } -}, -{ - "type": "node", - "id": 311017856, - "lat": 51.4975070, - "lon": -1.9850679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 120D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311054898, - "lat": 51.8025975, - "lon": 1.1710996, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 6LY", - "ref": "CO15 142" - } -}, -{ - "type": "node", - "id": 311054980, - "lat": 51.8023704, - "lon": 1.1654291, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 6LF", - "ref": "CO15 159" - } -}, -{ - "type": "node", - "id": 311057313, - "lat": 51.7948461, - "lon": 1.1588534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO15 6EA", - "ref": "CO15 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 311076554, - "lat": 51.5903126, - "lon": -1.4373041, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 311076951, - "lat": 51.5883055, - "lon": -1.4353571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 311082530, - "lat": 52.4107682, - "lon": -1.8865449, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 878", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311091223, - "lat": 52.4095817, - "lon": -1.8890543, - "tags": { - "amenity": "post_box", - "ref": "B14 1167", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311091225, - "lat": 52.4079315, - "lon": -1.8921830, - "tags": { - "amenity": "post_box", - "ref": "B14 1166", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311091492, - "lat": 52.4070476, - "lon": -1.9052813, - "tags": { - "amenity": "post_box", - "ref": "B14 1299", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311118281, - "lat": 51.7939221, - "lon": 1.1616150, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO15 46" - } -}, -{ - "type": "node", - "id": 311118774, - "lat": 51.8057166, - "lon": 1.1980679, - "tags": { - "amenity": "post_box", - "mapillary": "1386284401879331", - "post_box:type": "pillar", - "postal_code": "CO15 5SR", - "ref": "CO15 91", - "survey:date": "2022-06-23" - } -}, -{ - "type": "node", - "id": 311121032, - "lat": 51.8064115, - "lon": 1.1955398, - "tags": { - "amenity": "post_box", - "mapillary": "134957899173749", - "post_box:type": "pillar", - "ref": "CO15 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-23" - } -}, -{ - "type": "node", - "id": 311130038, - "lat": 51.8184073, - "lon": 1.1651784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "ref": "CO15 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 311131935, - "lat": 51.2707453, - "lon": 0.5748923, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 290" - } -}, -{ - "type": "node", - "id": 311132195, - "lat": 52.4415205, - "lon": -1.9323737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "B29 213", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 311139039, - "lat": 51.2937594, - "lon": -0.3693733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 70D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 311140832, - "lat": 51.2861140, - "lon": -0.3753950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "KT23 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 311162868, - "lat": 51.2713520, - "lon": 0.5213491, - "tags": { - "amenity": "post_box", - "ref": "ME15 210", - "source": "photo" - } -}, -{ - "type": "node", - "id": 311164053, - "lat": 51.2885747, - "lon": -0.3827560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 311171827, - "lat": 51.2690627, - "lon": 0.5136830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME16 103", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "photo" - } -}, -{ - "type": "node", - "id": 311175415, - "lat": 51.2676979, - "lon": 0.5047110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME16 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311179720, - "lat": 51.2774796, - "lon": 0.5154341, - "tags": { - "amenity": "post_box", - "postal_code": "ME16", - "ref": "ME16 249" - } -}, -{ - "type": "node", - "id": 311192467, - "lat": 53.8212091, - "lon": -1.7437812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD2 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 311192725, - "lat": 53.8195260, - "lon": -1.7631857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BD2 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 311195441, - "lat": 51.5069637, - "lon": 0.2727413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 214" - } -}, -{ - "type": "node", - "id": 311195443, - "lat": 51.5046334, - "lon": 0.2763108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 215" - } -}, -{ - "type": "node", - "id": 311213182, - "lat": 51.2760240, - "lon": 0.5729278, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ME14", - "ref": "ME14 46" - } -}, -{ - "type": "node", - "id": 311218599, - "lat": 51.2731526, - "lon": 0.5668489, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 333" - } -}, -{ - "type": "node", - "id": 311248714, - "lat": 52.4451187, - "lon": -1.9341528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B29 220" - } -}, -{ - "type": "node", - "id": 311251546, - "lat": 51.8095654, - "lon": 1.1514258, - "tags": { - "amenity": "post_box", - "mapillary": "129926079444671", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO15 4RB", - "ref": "CO15 180", - "survey:date": "2021-11-30" - } -}, -{ - "type": "node", - "id": 311285883, - "lat": 51.4397850, - "lon": -2.0125909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 339D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311287036, - "lat": 51.4168874, - "lon": -1.9780377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 130D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311298724, - "lat": 51.8052280, - "lon": 1.1836007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "772405674405197", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO15 5DP", - "ref": "CO15 161", - "survey:date": "2023-04-20" - } -}, -{ - "type": "node", - "id": 311298738, - "lat": 51.8052545, - "lon": 1.1880038, - "tags": { - "amenity": "post_box", - "mapillary": "163442886009552", - "post_box:type": "pillar", - "postal_code": "CO15 5EA", - "ref": "CO15 67", - "survey:date": "2022-01-09" - } -}, -{ - "type": "node", - "id": 311298746, - "lat": 51.8094059, - "lon": 1.1919792, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 5XW", - "ref": "CO15 163" - } -}, -{ - "type": "node", - "id": 311299506, - "lat": 51.8056370, - "lon": 1.2075423, - "tags": { - "amenity": "post_box", - "mapillary": "1016368398958360", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO15 5TX", - "ref": "CO15 133", - "survey:date": "2021-12-18" - } -}, -{ - "type": "node", - "id": 311299566, - "lat": 51.8017909, - "lon": 1.1868183, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 5LX", - "ref": "CO15 124" - } -}, -{ - "type": "node", - "id": 311299570, - "lat": 51.7985960, - "lon": 1.1791278, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 5NA", - "ref": "CO15 137" - } -}, -{ - "type": "node", - "id": 311299577, - "lat": 51.7976026, - "lon": 1.1741773, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 5AP", - "ref": "CO15 103" - } -}, -{ - "type": "node", - "id": 311299638, - "lat": 51.8059303, - "lon": 1.1550812, - "tags": { - "amenity": "post_box", - "mapillary": "415952703616631", - "post_box:type": "pillar", - "postal_code": "CO15 4BS", - "ref": "CO15 55", - "survey:date": "2022-07-07" - } -}, -{ - "type": "node", - "id": 311299831, - "lat": 51.8148195, - "lon": 1.1549722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "181292604780936", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO15 4UZ", - "ref": "CO15 189", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 311299859, - "lat": 51.8165777, - "lon": 1.1593884, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 4PX", - "ref": "CO15 182" - } -}, -{ - "type": "node", - "id": 311303835, - "lat": 51.2768336, - "lon": 0.5647144, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 348" - } -}, -{ - "type": "node", - "id": 311305890, - "lat": 51.8190586, - "lon": 1.1676224, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 4XA", - "ref": "CO15 200" - } -}, -{ - "type": "node", - "id": 311319036, - "lat": 55.8323171, - "lon": -4.3525348, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 311320178, - "lat": 52.4371605, - "lon": -1.9289236, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B29 139" - } -}, -{ - "type": "node", - "id": 311350958, - "lat": 51.2750563, - "lon": -0.3642506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "KT23 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 311372308, - "lat": 51.2808435, - "lon": 0.4983490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 244", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 311372876, - "lat": 51.2785250, - "lon": 0.4957609, - "tags": { - "amenity": "post_box", - "ref": "ME16 223", - "source": "audio" - } -}, -{ - "type": "node", - "id": 311374483, - "lat": 51.2834751, - "lon": 0.4895137, - "tags": { - "amenity": "post_box", - "ref": "ME16 282" - } -}, -{ - "type": "node", - "id": 311378944, - "lat": 51.2807611, - "lon": 0.5055915, - "tags": { - "amenity": "post_box", - "mapillary": "178896457450477", - "post_box:type": "pillar", - "ref": "ME16 213", - "survey:date": "2021-02-13" - } -}, -{ - "type": "node", - "id": 311379415, - "lat": 51.2696990, - "lon": 0.5051471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 311379484, - "lat": 51.4433289, - "lon": -2.0066099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 158D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311379501, - "lat": 51.4456769, - "lon": -2.0085809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 301D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 311391361, - "lat": 51.4271986, - "lon": -1.9703456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN11", - "ref": "SN11 116" - } -}, -{ - "type": "node", - "id": 311413769, - "lat": 51.2680273, - "lon": 0.5220010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 142" - } -}, -{ - "type": "node", - "id": 311413772, - "lat": 51.2617671, - "lon": 0.5347131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 311413893, - "lat": 51.2659984, - "lon": 0.5269115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 106D" - } -}, -{ - "type": "node", - "id": 311413984, - "lat": 51.2669208, - "lon": 0.5300587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 311414028, - "lat": 51.2647074, - "lon": 0.5196094, - "tags": { - "amenity": "post_box", - "ref": "ME15 127" - } -}, -{ - "type": "node", - "id": 311414437, - "lat": 51.2603241, - "lon": 0.5232336, - "tags": { - "amenity": "post_box", - "ref": "ME15 174" - } -}, -{ - "type": "node", - "id": 311414441, - "lat": 51.2622260, - "lon": 0.5170272, - "tags": { - "amenity": "post_box", - "ref": "ME15 15" - } -}, -{ - "type": "node", - "id": 311414581, - "lat": 51.2501199, - "lon": 0.5303923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 311415293, - "lat": 51.2644736, - "lon": 0.5080872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME15 87D" - } -}, -{ - "type": "node", - "id": 311470314, - "lat": 51.2795135, - "lon": 0.5631245, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME14 211D" - } -}, -{ - "type": "node", - "id": 311472179, - "lat": 51.2718411, - "lon": 0.5532656, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 38" - } -}, -{ - "type": "node", - "id": 311529843, - "lat": 53.8243916, - "lon": -1.7323752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD10 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 311529911, - "lat": 53.8246700, - "lon": -1.7370015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD2 280", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 311540256, - "lat": 52.4015651, - "lon": -1.9424483, - "tags": { - "amenity": "post_box", - "note": "No information on the box", - "ref": "B38 877", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311549126, - "lat": 51.6391891, - "lon": -2.3534443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1510097049578287", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-05-17" - } -}, -{ - "type": "node", - "id": 311619410, - "lat": 51.2679095, - "lon": 0.4959442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME16 199", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 311622044, - "lat": 51.2660808, - "lon": 0.4899958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME16 352" - } -}, -{ - "type": "node", - "id": 311626618, - "lat": 51.2676978, - "lon": 0.4809332, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ME16 132", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311641979, - "lat": 51.2757620, - "lon": 0.5513214, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 341" - } -}, -{ - "type": "node", - "id": 311738982, - "lat": 51.4765776, - "lon": -1.9302439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 112D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311755468, - "lat": 55.8605905, - "lon": -4.0476951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ML5 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 311760156, - "lat": 55.7397412, - "lon": -3.9746181, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 311785315, - "lat": 53.1424695, - "lon": -1.3493420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "is_in": "Tibshelf", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 669" - } -}, -{ - "type": "node", - "id": 311806620, - "lat": 51.2813533, - "lon": 0.5410926, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 234" - } -}, -{ - "type": "node", - "id": 311828186, - "lat": 54.9506341, - "lon": -1.6049684, - "tags": { - "amenity": "post_box", - "ref": "NE8 54" - } -}, -{ - "type": "node", - "id": 311833353, - "lat": 51.2661417, - "lon": 0.4834684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311840754, - "lat": 51.4316913, - "lon": -2.0030703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Reference code not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311854417, - "lat": 53.2352422, - "lon": -2.8259115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 7D" - } -}, -{ - "type": "node", - "id": 311854835, - "lat": 53.1956738, - "lon": -2.8398781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CH3", - "ref": "CH3 149" - } -}, -{ - "type": "node", - "id": 311871674, - "lat": 51.2763080, - "lon": 0.5259970, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 81" - } -}, -{ - "type": "node", - "id": 311881377, - "lat": 52.9024255, - "lon": -1.5130890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 180", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 311937859, - "lat": 52.0341875, - "lon": -3.1835174, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 311947282, - "lat": 51.4001940, - "lon": -2.0221680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN11 118", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 311947285, - "lat": 51.4188693, - "lon": -2.0139099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "798334791866825", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN11 302D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-26" - } -}, -{ - "type": "node", - "id": 311947287, - "lat": 51.4636232, - "lon": -1.9525766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN11 122", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 311959119, - "lat": 51.6385413, - "lon": -0.1212948, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 311969379, - "lat": 52.4667750, - "lon": -1.8488604, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 136", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 311969380, - "lat": 52.4710291, - "lon": -1.8439395, - "tags": { - "amenity": "post_box", - "ref": "B10 313", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312011396, - "lat": 52.1647047, - "lon": -1.1808098, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN11 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312076142, - "lat": 53.8174249, - "lon": -1.7501597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD2 581" - } -}, -{ - "type": "node", - "id": 312130349, - "lat": 51.4835477, - "lon": -2.0011264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN11 119D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 312130351, - "lat": 51.4787619, - "lon": -2.0220772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN11 114D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 312130352, - "lat": 51.4501590, - "lon": -1.9988093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 611P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 312159074, - "lat": 51.5216307, - "lon": -0.1399756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1T 251D;W1T 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1T 251D and W1T 51D" - } -}, -{ - "type": "node", - "id": 312161624, - "lat": 52.0300829, - "lon": 1.2032969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP3 1450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312164860, - "lat": 51.2705655, - "lon": -0.4275135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT24 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312166630, - "lat": 51.2709864, - "lon": -0.4114225, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KT24 77D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 312167533, - "lat": 51.2753437, - "lon": -0.3770825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT23 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312167891, - "lat": 51.2741260, - "lon": -0.3769409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312173789, - "lat": 51.4244613, - "lon": -0.2971308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312173797, - "lat": 51.4268077, - "lon": -0.2986682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 288", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312182268, - "lat": 51.4293971, - "lon": -0.3009045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 336D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 312183616, - "lat": 51.4258678, - "lon": -0.2947931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "KT2 165D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 312190389, - "lat": 52.1948663, - "lon": -1.7238497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 68", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312190411, - "lat": 52.1966434, - "lon": -1.7215773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312191267, - "lat": 52.1997098, - "lon": -1.7342613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 312191498, - "lat": 51.7872307, - "lon": 1.1538317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "344543564236980", - "post_box:type": "pillar", - "postal_code": "CO15 1LS", - "ref": "CO15 18", - "royal_cypher": "GR", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 312191514, - "lat": 51.8313182, - "lon": 1.2398736, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 9LY", - "ref": "CO13 77" - } -}, -{ - "type": "node", - "id": 312191525, - "lat": 51.8294382, - "lon": 1.2466542, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO13 9AU", - "ref": "CO13 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312191563, - "lat": 51.8327611, - "lon": 1.2450373, - "tags": { - "amenity": "post_box", - "mapillary": "745634009442982", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO13 500", - "survey:date": "2021-03-13" - } -}, -{ - "type": "node", - "id": 312191571, - "lat": 51.8338742, - "lon": 1.2449653, - "tags": { - "amenity": "post_box", - "mapillary": "374406214695063", - "post_box:type": "pillar", - "ref": "CO13 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 312191579, - "lat": 51.8290048, - "lon": 1.2418717, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO13 9EH", - "ref": "CO13 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312191583, - "lat": 51.8418932, - "lon": 1.2256203, - "tags": { - "amenity": "post_box", - "mapillary": "684442492674243", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CO13 0LD", - "ref": "CO13 11", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 312191585, - "lat": 51.8434480, - "lon": 1.2205524, - "tags": { - "amenity": "post_box", - "mapillary": "184452583798599", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO13 0LW", - "ref": "CO13 94", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 312191587, - "lat": 51.8275380, - "lon": 1.2088998, - "tags": { - "amenity": "post_box", - "mapillary": "298655528788490", - "post_box:type": "pillar", - "postal_code": "CO13 0JN", - "ref": "CO13 100", - "survey:date": "2022-01-27" - } -}, -{ - "type": "node", - "id": 312191589, - "lat": 51.8252151, - "lon": 1.1956539, - "tags": { - "amenity": "post_box", - "mapillary": "158563433277550", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO13 0EX", - "ref": "CO13 69", - "survey:date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 312262686, - "lat": 51.4375254, - "lon": -2.0588972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 131D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 312284799, - "lat": 53.7799899, - "lon": -0.2918610, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312284847, - "lat": 53.7830218, - "lon": -0.2949108, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 312288447, - "lat": 51.8260391, - "lon": -1.4203438, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 312296376, - "lat": 52.1961314, - "lon": -1.7335146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312300370, - "lat": 50.9641667, - "lon": -1.4632921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO51 520", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 312376548, - "lat": 55.8808684, - "lon": -4.3299169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G14 530", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 312379687, - "lat": 51.4532732, - "lon": -0.3283510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 120", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312382087, - "lat": 53.1957309, - "lon": -1.1822032, - "tags": { - "amenity": "post_box", - "ref": "NG20 31" - } -}, -{ - "type": "node", - "id": 312389636, - "lat": 51.2884584, - "lon": 0.5357304, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ME14", - "ref": "ME14 227", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 312390507, - "lat": 51.4319721, - "lon": -0.0605531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312391813, - "lat": 51.2861699, - "lon": 0.5327778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME14 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312409777, - "lat": 53.4168337, - "lon": -1.5141515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S6", - "ref": "S6 1631D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312413115, - "lat": 52.3823607, - "lon": -0.0123298, - "tags": { - "amenity": "post_box", - "postal_code": "PE28", - "ref": "PE28 199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312413148, - "lat": 52.3864112, - "lon": 0.0001396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "PE28", - "ref": "PE28 231" - } -}, -{ - "type": "node", - "id": 312413508, - "lat": 52.3827535, - "lon": -0.0025002, - "tags": { - "amenity": "post_box", - "note": "Annoyingly the post office had covered up the ref number with a sticker. Grrr.", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312469791, - "lat": 55.9428788, - "lon": -3.2035155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "name": "EH3 73", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH3 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 312489284, - "lat": 53.6835876, - "lon": -1.5003945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312489703, - "lat": 53.8011336, - "lon": -1.5358850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS2 23", - "royal_cypher": "no", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 312497488, - "lat": 52.1875723, - "lon": -1.6954178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CV37", - "ref": "CV37 96" - } -}, -{ - "type": "node", - "id": 312497760, - "lat": 52.1901123, - "lon": -1.6979490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 9" - } -}, -{ - "type": "node", - "id": 312498044, - "lat": 52.2031419, - "lon": -1.7211089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CV37 0TL", - "ref": "CV37 103" - } -}, -{ - "type": "node", - "id": 312498224, - "lat": 52.2041636, - "lon": -1.7320836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312504296, - "lat": 52.1912493, - "lon": -1.7320989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312505568, - "lat": 52.1949079, - "lon": -1.7368719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CV37", - "ref": "CV37 91" - } -}, -{ - "type": "node", - "id": 312505989, - "lat": 51.7941133, - "lon": 1.1482654, - "tags": { - "amenity": "post_box", - "mapillary": "481460543354092", - "post_box:type": "pillar", - "postal_code": "CO15 3AE", - "ref": "CO15 52", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 312516595, - "lat": 51.7954152, - "lon": 1.0321662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO16 8LE", - "ref": "CO16 107" - } -}, -{ - "type": "node", - "id": 312516600, - "lat": 51.7936253, - "lon": 1.0565393, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO16 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312516602, - "lat": 51.7980829, - "lon": 1.0683825, - "tags": { - "amenity": "post_box", - "mapillary": "2680133862296194", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO16 49", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 312516614, - "lat": 51.8026712, - "lon": 1.0822013, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 8RE", - "ref": "CO16 187" - } -}, -{ - "type": "node", - "id": 312516616, - "lat": 51.8006224, - "lon": 1.0840295, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 8PJ", - "ref": "CO16 84" - } -}, -{ - "type": "node", - "id": 312516618, - "lat": 51.8007478, - "lon": 1.1075388, - "tags": { - "amenity": "post_box", - "mapillary": "5216122671777726", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO16 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-26" - } -}, -{ - "type": "node", - "id": 312516621, - "lat": 51.8039388, - "lon": 1.1298750, - "tags": { - "amenity": "post_box", - "mapillary": "275094721301947", - "post_box:type": "pillar", - "postal_code": "CO16 8DU", - "ref": "CO16 9", - "survey:date": "2021-12-03" - } -}, -{ - "type": "node", - "id": 312542772, - "lat": 56.6255930, - "lon": -3.8791923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "postal_code": "PH15", - "ref": "PH15 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312552754, - "lat": 52.1932340, - "lon": -1.7136995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312552844, - "lat": 52.1969450, - "lon": -1.7110788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312553073, - "lat": 50.4595286, - "lon": -3.5446046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312554980, - "lat": 56.6577610, - "lon": -3.7749923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH9 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312555000, - "lat": 56.6531100, - "lon": -3.7798443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH15 29", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312562268, - "lat": 50.4614199, - "lon": -3.5497619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312573663, - "lat": 50.4632702, - "lon": -3.5499937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312594107, - "lat": 50.4660148, - "lon": -3.5483244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312616849, - "lat": 52.4824426, - "lon": -1.8942065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "B4 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312618807, - "lat": 50.4748766, - "lon": -3.5620810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312618832, - "lat": 50.4718189, - "lon": -3.5588998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312628825, - "lat": 52.4802983, - "lon": -1.8946065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 06:30, Sa 11:45", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "B4 9034P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312628826, - "lat": 52.4802938, - "lon": -1.8946015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 06:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B4 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312628827, - "lat": 52.4802873, - "lon": -1.8945943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 06:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B4 4025", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312632964, - "lat": 50.4729987, - "lon": -3.5548938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312634854, - "lat": 50.4759934, - "lon": -3.5508089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 402D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 312638500, - "lat": 51.9414852, - "lon": -0.8813411, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "MK18 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312642764, - "lat": 52.5508225, - "lon": -0.2762211, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 312648530, - "lat": 53.4473981, - "lon": -1.4842235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "postal_code": "S35", - "ref": "S35 458D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312651372, - "lat": 51.5488891, - "lon": 0.0197369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312652412, - "lat": 53.4638640, - "lon": -1.4885717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S35", - "ref": "S35 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312658596, - "lat": 52.0960193, - "lon": -1.9518673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "post_box:type": "lamp", - "postal_code": "WR11", - "ref": "WR11 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312658598, - "lat": 52.0952477, - "lon": -1.9469863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "WR11 210P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312658611, - "lat": 52.0916260, - "lon": -1.9492844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR11 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312658768, - "lat": 53.4649803, - "lon": -1.4836547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:type": "pillar", - "postal_code": "S35", - "ref": "S35 1191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312659121, - "lat": 53.2215552, - "lon": -1.2197971, - "tags": { - "amenity": "post_box", - "ref": "NG20 185" - } -}, -{ - "type": "node", - "id": 312660436, - "lat": 52.1239117, - "lon": -1.9425488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "WR11", - "ref": "WR11 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312660456, - "lat": 52.1234369, - "lon": -1.9512355, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WR11", - "ref": "WR11 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312661929, - "lat": 53.2143289, - "lon": -1.2212256, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG20 182" - } -}, -{ - "type": "node", - "id": 312662907, - "lat": 52.1299195, - "lon": -1.9375137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "wall", - "ref": "WR11 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 312663295, - "lat": 53.2176254, - "lon": -1.2280503, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NG20 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 312668690, - "lat": 51.4864202, - "lon": -0.2107548, - "tags": { - "amenity": "post_box", - "ref": "W14 33" - } -}, -{ - "type": "node", - "id": 312668803, - "lat": 51.4861742, - "lon": -0.2077451, - "tags": { - "amenity": "post_box", - "ref": "W14 32" - } -}, -{ - "type": "node", - "id": 312669006, - "lat": 51.4863844, - "lon": -0.2058798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W14 7" - } -}, -{ - "type": "node", - "id": 312669294, - "lat": 52.1852320, - "lon": -1.6061676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312669295, - "lat": 52.1884260, - "lon": -1.6008012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312671343, - "lat": 51.4028850, - "lon": -0.1932258, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SM4 19;SM4 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312672530, - "lat": 53.4622305, - "lon": -1.4747182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S35", - "ref": "S35 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312674220, - "lat": 53.4652332, - "lon": -1.4649113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S35", - "ref": "S35 850", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312676786, - "lat": 53.4670113, - "lon": -1.4732069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S35", - "ref": "S35 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312676789, - "lat": 53.4643714, - "lon": -1.4697010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S35", - "ref": "S35 313", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312680507, - "lat": 52.1956167, - "lon": -1.5933740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-18", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV35", - "ref": "CV35 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312680514, - "lat": 52.1941053, - "lon": -1.5955004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-18", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CV35", - "ref": "CV35 214", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312680969, - "lat": 52.1998881, - "lon": -1.5940179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV35", - "ref": "CV35 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312681140, - "lat": 52.1936021, - "lon": -1.6009082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2249424921854151", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CV35", - "ref": "CV35 246", - "survey:date": "2021-04-14" - } -}, -{ - "type": "node", - "id": 312681193, - "lat": 52.1987490, - "lon": -1.5889231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV35", - "ref": "CV35 67D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312681750, - "lat": 52.1920611, - "lon": -1.5865150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV35", - "ref": "CV35 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312696861, - "lat": 51.8376416, - "lon": 1.2433393, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 9JT", - "ref": "CO13 14" - } -}, -{ - "type": "node", - "id": 312711755, - "lat": 51.3949712, - "lon": -0.2608887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 94", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312727937, - "lat": 52.3980800, - "lon": -1.9611130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B31 210", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 312728038, - "lat": 52.3975053, - "lon": -1.9672703, - "tags": { - "amenity": "post_box", - "ref": "B31 933" - } -}, -{ - "type": "node", - "id": 312754921, - "lat": 54.2032035, - "lon": -0.8064277, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO17 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312762119, - "lat": 51.6844950, - "lon": -4.1606855, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 312789030, - "lat": 52.1945804, - "lon": -1.6740418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV37 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312789054, - "lat": 52.2000188, - "lon": -1.6770710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "CV37", - "ref": "CV37 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312789075, - "lat": 52.2066408, - "lon": -1.6566497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312789100, - "lat": 52.2061092, - "lon": -1.6623768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312794908, - "lat": 52.1916281, - "lon": -1.6973776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 65D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 312809360, - "lat": 52.1921716, - "lon": -1.7104983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312811996, - "lat": 51.1506853, - "lon": 0.3997846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "TN12 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312814146, - "lat": 51.6396150, - "lon": -2.3611195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312821280, - "lat": 51.3082128, - "lon": -0.3337219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312840785, - "lat": 51.2778362, - "lon": 0.5338817, - "tags": { - "amenity": "post_box", - "postal_code": "ME14", - "ref": "ME14 169" - } -}, -{ - "type": "node", - "id": 312872944, - "lat": 52.3795970, - "lon": -1.5602605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "collection_times_checked": "2017-09-03", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CV4", - "ref": "CV4 22;CV4 22", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312877041, - "lat": 52.1365713, - "lon": -1.7765531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312881831, - "lat": 52.1510126, - "lon": -1.7767776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312883148, - "lat": 54.9659436, - "lon": -1.5868619, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NE8 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312885032, - "lat": 52.1832607, - "lon": -1.7577055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312888721, - "lat": 52.1846863, - "lon": -1.7385137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312898511, - "lat": 52.0913715, - "lon": -1.9290731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "post_box:type": "pillar", - "postal_code": "WR11", - "ref": "WR11 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 312899402, - "lat": 52.0914266, - "lon": -1.9424459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "post_box:type": "pillar", - "ref": "WR11 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 312907868, - "lat": 53.8141097, - "lon": -1.7392489, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD2 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312907889, - "lat": 53.8168025, - "lon": -1.7400222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD2 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 312907905, - "lat": 52.0908921, - "lon": -1.9370212, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-17", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "post_box:type": "pillar", - "postal_code": "WR11", - "ref": "WR11 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312907915, - "lat": 53.8113516, - "lon": -1.7443547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD2 5" - } -}, -{ - "type": "node", - "id": 312908149, - "lat": 52.0918483, - "lon": -1.9334238, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-17", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "note": "My description says WR11 34, but originally had different number. Need to go again and resurvey", - "note2": "Suspect recently nicked/replaced and RM have put wrong plate on.", - "note3": "In Sep 2015 the ref on plate was WR11 155", - "post_box:type": "lamp", - "postal_code": "WR11", - "ref": "WR11 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 312910417, - "lat": 52.0862949, - "lon": -1.9298225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "WR11", - "ref": "WR11 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 312937730, - "lat": 52.1978377, - "lon": -1.7263773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 312953950, - "lat": 52.1897033, - "lon": -1.6846263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1213113282437382", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 75", - "survey:date": "2021-04-17" - } -}, -{ - "type": "node", - "id": 312973225, - "lat": 51.4059111, - "lon": -1.9975730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN11 113D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 312973226, - "lat": 51.5026153, - "lon": -1.9145523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 158D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 312998405, - "lat": 54.0496633, - "lon": -0.6691508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313002845, - "lat": 52.1894809, - "lon": -1.6928773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37", - "ref": "CV37 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313003743, - "lat": 52.3885124, - "lon": -1.9776864, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B31 639", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 313003763, - "lat": 52.3929169, - "lon": -1.9684397, - "tags": { - "amenity": "post_box", - "ref": "B31 967" - } -}, -{ - "type": "node", - "id": 313006253, - "lat": 52.1857524, - "lon": -1.6896666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 313027216, - "lat": 51.3024111, - "lon": -0.3144684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313027568, - "lat": 51.3065276, - "lon": -0.3185560, - "tags": { - "amenity": "post_box", - "ref": "KT21 121" - } -}, -{ - "type": "node", - "id": 313027760, - "lat": 51.3108064, - "lon": -0.3164901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 313027925, - "lat": 51.3066564, - "lon": -0.3148653, - "tags": { - "amenity": "post_box", - "ref": "KT21 178" - } -}, -{ - "type": "node", - "id": 313030671, - "lat": 51.3175794, - "lon": -0.3116738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KT21 163" - } -}, -{ - "type": "node", - "id": 313031023, - "lat": 51.3149939, - "lon": -0.3175527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KT21 114" - } -}, -{ - "type": "node", - "id": 313032228, - "lat": 51.3169138, - "lon": -0.2981878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KT21 187" - } -}, -{ - "type": "node", - "id": 313032288, - "lat": 51.3166369, - "lon": -0.2874542, - "tags": { - "amenity": "post_box", - "ref": "KT21 214" - } -}, -{ - "type": "node", - "id": 313032385, - "lat": 51.3094705, - "lon": -0.2939091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 132D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 313033272, - "lat": 51.3045021, - "lon": -0.2982023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 313033763, - "lat": 51.5980459, - "lon": 0.1574039, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 313036598, - "lat": 52.4336698, - "lon": -1.9834876, - "tags": { - "amenity": "post_box", - "ref": "B31 1382" - } -}, -{ - "type": "node", - "id": 313036771, - "lat": 52.4361138, - "lon": -1.9797005, - "tags": { - "amenity": "post_box", - "ref": "B31 956" - } -}, -{ - "type": "node", - "id": 313061013, - "lat": 51.8500490, - "lon": -2.1762772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "774030073474740", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-06-17" - } -}, -{ - "type": "node", - "id": 313065724, - "lat": 52.1868288, - "lon": -1.7095656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "760338891320504", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CV37", - "ref": "CV37 11", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 313065818, - "lat": 52.1881130, - "lon": -1.7115563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313065845, - "lat": 52.1892783, - "lon": -1.7097357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313099345, - "lat": 53.7952018, - "lon": -1.5657865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS12 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313123243, - "lat": 52.0808458, - "lon": -1.9388870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "lamp", - "postal_code": "WR11", - "ref": "WR11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313143927, - "lat": 51.8525663, - "lon": -2.1747245, - "tags": { - "amenity": "post_box", - "fixme": "ref" - } -}, -{ - "type": "node", - "id": 313147089, - "lat": 52.4766517, - "lon": -1.8974579, - "tags": { - "amenity": "post_box", - "postal_code": "B5", - "ref": "B5 1088" - } -}, -{ - "type": "node", - "id": 313155692, - "lat": 52.0832508, - "lon": -1.9452672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "WR11", - "ref": "WR11 175", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 313162680, - "lat": 52.0852946, - "lon": -1.9438469, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "WR11", - "ref": "WR11 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313164478, - "lat": 52.0880863, - "lon": -1.9394616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "wall", - "postal_code": "WR11", - "ref": "WR11 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313165128, - "lat": 52.0925522, - "lon": -1.9474080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR11 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313172726, - "lat": 51.4713298, - "lon": -2.5268784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313177513, - "lat": 51.4641160, - "lon": -2.5333736, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 209D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 313181348, - "lat": 53.9031740, - "lon": -1.0901180, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO19 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313182865, - "lat": 52.4919423, - "lon": -2.0123734, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B69 247", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 313185309, - "lat": 53.7996756, - "lon": -1.5818577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 100" - } -}, -{ - "type": "node", - "id": 313187270, - "lat": 53.7984565, - "lon": -1.5786221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313189978, - "lat": 51.7993036, - "lon": -1.5383408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "OX29", - "ref": "OX29 298D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313191675, - "lat": 54.7777148, - "lon": -1.5979304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 39D" - } -}, -{ - "type": "node", - "id": 313191686, - "lat": 54.7825278, - "lon": -1.5900586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313192015, - "lat": 52.4911014, - "lon": -1.9954947, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B68", - "ref": "B68 505" - } -}, -{ - "type": "node", - "id": 313192019, - "lat": 52.4868101, - "lon": -1.9849292, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 960" - } -}, -{ - "type": "node", - "id": 313192022, - "lat": 52.4897935, - "lon": -1.9830139, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 286" - } -}, -{ - "type": "node", - "id": 313192035, - "lat": 52.4893445, - "lon": -1.9776950, - "tags": { - "amenity": "post_box", - "postal_code": "B66", - "ref": "B66 780" - } -}, -{ - "type": "node", - "id": 313223219, - "lat": 53.8203558, - "lon": -1.7357458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD2 303", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313223396, - "lat": 53.8191552, - "lon": -1.7286456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD2 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313231785, - "lat": 52.0889408, - "lon": -1.9642956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR11 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313232180, - "lat": 52.0852005, - "lon": -1.9670368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "note": "Ref not visible", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313290900, - "lat": 53.3175523, - "lon": -1.5119283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S17 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313291462, - "lat": 53.4241943, - "lon": -2.2426095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "created_by": "Potlatch 0.10f", - "ref": "M20 610D" - } -}, -{ - "type": "node", - "id": 313304590, - "lat": 55.7757913, - "lon": -4.0464174, - "tags": { - "amenity": "post_box", - "postal_code": "ML3", - "ref": "ML3 12" - } -}, -{ - "type": "node", - "id": 313304599, - "lat": 55.7768973, - "lon": -4.0371299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "postal_code": "ML3", - "ref": "ML3 27", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313345204, - "lat": 53.7931842, - "lon": -0.3351127, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 313372347, - "lat": 51.3200524, - "lon": -0.2566428, - "tags": { - "amenity": "post_box", - "ref": "KT18 32" - } -}, -{ - "type": "node", - "id": 313381897, - "lat": 51.2443838, - "lon": -1.1446951, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 311" - } -}, -{ - "type": "node", - "id": 313480070, - "lat": 53.2885438, - "lon": -3.2105059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:10; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH8 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 313500809, - "lat": 53.0530997, - "lon": -2.4538504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 257" - } -}, -{ - "type": "node", - "id": 313500811, - "lat": 53.0581074, - "lon": -2.4575165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "ref": "CW2 104" - } -}, -{ - "type": "node", - "id": 313500834, - "lat": 53.0623739, - "lon": -2.4863206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 245", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313514287, - "lat": 51.2830454, - "lon": -0.3783758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313514354, - "lat": 51.2830332, - "lon": -0.3866027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 71", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 313517307, - "lat": 51.2824595, - "lon": -0.4411891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT24 27", - "source:ref": "P161 0150 on 2011-09-06" - } -}, -{ - "type": "node", - "id": 313518548, - "lat": 50.7417681, - "lon": -1.7982201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "357154832557200", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 86", - "ref:GB:uprn": "10015334619", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 313519183, - "lat": 51.2378019, - "lon": -0.3358028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH4 130" - } -}, -{ - "type": "node", - "id": 313523361, - "lat": 51.2880374, - "lon": -0.6561374, - "tags": { - "amenity": "post_box", - "postal_code": "GU24", - "ref": "GU24 78", - "source": "photo" - } -}, -{ - "type": "node", - "id": 313526647, - "lat": 51.2904902, - "lon": -0.6442086, - "tags": { - "amenity": "post_box", - "mapillary": "805434123799496", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GU24", - "ref": "GU24 208", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 313533217, - "lat": 50.7204469, - "lon": -3.4961198, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313540475, - "lat": 53.8211854, - "lon": -1.7245254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD2 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313540513, - "lat": 53.8170034, - "lon": -1.7248404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD2 286", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 313540533, - "lat": 53.8232709, - "lon": -1.7300047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD2 237", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 313562652, - "lat": 51.5429050, - "lon": -0.0441846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313617814, - "lat": 51.4974240, - "lon": -0.2362430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 11D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 313723953, - "lat": 52.4572450, - "lon": -1.9716398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B32 897" - } -}, -{ - "type": "node", - "id": 313725268, - "lat": 52.3158457, - "lon": -0.0818612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 256" - } -}, -{ - "type": "node", - "id": 313725315, - "lat": 52.3149033, - "lon": -0.1000620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 245" - } -}, -{ - "type": "node", - "id": 313725316, - "lat": 52.3176970, - "lon": -0.0979828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 222" - } -}, -{ - "type": "node", - "id": 313725330, - "lat": 52.3196021, - "lon": -0.0864752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 146" - } -}, -{ - "type": "node", - "id": 313725556, - "lat": 52.3175842, - "lon": -0.1100430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 161" - } -}, -{ - "type": "node", - "id": 313725602, - "lat": 52.3223511, - "lon": -0.1190611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313732757, - "lat": 52.4462100, - "lon": -1.9742533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B32 1419" - } -}, -{ - "type": "node", - "id": 313735502, - "lat": 54.7681371, - "lon": -1.6465374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 313735521, - "lat": 54.7657333, - "lon": -1.6513535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 313739258, - "lat": 50.6993004, - "lon": -3.5382212, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "EX2 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313746537, - "lat": 51.6375385, - "lon": -2.3441645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "GL12 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313747248, - "lat": 50.6968718, - "lon": -3.5355422, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX2 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313748583, - "lat": 50.6961908, - "lon": -3.5315387, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX2 610D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313748589, - "lat": 53.8078404, - "lon": -1.5747572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 296" - } -}, -{ - "type": "node", - "id": 313751959, - "lat": 52.3157103, - "lon": -0.1590665, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 313751970, - "lat": 52.3106319, - "lon": -0.1684450, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 313770760, - "lat": 51.5150284, - "lon": -1.7278731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 65D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 313773958, - "lat": 53.3188272, - "lon": -2.2949956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 48", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 313774042, - "lat": 53.3320708, - "lon": -2.2536018, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 70" - } -}, -{ - "type": "node", - "id": 313775171, - "lat": 53.2996720, - "lon": -2.3715915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 28" - } -}, -{ - "type": "node", - "id": 313780117, - "lat": 51.0551663, - "lon": -1.3289660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 313781527, - "lat": 51.0540704, - "lon": -1.3347632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 313783496, - "lat": 51.0555980, - "lon": -1.3429637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 313785398, - "lat": 53.2974647, - "lon": -2.3608726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "505926377422557", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WA16 1", - "royal_cypher": "EIIR", - "survey:date": "2020-03-27" - } -}, -{ - "type": "node", - "id": 313790158, - "lat": 53.3050134, - "lon": -2.3763151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "WA16 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313790159, - "lat": 53.3031757, - "lon": -2.3744544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA16 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313790160, - "lat": 53.3032038, - "lon": -2.3744437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA16 91", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 313793510, - "lat": 53.2924670, - "lon": -2.3664066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 313793511, - "lat": 53.3003135, - "lon": -2.3653281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 313794563, - "lat": 53.2922899, - "lon": -2.3596813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 313795630, - "lat": 53.2952433, - "lon": -2.3647699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 313883638, - "lat": 51.3574120, - "lon": 1.4085120, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-21", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT10", - "priority:covid19": "yes", - "ref": "CT10 124", - "ref:GB:uprn": "10015433340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313887251, - "lat": 52.4390189, - "lon": -1.9766965, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 313887548, - "lat": 52.4408939, - "lon": -1.9839226, - "tags": { - "amenity": "post_box", - "ref": "B32 952" - } -}, -{ - "type": "node", - "id": 313887603, - "lat": 52.4432221, - "lon": -1.9845405, - "tags": { - "amenity": "post_box", - "ref": "B32 908" - } -}, -{ - "type": "node", - "id": 313887822, - "lat": 52.4434500, - "lon": -2.0123275, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B32 261" - } -}, -{ - "type": "node", - "id": 313888196, - "lat": 52.4398347, - "lon": -1.9915933, - "tags": { - "amenity": "post_box", - "ref": "B32 951" - } -}, -{ - "type": "node", - "id": 313888353, - "lat": 52.4339569, - "lon": -1.9898253, - "tags": { - "amenity": "post_box", - "ref": "B32 1173" - } -}, -{ - "type": "node", - "id": 313888681, - "lat": 52.4461717, - "lon": -1.9960004, - "tags": { - "amenity": "post_box", - "ref": "B32 1283" - } -}, -{ - "type": "node", - "id": 313899290, - "lat": 50.7323659, - "lon": -3.5132552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX4 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313899516, - "lat": 50.7310587, - "lon": -3.5109789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 313914226, - "lat": 51.4946633, - "lon": -0.1324163, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1P 6D;SW1P 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313933134, - "lat": 52.4950906, - "lon": -1.9716871, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 269" - } -}, -{ - "type": "node", - "id": 313950239, - "lat": 52.4931079, - "lon": -1.9736489, - "tags": { - "amenity": "post_box", - "ref": "B67 84" - } -}, -{ - "type": "node", - "id": 313956738, - "lat": 51.4346975, - "lon": -0.1087742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313965403, - "lat": 51.5333588, - "lon": 0.0281058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313981275, - "lat": 52.4879538, - "lon": -1.9737472, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 328" - } -}, -{ - "type": "node", - "id": 313986778, - "lat": 51.5300174, - "lon": 0.0280608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313995139, - "lat": 51.9120830, - "lon": -2.0649856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL52", - "ref": "GL52 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313995200, - "lat": 51.9144234, - "lon": -2.0624462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 246", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313995202, - "lat": 51.9143855, - "lon": -2.0531255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 315", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313995798, - "lat": 51.9144098, - "lon": -2.0404115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 213", - "source": "survey" - } -}, -{ - "type": "node", - "id": 313999633, - "lat": 53.1845175, - "lon": -1.3597438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314037860, - "lat": 53.4535675, - "lon": -1.4641063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S35", - "ref": "S35 641", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314042910, - "lat": 53.4575243, - "lon": -1.4731230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S35", - "ref": "S35 977", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314044078, - "lat": 51.4242960, - "lon": -1.7236160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314044364, - "lat": 51.5708215, - "lon": 0.1015833, - "tags": { - "amenity": "post_box", - "ref": "IG3 41" - } -}, -{ - "type": "node", - "id": 314059361, - "lat": 51.4248324, - "lon": -1.7282984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN8 108D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 314059385, - "lat": 51.4282233, - "lon": -1.7286449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314063237, - "lat": 51.9430165, - "lon": 0.6283848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO9 3", - "source": "gps" - } -}, -{ - "type": "node", - "id": 314063761, - "lat": 53.4618500, - "lon": -1.4650959, - "tags": { - "amenity": "post_box", - "postal_code": "S35", - "ref": "S35 509" - } -}, -{ - "type": "node", - "id": 314065562, - "lat": 53.4615618, - "lon": -1.4801331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "S35 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314067846, - "lat": 51.2820725, - "lon": -1.1581551, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 79" - } -}, -{ - "type": "node", - "id": 314079608, - "lat": 51.3994502, - "lon": -0.2137355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 314079777, - "lat": 51.3951834, - "lon": -0.3000014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 7D", - "royal_cypher": "no", - "source": "survey", - "survey_point": "2022-07-17" - } -}, -{ - "type": "node", - "id": 314177163, - "lat": 53.1930383, - "lon": -2.8818618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type A post box CH1 99 by McDowall Stevens on City Road, Chester.", - "drive_through": "no", - "manufacturer": "McDowall Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Postbox on City Road, Chester.jpg" - } -}, -{ - "type": "node", - "id": 314177173, - "lat": 53.1876447, - "lon": -2.8943623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH1 414 on Nicholas Street, Chester.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH1 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Nicholas Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 314212897, - "lat": 51.8412076, - "lon": 1.1525626, - "tags": { - "amenity": "post_box", - "mapillary": "259804209623510", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO16 9PS", - "ref": "CO16 65" - } -}, -{ - "type": "node", - "id": 314212899, - "lat": 51.8595218, - "lon": 1.1699861, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO16 135" - } -}, -{ - "type": "node", - "id": 314212903, - "lat": 51.8805208, - "lon": 1.1656367, - "tags": { - "amenity": "post_box", - "mapillary": "675328500477357", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 0AR", - "ref": "CO16 37", - "survey:date": "2022-10-18" - } -}, -{ - "type": "node", - "id": 314212926, - "lat": 51.8978300, - "lon": 1.1839905, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO12 5BE", - "ref": "CO12 77" - } -}, -{ - "type": "node", - "id": 314212955, - "lat": 51.9038167, - "lon": 1.1887720, - "tags": { - "amenity": "post_box", - "mapillary": "974923239749561", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO12 20", - "survey:date": "2022-04-29" - } -}, -{ - "type": "node", - "id": 314212967, - "lat": 51.9071751, - "lon": 1.1971644, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO12 5AD", - "ref": "CO12 25" - } -}, -{ - "type": "node", - "id": 314212976, - "lat": 51.9162558, - "lon": 1.2238535, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO12 5JF", - "ref": "CO12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314212981, - "lat": 51.9184310, - "lon": 1.2285970, - "tags": { - "amenity": "post_box", - "mapillary": "293350522711427", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO12 5JA", - "ref": "CO12 87", - "survey:date": "2021-11-27" - } -}, -{ - "type": "node", - "id": 314212988, - "lat": 51.9233040, - "lon": 1.2306603, - "tags": { - "amenity": "post_box", - "mapillary": "981406279230243", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO12 5EA", - "ref": "CO12 60", - "survey:date": "2022-04-29" - } -}, -{ - "type": "node", - "id": 314212994, - "lat": 51.9287511, - "lon": 1.2277857, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 5EW", - "ref": "CO12 26" - } -}, -{ - "type": "node", - "id": 314213002, - "lat": 51.9304837, - "lon": 1.2437762, - "tags": { - "amenity": "post_box", - "mapillary": "378495300564463", - "post_box:type": "pillar", - "postal_code": "CO12 4LZ", - "ref": "CO12 58", - "survey:date": "2021-08-23" - } -}, -{ - "type": "node", - "id": 314213005, - "lat": 51.9334313, - "lon": 1.2569598, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO12 4HT", - "ref": "CO12 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314214790, - "lat": 51.8817197, - "lon": 1.1168814, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO16 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314214793, - "lat": 51.8615953, - "lon": 1.0997968, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO16 106" - } -}, -{ - "type": "node", - "id": 314266637, - "lat": 50.7407611, - "lon": -3.4729780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX4 481D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314288786, - "lat": 52.3991543, - "lon": -1.9534022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B38 870", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 314302912, - "lat": 52.4015923, - "lon": -1.9475989, - "tags": { - "amenity": "post_box", - "ref": "B38 1280", - "source": "survey" - } -}, -{ - "type": "node", - "id": 314336673, - "lat": 52.4017567, - "lon": -1.9560626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "ref": "B31 947", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 314374710, - "lat": 51.3986575, - "lon": -0.2801548, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 257D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 314378601, - "lat": 51.3298507, - "lon": -0.2804599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 314396159, - "lat": 51.3326636, - "lon": -0.2824719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314399876, - "lat": 51.3395717, - "lon": -0.2886422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314409997, - "lat": 52.4563024, - "lon": -2.0012503, - "tags": { - "amenity": "post_box", - "ref": "B32 1037" - } -}, -{ - "type": "node", - "id": 314411058, - "lat": 51.3383982, - "lon": -0.2459167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314414000, - "lat": 52.1997710, - "lon": -2.2284277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR1 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314414882, - "lat": 53.3464698, - "lon": -2.1280404, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 314418199, - "lat": 50.8559259, - "lon": 0.5891664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "postal_code": "TN34", - "ref": "TN34 63" - } -}, -{ - "type": "node", - "id": 314418212, - "lat": 50.8560529, - "lon": 0.5927027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN34", - "ref": "TN34 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 314419465, - "lat": 50.8552255, - "lon": 0.5842583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-08-28" - } -}, -{ - "type": "node", - "id": 314436427, - "lat": 51.2555156, - "lon": -1.1380583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG22", - "ref": "RG22 87" - } -}, -{ - "type": "node", - "id": 314443228, - "lat": 55.9369091, - "lon": -3.0156036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH21 261", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 314444996, - "lat": 51.0657427, - "lon": -0.3337059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "old_ref": "RH12 175", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 175D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 314445826, - "lat": 51.7729119, - "lon": -0.3157408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314446252, - "lat": 53.6452950, - "lon": -1.7849313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD1 235", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 314451607, - "lat": 53.8136700, - "lon": -1.7254918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 314451634, - "lat": 53.8166440, - "lon": -1.7338635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD2 61" - } -}, -{ - "type": "node", - "id": 314460526, - "lat": 54.8637998, - "lon": -1.8455861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 314460578, - "lat": 54.8609578, - "lon": -1.8495637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 314682710, - "lat": 53.6452617, - "lon": -1.7863413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HD1 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 314762295, - "lat": 50.4036279, - "lon": -4.2296661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "115862074394052", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL12 635D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 314840223, - "lat": 55.9058870, - "lon": -4.3253213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G61", - "ref": "G61 1313" - } -}, -{ - "type": "node", - "id": 314840229, - "lat": 55.9028587, - "lon": -4.3231840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-12-21", - "mapillary": "619302886108358", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G61", - "ref": "G61 1011", - "survey:date": "2021-07-18" - } -}, -{ - "type": "node", - "id": 314840250, - "lat": 55.9043860, - "lon": -4.3314622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G61", - "ref": "G61 1129" - } -}, -{ - "type": "node", - "id": 314840252, - "lat": 55.9051162, - "lon": -4.3351286, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G61", - "ref": "G61 946" - } -}, -{ - "type": "node", - "id": 314923101, - "lat": 51.5162172, - "lon": -0.0891542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "EC2R 225;EC2R 2251", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 314948964, - "lat": 51.7221480, - "lon": -0.8376170, - "tags": { - "amenity": "post_box", - "postal_code": "HP27", - "ref": "HP27 122" - } -}, -{ - "type": "node", - "id": 314948965, - "lat": 51.7191558, - "lon": -0.8378001, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "HP27", - "ref": "HP27 115", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 314949002, - "lat": 51.7169284, - "lon": -0.8364428, - "tags": { - "amenity": "post_box", - "mapillary": "416225809702366", - "post_box:type": "pillar", - "postal_code": "HP27", - "ref": "HP27 116", - "survey:date": "2020-11-23" - } -}, -{ - "type": "node", - "id": 314952262, - "lat": 51.9534681, - "lon": 0.4865069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 314954251, - "lat": 51.9453767, - "lon": 0.4999655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 314971312, - "lat": 51.7241331, - "lon": -0.8237472, - "tags": { - "amenity": "post_box", - "postal_code": "HP27", - "ref": "HP27 125" - } -}, -{ - "type": "node", - "id": 315001202, - "lat": 53.3147784, - "lon": -2.2438298, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 671" - } -}, -{ - "type": "node", - "id": 315001204, - "lat": 53.3130507, - "lon": -2.2530743, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SK9", - "ref": "SK9 432" - } -}, -{ - "type": "node", - "id": 315015691, - "lat": 54.8847366, - "lon": -1.8485977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 315015725, - "lat": 54.8913952, - "lon": -1.8426386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 315015859, - "lat": 54.8862921, - "lon": -1.8237602, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 315015885, - "lat": 54.8803985, - "lon": -1.8173839, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 315015951, - "lat": 54.8730000, - "lon": -1.8498444, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 315047052, - "lat": 55.8352116, - "lon": -4.3640343, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 315060676, - "lat": 53.3617595, - "lon": -2.6066974, - "tags": { - "amenity": "post_box", - "note": "Old Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA4 279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 315073962, - "lat": 53.7923795, - "lon": -0.3215011, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315074034, - "lat": 53.7872951, - "lon": -0.3074265, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 315074076, - "lat": 53.7846127, - "lon": -0.3022841, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 315080696, - "lat": 51.9453254, - "lon": 1.0627729, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CO11 1AB", - "ref": "CO11 500" - } -}, -{ - "type": "node", - "id": 315080699, - "lat": 51.9464260, - "lon": 1.0589055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 1EG", - "ref": "CO11 32" - } -}, -{ - "type": "node", - "id": 315088892, - "lat": 51.9382782, - "lon": 1.0476463, - "tags": { - "amenity": "post_box", - "mapillary": "150206273745863", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 2EX", - "ref": "CO11 62", - "survey:date": "2020-11-03" - } -}, -{ - "type": "node", - "id": 315088932, - "lat": 51.9475869, - "lon": 1.0495601, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2LB", - "ref": "CO11 38" - } -}, -{ - "type": "node", - "id": 315093758, - "lat": 51.9690596, - "lon": 1.0700570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CO11 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315093759, - "lat": 51.9683377, - "lon": 1.0880881, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CO11 1PN", - "ref": "CO11 70", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 315093760, - "lat": 51.9895265, - "lon": 1.0979562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "postal_code": "IP9 2LY", - "ref": "IP9 1087", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315096902, - "lat": 52.0359228, - "lon": 1.1501348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315096904, - "lat": 52.0378010, - "lon": 1.1509366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP2 1219", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315096908, - "lat": 52.0449085, - "lon": 1.1558197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 8129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315096910, - "lat": 52.0523152, - "lon": 1.1468953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:45", - "post_box:apertures": "2", - "post_box:type": "wall", - "postal_code": "IP1 1AA", - "ref": "IP1 1441" - } -}, -{ - "type": "node", - "id": 315101389, - "lat": 52.0561149, - "lon": 1.1459599, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "IP1 2EB", - "ref": "IP1 1148D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 315101390, - "lat": 52.0559499, - "lon": 1.1504637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "IP1 1RJ", - "ref": "IP1 1306", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 315101397, - "lat": 52.0573772, - "lon": 1.1563520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "IP4 1EG", - "ref": "IP4 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315101402, - "lat": 52.0581962, - "lon": 1.1530117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "IP1 3HD", - "ref": "IP1 8218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315101404, - "lat": 52.0571061, - "lon": 1.1495084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "IP1 2EF", - "ref": "IP1 1075", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315101406, - "lat": 52.0584374, - "lon": 1.1375074, - "tags": { - "amenity": "post_box", - "postal_code": "IP1 2HH", - "ref": "IP1 1079" - } -}, -{ - "type": "node", - "id": 315111928, - "lat": 51.8748357, - "lon": 1.1180078, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CO16 0BL", - "ref": "CO16 53" - } -}, -{ - "type": "node", - "id": 315111931, - "lat": 51.8597307, - "lon": 1.1197145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9JN", - "ref": "CO16 121" - } -}, -{ - "type": "node", - "id": 315111932, - "lat": 51.8567493, - "lon": 1.1161522, - "tags": { - "amenity": "post_box", - "mapillary": "351778580106987", - "post_box:type": "pillar", - "postal_code": "CO16 9JA", - "ref": "CO16 151", - "survey:date": "2022-04-20" - } -}, -{ - "type": "node", - "id": 315111939, - "lat": 51.8491086, - "lon": 1.1190789, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9DN", - "ref": "CO16 38" - } -}, -{ - "type": "node", - "id": 315111940, - "lat": 51.8432430, - "lon": 1.1262890, - "tags": { - "amenity": "post_box", - "mapillary": "1011864606117669", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9ED", - "ref": "CO16 58", - "survey:date": "2022-02-17" - } -}, -{ - "type": "node", - "id": 315111968, - "lat": 51.8344635, - "lon": 1.1390948, - "tags": { - "amenity": "post_box", - "mapillary": "1510465829381088", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9NA", - "ref": "CO16 22", - "survey:date": "2022-08-06" - } -}, -{ - "type": "node", - "id": 315111979, - "lat": 51.8271803, - "lon": 1.1417690, - "tags": { - "amenity": "post_box", - "mapillary": "1064162854132972", - "post_box:type": "pillar", - "postal_code": "CO16 9LD", - "ref": "CO16 26", - "survey:date": "2022-04-20" - } -}, -{ - "type": "node", - "id": 315112082, - "lat": 51.8221798, - "lon": 1.1419089, - "tags": { - "amenity": "post_box", - "mapillary": "726949262017329", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9RG", - "ref": "CO16 160", - "survey:date": "2022-03-27" - } -}, -{ - "type": "node", - "id": 315130895, - "lat": 51.5409351, - "lon": -0.0383401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 17D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315148515, - "lat": 53.2382385, - "lon": -2.1048855, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "SK11", - "ref": "SK11 154" - } -}, -{ - "type": "node", - "id": 315242101, - "lat": 51.5359244, - "lon": -0.0484370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "E9 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315303370, - "lat": 53.7810803, - "lon": -0.2587682, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 315383162, - "lat": 54.8667267, - "lon": -1.8560044, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 315392598, - "lat": 50.5505904, - "lon": -4.1538024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 315392600, - "lat": 50.5486726, - "lon": -4.1515610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP10", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 315392646, - "lat": 50.5501492, - "lon": -4.1487330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL19 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 315400117, - "lat": 51.8926399, - "lon": 0.9096999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "CO1 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315400152, - "lat": 51.8899983, - "lon": 0.9071527, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO1 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315400159, - "lat": 51.8894958, - "lon": 0.9118696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO1 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315460412, - "lat": 52.3944708, - "lon": -1.9538258, - "tags": { - "amenity": "post_box", - "ref": "B38 523", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315493881, - "lat": 55.9327731, - "lon": -3.1380069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "post_box:type": "pillar", - "ref": "EH16 425" - } -}, -{ - "type": "node", - "id": 315543321, - "lat": 51.2505337, - "lon": -0.7120547, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-04", - "old_ref": "GU12 14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU12", - "ref": "GU12 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 315544169, - "lat": 51.2456284, - "lon": -0.7254940, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-27", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "mapillary": "1118919785251254", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU12", - "ref": "GU12 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 315544589, - "lat": 51.2432599, - "lon": -0.7338270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "postal_code": "GU12", - "ref": "GU12 90", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 315545818, - "lat": 51.2511557, - "lon": -0.7206927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "GU12", - "ref": "GU12 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315549411, - "lat": 51.2500094, - "lon": -0.7264186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GU12", - "ref": "GU12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315560712, - "lat": 52.4854402, - "lon": -1.9673235, - "tags": { - "amenity": "post_box", - "postal_code": "B66", - "ref": "B66 114" - } -}, -{ - "type": "node", - "id": 315560715, - "lat": 52.4842943, - "lon": -1.9739917, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B67", - "ref": "B67 513", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 315561835, - "lat": 52.4839521, - "lon": -1.9848074, - "tags": { - "amenity": "post_box", - "postal_code": "B67", - "ref": "B67 496" - } -}, -{ - "type": "node", - "id": 315573707, - "lat": 51.5834664, - "lon": -0.4203053, - "tags": { - "amenity": "post_box", - "ref": "HA4 475" - } -}, -{ - "type": "node", - "id": 315576628, - "lat": 53.3925944, - "lon": -2.9597754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "George VI post box L8 233 by Lion Foundry at junction of Princes Avenue and Mulgrave Street, Liverpool", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 233", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Boulevard post box, Princes Avenue, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 315576951, - "lat": 53.3916190, - "lon": -2.9565098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 449 by Carron Company on Granby Street", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L8 449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Granby Street near Ducie Street.jpg" - } -}, -{ - "type": "node", - "id": 315579260, - "lat": 52.4877930, - "lon": -1.9929199, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 340" - } -}, -{ - "type": "node", - "id": 315579276, - "lat": 52.4787466, - "lon": -1.9908208, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 737" - } -}, -{ - "type": "node", - "id": 315579307, - "lat": 52.4822338, - "lon": -1.9977911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B68", - "ref": "B68 385" - } -}, -{ - "type": "node", - "id": 315583083, - "lat": 52.4765446, - "lon": -1.9970603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B68", - "ref": "B68 800", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 315583101, - "lat": 52.4888132, - "lon": -2.0028946, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 280" - } -}, -{ - "type": "node", - "id": 315585422, - "lat": 52.4884261, - "lon": -2.0083529, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 1319" - } -}, -{ - "type": "node", - "id": 315596373, - "lat": 53.3579655, - "lon": -2.0540354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "SK12", - "ref": "SK12 95" - } -}, -{ - "type": "node", - "id": 315601695, - "lat": 53.3609224, - "lon": -2.0440661, - "tags": { - "amenity": "post_box", - "postal_code": "SK12", - "ref": "SK12 186" - } -}, -{ - "type": "node", - "id": 315601738, - "lat": 53.3635207, - "lon": -2.0587288, - "tags": { - "amenity": "post_box", - "ref": "SK6 175" - } -}, -{ - "type": "node", - "id": 315604842, - "lat": 52.5501608, - "lon": -0.2062328, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 315607010, - "lat": 52.2933885, - "lon": -1.5389543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV32", - "ref": "CV32 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 315607012, - "lat": 52.2951383, - "lon": -1.5403001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315607022, - "lat": 52.2927016, - "lon": -1.5358422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "drive_through": "no", - "note": "Both apertures have same ref. One is for stamped mail and the other for franked mail.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV32 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315607044, - "lat": 52.2902814, - "lon": -1.5375023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV32", - "ref": "CV32 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315607045, - "lat": 52.2902808, - "lon": -1.5375155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV32", - "ref": "CV32 60", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315607080, - "lat": 52.2905107, - "lon": -1.5340879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV32", - "ref": "CV32 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315607082, - "lat": 52.2905101, - "lon": -1.5341012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV32", - "ref": "CV32 254D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315611737, - "lat": 53.4680636, - "lon": -1.4829373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S35", - "ref": "S35 790", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315630846, - "lat": 53.3589189, - "lon": -2.0179133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "600149128070416", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "SK12", - "ref": "SK12 57", - "survey:date": "2021-10-15" - } -}, -{ - "type": "node", - "id": 315631101, - "lat": 53.4714374, - "lon": -1.4830628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S35", - "ref": "S35 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315635877, - "lat": 55.7723616, - "lon": -3.9606712, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315636027, - "lat": 53.3568959, - "lon": -2.0419356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "SK12 187", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SK12", - "ref": "SK12 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315643116, - "lat": 53.4749464, - "lon": -1.4913502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "S35", - "ref": "S35 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315643119, - "lat": 53.4751162, - "lon": -1.4928274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "postal_code": "S35", - "ref": "S35 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315645057, - "lat": 53.4739131, - "lon": -1.5006717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S35", - "ref": "S35 954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315728548, - "lat": 51.9411006, - "lon": 1.2841501, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CO12 3JA", - "ref": "CO12 8" - } -}, -{ - "type": "node", - "id": 315728555, - "lat": 51.9347881, - "lon": 1.2799940, - "tags": { - "amenity": "post_box", - "mapillary": "489010919237257", - "post_box:type": "pillar", - "postal_code": "CO12 3RF", - "ref": "CO12 1", - "survey:date": "2022-01-23" - } -}, -{ - "type": "node", - "id": 315730090, - "lat": 51.9363599, - "lon": 1.2771703, - "tags": { - "amenity": "post_box", - "mapillary": "1353370171730011", - "post_box:type": "pillar", - "postal_code": "CO12 3PH", - "ref": "CO12 15", - "survey:date": "2021-04-15" - } -}, -{ - "type": "node", - "id": 315733675, - "lat": 51.9351198, - "lon": 1.2693463, - "tags": { - "amenity": "post_box", - "mapillary": "699431728036443", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO12 4AJ", - "ref": "CO12 24", - "survey:date": "2022-04-29" - } -}, -{ - "type": "node", - "id": 315733688, - "lat": 51.9479769, - "lon": 1.2864441, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 3HH", - "ref": "CO12 5" - } -}, -{ - "type": "node", - "id": 315734525, - "lat": 51.9411820, - "lon": 1.2868908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "145503981239803", - "post_box:type": "pillar", - "postal_code": "CO12 3LR", - "ref": "CO12 2", - "royal_cypher": "EIIR", - "survey:date": "2022-01-23" - } -}, -{ - "type": "node", - "id": 315734526, - "lat": 51.9375400, - "lon": 1.2816207, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO12 3AJ", - "ref": "CO12 10" - } -}, -{ - "type": "node", - "id": 315735192, - "lat": 51.3258004, - "lon": -1.0505850, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "RG26", - "ref": "RG26 35" - } -}, -{ - "type": "node", - "id": 315749012, - "lat": 52.9171005, - "lon": -1.1259225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 316D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 315750068, - "lat": 51.9339733, - "lon": 1.2762666, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 3SG", - "ref": "CO12 11" - } -}, -{ - "type": "node", - "id": 315750069, - "lat": 51.9311931, - "lon": 1.2641002, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 4EF", - "ref": "CO12 18" - } -}, -{ - "type": "node", - "id": 315756214, - "lat": 51.9418203, - "lon": 1.2505958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3302551713338260", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO12 4PR", - "ref": "CO12 83", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 315756222, - "lat": 51.9449606, - "lon": 1.2519689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CO12 4QB", - "ref": "CO12 84", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 315757814, - "lat": 53.3952462, - "lon": -2.9581442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 18 by Carron Company near Northbrook Close on Granby Street, Toxteth", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L8 18 on Granby Street.jpg" - } -}, -{ - "type": "node", - "id": 315765696, - "lat": 53.3937714, - "lon": -2.9546997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "George V post box L8 261 by Carron and drop box on Kingsley Road, Toxteth, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 261", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Kingsley Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 315787817, - "lat": 51.9173028, - "lon": 1.2156296, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 5LD", - "ref": "CO12 59" - } -}, -{ - "type": "node", - "id": 315787855, - "lat": 51.8478268, - "lon": 1.1614622, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 0HQ", - "ref": "CO16 24" - } -}, -{ - "type": "node", - "id": 315805355, - "lat": 52.4348466, - "lon": -1.9971194, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B32 163" - } -}, -{ - "type": "node", - "id": 315805915, - "lat": 52.4290568, - "lon": -2.0099788, - "tags": { - "amenity": "post_box", - "ref": "B32 1342" - } -}, -{ - "type": "node", - "id": 315807241, - "lat": 52.4309452, - "lon": -2.0039755, - "tags": { - "amenity": "post_box", - "ref": "B32 1318" - } -}, -{ - "type": "node", - "id": 315808058, - "lat": 52.4218383, - "lon": -2.0147815, - "tags": { - "amenity": "post_box", - "ref": "B32 727" - } -}, -{ - "type": "node", - "id": 315808787, - "lat": 52.4166498, - "lon": -1.9849557, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B31 302" - } -}, -{ - "type": "node", - "id": 315809083, - "lat": 52.4130673, - "lon": -1.9899161, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B31 534D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315809667, - "lat": 52.4101116, - "lon": -1.9955038, - "tags": { - "amenity": "post_box", - "ref": "B31 533" - } -}, -{ - "type": "node", - "id": 315809800, - "lat": 52.4156656, - "lon": -1.9793805, - "tags": { - "amenity": "post_box", - "ref": "B31 492" - } -}, -{ - "type": "node", - "id": 315852834, - "lat": 53.3271051, - "lon": -1.6531978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-02-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "mounted in brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S32 338D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 315865137, - "lat": 53.7580286, - "lon": -0.2838273, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU9 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315865468, - "lat": 52.5113168, - "lon": -0.2631358, - "tags": { - "amenity": "post_box", - "mapillary": "401524064160588", - "post_box:type": "pillar", - "survey:date": "2020-06-14" - } -}, -{ - "type": "node", - "id": 315886075, - "lat": 52.4753384, - "lon": -2.0049900, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 801" - } -}, -{ - "type": "node", - "id": 315891881, - "lat": 52.4849030, - "lon": -2.0096102, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 1046" - } -}, -{ - "type": "node", - "id": 315895453, - "lat": 52.4822600, - "lon": -2.0142639, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 486" - } -}, -{ - "type": "node", - "id": 315897363, - "lat": 52.4795646, - "lon": -2.0043223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B68", - "ref": "B68 175" - } -}, -{ - "type": "node", - "id": 315969934, - "lat": 51.9392562, - "lon": 0.6406258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 315969937, - "lat": 51.9354569, - "lon": 0.6364582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 315974060, - "lat": 51.9359850, - "lon": 0.6398782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 315989227, - "lat": 53.0910463, - "lon": -2.2850902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ST7", - "ref": "ST7 330" - } -}, -{ - "type": "node", - "id": 315989228, - "lat": 53.0806173, - "lon": -2.2616828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ST7", - "ref": "ST7 592" - } -}, -{ - "type": "node", - "id": 315990028, - "lat": 53.4309862, - "lon": -2.9435180, - "tags": { - "amenity": "post_box", - "description": "George VI type A postbox L6 213 by McDowell, Stevens Co at the junction of Townsend Lane and Vallance Road, Anfield, Liverpool L6.", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L6 213", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Vallance Road, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 315991084, - "lat": 53.1643371, - "lon": -2.2880638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "postal_code": "CW11", - "ref": "CW11 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315991085, - "lat": 53.1543214, - "lon": -2.3179866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CW11", - "ref": "CW11 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 315991086, - "lat": 53.1454357, - "lon": -2.3085816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CW11", - "ref": "CW11 81" - } -}, -{ - "type": "node", - "id": 315991090, - "lat": 53.1384105, - "lon": -2.3046469, - "tags": { - "amenity": "post_box", - "postal_code": "CW11", - "ref": "CW11 97" - } -}, -{ - "type": "node", - "id": 315991093, - "lat": 53.1398897, - "lon": -2.2883417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CW11", - "ref": "CW11 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 315991094, - "lat": 53.1427663, - "lon": -2.2706177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "postal_code": "CW11", - "ref": "CW11 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315991095, - "lat": 53.1493367, - "lon": -2.2835681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CW11", - "ref": "CW11 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 315991476, - "lat": 53.1190007, - "lon": -2.2853597, - "tags": { - "amenity": "post_box", - "postal_code": "ST7", - "ref": "ST7 479" - } -}, -{ - "type": "node", - "id": 316040939, - "lat": 52.0585280, - "lon": 1.1507285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP1 175;IP1 1175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 316060627, - "lat": 52.3921904, - "lon": -1.8782884, - "tags": { - "amenity": "post_box", - "ref": "B47 1098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316066554, - "lat": 53.7574088, - "lon": -0.3030945, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 316071571, - "lat": 51.3629762, - "lon": -0.0937518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316073191, - "lat": 52.3912718, - "lon": -1.8831016, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 1273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316079908, - "lat": 51.4949342, - "lon": -0.1269147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SW1", - "ref": "SW1P 7D;SW1P 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316096969, - "lat": 50.4789096, - "lon": -3.5547919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 246D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 316100429, - "lat": 50.4807923, - "lon": -3.5603591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 316102922, - "lat": 52.4241733, - "lon": -1.9217339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "ref": "B30 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316102924, - "lat": 52.4149542, - "lon": -1.9352503, - "tags": { - "amenity": "post_box", - "ref": "B38 463" - } -}, -{ - "type": "node", - "id": 316102925, - "lat": 52.4193469, - "lon": -1.9361948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "B30 539", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 316102926, - "lat": 52.4279860, - "lon": -1.9401849, - "tags": { - "amenity": "post_box", - "ref": "B30 415" - } -}, -{ - "type": "node", - "id": 316102927, - "lat": 52.4331845, - "lon": -1.9409798, - "tags": { - "amenity": "post_box", - "ref": "B30 188" - } -}, -{ - "type": "node", - "id": 316102928, - "lat": 52.4343177, - "lon": -1.9396922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 21:00, Sa 07:00", - "ref": "B29 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316102929, - "lat": 52.4315976, - "lon": -1.9318002, - "tags": { - "amenity": "post_box", - "ref": "B30 77" - } -}, -{ - "type": "node", - "id": 316106740, - "lat": 50.4774326, - "lon": -3.5682913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 328D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 316114662, - "lat": 51.3626088, - "lon": 1.4279216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316117236, - "lat": 51.3616076, - "lon": 1.4210630, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316117355, - "lat": 50.4820996, - "lon": -3.5643925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 316118488, - "lat": 51.3136092, - "lon": -0.2802453, - "tags": { - "amenity": "post_box", - "ref": "KT18 209" - } -}, -{ - "type": "node", - "id": 316118941, - "lat": 51.3109933, - "lon": -0.2854408, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KT21 169", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 316121752, - "lat": 51.3647195, - "lon": 1.4203716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316124007, - "lat": 51.3646033, - "lon": 1.4161415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316125263, - "lat": 51.3668733, - "lon": 1.4177465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316129456, - "lat": 50.4840588, - "lon": -3.5670858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 316132928, - "lat": 51.2266032, - "lon": -0.3561429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "191945540031513", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "RH4", - "ref": "RH4 23", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 316220296, - "lat": 51.2847730, - "lon": 1.0935672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 2921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316254519, - "lat": 52.3796792, - "lon": -1.8662345, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B47 761", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316332801, - "lat": 51.8126878, - "lon": 0.1490113, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-10", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CM21 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316415360, - "lat": 52.5077620, - "lon": -1.2277818, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 316448959, - "lat": 55.8330240, - "lon": -4.4529667, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA2", - "ref": "PA2 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 316452044, - "lat": 55.8423008, - "lon": -4.4307331, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 138" - } -}, -{ - "type": "node", - "id": 316506445, - "lat": 52.0746117, - "lon": 1.1184465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1333" - } -}, -{ - "type": "node", - "id": 316507868, - "lat": 52.0787510, - "lon": 1.1269589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1293" - } -}, -{ - "type": "node", - "id": 316661166, - "lat": 51.1515516, - "lon": -0.3359523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH5 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316661228, - "lat": 51.1490376, - "lon": -0.3606248, - "tags": { - "amenity": "post_box", - "postal_code": "RH5", - "ref": "RH5 77" - } -}, -{ - "type": "node", - "id": 316661305, - "lat": 51.1533796, - "lon": -0.3477958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316683103, - "lat": 52.1683288, - "lon": -1.7140583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316746460, - "lat": 53.4035222, - "lon": -2.9509079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L7 10 by Carron Company at the junction of Chatsworth Drive & Harbord Street, Edge Hill, Liverpool.", - "drive_through": "yes", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L7 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Chatsworth Drive.jpg" - } -}, -{ - "type": "node", - "id": 316757453, - "lat": 52.4831154, - "lon": -1.9053989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B3 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316757615, - "lat": 53.4054603, - "lon": -2.9447138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V type B post box L7 231 by Carron Company on Crosfield Road, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Crosfield Road.jpg" - } -}, -{ - "type": "node", - "id": 316772084, - "lat": 53.4003374, - "lon": -2.9280493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "L15 544", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 316840758, - "lat": 54.7839098, - "lon": -1.5547332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 301D" - } -}, -{ - "type": "node", - "id": 316842191, - "lat": 52.0592615, - "lon": -0.0193770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316880486, - "lat": 53.3495394, - "lon": -2.2055543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "note": "inside Handforth Dean shopping centre", - "postal_code": "SK9", - "ref": "SK9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316954091, - "lat": 51.2516995, - "lon": -0.7087411, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "last_checked": "2021-08-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU12", - "ref": "GU12 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 316961451, - "lat": 51.2623245, - "lon": -0.7192349, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "GU12", - "ref": "GU12 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 316976451, - "lat": 52.3901801, - "lon": -2.0253679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B45 199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 316983528, - "lat": 51.9305255, - "lon": 0.6892255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 316997330, - "lat": 51.9252150, - "lon": 0.7084274, - "tags": { - "amenity": "post_box", - "mapillary": "220079132944402", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2019-10-26" - } -}, -{ - "type": "node", - "id": 317001309, - "lat": 52.4178621, - "lon": -1.9256617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 317001311, - "lat": 52.4165334, - "lon": -1.9282270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B30 571" - } -}, -{ - "type": "node", - "id": 317001317, - "lat": 52.4152134, - "lon": -1.9424351, - "tags": { - "amenity": "post_box", - "ref": "B30 924" - } -}, -{ - "type": "node", - "id": 317001319, - "lat": 52.4152732, - "lon": -1.9493722, - "tags": { - "amenity": "post_box", - "ref": "B30 246" - } -}, -{ - "type": "node", - "id": 317004995, - "lat": 52.4045962, - "lon": -1.9795270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B31 797", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 317005015, - "lat": 52.4045455, - "lon": -1.9910861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B31 837D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317012107, - "lat": 52.3923235, - "lon": -1.9931741, - "tags": { - "amenity": "post_box", - "ref": "B45 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317014702, - "lat": 53.2979780, - "lon": -2.0962067, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SK10", - "ref": "SK10 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317024897, - "lat": 53.3004509, - "lon": -2.0994647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317028208, - "lat": 53.2941264, - "lon": -2.1101869, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 139" - } -}, -{ - "type": "node", - "id": 317032062, - "lat": 53.2958108, - "lon": -2.1087838, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 63" - } -}, -{ - "type": "node", - "id": 317032821, - "lat": 53.2956905, - "lon": -2.1190919, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 81" - } -}, -{ - "type": "node", - "id": 317033593, - "lat": 53.2919638, - "lon": -2.1182016, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 74" - } -}, -{ - "type": "node", - "id": 317033623, - "lat": 52.3881424, - "lon": -1.9989444, - "tags": { - "amenity": "post_box", - "ref": "B45 846", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317038498, - "lat": 52.3894987, - "lon": -2.0077849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B45 803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317040255, - "lat": 53.2998964, - "lon": -2.0901614, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 53" - } -}, -{ - "type": "node", - "id": 317046522, - "lat": 52.3952277, - "lon": -2.0048769, - "tags": { - "amenity": "post_box", - "ref": "B45 670", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317048234, - "lat": 51.7324028, - "lon": -2.1661960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 317049740, - "lat": 51.7295725, - "lon": -2.1604289, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 317053367, - "lat": 52.3919738, - "lon": -2.0100101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B45 1035D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317064369, - "lat": 52.4007193, - "lon": -1.9874058, - "tags": { - "amenity": "post_box", - "ref": "B31 1156" - } -}, -{ - "type": "node", - "id": 317064418, - "lat": 52.4048039, - "lon": -1.9956510, - "tags": { - "amenity": "post_box", - "note": "No information board", - "ref": "B31 1433" - } -}, -{ - "type": "node", - "id": 317065763, - "lat": 52.3927010, - "lon": -2.0207711, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317065773, - "lat": 52.3941472, - "lon": -2.0156495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B45 631", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317152905, - "lat": 52.4065366, - "lon": -2.0112594, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 1306" - } -}, -{ - "type": "node", - "id": 317187242, - "lat": 52.9385088, - "lon": -1.1206134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG2 120", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317187577, - "lat": 52.9380521, - "lon": -1.1150813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "post_box:type": "pillar", - "postal_code": "NG2", - "ref": "NG2 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317231820, - "lat": 51.3592713, - "lon": 1.4429807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT10", - "ref": "CT10 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 317254546, - "lat": 51.3647605, - "lon": 1.4373008, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 118" - } -}, -{ - "type": "node", - "id": 317255660, - "lat": 51.3682559, - "lon": 1.4314119, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 84", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 317256962, - "lat": 51.3712271, - "lon": 1.4332614, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT10 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 317260683, - "lat": 52.3657280, - "lon": -2.0387558, - "tags": { - "amenity": "post_box", - "ref": "B60 392", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317261411, - "lat": 52.3621652, - "lon": -2.0462413, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B61 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317263432, - "lat": 51.3741970, - "lon": 1.4453543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 95D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 317272722, - "lat": 53.4667754, - "lon": -1.4905507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S35", - "ref": "S35 1120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317273275, - "lat": 53.4705892, - "lon": -1.4890943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "S35 1117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317275282, - "lat": 51.1607708, - "lon": 0.8947124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2979481998964819", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TN24", - "ref": "TN24 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo", - "survey:date": "2021-10-09" - } -}, -{ - "type": "node", - "id": 317283334, - "lat": 51.3681721, - "lon": 1.4240245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317286093, - "lat": 51.2854840, - "lon": -0.9626357, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 317289013, - "lat": 53.2813232, - "lon": -2.1309435, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 175" - } -}, -{ - "type": "node", - "id": 317292080, - "lat": 52.1729757, - "lon": -0.5656535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 91" - } -}, -{ - "type": "node", - "id": 317295255, - "lat": 51.3725711, - "lon": 1.4226555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT10", - "ref": "CT10 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317295649, - "lat": 52.4303586, - "lon": -1.9677536, - "tags": { - "amenity": "post_box", - "ref": "B29 939" - } -}, -{ - "type": "node", - "id": 317305262, - "lat": 53.2988224, - "lon": -2.0838950, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 136" - } -}, -{ - "type": "node", - "id": 317314374, - "lat": 52.4445530, - "lon": -1.9714380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B32 805" - } -}, -{ - "type": "node", - "id": 317314387, - "lat": 52.4415665, - "lon": -1.9736042, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 317322096, - "lat": 53.2929148, - "lon": -2.1043042, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 77" - } -}, -{ - "type": "node", - "id": 317323328, - "lat": 51.7204634, - "lon": 0.5664848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CM3", - "ref": "CM3 491" - } -}, -{ - "type": "node", - "id": 317327897, - "lat": 51.7163090, - "lon": 0.5818781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:55; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CM3", - "ref": "CM3 28" - } -}, -{ - "type": "node", - "id": 317328000, - "lat": 51.7185424, - "lon": 0.5852941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30", - "drive_through": "no", - "fixme": "Please add Saturday collection time (e.g. Mo-Fr 16:30; Sa 10:10)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CM3", - "ref": "CM3 333" - } -}, -{ - "type": "node", - "id": 317328495, - "lat": 51.7165908, - "lon": 0.5900062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:35", - "drive_through": "no", - "fixme": "Please add Saturday collection time (e.g. Mo-Fr 16:30; Sa 10:10)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CM3", - "ref": "CM3 341", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 317329013, - "lat": 51.7231789, - "lon": 0.5812944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CM3", - "ref": "CM3 186" - } -}, -{ - "type": "node", - "id": 317329199, - "lat": 51.7287507, - "lon": 0.5781702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:20; Sa 10:10", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CM3", - "ref": "CM3 349" - } -}, -{ - "type": "node", - "id": 317331455, - "lat": 54.2046066, - "lon": -0.9459050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO62", - "ref": "YO62 317" - } -}, -{ - "type": "node", - "id": 317336897, - "lat": 52.4709942, - "lon": -2.0072435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B68", - "ref": "B68 976", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317336921, - "lat": 52.4685175, - "lon": -2.0101808, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 1101" - } -}, -{ - "type": "node", - "id": 317336933, - "lat": 52.4681869, - "lon": -2.0062209, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 239" - } -}, -{ - "type": "node", - "id": 317341702, - "lat": 53.4701891, - "lon": -1.4948572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S35", - "ref": "S35 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317345498, - "lat": 52.4221408, - "lon": -4.0162466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 70" - } -}, -{ - "type": "node", - "id": 317380739, - "lat": 51.5579307, - "lon": -0.0115271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317418788, - "lat": 51.3553479, - "lon": -0.2602155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 170D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317419739, - "lat": 51.3643025, - "lon": -0.2719668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 192D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317421408, - "lat": 51.3610266, - "lon": -0.3071200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 325D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317436044, - "lat": 52.3576989, - "lon": -2.0641320, - "tags": { - "amenity": "post_box", - "ref": "B61 1133", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317446382, - "lat": 52.3615184, - "lon": -2.0624701, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B60 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317452529, - "lat": 51.8011288, - "lon": 1.0198105, - "tags": { - "amenity": "post_box", - "mapillary": "1039535823499615", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 8NA", - "ref": "CO16 111", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 317452548, - "lat": 51.7926207, - "lon": 1.0413037, - "tags": { - "amenity": "post_box", - "ref": "CO16 155" - } -}, -{ - "type": "node", - "id": 317452593, - "lat": 51.7994336, - "lon": 1.0244587, - "tags": { - "amenity": "post_box", - "mapillary": "3102878553327633", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 8NA", - "ref": "CO16 158", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 317459202, - "lat": 52.4650453, - "lon": -2.0059521, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 733" - } -}, -{ - "type": "node", - "id": 317459219, - "lat": 52.4656595, - "lon": -2.0027452, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 652" - } -}, -{ - "type": "node", - "id": 317459228, - "lat": 52.4635975, - "lon": -1.9960723, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 449" - } -}, -{ - "type": "node", - "id": 317459232, - "lat": 52.4649888, - "lon": -1.9937535, - "tags": { - "amenity": "post_box", - "postal_code": "B68", - "ref": "B68 348" - } -}, -{ - "type": "node", - "id": 317459240, - "lat": 52.4665222, - "lon": -1.9840335, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B68", - "ref": "B68 291" - } -}, -{ - "type": "node", - "id": 317459276, - "lat": 52.4782422, - "lon": -2.0150269, - "tags": { - "amenity": "post_box", - "ref": "B68 1050" - } -}, -{ - "type": "node", - "id": 317459293, - "lat": 52.4814794, - "lon": -2.0221295, - "tags": { - "amenity": "post_box", - "postal_code": "B65", - "ref": "B65 542" - } -}, -{ - "type": "node", - "id": 317463772, - "lat": 51.8064826, - "lon": 1.1419614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO16 8YB", - "ref": "CO16 179" - } -}, -{ - "type": "node", - "id": 317463775, - "lat": 51.8067153, - "lon": 1.1356481, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 8XF", - "ref": "CO16 197" - } -}, -{ - "type": "node", - "id": 317463821, - "lat": 52.3667195, - "lon": -2.0551118, - "tags": { - "amenity": "post_box", - "ref": "B61 591", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317480724, - "lat": 51.8062761, - "lon": -1.6375418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX18 418D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 317490519, - "lat": 51.4870384, - "lon": -0.1351128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 39;SW1V 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317532024, - "lat": 55.6293502, - "lon": -6.1822294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA42 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 317582074, - "lat": 55.8554633, - "lon": -4.2439041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:30; Sa 12:15", - "postal_code": "G1", - "ref": "G1 658", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 317595823, - "lat": 51.9099542, - "lon": -2.1173446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL51", - "ref": "GL51 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317600097, - "lat": 51.9075224, - "lon": -2.0992851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 271D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 317610614, - "lat": 51.3508058, - "lon": -0.2842570, - "tags": { - "amenity": "post_box", - "ref": "KT19 358" - } -}, -{ - "type": "node", - "id": 317632987, - "lat": 53.3932418, - "lon": -1.4931950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S6 138", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 317633025, - "lat": 53.3833584, - "lon": -1.4979523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 317634231, - "lat": 51.7883142, - "lon": -1.2751770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "519226446095973", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX2 752", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 317639393, - "lat": 51.8385020, - "lon": 1.1444964, - "tags": { - "amenity": "post_box", - "mapillary": "685157332505626", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9NJ", - "ref": "CO16 144", - "survey:date": "2022-01-11" - } -}, -{ - "type": "node", - "id": 317639395, - "lat": 51.8320216, - "lon": 1.1177145, - "tags": { - "amenity": "post_box", - "mapillary": "2935649949980174", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9BL", - "ref": "CO16 113", - "survey:date": "2021-04-10" - } -}, -{ - "type": "node", - "id": 317639397, - "lat": 51.8231717, - "lon": 1.1036831, - "tags": { - "amenity": "post_box", - "mapillary": "140791071694721", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO16 127", - "survey:date": "2022-01-29" - } -}, -{ - "type": "node", - "id": 317639399, - "lat": 51.8180855, - "lon": 1.1285802, - "tags": { - "amenity": "post_box", - "mapillary": "521142349419585", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9NT", - "ref": "CO16 82", - "survey:date": "2022-04-26" - } -}, -{ - "type": "node", - "id": 317651937, - "lat": 53.4958472, - "lon": -0.9894195, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 317709573, - "lat": 51.8261147, - "lon": 1.1494260, - "tags": { - "amenity": "post_box", - "mapillary": "518310512825046", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 9QH", - "ref": "CO16 92", - "survey:date": "2022-01-29" - } -}, -{ - "type": "node", - "id": 317823435, - "lat": 51.6949826, - "lon": -2.4589431, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL13 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317824155, - "lat": 51.6926087, - "lon": -2.4595967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL13 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317826723, - "lat": 51.6943218, - "lon": -2.4695750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL13 379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317841845, - "lat": 51.1349438, - "lon": 0.2709247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 317880157, - "lat": 53.1889930, - "lon": -1.3876853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 317935717, - "lat": 52.4146004, - "lon": -1.7883082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317955116, - "lat": 53.7545953, - "lon": -2.6986208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "967198000755864", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 317956012, - "lat": 51.7970215, - "lon": 1.1192520, - "tags": { - "amenity": "post_box", - "mapillary": "1010440739813314", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 8BG", - "ref": "CO16 101", - "survey:date": "2021-12-03" - } -}, -{ - "type": "node", - "id": 317956013, - "lat": 51.7994577, - "lon": 1.1368646, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 7BT", - "ref": "CO16 16" - } -}, -{ - "type": "node", - "id": 317956014, - "lat": 51.8000731, - "lon": 1.1292610, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 8TN", - "ref": "CO16 199" - } -}, -{ - "type": "node", - "id": 317956015, - "lat": 51.7994096, - "lon": 1.1244204, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 8AJ", - "ref": "CO16 181" - } -}, -{ - "type": "node", - "id": 317956016, - "lat": 51.7958335, - "lon": 1.1241788, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 7PD", - "ref": "CO16 198" - } -}, -{ - "type": "node", - "id": 317956017, - "lat": 51.8038357, - "lon": 1.1357211, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 8UA", - "ref": "CO16 184" - } -}, -{ - "type": "node", - "id": 317956018, - "lat": 51.8028039, - "lon": 1.1410025, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 7HE", - "ref": "CO16 186" - } -}, -{ - "type": "node", - "id": 317981164, - "lat": 51.2475977, - "lon": 0.2857354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "wall", - "ref": "TN11 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 318020584, - "lat": 51.4168116, - "lon": -0.0422459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 318020921, - "lat": 51.5474356, - "lon": 0.0118880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318023390, - "lat": 53.7979050, - "lon": -1.5450835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "note": "one box with two apertures, with two *different* refs!", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 425;LS1 1425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318085222, - "lat": 51.8590023, - "lon": 1.1139295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CO16 9JR", - "ref": "CO16 60", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 318085223, - "lat": 51.8721388, - "lon": 1.1242646, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 9AP", - "ref": "CO16 61" - } -}, -{ - "type": "node", - "id": 318092598, - "lat": 51.7977802, - "lon": 1.1327648, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 3JX", - "ref": "CO15 146" - } -}, -{ - "type": "node", - "id": 318092599, - "lat": 51.8032025, - "lon": 1.1502664, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 3TT", - "ref": "CO15 122" - } -}, -{ - "type": "node", - "id": 318103271, - "lat": 51.4323125, - "lon": -1.4503329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "RG17 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318122156, - "lat": 55.9323267, - "lon": -3.1331246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH16 454", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 318122754, - "lat": 53.7800153, - "lon": -0.4364964, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 318122755, - "lat": 53.7806597, - "lon": -0.4307536, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 318126302, - "lat": 51.2800962, - "lon": -0.4262154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318132018, - "lat": 53.7834718, - "lon": -0.4239739, - "tags": { - "amenity": "post_box", - "postal_code": "HU16", - "ref": "HU16 129" - } -}, -{ - "type": "node", - "id": 318132021, - "lat": 53.7807219, - "lon": -0.4146513, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 318146930, - "lat": 50.6005825, - "lon": -3.6054017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 57D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 318171107, - "lat": 51.8020412, - "lon": 1.1599938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO15 134;CO15 9134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318171109, - "lat": 51.7991376, - "lon": 1.1521598, - "tags": { - "amenity": "post_box", - "mapillary": "133693262469894", - "post_box:type": "pillar", - "postal_code": "CO15 3QE", - "ref": "CO15 3", - "survey:date": "2022-01-28" - } -}, -{ - "type": "node", - "id": 318171110, - "lat": 51.7991946, - "lon": 1.1459919, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 3HY", - "ref": "CO15 170" - } -}, -{ - "type": "node", - "id": 318172036, - "lat": 51.7975362, - "lon": 1.1419110, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 3LJ", - "ref": "CO15 73" - } -}, -{ - "type": "node", - "id": 318172037, - "lat": 51.7955749, - "lon": 1.1361245, - "tags": { - "amenity": "post_box", - "mapillary": "1248570662315220", - "post_box:type": "pillar", - "postal_code": "CO15 3HH", - "ref": "CO15 8", - "survey:date": "2021-12-18" - } -}, -{ - "type": "node", - "id": 318172038, - "lat": 51.7942369, - "lon": 1.1401498, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 3ES", - "ref": "CO15 130" - } -}, -{ - "type": "node", - "id": 318172039, - "lat": 51.7934752, - "lon": 1.1442959, - "tags": { - "amenity": "post_box", - "mapillary": "135045985611360", - "post_box:type": "pillar", - "ref": "CO15 19", - "survey:date": "2021-12-18" - } -}, -{ - "type": "node", - "id": 318172561, - "lat": 51.7901292, - "lon": 1.1476725, - "tags": { - "amenity": "post_box", - "ref": "CO15 196" - } -}, -{ - "type": "node", - "id": 318172562, - "lat": 51.7927461, - "lon": 1.1344247, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 2BY", - "ref": "CO15 173" - } -}, -{ - "type": "node", - "id": 318172564, - "lat": 51.7931154, - "lon": 1.1516103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "602067115134638", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO15 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-04-06" - } -}, -{ - "type": "node", - "id": 318211021, - "lat": 51.1435224, - "lon": -0.3353132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "RH4 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318221509, - "lat": 51.4552284, - "lon": -0.9773781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "postal_code": "RG1", - "ref": "RG1 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318221521, - "lat": 51.4555668, - "lon": -0.9715711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RG1 67;RG1 6700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318257604, - "lat": 51.1333146, - "lon": 0.2655148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 129", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 318322508, - "lat": 53.9584758, - "lon": -1.0803080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "note": "pillar box has two slots", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "YO1", - "ref": "YO1 93;YO1 9093", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318322541, - "lat": 53.9598065, - "lon": -1.0763213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO1", - "ref": "YO1 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318323053, - "lat": 53.9627980, - "lon": -1.0705675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "YO31 7XY", - "ref": "YO31 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318323752, - "lat": 53.9581887, - "lon": -1.0923436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-09-24", - "collection_times": "Mo-Fr 17:30; Sa 08:45", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO24", - "ref": "YO24 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318329810, - "lat": 53.9573676, - "lon": -1.0856251, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-04", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "YO1", - "ref": "YO1 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318333834, - "lat": 55.8243153, - "lon": -4.3532352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10f", - "mapillary": "422782569451371", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-03-20" - } -}, -{ - "type": "node", - "id": 318369174, - "lat": 51.7067970, - "lon": -2.1920511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318375903, - "lat": 51.7273331, - "lon": -2.1623098, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL6", - "ref": "GL6 52" - } -}, -{ - "type": "node", - "id": 318410857, - "lat": 50.4591093, - "lon": -3.5165120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-27" - } -}, -{ - "type": "node", - "id": 318413343, - "lat": 50.4654836, - "lon": -3.5087810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 318417241, - "lat": 50.4636200, - "lon": -3.5117615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 318425002, - "lat": 50.4612384, - "lon": -3.5133469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 318425975, - "lat": 51.5268883, - "lon": -1.0705183, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 318437383, - "lat": 53.9705259, - "lon": -1.0834690, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "is inside hospital entrance porch", - "post_box:design": "indoor_pillar", - "post_box:material": "plastic", - "post_box:type": "pillar", - "postal_code": "YO31 7HE", - "ref": "YO31 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318448216, - "lat": 50.4582354, - "lon": -3.5116217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-27" - } -}, -{ - "type": "node", - "id": 318448328, - "lat": 50.4635601, - "lon": -3.5059821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 179D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 318450438, - "lat": 51.0084526, - "lon": -1.3432171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:50; Sa 12:05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 318464739, - "lat": 53.9842556, - "lon": -1.0692262, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "YO31 9HR", - "ref": "YO31 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318465565, - "lat": 53.9687536, - "lon": -1.0772707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "postal_code": "YO31 8NP", - "ref": "YO31 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318466641, - "lat": 53.9730449, - "lon": -1.0738022, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "post_box:type": "lamp", - "postal_code": "YO31 8RR", - "ref": "YO31 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318467090, - "lat": 53.9701318, - "lon": -1.0708794, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-31", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 8UB", - "ref": "YO31 380", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 318469645, - "lat": 53.9652278, - "lon": -1.0588798, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-11", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 1RL", - "ref": "YO31 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318483039, - "lat": 53.9711218, - "lon": -1.0536188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "YO31 1DL", - "ref": "YO31 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 318488260, - "lat": 53.9660863, - "lon": -1.0781270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "YO31 7PW", - "ref": "YO31 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318494657, - "lat": 53.9772362, - "lon": -1.0634754, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "YO31 9AL", - "ref": "YO31 90", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 318503436, - "lat": 52.4385378, - "lon": -1.9399386, - "tags": { - "amenity": "post_box", - "ref": "B29 4250" - } -}, -{ - "type": "node", - "id": 318522946, - "lat": 53.2735693, - "lon": -2.1332924, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 4" - } -}, -{ - "type": "node", - "id": 318559389, - "lat": 51.4617725, - "lon": -1.0009471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG30", - "ref": "RG30 659", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 318562244, - "lat": 51.4622173, - "lon": -1.0130574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG30", - "ref": "RG30 342", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 318576715, - "lat": 51.4893479, - "lon": 0.3657069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 318609723, - "lat": 53.9752044, - "lon": -1.0587886, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "post_box:type": "lamp", - "postal_code": "YO31 9LS", - "ref": "YO31 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318614848, - "lat": 52.5307772, - "lon": -1.2266764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE9 484D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318629074, - "lat": 52.1599829, - "lon": 0.7082419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IP29 2081" - } -}, -{ - "type": "node", - "id": 318646268, - "lat": 51.4438865, - "lon": -0.9835410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "opp 154 St. Saviour's Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "RG1", - "ref": "RG1 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318661549, - "lat": 51.5411506, - "lon": -0.0469459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co., London & ...", - "post_box:type": "pillar", - "ref": "E9 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318661923, - "lat": 53.9674314, - "lon": -1.0817389, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO31 7EW", - "ref": "YO31 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318687353, - "lat": 53.7381235, - "lon": -2.5687444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "wall", - "ref": "PR5 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318696720, - "lat": 51.5557900, - "lon": 0.0144509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318696743, - "lat": 51.5540898, - "lon": 0.0202350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 9D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318696756, - "lat": 51.5549137, - "lon": 0.0240769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 34D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318696817, - "lat": 51.5531757, - "lon": 0.0239070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318749757, - "lat": 53.1830595, - "lon": -1.4191988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318753338, - "lat": 51.4786371, - "lon": -0.9462638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 564" - } -}, -{ - "type": "node", - "id": 318757678, - "lat": 53.1641310, - "lon": -1.4099126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 195D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 318761645, - "lat": 53.1652415, - "lon": -1.3747299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S45 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318786813, - "lat": 53.3895840, - "lon": -1.1560516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318787543, - "lat": 53.2753375, - "lon": -2.1276519, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SK10", - "ref": "SK10 153" - } -}, -{ - "type": "node", - "id": 318798678, - "lat": 53.3850184, - "lon": -1.2169758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S25 537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318806179, - "lat": 52.4140578, - "lon": -1.9589499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B31 274", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 318806185, - "lat": 52.4067585, - "lon": -1.9773234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:15; Sa 12:30", - "ref": "B31 258", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 318806186, - "lat": 52.4019393, - "lon": -1.9823001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "ref": "B31 501", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 318806582, - "lat": 52.4000814, - "lon": -2.0183165, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 193" - } -}, -{ - "type": "node", - "id": 318806635, - "lat": 52.3974154, - "lon": -2.0195045, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 318806684, - "lat": 52.3904833, - "lon": -2.0289450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B45 368" - } -}, -{ - "type": "node", - "id": 318806829, - "lat": 52.3940227, - "lon": -2.0240739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B45 249" - } -}, -{ - "type": "node", - "id": 318806844, - "lat": 52.3974675, - "lon": -2.0258012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B45 997" - } -}, -{ - "type": "node", - "id": 318808647, - "lat": 53.2786244, - "lon": -2.1276408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318808648, - "lat": 53.2714968, - "lon": -2.1265393, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 87" - } -}, -{ - "type": "node", - "id": 318809489, - "lat": 53.2837002, - "lon": -2.1243914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "postal_code": "SK10", - "ref": "SK10 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318809492, - "lat": 52.6312736, - "lon": -1.1255164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE2 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318809562, - "lat": 52.6210235, - "lon": -1.1159835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "LE2", - "ref": "LE2 171", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 318809786, - "lat": 53.3194554, - "lon": -2.1134837, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 96" - } -}, -{ - "type": "node", - "id": 318809787, - "lat": 53.3207215, - "lon": -2.1291371, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 155" - } -}, -{ - "type": "node", - "id": 318809794, - "lat": 52.6179450, - "lon": -1.1174033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "postal_code": "LE2", - "ref": "LE2 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318809849, - "lat": 53.3208933, - "lon": -2.1637062, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 13" - } -}, -{ - "type": "node", - "id": 318809908, - "lat": 52.6089873, - "lon": -1.1167687, - "tags": { - "amenity": "post_box", - "postal_code": "LE2 3TT", - "ref": "LE2 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318864453, - "lat": 51.4701073, - "lon": -1.0400216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG31", - "ref": "RG31 517", - "source": "photo" - } -}, -{ - "type": "node", - "id": 318864604, - "lat": 51.4698524, - "lon": -1.0440654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG30", - "ref": "RG31 330", - "source": "photo" - } -}, -{ - "type": "node", - "id": 318864993, - "lat": 51.4666077, - "lon": -1.0423139, - "tags": { - "amenity": "post_box", - "postal_code": "RG31", - "ref": "RG31 335", - "source": "photo" - } -}, -{ - "type": "node", - "id": 318865565, - "lat": 51.4631858, - "lon": -1.0477975, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG31", - "ref": "RG31 518", - "source": "photo" - } -}, -{ - "type": "node", - "id": 318889690, - "lat": 51.3645569, - "lon": -1.9675038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318893787, - "lat": 51.3624695, - "lon": -1.9680037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318903892, - "lat": 51.5447455, - "lon": 0.0367503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318907262, - "lat": 51.5454660, - "lon": 0.0413920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318929978, - "lat": 51.7919233, - "lon": 1.1448471, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 1HU", - "ref": "CO15 48" - } -}, -{ - "type": "node", - "id": 318937338, - "lat": 51.7890225, - "lon": 1.1373701, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 1EL", - "ref": "CO15 164" - } -}, -{ - "type": "node", - "id": 318937341, - "lat": 51.7826766, - "lon": 1.1353070, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 1AR", - "ref": "CO15 145" - } -}, -{ - "type": "node", - "id": 318937343, - "lat": 51.7851423, - "lon": 1.1408973, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 1BB", - "ref": "CO15 93" - } -}, -{ - "type": "node", - "id": 318937345, - "lat": 51.7873871, - "lon": 1.1396651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CO15 1DE", - "ref": "CO15 157", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 318941536, - "lat": 53.7283053, - "lon": -0.4506572, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 318941548, - "lat": 53.7239435, - "lon": -0.4352790, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 318941551, - "lat": 53.7272218, - "lon": -0.4352272, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 318941557, - "lat": 53.7323929, - "lon": -0.4344784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 318941562, - "lat": 53.7236910, - "lon": -0.4273656, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 318941566, - "lat": 53.7212235, - "lon": -0.4326718, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 318941600, - "lat": 53.7163837, - "lon": -0.5107456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HU14 35", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318942246, - "lat": 51.7808974, - "lon": 1.1376443, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 1XH", - "ref": "CO15 193" - } -}, -{ - "type": "node", - "id": 318942247, - "lat": 51.7862442, - "lon": 1.1475802, - "tags": { - "amenity": "post_box", - "mapillary": "2499056036907557", - "post_box:type": "pillar", - "ref": "CO15 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-04-25" - } -}, -{ - "type": "node", - "id": 318942269, - "lat": 51.7862622, - "lon": 1.1514341, - "tags": { - "amenity": "post_box", - "mapillary": "979483613001765", - "post_box:type": "pillar", - "postal_code": "CO15 1JU", - "ref": "CO15 17" - } -}, -{ - "type": "node", - "id": 318942272, - "lat": 51.7886179, - "lon": 1.1490591, - "tags": { - "amenity": "post_box", - "mapillary": "817412595869370", - "post_box:type": "pillar", - "postal_code": "CO15 1EX", - "ref": "CO15 45", - "survey:date": "2021-05-02" - } -}, -{ - "type": "node", - "id": 318942276, - "lat": 51.7903395, - "lon": 1.1549325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "mapillary": "932473784244463", - "post_box:type": "pillar", - "postal_code": "CO15 1NP", - "ref": "CO15 1901", - "royal_cypher": "EIIR", - "survey:date": "2020-07-21" - } -}, -{ - "type": "node", - "id": 318942278, - "lat": 51.7903430, - "lon": 1.1549414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "mapillary": "932473784244463", - "post_box:type": "meter", - "postal_code": "CO15 1NP", - "ref": "CO15 190", - "royal_cypher": "EIIR", - "survey:date": "2020-07-21" - } -}, -{ - "type": "node", - "id": 318943443, - "lat": 51.7882179, - "lon": 1.1566355, - "tags": { - "amenity": "post_box", - "mapillary": "608889540169840", - "post_box:type": "pillar", - "postal_code": "CO15 1UF", - "ref": "CO15 30", - "survey:date": "2022-01-16" - } -}, -{ - "type": "node", - "id": 318943446, - "lat": 51.7860274, - "lon": 1.1440331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "788531868885778", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO15 1UP", - "ref": "CO15 5", - "survey:date": "2023-04-04" - } -}, -{ - "type": "node", - "id": 318947326, - "lat": 51.8000049, - "lon": 1.0779226, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO16 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318948416, - "lat": 56.3066050, - "lon": -3.1558766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "KY15 339D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 318952872, - "lat": 51.8242140, - "lon": 1.0668690, - "tags": { - "amenity": "post_box", - "mapillary": "160481849355708", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-12-25" - } -}, -{ - "type": "node", - "id": 318952880, - "lat": 51.8402820, - "lon": 1.0391493, - "tags": { - "amenity": "post_box", - "mapillary": "760673337935110", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8JP", - "ref": "CO7 301", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 318955961, - "lat": 51.4607158, - "lon": -1.0261522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "note": "Number may be 163 and not 263 as photo was a bit blurred", - "post_box:type": "lamp", - "postal_code": "RG30", - "ref": "RG30 263" - } -}, -{ - "type": "node", - "id": 318960448, - "lat": 51.4635238, - "lon": -1.0278002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG30", - "ref": "RG30 547" - } -}, -{ - "type": "node", - "id": 318989497, - "lat": 51.4673132, - "lon": -1.0247972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "RG30", - "ref": "RG30 209" - } -}, -{ - "type": "node", - "id": 318989508, - "lat": 51.4618497, - "lon": -1.0209230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "RG30", - "ref": "RG30 549" - } -}, -{ - "type": "node", - "id": 318989516, - "lat": 51.4696012, - "lon": -1.0290465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG31", - "ref": "RG31 393" - } -}, -{ - "type": "node", - "id": 318989519, - "lat": 51.4732824, - "lon": -1.0345342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "RG30", - "ref": "RG30 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318989525, - "lat": 51.4764217, - "lon": -1.0449047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "505009610683238", - "post_box:type": "pillar", - "postal_code": "RG8", - "ref": "RG8 462", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 318989528, - "lat": 51.4759464, - "lon": -1.0459802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "RG31", - "ref": "RG31 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 318995538, - "lat": 51.4705997, - "lon": -1.0361189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "RG31", - "ref": "RG31 516" - } -}, -{ - "type": "node", - "id": 319094574, - "lat": 51.4599398, - "lon": -1.0112610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG30", - "ref": "RG30 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319112122, - "lat": 52.5904667, - "lon": -1.1445385, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "LE2 9DB", - "ref": "LE2 714" - } -}, -{ - "type": "node", - "id": 319112335, - "lat": 52.5860300, - "lon": -1.1555386, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 743" - } -}, -{ - "type": "node", - "id": 319116682, - "lat": 52.4006784, - "lon": -2.0292092, - "tags": { - "amenity": "post_box", - "ref": "B45 106" - } -}, -{ - "type": "node", - "id": 319118518, - "lat": 54.1965339, - "lon": -2.9046075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:type": "wall", - "postal_code": "LA11", - "ref": "LA11 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 319120133, - "lat": 54.0121821, - "lon": -1.0728113, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-17", - "post_box:type": "lamp", - "postal_code": "YO32 3EE", - "ref": "YO32 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 319120172, - "lat": 54.2717992, - "lon": -2.9062073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "LA11 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 319144701, - "lat": 51.4596910, - "lon": -1.0209488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG30", - "ref": "RG30 385", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319145671, - "lat": 51.4537848, - "lon": -1.0264630, - "tags": { - "amenity": "post_box", - "postal_code": "RG30", - "ref": "RG30 561", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319156859, - "lat": 51.4561095, - "lon": -0.9693242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "note": "Since the last edit of this postbox on OSM, Royal Mail has numbered the two apertures different refs as I have stated.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "RG1", - "ref": "RG1 627;RG1 6270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319156860, - "lat": 51.4560510, - "lon": -0.9693206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "note": "Since the last edit of this postbox on OSM, Royal Mail has applied different refs to both apertures as I have stated.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "RG1", - "ref": "RG1 628;RG1 6280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319157305, - "lat": 51.4530936, - "lon": -0.9640778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "501903144917884", - "post_box:type": "pillar", - "postal_code": "RG1", - "ref": "RG1 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 319162289, - "lat": 51.4546886, - "lon": -0.9706100, - "tags": { - "amenity": "post_box", - "postal_code": "RG1", - "ref": "RG1 633", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319165695, - "lat": 54.2033349, - "lon": -1.0467607, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO62 419", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 319232418, - "lat": 51.5370110, - "lon": -0.0514956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319236291, - "lat": 53.7294579, - "lon": -0.5527577, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 319236294, - "lat": 53.7330073, - "lon": -0.5474860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "HU15 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 319236295, - "lat": 53.7280861, - "lon": -0.5578187, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU15 131" - } -}, -{ - "type": "node", - "id": 319236346, - "lat": 53.7283280, - "lon": -0.5639172, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 319236347, - "lat": 53.7299643, - "lon": -0.5637230, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU15 206" - } -}, -{ - "type": "node", - "id": 319236365, - "lat": 53.7349780, - "lon": -0.5710226, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 319236366, - "lat": 53.7382371, - "lon": -0.5695549, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 319236367, - "lat": 53.7413566, - "lon": -0.5675785, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 319236393, - "lat": 53.7300173, - "lon": -0.5739695, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 319238849, - "lat": 51.9123296, - "lon": -2.1056700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 158D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 319239322, - "lat": 53.7273950, - "lon": -0.5738984, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 319246276, - "lat": 51.4537341, - "lon": -1.0110096, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG30", - "ref": "RG30 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at junction of Windrush Way and Water Road - geograph.org.uk - 2677593.jpg" - } -}, -{ - "type": "node", - "id": 319249611, - "lat": 51.9156060, - "lon": -2.1055821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 280D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 319253316, - "lat": 51.7490594, - "lon": -1.2598705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "mapillary": "715250716581292", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX1", - "ref": "OX1 940", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-05-01" - } -}, -{ - "type": "node", - "id": 319254932, - "lat": 53.2512214, - "lon": -2.6268476, - "tags": { - "amenity": "post_box", - "ref": "CW8 121" - } -}, -{ - "type": "node", - "id": 319265623, - "lat": 51.4525772, - "lon": -0.9681410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "RG1", - "ref": "RG1 68D;RG1 6800D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319275273, - "lat": 52.5869359, - "lon": -1.1612419, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "LE2 9HN", - "ref": "LE2 420" - } -}, -{ - "type": "node", - "id": 319296883, - "lat": 53.9886734, - "lon": -1.0762163, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "YO32 4AD", - "ref": "YO32 460", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 319299237, - "lat": 52.4628123, - "lon": -1.9460774, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 234" - } -}, -{ - "type": "node", - "id": 319299365, - "lat": 52.4701107, - "lon": -1.9498212, - "tags": { - "amenity": "post_box", - "ref": "B15 98" - } -}, -{ - "type": "node", - "id": 319299385, - "lat": 52.4649071, - "lon": -1.9429913, - "tags": { - "amenity": "post_box", - "ref": "B15 24" - } -}, -{ - "type": "node", - "id": 319383538, - "lat": 51.5421369, - "lon": -0.0288204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319482965, - "lat": 56.1165885, - "lon": -3.1600328, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "KY1", - "ref": "KY1 117" - } -}, -{ - "type": "node", - "id": 319485565, - "lat": 52.4576746, - "lon": -2.1149341, - "tags": { - "amenity": "post_box", - "ref": "DY9 42" - } -}, -{ - "type": "node", - "id": 319503531, - "lat": 51.5405992, - "lon": -0.0504501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319503984, - "lat": 51.5432349, - "lon": -0.0494219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319508379, - "lat": 51.5448798, - "lon": -0.0454454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "A. Handyside & Co, Derby & London", - "post_box:type": "pillar", - "ref": "E9 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319516134, - "lat": 51.2850236, - "lon": 1.0747334, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319516135, - "lat": 51.2868309, - "lon": 1.0744761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT2", - "ref": "CT2 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319516136, - "lat": 51.2888268, - "lon": 1.0704392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT2", - "ref": "CT2 377", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319516137, - "lat": 51.2913416, - "lon": 1.0789971, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319516139, - "lat": 51.2873823, - "lon": 1.0818736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 275", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319518240, - "lat": 52.8156528, - "lon": -1.6474798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1105" - } -}, -{ - "type": "node", - "id": 319518254, - "lat": 52.8179349, - "lon": -1.6525558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE13 1112" - } -}, -{ - "type": "node", - "id": 319521743, - "lat": 52.4708012, - "lon": -1.8850621, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 235", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319530689, - "lat": 52.4745762, - "lon": -1.8828087, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319568439, - "lat": 52.4639174, - "lon": -1.9842003, - "tags": { - "amenity": "post_box", - "postal_code": "B32", - "ref": "B32 732" - } -}, -{ - "type": "node", - "id": 319580649, - "lat": 52.4639590, - "lon": -1.9766159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "postal_code": "B17", - "ref": "B17 585" - } -}, -{ - "type": "node", - "id": 319580699, - "lat": 52.4632135, - "lon": -1.9691439, - "tags": { - "amenity": "post_box", - "postal_code": "B17", - "ref": "B17 472" - } -}, -{ - "type": "node", - "id": 319580713, - "lat": 52.4600238, - "lon": -1.9615035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B17", - "ref": "B17 689", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 319580718, - "lat": 52.4595114, - "lon": -1.9661322, - "tags": { - "amenity": "post_box", - "postal_code": "B17", - "ref": "B17 686" - } -}, -{ - "type": "node", - "id": 319580733, - "lat": 52.4559966, - "lon": -1.9650313, - "tags": { - "amenity": "post_box", - "postal_code": "B17", - "ref": "B17 363" - } -}, -{ - "type": "node", - "id": 319580759, - "lat": 52.4600843, - "lon": -1.9701216, - "tags": { - "amenity": "post_box", - "postal_code": "B17", - "ref": "B17 132" - } -}, -{ - "type": "node", - "id": 319580772, - "lat": 52.4592697, - "lon": -1.9782526, - "tags": { - "amenity": "post_box", - "postal_code": "B32", - "ref": "B32 675" - } -}, -{ - "type": "node", - "id": 319592773, - "lat": 53.1599138, - "lon": -1.3702070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 319594348, - "lat": 53.1669119, - "lon": -1.4111374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 319597893, - "lat": 51.5459078, - "lon": -0.0359920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E9 34D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319600542, - "lat": 51.5388698, - "lon": -0.0531835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319628709, - "lat": 52.6204039, - "lon": -1.1331743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "LE2", - "ref": "LE2 876", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 319628989, - "lat": 51.2831538, - "lon": 1.0680368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319700522, - "lat": 51.5481047, - "lon": -0.0472610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E9 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319706088, - "lat": 53.4289684, - "lon": -2.2277940, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 319719306, - "lat": 51.4870152, - "lon": -2.6419872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 319778644, - "lat": 52.4724919, - "lon": -1.9163257, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B15 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319780078, - "lat": 52.5210767, - "lon": -1.7847941, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests this should be B35 1110", - "ref": "B35 8008" - } -}, -{ - "type": "node", - "id": 319780142, - "lat": 52.5177122, - "lon": -1.7954811, - "tags": { - "amenity": "post_box", - "ref": "B35 63" - } -}, -{ - "type": "node", - "id": 319796440, - "lat": 52.5883194, - "lon": -1.1478807, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 515" - } -}, -{ - "type": "node", - "id": 319816470, - "lat": 50.4611001, - "lon": -3.5001660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 319846649, - "lat": 51.5452035, - "lon": -0.0300276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319847766, - "lat": 51.5506638, - "lon": -0.0304131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E9 27D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319848850, - "lat": 51.5487764, - "lon": -0.0507732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "E9 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 319866355, - "lat": 53.8095146, - "lon": -1.5839625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS4 484", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 319866398, - "lat": 53.8216244, - "lon": -1.5970693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 913", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 319881912, - "lat": 52.8190996, - "lon": -1.6580584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1223", - "source": "approx" - } -}, -{ - "type": "node", - "id": 319912286, - "lat": 51.6487843, - "lon": -3.9232010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 15:15", - "name": "Swansea Delivery Office", - "post_box:type": "wall", - "ref": "SA1 9999", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 319962394, - "lat": 53.2081048, - "lon": -2.8259946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CH3", - "ref": "CH3 28" - } -}, -{ - "type": "node", - "id": 319969715, - "lat": 50.7508851, - "lon": -1.7913592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 90" - } -}, -{ - "type": "node", - "id": 319970077, - "lat": 50.7195912, - "lon": -1.7839766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 302", - "ref:GB:uprn": "10015360436", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 319992209, - "lat": 52.5698681, - "lon": -1.1691784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE8 60" - } -}, -{ - "type": "node", - "id": 319992281, - "lat": 52.5755262, - "lon": -1.1680839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE8 254" - } -}, -{ - "type": "node", - "id": 319997397, - "lat": 52.3623029, - "lon": -1.9846291, - "tags": { - "amenity": "post_box", - "ref": "B45 298", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320000599, - "lat": 52.5737451, - "lon": -1.1647086, - "tags": { - "amenity": "post_box", - "ref": "LE8 253" - } -}, -{ - "type": "node", - "id": 320002438, - "lat": 52.3608839, - "lon": -1.9930500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B45 699D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320037044, - "lat": 52.3716625, - "lon": -2.0173371, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 640", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320039071, - "lat": 52.3657580, - "lon": -2.0150279, - "tags": { - "amenity": "post_box", - "ref": "B45 262", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320043915, - "lat": 52.3616017, - "lon": -1.9901261, - "tags": { - "amenity": "post_box", - "ref": "B45 275", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320045416, - "lat": 52.3579782, - "lon": -1.9923377, - "tags": { - "amenity": "post_box", - "ref": "B45 659", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320047510, - "lat": 50.5474700, - "lon": -4.1535290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320047521, - "lat": 50.5544297, - "lon": -4.1498914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320049443, - "lat": 52.3605289, - "lon": -2.0045142, - "tags": { - "amenity": "post_box", - "ref": "B45 604", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320054340, - "lat": 52.3672505, - "lon": -1.9924892, - "tags": { - "amenity": "post_box", - "postal_code": "B45", - "ref": "B45 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320054348, - "lat": 52.3764877, - "lon": -1.9987817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B45 671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320057015, - "lat": 50.5489194, - "lon": -4.1488136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320060912, - "lat": 52.3806104, - "lon": -1.9978542, - "tags": { - "amenity": "post_box", - "ref": "B45 551", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320060921, - "lat": 52.3783676, - "lon": -2.0089918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "B45 828", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320087730, - "lat": 50.4680201, - "lon": -3.5436595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320092923, - "lat": 54.6000580, - "lon": -5.9265099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "BT1 2BA", - "ref": "BT1 133" - } -}, -{ - "type": "node", - "id": 320125074, - "lat": 50.9048433, - "lon": -1.4043982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 780D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 320174993, - "lat": 53.0204357, - "lon": -1.3639216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 652", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320175773, - "lat": 53.1291798, - "lon": -1.3959667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 381" - } -}, -{ - "type": "node", - "id": 320179612, - "lat": 53.0036438, - "lon": -1.3366315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE75 614D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320193129, - "lat": 53.1366763, - "lon": -1.3859886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE55 412" - } -}, -{ - "type": "node", - "id": 320197033, - "lat": 51.7479351, - "lon": -0.3364724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL1 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320198074, - "lat": 53.7533789, - "lon": -0.4714615, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 320198076, - "lat": 53.7511014, - "lon": -0.4588994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 320198077, - "lat": 53.7483189, - "lon": -0.4530927, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 320198117, - "lat": 53.7573164, - "lon": -0.4459028, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 320198119, - "lat": 53.7517973, - "lon": -0.4456221, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 320198120, - "lat": 53.7488583, - "lon": -0.4393980, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 320215255, - "lat": 51.4588645, - "lon": -1.0277569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 320215573, - "lat": 51.4554966, - "lon": -1.0366553, - "tags": { - "amenity": "post_box", - "mapillary": "477868967236581", - "post_box:type": "pillar", - "survey:date": "2021-10-23" - } -}, -{ - "type": "node", - "id": 320215729, - "lat": 51.4556897, - "lon": -1.0439743, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320229692, - "lat": 51.6074229, - "lon": -0.6999245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "HP10 145" - } -}, -{ - "type": "node", - "id": 320231169, - "lat": 51.8143808, - "lon": -0.1617566, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL6 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320246240, - "lat": 54.7807024, - "lon": -1.5867674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320274455, - "lat": 55.9275442, - "lon": -3.1934465, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 160D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 320284689, - "lat": 51.3754740, - "lon": 1.4082854, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 125D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320308377, - "lat": 51.0552284, - "lon": -1.3228735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 320308901, - "lat": 51.0485192, - "lon": -1.3231975, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320322132, - "lat": 51.3773457, - "lon": 1.4036724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320324526, - "lat": 51.3827427, - "lon": 1.4125605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320324544, - "lat": 51.3846890, - "lon": 1.4158742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "postal_code": "CT9", - "ref": "CT9 83", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320449687, - "lat": 51.3859461, - "lon": 1.4082236, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-22", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320472575, - "lat": 51.3812790, - "lon": 1.4103194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "postal_code": "CT9", - "ref": "CT9 80", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320500467, - "lat": 51.5729808, - "lon": -0.0171384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320500526, - "lat": 51.5736314, - "lon": -0.0242316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 13D", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 320500544, - "lat": 51.5799789, - "lon": -0.0182062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 320503656, - "lat": 51.3816743, - "lon": 1.4024860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 82", - "ref:GB:uprn": "10015293316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320503661, - "lat": 51.3818475, - "lon": 1.3981026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 320518394, - "lat": 51.3865987, - "lon": 1.3981851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320523795, - "lat": 51.3871372, - "lon": 1.3917795, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 76D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320549673, - "lat": 51.3833386, - "lon": 1.3907333, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 58D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320562629, - "lat": 52.3656144, - "lon": -2.0071913, - "tags": { - "amenity": "post_box", - "ref": "B45 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320573212, - "lat": 52.3654180, - "lon": -1.9585852, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320579547, - "lat": 53.8389813, - "lon": -0.4214796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 320581601, - "lat": 51.3868585, - "lon": 1.3862467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "CT9", - "ref": "CT9 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320581607, - "lat": 51.3868627, - "lon": 1.3862226, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "drive_through": "no", - "lastcheck": "2023-09-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320590936, - "lat": 51.3834585, - "lon": 1.3829904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320591313, - "lat": 53.8398980, - "lon": -0.4145158, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 320591316, - "lat": 53.8435078, - "lon": -0.4090178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 320599055, - "lat": 51.3841187, - "lon": 1.3850820, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "lastcheck": "2023-09-11", - "old_ref": "CT9 22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "visual_estimate", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 320620873, - "lat": 51.3855300, - "lon": 1.3721672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320621805, - "lat": 50.7221602, - "lon": -2.7531457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "DT6", - "ref": "DT6 58", - "ref:GB:uprn": "10015411789" - } -}, -{ - "type": "node", - "id": 320621927, - "lat": 50.7182433, - "lon": -2.7552686, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "DT6", - "ref": "DT6 67", - "ref:GB:uprn": "10015315302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320621985, - "lat": 50.7249117, - "lon": -2.7577578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DT6", - "ref": "DT6 17", - "survey:date": "2022-08-07", - "wikimedia_commons": "File:Bridport, former school - geograph.org.uk - 3666048.jpg" - } -}, -{ - "type": "node", - "id": 320634080, - "lat": 50.4530018, - "lon": -3.5667976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3", - "ref": "TQ3 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320646651, - "lat": 53.1470776, - "lon": -1.3327300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320650055, - "lat": 52.8045414, - "lon": -1.6347822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "454965859133635", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1015", - "source": "memory", - "survey:date": "2020-11-27" - } -}, -{ - "type": "node", - "id": 320660002, - "lat": 50.4543393, - "lon": -3.5461879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320682905, - "lat": 51.0242879, - "lon": 0.9949023, - "tags": { - "amenity": "post_box", - "ref": "TN29 281", - "source": "photo" - } -}, -{ - "type": "node", - "id": 320698627, - "lat": 51.1525021, - "lon": 0.8684227, - "tags": { - "amenity": "post_box", - "postal_code": "TN24", - "ref": "TN24 49" - } -}, -{ - "type": "node", - "id": 320701437, - "lat": 51.1590832, - "lon": 0.8848178, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN24 94", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TN24", - "ref": "TN24 94D", - "royal_cypher": "EIIR", - "source": "photo", - "source_1": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 320724607, - "lat": 51.3671820, - "lon": 0.0880043, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 320725061, - "lat": 51.3728575, - "lon": 0.0871619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 320725177, - "lat": 51.3746770, - "lon": 0.0826091, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 320742591, - "lat": 50.3468054, - "lon": -4.2244582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL10 837", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 320754773, - "lat": 51.7663899, - "lon": 0.1477986, - "tags": { - "amenity": "post_box", - "ref": "CM17 226" - } -}, -{ - "type": "node", - "id": 320803978, - "lat": 54.1469100, - "lon": -2.0465768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:45", - "post_box:type": "wall", - "ref": "BD23 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 320836385, - "lat": 52.5815718, - "lon": -1.1271728, - "tags": { - "amenity": "post_box", - "postal_code": "LE18", - "ref": "LE18 925" - } -}, -{ - "type": "node", - "id": 320901533, - "lat": 55.8367991, - "lon": -4.4587058, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 167" - } -}, -{ - "type": "node", - "id": 320904936, - "lat": 55.8323263, - "lon": -4.4589448, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 226" - } -}, -{ - "type": "node", - "id": 320923708, - "lat": 53.7858426, - "lon": -2.5846594, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 320925204, - "lat": 53.8350461, - "lon": -0.4348944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HU17 238D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 320925208, - "lat": 53.8521947, - "lon": -0.4499988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HU17 221" - } -}, -{ - "type": "node", - "id": 320925209, - "lat": 53.8503258, - "lon": -0.4442171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HU17 270" - } -}, -{ - "type": "node", - "id": 320927024, - "lat": 53.8526851, - "lon": -0.4380021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HU17 250" - } -}, -{ - "type": "node", - "id": 320927025, - "lat": 53.8523607, - "lon": -0.4300416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 320932249, - "lat": 51.9738770, - "lon": 0.6192484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 320932339, - "lat": 51.9809304, - "lon": 0.6044976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 320987753, - "lat": 52.9535418, - "lon": -1.1449367, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-17", - "collection_times": "Mo-Fr 18:00; Sa 09:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 3", - "ref:GB:uprn": "200001376174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 320998063, - "lat": 53.7951447, - "lon": -1.5374194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 13:00-18:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS2 37", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 321012222, - "lat": 52.3770889, - "lon": -1.2460796, - "tags": { - "amenity": "post_box", - "ref": "CV21 203" - } -}, -{ - "type": "node", - "id": 321022028, - "lat": 52.3671078, - "lon": -1.2414067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV21 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321255912, - "lat": 51.5128134, - "lon": -0.1116469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC4Y 419;EC4Y 4191", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321255916, - "lat": 51.5138126, - "lon": -0.1116402, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-07-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2A 57;WC2A 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321270212, - "lat": 51.2568604, - "lon": -0.6657527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GU3", - "ref": "GU3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo" - } -}, -{ - "type": "node", - "id": 321275500, - "lat": 53.7548791, - "lon": -0.2737783, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321305301, - "lat": 51.5514776, - "lon": -1.7737921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 321316700, - "lat": 51.2518058, - "lon": -0.7005262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321322839, - "lat": 50.7329769, - "lon": -2.7484155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "998217110857881", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DT6", - "ref": "DT6 7", - "survey:date": "2022-05-23" - } -}, -{ - "type": "node", - "id": 321323226, - "lat": 50.7310014, - "lon": -2.7349987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "postal_code": "DT6", - "ref": "DT6 16", - "ref:GB:uprn": "10015425068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321323345, - "lat": 50.7307910, - "lon": -2.7578379, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DT6", - "ref": "DT6 21", - "ref:GB:uprn": "10015385343", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 321341723, - "lat": 53.0906578, - "lon": -1.1584602, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 321401023, - "lat": 52.9216025, - "lon": -1.1598949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG11 405D", - "ref:GB:uprn": "10015468091", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321445116, - "lat": 51.9005477, - "lon": -2.1434547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "collection_times_checked": "2015-10-14", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321467079, - "lat": 51.6981232, - "lon": -2.3614865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321468670, - "lat": 51.6929867, - "lon": -2.3790187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321473549, - "lat": 51.6936851, - "lon": -2.3709710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2021-07-12", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321474886, - "lat": 51.7104679, - "lon": -2.3649377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL11 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321475038, - "lat": 52.0425212, - "lon": 0.4878956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO9 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321486294, - "lat": 54.4780740, - "lon": -3.5239509, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA22 44" - } -}, -{ - "type": "node", - "id": 321502767, - "lat": 50.8112063, - "lon": -3.0322205, - "tags": { - "amenity": "post_box", - "postal_code": "EX13", - "ref": "EX13 119" - } -}, -{ - "type": "node", - "id": 321504247, - "lat": 54.1331907, - "lon": -1.0270011, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 321542161, - "lat": 53.3209783, - "lon": -2.2245040, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 5" - } -}, -{ - "type": "node", - "id": 321542162, - "lat": 53.3253696, - "lon": -2.2225188, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 693" - } -}, -{ - "type": "node", - "id": 321542163, - "lat": 53.3252955, - "lon": -2.2174113, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 355" - } -}, -{ - "type": "node", - "id": 321542164, - "lat": 53.3279975, - "lon": -2.2107290, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 256" - } -}, -{ - "type": "node", - "id": 321542165, - "lat": 53.3265656, - "lon": -2.2268625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "postal_code": "SK9", - "ref": "SK9 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 321574233, - "lat": 52.5887125, - "lon": -1.1223392, - "tags": { - "amenity": "post_box", - "postal_code": "LE18", - "ref": "LE18 844" - } -}, -{ - "type": "node", - "id": 321575221, - "lat": 52.5823377, - "lon": -1.1210200, - "tags": { - "amenity": "post_box", - "postal_code": "LE18", - "ref": "LE18 764" - } -}, -{ - "type": "node", - "id": 321605691, - "lat": 55.9355703, - "lon": -3.1032452, - "tags": { - "amenity": "post_box", - "ref": "EH15 637" - } -}, -{ - "type": "node", - "id": 321696598, - "lat": 52.3739387, - "lon": -1.2524726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1038017977155872", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CV21", - "ref": "CV21 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-01-08" - } -}, -{ - "type": "node", - "id": 321746027, - "lat": 52.0094012, - "lon": 0.6393032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 321746522, - "lat": 52.0184732, - "lon": 0.6387870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO9 56" - } -}, -{ - "type": "node", - "id": 321746524, - "lat": 52.0449913, - "lon": 0.6317326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 321757827, - "lat": 51.9645040, - "lon": -0.2185030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG6 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 321783703, - "lat": 55.9454050, - "lon": -3.1067678, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH15 521", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 321785717, - "lat": 55.9423086, - "lon": -3.1083090, - "tags": { - "amenity": "post_box", - "ref": "EH15 517", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 321785938, - "lat": 54.4021350, - "lon": -3.3723053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "CA19 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321790131, - "lat": 52.0574587, - "lon": 1.3027465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP12 6340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321790802, - "lat": 53.2467830, - "lon": -4.1536441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 321803794, - "lat": 52.9158312, - "lon": -1.2352355, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-19", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG9 605", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321809192, - "lat": 50.7335637, - "lon": -1.7867055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 56", - "ref:GB:uprn": "10015407053" - } -}, -{ - "type": "node", - "id": 321812327, - "lat": 52.5565403, - "lon": -1.8332239, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikidata": "Q110206045" - } -}, -{ - "type": "node", - "id": 321817400, - "lat": 52.2492156, - "lon": -1.3894093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 321849305, - "lat": 53.3303508, - "lon": -2.1947947, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 12" - } -}, -{ - "type": "node", - "id": 321852715, - "lat": 53.3333527, - "lon": -2.2113901, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 725" - } -}, -{ - "type": "node", - "id": 321897187, - "lat": 54.6680671, - "lon": -2.7552152, - "tags": { - "amenity": "post_box", - "ref": "CA11 211" - } -}, -{ - "type": "node", - "id": 322000545, - "lat": 51.3494124, - "lon": -1.9929055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322043002, - "lat": 52.0733044, - "lon": 1.2813718, - "tags": { - "amenity": "post_box", - "postal_code": "IP12 4SQ", - "ref": "IP12 6300" - } -}, -{ - "type": "node", - "id": 322043005, - "lat": 52.0780149, - "lon": 1.2854582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "IP12 4RN", - "ref": "IP12 6281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322051622, - "lat": 55.9427455, - "lon": -3.1259403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 499", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 322052033, - "lat": 55.9467160, - "lon": -3.1253334, - "tags": { - "amenity": "post_box", - "ref": "EH15 500" - } -}, -{ - "type": "node", - "id": 322060188, - "lat": 50.7372953, - "lon": -2.7627400, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref:GB:uprn": "10015345480" - } -}, -{ - "type": "node", - "id": 322060475, - "lat": 50.7414339, - "lon": -2.7639605, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "DT6", - "ref": "DT6 95", - "ref:GB:uprn": "10015338898" - } -}, -{ - "type": "node", - "id": 322060556, - "lat": 50.7394379, - "lon": -2.7654623, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "DT6", - "ref": "DT6 40", - "ref:GB:uprn": "10015281477" - } -}, -{ - "type": "node", - "id": 322062506, - "lat": 54.1359212, - "lon": -2.5418041, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "LA6 8" - } -}, -{ - "type": "node", - "id": 322081884, - "lat": 50.7833609, - "lon": -3.6467184, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX17 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322083474, - "lat": 50.7887659, - "lon": -3.6540621, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 322086907, - "lat": 50.7908164, - "lon": -3.6667968, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 322088386, - "lat": 50.7868903, - "lon": -3.6553649, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 322090738, - "lat": 52.4934033, - "lon": -0.2903065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "PE7", - "ref": "PE7 56", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322090768, - "lat": 52.4892526, - "lon": -0.2936056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "PE7", - "ref": "PE7 312", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322090851, - "lat": 52.4809602, - "lon": -0.3155783, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PE7", - "ref": "PE7 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322101572, - "lat": 52.4246001, - "lon": -0.3384320, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PE28", - "ref": "PE28 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322117264, - "lat": 52.3687180, - "lon": -0.2598637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "PE28", - "ref": "PE28 149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322120062, - "lat": 51.9079796, - "lon": -2.0605478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL52", - "ref": "GL52 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 322120761, - "lat": 52.3566599, - "lon": -0.2102429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "PE28", - "ref": "PE28 275" - } -}, -{ - "type": "node", - "id": 322121502, - "lat": 53.3490921, - "lon": -2.7744849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 322127784, - "lat": 53.3694198, - "lon": -1.5172899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S11", - "ref": "S11 361", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 322127787, - "lat": 53.3683644, - "lon": -1.5242334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322128276, - "lat": 52.3242603, - "lon": -0.2298094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PE28", - "ref": "PE28 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322133901, - "lat": 52.3083587, - "lon": -0.2963587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "PE28", - "ref": "PE28 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322135005, - "lat": 53.3649071, - "lon": -1.5342326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 552", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322135013, - "lat": 53.3658298, - "lon": -1.5373660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 322140786, - "lat": 53.3653601, - "lon": -1.5418620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322153767, - "lat": 53.3638677, - "lon": -1.5455632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322153785, - "lat": 53.3661795, - "lon": -1.5530956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 592", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 322163915, - "lat": 51.5345970, - "lon": 0.0465150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322182108, - "lat": 53.3697662, - "lon": -1.5392397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322182113, - "lat": 53.3694773, - "lon": -1.5341282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 600", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322191581, - "lat": 53.3717184, - "lon": -1.5278456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322198547, - "lat": 53.3680415, - "lon": -1.5288204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322198555, - "lat": 53.3740832, - "lon": -1.5332819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 358", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 322198557, - "lat": 53.3703809, - "lon": -1.5562390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 679", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322270203, - "lat": 51.5725310, - "lon": -0.3373310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "postal_code": "HA1", - "ref": "HA1 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 322286853, - "lat": 53.3842640, - "lon": -2.2144310, - "tags": { - "amenity": "post_box", - "ref": "SK8 169" - } -}, -{ - "type": "node", - "id": 322469248, - "lat": 52.9516972, - "lon": 0.8535405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR23 2307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322477217, - "lat": 52.2441038, - "lon": -0.2938899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PE19", - "ref": "PE19 158", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322489283, - "lat": 52.1373935, - "lon": -0.2930663, - "tags": { - "amenity": "post_box", - "postal_code": "SG19", - "ref": "SG19 120", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322489296, - "lat": 52.1365315, - "lon": -0.2916564, - "tags": { - "amenity": "post_box", - "postal_code": "SG19", - "ref": "SG19 118", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322490721, - "lat": 52.1315874, - "lon": -0.2869654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SG19", - "ref": "SG19 101", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322491837, - "lat": 52.1293864, - "lon": -0.2885605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "no plate on RH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG19 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322492553, - "lat": 52.1271129, - "lon": -0.2844706, - "tags": { - "amenity": "post_box", - "postal_code": "SG19", - "ref": "SG19 111", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322492560, - "lat": 52.1254663, - "lon": -0.2818579, - "tags": { - "amenity": "post_box", - "postal_code": "SG19", - "ref": "SG19 103", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322496172, - "lat": 52.2124193, - "lon": -1.9208561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322517205, - "lat": 52.2447232, - "lon": -1.3967888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV47 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322517206, - "lat": 52.2469373, - "lon": -1.3980433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV47 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322517207, - "lat": 52.2466073, - "lon": -1.3982052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV47 5", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322528762, - "lat": 55.0788272, - "lon": -1.5624392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 6RP", - "ref": "NE23 58" - } -}, -{ - "type": "node", - "id": 322545445, - "lat": 53.2292008, - "lon": -4.1599776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322552441, - "lat": 53.2263232, - "lon": -4.1628623, - "tags": { - "amenity": "post_box", - "note": "Inside post office", - "ref": "LL59 43" - } -}, -{ - "type": "node", - "id": 322562201, - "lat": 51.7526034, - "lon": -1.2679919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX1", - "ref": "OX1 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2013-02-23" - } -}, -{ - "type": "node", - "id": 322562213, - "lat": 51.7506182, - "lon": -1.2671456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:00", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "postal_code": "OX1", - "ref": "OX1 2002", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 322573848, - "lat": 50.9297174, - "lon": -1.3959647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO17", - "ref": "SO17 342D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322579635, - "lat": 55.9500968, - "lon": -3.1402679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 285D" - } -}, -{ - "type": "node", - "id": 322586851, - "lat": 51.1497293, - "lon": 0.8641054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "TN23", - "ref": "TN23 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo" - } -}, -{ - "type": "node", - "id": 322589613, - "lat": 52.1632010, - "lon": -2.2466547, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "WR2", - "ref": "WR2 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322597487, - "lat": 50.4743067, - "lon": -3.5173661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 80D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 322608455, - "lat": 50.4748422, - "lon": -3.5126358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 322614574, - "lat": 53.3529937, - "lon": -2.7868063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 28", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 322616992, - "lat": 52.0585746, - "lon": -2.6820505, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "HR1 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 322617724, - "lat": 53.3927489, - "lon": -1.4327102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 896", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322618006, - "lat": 51.9135126, - "lon": -2.0438129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL53", - "ref": "GL53 180", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322623901, - "lat": 55.8711011, - "lon": -3.1368797, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2019-06-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "mapillary": "163748885682446", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH19 127D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322634113, - "lat": 53.2707860, - "lon": -2.1516222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 322635669, - "lat": 52.1552530, - "lon": -2.2617472, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "WR2", - "ref": "WR2 535" - } -}, -{ - "type": "node", - "id": 322661714, - "lat": 53.2632724, - "lon": -2.1311227, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 99" - } -}, -{ - "type": "node", - "id": 322663042, - "lat": 53.2650060, - "lon": -2.1273248, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SK10", - "ref": "SK10 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322666016, - "lat": 53.3891858, - "lon": -1.4246115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 213D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322668992, - "lat": 53.2679075, - "lon": -2.1546061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "post_box:type": "pillar", - "postal_code": "SK10", - "ref": "SK10 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322694942, - "lat": 53.3864223, - "lon": -1.4112000, - "tags": { - "amenity": "post_box", - "postal_code": "S9", - "ref": "S9 394" - } -}, -{ - "type": "node", - "id": 322698246, - "lat": 51.8417463, - "lon": -2.2209965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "524487322048888", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL4 84", - "royal_cypher": "EIIR", - "source": "local_knowledge", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 322702495, - "lat": 51.8960576, - "lon": -2.0814933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1387361", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL50 8D", - "ref:GB:nhle": "1387361", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26667017" - } -}, -{ - "type": "node", - "id": 322705695, - "lat": 51.8904079, - "lon": -2.0782414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 322708821, - "lat": 51.8996321, - "lon": -2.0901158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 60D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 322792862, - "lat": 55.9321881, - "lon": -3.0733653, - "tags": { - "amenity": "post_box", - "ref": "EH21 150" - } -}, -{ - "type": "node", - "id": 322831717, - "lat": 52.0893838, - "lon": 1.3070464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "IP12 4DU", - "ref": "IP12 6286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322833029, - "lat": 53.7358455, - "lon": -0.3957060, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322833031, - "lat": 53.7322131, - "lon": -0.3877693, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 322833042, - "lat": 53.7369865, - "lon": -0.3900214, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322833051, - "lat": 53.7388985, - "lon": -0.3808759, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322833061, - "lat": 53.7426432, - "lon": -0.3830894, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322833076, - "lat": 53.7373677, - "lon": -0.3729597, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 322833088, - "lat": 53.7384836, - "lon": -0.3651874, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "HU3", - "ref": "HU3 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 322833106, - "lat": 53.7438575, - "lon": -0.3751641, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322833109, - "lat": 53.7436292, - "lon": -0.3779673, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322833114, - "lat": 53.7386430, - "lon": -0.3966911, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 322837097, - "lat": 52.0854853, - "lon": 1.3003500, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "IP12 4DQ", - "ref": "IP12 6219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322860624, - "lat": 54.1639266, - "lon": -0.9317438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:40; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 566" - } -}, -{ - "type": "node", - "id": 322860952, - "lat": 53.5707667, - "lon": -1.7857722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HD9 420;HD9 1420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322871043, - "lat": 54.2452793, - "lon": -1.0513696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "YO62 550D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322871174, - "lat": 54.2444659, - "lon": -1.0540946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "YO62 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322874476, - "lat": 54.2261749, - "lon": -1.0600505, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO62 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322875931, - "lat": 51.1516495, - "lon": 0.8547756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN23 322", - "source": "photo" - } -}, -{ - "type": "node", - "id": 322876745, - "lat": 53.3849974, - "lon": -1.4226888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 864D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322879662, - "lat": 50.7793670, - "lon": -3.5894254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 322880179, - "lat": 50.7987019, - "lon": -3.6363503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX17 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 322880235, - "lat": 53.3791735, - "lon": -1.4214855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 923D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322881046, - "lat": 50.7903426, - "lon": -3.6470947, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 322882212, - "lat": 50.7942436, - "lon": -3.6436958, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 322884185, - "lat": 53.3781109, - "lon": -1.4110128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 832", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322885694, - "lat": 53.3765720, - "lon": -1.4140857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 175", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 322890019, - "lat": 53.3822030, - "lon": -1.4112212, - "tags": { - "amenity": "post_box", - "postal_code": "S9", - "ref": "S9 267" - } -}, -{ - "type": "node", - "id": 322891458, - "lat": 53.2296169, - "lon": -4.1338334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 222D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 322891673, - "lat": 52.5693692, - "lon": -0.2419668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref not visible 24/09/22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE1 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322896502, - "lat": 52.5569821, - "lon": 0.0718617, - "tags": { - "amenity": "post_box", - "postal_code": "PE15", - "ref": "PE15 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322896600, - "lat": 52.6396862, - "lon": 0.1701227, - "tags": { - "amenity": "post_box", - "ref": "PE14 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322897670, - "lat": 52.5574132, - "lon": -0.1271448, - "tags": { - "amenity": "post_box", - "postal_code": "PE7", - "ref": "PE7 373", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322897672, - "lat": 52.5557656, - "lon": -0.1271080, - "tags": { - "amenity": "post_box", - "mapillary": "1940804516077523", - "post_box:type": "pillar", - "postal_code": "PE7", - "ref": "PE7 374", - "source": "survey", - "survey:date": "2020-08-20" - } -}, -{ - "type": "node", - "id": 322897673, - "lat": 52.5617296, - "lon": -0.1347063, - "tags": { - "amenity": "post_box", - "postal_code": "PE7", - "ref": "PE7 213", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322897711, - "lat": 53.2645925, - "lon": -2.1631588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 172" - } -}, -{ - "type": "node", - "id": 322903177, - "lat": 52.5515012, - "lon": 0.0867678, - "tags": { - "amenity": "post_box", - "postal_code": "PE15", - "ref": "PE15 300", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322903180, - "lat": 52.5540694, - "lon": 0.0911837, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PE15", - "ref": "PE15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322903181, - "lat": 52.5575311, - "lon": 0.0920856, - "tags": { - "amenity": "post_box", - "postal_code": "PE15", - "ref": "PE15 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322904997, - "lat": 50.7920063, - "lon": -3.6471939, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 322912178, - "lat": 53.2665249, - "lon": -2.1605288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK10", - "ref": "SK10 204", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 322916132, - "lat": 52.7500859, - "lon": -1.4600699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "550169597149163", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 322919202, - "lat": 50.7951259, - "lon": -3.6610041, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 322921599, - "lat": 53.2652324, - "lon": -2.1486243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Post box number obscured", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 322923799, - "lat": 51.9991246, - "lon": 0.6451498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 322933575, - "lat": 50.7944532, - "lon": -3.6556139, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 322959294, - "lat": 51.4859936, - "lon": -0.0984208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Has a plate over the aperture only allowing thin items to be posted", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322959333, - "lat": 51.4866271, - "lon": -0.0947436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE17", - "ref": "SE17 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 322975305, - "lat": 51.4825560, - "lon": -0.0946447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE5", - "ref": "SE5 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 322986249, - "lat": 51.5180060, - "lon": -0.2961537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "last_collection": "5.30pm, Sat 12 noon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "W5", - "ref": "W5 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 323080434, - "lat": 52.6591109, - "lon": 0.1660841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "PE13", - "ref": "PE13 44", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323080437, - "lat": 52.6648505, - "lon": 0.1614892, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE13 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323080439, - "lat": 52.6645548, - "lon": 0.1585094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "PE13", - "ref": "PE13 4000;PE13 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323080440, - "lat": 52.6682161, - "lon": 0.1696887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "PE13", - "ref": "PE13 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323107444, - "lat": 50.7205992, - "lon": -1.5880479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 123", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 323107957, - "lat": 51.6272095, - "lon": -0.2415724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 4" - } -}, -{ - "type": "node", - "id": 323141653, - "lat": 51.4548134, - "lon": -0.2571893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 323141744, - "lat": 51.4574908, - "lon": -0.2533803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 323145664, - "lat": 52.0749635, - "lon": 1.2885587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "IP12 4RS", - "ref": "IP12 6329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323146700, - "lat": 52.0712400, - "lon": 1.2724514, - "tags": { - "amenity": "post_box", - "postal_code": "IP12 4SP", - "ref": "IP12 6335" - } -}, -{ - "type": "node", - "id": 323169983, - "lat": 54.4396066, - "lon": -3.5319574, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA21 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 323176733, - "lat": 51.1722055, - "lon": 0.4040562, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN12 118" - } -}, -{ - "type": "node", - "id": 323180273, - "lat": 54.5188111, - "lon": -3.4897444, - "tags": { - "amenity": "post_box", - "ref": "CA23 89" - } -}, -{ - "type": "node", - "id": 323182890, - "lat": 51.7519954, - "lon": -1.2580052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2023-03-26", - "check_date:collection_times": "2023-03-26", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "OX1 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323188335, - "lat": 52.1085520, - "lon": 0.7409613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323199616, - "lat": 53.3077738, - "lon": -0.4728930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN2 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323199681, - "lat": 52.1460354, - "lon": 0.5711052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323201693, - "lat": 53.7526242, - "lon": -1.4858810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323201708, - "lat": 53.7517068, - "lon": -1.4823071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 1009" - } -}, -{ - "type": "node", - "id": 323213375, - "lat": 53.2297113, - "lon": -4.1298985, - "tags": { - "amenity": "post_box", - "ref": "LL57 103" - } -}, -{ - "type": "node", - "id": 323214334, - "lat": 51.3314413, - "lon": -0.2603441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 323224010, - "lat": 54.7496384, - "lon": -1.4382958, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 323226336, - "lat": 53.2742464, - "lon": -1.4915627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 540D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323227879, - "lat": 53.3827701, - "lon": -1.4861363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S3 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323240639, - "lat": 53.2530134, - "lon": -2.1595532, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 149" - } -}, -{ - "type": "node", - "id": 323240652, - "lat": 53.2571707, - "lon": -2.1577196, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 165" - } -}, -{ - "type": "node", - "id": 323260143, - "lat": 50.5460529, - "lon": -4.1535208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 323747019, - "lat": 51.5905981, - "lon": -1.8130288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN25 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323756928, - "lat": 52.9480894, - "lon": -1.1877040, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Charnock Avenue", - "note": "Postcode incomplete", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "postal_code": "NG8 1", - "ref": "NG8 483D", - "ref:GB:uprn": "10015329652", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey + Dracos post boxes" - } -}, -{ - "type": "node", - "id": 323789399, - "lat": 52.5067910, - "lon": -1.7592717, - "tags": { - "amenity": "post_box", - "ref": "B36 55" - } -}, -{ - "type": "node", - "id": 323849483, - "lat": 51.9639394, - "lon": -0.2295236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323849788, - "lat": 51.9687540, - "lon": -0.2232610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 251D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 323851136, - "lat": 51.9754330, - "lon": -0.2302700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "fixme": "On 2024-07-05 survey, no collection times or ref were displayed. Needs resurvey if/when info panel reinstated.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 323861380, - "lat": 51.4634599, - "lon": -0.2115423, - "tags": { - "addr:housenumber": "279", - "addr:street": "Putney Bridge Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 26", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 323861410, - "lat": 51.4640898, - "lon": -0.2099303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 323861638, - "lat": 52.9470039, - "lon": -1.1910158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Middleton Boulevard", - "note": "Postcode incomplete", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "NG8 1", - "ref": "NG8 277D", - "ref:GB:uprn": "10015333075", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey + Dracos post boxes" - } -}, -{ - "type": "node", - "id": 323861920, - "lat": 51.9820747, - "lon": -0.2359877, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SG6", - "ref": "SG6 161", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 323861922, - "lat": 51.9912727, - "lon": -0.2267535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "SG6", - "ref": "SG6 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323863554, - "lat": 52.0082002, - "lon": -0.2204146, - "tags": { - "amenity": "post_box", - "postal_code": "SG5", - "ref": "SG5 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 323870076, - "lat": 53.2603225, - "lon": -2.1375467, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SK11", - "ref": "SK11 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323870969, - "lat": 53.2598901, - "lon": -2.1491069, - "tags": { - "amenity": "post_box", - "note": "collection plate missing 30/12/2008", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 323933743, - "lat": 52.7290425, - "lon": 1.4961200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 323935874, - "lat": 53.7465399, - "lon": -1.4848762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 1023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323952022, - "lat": 52.0157329, - "lon": -0.2634034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SG15", - "ref": "SG15 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Walking GPS;survey" - } -}, -{ - "type": "node", - "id": 323957588, - "lat": 50.7910438, - "lon": -3.6735795, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 323957706, - "lat": 52.9099399, - "lon": -1.4859206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 323961479, - "lat": 50.7925576, - "lon": -3.6721547, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 323968309, - "lat": 50.7946754, - "lon": -3.6678007, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 323992929, - "lat": 52.4389506, - "lon": -1.9161375, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B29 253", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 324007109, - "lat": 50.7910763, - "lon": -3.6630910, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 324012731, - "lat": 50.7548804, - "lon": -3.5541271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "1603452957175776", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 324012941, - "lat": 51.5242616, - "lon": -0.2923482, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12 noon", - "mapillary": "155911083413502", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "W5", - "ref": "W5 19", - "survey:date": "2021-09-27" - } -}, -{ - "type": "node", - "id": 324020148, - "lat": 53.0223885, - "lon": -2.8132214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "wall box situated in own brick pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 324106362, - "lat": 53.1027317, - "lon": -2.6315933, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324160213, - "lat": 50.7211627, - "lon": -3.5312280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX1 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324160496, - "lat": 60.1582084, - "lon": -1.1553187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE1 107" - } -}, -{ - "type": "node", - "id": 324241755, - "lat": 51.1634653, - "lon": 0.4249131, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=902f5e75-bdb6-4163-bcc7-5d60df7e12c4&cp=51.163635~0.424931&lvl=19&dir=174.33745&pi=-5.654987&style=x&mo=z.0&v=2&sV=2&form=S00027", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN12 64" - } -}, -{ - "type": "node", - "id": 324267481, - "lat": 55.9822635, - "lon": -3.5748249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH49 24D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 324268542, - "lat": 55.9801135, - "lon": -3.5853598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 324289414, - "lat": 53.7636223, - "lon": -0.4559476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HU10 216" - } -}, -{ - "type": "node", - "id": 324289418, - "lat": 53.7616264, - "lon": -0.4484025, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324289452, - "lat": 53.7558491, - "lon": -0.4410492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 324289453, - "lat": 53.7545817, - "lon": -0.4358149, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 324289455, - "lat": 53.7586824, - "lon": -0.4310447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 324289551, - "lat": 53.7449983, - "lon": -0.4475125, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324299289, - "lat": 55.8471079, - "lon": -4.1653246, - "tags": { - "amenity": "post_box", - "postal_code": "G32", - "ref": "G32 872" - } -}, -{ - "type": "node", - "id": 324305136, - "lat": 55.8503673, - "lon": -4.1739627, - "tags": { - "amenity": "post_box", - "postal_code": "G32", - "ref": "G32 998" - } -}, -{ - "type": "node", - "id": 324305140, - "lat": 55.8463494, - "lon": -4.1674696, - "tags": { - "amenity": "post_box", - "postal_code": "G32", - "ref": "G32 693" - } -}, -{ - "type": "node", - "id": 324331634, - "lat": 53.1919091, - "lon": -1.3587922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "note": "Franked Mail Only", - "post_box:type": "parcel", - "ref": "S42 200P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 324367999, - "lat": 55.9333887, - "lon": -3.1798510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1176211236271640", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 63", - "royal_cypher": "scottish_crown", - "survey:date": "2022-07-30" - } -}, -{ - "type": "node", - "id": 324387009, - "lat": 52.2602228, - "lon": -0.9530565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Moved from Quarry Rd, Port Rd March 2016", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 203" - } -}, -{ - "type": "node", - "id": 324408424, - "lat": 53.2281066, - "lon": -4.1278452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "155292213734083", - "note": "Reference Code is obscured.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "survey:date": "2022-06-15" - } -}, -{ - "type": "node", - "id": 324411644, - "lat": 53.2275680, - "lon": -4.1244835, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-19", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "LL57 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324425656, - "lat": 52.4460884, - "lon": -1.9170248, - "tags": { - "amenity": "post_box", - "ref": "B29 448" - } -}, -{ - "type": "node", - "id": 324613454, - "lat": 55.9460604, - "lon": -3.0888954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 507D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 324652787, - "lat": 53.2307652, - "lon": -0.5369863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LN2", - "ref": "LN2 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "memory" - } -}, -{ - "type": "node", - "id": 324661790, - "lat": 53.7460406, - "lon": -1.4726389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 1024", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324663901, - "lat": 53.7441540, - "lon": -0.4383374, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324663903, - "lat": 53.7394888, - "lon": -0.4345163, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324663905, - "lat": 53.7449423, - "lon": -0.4304623, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 324663906, - "lat": 53.7450313, - "lon": -0.4255258, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324663907, - "lat": 53.7446334, - "lon": -0.4151020, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 324663908, - "lat": 53.7391675, - "lon": -0.4105114, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324663909, - "lat": 53.7375535, - "lon": -0.4135518, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324663911, - "lat": 53.7443112, - "lon": -0.4093356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324663912, - "lat": 53.7443374, - "lon": -0.4003026, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 324663915, - "lat": 53.7450302, - "lon": -0.3932630, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324663917, - "lat": 53.7502042, - "lon": -0.3936014, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 324663918, - "lat": 53.7304121, - "lon": -0.3970069, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 324663919, - "lat": 53.7277511, - "lon": -0.4075478, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324663920, - "lat": 53.7307042, - "lon": -0.4135814, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HU4 208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324663921, - "lat": 53.7402076, - "lon": -0.4008149, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 324663929, - "lat": 53.7271285, - "lon": -0.3980833, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 324687197, - "lat": 53.4794930, - "lon": -2.2490474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "M3 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 324687800, - "lat": 51.4131447, - "lon": -2.7411754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 1098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 324687913, - "lat": 51.2825497, - "lon": 1.0837199, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "lastcheck": "2023-03-14", - "old_ref": "CT1 78", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324687915, - "lat": 51.2875776, - "lon": 1.0937082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CT1", - "ref": "CT1 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324687916, - "lat": 51.2902789, - "lon": 1.0964273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 13:15", - "indoor": "yes", - "note": "In foyer of ASDA", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324687918, - "lat": 51.2915132, - "lon": 1.1027758, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-16", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 56", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-07-10" - } -}, -{ - "type": "node", - "id": 324687919, - "lat": 51.2935201, - "lon": 1.1044223, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8ND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 380", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-07-10" - } -}, -{ - "type": "node", - "id": 324688180, - "lat": 51.4102003, - "lon": -2.7455183, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "BS48 319", - "source": "local knowledge / survey" - } -}, -{ - "type": "node", - "id": 324692419, - "lat": 51.2647022, - "lon": 1.1000845, - "tags": { - "amenity": "post_box", - "postal_code": "CT1", - "ref": "CT1 219", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324695331, - "lat": 53.4760619, - "lon": -2.2510425, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324698475, - "lat": 51.2731773, - "lon": 1.0677713, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324698476, - "lat": 51.2731890, - "lon": 1.0677600, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "CT1", - "ref": "CT1 376", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324698496, - "lat": 51.2712136, - "lon": 1.0633337, - "tags": { - "amenity": "post_box", - "note": "In foyer of Morrisons.", - "postal_code": "CT1", - "ref": "CT1 392", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324699078, - "lat": 53.2452462, - "lon": -0.4565801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324699561, - "lat": 51.2741363, - "lon": 1.0730101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324699824, - "lat": 53.5719004, - "lon": -1.7806039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324700540, - "lat": 51.5607673, - "lon": -1.7494964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 315" - } -}, -{ - "type": "node", - "id": 324700567, - "lat": 51.5566496, - "lon": -1.7538993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 324" - } -}, -{ - "type": "node", - "id": 324703045, - "lat": 53.2364069, - "lon": -0.4570292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 324703595, - "lat": 53.2370350, - "lon": -0.4622876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 324708854, - "lat": 53.5698751, - "lon": -1.7635843, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HD9 361D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324712353, - "lat": 53.5629113, - "lon": -1.7670538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HD9 82D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 324712425, - "lat": 53.2349852, - "lon": -0.4210048, - "tags": { - "amenity": "post_box", - "ref": "LN3 466" - } -}, -{ - "type": "node", - "id": 324725637, - "lat": 53.2305605, - "lon": -4.1120392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 324730328, - "lat": 53.2082395, - "lon": -4.1729876, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324744834, - "lat": 53.0586679, - "lon": -1.0620260, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 324755099, - "lat": 52.3774288, - "lon": -1.2514174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 324760077, - "lat": 52.3798613, - "lon": -1.2501024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3117813498539727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 299", - "survey:date": "2022-01-31" - } -}, -{ - "type": "node", - "id": 324763725, - "lat": 50.8185621, - "lon": -3.7111427, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324787682, - "lat": 52.3628175, - "lon": -1.2437452, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 324789944, - "lat": 52.3665332, - "lon": -1.2447401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV22 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 324813254, - "lat": 51.4903622, - "lon": -2.6357143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BS9 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 324815603, - "lat": 51.2408964, - "lon": -0.2030626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:30; Su off", - "drive_through": "no", - "note": "Separate boxes for 1st and 2nd Class", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "RH2 1", - "royal_cypher": "no", - "source": "Photo P142 0047;survey", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 324815630, - "lat": 51.2417497, - "lon": -0.1950798, - "tags": { - "amenity": "post_box", - "ref": "RH2 137" - } -}, -{ - "type": "node", - "id": 324815644, - "lat": 51.2423155, - "lon": -0.2046345, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 324815646, - "lat": 51.2410457, - "lon": -0.1881372, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=b63128d0-dcc0-4869-b10c-6e0d94105038&cp=51.241117~-0.188227&lvl=19&dir=176.43953&pi=-4.3233795&style=x&mo=z.1.92&v=2&sV=2&form=S00027", - "note": "mapping for mail box moved nearer to road juntion - Photo 140-0216", - "post_box:type": "wall", - "ref": "RH2 110" - } -}, -{ - "type": "node", - "id": 324815648, - "lat": 51.2378265, - "lon": -0.1836315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "RH1 1 ref needs checking", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "P174-0594", - "wheelchair": "yes", - "wheelchair:description": "asphalt extension to pavement" - } -}, -{ - "type": "node", - "id": 324815914, - "lat": 51.4879037, - "lon": -2.6301919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 433D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 325005762, - "lat": 51.4903570, - "lon": -0.1927403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "mapillary": "543402037390459", - "post_box:type": "pillar", - "ref": "SW5 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 325168820, - "lat": 52.5880963, - "lon": -1.7869342, - "tags": { - "amenity": "post_box", - "ref": "B75 1263" - } -}, -{ - "type": "node", - "id": 325183252, - "lat": 52.0309553, - "lon": -2.1141231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "GL20 7", - "ref": "GL20 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 325184350, - "lat": 51.1938134, - "lon": -0.6536258, - "tags": { - "amenity": "post_box", - "postal_code": "GU8", - "ref": "GU8 44" - } -}, -{ - "type": "node", - "id": 325184754, - "lat": 51.1996850, - "lon": -0.6630234, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "last_checked": "2021-05-29", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU8", - "ref": "GU8 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325193281, - "lat": 51.2763344, - "lon": 1.0759263, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 32", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT1", - "ref": "CT1 32D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325197896, - "lat": 50.4750034, - "lon": -3.7862624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ11 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 325199650, - "lat": 50.4777673, - "lon": -3.7827310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ11 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 325215329, - "lat": 53.3634256, - "lon": -1.5530048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S10", - "ref": "S10 780", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325224969, - "lat": 51.2761386, - "lon": -0.0781456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 114D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325227273, - "lat": 53.8265040, - "lon": -1.5352439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 28" - } -}, -{ - "type": "node", - "id": 325238444, - "lat": 53.3728197, - "lon": -1.5690869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 282", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 325249936, - "lat": 53.3728524, - "lon": -1.5533363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 1033", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325249940, - "lat": 53.3700163, - "lon": -1.5512713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325249958, - "lat": 53.3704582, - "lon": -1.5461225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 616", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 325253240, - "lat": 53.2528089, - "lon": -2.1441596, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 103" - } -}, -{ - "type": "node", - "id": 325255551, - "lat": 53.2456375, - "lon": -2.1465209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325256399, - "lat": 53.2541198, - "lon": -2.1510839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "postal_code": "SK11", - "ref": "SK11 157", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 325614063, - "lat": 51.3796595, - "lon": -1.0629433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG7 400D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325621152, - "lat": 54.1063639, - "lon": -0.8482137, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 325636239, - "lat": 53.0407400, - "lon": -2.3731195, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 325674986, - "lat": 52.0283534, - "lon": -2.1022065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325677460, - "lat": 52.0304016, - "lon": -2.1045917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL20 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325693454, - "lat": 51.4430743, - "lon": 0.3543600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 325771254, - "lat": 51.9467607, - "lon": 0.7131970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 325783757, - "lat": 53.7486970, - "lon": -0.3592278, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 325841800, - "lat": 52.4528239, - "lon": -1.9887269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "ref": "B32 869", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 325842203, - "lat": 52.4542297, - "lon": -1.9968675, - "tags": { - "amenity": "post_box", - "ref": "B32 898" - } -}, -{ - "type": "node", - "id": 325843312, - "lat": 53.7437718, - "lon": -0.3821848, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 325843327, - "lat": 53.7536076, - "lon": -0.3547649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "HU3 38", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 325843334, - "lat": 53.7498558, - "lon": -0.3472519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 325843342, - "lat": 53.7529843, - "lon": -0.3482289, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 325843399, - "lat": 53.7513946, - "lon": -0.3626233, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU3 174", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325843406, - "lat": 53.7505196, - "lon": -0.3776907, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 325843413, - "lat": 53.7478892, - "lon": -0.3806781, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 325843434, - "lat": 53.7437387, - "lon": -0.3882248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 325843438, - "lat": 53.7431231, - "lon": -0.3620751, - "tags": { - "amenity": "post_box", - "postal_code": "HU3", - "ref": "HU3 7" - } -}, -{ - "type": "node", - "id": 325843445, - "lat": 53.7503344, - "lon": -0.3553900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "HU3", - "ref": "HU3 59" - } -}, -{ - "type": "node", - "id": 325843451, - "lat": 53.7430514, - "lon": -0.3523863, - "tags": { - "amenity": "post_box", - "postal_code": "HU3", - "ref": "HU3 56" - } -}, -{ - "type": "node", - "id": 325843461, - "lat": 53.7433504, - "lon": -0.3440514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HU1", - "ref": "HU1 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325843749, - "lat": 53.7358725, - "lon": -0.3616467, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 325843769, - "lat": 53.7365518, - "lon": -0.3500674, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 325843781, - "lat": 53.7384133, - "lon": -0.3430957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HU1 61", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325843794, - "lat": 53.7313815, - "lon": -0.3660390, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 325843808, - "lat": 53.7350766, - "lon": -0.3650420, - "tags": { - "amenity": "post_box", - "colour": "gold", - "note": "painted gold in honour of Luke Campbell", - "post_box:type": "pillar", - "ref": "HU3 133", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 325843820, - "lat": 53.7339847, - "lon": -0.3747527, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 325846842, - "lat": 55.8325482, - "lon": -4.2772190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G41 476", - "source": "survey" - } -}, -{ - "type": "node", - "id": 325847173, - "lat": 52.4493830, - "lon": -1.9196863, - "tags": { - "amenity": "post_box", - "ref": "B5 762" - } -}, -{ - "type": "node", - "id": 325873026, - "lat": 52.5608566, - "lon": -1.7851508, - "tags": { - "amenity": "post_box", - "ref": "B75 1170D" - } -}, -{ - "type": "node", - "id": 325874097, - "lat": 52.5427491, - "lon": -1.8026778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B76", - "ref": "B76 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "BING & Ground Survey" - } -}, -{ - "type": "node", - "id": 325882669, - "lat": 52.3136586, - "lon": 1.6567796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP18 5556", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 325893601, - "lat": 50.4798444, - "lon": -3.7838871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ11 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 325894282, - "lat": 50.4842616, - "lon": -3.7875503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ11 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 325953106, - "lat": 51.0901168, - "lon": 1.0657588, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 117", - "source": "survey" - } -}, -{ - "type": "node", - "id": 326095459, - "lat": 53.2480256, - "lon": -2.1485811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 168", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 326122760, - "lat": 51.6559846, - "lon": -0.0766841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN1 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 326122775, - "lat": 51.6504940, - "lon": -0.0750507, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 35" - } -}, -{ - "type": "node", - "id": 326122778, - "lat": 51.6521244, - "lon": -0.0724034, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 31" - } -}, -{ - "type": "node", - "id": 326122789, - "lat": 51.6469507, - "lon": -0.0650781, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 26" - } -}, -{ - "type": "node", - "id": 326122797, - "lat": 51.6450985, - "lon": -0.0691738, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 25" - } -}, -{ - "type": "node", - "id": 326122821, - "lat": 51.6456876, - "lon": -0.0748941, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 34" - } -}, -{ - "type": "node", - "id": 326122826, - "lat": 51.6433677, - "lon": -0.0759755, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 9" - } -}, -{ - "type": "node", - "id": 326122882, - "lat": 51.6412370, - "lon": -0.0784951, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "EN1", - "ref": "EN1 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 326122945, - "lat": 51.6429517, - "lon": -0.0801887, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-23", - "postal_code": "EN1", - "ref": "EN1 87" - } -}, -{ - "type": "node", - "id": 326122998, - "lat": 51.6498352, - "lon": -0.0818524, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "EN2", - "ref": "EN2 33" - } -}, -{ - "type": "node", - "id": 326123014, - "lat": 51.6532902, - "lon": -0.0884633, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "EN2", - "ref": "EN2 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 326166161, - "lat": 52.0905445, - "lon": 1.3119213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP12 6204D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 326206491, - "lat": 53.0928503, - "lon": -1.3930210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE55 360", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 326238807, - "lat": 51.5467548, - "lon": -0.0532036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 326239085, - "lat": 51.5501374, - "lon": -0.0457902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E9 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 326247930, - "lat": 53.2536814, - "lon": -2.1409893, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 26" - } -}, -{ - "type": "node", - "id": 326258681, - "lat": 53.2315411, - "lon": -2.1697836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "SK11", - "ref": "SK11 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 326258685, - "lat": 53.2310009, - "lon": -2.1663205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "postal_code": "SK11", - "ref": "SK11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 326319029, - "lat": 52.4617757, - "lon": -2.0275997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B62 298", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 326324053, - "lat": 53.2568362, - "lon": -2.1322501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "postal_code": "SK11", - "ref": "SK11 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 326348769, - "lat": 53.2524847, - "lon": -2.1618554, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 115" - } -}, -{ - "type": "node", - "id": 326349308, - "lat": 53.2527382, - "lon": -2.1362630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 19", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 326354745, - "lat": 51.2829030, - "lon": -1.0526184, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "RG24", - "ref": "RG24 347" - } -}, -{ - "type": "node", - "id": 326365213, - "lat": 53.2603790, - "lon": -2.1329955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 327183391, - "lat": 54.9762636, - "lon": -1.8228702, - "tags": { - "amenity": "post_box", - "fixme": "has this been moved now the post office has gone?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE41 536", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 327306650, - "lat": 51.2939237, - "lon": 1.0756208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT2", - "ref": "CT2 252", - "source": "survey" - } -}, -{ - "type": "node", - "id": 327306756, - "lat": 51.2961970, - "lon": 1.0870969, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 370", - "source": "survey" - } -}, -{ - "type": "node", - "id": 327317229, - "lat": 51.2853058, - "lon": 1.0689384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-16", - "mapillary": "796885281027743", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 327321381, - "lat": 53.2416040, - "lon": -2.6367610, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA6 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 327367116, - "lat": 51.3584727, - "lon": 1.1557125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 327404117, - "lat": 51.6471570, - "lon": -0.1324831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "postal_code": "N14 4", - "ref": "N14 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 327404122, - "lat": 51.6470743, - "lon": -0.1255071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N14 4", - "ref": "N14 27", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 327404136, - "lat": 51.6435710, - "lon": -0.1265245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N14 4", - "ref": "N14 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 327404145, - "lat": 51.6385672, - "lon": -0.1310328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14 4N", - "ref": "N14 33D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 327404149, - "lat": 51.6357669, - "lon": -0.1322590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14 5", - "ref": "N14 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 327404153, - "lat": 51.6344109, - "lon": -0.1341813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14", - "ref": "N14 41D" - } -}, -{ - "type": "node", - "id": 327424205, - "lat": 51.4100072, - "lon": -0.3068452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 327513398, - "lat": 53.6635827, - "lon": -1.8812466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 46" - } -}, -{ - "type": "node", - "id": 327776575, - "lat": 51.2419989, - "lon": -0.1856179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "postal_code": "RH2", - "ref": "RH2 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 327776600, - "lat": 51.2843616, - "lon": -0.0867458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CR3", - "ref": "CR3 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 327776648, - "lat": 51.2391973, - "lon": -0.1921392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RH2", - "ref": "RH2 144" - } -}, -{ - "type": "node", - "id": 327776649, - "lat": 51.2370314, - "lon": -0.1898715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "postal_code": "RH2", - "ref": "RH2 115" - } -}, -{ - "type": "node", - "id": 327776650, - "lat": 51.2361752, - "lon": -0.1848687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RH2", - "ref": "RH2 163" - } -}, -{ - "type": "node", - "id": 328861162, - "lat": 51.4785410, - "lon": -0.1888347, - "tags": { - "amenity": "post_box", - "ref": "SW6 10" - } -}, -{ - "type": "node", - "id": 328864844, - "lat": 51.4925420, - "lon": -0.1253779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1P 40;SW1P 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 329031018, - "lat": 55.8547348, - "lon": -4.1589152, - "tags": { - "amenity": "post_box", - "postal_code": "G32", - "ref": "G32 392" - } -}, -{ - "type": "node", - "id": 329036704, - "lat": 55.8516549, - "lon": -4.1660267, - "tags": { - "amenity": "post_box", - "postal_code": "G32", - "ref": "G32 481" - } -}, -{ - "type": "node", - "id": 329290181, - "lat": 51.6439201, - "lon": -0.1339391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N14 4BG", - "ref": "N14 15", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 329290187, - "lat": 51.6393573, - "lon": -0.1335524, - "tags": { - "amenity": "post_box", - "postal_code": "N14 4", - "ref": "N14 45" - } -}, -{ - "type": "node", - "id": 329290205, - "lat": 51.6330066, - "lon": -0.1344412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "N14 5", - "ref": "N14 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 329290218, - "lat": 51.6300402, - "lon": -0.1376627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14 5", - "ref": "N14 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 329290223, - "lat": 51.6269464, - "lon": -0.1402971, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "N14 7", - "ref": "N14 25" - } -}, -{ - "type": "node", - "id": 329290233, - "lat": 51.6321572, - "lon": -0.1435006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14 5JR", - "ref": "N14 29" - } -}, -{ - "type": "node", - "id": 329290271, - "lat": 51.6335561, - "lon": -0.1376085, - "tags": { - "amenity": "post_box", - "postal_code": "N14 5", - "ref": "N14 31" - } -}, -{ - "type": "node", - "id": 329352339, - "lat": 51.9172990, - "lon": -2.0967212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 329367753, - "lat": 51.9087261, - "lon": -2.0861226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL51", - "ref": "GL51 127" - } -}, -{ - "type": "node", - "id": 329373414, - "lat": 52.9470868, - "lon": -1.1842946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Hillside", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "NG7 2DZ", - "ref": "NG7 213D", - "ref:GB:uprn": "10015461712", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329383966, - "lat": 50.8449290, - "lon": -1.0997075, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 329389623, - "lat": 51.3096396, - "lon": 1.1162531, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329390467, - "lat": 51.3065287, - "lon": 1.1356588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT2", - "ref": "CT2 102", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329398648, - "lat": 51.3109411, - "lon": 1.1491993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT2", - "ref": "CT2 236", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329398969, - "lat": 51.3060692, - "lon": 1.1456357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "CT2", - "ref": "CT2 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329402860, - "lat": 51.3088799, - "lon": 1.1424099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT2", - "ref": "CT2 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329406048, - "lat": 51.3001411, - "lon": 1.1214975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT2", - "ref": "CT2 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329503481, - "lat": 51.5119960, - "lon": -0.0953813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "mail:franked": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "EC4 411P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 329612327, - "lat": 51.2746130, - "lon": -1.0990272, - "tags": { - "amenity": "post_box", - "note": "This post box has no ref" - } -}, -{ - "type": "node", - "id": 329650739, - "lat": 53.7591283, - "lon": -2.5124573, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.12" - } -}, -{ - "type": "node", - "id": 329701006, - "lat": 51.4263618, - "lon": -0.9467994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "ref": "RG2 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 329723808, - "lat": 51.9464549, - "lon": -0.8774952, - "tags": { - "amenity": "post_box", - "ref": "MK18 317" - } -}, -{ - "type": "node", - "id": 329723912, - "lat": 51.9469504, - "lon": -0.8826938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "MK18 51" - } -}, -{ - "type": "node", - "id": 329770567, - "lat": 53.3291216, - "lon": -2.2269651, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 37" - } -}, -{ - "type": "node", - "id": 329770992, - "lat": 51.9429065, - "lon": -0.8755473, - "tags": { - "amenity": "post_box", - "ref": "MK18 170" - } -}, -{ - "type": "node", - "id": 329771138, - "lat": 51.9498486, - "lon": -0.8740168, - "tags": { - "amenity": "post_box", - "ref": "MK18 413" - } -}, -{ - "type": "node", - "id": 329771270, - "lat": 51.9472435, - "lon": -0.8717660, - "tags": { - "amenity": "post_box", - "ref": "MK18 370" - } -}, -{ - "type": "node", - "id": 329978954, - "lat": 51.5107286, - "lon": -0.0858891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3R 318;EC3R 3181", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330007759, - "lat": 53.2223381, - "lon": -4.1651390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL59 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330007762, - "lat": 53.2228158, - "lon": -4.1622105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330007852, - "lat": 53.2286812, - "lon": -4.1722306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL59 250D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 330007905, - "lat": 53.2310394, - "lon": -4.1708424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330007906, - "lat": 53.2273743, - "lon": -4.1665131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL59 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330010945, - "lat": 51.2854255, - "lon": 1.0309804, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The previous edit says that this postbox is a pillar but as at Monday 10.07.2023 this postbox is a lamp.", - "old_ref": "CT2 38", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT2", - "ref": "CT2 38D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-10" - } -}, -{ - "type": "node", - "id": 330013623, - "lat": 51.9990031, - "lon": 0.6653398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO9 71", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 330024554, - "lat": 53.7531101, - "lon": -0.4165413, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 330024555, - "lat": 53.7527992, - "lon": -0.4092253, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 330024556, - "lat": 53.7523325, - "lon": -0.4007042, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 330024569, - "lat": 53.7569284, - "lon": -0.4092022, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 330024581, - "lat": 53.7615839, - "lon": -0.4005136, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330024582, - "lat": 53.7649273, - "lon": -0.4024479, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330027275, - "lat": 53.7550113, - "lon": -0.3918557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 330035081, - "lat": 51.6393918, - "lon": -0.1386314, - "tags": { - "amenity": "post_box", - "postal_code": "N14 4QB", - "ref": "N14 19" - } -}, -{ - "type": "node", - "id": 330035107, - "lat": 51.6330801, - "lon": -0.1298108, - "tags": { - "amenity": "post_box", - "postal_code": "N14 5PA", - "ref": "N14 7" - } -}, -{ - "type": "node", - "id": 330035111, - "lat": 51.6317160, - "lon": -0.1232095, - "tags": { - "amenity": "post_box", - "postal_code": "N14 6R", - "ref": "N14 12" - } -}, -{ - "type": "node", - "id": 330035112, - "lat": 51.6329362, - "lon": -0.1229772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "N14 6R", - "ref": "N14 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330035113, - "lat": 51.6353189, - "lon": -0.1179733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "N14 6R", - "ref": "N14 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330035115, - "lat": 51.6374765, - "lon": -0.1188675, - "tags": { - "amenity": "post_box", - "postal_code": "N14 6AS", - "ref": "N14 24" - } -}, -{ - "type": "node", - "id": 330035136, - "lat": 51.6345418, - "lon": -0.1274744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N14 6", - "ref": "N14 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330036955, - "lat": 51.6343954, - "lon": -0.1317911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "postal_code": "N14 5PW", - "ref": "N14 37", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 330047766, - "lat": 53.2740190, - "lon": -4.6188025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL65 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330047804, - "lat": 53.2850555, - "lon": -4.6194520, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330049442, - "lat": 53.2502041, - "lon": -4.5952170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL65 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330056239, - "lat": 53.7967119, - "lon": -1.5905879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330071214, - "lat": 52.9514541, - "lon": -1.1769728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330071345, - "lat": 52.9535407, - "lon": -1.1819649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG7 238", - "ref:GB:uprn": "10015841887", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330117642, - "lat": 51.4249515, - "lon": -0.9132168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG6 532" - } -}, -{ - "type": "node", - "id": 330128341, - "lat": 51.6378512, - "lon": -0.1105214, - "tags": { - "amenity": "post_box", - "postal_code": "N21 1", - "ref": "N21 2" - } -}, -{ - "type": "node", - "id": 330128362, - "lat": 51.6369514, - "lon": -0.1037466, - "tags": { - "amenity": "post_box", - "postal_code": "N21 1", - "ref": "N21 31" - } -}, -{ - "type": "node", - "id": 330128365, - "lat": 51.6388095, - "lon": -0.1028194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Double-checked as bearing ref N21 18; it seems to have a duplicate reference to the one up the hill.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "N21 1", - "ref": "N21 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330128366, - "lat": 51.6418692, - "lon": -0.1044658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "This is what my notes say; it seems to have a duplicate reference to the one down the hill.", - "operator": "Royal York", - "postal_code": "N21", - "ref": "N21 18" - } -}, -{ - "type": "node", - "id": 330128367, - "lat": 51.6380269, - "lon": -0.0934021, - "tags": { - "amenity": "post_box", - "postal_code": "N21 2LB", - "ref": "N21 11" - } -}, -{ - "type": "node", - "id": 330128369, - "lat": 51.6361608, - "lon": -0.0890950, - "tags": { - "amenity": "post_box", - "postal_code": "N21", - "ref": "N21 19" - } -}, -{ - "type": "node", - "id": 330128371, - "lat": 51.6359627, - "lon": -0.0844188, - "tags": { - "amenity": "post_box", - "postal_code": "N21 2AU", - "ref": "N21 16" - } -}, -{ - "type": "node", - "id": 330128373, - "lat": 51.6370581, - "lon": -0.0808767, - "tags": { - "amenity": "post_box", - "postal_code": "EN1", - "ref": "EN1 73" - } -}, -{ - "type": "node", - "id": 330128374, - "lat": 51.6580267, - "lon": -0.0833504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "EN2", - "ref": "EN2 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330128377, - "lat": 51.6498819, - "lon": -0.0914332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "EN2", - "ref": "EN2 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330128378, - "lat": 51.6462981, - "lon": -0.0936046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N21 2EG", - "ref": "N21 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330128380, - "lat": 51.6420762, - "lon": -0.0965053, - "tags": { - "amenity": "post_box", - "operator": "Royal York", - "postal_code": "N21 2HD", - "ref": "N21 14" - } -}, -{ - "type": "node", - "id": 330128387, - "lat": 51.6449904, - "lon": -0.0987057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N21 1DE", - "ref": "N21 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330128389, - "lat": 51.6446251, - "lon": -0.1018732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "N21 1DX", - "ref": "N21 33" - } -}, -{ - "type": "node", - "id": 330128391, - "lat": 51.6439925, - "lon": -0.1054504, - "tags": { - "amenity": "post_box", - "postal_code": "N21 1R", - "ref": "N21 32" - } -}, -{ - "type": "node", - "id": 330128393, - "lat": 51.6454684, - "lon": -0.1094708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N21 1", - "ref": "N21 6" - } -}, -{ - "type": "node", - "id": 330128399, - "lat": 51.6437656, - "lon": -0.1133735, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "N21 1PG", - "ref": "N21 34" - } -}, -{ - "type": "node", - "id": 330128412, - "lat": 51.6414112, - "lon": -0.1116541, - "tags": { - "amenity": "post_box", - "postal_code": "N21 1N", - "ref": "N21 28" - } -}, -{ - "type": "node", - "id": 330131095, - "lat": 51.2714393, - "lon": -1.1140578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "postal_code": "RG23", - "ref": "RG23 288" - } -}, -{ - "type": "node", - "id": 330196077, - "lat": 51.0820344, - "lon": 1.0827468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT21", - "ref": "CT21 165" - } -}, -{ - "type": "node", - "id": 330247274, - "lat": 53.7593125, - "lon": -0.4161007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "HU5 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330256377, - "lat": 52.4846143, - "lon": -1.9083229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B1 717D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330269111, - "lat": 54.0766293, - "lon": -0.6900760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 64" - } -}, -{ - "type": "node", - "id": 330269114, - "lat": 54.0818466, - "lon": -0.6794890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330270844, - "lat": 51.6370044, - "lon": -0.1436789, - "tags": { - "amenity": "post_box", - "postal_code": "N14 5", - "ref": "N14 43" - } -}, -{ - "type": "node", - "id": 330270845, - "lat": 51.6309912, - "lon": -0.1481723, - "tags": { - "amenity": "post_box", - "postal_code": "N14 5", - "ref": "N14 36" - } -}, -{ - "type": "node", - "id": 330270866, - "lat": 51.6329993, - "lon": -0.1264717, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "N14 6AA", - "ref": "N14 39", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 330270869, - "lat": 51.6304786, - "lon": -0.1279386, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-12", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "N14 6BW", - "ref": "N14 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330301800, - "lat": 51.2737254, - "lon": -1.1217078, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 284" - } -}, -{ - "type": "node", - "id": 330318096, - "lat": 53.7968819, - "lon": -1.5972994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 291" - } -}, -{ - "type": "node", - "id": 330361746, - "lat": 53.1548697, - "lon": -1.3665867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330445381, - "lat": 52.5955850, - "lon": -1.7755003, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 14" - } -}, -{ - "type": "node", - "id": 330521201, - "lat": 53.7533423, - "lon": -0.3680711, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 330521203, - "lat": 53.7532165, - "lon": -0.3736010, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521205, - "lat": 53.7551095, - "lon": -0.3654797, - "tags": { - "amenity": "post_box", - "ref": "HU5 107" - } -}, -{ - "type": "node", - "id": 330521206, - "lat": 53.7562585, - "lon": -0.3701413, - "tags": { - "amenity": "post_box", - "ref": "HU5 108" - } -}, -{ - "type": "node", - "id": 330521208, - "lat": 53.7571841, - "lon": -0.3743179, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521209, - "lat": 53.7621945, - "lon": -0.3728661, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521210, - "lat": 53.7626252, - "lon": -0.3589716, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330521211, - "lat": 53.7669630, - "lon": -0.3583997, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521212, - "lat": 53.7679579, - "lon": -0.3712369, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 330521213, - "lat": 53.7698538, - "lon": -0.3783489, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330521215, - "lat": 53.7696763, - "lon": -0.3838027, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 330521218, - "lat": 53.7643825, - "lon": -0.3833770, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521219, - "lat": 53.7621014, - "lon": -0.3819852, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521222, - "lat": 53.7578473, - "lon": -0.3655867, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "HU5", - "ref": "HU5 18" - } -}, -{ - "type": "node", - "id": 330521223, - "lat": 53.7582914, - "lon": -0.3579772, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 330521225, - "lat": 53.7500875, - "lon": -0.4000325, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "HU5", - "ref": "HU5 77" - } -}, -{ - "type": "node", - "id": 330557120, - "lat": 55.8617800, - "lon": -4.2552220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G1", - "ref": "G1 868" - } -}, -{ - "type": "node", - "id": 330559451, - "lat": 55.8631178, - "lon": -4.2562206, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G2", - "ref": "G2 320", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 330563766, - "lat": 51.6494669, - "lon": -0.1283511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14 4XA", - "ref": "N14 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330563771, - "lat": 51.6249836, - "lon": -0.1050895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 4" - } -}, -{ - "type": "node", - "id": 330563774, - "lat": 51.6279438, - "lon": -0.1154974, - "tags": { - "amenity": "post_box", - "postal_code": "N13", - "ref": "N13 27" - } -}, -{ - "type": "node", - "id": 330563777, - "lat": 51.6290252, - "lon": -0.1036206, - "tags": { - "amenity": "post_box", - "postal_code": "N21 3LA", - "ref": "N21 10" - } -}, -{ - "type": "node", - "id": 330563778, - "lat": 51.6310733, - "lon": -0.1000332, - "tags": { - "amenity": "post_box", - "postal_code": "N21 3", - "ref": "N21 12" - } -}, -{ - "type": "node", - "id": 330563790, - "lat": 51.6296621, - "lon": -0.1059753, - "tags": { - "amenity": "post_box", - "postal_code": "N21", - "ref": "N21 17" - } -}, -{ - "type": "node", - "id": 330563797, - "lat": 51.6290388, - "lon": -0.1111528, - "tags": { - "amenity": "post_box", - "postal_code": "N21 3DD", - "ref": "N21 24" - } -}, -{ - "type": "node", - "id": 330563800, - "lat": 51.6368642, - "lon": -0.1378606, - "tags": { - "amenity": "post_box", - "postal_code": "N14 4", - "ref": "N14 5" - } -}, -{ - "type": "node", - "id": 330582549, - "lat": 52.5834158, - "lon": -1.1628000, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 637" - } -}, -{ - "type": "node", - "id": 330582668, - "lat": 52.5832882, - "lon": -1.1534735, - "tags": { - "amenity": "post_box", - "postal_code": "LE2 9RJ", - "ref": "LE2 443" - } -}, -{ - "type": "node", - "id": 330592049, - "lat": 52.5823188, - "lon": -1.1519943, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 826" - } -}, -{ - "type": "node", - "id": 330605860, - "lat": 53.3647936, - "lon": -1.5174342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 508", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330605947, - "lat": 53.3752880, - "lon": -1.5015699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 330656595, - "lat": 53.8474540, - "lon": -1.5349236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 401", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 330696132, - "lat": 51.6329520, - "lon": -0.1066803, - "tags": { - "amenity": "post_box", - "postal_code": "N21 3B", - "ref": "N21 20" - } -}, -{ - "type": "node", - "id": 330696135, - "lat": 51.6338061, - "lon": -0.1010108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "N21 3NG", - "ref": "N21 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330696136, - "lat": 51.6342790, - "lon": -0.0940064, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "N21 2RT", - "ref": "N21 5", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 330696140, - "lat": 51.6391292, - "lon": -0.0910763, - "tags": { - "amenity": "post_box", - "postal_code": "N21 2LR", - "ref": "N21 27" - } -}, -{ - "type": "node", - "id": 330696142, - "lat": 51.6400778, - "lon": -0.0945519, - "tags": { - "amenity": "post_box", - "postal_code": "N21 2E", - "ref": "N21 13" - } -}, -{ - "type": "node", - "id": 330696143, - "lat": 51.6366226, - "lon": -0.0969987, - "tags": { - "amenity": "post_box", - "postal_code": "N21 2N", - "ref": "N21 21" - } -}, -{ - "type": "node", - "id": 330721949, - "lat": 50.7644579, - "lon": -3.5665688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 330869136, - "lat": 51.7063171, - "lon": -2.1964766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL6", - "ref": "GL6 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330869140, - "lat": 51.7039038, - "lon": -2.1963580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330870654, - "lat": 51.7307421, - "lon": -2.1633626, - "tags": { - "amenity": "post_box", - "postal_code": "GL6", - "ref": "GL6 254" - } -}, -{ - "type": "node", - "id": 330871550, - "lat": 51.2489333, - "lon": -0.5015919, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 330880914, - "lat": 51.7132401, - "lon": -2.1948775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330882970, - "lat": 51.2650454, - "lon": -0.5049246, - "tags": { - "amenity": "post_box", - "postal_code": "GU4", - "ref": "GU4 185", - "source": "photo" - } -}, -{ - "type": "node", - "id": 330883754, - "lat": 51.2693087, - "lon": -0.4974699, - "tags": { - "amenity": "post_box", - "postal_code": "GU4", - "ref": "GU4 138", - "source": "photo" - } -}, -{ - "type": "node", - "id": 330886488, - "lat": 51.2607013, - "lon": -0.5030791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU4 122", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU4", - "ref": "GU4 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330889239, - "lat": 52.3722239, - "lon": -1.2585086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330889240, - "lat": 52.3705701, - "lon": -1.2625825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV22 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330889242, - "lat": 52.3715616, - "lon": -1.2628950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 125" - } -}, -{ - "type": "node", - "id": 330889243, - "lat": 52.3715625, - "lon": -1.2629211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "360659975529961", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 124", - "survey:date": "2022-01-31" - } -}, -{ - "type": "node", - "id": 330889296, - "lat": 52.3722694, - "lon": -1.2722775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CV21", - "ref": "CV21 50D" - } -}, -{ - "type": "node", - "id": 330889335, - "lat": 52.3697407, - "lon": -1.2696283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV22", - "ref": "CV22 189", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 330889338, - "lat": 52.3663030, - "lon": -1.2780683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV22", - "ref": "CV22 225" - } -}, -{ - "type": "node", - "id": 330889426, - "lat": 52.3667573, - "lon": -1.2738622, - "tags": { - "amenity": "post_box", - "postal_code": "CV22", - "ref": "CV22 244" - } -}, -{ - "type": "node", - "id": 330889453, - "lat": 52.3690708, - "lon": -1.2648587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1474458549589411", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CV22", - "ref": "CV22 40", - "survey:date": "2020-10-17" - } -}, -{ - "type": "node", - "id": 330890286, - "lat": 52.3619596, - "lon": -1.2808992, - "tags": { - "amenity": "post_box", - "postal_code": "CV22", - "ref": "CV22 261" - } -}, -{ - "type": "node", - "id": 330894717, - "lat": 52.3592885, - "lon": -1.2777267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330894719, - "lat": 52.3561668, - "lon": -1.2752295, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CV22", - "ref": "CV22 250" - } -}, -{ - "type": "node", - "id": 330895164, - "lat": 52.3601022, - "lon": -1.2693825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV22 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 330896352, - "lat": 51.2535331, - "lon": -0.5041011, - "tags": { - "amenity": "post_box", - "postal_code": "GU4", - "ref": "GU4 20" - } -}, -{ - "type": "node", - "id": 330919240, - "lat": 53.2308142, - "lon": -4.1763937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330973369, - "lat": 51.6277380, - "lon": -0.1264206, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N14 4D", - "ref": "N14 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330973371, - "lat": 51.6279034, - "lon": -0.1219982, - "tags": { - "amenity": "post_box", - "postal_code": "N14 6N", - "ref": "N14 10" - } -}, -{ - "type": "node", - "id": 330973375, - "lat": 51.6257763, - "lon": -0.1206682, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "N14 6LX", - "ref": "N14 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 330973378, - "lat": 51.6241295, - "lon": -0.1230839, - "tags": { - "amenity": "post_box", - "postal_code": "N14 6LH", - "ref": "N14 6" - } -}, -{ - "type": "node", - "id": 330973380, - "lat": 51.6243454, - "lon": -0.1254153, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-12", - "post_box:type": "pillar", - "postal_code": "N14 7", - "ref": "N14 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 330973382, - "lat": 51.6230368, - "lon": -0.1318966, - "tags": { - "amenity": "post_box", - "postal_code": "N14 7E", - "ref": "N14 20" - } -}, -{ - "type": "node", - "id": 330973384, - "lat": 51.6219300, - "lon": -0.1346882, - "tags": { - "amenity": "post_box", - "postal_code": "N14 7", - "ref": "N14 40" - } -}, -{ - "type": "node", - "id": 330973386, - "lat": 51.6243872, - "lon": -0.1373280, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "N14 7", - "ref": "N14 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 330973387, - "lat": 51.6201199, - "lon": -0.1293244, - "tags": { - "amenity": "post_box", - "postal_code": "N14 7A", - "ref": "N14 28" - } -}, -{ - "type": "node", - "id": 330973389, - "lat": 51.6208413, - "lon": -0.1247424, - "tags": { - "amenity": "post_box", - "postal_code": "N14 7D", - "ref": "N14 16" - } -}, -{ - "type": "node", - "id": 330973392, - "lat": 51.6188396, - "lon": -0.1228829, - "tags": { - "amenity": "post_box", - "postal_code": "N14 7JG", - "ref": "N14 17" - } -}, -{ - "type": "node", - "id": 330973395, - "lat": 51.6236067, - "lon": -0.1165130, - "tags": { - "amenity": "post_box", - "postal_code": "N14 7B", - "ref": "N14 13" - } -}, -{ - "type": "node", - "id": 330978090, - "lat": 51.6434635, - "lon": -0.1197251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "check location, was mapped in middle of road", - "postal_code": "N14 4TD", - "ref": "N14 44", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 330978096, - "lat": 51.6408589, - "lon": -0.1295547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N14 4RU", - "ref": "N14 3D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 330978099, - "lat": 51.6410733, - "lon": -0.1433672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "N14 4", - "ref": "N14 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 330997167, - "lat": 53.2665762, - "lon": -2.1771803, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 54" - } -}, -{ - "type": "node", - "id": 331010807, - "lat": 53.2810195, - "lon": -2.1888892, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 36" - } -}, -{ - "type": "node", - "id": 331029278, - "lat": 53.2434436, - "lon": -2.1317672, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 104" - } -}, -{ - "type": "node", - "id": 331029541, - "lat": 51.2554768, - "lon": 1.1356070, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331032410, - "lat": 51.2554469, - "lon": 1.1524424, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 194", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331037789, - "lat": 51.2414108, - "lon": 1.1893183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331043184, - "lat": 51.2661907, - "lon": 1.1922328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:ref": "http://www.dracos.co.uk/play/locating-postboxes/?pc1=CT3" - } -}, -{ - "type": "node", - "id": 331046907, - "lat": 51.7105568, - "lon": 0.5055885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "note": "Priority postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM2 391", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 331058805, - "lat": 53.2480549, - "lon": -2.1419014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 203", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 331091857, - "lat": 51.2065870, - "lon": 1.1977730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 249", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331098991, - "lat": 51.2362493, - "lon": 1.2086050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331100504, - "lat": 52.6061318, - "lon": -1.1231084, - "tags": { - "amenity": "post_box", - "postal_code": "LE2 6GY", - "ref": "LE2 824" - } -}, -{ - "type": "node", - "id": 331103241, - "lat": 52.6149263, - "lon": -1.1422978, - "tags": { - "amenity": "post_box", - "postal_code": "LE2 7QJ", - "ref": "LE2 99" - } -}, -{ - "type": "node", - "id": 331104914, - "lat": 52.6116444, - "lon": -1.1341671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "LE2", - "ref": "LE2 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331182429, - "lat": 52.3798455, - "lon": -1.2500998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1014985095755864", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 298", - "survey:date": "2022-01-31" - } -}, -{ - "type": "node", - "id": 331189334, - "lat": 52.0340853, - "lon": -0.7730679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-19", - "old_ref": "MK9 380", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK9 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331227821, - "lat": 52.5494115, - "lon": -2.1106734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 331249499, - "lat": 52.6039286, - "lon": -1.1139122, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 650" - } -}, -{ - "type": "node", - "id": 331282084, - "lat": 53.0955954, - "lon": -1.3784729, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331283638, - "lat": 53.0929136, - "lon": -1.3798922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 713", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331293640, - "lat": 53.0985743, - "lon": -1.3768048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 362" - } -}, -{ - "type": "node", - "id": 331295203, - "lat": 53.0967679, - "lon": -1.3816530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE55 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331298026, - "lat": 51.5392278, - "lon": -0.1082223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "ref": "N1 106", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 331299457, - "lat": 53.3404120, - "lon": -2.4233296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA16 46" - } -}, -{ - "type": "node", - "id": 331299877, - "lat": 53.1016795, - "lon": -1.3754659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 1339" - } -}, -{ - "type": "node", - "id": 331323633, - "lat": 53.3536884, - "lon": -2.4687050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 30", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 331328972, - "lat": 53.3269539, - "lon": -2.4387633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331352887, - "lat": 51.5438207, - "lon": 0.0593190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331362138, - "lat": 51.5884530, - "lon": -0.1011410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 21", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 331362450, - "lat": 52.3684357, - "lon": -1.2312051, - "tags": { - "amenity": "post_box", - "postal_code": "CV21", - "ref": "CV21 186" - } -}, -{ - "type": "node", - "id": 331377778, - "lat": 55.0028218, - "lon": -1.5942554, - "tags": { - "amenity": "post_box", - "ref": "NE7 22" - } -}, -{ - "type": "node", - "id": 331413542, - "lat": 53.4790725, - "lon": -2.2460399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Philip Hindes Gold Medal winner London 2012 Olympic Games Cycling: Track - Men's Team Sprint", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M2 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331486774, - "lat": 52.6308268, - "lon": -1.0770585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "LE5", - "ref": "LE5 696", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331486775, - "lat": 52.6306199, - "lon": -1.0884532, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "postal_code": "LE5", - "ref": "LE5 440", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 331486777, - "lat": 52.6285013, - "lon": -1.1051290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "LE5", - "ref": "LE5 509", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 331486778, - "lat": 52.6263397, - "lon": -1.0895125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Reference is LE5 406 or LE5 12", - "ref": "LE5 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331486780, - "lat": 52.6276897, - "lon": -1.0751394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Reference is LE5 406 or LE5 12", - "ref": "LE5 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 331493513, - "lat": 53.7493093, - "lon": -0.4132128, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 331493525, - "lat": 53.7562540, - "lon": -0.4025348, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331493526, - "lat": 53.7553750, - "lon": -0.3984849, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 331493529, - "lat": 53.7671493, - "lon": -0.3915588, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 331493530, - "lat": 53.7625849, - "lon": -0.3923493, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 331493534, - "lat": 53.7719712, - "lon": -0.3942224, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331493552, - "lat": 53.7687166, - "lon": -0.3611437, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 331493558, - "lat": 53.7671407, - "lon": -0.3534487, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 331493564, - "lat": 53.7641174, - "lon": -0.3518754, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 331493570, - "lat": 53.7644255, - "lon": -0.3469466, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331493576, - "lat": 53.7617490, - "lon": -0.3500162, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331493583, - "lat": 53.7615182, - "lon": -0.3395818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 331493593, - "lat": 53.7596298, - "lon": -0.3518837, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 331493611, - "lat": 53.7541142, - "lon": -0.3600181, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331493613, - "lat": 53.7504474, - "lon": -0.3859276, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 331493614, - "lat": 53.7572634, - "lon": -0.3827600, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "HU5", - "ref": "HU5 63" - } -}, -{ - "type": "node", - "id": 331493615, - "lat": 53.7572076, - "lon": -0.3827600, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "HU5", - "ref": "HU5 300" - } -}, -{ - "type": "node", - "id": 331503530, - "lat": 52.6149269, - "lon": -1.1025453, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "LE2 2", - "ref": "LE2 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331503535, - "lat": 52.6129169, - "lon": -1.1091510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "LE2 3HL", - "ref": "LE2 252" - } -}, -{ - "type": "node", - "id": 331512981, - "lat": 53.7562154, - "lon": -0.3485957, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 331593172, - "lat": 50.8160058, - "lon": -0.4720438, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331613576, - "lat": 52.5926067, - "lon": -1.1032413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "LE18", - "ref": "LE18 762D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331636356, - "lat": 53.8014807, - "lon": -1.6020469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 225" - } -}, -{ - "type": "node", - "id": 331818117, - "lat": 51.2768118, - "lon": 1.0789967, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT1 81", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT1 81D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-06-25" - } -}, -{ - "type": "node", - "id": 331829257, - "lat": 55.0258833, - "lon": -1.6282648, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331850335, - "lat": 52.5813787, - "lon": -1.9374851, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 173" - } -}, -{ - "type": "node", - "id": 331852260, - "lat": 52.5718361, - "lon": -1.9467002, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331852267, - "lat": 52.5764007, - "lon": -1.9425833, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331885118, - "lat": 52.2101544, - "lon": 0.1119289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331885119, - "lat": 52.2124177, - "lon": 0.1117980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB3 0", - "ref": "CB3 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331904672, - "lat": 51.5456329, - "lon": 0.0493172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331904788, - "lat": 51.5431615, - "lon": 0.0498399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331932302, - "lat": 51.5424298, - "lon": 0.0551560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 331946515, - "lat": 53.1704576, - "lon": -1.3816674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331953292, - "lat": 53.1763740, - "lon": -1.3937438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 331957255, - "lat": 53.7650913, - "lon": -2.5087823, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 331960608, - "lat": 53.3842292, - "lon": -2.4838231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 57", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 331961772, - "lat": 53.7639501, - "lon": -2.5039440, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.12" - } -}, -{ - "type": "node", - "id": 331999183, - "lat": 52.9544757, - "lon": -1.1932322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG8 266", - "ref:GB:uprn": "10015836805", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332044076, - "lat": 51.6004326, - "lon": -2.4402963, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332044694, - "lat": 54.0818863, - "lon": -0.7502622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO17 74" - } -}, -{ - "type": "node", - "id": 332044695, - "lat": 54.0950870, - "lon": -0.7580543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:50; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO17 61" - } -}, -{ - "type": "node", - "id": 332044871, - "lat": 51.6147775, - "lon": -2.4384685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL12 221", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 332050665, - "lat": 55.8619339, - "lon": -4.2602021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G2", - "ref": "G2 521;G2 521A", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 332054237, - "lat": 55.8578303, - "lon": -4.2554622, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G1", - "ref": "G1 504;G1 504A", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 332058629, - "lat": 54.0824789, - "lon": -0.8804134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO60 337" - } -}, -{ - "type": "node", - "id": 332060077, - "lat": 54.1648555, - "lon": -0.9306445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:40; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO62 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 332076081, - "lat": 53.8140205, - "lon": -1.5837844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS4 571", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; Bing" - } -}, -{ - "type": "node", - "id": 332076083, - "lat": 53.8119770, - "lon": -1.5804427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS4 397", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 332076084, - "lat": 53.8167568, - "lon": -1.5896752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS4 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "knowledge; survey; Bing" - } -}, -{ - "type": "node", - "id": 332076089, - "lat": 53.8244118, - "lon": -1.6017312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 890", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 332076177, - "lat": 53.8172505, - "lon": -1.5990452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS5 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332076180, - "lat": 53.8161225, - "lon": -1.6218539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 785" - } -}, -{ - "type": "node", - "id": 332076181, - "lat": 53.8114439, - "lon": -1.6436090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 995", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332084397, - "lat": 50.7248870, - "lon": -3.5123698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX1 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 332084457, - "lat": 50.7216876, - "lon": -3.5010366, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "EX1 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332087804, - "lat": 54.1875495, - "lon": -0.9316291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 467" - } -}, -{ - "type": "node", - "id": 332089366, - "lat": 54.1930956, - "lon": -0.9961834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:05; Sa 09:10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO62 329", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 332099986, - "lat": 51.3580364, - "lon": 0.7456359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME10 125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME10 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 332146233, - "lat": 51.4800851, - "lon": -0.0889818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332146500, - "lat": 51.4766272, - "lon": -0.0889348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332147236, - "lat": 51.4781313, - "lon": -0.0937710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332231776, - "lat": 54.1274643, - "lon": -0.8160553, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 332240832, - "lat": 53.7688405, - "lon": -0.6004420, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 332240834, - "lat": 53.7343785, - "lon": -0.5602076, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332257693, - "lat": 51.8622396, - "lon": -2.1213396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332272857, - "lat": 54.9931554, - "lon": -1.5981869, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 289", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 332300181, - "lat": 53.2595958, - "lon": -2.1184064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 332313820, - "lat": 50.8007169, - "lon": -0.9737438, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO11 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332323280, - "lat": 51.4199181, - "lon": -0.0305863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BR3", - "ref": "BR3 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332323291, - "lat": 51.4153193, - "lon": -0.0250839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "post_box:type": "pillar", - "postal_code": "BR3", - "ref": "BR3 176", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 332325638, - "lat": 51.4158468, - "lon": -0.0336869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:15", - "post_box:type": "pillar", - "ref": "BR3 179", - "ref:GB:uprn": "10015399857", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 332325641, - "lat": 51.4131303, - "lon": -0.0316708, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BR3 204", - "ref:GB:uprn": "10015456947" - } -}, -{ - "type": "node", - "id": 332325665, - "lat": 51.4119784, - "lon": -0.0253927, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BR3", - "ref": "BR3 200" - } -}, -{ - "type": "node", - "id": 332326562, - "lat": 51.2753993, - "lon": -1.1269199, - "tags": { - "amenity": "post_box", - "mapillary": "1295882974162899", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 228", - "survey:date": "2021-02-21" - } -}, -{ - "type": "node", - "id": 332328865, - "lat": 53.8226564, - "lon": -1.5789985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS6 66;LS6 1066", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332381424, - "lat": 52.2124818, - "lon": 0.1638680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB5", - "ref": "CB5 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332386536, - "lat": 52.2101957, - "lon": 0.1567557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB5 8", - "ref": "CB5 45D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332389070, - "lat": 51.4193165, - "lon": -0.1672407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW19", - "ref": "SW19 77" - } -}, -{ - "type": "node", - "id": 332391103, - "lat": 50.8286949, - "lon": -0.5448508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BN17", - "ref": "BN17 1885D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332393212, - "lat": 53.3358558, - "lon": -2.7096885, - "tags": { - "amenity": "post_box", - "ref": "WA7 32" - } -}, -{ - "type": "node", - "id": 332395367, - "lat": 51.5297006, - "lon": -3.6766272, - "tags": { - "amenity": "post_box", - "ref": "CF33 254" - } -}, -{ - "type": "node", - "id": 332421916, - "lat": 53.7483848, - "lon": -0.3220442, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332421918, - "lat": 53.7508958, - "lon": -0.3179849, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422277, - "lat": 53.7541708, - "lon": -0.3130602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 332422279, - "lat": 53.7570488, - "lon": -0.3086142, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 332422288, - "lat": 53.7614983, - "lon": -0.3001338, - "tags": { - "amenity": "post_box", - "ref": "HU9 111" - } -}, -{ - "type": "node", - "id": 332422290, - "lat": 53.7663113, - "lon": -0.2883168, - "tags": { - "amenity": "post_box", - "ref": "HU9 145" - } -}, -{ - "type": "node", - "id": 332422292, - "lat": 53.7698752, - "lon": -0.2787411, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 332422295, - "lat": 53.7723678, - "lon": -0.2708514, - "tags": { - "amenity": "post_box", - "ref": "HU8 112" - } -}, -{ - "type": "node", - "id": 332422299, - "lat": 53.7808601, - "lon": -0.2656112, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422325, - "lat": 53.7775071, - "lon": -0.2683375, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 332422330, - "lat": 53.7766228, - "lon": -0.2823715, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422333, - "lat": 53.7761502, - "lon": -0.2945089, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422337, - "lat": 53.7713670, - "lon": -0.2891541, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422342, - "lat": 53.7704889, - "lon": -0.2955087, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422345, - "lat": 53.7753875, - "lon": -0.3036165, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 332422348, - "lat": 53.7718360, - "lon": -0.3090333, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332422352, - "lat": 53.7670805, - "lon": -0.3079846, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 332422354, - "lat": 53.7630517, - "lon": -0.3069797, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 332422357, - "lat": 53.7593533, - "lon": -0.3139895, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 332422360, - "lat": 53.7581418, - "lon": -0.3212360, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 332422364, - "lat": 53.7703139, - "lon": -0.3275549, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 332422366, - "lat": 53.7645737, - "lon": -0.3195300, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU8 127", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 332422369, - "lat": 53.7505597, - "lon": -0.3288491, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 332425762, - "lat": 52.1461691, - "lon": -1.0884294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332427517, - "lat": 53.9772025, - "lon": -0.8536657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO41 557" - } -}, -{ - "type": "node", - "id": 332428288, - "lat": 53.3341596, - "lon": -2.7005379, - "tags": { - "amenity": "post_box", - "ref": "WA7 68" - } -}, -{ - "type": "node", - "id": 332455009, - "lat": 53.3328694, - "lon": -2.6943563, - "tags": { - "amenity": "post_box", - "ref": "WA7 9" - } -}, -{ - "type": "node", - "id": 332484016, - "lat": 53.7927373, - "lon": -1.5415762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS1 4DJ", - "ref": "LS1 376", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 332484044, - "lat": 53.8173910, - "lon": -1.5492473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332485165, - "lat": 53.8239952, - "lon": -1.5664967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 848", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 332492856, - "lat": 51.4098866, - "lon": -0.3512026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW12 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332506451, - "lat": 51.4512217, - "lon": 0.2209313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "note": "Parcel Postbox location barcode 000DA15051. \"This Postbox is for pre-paid parcels bought online, barcode returns and business franked mail\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DA1 5051P" - } -}, -{ - "type": "node", - "id": 332569918, - "lat": 51.2628890, - "lon": -0.6200781, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "last_checked": "2021-06-09", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU3", - "ref": "GU3 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 332582908, - "lat": 50.7422577, - "lon": -3.9965608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX20 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 332588816, - "lat": 52.7133800, - "lon": -2.7729724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SY3", - "ref": "SY3 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332589204, - "lat": 51.6928545, - "lon": -2.2338955, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL6", - "ref": "GL6 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332589323, - "lat": 52.7121697, - "lon": -2.7385941, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "Post box in wall under tree part hidden by lamp post", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SY2", - "ref": "SY2 1" - } -}, -{ - "type": "node", - "id": 332589426, - "lat": 51.7203791, - "lon": -2.1916093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 332590317, - "lat": 51.7079008, - "lon": -2.1824106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL6 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332592243, - "lat": 52.7021303, - "lon": -2.7593635, - "tags": { - "amenity": "post_box", - "postal_code": "SY3", - "ref": "SY3 166" - } -}, -{ - "type": "node", - "id": 332594196, - "lat": 53.7895935, - "lon": -0.4579742, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332594207, - "lat": 53.7876664, - "lon": -0.4651939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "JOSM", - "mapillary": "1294183177928160", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 332594302, - "lat": 51.6943234, - "lon": -2.1952291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL6 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-06-24" - } -}, -{ - "type": "node", - "id": 332594305, - "lat": 51.6924831, - "lon": -2.2159219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL6 2" - } -}, -{ - "type": "node", - "id": 332594417, - "lat": 52.7058871, - "lon": -2.7577196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "sealed at survey time", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332595017, - "lat": 50.7412623, - "lon": -3.9880397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 332595465, - "lat": 51.7288997, - "lon": -2.1693902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL6", - "ref": "GL6 29" - } -}, -{ - "type": "node", - "id": 332596620, - "lat": 51.7278888, - "lon": -2.1505190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL6", - "ref": "GL6 214" - } -}, -{ - "type": "node", - "id": 332597689, - "lat": 50.7413643, - "lon": -3.9927540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX20 167D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 332598357, - "lat": 50.7404558, - "lon": -3.9959131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 332606319, - "lat": 50.7997176, - "lon": -3.6969970, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 332606390, - "lat": 50.7405583, - "lon": -3.9888502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX20 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 332606515, - "lat": 55.9021513, - "lon": -3.1555619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 409D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 332607488, - "lat": 55.9119996, - "lon": -3.1634005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 332", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 332608337, - "lat": 50.8102297, - "lon": -3.7278736, - "tags": { - "amenity": "post_box", - "fixme": "could not find it !" - } -}, -{ - "type": "node", - "id": 332614206, - "lat": 51.3867269, - "lon": 0.1634207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332624264, - "lat": 52.8316220, - "lon": -1.2314257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:manufacturer": "Machan Engineering", - "post_box:type": "lamp", - "ref": "LE12 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332625059, - "lat": 52.0903783, - "lon": 0.7941592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1099D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 332625061, - "lat": 52.0890965, - "lon": 0.8624911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IP7 1259" - } -}, -{ - "type": "node", - "id": 332625067, - "lat": 52.0800807, - "lon": 0.8467033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP7 1010", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 332648818, - "lat": 51.2503445, - "lon": -0.5965627, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-24", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "post_box:type": "pillar", - "postal_code": "GU2", - "ref": "GU2 184", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332661609, - "lat": 53.9216650, - "lon": -1.8223442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LS29 815", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 332661611, - "lat": 53.9209159, - "lon": -1.8132480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 806" - } -}, -{ - "type": "node", - "id": 332661613, - "lat": 53.9225916, - "lon": -1.8172300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 814" - } -}, -{ - "type": "node", - "id": 332663280, - "lat": 51.3545800, - "lon": 1.0278925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 372", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332665402, - "lat": 51.3537794, - "lon": 1.0252216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332667150, - "lat": 52.4375148, - "lon": -1.9106589, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "B13 900", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 332681988, - "lat": 52.4199206, - "lon": -4.0395077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY23 37" - } -}, -{ - "type": "node", - "id": 332682677, - "lat": 52.4191888, - "lon": -4.0517263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 126" - } -}, -{ - "type": "node", - "id": 332683259, - "lat": 52.4182465, - "lon": -4.0591727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SY23 213;SY23 214", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 332683783, - "lat": 51.3502813, - "lon": 1.0143530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332686848, - "lat": 51.3636057, - "lon": 1.0321612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "924391148134706", - "note": "was imported as CT5 60, but says CT5 60D on sign", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-01-01" - } -}, -{ - "type": "node", - "id": 332689514, - "lat": 51.3632322, - "lon": 1.0355179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 73", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332689516, - "lat": 51.3638162, - "lon": 1.0431088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332689517, - "lat": 51.3638252, - "lon": 1.0453070, - "tags": { - "amenity": "post_box", - "mapillary": "241337864464833", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 86", - "source": "survey", - "survey:date": "2021-05-09" - } -}, -{ - "type": "node", - "id": 332689519, - "lat": 51.3638054, - "lon": 1.0495949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 332689523, - "lat": 51.3645774, - "lon": 1.0535936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT5 229D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332691920, - "lat": 51.3607419, - "lon": 1.0658842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CT5 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332701564, - "lat": 51.5243636, - "lon": -1.7943593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN4", - "ref": "SN4 138", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 332705341, - "lat": 51.3719580, - "lon": 1.0991119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332716663, - "lat": 51.3778900, - "lon": 1.2893300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332716665, - "lat": 51.3810668, - "lon": 1.2919565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT7", - "ref": "CT7 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332718466, - "lat": 51.3795790, - "lon": 1.3017421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332742032, - "lat": 51.3565914, - "lon": 1.0566851, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "CT5", - "ref": "CT5 386", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332742033, - "lat": 51.3565790, - "lon": 1.0566882, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 332772609, - "lat": 52.7560755, - "lon": -1.7184479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE13", - "ref": "DE13 1095", - "source": "gps" - } -}, -{ - "type": "node", - "id": 332775805, - "lat": 52.7651670, - "lon": -1.7246270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "postal_code": "DE13", - "ref": "DE13 1125", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 332785643, - "lat": 51.5408087, - "lon": -0.1058005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "ref": "N1 105" - } -}, -{ - "type": "node", - "id": 332789176, - "lat": 51.5416938, - "lon": -0.1096829, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-03", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 9;N1 109" - } -}, -{ - "type": "node", - "id": 332793877, - "lat": 51.5432737, - "lon": -0.1069845, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 110", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 333009579, - "lat": 54.5239527, - "lon": -3.2464157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "686212440330699", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CA13 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-08-17" - } -}, -{ - "type": "node", - "id": 333051815, - "lat": 51.2438847, - "lon": -0.6041405, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-25", - "check_date:collection_times": "2023-12-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "GU2", - "ref": "GU2 249", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 333066000, - "lat": 51.2566225, - "lon": -0.5944587, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "last_checked": "2021-06-09", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU2", - "ref": "GU2 158", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333070416, - "lat": 51.2532430, - "lon": -0.5918823, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "last_checked": "2020-02-20", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU2", - "ref": "GU2 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 333081528, - "lat": 51.2538794, - "lon": -0.5980916, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-09", - "old_ref": "GU2 202", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GU2", - "ref": "GU2 202D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333100229, - "lat": 52.7069998, - "lon": -2.7523507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 180", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333122984, - "lat": 53.8154279, - "lon": -1.7718659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333123625, - "lat": 55.9125534, - "lon": -3.1068726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 333127179, - "lat": 55.9169752, - "lon": -3.1125424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 186D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 333127341, - "lat": 53.7870752, - "lon": -0.5101758, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 333127347, - "lat": 53.7906563, - "lon": -0.5057309, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 333127359, - "lat": 53.8205311, - "lon": -0.4858559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333127386, - "lat": 53.8096125, - "lon": -0.4534412, - "tags": { - "amenity": "post_box", - "postal_code": "HU17", - "ref": "HU17 262" - } -}, -{ - "type": "node", - "id": 333130864, - "lat": 53.9616461, - "lon": -1.0842190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO1", - "ref": "YO1 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333140386, - "lat": 51.4033095, - "lon": -0.2999637, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333142339, - "lat": 53.9587889, - "lon": -1.0894249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO1", - "ref": "YO1 176", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 333167304, - "lat": 51.5400837, - "lon": -0.1168630, - "tags": { - "amenity": "post_box", - "ref": "N1 118" - } -}, -{ - "type": "node", - "id": 333167350, - "lat": 51.5416306, - "lon": -0.1170387, - "tags": { - "amenity": "post_box", - "ref": "N1 116" - } -}, -{ - "type": "node", - "id": 333209184, - "lat": 51.5457723, - "lon": -0.1118293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "ref": "N7 12" - } -}, -{ - "type": "node", - "id": 333244615, - "lat": 51.6085673, - "lon": -0.0171616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333244730, - "lat": 51.6083724, - "lon": -0.0245570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 65" - } -}, -{ - "type": "node", - "id": 333245291, - "lat": 51.6007246, - "lon": -0.0080957, - "tags": { - "addr:housenumber": "149", - "addr:street": "Wadham Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "E17 4HU", - "ref": "E17 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333245452, - "lat": 51.5914443, - "lon": -0.0065597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 333245523, - "lat": 51.5891323, - "lon": -0.0042087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 333246843, - "lat": 54.0224498, - "lon": -1.0441601, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-21", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO32 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333250239, - "lat": 50.3944767, - "lon": -3.5651269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ5", - "ref": "TQ5 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 333251558, - "lat": 53.8594431, - "lon": -1.3254161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 971", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 333255057, - "lat": 51.4763118, - "lon": -0.9672080, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "RG4 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333266571, - "lat": 51.5386781, - "lon": 0.0474006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333270473, - "lat": 51.4326064, - "lon": -0.0200980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333275427, - "lat": 50.7401766, - "lon": -4.0042359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX20 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 333285437, - "lat": 50.7397848, - "lon": -3.9989924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 333290724, - "lat": 52.4110033, - "lon": -1.1652551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333293776, - "lat": 51.3919061, - "lon": 1.3904520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "lastcheck": "2023-09-11", - "old_ref": "CT9 5", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333299197, - "lat": 51.4339837, - "lon": 0.0063797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333299199, - "lat": 51.4317328, - "lon": 0.0162458, - "tags": { - "amenity": "post_box", - "ref": "BR1 396" - } -}, -{ - "type": "node", - "id": 333303524, - "lat": 51.3884731, - "lon": 1.3947352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333303530, - "lat": 51.3879278, - "lon": 1.3962125, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-01-22", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333303536, - "lat": 51.3895654, - "lon": 1.3916067, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-22", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333336740, - "lat": 52.6294186, - "lon": -1.1234693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "Two boxes next to each do have different reference numbers, unknown reason.", - "post_box:type": "pillar", - "postal_code": "LE1", - "ref": "LE1 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333336743, - "lat": 52.6290256, - "lon": -1.1226493, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE1", - "ref": "LE1 36" - } -}, -{ - "type": "node", - "id": 333336748, - "lat": 52.6269608, - "lon": -1.1185322, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 410" - } -}, -{ - "type": "node", - "id": 333336754, - "lat": 52.6246888, - "lon": -1.1151815, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 652" - } -}, -{ - "type": "node", - "id": 333338534, - "lat": 51.3853014, - "lon": 1.3820494, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333356818, - "lat": 51.4349711, - "lon": 0.0258839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333361450, - "lat": 51.5571672, - "lon": -0.1266257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 11" - } -}, -{ - "type": "node", - "id": 333371775, - "lat": 51.5557106, - "lon": -0.1245799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "N7 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 333383242, - "lat": 51.4309613, - "lon": 0.0354050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333383343, - "lat": 51.4297469, - "lon": 0.0425046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333383396, - "lat": 51.4274350, - "lon": 0.0457686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 73", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 333386586, - "lat": 53.3719361, - "lon": -1.4776025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "S2 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333386599, - "lat": 51.5533855, - "lon": -0.1180683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N7 9" - } -}, -{ - "type": "node", - "id": 333386602, - "lat": 51.5545025, - "lon": -0.1178121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N7 24" - } -}, -{ - "type": "node", - "id": 333389450, - "lat": 51.4184720, - "lon": 0.0466475, - "tags": { - "amenity": "post_box", - "ref": "BR7 501" - } -}, -{ - "type": "node", - "id": 333389453, - "lat": 51.4097386, - "lon": 0.0351410, - "tags": { - "amenity": "post_box", - "ref": "BR1 34" - } -}, -{ - "type": "node", - "id": 333389457, - "lat": 51.4068933, - "lon": 0.0192835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "ref": "BR1 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 333402580, - "lat": 53.3577966, - "lon": -1.4826210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333427159, - "lat": 53.3563545, - "lon": -1.4937782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S11", - "ref": "S11 329", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 333437666, - "lat": 53.3592609, - "lon": -1.4878281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333442550, - "lat": 53.7964573, - "lon": -1.5385374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "note": "*NOT IN USE* wood blocks in post hole and bin bag cover.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS2 181;LS2 1181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333442554, - "lat": 53.7966862, - "lon": -1.5505550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate:date": "2018-10-03", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 148;LS1 1148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-24" - } -}, -{ - "type": "node", - "id": 333442557, - "lat": 53.7966635, - "lon": -1.5505672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 53P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 333442559, - "lat": 53.7957705, - "lon": -1.5459555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS1 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-24" - } -}, -{ - "type": "node", - "id": 333467311, - "lat": 53.7979053, - "lon": -1.5422750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "colour": "blue", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 140;LS1 1140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "seasonal": "colour" - } -}, -{ - "type": "node", - "id": 333475002, - "lat": 53.7817160, - "lon": -1.6037290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333509579, - "lat": 51.3798843, - "lon": 0.1611790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333509617, - "lat": 51.3829729, - "lon": 0.1566513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "pillar", - "ref": "BR8 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333613567, - "lat": 53.0517401, - "lon": -2.1736181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ST6", - "ref": "ST6 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 333647638, - "lat": 51.3895119, - "lon": 1.3808276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT9 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333647677, - "lat": 51.3879360, - "lon": 1.3805453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 333647746, - "lat": 51.3895325, - "lon": 1.3834646, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "lastcheck": "2023-09-11", - "old_ref": "CT9 56", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333656882, - "lat": 52.3967062, - "lon": -1.5268105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333670381, - "lat": 51.5212920, - "lon": -0.1377358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Second class slot is blocked. First class slot is open. The post box is in use.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1T 52;W1T 252", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 333687539, - "lat": 51.5912355, - "lon": 0.0011051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 333690389, - "lat": 55.7307203, - "lon": -3.9562820, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 333715823, - "lat": 51.5068970, - "lon": -0.1084013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 19;SE1 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333719184, - "lat": 51.5170269, - "lon": -0.1353510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1T 115D;W1T 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1T 115D and W1T 315D" - } -}, -{ - "type": "node", - "id": 333729971, - "lat": 52.5910459, - "lon": -1.1520121, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 734" - } -}, -{ - "type": "node", - "id": 333729973, - "lat": 52.5944061, - "lon": -1.1338043, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 461" - } -}, -{ - "type": "node", - "id": 333755520, - "lat": 51.6087257, - "lon": -2.5259139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "collection_times_checked": "2016-08-11", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "BS35", - "ref": "BS35 1006;BS35 1005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333756265, - "lat": 51.6071256, - "lon": -2.5259899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 1115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-09" - } -}, -{ - "type": "node", - "id": 333763632, - "lat": 50.8210386, - "lon": -0.5400318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-07", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1483D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333782563, - "lat": 51.5348851, - "lon": 0.0520659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 333795613, - "lat": 51.2757716, - "lon": -1.1196217, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 163" - } -}, -{ - "type": "node", - "id": 333799051, - "lat": 53.7997482, - "lon": -1.5438316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 1301;LS1 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333799091, - "lat": 53.7999410, - "lon": -1.5473364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "colour": "gold", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 424;LS1 1424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 333972831, - "lat": 51.3847119, - "lon": 0.5421685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 43D" - } -}, -{ - "type": "node", - "id": 333973281, - "lat": 51.3834655, - "lon": 0.5444112, - "tags": { - "amenity": "post_box", - "ref": "ME7 9" - } -}, -{ - "type": "node", - "id": 334069068, - "lat": 51.3886284, - "lon": 1.3901248, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-25", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334108108, - "lat": 55.8987749, - "lon": -3.1457485, - "tags": { - "amenity": "post_box", - "ref": "EH17 522" - } -}, -{ - "type": "node", - "id": 334221206, - "lat": 52.3929715, - "lon": -1.9461324, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B38 1294", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334227717, - "lat": 51.9094811, - "lon": -2.0910277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL51", - "ref": "GL51 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334263666, - "lat": 51.9052327, - "lon": -2.1098039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "GL51", - "ref": "GL51 279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 334268445, - "lat": 51.9184060, - "lon": -2.0838270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL50", - "ref": "GL50 198" - } -}, -{ - "type": "node", - "id": 334271063, - "lat": 51.9163738, - "lon": -2.0869826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL50", - "ref": "GL50 361" - } -}, -{ - "type": "node", - "id": 334275408, - "lat": 51.9040243, - "lon": -2.1190533, - "tags": { - "amenity": "post_box", - "postal_code": "GL51", - "ref": "GL51 313" - } -}, -{ - "type": "node", - "id": 334277019, - "lat": 51.3792918, - "lon": -0.4254019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I have upgraded the 'mail drop box' tag.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "KT12", - "ref": "KT12 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 334281188, - "lat": 51.9016727, - "lon": -2.1021608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "306408230954460", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL51", - "ref": "GL51 307", - "royal_cypher": "GVIR", - "survey:date": "2020-06-19" - } -}, -{ - "type": "node", - "id": 334283371, - "lat": 51.9229425, - "lon": -2.0963474, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "GL51", - "ref": "GL51 161" - } -}, -{ - "type": "node", - "id": 334362725, - "lat": 52.4012230, - "lon": -1.5270308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:45", - "note": "on Albany Road", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 334371994, - "lat": 51.4054091, - "lon": -0.0470236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "BR3", - "ref": "BR3 290", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 334383907, - "lat": 51.2689293, - "lon": -1.1169824, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 261" - } -}, -{ - "type": "node", - "id": 334503756, - "lat": 50.8398916, - "lon": -0.5404944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not clear;looks like CP8", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN17 1429", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 334517234, - "lat": 50.9956717, - "lon": -0.5293822, - "tags": { - "amenity": "post_box", - "ref": "RH14 80" - } -}, -{ - "type": "node", - "id": 334517236, - "lat": 51.0101377, - "lon": -0.5238848, - "tags": { - "amenity": "post_box", - "ref": "RH14 28" - } -}, -{ - "type": "node", - "id": 334521440, - "lat": 55.8984174, - "lon": -3.1580353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH17 451", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 334627368, - "lat": 52.5676391, - "lon": -1.9417043, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 300" - } -}, -{ - "type": "node", - "id": 334627521, - "lat": 52.5666492, - "lon": -1.9482437, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 143" - } -}, -{ - "type": "node", - "id": 334627555, - "lat": 52.5705383, - "lon": -1.9555253, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 44" - } -}, -{ - "type": "node", - "id": 334627559, - "lat": 52.5652013, - "lon": -1.9414626, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 183" - } -}, -{ - "type": "node", - "id": 334635282, - "lat": 53.7404033, - "lon": -0.3479881, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 334635283, - "lat": 53.7476374, - "lon": -0.3448331, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "HU2", - "ref": "HU2 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 334635284, - "lat": 53.7472532, - "lon": -0.3385289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HU1 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334635286, - "lat": 53.7467275, - "lon": -0.3372849, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 334635287, - "lat": 53.7458656, - "lon": -0.3419318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HU1 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334635288, - "lat": 53.7455463, - "lon": -0.3382457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HU1 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 334635294, - "lat": 53.7439103, - "lon": -0.3402395, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU1 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 334635296, - "lat": 53.7426232, - "lon": -0.3331276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HU1 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334635297, - "lat": 53.7441345, - "lon": -0.3334622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HU1 200;HU1 2000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334635298, - "lat": 53.7441312, - "lon": -0.3336123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "HU1 304", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334635300, - "lat": 53.7495736, - "lon": -0.3371896, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 334635301, - "lat": 53.7520063, - "lon": -0.3421228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HU2 17" - } -}, -{ - "type": "node", - "id": 334635304, - "lat": 53.7547781, - "lon": -0.3332455, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 334635305, - "lat": 53.7547039, - "lon": -0.3331909, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 334635306, - "lat": 53.7564822, - "lon": -0.3376416, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 334648277, - "lat": 53.4783249, - "lon": -2.2492407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "M2 180", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 334652868, - "lat": 55.8240068, - "lon": -4.0248993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML4 93", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 334756125, - "lat": 51.4067261, - "lon": -2.2246279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 334758043, - "lat": 51.3007229, - "lon": 1.0483839, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 119", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334762694, - "lat": 51.3243640, - "lon": 1.1193670, - "tags": { - "amenity": "post_box", - "postal_code": "CT2", - "ref": "CT2 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334795056, - "lat": 52.7140493, - "lon": -2.8010141, - "tags": { - "amenity": "post_box", - "postal_code": "SY3", - "ref": "SY3 405", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334800837, - "lat": 53.1020997, - "lon": -3.0777721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "LL11", - "ref": "LL11 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 334859474, - "lat": 53.8132767, - "lon": -1.6022593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "LS5 1008", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 334895842, - "lat": 52.3579714, - "lon": -1.2133766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334921931, - "lat": 52.3583365, - "lon": -1.2186284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 334921955, - "lat": 52.3626693, - "lon": -1.2242577, - "tags": { - "amenity": "post_box", - "postal_code": "CV21", - "ref": "CV21 255" - } -}, -{ - "type": "node", - "id": 335159655, - "lat": 54.3612066, - "lon": -1.4253683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DL6 141" - } -}, -{ - "type": "node", - "id": 335240745, - "lat": 53.3865341, - "lon": -2.6547192, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 264", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 335241258, - "lat": 53.3831158, - "lon": -2.6632816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA5 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 335277132, - "lat": 52.4510772, - "lon": -1.9374469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "B15 1064", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335277137, - "lat": 52.4508222, - "lon": -1.9326087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B15 1417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335546643, - "lat": 52.7105335, - "lon": -2.7522648, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-19", - "postal_code": "SY1", - "ref": "SY1 354" - } -}, -{ - "type": "node", - "id": 335547827, - "lat": 52.7087742, - "lon": -2.7566316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335549138, - "lat": 52.7128527, - "lon": -2.7440549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335605710, - "lat": 51.4857685, - "lon": -0.0892221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335609430, - "lat": 51.4816284, - "lon": -0.0838454, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "No collection plate so couldn't confirm ref or collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335613598, - "lat": 51.4267223, - "lon": 0.1670982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "lamp", - "ref": "DA5 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335649629, - "lat": 51.4506799, - "lon": 0.2274635, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA1 367" - } -}, -{ - "type": "node", - "id": 335685939, - "lat": 51.4600898, - "lon": 0.0636840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 335693628, - "lat": 55.9397434, - "lon": -4.1434648, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 335703284, - "lat": 52.6018083, - "lon": -1.1258020, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335735577, - "lat": 55.9374266, - "lon": -4.1353899, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 335777187, - "lat": 52.3003276, - "lon": -1.8831328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 198", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335777188, - "lat": 52.3099003, - "lon": -1.8818176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335779509, - "lat": 52.6122479, - "lon": 1.2372594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR4 437D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 335828966, - "lat": 52.7066563, - "lon": -2.7402043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY2", - "ref": "SY2 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 335832316, - "lat": 53.3450520, - "lon": -1.4858106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "plaque": "In memory of Postman David Hird who died following an assault whilst collecting from this posting box on 6 November 1993", - "post_box:type": "pillar", - "postal_code": "S8", - "ref": "S8 872", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335833560, - "lat": 53.3505457, - "lon": -1.4845959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "postal_code": "S8", - "ref": "S8 450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 335890103, - "lat": 52.4572993, - "lon": -1.8388957, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "B11 562", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335890270, - "lat": 52.4454364, - "lon": -1.8176178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B27 524D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335890403, - "lat": 52.4465990, - "lon": -1.8218109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "B27 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335897850, - "lat": 52.3745906, - "lon": -1.2731741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335898501, - "lat": 55.9063753, - "lon": -3.1281924, - "tags": { - "amenity": "post_box", - "ref": "EH17 306" - } -}, -{ - "type": "node", - "id": 335910939, - "lat": 52.3668541, - "lon": -1.2889547, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 335934486, - "lat": 51.2235030, - "lon": -0.4835227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU5 47", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU5", - "ref": "GU5 47D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "photo" - } -}, -{ - "type": "node", - "id": 335935362, - "lat": 53.7288858, - "lon": -0.5810245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 335935363, - "lat": 53.7388910, - "lon": -0.5836398, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 335935364, - "lat": 53.7406310, - "lon": -0.5747150, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU15 97" - } -}, -{ - "type": "node", - "id": 335935365, - "lat": 53.7552431, - "lon": -0.5927179, - "tags": { - "amenity": "post_box", - "ref": "HU15 178", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335935366, - "lat": 53.7523639, - "lon": -0.6038139, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU15 110", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335935367, - "lat": 53.7653836, - "lon": -0.6157100, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU15 8" - } -}, -{ - "type": "node", - "id": 335935368, - "lat": 53.7658883, - "lon": -0.6220806, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 335935369, - "lat": 53.7674846, - "lon": -0.6057705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 335935370, - "lat": 53.7733491, - "lon": -0.5949841, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU15 349" - } -}, -{ - "type": "node", - "id": 335935371, - "lat": 53.7718534, - "lon": -0.5928185, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU15 179" - } -}, -{ - "type": "node", - "id": 335937092, - "lat": 52.4412001, - "lon": -1.8380243, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B27", - "ref": "B27 620D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335937598, - "lat": 52.4482204, - "lon": -1.8308939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B27", - "ref": "B27 423", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335937881, - "lat": 52.4484501, - "lon": -1.8268448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B27 295D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335938108, - "lat": 52.4520225, - "lon": -1.8311913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B27", - "ref": "B27 838", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335938522, - "lat": 52.4534066, - "lon": -1.8273115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B27", - "ref": "B27 285", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335939022, - "lat": 52.4548723, - "lon": -1.8262893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B27", - "ref": "B27 414", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335939565, - "lat": 52.4539976, - "lon": -1.8178694, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B27 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335940235, - "lat": 51.2047971, - "lon": -0.4835770, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "GU5", - "ref": "GU5 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 335940773, - "lat": 51.2125650, - "lon": -0.4842877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU5 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 335954028, - "lat": 50.7762490, - "lon": -3.6092739, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 335966146, - "lat": 51.4577294, - "lon": -0.2180696, - "tags": { - "amenity": "post_box", - "postal_code": "SW15", - "ref": "SW15 13" - } -}, -{ - "type": "node", - "id": 335966532, - "lat": 51.4560389, - "lon": -0.2122579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "postal_code": "SW15", - "ref": "SW15 37", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 335968478, - "lat": 51.8347456, - "lon": 1.2116070, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO13 0HT", - "ref": "CO13 102" - } -}, -{ - "type": "node", - "id": 335980705, - "lat": 50.8154691, - "lon": -0.4844258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1466D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 336001653, - "lat": 51.7141705, - "lon": -2.1357462, - "tags": { - "amenity": "post_box", - "postal_code": "GL6", - "ref": "GL6 116" - } -}, -{ - "type": "node", - "id": 336005048, - "lat": 51.6936804, - "lon": -2.2194215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2448965548603519", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL6 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-18" - } -}, -{ - "type": "node", - "id": 336015174, - "lat": 53.0865105, - "lon": -1.1565815, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 336015476, - "lat": 50.9165461, - "lon": -1.3961437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO14", - "ref": "SO14 157D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 336034264, - "lat": 52.5988361, - "lon": -1.1144967, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 569" - } -}, -{ - "type": "node", - "id": 336034639, - "lat": 51.7246023, - "lon": -2.1476636, - "tags": { - "amenity": "post_box", - "postal_code": "GL6", - "ref": "GL6 5" - } -}, -{ - "type": "node", - "id": 336040553, - "lat": 51.2420517, - "lon": -0.5431643, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 121D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336044685, - "lat": 53.2750366, - "lon": -1.4963323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336058689, - "lat": 51.6993653, - "lon": -2.1909287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GL6", - "ref": "GL6 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 336063006, - "lat": 51.6884379, - "lon": -2.2358082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL6", - "ref": "GL6 198" - } -}, -{ - "type": "node", - "id": 336065354, - "lat": 51.6984246, - "lon": -2.2097641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "751165760319852", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL6 125", - "survey:date": "2024-06-30" - } -}, -{ - "type": "node", - "id": 336066477, - "lat": 51.7094983, - "lon": -2.1672221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL6 221" - } -}, -{ - "type": "node", - "id": 336070389, - "lat": 51.3769471, - "lon": 1.3930994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "postal_code": "CT9", - "ref": "CT9 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336077091, - "lat": 51.5819574, - "lon": -1.7677304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN2", - "ref": "SN2 302" - } -}, -{ - "type": "node", - "id": 336077250, - "lat": 53.3026694, - "lon": -1.5031246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336077880, - "lat": 56.0334756, - "lon": -3.3966687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 99", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336083781, - "lat": 53.2904009, - "lon": -1.4231465, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "S18 498D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336085673, - "lat": 51.3716055, - "lon": 1.3894542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336088241, - "lat": 56.0591071, - "lon": -3.2405944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "KY3 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 336095723, - "lat": 52.9535130, - "lon": -1.1989937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 152D", - "ref:GB:uprn": "10015348647", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336095728, - "lat": 51.3677189, - "lon": 1.3908494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336101068, - "lat": 56.0595020, - "lon": -3.2317310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY3 413", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 336104734, - "lat": 53.1968927, - "lon": -2.1312409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "mapillary": "2251367915059165", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SK11 93", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 336106069, - "lat": 53.2894878, - "lon": -1.3897719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S21 862", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336107411, - "lat": 53.1905059, - "lon": -2.1251189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336115578, - "lat": 52.9542731, - "lon": -1.2117910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 251", - "ref:GB:uprn": "10015272987", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336116084, - "lat": 53.1803939, - "lon": -2.1185099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "postal_code": "SK11", - "ref": "SK11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336122483, - "lat": 52.3968360, - "lon": -1.5387026, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 284D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 336122576, - "lat": 52.3971483, - "lon": -1.5348534, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 336124485, - "lat": 51.3605686, - "lon": 1.4027459, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-22", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336128981, - "lat": 53.1615210, - "lon": -2.0869868, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 72" - } -}, -{ - "type": "node", - "id": 336132227, - "lat": 56.0730634, - "lon": -3.1800445, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY3 419" - } -}, -{ - "type": "node", - "id": 336156979, - "lat": 53.1840502, - "lon": -2.0543593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "SK11", - "ref": "SK11 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336157569, - "lat": 53.1647027, - "lon": -2.0530551, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SK11", - "ref": "SK11 69" - } -}, -{ - "type": "node", - "id": 336158598, - "lat": 53.1915608, - "lon": -2.0629316, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 159" - } -}, -{ - "type": "node", - "id": 336158877, - "lat": 53.1593368, - "lon": -2.0973583, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "SK11", - "ref": "SK11 111" - } -}, -{ - "type": "node", - "id": 336158878, - "lat": 53.1602310, - "lon": -2.0947292, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SK11", - "ref": "SK11 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336162118, - "lat": 53.1605705, - "lon": -2.0746088, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SK11", - "ref": "SK11 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 336238219, - "lat": 51.7399173, - "lon": -1.2227599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 84", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 336254963, - "lat": 54.6027825, - "lon": -3.1416019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "81.8372803", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 136D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336277445, - "lat": 51.5555871, - "lon": -0.1117335, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-18", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 336292689, - "lat": 51.7522841, - "lon": -1.2776249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-03-01" - } -}, -{ - "type": "node", - "id": 336297753, - "lat": 50.4704521, - "lon": -3.5429481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 336338246, - "lat": 52.4467129, - "lon": -1.8125942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B27", - "ref": "B27 214", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336343536, - "lat": 52.4415231, - "lon": -1.8182492, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B27 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336347919, - "lat": 52.4365450, - "lon": -1.8168086, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B27 569D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336358464, - "lat": 50.4765852, - "lon": -3.5329777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 36D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 336370517, - "lat": 50.4665783, - "lon": -3.5350508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 336380341, - "lat": 52.4353615, - "lon": -1.8222637, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B27 913", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336380720, - "lat": 52.7449040, - "lon": -1.4629900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 336381851, - "lat": 52.4312951, - "lon": -1.8184838, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B27", - "ref": "B27 300", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336383698, - "lat": 51.8462304, - "lon": -2.2301106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f", - "ele": "19.8327637", - "mapillary": "1156558361435962", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL4 59", - "royal_cypher": "GR", - "survey:date": "2020-06-17" - } -}, -{ - "type": "node", - "id": 336383881, - "lat": 51.8349304, - "lon": -2.2468989, - "tags": { - "amenity": "post_box", - "postal_code": "GL4", - "ref": "GL4 121" - } -}, -{ - "type": "node", - "id": 336387656, - "lat": 52.4299076, - "lon": -1.8255150, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B27", - "ref": "B27 529", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336390767, - "lat": 52.7481612, - "lon": -1.4637209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE65 605", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 336400700, - "lat": 52.7434381, - "lon": -1.4677689, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 336401773, - "lat": 52.3841674, - "lon": -1.7894067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "inside Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "B90 1199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336406459, - "lat": 50.4640893, - "lon": -3.5286318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 336409109, - "lat": 51.7484895, - "lon": -1.2758009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 830", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-01-23" - } -}, -{ - "type": "node", - "id": 336418726, - "lat": 51.3456690, - "lon": 1.3693280, - "tags": { - "amenity": "post_box", - "note:ref": "Sourced from Dracos because the front information panel was missing.", - "postal_code": "CT12", - "ref": "CT12 24", - "source": "survey", - "source:ref": "http://www.dracos.co.uk/play/locating-postboxes/?pc1\\eCT12" - } -}, -{ - "type": "node", - "id": 336421273, - "lat": 52.6302780, - "lon": -1.1334330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 336440801, - "lat": 52.6166850, - "lon": -1.1264390, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 176" - } -}, -{ - "type": "node", - "id": 336440809, - "lat": 52.6103360, - "lon": -1.1230765, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE2 6BL", - "ref": "LE2 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336441925, - "lat": 51.3516149, - "lon": 1.1764197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336441935, - "lat": 51.3461754, - "lon": 1.1872021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "152749936743799", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 336447038, - "lat": 51.3341239, - "lon": 1.1913428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.bing.com/maps?osid=75bbdfce-9b24-4af3-b57b-8f3e10632bba&cp=51.334206~1.19145&lvl=19&dir=248.57794&pi=-2.5142024&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336447041, - "lat": 51.3387828, - "lon": 1.1587364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336457805, - "lat": 51.3339840, - "lon": 1.1622140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336458528, - "lat": 51.3477670, - "lon": 1.1647050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336460564, - "lat": 51.2836814, - "lon": 1.1826238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336462541, - "lat": 51.2742640, - "lon": 1.2150738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 288", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336465048, - "lat": 51.2433618, - "lon": 1.1944119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336465050, - "lat": 51.2374881, - "lon": 1.1857601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336528755, - "lat": 51.5340549, - "lon": -0.2348125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 38D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 336567382, - "lat": 52.6180311, - "lon": -0.2624394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 336614487, - "lat": 51.4105155, - "lon": 0.0216722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR1 12" - } -}, -{ - "type": "node", - "id": 336614502, - "lat": 51.4493588, - "lon": 0.1031856, - "tags": { - "amenity": "post_box", - "ref": "DA15 251" - } -}, -{ - "type": "node", - "id": 336636512, - "lat": 53.2405735, - "lon": -2.0902914, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "SK11", - "ref": "SK11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336638647, - "lat": 53.2558809, - "lon": -2.1028645, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SK11", - "ref": "SK11 174" - } -}, -{ - "type": "node", - "id": 336638654, - "lat": 53.2557322, - "lon": -2.1108150, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 100" - } -}, -{ - "type": "node", - "id": 336645273, - "lat": 53.2441269, - "lon": -2.1157319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "SK11", - "ref": "SK11 78" - } -}, -{ - "type": "node", - "id": 336645277, - "lat": 53.2480490, - "lon": -2.1196766, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 8" - } -}, -{ - "type": "node", - "id": 336645284, - "lat": 53.2565879, - "lon": -2.1054459, - "tags": { - "amenity": "post_box", - "postal_code": "SK10", - "ref": "SK10 10" - } -}, -{ - "type": "node", - "id": 336674259, - "lat": 51.4539755, - "lon": 0.1361121, - "tags": { - "amenity": "post_box", - "note": "Ref was shown as DA1 343 with a fixme tag due to likelhood of being wrong. Fixme now removed.", - "ref": "DA6 141", - "source": "Plate on the box itself" - } -}, -{ - "type": "node", - "id": 336685946, - "lat": 51.5624352, - "lon": -0.0674012, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 336725454, - "lat": 53.2755240, - "lon": -1.3717358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "wall", - "ref": "S43 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 336726753, - "lat": 53.2736137, - "lon": -1.3771489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336744507, - "lat": 52.1649635, - "lon": -1.7701446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336759583, - "lat": 51.4432175, - "lon": 0.1960068, - "tags": { - "amenity": "post_box", - "ref": "DA1 216" - } -}, -{ - "type": "node", - "id": 336764589, - "lat": 52.4363602, - "lon": -1.9234376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B29 410", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 336764591, - "lat": 52.4401313, - "lon": -1.9217482, - "tags": { - "amenity": "post_box", - "ref": "B29 258" - } -}, -{ - "type": "node", - "id": 336789149, - "lat": 53.2340125, - "lon": -1.3772605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336791405, - "lat": 53.2198776, - "lon": -1.3705591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336798756, - "lat": 51.4372231, - "lon": 0.2422502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "DA2 306", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 336798796, - "lat": 51.4436981, - "lon": 0.3746806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA12 24D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 336841349, - "lat": 51.4403415, - "lon": 0.7644825, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME12", - "ref": "ME12 9" - } -}, -{ - "type": "node", - "id": 336861046, - "lat": 53.3521508, - "lon": -1.4872514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 336861318, - "lat": 55.0093290, - "lon": -1.8781747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "estimated position", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "NE15 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 336861321, - "lat": 55.0623825, - "lon": -1.9785193, - "tags": { - "amenity": "post_box", - "note": "estimated position", - "ref": "NE20 317" - } -}, -{ - "type": "node", - "id": 336863249, - "lat": 53.3628046, - "lon": -1.4778850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337003768, - "lat": 54.2958939, - "lon": -0.9633093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "YO62", - "ref": "YO62 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337174977, - "lat": 53.4778757, - "lon": -2.2312524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "M1 11;M1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337323205, - "lat": 52.7066396, - "lon": -2.8023197, - "tags": { - "amenity": "post_box", - "ref": "SY3 226D" - } -}, -{ - "type": "node", - "id": 337371234, - "lat": 53.0469523, - "lon": -2.1750208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-03-20", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ST6", - "ref": "ST6 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337383436, - "lat": 50.7332552, - "lon": -1.2116798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 22", - "ref:GB:uprn": "10015465730", - "website": "https://www.royalmail.com/services-near-you/postbox/fishbourne-green-po33-4ha/0000PO3322" - } -}, -{ - "type": "node", - "id": 337387601, - "lat": 54.3372562, - "lon": -1.4338537, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 337388530, - "lat": 54.3407635, - "lon": -1.4345955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "mapillary": "1382723532145613", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DL7 61", - "royal_cypher": "EIIR", - "survey:date": "2022-03-02" - } -}, -{ - "type": "node", - "id": 337390878, - "lat": 51.0334325, - "lon": -0.4883858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 337418098, - "lat": 54.1413645, - "lon": -0.7908384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 97" - } -}, -{ - "type": "node", - "id": 337429919, - "lat": 54.1421285, - "lon": -0.7824843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "YO17", - "ref": "YO17 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 337434378, - "lat": 54.1413023, - "lon": -0.7967221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "YO17", - "ref": "YO17 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337467048, - "lat": 54.2732052, - "lon": -1.4594269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO7 14" - } -}, -{ - "type": "node", - "id": 337581868, - "lat": 52.9068521, - "lon": -1.5035995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "699311081553612", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 265", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 337582125, - "lat": 52.9040420, - "lon": -1.5065653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 161" - } -}, -{ - "type": "node", - "id": 337582797, - "lat": 52.9108011, - "lon": -1.5080115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 57" - } -}, -{ - "type": "node", - "id": 337627346, - "lat": 54.9697901, - "lon": -1.7781318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 12" - } -}, -{ - "type": "node", - "id": 337627348, - "lat": 54.9728070, - "lon": -1.7622010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE40 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337627351, - "lat": 54.9666665, - "lon": -1.7893777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE40 297" - } -}, -{ - "type": "node", - "id": 337655790, - "lat": 52.4773298, - "lon": -2.0317543, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-17", - "ref": "B65 375", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 337672044, - "lat": 51.5420002, - "lon": -2.4136077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2019-02-24", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS37 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 337672110, - "lat": 51.5603668, - "lon": -2.4516626, - "tags": { - "amenity": "post_box", - "mapillary": "524823899282965", - "note": "In wall of Shale Cottage", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 69", - "survey:date": "2022-05-14" - } -}, -{ - "type": "node", - "id": 337672114, - "lat": 51.5701116, - "lon": -2.4461118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS37 638" - } -}, -{ - "type": "node", - "id": 337678215, - "lat": 52.4907837, - "lon": -2.0579710, - "tags": { - "amenity": "post_box", - "ref": "B65 84", - "source": "survey" - } -}, -{ - "type": "node", - "id": 337683021, - "lat": 52.4871475, - "lon": -2.0501578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B65 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 337713719, - "lat": 50.9552151, - "lon": -3.0305428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "drive_through": "no", - "mapillary": "764398670919818", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-02-06", - "survey:date": "2020-02-06" - } -}, -{ - "type": "node", - "id": 337792882, - "lat": 51.7963239, - "lon": -1.5456173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 337836276, - "lat": 53.8271760, - "lon": -1.5823416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "LS6 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338031744, - "lat": 51.4567266, - "lon": 0.0595588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338071266, - "lat": 51.5045839, - "lon": -0.1125543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 25;SE1 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338071277, - "lat": 51.4113754, - "lon": -0.0550185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338071283, - "lat": 51.4090799, - "lon": -0.0587565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338077654, - "lat": 52.8532925, - "lon": -1.5654189, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "DE65", - "ref": "DE65 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338246625, - "lat": 52.8756502, - "lon": -1.4350991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE73 759", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338286120, - "lat": 52.6040876, - "lon": 1.2394628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 419", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338300180, - "lat": 52.3962319, - "lon": -1.5296866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 170", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338328150, - "lat": 51.4481603, - "lon": -3.4956850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10f", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 338335595, - "lat": 52.4496306, - "lon": -1.8199459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B27 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338356746, - "lat": 55.9064642, - "lon": -3.1524677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 337" - } -}, -{ - "type": "node", - "id": 338363427, - "lat": 52.4853800, - "lon": -2.0565265, - "tags": { - "amenity": "post_box", - "note": "plate removed, ref unknown", - "post_box:type": "pillar", - "ref": "B65 57", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338372016, - "lat": 53.7755673, - "lon": -0.4284608, - "tags": { - "amenity": "post_box", - "postal_code": "HU16", - "ref": "HU16 132" - } -}, -{ - "type": "node", - "id": 338372018, - "lat": 53.7767088, - "lon": -0.4232888, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-31", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 338372074, - "lat": 53.7861133, - "lon": -0.4257146, - "tags": { - "amenity": "post_box", - "postal_code": "HU16", - "ref": "HU16 11" - } -}, -{ - "type": "node", - "id": 338372079, - "lat": 53.7875669, - "lon": -0.4227682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 338372086, - "lat": 53.7830612, - "lon": -0.4180512, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 338372093, - "lat": 53.7797035, - "lon": -0.4191971, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 338372095, - "lat": 53.7764924, - "lon": -0.4097607, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 338372097, - "lat": 53.7810129, - "lon": -0.4078802, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 338372100, - "lat": 53.7773041, - "lon": -0.3966539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "postal_code": "HU16", - "ref": "HU16 351" - } -}, -{ - "type": "node", - "id": 338372102, - "lat": 53.7787642, - "lon": -0.3998787, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 338372106, - "lat": 53.7833054, - "lon": -0.4045533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 338403772, - "lat": 51.4986421, - "lon": -0.1173866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-17", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "colour": "#005EB8", - "drive_through": "no", - "inscription": "Thank you NHS", - "note": "“Thank you NHS” laminated lettering on several sides, the post box is painted blue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 51;SE1 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338467612, - "lat": 51.2770875, - "lon": -1.1069255, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 367" - } -}, -{ - "type": "node", - "id": 338467613, - "lat": 51.2770812, - "lon": -1.1069750, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 230" - } -}, -{ - "type": "node", - "id": 338474482, - "lat": 55.1265418, - "lon": -1.5622224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "NE24 4JW", - "ref": "NE24 639", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 338481485, - "lat": 51.4178049, - "lon": -0.1779248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW19", - "ref": "SW19 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338481486, - "lat": 51.4178319, - "lon": -0.1657846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CR4", - "ref": "CR4 1" - } -}, -{ - "type": "node", - "id": 338481487, - "lat": 51.4139935, - "lon": -0.1682436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CR4", - "ref": "CR4 39" - } -}, -{ - "type": "node", - "id": 338481496, - "lat": 51.4166302, - "lon": -0.1808950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338481498, - "lat": 51.4158122, - "lon": -0.1820560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338481499, - "lat": 51.4156442, - "lon": -0.1894933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 338481501, - "lat": 51.4192083, - "lon": -0.1996154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338481502, - "lat": 51.4195937, - "lon": -0.2024799, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338481503, - "lat": 51.4210295, - "lon": -0.2067997, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338481504, - "lat": 51.4217707, - "lon": -0.2084566, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "gold", - "inscription": "This is a gold postbox to celebrate Sophie Hosking Gold medal winner London 2012 Olympic Games Rowing: Lightweight - Women's Double Sculls.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SW19", - "ref": "SW19 25;SW19 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338487954, - "lat": 55.8862771, - "lon": -4.0008500, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 338531370, - "lat": 52.4758307, - "lon": -1.9046620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B1 660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338692846, - "lat": 54.1692797, - "lon": -1.2050147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO61 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338695067, - "lat": 53.8215487, - "lon": -0.6747511, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO43 390", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338695131, - "lat": 53.8374174, - "lon": -0.7883084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7023370", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "YO43 160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 338695187, - "lat": 53.8364725, - "lon": -0.7678947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "image": "https://www.geograph.org.uk/photo/7023434", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "YO43 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 338695217, - "lat": 53.8349449, - "lon": -0.7782788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "image": "https://www.geograph.org.uk/photo/7024116", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO43 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338695246, - "lat": 53.8290157, - "lon": -0.7659945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7023357", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338700247, - "lat": 53.9887042, - "lon": -0.8655971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:10; Sa 09:10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO41", - "ref": "YO41 293" - } -}, -{ - "type": "node", - "id": 338700263, - "lat": 53.9688398, - "lon": -0.8345667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO41", - "ref": "YO41 292" - } -}, -{ - "type": "node", - "id": 338700266, - "lat": 53.9611892, - "lon": -0.8263776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "YO41", - "ref": "YO41 96" - } -}, -{ - "type": "node", - "id": 338700270, - "lat": 53.9445718, - "lon": -0.7985229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:50; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO42", - "ref": "YO42 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 338712002, - "lat": 55.8672850, - "lon": -4.2312737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "postal_code": "G21", - "ref": "G21 244" - } -}, -{ - "type": "node", - "id": 338716261, - "lat": 55.8780308, - "lon": -4.2218120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "postal_code": "G21", - "ref": "G21 214" - } -}, -{ - "type": "node", - "id": 338728033, - "lat": 53.8870053, - "lon": -0.8540037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:55", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "YO42", - "ref": "YO42 505" - } -}, -{ - "type": "node", - "id": 338729531, - "lat": 55.9445919, - "lon": -3.9861518, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1407" - } -}, -{ - "type": "node", - "id": 338732646, - "lat": 55.9420492, - "lon": -3.9803616, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "G67", - "ref": "G67 174", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 338754485, - "lat": 51.2793824, - "lon": -1.1205268, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 382" - } -}, -{ - "type": "node", - "id": 338796063, - "lat": 53.8608208, - "lon": -1.8452002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD16 606", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 338798141, - "lat": 53.4557142, - "lon": -2.7378317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 338799187, - "lat": 51.5135909, - "lon": -0.1041425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "EC4V 422D;EC4V 4221D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338814723, - "lat": 53.8521991, - "lon": -1.8303609, - "tags": { - "amenity": "post_box", - "ref": "BD16 612" - } -}, -{ - "type": "node", - "id": 338823866, - "lat": 51.4123173, - "lon": -0.0579932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338825626, - "lat": 51.4057912, - "lon": -0.0569927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "collection plate too damaged to confirm ref 8-oct-2022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 338900153, - "lat": 54.3623077, - "lon": -1.4200473, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL6 24" - } -}, -{ - "type": "node", - "id": 338923693, - "lat": 53.8594113, - "lon": -1.8152030, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD16 625" - } -}, -{ - "type": "node", - "id": 338929324, - "lat": 51.4804530, - "lon": -0.1856045, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW10 20", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 338929483, - "lat": 51.4861500, - "lon": -0.1327439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1V 59;SW1V 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339038357, - "lat": 51.4107683, - "lon": -0.1618293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CR4", - "ref": "CR4 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 339087101, - "lat": 51.0251546, - "lon": -1.3904561, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "SO21", - "ref": "SO21 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339087656, - "lat": 52.4518992, - "lon": -1.8238795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "B27 272", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339141464, - "lat": 51.6212787, - "lon": -3.9967202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 339141465, - "lat": 51.6243774, - "lon": -3.9995643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 339169863, - "lat": 52.0446450, - "lon": 1.1716240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "IP3 0PQ", - "ref": "IP3 1321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339172241, - "lat": 54.0392869, - "lon": -0.7162625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339172244, - "lat": 54.1207130, - "lon": -0.7795220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 21" - } -}, -{ - "type": "node", - "id": 339173442, - "lat": 52.2266257, - "lon": -1.1816108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 7" - } -}, -{ - "type": "node", - "id": 339173443, - "lat": 52.2241257, - "lon": -1.1808791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 257" - } -}, -{ - "type": "node", - "id": 339181394, - "lat": 52.0257154, - "lon": -0.7025986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 186", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339190899, - "lat": 52.3838527, - "lon": -2.0026000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B48 789", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339190976, - "lat": 52.3821747, - "lon": -1.9894828, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B45", - "ref": "B45 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339240717, - "lat": 51.7197741, - "lon": 0.5096691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339294242, - "lat": 51.5572530, - "lon": -0.1697021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NW3 55D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 339295295, - "lat": 51.1694988, - "lon": 0.8857908, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "TN24", - "ref": "TN24 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339295376, - "lat": 51.1551504, - "lon": 0.8764856, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN24", - "ref": "TN24 102D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 339295549, - "lat": 51.1466674, - "lon": 0.8758070, - "tags": { - "amenity": "post_box", - "postal_code": "TN23", - "ref": "TN23 2252" - } -}, -{ - "type": "node", - "id": 339295550, - "lat": 51.1466786, - "lon": 0.8757789, - "tags": { - "amenity": "post_box", - "postal_code": "TN23", - "ref": "TN23 2253" - } -}, -{ - "type": "node", - "id": 339295551, - "lat": 51.1437951, - "lon": 0.8765251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339312963, - "lat": 51.6320940, - "lon": -1.2850697, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 339350928, - "lat": 50.8092557, - "lon": -0.5434587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BN17", - "ref": "BN17 1499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339356711, - "lat": 51.7316804, - "lon": -2.1565264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL6", - "ref": "GL6 282" - } -}, -{ - "type": "node", - "id": 339358184, - "lat": 51.7122163, - "lon": -2.2021967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL5", - "ref": "GL5 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339361371, - "lat": 51.7263384, - "lon": -2.1545446, - "tags": { - "amenity": "post_box", - "postal_code": "GL6", - "ref": "GL6 75" - } -}, -{ - "type": "node", - "id": 339361376, - "lat": 51.7258078, - "lon": -2.1513273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GL6", - "ref": "GL6 87" - } -}, -{ - "type": "node", - "id": 339362374, - "lat": 51.6966061, - "lon": -2.2221696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GL6", - "ref": "GL6 91", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 339364087, - "lat": 51.6808924, - "lon": -2.2344007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GL6", - "ref": "GL6 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339367102, - "lat": 51.1689101, - "lon": 0.8930917, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "As of Monday 22nd May 2023 the latest collection will be made no earlier than 09:00 Mo-Fr and 07:00 Sa.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN24", - "ref": "TN24 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo", - "source_1": "survey", - "survey:date": "2023-05-13" - } -}, -{ - "type": "node", - "id": 339367347, - "lat": 51.1146874, - "lon": -0.7386381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "GU26 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey+sas" - } -}, -{ - "type": "node", - "id": 339368637, - "lat": 51.1765379, - "lon": 0.8804943, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN24", - "ref": "TN24 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photo" - } -}, -{ - "type": "node", - "id": 339380242, - "lat": 53.8641424, - "lon": -0.2883487, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339380775, - "lat": 54.6820922, - "lon": -1.7460199, - "tags": { - "amenity": "post_box", - "ref": "DL15 83" - } -}, -{ - "type": "node", - "id": 339385460, - "lat": 53.8396314, - "lon": -0.2661517, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339402218, - "lat": 51.9093921, - "lon": -0.6765034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339405758, - "lat": 51.9112536, - "lon": -0.6744062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LU7 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339412100, - "lat": 51.4568258, - "lon": -0.2036477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "postal_code": "SW15", - "ref": "SW15 27" - } -}, -{ - "type": "node", - "id": 339412101, - "lat": 51.4575142, - "lon": -0.2062653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "SW15", - "ref": "SW15 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 339456864, - "lat": 53.3148470, - "lon": -2.0200699, - "tags": { - "amenity": "post_box", - "note": "post box number obscured", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339469200, - "lat": 52.0453361, - "lon": -1.7774254, - "tags": { - "amenity": "post_box", - "postal_code": "GL55", - "ref": "GL55 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339469562, - "lat": 52.8153863, - "lon": 0.9176986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 339470738, - "lat": 52.8075520, - "lon": 0.9090520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR21 2112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339470740, - "lat": 52.8081977, - "lon": 0.9035431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR21 2120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339484060, - "lat": 52.0493722, - "lon": -1.7842453, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "GL55", - "ref": "GL55 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339587488, - "lat": 51.3818112, - "lon": 1.3803164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "collection_times:signed": "no", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339597522, - "lat": 51.7437063, - "lon": -1.3039208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "postal_code": "OX2", - "ref": "OX2 763", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339631978, - "lat": 51.9284769, - "lon": 1.2158585, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO12 5HB", - "ref": "CO12 14" - } -}, -{ - "type": "node", - "id": 339672902, - "lat": 55.0757686, - "lon": -3.7593499, - "tags": { - "amenity": "post_box", - "ref": "DG2 190" - } -}, -{ - "type": "node", - "id": 339681062, - "lat": 52.3191718, - "lon": -0.1662974, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 339681164, - "lat": 52.3132068, - "lon": -0.1684027, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 339699697, - "lat": 51.9341356, - "lon": 1.1172523, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO11 2US", - "ref": "CO11 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339710258, - "lat": 51.9637930, - "lon": 0.7488546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO8 290", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 339710624, - "lat": 51.9447473, - "lon": 1.0790596, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 1HE", - "ref": "CO11 31" - } -}, -{ - "type": "node", - "id": 339720892, - "lat": 52.9091251, - "lon": -1.2685325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG9 607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339721087, - "lat": 52.9079960, - "lon": -1.2606446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 638D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 339721455, - "lat": 51.9426898, - "lon": 1.0632028, - "tags": { - "amenity": "post_box", - "mapillary": "693686415398022", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CO11 2HH", - "ref": "CO11 44", - "survey:date": "2022-03-26" - } -}, -{ - "type": "node", - "id": 339723638, - "lat": 50.8106465, - "lon": -0.5917570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BN17", - "ref": "BN17 1426", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339723840, - "lat": 50.8180208, - "lon": -0.6044114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1308D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339724678, - "lat": 53.7980418, - "lon": -1.5482039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS1 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339724680, - "lat": 53.7980423, - "lon": -1.5481439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "note": "franked mail [implied by type]", - "opening_hours": "Mo-Fr 13:00-18:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 57", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 339730419, - "lat": 52.9114137, - "lon": -1.2638827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 661D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339753234, - "lat": 52.9377203, - "lon": -1.2371032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 604D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339757770, - "lat": 50.7915462, - "lon": -3.6523366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 339773905, - "lat": 51.3832737, - "lon": 1.3618166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339774952, - "lat": 51.3852358, - "lon": 1.3589612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339776700, - "lat": 52.3181531, - "lon": -0.2206027, - "tags": { - "amenity": "post_box", - "ref": "PE28 220" - } -}, -{ - "type": "node", - "id": 339776900, - "lat": 52.3288620, - "lon": -0.2382308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 271" - } -}, -{ - "type": "node", - "id": 339777149, - "lat": 52.3244625, - "lon": -0.2386376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 208" - } -}, -{ - "type": "node", - "id": 339777362, - "lat": 52.3263401, - "lon": -0.2341318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 151" - } -}, -{ - "type": "node", - "id": 339790696, - "lat": 51.3798934, - "lon": 1.3552987, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "lastcheck": "2023-09-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339799785, - "lat": 51.1668361, - "lon": 0.8842601, - "tags": { - "amenity": "post_box", - "postal_code": "TN24", - "ref": "TN24 105" - } -}, -{ - "type": "node", - "id": 339799791, - "lat": 51.1718797, - "lon": 0.8845697, - "tags": { - "amenity": "post_box", - "postal_code": "TN24", - "ref": "TN24 184" - } -}, -{ - "type": "node", - "id": 339799796, - "lat": 51.1723115, - "lon": 0.8743761, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 69" - } -}, -{ - "type": "node", - "id": 339815809, - "lat": 51.3845773, - "lon": 1.3669330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339817161, - "lat": 51.3808718, - "lon": 1.3688950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 339822422, - "lat": 51.3786200, - "lon": 1.3615930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT9", - "ref": "CT9 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339825360, - "lat": 51.3799777, - "lon": 1.3504821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "CT9 49", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-11" - } -}, -{ - "type": "node", - "id": 339837891, - "lat": 51.3790314, - "lon": 1.3387227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339837925, - "lat": 51.3751117, - "lon": 1.3403224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339845822, - "lat": 57.3886758, - "lon": -5.5959463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "ref": "IV54 234", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339848403, - "lat": 57.3988871, - "lon": -5.5991597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "IV54 240", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339854557, - "lat": 51.5451057, - "lon": -0.0968139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "N1 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 339856556, - "lat": 51.5620658, - "lon": -0.0102714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339856770, - "lat": 51.5619795, - "lon": -0.0156161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "494807278236315", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339857027, - "lat": 51.5650481, - "lon": -0.0201600, - "tags": { - "addr:housenumber": "170", - "addr:street": "Church Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E10 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339857121, - "lat": 51.5712633, - "lon": -0.0303408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 68D", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 339857125, - "lat": 51.5705926, - "lon": -0.0247651, - "tags": { - "addr:housenumber": "333", - "addr:street": "Lea Bridge Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339857257, - "lat": 51.5729451, - "lon": -0.0116630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339863240, - "lat": 51.5488648, - "lon": -0.0992115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N5 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 339867521, - "lat": 51.5252222, - "lon": -1.7980345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN4", - "ref": "SN4 323" - } -}, -{ - "type": "node", - "id": 339867855, - "lat": 51.5171445, - "lon": -1.7276372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN4", - "ref": "SN4 344" - } -}, -{ - "type": "node", - "id": 339913974, - "lat": 51.4171552, - "lon": -0.0871573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE19", - "ref": "SE19 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339913985, - "lat": 51.4213281, - "lon": -0.0906182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE19 18D", - "ref:GB:uprn": "10015357050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339914019, - "lat": 51.4169101, - "lon": -0.0972851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE19", - "ref": "SE19 51", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339914024, - "lat": 51.4152490, - "lon": -0.0895380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE19", - "ref": "SE19 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339925228, - "lat": 53.8160021, - "lon": -1.6009885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "Has disappeared during building work nearby, see if reinstated. 2023-08-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS5 489", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 339962877, - "lat": 57.4042857, - "lon": -5.4800480, - "tags": { - "amenity": "post_box", - "ref": "IV54 243", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 339987721, - "lat": 51.3804402, - "lon": 1.3284110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 339988461, - "lat": 51.3767010, - "lon": 1.3315924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340003243, - "lat": 51.5431726, - "lon": -0.1027241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-24", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 89;N1 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340005238, - "lat": 51.5734129, - "lon": -0.8485656, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 340013036, - "lat": 54.2820528, - "lon": -1.4269056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL7 57", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 340016630, - "lat": 51.3775964, - "lon": 1.3169195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340020961, - "lat": 51.3785341, - "lon": 1.3215625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT7", - "ref": "CT7 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340020970, - "lat": 51.3748308, - "lon": 1.3274281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT8 103", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-11" - } -}, -{ - "type": "node", - "id": 340029565, - "lat": 51.9726738, - "lon": 0.5946687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO9 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 340031897, - "lat": 51.3777097, - "lon": 1.3133614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT7", - "ref": "CT7 53D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340031939, - "lat": 51.3783115, - "lon": 1.3084685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT7", - "ref": "CT7 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340062996, - "lat": 53.8108539, - "lon": -1.6322603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 811", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340063060, - "lat": 51.2150077, - "lon": 1.0817774, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 84", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340127195, - "lat": 51.5397966, - "lon": 0.0625121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340128116, - "lat": 51.5416217, - "lon": 0.0608745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 19D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340128675, - "lat": 51.5377167, - "lon": 0.0642233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340130663, - "lat": 51.5337298, - "lon": 0.0589592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340134981, - "lat": 53.8567173, - "lon": -1.8369674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD16 644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340143311, - "lat": 53.8192932, - "lon": -1.6349785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 109" - } -}, -{ - "type": "node", - "id": 340160925, - "lat": 53.0321064, - "lon": -2.1692977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ST1", - "ref": "ST1 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340160926, - "lat": 53.0321066, - "lon": -2.1692749, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "postal_code": "ST1", - "ref": "ST1 8" - } -}, -{ - "type": "node", - "id": 340218514, - "lat": 51.0946788, - "lon": 1.1753124, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "postal_code": "CT19", - "ref": "CT19 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340220585, - "lat": 54.3081234, - "lon": -1.3921707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL6 12" - } -}, -{ - "type": "node", - "id": 340273836, - "lat": 53.3204814, - "lon": -2.7116195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 58", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 340273864, - "lat": 53.3229120, - "lon": -2.6997356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA7 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 340274184, - "lat": 53.3373788, - "lon": -2.7334902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA7 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 340274988, - "lat": 51.2503804, - "lon": -1.0883114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mapillary": "4013349272090052", - "note": "no reference", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-09-23" - } -}, -{ - "type": "node", - "id": 340302652, - "lat": 51.8971620, - "lon": -2.0637413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 134" - } -}, -{ - "type": "node", - "id": 340320587, - "lat": 52.7074293, - "lon": -2.7562249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "SY1", - "ref": "SY1 490", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340350228, - "lat": 54.3286981, - "lon": -1.4456649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "DL7 102", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 340353373, - "lat": 54.3433224, - "lon": -1.4373766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1988017214682330", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL7 26", - "survey:date": "2020-01-08" - } -}, -{ - "type": "node", - "id": 340353379, - "lat": 54.3340056, - "lon": -1.4459682, - "tags": { - "amenity": "post_box", - "last_collection": "17:15", - "post_box:type": "pillar", - "ref": "DL7 1" - } -}, -{ - "type": "node", - "id": 340363493, - "lat": 51.6208780, - "lon": -3.9454884, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-18", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA1 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340386835, - "lat": 55.8520130, - "lon": -4.2934950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G51 254" - } -}, -{ - "type": "node", - "id": 340403222, - "lat": 52.4768656, - "lon": -2.0446137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B65 661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340413723, - "lat": 52.4830467, - "lon": -2.0377585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "B65 702", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340415136, - "lat": 54.1360118, - "lon": -0.7971694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 14:00", - "note": "LH slot for \"Local Letters Only\", RH slot for \"Other Letters\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "postal_code": "YO17", - "ref": "YO17 1002", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 340415427, - "lat": 54.1353052, - "lon": -0.7984881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "YO17", - "ref": "YO17 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 340437829, - "lat": 51.4340256, - "lon": -2.1842832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN13 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-07", - "wikimedia_commons": "File:Corsham Post Office.jpg" - } -}, -{ - "type": "node", - "id": 340459003, - "lat": 51.2418149, - "lon": -0.6039655, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "GU2", - "ref": "GU2 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual_estimate" - } -}, -{ - "type": "node", - "id": 340466876, - "lat": 51.2581437, - "lon": -1.0967070, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG21", - "ref": "RG21 369" - } -}, -{ - "type": "node", - "id": 340608565, - "lat": 51.0808972, - "lon": -1.2012450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO24 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 340904177, - "lat": 55.8726568, - "lon": -4.2900198, - "tags": { - "amenity": "post_box", - "ref": "G12 76" - } -}, -{ - "type": "node", - "id": 340906719, - "lat": 55.8742586, - "lon": -4.2978838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "ref": "G12 365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 340907289, - "lat": 55.8764563, - "lon": -4.3059436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 13:30", - "post_box:type": "pillar", - "ref": "G12 74", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 340907632, - "lat": 55.8771696, - "lon": -4.3085840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G12 70", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 340956186, - "lat": 54.0406534, - "lon": -0.8359319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 60" - } -}, -{ - "type": "node", - "id": 340958672, - "lat": 54.0453395, - "lon": -0.8043622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "YO17", - "ref": "YO17 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 341091486, - "lat": 52.6091006, - "lon": 1.2606691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 341195194, - "lat": 51.5924536, - "lon": -2.4804268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 07:00; Sa 09:00; Su off", - "drive_through": "no", - "mapillary": "976357673655957", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-25" - } -}, -{ - "type": "node", - "id": 341220140, - "lat": 50.4816955, - "lon": -3.5222247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "note": "has a Post Office direction sign on top", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "TQ1 105;TQ1 1050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 341220329, - "lat": 50.4860111, - "lon": -3.5190952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "dracos data is incorrect for this box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 341241464, - "lat": 55.8745004, - "lon": -4.2943765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "G12 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 341301619, - "lat": 51.5683403, - "lon": 0.0090758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 341334624, - "lat": 51.2630024, - "lon": -1.0891083, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "note": "two adjacent boxes both with same ref", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "RG21", - "ref": "RG21 210", - "ref:duplicates": "2", - "survey:date": "2022-02-27", - "wikimedia_commons": "File:Naive or optimistic^ - geograph.org.uk - 3234090.jpg" - } -}, -{ - "type": "node", - "id": 341335842, - "lat": 51.2624372, - "lon": -1.0862009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "no reference / franked only", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 341335846, - "lat": 51.2624384, - "lon": -1.0862272, - "tags": { - "amenity": "post_box", - "note": "no reference", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 341525696, - "lat": 51.4770748, - "lon": -0.0804498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 341525723, - "lat": 51.4577831, - "lon": -0.0473644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 341525727, - "lat": 51.4526799, - "lon": -0.0417783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 341525729, - "lat": 51.4457147, - "lon": -0.0469669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 341525731, - "lat": 51.4318293, - "lon": -0.0507093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 341830575, - "lat": 55.8765668, - "lon": -4.2949515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G12 439" - } -}, -{ - "type": "node", - "id": 341838232, - "lat": 50.4725869, - "lon": -3.5383219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 342072182, - "lat": 55.8747335, - "lon": -4.2887986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "G12 263", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 342200074, - "lat": 50.9208504, - "lon": -1.4092948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO15", - "ref": "SO15 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342204527, - "lat": 50.9252335, - "lon": -1.4397147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 305" - } -}, -{ - "type": "node", - "id": 342397074, - "lat": 51.2445759, - "lon": -1.1138837, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "RG22", - "ref": "RG22 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342403603, - "lat": 51.2445217, - "lon": -1.1042854, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 143" - } -}, -{ - "type": "node", - "id": 342498782, - "lat": 51.4790422, - "lon": -0.0473534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE14", - "ref": "SE14 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 342498808, - "lat": 51.4768822, - "lon": -0.0454833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "SE14", - "ref": "SE14 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342529340, - "lat": 53.8012212, - "lon": -1.5432402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342579574, - "lat": 53.7992258, - "lon": -1.5364610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LS2 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342579628, - "lat": 53.7951350, - "lon": -1.5374508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS2 8;LS2 1008", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342904763, - "lat": 51.5628541, - "lon": -0.0621193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 342954014, - "lat": 53.3827089, - "lon": -2.5111119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 342954148, - "lat": 53.3836355, - "lon": -2.5248687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA4 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 342983969, - "lat": 51.4791403, - "lon": -0.0353100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE14", - "ref": "SE14 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343006628, - "lat": 51.2311485, - "lon": -0.5648146, - "tags": { - "amenity": "post_box", - "postal_code": "GU1", - "ref": "GU1 159" - } -}, -{ - "type": "node", - "id": 343011657, - "lat": 51.2347504, - "lon": -0.5659167, - "tags": { - "amenity": "post_box", - "postal_code": "GU1", - "ref": "GU1 18" - } -}, -{ - "type": "node", - "id": 343014482, - "lat": 51.4585434, - "lon": -0.0381442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 343019707, - "lat": 51.2377730, - "lon": -0.5601731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "GU1", - "ref": "GU1 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 343029173, - "lat": 51.2356691, - "lon": -0.5720764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GU1", - "ref": "GU1 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343038477, - "lat": 51.2336998, - "lon": -0.5734640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "GU1", - "ref": "GU1 33D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 343044349, - "lat": 51.2313173, - "lon": -0.5721886, - "tags": { - "amenity": "post_box", - "postal_code": "GU1", - "ref": "GU1 157" - } -}, -{ - "type": "node", - "id": 343048678, - "lat": 51.2254721, - "lon": -0.5708842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU4 23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU4 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge;survey" - } -}, -{ - "type": "node", - "id": 343108206, - "lat": 53.7960337, - "lon": -1.6159209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 634" - } -}, -{ - "type": "node", - "id": 343108207, - "lat": 53.7946744, - "lon": -1.6106563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "LS12", - "ref": "LS12 431" - } -}, -{ - "type": "node", - "id": 343108867, - "lat": 51.3547348, - "lon": -1.1530759, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 356" - } -}, -{ - "type": "node", - "id": 343108871, - "lat": 51.3564120, - "lon": -1.1556866, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 248" - } -}, -{ - "type": "node", - "id": 343110188, - "lat": 53.7955124, - "lon": -1.5829371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 214", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 343111849, - "lat": 52.4322247, - "lon": -1.9746467, - "tags": { - "amenity": "post_box", - "ref": "B29 611" - } -}, -{ - "type": "node", - "id": 343117235, - "lat": 51.3562340, - "lon": -1.1660071, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-15", - "post_box:type": "pillar", - "postal_code": "RG26", - "ref": "RG26 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343132623, - "lat": 52.0042710, - "lon": 0.5308815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps" - } -}, -{ - "type": "node", - "id": 343136573, - "lat": 53.7934250, - "lon": -1.5892106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343137422, - "lat": 52.0081958, - "lon": 0.5313728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "gps" - } -}, -{ - "type": "node", - "id": 343138533, - "lat": 51.9913543, - "lon": 0.5135411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "gps" - } -}, -{ - "type": "node", - "id": 343140749, - "lat": 51.9827129, - "lon": 0.5691075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 343147731, - "lat": 51.5536362, - "lon": -0.1137250, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-17", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N7 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343156633, - "lat": 51.9217597, - "lon": -0.6778058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "LU7 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343161671, - "lat": 52.4461873, - "lon": -1.9319184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "The label on the postbox (with details of collection times, ref no etc) is missing.", - "post_box:type": "pillar", - "ref": "B29 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343235045, - "lat": 51.3789158, - "lon": 1.2961604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343236141, - "lat": 52.4057526, - "lon": -1.8232219, - "tags": { - "amenity": "post_box", - "ref": "B90 955", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343246200, - "lat": 52.4081105, - "lon": -1.8253777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343247395, - "lat": 51.3803292, - "lon": 1.3065569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT7", - "ref": "CT7 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343259270, - "lat": 51.3769371, - "lon": 1.3026496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343259313, - "lat": 51.3761178, - "lon": 1.3039054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343263120, - "lat": 51.3719466, - "lon": 1.3101553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT7", - "ref": "CT7 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343265569, - "lat": 52.2422247, - "lon": -0.8567536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343274110, - "lat": 51.7605913, - "lon": 0.6315893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 343322732, - "lat": 51.9378423, - "lon": 1.2802371, - "tags": { - "amenity": "post_box", - "mapillary": "906893200581407", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CO12 3AA", - "ref": "CO12 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343335415, - "lat": 51.9368776, - "lon": 1.2589736, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 4NR", - "ref": "CO12 79" - } -}, -{ - "type": "node", - "id": 343335419, - "lat": 51.9377135, - "lon": 1.2648055, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 4BH", - "ref": "CO12 88" - } -}, -{ - "type": "node", - "id": 343339999, - "lat": 51.9310676, - "lon": 1.2755266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO12 3RP", - "ref": "CO12 17", - "survey:date": "2023-02-07", - "wikimedia_commons": "File:Beach Road from the beach - geograph.org.uk - 4386986.jpg" - } -}, -{ - "type": "node", - "id": 343340835, - "lat": 51.3735140, - "lon": 1.3014588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343341585, - "lat": 51.9285318, - "lon": 1.2705044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "756148459233096", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO12 3SY", - "ref": "CO12 69", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 343343885, - "lat": 51.9276844, - "lon": 1.2640225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO12 3TD", - "ref": "CO12 13" - } -}, -{ - "type": "node", - "id": 343350848, - "lat": 50.7214414, - "lon": -3.5134754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX2 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343350987, - "lat": 50.7218300, - "lon": -3.5100462, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX2 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 343352033, - "lat": 51.9272237, - "lon": 1.2534697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "930119731590241", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO12 4UN", - "ref": "CO12 12", - "survey:date": "2023-04-25" - } -}, -{ - "type": "node", - "id": 343352035, - "lat": 51.9298587, - "lon": 1.2520097, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 4UL", - "ref": "CO12 89" - } -}, -{ - "type": "node", - "id": 343354128, - "lat": 51.9249723, - "lon": 1.2546526, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 3UF", - "ref": "CO12 99" - } -}, -{ - "type": "node", - "id": 343357031, - "lat": 51.5483168, - "lon": 0.3631556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 343357034, - "lat": 51.5429704, - "lon": 0.3616597, - "tags": { - "amenity": "post_box", - "note": "approx. siting", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343365134, - "lat": 51.9305383, - "lon": 1.2352275, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 4TJ", - "ref": "CO12 27" - } -}, -{ - "type": "node", - "id": 343365136, - "lat": 51.9285045, - "lon": 1.2394007, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO12 4RD", - "ref": "CO12 78", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 343389052, - "lat": 52.4128133, - "lon": -1.8272389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 318", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343390516, - "lat": 52.4146518, - "lon": -1.8286012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343404865, - "lat": 51.4610422, - "lon": -0.2168272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW15", - "ref": "SW15 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343404867, - "lat": 51.4630906, - "lon": -0.2152124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SW15", - "ref": "SW15 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343406882, - "lat": 51.2541151, - "lon": -0.6962585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU3 222", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 343431363, - "lat": 51.2612120, - "lon": -0.6808199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GU3", - "ref": "GU3 187", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343437632, - "lat": 51.2647232, - "lon": -0.6321004, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 343445648, - "lat": 52.5521872, - "lon": -1.6941664, - "tags": { - "amenity": "post_box", - "ref": "B76 120" - } -}, -{ - "type": "node", - "id": 343445651, - "lat": 52.5640694, - "lon": -1.7074240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "ref": "B76 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343445929, - "lat": 52.4342941, - "lon": -1.9610843, - "tags": { - "amenity": "post_box", - "ref": "B29 614" - } -}, -{ - "type": "node", - "id": 343454587, - "lat": 50.4016565, - "lon": -3.6637491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ9", - "ref": "TQ9 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 343455385, - "lat": 52.4338580, - "lon": -1.9686460, - "tags": { - "amenity": "post_box", - "ref": "B29 564" - } -}, -{ - "type": "node", - "id": 343455395, - "lat": 52.4370941, - "lon": -1.9646292, - "tags": { - "amenity": "post_box", - "ref": "B29 483" - } -}, -{ - "type": "node", - "id": 343455397, - "lat": 52.4412574, - "lon": -1.9657108, - "tags": { - "amenity": "post_box", - "ref": "B29 612" - } -}, -{ - "type": "node", - "id": 343455400, - "lat": 52.4432694, - "lon": -1.9770783, - "tags": { - "amenity": "post_box", - "disused": "yes" - } -}, -{ - "type": "node", - "id": 343455406, - "lat": 52.4453090, - "lon": -1.9607160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B29 829" - } -}, -{ - "type": "node", - "id": 343457390, - "lat": 51.3666029, - "lon": 1.3077737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT7", - "ref": "CT7 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343461944, - "lat": 51.3774436, - "lon": -0.4202415, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "KT12", - "ref": "KT12 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343479084, - "lat": 51.3749388, - "lon": 1.3122221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT7", - "ref": "CT7 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343486418, - "lat": 53.4121489, - "lon": -2.9445021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "George V post box L7 95 outside McDonald's, Kensington, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L7 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:Post box at Beech Street, Kensington" - } -}, -{ - "type": "node", - "id": 343490912, - "lat": 53.3189688, - "lon": -2.2538143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "postal_code": "SK9", - "ref": "SK9 662" - } -}, -{ - "type": "node", - "id": 343495800, - "lat": 53.8354892, - "lon": -1.7973874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD18 917D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 343498393, - "lat": 51.3564585, - "lon": -1.1250670, - "tags": { - "amenity": "post_box", - "fixme": "survey", - "postal_code": "RG26", - "ref": "RG26 354" - } -}, -{ - "type": "node", - "id": 343508103, - "lat": 51.3078217, - "lon": 0.8936351, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building, brick wall", - "post_box:type": "wall", - "postal_code": "ME13", - "ref": "ME13 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-12-14" - } -}, -{ - "type": "node", - "id": 343509237, - "lat": 51.3095997, - "lon": 0.8878819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 24", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-20" - } -}, -{ - "type": "node", - "id": 343521613, - "lat": 51.3358049, - "lon": -1.0914020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "letters_only": "yes", - "mapillary": "1581246615558120", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 77", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-10-16" - } -}, -{ - "type": "node", - "id": 343522467, - "lat": 53.7980283, - "lon": -1.5492462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 79;LS1 1079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-24" - } -}, -{ - "type": "node", - "id": 343530022, - "lat": 51.3212891, - "lon": -1.1227639, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 11" - } -}, -{ - "type": "node", - "id": 343530779, - "lat": 51.3337145, - "lon": -1.1252019, - "tags": { - "amenity": "post_box", - "postal_code": "RG26", - "ref": "RG26 29" - } -}, -{ - "type": "node", - "id": 343559195, - "lat": 53.0970246, - "lon": -3.8921025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL24 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343559721, - "lat": 52.9280945, - "lon": -1.4738984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343560649, - "lat": 53.0487578, - "lon": -1.4064818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "DE5 721;DE5 1408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343561748, - "lat": 53.1201465, - "lon": -1.4026453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 408" - } -}, -{ - "type": "node", - "id": 343563258, - "lat": 52.2145484, - "lon": 0.1097327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB3", - "ref": "CB3 139D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 343563259, - "lat": 52.2056619, - "lon": 0.1209293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CB2 3", - "ref": "CB2 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343566335, - "lat": 53.1283676, - "lon": -1.3917774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 683" - } -}, -{ - "type": "node", - "id": 343566798, - "lat": 53.1308190, - "lon": -1.3891767, - "tags": { - "amenity": "post_box", - "ref": "DE55 541" - } -}, -{ - "type": "node", - "id": 343567589, - "lat": 51.5661147, - "lon": -0.1151121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 21" - } -}, -{ - "type": "node", - "id": 343584308, - "lat": 51.5662294, - "lon": -0.1091066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 39" - } -}, -{ - "type": "node", - "id": 343588247, - "lat": 51.3936905, - "lon": -0.0936056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343588248, - "lat": 51.3930831, - "lon": -0.0922061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343589304, - "lat": 51.8458609, - "lon": -2.2210079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "826523171287187", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 343590037, - "lat": 51.7076884, - "lon": -2.3890820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "mapillary": "725885672667266", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL11 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-23" - } -}, -{ - "type": "node", - "id": 343625955, - "lat": 53.4229082, - "lon": -1.2565633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "S66", - "ref": "S66 425", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 343629702, - "lat": 53.4226650, - "lon": -1.2022390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S66", - "ref": "S66 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343629716, - "lat": 53.4235512, - "lon": -1.1977684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.4254 -1.19766", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "S66", - "ref": "S66 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 343630508, - "lat": 53.4260954, - "lon": -1.1962110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S66", - "ref": "S66 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343639439, - "lat": 52.4064547, - "lon": -1.8003854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 293", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343640006, - "lat": 53.2732061, - "lon": -2.7717242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA6 377", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 343640087, - "lat": 53.2704479, - "lon": -2.7701190, - "tags": { - "amenity": "post_box", - "ref": "WA6 38" - } -}, -{ - "type": "node", - "id": 343640242, - "lat": 53.2821599, - "lon": -2.8263160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CH2 295D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 343643727, - "lat": 52.4320884, - "lon": -1.8127968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "B91 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343643784, - "lat": 52.4371716, - "lon": -1.8084426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 1058D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343644074, - "lat": 52.4418613, - "lon": -1.8109512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B92 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343655517, - "lat": 51.3071226, - "lon": 0.8970353, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 63", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 343678309, - "lat": 52.9478203, - "lon": -1.1742230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside and Co. Ltd, Derby & London", - "post_box:type": "pillar", - "postal_code": "NG7 1ET", - "ref": "NG7 124D", - "ref:GB:uprn": "10015315089", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343679945, - "lat": 52.9506972, - "lon": -1.1747112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Arthur Avenue", - "post_box:type": "pillar", - "postal_code": "NG7", - "ref": "NG7 86D", - "ref:GB:uprn": "10015455258", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343693325, - "lat": 52.9467387, - "lon": -1.1710029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Grove Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG7 47D", - "ref:GB:uprn": "10015422725", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 343740482, - "lat": 52.1963991, - "lon": 0.1352161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1 2", - "ref": "CB1 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 343749985, - "lat": 52.2092110, - "lon": 0.1177003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB2 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343823384, - "lat": 51.7381728, - "lon": -1.0967885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "indoor": "yes", - "last_checked": "2020-08-13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "OX33 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 343857443, - "lat": 53.8052871, - "lon": -1.6877365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS28", - "ref": "LS28 675" - } -}, -{ - "type": "node", - "id": 344087428, - "lat": 51.3082596, - "lon": 0.9007235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 75", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344099029, - "lat": 51.3091216, - "lon": 0.9038944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 48", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344103161, - "lat": 51.4972722, - "lon": -0.0895067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 47;SE1 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344103178, - "lat": 51.4986489, - "lon": -0.0899416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 83;SE1 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344105642, - "lat": 51.3138788, - "lon": 0.9032060, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344126400, - "lat": 51.4277157, - "lon": -2.1939960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "267754405036399", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN13 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-01-30" - } -}, -{ - "type": "node", - "id": 344170854, - "lat": 52.9564133, - "lon": -1.1999197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 342", - "ref:GB:uprn": "10015409083", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; GPS", - "source:image": "img_1869" - } -}, -{ - "type": "node", - "id": 344216168, - "lat": 52.2584719, - "lon": -0.2298295, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE19 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344221933, - "lat": 52.2824066, - "lon": -0.2146489, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE19 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344247786, - "lat": 52.4792411, - "lon": -1.9001923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:meter": "yes", - "note": "now a parcel box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B2 9001P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344284096, - "lat": 51.2534842, - "lon": -1.1055455, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 364" - } -}, -{ - "type": "node", - "id": 344284099, - "lat": 51.2534956, - "lon": -1.1055638, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 360" - } -}, -{ - "type": "node", - "id": 344290362, - "lat": 51.2497763, - "lon": -1.1090880, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 218" - } -}, -{ - "type": "node", - "id": 344308268, - "lat": 51.7142690, - "lon": 0.5045373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 478", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 344332739, - "lat": 52.7073045, - "lon": -2.7834878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "902705533954589", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY3", - "ref": "SY3 489", - "source": "survey", - "survey:date": "2021-08-12" - } -}, -{ - "type": "node", - "id": 344358627, - "lat": 51.2911656, - "lon": -0.7819921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "505840664175989", - "post_box:type": "pillar", - "ref": "GU14 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-06-03" - } -}, -{ - "type": "node", - "id": 344366690, - "lat": 51.5015576, - "lon": -0.1045470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 4;SE1 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366691, - "lat": 51.4846267, - "lon": -0.0936830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366692, - "lat": 51.4803189, - "lon": -0.0941905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366693, - "lat": 51.4727412, - "lon": -0.0930221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 31", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366694, - "lat": 51.4663415, - "lon": -0.0899840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366695, - "lat": 51.4534807, - "lon": -0.0876326, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "SE21 25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE21 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 344366697, - "lat": 51.4162376, - "lon": -0.0725543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE19", - "ref": "SE19 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366699, - "lat": 51.4121329, - "lon": -0.0669716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344366700, - "lat": 51.4094881, - "lon": -0.0615587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE20", - "ref": "SE20 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344401894, - "lat": 55.8529844, - "lon": -4.2841375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "postal_code": "G51", - "ref": "G51 40" - } -}, -{ - "type": "node", - "id": 344401950, - "lat": 55.8523234, - "lon": -4.2876238, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "G51 66" - } -}, -{ - "type": "node", - "id": 344434097, - "lat": 50.8510488, - "lon": -0.7133920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344434536, - "lat": 53.4065942, - "lon": -4.3190099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 344448000, - "lat": 51.5626200, - "lon": -1.7490665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN3 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344448002, - "lat": 51.5818454, - "lon": -1.7825570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN2", - "ref": "SN2 55" - } -}, -{ - "type": "node", - "id": 344448004, - "lat": 51.5605327, - "lon": -1.7901411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 88" - } -}, -{ - "type": "node", - "id": 344464987, - "lat": 51.5388093, - "lon": -2.4452222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1230167204343946", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS37 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-09" - } -}, -{ - "type": "node", - "id": 344464988, - "lat": 51.5229300, - "lon": -2.4731088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS36 362D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 344464991, - "lat": 51.4751766, - "lon": -2.5247785, - "tags": { - "amenity": "post_box", - "mapillary": "813243389570734", - "post_box:type": "pillar", - "postal_code": "BS16", - "ref": "BS16 229", - "survey:date": "2019-06-23" - } -}, -{ - "type": "node", - "id": 344465086, - "lat": 52.4141632, - "lon": -1.7803627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 1161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344465087, - "lat": 52.4141694, - "lon": -1.7804003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B91 9023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344469236, - "lat": 51.4777492, - "lon": -2.4998844, - "tags": { - "amenity": "post_box", - "postal_code": "BS16", - "ref": "BS16 407" - } -}, -{ - "type": "node", - "id": 344469255, - "lat": 51.4824829, - "lon": -2.4663341, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS16", - "ref": "BS16 97" - } -}, -{ - "type": "node", - "id": 344469256, - "lat": 51.4816702, - "lon": -2.4559324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS16 13" - } -}, -{ - "type": "node", - "id": 344469259, - "lat": 51.4836788, - "lon": -2.4382423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS16 455" - } -}, -{ - "type": "node", - "id": 344469298, - "lat": 51.5282051, - "lon": -2.4149685, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 510" - } -}, -{ - "type": "node", - "id": 344469299, - "lat": 51.5439713, - "lon": -2.4240389, - "tags": { - "amenity": "post_box", - "mapillary": "871037676782154", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 284", - "survey:date": "2020-02-06" - } -}, -{ - "type": "node", - "id": 344478221, - "lat": 52.2395655, - "lon": -0.8689453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 344511319, - "lat": 50.4786595, - "lon": -3.5323496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 241D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 344513446, - "lat": 51.5081669, - "lon": -0.1050545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "This box has been moved here from Blackfriars Road;Accurate as of 2010", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 3;SE1 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;London Borough of Southwark" - } -}, -{ - "type": "node", - "id": 344519019, - "lat": 51.5071895, - "lon": -0.1067175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "SE1 43P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344520373, - "lat": 51.5031840, - "lon": -0.1070921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 12;SE1 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344532821, - "lat": 51.2638114, - "lon": -1.1038358, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 359" - } -}, -{ - "type": "node", - "id": 344539370, - "lat": 57.4639830, - "lon": -4.5139075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV4 134", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344539533, - "lat": 52.4525202, - "lon": -1.9818167, - "tags": { - "amenity": "post_box", - "ref": "B32 1265" - } -}, -{ - "type": "node", - "id": 344539534, - "lat": 52.4496919, - "lon": -1.9600389, - "tags": { - "amenity": "post_box", - "ref": "B17 985" - } -}, -{ - "type": "node", - "id": 344540885, - "lat": 52.7099424, - "lon": -2.7541987, - "tags": { - "amenity": "post_box", - "postal_code": "SY1", - "ref": "SY1 7" - } -}, -{ - "type": "node", - "id": 344545042, - "lat": 53.5264626, - "lon": -2.2121285, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 344546157, - "lat": 52.2446698, - "lon": -0.8665974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 344590516, - "lat": 52.8142971, - "lon": -2.1224094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "ST16", - "ref": "ST16 1616" - } -}, -{ - "type": "node", - "id": 344597932, - "lat": 55.8703201, - "lon": -4.2990848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "created_by": "Potlatch 0.10f", - "mapillary": "330660202329869", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G11 875D", - "royal_cypher": "scottish_crown", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 344603212, - "lat": 51.0938258, - "lon": 1.1610692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT19", - "ref": "CT19 72" - } -}, -{ - "type": "node", - "id": 344639173, - "lat": 55.8682794, - "lon": -4.2921069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-02-17", - "collection_times": "Mo-Fr 18:45, Sa 12:15", - "mapillary": "528695321837197", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G3 471", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 344679717, - "lat": 52.4356728, - "lon": -1.6328544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CV7", - "ref": "CV7 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344679756, - "lat": 52.4418870, - "lon": -1.6189365, - "tags": { - "amenity": "post_box", - "postal_code": "CV7", - "ref": "CV7 350", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344682420, - "lat": 52.4466304, - "lon": -1.6296934, - "tags": { - "amenity": "post_box", - "postal_code": "CV7", - "ref": "CV7 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344686534, - "lat": 55.9034532, - "lon": -4.2301819, - "tags": { - "amenity": "post_box", - "postal_code": "G64", - "ref": "G64 930" - } -}, -{ - "type": "node", - "id": 344691039, - "lat": 50.7206356, - "lon": -3.4678691, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX2 593", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344691271, - "lat": 50.7166422, - "lon": -3.4665497, - "tags": { - "amenity": "post_box", - "ref": "EX2 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344731418, - "lat": 52.2399780, - "lon": -0.8629042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 344731420, - "lat": 52.2432960, - "lon": -0.8639026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 344736179, - "lat": 51.4482369, - "lon": 0.0198596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344748317, - "lat": 52.3415797, - "lon": -0.3437867, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 344751696, - "lat": 53.2622979, - "lon": -4.0950384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL58 51D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 344759841, - "lat": 52.3397934, - "lon": -0.3483921, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.12" - } -}, -{ - "type": "node", - "id": 344766436, - "lat": 52.3255838, - "lon": -0.3751712, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344777179, - "lat": 52.4515021, - "lon": -1.7803079, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "obscured by sticky labels", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344777180, - "lat": 52.4515034, - "lon": -1.7803571, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "obscured by sticky labels", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 344782578, - "lat": 51.5045228, - "lon": 0.2814427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM15 201" - } -}, -{ - "type": "node", - "id": 344790685, - "lat": 53.7099453, - "lon": -1.3334698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF10 347" - } -}, -{ - "type": "node", - "id": 344857705, - "lat": 55.8563826, - "lon": -4.3006389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 344858638, - "lat": 55.8654436, - "lon": -4.2867442, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 344896678, - "lat": 52.8105267, - "lon": -2.1200400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ST16", - "ref": "ST16 1617", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 344900754, - "lat": 51.8877407, - "lon": 0.8916095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO3 2D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 344919095, - "lat": 51.1164506, - "lon": -0.8210020, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "old_post_box:type": "wall", - "old_royal_cypher": "GVIR", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344941420, - "lat": 52.2453638, - "lon": -0.8438336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344942025, - "lat": 52.2409790, - "lon": -0.8536917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 195", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 344958697, - "lat": 51.6639601, - "lon": -0.0931411, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EN2 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 344964877, - "lat": 51.3010996, - "lon": 0.4192230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 06:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344964964, - "lat": 51.3042072, - "lon": 0.4292866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME19 351D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344965025, - "lat": 51.2983302, - "lon": 0.4271490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME19", - "ref": "ME19 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 344965107, - "lat": 51.3039260, - "lon": 0.4228470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "ME19", - "ref": "ME19 57D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 344965133, - "lat": 51.3013796, - "lon": 0.4252742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME19 340", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 344983568, - "lat": 53.2364027, - "lon": -4.2081729, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345014713, - "lat": 57.4389628, - "lon": -4.5131125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV4 138", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 345018808, - "lat": 57.4708138, - "lon": -4.4852707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV4 316", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345024343, - "lat": 53.7953036, - "lon": -1.5476335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS1 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345024346, - "lat": 53.7932536, - "lon": -1.5459827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 49" - } -}, -{ - "type": "node", - "id": 345174151, - "lat": 50.8140815, - "lon": -3.7661642, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 345177610, - "lat": 51.5376004, - "lon": -0.1068450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345181935, - "lat": 51.4625484, - "lon": -2.1595573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "mapillary": "251432976733395", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN14 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-12-22" - } -}, -{ - "type": "node", - "id": 345190040, - "lat": 53.2646025, - "lon": -4.0999257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL58 256", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 345190821, - "lat": 51.7731672, - "lon": 1.1126216, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO15 86" - } -}, -{ - "type": "node", - "id": 345207240, - "lat": 51.3719344, - "lon": 0.5242515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME4 253", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 345242178, - "lat": 51.6971521, - "lon": -1.1813787, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "OX44 389", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345248364, - "lat": 51.7180962, - "lon": 0.5018462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345253868, - "lat": 51.9021303, - "lon": 0.4373627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 345255347, - "lat": 52.9246020, - "lon": -1.1022360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00; Su off", - "note": "inside the Morrison's store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NG2", - "ref": "NG2 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345257360, - "lat": 52.9333400, - "lon": -1.1285496, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-07", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "indoor": "yes", - "post_box:manufacturer": "Broadwater Mouldings Limited", - "post_box:type": "indoor_pillar", - "ref": "NG2 535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345268091, - "lat": 53.2637819, - "lon": -4.0903886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL58 154", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 345302171, - "lat": 51.7477086, - "lon": -2.2322745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL5", - "ref": "GL5 118", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345302217, - "lat": 51.7529844, - "lon": -2.2485962, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL5", - "ref": "GL5 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345302291, - "lat": 51.7482791, - "lon": -2.2480313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345302462, - "lat": 51.7456518, - "lon": -2.2510064, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 248" - } -}, -{ - "type": "node", - "id": 345302720, - "lat": 51.7410362, - "lon": -2.2586283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL5 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345304293, - "lat": 51.3875941, - "lon": 0.5059120, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ME1 4241;ME1 4242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345304584, - "lat": 51.3415853, - "lon": 0.6076631, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME8 381", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME8", - "ref": "ME8 381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-14" - } -}, -{ - "type": "node", - "id": 345312086, - "lat": 53.3640315, - "lon": -1.5099227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 287", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345356390, - "lat": 53.3625403, - "lon": -1.5143402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 605", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345364306, - "lat": 53.3567688, - "lon": -1.5312197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S11", - "ref": "S11 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345368665, - "lat": 53.3549819, - "lon": -1.5374328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S11", - "ref": "S11 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345368667, - "lat": 53.3552796, - "lon": -1.5267163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "postal_code": "S11", - "ref": "S11 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345374471, - "lat": 52.3987105, - "lon": -1.5224067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345374718, - "lat": 52.3847496, - "lon": -1.5144660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV3", - "ref": "CV3 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345380420, - "lat": 51.5688373, - "lon": -0.0085507, - "tags": { - "addr:housenumber": "601", - "addr:street": "High Road Leyton", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345380579, - "lat": 51.5791084, - "lon": -0.0126755, - "tags": { - "addr:housenumber": "77", - "addr:street": "Grove Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 23", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 345404971, - "lat": 52.3931934, - "lon": -1.5118923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV3", - "ref": "CV3 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345414279, - "lat": 53.3793710, - "lon": -2.5537360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 225", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345429643, - "lat": 53.3836871, - "lon": -2.4778005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA13 28", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345433291, - "lat": 51.8111386, - "lon": -2.2308489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "52.0367432", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL4", - "ref": "GL4 346" - } -}, -{ - "type": "node", - "id": 345436529, - "lat": 51.7450324, - "lon": -2.2314685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345438141, - "lat": 51.4311663, - "lon": 0.8071380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 61" - } -}, -{ - "type": "node", - "id": 345438317, - "lat": 51.4236113, - "lon": 0.8107743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345438674, - "lat": 51.7259996, - "lon": -2.1970232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL5", - "ref": "GL5 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345438675, - "lat": 51.7249180, - "lon": -2.1993210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 345438677, - "lat": 51.7275638, - "lon": -2.2020275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL5", - "ref": "GL5 216", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345438681, - "lat": 51.7382853, - "lon": -2.2062758, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 14", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345438683, - "lat": 51.7404007, - "lon": -2.2045151, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 225", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 345443478, - "lat": 51.7411642, - "lon": -2.2113139, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL5 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 345444685, - "lat": 51.7337399, - "lon": -2.2007483, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 136", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 345534794, - "lat": 51.7728392, - "lon": 1.1047671, - "tags": { - "amenity": "post_box", - "ref": "CO15 87" - } -}, -{ - "type": "node", - "id": 345538895, - "lat": 51.4204527, - "lon": 0.8049231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "ME12", - "ref": "ME12 50D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 345540477, - "lat": 51.7726867, - "lon": 1.0994033, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 2JG", - "ref": "CO15 132" - } -}, -{ - "type": "node", - "id": 345545016, - "lat": 52.9341912, - "lon": -1.1170530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30; Su off", - "post_box:type": "pillar", - "ref": "NG2 289", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345559548, - "lat": 53.0770169, - "lon": -1.6242421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 330", - "royal_cypher": "EIIR", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 345583090, - "lat": 52.9388357, - "lon": -1.1269930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "NG2", - "ref": "NG2 150D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345586454, - "lat": 52.9366202, - "lon": -1.1246338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "NG2", - "ref": "NG2 180D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345587295, - "lat": 52.9319258, - "lon": -1.1204036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "NG2", - "ref": "NG2 226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345589221, - "lat": 52.9327408, - "lon": -1.1277984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "NG2", - "ref": "NG2 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345628022, - "lat": 51.3636984, - "lon": -0.4452126, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "KT13", - "ref": "KT13 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 345628099, - "lat": 51.3445028, - "lon": -0.4755317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "KT13", - "ref": "KT13 533", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345628102, - "lat": 51.3929815, - "lon": -0.3048191, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "KT6", - "ref": "KT6 251;KT6 2511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345628108, - "lat": 51.3996307, - "lon": -0.3049501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KT1", - "ref": "KT1 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 345707566, - "lat": 53.2486866, - "lon": -2.6430080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "WA6 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345744515, - "lat": 52.4080634, - "lon": -1.9164734, - "tags": { - "amenity": "post_box", - "ref": "B30 231" - } -}, -{ - "type": "node", - "id": 345769549, - "lat": 54.0146408, - "lon": -1.5279867, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 345775607, - "lat": 51.3664677, - "lon": 0.6128231, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 218", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345775697, - "lat": 51.3649687, - "lon": 0.6217768, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 83", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345792094, - "lat": 53.3846980, - "lon": -2.4948403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 25", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 345795634, - "lat": 53.3838829, - "lon": -2.4892992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 275", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 345798476, - "lat": 51.3420858, - "lon": 0.5830206, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 192" - } -}, -{ - "type": "node", - "id": 345799801, - "lat": 51.3386538, - "lon": 0.5851417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME8", - "ref": "ME8 276D" - } -}, -{ - "type": "node", - "id": 345819329, - "lat": 53.3925045, - "lon": -2.4490647, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA13 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345826542, - "lat": 53.3552551, - "lon": -1.5073090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 662", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 345827790, - "lat": 51.6908501, - "lon": -1.9373733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL7", - "ref": "GL7 107" - } -}, -{ - "type": "node", - "id": 345830962, - "lat": 53.3507785, - "lon": -1.5024011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 638", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345831136, - "lat": 51.3393465, - "lon": 0.5912114, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 419" - } -}, -{ - "type": "node", - "id": 345832771, - "lat": 51.3414267, - "lon": 0.6020907, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME8 386", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME8", - "ref": "ME8 386D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 345834006, - "lat": 51.5140134, - "lon": -1.7356705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2016-08-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345837528, - "lat": 51.3452629, - "lon": 0.6023718, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME8 387", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME8", - "ref": "ME8 387D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 345843961, - "lat": 51.7835386, - "lon": -2.1943015, - "tags": { - "amenity": "post_box", - "postal_code": "GL6", - "ref": "GL6 239" - } -}, -{ - "type": "node", - "id": 345846329, - "lat": 51.3634776, - "lon": 0.5863732, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 242" - } -}, -{ - "type": "node", - "id": 345846970, - "lat": 51.3594207, - "lon": 0.5853281, - "tags": { - "amenity": "post_box", - "ref": "ME8 219" - } -}, -{ - "type": "node", - "id": 345848450, - "lat": 51.3527825, - "lon": 0.5857058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "ME8", - "ref": "ME8 9811;ME8 9822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345848793, - "lat": 52.7128758, - "lon": -2.7338919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "mapillary": "681933382581610", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SY2", - "ref": "SY2 418" - } -}, -{ - "type": "node", - "id": 345850919, - "lat": 51.3466073, - "lon": 0.5851904, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "ME8", - "ref": "ME8 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345858638, - "lat": 51.4110739, - "lon": 0.7934798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 33" - } -}, -{ - "type": "node", - "id": 345864816, - "lat": 51.4863939, - "lon": -0.1198482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE11", - "ref": "SE11 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345865903, - "lat": 52.7131902, - "lon": -2.7497666, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 800" - } -}, -{ - "type": "node", - "id": 345869497, - "lat": 53.3439005, - "lon": -1.5008777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S7", - "ref": "S7 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 345871846, - "lat": 53.3468010, - "lon": -1.5040967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S7", - "ref": "S7 566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345873725, - "lat": 51.4956764, - "lon": -0.1145113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-19", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "LHS ref is the 152 which is not usual way round", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 152;SE1 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 345877311, - "lat": 53.3500233, - "lon": -1.5046921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 739", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 345877341, - "lat": 53.3533661, - "lon": -1.5101274, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "postal_code": "S11", - "ref": "S11 486", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345877346, - "lat": 53.3550959, - "lon": -1.5125964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 308", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 345878434, - "lat": 51.4229042, - "lon": 0.7927385, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 48" - } -}, -{ - "type": "node", - "id": 345878624, - "lat": 51.4345337, - "lon": 0.7994077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "ME12", - "ref": "ME12 13" - } -}, -{ - "type": "node", - "id": 345878661, - "lat": 51.4411442, - "lon": 0.7593020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 24" - } -}, -{ - "type": "node", - "id": 345879311, - "lat": 51.2674160, - "lon": -1.0877413, - "tags": { - "amenity": "post_box", - "note": "this post box has no ref", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 345882456, - "lat": 51.2651981, - "lon": -1.0882345, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 49" - } -}, -{ - "type": "node", - "id": 345882458, - "lat": 51.2648582, - "lon": -1.0869853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "postal_code": "RG21", - "ref": "RG21 1" - } -}, -{ - "type": "node", - "id": 345887767, - "lat": 51.5071595, - "lon": -0.1254806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2N 73;WC2N 273", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 346103420, - "lat": 51.3485536, - "lon": 0.5944986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "postal_code": "ME8", - "ref": "ME8 385", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 346134545, - "lat": 51.4819407, - "lon": -2.5250132, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 49" - } -}, -{ - "type": "node", - "id": 346138968, - "lat": 51.7591439, - "lon": -1.2673369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 346168082, - "lat": 51.5728461, - "lon": -0.0083362, - "tags": { - "addr:housenumber": "736", - "addr:street": "High Road Leyton", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-03-17", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346208616, - "lat": 52.7149918, - "lon": -2.7442651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SY1", - "ref": "SY1 159" - } -}, -{ - "type": "node", - "id": 346287586, - "lat": 53.9956279, - "lon": -1.5337655, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 346297163, - "lat": 51.3822199, - "lon": 0.5166840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME1 161" - } -}, -{ - "type": "node", - "id": 346298428, - "lat": 51.3734692, - "lon": 0.4800142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 365D" - } -}, -{ - "type": "node", - "id": 346298497, - "lat": 51.3753024, - "lon": 0.4839569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 372D" - } -}, -{ - "type": "node", - "id": 346298703, - "lat": 51.3866713, - "lon": 0.4984853, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 304" - } -}, -{ - "type": "node", - "id": 346298837, - "lat": 51.3801691, - "lon": 0.4952802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 157D" - } -}, -{ - "type": "node", - "id": 346298852, - "lat": 51.3829942, - "lon": 0.4988057, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 169" - } -}, -{ - "type": "node", - "id": 346298898, - "lat": 51.3863273, - "lon": 0.5005120, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "ME1", - "ref": "ME1 119" - } -}, -{ - "type": "node", - "id": 346299033, - "lat": 51.3856053, - "lon": 0.5038628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "postal_code": "ME1", - "ref": "ME1 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 346299073, - "lat": 51.3827924, - "lon": 0.5023643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 346299154, - "lat": 51.3760232, - "lon": 0.4998038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 180", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 346299423, - "lat": 51.3648378, - "lon": 0.4962526, - "tags": { - "amenity": "post_box", - "ref": "ME1 108" - } -}, -{ - "type": "node", - "id": 346299438, - "lat": 51.3799546, - "lon": 0.4913445, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 447" - } -}, -{ - "type": "node", - "id": 346299454, - "lat": 51.3871226, - "lon": 0.5062099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:apertures": "1", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "ME1 165", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 346299595, - "lat": 51.3614334, - "lon": 0.5043872, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 317" - } -}, -{ - "type": "node", - "id": 346299619, - "lat": 51.3538331, - "lon": 0.5007497, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 162" - } -}, -{ - "type": "node", - "id": 346299653, - "lat": 51.3600241, - "lon": 0.5072084, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 6" - } -}, -{ - "type": "node", - "id": 346299794, - "lat": 51.3683106, - "lon": 0.5089298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ME1", - "ref": "ME1 235D" - } -}, -{ - "type": "node", - "id": 346299851, - "lat": 51.3776658, - "lon": 0.5072371, - "tags": { - "amenity": "post_box", - "postal_code": "ME1", - "ref": "ME1 163" - } -}, -{ - "type": "node", - "id": 346301227, - "lat": 51.3808693, - "lon": 0.5254149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME4 4003" - } -}, -{ - "type": "node", - "id": 346305624, - "lat": 51.3917057, - "lon": 0.5267249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME4 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346308684, - "lat": 51.4260192, - "lon": -0.7448850, - "tags": { - "amenity": "post_box", - "fixme": "location on private property unlikely. maybe on the main road?" - } -}, -{ - "type": "node", - "id": 346310030, - "lat": 51.4137509, - "lon": -0.9497567, - "tags": { - "amenity": "post_box", - "mapillary": "566801824425755", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-11-01" - } -}, -{ - "type": "node", - "id": 346332785, - "lat": 51.5085980, - "lon": -0.1250276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "right-hand apperture (74) is closed 12/06/23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2N 74;WC2N 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346332990, - "lat": 51.5086545, - "lon": -0.1239914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "WC2N 75;WC2N 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 346335541, - "lat": 52.3569351, - "lon": -1.9641976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B48 851", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346336222, - "lat": 51.3799021, - "lon": 0.5252909, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "lastcheck": "2023-01-03", - "mapillary": "338058101071113", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 35", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2019-09-14" - } -}, -{ - "type": "node", - "id": 346340924, - "lat": 51.3770173, - "lon": 0.5309660, - "tags": { - "amenity": "post_box", - "ref": "ME4 11" - } -}, -{ - "type": "node", - "id": 346345266, - "lat": 52.3515955, - "lon": -1.9600903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B48", - "ref": "B48 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346347978, - "lat": 51.5550163, - "lon": -3.1593752, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 346363490, - "lat": 52.2510208, - "lon": -0.2611022, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346367372, - "lat": 50.4743205, - "lon": -3.5231083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 346378495, - "lat": 52.3326428, - "lon": -0.2990573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE28 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346380146, - "lat": 52.5561191, - "lon": -2.1489465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WV4 274D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 346383780, - "lat": 52.3675961, - "lon": -0.4677406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE28 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346392187, - "lat": 53.2385801, - "lon": -4.1435479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL59 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 346394317, - "lat": 52.3099823, - "lon": -0.4554471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE28 49" - } -}, -{ - "type": "node", - "id": 346409504, - "lat": 52.4166120, - "lon": -0.5653117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 59" - } -}, -{ - "type": "node", - "id": 346420971, - "lat": 54.2099390, - "lon": -2.5786715, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 130" - } -}, -{ - "type": "node", - "id": 346426304, - "lat": 52.3703773, - "lon": -0.4235511, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE28 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 346427788, - "lat": 52.3716529, - "lon": -0.4087187, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE28 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 346582387, - "lat": 51.3645212, - "lon": 0.6058230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME8", - "ref": "ME8 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346582507, - "lat": 51.3687023, - "lon": 0.6057934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ME8 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346716045, - "lat": 55.8663292, - "lon": -4.2896118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "G3 129" - } -}, -{ - "type": "node", - "id": 346863968, - "lat": 52.9460145, - "lon": -1.2254565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 346877779, - "lat": 52.9488868, - "lon": -1.2273874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "name": "Brookhill Drive", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 287", - "ref:GB:uprn": "10015472986", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 346878082, - "lat": 51.3675668, - "lon": 0.6241627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ME8", - "ref": "ME8 437D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346886093, - "lat": 51.9357875, - "lon": 0.5861513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO9 68", - "source": "gps" - } -}, -{ - "type": "node", - "id": 346886095, - "lat": 51.9315119, - "lon": 0.5330191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 346889442, - "lat": 52.9526592, - "lon": -1.2275343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 255", - "ref:GB:uprn": "10015280027", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 346890900, - "lat": 51.3683056, - "lon": 0.6112537, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 368", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346894525, - "lat": 51.3717254, - "lon": 0.6099267, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346897237, - "lat": 51.9392266, - "lon": 0.5896812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps" - } -}, -{ - "type": "node", - "id": 346899279, - "lat": 51.9407997, - "lon": 0.5939527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "gps" - } -}, -{ - "type": "node", - "id": 346900598, - "lat": 52.9526541, - "lon": -1.2216721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "NG8", - "ref": "NG8 261", - "ref:GB:uprn": "10015838012", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 346903932, - "lat": 52.4805236, - "lon": -2.0474292, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B65 749", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346909910, - "lat": 51.9447426, - "lon": 0.6425057, - "tags": { - "amenity": "post_box", - "mapillary": "2585276758445583", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CO9 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "gps", - "survey:date": "2019-10-26" - } -}, -{ - "type": "node", - "id": 346953085, - "lat": 52.4934170, - "lon": -2.0422059, - "tags": { - "amenity": "post_box", - "ref": "B65 1158", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346965211, - "lat": 52.4878693, - "lon": -2.0434730, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-16", - "post_box:type": "pillar", - "ref": "B65 885", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346965233, - "lat": 52.4807171, - "lon": -2.0318109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B65 1105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346974082, - "lat": 52.3716330, - "lon": -1.9949590, - "tags": { - "amenity": "post_box", - "postal_code": "B45", - "ref": "B45 739", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346986075, - "lat": 52.3522065, - "lon": -1.9659398, - "tags": { - "amenity": "post_box", - "postal_code": "B48", - "ref": "B48 785", - "source": "survey" - } -}, -{ - "type": "node", - "id": 346987902, - "lat": 52.4583916, - "lon": -1.9391705, - "tags": { - "amenity": "post_box", - "ref": "B15 167" - } -}, -{ - "type": "node", - "id": 347000814, - "lat": 53.4745312, - "lon": -2.2413858, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-10", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "M1 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 347069685, - "lat": 52.2484385, - "lon": -0.8255107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347143184, - "lat": 51.3288600, - "lon": -1.0886022, - "tags": { - "amenity": "post_box", - "mapillary": "730578957899528", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 202", - "survey:date": "2021-10-16" - } -}, -{ - "type": "node", - "id": 347168000, - "lat": 51.2735776, - "lon": 0.5087180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME16", - "ref": "ME16 93D" - } -}, -{ - "type": "node", - "id": 347168859, - "lat": 51.3740389, - "lon": -1.2806451, - "tags": { - "amenity": "post_box", - "note": "franked mail only", - "old_ref": "NY 320", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG19", - "ref": "RG19 320" - } -}, -{ - "type": "node", - "id": 347264636, - "lat": 51.3670889, - "lon": 0.5927935, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 167", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347265341, - "lat": 51.3708694, - "lon": 0.5999520, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 377", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347265413, - "lat": 51.3787365, - "lon": 0.5824510, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 339", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347266491, - "lat": 51.3832816, - "lon": 0.5843983, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ME7", - "ref": "ME7 269", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347269925, - "lat": 51.7593518, - "lon": -1.2652772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX2", - "ref": "OX2 65D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 347269958, - "lat": 53.0368195, - "lon": -2.1857616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "ST6", - "ref": "ST6 662", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347302151, - "lat": 51.3833790, - "lon": 0.5143126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME1 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347312617, - "lat": 55.0065065, - "lon": -1.6523989, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 347315036, - "lat": 53.7196223, - "lon": -0.4537897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HU13 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347315047, - "lat": 53.7204859, - "lon": -0.4480137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HU13 91D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 347315057, - "lat": 53.7178531, - "lon": -0.4413507, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 347315082, - "lat": 53.7148441, - "lon": -0.4433878, - "tags": { - "amenity": "post_box", - "fixme": "Where has this box been relocated to following the erection of the new flood wall", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 347315224, - "lat": 53.7193483, - "lon": -0.4229646, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 347315230, - "lat": 53.7193325, - "lon": -0.4229466, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 347315238, - "lat": 53.7209159, - "lon": -0.4291826, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 347315283, - "lat": 53.7260691, - "lon": -0.4418661, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 347315298, - "lat": 53.7296119, - "lon": -0.4234403, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 347315320, - "lat": 53.7300944, - "lon": -0.4423888, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 347319362, - "lat": 53.2046150, - "lon": -2.8685813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 380D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 347319621, - "lat": 53.1971532, - "lon": -2.8821808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:30", - "description": "The left of three boxes at the same location, this QEII Type K box CH1 4300 is on Station Road, Chester", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 4300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box 1, Station Road, Chester.jpg" - } -}, -{ - "type": "node", - "id": 347340620, - "lat": 51.3523690, - "lon": 0.6008595, - "tags": { - "amenity": "post_box", - "ref": "ME8 418" - } -}, -{ - "type": "node", - "id": 347341103, - "lat": 51.3521468, - "lon": 0.5967755, - "tags": { - "amenity": "post_box", - "ref": "ME8 367" - } -}, -{ - "type": "node", - "id": 347348020, - "lat": 51.3543277, - "lon": 0.5802112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 237D" - } -}, -{ - "type": "node", - "id": 347350943, - "lat": 50.8517466, - "lon": 0.0824584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN8 559" - } -}, -{ - "type": "node", - "id": 347354942, - "lat": 51.3581857, - "lon": 0.5965172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME8 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347355244, - "lat": 50.8529210, - "lon": 0.1068509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 556" - } -}, -{ - "type": "node", - "id": 347355273, - "lat": 50.8400289, - "lon": 0.1387313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN26 1031", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347374825, - "lat": 52.4034897, - "lon": -1.5294755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 347374827, - "lat": 52.4053336, - "lon": -1.5293981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347394615, - "lat": 52.1548407, - "lon": -2.5794307, - "tags": { - "amenity": "post_box", - "postal_code": "HR7", - "ref": "HR7 424" - } -}, -{ - "type": "node", - "id": 347398344, - "lat": 51.7108856, - "lon": 0.5004568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 389", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 347399532, - "lat": 51.8566139, - "lon": -2.3074074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 08:00", - "note": "Ref was wrong, corrected", - "post_box:type": "lamp", - "ref": "GL2 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 347400383, - "lat": 51.3459685, - "lon": 0.5791530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 213D" - } -}, -{ - "type": "node", - "id": 347407049, - "lat": 51.3648827, - "lon": 0.5513846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "ME5 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347410917, - "lat": 50.7130774, - "lon": -3.0746350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347411329, - "lat": 50.7186669, - "lon": -3.0736572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 604D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347416725, - "lat": 51.5042133, - "lon": -0.0907096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 36;SE1 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 347480964, - "lat": 55.9480520, - "lon": -3.9797692, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 633" - } -}, -{ - "type": "node", - "id": 347481346, - "lat": 55.9462984, - "lon": -3.9772277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 347527340, - "lat": 51.2293604, - "lon": -1.3396728, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG28", - "ref": "RG28 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "type_k" - } -}, -{ - "type": "node", - "id": 347527371, - "lat": 51.2290043, - "lon": -1.3384223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "last_checked": "2021-06-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG28", - "ref": "RG28 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source_1": "using this postbox" - } -}, -{ - "type": "node", - "id": 347532486, - "lat": 52.7051044, - "lon": -2.7423133, - "tags": { - "amenity": "post_box", - "postal_code": "SY3", - "ref": "SY3 265", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347532898, - "lat": 51.2315455, - "lon": -1.3342032, - "tags": { - "amenity": "post_box", - "mapillary": "840439183497382", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "RG28", - "ref": "RG28 102", - "survey:date": "2019-09-14" - } -}, -{ - "type": "node", - "id": 347537121, - "lat": 53.0008919, - "lon": -1.1311327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 424", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Local" - } -}, -{ - "type": "node", - "id": 347553059, - "lat": 51.4123013, - "lon": -3.4869825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF61 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347557455, - "lat": 51.6139386, - "lon": -3.8150747, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 347611134, - "lat": 53.7393410, - "lon": -0.1878723, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 347616873, - "lat": 53.7394502, - "lon": -0.1960366, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 347644140, - "lat": 53.4020633, - "lon": -2.9742195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR type C post box L1 694 outside former Leece Street Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L1 694", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Leece Street Post Office.jpg" - } -}, -{ - "type": "node", - "id": 347682731, - "lat": 52.4314777, - "lon": -0.2759949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE28 61" - } -}, -{ - "type": "node", - "id": 347718397, - "lat": 51.4208175, - "lon": 0.2243430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "DA2 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 347739253, - "lat": 51.9567415, - "lon": -2.6400995, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR1 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347750476, - "lat": 57.4761638, - "lon": -4.4120901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV5 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 347756405, - "lat": 57.4717347, - "lon": -4.3905125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV5 81", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347759411, - "lat": 53.2219379, - "lon": -2.9212315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347759456, - "lat": 57.4561130, - "lon": -4.4138612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV5 35", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347768687, - "lat": 57.4148592, - "lon": -4.4626300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "IV4 156", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347770232, - "lat": 57.4382150, - "lon": -4.4929285, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-20", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV4 155", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347774589, - "lat": 57.4612237, - "lon": -4.3733843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "IV3 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347794436, - "lat": 52.4186710, - "lon": -0.3337964, - "tags": { - "amenity": "post_box", - "ref": "PE28 175" - } -}, -{ - "type": "node", - "id": 347798677, - "lat": 51.2766921, - "lon": -1.0946835, - "tags": { - "FIXME": "approximate", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG21", - "ref": "RG21 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347799137, - "lat": 53.8534980, - "lon": -1.8341939, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD16 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347808361, - "lat": 52.4415672, - "lon": -0.2849379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 44" - } -}, -{ - "type": "node", - "id": 347809405, - "lat": 51.8662992, - "lon": -2.3482814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 347809835, - "lat": 51.8749208, - "lon": -2.4029728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "mapillary": "1039932201085605", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 347810094, - "lat": 51.9237212, - "lon": -2.4078465, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 347832784, - "lat": 52.3862060, - "lon": -0.1920966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 347997214, - "lat": 51.1217109, - "lon": 0.9489969, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 121" - } -}, -{ - "type": "node", - "id": 348001766, - "lat": 51.8104503, - "lon": 1.0282236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "pillar", - "ref": "CO7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348003945, - "lat": 52.7132143, - "lon": -2.7497481, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "SY1", - "ref": "SY1 799" - } -}, -{ - "type": "node", - "id": 348048258, - "lat": 51.3768012, - "lon": 0.5887774, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 347", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348048316, - "lat": 51.3738893, - "lon": 0.5879673, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 333", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348048479, - "lat": 51.3739084, - "lon": 0.5936903, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 331", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348051691, - "lat": 53.1699346, - "lon": -1.4109651, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "note": "Franked Mail Only" - } -}, -{ - "type": "node", - "id": 348052513, - "lat": 51.3695225, - "lon": 0.5904069, - "tags": { - "amenity": "post_box", - "postal_code": "ME8", - "ref": "ME8 279", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348061534, - "lat": 53.1882643, - "lon": -1.3543370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S42 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348105379, - "lat": 51.7188628, - "lon": 0.4987440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 08", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 348135389, - "lat": 53.3996484, - "lon": -2.9903782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Liverpool Special post box L3 13 at Albert Dock, Liverpool.", - "drive_through": "no", - "manufacturer": "Cochrane", - "note": "This is one of the original Liverpool \"Special\" Posting Boxes cast in 1863 by Messrs Cochrane & Co of Dudley. The unique design was authorised and introduced to meet heavy and special posting requirements found in certain parts of the city.", - "old_ref": "L3 13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "liverpool_special", - "post_box:type": "pillar", - "ref": "L3 13D", - "royal_cypher": "no", - "source": "survey", - "start_date": "1987-09", - "wikimedia_commons": "File:Liverpool Special, Albert Dock.jpg" - } -}, -{ - "type": "node", - "id": 348147268, - "lat": 53.4085186, - "lon": -2.9788811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR Type C post box L1 12 by Meadow Foundry outside Lime Street Station.", - "manufacturer": "Meadow Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Lime Street.jpg" - } -}, -{ - "type": "node", - "id": 348158646, - "lat": 52.3742659, - "lon": -1.2593071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CV21", - "ref": "CV21 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 348176010, - "lat": 53.4063316, - "lon": -2.9928278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa off", - "description": "Described as a private posting box, but operated by Royal Mail, this post box L2 217 is inside India Buildings, Water Street, Liverpool.", - "historic_operator": "India Buildings", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "L2 217", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box, India Buildings.jpg" - } -}, -{ - "type": "node", - "id": 348176011, - "lat": 53.4044709, - "lon": -2.9809425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "Business post box L1 103 next to the Lyceum, Liverpool; L1 100 is to its left.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L1 103", - "royal_cypher": "no", - "wikimedia_commons": "File:Business post box at Lyceum, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 348176013, - "lat": 53.4049588, - "lon": -2.9826082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR double-type G post box L1 324 opposite junction with Parker Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L1 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L1 342 on Church Street.jpg" - } -}, -{ - "type": "node", - "id": 348176014, - "lat": 53.4061605, - "lon": -2.9816257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR double aperture type C post box L1000 & L1001 by Machan on Houghton Street, Liverpool.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L1 1000;L1 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L1 1000 & 1001 on Houghton Street.jpg" - } -}, -{ - "type": "node", - "id": 348176015, - "lat": 53.4060971, - "lon": -2.9815535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "Business (FMO) box L1 36, cypherless, on Houghton Street, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L1 36", - "royal_cypher": "no", - "wikimedia_commons": "File:Business post box on Houghton Street.jpg" - } -}, -{ - "type": "node", - "id": 348176016, - "lat": 53.4073300, - "lon": -2.9862476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "QE II Type K post box L1 158 on Victoria Street at the rear entrance to Metquarter. Not to be confused with others further down, which are in L2 postcode.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L1 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:L1 post box, Victoria Street.jpg" - } -}, -{ - "type": "node", - "id": 348176017, - "lat": 53.4067321, - "lon": -2.9875460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "Double G type L2 742 on Victoria Street, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L2 742", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box L2 742 on Victoria Street, Liverpool" - } -}, -{ - "type": "node", - "id": 348176018, - "lat": 53.4066942, - "lon": -2.9876255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "description": "Business post box L2 740 opposite Temple Street on Victoria Street, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L2 740", - "royal_cypher": "no", - "wikimedia_commons": "File:Business post box, Victoria Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 348176019, - "lat": 53.4066315, - "lon": -2.9926158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "description": "EIIR Type G (double) post box L3 212 on Water Street near Rumford Street- confusingly, the business box next to it is in the L2 postcode area.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L3 212;L3 1212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box L3 212, Water Street.jpg" - } -}, -{ - "type": "node", - "id": 348176020, - "lat": 53.4066091, - "lon": -2.9926908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "description": "Business post box L2 219 on Water Street near corner of Rumford Street, and confusingly, it is right next to L3 212.", - "opening_hours": "Mo-Fr 15:30-18:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L2 219", - "royal_cypher": "no", - "wikimedia_commons": "File:FMO post box, Water Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 348176322, - "lat": 53.4006844, - "lon": -2.9735655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Double C type post box L1 150 by Carron Company on Rodney Street, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L1 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Rodney Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 348176324, - "lat": 53.4049671, - "lon": -2.9858191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "image": "File:Post box on Paradise Street, Liverpool 2021-1.jpg", - "manufacturer": "Derby Castings Ltd of Derby", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_e", - "post_box:type": "pillar", - "ref": "L1 421", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:Post box on Paradise Street, Liverpool" - } -}, -{ - "type": "node", - "id": 348176325, - "lat": 53.4054004, - "lon": -2.9874310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L2 74;L2 7400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L2 74 & 7400, Lord Street.jpg" - } -}, -{ - "type": "node", - "id": 348291920, - "lat": 51.2989065, - "lon": -0.6453369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "448564437444306", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU24 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 348293068, - "lat": 51.2865395, - "lon": -0.6356753, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU24 120" - } -}, -{ - "type": "node", - "id": 348304914, - "lat": 52.3789306, - "lon": -1.2495684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CV21", - "ref": "CV21 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 348304915, - "lat": 52.3790503, - "lon": -1.2495332, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-01-22", - "old_ref": "CV21 15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CV21", - "ref": "CV21 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348304917, - "lat": 52.3762956, - "lon": -1.2553223, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348304918, - "lat": 52.3783527, - "lon": -1.2648740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348305269, - "lat": 52.3757413, - "lon": -1.2756840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348305655, - "lat": 52.3750591, - "lon": -1.2670767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 348369763, - "lat": 51.6295894, - "lon": -2.3983586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "713614687169764", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 18", - "survey:date": "2023-02-08" - } -}, -{ - "type": "node", - "id": 348377073, - "lat": 51.4032010, - "lon": -1.3245546, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG14", - "ref": "RG14 26" - } -}, -{ - "type": "node", - "id": 348401352, - "lat": 52.0784617, - "lon": -1.3461975, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 348403095, - "lat": 51.9082194, - "lon": -0.6569105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "ref": "LU7 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348405742, - "lat": 51.9110186, - "lon": -0.6545900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU7 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348408009, - "lat": 51.9150560, - "lon": -0.6566384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "LU7 87", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348414727, - "lat": 53.4049633, - "lon": -2.9877686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Indoor box at the Post Office on the first floor of WH Smith, 1 - 3 South John Street, Liverpool.", - "location": "1st floor of WH Smith", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_box", - "ref": "L1 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L1 20 at WH Smith, South John Street.jpg" - } -}, -{ - "type": "node", - "id": 348426378, - "lat": 51.9154480, - "lon": -0.6592151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "LU7 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348437905, - "lat": 51.5521136, - "lon": 0.0461201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E12 13", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348449828, - "lat": 53.3492918, - "lon": -1.5136317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "4 screw holes in back.", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 984", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348462468, - "lat": 51.9153313, - "lon": -0.6643766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LU7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348493440, - "lat": 51.5526435, - "lon": 0.0600662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348517637, - "lat": 52.5905967, - "lon": -1.9680029, - "tags": { - "amenity": "post_box", - "postal_code": "WS4", - "ref": "WS4 83" - } -}, -{ - "type": "node", - "id": 348517674, - "lat": 52.5925106, - "lon": -1.9687626, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-23", - "postal_code": "WS4", - "ref": "WS4 82" - } -}, -{ - "type": "node", - "id": 348519815, - "lat": 51.5550263, - "lon": 0.0692078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "mapillary": "995243457816805", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IG1", - "ref": "IG1 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-25" - } -}, -{ - "type": "node", - "id": 348522712, - "lat": 53.3438955, - "lon": -1.5057282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 496", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348524996, - "lat": 53.3496836, - "lon": -1.5081910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "S11", - "ref": "S11 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348533352, - "lat": 53.3545100, - "lon": -1.5198341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348542219, - "lat": 53.3515148, - "lon": -1.5240320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 584D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348552043, - "lat": 53.3485172, - "lon": -1.5224266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "postal_code": "S11", - "ref": "S11 388", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348561387, - "lat": 52.5939839, - "lon": -1.9622979, - "tags": { - "amenity": "post_box", - "postal_code": "WS4", - "ref": "WS4 324" - } -}, -{ - "type": "node", - "id": 348561429, - "lat": 52.5920201, - "lon": -1.9594676, - "tags": { - "amenity": "post_box", - "postal_code": "WS4", - "ref": "WS4 48" - } -}, -{ - "type": "node", - "id": 348583812, - "lat": 51.3960110, - "lon": 0.5482921, - "tags": { - "amenity": "post_box", - "ref": "ME7 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348586696, - "lat": 54.6367543, - "lon": -2.9795983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348594477, - "lat": 53.3427284, - "lon": -1.5188525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S8 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348605373, - "lat": 51.3976666, - "lon": 0.5352586, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME4 73", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME4 73D", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 348615598, - "lat": 51.3904822, - "lon": 0.5031879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "ME1 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348615605, - "lat": 51.3908698, - "lon": 0.5028149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "green", - "note": "Painted green!", - "post_box:apertures": "1", - "post_box:design": "penfold", - "post_box:manufacturer": "Cochrane Grove & Co, Dudley", - "post_box:type": "pillar", - "ref": "ME1 24D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 348643002, - "lat": 53.3427100, - "lon": -1.5266890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S11 614", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348683796, - "lat": 53.3853162, - "lon": -2.4554401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA13 158", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348777779, - "lat": 53.3732925, - "lon": -2.4603239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 348777786, - "lat": 53.3780608, - "lon": -2.4692306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 374", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 348809537, - "lat": 51.5106066, - "lon": -0.1283025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-08-05", - "description": "Left aperture for stamped; right aperture for franked.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2H 68;WC2H 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 348810113, - "lat": 53.1561365, - "lon": -1.6453509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 978", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 348813045, - "lat": 51.4269881, - "lon": 0.8047596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 38" - } -}, -{ - "type": "node", - "id": 349043556, - "lat": 51.4261100, - "lon": 0.7980991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "ME12", - "ref": "ME12 41D" - } -}, -{ - "type": "node", - "id": 349048949, - "lat": 54.5412988, - "lon": -3.2765266, - "tags": { - "amenity": "post_box", - "ref": "CA13 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349058797, - "lat": 51.4221052, - "lon": 0.8140508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 47" - } -}, -{ - "type": "node", - "id": 349058909, - "lat": 51.4203636, - "lon": 0.8241373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME12", - "ref": "ME12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349067722, - "lat": 51.4132582, - "lon": 0.8722739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 32" - } -}, -{ - "type": "node", - "id": 349080436, - "lat": 51.8600118, - "lon": 1.2851804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CO14 8JZ", - "ref": "CO14 51", - "royal_cypher": "EVIIR", - "survey:date": "2021-10-02", - "wikimedia_commons": "File:Walton on the Naze, postbox № CO14 51, Naze Park Road - geograph.org.uk - 2700943.jpg" - } -}, -{ - "type": "node", - "id": 349080437, - "lat": 51.8578730, - "lon": 1.2785563, - "tags": { - "amenity": "post_box", - "mapillary": "2602026346773568", - "post_box:type": "pillar", - "postal_code": "CO14 8HW", - "ref": "CO14 6", - "survey:date": "2021-03-20" - } -}, -{ - "type": "node", - "id": 349080438, - "lat": 51.8539761, - "lon": 1.2783599, - "tags": { - "amenity": "post_box", - "mapillary": "764774320850194", - "post_box:type": "pillar", - "postal_code": "CO14 8QA", - "ref": "CO14 44", - "survey:date": "2021-03-20" - } -}, -{ - "type": "node", - "id": 349080439, - "lat": 51.8513324, - "lon": 1.2755590, - "tags": { - "amenity": "post_box", - "mapillary": "828666148004409", - "post_box:type": "pillar", - "postal_code": "CO14 8QD", - "ref": "CO14 28", - "survey:date": "2021-03-20" - } -}, -{ - "type": "node", - "id": 349081516, - "lat": 51.8487425, - "lon": 1.2704725, - "tags": { - "amenity": "post_box", - "mapillary": "1126904614930997", - "post_box:type": "pillar", - "ref": "CO14 99", - "survey:date": "2022-10-18" - } -}, -{ - "type": "node", - "id": 349081518, - "lat": 51.8472829, - "lon": 1.2716183, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO14 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349081519, - "lat": 51.8464050, - "lon": 1.2682869, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO14 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349081582, - "lat": 51.8429110, - "lon": 1.2638995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1019654806087147", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO14 8EW", - "ref": "CO14 79", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 349084100, - "lat": 51.8391693, - "lon": 1.2524634, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 0BL", - "ref": "CO13 141" - } -}, -{ - "type": "node", - "id": 349084101, - "lat": 51.8408296, - "lon": 1.2529986, - "tags": { - "amenity": "post_box", - "mapillary": "266710065561792", - "post_box:type": "pillar", - "postal_code": "CO13 0AG", - "ref": "CO13 83", - "survey:date": "2022-01-12" - } -}, -{ - "type": "node", - "id": 349085791, - "lat": 51.8433078, - "lon": 1.2594306, - "tags": { - "amenity": "post_box", - "postal_code": "CO14 8NL", - "ref": "CO14 165" - } -}, -{ - "type": "node", - "id": 349086963, - "lat": 51.8453793, - "lon": 1.2623915, - "tags": { - "amenity": "post_box", - "mapillary": "355638969473621", - "post_box:type": "pillar", - "postal_code": "CO14 8LS", - "ref": "CO14 108", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 349086965, - "lat": 51.8488099, - "lon": 1.2620694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1468257640647559", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO14 8QZ", - "ref": "CO14 71", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 349095324, - "lat": 51.4128348, - "lon": 0.8834519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 26" - } -}, -{ - "type": "node", - "id": 349095334, - "lat": 51.4148043, - "lon": 0.8966952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 45" - } -}, -{ - "type": "node", - "id": 349095469, - "lat": 51.4049042, - "lon": 0.8614822, - "tags": { - "amenity": "post_box", - "fixme": "check ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 60" - } -}, -{ - "type": "node", - "id": 349095504, - "lat": 51.3987283, - "lon": 0.8539298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 42" - } -}, -{ - "type": "node", - "id": 349096209, - "lat": 51.8480836, - "lon": 1.2542060, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO14 8RX", - "ref": "CO14 174", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 349096211, - "lat": 51.8447278, - "lon": 1.2588701, - "tags": { - "amenity": "post_box", - "postal_code": "CO14 8UA", - "ref": "CO14 62" - } -}, -{ - "type": "node", - "id": 349096212, - "lat": 51.8434734, - "lon": 1.2556662, - "tags": { - "amenity": "post_box", - "postal_code": "CO14 8NH", - "ref": "CO14 172" - } -}, -{ - "type": "node", - "id": 349096970, - "lat": 51.8415673, - "lon": 1.2321938, - "tags": { - "amenity": "post_box", - "mapillary": "1120717958409042", - "post_box:type": "pillar", - "postal_code": "CO13 0PN", - "ref": "CO13 95", - "survey:date": "2020-01-05" - } -}, -{ - "type": "node", - "id": 349106567, - "lat": 56.0089396, - "lon": -4.7438843, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "G84 8", - "ref": "G84 3" - } -}, -{ - "type": "node", - "id": 349114895, - "lat": 52.3100851, - "lon": -0.2980496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 47" - } -}, -{ - "type": "node", - "id": 349152220, - "lat": 51.1533757, - "lon": 1.3219628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349154410, - "lat": 51.9199289, - "lon": -0.6744818, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "LU7 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349154705, - "lat": 51.9231632, - "lon": -0.6726337, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "LU7 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349157608, - "lat": 51.9195105, - "lon": -0.6726838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 26" - } -}, -{ - "type": "node", - "id": 349168971, - "lat": 51.2939131, - "lon": -0.6348398, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "postal_code": "GU24", - "ref": "GU24 182", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 349173586, - "lat": 53.7511216, - "lon": -1.4730350, - "tags": { - "amenity": "post_box", - "note": "check royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349182456, - "lat": 51.7218895, - "lon": -1.2067518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "OX4", - "ref": "OX4 784", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349204932, - "lat": 51.7045572, - "lon": -0.3705639, - "tags": { - "amenity": "post_box", - "ref": "AL2 194" - } -}, -{ - "type": "node", - "id": 349212554, - "lat": 52.2421907, - "lon": 0.7167989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2058", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 349212555, - "lat": 52.2409248, - "lon": 0.7194154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP33 2164D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 349212772, - "lat": 52.2413142, - "lon": 0.7117583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP33 2001D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349212810, - "lat": 52.2424320, - "lon": 0.7131110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349213434, - "lat": 52.2340738, - "lon": 0.7343079, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 349214308, - "lat": 53.7341130, - "lon": -0.1891836, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 349235224, - "lat": 52.3738532, - "lon": -1.2626597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "ref not visible 08/11/17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349235226, - "lat": 52.3738645, - "lon": -1.2626619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV21", - "ref": "CV21 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349236674, - "lat": 51.9417180, - "lon": -2.3914395, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL18 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349236803, - "lat": 51.9334231, - "lon": -2.4765569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:type": "wall", - "ref": "HR9 627", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 349236848, - "lat": 51.9258159, - "lon": -2.4959994, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR9 541", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 349236867, - "lat": 51.9162329, - "lon": -2.5130857, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR9 510D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349236972, - "lat": 51.9370582, - "lon": -2.5827047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "wall", - "ref": "HR9 400", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 349237474, - "lat": 51.9547759, - "lon": -2.5684697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "HR9 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349254371, - "lat": 51.3147145, - "lon": 0.8951860, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "ME13 26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "ME13", - "ref": "ME13 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-12-21" - } -}, -{ - "type": "node", - "id": 349254377, - "lat": 51.3150161, - "lon": 0.8927496, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-26", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 57;ME13 5722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349254434, - "lat": 51.3138934, - "lon": 0.8864326, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349254462, - "lat": 51.3110118, - "lon": 0.8807100, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 35", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 35D", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 349254466, - "lat": 51.3116863, - "lon": 0.8852289, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349256817, - "lat": 51.6323684, - "lon": -0.5697797, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-24", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP8 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349257342, - "lat": 53.8145771, - "lon": -1.6437264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349260902, - "lat": 51.2108801, - "lon": -0.5250645, - "tags": { - "amenity": "post_box", - "postal_code": "GU4", - "ref": "GU4 124" - } -}, -{ - "type": "node", - "id": 349262510, - "lat": 51.8110797, - "lon": 1.0327936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "mapillary": "301279635039129", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 0HA", - "ref": "CO7 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-22" - } -}, -{ - "type": "node", - "id": 349265061, - "lat": 54.9698939, - "lon": -2.4614236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NE49 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 349265111, - "lat": 54.9699608, - "lon": -2.4643944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE49 41" - } -}, -{ - "type": "node", - "id": 349265181, - "lat": 54.9663462, - "lon": -2.4692525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE49 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349265461, - "lat": 51.8112557, - "lon": 1.0249088, - "tags": { - "amenity": "post_box", - "note": "references in left to right order (differ for each aperture)", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO7 9287;CO7 287" - } -}, -{ - "type": "node", - "id": 349265488, - "lat": 51.3116030, - "lon": 0.8732910, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 40", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "ME13 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-11-24" - } -}, -{ - "type": "node", - "id": 349266470, - "lat": 51.8104836, - "lon": 1.0242069, - "tags": { - "amenity": "post_box", - "mapillary": "530579027947703", - "post_box:type": "pillar", - "ref": "CO7 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-10" - } -}, -{ - "type": "node", - "id": 349269960, - "lat": 53.3810425, - "lon": -2.4711835, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 327", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 349284204, - "lat": 50.8132375, - "lon": -0.5026974, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is of the brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "BN16", - "ref": "BN16 1438D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349284205, - "lat": 50.8086798, - "lon": -0.5112320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-16", - "note": "I used this postbox on Monday 16.03.2020 and at this time there was a sticker on this postbox saying that from 24.02.2020 the collection will be Mo-Fr 09:00; Sa 07:00. Due to this sticker the CP was not visible.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1445", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349284206, - "lat": 50.8100832, - "lon": -0.5051212, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "last_checked": "2020-03-16", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349284207, - "lat": 50.8105024, - "lon": -0.5061621, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1887", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349293244, - "lat": 53.3881471, - "lon": -2.4606310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 215", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 349294250, - "lat": 54.9688178, - "lon": -2.4723106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE49 145" - } -}, -{ - "type": "node", - "id": 349308217, - "lat": 51.8177458, - "lon": 1.0228659, - "tags": { - "amenity": "post_box", - "mapillary": "463052261912279", - "post_box:type": "pillar", - "postal_code": "CO7 0QG", - "ref": "CO7 328", - "survey:date": "2021-11-27" - } -}, -{ - "type": "node", - "id": 349308790, - "lat": 51.8164323, - "lon": 1.0287143, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 0NW", - "ref": "CO7 42" - } -}, -{ - "type": "node", - "id": 349310484, - "lat": 57.4225816, - "lon": -4.5734833, - "tags": { - "amenity": "post_box", - "note": "old postbox was replaced with a new one, a short distance along the road", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV4 149", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 349315323, - "lat": 51.8356203, - "lon": 1.0257989, - "tags": { - "amenity": "post_box", - "mapillary": "845068953107220", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO7 8JJ", - "ref": "CO7 182", - "survey:date": "2021-05-21" - } -}, -{ - "type": "node", - "id": 349316995, - "lat": 51.8225401, - "lon": 1.0184516, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 0RE", - "ref": "CO7 412" - } -}, -{ - "type": "node", - "id": 349317302, - "lat": 51.8082712, - "lon": 1.0237822, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 0DD", - "ref": "CO7 76" - } -}, -{ - "type": "node", - "id": 349317689, - "lat": 51.8095023, - "lon": 1.0215030, - "tags": { - "amenity": "post_box", - "mapillary": "847723512502745", - "post_box:type": "pillar", - "ref": "CO7 64", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 349319125, - "lat": 51.8280206, - "lon": 1.0143694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CO7 0RZ", - "ref": "CO7 172" - } -}, -{ - "type": "node", - "id": 349331978, - "lat": 53.3811811, - "lon": -2.4773199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA13 110", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 349332006, - "lat": 51.0955812, - "lon": -1.8163014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "97.0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349332231, - "lat": 57.3463633, - "lon": -4.7646513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "operator": "Royal Mail", - "ref": "IV4 139", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349333398, - "lat": 53.3768529, - "lon": -2.4760004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 65", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 349333809, - "lat": 53.3648419, - "lon": -2.4605708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 188", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 349337872, - "lat": 57.3450880, - "lon": -4.7680302, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-10", - "collection_times": "Mo-Sa 11:45", - "operator": "Royal Mail", - "ref": "IV4 179", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 349340159, - "lat": 51.3992144, - "lon": -1.3311730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG14", - "ref": "RG14 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349341034, - "lat": 52.5610991, - "lon": -0.3641434, - "tags": { - "amenity": "post_box", - "ref": "PE8 136", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 349341184, - "lat": 53.3794171, - "lon": -2.4855677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA13 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349343426, - "lat": 53.8137844, - "lon": -1.6496730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 697" - } -}, -{ - "type": "node", - "id": 349344326, - "lat": 51.4001188, - "lon": -1.3279788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG14", - "ref": "RG14 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349344621, - "lat": 56.6571736, - "lon": -3.7840415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1381244109161860", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "PH9", - "ref": "PH9 31", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 349344624, - "lat": 56.6436418, - "lon": -3.8215983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "887482042601582", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "PH15", - "ref": "PH15 24", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 349351874, - "lat": 51.3830866, - "lon": -1.3182010, - "tags": { - "amenity": "post_box", - "note": "inside Tescos", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG14", - "ref": "RG14 180" - } -}, -{ - "type": "node", - "id": 349422690, - "lat": 53.8162075, - "lon": -1.6482837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 957", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 349422694, - "lat": 53.8132222, - "lon": -1.6540760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 973" - } -}, -{ - "type": "node", - "id": 349426805, - "lat": 53.8108303, - "lon": -1.6176480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 485" - } -}, -{ - "type": "node", - "id": 350166141, - "lat": 52.4381744, - "lon": -1.8534954, - "tags": { - "amenity": "post_box", - "ref": "B28 595", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350176667, - "lat": 52.4377741, - "lon": -1.8466878, - "tags": { - "amenity": "post_box", - "ref": "B28 714", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350201022, - "lat": 51.3165272, - "lon": 0.8918836, - "tags": { - "amenity": "post_box", - "collection_plate": "CP9D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 5", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "ME13 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-10-29" - } -}, -{ - "type": "node", - "id": 350201996, - "lat": 51.3167106, - "lon": 0.8890097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350216483, - "lat": 50.4912263, - "lon": -3.5600916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Post box is concealed in hedge at bus stop", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ2 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 350217589, - "lat": 50.4908797, - "lon": -3.5468846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ2 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 350226979, - "lat": 53.7400600, - "lon": -0.2084671, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350239419, - "lat": 51.3156783, - "lon": 0.8827151, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350301191, - "lat": 51.3183072, - "lon": 0.8817455, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 72", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "ME13", - "ref": "ME13 72D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 350301955, - "lat": 51.3159775, - "lon": 0.8762780, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-15", - "collection_times": "Mo-Fr 17:30, Sa 10:45", - "postal_code": "ME13", - "ref": "ME13 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350316206, - "lat": 53.2354438, - "lon": -1.4351620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "Franked mail or parcels only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "S40 1AA", - "ref": "S40 449P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 350316234, - "lat": 53.2355101, - "lon": -1.4396785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 2AH", - "ref": "S40 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350340723, - "lat": 52.4497950, - "lon": -1.8469218, - "tags": { - "amenity": "post_box", - "ref": "B11 209" - } -}, -{ - "type": "node", - "id": 350375921, - "lat": 52.4480170, - "lon": -1.8513704, - "tags": { - "amenity": "post_box", - "ref": "B11 469", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350530102, - "lat": 50.8283553, - "lon": -0.2567010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1533D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350545097, - "lat": 51.8145893, - "lon": 0.7562829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 350545995, - "lat": 51.8130451, - "lon": 1.0309844, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 0ND", - "ref": "CO7 398" - } -}, -{ - "type": "node", - "id": 350545998, - "lat": 51.8064433, - "lon": 1.0233610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "945801562865052", - "post_box:type": "pillar", - "ref": "CO7 52", - "royal_cypher": "VR", - "survey:date": "2020-01-26" - } -}, -{ - "type": "node", - "id": 350552576, - "lat": 50.8282423, - "lon": -0.2652374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1534D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350556894, - "lat": 51.8148307, - "lon": 1.0227163, - "tags": { - "amenity": "post_box", - "mapillary": "1167960640318010", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CO7 0JE", - "ref": "CO7 68", - "survey:date": "2020-01-26" - } -}, -{ - "type": "node", - "id": 350561869, - "lat": 51.9029448, - "lon": 0.9359163, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO4 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350562111, - "lat": 51.9091060, - "lon": 0.9269481, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO4 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350593399, - "lat": 51.3766176, - "lon": 0.0996973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45, Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BR6 460;BR6 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350593407, - "lat": 51.3745751, - "lon": 0.0985827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-25", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350593414, - "lat": 51.3761080, - "lon": 0.0933337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350593421, - "lat": 51.3780694, - "lon": 0.0883326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR6 373" - } -}, -{ - "type": "node", - "id": 350593426, - "lat": 51.3814321, - "lon": 0.0832849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 164" - } -}, -{ - "type": "node", - "id": 350593434, - "lat": 51.3791488, - "lon": 0.0791711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350593441, - "lat": 51.3753981, - "lon": 0.0761781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350593448, - "lat": 51.3830129, - "lon": 0.0779088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 294", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 350593455, - "lat": 51.3847470, - "lon": 0.0714863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 347" - } -}, -{ - "type": "node", - "id": 350593461, - "lat": 51.3855877, - "lon": 0.0683845, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 348" - } -}, -{ - "type": "node", - "id": 350593469, - "lat": 51.3885622, - "lon": 0.0730102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 310" - } -}, -{ - "type": "node", - "id": 350593475, - "lat": 51.3887404, - "lon": 0.0679197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 320" - } -}, -{ - "type": "node", - "id": 350593480, - "lat": 51.3890915, - "lon": 0.0758851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 266", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 350593487, - "lat": 51.3945282, - "lon": 0.0788867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 304" - } -}, -{ - "type": "node", - "id": 350593493, - "lat": 51.3939415, - "lon": 0.0842137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 280", - "ref:GB:uprn": "10015273057" - } -}, -{ - "type": "node", - "id": 350593499, - "lat": 51.3905795, - "lon": 0.0905108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 350593505, - "lat": 51.3853107, - "lon": 0.0887528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 247" - } -}, -{ - "type": "node", - "id": 350593513, - "lat": 51.3818557, - "lon": 0.0953126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 173", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 350621377, - "lat": 51.5183363, - "lon": -0.1540661, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 11;W1U 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 350621579, - "lat": 51.5180582, - "lon": -0.1558836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 10D;W1U 210D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 350659775, - "lat": 54.9719773, - "lon": -2.4493983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE49 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350671469, - "lat": 55.1317314, - "lon": -1.5425180, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 4RG", - "ref": "NE24 563" - } -}, -{ - "type": "node", - "id": 350678810, - "lat": 54.9738683, - "lon": -2.4643415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE49 146", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 350678826, - "lat": 54.9722710, - "lon": -2.4619050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE49 67" - } -}, -{ - "type": "node", - "id": 350687617, - "lat": 51.3976879, - "lon": -0.0932487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR7 122" - } -}, -{ - "type": "node", - "id": 350687677, - "lat": 51.4007409, - "lon": -0.0996457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 73", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350687684, - "lat": 51.3990465, - "lon": -0.0979638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 88", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350687700, - "lat": 51.3993562, - "lon": -0.0797963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE25", - "ref": "SE25 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 350694858, - "lat": 53.2342797, - "lon": -1.4442623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "S40 2AR", - "ref": "S40 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 350694864, - "lat": 53.2350130, - "lon": -1.4272266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "S40", - "ref": "S40 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 351119397, - "lat": 51.6374393, - "lon": -1.7150837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN6", - "ref": "SN6 334" - } -}, -{ - "type": "node", - "id": 351119900, - "lat": 51.6324727, - "lon": -1.7152348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 351141911, - "lat": 54.9717882, - "lon": -2.4540961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE49 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 351502646, - "lat": 51.5061987, - "lon": -0.0268072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 351768227, - "lat": 52.4736929, - "lon": -1.9034287, - "tags": { - "amenity": "post_box", - "ref": "B1 61D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 351800020, - "lat": 51.8837463, - "lon": 0.9953708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7YG", - "ref": "CO7 445" - } -}, -{ - "type": "node", - "id": 351800037, - "lat": 51.8692368, - "lon": 1.0171685, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 7DJ", - "ref": "CO7 425" - } -}, -{ - "type": "node", - "id": 351800042, - "lat": 51.8692512, - "lon": 1.0365338, - "tags": { - "amenity": "post_box", - "mapillary": "691054781865380", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7DJ", - "ref": "CO7 200", - "survey:date": "2021-11-27" - } -}, -{ - "type": "node", - "id": 351800055, - "lat": 51.8639418, - "lon": 0.9941370, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 8DB", - "ref": "CO7 126" - } -}, -{ - "type": "node", - "id": 351800064, - "lat": 51.8575301, - "lon": 0.9994167, - "tags": { - "amenity": "post_box", - "mapillary": "1103729306704522", - "post_box:type": "pillar", - "postal_code": "CO7 8DG", - "ref": "CO7 227", - "survey:date": "2019-12-25" - } -}, -{ - "type": "node", - "id": 351800074, - "lat": 51.8542338, - "lon": 0.9977048, - "tags": { - "amenity": "post_box", - "mapillary": "737918576904217", - "post_box:type": "pillar", - "postal_code": "CO7 8BX", - "ref": "CO7 409", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 351800080, - "lat": 51.8531120, - "lon": 0.9925320, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 8AG", - "ref": "CO7 62" - } -}, -{ - "type": "node", - "id": 351800087, - "lat": 51.8528957, - "lon": 1.0022835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8EA", - "ref": "CO7 243" - } -}, -{ - "type": "node", - "id": 351800705, - "lat": 52.5759193, - "lon": -1.9613979, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 351801435, - "lat": 52.3200404, - "lon": -0.6229050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 430" - } -}, -{ - "type": "node", - "id": 351823655, - "lat": 55.9135903, - "lon": -3.2108039, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-04", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "note": "Collection times updated 2018-04-30 GR era box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 291", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing;survey;local knowledge" - } -}, -{ - "type": "node", - "id": 351951781, - "lat": 57.4845427, - "lon": -4.4590664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV4 135", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 351963390, - "lat": 51.3302411, - "lon": -1.0589161, - "tags": { - "amenity": "post_box", - "mapillary": "222076059721610", - "post_box:type": "pillar", - "postal_code": "RG26", - "ref": "RG26 46", - "survey:date": "2021-03-06" - } -}, -{ - "type": "node", - "id": 352609725, - "lat": 51.3146253, - "lon": 0.8714484, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 70", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-24" - } -}, -{ - "type": "node", - "id": 352647164, - "lat": 51.6419061, - "lon": -0.0102786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 60D" - } -}, -{ - "type": "node", - "id": 352647997, - "lat": 51.6387328, - "lon": -0.0089335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 352648272, - "lat": 50.1500353, - "lon": -5.0631020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 352665237, - "lat": 51.4080550, - "lon": 0.1826978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352744061, - "lat": 51.6097137, - "lon": -2.5149354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 1087", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-03-30" - } -}, -{ - "type": "node", - "id": 352745193, - "lat": 51.5537282, - "lon": -2.4147275, - "tags": { - "amenity": "post_box", - "mapillary": "640170957178485", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 658", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 352774689, - "lat": 50.8552750, - "lon": -0.5560719, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1303D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 352798871, - "lat": 52.0861067, - "lon": 0.5789882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps" - } -}, -{ - "type": "node", - "id": 352798873, - "lat": 52.0882230, - "lon": 0.5800630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps" - } -}, -{ - "type": "node", - "id": 352801495, - "lat": 52.0789227, - "lon": 0.5858017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps" - } -}, -{ - "type": "node", - "id": 352805367, - "lat": 52.0773837, - "lon": 0.5809022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 352807996, - "lat": 52.9550131, - "lon": -1.1412527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 14:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NG1 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 352814301, - "lat": 51.4209280, - "lon": 0.5546316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 175D" - } -}, -{ - "type": "node", - "id": 352814302, - "lat": 51.4245066, - "lon": 0.5556288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 361D" - } -}, -{ - "type": "node", - "id": 352814305, - "lat": 51.4241707, - "lon": 0.5621666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 343D" - } -}, -{ - "type": "node", - "id": 352822883, - "lat": 51.8489761, - "lon": -2.2459988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 352847756, - "lat": 51.3202291, - "lon": 0.8806639, - "tags": { - "amenity": "post_box", - "mapillary": "349472486584111", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 73", - "source": "survey", - "survey:date": "2021-06-06" - } -}, -{ - "type": "node", - "id": 352866978, - "lat": 51.3299761, - "lon": 0.8787025, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 38", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352867728, - "lat": 53.8319916, - "lon": -1.5616035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 352867731, - "lat": 53.8288511, - "lon": -1.5671241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "LS6 385", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 352867999, - "lat": 53.8121190, - "lon": -1.5699918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 352868750, - "lat": 53.8146753, - "lon": -1.5670121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 352872520, - "lat": 51.3251903, - "lon": -1.0765915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 352873348, - "lat": 51.3428234, - "lon": 0.8697597, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352929730, - "lat": 51.5036090, - "lon": -0.0878720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 82;SE1 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352936893, - "lat": 55.9354007, - "lon": -3.9907903, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 13" - } -}, -{ - "type": "node", - "id": 352937613, - "lat": 55.9376871, - "lon": -3.9928935, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 37" - } -}, -{ - "type": "node", - "id": 352939695, - "lat": 55.9356316, - "lon": -4.0010623, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 36" - } -}, -{ - "type": "node", - "id": 352950388, - "lat": 51.3203825, - "lon": 0.8909075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME13 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352979390, - "lat": 52.4877276, - "lon": -1.9122857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B18 4005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352979391, - "lat": 52.4877031, - "lon": -1.9122865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B18 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352984480, - "lat": 52.4900228, - "lon": -1.9126872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "note": "posting slot taped over Feb 2009", - "ref": "B18 103", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 352990112, - "lat": 52.5617206, - "lon": -1.9622961, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 174" - } -}, -{ - "type": "node", - "id": 352990121, - "lat": 52.5596174, - "lon": -1.9605087, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS5", - "ref": "WS5 60" - } -}, -{ - "type": "node", - "id": 352993554, - "lat": 51.4112057, - "lon": -3.4792860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF61 92D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 352995544, - "lat": 51.8606631, - "lon": 1.0219876, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 7HE", - "ref": "CO7 364" - } -}, -{ - "type": "node", - "id": 352995765, - "lat": 51.8488121, - "lon": 1.0358013, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8JA", - "ref": "CO7 59" - } -}, -{ - "type": "node", - "id": 353003556, - "lat": 51.6325757, - "lon": -0.0116589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 353003850, - "lat": 51.6246452, - "lon": -0.0223121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 47" - } -}, -{ - "type": "node", - "id": 353004157, - "lat": 51.6177644, - "lon": -0.0221312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 40D" - } -}, -{ - "type": "node", - "id": 353004310, - "lat": 51.6122571, - "lon": -0.0227628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 353004461, - "lat": 51.6354490, - "lon": -0.0128128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 4" - } -}, -{ - "type": "node", - "id": 353012289, - "lat": 51.8522484, - "lon": -2.1670132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "40.2606201", - "post_box:type": "pillar", - "postal_code": "GL3", - "ref": "GL3 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353067123, - "lat": 52.9780297, - "lon": -0.0349132, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "PE21", - "ref": "PE21 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353067126, - "lat": 52.9762501, - "lon": -0.0301400, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "PE21", - "ref": "PE21 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353114317, - "lat": 51.2710246, - "lon": -1.0790005, - "tags": { - "amenity": "post_box", - "mapillary": "987987241972033", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG21", - "ref": "RG21 48", - "survey:date": "2020-05-02" - } -}, -{ - "type": "node", - "id": 353117727, - "lat": 51.2735582, - "lon": -1.1052737, - "tags": { - "amenity": "post_box", - "postal_code": "RG21", - "ref": "RG21 298" - } -}, -{ - "type": "node", - "id": 353121291, - "lat": 51.2808739, - "lon": -1.0904525, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG24", - "ref": "RG24 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 353122400, - "lat": 51.4229216, - "lon": 0.1655180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA2 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 353122425, - "lat": 51.4291808, - "lon": 0.1697186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA5 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 353151144, - "lat": 53.0326142, - "lon": -2.1845331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ST1", - "ref": "ST1 169" - } -}, -{ - "type": "node", - "id": 353203696, - "lat": 51.5717887, - "lon": -1.7817181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN2", - "ref": "SN2 238" - } -}, -{ - "type": "node", - "id": 353221794, - "lat": 52.9762597, - "lon": -0.0263897, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "PE21", - "ref": "PE21 13;PE21 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353241166, - "lat": 54.0987777, - "lon": -0.8264736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO17 118" - } -}, -{ - "type": "node", - "id": 353244795, - "lat": 53.3207429, - "lon": -2.6921531, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "WA7 59" - } -}, -{ - "type": "node", - "id": 353249238, - "lat": 53.3285999, - "lon": -2.7011247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "ref": "WA7 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 353365636, - "lat": 51.8773769, - "lon": 1.0590579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO7 240" - } -}, -{ - "type": "node", - "id": 353365638, - "lat": 51.8903628, - "lon": 1.0748918, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8SL", - "ref": "CO7 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353367179, - "lat": 51.8822720, - "lon": 1.0825990, - "tags": { - "amenity": "post_box", - "mapillary": "694746654996265", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO7 103", - "royal_cypher": "EVIIR", - "survey:date": "2022-03-29" - } -}, -{ - "type": "node", - "id": 353367181, - "lat": 51.8683479, - "lon": 1.0749767, - "tags": { - "amenity": "post_box", - "mapillary": "869400820378271", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8SA", - "ref": "CO7 317", - "survey:date": "2021-05-23" - } -}, -{ - "type": "node", - "id": 353369949, - "lat": 51.2679006, - "lon": -1.1314446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353370650, - "lat": 51.8551238, - "lon": 1.0645992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CO7 8RR", - "ref": "CO7 115" - } -}, -{ - "type": "node", - "id": 353370657, - "lat": 51.8558908, - "lon": 1.0720974, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 8PE", - "ref": "CO7 238" - } -}, -{ - "type": "node", - "id": 353372709, - "lat": 51.8553145, - "lon": 1.0585717, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8GB", - "ref": "CO7 147" - } -}, -{ - "type": "node", - "id": 353396273, - "lat": 52.6851789, - "lon": -0.9811929, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353398798, - "lat": 52.6921929, - "lon": -1.0719010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00; Su off", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 353725607, - "lat": 51.7015338, - "lon": -1.2421693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "postal_code": "OX14", - "ref": "OX14 1212" - } -}, -{ - "type": "node", - "id": 353725609, - "lat": 51.7075674, - "lon": -1.2428567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "mapillary": "865103814043105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX1", - "ref": "OX1 619", - "survey:date": "2020-08-31" - } -}, -{ - "type": "node", - "id": 353725611, - "lat": 51.7117709, - "lon": -1.2441741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "mapillary": "528190251520684", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX1", - "ref": "OX1 825", - "royal_cypher": "EIIR", - "survey:date": "2020-09-02" - } -}, -{ - "type": "node", - "id": 353725612, - "lat": 51.7150597, - "lon": -1.2448127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "mapillary": "479717273237680", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "OX1", - "ref": "OX1 686", - "survey:date": "2020-09-13" - } -}, -{ - "type": "node", - "id": 353725923, - "lat": 50.8103590, - "lon": -0.5077536, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353764077, - "lat": 51.2892034, - "lon": -0.5767746, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "This postbox is on the grass just east of the gravelly entrance to Prey Heath Park.", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GU22", - "ref": "GU22 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 353766669, - "lat": 52.6972030, - "lon": -1.0866273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "LE7", - "ref": "LE7 160" - } -}, -{ - "type": "node", - "id": 353768848, - "lat": 51.2835828, - "lon": -0.5980895, - "tags": { - "amenity": "post_box", - "postal_code": "GU3", - "ref": "GU3 127" - } -}, -{ - "type": "node", - "id": 353772812, - "lat": 51.2866131, - "lon": -0.5690110, - "tags": { - "amenity": "post_box", - "check_date": "2019-04-23", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU22 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 353780598, - "lat": 51.2163423, - "lon": 1.2994291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353780788, - "lat": 51.2244408, - "lon": 1.3249040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Collection plate broken on survey 19/10/2022 - unable to confirm times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 353786257, - "lat": 52.6996620, - "lon": -1.0735704, - "tags": { - "amenity": "post_box", - "postal_code": "LE7", - "ref": "LE7 275" - } -}, -{ - "type": "node", - "id": 353805997, - "lat": 51.9773429, - "lon": 0.3941650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB10 103", - "source": "gps" - } -}, -{ - "type": "node", - "id": 353807826, - "lat": 52.4969783, - "lon": -2.0317449, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B69 356", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 353807840, - "lat": 52.4902717, - "lon": -2.0346488, - "tags": { - "amenity": "post_box", - "ref": "B65 703", - "source": "survey" - } -}, -{ - "type": "node", - "id": 353891181, - "lat": 52.8892692, - "lon": -1.5378907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 115" - } -}, -{ - "type": "node", - "id": 353891182, - "lat": 52.8931071, - "lon": -1.5245365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 509" - } -}, -{ - "type": "node", - "id": 353891185, - "lat": 52.8942649, - "lon": -1.5316050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 352", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 353891186, - "lat": 52.8988957, - "lon": -1.5254411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 472" - } -}, -{ - "type": "node", - "id": 353891188, - "lat": 52.8986028, - "lon": -1.5101590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "206703208493258", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DE23", - "ref": "DE23 210", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 353891189, - "lat": 52.8906788, - "lon": -1.5045430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 547D" - } -}, -{ - "type": "node", - "id": 353891191, - "lat": 52.8873200, - "lon": -1.5049374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 685" - } -}, -{ - "type": "node", - "id": 353891192, - "lat": 52.8875582, - "lon": -1.4989256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 593" - } -}, -{ - "type": "node", - "id": 353891194, - "lat": 52.8938755, - "lon": -1.4997935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 781" - } -}, -{ - "type": "node", - "id": 353891195, - "lat": 52.8937199, - "lon": -1.4951907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 461", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 353891197, - "lat": 52.8891993, - "lon": -1.4907570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 604" - } -}, -{ - "type": "node", - "id": 353895860, - "lat": 51.0022828, - "lon": -3.0868608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TA1", - "ref": "TA1 319", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 353895866, - "lat": 51.0051792, - "lon": -3.0882032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TA1", - "ref": "TA1 281" - } -}, -{ - "type": "node", - "id": 353906875, - "lat": 51.3312620, - "lon": -1.1744453, - "tags": { - "amenity": "post_box", - "mapillary": "631742117995594", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 7", - "survey:date": "2021-10-16" - } -}, -{ - "type": "node", - "id": 353907762, - "lat": 53.7999114, - "lon": -1.5581465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS1 258D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;survey" - } -}, -{ - "type": "node", - "id": 353907764, - "lat": 53.8003785, - "lon": -1.5659025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS3 155", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 353908096, - "lat": 53.8023974, - "lon": -1.5662636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS3 293", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 353912907, - "lat": 53.8059525, - "lon": -1.5681738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS3 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 353913100, - "lat": 52.5630984, - "lon": -1.9764330, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 168" - } -}, -{ - "type": "node", - "id": 353914411, - "lat": 53.8025729, - "lon": -1.5593496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS3 171", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 353959912, - "lat": 52.4870151, - "lon": -2.0281319, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B65 332", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354002225, - "lat": 50.4587185, - "lon": -3.5935838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3", - "ref": "TQ3 129D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 354027080, - "lat": 50.4518674, - "lon": -3.6323207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ9", - "ref": "TQ9 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 354032042, - "lat": 54.6369490, - "lon": -3.5406756, - "tags": { - "amenity": "post_box", - "ref": "CA14 149" - } -}, -{ - "type": "node", - "id": 354047858, - "lat": 52.7014149, - "lon": -1.0830790, - "tags": { - "amenity": "post_box", - "postal_code": "LE7", - "ref": "LE7 880" - } -}, -{ - "type": "node", - "id": 354053420, - "lat": 52.7053623, - "lon": -1.0593296, - "tags": { - "amenity": "post_box", - "postal_code": "LE7", - "ref": "LE7 145" - } -}, -{ - "type": "node", - "id": 354057361, - "lat": 52.6993804, - "lon": -1.0629577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LE7", - "ref": "LE7 664", - "ref:GB:uprn": "10015277710" - } -}, -{ - "type": "node", - "id": 354057705, - "lat": 52.7016593, - "lon": -1.0671659, - "tags": { - "amenity": "post_box", - "postal_code": "LE7", - "ref": "LE7 481" - } -}, -{ - "type": "node", - "id": 354061609, - "lat": 51.1677527, - "lon": -1.7559811, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SP4 375D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 354076584, - "lat": 51.5596545, - "lon": -0.0022665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354080477, - "lat": 51.1706411, - "lon": -1.7559660, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ele": "151.0" - } -}, -{ - "type": "node", - "id": 354435891, - "lat": 51.5552418, - "lon": -0.0182178, - "tags": { - "amenity": "post_box", - "note": "This post box does not have a 'ref' number on it!" - } -}, -{ - "type": "node", - "id": 354466477, - "lat": 51.5564446, - "lon": 0.0000167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354471897, - "lat": 50.1451902, - "lon": -5.0690064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 354474980, - "lat": 55.0216744, - "lon": -1.5619168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE12 397D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354475117, - "lat": 55.0189380, - "lon": -1.5596623, - "tags": { - "amenity": "post_box", - "ref": "NE12 398" - } -}, -{ - "type": "node", - "id": 354484351, - "lat": 51.7580810, - "lon": -0.5639058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "note": "From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354488724, - "lat": 53.7982763, - "lon": -2.7035150, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 354531117, - "lat": 53.3658582, - "lon": -3.0386993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VII Type B post box CH42 298 at Pine Walks, junction of Burrell Road, Prenton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH42 298", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:Post box at Pine Walks, Prenton" - } -}, -{ - "type": "node", - "id": 354531162, - "lat": 53.3683830, - "lon": -3.0380727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type K post box CH42 65 on Prospect Road, Prenton, near end of Tower Road.", - "latitude": "-3.03812", - "longitude": "53.36847", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH42 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Prospect Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 354540891, - "lat": 53.3684489, - "lon": -3.0314605, - "tags": { - "amenity": "post_box", - "description": "GVIR type B post box CH42 507 at the junction of Mendip Road and Mount Road, Prenton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH42 507", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Mendip Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 354550743, - "lat": 52.6830242, - "lon": -1.0630968, - "tags": { - "amenity": "post_box", - "postal_code": "LE7", - "ref": "LE7 411" - } -}, -{ - "type": "node", - "id": 354567478, - "lat": 52.6974178, - "lon": -1.0787054, - "tags": { - "amenity": "post_box", - "postal_code": "LE7", - "ref": "LE7 173" - } -}, -{ - "type": "node", - "id": 354582824, - "lat": 52.0520710, - "lon": -1.8010240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL55", - "ref": "GL55 125", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354588126, - "lat": 53.8511781, - "lon": -0.2185092, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 354588280, - "lat": 53.9013578, - "lon": -0.1781792, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 354588425, - "lat": 53.8979574, - "lon": -0.1665376, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 354588443, - "lat": 53.8762265, - "lon": -0.1363696, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 354588444, - "lat": 53.8908737, - "lon": -0.1520848, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 354588503, - "lat": 53.9037308, - "lon": -0.1675111, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 354588628, - "lat": 53.9154138, - "lon": -0.1624018, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354615816, - "lat": 51.3564624, - "lon": 1.0326025, - "tags": { - "amenity": "post_box", - "mapillary": "803651670189958", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 202", - "source": "survey", - "survey:date": "2021-05-02" - } -}, -{ - "type": "node", - "id": 354616657, - "lat": 51.2924360, - "lon": 0.9797058, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354620426, - "lat": 51.2763531, - "lon": 0.9402619, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354621257, - "lat": 56.1432193, - "lon": -3.2609643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 150D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354621263, - "lat": 56.1468734, - "lon": -3.2635837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY5 153", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354621268, - "lat": 56.1489748, - "lon": -3.2664701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY5 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354621280, - "lat": 56.1541751, - "lon": -3.2734067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 81", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354621296, - "lat": 56.1718916, - "lon": -3.2461847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY5 147D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 354621299, - "lat": 56.1737082, - "lon": -3.2425829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY5 92", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 354621305, - "lat": 56.1754586, - "lon": -3.2342259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 146D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 354622107, - "lat": 53.3607986, - "lon": -0.8523130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 354623059, - "lat": 51.2895251, - "lon": 0.9359187, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354623745, - "lat": 51.2986003, - "lon": 0.9236433, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354625173, - "lat": 56.1865702, - "lon": -3.1437113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 6", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354625858, - "lat": 53.9778878, - "lon": -0.2219620, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354625882, - "lat": 53.9946182, - "lon": -0.2202901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO25 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354626650, - "lat": 51.3218459, - "lon": 0.9414658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354628002, - "lat": 55.9692004, - "lon": -3.2021515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH3 378D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 354628092, - "lat": 55.9683710, - "lon": -3.1956001, - "tags": { - "amenity": "post_box", - "ref": "EH7 528" - } -}, -{ - "type": "node", - "id": 354630127, - "lat": 51.3460756, - "lon": 0.9693074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 304", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354631592, - "lat": 50.9640548, - "lon": -1.8390912, - "tags": { - "amenity": "post_box", - "ele": "93.0", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354634176, - "lat": 56.1896396, - "lon": -3.1213260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY7 81", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354634206, - "lat": 56.2008237, - "lon": -3.1312592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1338767187057554", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY7 69", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2023-08-14" - } -}, -{ - "type": "node", - "id": 354638330, - "lat": 50.9962812, - "lon": -1.3215602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-12-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "collection_times_checked": "19-12-2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO21", - "ref": "SO21 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 354642757, - "lat": 51.5930674, - "lon": -0.0181471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 55", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 354643113, - "lat": 51.4664712, - "lon": -0.2155283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SW15", - "ref": "SW15 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354643114, - "lat": 51.4653174, - "lon": -0.2145974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW15", - "ref": "SW15 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354643115, - "lat": 51.4633805, - "lon": -0.2169161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "positioned using Yahoo and local knowledge of shopping centre", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354659275, - "lat": 51.8093459, - "lon": -1.2777746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "This postbox is inside Sainsbury's superstore in the entrance/exit foyer.", - "indoor": "yes", - "last_checked": "2020-07-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX5", - "ref": "OX5 930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354659923, - "lat": 51.8095106, - "lon": -1.3059969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX5", - "ref": "OX5 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-01-07" - } -}, -{ - "type": "node", - "id": 354661824, - "lat": 51.6100491, - "lon": -0.0177949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354661942, - "lat": 51.6103118, - "lon": -0.0134619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354663336, - "lat": 56.2164543, - "lon": -3.1095140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "postal_code": "KY7", - "ref": "KY7 84", - "royal_cypher": "scottish_crown", - "source": "Re-surveyed Feb 2014" - } -}, -{ - "type": "node", - "id": 354665647, - "lat": 51.9438391, - "lon": -1.5437602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "OX7", - "ref": "OX7 241", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 354674264, - "lat": 51.8988282, - "lon": -1.6363538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "OX7", - "ref": "OX7 243", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 354676468, - "lat": 51.9360599, - "lon": -1.5495654, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "OX7", - "ref": "OX7 240D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 354676471, - "lat": 51.9416131, - "lon": -1.5455675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "OX7", - "ref": "OX7 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 354676712, - "lat": 51.9438647, - "lon": -1.5412082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "6309762952424848", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX7 806D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 354677941, - "lat": 51.9158915, - "lon": -1.4535764, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "OX7", - "ref": "OX7 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354680909, - "lat": 51.8119331, - "lon": -1.3098385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "OX5", - "ref": "OX5 5942D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-01-07" - } -}, -{ - "type": "node", - "id": 354682949, - "lat": 51.4491950, - "lon": -1.3107871, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "collection_times_checked": "2020-08-21", - "last_checked": "2020-08-21", - "note": "Was marked as RG20 298 and appears as \"RG20 298 GRANADA SERVICES\" on the Post Hoc website, but is definitely labelled RG18 298", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG18 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354685629, - "lat": 52.9224373, - "lon": -1.2022527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "post_box:design": "type_b", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "NG9 634", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354685656, - "lat": 52.9201310, - "lon": -1.2183935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 635D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354691342, - "lat": 52.5579961, - "lon": -1.9707033, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 289" - } -}, -{ - "type": "node", - "id": 354691353, - "lat": 52.5560658, - "lon": -1.9698456, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 355" - } -}, -{ - "type": "node", - "id": 354691446, - "lat": 53.8295863, - "lon": -1.8294168, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354691962, - "lat": 50.7792167, - "lon": -3.0046478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 354696292, - "lat": 52.3917405, - "lon": 0.1264190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354701869, - "lat": 52.3889182, - "lon": 0.1241545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354708968, - "lat": 54.4035061, - "lon": -5.8889528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 354711997, - "lat": 52.3861819, - "lon": 0.1138831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 137", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354715636, - "lat": 52.3980424, - "lon": 0.0929804, - "tags": { - "amenity": "post_box", - "note": "no plate July 2018", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354716002, - "lat": 52.3876640, - "lon": 0.1112441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB6 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354716729, - "lat": 53.1039516, - "lon": -1.0298801, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 354720283, - "lat": 52.2542395, - "lon": -0.8256491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354720502, - "lat": 52.2552866, - "lon": -0.8201487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354722427, - "lat": 51.3500491, - "lon": -2.3644650, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 354811146, - "lat": 51.3582011, - "lon": -1.0753735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354834427, - "lat": 51.6184673, - "lon": 0.0003483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354836860, - "lat": 51.8385340, - "lon": 1.2579696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "103150439441260", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO13 9PG", - "ref": "CO13 115", - "survey:date": "2023-04-27" - } -}, -{ - "type": "node", - "id": 354836861, - "lat": 51.8338022, - "lon": 1.2526597, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO13 9HN", - "ref": "CO13 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 354836862, - "lat": 51.8335881, - "lon": 1.2481746, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 9AR", - "ref": "CO13 96" - } -}, -{ - "type": "node", - "id": 354836864, - "lat": 51.8353134, - "lon": 1.2478386, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 9HR", - "ref": "CO13 81" - } -}, -{ - "type": "node", - "id": 354836866, - "lat": 51.8371591, - "lon": 1.2517334, - "tags": { - "amenity": "post_box", - "ref": "CO13 13" - } -}, -{ - "type": "node", - "id": 354838286, - "lat": 51.8386908, - "lon": 1.2476803, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 0AJ", - "ref": "CO13 110" - } -}, -{ - "type": "node", - "id": 354838755, - "lat": 51.6210358, - "lon": -0.0167618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E4 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 354838793, - "lat": 51.6164144, - "lon": -0.0173189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354840649, - "lat": 55.8428889, - "lon": -4.3263856, - "tags": { - "amenity": "post_box", - "ref": "G52 518" - } -}, -{ - "type": "node", - "id": 354843062, - "lat": 54.8516926, - "lon": -1.5671676, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-06", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 236D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 354843237, - "lat": 54.8365646, - "lon": -1.5920978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354845755, - "lat": 51.8451901, - "lon": 1.2409114, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 0TQ", - "ref": "CO13 188" - } -}, -{ - "type": "node", - "id": 354850981, - "lat": 51.8393007, - "lon": 1.2395679, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 0QP", - "ref": "CO13 183" - } -}, -{ - "type": "node", - "id": 354867731, - "lat": 53.1808925, - "lon": -2.6441225, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 354867872, - "lat": 53.1662002, - "lon": -2.6391458, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354906935, - "lat": 52.7856538, - "lon": -0.6258880, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354911324, - "lat": 52.0294217, - "lon": -0.7243611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK6 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354918500, - "lat": 54.9502108, - "lon": -3.0150925, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "signpost", - "post_box:type": "lamp", - "ref": "CA6 104", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354918502, - "lat": 54.9563162, - "lon": -3.0266797, - "tags": { - "amenity": "post_box", - "ref": "CA6 392", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354921777, - "lat": 51.5852932, - "lon": -0.0181996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354922990, - "lat": 51.2836657, - "lon": -1.0921090, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 343" - } -}, -{ - "type": "node", - "id": 354923074, - "lat": 51.9255595, - "lon": 0.9802175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "556121906560286", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7NT", - "ref": "CO7 435", - "survey:date": "2023-01-29" - } -}, -{ - "type": "node", - "id": 354923782, - "lat": 51.9269918, - "lon": 0.9854234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CO7 7LE", - "ref": "CO7 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354923785, - "lat": 51.9322057, - "lon": 0.9951498, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "postal_code": "CO7 7LP", - "ref": "CO7 315" - } -}, -{ - "type": "node", - "id": 354923822, - "lat": 51.2793995, - "lon": -1.0993842, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 310" - } -}, -{ - "type": "node", - "id": 354924288, - "lat": 51.9366602, - "lon": 1.0133464, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "postal_code": "CO11 2LS", - "ref": "CO11 75" - } -}, -{ - "type": "node", - "id": 354941355, - "lat": 51.9381735, - "lon": 1.0255961, - "tags": { - "amenity": "post_box", - "mapillary": "1126942114506977", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 2JS", - "ref": "CO11 85", - "survey:date": "2021-11-27" - } -}, -{ - "type": "node", - "id": 354941636, - "lat": 51.9388456, - "lon": 1.0387351, - "tags": { - "amenity": "post_box", - "mapillary": "351022000196331", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 2JG", - "ref": "CO11 67", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 354942162, - "lat": 51.9391283, - "lon": 1.0524372, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2DY", - "ref": "CO11 36" - } -}, -{ - "type": "node", - "id": 354942395, - "lat": 52.0820079, - "lon": 0.4274829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354942404, - "lat": 52.0857872, - "lon": 0.4291732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB9 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354943930, - "lat": 51.9409975, - "lon": 1.0550109, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2BP", - "ref": "CO11 76" - } -}, -{ - "type": "node", - "id": 354943931, - "lat": 51.9489942, - "lon": 1.0449727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "CO11 2LH", - "ref": "CO11 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 354944161, - "lat": 52.0841167, - "lon": 0.4243004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354944371, - "lat": 52.0833554, - "lon": 0.4313594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB9 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354945875, - "lat": 51.9592994, - "lon": 1.0575756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CO11 1RH", - "ref": "CO11 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354945905, - "lat": 52.0887340, - "lon": 0.4276734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 354946288, - "lat": 51.9620319, - "lon": 1.0654122, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "postal_code": "CO11 1SP", - "ref": "CO11 41" - } -}, -{ - "type": "node", - "id": 354946588, - "lat": 53.8491340, - "lon": -1.8310459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BD16 622", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 354948393, - "lat": 51.9470090, - "lon": 1.0607841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "postal_code": "CO11 1EG", - "ref": "CO11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354948600, - "lat": 51.0767096, - "lon": 0.1555235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354948603, - "lat": 51.9405899, - "lon": 1.0904231, - "tags": { - "amenity": "post_box", - "mapillary": "303751198025647", - "post_box:type": "pillar", - "postal_code": "CO11 2DG", - "ref": "CO11 81", - "survey:date": "2020-02-01" - } -}, -{ - "type": "node", - "id": 354949266, - "lat": 51.1317479, - "lon": 0.1086044, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN8 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 354950906, - "lat": 51.9422683, - "lon": 1.0861721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "755568609379710", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO11 1LL", - "ref": "CO11 45", - "survey:date": "2023-04-27" - } -}, -{ - "type": "node", - "id": 354952479, - "lat": 51.9177151, - "lon": 1.0457020, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2PZ", - "ref": "CO11 28" - } -}, -{ - "type": "node", - "id": 354952484, - "lat": 51.9122737, - "lon": 1.0500407, - "tags": { - "amenity": "post_box", - "mapillary": "892767477943550", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 2PP", - "ref": "CO11 33", - "survey:date": "2021-05-29" - } -}, -{ - "type": "node", - "id": 354953280, - "lat": 51.8942001, - "lon": 1.0269763, - "tags": { - "amenity": "post_box", - "mapillary": "1222333261901891", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 219", - "survey:date": "2022-08-06" - } -}, -{ - "type": "node", - "id": 354955342, - "lat": 51.8778720, - "lon": 1.0373410, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO7 95" - } -}, -{ - "type": "node", - "id": 354955915, - "lat": 50.7242150, - "lon": -3.5089902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX1 89D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 354963121, - "lat": 51.6308577, - "lon": 0.0420224, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 354963276, - "lat": 51.6251920, - "lon": 0.0460147, - "tags": { - "amenity": "post_box", - "ref": "IG9 71" - } -}, -{ - "type": "node", - "id": 354963394, - "lat": 51.6261797, - "lon": 0.0358941, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 354976823, - "lat": 51.8442309, - "lon": 1.1156419, - "tags": { - "amenity": "post_box", - "mapillary": "833300301257624", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO16 114" - } -}, -{ - "type": "node", - "id": 355019340, - "lat": 51.7227025, - "lon": 0.4987217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 451" - } -}, -{ - "type": "node", - "id": 355022476, - "lat": 52.0918483, - "lon": 0.4124528, - "tags": { - "amenity": "post_box", - "postal_code": "CB9", - "ref": "CB9 55" - } -}, -{ - "type": "node", - "id": 355032458, - "lat": 52.9069542, - "lon": -1.5152893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 583" - } -}, -{ - "type": "node", - "id": 355032460, - "lat": 52.9084599, - "lon": -1.5085976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 108" - } -}, -{ - "type": "node", - "id": 355032461, - "lat": 52.9047717, - "lon": -1.4984770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 451" - } -}, -{ - "type": "node", - "id": 355032463, - "lat": 52.9015865, - "lon": -1.5007805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 483" - } -}, -{ - "type": "node", - "id": 355032466, - "lat": 52.9003641, - "lon": -1.4960767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 122" - } -}, -{ - "type": "node", - "id": 355032468, - "lat": 52.8992425, - "lon": -1.4742079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 533" - } -}, -{ - "type": "node", - "id": 355032469, - "lat": 52.9023934, - "lon": -1.4719762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 501" - } -}, -{ - "type": "node", - "id": 355032471, - "lat": 52.9042593, - "lon": -1.4667647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 774" - } -}, -{ - "type": "node", - "id": 355032472, - "lat": 52.9058211, - "lon": -1.4882408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 281" - } -}, -{ - "type": "node", - "id": 355032473, - "lat": 52.9084806, - "lon": -1.4826357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 78" - } -}, -{ - "type": "node", - "id": 355032475, - "lat": 52.9056543, - "lon": -1.4772632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 355032477, - "lat": 52.9103423, - "lon": -1.4780519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355032478, - "lat": 52.9131582, - "lon": -1.4811618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DE23", - "ref": "DE23 16" - } -}, -{ - "type": "node", - "id": 355032480, - "lat": 52.9108986, - "lon": -1.4817104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "DE23 6WR", - "ref": "DE23 142D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 355032483, - "lat": 52.9202853, - "lon": -1.4778381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 355032484, - "lat": 52.9094852, - "lon": -1.4976577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "666647378286120", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE23", - "ref": "DE23 22", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 355034030, - "lat": 51.4315777, - "lon": 0.1655173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA5 201D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 355253768, - "lat": 51.4145837, - "lon": -0.0705826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 355253919, - "lat": 51.4157821, - "lon": -0.0663003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 355292038, - "lat": 51.3586654, - "lon": -1.1501427, - "tags": { - "amenity": "post_box", - "note": "this post box has no ref" - } -}, -{ - "type": "node", - "id": 355309830, - "lat": 52.7097889, - "lon": -2.7371811, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY2 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 355591562, - "lat": 51.5006832, - "lon": -0.0989225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 17;SE1 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 355598110, - "lat": 51.4090911, - "lon": -3.4903738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "376589553955121", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF61 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355600885, - "lat": 52.8216706, - "lon": -2.1267031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ST16", - "ref": "ST16 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 355608147, - "lat": 52.6026521, - "lon": 1.2447075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355615402, - "lat": 52.4735571, - "lon": -2.0368574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B62 1260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 355633579, - "lat": 53.7692465, - "lon": -0.3693647, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 355633582, - "lat": 53.7678745, - "lon": -0.3418538, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 355633584, - "lat": 53.7675319, - "lon": -0.3316766, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 355633585, - "lat": 53.7715460, - "lon": -0.3547778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 355633586, - "lat": 53.7736041, - "lon": -0.3625622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 355633587, - "lat": 53.7760479, - "lon": -0.3859911, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 355633588, - "lat": 53.7786102, - "lon": -0.3674074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "HU6", - "ref": "HU6 178" - } -}, -{ - "type": "node", - "id": 355633590, - "lat": 53.7786366, - "lon": -0.3762300, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-31", - "operator": "Royal Mail", - "postal_code": "HU6", - "ref": "HU6 177" - } -}, -{ - "type": "node", - "id": 355633591, - "lat": 53.7821708, - "lon": -0.3771425, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 355633592, - "lat": 53.7798102, - "lon": -0.3853735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "HU6", - "ref": "HU6 3" - } -}, -{ - "type": "node", - "id": 355633593, - "lat": 53.7821070, - "lon": -0.3655394, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 355633594, - "lat": 53.7878740, - "lon": -0.3771098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 355633596, - "lat": 53.7833499, - "lon": -0.3877459, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 355633598, - "lat": 53.7870730, - "lon": -0.3680017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "HU6", - "ref": "HU6 295" - } -}, -{ - "type": "node", - "id": 355633599, - "lat": 53.7914294, - "lon": -0.3659673, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 355633600, - "lat": 53.8027694, - "lon": -0.3716184, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 355633601, - "lat": 53.7913558, - "lon": -0.3634461, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 355633605, - "lat": 53.7881939, - "lon": -0.3621682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "HU6 88D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 355633606, - "lat": 53.7850184, - "lon": -0.3602899, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 355633607, - "lat": 53.7821067, - "lon": -0.3526781, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 355633609, - "lat": 53.7815069, - "lon": -0.3580795, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 355633610, - "lat": 53.7786898, - "lon": -0.3567971, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 355715900, - "lat": 52.8788019, - "lon": -1.5493481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "DE65", - "ref": "DE65 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355715906, - "lat": 52.8707185, - "lon": -1.5435127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "501689005326856", - "name": "Findern Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE65", - "ref": "DE65 260", - "royal_cypher": "EIIR", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 355715907, - "lat": 52.8717073, - "lon": -1.5473216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "DE65", - "ref": "DE65 68" - } -}, -{ - "type": "node", - "id": 355715909, - "lat": 52.8931340, - "lon": -1.5139059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE23", - "ref": "DE23 791D" - } -}, -{ - "type": "node", - "id": 355719504, - "lat": 55.9656801, - "lon": -3.2034197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "mapillary": "8027042514018829", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 25", - "source": "survey", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 355739662, - "lat": 52.8658157, - "lon": -1.5426495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DE65", - "ref": "DE65 524" - } -}, -{ - "type": "node", - "id": 355751529, - "lat": 52.5645411, - "lon": -1.9833955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS2 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355751551, - "lat": 52.5687146, - "lon": -1.9932089, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 187" - } -}, -{ - "type": "node", - "id": 355758043, - "lat": 52.2099287, - "lon": -0.9435073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-12-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NN4 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355758821, - "lat": 51.9477295, - "lon": -0.5011146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LU5", - "ref": "LU5 83" - } -}, -{ - "type": "node", - "id": 355758822, - "lat": 51.9469601, - "lon": -0.5027460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "LU5", - "ref": "LU5 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355838340, - "lat": 53.3288339, - "lon": -2.7312060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA7 17" - } -}, -{ - "type": "node", - "id": 355838785, - "lat": 53.3222748, - "lon": -2.7233490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 31", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 355861749, - "lat": 55.9428419, - "lon": -3.9930908, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1528" - } -}, -{ - "type": "node", - "id": 355869651, - "lat": 51.4940862, - "lon": -3.5773180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "325023720103227", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 355925555, - "lat": 53.7101101, - "lon": -0.0754466, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 355925604, - "lat": 53.7009470, - "lon": -0.0795846, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 355925892, - "lat": 53.6520211, - "lon": -0.0842161, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 355928197, - "lat": 53.6715007, - "lon": -0.0248096, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 355930790, - "lat": 53.7123358, - "lon": -0.1371954, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 355930794, - "lat": 53.7194836, - "lon": -0.1521679, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 355930796, - "lat": 53.7209668, - "lon": -0.1722114, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 355935485, - "lat": 54.5729883, - "lon": -1.3503642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 355947962, - "lat": 51.4925495, - "lon": -2.6031639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BS9", - "ref": "BS9 1123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355952242, - "lat": 51.4963589, - "lon": -2.6194997, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS9 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 355953113, - "lat": 51.5085058, - "lon": -2.6171947, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS10", - "ref": "BS10 1121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 355957739, - "lat": 54.5685723, - "lon": -1.3328191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 355961858, - "lat": 51.4749858, - "lon": -2.5315904, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS16", - "ref": "BS16 209", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 355964175, - "lat": 51.4839532, - "lon": -2.5833062, - "tags": { - "amenity": "post_box", - "postal_code": "BS7", - "ref": "BS7 355" - } -}, -{ - "type": "node", - "id": 355964177, - "lat": 51.4877403, - "lon": -2.5902444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "postal_code": "BS7", - "ref": "BS7 356D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 355967355, - "lat": 51.5299991, - "lon": -2.4811792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1936367083390385", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS36", - "ref": "BS36 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 355969112, - "lat": 51.5146694, - "lon": -2.5023179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "BS36", - "ref": "BS36 1047", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 355992922, - "lat": 51.7611075, - "lon": -1.2235491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "postal_code": "OX3", - "ref": "OX3 715" - } -}, -{ - "type": "node", - "id": 356064260, - "lat": 52.6128974, - "lon": 1.2690596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 413", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 356068378, - "lat": 52.6220131, - "lon": 1.2564064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:05; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR4", - "ref": "NR4 429" - } -}, -{ - "type": "node", - "id": 356069886, - "lat": 52.6295209, - "lon": 1.2476955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "postal_code": "NR4", - "ref": "NR4 445" - } -}, -{ - "type": "node", - "id": 356073973, - "lat": 53.7791587, - "lon": -1.6106112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356074104, - "lat": 53.7867761, - "lon": -1.6186482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 719", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356074106, - "lat": 53.7922390, - "lon": -1.6188881, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 840" - } -}, -{ - "type": "node", - "id": 356075690, - "lat": 53.7862480, - "lon": -1.6101801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 961", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356083746, - "lat": 54.5710810, - "lon": -1.3380878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 356222991, - "lat": 53.1002808, - "lon": -1.2310511, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 356224851, - "lat": 51.4469938, - "lon": 0.0057726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356225987, - "lat": 51.4487701, - "lon": 0.0150562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356226224, - "lat": 51.4492671, - "lon": 0.0129615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE12 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356233269, - "lat": 52.6051366, - "lon": 1.2624104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356256511, - "lat": 52.6209327, - "lon": 1.2418949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "level": "0", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "NR4", - "ref": "NR4 444;NR4 430" - } -}, -{ - "type": "node", - "id": 356257787, - "lat": 52.6063503, - "lon": 1.2543072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 409D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356258532, - "lat": 52.6091468, - "lon": 1.2523386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR4 415", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 356263331, - "lat": 52.6120262, - "lon": 1.2502930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 431D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356265263, - "lat": 52.6157747, - "lon": 1.2719012, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 435D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356265634, - "lat": 52.6268028, - "lon": 1.2233812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:15", - "note": "Overhangs a garden wall", - "operator": "Royal Mail", - "postal_code": "NR4", - "ref": "NR4 439" - } -}, -{ - "type": "node", - "id": 356265892, - "lat": 52.5954472, - "lon": 1.2770146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356267661, - "lat": 52.9794507, - "lon": -0.0318169, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "postal_code": "PE21", - "ref": "PE21 217" - } -}, -{ - "type": "node", - "id": 356278393, - "lat": 51.5650868, - "lon": 0.0836243, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "IG1", - "ref": "IG1 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 356278657, - "lat": 51.5658901, - "lon": 0.0794107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IG1", - "ref": "IG1 36", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 356278831, - "lat": 51.5594332, - "lon": 0.0700662, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "IG1", - "ref": "IG1 47;IG1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356278960, - "lat": 51.5653782, - "lon": 0.0750587, - "tags": { - "amenity": "post_box", - "postal_code": "IG1", - "ref": "IG1 31" - } -}, -{ - "type": "node", - "id": 356279131, - "lat": 51.5752500, - "lon": 0.0905282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IG2", - "ref": "IG2 56" - } -}, -{ - "type": "node", - "id": 356279374, - "lat": 51.5794509, - "lon": 0.0953319, - "tags": { - "amenity": "post_box", - "postal_code": "IG2", - "ref": "IG2 133" - } -}, -{ - "type": "node", - "id": 356279482, - "lat": 51.5719723, - "lon": 0.0783460, - "tags": { - "amenity": "post_box", - "postal_code": "IG2", - "ref": "IG2 80" - } -}, -{ - "type": "node", - "id": 356279627, - "lat": 51.5703239, - "lon": 0.0901134, - "tags": { - "amenity": "post_box", - "postal_code": "IG2", - "ref": "IG2 63" - } -}, -{ - "type": "node", - "id": 356279773, - "lat": 51.5749276, - "lon": 0.0944393, - "tags": { - "amenity": "post_box", - "postal_code": "IG2", - "ref": "IG2 110" - } -}, -{ - "type": "node", - "id": 356316914, - "lat": 51.0844133, - "lon": 0.9368400, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN25 169", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 169D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 356344172, - "lat": 51.5880748, - "lon": 0.0035575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "E17 3", - "ref": "E17 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356345031, - "lat": 51.5870860, - "lon": -0.0035779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356345490, - "lat": 51.5881156, - "lon": -0.0080508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 39D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356345548, - "lat": 51.5859634, - "lon": -0.0126388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 9", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356346096, - "lat": 51.5887098, - "lon": -0.0111797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356347194, - "lat": 51.5865500, - "lon": -0.0021245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "E17 3QG", - "ref": "E17 24", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356349616, - "lat": 51.5941354, - "lon": -0.0051125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 54", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356352176, - "lat": 51.5985181, - "lon": -0.0013125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "E17 6HJ", - "ref": "E17 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356655042, - "lat": 51.7941267, - "lon": 1.0465272, - "tags": { - "amenity": "post_box", - "mapillary": "399066538531067", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CO16 8JL", - "ref": "CO16 85", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 356699771, - "lat": 51.9786656, - "lon": 0.4075518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB10 106", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 356722860, - "lat": 52.4782954, - "lon": -1.8883033, - "tags": { - "amenity": "post_box", - "ref": "B5 1153", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356767759, - "lat": 52.6097931, - "lon": -1.0869832, - "tags": { - "amenity": "post_box", - "note": "Position needs refining" - } -}, -{ - "type": "node", - "id": 356768257, - "lat": 52.6120881, - "lon": -1.1010465, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 469" - } -}, -{ - "type": "node", - "id": 356768638, - "lat": 52.6075993, - "lon": -1.0956827, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 39" - } -}, -{ - "type": "node", - "id": 356778251, - "lat": 51.5421515, - "lon": 0.0026929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 1D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356800870, - "lat": 51.4906023, - "lon": -0.1965957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Handyside and Co Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "SW5 18", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 356808460, - "lat": 54.9720331, - "lon": -1.6147493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "post_box:type": "pillar", - "ref": "NE1 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 356833183, - "lat": 51.4923536, - "lon": -0.1994880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356844019, - "lat": 54.9709187, - "lon": -1.5989782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:letter_size": "C4", - "post_box:type": "pillar", - "ref": "NE1 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356846193, - "lat": 51.4934250, - "lon": -0.1963822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 6", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356892778, - "lat": 53.3806166, - "lon": -2.4899592, - "tags": { - "amenity": "post_box", - "note": "collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 339", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 356893667, - "lat": 53.3795513, - "lon": -2.4916219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 208", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 356918490, - "lat": 51.7246997, - "lon": -0.8299258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 356930731, - "lat": 51.7310128, - "lon": -0.8153853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "HP27 0LL", - "ref": "HP27 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 356951806, - "lat": 51.5832680, - "lon": -0.0234469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E17 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 356955196, - "lat": 53.3805681, - "lon": -2.4784730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA13 137", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 356958210, - "lat": 53.1099853, - "lon": -1.6290969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 334" - } -}, -{ - "type": "node", - "id": 356961644, - "lat": 51.5235437, - "lon": 0.0303950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 356966418, - "lat": 53.1188511, - "lon": -1.5898072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 1358" - } -}, -{ - "type": "node", - "id": 356967318, - "lat": 53.1168115, - "lon": -1.5810232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 356968397, - "lat": 53.1211388, - "lon": -1.5844245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 965", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 356970427, - "lat": 53.1199526, - "lon": -1.5950082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 934" - } -}, -{ - "type": "node", - "id": 356970779, - "lat": 51.5218347, - "lon": 0.0216161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E13 3;E13 1003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 357142349, - "lat": 51.3748548, - "lon": -1.0488271, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG7 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 357147005, - "lat": 52.6320876, - "lon": -1.2829598, - "tags": { - "amenity": "post_box", - "postal_code": "LE9", - "ref": "LE9 119" - } -}, -{ - "type": "node", - "id": 357151150, - "lat": 52.6282775, - "lon": -1.2974186, - "tags": { - "amenity": "post_box", - "postal_code": "LE9", - "ref": "LE9 284" - } -}, -{ - "type": "node", - "id": 357168597, - "lat": 52.6255299, - "lon": -1.3020008, - "tags": { - "amenity": "post_box", - "postal_code": "LE9", - "ref": "LE9 763" - } -}, -{ - "type": "node", - "id": 357179084, - "lat": 52.6228055, - "lon": -1.2987397, - "tags": { - "amenity": "post_box", - "postal_code": "LE9", - "ref": "LE9 775" - } -}, -{ - "type": "node", - "id": 357179106, - "lat": 52.6256017, - "lon": -1.2947009, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 357190876, - "lat": 52.6296356, - "lon": -1.3232620, - "tags": { - "amenity": "post_box", - "postal_code": "LE9", - "ref": "LE9 757" - } -}, -{ - "type": "node", - "id": 357203998, - "lat": 50.9115400, - "lon": -1.4201834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO15", - "ref": "SO15 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 357204000, - "lat": 50.9352058, - "lon": -1.4107383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO16", - "ref": "SO16 198D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 357204002, - "lat": 50.9318547, - "lon": -1.4239380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO16", - "ref": "SO16 77D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 357204006, - "lat": 50.9286039, - "lon": -1.4304320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO16", - "ref": "SO16 112D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 357204007, - "lat": 50.9238089, - "lon": -1.4322350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SO15", - "ref": "SO15 65", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 357204573, - "lat": 53.4851115, - "lon": -2.2379382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M4 361D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 357206475, - "lat": 51.4207539, - "lon": -0.2044019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW19", - "ref": "SW19 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357206476, - "lat": 51.4209470, - "lon": -0.1910090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW19", - "ref": "SW19 50" - } -}, -{ - "type": "node", - "id": 357208643, - "lat": 51.3934000, - "lon": -0.3103885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KT6", - "ref": "KT6 110", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 357208645, - "lat": 51.3992022, - "lon": -0.3090394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 12:15; Su off", - "mapillary": "5809232889118872", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KT1", - "ref": "KT1 22", - "survey:date": "2021-07-11" - } -}, -{ - "type": "node", - "id": 357208646, - "lat": 51.3966985, - "lon": -0.3111108, - "tags": { - "amenity": "post_box", - "mapillary": "924727028369282", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KT6", - "ref": "KT6 73", - "survey:date": "2021-02-01" - } -}, -{ - "type": "node", - "id": 357208647, - "lat": 51.4245703, - "lon": -0.3068843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "KT2 151D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 357208649, - "lat": 51.4576339, - "lon": -0.3047554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-01", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 357209297, - "lat": 52.6297510, - "lon": -1.3414197, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE9", - "ref": "LE9 665" - } -}, -{ - "type": "node", - "id": 357212560, - "lat": 52.6319800, - "lon": -1.3446321, - "tags": { - "amenity": "post_box", - "postal_code": "LE9", - "ref": "LE9 38" - } -}, -{ - "type": "node", - "id": 357230552, - "lat": 52.6009900, - "lon": 1.2435433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 421D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357230574, - "lat": 52.5955979, - "lon": 1.2561895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 418D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357230587, - "lat": 52.5906355, - "lon": 1.2566628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 417D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357230628, - "lat": 52.6063031, - "lon": 1.2583171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 403D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357239824, - "lat": 52.2438080, - "lon": 0.7365058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "IP32 2274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357240859, - "lat": 52.2424579, - "lon": 0.7536467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP32 8227;IP32 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357270356, - "lat": 52.6303834, - "lon": -1.3345771, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "LE9", - "ref": "LE9 370", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 357324961, - "lat": 52.6249510, - "lon": -1.4190443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CV13", - "ref": "CV13 41", - "source": "survey;streetlevel imagery;Website", - "website": "https://www.royalmail.com/services-near-you/postbox/railway-station-cv13-0aa/0000CV1341" - } -}, -{ - "type": "node", - "id": 357324964, - "lat": 52.6246120, - "lon": -1.4110521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV13", - "ref": "CV13 142", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 357346786, - "lat": 53.0991607, - "lon": -1.2446420, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 357407102, - "lat": 55.9611177, - "lon": -3.1807970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "826421642712265", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing;survey", - "survey:date": "2024-06-05" - } -}, -{ - "type": "node", - "id": 357433131, - "lat": 55.1005748, - "lon": -1.5849258, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 3QS", - "ref": "NE23 688", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 357462267, - "lat": 55.9707701, - "lon": -3.1795703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 253", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 357462406, - "lat": 55.9695540, - "lon": -3.1814748, - "tags": { - "amenity": "post_box", - "ref": "EH6 635" - } -}, -{ - "type": "node", - "id": 357489333, - "lat": 52.6088330, - "lon": -1.0992137, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 224" - } -}, -{ - "type": "node", - "id": 357490543, - "lat": 52.6064027, - "lon": -1.1039086, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 426", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 357521367, - "lat": 53.7031614, - "lon": -1.6060932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 55" - } -}, -{ - "type": "node", - "id": 357527330, - "lat": 51.4216684, - "lon": -0.5809555, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 357527368, - "lat": 51.4292754, - "lon": -0.5681878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TW20 317D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 357536364, - "lat": 53.1274439, - "lon": -1.2887436, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 357553030, - "lat": 53.1314042, - "lon": -1.3034464, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 357555677, - "lat": 53.1325057, - "lon": -1.3098586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG17 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 357598089, - "lat": 57.2865749, - "lon": -5.5856214, - "tags": { - "amenity": "post_box", - "ref": "IV40 2", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 357612879, - "lat": 57.2967474, - "lon": -5.7246607, - "tags": { - "amenity": "post_box", - "ref": "IV40 13", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 357632144, - "lat": 55.1860682, - "lon": -1.5149244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE64 6HQ", - "ref": "NE64 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 357651342, - "lat": 57.3183894, - "lon": -5.6801791, - "tags": { - "amenity": "post_box", - "ref": "IV40 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 357708680, - "lat": 53.7957744, - "lon": -1.5458456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 56P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 357722178, - "lat": 53.7985270, - "lon": -1.5545625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LS1 250", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 357744101, - "lat": 53.7970739, - "lon": -1.5575260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate:date": "2018-10-02", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-26" - } -}, -{ - "type": "node", - "id": 357744104, - "lat": 53.7970728, - "lon": -1.5575075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 52P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2021-11-26" - } -}, -{ - "type": "node", - "id": 357751925, - "lat": 53.8011672, - "lon": -1.5512798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LS1 300", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 357863602, - "lat": 52.6006532, - "lon": -2.2053778, - "tags": { - "amenity": "post_box", - "postal_code": "WV6", - "ref": "WV6 54" - } -}, -{ - "type": "node", - "id": 357870934, - "lat": 52.5962034, - "lon": -2.1952272, - "tags": { - "amenity": "post_box", - "postal_code": "WV6", - "ref": "WV6 72" - } -}, -{ - "type": "node", - "id": 357870935, - "lat": 52.6069624, - "lon": -2.1948440, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 357870937, - "lat": 52.5926225, - "lon": -2.1978818, - "tags": { - "amenity": "post_box", - "postal_code": "WV6", - "ref": "WV6 161" - } -}, -{ - "type": "node", - "id": 357871025, - "lat": 52.5950000, - "lon": -2.2026247, - "tags": { - "amenity": "post_box", - "postal_code": "WV6", - "ref": "WV6 63" - } -}, -{ - "type": "node", - "id": 357871274, - "lat": 52.5956508, - "lon": -2.2093831, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WV6", - "ref": "WV6 177" - } -}, -{ - "type": "node", - "id": 357871562, - "lat": 52.6032494, - "lon": -2.1592792, - "tags": { - "amenity": "post_box", - "postal_code": "WV6", - "ref": "WV6 452" - } -}, -{ - "type": "node", - "id": 357871563, - "lat": 52.5956266, - "lon": -2.1544049, - "tags": { - "amenity": "post_box", - "ref": "WV6 48" - } -}, -{ - "type": "node", - "id": 357871566, - "lat": 52.5949415, - "lon": -2.1489658, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 357871567, - "lat": 52.5920657, - "lon": -2.1457479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "647126690056074", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WV6", - "ref": "WV6 156", - "survey:date": "2021-12-31" - } -}, -{ - "type": "node", - "id": 357888732, - "lat": 51.3557839, - "lon": 1.0243091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "mapillary": "491479605401994", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-05-02" - } -}, -{ - "type": "node", - "id": 357932666, - "lat": 50.8050657, - "lon": -0.5069458, - "tags": { - "amenity": "post_box", - "postal_code": "BN16", - "ref": "BN16 1434" - } -}, -{ - "type": "node", - "id": 357932670, - "lat": 50.8045398, - "lon": -0.5120468, - "tags": { - "amenity": "post_box", - "postal_code": "BN16", - "ref": "BN16 1433" - } -}, -{ - "type": "node", - "id": 357951205, - "lat": 52.6427067, - "lon": 1.2160203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "NR5 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357951210, - "lat": 52.6427057, - "lon": 1.2160475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 357991669, - "lat": 57.3419674, - "lon": -5.5648376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV40 10", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 357991795, - "lat": 57.3524993, - "lon": -5.5513397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 13:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV40 21", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 357994295, - "lat": 53.3893005, - "lon": -2.5929723, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA1 364", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 357994667, - "lat": 51.3298809, - "lon": 1.0243938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358000733, - "lat": 51.3281613, - "lon": 0.9995053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358008918, - "lat": 51.3468825, - "lon": 1.0422674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "note": "Inside front of store.", - "postal_code": "CT5", - "ref": "CT5 388", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358017023, - "lat": 51.3609347, - "lon": 1.0247492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT5 64", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 64D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-06" - } -}, -{ - "type": "node", - "id": 358021161, - "lat": 52.0606538, - "lon": -1.1467818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 90" - } -}, -{ - "type": "node", - "id": 358033875, - "lat": 51.3617040, - "lon": 1.0544511, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 320", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358033987, - "lat": 51.3612752, - "lon": 1.0497345, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 265", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358036121, - "lat": 51.3615447, - "lon": 1.0421901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358038118, - "lat": 51.3589163, - "lon": 1.0407970, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 166", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358038368, - "lat": 51.3629657, - "lon": 1.0611652, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 328", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358043328, - "lat": 51.3626150, - "lon": 1.0785992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 393", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358044394, - "lat": 51.3631967, - "lon": 1.0666617, - "tags": { - "amenity": "post_box", - "postal_code": "CT5", - "ref": "CT5 90", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358045701, - "lat": 51.3613550, - "lon": 1.0717510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 289", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358046086, - "lat": 51.3596729, - "lon": 1.0360222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT5", - "ref": "CT5 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358046567, - "lat": 51.3449143, - "lon": 1.0215246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT5", - "ref": "CT5 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358052047, - "lat": 52.5015054, - "lon": -1.8290130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B8 306", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358054767, - "lat": 52.4957933, - "lon": -1.7996746, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B34 903", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358058047, - "lat": 54.1220571, - "lon": -0.7233147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO17 20" - } -}, -{ - "type": "node", - "id": 358058051, - "lat": 54.1413583, - "lon": -0.7229383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 37" - } -}, -{ - "type": "node", - "id": 358059510, - "lat": 54.1209128, - "lon": -0.7625440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:25; Sa 12:40", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 96" - } -}, -{ - "type": "node", - "id": 358114904, - "lat": 52.4567893, - "lon": -1.8192749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref plate removed", - "post_box:type": "pillar", - "ref": "B25 559", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358117630, - "lat": 53.7404180, - "lon": -1.6513199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 225" - } -}, -{ - "type": "node", - "id": 358117632, - "lat": 55.0912565, - "lon": -1.5773386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "NE23 1NA", - "ref": "NE23 663" - } -}, -{ - "type": "node", - "id": 358117641, - "lat": 55.0953698, - "lon": -1.5910774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 3UT", - "ref": "NE23 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358117643, - "lat": 55.0922107, - "lon": -1.5825078, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "NE23 1RZ", - "ref": "NE23 672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358127116, - "lat": 51.6006460, - "lon": -0.0011138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 358166586, - "lat": 52.4593210, - "lon": -1.8379920, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358170611, - "lat": 52.3837819, - "lon": -1.5044166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "ref": "CV3 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358327473, - "lat": 52.5626672, - "lon": -2.8960977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "wall", - "ref": "SY5 137", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 358339082, - "lat": 52.4796810, - "lon": -1.8084512, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 421D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358424609, - "lat": 51.0105178, - "lon": -0.9887136, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-02-06", - "old_ref": "GU32 163", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358488939, - "lat": 51.1092405, - "lon": -0.8643503, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU35 35" - } -}, -{ - "type": "node", - "id": 358490627, - "lat": 51.1159905, - "lon": -0.8100992, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU35 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358491458, - "lat": 51.1232025, - "lon": -0.8058946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU35 120" - } -}, -{ - "type": "node", - "id": 358492991, - "lat": 51.6149295, - "lon": -2.5091909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 628", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358492995, - "lat": 51.6127037, - "lon": -2.5165551, - "tags": { - "amenity": "post_box", - "postal_code": "BS35", - "ref": "BS35 331" - } -}, -{ - "type": "node", - "id": 358511564, - "lat": 51.4811230, - "lon": -1.5567421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 07:30", - "mapillary": "551920249131265", - "note": "this postbox has no visible ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-07-28" - } -}, -{ - "type": "node", - "id": 358512100, - "lat": 53.6683964, - "lon": -1.6929146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 166" - } -}, -{ - "type": "node", - "id": 358514329, - "lat": 51.5096367, - "lon": -2.1579892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "name": "Leigh Delamere Service Station West Bound", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "SN14", - "ref": "SN14 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358516569, - "lat": 51.4947555, - "lon": -2.6261727, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS9", - "ref": "BS9 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358516915, - "lat": 53.6736836, - "lon": -1.6944350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WF14 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528329, - "lat": 52.6111436, - "lon": 1.2551263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528331, - "lat": 52.6159926, - "lon": 1.2613262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR4 433D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 358528335, - "lat": 52.6134237, - "lon": 1.2638985, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528343, - "lat": 52.6156975, - "lon": 1.2649653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 432D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528345, - "lat": 52.6180188, - "lon": 1.2674439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 420", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 358528365, - "lat": 52.6217147, - "lon": 1.2625157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "indoor": "yes", - "note": "Custom rectangular wooden box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 446", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 358528369, - "lat": 52.6250113, - "lon": 1.2599373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "NR4", - "ref": "NR4 410D" - } -}, -{ - "type": "node", - "id": 358528372, - "lat": 52.6246637, - "lon": 1.2492631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "NR4", - "ref": "NR4 428D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528385, - "lat": 52.6218367, - "lon": 1.2511605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "NR4", - "ref": "NR4 425D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528396, - "lat": 52.6164906, - "lon": 1.2512013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358528408, - "lat": 52.6158419, - "lon": 1.2550996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358530354, - "lat": 51.4583518, - "lon": -2.5966033, - "tags": { - "amenity": "post_box", - "postal_code": "BS2", - "ref": "BS2 323" - } -}, -{ - "type": "node", - "id": 358536910, - "lat": 51.4858900, - "lon": -2.5955641, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-16", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "location": "inside", - "post_box:type": "pillar", - "postal_code": "BS6", - "ref": "BS6 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 358547889, - "lat": 51.4835753, - "lon": -1.5575281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG17", - "ref": "RG17 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-05-27" - } -}, -{ - "type": "node", - "id": 358548483, - "lat": 51.5043670, - "lon": -0.0762673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-04", - "collection_plate": "CP9", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "colour": "red", - "drive_through": "no", - "manufacturer:wikidata": "Q125385728", - "note": "in alcove in pedestrianised area by steps leading up to the road over the bridge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "SE1 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box SE1 35" - } -}, -{ - "type": "node", - "id": 358548485, - "lat": 51.5064499, - "lon": -0.0708358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1W 75D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358548488, - "lat": 51.5072695, - "lon": -0.0677576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1W 62;E1W 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358548491, - "lat": 51.5120324, - "lon": -0.0989372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "separate ref for each aperture. LH marked Stamped, RH marked Franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "EC4 414D;EC4 4141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358548493, - "lat": 51.5141588, - "lon": -0.1075102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4Y 413D;EC4Y 4131D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358548500, - "lat": 51.5120960, - "lon": -0.1165588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "inscription": "This plaque commemorates the bicentenary of the birth of Anthony Trollope (1815-1882), who introduced pillar boxes to the United Kingdom in 1852. In 1855 this street became one of the first in London to have a pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2R 79;WC2R 279", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358549600, - "lat": 51.4146425, - "lon": -1.3755309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "post_box:type": "wall", - "postal_code": "RG20", - "ref": "RG20 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 358633518, - "lat": 54.5771582, - "lon": -1.3324859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 358941797, - "lat": 51.5007657, - "lon": -0.1014315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 78;SE1 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 358988277, - "lat": 52.6198612, - "lon": 1.2611103, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 427D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 359045283, - "lat": 52.4178188, - "lon": -1.7971085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 353D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359117901, - "lat": 51.5979498, - "lon": -0.0153599, - "tags": { - "addr:housenumber": "228", - "addr:street": "Chingford Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 4", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 359118147, - "lat": 51.5972931, - "lon": -0.0141453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 359118153, - "lat": 51.5955806, - "lon": -0.0092186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "E17 4JH", - "ref": "E17 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 359118338, - "lat": 51.5900594, - "lon": -0.0163702, - "tags": { - "addr:housenumber": "619", - "addr:street": "Forest Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "E17 4NE", - "ref": "E17 30", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 359118619, - "lat": 51.5891233, - "lon": -0.0196310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 359120565, - "lat": 51.5955011, - "lon": 0.0045280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 359154203, - "lat": 57.5671728, - "lon": -4.1692139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV9 130", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359167647, - "lat": 51.2630891, - "lon": -1.0432825, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 162" - } -}, -{ - "type": "node", - "id": 359170255, - "lat": 50.8236236, - "lon": -0.5348908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-07", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN17 1485D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359171403, - "lat": 51.3917821, - "lon": -0.3112980, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KT6", - "ref": "KT6 64D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 359194903, - "lat": 52.6169436, - "lon": 1.2196594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:45", - "operator": "Royal Mail", - "postal_code": "NR4", - "ref": "NR4 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359194917, - "lat": 52.6175940, - "lon": 1.2208555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR4", - "ref": "NR4 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359194922, - "lat": 52.6099139, - "lon": 1.2762562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 411D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 359194923, - "lat": 52.6067586, - "lon": 1.2783072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359194924, - "lat": 52.6116245, - "lon": 1.2815085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 404D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 359194928, - "lat": 52.6087834, - "lon": 1.2836066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR4 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 359194937, - "lat": 52.6098138, - "lon": 1.2899986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359194938, - "lat": 52.6037918, - "lon": 1.2846601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR4 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359194984, - "lat": 52.6024048, - "lon": 1.2802276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR4 402D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359239227, - "lat": 51.5029234, - "lon": -0.0779982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 86;SE1 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359239228, - "lat": 51.5036234, - "lon": -0.0801653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "name": "159 Tooley Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 22;SE1 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359406545, - "lat": 55.8672169, - "lon": -3.0361276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH22 192D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359415939, - "lat": 55.0860688, - "lon": -1.5865828, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6QW", - "ref": "NE23 687" - } -}, -{ - "type": "node", - "id": 359416692, - "lat": 51.0740720, - "lon": -3.2103585, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 390", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 359545109, - "lat": 53.0396460, - "lon": -2.1691516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "ST1 228" - } -}, -{ - "type": "node", - "id": 359550930, - "lat": 51.6352880, - "lon": -2.4604113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL12 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359550932, - "lat": 51.6093639, - "lon": -2.4861726, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "GL12", - "ref": "GL12 177", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 359551974, - "lat": 55.8978448, - "lon": -4.3777091, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 359554844, - "lat": 55.8968237, - "lon": -4.3720114, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 359583537, - "lat": 53.1402776, - "lon": -1.2763097, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 359591944, - "lat": 52.6287733, - "lon": 1.2379293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 512" - } -}, -{ - "type": "node", - "id": 359591960, - "lat": 52.6319535, - "lon": 1.2410203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 515" - } -}, -{ - "type": "node", - "id": 359591962, - "lat": 52.6337187, - "lon": 1.2330965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 513" - } -}, -{ - "type": "node", - "id": 359591964, - "lat": 52.6317277, - "lon": 1.2466621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 511" - } -}, -{ - "type": "node", - "id": 359591966, - "lat": 52.6315416, - "lon": 1.2538608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 510D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 359591971, - "lat": 52.6390946, - "lon": 1.2408178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 520", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 359596452, - "lat": 52.6305421, - "lon": 1.2201526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 526" - } -}, -{ - "type": "node", - "id": 359596454, - "lat": 52.6373625, - "lon": 1.2168396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "NR5 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359653984, - "lat": 53.8035154, - "lon": -1.6600585, - "tags": { - "amenity": "post_box", - "note": "franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "postal_code": "LS28", - "ref": "LS28 2" - } -}, -{ - "type": "node", - "id": 359653986, - "lat": 53.8033828, - "lon": -1.6660501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS28", - "ref": "LS28 748" - } -}, -{ - "type": "node", - "id": 359659451, - "lat": 53.7955956, - "lon": -1.6645884, - "tags": { - "amenity": "post_box", - "note": "double box with 2 different refs", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "LS28", - "ref": "LS28 734;LS28 1734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359659463, - "lat": 53.7977040, - "lon": -1.6543230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "LS28", - "ref": "LS28 440" - } -}, -{ - "type": "node", - "id": 359660769, - "lat": 53.8040872, - "lon": -1.6399715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "LS13", - "ref": "LS13 508", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 359685658, - "lat": 51.2703341, - "lon": -1.0520728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "506574123803700", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG24", - "ref": "RG24 30", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 359690089, - "lat": 51.2718321, - "lon": -1.0471868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "178862114116499", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG24", - "ref": "RG24 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-01-04" - } -}, -{ - "type": "node", - "id": 359723849, - "lat": 52.0682189, - "lon": -1.0830772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN13 152" - } -}, -{ - "type": "node", - "id": 359725838, - "lat": 51.5023420, - "lon": -0.0923600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "when seen on 2022-12-22 was sealed due to building works around it (although pavement open)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SE1 37;SE1 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359725858, - "lat": 51.5007892, - "lon": -0.0936579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 1;SE1 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359852629, - "lat": 53.0274276, - "lon": -2.1713180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359955678, - "lat": 52.7054969, - "lon": -2.7731901, - "tags": { - "amenity": "post_box", - "postal_code": "SY3", - "ref": "SY3 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 359960088, - "lat": 51.3399464, - "lon": -0.4882330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT14 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 359960727, - "lat": 51.3378315, - "lon": -0.5317083, - "tags": { - "amenity": "post_box", - "check_date": "2019-04-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359961067, - "lat": 51.3303079, - "lon": -0.5476666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "GU21", - "ref": "GU21 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 359994404, - "lat": 51.4760299, - "lon": 0.3356303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 30" - } -}, -{ - "type": "node", - "id": 360012018, - "lat": 51.5942946, - "lon": -0.0102627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E17 70", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360012838, - "lat": 51.5926731, - "lon": -0.0228307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 41", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360013232, - "lat": 51.5899270, - "lon": -0.0254056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360013484, - "lat": 51.5868798, - "lon": -0.0206524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360013834, - "lat": 51.5863380, - "lon": -0.0262039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 35", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360014145, - "lat": 51.5881538, - "lon": -0.0301934, - "tags": { - "addr:housenumber": "89", - "addr:street": "Palmerston Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 51", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360014611, - "lat": 51.5821088, - "lon": -0.0310361, - "tags": { - "addr:housenumber": "48", - "addr:street": "High Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 31", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360014664, - "lat": 51.5814398, - "lon": -0.0345602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "E17 7HA", - "ref": "E17 17", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360015150, - "lat": 51.5808372, - "lon": -0.0381507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E17 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360015322, - "lat": 51.5847736, - "lon": -0.0378466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360015504, - "lat": 51.5895825, - "lon": -0.0395658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360015614, - "lat": 51.5910387, - "lon": -0.0401829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E17 72P", - "royal_cypher": "no", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360015764, - "lat": 51.5944250, - "lon": -0.0402710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 47", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360016041, - "lat": 51.5997264, - "lon": -0.0281831, - "tags": { - "addr:housenumber": "174", - "addr:street": "Billet Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "E17 5DX", - "ref": "E17 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360016262, - "lat": 51.5998009, - "lon": -0.0231523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360016384, - "lat": 51.5961656, - "lon": -0.0236804, - "tags": { - "addr:housenumber": "143", - "addr:street": "Carr Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 57", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360016466, - "lat": 51.5929664, - "lon": -0.0267789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 82", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360016530, - "lat": 51.5911718, - "lon": -0.0321569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360016641, - "lat": 51.5881299, - "lon": -0.0333879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 66", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 360018796, - "lat": 51.2844631, - "lon": -1.0599214, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG24 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360018797, - "lat": 51.2844628, - "lon": -1.0599045, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG24 3200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360027194, - "lat": 51.2787937, - "lon": -1.0539975, - "tags": { - "amenity": "post_box", - "note": "the ref is \"RG24 326\" - suspect it should be \"RG24 362\"", - "postal_code": "RG24" - } -}, -{ - "type": "node", - "id": 360027195, - "lat": 51.2805019, - "lon": -1.0657906, - "tags": { - "amenity": "post_box", - "note": "the ref is \"RG24 362\" - suspect it should be \"RG24 326\"", - "postal_code": "RG24" - } -}, -{ - "type": "node", - "id": 360027557, - "lat": 53.7160745, - "lon": -1.6785985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF16 139" - } -}, -{ - "type": "node", - "id": 360031223, - "lat": 51.2805404, - "lon": -1.0657677, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 100" - } -}, -{ - "type": "node", - "id": 360036047, - "lat": 52.5720752, - "lon": -2.0094114, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "post_box:type": "lamp", - "postal_code": "WS2", - "ref": "WS2 45", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 360036070, - "lat": 52.5752480, - "lon": -2.0112283, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "postal_code": "WS2", - "ref": "WS2 284" - } -}, -{ - "type": "node", - "id": 360036127, - "lat": 52.5827168, - "lon": -2.0053464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2018-12-02", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "colour": "red", - "note": "Collection times soon to be updated", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS2 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing; dracos" - } -}, -{ - "type": "node", - "id": 360036152, - "lat": 52.5812430, - "lon": -2.0025039, - "tags": { - "amenity": "post_box", - "postal_code": "WS2", - "ref": "WS2 326" - } -}, -{ - "type": "node", - "id": 360036158, - "lat": 52.5751460, - "lon": -2.0051875, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "postal_code": "WS2", - "ref": "WS2 68" - } -}, -{ - "type": "node", - "id": 360038033, - "lat": 51.6798980, - "lon": -2.3114805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "715856223979939", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL11 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-01-13" - } -}, -{ - "type": "node", - "id": 360042315, - "lat": 51.5489637, - "lon": -0.1050759, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-07-05", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N5 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360057898, - "lat": 52.6628638, - "lon": -1.1123569, - "tags": { - "amenity": "post_box", - "note": "2 Post boxes beside each other, one has no", - "post_box:type": "pillar", - "ref": "LE4 806", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360057900, - "lat": 52.6628744, - "lon": -1.1123485, - "tags": { - "amenity": "post_box", - "note": "2 Post boxes beside each other, one has no", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 360063805, - "lat": 53.3583679, - "lon": -1.4699049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 823", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360067135, - "lat": 53.3558783, - "lon": -1.4643049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S8 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360075863, - "lat": 53.3715345, - "lon": -1.4616581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 41D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 360212928, - "lat": 54.8297843, - "lon": -2.0777540, - "tags": { - "amenity": "post_box", - "ref": "DH8 18" - } -}, -{ - "type": "node", - "id": 360237314, - "lat": 54.7634292, - "lon": -1.5783148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 52" - } -}, -{ - "type": "node", - "id": 360259329, - "lat": 51.1071690, - "lon": 1.2206543, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 189" - } -}, -{ - "type": "node", - "id": 360293841, - "lat": 51.6973228, - "lon": -2.2289623, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL6", - "ref": "GL6 129" - } -}, -{ - "type": "node", - "id": 360293977, - "lat": 51.7181184, - "lon": -2.1994700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GL5", - "ref": "GL5 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360313731, - "lat": 52.4934628, - "lon": -2.0331850, - "tags": { - "amenity": "post_box", - "ref": "B69 1065", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360316208, - "lat": 51.0056119, - "lon": -0.9255579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU31 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360316468, - "lat": 51.7466345, - "lon": -2.2898994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360318240, - "lat": 51.7458888, - "lon": -2.2822372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GL10 1196;GL10 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360318261, - "lat": 51.8397940, - "lon": -2.2419905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL4 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360323186, - "lat": 53.9761766, - "lon": -1.9927180, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360324206, - "lat": 53.9787710, - "lon": -1.9879706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "BD23 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360325233, - "lat": 51.7421774, - "lon": -2.2046396, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "GL5", - "ref": "GL5 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 360325254, - "lat": 51.7431574, - "lon": -2.2121508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "postal_code": "GL5", - "ref": "GL5 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360328023, - "lat": 50.8163236, - "lon": -0.5045398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN16 1439", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360334537, - "lat": 55.9220483, - "lon": -3.3894327, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH52 344D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360338105, - "lat": 51.4191396, - "lon": -0.1618567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 360338110, - "lat": 51.4201146, - "lon": -0.1613724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360338115, - "lat": 51.4248771, - "lon": -0.1640421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 16" - } -}, -{ - "type": "node", - "id": 360338120, - "lat": 51.4256344, - "lon": -0.1648022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 1" - } -}, -{ - "type": "node", - "id": 360338125, - "lat": 51.4276408, - "lon": -0.1676511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 35" - } -}, -{ - "type": "node", - "id": 360338130, - "lat": 51.4240224, - "lon": -0.1718492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 13" - } -}, -{ - "type": "node", - "id": 360338136, - "lat": 51.4192932, - "lon": -0.1874176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW19 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360338139, - "lat": 51.4136201, - "lon": -0.1746792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 30" - } -}, -{ - "type": "node", - "id": 360338142, - "lat": 51.4109344, - "lon": -0.1732330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360338147, - "lat": 51.4114134, - "lon": -0.1678410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 360347540, - "lat": 51.7340222, - "lon": -2.2094400, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL5", - "ref": "GL5 97", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 360355269, - "lat": 50.7798716, - "lon": -3.6953777, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360375116, - "lat": 50.4664317, - "lon": -3.5216441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 360394066, - "lat": 50.4699008, - "lon": -3.5283884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 60D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 360394133, - "lat": 50.4714203, - "lon": -3.5314212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 360407214, - "lat": 53.3426063, - "lon": -2.2761710, - "tags": { - "amenity": "post_box", - "postal_code": "SK9", - "ref": "SK9 717" - } -}, -{ - "type": "node", - "id": 360409775, - "lat": 51.3347592, - "lon": -0.1427384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 420", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360413315, - "lat": 53.7021652, - "lon": -1.6809971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 129" - } -}, -{ - "type": "node", - "id": 360417290, - "lat": 51.3335223, - "lon": 0.1806669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN14 265", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360419294, - "lat": 53.3550307, - "lon": -2.2451805, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "SK9", - "ref": "SK9 319" - } -}, -{ - "type": "node", - "id": 360426925, - "lat": 51.5407144, - "lon": -0.1026047, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-03", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N1 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360453094, - "lat": 51.8423986, - "lon": 1.0281679, - "tags": { - "amenity": "post_box", - "mapillary": "921665478532897", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO7 8JG", - "ref": "CO7 266", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 360469311, - "lat": 50.8508749, - "lon": -1.1550884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO16", - "ref": "PO16 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360474327, - "lat": 53.0855165, - "lon": -1.5062655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 929" - } -}, -{ - "type": "node", - "id": 360475414, - "lat": 53.0842522, - "lon": -1.4786377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 942", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360476159, - "lat": 53.1035784, - "lon": -1.4290161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 371" - } -}, -{ - "type": "node", - "id": 360476720, - "lat": 53.0978835, - "lon": -1.4191438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 401" - } -}, -{ - "type": "node", - "id": 360490528, - "lat": 53.3183395, - "lon": -1.4686831, - "tags": { - "amenity": "post_box", - "ref": "S8 966" - } -}, -{ - "type": "node", - "id": 360498960, - "lat": 53.3298159, - "lon": -1.4722400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 42" - } -}, -{ - "type": "node", - "id": 360500225, - "lat": 53.3318884, - "lon": -1.4761232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 736", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 360617547, - "lat": 51.8479950, - "lon": -2.2545155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10f", - "ele": "14.5455322", - "mapillary": "182333653755504", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 43", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 360626146, - "lat": 50.8264739, - "lon": -1.0767974, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 274", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 360627478, - "lat": 52.7125476, - "lon": -2.7589420, - "tags": { - "amenity": "post_box", - "ref": "SY3 14" - } -}, -{ - "type": "node", - "id": 360628585, - "lat": 50.8303010, - "lon": -1.0793716, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PO2", - "ref": "PO2 374", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360630078, - "lat": 50.8298997, - "lon": -1.0746855, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO2", - "ref": "PO2 275D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 360644628, - "lat": 50.8311291, - "lon": -1.0622697, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "PO3", - "ref": "PO3 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360649597, - "lat": 50.8331699, - "lon": -1.0671181, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "PO3", - "ref": "PO3 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360650995, - "lat": 50.8301916, - "lon": -1.0656733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I have upgraded the postbox tag for this postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO3", - "ref": "PO3 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360653833, - "lat": 50.8386028, - "lon": -1.0676488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 232", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360654967, - "lat": 50.8397721, - "lon": -1.0641218, - "tags": { - "addr:city": "Cosham", - "addr:street": "Chatsworth Avenue", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360656405, - "lat": 50.8391850, - "lon": -1.0593729, - "tags": { - "addr:housename": "McColl's store", - "addr:street": "Chatsworth Avenue", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 265", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360657504, - "lat": 51.0146753, - "lon": -4.1991368, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 360660958, - "lat": 50.8430759, - "lon": -1.0621935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 211", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 360661556, - "lat": 50.8430283, - "lon": -1.0570102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360663228, - "lat": 50.9350735, - "lon": -4.1035504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360665438, - "lat": 50.8440724, - "lon": -1.0444485, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2021-03-28", - "old_ref": "PO6 222", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 222D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360666530, - "lat": 50.8466596, - "lon": -1.0497241, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "last_checked": "2021-03-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360670220, - "lat": 50.8463225, - "lon": -1.0551110, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "last_checked": "2021-03-28", - "name": "East Cosham, Drayton", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360676845, - "lat": 53.9798339, - "lon": -1.9913039, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 39", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360677595, - "lat": 55.1040038, - "lon": -1.5230185, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 3NA", - "ref": "NE24 699" - } -}, -{ - "type": "node", - "id": 360677608, - "lat": 55.1075597, - "lon": -1.5209685, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 3RN", - "ref": "NE24 698" - } -}, -{ - "type": "node", - "id": 360677610, - "lat": 55.1083438, - "lon": -1.5090875, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 3QF", - "ref": "NE24 556" - } -}, -{ - "type": "node", - "id": 360679771, - "lat": 50.8429849, - "lon": -1.0493171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360680863, - "lat": 53.3397435, - "lon": -2.2680826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-02-01", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK9 447" - } -}, -{ - "type": "node", - "id": 360681020, - "lat": 50.8504914, - "lon": -1.0475142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360682199, - "lat": 50.8464075, - "lon": -1.0597199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Burrill Avenue junction Havant Road", - "last_checked": "2021-05-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360683586, - "lat": 53.3481322, - "lon": -2.2437460, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SK9 486" - } -}, -{ - "type": "node", - "id": 360683994, - "lat": 50.8481417, - "lon": -1.0522154, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-28", - "old_ref": "PO6 218", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 218D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360694911, - "lat": 51.1437911, - "lon": 1.2309481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "note": "Technically a lamp box in brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360730810, - "lat": 55.7976902, - "lon": -4.2711322, - "tags": { - "amenity": "post_box", - "postal_code": "G44", - "ref": "G44 972" - } -}, -{ - "type": "node", - "id": 360743805, - "lat": 53.7993757, - "lon": -0.3327754, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 360743806, - "lat": 53.8097088, - "lon": -0.3288323, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360743810, - "lat": 53.8054707, - "lon": -0.3281550, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 360743812, - "lat": 53.7975246, - "lon": -0.3191032, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360743813, - "lat": 53.7908507, - "lon": -0.3111775, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743815, - "lat": 53.7808815, - "lon": -0.3052435, - "tags": { - "amenity": "post_box", - "created_by": "JOSM", - "ref": "HU7 49" - } -}, -{ - "type": "node", - "id": 360743832, - "lat": 53.7783090, - "lon": -0.3032946, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360743834, - "lat": 53.7822776, - "lon": -0.3152783, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743835, - "lat": 53.7788062, - "lon": -0.3257490, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360743842, - "lat": 53.7857477, - "lon": -0.3317682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743844, - "lat": 53.7836836, - "lon": -0.3434805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743845, - "lat": 53.7820020, - "lon": -0.3299055, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360743847, - "lat": 53.7763406, - "lon": -0.3294865, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360743848, - "lat": 53.7769694, - "lon": -0.3318357, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743850, - "lat": 53.7769873, - "lon": -0.3321417, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743851, - "lat": 53.7777199, - "lon": -0.3429245, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 360743853, - "lat": 53.7717033, - "lon": -0.3206291, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 360746678, - "lat": 54.9745385, - "lon": -1.5967947, - "tags": { - "amenity": "post_box", - "ref": "NE1 58" - } -}, -{ - "type": "node", - "id": 360746687, - "lat": 55.0974090, - "lon": -1.6093608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "797221550875651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 1WE", - "ref": "NE23 691", - "survey:date": "2021-04-21" - } -}, -{ - "type": "node", - "id": 360757159, - "lat": 53.7431801, - "lon": -1.5835176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 3" - } -}, -{ - "type": "node", - "id": 360814115, - "lat": 50.8607247, - "lon": -1.1986716, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "PO15", - "ref": "PO15 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360814154, - "lat": 50.8624959, - "lon": -1.2031356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO15", - "ref": "PO15 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360824536, - "lat": 51.8046092, - "lon": -0.2122510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "description": "/Bridge Road, B195 / Handside Lane", - "post_box:type": "pillar", - "ref": "AL8 158", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360875003, - "lat": 50.4864971, - "lon": -3.7716904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ11 75D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 360888053, - "lat": 50.5227084, - "lon": -3.7498099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 23:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 360898650, - "lat": 51.3616291, - "lon": -1.1627365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "640471521138125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "RG7", - "ref": "RG7 651", - "survey:date": "2023-07-17" - } -}, -{ - "type": "node", - "id": 360898655, - "lat": 51.3616396, - "lon": -1.1627684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "621574720068487", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG7", - "ref": "RG7 251", - "survey:date": "2023-07-17" - } -}, -{ - "type": "node", - "id": 360899381, - "lat": 51.4106524, - "lon": -1.3463597, - "tags": { - "amenity": "post_box", - "mapillary": "1878663972302017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG14", - "ref": "RG14 87", - "survey:date": "2021-02-19" - } -}, -{ - "type": "node", - "id": 360905427, - "lat": 51.4189995, - "lon": -1.5166418, - "tags": { - "amenity": "post_box", - "old_ref": "NY 321", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG17 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360907307, - "lat": 51.4105998, - "lon": -1.5701058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SN8", - "ref": "SN8 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360909798, - "lat": 51.5283583, - "lon": -1.7873616, - "tags": { - "amenity": "post_box", - "mapillary": "1202329886958949", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN4", - "ref": "SN4 194", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 360909799, - "lat": 51.5540190, - "lon": -1.7505956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 333", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 360912267, - "lat": 51.4092342, - "lon": -1.6067058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 360913761, - "lat": 57.4265915, - "lon": -4.4746720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV4 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360913765, - "lat": 57.3366343, - "lon": -4.6153441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IV63 181", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360913998, - "lat": 51.4144424, - "lon": -1.7026050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SN8", - "ref": "SN8 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 360927038, - "lat": 51.4141127, - "lon": -1.8391770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SN8", - "ref": "SN8 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360936762, - "lat": 51.5240151, - "lon": -2.5954135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "BS34", - "ref": "BS34 690", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360940526, - "lat": 51.5201239, - "lon": -2.6204607, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS10", - "ref": "BS10 325D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360949632, - "lat": 53.3276548, - "lon": -1.4738848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S8 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360951246, - "lat": 57.3051987, - "lon": -4.8116586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV4", - "ref": "IV4 164", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 360955331, - "lat": 50.8029300, - "lon": -1.1403912, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO12 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360957262, - "lat": 53.3332509, - "lon": -1.4623334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S8 826", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360962190, - "lat": 53.3356428, - "lon": -1.4566916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S8 694", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360965865, - "lat": 53.3389528, - "lon": -1.4540671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360971932, - "lat": 50.8099415, - "lon": -0.5459246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "last_collection": "5.15pm Sat 11.30am", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BN17", - "ref": "BN17 1494" - } -}, -{ - "type": "node", - "id": 360971953, - "lat": 50.7969127, - "lon": -1.0926153, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-21", - "check_date:collection_times": "2022-06-21", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360971986, - "lat": 50.7951428, - "lon": -1.0947701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO1", - "ref": "PO1 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 360977167, - "lat": 53.3520452, - "lon": -1.4785021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 360980210, - "lat": 50.7922370, - "lon": -1.0915787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361043495, - "lat": 51.7812671, - "lon": 1.1200467, - "tags": { - "amenity": "post_box", - "mapillary": "422231529627039", - "post_box:type": "pillar", - "postal_code": "CO15 2RG", - "ref": "CO15 149", - "survey:date": "2021-12-03" - } -}, -{ - "type": "node", - "id": 361043601, - "lat": 51.7870706, - "lon": 1.1154919, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 2QS", - "ref": "CO15 177" - } -}, -{ - "type": "node", - "id": 361043892, - "lat": 51.7789131, - "lon": 1.1207538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO15 2RY", - "ref": "CO15 140" - } -}, -{ - "type": "node", - "id": 361043894, - "lat": 51.7846261, - "lon": 1.1135604, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 2NT", - "ref": "CO15 120" - } -}, -{ - "type": "node", - "id": 361052184, - "lat": 53.5469417, - "lon": -0.8296806, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 361056246, - "lat": 53.5299283, - "lon": -0.8308168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN9 44" - } -}, -{ - "type": "node", - "id": 361062863, - "lat": 51.8318340, - "lon": -2.1571025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f", - "ele": "183.0152588", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL3 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 361088173, - "lat": 54.0150718, - "lon": -1.6598413, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 150", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361088286, - "lat": 51.1416807, - "lon": 0.8483370, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN23 11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN23", - "ref": "TN23 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 361090434, - "lat": 51.1397521, - "lon": 0.8534159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN23", - "ref": "TN23 311", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361091151, - "lat": 51.1430936, - "lon": 0.8529031, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN23 191", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN23 191D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 361096073, - "lat": 51.0806105, - "lon": 1.0771797, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT21", - "ref": "CT21 135" - } -}, -{ - "type": "node", - "id": 361096077, - "lat": 51.0775470, - "lon": 1.0781800, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 180" - } -}, -{ - "type": "node", - "id": 361096083, - "lat": 51.0745576, - "lon": 1.0767324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT21", - "ref": "CT21 134" - } -}, -{ - "type": "node", - "id": 361096092, - "lat": 51.0785530, - "lon": 1.0820519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT21", - "ref": "CT21 111D" - } -}, -{ - "type": "node", - "id": 361124886, - "lat": 52.4663380, - "lon": -2.0368173, - "tags": { - "amenity": "post_box", - "ref": "B62 923", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361130813, - "lat": 52.4705724, - "lon": -2.0423676, - "tags": { - "amenity": "post_box", - "ref": "B62 599", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361146504, - "lat": 52.6279872, - "lon": -1.9026283, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 89" - } -}, -{ - "type": "node", - "id": 361146519, - "lat": 52.6322343, - "lon": -1.8966549, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS9", - "ref": "WS9 154" - } -}, -{ - "type": "node", - "id": 361146523, - "lat": 52.6332668, - "lon": -1.8938607, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 346" - } -}, -{ - "type": "node", - "id": 361149403, - "lat": 52.6349528, - "lon": -1.8903396, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 327" - } -}, -{ - "type": "node", - "id": 361170601, - "lat": 53.8013546, - "lon": -1.7073472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD3 236" - } -}, -{ - "type": "node", - "id": 361182375, - "lat": 51.5792215, - "lon": -0.0220772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 28D", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361182464, - "lat": 51.5843459, - "lon": -0.0213060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E17 83P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361182901, - "lat": 51.5805145, - "lon": -0.0294475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 26", - "royal_cypher": "no", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361182982, - "lat": 51.5808389, - "lon": -0.0329161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361183681, - "lat": 51.5731139, - "lon": -0.0387198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E17 53P", - "royal_cypher": "no", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361183761, - "lat": 51.5761865, - "lon": -0.0306946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361183777, - "lat": 51.5772163, - "lon": -0.0298769, - "tags": { - "addr:housenumber": "99", - "addr:street": "Markhouse Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361184730, - "lat": 51.5810830, - "lon": -0.0234419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 42D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361185271, - "lat": 51.5847523, - "lon": 0.0035484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361185592, - "lat": 51.5805788, - "lon": -0.0075901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361185818, - "lat": 51.5802718, - "lon": -0.0136883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361186092, - "lat": 51.5773224, - "lon": -0.0161767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361186370, - "lat": 51.5827970, - "lon": -0.0117679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361199081, - "lat": 55.1115855, - "lon": -1.5189818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 3HL", - "ref": "NE24 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361228581, - "lat": 53.3553932, - "lon": -1.4712569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361235130, - "lat": 51.3999658, - "lon": -0.1929964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM4 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361235132, - "lat": 51.3937039, - "lon": -0.1979333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 233D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361235135, - "lat": 51.3918466, - "lon": -0.2015867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM4 198" - } -}, -{ - "type": "node", - "id": 361240902, - "lat": 51.5027924, - "lon": -0.0749004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE1 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361240903, - "lat": 51.5014010, - "lon": -0.0756586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "when seen 2022-12-21 there was no collection plate on LHS to confirm SE1 79, but RMNY site has it https://www.royalmail.com/services-near-you/postbox/tooley-street-three-oak-lane-l-se1-2nr/00000SE179", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 79;SE1 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361240907, - "lat": 51.5009871, - "lon": -0.0749619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "mapillary": "802122974014704", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "SE1 56P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2022-12-21" - } -}, -{ - "type": "node", - "id": 361240910, - "lat": 51.4997378, - "lon": -0.0771656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE1 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361240912, - "lat": 51.4988140, - "lon": -0.0929852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 67;SE1 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361242612, - "lat": 53.3567207, - "lon": -1.4767147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 361245229, - "lat": 53.3546158, - "lon": -1.4807596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S8 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361246904, - "lat": 51.2735356, - "lon": -1.0631594, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 339" - } -}, -{ - "type": "node", - "id": 361249212, - "lat": 53.3517913, - "lon": -1.4671244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "post_box:type": "pillar", - "ref": "S8 628", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361249218, - "lat": 53.3492254, - "lon": -1.4645835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 640", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361255129, - "lat": 53.3400414, - "lon": -1.4702629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 593", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361256076, - "lat": 53.3459473, - "lon": -1.4687356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 613", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361261050, - "lat": 53.3434999, - "lon": -1.4711176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361261548, - "lat": 53.3485021, - "lon": -1.4760982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 483", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 361262322, - "lat": 53.3461301, - "lon": -1.4793996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361396492, - "lat": 51.3565064, - "lon": 1.0453214, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT5", - "ref": "CT5 221", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361396655, - "lat": 51.3501330, - "lon": 1.0291201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT5", - "ref": "CT5 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361422947, - "lat": 51.1022278, - "lon": 1.0066241, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "TN25", - "ref": "TN25 156" - } -}, -{ - "type": "node", - "id": 361458304, - "lat": 53.9801949, - "lon": -1.9839658, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 361458500, - "lat": 51.5924438, - "lon": -0.0358028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 38", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361459126, - "lat": 51.5951966, - "lon": -0.0348030, - "tags": { - "addr:housenumber": "254", - "addr:street": "Higham Hill Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 20", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 361464894, - "lat": 51.9155866, - "lon": -2.1310086, - "tags": { - "amenity": "post_box", - "postal_code": "GL51", - "ref": "GL51 184" - } -}, -{ - "type": "node", - "id": 361468504, - "lat": 53.8320092, - "lon": -1.7792933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BD18 925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361487442, - "lat": 51.9122950, - "lon": -2.1435034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Hayden Elm", - "old_ref": "CHR249", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361488048, - "lat": 51.8960966, - "lon": -2.1296916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-08" - } -}, -{ - "type": "node", - "id": 361488143, - "lat": 51.9031299, - "lon": -2.1250770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-08" - } -}, -{ - "type": "node", - "id": 361488676, - "lat": 51.9094126, - "lon": -2.1233964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-08" - } -}, -{ - "type": "node", - "id": 361488677, - "lat": 51.9203219, - "lon": -2.1157121, - "tags": { - "amenity": "post_box", - "postal_code": "GL51", - "ref": "GL51 363" - } -}, -{ - "type": "node", - "id": 361498267, - "lat": 50.7190465, - "lon": -3.5198178, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "236642378388779", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX2 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361503107, - "lat": 50.7173341, - "lon": -3.5147463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX2 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361515164, - "lat": 53.3184163, - "lon": -2.2462879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "SK9 398", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 361515967, - "lat": 55.0829381, - "lon": -1.5696140, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 2EE", - "ref": "NE23 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361515968, - "lat": 55.0895408, - "lon": -1.5686360, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 2FA", - "ref": "NE23 449" - } -}, -{ - "type": "node", - "id": 361515969, - "lat": 55.0864897, - "lon": -1.5843174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 1DN", - "ref": "NE23 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361527875, - "lat": 50.7982414, - "lon": -1.1266050, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO12 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 361527878, - "lat": 50.7979053, - "lon": -1.1292789, - "tags": { - "amenity": "post_box", - "collection_plate": "CP9D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "PO12 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 361580399, - "lat": 51.4284440, - "lon": 0.1010826, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 361580511, - "lat": 51.4296855, - "lon": 0.0980184, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 361609251, - "lat": 51.4952959, - "lon": -0.0771073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 8;SE1 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609255, - "lat": 51.4938628, - "lon": -0.0795869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 44;SE1 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609258, - "lat": 51.4912272, - "lon": -0.0750902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE1 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609261, - "lat": 51.4912901, - "lon": -0.0721086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 46;SE1 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609264, - "lat": 51.4926927, - "lon": -0.0698935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE1 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609266, - "lat": 51.4898925, - "lon": -0.0693737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 61;SE1 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609270, - "lat": 51.4869609, - "lon": -0.0743438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 15;SE1 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361609272, - "lat": 51.4913809, - "lon": -0.0821087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 72;SE1 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 361617782, - "lat": 51.7471133, - "lon": -0.5138824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 361643531, - "lat": 54.7875403, - "lon": -1.5413588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "ref": "DH1 101" - } -}, -{ - "type": "node", - "id": 361684277, - "lat": 52.6483101, - "lon": -1.8809172, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 361687240, - "lat": 53.3226991, - "lon": -1.4646524, - "tags": { - "amenity": "post_box", - "ref": "S8 990" - } -}, -{ - "type": "node", - "id": 361687829, - "lat": 52.2018606, - "lon": 0.1182143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 3", - "ref": "CB2 106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 361690885, - "lat": 51.3541539, - "lon": -1.2567895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG19", - "ref": "RG19 197" - } -}, -{ - "type": "node", - "id": 361737767, - "lat": 53.3263424, - "lon": -1.4630780, - "tags": { - "amenity": "post_box", - "ref": "S8 306" - } -}, -{ - "type": "node", - "id": 362167182, - "lat": 55.9411397, - "lon": -3.0589122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 115D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 362174617, - "lat": 51.3770312, - "lon": -0.4170757, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 362344489, - "lat": 55.7736695, - "lon": -4.0793066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 362344492, - "lat": 55.7675365, - "lon": -4.0857507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 362374129, - "lat": 52.3265621, - "lon": -0.6120081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN9 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 362442985, - "lat": 51.1080443, - "lon": 1.0162875, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TN25", - "ref": "TN25 5" - } -}, -{ - "type": "node", - "id": 362716326, - "lat": 51.0858568, - "lon": 1.0365708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "postal_code": "CT21", - "ref": "CT21 113", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 362731667, - "lat": 51.6103225, - "lon": -0.0008350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362731943, - "lat": 51.6075326, - "lon": -0.0012057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362732808, - "lat": 51.6057085, - "lon": -0.0019491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 15", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362733614, - "lat": 51.6144159, - "lon": 0.0000405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362736168, - "lat": 51.6184088, - "lon": 0.0027414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362739056, - "lat": 51.6351099, - "lon": 0.0038624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 362739559, - "lat": 51.6308997, - "lon": 0.0024458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 20" - } -}, -{ - "type": "node", - "id": 362741588, - "lat": 51.6276528, - "lon": 0.0165886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 43" - } -}, -{ - "type": "node", - "id": 362743515, - "lat": 51.6294270, - "lon": 0.0017399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 362744025, - "lat": 51.6271093, - "lon": 0.0077652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 30" - } -}, -{ - "type": "node", - "id": 362744667, - "lat": 51.6263900, - "lon": 0.0029158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 35" - } -}, -{ - "type": "node", - "id": 362744722, - "lat": 51.6242214, - "lon": 0.0090784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 362757676, - "lat": 55.8486050, - "lon": -4.3760496, - "tags": { - "amenity": "post_box", - "ref": "PA1 162" - } -}, -{ - "type": "node", - "id": 362776232, - "lat": 51.7652118, - "lon": -1.1955363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 777", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 362787462, - "lat": 55.0725415, - "lon": -1.5922321, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7XE", - "ref": "NE23 690" - } -}, -{ - "type": "node", - "id": 362787485, - "lat": 55.0743034, - "lon": -1.5809323, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6QX", - "ref": "NE23 666" - } -}, -{ - "type": "node", - "id": 362787490, - "lat": 55.0790477, - "lon": -1.5918048, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6BD", - "ref": "NE23 368" - } -}, -{ - "type": "node", - "id": 362787494, - "lat": 55.0834443, - "lon": -1.5858077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 6DQ", - "ref": "NE23 216" - } -}, -{ - "type": "node", - "id": 362787497, - "lat": 55.0823834, - "lon": -1.5912508, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6AF", - "ref": "NE23 659" - } -}, -{ - "type": "node", - "id": 362789217, - "lat": 55.0906963, - "lon": -1.6009852, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 1HD", - "ref": "NE23 559" - } -}, -{ - "type": "node", - "id": 362794084, - "lat": 55.0858693, - "lon": -1.5916007, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6QW", - "ref": "NE23 764" - } -}, -{ - "type": "node", - "id": 362798090, - "lat": 53.6738345, - "lon": -1.6927023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 362815722, - "lat": 53.6715034, - "lon": -1.6978706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 362821204, - "lat": 55.0858692, - "lon": -1.5915640, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6QW", - "ref": "NE23 765" - } -}, -{ - "type": "node", - "id": 362821209, - "lat": 55.0858692, - "lon": -1.5915353, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6QW", - "ref": "NE23 792", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 362832863, - "lat": 53.6826501, - "lon": -1.6498036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 52" - } -}, -{ - "type": "node", - "id": 362858883, - "lat": 51.4981147, - "lon": -0.0829133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 57;SE1 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362858885, - "lat": 51.4998804, - "lon": -0.0873575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 58;SE1 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362858888, - "lat": 51.4961634, - "lon": -0.0931481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 66;SE1 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362858890, - "lat": 51.4989195, - "lon": -0.1008910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 41;SE1 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362858892, - "lat": 51.4978944, - "lon": -0.0983065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 68;SE1 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 362906255, - "lat": 53.3007971, - "lon": -2.2439495, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "SK9 731", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 362906257, - "lat": 53.2996598, - "lon": -2.2376903, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SK9 730", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 362906879, - "lat": 53.3059393, - "lon": -2.2383858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SK9 202", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 363429132, - "lat": 55.8925213, - "lon": -3.0472787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 174D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 363435634, - "lat": 55.9566512, - "lon": -3.9676922, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1472" - } -}, -{ - "type": "node", - "id": 363562311, - "lat": 52.6548563, - "lon": 1.3854137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363585910, - "lat": 51.5900760, - "lon": -2.5265480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 262" - } -}, -{ - "type": "node", - "id": 363624959, - "lat": 51.4722435, - "lon": -2.6090245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BS6", - "ref": "BS6 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363741466, - "lat": 52.3890038, - "lon": -1.5089305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 363741987, - "lat": 52.3848813, - "lon": -1.4979012, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-13", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 363742643, - "lat": 52.3795594, - "lon": -1.5077304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CV3", - "ref": "CV3 298", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 363747839, - "lat": 52.3917545, - "lon": -1.5159698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CV3", - "ref": "CV3 251", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 363752285, - "lat": 52.3904785, - "lon": -1.5028274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 323D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 363781159, - "lat": 53.8608092, - "lon": -0.6588419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7023807---", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363781652, - "lat": 53.8600519, - "lon": -0.6617110, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO43 589D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363782337, - "lat": 53.8602629, - "lon": -0.6643716, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO43 478D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363782382, - "lat": 53.8614399, - "lon": -0.6672349, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO43 561D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363797846, - "lat": 51.2395132, - "lon": -0.8260675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU10 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 363798000, - "lat": 53.0075311, - "lon": -1.1372180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363816317, - "lat": 52.6300833, - "lon": -1.9241617, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 71" - } -}, -{ - "type": "node", - "id": 363816401, - "lat": 52.6257338, - "lon": -1.9193341, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 107" - } -}, -{ - "type": "node", - "id": 363828447, - "lat": 51.7661981, - "lon": -1.2033327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OX3 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363886712, - "lat": 51.3723935, - "lon": -0.4857923, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT15 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363886902, - "lat": 51.3713647, - "lon": -0.4893465, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "last_checked": "2021-08-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT15 50;KT15 5001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 363888010, - "lat": 51.3745635, - "lon": -0.4970103, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "KT15 27" - } -}, -{ - "type": "node", - "id": 363888348, - "lat": 51.3872816, - "lon": -0.5085380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT16 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 363888676, - "lat": 51.3901359, - "lon": -0.5131293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KT16 164" - } -}, -{ - "type": "node", - "id": 363888797, - "lat": 51.3903905, - "lon": -0.5049836, - "tags": { - "amenity": "post_box", - "ref": "KT16 153" - } -}, -{ - "type": "node", - "id": 363888914, - "lat": 51.3922319, - "lon": -0.5040275, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT16 871" - } -}, -{ - "type": "node", - "id": 363928262, - "lat": 53.9541151, - "lon": -1.0827602, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "YO1 6DU", - "ref": "YO1 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 363996551, - "lat": 51.3998575, - "lon": -0.0619144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE25", - "ref": "SE25 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 363996561, - "lat": 51.3995098, - "lon": -0.0667518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "SE25", - "ref": "SE25 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 363996566, - "lat": 51.3985206, - "lon": -0.0731363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "SE25", - "ref": "SE25 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364008752, - "lat": 53.7892289, - "lon": -1.5687245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LS12", - "ref": "LS12 90" - } -}, -{ - "type": "node", - "id": 364011711, - "lat": 53.7951965, - "lon": -1.5657621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "LS12", - "ref": "LS12 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364035737, - "lat": 51.5406378, - "lon": -2.4230922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2016-01-03", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS37 1092", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364050370, - "lat": 51.5863796, - "lon": -0.2931332, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm Sat 12noon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 230" - } -}, -{ - "type": "node", - "id": 364050976, - "lat": 51.8747212, - "lon": 0.9121822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO2 167" - } -}, -{ - "type": "node", - "id": 364050979, - "lat": 51.8786759, - "lon": 0.9067592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 14" - } -}, -{ - "type": "node", - "id": 364051018, - "lat": 51.8805915, - "lon": 0.9037075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO2 65", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 364057359, - "lat": 57.5047600, - "lon": -4.2676654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "postal_code": "IV1", - "ref": "IV1 56", - "source": "survey 13th September 2014" - } -}, -{ - "type": "node", - "id": 364057360, - "lat": 57.5127306, - "lon": -4.3673123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV4 152", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364057361, - "lat": 57.5136463, - "lon": -4.3931001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV6 151", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364058873, - "lat": 55.9441785, - "lon": -3.1809403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 41D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 364060271, - "lat": 51.4928585, - "lon": -0.2339199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W6 18" - } -}, -{ - "type": "node", - "id": 364068635, - "lat": 57.4825293, - "lon": -4.4612960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV4 132", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364081583, - "lat": 55.0739015, - "lon": -1.7310948, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "NE20 0JZ", - "ref": "NE20 154", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 364114564, - "lat": 56.0117299, - "lon": -4.7292153, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "G84", - "ref": "G84 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 364114565, - "lat": 56.0120641, - "lon": -4.7491085, - "tags": { - "amenity": "post_box", - "postal_code": "G84 9PW", - "ref": "G84 63" - } -}, -{ - "type": "node", - "id": 364120462, - "lat": 55.9496694, - "lon": -3.1834699, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-29", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH1 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364142738, - "lat": 51.7170321, - "lon": 0.4927246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 360", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364144946, - "lat": 52.0008367, - "lon": -0.3205209, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364153170, - "lat": 52.6380374, - "lon": 1.2471209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 516D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364156868, - "lat": 52.6403766, - "lon": 1.2122445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NR5", - "ref": "NR5 522", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364157106, - "lat": 51.0507725, - "lon": 0.6329247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364164969, - "lat": 53.7079293, - "lon": -1.4986397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364166373, - "lat": 53.7140245, - "lon": -1.4756190, - "tags": { - "addr:city": "Wakefield", - "addr:postcode": "WF3 4HT", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF3 156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364168421, - "lat": 53.3080457, - "lon": -2.2495325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK9 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364179436, - "lat": 51.4910138, - "lon": -0.1111839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364312993, - "lat": 55.8792347, - "lon": -3.3386962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 297", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 364331995, - "lat": 52.6474067, - "lon": 1.2346546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR5 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364332452, - "lat": 52.6469236, - "lon": 1.2190666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 505" - } -}, -{ - "type": "node", - "id": 364333127, - "lat": 52.6471144, - "lon": 1.2409295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR5", - "ref": "NR5 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364333713, - "lat": 52.6440824, - "lon": 1.2360600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 502D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364334609, - "lat": 52.6504529, - "lon": 1.2272166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR5", - "ref": "NR5 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364335233, - "lat": 52.6498427, - "lon": 1.2147751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NR5", - "ref": "NR5 504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364337451, - "lat": 52.6427027, - "lon": 1.2284774, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR5 506D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364342904, - "lat": 52.6406689, - "lon": 1.2474525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 606D" - } -}, -{ - "type": "node", - "id": 364342905, - "lat": 52.6450225, - "lon": 1.2138578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 509" - } -}, -{ - "type": "node", - "id": 364345449, - "lat": 52.6365911, - "lon": 1.2359002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR5 514", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364345726, - "lat": 51.4608950, - "lon": -0.2059217, - "tags": { - "amenity": "post_box", - "ref": "SW15 42" - } -}, -{ - "type": "node", - "id": 364348731, - "lat": 52.6420639, - "lon": 1.2383576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR5 517D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364358093, - "lat": 56.0058696, - "lon": -4.7454254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "G84 8EJ", - "ref": "G84 2" - } -}, -{ - "type": "node", - "id": 364358859, - "lat": 51.7538233, - "lon": -2.3049986, - "tags": { - "amenity": "post_box", - "postal_code": "GL10", - "ref": "GL10 151" - } -}, -{ - "type": "node", - "id": 364358866, - "lat": 51.7490862, - "lon": -2.2970044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "472899473767523", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL10", - "ref": "GL10 252", - "survey:date": "2020-01-21" - } -}, -{ - "type": "node", - "id": 364358873, - "lat": 51.7500116, - "lon": -2.2893333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL10 227" - } -}, -{ - "type": "node", - "id": 364358907, - "lat": 51.7484866, - "lon": -2.2845265, - "tags": { - "amenity": "post_box", - "postal_code": "GL10", - "ref": "GL10 73" - } -}, -{ - "type": "node", - "id": 364360420, - "lat": 52.6480088, - "lon": 1.2046016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR5", - "ref": "NR5 508" - } -}, -{ - "type": "node", - "id": 364366562, - "lat": 51.7458327, - "lon": -2.2765144, - "tags": { - "amenity": "post_box", - "note": "Says GL6 249 on the label, but pretty certain this should be GL10 249", - "postal_code": "GL10", - "ref": "GL10 249" - } -}, -{ - "type": "node", - "id": 364376595, - "lat": 52.6398779, - "lon": 1.2267995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 518D" - } -}, -{ - "type": "node", - "id": 364378418, - "lat": 54.7861890, - "lon": -1.5961384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 184" - } -}, -{ - "type": "node", - "id": 364427133, - "lat": 51.6609769, - "lon": -0.0933232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN2 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364428473, - "lat": 51.2955866, - "lon": -1.1109324, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG24", - "ref": "RG24 238", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364428474, - "lat": 51.2949425, - "lon": -1.1057461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "RG24", - "ref": "RG24 85" - } -}, -{ - "type": "node", - "id": 364430602, - "lat": 51.2258311, - "lon": -1.3377519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-16", - "mapillary": "1734458513418034", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "RG28", - "ref": "RG28 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source_1": "using this postbox", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 364430610, - "lat": 51.2347836, - "lon": -1.3360469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-16", - "mapillary": "1122935648833683", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG28", - "ref": "RG28 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source_1": "using this postbox", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 364432237, - "lat": 51.2433950, - "lon": -1.2629539, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG25", - "ref": "RG25 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364458456, - "lat": 51.2095215, - "lon": -3.5502890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 364458787, - "lat": 53.7565017, - "lon": -1.4711475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364458999, - "lat": 53.7402725, - "lon": -1.5927228, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 414" - } -}, -{ - "type": "node", - "id": 364459669, - "lat": 51.4205208, - "lon": -0.1643622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 25" - } -}, -{ - "type": "node", - "id": 364459670, - "lat": 51.4272166, - "lon": -0.1793386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 24" - } -}, -{ - "type": "node", - "id": 364459672, - "lat": 51.4315609, - "lon": -0.1832089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 29" - } -}, -{ - "type": "node", - "id": 364459673, - "lat": 51.4348092, - "lon": -0.1799512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 53" - } -}, -{ - "type": "node", - "id": 364459675, - "lat": 51.4305628, - "lon": -0.1717314, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364459677, - "lat": 51.4299309, - "lon": -0.1669285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW17 154;SW17 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364459679, - "lat": 51.4335355, - "lon": -0.1658308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 42" - } -}, -{ - "type": "node", - "id": 364459680, - "lat": 51.4388932, - "lon": -0.1683164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 12" - } -}, -{ - "type": "node", - "id": 364459682, - "lat": 51.4415474, - "lon": -0.1640375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 26" - } -}, -{ - "type": "node", - "id": 364459683, - "lat": 51.4441323, - "lon": -0.1646390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 364459684, - "lat": 51.4399519, - "lon": -0.1593097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 43" - } -}, -{ - "type": "node", - "id": 364461393, - "lat": 51.4379808, - "lon": -0.1623495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 18" - } -}, -{ - "type": "node", - "id": 364462483, - "lat": 53.0896069, - "lon": -1.7937430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE6 876", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364475340, - "lat": 51.3240735, - "lon": -1.2476918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "postal_code": "RG20", - "ref": "RG20 1280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364477359, - "lat": 53.7558127, - "lon": -1.4622000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 730", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364503179, - "lat": 51.2144898, - "lon": 1.1538788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 189", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364508822, - "lat": 51.2185632, - "lon": 1.1484576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 164", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364510222, - "lat": 56.4914361, - "lon": -3.4507028, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 75D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 364510370, - "lat": 56.5124918, - "lon": -3.4101989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 147", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 364515890, - "lat": 51.2016896, - "lon": 1.1573853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364528031, - "lat": 53.1260088, - "lon": -1.4069249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 389" - } -}, -{ - "type": "node", - "id": 364546235, - "lat": 53.1115802, - "lon": -1.4781730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 953" - } -}, -{ - "type": "node", - "id": 364546466, - "lat": 52.7090379, - "lon": -2.7526274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "level": "-1", - "ref": "SY1 807" - } -}, -{ - "type": "node", - "id": 364547934, - "lat": 52.3912637, - "lon": -1.9828729, - "tags": { - "amenity": "post_box", - "ref": "B31 942" - } -}, -{ - "type": "node", - "id": 364553609, - "lat": 51.3995461, - "lon": -1.0246423, - "tags": { - "amenity": "post_box", - "postal_code": "RG7", - "ref": "RG7 422" - } -}, -{ - "type": "node", - "id": 364553860, - "lat": 51.4533466, - "lon": -0.8964981, - "tags": { - "amenity": "post_box", - "note": "Franked Mail Only", - "postal_code": "RG5", - "ref": "RG5 660" - } -}, -{ - "type": "node", - "id": 364553899, - "lat": 51.4533596, - "lon": -0.8965577, - "tags": { - "amenity": "post_box", - "postal_code": "RG5", - "ref": "RG5 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364554412, - "lat": 51.4789958, - "lon": -0.8635668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG10", - "ref": "RG10 149", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364554517, - "lat": 51.5215711, - "lon": 0.0317537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "472062151357094", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364637207, - "lat": 51.1987675, - "lon": 1.1568642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 284", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364639245, - "lat": 51.1857692, - "lon": 1.1437017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 98", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364640659, - "lat": 51.1765324, - "lon": 1.1288147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 43", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364650321, - "lat": 51.1760776, - "lon": 1.1513009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 198", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364650920, - "lat": 51.1825790, - "lon": 1.1582511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364652350, - "lat": 51.1812503, - "lon": 1.1687383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 294", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364655293, - "lat": 51.1739181, - "lon": 1.1794840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 91", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364662140, - "lat": 51.1594276, - "lon": 1.1210114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 96", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364666008, - "lat": 51.1548876, - "lon": 1.1115440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364666040, - "lat": 51.1503942, - "lon": 1.1087071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 113", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364666056, - "lat": 51.1535305, - "lon": 1.1111051, - "tags": { - "amenity": "post_box", - "note": "Outside former post office", - "postal_code": "CT4", - "ref": "CT4 169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364669390, - "lat": 51.1573135, - "lon": 1.1006959, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 279", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364669397, - "lat": 51.1810931, - "lon": 1.1186624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 271", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364671957, - "lat": 51.1974311, - "lon": 1.0949446, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 218", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364675583, - "lat": 51.2176389, - "lon": 1.1433460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 228", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364675617, - "lat": 51.2099233, - "lon": 1.1310738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 211", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364679779, - "lat": 51.2169425, - "lon": 1.0974232, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 170", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364688654, - "lat": 55.8256175, - "lon": -4.3941984, - "tags": { - "amenity": "post_box", - "ref": "PA1 270" - } -}, -{ - "type": "node", - "id": 364697456, - "lat": 51.4606105, - "lon": -0.2105692, - "tags": { - "amenity": "post_box", - "ref": "SW15 3" - } -}, -{ - "type": "node", - "id": 364729252, - "lat": 51.3735239, - "lon": -0.4832708, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "KT15 25" - } -}, -{ - "type": "node", - "id": 364743574, - "lat": 50.7689759, - "lon": -3.5458030, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364743592, - "lat": 50.7655546, - "lon": -3.5471668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 08:45", - "post_box:type": "lamp", - "ref": "EX5 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364761577, - "lat": 50.7649324, - "lon": -3.5600665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364769155, - "lat": 51.7676284, - "lon": -1.1962132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OX3 662D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364769572, - "lat": 51.7690848, - "lon": -1.2029707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 776" - } -}, -{ - "type": "node", - "id": 364770297, - "lat": 52.5284168, - "lon": -1.7685984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B76 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364770532, - "lat": 51.4402076, - "lon": -2.6100452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364771372, - "lat": 51.5453870, - "lon": 0.0769502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 69", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 364771381, - "lat": 51.5471302, - "lon": 0.0819059, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- locaiton is outside IG4 postal district", - "ref": "IG4 14" - } -}, -{ - "type": "node", - "id": 364771552, - "lat": 51.5503753, - "lon": 0.0968490, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 94" - } -}, -{ - "type": "node", - "id": 364772505, - "lat": 51.5528837, - "lon": 0.1054235, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 165" - } -}, -{ - "type": "node", - "id": 364783964, - "lat": 53.0785171, - "lon": -1.4771344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 925" - } -}, -{ - "type": "node", - "id": 364783996, - "lat": 51.5545221, - "lon": 0.1034923, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 92" - } -}, -{ - "type": "node", - "id": 364787225, - "lat": 51.3266360, - "lon": 0.0730007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "red", - "ref": "TN14 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364787278, - "lat": 51.5695503, - "lon": -0.7834503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL7 120" - } -}, -{ - "type": "node", - "id": 364787567, - "lat": 53.0738490, - "lon": -1.4753842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 943" - } -}, -{ - "type": "node", - "id": 364788448, - "lat": 53.0721040, - "lon": -1.4680653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 301" - } -}, -{ - "type": "node", - "id": 364795660, - "lat": 53.3476211, - "lon": -1.4848158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 505", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364800665, - "lat": 53.3435552, - "lon": -1.4779967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "post_box:type": "pillar", - "ref": "S8 310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364804492, - "lat": 53.3419900, - "lon": -1.4821999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 399" - } -}, -{ - "type": "node", - "id": 364808436, - "lat": 53.3406582, - "lon": -1.4765758, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S8 454", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364809060, - "lat": 51.2905251, - "lon": 0.5037125, - "tags": { - "amenity": "post_box", - "ref": "ME16 389" - } -}, -{ - "type": "node", - "id": 364810127, - "lat": 53.0914687, - "lon": -1.4198573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 576" - } -}, -{ - "type": "node", - "id": 364811238, - "lat": 51.2922907, - "lon": 0.5062483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME16 187D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364811587, - "lat": 51.5749713, - "lon": -1.7518728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN3", - "ref": "SN3 287" - } -}, -{ - "type": "node", - "id": 364811588, - "lat": 51.5759570, - "lon": -1.7476322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN3", - "ref": "SN3 329" - } -}, -{ - "type": "node", - "id": 364812796, - "lat": 50.3780245, - "lon": -4.1212787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL4 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364814048, - "lat": 51.2883211, - "lon": 0.4940799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 3281" - } -}, -{ - "type": "node", - "id": 364815435, - "lat": 53.7486616, - "lon": -1.5817268, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 420" - } -}, -{ - "type": "node", - "id": 364816140, - "lat": 53.3390796, - "lon": -1.4823329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "S8 369", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 364816769, - "lat": 53.7043371, - "lon": -1.6232745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364820324, - "lat": 51.4226886, - "lon": -0.1596964, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 36" - } -}, -{ - "type": "node", - "id": 364820330, - "lat": 51.4236514, - "lon": -0.1541358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 15" - } -}, -{ - "type": "node", - "id": 364820334, - "lat": 51.4209756, - "lon": -0.1561983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 20" - } -}, -{ - "type": "node", - "id": 364824866, - "lat": 53.3352765, - "lon": -1.5012839, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S8 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364824875, - "lat": 53.3366429, - "lon": -1.4934520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S8 477D" - } -}, -{ - "type": "node", - "id": 364829128, - "lat": 51.4494565, - "lon": -1.5861734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN8", - "ref": "SN8 105" - } -}, -{ - "type": "node", - "id": 364829130, - "lat": 51.4640038, - "lon": -1.6029561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SN8", - "ref": "SN8 106" - } -}, -{ - "type": "node", - "id": 364829259, - "lat": 50.3748231, - "lon": -4.1252545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "831034844944295", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL4 100D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-08-21" - } -}, -{ - "type": "node", - "id": 364829355, - "lat": 53.7463270, - "lon": -1.5778095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS27 972", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364829599, - "lat": 51.5340447, - "lon": -1.7105571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SN4", - "ref": "SN4 260", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364831791, - "lat": 51.4939082, - "lon": -2.6188195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "BS9", - "ref": "BS9 1008", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364831792, - "lat": 51.4939328, - "lon": -2.6188178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "pillar", - "postal_code": "BS9", - "ref": "BS9 1009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364832032, - "lat": 53.3373820, - "lon": -1.5018696, - "tags": { - "amenity": "post_box", - "ref": "S8 502" - } -}, -{ - "type": "node", - "id": 364835224, - "lat": 53.4067222, - "lon": -1.5475125, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S6 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364837198, - "lat": 51.4041666, - "lon": -1.3046411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG14", - "ref": "RG14 231" - } -}, -{ - "type": "node", - "id": 364841155, - "lat": 52.3424983, - "lon": 0.3245117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364843809, - "lat": 50.8173546, - "lon": -0.4464300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1794D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 364852575, - "lat": 51.4244214, - "lon": -0.0919694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364852582, - "lat": 51.4231491, - "lon": -0.0875672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364916662, - "lat": 53.0455617, - "lon": -2.1975097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 226", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 364916664, - "lat": 53.0468645, - "lon": -2.1904687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364948044, - "lat": 51.5588429, - "lon": 0.0845379, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG1 27" - } -}, -{ - "type": "node", - "id": 364948393, - "lat": 51.5609901, - "lon": 0.0996779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG3 49" - } -}, -{ - "type": "node", - "id": 364948462, - "lat": 51.5594565, - "lon": 0.1023478, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 75" - } -}, -{ - "type": "node", - "id": 364948794, - "lat": 51.5629249, - "lon": 0.1160378, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 48" - } -}, -{ - "type": "node", - "id": 364948806, - "lat": 51.5630583, - "lon": 0.1035494, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 59" - } -}, -{ - "type": "node", - "id": 364950112, - "lat": 51.5628948, - "lon": 0.0919878, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IG1 5" - } -}, -{ - "type": "node", - "id": 364954094, - "lat": 51.5853240, - "lon": -0.0090952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 364977304, - "lat": 55.1622618, - "lon": -1.6830863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "NE61 2SL", - "ref": "NE61 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 364983904, - "lat": 50.9571609, - "lon": -0.5631615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "RH20 38", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 364987618, - "lat": 55.1605641, - "lon": -1.5929483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE62 5HD", - "ref": "NE62 671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 364991824, - "lat": 51.4656048, - "lon": -0.9022105, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 365005617, - "lat": 53.1907097, - "lon": -1.3045290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "S44 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365018126, - "lat": 52.6481811, - "lon": 1.1731902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "note": "Only accessible on show days", - "operator": "Royal Mail", - "postal_code": "NR5", - "ref": "NR5 507" - } -}, -{ - "type": "node", - "id": 365023273, - "lat": 53.1857652, - "lon": -1.2866441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S44 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365034697, - "lat": 53.1517139, - "lon": -1.2811462, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365043544, - "lat": 50.3761253, - "lon": -4.1224583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL4 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 365045808, - "lat": 55.8779241, - "lon": -3.3305810, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH14 584", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365093263, - "lat": 53.8628938, - "lon": -0.6757571, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO43 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365093422, - "lat": 53.8669558, - "lon": -0.6752606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "note": "left hand aperture YO43 604 labelled as Stamped and right habd aperture YO43 9604 labelled as Franked", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO43 604;YO43 9604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365093732, - "lat": 53.8693785, - "lon": -0.6682530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7024168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365094587, - "lat": 52.0043792, - "lon": -0.3024667, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365120901, - "lat": 52.0811000, - "lon": -2.2716755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "hanleys_tag": "H", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "WR8 93" - } -}, -{ - "type": "node", - "id": 365123515, - "lat": 52.4486475, - "lon": -1.9467819, - "tags": { - "amenity": "post_box", - "disused": "yes", - "ref": "B17 315" - } -}, -{ - "type": "node", - "id": 365134621, - "lat": 55.0607894, - "lon": -1.5933281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE23 7PX", - "ref": "NE23 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365134624, - "lat": 55.0564202, - "lon": -1.5933758, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7HR", - "ref": "NE23 477" - } -}, -{ - "type": "node", - "id": 365134627, - "lat": 55.0543817, - "lon": -1.5868659, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7BP", - "ref": "NE23 36" - } -}, -{ - "type": "node", - "id": 365134630, - "lat": 55.0564070, - "lon": -1.5829284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 7AH", - "ref": "NE23 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365134633, - "lat": 55.0599451, - "lon": -1.5851550, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7UD", - "ref": "NE23 805" - } -}, -{ - "type": "node", - "id": 365142524, - "lat": 50.3747950, - "lon": -4.1217586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL4 98D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 365155755, - "lat": 51.4930205, - "lon": -0.9923041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG4 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 365181822, - "lat": 51.5047678, - "lon": -0.0914071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 40;SE1 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365181823, - "lat": 51.5050203, - "lon": -0.0968898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "collection plates appear to be wrong way round with 87 on the RIGHT and 187 on the LEFT", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 187;SE1 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365181826, - "lat": 51.5079940, - "lon": -0.1024269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 50;SE1 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365199800, - "lat": 51.7570549, - "lon": -0.5779419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365200084, - "lat": 51.8028366, - "lon": -0.0801830, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG14 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365231594, - "lat": 50.6299820, - "lon": -3.3275272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 365259836, - "lat": 51.4352383, - "lon": -0.1557717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 40" - } -}, -{ - "type": "node", - "id": 365259837, - "lat": 51.4326954, - "lon": -0.1536014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 8" - } -}, -{ - "type": "node", - "id": 365259838, - "lat": 51.4299614, - "lon": -0.1512546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 55" - } -}, -{ - "type": "node", - "id": 365259839, - "lat": 51.4273853, - "lon": -0.1534100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 9" - } -}, -{ - "type": "node", - "id": 365259840, - "lat": 51.4256274, - "lon": -0.1586456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 37" - } -}, -{ - "type": "node", - "id": 365259841, - "lat": 51.4236453, - "lon": -0.1661138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 46" - } -}, -{ - "type": "node", - "id": 365259842, - "lat": 51.4277116, - "lon": -0.1610928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 49" - } -}, -{ - "type": "node", - "id": 365259843, - "lat": 51.4303523, - "lon": -0.1558593, - "tags": { - "amenity": "post_box", - "fixme": "Add collection_times info", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 32" - } -}, -{ - "type": "node", - "id": 365259844, - "lat": 51.4309108, - "lon": -0.1613865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 48" - } -}, -{ - "type": "node", - "id": 365259845, - "lat": 51.4308447, - "lon": -0.1648998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 17" - } -}, -{ - "type": "node", - "id": 365260508, - "lat": 51.4331263, - "lon": -0.1632315, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 52", - "survey:date": "2022-07-17", - "wikimedia_commons": "File:Hurricane Rooms - geograph.org.uk - 3644599.jpg" - } -}, -{ - "type": "node", - "id": 365260510, - "lat": 51.4347059, - "lon": -0.1617808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365260512, - "lat": 51.4458744, - "lon": -0.1658658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW17 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365273355, - "lat": 52.6381554, - "lon": -1.9282361, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 34" - } -}, -{ - "type": "node", - "id": 365285972, - "lat": 52.6357103, - "lon": -1.9169512, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 20" - } -}, -{ - "type": "node", - "id": 365285977, - "lat": 52.6408386, - "lon": -1.9232154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "WS8", - "ref": "WS8 56" - } -}, -{ - "type": "node", - "id": 365285984, - "lat": 52.6372469, - "lon": -1.9323315, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 614" - } -}, -{ - "type": "node", - "id": 365291040, - "lat": 55.9454060, - "lon": -3.0492376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 262D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 365309636, - "lat": 55.0066983, - "lon": -1.5456149, - "tags": { - "amenity": "post_box", - "ref": "NE28 44" - } -}, -{ - "type": "node", - "id": 365309637, - "lat": 53.8581967, - "lon": -1.8296452, - "tags": { - "amenity": "post_box", - "ref": "BD16 624" - } -}, -{ - "type": "node", - "id": 365312701, - "lat": 53.8669392, - "lon": -0.6606735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7023444", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365326216, - "lat": 53.0097414, - "lon": -1.1360469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365343172, - "lat": 51.8079874, - "lon": -0.0809396, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG14 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365344852, - "lat": 51.8094442, - "lon": -0.0754368, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG14 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365350916, - "lat": 51.5628327, - "lon": 0.3921922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 365351691, - "lat": 51.8062883, - "lon": -0.0753901, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG14 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 365351777, - "lat": 51.8088251, - "lon": -0.0684922, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG12 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365356272, - "lat": 55.0567906, - "lon": -1.6010187, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7JS", - "ref": "NE23 260" - } -}, -{ - "type": "node", - "id": 365356350, - "lat": 55.0519698, - "lon": -1.5915612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE23 7LJ", - "ref": "NE23 355" - } -}, -{ - "type": "node", - "id": 365356380, - "lat": 55.0465326, - "lon": -1.5787639, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "fixme": "Check ref - moved from original location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE23 7PE", - "ref": "NE23 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365356470, - "lat": 55.0642255, - "lon": -1.5813871, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NE23 7BF", - "ref": "NE23 11" - } -}, -{ - "type": "node", - "id": 365356473, - "lat": 55.0642159, - "lon": -1.5813843, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NE23 7BF", - "ref": "NE23 25" - } -}, -{ - "type": "node", - "id": 365359339, - "lat": 55.0618643, - "lon": -1.5591035, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7TG", - "ref": "NE23 665" - } -}, -{ - "type": "node", - "id": 365359397, - "lat": 55.0637578, - "lon": -1.5441663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NE23 7SE", - "ref": "NE23 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365359399, - "lat": 55.0629420, - "lon": -1.5526204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE23 7SD", - "ref": "NE23 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365367718, - "lat": 51.7717068, - "lon": -1.2011408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 954D" - } -}, -{ - "type": "node", - "id": 365371840, - "lat": 52.2497676, - "lon": 0.7433771, - "tags": { - "amenity": "post_box", - "ref": "IP32 2284" - } -}, -{ - "type": "node", - "id": 365372046, - "lat": 52.2491245, - "lon": 0.7532822, - "tags": { - "amenity": "post_box", - "fixme": "Resurvey to complete ref and get collection times", - "post_box:type": "pillar", - "ref": "IP32 8216" - } -}, -{ - "type": "node", - "id": 365372213, - "lat": 52.2203420, - "lon": 0.7936250, - "tags": { - "amenity": "post_box", - "ref": "IP30 2033" - } -}, -{ - "type": "node", - "id": 365372277, - "lat": 52.2469107, - "lon": 0.7447668, - "tags": { - "amenity": "post_box", - "ref": "IP32 2300" - } -}, -{ - "type": "node", - "id": 365372302, - "lat": 52.2341481, - "lon": 0.7828182, - "tags": { - "amenity": "post_box", - "ref": "IP30 2007" - } -}, -{ - "type": "node", - "id": 365372333, - "lat": 52.2194618, - "lon": 0.8332236, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IP30 2117" - } -}, -{ - "type": "node", - "id": 365372388, - "lat": 52.2472036, - "lon": 0.7800363, - "tags": { - "amenity": "post_box", - "ref": "IP31 2011" - } -}, -{ - "type": "node", - "id": 365372391, - "lat": 52.2402761, - "lon": 0.7753357, - "tags": { - "amenity": "post_box", - "ref": "IP30 2038" - } -}, -{ - "type": "node", - "id": 365436643, - "lat": 53.3490488, - "lon": -2.2320515, - "tags": { - "amenity": "post_box", - "ref": "SK9 445" - } -}, -{ - "type": "node", - "id": 365442935, - "lat": 56.0334783, - "lon": -4.7986931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 11:45", - "mapillary": "196773743047584", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "G84 8NW", - "ref": "G84 16", - "royal_cypher": "scottish_crown", - "survey:date": "2023-05-24" - } -}, -{ - "type": "node", - "id": 365448406, - "lat": 56.0166902, - "lon": -4.7800787, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "G84 8RL", - "ref": "G84 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365448410, - "lat": 56.0137040, - "lon": -4.7733548, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "G84 8L", - "ref": "G84 29" - } -}, -{ - "type": "node", - "id": 365520500, - "lat": 51.4872505, - "lon": -3.5022331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 365564477, - "lat": 55.8463939, - "lon": -4.4184807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "postal_code": "PA1", - "ref": "PA1 15" - } -}, -{ - "type": "node", - "id": 365564747, - "lat": 52.6292914, - "lon": 1.2688511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NR2 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365567616, - "lat": 52.6306234, - "lon": 1.2928559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR2 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365568437, - "lat": 52.6291818, - "lon": 1.2900310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR2 202D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365569043, - "lat": 52.6287950, - "lon": 1.2932851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR2 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:date": "2019-03-08" - } -}, -{ - "type": "node", - "id": 365570826, - "lat": 52.6271547, - "lon": 1.2911359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365571674, - "lat": 52.6249263, - "lon": 1.2829934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "NR2", - "ref": "NR2 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365572137, - "lat": 52.6229238, - "lon": 1.2758600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:date": "2019-04-03" - } -}, -{ - "type": "node", - "id": 365573240, - "lat": 52.6201578, - "lon": 1.2700555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365573652, - "lat": 52.6259228, - "lon": -1.9326959, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 167" - } -}, -{ - "type": "node", - "id": 365573700, - "lat": 52.6243268, - "lon": -1.9261048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "WS9", - "ref": "WS9 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365579334, - "lat": 52.6305829, - "lon": -1.9327162, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 180" - } -}, -{ - "type": "node", - "id": 365579351, - "lat": 52.6192052, - "lon": 1.2816641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365579863, - "lat": 52.6170655, - "lon": 1.2766027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365580512, - "lat": 52.6162398, - "lon": 1.2839493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 213", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 365581392, - "lat": 52.6250207, - "lon": 1.2780726, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR2 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365584882, - "lat": 52.6272992, - "lon": 1.2810954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 216D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365586573, - "lat": 52.6255392, - "lon": 1.2858644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "NR2", - "ref": "NR2 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365587965, - "lat": 52.6308150, - "lon": 1.2789046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365588849, - "lat": 52.6220451, - "lon": 1.2691972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 221D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365589831, - "lat": 52.6262247, - "lon": 1.2709218, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365591241, - "lat": 52.6281117, - "lon": 1.2653401, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365593637, - "lat": 52.6304609, - "lon": 1.2752751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NR2 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365593643, - "lat": 52.6297956, - "lon": 1.2704176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 226D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365594481, - "lat": 52.6296014, - "lon": 1.2604633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR2", - "ref": "NR2 227" - } -}, -{ - "type": "node", - "id": 365595053, - "lat": 52.6346706, - "lon": 1.2723970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 228D" - } -}, -{ - "type": "node", - "id": 365595489, - "lat": 52.6356938, - "lon": 1.2660370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 229D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365595725, - "lat": 52.6348389, - "lon": 1.2596006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:40; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR2", - "ref": "NR2 231" - } -}, -{ - "type": "node", - "id": 365597165, - "lat": 52.6297950, - "lon": 1.2975723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR2 240;NR2 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365597166, - "lat": 52.6297820, - "lon": 1.2975964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 09:00-19:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "NR2 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365597772, - "lat": 52.6318121, - "lon": 1.2815300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:55; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NR2", - "ref": "NR2 232" - } -}, -{ - "type": "node", - "id": 365598515, - "lat": 52.6328302, - "lon": 1.2816575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR2 220;NR2 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365598517, - "lat": 52.6328237, - "lon": 1.2816924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:30-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "NR2 265" - } -}, -{ - "type": "node", - "id": 365602433, - "lat": 52.6326111, - "lon": 1.2843711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:15", - "note": "Within service station building wall", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "postal_code": "NR2", - "ref": "NR2 238" - } -}, -{ - "type": "node", - "id": 365602765, - "lat": 52.6402689, - "lon": 1.2778312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The royal cypher wasn't visible on the pillar at the time of survey", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 234D" - } -}, -{ - "type": "node", - "id": 365603509, - "lat": 52.6331763, - "lon": 1.2876213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 236D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 365604019, - "lat": 52.6383624, - "lon": 1.2803847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 237D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365656180, - "lat": 51.8305051, - "lon": 0.6997621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CO5 376", - "royal_cypher": "no", - "source": "gps" - } -}, -{ - "type": "node", - "id": 365703931, - "lat": 52.0563573, - "lon": 1.2018479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "1173084003168427", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP4 1073", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-06" - } -}, -{ - "type": "node", - "id": 365750237, - "lat": 52.4029097, - "lon": -0.4918420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365752293, - "lat": 52.4049324, - "lon": -0.4956936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NN14 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365754010, - "lat": 56.5728267, - "lon": -5.2320542, - "tags": { - "amenity": "post_box", - "ref": "PA38 173", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365754818, - "lat": 55.9729056, - "lon": -3.1882143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3832243563551456", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 97", - "source": "survey", - "survey:date": "2021-02-27" - } -}, -{ - "type": "node", - "id": 365754969, - "lat": 55.9714156, - "lon": -3.1983702, - "tags": { - "amenity": "post_box", - "ref": "EH7 633" - } -}, -{ - "type": "node", - "id": 365756345, - "lat": 51.5431431, - "lon": -2.5587638, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS34 1025", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365761357, - "lat": 55.9725476, - "lon": -3.1752271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mapillary": "1184748895896910", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 74", - "royal_cypher": "scottish_crown", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 365761507, - "lat": 53.6334884, - "lon": -1.7946016, - "tags": { - "amenity": "post_box", - "collection:covid19": "priority", - "collection_plate:date": "2017-10-30", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD1 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-09-08" - } -}, -{ - "type": "node", - "id": 365802773, - "lat": 53.0594870, - "lon": -2.2048854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 242", - "royal_cypher": "GR", - "source:ref": "http://www.flickr.com/photos/russ_osm/3387297080/" - } -}, -{ - "type": "node", - "id": 365802775, - "lat": 53.0500596, - "lon": -2.1821789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 422", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365802776, - "lat": 53.0537342, - "lon": -2.1867858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 365D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 365802779, - "lat": 53.0592822, - "lon": -2.1904275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 252", - "source:ref": "http://www.flickr.com/photos/russ_osm/3387297076/" - } -}, -{ - "type": "node", - "id": 365802780, - "lat": 53.0544252, - "lon": -2.2104440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 133" - } -}, -{ - "type": "node", - "id": 365802781, - "lat": 53.0429910, - "lon": -2.2144262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST6 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 365851609, - "lat": 55.9492108, - "lon": -3.9744666, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1399" - } -}, -{ - "type": "node", - "id": 365862033, - "lat": 55.9514020, - "lon": -3.9795814, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 675" - } -}, -{ - "type": "node", - "id": 365872368, - "lat": 55.9552980, - "lon": -3.9749154, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "G67", - "ref": "G67 128" - } -}, -{ - "type": "node", - "id": 365877567, - "lat": 55.9531912, - "lon": -3.9741418, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1334" - } -}, -{ - "type": "node", - "id": 365896966, - "lat": 51.8627764, - "lon": 0.9042199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 380", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 365922791, - "lat": 51.1143759, - "lon": 1.0938001, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT18", - "ref": "CT18 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365923218, - "lat": 53.9648762, - "lon": -0.4408776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "YO25 349", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 365923222, - "lat": 53.9573887, - "lon": -0.4426239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO25 346D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 365953028, - "lat": 51.5617283, - "lon": -1.7903389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN1 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 365979194, - "lat": 51.3859830, - "lon": -0.5030164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KT16 63" - } -}, -{ - "type": "node", - "id": 365980593, - "lat": 51.3693382, - "lon": -0.4805033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT15 142D" - } -}, -{ - "type": "node", - "id": 365983325, - "lat": 53.0824321, - "lon": -4.0017270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL55 80D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365990351, - "lat": 53.1176156, - "lon": -3.8268177, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365993415, - "lat": 53.0828244, - "lon": -3.7697321, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL26 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 365997549, - "lat": 53.0619492, - "lon": -3.7430454, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366006337, - "lat": 51.2838648, - "lon": -1.0861851, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 240" - } -}, -{ - "type": "node", - "id": 366018359, - "lat": 52.9977769, - "lon": -3.5330521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL21 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366022217, - "lat": 50.7134491, - "lon": -3.5114438, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "EX2 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366026507, - "lat": 50.7143194, - "lon": -3.5213732, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "EX2 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366033693, - "lat": 52.9885575, - "lon": -3.4652179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366059449, - "lat": 51.4671823, - "lon": 0.3638712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 366073246, - "lat": 51.5135649, - "lon": -0.0816035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "mail:franked": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "EC3V 308P", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366139367, - "lat": 51.4306679, - "lon": -0.9173439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "725819252789073", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 366142021, - "lat": 51.4366474, - "lon": -0.8877090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG41 229" - } -}, -{ - "type": "node", - "id": 366142023, - "lat": 51.4366464, - "lon": -0.8877470, - "tags": { - "amenity": "post_box", - "note": "Franked Mail Only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG41 228" - } -}, -{ - "type": "node", - "id": 366174493, - "lat": 55.1257085, - "lon": -1.5508614, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 1HD", - "ref": "NE24 706" - } -}, -{ - "type": "node", - "id": 366183106, - "lat": 51.4334124, - "lon": -0.8871332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "498061242462186", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RG41 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 366184152, - "lat": 51.4313412, - "lon": -0.8836196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "RG41 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366188934, - "lat": 51.4306702, - "lon": -0.8698571, - "tags": { - "amenity": "post_box", - "mapillary": "294293759036712", - "post_box:type": "pillar", - "ref": "RG41 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-04-06" - } -}, -{ - "type": "node", - "id": 366193771, - "lat": 51.5799753, - "lon": -2.5045467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 247" - } -}, -{ - "type": "node", - "id": 366193772, - "lat": 51.5918784, - "lon": -2.5353060, - "tags": { - "amenity": "post_box", - "mapillary": "177160960974983", - "post_box:type": "pillar", - "postal_code": "BS35", - "ref": "BS35 169", - "survey:date": "2020-06-10" - } -}, -{ - "type": "node", - "id": 366193783, - "lat": 51.5843005, - "lon": -2.5308438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "BS35", - "ref": "BS35 346" - } -}, -{ - "type": "node", - "id": 366193789, - "lat": 51.6076500, - "lon": -2.5210482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS35 546D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-03-30" - } -}, -{ - "type": "node", - "id": 366197355, - "lat": 52.2905148, - "lon": -1.7240143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2016-07-23" - } -}, -{ - "type": "node", - "id": 366243122, - "lat": 51.2488705, - "lon": -0.5858667, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "last_checked": "2020-02-19", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU2 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366292389, - "lat": 51.0512764, - "lon": -1.3248302, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 366327714, - "lat": 52.0119643, - "lon": -0.6355378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366346157, - "lat": 53.5173040, - "lon": -2.2416507, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.13" - } -}, -{ - "type": "node", - "id": 366364758, - "lat": 52.8066146, - "lon": -1.2898121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LE12 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366388381, - "lat": 53.1040972, - "lon": -0.9896140, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 366395903, - "lat": 50.6197367, - "lon": -2.2524563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 212", - "ref:GB:uprn": "10015454960", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366408547, - "lat": 54.7583688, - "lon": -1.5683211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "ele": "37.38", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366410044, - "lat": 51.2749738, - "lon": -1.0447454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1501963813613374", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG24", - "ref": "RG24 192", - "survey:date": "2022-11-20" - } -}, -{ - "type": "node", - "id": 366488872, - "lat": 53.3692009, - "lon": -1.4958523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "S11 459", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 366505482, - "lat": 52.6314933, - "lon": 1.2867603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR2 235", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 366520123, - "lat": 51.5224408, - "lon": -0.1186334, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Handyside Derby & London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC1N 27D;WC1N 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366520792, - "lat": 53.5192559, - "lon": -2.2384965, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.13" - } -}, -{ - "type": "node", - "id": 366528468, - "lat": 52.3492458, - "lon": -1.5915446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 244D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366585837, - "lat": 54.7783324, - "lon": -1.5724543, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-25", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "DH1 313;DH1 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366597086, - "lat": 51.7553844, - "lon": -2.2823591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366597291, - "lat": 51.7538752, - "lon": -2.2846512, - "tags": { - "amenity": "post_box", - "postal_code": "GL10", - "ref": "GL10 255" - } -}, -{ - "type": "node", - "id": 366640572, - "lat": 51.7619894, - "lon": -1.1961043, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-15", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX3 740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366661940, - "lat": 53.6495985, - "lon": -1.5010687, - "tags": { - "amenity": "post_box", - "note": "Inside entrance to Asda - royal_cypher prop EiiR as new plastic postbox but might just be blank", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 113", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 366662997, - "lat": 53.6677326, - "lon": -1.4873601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 366670249, - "lat": 52.6271320, - "lon": 1.2932290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR2 206", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 366682432, - "lat": 51.3977353, - "lon": -1.3223495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "RG14", - "ref": "RG14 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366687685, - "lat": 51.4055322, - "lon": -1.3251141, - "tags": { - "amenity": "post_box", - "mapillary": "268682448341726", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "RG14", - "ref": "RG14 43", - "survey:date": "2021-02-19" - } -}, -{ - "type": "node", - "id": 366695323, - "lat": 51.5308320, - "lon": -1.8013490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SN4 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366721786, - "lat": 55.9273514, - "lon": -4.1539914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3761143737348484", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-02-14" - } -}, -{ - "type": "node", - "id": 366727806, - "lat": 54.5690098, - "lon": -1.2291691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TS1", - "ref": "TS1 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366730134, - "lat": 50.8597784, - "lon": -2.1633425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:GB:uprn": "10015277970" - } -}, -{ - "type": "node", - "id": 366735814, - "lat": 56.2474696, - "lon": -3.1527634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "KY15", - "ref": "KY15 285D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366739373, - "lat": 56.2511520, - "lon": -3.1833461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY15 266D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366742912, - "lat": 56.2520308, - "lon": -3.2013541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY15 314D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 366742922, - "lat": 56.2529569, - "lon": -3.2079817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "KY15 405D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 366742936, - "lat": 56.2967156, - "lon": -3.2374749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY14 311D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366742982, - "lat": 56.4082819, - "lon": -3.0242121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 68", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 366742983, - "lat": 56.4170608, - "lon": -2.9768992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 190", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 366744294, - "lat": 56.4288795, - "lon": -2.9702344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 366744305, - "lat": 56.4398141, - "lon": -2.9418133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD6 147", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 366753509, - "lat": 51.4155989, - "lon": -0.1106899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 366753510, - "lat": 51.4130499, - "lon": -0.1123169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 366803430, - "lat": 51.6056922, - "lon": 0.1003301, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG6 103" - } -}, -{ - "type": "node", - "id": 366803589, - "lat": 51.6040270, - "lon": 0.0938393, - "tags": { - "amenity": "post_box", - "ref": "IG6 91" - } -}, -{ - "type": "node", - "id": 366803991, - "lat": 51.6086719, - "lon": 0.1012570, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG7 115" - } -}, -{ - "type": "node", - "id": 366803998, - "lat": 51.6106175, - "lon": 0.1207921, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG6 138" - } -}, -{ - "type": "node", - "id": 366804170, - "lat": 51.6126843, - "lon": 0.1200949, - "tags": { - "amenity": "post_box", - "ref": "IG6 15" - } -}, -{ - "type": "node", - "id": 366804181, - "lat": 51.6122591, - "lon": 0.1146123, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG7 112" - } -}, -{ - "type": "node", - "id": 366804372, - "lat": 51.6079630, - "lon": 0.1112306, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG6 137" - } -}, -{ - "type": "node", - "id": 366806332, - "lat": 51.6009743, - "lon": 0.0768897, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG6 97" - } -}, -{ - "type": "node", - "id": 366806647, - "lat": 51.6033756, - "lon": 0.0821602, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG6 132", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366806749, - "lat": 51.5944910, - "lon": 0.0848290, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG6 3" - } -}, -{ - "type": "node", - "id": 366806764, - "lat": 51.6005318, - "lon": 0.0845372, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG6 33" - } -}, -{ - "type": "node", - "id": 366825414, - "lat": 51.3137247, - "lon": 1.1591761, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366832783, - "lat": 51.3162916, - "lon": 1.1633708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 366838110, - "lat": 51.6144094, - "lon": 0.0131906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG8 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 366852342, - "lat": 52.6293977, - "lon": 1.2860714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "Inside shop window", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR2 205", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 366870679, - "lat": 52.6256145, - "lon": 1.2932452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "133 on left, 156 on right", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR1 133;NR1 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366954836, - "lat": 51.2675271, - "lon": -0.7209596, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GU12 40" - } -}, -{ - "type": "node", - "id": 366963292, - "lat": 51.2592660, - "lon": -0.7274714, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GU12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366971869, - "lat": 53.7725045, - "lon": -1.5163489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "parcels and franked only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 30", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 366971879, - "lat": 53.7724700, - "lon": -1.5163652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366971889, - "lat": 53.7785831, - "lon": -1.5228512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366971897, - "lat": 53.7414283, - "lon": -1.5086803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 366980628, - "lat": 51.2626420, - "lon": -0.7290246, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "ref": "GU12 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367010450, - "lat": 52.9043084, - "lon": -1.5438162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 268", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367010462, - "lat": 52.9058442, - "lon": -1.5481608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 760", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367010464, - "lat": 52.9113934, - "lon": -1.5484579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 676" - } -}, -{ - "type": "node", - "id": 367010470, - "lat": 52.9072479, - "lon": -1.5214492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE3 625", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367022887, - "lat": 51.5651587, - "lon": -2.6607077, - "tags": { - "amenity": "post_box", - "postal_code": "BS35", - "ref": "BS35 706" - } -}, -{ - "type": "node", - "id": 367022897, - "lat": 51.5610794, - "lon": -2.6657243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS35 1118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367022997, - "lat": 51.5557952, - "lon": -2.6598277, - "tags": { - "amenity": "post_box", - "postal_code": "BS35", - "ref": "BS35 465" - } -}, -{ - "type": "node", - "id": 367023056, - "lat": 51.5950188, - "lon": -2.5801707, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 131" - } -}, -{ - "type": "node", - "id": 367023071, - "lat": 51.5828102, - "lon": -2.5769625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 708" - } -}, -{ - "type": "node", - "id": 367023074, - "lat": 51.5808509, - "lon": -2.5774032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "mapillary": "216211373929643", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS35", - "ref": "BS35 1069", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 367025879, - "lat": 52.4192627, - "lon": -1.5455368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367027812, - "lat": 50.6598229, - "lon": -2.2756138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 53", - "ref:GB:uprn": "10015376626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367027814, - "lat": 50.6624840, - "lon": -2.2743813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DT2 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367030114, - "lat": 50.9299940, - "lon": -1.4031619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SO17", - "ref": "SO17 86", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 367031315, - "lat": 50.6288418, - "lon": -2.2669312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH20 65", - "ref:GB:uprn": "10015448377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367035417, - "lat": 52.4337649, - "lon": -1.5643734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV5 232", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367046043, - "lat": 50.6772504, - "lon": -2.3827956, - "tags": { - "amenity": "post_box", - "ref": "DT2 102" - } -}, -{ - "type": "node", - "id": 367046079, - "lat": 50.6926888, - "lon": -2.4025354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "DT2 66" - } -}, -{ - "type": "node", - "id": 367046208, - "lat": 53.3405842, - "lon": -1.4498370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "S14 816", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367051477, - "lat": 50.7734192, - "lon": -2.4742049, - "tags": { - "amenity": "post_box", - "mapillary": "598540227940342", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT2 51", - "survey:date": "2022-05-23" - } -}, -{ - "type": "node", - "id": 367053515, - "lat": 50.7841130, - "lon": -2.4719536, - "tags": { - "amenity": "post_box", - "mapillary": "491744551817954", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT2 8", - "survey:date": "2021-06-17" - } -}, -{ - "type": "node", - "id": 367064932, - "lat": 51.5008098, - "lon": -1.5979218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN8", - "ref": "SN8 101" - } -}, -{ - "type": "node", - "id": 367067750, - "lat": 51.5203194, - "lon": -2.0074304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN15", - "ref": "SN15 41" - } -}, -{ - "type": "node", - "id": 367068665, - "lat": 51.5420468, - "lon": -1.9044198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SN4", - "ref": "SN4 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367068673, - "lat": 51.5419868, - "lon": -1.9045298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SN4", - "ref": "SN4 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367075878, - "lat": 51.4097890, - "lon": -0.0956083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 225D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367075879, - "lat": 51.4131777, - "lon": -0.1013712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 298D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367075881, - "lat": 51.4077751, - "lon": -0.0938892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367075885, - "lat": 51.4055019, - "lon": -0.0934414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 138D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367075886, - "lat": 51.4023760, - "lon": -0.0957383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 198D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367075889, - "lat": 51.4045300, - "lon": -0.0969441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367081592, - "lat": 53.3399900, - "lon": -1.4452934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S14 818", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367086268, - "lat": 53.3002976, - "lon": -2.2361441, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SK9 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367086375, - "lat": 53.2988301, - "lon": -2.2260925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SK9 93", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 367096497, - "lat": 53.3437230, - "lon": -1.4472193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S14 817", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367105815, - "lat": 52.6053536, - "lon": -1.9566163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS4", - "ref": "WS4 313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 367105849, - "lat": 52.6090931, - "lon": -1.9423521, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-20", - "collection_times": "Mo-Fr 09:00", - "postal_code": "WS4", - "ref": "WS4 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367105853, - "lat": 52.6105697, - "lon": -1.9516673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS4", - "ref": "WS4 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367126727, - "lat": 51.5760180, - "lon": -0.0986215, - "tags": { - "amenity": "post_box", - "ele": "21.996", - "mapillary": "788782445875963", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 31", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 367202083, - "lat": 52.6238916, - "lon": 1.2915582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR1 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367212012, - "lat": 52.6266789, - "lon": 1.3188663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR1", - "ref": "NR1 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367248418, - "lat": 51.8777160, - "lon": 0.9011992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 9" - } -}, -{ - "type": "node", - "id": 367248470, - "lat": 51.8875683, - "lon": 0.8993330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO2 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367255239, - "lat": 51.3256760, - "lon": -0.2855515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT18 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367256774, - "lat": 51.3260124, - "lon": -0.2761899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT18 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367265907, - "lat": 51.3281508, - "lon": -0.2702314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT18 90D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 367369556, - "lat": 51.1175945, - "lon": 1.0826223, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 104" - } -}, -{ - "type": "node", - "id": 367370736, - "lat": 51.5824320, - "lon": -0.0187158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E17 14", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 367372810, - "lat": 52.7045614, - "lon": -2.7447949, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "SY3 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367412080, - "lat": 52.6197768, - "lon": 1.3070780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 113D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 367414811, - "lat": 52.6227029, - "lon": 1.3025638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367442443, - "lat": 52.6253797, - "lon": 1.3206661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 109D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 367445559, - "lat": 52.6141406, - "lon": 1.2945494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367446133, - "lat": 52.9127763, - "lon": -1.5030519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "mapillary": "611021610031001", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 599", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 367446187, - "lat": 52.9128750, - "lon": -1.4964243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367446337, - "lat": 52.9155530, - "lon": -1.4946846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 512" - } -}, -{ - "type": "node", - "id": 367496404, - "lat": 52.6189659, - "lon": 1.3042456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367520442, - "lat": 53.8561032, - "lon": -1.8299890, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD16 605" - } -}, -{ - "type": "node", - "id": 367615173, - "lat": 52.4152680, - "lon": -1.4537760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CV2 299D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367615861, - "lat": 52.4138431, - "lon": -1.4582178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367617653, - "lat": 52.4103942, - "lon": -1.4612662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref:signed": "no", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 367666165, - "lat": 52.8880350, - "lon": -1.4954622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 780D" - } -}, -{ - "type": "node", - "id": 367686986, - "lat": 51.6330235, - "lon": -2.4315548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL12 144", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 367689550, - "lat": 52.1105576, - "lon": -0.5262554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367732863, - "lat": 50.8093519, - "lon": -0.5408564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "note": "This postbox did have the reference BN16 1502. As at 29.08.2018 it has the reference BN17 1502.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BN16", - "ref": "BN17 1502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367734640, - "lat": 51.3888813, - "lon": -0.4881111, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT16 62" - } -}, -{ - "type": "node", - "id": 367735135, - "lat": 50.8139880, - "lon": -0.5123020, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN16 1441D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367735138, - "lat": 50.8078670, - "lon": -0.5391044, - "tags": { - "amenity": "post_box", - "fixme": "check reference number, since location in BN17 postal district", - "ref": "BN16 1496" - } -}, -{ - "type": "node", - "id": 367737445, - "lat": 51.3837727, - "lon": -0.4946017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "ref": "KT16 22" - } -}, -{ - "type": "node", - "id": 367754825, - "lat": 51.2885228, - "lon": -1.0806263, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 315" - } -}, -{ - "type": "node", - "id": 367755497, - "lat": 51.4621491, - "lon": -0.1368735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW4 55" - } -}, -{ - "type": "node", - "id": 367755498, - "lat": 51.4600842, - "lon": -0.1349786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW4 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 367829843, - "lat": 51.5948465, - "lon": 0.0564706, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 367833418, - "lat": 51.5908984, - "lon": 0.0578167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 367845071, - "lat": 50.9261179, - "lon": -1.6706923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367863440, - "lat": 53.0204136, - "lon": -2.1809707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 653" - } -}, -{ - "type": "node", - "id": 367863446, - "lat": 53.0204008, - "lon": -2.1808927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 97" - } -}, -{ - "type": "node", - "id": 367881903, - "lat": 53.4256697, - "lon": -2.1837079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367882010, - "lat": 53.4246781, - "lon": -2.1882711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367883147, - "lat": 51.4184469, - "lon": -0.3017047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367886683, - "lat": 51.4070583, - "lon": -0.2871426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 125D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367903397, - "lat": 51.3960417, - "lon": -0.2547513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 290", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367927329, - "lat": 51.9146597, - "lon": -2.0908574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL51", - "ref": "GL51 358", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 367927476, - "lat": 51.9187932, - "lon": -2.0971564, - "tags": { - "amenity": "post_box", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "GL51", - "ref": "GL51 369" - } -}, -{ - "type": "node", - "id": 367929381, - "lat": 52.4782889, - "lon": -2.0621559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B64 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 367932401, - "lat": 51.6076178, - "lon": 0.0296729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IG8 34", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 367932444, - "lat": 51.6046167, - "lon": 0.0279734, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "827516261554140", - "post_box:type": "pillar", - "ref": "IG8 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367932870, - "lat": 51.6079613, - "lon": 0.0335063, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 367932961, - "lat": 51.6190449, - "lon": 0.0403073, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG9 85" - } -}, -{ - "type": "node", - "id": 367933078, - "lat": 51.6202173, - "lon": 0.0291493, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 69" - } -}, -{ - "type": "node", - "id": 367933741, - "lat": 52.6075079, - "lon": -1.9610901, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS4", - "ref": "WS4 155D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 367944633, - "lat": 52.6097325, - "lon": -1.9568353, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS4", - "ref": "WS4 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367944658, - "lat": 52.6067187, - "lon": -1.9332589, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-03", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "WS9", - "ref": "WS9 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367945082, - "lat": 51.3902313, - "lon": -0.4989201, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT16 64" - } -}, -{ - "type": "node", - "id": 367952357, - "lat": 51.0545316, - "lon": -1.3205580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "866449505189530", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO23 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-10-08" - } -}, -{ - "type": "node", - "id": 367993293, - "lat": 52.4306557, - "lon": -1.4576492, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 367994155, - "lat": 52.6176076, - "lon": -1.9488253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS4", - "ref": "WS4 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 367997629, - "lat": 52.4383162, - "lon": -1.4636110, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 368000907, - "lat": 52.4287398, - "lon": -1.4882116, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 368001604, - "lat": 52.6035981, - "lon": -1.9649225, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS4", - "ref": "WS4 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368043547, - "lat": 51.2842324, - "lon": -1.0745130, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 25" - } -}, -{ - "type": "node", - "id": 368053768, - "lat": 51.3643179, - "lon": -1.2823455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 240" - } -}, -{ - "type": "node", - "id": 368054718, - "lat": 51.3720497, - "lon": -1.2624295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368055100, - "lat": 51.3693377, - "lon": -1.2837072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG20", - "ref": "RG20 136" - } -}, -{ - "type": "node", - "id": 368174342, - "lat": 52.4689476, - "lon": -2.0506275, - "tags": { - "amenity": "post_box", - "ref": "B64 1129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368174346, - "lat": 52.4716807, - "lon": -2.0596699, - "tags": { - "amenity": "post_box", - "ref": "B64 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368174647, - "lat": 52.4724189, - "lon": -2.0561578, - "tags": { - "amenity": "post_box", - "ref": "B64 1131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368178561, - "lat": 55.6975072, - "lon": -3.8648694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2078623732317354", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML8 154", - "survey:date": "2021-08-12" - } -}, -{ - "type": "node", - "id": 368182990, - "lat": 52.6147447, - "lon": 1.2993103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 368182991, - "lat": 52.6170525, - "lon": 1.2970948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR1 116D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 368183419, - "lat": 52.6118687, - "lon": 1.2953889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR1 111" - } -}, -{ - "type": "node", - "id": 368183740, - "lat": 51.6151971, - "lon": 0.0212614, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 56" - } -}, -{ - "type": "node", - "id": 368183747, - "lat": 52.6103268, - "lon": 1.3015383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368183873, - "lat": 52.6050577, - "lon": 1.2958297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 368183979, - "lat": 52.6172837, - "lon": 1.2913361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 118D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 368184321, - "lat": 52.6238861, - "lon": 1.2915796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 11:30-18:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR1 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368184629, - "lat": 52.6175491, - "lon": 1.3011235, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR1 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368187093, - "lat": 52.6238192, - "lon": 1.2980558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368187415, - "lat": 52.6250328, - "lon": 1.2955365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368188398, - "lat": 52.6226238, - "lon": 1.2882619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368188741, - "lat": 52.6211593, - "lon": 1.2915078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 128", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 368190694, - "lat": 52.6366964, - "lon": 1.3265503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368190695, - "lat": 52.6271332, - "lon": 1.3230720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 129" - } -}, -{ - "type": "node", - "id": 368191071, - "lat": 52.6290068, - "lon": 1.3111254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR1", - "ref": "NR1 132" - } -}, -{ - "type": "node", - "id": 368191458, - "lat": 52.6270090, - "lon": 1.3112977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 368193867, - "lat": 52.6325475, - "lon": 1.3066921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368194603, - "lat": 52.6336174, - "lon": 1.3095376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368195146, - "lat": 52.6336011, - "lon": 1.3161895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368195859, - "lat": 52.6317116, - "lon": 1.3126715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR1", - "ref": "NR1 139" - } -}, -{ - "type": "node", - "id": 368197008, - "lat": 52.6399078, - "lon": 1.3223655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368197014, - "lat": 52.6333848, - "lon": 1.3239491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR1", - "ref": "NR1 141" - } -}, -{ - "type": "node", - "id": 368203890, - "lat": 51.4846700, - "lon": -3.5803287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 155D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 368217158, - "lat": 52.7019570, - "lon": -2.7715612, - "tags": { - "amenity": "post_box", - "check_date": "2023-09-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SY3 612D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368223181, - "lat": 52.6287596, - "lon": 1.3035911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR1 102D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368225062, - "lat": 51.4611823, - "lon": -2.1257784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 368226229, - "lat": 52.6242855, - "lon": 1.3023188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR1 104D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 368228203, - "lat": 52.6303160, - "lon": 1.3080275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR1 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368229477, - "lat": 52.6240495, - "lon": 1.3143951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 108" - } -}, -{ - "type": "node", - "id": 368233127, - "lat": 52.6280210, - "lon": 1.2950770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR1 115;NR1 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:date": "2019-03-01" - } -}, -{ - "type": "node", - "id": 368241628, - "lat": 51.8895887, - "lon": 0.8984205, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "CO1 29" - } -}, -{ - "type": "node", - "id": 368241642, - "lat": 51.8897077, - "lon": 0.8965965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "mapillary": "827009689245661", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO1 9841;CO1 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368241696, - "lat": 51.8898329, - "lon": 0.9001275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO1 9004;CO1 4", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 368250608, - "lat": 52.4677615, - "lon": -2.0563545, - "tags": { - "amenity": "post_box", - "ref": "B64 1122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368251514, - "lat": 52.4700196, - "lon": -2.0472926, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B65 178", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368279248, - "lat": 52.6296223, - "lon": 1.2963398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR1 122", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368293109, - "lat": 53.4251406, - "lon": -2.1792209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368293595, - "lat": 52.4623564, - "lon": -1.8179127, - "tags": { - "amenity": "post_box", - "ref": "B25 1409", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368293889, - "lat": 51.3816256, - "lon": 0.1013049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BR6 403", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 368293924, - "lat": 51.3838753, - "lon": 0.1038976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BR6 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368312483, - "lat": 52.4158504, - "lon": -1.4977911, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 368322269, - "lat": 51.8368097, - "lon": 0.6962473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO5 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368339057, - "lat": 51.2759713, - "lon": -1.1536410, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368339146, - "lat": 52.6268613, - "lon": 1.3098505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 14:00", - "operator": "Royal Mail", - "postal_code": "NR1", - "ref": "NR1 100", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 368340470, - "lat": 52.6271726, - "lon": 1.2949218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR1 126D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 368354046, - "lat": 53.4030356, - "lon": -2.0657333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 368356551, - "lat": 53.4000345, - "lon": -2.0642881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 368368587, - "lat": 52.1722365, - "lon": -2.5845472, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "HR7 403" - } -}, -{ - "type": "node", - "id": 368368744, - "lat": 53.3336764, - "lon": -2.2306499, - "tags": { - "amenity": "post_box", - "ref": "SK9 287" - } -}, -{ - "type": "node", - "id": 368371608, - "lat": 50.8646570, - "lon": -1.2480830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "mapillary": "513399633016149", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO15 59", - "survey:date": "2020-09-16" - } -}, -{ - "type": "node", - "id": 368371616, - "lat": 50.8647489, - "lon": -1.2567148, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "last_checked": "2021-03-15", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO14 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368371617, - "lat": 50.8686653, - "lon": -1.2633736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 767D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368377862, - "lat": 51.3895764, - "lon": 0.0977969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BR5 321", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 368377870, - "lat": 51.3869261, - "lon": 0.1011079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "BR5 421", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 368398830, - "lat": 55.8090800, - "lon": -4.2715828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10f", - "mapillary": "740097147294575", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 368410415, - "lat": 51.3926403, - "lon": 0.1068846, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-16", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 386", - "ref:GB:uprn": "10015449480", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 368410474, - "lat": 51.3937756, - "lon": 0.0983361, - "tags": { - "amenity": "post_box", - "ref": "BR5 419" - } -}, -{ - "type": "node", - "id": 368410491, - "lat": 51.3937758, - "lon": 0.0914985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BR5 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368445971, - "lat": 52.6268564, - "lon": 1.2957188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "layer": "-3", - "level": "2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR1 150" - } -}, -{ - "type": "node", - "id": 368503106, - "lat": 51.4620893, - "lon": -2.1205173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN14 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368610191, - "lat": 51.3847424, - "lon": -2.3618507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BA1 227", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368610194, - "lat": 51.3866289, - "lon": -2.3628262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA1 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 368695620, - "lat": 52.3039491, - "lon": -0.6765807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 368804169, - "lat": 52.5520985, - "lon": -1.8423369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B73", - "ref": "B73 538", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 368826234, - "lat": 52.5497734, - "lon": -1.8415138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "postal_code": "B73", - "ref": "B73 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 368848142, - "lat": 52.5373773, - "lon": -1.8360969, - "tags": { - "amenity": "post_box", - "postal_code": "B73", - "ref": "B73 122" - } -}, -{ - "type": "node", - "id": 368877709, - "lat": 55.9407057, - "lon": -3.2099923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "mapillary": "180337863968518", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2020-04-05" - } -}, -{ - "type": "node", - "id": 368998917, - "lat": 52.4506329, - "lon": -1.4700906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV2 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369001785, - "lat": 52.2458674, - "lon": 0.5942225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP29 2078", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369005796, - "lat": 52.4331847, - "lon": -1.4422458, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369009841, - "lat": 51.5082805, - "lon": -0.0788563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3R 316;EC3R 3161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369009842, - "lat": 51.5091206, - "lon": -0.0833682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "each aperture has a separate ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "McDowall, Steven and Co. Ltd, London and Falkirk", - "post_box:type": "pillar", - "ref": "EC3R 301;EC3R 3011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369009843, - "lat": 51.5121763, - "lon": -0.0836995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3V 321D;EC3V 3211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369046072, - "lat": 51.2491236, - "lon": -0.2954331, - "tags": { - "amenity": "post_box", - "ref": "KT20 3", - "source": "Photo P141-0924", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 369058826, - "lat": 57.4794785, - "lon": -4.2238357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "in railway station", - "indoor": "yes", - "note": "lamp box mounted to wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 28D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369058832, - "lat": 57.4831263, - "lon": -4.2283735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 111D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 369075880, - "lat": 53.9483693, - "lon": -1.0468123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 08:00", - "note": "franked mail", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "YO10 2021", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 369091538, - "lat": 57.4845899, - "lon": -4.2129948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 1211", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369091540, - "lat": 57.4845902, - "lon": -4.2129871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "mail:meter": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 09:00-18:30; Sa 09:00-12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "IV1", - "ref": "IV1 1212", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369091541, - "lat": 57.4845901, - "lon": -4.2129788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "mail:first_class": "yes", - "mail:meter": "yes", - "mail:second_class": "no", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 09:00-18:30; Sa 09:00-12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "IV1", - "ref": "IV1 121", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369091543, - "lat": 57.4822563, - "lon": -4.2073159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV2", - "ref": "IV2 109", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369099993, - "lat": 54.4555641, - "lon": -1.2748491, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TS15", - "ref": "TS15 171", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369111515, - "lat": 52.8357676, - "lon": -1.2882853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE74 521D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369111705, - "lat": 52.8398625, - "lon": -1.2751030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DE74 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369111711, - "lat": 52.8395099, - "lon": -1.2812203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "W T Allen & Co, London SE1", - "post_box:type": "lamp", - "ref": "DE74 588D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369111716, - "lat": 52.8357628, - "lon": -1.2782251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "DE74 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369116851, - "lat": 53.3320673, - "lon": -2.2280392, - "tags": { - "amenity": "post_box", - "ref": "SK9 85" - } -}, -{ - "type": "node", - "id": 369117054, - "lat": 51.3985688, - "lon": 0.0396014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BR1 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 369117062, - "lat": 52.2663662, - "lon": 0.7575739, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP31 2163" - } -}, -{ - "type": "node", - "id": 369117064, - "lat": 52.2754864, - "lon": 0.7640249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP31 2065", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369126488, - "lat": 53.1308748, - "lon": -1.3352405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369126785, - "lat": 53.1184270, - "lon": -1.3267372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE55 403", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369284584, - "lat": 53.2760813, - "lon": -2.7431416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ref": "WA6 85" - } -}, -{ - "type": "node", - "id": 369284629, - "lat": 53.2771046, - "lon": -2.7540078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA6 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369321607, - "lat": 52.6311077, - "lon": 1.3017230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 134D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369325857, - "lat": 51.3805015, - "lon": -2.3482981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BA2 42D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 369333305, - "lat": 52.4429843, - "lon": -1.8489220, - "tags": { - "amenity": "post_box", - "ref": "B28 367" - } -}, -{ - "type": "node", - "id": 369347396, - "lat": 51.8215481, - "lon": -2.2931746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "pillar", - "ref": "GL2 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369434057, - "lat": 53.7191012, - "lon": -0.1723595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 369460826, - "lat": 54.7139342, - "lon": -2.8275112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369470790, - "lat": 51.6051955, - "lon": 0.0347001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f", - "ref": "IG8 61", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 369471191, - "lat": 51.6053961, - "lon": 0.0403896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f", - "ref": "IG8 86", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 369472934, - "lat": 54.9513285, - "lon": -2.9428339, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369474385, - "lat": 51.4596174, - "lon": -2.1200867, - "tags": { - "amenity": "post_box", - "mapillary": "514064733242143", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 54", - "survey:date": "2021-04-16" - } -}, -{ - "type": "node", - "id": 369475356, - "lat": 51.6015151, - "lon": 0.0402180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f", - "post_box:type": "pillar", - "ref": "IG8 97", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 369476581, - "lat": 51.6026240, - "lon": 0.0454107, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 65" - } -}, -{ - "type": "node", - "id": 369478637, - "lat": 51.6027040, - "lon": 0.0501400, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 53" - } -}, -{ - "type": "node", - "id": 369480322, - "lat": 51.6024107, - "lon": 0.0530325, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 54" - } -}, -{ - "type": "node", - "id": 369483188, - "lat": 51.6093353, - "lon": 0.0535389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "Potlatch 0.10f", - "ref": "IG8 89", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 369484807, - "lat": 52.6268102, - "lon": 1.3064817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR1 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 369484814, - "lat": 52.6240394, - "lon": 1.3083328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR1 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369486055, - "lat": 51.6064457, - "lon": 0.0552724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "IG8 55" - } -}, -{ - "type": "node", - "id": 369500700, - "lat": 51.6070166, - "lon": 0.0610576, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 60" - } -}, -{ - "type": "node", - "id": 369507225, - "lat": 51.6103214, - "lon": 0.0794855, - "tags": { - "amenity": "post_box", - "mapillary": "548430380025568", - "post_box:type": "pillar", - "ref": "IG7 100", - "survey:date": "2022-06-08" - } -}, -{ - "type": "node", - "id": 369509128, - "lat": 51.6130716, - "lon": 0.0907121, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG7 96" - } -}, -{ - "type": "node", - "id": 369519476, - "lat": 51.2444559, - "lon": -0.7073883, - "tags": { - "amenity": "post_box", - "ref": "GU12 168" - } -}, -{ - "type": "node", - "id": 369550573, - "lat": 54.7558649, - "lon": -1.5363452, - "tags": { - "amenity": "post_box", - "ele": "86.88", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 234" - } -}, -{ - "type": "node", - "id": 369561625, - "lat": 51.5948980, - "lon": -2.4124485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "961736728219902", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 95", - "survey:date": "2023-08-09" - } -}, -{ - "type": "node", - "id": 369576943, - "lat": 51.2856508, - "lon": -1.0817566, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG24", - "ref": "RG24 313" - } -}, -{ - "type": "node", - "id": 369586085, - "lat": 51.5328364, - "lon": -2.3964870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1089635675119529", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 663", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 369586110, - "lat": 51.5380018, - "lon": -2.3943251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 1548", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369586113, - "lat": 51.5380016, - "lon": -2.3943113, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 1547", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369586115, - "lat": 51.5378752, - "lon": -2.3914534, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 1091D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369586117, - "lat": 51.5371830, - "lon": -2.3862098, - "tags": { - "amenity": "post_box", - "mapillary": "156097839804228", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 526", - "survey:date": "2019-06-26" - } -}, -{ - "type": "node", - "id": 369600141, - "lat": 53.7721589, - "lon": -1.7330076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 122" - } -}, -{ - "type": "node", - "id": 369607173, - "lat": 51.1039503, - "lon": -0.3366364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH12 117" - } -}, -{ - "type": "node", - "id": 369608508, - "lat": 53.4154756, - "lon": -2.1958554, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SK4 304", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 369608541, - "lat": 53.3246737, - "lon": -2.2988500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "WA16", - "ref": "WA16 43", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 369608543, - "lat": 53.3221211, - "lon": -2.3166146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "WA16", - "ref": "WA16 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 369608546, - "lat": 53.3311484, - "lon": -2.2710376, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-06", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "ref": "SK9 721", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369680687, - "lat": 50.9241440, - "lon": -1.3384952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO30 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 369681784, - "lat": 50.9272295, - "lon": -1.3278865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO30 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 369682048, - "lat": 50.9276643, - "lon": -1.3353462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369682336, - "lat": 50.9305386, - "lon": -1.3308133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369688133, - "lat": 55.9207326, - "lon": -4.1414898, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 369690473, - "lat": 52.4458997, - "lon": -1.8852075, - "tags": { - "amenity": "post_box", - "ref": "B13 1252", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369695707, - "lat": 56.5553850, - "lon": -3.5696017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 45D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 369698853, - "lat": 56.6545840, - "lon": -3.6365604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH9 37", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 369702543, - "lat": 51.6020267, - "lon": -0.3539555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-12-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 453D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369705968, - "lat": 56.6927601, - "lon": -3.9934338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH16 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369722710, - "lat": 53.3797537, - "lon": -2.9512801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L17 582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post_box_at_Aigburth_Road_Post_Office" - } -}, -{ - "type": "node", - "id": 369728300, - "lat": 51.5988480, - "lon": -0.3768095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA5 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369739947, - "lat": 52.8216444, - "lon": -1.4238882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE73 129", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369740959, - "lat": 52.5711286, - "lon": -2.0794031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV14 238", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369741313, - "lat": 51.4594215, - "lon": -2.1143833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 369742271, - "lat": 52.5713428, - "lon": -2.0835732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV14 227", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369754373, - "lat": 52.5680153, - "lon": -2.0792947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV14 219", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369754376, - "lat": 52.5689394, - "lon": -2.0841919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV14 212", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369754749, - "lat": 52.5092936, - "lon": -1.9893390, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B70", - "ref": "B70 16", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 369759188, - "lat": 52.5101943, - "lon": -2.1740724, - "tags": { - "amenity": "post_box", - "ref": "DY6 253" - } -}, -{ - "type": "node", - "id": 369759534, - "lat": 51.8275770, - "lon": -2.2498215, - "tags": { - "amenity": "post_box", - "ele": "24.8796387", - "post_box:type": "lamp", - "ref": "GL4 510" - } -}, -{ - "type": "node", - "id": 369764378, - "lat": 51.2995445, - "lon": -1.0141781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369764861, - "lat": 52.5090565, - "lon": -2.1807391, - "tags": { - "amenity": "post_box", - "ref": "DY6 192" - } -}, -{ - "type": "node", - "id": 369766338, - "lat": 52.6982023, - "lon": -2.7590915, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-04", - "ref": "SY3 261", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369788110, - "lat": 52.2437516, - "lon": 0.5869143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP29 2252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369789114, - "lat": 52.4962342, - "lon": -2.0869250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY2 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369791654, - "lat": 52.5032354, - "lon": -2.0127551, - "tags": { - "amenity": "post_box", - "ref": "B69 1338" - } -}, -{ - "type": "node", - "id": 369794791, - "lat": 53.9860168, - "lon": -1.5400305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 369807628, - "lat": 54.7254018, - "lon": -1.5141645, - "tags": { - "amenity": "post_box", - "ele": "96.26" - } -}, -{ - "type": "node", - "id": 369810186, - "lat": 54.7168289, - "lon": -1.5045404, - "tags": { - "amenity": "post_box", - "ele": "103.47", - "ref": "DH6 322" - } -}, -{ - "type": "node", - "id": 369826254, - "lat": 51.2291713, - "lon": 0.9019944, - "tags": { - "amenity": "post_box", - "ref": "CT4 262", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369826256, - "lat": 51.2419680, - "lon": 0.9109116, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369826260, - "lat": 51.2507977, - "lon": 0.9297424, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369832713, - "lat": 51.2301531, - "lon": 1.2056803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369832960, - "lat": 51.2249453, - "lon": 1.2055023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369834024, - "lat": 51.2256967, - "lon": 1.2257119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369836424, - "lat": 51.1990809, - "lon": 1.2011308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 81", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369840812, - "lat": 51.5054693, - "lon": -0.0581982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "note": "Box is partially not in use. Left hand aperture is sealed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1W 66;E1W 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369840816, - "lat": 51.5048711, - "lon": -0.0556021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E1W 85P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369840821, - "lat": 51.5092370, - "lon": -0.0633161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Box has a disused stamp vending machine attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E1W 71D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369845927, - "lat": 51.9702522, - "lon": 1.0593125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CO7 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369846287, - "lat": 51.4080412, - "lon": -0.1631355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369846290, - "lat": 51.4064314, - "lon": -0.1600452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369846292, - "lat": 51.4100315, - "lon": -0.1487095, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "At the time of my own survey, the collection plate was missing. However the postbox ref had already been mapped.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-11-02" - } -}, -{ - "type": "node", - "id": 369846295, - "lat": 51.4062672, - "lon": -0.1532777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369846297, - "lat": 51.4015831, - "lon": -0.1470813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 43" - } -}, -{ - "type": "node", - "id": 369846299, - "lat": 51.3995328, - "lon": -0.1656800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 369846302, - "lat": 51.4033846, - "lon": -0.1682810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369846304, - "lat": 51.4056365, - "lon": -0.1635020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 13" - } -}, -{ - "type": "node", - "id": 369847305, - "lat": 51.7300652, - "lon": -1.2374690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "created_by": "Potlatch 0.10f", - "mapillary": "486979592502079", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX4 146", - "survey:date": "2020-10-06" - } -}, -{ - "type": "node", - "id": 369851800, - "lat": 53.8427576, - "lon": -1.8199362, - "tags": { - "amenity": "post_box", - "ref": "BD16 641" - } -}, -{ - "type": "node", - "id": 369855369, - "lat": 53.2998708, - "lon": -1.4839501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 1042D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369856221, - "lat": 55.8211460, - "lon": -3.0234574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH23 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 369864795, - "lat": 54.7077868, - "lon": -1.4651037, - "tags": { - "amenity": "post_box", - "ele": "122.93" - } -}, -{ - "type": "node", - "id": 369875474, - "lat": 53.3033641, - "lon": -1.4714005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 190", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 369876761, - "lat": 52.5152490, - "lon": -2.0423997, - "tags": { - "amenity": "post_box", - "ref": "B69 1120" - } -}, -{ - "type": "node", - "id": 369884529, - "lat": 52.5224981, - "lon": -2.0006311, - "tags": { - "amenity": "post_box", - "postal_code": "B70", - "ref": "B70 10" - } -}, -{ - "type": "node", - "id": 369884657, - "lat": 52.5198916, - "lon": -1.9964489, - "tags": { - "amenity": "post_box", - "ref": "B70 17" - } -}, -{ - "type": "node", - "id": 369884658, - "lat": 52.5198723, - "lon": -1.9963928, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data shows B70 4017", - "postal_code": "B70", - "ref": "B70 6017" - } -}, -{ - "type": "node", - "id": 369936626, - "lat": 51.5730638, - "lon": 0.5099783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SS13 283" - } -}, -{ - "type": "node", - "id": 369940688, - "lat": 51.2511256, - "lon": -0.7553654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GU11 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 369949028, - "lat": 51.2638917, - "lon": -0.7402307, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-21", - "collection_times": "Mo-Fr 17:30, Sa 11:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 369956513, - "lat": 51.4498295, - "lon": -0.0468124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 369958695, - "lat": 52.5105011, - "lon": -2.0356346, - "tags": { - "amenity": "post_box", - "note": "no name plate", - "ref": "B69 1121" - } -}, -{ - "type": "node", - "id": 369967970, - "lat": 52.5224875, - "lon": -2.0721676, - "tags": { - "amenity": "post_box", - "ref": "DY4 185" - } -}, -{ - "type": "node", - "id": 369968778, - "lat": 51.2379896, - "lon": -0.5907912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU2 137", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 369969452, - "lat": 51.2464005, - "lon": -0.7601937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU11 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 369969693, - "lat": 52.5171035, - "lon": -1.9851352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B70", - "ref": "B70 30" - } -}, -{ - "type": "node", - "id": 369969810, - "lat": 51.2456717, - "lon": -0.7591948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "old_ref": "GU12 39", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU12 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 369973481, - "lat": 52.5213481, - "lon": -2.0013831, - "tags": { - "amenity": "post_box", - "postal_code": "B70", - "ref": "B70 27" - } -}, -{ - "type": "node", - "id": 369999304, - "lat": 52.4883708, - "lon": -2.0930931, - "tags": { - "amenity": "post_box", - "ref": "DY2 200" - } -}, -{ - "type": "node", - "id": 370000470, - "lat": 52.5246720, - "lon": -2.0046563, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B70 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 370005849, - "lat": 53.3124807, - "lon": -1.4590776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S18 440" - } -}, -{ - "type": "node", - "id": 370025418, - "lat": 52.4918947, - "lon": -2.0890068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DY2 23" - } -}, -{ - "type": "node", - "id": 370033680, - "lat": 52.6213082, - "lon": -1.1661475, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 370033708, - "lat": 52.6172393, - "lon": -1.1676625, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 370051699, - "lat": 51.4585518, - "lon": -2.1294719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 370062692, - "lat": 55.8576988, - "lon": -3.1653344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH25 175" - } -}, -{ - "type": "node", - "id": 370067492, - "lat": 51.3843202, - "lon": -0.3197809, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370074680, - "lat": 53.7575475, - "lon": -1.4483327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370075233, - "lat": 53.7568533, - "lon": -1.4413737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370075247, - "lat": 53.7540543, - "lon": -1.4442430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 674", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370075282, - "lat": 53.7520184, - "lon": -1.4474782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 758", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370075305, - "lat": 53.7499360, - "lon": -1.4522235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370079593, - "lat": 51.2855961, - "lon": 0.4971669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 329", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 370080345, - "lat": 51.3857599, - "lon": -0.3255983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370091127, - "lat": 55.8566706, - "lon": -3.1727824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH25 199" - } -}, -{ - "type": "node", - "id": 370094122, - "lat": 55.1145657, - "lon": -1.5084381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 3QT", - "ref": "NE24 134" - } -}, -{ - "type": "node", - "id": 370101570, - "lat": 51.2828601, - "lon": 0.5016640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME16 128" - } -}, -{ - "type": "node", - "id": 370104183, - "lat": 51.2854861, - "lon": 0.5040210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME16 320" - } -}, -{ - "type": "node", - "id": 370105508, - "lat": 53.7158480, - "lon": -1.4677849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370123169, - "lat": 52.5256686, - "lon": -1.9917001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B71", - "ref": "B71 3" - } -}, -{ - "type": "node", - "id": 370133683, - "lat": 53.3107931, - "lon": -1.4463332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S18 886" - } -}, -{ - "type": "node", - "id": 370136565, - "lat": 53.3086895, - "lon": -1.4513406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 919", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370139363, - "lat": 53.3068333, - "lon": -1.4582661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 838D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370144511, - "lat": 51.7370580, - "lon": -1.2378297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "created_by": "osm2go v0.6.14", - "ref": "OX4 583" - } -}, -{ - "type": "node", - "id": 370144566, - "lat": 51.7384427, - "lon": -1.2323538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "created_by": "osm2go v0.6.14", - "ref": "OX4 897" - } -}, -{ - "type": "node", - "id": 370156399, - "lat": 53.3613420, - "lon": -0.8550802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370156886, - "lat": 53.3045282, - "lon": -1.4647636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370174052, - "lat": 53.3087590, - "lon": -1.4683089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 1617", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370178252, - "lat": 53.3070018, - "lon": -1.4694504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 764", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370181350, - "lat": 52.7788168, - "lon": -3.7820155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 370187913, - "lat": 51.5899059, - "lon": -0.1225582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 370187990, - "lat": 51.5866516, - "lon": -0.1275851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 370188259, - "lat": 53.3009350, - "lon": -1.4657116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370190605, - "lat": 51.1103889, - "lon": 0.0270168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370190996, - "lat": 53.2968694, - "lon": -1.4589741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370192571, - "lat": 52.3530282, - "lon": 0.0467648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE28 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370194770, - "lat": 51.2959356, - "lon": -1.2278428, - "tags": { - "amenity": "post_box", - "mapillary": "212793550604049", - "post_box:type": "pillar", - "postal_code": "RG26", - "ref": "RG26 69", - "survey:date": "2021-04-04" - } -}, -{ - "type": "node", - "id": 370200603, - "lat": 51.0602817, - "lon": -1.3183662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "name": "St Swithuns", - "note": "Two post boxes standing together. All details other than ref are identical", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370202178, - "lat": 51.2767291, - "lon": 0.1839887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "colour": "red", - "mapillary": "160476242686970", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN13 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-10-28" - } -}, -{ - "type": "node", - "id": 370202187, - "lat": 51.2702790, - "lon": 0.1928092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN13 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370202190, - "lat": 51.2691968, - "lon": 0.1934622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "mapillary": "5288735454582743", - "post_box:type": "pillar", - "ref": "TN13 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-19" - } -}, -{ - "type": "node", - "id": 370202466, - "lat": 51.2743244, - "lon": 0.2249634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN15 200", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370202486, - "lat": 51.2814297, - "lon": 0.2215735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 198", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370202498, - "lat": 51.2914206, - "lon": 0.2196066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370202500, - "lat": 51.2949754, - "lon": 0.2175990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370207092, - "lat": 51.2912777, - "lon": -1.2272106, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370213551, - "lat": 51.3291952, - "lon": -2.8970726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS24 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370260274, - "lat": 52.6359721, - "lon": 1.2966008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370266227, - "lat": 52.6329305, - "lon": 1.2944636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 301", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370267099, - "lat": 52.6385817, - "lon": 1.2894713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 302" - } -}, -{ - "type": "node", - "id": 370269110, - "lat": 52.6386130, - "lon": 1.2951234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR3 331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370269680, - "lat": 52.6366065, - "lon": 1.3063869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 303D" - } -}, -{ - "type": "node", - "id": 370271542, - "lat": 52.6344867, - "lon": 1.2921086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR3 306D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370272534, - "lat": 52.6315995, - "lon": 1.2987193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR3 307", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370273153, - "lat": 52.6363773, - "lon": 1.3015573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 308D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370273389, - "lat": 52.6453072, - "lon": 1.2768876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR3", - "ref": "NR3 305" - } -}, -{ - "type": "node", - "id": 370274240, - "lat": 52.6534809, - "lon": 1.2792823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 310" - } -}, -{ - "type": "node", - "id": 370282767, - "lat": 52.6559606, - "lon": 1.2778473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "postal_code": "NR3 2RX", - "ref": "NR3 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370284090, - "lat": 52.6509328, - "lon": 1.2669949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 309" - } -}, -{ - "type": "node", - "id": 370285693, - "lat": 52.6520572, - "lon": 1.2698597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 311" - } -}, -{ - "type": "node", - "id": 370285983, - "lat": 52.6522931, - "lon": 1.2729254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 312" - } -}, -{ - "type": "node", - "id": 370286293, - "lat": 52.6493547, - "lon": 1.2805897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 313" - } -}, -{ - "type": "node", - "id": 370289118, - "lat": 52.5098628, - "lon": -1.9962509, - "tags": { - "amenity": "post_box", - "postal_code": "B70", - "ref": "B70 34", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370289373, - "lat": 52.6641911, - "lon": 1.2628176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 613", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370295987, - "lat": 52.6542392, - "lon": 1.2928221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 320" - } -}, -{ - "type": "node", - "id": 370297841, - "lat": 52.6398307, - "lon": 1.2876257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 316", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370298136, - "lat": 52.6377646, - "lon": 1.2919000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:40; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 317" - } -}, -{ - "type": "node", - "id": 370299958, - "lat": 52.6479549, - "lon": 1.2908426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 318" - } -}, -{ - "type": "node", - "id": 370300647, - "lat": 52.6453071, - "lon": 1.2929937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 319" - } -}, -{ - "type": "node", - "id": 370301000, - "lat": 52.6495043, - "lon": 1.2851241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NR3", - "ref": "NR3 321" - } -}, -{ - "type": "node", - "id": 370301587, - "lat": 52.6526448, - "lon": 1.2877044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 322", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370302700, - "lat": 52.6403155, - "lon": 1.2962848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 330" - } -}, -{ - "type": "node", - "id": 370302981, - "lat": 52.6391636, - "lon": 1.3030786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR3 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370303662, - "lat": 52.6514212, - "lon": 1.3103584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NR3", - "ref": "NR3 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370312374, - "lat": 51.0714347, - "lon": 1.0811113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT21", - "ref": "CT21 120", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370312389, - "lat": 51.0716431, - "lon": 1.0850066, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "lastcheck": "2023-04-26", - "old_ref": "CT21 126", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT21", - "ref": "CT21 126D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370312424, - "lat": 51.0722839, - "lon": 1.0882197, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT21", - "ref": "CT21 167" - } -}, -{ - "type": "node", - "id": 370319725, - "lat": 52.7193245, - "lon": -2.7614177, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "note": "Location approx.", - "ref": "SY1 550" - } -}, -{ - "type": "node", - "id": 370327883, - "lat": 52.6482348, - "lon": 1.2996268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 323" - } -}, -{ - "type": "node", - "id": 370329652, - "lat": 52.6455757, - "lon": 1.2969446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 326" - } -}, -{ - "type": "node", - "id": 370330864, - "lat": 52.6524054, - "lon": 1.2996054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 324" - } -}, -{ - "type": "node", - "id": 370331388, - "lat": 52.6481170, - "lon": 1.3058281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 327" - } -}, -{ - "type": "node", - "id": 370332736, - "lat": 52.6448647, - "lon": 1.3011476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NR3", - "ref": "NR3 328" - } -}, -{ - "type": "node", - "id": 370332737, - "lat": 52.6410010, - "lon": 1.3084915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Unusual box. Large square unit with rounded top, similar in size to type M and L, but different.", - "operator": "Royal Mail", - "post_box:design": "converted_bag_box", - "post_box:type": "lamp", - "ref": "NR3 329D" - } -}, -{ - "type": "node", - "id": 370333241, - "lat": 52.6368341, - "lon": 1.3095886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR3", - "ref": "NR3 304" - } -}, -{ - "type": "node", - "id": 370339582, - "lat": 52.4421337, - "lon": -1.8647345, - "tags": { - "amenity": "post_box", - "ref": "B13 217", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370339586, - "lat": 52.4435073, - "lon": -1.8561735, - "tags": { - "amenity": "post_box", - "ref": "B11 396", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370351466, - "lat": 53.7787084, - "lon": -0.2475135, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370351724, - "lat": 53.7807447, - "lon": -0.2436024, - "tags": { - "amenity": "post_box", - "created_by": "JOSM" - } -}, -{ - "type": "node", - "id": 370351777, - "lat": 53.7800135, - "lon": -0.2328559, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 370351820, - "lat": 53.7355911, - "lon": -0.1393489, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370356086, - "lat": 52.5151483, - "lon": -2.0001163, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B70", - "ref": "B70 7", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370356687, - "lat": 52.5121071, - "lon": -1.9900794, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "B70", - "ref": "B70 20", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370364931, - "lat": 51.1184870, - "lon": 1.1979642, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 65" - } -}, -{ - "type": "node", - "id": 370365826, - "lat": 52.5105868, - "lon": -1.9829461, - "tags": { - "amenity": "post_box", - "postal_code": "B70", - "ref": "B70 69", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370366382, - "lat": 52.2981421, - "lon": -0.6761433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370366467, - "lat": 52.3022238, - "lon": -0.6785983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370368839, - "lat": 52.5148488, - "lon": -1.9873866, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B70 12", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370368841, - "lat": 52.5157693, - "lon": -1.9889492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B70", - "ref": "B70 18", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370393102, - "lat": 51.7338750, - "lon": -1.2252732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 596", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370416871, - "lat": 50.7421635, - "lon": -3.4966537, - "tags": { - "amenity": "post_box", - "ref": "EX4 574" - } -}, -{ - "type": "node", - "id": 370417986, - "lat": 52.3902681, - "lon": -1.4862446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370418283, - "lat": 52.3886935, - "lon": -1.4801556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 124D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370419672, - "lat": 52.3834523, - "lon": -1.4708982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 163", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370422008, - "lat": 52.3886225, - "lon": -1.4639848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370423959, - "lat": 53.5969011, - "lon": -0.8199087, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 370425077, - "lat": 52.3935766, - "lon": -1.4993310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 293D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370434007, - "lat": 53.6026589, - "lon": -0.8356407, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 370455904, - "lat": 51.5089329, - "lon": -0.0729238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa off", - "note": "both apertures have the same ref. This box is not really accessible to the general public", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC3 304", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370455906, - "lat": 51.5158100, - "lon": -0.0705687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 14;E1 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370455907, - "lat": 51.5174745, - "lon": -0.0666436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 16;E1 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370455909, - "lat": 51.5207574, - "lon": -0.0511196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370455910, - "lat": 51.5224761, - "lon": -0.0467155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 55;E1 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370460749, - "lat": 53.1123117, - "lon": -1.3011995, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "note": "Franked Mail Only" - } -}, -{ - "type": "node", - "id": 370469521, - "lat": 51.3997994, - "lon": -1.3021435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 370469522, - "lat": 51.3997987, - "lon": -1.3021007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 370469548, - "lat": 51.4044102, - "lon": -1.3095121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "989640848338332", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG14", - "ref": "RG14 21", - "royal_cypher": "GVIR", - "survey:date": "2022-03-13" - } -}, -{ - "type": "node", - "id": 370469563, - "lat": 51.4049244, - "lon": -1.3152822, - "tags": { - "amenity": "post_box", - "mapillary": "7775676102473018", - "post_box:type": "pillar", - "survey:date": "2022-03-13" - } -}, -{ - "type": "node", - "id": 370469564, - "lat": 51.4050552, - "lon": -1.3151037, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 370470732, - "lat": 51.3991449, - "lon": -1.3367248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG14", - "ref": "RG14 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370530411, - "lat": 51.1533501, - "lon": -3.3053915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 370540951, - "lat": 52.6682413, - "lon": 1.2697470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 609D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 370549125, - "lat": 52.6691733, - "lon": 1.2558290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR6", - "ref": "NR6 610" - } -}, -{ - "type": "node", - "id": 370549130, - "lat": 52.6564487, - "lon": 1.2474149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:25; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 601" - } -}, -{ - "type": "node", - "id": 370549134, - "lat": 52.6478735, - "lon": 1.2623763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR3 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:date": "2019-03-08" - } -}, -{ - "type": "node", - "id": 370550941, - "lat": 52.6661871, - "lon": 1.2478554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 603" - } -}, -{ - "type": "node", - "id": 370553315, - "lat": 52.6529156, - "lon": 1.2589588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 604" - } -}, -{ - "type": "node", - "id": 370553317, - "lat": 52.6529303, - "lon": 1.2589079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 18:30", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 00:00-24:00; Sa 11:45-18:30", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 639" - } -}, -{ - "type": "node", - "id": 370558757, - "lat": 52.6438922, - "lon": -1.9234050, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 18", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 370560928, - "lat": 52.6562553, - "lon": 1.2644067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 608" - } -}, -{ - "type": "node", - "id": 370562468, - "lat": 52.6649210, - "lon": 1.2584634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:10; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 611" - } -}, -{ - "type": "node", - "id": 370562501, - "lat": 52.6639485, - "lon": 1.2525357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:05; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 612" - } -}, -{ - "type": "node", - "id": 370562727, - "lat": 52.6597613, - "lon": 1.2850544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 614" - } -}, -{ - "type": "node", - "id": 370565450, - "lat": 52.6643343, - "lon": 1.2867039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 616", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 370568992, - "lat": 52.6646020, - "lon": 1.2891813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370568997, - "lat": 52.6709529, - "lon": 1.2901908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370576298, - "lat": 53.9955158, - "lon": -1.5398379, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 370576463, - "lat": 52.6694744, - "lon": 1.2771231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370576824, - "lat": 52.6665742, - "lon": 1.2819511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 619" - } -}, -{ - "type": "node", - "id": 370576901, - "lat": 53.5973571, - "lon": -2.5504006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "created_by": "Potlatch 0.10f", - "mapillary": "1115930916380057", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-05-29" - } -}, -{ - "type": "node", - "id": 370576952, - "lat": 52.6692142, - "lon": 1.2896463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 12:45-18:00; Sa-Su closed", - "operator": "Royal Mail", - "ref": "NR6 638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370577325, - "lat": 52.6592895, - "lon": 1.2904993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 621" - } -}, -{ - "type": "node", - "id": 370577635, - "lat": 52.6615151, - "lon": 1.2744167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 622", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370578947, - "lat": 52.6656519, - "lon": 1.2696639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR6 624D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370584114, - "lat": 52.6660651, - "lon": 1.2966093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 626" - } -}, -{ - "type": "node", - "id": 370584593, - "lat": 52.6566181, - "lon": 1.3032290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "NR6", - "ref": "NR6 627", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 370585284, - "lat": 52.6621577, - "lon": 1.2981302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "note": "Inside a gate wall", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 628" - } -}, -{ - "type": "node", - "id": 370585374, - "lat": 52.6691621, - "lon": 1.3000640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 629" - } -}, -{ - "type": "node", - "id": 370586039, - "lat": 52.6696159, - "lon": 1.3048920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR6", - "ref": "NR6 631" - } -}, -{ - "type": "node", - "id": 370588538, - "lat": 52.6662440, - "lon": 1.3067400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NR6", - "ref": "NR6 632" - } -}, -{ - "type": "node", - "id": 370588709, - "lat": 52.6580043, - "lon": 1.3081965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NR6", - "ref": "NR6 633" - } -}, -{ - "type": "node", - "id": 370591314, - "lat": 52.6591041, - "lon": 1.3014454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "NR6", - "ref": "NR6 634" - } -}, -{ - "type": "node", - "id": 370592068, - "lat": 52.6647505, - "lon": 1.3165056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 636" - } -}, -{ - "type": "node", - "id": 370593747, - "lat": 52.6609376, - "lon": 1.3126785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 637" - } -}, -{ - "type": "node", - "id": 370614833, - "lat": 51.1320383, - "lon": 1.1480116, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 27" - } -}, -{ - "type": "node", - "id": 370618712, - "lat": 51.8861152, - "lon": 0.8964547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 37" - } -}, -{ - "type": "node", - "id": 370636922, - "lat": 51.2863828, - "lon": -1.0775807, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 314" - } -}, -{ - "type": "node", - "id": 370647022, - "lat": 51.2911474, - "lon": -1.0690770, - "tags": { - "amenity": "post_box", - "mapillary": "183268210232493", - "post_box:type": "pillar", - "postal_code": "RG24", - "ref": "RG24 333", - "survey:date": "2020-05-02" - } -}, -{ - "type": "node", - "id": 370647024, - "lat": 51.2911714, - "lon": -1.0690627, - "tags": { - "amenity": "post_box", - "mapillary": "423210595989534", - "post_box:type": "meter", - "postal_code": "RG24", - "ref": "RG24 366", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 370648724, - "lat": 51.5924133, - "lon": 0.0400310, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG8 551" - } -}, -{ - "type": "node", - "id": 370650049, - "lat": 55.0887941, - "lon": -1.6160532, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 9DL", - "ref": "NE23 730" - } -}, -{ - "type": "node", - "id": 370655181, - "lat": 54.7415459, - "lon": -1.5234185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ele": "101.78", - "postal_code": "DH6 5EQ", - "ref": "DH6 321" - } -}, -{ - "type": "node", - "id": 370682657, - "lat": 54.0067549, - "lon": -2.2259788, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD23 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370694355, - "lat": 50.9324222, - "lon": -1.3203096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370695368, - "lat": 51.0493821, - "lon": -1.3424830, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO22 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370703241, - "lat": 52.5133475, - "lon": -2.0179650, - "tags": { - "amenity": "post_box", - "ref": "B70 89" - } -}, -{ - "type": "node", - "id": 370705224, - "lat": 53.4150219, - "lon": -2.1621161, - "tags": { - "amenity": "post_box", - "ref": "SK4 99" - } -}, -{ - "type": "node", - "id": 370706524, - "lat": 51.6052484, - "lon": -0.3101479, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA7 826", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370706525, - "lat": 51.6092252, - "lon": -0.3092822, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-05-02", - "collection_times": "Mo-Fr 18:00, Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 812", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370771852, - "lat": 52.6693264, - "lon": 1.2660804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 623" - } -}, -{ - "type": "node", - "id": 370790855, - "lat": 51.3706974, - "lon": -2.8098564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS49 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370790996, - "lat": 51.3661905, - "lon": -2.8071570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS49 1096", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370807518, - "lat": 52.6282167, - "lon": 1.3581875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "NR7 710", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 370808348, - "lat": 52.6408317, - "lon": 1.3423786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 701D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370810434, - "lat": 52.6378075, - "lon": 1.3430679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 705" - } -}, -{ - "type": "node", - "id": 370812279, - "lat": 52.6263065, - "lon": 1.3411283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370814763, - "lat": 52.6312686, - "lon": 1.3286939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NR7", - "ref": "NR7 702D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 370815681, - "lat": 52.6344639, - "lon": 1.3344955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 703" - } -}, -{ - "type": "node", - "id": 370823870, - "lat": 52.6362449, - "lon": 1.3369605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 706" - } -}, -{ - "type": "node", - "id": 370824365, - "lat": 52.6322290, - "lon": 1.3435936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 707" - } -}, -{ - "type": "node", - "id": 370825041, - "lat": 52.6408073, - "lon": 1.3535795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 708D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370827514, - "lat": 52.6283658, - "lon": 1.3530350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 712D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370828149, - "lat": 52.6268794, - "lon": 1.3729917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 742", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370828160, - "lat": 52.6268850, - "lon": 1.3729380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "NR7 743", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370834362, - "lat": 52.6378936, - "lon": 1.3667974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 739" - } -}, -{ - "type": "node", - "id": 370835124, - "lat": 52.6356636, - "lon": 1.3577503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 716", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370842487, - "lat": 52.6335832, - "lon": 1.3462329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 717" - } -}, -{ - "type": "node", - "id": 370842492, - "lat": 52.6325284, - "lon": 1.3584289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 714" - } -}, -{ - "type": "node", - "id": 370894555, - "lat": 52.6584065, - "lon": 1.3246323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 720" - } -}, -{ - "type": "node", - "id": 370896211, - "lat": 52.6553929, - "lon": 1.3186973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 718" - } -}, -{ - "type": "node", - "id": 370896215, - "lat": 52.6622049, - "lon": 1.3247189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 741" - } -}, -{ - "type": "node", - "id": 370897797, - "lat": 52.6577586, - "lon": 1.3319555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NR7", - "ref": "NR7 721" - } -}, -{ - "type": "node", - "id": 370909844, - "lat": 50.9607057, - "lon": -1.1673845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 787", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370914475, - "lat": 54.0671207, - "lon": -2.2775424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD24 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370936887, - "lat": 51.6795397, - "lon": -0.5499161, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP5 98", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 370937887, - "lat": 51.7214804, - "lon": -0.5389226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP3 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 370937890, - "lat": 51.7246798, - "lon": -0.5349335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP3 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 370939487, - "lat": 54.1442434, - "lon": -2.2916848, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-10", - "check_date:collection_times": "2022-01-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD24 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 370939492, - "lat": 54.1762743, - "lon": -2.3315217, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD24 68", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 370943474, - "lat": 53.8325713, - "lon": -1.7968603, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 370943705, - "lat": 53.8329060, - "lon": -1.7920198, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f" - } -}, -{ - "type": "node", - "id": 370944757, - "lat": 53.1636029, - "lon": -1.4144903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S45 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 370954190, - "lat": 57.4281337, - "lon": -5.8193313, - "tags": { - "amenity": "post_box", - "ref": "IV54 259", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 370954200, - "lat": 57.4103998, - "lon": -5.8136977, - "tags": { - "amenity": "post_box", - "ref": "IV54 245", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 370954202, - "lat": 57.3954793, - "lon": -5.8060490, - "tags": { - "amenity": "post_box", - "ref": "IV54 244", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 370954363, - "lat": 57.3798577, - "lon": -5.8088365, - "tags": { - "amenity": "post_box", - "ref": "IV54 246", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 371033996, - "lat": 52.6548804, - "lon": 1.3122627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 722" - } -}, -{ - "type": "node", - "id": 371035168, - "lat": 52.6488891, - "lon": 1.3180482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 715", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 371036726, - "lat": 52.6545859, - "lon": 1.3344097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 723" - } -}, -{ - "type": "node", - "id": 371037103, - "lat": 53.3963649, - "lon": -2.0845061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 371037164, - "lat": 52.6542184, - "lon": 1.3231548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 724" - } -}, -{ - "type": "node", - "id": 371037622, - "lat": 52.6551944, - "lon": 1.3272053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 726" - } -}, -{ - "type": "node", - "id": 371038545, - "lat": 52.6527636, - "lon": 1.3317034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 727" - } -}, -{ - "type": "node", - "id": 371039198, - "lat": 52.6590032, - "lon": 1.3190514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NR7", - "ref": "NR7 728" - } -}, -{ - "type": "node", - "id": 371041767, - "lat": 52.6447471, - "lon": 1.3311702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 725" - } -}, -{ - "type": "node", - "id": 371042270, - "lat": 52.6477647, - "lon": 1.3337445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 731D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371043378, - "lat": 52.6494115, - "lon": 1.3407370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR7 732", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 371044303, - "lat": 52.6447491, - "lon": 1.3448355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 733" - } -}, -{ - "type": "node", - "id": 371046752, - "lat": 52.6388731, - "lon": 1.3282844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR7 736" - } -}, -{ - "type": "node", - "id": 371048872, - "lat": 52.6447247, - "lon": 1.3405734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 737" - } -}, -{ - "type": "node", - "id": 371049223, - "lat": 52.6426350, - "lon": 1.3359869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR7", - "ref": "NR7 738" - } -}, -{ - "type": "node", - "id": 371058958, - "lat": 52.6276397, - "lon": 1.3473541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR7 711D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371076365, - "lat": 51.5682796, - "lon": 0.0840127, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- nearby node 356279598 has the same value", - "ref": "IG2 70" - } -}, -{ - "type": "node", - "id": 371076467, - "lat": 51.5704941, - "lon": 0.0955235, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IG3 89" - } -}, -{ - "type": "node", - "id": 371085210, - "lat": 51.5707764, - "lon": 0.1104485, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "IG3 38" - } -}, -{ - "type": "node", - "id": 371085214, - "lat": 51.5682956, - "lon": 0.1145942, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ref": "RM6 320" - } -}, -{ - "type": "node", - "id": 371091591, - "lat": 51.4673352, - "lon": -2.1231820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371095688, - "lat": 51.7883239, - "lon": -2.2721855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "ele": "37.6169434", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 371156758, - "lat": 52.6990563, - "lon": 1.4913697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 371174391, - "lat": 53.7308299, - "lon": -0.1388601, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 371249521, - "lat": 53.2081753, - "lon": -1.3870119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371379919, - "lat": 52.6191887, - "lon": -1.2187357, - "tags": { - "amenity": "post_box", - "ref": "LE3 905" - } -}, -{ - "type": "node", - "id": 371379924, - "lat": 52.6201594, - "lon": -1.2265697, - "tags": { - "amenity": "post_box", - "ref": "LE3 871" - } -}, -{ - "type": "node", - "id": 371523453, - "lat": 51.1583118, - "lon": 1.1723660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371527505, - "lat": 52.3374951, - "lon": -0.0840699, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 64", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 371528552, - "lat": 52.0182146, - "lon": -2.0980080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL20 3D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 371571643, - "lat": 51.8292469, - "lon": -2.2673554, - "tags": { - "amenity": "post_box", - "ele": "14.5455322", - "post_box:type": "pillar", - "ref": "GL4 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 371582330, - "lat": 51.3185788, - "lon": -2.1986355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA14 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371586949, - "lat": 51.8763711, - "lon": 0.9305031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 118" - } -}, -{ - "type": "node", - "id": 371591921, - "lat": 57.1685418, - "lon": -2.1103173, - "tags": { - "addr:city": "Aberdeen", - "addr:postcode": "AB24 2SS", - "addr:street": "Tedder Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB24 83", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:position": "gps distance along road];survey [next to sidewalk]" - } -}, -{ - "type": "node", - "id": 371594589, - "lat": 51.8260185, - "lon": -2.2592989, - "tags": { - "amenity": "post_box", - "ele": "24.1585693", - "ref": "GL4 60" - } -}, -{ - "type": "node", - "id": 371598427, - "lat": 51.4298968, - "lon": -0.3442573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW11 196", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 371598828, - "lat": 51.4388980, - "lon": -0.3383158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 371598880, - "lat": 51.4385837, - "lon": -0.3411773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 105", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 371598890, - "lat": 51.4385209, - "lon": -0.3490564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 104", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 371634711, - "lat": 53.5490071, - "lon": -2.5241611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BL5 1811", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 371634761, - "lat": 53.5477087, - "lon": -2.5177910, - "tags": { - "amenity": "post_box", - "ref": "BL5 98" - } -}, -{ - "type": "node", - "id": 371634768, - "lat": 53.5404551, - "lon": -2.5165220, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 371640834, - "lat": 52.1729435, - "lon": 0.6834625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IP29 2186", - "source": "gps" - } -}, -{ - "type": "node", - "id": 371713506, - "lat": 54.1535922, - "lon": -2.4728232, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LA6 201", - "source": "survey" - } -}, -{ - "type": "node", - "id": 371762015, - "lat": 51.3750809, - "lon": -0.2061753, - "tags": { - "amenity": "post_box", - "postal_code": "SM1", - "ref": "SM1 296" - } -}, -{ - "type": "node", - "id": 371762022, - "lat": 51.3714780, - "lon": -0.2088447, - "tags": { - "amenity": "post_box", - "postal_code": "SM1", - "ref": "SM1 179" - } -}, -{ - "type": "node", - "id": 371889521, - "lat": 51.3696442, - "lon": -1.1194043, - "tags": { - "amenity": "post_box", - "postal_code": "RG7", - "ref": "RG7 57" - } -}, -{ - "type": "node", - "id": 371899329, - "lat": 51.2982465, - "lon": -0.1797922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR5 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 371905292, - "lat": 51.3809085, - "lon": -1.1285107, - "tags": { - "amenity": "post_box", - "postal_code": "RG7", - "ref": "RG7 384" - } -}, -{ - "type": "node", - "id": 371917346, - "lat": 51.3926584, - "lon": -1.1133364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 200", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 371925130, - "lat": 51.3742226, - "lon": -1.1154737, - "tags": { - "amenity": "post_box", - "mapillary": "143205788158164", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 325", - "survey:date": "2022-02-12" - } -}, -{ - "type": "node", - "id": 372092513, - "lat": 51.3076259, - "lon": -0.1463450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CR5", - "ref": "CR5 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 372092535, - "lat": 51.3066809, - "lon": -0.1574083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CR5", - "ref": "CR5 397D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 372092537, - "lat": 51.3072188, - "lon": -0.1638228, - "tags": { - "amenity": "post_box", - "postal_code": "CR5", - "ref": "CR5 254" - } -}, -{ - "type": "node", - "id": 372438245, - "lat": 51.8565727, - "lon": 0.9114874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 338" - } -}, -{ - "type": "node", - "id": 372438249, - "lat": 51.8603105, - "lon": 0.9082057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 198" - } -}, -{ - "type": "node", - "id": 372438252, - "lat": 51.8628593, - "lon": 0.9078522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 378" - } -}, -{ - "type": "node", - "id": 372438256, - "lat": 51.8712867, - "lon": 0.9089314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 260" - } -}, -{ - "type": "node", - "id": 372438264, - "lat": 51.8740598, - "lon": 0.9243032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 295" - } -}, -{ - "type": "node", - "id": 372514531, - "lat": 51.8764311, - "lon": 0.8838799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 271" - } -}, -{ - "type": "node", - "id": 372514534, - "lat": 51.8742554, - "lon": 0.8742276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 78" - } -}, -{ - "type": "node", - "id": 372514537, - "lat": 51.8716498, - "lon": 0.8723262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 417" - } -}, -{ - "type": "node", - "id": 372514541, - "lat": 51.8717512, - "lon": 0.8675096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 60" - } -}, -{ - "type": "node", - "id": 372514545, - "lat": 51.8691154, - "lon": 0.8706305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 40" - } -}, -{ - "type": "node", - "id": 372514549, - "lat": 51.8695595, - "lon": 0.8628054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 392" - } -}, -{ - "type": "node", - "id": 372514551, - "lat": 51.8698458, - "lon": 0.8761820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 367" - } -}, -{ - "type": "node", - "id": 372514554, - "lat": 51.8677946, - "lon": 0.8801634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 408" - } -}, -{ - "type": "node", - "id": 372514557, - "lat": 51.8663326, - "lon": 0.8851446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 87" - } -}, -{ - "type": "node", - "id": 372514560, - "lat": 51.8642193, - "lon": 0.8791219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 407" - } -}, -{ - "type": "node", - "id": 372514562, - "lat": 51.8661496, - "lon": 0.8801899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 434" - } -}, -{ - "type": "node", - "id": 372597563, - "lat": 52.0388151, - "lon": -2.0049730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR11 158D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "bing;survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 372641121, - "lat": 51.3206631, - "lon": -1.3387317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372644619, - "lat": 51.3450499, - "lon": -1.3323158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372650542, - "lat": 51.3669232, - "lon": -1.3159478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372654024, - "lat": 51.6073871, - "lon": -2.5107962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-07-06" - } -}, -{ - "type": "node", - "id": 372655552, - "lat": 51.3854124, - "lon": -1.3218071, - "tags": { - "amenity": "post_box", - "mapillary": "257252055793006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG14", - "ref": "RG14 160", - "survey:date": "2021-02-19" - } -}, -{ - "type": "node", - "id": 372690777, - "lat": 52.0363755, - "lon": -1.8548258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR12 19D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 372693391, - "lat": 52.0364755, - "lon": -1.8488415, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR12 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372693893, - "lat": 52.0360213, - "lon": -1.8597065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR12 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 372709810, - "lat": 50.8526399, - "lon": -1.1809514, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "PO16 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372709813, - "lat": 50.8526400, - "lon": -1.1809142, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "PO16 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372709822, - "lat": 50.8584461, - "lon": -1.1798483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PO16 65" - } -}, -{ - "type": "node", - "id": 372728131, - "lat": 52.5162982, - "lon": -1.9908837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B70 91" - } -}, -{ - "type": "node", - "id": 372728151, - "lat": 52.5150894, - "lon": -1.9963468, - "tags": { - "amenity": "post_box", - "ref": "B70 9018" - } -}, -{ - "type": "node", - "id": 372728156, - "lat": 52.5150528, - "lon": -1.9963708, - "tags": { - "amenity": "post_box", - "ref": "B70 86" - } -}, -{ - "type": "node", - "id": 372787828, - "lat": 51.8284172, - "lon": -2.2579984, - "tags": { - "amenity": "post_box", - "ele": "19.8327637", - "ref": "GL4 127" - } -}, -{ - "type": "node", - "id": 372795494, - "lat": 53.0856033, - "lon": -2.7131576, - "tags": { - "amenity": "post_box", - "ref": "SY14 726" - } -}, -{ - "type": "node", - "id": 372816378, - "lat": 53.1127598, - "lon": -1.6593538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 326" - } -}, -{ - "type": "node", - "id": 372832009, - "lat": 54.6949452, - "lon": -1.2438193, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 372848437, - "lat": 51.8465358, - "lon": 0.8782319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 8" - } -}, -{ - "type": "node", - "id": 372873341, - "lat": 54.1505382, - "lon": -2.4692512, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA6 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 372873346, - "lat": 54.1500960, - "lon": -2.4730568, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 372890849, - "lat": 52.5810355, - "lon": -1.5411565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "CV9", - "ref": "CV9 33" - } -}, -{ - "type": "node", - "id": 372897008, - "lat": 53.7359992, - "lon": -1.5961322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 345" - } -}, -{ - "type": "node", - "id": 372899692, - "lat": 52.5515783, - "lon": -1.5681883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV10 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372908207, - "lat": 53.3415836, - "lon": -1.3576903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 778D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 372914109, - "lat": 53.7359008, - "lon": -1.6018278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LS27 32" - } -}, -{ - "type": "node", - "id": 372974602, - "lat": 51.7428758, - "lon": -0.7764266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP17 290" - } -}, -{ - "type": "node", - "id": 373103318, - "lat": 51.8392681, - "lon": -1.3869259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Survey", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 373118561, - "lat": 53.3476312, - "lon": -1.3354617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S20 836", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373119134, - "lat": 51.1508890, - "lon": -3.2935880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 149" - } -}, -{ - "type": "node", - "id": 373120915, - "lat": 51.0309958, - "lon": -0.8770556, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-24", - "old_ref": "GU33 11", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU33 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 373128032, - "lat": 51.8442053, - "lon": 0.8613177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO2 112" - } -}, -{ - "type": "node", - "id": 373128034, - "lat": 51.8440440, - "lon": 0.8564607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO2 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373128036, - "lat": 51.8392070, - "lon": 0.8519615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO2 361" - } -}, -{ - "type": "node", - "id": 373128037, - "lat": 51.8280413, - "lon": 0.8220846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO2 203" - } -}, -{ - "type": "node", - "id": 373128041, - "lat": 51.8366404, - "lon": 0.8198644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO2 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373128045, - "lat": 51.8427965, - "lon": 0.8204198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO2 120" - } -}, -{ - "type": "node", - "id": 373128049, - "lat": 51.8521514, - "lon": 0.8175493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO2 340" - } -}, -{ - "type": "node", - "id": 373128052, - "lat": 51.8507880, - "lon": 0.8035726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO2 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 373128057, - "lat": 51.8288324, - "lon": 0.7945250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO5 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373128059, - "lat": 51.8374066, - "lon": 0.8139659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 400" - } -}, -{ - "type": "node", - "id": 373128062, - "lat": 51.8806247, - "lon": 0.8352574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 237" - } -}, -{ - "type": "node", - "id": 373128068, - "lat": 51.8868642, - "lon": 0.8381538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 47" - } -}, -{ - "type": "node", - "id": 373128072, - "lat": 51.8788412, - "lon": 0.8423214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 413" - } -}, -{ - "type": "node", - "id": 373155072, - "lat": 53.7378616, - "lon": -1.6034545, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 166" - } -}, -{ - "type": "node", - "id": 373167083, - "lat": 51.9419302, - "lon": 0.6915220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 373167085, - "lat": 51.9412862, - "lon": 0.6864402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 373177157, - "lat": 53.3528301, - "lon": -1.3427679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373195100, - "lat": 53.3454229, - "lon": -1.3410763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 1085", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373219715, - "lat": 53.2920894, - "lon": -2.1505983, - "tags": { - "amenity": "post_box", - "ref": "SK10 160" - } -}, -{ - "type": "node", - "id": 373269911, - "lat": 53.3424606, - "lon": -1.3404323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S20 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373269926, - "lat": 53.3401389, - "lon": -1.3387022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S20 1283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373324128, - "lat": 52.5927839, - "lon": 1.5393464, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 373377727, - "lat": 57.1645530, - "lon": -2.1156007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; gps; bing" - } -}, -{ - "type": "node", - "id": 373407997, - "lat": 53.8463602, - "lon": -1.1652402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 991", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 373408474, - "lat": 53.8065909, - "lon": -1.1758628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 741" - } -}, -{ - "type": "node", - "id": 373411481, - "lat": 52.2975845, - "lon": -1.8856989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 373412286, - "lat": 53.8342295, - "lon": -1.2077027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS24 824", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 373459455, - "lat": 53.3289740, - "lon": -2.3335930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373459714, - "lat": 52.9171717, - "lon": -1.4705372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 194D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 373465352, - "lat": 53.3335109, - "lon": -2.3363908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 64", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 373465415, - "lat": 53.3219235, - "lon": -2.3424371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 45", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 373472583, - "lat": 50.9911005, - "lon": -1.3340059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373478696, - "lat": 52.6283297, - "lon": -1.2078862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 373486761, - "lat": 51.4040217, - "lon": -1.2422752, - "tags": { - "amenity": "post_box", - "postal_code": "RG19", - "ref": "RG19 302" - } -}, -{ - "type": "node", - "id": 373488017, - "lat": 51.4216809, - "lon": -1.2643829, - "tags": { - "amenity": "post_box", - "postal_code": "RG18", - "ref": "RG18 95" - } -}, -{ - "type": "node", - "id": 373489596, - "lat": 51.4521260, - "lon": -1.2779030, - "tags": { - "amenity": "post_box", - "mapillary": "143320087723655", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 202", - "survey:date": "2019-07-20" - } -}, -{ - "type": "node", - "id": 373491133, - "lat": 51.4542415, - "lon": -1.2706474, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 373494349, - "lat": 52.6254674, - "lon": -1.2191192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 373494806, - "lat": 51.5228047, - "lon": -0.7197884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "colour": "gold", - "note": "oval, 2 slots, franked mail box adjacent", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SL6 8;SL6 822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373494818, - "lat": 51.5261155, - "lon": -0.7341096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SL6 164" - } -}, -{ - "type": "node", - "id": 373494821, - "lat": 51.5295596, - "lon": -0.7327100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SL6 83" - } -}, -{ - "type": "node", - "id": 373495244, - "lat": 51.5237785, - "lon": -0.7282293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 126", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 373495255, - "lat": 51.5264028, - "lon": -0.7386609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SL6 52" - } -}, -{ - "type": "node", - "id": 373495290, - "lat": 51.5204058, - "lon": -0.7221176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SL6 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 373495348, - "lat": 51.5360294, - "lon": -0.7386302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 64" - } -}, -{ - "type": "node", - "id": 373495435, - "lat": 51.4832857, - "lon": -1.2366276, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG18", - "ref": "RG18 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373495641, - "lat": 51.5404065, - "lon": -0.7593322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SL6 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 373496459, - "lat": 51.5316447, - "lon": -0.7570855, - "tags": { - "addr:city": "Pinkneys Green", - "addr:street": "Pinkneys Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "SL6 13" - } -}, -{ - "type": "node", - "id": 373496462, - "lat": 51.5301767, - "lon": -0.7625135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SL6 21" - } -}, -{ - "type": "node", - "id": 373497927, - "lat": 51.5234486, - "lon": -0.7559218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "ref": "SL6 193", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 373497965, - "lat": 51.5322702, - "lon": -0.7465492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 373499714, - "lat": 51.5260915, - "lon": -1.2901548, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG20", - "ref": "RG20 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373505156, - "lat": 51.8690389, - "lon": -1.3779741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX20", - "ref": "OX20 181" - } -}, -{ - "type": "node", - "id": 373506226, - "lat": 51.8959276, - "lon": -1.4062755, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "OX20", - "ref": "OX20 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373513333, - "lat": 51.9422182, - "lon": -1.5446869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "OX7", - "ref": "OX7 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373520876, - "lat": 55.1880900, - "lon": -1.5206208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE64 6JA", - "ref": "NE64 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 373520880, - "lat": 55.1833530, - "lon": -1.5162486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE64 6AA", - "ref": "NE64 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373520884, - "lat": 55.1802757, - "lon": -1.5171438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "mapillary": "315292796831756", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE64 6PE", - "ref": "NE64 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 373520886, - "lat": 55.1783612, - "lon": -1.5228665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1271375670062791", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "NE64 6SU", - "ref": "NE64 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-10" - } -}, -{ - "type": "node", - "id": 373520890, - "lat": 55.1889621, - "lon": -1.5089916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE64 6BW", - "ref": "NE64 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373524521, - "lat": 51.8344152, - "lon": -1.3460439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX20", - "ref": "OX20 589" - } -}, -{ - "type": "node", - "id": 373526893, - "lat": 51.8313538, - "lon": -1.3507579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "OX20 205", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 373534144, - "lat": 51.8243737, - "lon": -1.3905216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "mapillary": "475176823594936", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "OX29", - "ref": "OX29 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-03-25" - } -}, -{ - "type": "node", - "id": 373535203, - "lat": 51.8247898, - "lon": -1.3983036, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "postal_code": "OX29", - "ref": "OX29 884", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 373535732, - "lat": 51.7902725, - "lon": -1.4901092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX29", - "ref": "OX29 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373573431, - "lat": 53.3367036, - "lon": -1.3323451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373574224, - "lat": 53.3357225, - "lon": -1.3403969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373805389, - "lat": 50.6383494, - "lon": -2.0574200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 221" - } -}, -{ - "type": "node", - "id": 373877053, - "lat": 51.8870456, - "lon": 0.9034081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 6" - } -}, -{ - "type": "node", - "id": 373877055, - "lat": 51.8859304, - "lon": 0.9044972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 35" - } -}, -{ - "type": "node", - "id": 373877065, - "lat": 51.8798444, - "lon": 0.9092227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 92" - } -}, -{ - "type": "node", - "id": 373877067, - "lat": 51.8764198, - "lon": 0.9305798, - "tags": { - "amenity": "post_box", - "note": "Franked mail only.", - "operator": "Royal Mail", - "ref": "CO2 477" - } -}, -{ - "type": "node", - "id": 373877070, - "lat": 51.8683077, - "lon": 0.9280138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO2 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 373886984, - "lat": 52.3385522, - "lon": -0.0847342, - "tags": { - "amenity": "post_box", - "ref": "PE27 269" - } -}, -{ - "type": "node", - "id": 374098515, - "lat": 51.2887780, - "lon": -0.4488697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU23 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374098516, - "lat": 51.2788087, - "lon": -0.4468194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT24 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374161118, - "lat": 52.3369898, - "lon": -0.0891558, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE27 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374184171, - "lat": 51.2775679, - "lon": -0.3179544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KT22 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 374184178, - "lat": 51.2828994, - "lon": -0.3184444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 97D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 374198831, - "lat": 51.5664484, - "lon": -0.0759499, - "tags": { - "amenity": "post_box", - "ref": "N16 43" - } -}, -{ - "type": "node", - "id": 374198840, - "lat": 51.5654249, - "lon": -0.0811085, - "tags": { - "amenity": "post_box", - "ref": "N16 16" - } -}, -{ - "type": "node", - "id": 374203745, - "lat": 51.8645110, - "lon": -2.2506715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "9.9792480", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 51" - } -}, -{ - "type": "node", - "id": 374215225, - "lat": 50.8551015, - "lon": -1.5038079, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "S has dropped off the ref on the plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO42 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374215249, - "lat": 52.0211463, - "lon": -2.3513709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "description": "10m W of a short spur leading to some houses.
There is a notice-board at this junction./(unnamed)", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR8 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374223174, - "lat": 54.8695086, - "lon": -3.3860958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA7 419", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 374228418, - "lat": 53.3442743, - "lon": -1.3464804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374275667, - "lat": 51.5919509, - "lon": -1.8079837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 374331172, - "lat": 53.7005611, - "lon": -1.6954674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 133" - } -}, -{ - "type": "node", - "id": 374338839, - "lat": 51.1272853, - "lon": 1.3290626, - "tags": { - "amenity": "post_box", - "postal_code": "CT16", - "ref": "CT16 54" - } -}, -{ - "type": "node", - "id": 374355999, - "lat": 52.3636124, - "lon": -1.9460532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B48 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 374414628, - "lat": 54.8321899, - "lon": -3.4144321, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374454616, - "lat": 50.4339399, - "lon": -3.6858327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ9 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 374458799, - "lat": 50.4367364, - "lon": -3.6864589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 13:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ9 126;TQ9 1260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 374490752, - "lat": 50.4382922, - "lon": -3.6941693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 374559077, - "lat": 55.0054646, - "lon": -2.1779545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "NE47 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 374643782, - "lat": 51.7440578, - "lon": -1.2587971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX1 77", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 374683276, - "lat": 51.7525854, - "lon": -1.2828272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-11-11", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX2 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 374839134, - "lat": 51.7654038, - "lon": -1.2881799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX2 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph,survey", - "survey:date": "2014-03-02" - } -}, -{ - "type": "node", - "id": 374848480, - "lat": 53.6403222, - "lon": -0.7465752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "143422737709691", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN17 75", - "survey:date": "2020-09-09" - } -}, -{ - "type": "node", - "id": 374886865, - "lat": 53.6364307, - "lon": -0.7841959, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 375523576, - "lat": 53.0307500, - "lon": -2.1664615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "ST1 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 375583230, - "lat": 55.8521542, - "lon": -4.1761213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "G32", - "ref": "G32 58" - } -}, -{ - "type": "node", - "id": 375590273, - "lat": 51.2353828, - "lon": -0.5874811, - "tags": { - "amenity": "post_box", - "ref": "GU2 96" - } -}, -{ - "type": "node", - "id": 375592254, - "lat": 51.0346256, - "lon": -0.8724396, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "last_checked": "2020-09-24", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU33 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 375595660, - "lat": 55.8456975, - "lon": -4.3513015, - "tags": { - "amenity": "post_box", - "postal_code": "G52", - "ref": "G52 508" - } -}, -{ - "type": "node", - "id": 375595670, - "lat": 55.8456735, - "lon": -4.3570361, - "tags": { - "amenity": "post_box", - "postal_code": "G52", - "ref": "G52 664" - } -}, -{ - "type": "node", - "id": 375602844, - "lat": 52.1539579, - "lon": -2.2745016, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR2 153" - } -}, -{ - "type": "node", - "id": 375605646, - "lat": 52.1768001, - "lon": -2.2573075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 43" - } -}, -{ - "type": "node", - "id": 375612326, - "lat": 55.8902302, - "lon": -3.0780483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 375612794, - "lat": 55.8889512, - "lon": -3.0760374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 375693249, - "lat": 51.9408844, - "lon": -0.8863356, - "tags": { - "amenity": "post_box", - "ref": "MK18 173" - } -}, -{ - "type": "node", - "id": 375693325, - "lat": 51.9436614, - "lon": -0.8814636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "note": "This box is ahole in the wall with a brass surround upon which it has the royal cypher engraved. The information plate is shown in an adjacent window.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 276", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 375775454, - "lat": 51.1937788, - "lon": 0.8259828, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 139", - "source": "visual estimate" - } -}, -{ - "type": "node", - "id": 375775816, - "lat": 52.0187810, - "lon": -2.1275017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 375777561, - "lat": 51.2060998, - "lon": 0.8053685, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 295", - "source": "visual estimate" - } -}, -{ - "type": "node", - "id": 375800406, - "lat": 51.2105637, - "lon": 0.7946688, - "tags": { - "amenity": "post_box", - "ref": "TN27 50" - } -}, -{ - "type": "node", - "id": 375843916, - "lat": 51.5153473, - "lon": -0.1739830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-09-24", - "note": "One ap for franked; one ap for stamped", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 39D;W2 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS;observation" - } -}, -{ - "type": "node", - "id": 375843932, - "lat": 51.5138795, - "lon": -0.1633101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-09-24", - "note": "Double Post box stamped & franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 16D;W2 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 375849154, - "lat": 51.8331058, - "lon": -2.2613084, - "tags": { - "amenity": "post_box", - "ele": "15.2666016", - "ref": "GL4 137" - } -}, -{ - "type": "node", - "id": 375849566, - "lat": 54.1373708, - "lon": -1.5186983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 375863368, - "lat": 51.5334130, - "lon": -0.1033510, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-01", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "manufacturer": "The Meadow Foundry Co Ltd Mansfield Notts", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "N1 37;N1 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 375884316, - "lat": 52.3869394, - "lon": 0.2024136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 375949827, - "lat": 52.6176808, - "lon": -1.7340602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 375949831, - "lat": 52.6201500, - "lon": -1.7289433, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 375953379, - "lat": 51.8595646, - "lon": 0.9018339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 418" - } -}, -{ - "type": "node", - "id": 375953400, - "lat": 51.8784049, - "lon": 0.8453952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 363" - } -}, -{ - "type": "node", - "id": 375968359, - "lat": 51.5175404, - "lon": -0.2461201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376012327, - "lat": 51.3541925, - "lon": -2.9917325, - "tags": { - "amenity": "post_box", - "created_by": "Potlatch 0.10f", - "ele": "22.7166748" - } -}, -{ - "type": "node", - "id": 376012898, - "lat": 51.3522634, - "lon": -2.9870990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "7.8164063", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BS23 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 376025409, - "lat": 50.9377902, - "lon": -1.1331152, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376029329, - "lat": 53.9487430, - "lon": -1.0540462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO10 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376042780, - "lat": 53.9565874, - "lon": -1.0897809, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-17", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO1 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376428676, - "lat": 55.8468635, - "lon": -4.4062114, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 14" - } -}, -{ - "type": "node", - "id": 376429012, - "lat": 51.4475223, - "lon": -0.3287808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "fixme": "Is this actually here?", - "ref": "TW1 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376429074, - "lat": 55.8593100, - "lon": -4.2326721, - "tags": { - "amenity": "post_box", - "postal_code": "G31", - "ref": "G31 20" - } -}, -{ - "type": "node", - "id": 376429227, - "lat": 51.4453605, - "lon": -0.3339200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376452823, - "lat": 51.4517210, - "lon": -0.3395989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 177", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 376454330, - "lat": 51.4532368, - "lon": -0.3360060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376491305, - "lat": 51.5068920, - "lon": -0.1909633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W8 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q27080895" - } -}, -{ - "type": "node", - "id": 376491483, - "lat": 51.4970568, - "lon": -0.1880596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW7 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q27081338" - } -}, -{ - "type": "node", - "id": 376491557, - "lat": 51.4966249, - "lon": -0.1923957, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-10", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "W8 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 376491574, - "lat": 51.4941158, - "lon": -0.1912436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 10", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376496924, - "lat": 51.5002406, - "lon": -0.1931507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Wrights Lane/Iverna Gardens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W8 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376497049, - "lat": 51.4984078, - "lon": -0.1930881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W8 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376497068, - "lat": 51.4974110, - "lon": -0.1946113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376540574, - "lat": 50.9232985, - "lon": -1.3330043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376686922, - "lat": 53.2033496, - "lon": -1.3994714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S42 213D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 376740493, - "lat": 53.2162158, - "lon": -1.4101916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376747319, - "lat": 56.8187034, - "lon": -5.1097504, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2021-08-26", - "collection_times": "Mo-Fr 17:15; Sa 14:15", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PH33 111;PH33 1111", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376775022, - "lat": 53.7095969, - "lon": -0.1139808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376779845, - "lat": 53.7115196, - "lon": -0.1075944, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 376810892, - "lat": 51.8876988, - "lon": 0.8942388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "mapillary": "1037300423465395", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO3 9023;CO3 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 376811010, - "lat": 51.8892764, - "lon": 0.9020417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "469578984113169", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CO1 459D", - "royal_cypher": "EIIR", - "survey:date": "2019-12-25" - } -}, -{ - "type": "node", - "id": 376832972, - "lat": 51.4356650, - "lon": -0.3776364, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 376834084, - "lat": 51.4391651, - "lon": -0.3668107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 137", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 376835673, - "lat": 51.4394696, - "lon": -0.3612944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 376835923, - "lat": 51.4402791, - "lon": -0.3563631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 376836037, - "lat": 51.4424739, - "lon": -0.3513631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 376837088, - "lat": 51.4414689, - "lon": -0.3452605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 110" - } -}, -{ - "type": "node", - "id": 376837679, - "lat": 51.4362092, - "lon": -0.3508689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 376837926, - "lat": 51.4178137, - "lon": -0.3677678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TW12 218", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 376929068, - "lat": 50.7229838, - "lon": -3.5258151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX1 163;EX1 1630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 376987210, - "lat": 51.5400545, - "lon": -2.4113897, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-09", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "ele": "79.1937256", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS37 641", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 377046098, - "lat": 51.8345215, - "lon": -2.2558105, - "tags": { - "amenity": "post_box", - "ele": "20.5537109", - "ref": "GL4 102" - } -}, -{ - "type": "node", - "id": 377057757, - "lat": 51.8312861, - "lon": -2.2595699, - "tags": { - "amenity": "post_box", - "ele": "9.2583008", - "ref": "GL4 21" - } -}, -{ - "type": "node", - "id": 377100483, - "lat": 51.5336969, - "lon": -2.3798117, - "tags": { - "amenity": "post_box", - "ele": "94.5747070", - "post_box:type": "wall", - "ref": "BS37 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 377732429, - "lat": 51.1397815, - "lon": 0.9731537, - "tags": { - "amenity": "post_box", - "ref": "TN25 263", - "source": "visual estimate" - } -}, -{ - "type": "node", - "id": 377744529, - "lat": 51.1260573, - "lon": 0.9713018, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "TN25", - "ref": "TN25 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 377749434, - "lat": 51.1199132, - "lon": 0.9818879, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 250" - } -}, -{ - "type": "node", - "id": 377753144, - "lat": 51.1231757, - "lon": 0.9740476, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 377858649, - "lat": 51.8982967, - "lon": 0.9050227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 30" - } -}, -{ - "type": "node", - "id": 377858758, - "lat": 51.8927448, - "lon": 0.9009717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 377963862, - "lat": 51.6816379, - "lon": -2.2305122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GL6 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 377984562, - "lat": 53.0599467, - "lon": -2.9620912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 378057679, - "lat": 53.0514704, - "lon": -2.9707898, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 378069665, - "lat": 52.9698307, - "lon": -1.1845337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 177D", - "ref:GB:uprn": "10015335478", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 378087759, - "lat": 52.9618420, - "lon": -1.1799365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 281", - "ref:GB:uprn": "10015402294", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 378173795, - "lat": 51.5633118, - "lon": -0.3974211, - "tags": { - "amenity": "post_box", - "ref": "HA4 424" - } -}, -{ - "type": "node", - "id": 378212844, - "lat": 51.5760114, - "lon": -2.5663002, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS32", - "ref": "BS32 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 378283265, - "lat": 50.9558691, - "lon": -1.1430566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-01-10", - "old_ref": "SO32 306", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO32 306D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 378331427, - "lat": 51.0100992, - "lon": -1.3432340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378331431, - "lat": 51.0038624, - "lon": -1.3482844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO21 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378331438, - "lat": 51.0155925, - "lon": -1.3666003, - "tags": { - "amenity": "post_box", - "note": "iPhone location was 51.015785,-1.366510 but box is on south side of road. This postbox is in the wall of the house and is easy to miss on this fast stretch of road.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO21 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 378331453, - "lat": 50.9390099, - "lon": -1.3396669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 616D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378331458, - "lat": 50.9353626, - "lon": -1.3474705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SO30 613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378331468, - "lat": 50.9292390, - "lon": -1.3532200, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 378354804, - "lat": 51.0792112, - "lon": -0.8833546, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378386450, - "lat": 51.0518862, - "lon": -0.9008563, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378389046, - "lat": 51.0484406, - "lon": -0.8985071, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378434514, - "lat": 51.5461957, - "lon": -1.7257793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378443091, - "lat": 55.1868168, - "lon": -1.5058054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "waggon_top", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "NE64 6DS", - "ref": "NE64 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 378454576, - "lat": 50.9333570, - "lon": -1.3496659, - "tags": { - "amenity": "post_box", - "created_by": "Merkaartor 0.12", - "ref": "SO18 142" - } -}, -{ - "type": "node", - "id": 378454587, - "lat": 50.9263080, - "lon": -1.3491299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 750D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378454597, - "lat": 50.9304701, - "lon": -1.3457461, - "tags": { - "amenity": "post_box", - "mapillary": "332297184905736", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO30 228", - "survey:date": "2020-08-14" - } -}, -{ - "type": "node", - "id": 378454609, - "lat": 50.9331630, - "lon": -1.3377569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 378744827, - "lat": 55.8612780, - "lon": -4.2220088, - "tags": { - "amenity": "post_box", - "postal_code": "G31", - "ref": "G31 23" - } -}, -{ - "type": "node", - "id": 378744829, - "lat": 55.8710676, - "lon": -4.3059615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:45", - "colour": "Red", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "postal_code": "G11", - "ref": "G11 672" - } -}, -{ - "type": "node", - "id": 378744831, - "lat": 55.8708881, - "lon": -4.3008934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 13:00", - "post_box:type": "pillar", - "postal_code": "G11", - "ref": "G11 71", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:collection_times": "survey" - } -}, -{ - "type": "node", - "id": 378744832, - "lat": 55.8707928, - "lon": -4.3031350, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "G11", - "ref": "G11 649" - } -}, -{ - "type": "node", - "id": 378744834, - "lat": 55.8733886, - "lon": -4.3019669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 13:00", - "post_box:type": "pillar", - "postal_code": "G11", - "ref": "G11 509", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 378805189, - "lat": 56.0135730, - "lon": -4.7304948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "G84", - "ref": "G84 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 378805279, - "lat": 56.0039198, - "lon": -4.7331185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G84", - "ref": "G84 15" - } -}, -{ - "type": "node", - "id": 378855173, - "lat": 51.9155890, - "lon": 0.9207868, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 378868543, - "lat": 51.6342476, - "lon": -2.4021913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 121" - } -}, -{ - "type": "node", - "id": 378868548, - "lat": 51.6426567, - "lon": -2.4121364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL12 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-07-09" - } -}, -{ - "type": "node", - "id": 378997605, - "lat": 52.9787214, - "lon": -1.0976289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "image": "http://mapillary.com/map/im/drMstHOBRUc2_OpCrhpYCg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 433", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 379017325, - "lat": 52.8357405, - "lon": -1.5617658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 577" - } -}, -{ - "type": "node", - "id": 379017447, - "lat": 52.8395997, - "lon": -1.5500482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1061230688097932", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DE65 279", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 379017529, - "lat": 52.8355795, - "lon": -1.5458480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE65 280" - } -}, -{ - "type": "node", - "id": 379017539, - "lat": 52.8350644, - "lon": -1.5405129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE65 83" - } -}, -{ - "type": "node", - "id": 379023965, - "lat": 52.6143917, - "lon": 1.5433331, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 379036813, - "lat": 52.9810042, - "lon": -1.1046446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 283", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 379036848, - "lat": 52.9834286, - "lon": -1.1003416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/olDsaxIZOHTH_rv047Eg0w", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 482D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 379036939, - "lat": 52.9861774, - "lon": -1.0959480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/lqt-saU2qO6uyekY8OOXmQ", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 525D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 379242195, - "lat": 52.9832970, - "lon": -1.1122935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/7cKYV6_QfcMDmT5emBpbHQ", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 379265574, - "lat": 51.3743394, - "lon": -0.2634470, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 329D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 379277433, - "lat": 52.2862130, - "lon": 0.1286852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB4 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379377708, - "lat": 51.9471114, - "lon": -2.0699531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 234" - } -}, -{ - "type": "node", - "id": 379377896, - "lat": 51.9405268, - "lon": -2.0657096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 238" - } -}, -{ - "type": "node", - "id": 379378218, - "lat": 51.9455652, - "lon": -2.0690803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 235" - } -}, -{ - "type": "node", - "id": 379422852, - "lat": 51.6258539, - "lon": -2.4056222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-12-26" - } -}, -{ - "type": "node", - "id": 379422854, - "lat": 51.6257531, - "lon": -2.3989315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-07-09" - } -}, -{ - "type": "node", - "id": 379464876, - "lat": 51.5603936, - "lon": -2.4840948, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 22" - } -}, -{ - "type": "node", - "id": 379478875, - "lat": 51.2928367, - "lon": -0.5414827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU23 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379482911, - "lat": 51.8829861, - "lon": 0.9161167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 91" - } -}, -{ - "type": "node", - "id": 379482918, - "lat": 51.8816754, - "lon": 0.9106909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO1 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 379482922, - "lat": 51.8927949, - "lon": 0.8964096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CO1 5", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 379482964, - "lat": 51.8852621, - "lon": 0.9124106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO1 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 379482966, - "lat": 51.8790214, - "lon": 0.9166447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 43" - } -}, -{ - "type": "node", - "id": 379482969, - "lat": 51.8848877, - "lon": 0.9078029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 7" - } -}, -{ - "type": "node", - "id": 379524650, - "lat": 51.4074788, - "lon": -0.1821237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379524662, - "lat": 51.4073822, - "lon": -0.1750734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 23" - } -}, -{ - "type": "node", - "id": 379524670, - "lat": 51.4034585, - "lon": -0.1761041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379524682, - "lat": 51.4025629, - "lon": -0.1737545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379524716, - "lat": 51.3862391, - "lon": -0.1644806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 592", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379541787, - "lat": 54.7836486, - "lon": -1.5458876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 379553619, - "lat": 52.8349158, - "lon": -1.5255269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE65 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379565286, - "lat": 57.5318046, - "lon": -5.5179524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV22 220", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379588985, - "lat": 53.7491534, - "lon": -1.6088236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 339" - } -}, -{ - "type": "node", - "id": 379592427, - "lat": 51.0640608, - "lon": -0.8086557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379593169, - "lat": 51.5489469, - "lon": -2.4138694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS37 202" - } -}, -{ - "type": "node", - "id": 379593173, - "lat": 51.5393523, - "lon": -2.4140487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-07-28", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 1022;BS37 1023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379600458, - "lat": 52.8531178, - "lon": -1.5521351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DE65 624", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 379600778, - "lat": 52.8518581, - "lon": -1.5603060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 24" - } -}, -{ - "type": "node", - "id": 379602946, - "lat": 51.6202827, - "lon": -2.3956154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "232373938689552", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 361", - "survey:date": "2020-04-23" - } -}, -{ - "type": "node", - "id": 379602957, - "lat": 51.6179097, - "lon": -2.4073280, - "tags": { - "amenity": "post_box", - "postal_code": "GL12", - "ref": "GL12 156" - } -}, -{ - "type": "node", - "id": 379690870, - "lat": 51.4203283, - "lon": -0.1712880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 88" - } -}, -{ - "type": "node", - "id": 379690872, - "lat": 51.4223625, - "lon": -0.1807557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 108", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 379690874, - "lat": 51.4214189, - "lon": -0.1930169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 28" - } -}, -{ - "type": "node", - "id": 379690875, - "lat": 51.4219469, - "lon": -0.1970287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 59" - } -}, -{ - "type": "node", - "id": 379690880, - "lat": 51.4244678, - "lon": -0.1940493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 83" - } -}, -{ - "type": "node", - "id": 379690883, - "lat": 51.4230989, - "lon": -0.1898567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 81", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 379690887, - "lat": 51.4247062, - "lon": -0.1884259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379690891, - "lat": 51.4259477, - "lon": -0.1945397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 57" - } -}, -{ - "type": "node", - "id": 379690896, - "lat": 51.4268448, - "lon": -0.1904601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379690898, - "lat": 51.4308913, - "lon": -0.1929487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 379690903, - "lat": 51.4335489, - "lon": -0.1920375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379690909, - "lat": 51.4348768, - "lon": -0.1985070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 94", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 379690912, - "lat": 51.4335622, - "lon": -0.1996869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 63", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 379690915, - "lat": 51.4330759, - "lon": -0.2063997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 71" - } -}, -{ - "type": "node", - "id": 379690922, - "lat": 51.4415115, - "lon": -0.2097463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 78" - } -}, -{ - "type": "node", - "id": 379690926, - "lat": 51.4441753, - "lon": -0.2070979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 379690929, - "lat": 51.4467606, - "lon": -0.2134221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 26" - } -}, -{ - "type": "node", - "id": 379690932, - "lat": 51.4469211, - "lon": -0.2176607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 105" - } -}, -{ - "type": "node", - "id": 379690937, - "lat": 51.4451341, - "lon": -0.2224120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 20" - } -}, -{ - "type": "node", - "id": 379690940, - "lat": 51.4436070, - "lon": -0.2173222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 7" - } -}, -{ - "type": "node", - "id": 379690942, - "lat": 51.4409723, - "lon": -0.2213130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 5" - } -}, -{ - "type": "node", - "id": 379690945, - "lat": 51.4378112, - "lon": -0.2155730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 379690948, - "lat": 51.4328946, - "lon": -0.2190442, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-31", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 379690952, - "lat": 51.4329554, - "lon": -0.2241482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 379690956, - "lat": 51.4279794, - "lon": -0.2231547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW19 75" - } -}, -{ - "type": "node", - "id": 379690959, - "lat": 51.4296930, - "lon": -0.2195231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 106" - } -}, -{ - "type": "node", - "id": 379690962, - "lat": 51.4302812, - "lon": -0.2157748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-12-31", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW19 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379690966, - "lat": 51.4269356, - "lon": -0.2160578, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-31", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 92", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 379690969, - "lat": 51.4255363, - "lon": -0.2194322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 379690973, - "lat": 51.4238699, - "lon": -0.2224590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 379690980, - "lat": 51.4214507, - "lon": -0.2265977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW19 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26355935" - } -}, -{ - "type": "node", - "id": 379690985, - "lat": 51.4257919, - "lon": -0.2285361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379690990, - "lat": 51.4261212, - "lon": -0.2350740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 18" - } -}, -{ - "type": "node", - "id": 379690994, - "lat": 51.4239285, - "lon": -0.2184692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW19 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379697898, - "lat": 51.1024115, - "lon": -0.7503911, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-06", - "old_ref": "GU26 37", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU26 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379704459, - "lat": 51.1290580, - "lon": -0.2072398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 105" - } -}, -{ - "type": "node", - "id": 379704465, - "lat": 51.1292770, - "lon": -0.2023888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 85D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 379704514, - "lat": 51.1304003, - "lon": -0.1942576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379755467, - "lat": 51.7573143, - "lon": -1.2520347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX1 154", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 379775722, - "lat": 51.6974074, - "lon": -2.2319377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL6", - "ref": "GL6 25" - } -}, -{ - "type": "node", - "id": 379786105, - "lat": 57.1515976, - "lon": -6.0982042, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV49 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379786183, - "lat": 57.1830317, - "lon": -6.0577700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "727511382666398", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV49 100", - "source": "survey", - "survey:date": "2023-08-07" - } -}, -{ - "type": "node", - "id": 379813736, - "lat": 57.2130341, - "lon": -6.0103475, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV49 127" - } -}, -{ - "type": "node", - "id": 379815391, - "lat": 51.7280868, - "lon": -2.2154241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 379822573, - "lat": 51.4712997, - "lon": -0.1366076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 379831909, - "lat": 51.3658227, - "lon": -2.3217410, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 379843752, - "lat": 51.7461042, - "lon": -2.2961491, - "tags": { - "amenity": "post_box", - "postal_code": "GL10", - "ref": "GL10 148" - } -}, -{ - "type": "node", - "id": 379843920, - "lat": 51.7437540, - "lon": -2.2891339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "749035992429460", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL10", - "ref": "GL10 247", - "survey:date": "2020-02-05" - } -}, -{ - "type": "node", - "id": 380257609, - "lat": 51.2800200, - "lon": -0.5360025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU23 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 380289869, - "lat": 52.7044334, - "lon": -2.7262866, - "tags": { - "amenity": "post_box", - "ref": "SY2 481", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 380330060, - "lat": 51.7567924, - "lon": -1.2473099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OX1 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 380408051, - "lat": 51.8178735, - "lon": -4.6135365, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SA34 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380408057, - "lat": 51.8189061, - "lon": -4.6148804, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SA34 142", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380408058, - "lat": 51.8194092, - "lon": -4.6145549, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SA34 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380459424, - "lat": 52.0105151, - "lon": -4.9863230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "note": "Revised collection times came into effect from Monday 3 August 2015.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA64 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 380467846, - "lat": 50.7271932, - "lon": -3.5355690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX4 5;EX4 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 380467894, - "lat": 50.7255320, - "lon": -3.5329770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX4 17;EX4 1700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 380468880, - "lat": 52.4001467, - "lon": -1.9330844, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests B38 1424", - "post_box:type": "pillar", - "ref": "B38 740", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 380468885, - "lat": 52.3985185, - "lon": -1.9336367, - "tags": { - "amenity": "post_box", - "note": "No information on the box", - "ref": "B38 374", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 380477784, - "lat": 50.7304997, - "lon": -3.5418569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX4 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 380481124, - "lat": 52.3974520, - "lon": -1.9285489, - "tags": { - "amenity": "post_box", - "ref": "B38 1287", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 380488484, - "lat": 51.7576212, - "lon": -1.2560646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2019-03-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX1 114", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 380507718, - "lat": 54.9874296, - "lon": -1.4231682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE33 19" - } -}, -{ - "type": "node", - "id": 380593046, - "lat": 51.9944326, - "lon": -4.9808252, - "tags": { - "amenity": "post_box", - "ref": "SA65 170", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380593125, - "lat": 51.9935272, - "lon": -4.9745755, - "tags": { - "amenity": "post_box", - "ref": "SA65 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380593140, - "lat": 51.9917994, - "lon": -4.9717882, - "tags": { - "amenity": "post_box", - "ref": "SA65 190", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380757147, - "lat": 49.9148190, - "lon": -6.3126383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR21 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380813131, - "lat": 53.2242526, - "lon": -0.9998685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NG22 198" - } -}, -{ - "type": "node", - "id": 380813164, - "lat": 53.2043243, - "lon": -1.0060146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG22 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 380869875, - "lat": 50.5004336, - "lon": -3.5307189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 380888221, - "lat": 51.9164769, - "lon": -4.8505964, - "tags": { - "amenity": "post_box", - "ref": "SA63 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380917755, - "lat": 53.7518413, - "lon": -1.5953860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 987", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 380950714, - "lat": 51.0702322, - "lon": -0.3673869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 170" - } -}, -{ - "type": "node", - "id": 380960083, - "lat": 51.8439153, - "lon": 0.7008401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO5 226" - } -}, -{ - "type": "node", - "id": 380975082, - "lat": 51.5026713, - "lon": -0.1166296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 63;SE1 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380979172, - "lat": 51.9803559, - "lon": -4.9328588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 380991998, - "lat": 53.7469729, - "lon": -1.6083197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 82" - } -}, -{ - "type": "node", - "id": 381013180, - "lat": 51.2748293, - "lon": -0.3692606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT23 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 381085458, - "lat": 51.4859593, - "lon": -0.1233160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW8", - "ref": "SW8 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381120292, - "lat": 51.0038598, - "lon": -0.9379027, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "GU32 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 381127944, - "lat": 57.4874777, - "lon": -4.2371731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV3", - "ref": "IV3 127D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381127954, - "lat": 57.4844941, - "lon": -4.2444071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 116", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381127965, - "lat": 57.4845039, - "lon": -4.2443987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "mail:meter": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 13:15-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "IV3", - "ref": "IV3 126", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381127970, - "lat": 57.4823914, - "lon": -4.2470514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 24", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381127990, - "lat": 57.4884742, - "lon": -4.2579782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV3", - "ref": "IV3 6", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381244785, - "lat": 51.2874695, - "lon": -1.0648823, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 236" - } -}, -{ - "type": "node", - "id": 381329698, - "lat": 54.7997540, - "lon": -1.5684050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381330043, - "lat": 54.8036049, - "lon": -1.5666837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381330661, - "lat": 54.7959599, - "lon": -1.5763267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 164" - } -}, -{ - "type": "node", - "id": 381330860, - "lat": 54.7967247, - "lon": -1.5666157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 230" - } -}, -{ - "type": "node", - "id": 381405522, - "lat": 51.7869731, - "lon": -2.2224236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "ele": "174.3635254", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 381465933, - "lat": 51.4162157, - "lon": -0.1632685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 46" - } -}, -{ - "type": "node", - "id": 381465946, - "lat": 51.4049126, - "lon": -0.1632639, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "fixme": "As this had been mapped already I didn't cross the road to look at it. From my photos and old streetview, I suspect it was a wall box on the old post office and is now out of use.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 56" - } -}, -{ - "type": "node", - "id": 381465960, - "lat": 51.3992695, - "lon": -0.1415622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 381465968, - "lat": 51.3967265, - "lon": -0.1398073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 381465973, - "lat": 51.3980037, - "lon": -0.1346551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 381465979, - "lat": 51.3964384, - "lon": -0.1310430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 52D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 381465986, - "lat": 51.4000018, - "lon": -0.1330670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 381465990, - "lat": 51.3986665, - "lon": -0.1314400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 48D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 381465996, - "lat": 51.4101185, - "lon": -0.1437888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 47" - } -}, -{ - "type": "node", - "id": 381466000, - "lat": 51.4142750, - "lon": -0.1482687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 3" - } -}, -{ - "type": "node", - "id": 381466004, - "lat": 51.4167111, - "lon": -0.1585858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 27" - } -}, -{ - "type": "node", - "id": 381513303, - "lat": 51.4013885, - "lon": -1.3214981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG14", - "ref": "RG14 75" - } -}, -{ - "type": "node", - "id": 381513323, - "lat": 51.3918001, - "lon": -1.3247961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG14", - "ref": "RG14 64" - } -}, -{ - "type": "node", - "id": 381575456, - "lat": 53.1493602, - "lon": -1.4206956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 384" - } -}, -{ - "type": "node", - "id": 381591074, - "lat": 51.2360913, - "lon": -1.3044549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RG28 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 381600553, - "lat": 51.2564963, - "lon": -1.3282610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG28", - "ref": "RG28 103", - "survey:date": "2021-09-17", - "wikimedia_commons": "File:The road to Cole Henley Manor - geograph.org.uk - 2640413.jpg" - } -}, -{ - "type": "node", - "id": 381602653, - "lat": 53.1520935, - "lon": -1.4403937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 149D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 381657780, - "lat": 51.2227909, - "lon": -1.1126534, - "tags": { - "amenity": "post_box", - "postal_code": "RG25", - "ref": "RG25 271" - } -}, -{ - "type": "node", - "id": 381693691, - "lat": 51.2094052, - "lon": -1.1633970, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "RG25", - "ref": "RG25 189", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 381693698, - "lat": 51.2233034, - "lon": -1.1610899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 283", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 381693702, - "lat": 51.2310012, - "lon": -1.1459464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "783635795883972", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 215", - "survey:date": "2022-01-26" - } -}, -{ - "type": "node", - "id": 381720090, - "lat": 53.1629157, - "lon": -1.4022891, - "tags": { - "amenity": "post_box", - "comment": "plate missing", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S45 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 381940139, - "lat": 55.9417301, - "lon": -4.0028819, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1461" - } -}, -{ - "type": "node", - "id": 381943579, - "lat": 53.0687420, - "lon": -2.1817915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ST6 500" - } -}, -{ - "type": "node", - "id": 381943593, - "lat": 53.0667077, - "lon": -2.1925009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "ST6 490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 381943649, - "lat": 53.0513633, - "lon": -2.1877502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 367", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 381943673, - "lat": 53.0237313, - "lon": -2.1916228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 76" - } -}, -{ - "type": "node", - "id": 381943688, - "lat": 53.0209998, - "lon": -2.1938255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 472" - } -}, -{ - "type": "node", - "id": 381943695, - "lat": 53.0199148, - "lon": -2.1896241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 88" - } -}, -{ - "type": "node", - "id": 381950828, - "lat": 55.9503425, - "lon": -3.9915175, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 493" - } -}, -{ - "type": "node", - "id": 381992529, - "lat": 51.5149288, - "lon": -0.1370730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "manufacturer:wikidata": "Q113687568", - "note": "LH aperture sealed 2024-04-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1F 99;W1F 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1F 99 and W1F 299" - } -}, -{ - "type": "node", - "id": 382070499, - "lat": 52.1222529, - "lon": -1.7348450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 84D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 382097052, - "lat": 52.0935004, - "lon": -1.7639057, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL55 108", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 382316957, - "lat": 51.1096727, - "lon": -0.2350116, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH11 174" - } -}, -{ - "type": "node", - "id": 382317014, - "lat": 51.1117156, - "lon": -0.2279214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH11 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382317041, - "lat": 51.1136024, - "lon": -0.2148620, - "tags": { - "amenity": "post_box", - "fixme": "Is the location for this correct? Looks to be in private gardens.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 106" - } -}, -{ - "type": "node", - "id": 382317077, - "lat": 51.1117364, - "lon": -0.2211996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH11 102" - } -}, -{ - "type": "node", - "id": 382380525, - "lat": 52.8827387, - "lon": -1.4950457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE24 752" - } -}, -{ - "type": "node", - "id": 382380654, - "lat": 52.8821916, - "lon": -1.4851964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 692" - } -}, -{ - "type": "node", - "id": 382380702, - "lat": 52.8778400, - "lon": -1.5012009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 361" - } -}, -{ - "type": "node", - "id": 382380715, - "lat": 52.8831887, - "lon": -1.5013729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE23 1369" - } -}, -{ - "type": "node", - "id": 382484116, - "lat": 51.2744329, - "lon": -1.2018320, - "tags": { - "amenity": "post_box", - "mapillary": "306005951098488", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG26", - "ref": "RG26 175" - } -}, -{ - "type": "node", - "id": 382508789, - "lat": 51.4071604, - "lon": -0.1683172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR4 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382559236, - "lat": 51.2612267, - "lon": -1.1936409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382568453, - "lat": 53.8101639, - "lon": -1.7528886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD2 223" - } -}, -{ - "type": "node", - "id": 382568469, - "lat": 53.8094528, - "lon": -1.7329753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD2 104" - } -}, -{ - "type": "node", - "id": 382568479, - "lat": 53.8018126, - "lon": -1.7810121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD8 241" - } -}, -{ - "type": "node", - "id": 382568508, - "lat": 53.8056420, - "lon": -1.7723822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD8 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 382568516, - "lat": 53.8071259, - "lon": -1.7709647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD8 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 382568518, - "lat": 53.8056063, - "lon": -1.7685726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 382568578, - "lat": 53.8070887, - "lon": -1.7764493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD9 201", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 382581194, - "lat": 53.1416765, - "lon": -1.6413413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 975", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382585510, - "lat": 55.5983686, - "lon": -2.4333008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TD5 161", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 382585514, - "lat": 55.6517487, - "lon": -2.2513426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TD12 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 382585517, - "lat": 55.6535150, - "lon": -2.2474860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD12 50" - } -}, -{ - "type": "node", - "id": 382585520, - "lat": 55.6501224, - "lon": -2.2518110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD12 46" - } -}, -{ - "type": "node", - "id": 382585523, - "lat": 55.6494487, - "lon": -2.2564847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD12 49" - } -}, -{ - "type": "node", - "id": 382585526, - "lat": 55.6564298, - "lon": -2.2587633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD12 165" - } -}, -{ - "type": "node", - "id": 382585531, - "lat": 55.6555945, - "lon": -2.2505665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD12 157" - } -}, -{ - "type": "node", - "id": 382585533, - "lat": 55.6615535, - "lon": -2.2361241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 61" - } -}, -{ - "type": "node", - "id": 382585536, - "lat": 55.6746973, - "lon": -2.2740590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "TD12", - "ref": "TD12 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 382585539, - "lat": 55.6534953, - "lon": -2.2501386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD12 156", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 382585541, - "lat": 55.6469285, - "lon": -2.2258550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "TD12 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 382585544, - "lat": 55.7714643, - "lon": -2.7854976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "466030441145778", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD2 53", - "source": "survey", - "survey:date": "2020-08-02" - } -}, -{ - "type": "node", - "id": 382589599, - "lat": 51.2553264, - "lon": -1.1738345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1449364652680966", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG23", - "ref": "RG23 190", - "survey:date": "2024-03-24" - } -}, -{ - "type": "node", - "id": 382589614, - "lat": 51.2576999, - "lon": -1.1684260, - "tags": { - "amenity": "post_box", - "mapillary": "992753854796891", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG23", - "ref": "RG23 10", - "survey:date": "2020-05-09" - } -}, -{ - "type": "node", - "id": 382650680, - "lat": 51.2879622, - "lon": -1.1708868, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "RG26", - "ref": "RG26 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 382656172, - "lat": 51.2732720, - "lon": -1.0070259, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "RG24", - "ref": "RG24 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382656180, - "lat": 51.3024952, - "lon": -0.9084598, - "tags": { - "amenity": "post_box", - "postal_code": "RG27", - "ref": "RG27 130" - } -}, -{ - "type": "node", - "id": 382656182, - "lat": 51.2905550, - "lon": -0.8585300, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "GU51", - "ref": "GU51 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 382661566, - "lat": 51.2788259, - "lon": -0.9622241, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG27", - "ref": "RG27 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382662496, - "lat": 53.0816191, - "lon": -0.9908094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 382662785, - "lat": 51.2751331, - "lon": -0.9779117, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "RG27", - "ref": "RG27 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 382662789, - "lat": 51.2469042, - "lon": -1.0427420, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG25", - "ref": "RG25 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382692544, - "lat": 53.8129768, - "lon": -1.6711850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382692559, - "lat": 53.8153281, - "lon": -1.6702287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LS28 587" - } -}, -{ - "type": "node", - "id": 382692628, - "lat": 53.8155386, - "lon": -1.6352898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS13 496" - } -}, -{ - "type": "node", - "id": 382941018, - "lat": 51.9159833, - "lon": -4.4634605, - "tags": { - "amenity": "post_box", - "ref": "SA33 28" - } -}, -{ - "type": "node", - "id": 382941062, - "lat": 51.9006924, - "lon": -4.4051556, - "tags": { - "amenity": "post_box", - "ref": "SA33 401", - "source": "survey" - } -}, -{ - "type": "node", - "id": 382941100, - "lat": 51.8696133, - "lon": -4.2863018, - "tags": { - "amenity": "post_box", - "source": "visual_estimate" - } -}, -{ - "type": "node", - "id": 382941105, - "lat": 51.8659555, - "lon": -4.2841370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA31 304" - } -}, -{ - "type": "node", - "id": 382954554, - "lat": 51.0603471, - "lon": -3.9963401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "EX32 0NB", - "ref": "EX32 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 382978976, - "lat": 50.6334953, - "lon": -3.3257505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "947137239635017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX9 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 383012984, - "lat": 50.7124001, - "lon": -3.4786843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 277D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 383154973, - "lat": 51.9410050, - "lon": -4.7057406, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA66 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 383154974, - "lat": 51.9713927, - "lon": -4.6484889, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA43 572", - "source": "survey" - } -}, -{ - "type": "node", - "id": 383154976, - "lat": 51.9428899, - "lon": -4.5128741, - "tags": { - "amenity": "post_box", - "ref": "SA33 528", - "source": "survey" - } -}, -{ - "type": "node", - "id": 383154977, - "lat": 51.9014183, - "lon": -4.4272399, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SA33 367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 383154978, - "lat": 51.8958040, - "lon": -4.3365088, - "tags": { - "amenity": "post_box", - "ref": "SA33 309", - "source": "survey" - } -}, -{ - "type": "node", - "id": 383157158, - "lat": 52.2112408, - "lon": 0.1713631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB5 8", - "ref": "CB5 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 383712916, - "lat": 52.2206253, - "lon": 0.1718141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB5 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 383894429, - "lat": 54.7753943, - "lon": -1.5396826, - "tags": { - "amenity": "post_box", - "flickr": "https://www.flickr.com/photos/32159881@N03/3172117736", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 13" - } -}, -{ - "type": "node", - "id": 383894512, - "lat": 54.7796239, - "lon": -1.5504406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 383896179, - "lat": 53.2837726, - "lon": -1.8008274, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 383897227, - "lat": 53.2800449, - "lon": -1.7745169, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SK17 92D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 383897663, - "lat": 53.2782254, - "lon": -1.7728688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "SK17 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 383906781, - "lat": 53.2737965, - "lon": -1.7746522, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 383928982, - "lat": 51.5439742, - "lon": -2.4364085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "mapillary": "600477421313657", - "note": "franked mail only", - "post_box:type": "meter", - "postal_code": "BS37", - "ref": "BS37 4010", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 383928983, - "lat": 51.5522341, - "lon": -2.4197628, - "tags": { - "amenity": "post_box", - "mapillary": "1112346169596586", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 65", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 383928984, - "lat": 51.5518346, - "lon": -2.4113615, - "tags": { - "amenity": "post_box", - "mapillary": "557684785521907", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 686", - "survey:date": "2021-05-30" - } -}, -{ - "type": "node", - "id": 383928985, - "lat": 51.5514615, - "lon": -2.4073798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS37 283" - } -}, -{ - "type": "node", - "id": 383997779, - "lat": 53.1219055, - "lon": -1.2579593, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 383997842, - "lat": 51.7028111, - "lon": -1.2646524, - "tags": { - "amenity": "post_box", - "ref": "OX14 1167" - } -}, -{ - "type": "node", - "id": 384057045, - "lat": 51.7436826, - "lon": -1.2984012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "OX2 833" - } -}, -{ - "type": "node", - "id": 384345478, - "lat": 52.4458193, - "lon": -1.8889467, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B13 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 384345487, - "lat": 52.4482211, - "lon": -1.8881498, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 369", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 384345489, - "lat": 52.4534239, - "lon": -1.8872739, - "tags": { - "amenity": "post_box", - "ref": "B13 354", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 384412094, - "lat": 51.8387149, - "lon": -4.3259636, - "tags": { - "amenity": "post_box", - "ref": "SA33 185", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384412233, - "lat": 51.8170305, - "lon": -4.3475249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA33 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384428978, - "lat": 51.1296882, - "lon": -1.8162856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP4 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384428992, - "lat": 51.1236478, - "lon": -1.8299334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 79" - } -}, -{ - "type": "node", - "id": 384429001, - "lat": 51.1171218, - "lon": -1.8215080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP4 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 384429016, - "lat": 51.1197285, - "lon": -1.8173596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384728390, - "lat": 51.2163789, - "lon": -0.6461618, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU3 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384739092, - "lat": 51.1896478, - "lon": -0.5950306, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU7 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384750491, - "lat": 51.7437060, - "lon": -2.2795294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "image": "https://www.geograph.org.uk/photo/4893028", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL10 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 384750493, - "lat": 51.7385612, - "lon": -2.2254876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL5 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384750637, - "lat": 51.7427683, - "lon": -2.2021860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 67D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2017-01-15" - } -}, -{ - "type": "node", - "id": 384750638, - "lat": 51.7195202, - "lon": -2.1810183, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 12" - } -}, -{ - "type": "node", - "id": 384750640, - "lat": 51.7445446, - "lon": -2.2042365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-15" - } -}, -{ - "type": "node", - "id": 384750643, - "lat": 51.7464446, - "lon": -2.2012194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "GL5", - "ref": "GL5 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384750648, - "lat": 51.7490874, - "lon": -2.2101772, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 26" - } -}, -{ - "type": "node", - "id": 384750650, - "lat": 51.7498929, - "lon": -2.2118534, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 8" - } -}, -{ - "type": "node", - "id": 384750651, - "lat": 51.7507313, - "lon": -2.2122324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL5", - "ref": "GL5 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384750653, - "lat": 51.7425573, - "lon": -2.2455303, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 384750664, - "lat": 51.7411579, - "lon": -2.2712984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL10 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 384759680, - "lat": 51.5160223, - "lon": -0.1360540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-08-05", - "description": "Left aperture for stamped; right aperture for franked.", - "drive_through": "no", - "note": "2021-09-25 sealed with black and yellow tape", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "W1", - "ref": "W1D 102;W1D 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384789934, - "lat": 51.8595825, - "lon": -4.2141600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA32 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384789951, - "lat": 51.8584088, - "lon": -4.1901367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA32 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384789991, - "lat": 51.8631255, - "lon": -4.1511382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA32 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384790010, - "lat": 51.8613487, - "lon": -4.1311685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA32 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384801798, - "lat": 51.8040180, - "lon": -4.0977181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "SA14 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 384803216, - "lat": 54.9948485, - "lon": -1.4303792, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 384809155, - "lat": 51.7999087, - "lon": -4.0943363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "old_ref": "SA14 115", - "post_box:type": "lamp", - "ref": "SA14 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 384867819, - "lat": 52.4301017, - "lon": -2.0502232, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "B62 292" - } -}, -{ - "type": "node", - "id": 384867836, - "lat": 52.4353368, - "lon": -2.0476584, - "tags": { - "amenity": "post_box", - "ref": "B62 97" - } -}, -{ - "type": "node", - "id": 384867863, - "lat": 52.4339518, - "lon": -2.0275991, - "tags": { - "amenity": "post_box", - "ref": "B62 24" - } -}, -{ - "type": "node", - "id": 384899052, - "lat": 51.5216363, - "lon": -1.8123283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN4 70" - } -}, -{ - "type": "node", - "id": 384940443, - "lat": 51.7812441, - "lon": 1.1157490, - "tags": { - "amenity": "post_box", - "postal_code": "CO15 2NJ", - "ref": "CO15 175" - } -}, -{ - "type": "node", - "id": 384944211, - "lat": 51.8831903, - "lon": 0.9328960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO4 245" - } -}, -{ - "type": "node", - "id": 384949072, - "lat": 51.8643377, - "lon": 0.8718100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 282" - } -}, -{ - "type": "node", - "id": 384951541, - "lat": 53.6783376, - "lon": -1.6920890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 474" - } -}, -{ - "type": "node", - "id": 385017457, - "lat": 51.4343386, - "lon": -0.1852383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 28" - } -}, -{ - "type": "node", - "id": 385017458, - "lat": 51.4269815, - "lon": -0.1735099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 3" - } -}, -{ - "type": "node", - "id": 385017459, - "lat": 51.4254761, - "lon": -0.1548100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW17 11" - } -}, -{ - "type": "node", - "id": 385087632, - "lat": 51.7044116, - "lon": -0.7404558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HP16 107" - } -}, -{ - "type": "node", - "id": 385128652, - "lat": 53.7564080, - "lon": -1.5988842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS27 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 385154771, - "lat": 52.4709494, - "lon": -1.5465527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV7 448D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-04-08" - } -}, -{ - "type": "node", - "id": 385154772, - "lat": 52.4720108, - "lon": -1.5471543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref is definitely 449 and not 448 on the north/eastbound side", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CV7 449D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385155108, - "lat": 50.4867374, - "lon": -3.6452340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 215D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 385159816, - "lat": 50.4880553, - "lon": -3.6424176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 385178381, - "lat": 50.4883299, - "lon": -3.6349191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ12 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 385186854, - "lat": 52.3754136, - "lon": -1.1271430, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NN6 6", - "ref": "NN6 403" - } -}, -{ - "type": "node", - "id": 385208511, - "lat": 51.3006013, - "lon": -0.5975847, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-16", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU22 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 385288521, - "lat": 51.3909842, - "lon": -0.2902588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 235D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 385288523, - "lat": 51.3901526, - "lon": -0.2824469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 385294044, - "lat": 51.3855235, - "lon": -0.2779000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 213D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 385314381, - "lat": 51.8498312, - "lon": 0.8625379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO2 267" - } -}, -{ - "type": "node", - "id": 385324132, - "lat": 51.4502459, - "lon": -0.0671012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "ref unreadable on 03/10/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385375052, - "lat": 51.4535456, - "lon": -0.2149313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW15 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 385375053, - "lat": 51.4534993, - "lon": -0.2123033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 38", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 385375881, - "lat": 51.4523178, - "lon": -0.2209791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW15 58", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 385412661, - "lat": 51.8320904, - "lon": 1.2487127, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 9BH", - "ref": "CO13 72" - } -}, -{ - "type": "node", - "id": 385412665, - "lat": 51.8324734, - "lon": 1.2426329, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CO13 9DY", - "ref": "CO13 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 385412675, - "lat": 51.8352766, - "lon": 1.2394031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "571221058434651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO13 9LP", - "ref": "CO13 154", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 385455084, - "lat": 51.8400598, - "lon": 1.2261304, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO13 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 385455189, - "lat": 51.8398192, - "lon": 1.2350623, - "tags": { - "amenity": "post_box", - "postal_code": "CO13 0QH", - "ref": "CO13 192" - } -}, -{ - "type": "node", - "id": 385455224, - "lat": 51.8444551, - "lon": 1.2066658, - "tags": { - "amenity": "post_box", - "ref": "CO13 12" - } -}, -{ - "type": "node", - "id": 385455236, - "lat": 51.8532254, - "lon": 1.2231216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CO13 0EE", - "ref": "CO13 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 385455237, - "lat": 51.8515816, - "lon": 1.2315526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1230336697606640", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO13 0DF", - "ref": "CO13 57", - "survey:date": "2023-04-27" - } -}, -{ - "type": "node", - "id": 385457704, - "lat": 52.9340461, - "lon": -4.5546246, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 385460636, - "lat": 51.8562222, - "lon": 1.2073169, - "tags": { - "amenity": "post_box", - "mapillary": "3126121927716874", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO13 167", - "survey:date": "2022-07-06" - } -}, -{ - "type": "node", - "id": 385462211, - "lat": 50.7292280, - "lon": -2.3928197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385484299, - "lat": 51.4494881, - "lon": -0.1704455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 17" - } -}, -{ - "type": "node", - "id": 385484300, - "lat": 51.4628216, - "lon": -0.1706564, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "old_ref": "SW11 43", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 43D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 385513754, - "lat": 51.2783700, - "lon": -0.1964500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR5 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385513768, - "lat": 51.2671800, - "lon": -0.2035100, - "tags": { - "amenity": "post_box", - "ref": "KT20 111" - } -}, -{ - "type": "node", - "id": 385560827, - "lat": 51.4984192, - "lon": -0.1437899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1W 48;SW1W 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385560833, - "lat": 51.4990225, - "lon": -0.1289455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 33;SW1P 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385560835, - "lat": 51.4955394, - "lon": -0.1281565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "SW1", - "ref": "SW1P 44;SW1P 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 385560849, - "lat": 51.4895470, - "lon": -0.1312224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SW1", - "ref": "SW1V 20;SW1V 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 385560859, - "lat": 51.4886832, - "lon": -0.1351143, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "lastcheck": "2023-05-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 92;SW1V 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385602979, - "lat": 51.5467816, - "lon": -1.7344739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN3 300D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 385604184, - "lat": 53.3671307, - "lon": -1.3580670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S13 766D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 385605127, - "lat": 53.3660672, - "lon": -1.3526764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "S13 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 385608314, - "lat": 51.7709636, - "lon": -1.2324323, - "tags": { - "addr:city": "Oxford", - "addr:housenumber": "14", - "addr:street": "Boults Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX3 851" - } -}, -{ - "type": "node", - "id": 385740900, - "lat": 53.7088860, - "lon": -1.6804785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF16 155" - } -}, -{ - "type": "node", - "id": 385755998, - "lat": 52.4531800, - "lon": -1.8538974, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 385774745, - "lat": 50.9122921, - "lon": -1.4104199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 317D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 385891350, - "lat": 52.4655910, - "lon": -1.8775090, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 385891439, - "lat": 52.4450531, - "lon": -1.8592436, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 137", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 385913678, - "lat": 53.0931498, - "lon": -1.3049074, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 385914182, - "lat": 53.0897846, - "lon": -1.3095481, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 385916056, - "lat": 53.7023469, - "lon": -1.6441051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 107" - } -}, -{ - "type": "node", - "id": 385975098, - "lat": 52.9382641, - "lon": -1.2123615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "28.244263", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 648D", - "ref:GB:uprn": "10015349941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 385988777, - "lat": 52.4525908, - "lon": -1.8656105, - "tags": { - "amenity": "post_box", - "ref": "B11 38", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 386005246, - "lat": 51.8875748, - "lon": 0.9273535, - "tags": { - "amenity": "post_box", - "mapillary": "463849194706012", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO1 193", - "survey:date": "2019-11-24" - } -}, -{ - "type": "node", - "id": 386005249, - "lat": 51.8893196, - "lon": 0.9166107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 500" - } -}, -{ - "type": "node", - "id": 386005250, - "lat": 51.8905766, - "lon": 0.9176284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 26" - } -}, -{ - "type": "node", - "id": 386005252, - "lat": 51.8844574, - "lon": 0.9219978, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO1 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 386005256, - "lat": 51.8979305, - "lon": 0.9082219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 294" - } -}, -{ - "type": "node", - "id": 386005257, - "lat": 51.9006298, - "lon": 0.8930616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 248" - } -}, -{ - "type": "node", - "id": 386005259, - "lat": 51.8968445, - "lon": 0.8964430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CO1 16D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 386005268, - "lat": 51.8926553, - "lon": 0.9251699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO4 41" - } -}, -{ - "type": "node", - "id": 386005269, - "lat": 51.8848507, - "lon": 0.9299051, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "Inside store", - "operator": "Royal Mail", - "ref": "CO1 478" - } -}, -{ - "type": "node", - "id": 386007636, - "lat": 53.7481032, - "lon": -0.2757435, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386007637, - "lat": 53.7580207, - "lon": -0.2730893, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 386007638, - "lat": 53.7690789, - "lon": -0.2692011, - "tags": { - "amenity": "post_box", - "ref": "HU9 79" - } -}, -{ - "type": "node", - "id": 386007639, - "lat": 53.7745485, - "lon": -0.2601194, - "tags": { - "amenity": "post_box", - "ref": "HU9 54" - } -}, -{ - "type": "node", - "id": 386007640, - "lat": 53.7675632, - "lon": -0.2739711, - "tags": { - "amenity": "post_box", - "ref": "HU9 105" - } -}, -{ - "type": "node", - "id": 386007641, - "lat": 53.7644065, - "lon": -0.2649177, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386007642, - "lat": 53.7600553, - "lon": -0.2687710, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 386007658, - "lat": 53.7563753, - "lon": -0.2539956, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU9 213" - } -}, -{ - "type": "node", - "id": 386007667, - "lat": 53.7622727, - "lon": -0.2572459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386025769, - "lat": 53.7629023, - "lon": -0.2848541, - "tags": { - "amenity": "post_box", - "ref": "HU9 168" - } -}, -{ - "type": "node", - "id": 386025770, - "lat": 53.7596881, - "lon": -0.3043365, - "tags": { - "amenity": "post_box", - "ref": "HU9 72" - } -}, -{ - "type": "node", - "id": 386025771, - "lat": 53.7579109, - "lon": -0.2950777, - "tags": { - "amenity": "post_box", - "fixme": "missing box number", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 386025773, - "lat": 53.7545424, - "lon": -0.2947786, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 386025775, - "lat": 53.7559864, - "lon": -0.3070610, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386025776, - "lat": 53.7525889, - "lon": -0.3081712, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386025777, - "lat": 53.7507546, - "lon": -0.3134247, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386027771, - "lat": 53.7453118, - "lon": -0.3242742, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU9 8" - } -}, -{ - "type": "node", - "id": 386027772, - "lat": 53.7444303, - "lon": -0.3268916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HU9 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386027773, - "lat": 53.7427790, - "lon": -0.3219883, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HU9 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386027774, - "lat": 53.7432006, - "lon": -0.3148494, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386027775, - "lat": 53.7410875, - "lon": -0.3255269, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 386044977, - "lat": 53.7139661, - "lon": -1.6338762, - "tags": { - "amenity": "post_box", - "note": "Postion est from photo", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph", - "source_ref": "http://www.flickr.com/photos/pobice/3480606276/" - } -}, -{ - "type": "node", - "id": 386057817, - "lat": 51.4984734, - "lon": -0.1836030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW7 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386117561, - "lat": 51.8458392, - "lon": -1.3049109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "wall", - "ref": "OX5 61", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386147298, - "lat": 53.8631850, - "lon": -1.6965659, - "tags": { - "amenity": "post_box", - "ref": "LS19 679" - } -}, -{ - "type": "node", - "id": 386152607, - "lat": 51.8669054, - "lon": 0.9067214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO2 379", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 386162559, - "lat": 51.0503956, - "lon": 0.5110200, - "tags": { - "amenity": "post_box", - "postal_code": "TN18", - "ref": "TN18 283" - } -}, -{ - "type": "node", - "id": 386173361, - "lat": 51.0528649, - "lon": 0.5081649, - "tags": { - "amenity": "post_box", - "postal_code": "TN18", - "ref": "TN18 277" - } -}, -{ - "type": "node", - "id": 386177479, - "lat": 52.4546384, - "lon": -1.8668465, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 62", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 386177499, - "lat": 52.4533195, - "lon": -1.8464480, - "tags": { - "amenity": "post_box", - "ref": "B11 303", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 386184937, - "lat": 51.0438999, - "lon": 0.5083998, - "tags": { - "amenity": "post_box", - "postal_code": "TN18", - "ref": "TN18 258" - } -}, -{ - "type": "node", - "id": 386189709, - "lat": 53.7185314, - "lon": -1.6436053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386204443, - "lat": 51.0381852, - "lon": 0.5029717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "TN18", - "ref": "TN18 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386212560, - "lat": 51.0398857, - "lon": 0.5039050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "TN18", - "ref": "TN18 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386230190, - "lat": 53.3552044, - "lon": -1.3576739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S13 1545D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386234460, - "lat": 53.3585511, - "lon": -1.3652926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S13 177", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 386234461, - "lat": 53.3625741, - "lon": -1.3567650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S13 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386246532, - "lat": 53.8041757, - "lon": -1.5224441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386247608, - "lat": 53.3552924, - "lon": -1.3697809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386247618, - "lat": 53.3571974, - "lon": -1.3795317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386249689, - "lat": 53.3623733, - "lon": -1.3634149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 924", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 386254356, - "lat": 51.4984943, - "lon": -0.1880967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386254372, - "lat": 51.5005435, - "lon": -0.1857940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "note": "manufacturer: MACHAN 20 ENG 10 SCOTLAND", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Engineering", - "post_box:type": "pillar", - "ref": "W8 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386795032, - "lat": 52.4484500, - "lon": -1.8402861, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 377", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 386795034, - "lat": 52.4477566, - "lon": -1.8581905, - "tags": { - "amenity": "post_box", - "ref": "B11 181", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 386866407, - "lat": 52.9776722, - "lon": -0.0236206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE21 2500;PE21 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386868453, - "lat": 52.0771725, - "lon": 0.4461472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB9 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386868791, - "lat": 50.9844007, - "lon": -1.0513285, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-02-07", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU32 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386916866, - "lat": 57.4865941, - "lon": -4.2200425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 104", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386916867, - "lat": 57.4860501, - "lon": -4.2120987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV1", - "ref": "IV1 1311", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386916871, - "lat": 57.4860571, - "lon": -4.2121167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV1", - "ref": "IV1 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386916874, - "lat": 57.4774084, - "lon": -4.2251423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "661362086153210", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV2", - "ref": "IV2 4D", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2023-10-11" - } -}, -{ - "type": "node", - "id": 386916877, - "lat": 57.4780959, - "lon": -4.2230369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV1", - "ref": "IV1 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 386916881, - "lat": 57.4794023, - "lon": -4.2261591, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-12", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "wall", - "postal_code": "IV1", - "ref": "IV1 123", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 386944357, - "lat": 52.0778176, - "lon": 0.4324790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387009866, - "lat": 53.1808157, - "lon": -1.3915715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S42 291D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387012185, - "lat": 53.3588880, - "lon": -1.3741293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S13 4579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387012186, - "lat": 53.3588809, - "lon": -1.3741443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S13 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387012202, - "lat": 53.3593987, - "lon": -1.3813978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387012264, - "lat": 53.1823949, - "lon": -1.4015392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S42 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 387020343, - "lat": 53.1890180, - "lon": -1.4092307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S42 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387212975, - "lat": 51.4554713, - "lon": -0.0768966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387260634, - "lat": 51.1176564, - "lon": -0.1538997, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "name": "Pound Hill Parade P O", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387263699, - "lat": 51.5703865, - "lon": -3.7513618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387352766, - "lat": 51.0326681, - "lon": -0.5180368, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "last_checked": "2020-03-06", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387403853, - "lat": 51.6173423, - "lon": -3.1166882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NP11 775D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 387449038, - "lat": 51.8825304, - "lon": 0.8848093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 177", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 387449040, - "lat": 51.8797247, - "lon": 0.8785803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 188", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 387449051, - "lat": 51.8767214, - "lon": 0.8704943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 305D", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 387449054, - "lat": 51.8746035, - "lon": 0.8655700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 337", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 387449067, - "lat": 51.8341891, - "lon": 0.9091495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO5 332", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 387451993, - "lat": 52.9454288, - "lon": -1.1313610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 154D", - "ref:GB:uprn": "10015681400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387454068, - "lat": 52.9461823, - "lon": -1.1230098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG2 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387490529, - "lat": 52.9664175, - "lon": -1.0836627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 387517883, - "lat": 50.9298616, - "lon": -1.3664085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 387521152, - "lat": 51.7575524, - "lon": -1.2028928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 387527350, - "lat": 52.9601538, - "lon": -1.1022964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 272", - "ref:GB:uprn": "10015382241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387527380, - "lat": 52.9585987, - "lon": -1.1057737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 302", - "ref:GB:uprn": "10015285985", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387527545, - "lat": 52.9582613, - "lon": -1.1110275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 301D", - "ref:GB:uprn": "10015295844", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387527555, - "lat": 52.9625236, - "lon": -1.0889441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG4 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387528657, - "lat": 51.5738619, - "lon": -0.2010579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 23", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 387639263, - "lat": 52.9369827, - "lon": -1.1400803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 314D", - "ref:GB:uprn": "10015447793", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 387672188, - "lat": 55.9514072, - "lon": -3.9839860, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 387677942, - "lat": 55.9542478, - "lon": -3.9804455, - "tags": { - "amenity": "post_box", - "postal_code": "G67", - "ref": "G67 1368" - } -}, -{ - "type": "node", - "id": 387743181, - "lat": 51.0690323, - "lon": -4.0405207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 112" - } -}, -{ - "type": "node", - "id": 387794666, - "lat": 51.0923029, - "lon": -0.2796041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 197" - } -}, -{ - "type": "node", - "id": 387794700, - "lat": 51.1026221, - "lon": -0.2621146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH12 17" - } -}, -{ - "type": "node", - "id": 387800489, - "lat": 51.1073181, - "lon": -0.2261878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 11" - } -}, -{ - "type": "node", - "id": 387844314, - "lat": 51.6243781, - "lon": -2.3650634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 380" - } -}, -{ - "type": "node", - "id": 387844315, - "lat": 51.6241866, - "lon": -2.3677351, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "GL12", - "ref": "GL12 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387844317, - "lat": 51.6371818, - "lon": -2.3579318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1405961649772633", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-06-17" - } -}, -{ - "type": "node", - "id": 387846714, - "lat": 52.4666608, - "lon": -2.0291739, - "tags": { - "amenity": "post_box", - "ref": "B62 400", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 387846719, - "lat": 52.4723036, - "lon": -2.0255859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B62 339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 387846723, - "lat": 52.4688260, - "lon": -2.0225295, - "tags": { - "amenity": "post_box", - "ref": "B62 793", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 387846737, - "lat": 52.4687721, - "lon": -2.0465513, - "tags": { - "amenity": "post_box", - "ref": "B62 9015", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 387846738, - "lat": 52.4687623, - "lon": -2.0465575, - "tags": { - "amenity": "post_box", - "ref": "B62 360", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 387858138, - "lat": 51.5317237, - "lon": 0.1863265, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 387900710, - "lat": 53.8095262, - "lon": -1.6710330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "LS28 871", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387900756, - "lat": 53.8171025, - "lon": -1.6528045, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "LS13 1026" - } -}, -{ - "type": "node", - "id": 387900788, - "lat": 53.8085193, - "lon": -1.6564373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS28 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 387900793, - "lat": 53.8062439, - "lon": -1.6645283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 238" - } -}, -{ - "type": "node", - "id": 388091633, - "lat": 55.8624699, - "lon": -4.2084745, - "tags": { - "amenity": "post_box", - "postal_code": "G31", - "ref": "G31 569" - } -}, -{ - "type": "node", - "id": 388114320, - "lat": 52.4559797, - "lon": -2.0382798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B62 1266", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 388119763, - "lat": 52.4589226, - "lon": -1.8696324, - "tags": { - "amenity": "post_box", - "ref": "B11 312", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 388119765, - "lat": 52.4592420, - "lon": -1.8667517, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 135", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 388172929, - "lat": 53.7583134, - "lon": -1.5320479, - "tags": { - "amenity": "post_box", - "fixme": "re/move with new houses?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 859", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 388183472, - "lat": 51.5879269, - "lon": -3.7748227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 388184827, - "lat": 53.7760161, - "lon": -1.5364522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 1111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 388200217, - "lat": 51.6007512, - "lon": -0.1119994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N22 11" - } -}, -{ - "type": "node", - "id": 388200218, - "lat": 51.6023428, - "lon": -0.1130366, - "tags": { - "amenity": "post_box", - "note": "checked -- is correct", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 6" - } -}, -{ - "type": "node", - "id": 388200219, - "lat": 51.6026860, - "lon": -0.1199848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 28" - } -}, -{ - "type": "node", - "id": 388200220, - "lat": 51.6041284, - "lon": -0.1169742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 29" - } -}, -{ - "type": "node", - "id": 388200221, - "lat": 51.6065995, - "lon": -0.1147927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 19" - } -}, -{ - "type": "node", - "id": 388200222, - "lat": 51.6111860, - "lon": -0.1140792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 20" - } -}, -{ - "type": "node", - "id": 388200223, - "lat": 51.6067287, - "lon": -0.1055073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 3" - } -}, -{ - "type": "node", - "id": 388203739, - "lat": 51.5920697, - "lon": -0.1053176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N22 12" - } -}, -{ - "type": "node", - "id": 388203740, - "lat": 51.5970644, - "lon": -0.0960652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 17" - } -}, -{ - "type": "node", - "id": 388203741, - "lat": 51.5956155, - "lon": -0.1000991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 34" - } -}, -{ - "type": "node", - "id": 388203742, - "lat": 51.5979299, - "lon": -0.1020982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 24" - } -}, -{ - "type": "node", - "id": 388203743, - "lat": 51.6016133, - "lon": -0.1051041, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 33" - } -}, -{ - "type": "node", - "id": 388203744, - "lat": 51.6003996, - "lon": -0.0998340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 23" - } -}, -{ - "type": "node", - "id": 388203745, - "lat": 51.5981935, - "lon": -0.0929444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 15" - } -}, -{ - "type": "node", - "id": 388203746, - "lat": 51.6006046, - "lon": -0.0964596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 8" - } -}, -{ - "type": "node", - "id": 388203747, - "lat": 51.5988911, - "lon": -0.0980483, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 18" - } -}, -{ - "type": "node", - "id": 388203748, - "lat": 51.5975186, - "lon": -0.1077501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 16" - } -}, -{ - "type": "node", - "id": 388203749, - "lat": 51.5961633, - "lon": -0.1087917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N22 5" - } -}, -{ - "type": "node", - "id": 388240269, - "lat": 52.4384191, - "lon": -1.8350299, - "tags": { - "amenity": "post_box", - "ref": "B28 433", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 388308494, - "lat": 57.4847661, - "lon": -5.3186980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IV54 249", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388330273, - "lat": 57.6229166, - "lon": -4.8181849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV23 215", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388334906, - "lat": 51.3967756, - "lon": -0.2885533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 388341682, - "lat": 52.9243115, - "lon": -1.2151778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG9 618", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388356039, - "lat": 57.5745859, - "lon": -4.5483165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV14 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388356051, - "lat": 57.5826534, - "lon": -4.5460667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV14 13", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388356117, - "lat": 57.6002885, - "lon": -4.5292539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV14 14", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388356608, - "lat": 57.6025406, - "lon": -4.5279918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV14 15D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388356727, - "lat": 57.5972141, - "lon": -4.4375643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV15 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 388370501, - "lat": 57.5610898, - "lon": -4.4357362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 41D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 388409372, - "lat": 53.7296285, - "lon": -2.6170127, - "tags": { - "amenity": "post_box", - "ref": "PR5 392", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388428780, - "lat": 53.0866305, - "lon": -1.7217157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE6 835", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 388483798, - "lat": 53.7768704, - "lon": -1.5395290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS11 76" - } -}, -{ - "type": "node", - "id": 388538169, - "lat": 57.4799252, - "lon": -4.2193644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV2", - "ref": "IV2 349", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 388578668, - "lat": 52.9993621, - "lon": -0.0061809, - "tags": { - "amenity": "post_box", - "ref": "PE21 48" - } -}, -{ - "type": "node", - "id": 388609532, - "lat": 54.9014516, - "lon": -1.3896391, - "tags": { - "amenity": "post_box", - "ref": "SR2 80" - } -}, -{ - "type": "node", - "id": 388693694, - "lat": 51.7230095, - "lon": -1.1588621, - "tags": { - "amenity": "post_box", - "ref": "OX44 555" - } -}, -{ - "type": "node", - "id": 388775848, - "lat": 51.9321848, - "lon": 1.2723224, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 3RS", - "ref": "CO12 19" - } -}, -{ - "type": "node", - "id": 388775904, - "lat": 51.9228041, - "lon": 1.2595715, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 3TZ", - "ref": "CO12 68" - } -}, -{ - "type": "node", - "id": 388775907, - "lat": 51.9346840, - "lon": 1.2630617, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 4EU", - "ref": "CO12 3" - } -}, -{ - "type": "node", - "id": 388775915, - "lat": 51.9248201, - "lon": 1.1773456, - "tags": { - "amenity": "post_box", - "postal_code": "CO12 5LY", - "ref": "CO12 66" - } -}, -{ - "type": "node", - "id": 388775940, - "lat": 51.8960286, - "lon": 1.1472816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO12 5BS", - "ref": "CO12 21" - } -}, -{ - "type": "node", - "id": 388793986, - "lat": 52.3360044, - "lon": -0.0777030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE27 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 388864684, - "lat": 51.8641065, - "lon": 1.1838273, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 0NH", - "ref": "CO16 23" - } -}, -{ - "type": "node", - "id": 388864710, - "lat": 51.8511865, - "lon": 1.1879302, - "tags": { - "amenity": "post_box", - "postal_code": "CO16 0NP", - "ref": "CO16 129" - } -}, -{ - "type": "node", - "id": 388864721, - "lat": 51.8545131, - "lon": 1.1754798, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 0JB", - "ref": "CO16 74" - } -}, -{ - "type": "node", - "id": 388864834, - "lat": 51.8596165, - "lon": 1.1589546, - "tags": { - "amenity": "post_box", - "mapillary": "537224391247700", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 0EA", - "ref": "CO16 117", - "survey:date": "2022-04-27" - } -}, -{ - "type": "node", - "id": 388864872, - "lat": 51.8564821, - "lon": 1.1642832, - "tags": { - "amenity": "post_box", - "mapillary": "505907914451295", - "post_box:type": "pillar", - "ref": "CO16 126", - "survey:date": "2022-04-27" - } -}, -{ - "type": "node", - "id": 388864912, - "lat": 51.8741442, - "lon": 1.1457230, - "tags": { - "amenity": "post_box", - "ref": "CO16 36" - } -}, -{ - "type": "node", - "id": 388864914, - "lat": 51.8813965, - "lon": 1.1498285, - "tags": { - "amenity": "post_box", - "ref": "CO16 7" - } -}, -{ - "type": "node", - "id": 388864917, - "lat": 51.8608114, - "lon": 1.1400473, - "tags": { - "amenity": "post_box", - "mapillary": "166348889117883", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO16 64", - "survey:date": "2022-04-27" - } -}, -{ - "type": "node", - "id": 388864920, - "lat": 51.8625437, - "lon": 1.1547002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1942574792585008", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO16 0AB", - "ref": "CO16 25", - "survey:date": "2020-01-01" - } -}, -{ - "type": "node", - "id": 388898850, - "lat": 51.8408358, - "lon": 1.2457520, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO13 0AS", - "ref": "CO13 148" - } -}, -{ - "type": "node", - "id": 388898852, - "lat": 51.8435907, - "lon": 1.2493598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CO13 0AU", - "ref": "CO13 178" - } -}, -{ - "type": "node", - "id": 388913379, - "lat": 51.4550824, - "lon": -0.2032036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW18 5" - } -}, -{ - "type": "node", - "id": 388969504, - "lat": 52.4096807, - "lon": -2.0796851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B62 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 388998935, - "lat": 52.4240439, - "lon": -1.9565629, - "tags": { - "amenity": "post_box", - "ref": "B31 477" - } -}, -{ - "type": "node", - "id": 389001552, - "lat": 53.2534318, - "lon": -3.0089450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 389037260, - "lat": 53.7175423, - "lon": -2.6335336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1085270191963634", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR5 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389040756, - "lat": 51.4772005, - "lon": -2.3447387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SN14", - "ref": "SN14 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389040757, - "lat": 51.5049293, - "lon": -2.3324722, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL9", - "ref": "GL9 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389040759, - "lat": 51.5071423, - "lon": -2.3355847, - "tags": { - "amenity": "post_box", - "ref": "GL9 152" - } -}, -{ - "type": "node", - "id": 389040770, - "lat": 51.5187108, - "lon": -2.3619958, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 200" - } -}, -{ - "type": "node", - "id": 389040773, - "lat": 51.5312419, - "lon": -2.3529489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1410119962750237", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 389040774, - "lat": 51.5325549, - "lon": -2.3602414, - "tags": { - "amenity": "post_box", - "mapillary": "778941316346858", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 1017", - "survey:date": "2020-02-14" - } -}, -{ - "type": "node", - "id": 389040775, - "lat": 51.5338559, - "lon": -2.3707558, - "tags": { - "amenity": "post_box", - "mapillary": "269337828225739", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 279", - "survey:date": "2020-09-05" - } -}, -{ - "type": "node", - "id": 389040777, - "lat": 51.5932499, - "lon": -2.3994072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "collection_times_checked": "2015-09-10", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL12 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389040779, - "lat": 51.5992060, - "lon": -2.3975312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL12", - "ref": "GL12 75" - } -}, -{ - "type": "node", - "id": 389040798, - "lat": 51.5224383, - "lon": -1.7861287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 66" - } -}, -{ - "type": "node", - "id": 389041419, - "lat": 51.5710094, - "lon": -1.7951467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 99" - } -}, -{ - "type": "node", - "id": 389049433, - "lat": 51.4029544, - "lon": -1.2572505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "1254816885018457", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "RG19", - "ref": "RG19 830", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 389138062, - "lat": 51.4009273, - "lon": -1.2513328, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "note": "this postbox has no visible ref", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "ref": "RG19 132" - } -}, -{ - "type": "node", - "id": 389143689, - "lat": 51.3973788, - "lon": -1.2483877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG19", - "ref": "RG19 290", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 389145671, - "lat": 51.4034547, - "lon": -1.2592145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG19", - "ref": "RG19 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389147127, - "lat": 51.7873697, - "lon": -0.1433530, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG14 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389147220, - "lat": 51.7873613, - "lon": -0.1269330, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG14 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 389152953, - "lat": 54.7334379, - "lon": -1.5043539, - "tags": { - "amenity": "post_box", - "ele": "126.54", - "postal_code": "DH6 5NW", - "ref": "DH6 328" - } -}, -{ - "type": "node", - "id": 389449496, - "lat": 57.5511884, - "lon": -5.7494064, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV54 251", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 389449499, - "lat": 57.5391981, - "lon": -5.7070521, - "tags": { - "amenity": "post_box", - "ref": "IV54 253", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 389460183, - "lat": 53.7821538, - "lon": -1.5495656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389474475, - "lat": 51.7915457, - "lon": -0.1062540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "name": "Hertingfordbury", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG14 53" - } -}, -{ - "type": "node", - "id": 389493588, - "lat": 51.7704722, - "lon": -0.1044308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SG13 65", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 389493675, - "lat": 51.2864637, - "lon": -0.4930417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU23 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389504859, - "lat": 50.9171041, - "lon": -1.4159941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO15 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389526615, - "lat": 51.9391233, - "lon": 1.1704647, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CO11 2TH", - "ref": "CO11 54", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 389526627, - "lat": 51.9327360, - "lon": 1.1613316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CO11 2TA", - "ref": "CO11 50" - } -}, -{ - "type": "node", - "id": 389526629, - "lat": 51.9358838, - "lon": 1.1957468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "710985593841646", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO12 5NE", - "ref": "CO12 64", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 389526645, - "lat": 51.9232702, - "lon": 1.1492283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "600499318667338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 2UJ", - "ref": "CO11 72", - "survey:date": "2023-04-03" - } -}, -{ - "type": "node", - "id": 389526646, - "lat": 51.9473096, - "lon": 1.2546796, - "tags": { - "amenity": "post_box", - "note": "Upstairs in terminal building", - "postal_code": "CO12 4SR", - "ref": "CO12 82" - } -}, -{ - "type": "node", - "id": 389526647, - "lat": 51.9473603, - "lon": 1.2553760, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "In the wall of platform 1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CO12 4SR", - "ref": "CO12 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 389526655, - "lat": 51.9126143, - "lon": 1.1520207, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2SA", - "ref": "CO11 56" - } -}, -{ - "type": "node", - "id": 389526657, - "lat": 51.9072370, - "lon": 1.1214215, - "tags": { - "amenity": "post_box", - "mapillary": "885122802051588", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO11 2RN", - "ref": "CO11 30", - "survey:date": "2021-04-10" - } -}, -{ - "type": "node", - "id": 389526661, - "lat": 51.9184215, - "lon": 1.1395094, - "tags": { - "amenity": "post_box", - "mapillary": "384228906162053", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CO11 2SJ", - "ref": "CO11 57", - "survey:date": "2020-02-01" - } -}, -{ - "type": "node", - "id": 389526662, - "lat": 51.9123650, - "lon": 1.1415859, - "tags": { - "amenity": "post_box", - "mapillary": "526497971843369", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO11 2RS", - "ref": "CO11 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-10" - } -}, -{ - "type": "node", - "id": 389526669, - "lat": 51.9284026, - "lon": 1.1144669, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2UZ", - "ref": "CO11 49" - } -}, -{ - "type": "node", - "id": 389526672, - "lat": 51.9254324, - "lon": 1.1051167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO11 2XL", - "ref": "CO11 29" - } -}, -{ - "type": "node", - "id": 389526675, - "lat": 51.9307124, - "lon": 1.1020341, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 2QN", - "ref": "CO11 71" - } -}, -{ - "type": "node", - "id": 389526676, - "lat": 51.9343790, - "lon": 1.0941008, - "tags": { - "amenity": "post_box", - "mapillary": "214120200269010", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CO11 2QJ", - "ref": "CO11 46", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 389526680, - "lat": 51.9433697, - "lon": 1.0650164, - "tags": { - "amenity": "post_box", - "postal_code": "CO11 1BP", - "ref": "CO11 34" - } -}, -{ - "type": "node", - "id": 389557532, - "lat": 56.0412504, - "lon": -3.3721661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "KY11 96", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389609187, - "lat": 53.7458578, - "lon": -2.6654822, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-02-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389690513, - "lat": 53.2659409, - "lon": -2.6328062, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CW8 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389726104, - "lat": 55.9346929, - "lon": -4.1475564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G66 143D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 389782255, - "lat": 51.5586572, - "lon": -0.1739503, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 389795032, - "lat": 52.6276504, - "lon": -1.1842411, - "tags": { - "amenity": "post_box", - "ref": "LE3 917" - } -}, -{ - "type": "node", - "id": 389811915, - "lat": 54.0216307, - "lon": -2.2602224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD23 73", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389886919, - "lat": 52.8392318, - "lon": -1.1037406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "note": "in wall of \"Old Post Office\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG12 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 389888830, - "lat": 52.7013015, - "lon": -2.5173794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "reference code may be wrong", - "note": "Picked the ref up while partially inebriated. Might be wrong...", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TF1 13", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 389899612, - "lat": 51.5595044, - "lon": -0.1300235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 23" - } -}, -{ - "type": "node", - "id": 389912129, - "lat": 53.2529744, - "lon": -2.6133495, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW8 117" - } -}, -{ - "type": "node", - "id": 389948874, - "lat": 54.9142178, - "lon": -1.3713945, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 389948918, - "lat": 50.7668127, - "lon": -3.3833138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "colour": "red", - "direction": "NNE", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EX5 2PA", - "ref": "EX5 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 389950646, - "lat": 53.7490982, - "lon": -1.5553212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 916" - } -}, -{ - "type": "node", - "id": 389950726, - "lat": 53.7462877, - "lon": -1.5571315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 389950787, - "lat": 53.7416773, - "lon": -1.5499865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 519", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 389950823, - "lat": 53.7475244, - "lon": -1.5476660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 648" - } -}, -{ - "type": "node", - "id": 389988018, - "lat": 52.9344674, - "lon": -1.0815429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "NG12 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 389990672, - "lat": 53.3121916, - "lon": -2.3599141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA16 87", - "royal_cypher": "EIIR", - "was:post_box:design": "type_k" - } -}, -{ - "type": "node", - "id": 389990676, - "lat": 53.3121954, - "lon": -2.3598958, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA16 88" - } -}, -{ - "type": "node", - "id": 390033079, - "lat": 53.3545394, - "lon": -1.7471633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 352D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 390033080, - "lat": 53.3526424, - "lon": -1.7264065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "S33 612", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 390033081, - "lat": 53.3479477, - "lon": -1.7034323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 433", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 390033083, - "lat": 53.3508788, - "lon": -1.6902608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "S33 363" - } -}, -{ - "type": "node", - "id": 390033084, - "lat": 53.3394993, - "lon": -1.7281932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 158", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 390033085, - "lat": 53.3452260, - "lon": -1.7327336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S33 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390033086, - "lat": 53.3482589, - "lon": -1.7428276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 448", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 390033087, - "lat": 53.3743700, - "lon": -1.7064589, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-13", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S33 431D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390033088, - "lat": 53.3602379, - "lon": -1.6987847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "990509241729307", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "S33 654", - "survey:date": "2021-10-15" - } -}, -{ - "type": "node", - "id": 390033089, - "lat": 53.3386708, - "lon": -1.6995679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "S33 623" - } -}, -{ - "type": "node", - "id": 390033090, - "lat": 53.3417996, - "lon": -1.7035503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 604", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 390055913, - "lat": 52.5981656, - "lon": -0.2181233, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 390066367, - "lat": 51.7222453, - "lon": -1.2474402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "3802185489908112", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX1 221", - "source": "photograph", - "survey:date": "2020-09-29" - } -}, -{ - "type": "node", - "id": 390275287, - "lat": 51.8852455, - "lon": 0.8909520, - "tags": { - "amenity": "post_box", - "check_date": "2020-11-11", - "check_date:collection_times": "2020-11-11", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "contact:website": "https://www.royalmail.com/services-near-you/postbox/co3-21-beaconsfield-avenue-co3-3nd/00000CO321", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO3 21" - } -}, -{ - "type": "node", - "id": 390275288, - "lat": 51.8855914, - "lon": 0.8881040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 17" - } -}, -{ - "type": "node", - "id": 390275289, - "lat": 51.8804804, - "lon": 0.8873769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 242" - } -}, -{ - "type": "node", - "id": 390275299, - "lat": 51.8822182, - "lon": 0.8812441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 318" - } -}, -{ - "type": "node", - "id": 390275300, - "lat": 51.8857480, - "lon": 0.8819560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 25" - } -}, -{ - "type": "node", - "id": 390275301, - "lat": 51.8874568, - "lon": 0.8844711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 19" - } -}, -{ - "type": "node", - "id": 390275302, - "lat": 51.8877304, - "lon": 0.8800277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 28" - } -}, -{ - "type": "node", - "id": 390275303, - "lat": 51.8795946, - "lon": 0.8736862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CO3 472", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 390275304, - "lat": 51.8804875, - "lon": 0.8651473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "fixme": "Expected reference here is CO3 394 + CO3 3941", - "mapillary": "7660665770663004", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "CO3 3941;CO3 941", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 390275306, - "lat": 51.8838073, - "lon": 0.8630695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 384" - } -}, -{ - "type": "node", - "id": 390275307, - "lat": 51.8822055, - "lon": 0.8604931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 451" - } -}, -{ - "type": "node", - "id": 390275326, - "lat": 51.8792353, - "lon": 0.8552991, - "tags": { - "amenity": "post_box", - "mapillary": "1047118766888788", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO3 288" - } -}, -{ - "type": "node", - "id": 390275339, - "lat": 51.8756729, - "lon": 0.8545611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 114" - } -}, -{ - "type": "node", - "id": 390275340, - "lat": 51.8737888, - "lon": 0.8593927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CO3 386", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 390275357, - "lat": 51.8761311, - "lon": 0.8616871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 419" - } -}, -{ - "type": "node", - "id": 390275362, - "lat": 51.8842315, - "lon": 0.8538147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 385" - } -}, -{ - "type": "node", - "id": 390275363, - "lat": 51.8854331, - "lon": 0.8581951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 401" - } -}, -{ - "type": "node", - "id": 390275379, - "lat": 51.8898069, - "lon": 0.8527646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390275380, - "lat": 51.8911280, - "lon": 0.8470216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 57" - } -}, -{ - "type": "node", - "id": 390275381, - "lat": 51.9172954, - "lon": 0.8476046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO6 327" - } -}, -{ - "type": "node", - "id": 390275383, - "lat": 51.8900779, - "lon": 0.8626338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390275386, - "lat": 51.8892206, - "lon": 0.8731403, - "tags": { - "amenity": "post_box", - "mapillary": "2970548173070133", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 110", - "survey:date": "2019-10-26" - } -}, -{ - "type": "node", - "id": 390284912, - "lat": 53.7395814, - "lon": -1.5379589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS10 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390299327, - "lat": 52.4512481, - "lon": -2.0472823, - "tags": { - "amenity": "post_box", - "ref": "B63 53", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 390302165, - "lat": 53.3088003, - "lon": -2.3599491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 68", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 390302226, - "lat": 52.8458447, - "lon": -1.0618761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG12 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390306658, - "lat": 52.8724509, - "lon": -1.0724022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "NG12 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390307472, - "lat": 52.8693265, - "lon": -1.0740889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "NG12 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390307477, - "lat": 51.3198223, - "lon": -1.0284761, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG27", - "ref": "RG27 17" - } -}, -{ - "type": "node", - "id": 390310877, - "lat": 52.9000305, - "lon": -1.1017402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG12 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390311424, - "lat": 52.4496921, - "lon": -2.0512935, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "B63 89", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 390315685, - "lat": 51.3168939, - "lon": -1.0252878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG27", - "ref": "RG27 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390343935, - "lat": 52.8562901, - "lon": -4.4824525, - "tags": { - "amenity": "post_box", - "ref": "LL53 18" - } -}, -{ - "type": "node", - "id": 390344185, - "lat": 52.4487815, - "lon": -2.0499879, - "tags": { - "amenity": "post_box", - "ref": "B63 1061", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 390344239, - "lat": 52.4539877, - "lon": -2.0459827, - "tags": { - "amenity": "post_box", - "ref": "B63 372", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 390350687, - "lat": 51.5188191, - "lon": 0.0082508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390353630, - "lat": 53.7327180, - "lon": -0.8303209, - "tags": { - "amenity": "post_box", - "ref": "DN14 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390353636, - "lat": 53.7138309, - "lon": -0.7761125, - "tags": { - "amenity": "post_box", - "ref": "DN14 69" - } -}, -{ - "type": "node", - "id": 390353638, - "lat": 53.7204595, - "lon": -0.8042333, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN14 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390359993, - "lat": 51.3095001, - "lon": 0.1756542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN14 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-13" - } -}, -{ - "type": "node", - "id": 390375596, - "lat": 51.3150679, - "lon": -1.0310174, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG27", - "ref": "RG27 260" - } -}, -{ - "type": "node", - "id": 390376119, - "lat": 53.1739555, - "lon": -1.6903660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE45 1379" - } -}, -{ - "type": "node", - "id": 390376125, - "lat": 53.1751931, - "lon": -1.6866937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DE45 1278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390376134, - "lat": 53.1762633, - "lon": -1.6844185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE45 1262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390376138, - "lat": 53.1776254, - "lon": -1.6713936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE45 1261D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 390376141, - "lat": 53.2071937, - "lon": -1.6692599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1295" - } -}, -{ - "type": "node", - "id": 390381279, - "lat": 51.3406059, - "lon": -1.0407505, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390398574, - "lat": 50.4737477, - "lon": -3.5451321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ1", - "ref": "TQ1 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 390407072, - "lat": 51.5376659, - "lon": -0.1414136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "note": "the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 311;NW1 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 311 and NW1 31" - } -}, -{ - "type": "node", - "id": 390417032, - "lat": 53.3124838, - "lon": -1.3530296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S21 228", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 390434704, - "lat": 53.3082476, - "lon": -1.3625344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S21 226D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 390449493, - "lat": 50.4804257, - "lon": -3.5400572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 234D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 390456009, - "lat": 50.4817608, - "lon": -3.5435598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 390461652, - "lat": 53.3026401, - "lon": -1.3710179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 798", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390471020, - "lat": 50.4854155, - "lon": -3.5365711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 390480607, - "lat": 53.3042905, - "lon": -1.3749086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390486876, - "lat": 54.9197859, - "lon": -1.3671161, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SR6 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390490286, - "lat": 53.3065832, - "lon": -1.3949676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S21 382", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 390494998, - "lat": 54.2989896, - "lon": -2.1998974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DL8 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-25" - } -}, -{ - "type": "node", - "id": 390506901, - "lat": 53.3083874, - "lon": -1.3746199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390520018, - "lat": 54.9016079, - "lon": -1.4043355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR4 96" - } -}, -{ - "type": "node", - "id": 390520133, - "lat": 54.8981051, - "lon": -1.4082202, - "tags": { - "amenity": "post_box", - "ref": "SR4 104" - } -}, -{ - "type": "node", - "id": 390520178, - "lat": 54.9012484, - "lon": -1.4058119, - "tags": { - "amenity": "post_box", - "ref": "SR4 147" - } -}, -{ - "type": "node", - "id": 390520620, - "lat": 53.7410054, - "lon": -1.5412208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 673", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390520623, - "lat": 53.7434042, - "lon": -1.5435817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 618" - } -}, -{ - "type": "node", - "id": 390525372, - "lat": 52.7808772, - "lon": -1.3357688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "LE12 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390525373, - "lat": 52.7826309, - "lon": -1.3393058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:30", - "post_box:type": "lamp", - "ref": "LE12 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390532941, - "lat": 52.3423339, - "lon": 0.9882904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390533355, - "lat": 50.9540685, - "lon": -1.1977803, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO32 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390549512, - "lat": 52.9590788, - "lon": -1.2211465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG8 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 390550737, - "lat": 54.9265976, - "lon": -1.3889528, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SR5", - "ref": "SR5 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 390550869, - "lat": 54.9021659, - "lon": -1.4006410, - "tags": { - "amenity": "post_box", - "ref": "SR4 44" - } -}, -{ - "type": "node", - "id": 390551065, - "lat": 54.8967535, - "lon": -1.3963957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR2 165" - } -}, -{ - "type": "node", - "id": 390559962, - "lat": 55.9347262, - "lon": -4.1307121, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 390565602, - "lat": 54.9091506, - "lon": -1.3705792, - "tags": { - "amenity": "post_box", - "ref": "SR1 87" - } -}, -{ - "type": "node", - "id": 390569852, - "lat": 54.9194388, - "lon": -1.3962161, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SR5", - "ref": "SR5 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 390716162, - "lat": 52.3520696, - "lon": 0.9701056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "IP22 7031", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390776788, - "lat": 52.9165526, - "lon": -1.4190517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 771" - } -}, -{ - "type": "node", - "id": 390824705, - "lat": 52.9511284, - "lon": -1.2325299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "ele": "50.594727", - "post_box:type": "pillar", - "ref": "NG8 288", - "ref:GB:uprn": "10015371658", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 390942219, - "lat": 53.7713169, - "lon": -1.5495730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 390942264, - "lat": 53.7737764, - "lon": -1.5495285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 475" - } -}, -{ - "type": "node", - "id": 390948636, - "lat": 53.6791308, - "lon": -1.5245311, - "tags": { - "amenity": "post_box", - "note": "Inside Morrisons, at rear of cash registers", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 300" - } -}, -{ - "type": "node", - "id": 390948654, - "lat": 53.6788489, - "lon": -1.5178462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF2 104" - } -}, -{ - "type": "node", - "id": 390959601, - "lat": 55.8677617, - "lon": -4.1924191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "G33", - "ref": "G33 1007", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 390959605, - "lat": 55.8683178, - "lon": -4.1885015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "G33", - "ref": "G33 681", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 390962183, - "lat": 55.6551647, - "lon": -4.7096102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "224832445734895", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "KA13", - "ref": "KA13 83", - "survey:date": "2021-02-22" - } -}, -{ - "type": "node", - "id": 390975786, - "lat": 53.1612565, - "lon": -1.4221567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 391006956, - "lat": 51.5521239, - "lon": -2.9046325, - "tags": { - "amenity": "post_box", - "source": "visual_estimate" - } -}, -{ - "type": "node", - "id": 391041143, - "lat": 51.9408159, - "lon": 0.6355373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 391041144, - "lat": 53.2244517, - "lon": -1.7059923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE45 1282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391041145, - "lat": 53.1160168, - "lon": -1.6371879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 332" - } -}, -{ - "type": "node", - "id": 391041146, - "lat": 53.0807590, - "lon": -1.5733030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391041147, - "lat": 52.9847837, - "lon": -1.4995514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE56 238" - } -}, -{ - "type": "node", - "id": 391041148, - "lat": 53.1010351, - "lon": -1.5373212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE4 963" - } -}, -{ - "type": "node", - "id": 391041149, - "lat": 53.2094448, - "lon": -1.6725596, - "tags": { - "amenity": "post_box", - "fixme": "location?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE45 562" - } -}, -{ - "type": "node", - "id": 391041150, - "lat": 53.2158767, - "lon": -1.6777519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE45 1286" - } -}, -{ - "type": "node", - "id": 391041151, - "lat": 53.3283396, - "lon": -1.7413662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "operator": "Royal Mail", - "ref": "S33 437" - } -}, -{ - "type": "node", - "id": 391066431, - "lat": 53.2152844, - "lon": -1.3969940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "Outside 201 Mansfield Rd", - "post_box:type": "lamp", - "ref": "S41 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391068782, - "lat": 51.5589831, - "lon": -2.0441682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SN15", - "ref": "SN15 74" - } -}, -{ - "type": "node", - "id": 391072309, - "lat": 53.2199406, - "lon": -1.4060234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "comment": "One plate should be S41 142", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "S41 14;S41 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391074401, - "lat": 53.2215748, - "lon": -1.4041351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391076703, - "lat": 51.0930640, - "lon": -0.2040407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH10 140" - } -}, -{ - "type": "node", - "id": 391077810, - "lat": 53.2271964, - "lon": -1.3979982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391082317, - "lat": 52.9446504, - "lon": -1.1618097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ele": "32.089478", - "fixme": "collection times partially updated", - "mail:franked": "yes", - "mail:parcel": "yes", - "opening_hours": "Mo-Fr 10:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG7 290P", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 391083361, - "lat": 53.2301148, - "lon": -1.4166235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391086415, - "lat": 52.5201894, - "lon": -0.3286720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE7 34" - } -}, -{ - "type": "node", - "id": 391086803, - "lat": 53.2338036, - "lon": -1.4244255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391092355, - "lat": 52.9677411, - "lon": -1.4631922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391097395, - "lat": 51.5019870, - "lon": -0.1861029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "W8 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391288416, - "lat": 51.1731916, - "lon": 0.1839423, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 391312067, - "lat": 50.4892355, - "lon": -3.6392583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 203", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 391511535, - "lat": 53.3474001, - "lon": -1.7607869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 586D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 391511538, - "lat": 53.3439660, - "lon": -1.7744008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S33 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391511544, - "lat": 53.3702269, - "lon": -1.8166619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S33 559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391511547, - "lat": 53.3698252, - "lon": -1.8085129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S33 659D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391511550, - "lat": 53.3716964, - "lon": -1.7879030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "S33 326", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 391536996, - "lat": 51.1653045, - "lon": -4.6654989, - "tags": { - "amenity": "post_box", - "colour": "blue", - "note": "The only post box on Lundy operated by Lundy post, the oldest private postal service in the world", - "operator": "Lundy Post", - "post_box:mounting": "building", - "post_box:type": "wall", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 391545348, - "lat": 52.0269249, - "lon": -0.7866042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK5 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391545357, - "lat": 52.0333112, - "lon": -0.7809044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "note": "Notice plate missing. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK5 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391577788, - "lat": 53.7875518, - "lon": -1.8866686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD13 441", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 391625138, - "lat": 53.7523820, - "lon": -1.5217214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 27" - } -}, -{ - "type": "node", - "id": 391625160, - "lat": 53.7491164, - "lon": -1.5338505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391659832, - "lat": 51.5160121, - "lon": -0.2127392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "628513555054887", - "post_box:type": "pillar", - "ref": "W11 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-15" - } -}, -{ - "type": "node", - "id": 391667560, - "lat": 52.8668316, - "lon": -1.5170698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE73 197" - } -}, -{ - "type": "node", - "id": 391823864, - "lat": 55.8411177, - "lon": -4.3645977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G52 1168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 391827583, - "lat": 55.8218284, - "lon": -4.2901968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G43 718D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391835122, - "lat": 57.3883329, - "lon": -5.5130243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "ref": "IV54 256", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391835306, - "lat": 57.3608936, - "lon": -5.5549419, - "tags": { - "amenity": "post_box", - "ref": "IV54 332", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 391835518, - "lat": 57.3563081, - "lon": -5.6062917, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV54 255", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391839947, - "lat": 57.3341717, - "lon": -5.6651417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 14:00", - "note": "ref not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV40 23", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 391879994, - "lat": 57.4745169, - "lon": -4.1581016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 57", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391921883, - "lat": 57.4519823, - "lon": -4.2374041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV2 38", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 391921907, - "lat": 57.4644514, - "lon": -4.2279232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV2", - "ref": "IV2 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391942400, - "lat": 55.8305337, - "lon": -4.3082493, - "tags": { - "amenity": "post_box", - "ref": "G43 5010" - } -}, -{ - "type": "node", - "id": 391948784, - "lat": 57.3817632, - "lon": -4.3325911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IV2 67", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 391990807, - "lat": 52.5974165, - "lon": 0.3664471, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 391990927, - "lat": 52.5952460, - "lon": 0.3722430, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 391991045, - "lat": 52.5863367, - "lon": 0.3714832, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 391991072, - "lat": 52.5975980, - "lon": 0.3682877, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 391991108, - "lat": 52.5961887, - "lon": 0.3816761, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 391991116, - "lat": 52.5907777, - "lon": 0.3856997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 391991234, - "lat": 52.5948231, - "lon": 0.3790798, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 392012586, - "lat": 57.5927468, - "lon": -4.6301951, - "tags": { - "amenity": "post_box", - "ref": "IV14 8", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392029690, - "lat": 53.7480905, - "lon": -2.4815598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "713212914043734", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BB1", - "ref": "BB1 31", - "source": "survey", - "survey:date": "2023-10-26" - } -}, -{ - "type": "node", - "id": 392029929, - "lat": 54.9900227, - "lon": -1.4205983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE33 21" - } -}, -{ - "type": "node", - "id": 392047770, - "lat": 54.9922477, - "lon": -1.4185858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE33 17" - } -}, -{ - "type": "node", - "id": 392100127, - "lat": 53.3975764, - "lon": -2.0620807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 392113161, - "lat": 53.4286680, - "lon": -1.5980186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S6 173D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 392115506, - "lat": 52.3574543, - "lon": 1.0070673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392115509, - "lat": 52.3609331, - "lon": 1.0022284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "IP22 7102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392131264, - "lat": 51.5123593, - "lon": -0.2154067, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "W11 32", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 392131639, - "lat": 51.5120262, - "lon": -0.2177577, - "tags": { - "amenity": "post_box", - "ref": "W10 7" - } -}, -{ - "type": "node", - "id": 392132895, - "lat": 57.4749944, - "lon": -4.2333615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IV3 354", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392132896, - "lat": 57.4785009, - "lon": -4.2311272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 13D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392132902, - "lat": 57.4788090, - "lon": -4.2353702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392133483, - "lat": 52.9910091, - "lon": -1.8925666, - "tags": { - "amenity": "post_box", - "note": "I went to the Alton Towers Resort theme park on Wednesday 03.08.2022 and the postbox slot has been blocked off.", - "operator": "Royal Mail", - "ref": "ST10 35", - "source": "visit to Alton Towers Resort theme park." - } -}, -{ - "type": "node", - "id": 392133484, - "lat": 52.9934455, - "lon": -1.8949234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ST10 600" - } -}, -{ - "type": "node", - "id": 392134119, - "lat": 53.2797341, - "lon": -1.7692485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SK17 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392134581, - "lat": 51.6381424, - "lon": -1.2166360, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX14 1034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392184145, - "lat": 51.5718006, - "lon": -0.3538522, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12.15pm", - "post_box:type": "pillar", - "postal_code": "HA2", - "ref": "HA2 93" - } -}, -{ - "type": "node", - "id": 392267647, - "lat": 51.4851151, - "lon": -0.1046987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE17 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 392276662, - "lat": 52.3973650, - "lon": -1.5032484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CV3", - "ref": "CV3 303", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 392291358, - "lat": 51.5963141, - "lon": -3.7799411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA13 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392322447, - "lat": 53.7938923, - "lon": -0.1912321, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392326212, - "lat": 51.7702287, - "lon": -0.3396365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392331004, - "lat": 52.0585027, - "lon": 1.2804727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "IP5 8222" - } -}, -{ - "type": "node", - "id": 392366374, - "lat": 51.5140547, - "lon": -0.2352945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "W12 11D" - } -}, -{ - "type": "node", - "id": 392371403, - "lat": 51.5050997, - "lon": -0.2150782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W11 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 392375263, - "lat": 51.5076516, - "lon": -0.2161357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392391232, - "lat": 51.5377674, - "lon": -0.0060459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392437429, - "lat": 52.2196665, - "lon": 0.1526005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB4 1", - "ref": "CB4 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392437430, - "lat": 52.3061284, - "lon": 0.0636074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 392448075, - "lat": 52.9719096, - "lon": -1.5155493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4032832700176714", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE22 554", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 392448079, - "lat": 52.9669410, - "lon": -1.4937867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE22 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392463225, - "lat": 53.7122153, - "lon": -1.6386888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 96" - } -}, -{ - "type": "node", - "id": 392464052, - "lat": 52.9135224, - "lon": -1.4056748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE21 359D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392464054, - "lat": 52.9135365, - "lon": -1.4104220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE21 660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392474072, - "lat": 53.3655893, - "lon": -1.8012388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S33 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392474073, - "lat": 53.3647207, - "lon": -1.8469398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S33 330", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "unknown;survey" - } -}, -{ - "type": "node", - "id": 392474074, - "lat": 53.3597720, - "lon": -1.8306897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S33 153" - } -}, -{ - "type": "node", - "id": 392474075, - "lat": 53.2893837, - "lon": -1.6418356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S32 230D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 392475805, - "lat": 53.2234785, - "lon": -1.6720708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1294" - } -}, -{ - "type": "node", - "id": 392475806, - "lat": 53.2123694, - "lon": -1.6743258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DE45 1297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392475807, - "lat": 53.2135220, - "lon": -1.6745484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE45 1296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392475808, - "lat": 53.1659179, - "lon": -1.7085527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE45 1263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392475809, - "lat": 53.1946642, - "lon": -1.6955886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "Box now firmly embedded in stone wall (no longer a 'lamp' type)", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE45 1280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392475810, - "lat": 53.2158261, - "lon": -1.7397282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE45 1273" - } -}, -{ - "type": "node", - "id": 392475811, - "lat": 53.2420389, - "lon": -1.6983638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1292" - } -}, -{ - "type": "node", - "id": 392476435, - "lat": 53.2426743, - "lon": -1.7022580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Moved to its correct position south of the road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE45 1283", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 392476436, - "lat": 53.2425093, - "lon": -1.7153577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE45 1274", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 392476437, - "lat": 53.2483610, - "lon": -1.6821658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1260" - } -}, -{ - "type": "node", - "id": 392476438, - "lat": 53.2473292, - "lon": -1.6662917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE45 1287D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 392476439, - "lat": 53.2257321, - "lon": -1.6251735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1268D" - } -}, -{ - "type": "node", - "id": 392478479, - "lat": 53.2355397, - "lon": -1.6404450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE45 1277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 392478480, - "lat": 53.2478545, - "lon": -1.6236430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE45 1290", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 392478481, - "lat": 53.2406977, - "lon": -1.7239894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE45 1259D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:location": "survey" - } -}, -{ - "type": "node", - "id": 392478482, - "lat": 53.3253684, - "lon": -1.7384316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "S33 438", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 392478483, - "lat": 53.3271304, - "lon": -1.7428040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S33 156" - } -}, -{ - "type": "node", - "id": 392478484, - "lat": 53.3302996, - "lon": -1.7435829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S33 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392478672, - "lat": 51.2752927, - "lon": -1.0531676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG24 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392506695, - "lat": 51.5080054, - "lon": -0.2132263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 24D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 392506829, - "lat": 51.5088972, - "lon": -0.2158966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 392659844, - "lat": 53.7578435, - "lon": -2.7026727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-01-25", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "postal_code": "PR1", - "ref": "PR1 509;PR1 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392659852, - "lat": 50.8185829, - "lon": -0.5194744, - "tags": { - "amenity": "post_box", - "ref": "BN17 1889" - } -}, -{ - "type": "node", - "id": 392659853, - "lat": 50.8181026, - "lon": -0.5296044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN17 1456D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392659854, - "lat": 50.8123332, - "lon": -0.5414341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392668936, - "lat": 51.4538207, - "lon": -0.0676917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392668963, - "lat": 51.4557335, - "lon": -0.0657036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Damaged Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392683702, - "lat": 51.4552170, - "lon": -0.1993213, - "tags": { - "amenity": "post_box", - "ref": "SW18 29" - } -}, -{ - "type": "node", - "id": 392690190, - "lat": 53.1929420, - "lon": -2.8952482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH1 19 on King Street, Chester.", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH1 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on King Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 392690223, - "lat": 53.1891808, - "lon": -2.8913086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "description": "QEII Type C post box by Machan Company on Bridge Street, Chester, shared by CH1 104 and CH1 2001.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH1 104;CH1 2001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bridge Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 392690505, - "lat": 53.1886779, - "lon": -2.8846157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "George V wall box Type C CH1 64 at The Groves, Chester, by W. T. Allen & Co.", - "manufacturer": "W.T. Allen & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH1 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at The Groves, Chester.jpg" - } -}, -{ - "type": "node", - "id": 392690536, - "lat": 53.1984861, - "lon": -2.8659690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 92D" - } -}, -{ - "type": "node", - "id": 392698553, - "lat": 51.0597940, - "lon": -1.8025324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "SP2 147" - } -}, -{ - "type": "node", - "id": 392711272, - "lat": 54.8968904, - "lon": -1.3850502, - "tags": { - "amenity": "post_box", - "ref": "SR2 59" - } -}, -{ - "type": "node", - "id": 392711354, - "lat": 54.8995714, - "lon": -1.3870958, - "tags": { - "amenity": "post_box", - "ref": "SR2 23" - } -}, -{ - "type": "node", - "id": 392711398, - "lat": 54.9013384, - "lon": -1.3857454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR2 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392716087, - "lat": 51.7438439, - "lon": -2.2094380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2017-01-15" - } -}, -{ - "type": "node", - "id": 392716202, - "lat": 51.7445065, - "lon": -2.1986611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-15" - } -}, -{ - "type": "node", - "id": 392716223, - "lat": 51.7292145, - "lon": -2.2283953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL5", - "ref": "GL5 48" - } -}, -{ - "type": "node", - "id": 392716296, - "lat": 51.7187482, - "lon": -2.2304656, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "GL5", - "ref": "GL5 150" - } -}, -{ - "type": "node", - "id": 392716303, - "lat": 51.7169034, - "lon": -2.2339663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "note": "missing collection plate 2020-11-16 (ref was already here from a previous changeset). unclear if still in use - is on wall of former post office, but is still painted red and not obviously blocked.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GL5", - "ref": "GL5 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 392716312, - "lat": 51.6192191, - "lon": -2.3012973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GL12", - "ref": "GL12 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 392716334, - "lat": 51.6162187, - "lon": -2.3341109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GL12", - "ref": "GL12 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 392722304, - "lat": 54.8974543, - "lon": -1.3761890, - "tags": { - "amenity": "post_box", - "ref": "SR2 58" - } -}, -{ - "type": "node", - "id": 392725664, - "lat": 52.6206681, - "lon": -0.2696391, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 392735377, - "lat": 52.5956351, - "lon": -0.2121203, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 392807663, - "lat": 52.0906649, - "lon": -1.9384677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "post_box:manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "post_box:type": "wall", - "ref": "WR11 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 392870120, - "lat": 51.7491829, - "lon": -2.2784667, - "tags": { - "amenity": "post_box", - "postal_code": "GL10", - "ref": "GL10 156" - } -}, -{ - "type": "node", - "id": 392919409, - "lat": 54.9190040, - "lon": -1.3849699, - "tags": { - "amenity": "post_box", - "postal_code": "SR5", - "ref": "SR5 9", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 392919418, - "lat": 54.9307159, - "lon": -1.3748632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SR6", - "ref": "SR6 65", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 392939673, - "lat": 53.2045397, - "lon": -1.3744572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392944973, - "lat": 52.9242924, - "lon": -1.5154830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 574", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 392946924, - "lat": 53.2146424, - "lon": -1.3434415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 392955520, - "lat": 52.6939078, - "lon": -2.7283970, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY2 549", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 392955682, - "lat": 52.6925204, - "lon": -2.7328823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY2 613" - } -}, -{ - "type": "node", - "id": 392955704, - "lat": 52.6898840, - "lon": -2.7290254, - "tags": { - "amenity": "post_box", - "ref": "SY2 759" - } -}, -{ - "type": "node", - "id": 392955796, - "lat": 52.6954844, - "lon": -2.7405076, - "tags": { - "amenity": "post_box", - "ref": "SY3 802" - } -}, -{ - "type": "node", - "id": 393113079, - "lat": 51.8914465, - "lon": 0.9485853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO4 281" - } -}, -{ - "type": "node", - "id": 393132326, - "lat": 50.8297014, - "lon": -0.0646979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393132366, - "lat": 50.8330676, - "lon": -0.0611735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 89" - } -}, -{ - "type": "node", - "id": 393133268, - "lat": 50.8348964, - "lon": -0.0702524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 393134472, - "lat": 52.4861543, - "lon": -1.9074341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B3 264", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 393186937, - "lat": 52.7442917, - "lon": -2.9896878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY10 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393188068, - "lat": 54.9873647, - "lon": -1.4122632, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 393188918, - "lat": 54.9843322, - "lon": -1.4216876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 393226419, - "lat": 53.7495406, - "lon": -1.5258785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS10 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393226776, - "lat": 53.7464145, - "lon": -1.5210217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "royal_cypher=EIIR?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS10 74" - } -}, -{ - "type": "node", - "id": 393227204, - "lat": 54.9895804, - "lon": -1.4076811, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE33 73" - } -}, -{ - "type": "node", - "id": 393344884, - "lat": 53.7626411, - "lon": -1.5236521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 808", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 393344938, - "lat": 53.7570154, - "lon": -1.5222676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 17" - } -}, -{ - "type": "node", - "id": 393345005, - "lat": 53.7606186, - "lon": -1.5184430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 349" - } -}, -{ - "type": "node", - "id": 393361045, - "lat": 53.7030520, - "lon": -1.6905966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 131" - } -}, -{ - "type": "node", - "id": 393394607, - "lat": 51.2404591, - "lon": -0.2661182, - "tags": { - "amenity": "post_box", - "ref": "RH3 135", - "source": "Photo P141-0911" - } -}, -{ - "type": "node", - "id": 393401937, - "lat": 53.2720555, - "lon": -2.4934511, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW9 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393401939, - "lat": 53.5253387, - "lon": -2.2525030, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 393437920, - "lat": 51.5227972, - "lon": -1.7944216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SN4 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 393452363, - "lat": 52.7548650, - "lon": -3.8132859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393452433, - "lat": 52.7474455, - "lon": -3.8356587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393497888, - "lat": 52.5932792, - "lon": -2.1678520, - "tags": { - "amenity": "post_box", - "ref": "WV6 387" - } -}, -{ - "type": "node", - "id": 393511803, - "lat": 52.5653002, - "lon": -2.2903345, - "tags": { - "amenity": "post_box", - "ref": "WV6 108" - } -}, -{ - "type": "node", - "id": 393511926, - "lat": 52.5899474, - "lon": -2.2618019, - "tags": { - "amenity": "post_box", - "ref": "WV6 353" - } -}, -{ - "type": "node", - "id": 393512059, - "lat": 52.5881061, - "lon": -2.2623106, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV6 489" - } -}, -{ - "type": "node", - "id": 393512063, - "lat": 52.5889996, - "lon": -2.2643463, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV6 181" - } -}, -{ - "type": "node", - "id": 393512068, - "lat": 52.5868375, - "lon": -2.2674620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WV6 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 393523297, - "lat": 51.5656945, - "lon": -0.1010311, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 20", - "royal_cypher": "no", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 393525490, - "lat": 53.3095723, - "lon": -1.3668719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 1319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393536185, - "lat": 53.2752968, - "lon": -1.3487487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "S43 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 393538610, - "lat": 53.3125407, - "lon": -1.4132529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "ref": "S21 420", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 393672236, - "lat": 51.4353624, - "lon": -3.1679110, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 393719036, - "lat": 54.7553474, - "lon": -1.6406888, - "tags": { - "amenity": "post_box", - "ref": "DH7 17" - } -}, -{ - "type": "node", - "id": 393719954, - "lat": 54.7540557, - "lon": -1.6380309, - "tags": { - "amenity": "post_box", - "ele": "154.1759033", - "ref": "DH7 95" - } -}, -{ - "type": "node", - "id": 393723364, - "lat": 54.7473436, - "lon": -1.6196632, - "tags": { - "amenity": "post_box", - "ele": "93.1328125" - } -}, -{ - "type": "node", - "id": 393723840, - "lat": 55.8511342, - "lon": -4.2974790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G51", - "ref": "G51 422" - } -}, -{ - "type": "node", - "id": 393732847, - "lat": 52.9544175, - "lon": -1.1674984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "ele": "73.425781", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 4", - "ref:GB:uprn": "10025713359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 393739325, - "lat": 52.9628022, - "lon": -1.1546689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG1 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 393740295, - "lat": 52.9610548, - "lon": -1.1637361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "76.069458", - "post_box:type": "pillar", - "ref": "NG7 89D", - "ref:GB:uprn": "10015284744", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 393763215, - "lat": 54.9075809, - "lon": -1.3811041, - "tags": { - "amenity": "post_box", - "postal_code": "SR1", - "ref": "SR1 2", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393763244, - "lat": 54.9066419, - "lon": -1.3797687, - "tags": { - "amenity": "post_box", - "postal_code": "SR1", - "ref": "SR1 307", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393763245, - "lat": 54.9066581, - "lon": -1.3798083, - "tags": { - "amenity": "post_box", - "postal_code": "SR1", - "ref": "SR1 100", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393764151, - "lat": 53.2532242, - "lon": -2.8270505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 07:00, Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH2 59" - } -}, -{ - "type": "node", - "id": 393780926, - "lat": 54.9054603, - "lon": -1.3755044, - "tags": { - "amenity": "post_box", - "postal_code": "SR1", - "ref": "SR1 17", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393863970, - "lat": 54.9144788, - "lon": -1.3829556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR5 68", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393863976, - "lat": 54.9115261, - "lon": -1.3853542, - "tags": { - "amenity": "post_box", - "postal_code": "SR5", - "ref": "SR5 289", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393874235, - "lat": 54.9408182, - "lon": -1.3666546, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SR6", - "ref": "SR6 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393912211, - "lat": 54.9345983, - "lon": -1.3871577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SR6", - "ref": "SR6 257", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393912223, - "lat": 54.9368220, - "lon": -1.3918627, - "tags": { - "amenity": "post_box", - "postal_code": "SR6", - "ref": "SR6 241", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393912237, - "lat": 54.9292798, - "lon": -1.3855966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SR6", - "ref": "SR6 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393912242, - "lat": 54.9333083, - "lon": -1.3777778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SR6", - "ref": "SR6 189", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 393921003, - "lat": 50.8643611, - "lon": -1.4096126, - "tags": { - "amenity": "post_box", - "ref": "SO45 630D" - } -}, -{ - "type": "node", - "id": 393939714, - "lat": 51.1294633, - "lon": -0.2092852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH11 171" - } -}, -{ - "type": "node", - "id": 393954472, - "lat": 51.3939060, - "lon": -1.2437230, - "tags": { - "amenity": "post_box", - "mapillary": "693687188317532", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "RG19", - "ref": "RG19 309", - "survey:date": "2022-03-13" - } -}, -{ - "type": "node", - "id": 393954473, - "lat": 51.3939448, - "lon": -1.2437552, - "tags": { - "amenity": "post_box", - "mapillary": "436392561378007", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG19", - "ref": "RG19 28", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 393956626, - "lat": 51.4037479, - "lon": -1.2522930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG18", - "ref": "RG18 185" - } -}, -{ - "type": "node", - "id": 393981486, - "lat": 51.4001078, - "lon": -1.2377788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394000683, - "lat": 52.4839214, - "lon": -1.9033997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "now a parcel box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B3 9003P", - "royal_cypher": "no", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 394000685, - "lat": 52.4839414, - "lon": -1.9034516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B3 810", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 394022390, - "lat": 51.3165425, - "lon": -2.2128616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394033600, - "lat": 51.3990439, - "lon": -1.2946034, - "tags": { - "amenity": "post_box", - "note": "this post box has no visible ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 394094517, - "lat": 51.3764606, - "lon": -1.0621904, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "RG7", - "ref": "RG7 257;RG7 2570", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394107559, - "lat": 51.3911570, - "lon": -1.0041500, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394138612, - "lat": 51.6566466, - "lon": -2.4273226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL11", - "ref": "GL11 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-05", - "wikimedia_commons": "File:Welcome Break, Michaelwood Services M5 south side - geograph.org.uk - 3269745.jpg" - } -}, -{ - "type": "node", - "id": 394139321, - "lat": 50.9114831, - "lon": -1.4157604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394139883, - "lat": 51.4677526, - "lon": -1.4404447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "postal_code": "RG17", - "ref": "RG17 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 394139886, - "lat": 51.4332865, - "lon": -1.3849300, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394139891, - "lat": 51.3861428, - "lon": -1.3082685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG19", - "ref": "RG19 62" - } -}, -{ - "type": "node", - "id": 394139906, - "lat": 51.3856584, - "lon": -1.3030055, - "tags": { - "amenity": "post_box", - "postal_code": "RG19", - "ref": "RG19 201" - } -}, -{ - "type": "node", - "id": 394145393, - "lat": 51.8173289, - "lon": -3.6769048, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SA9 563", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394145396, - "lat": 51.8284765, - "lon": -3.6642559, - "tags": { - "amenity": "post_box", - "ref": "SA9 560" - } -}, -{ - "type": "node", - "id": 394160010, - "lat": 52.6614640, - "lon": -1.0892745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE4 787" - } -}, -{ - "type": "node", - "id": 394179276, - "lat": 52.0617871, - "lon": -2.3468222, - "tags": { - "amenity": "post_box", - "collection_plate": "uncoded", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "old_ref": "M051 Wynds Point, Colwall", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "WR13 51D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394180767, - "lat": 50.8831698, - "lon": -1.7354757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394214935, - "lat": 50.6900417, - "lon": -3.6820171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 394562122, - "lat": 50.5957277, - "lon": -1.2031448, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 212", - "ref:GB:uprn": "10015296676", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po38-1aa/000PO38212" - } -}, -{ - "type": "node", - "id": 394574376, - "lat": 52.4415946, - "lon": -2.6031257, - "tags": { - "amenity": "post_box", - "postal_code": "SY8", - "ref": "SY8 27", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 394574390, - "lat": 52.4629821, - "lon": -2.5622219, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WV16", - "ref": "WV16 98", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 394581326, - "lat": 52.3370457, - "lon": -0.0622364, - "tags": { - "amenity": "post_box", - "ref": "PE27 242" - } -}, -{ - "type": "node", - "id": 394608375, - "lat": 52.8186842, - "lon": -2.1215205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST16 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394631959, - "lat": 57.3207566, - "lon": -5.6508956, - "tags": { - "amenity": "post_box", - "ref": "IV40 25", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 394661191, - "lat": 57.1837609, - "lon": -5.8198893, - "tags": { - "amenity": "post_box", - "ref": "IV43 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394661964, - "lat": 57.0857440, - "lon": -5.8805107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "note": "reference not visible", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394662016, - "lat": 57.0935433, - "lon": -5.8692022, - "tags": { - "amenity": "post_box", - "ref": "IV44 106", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394696000, - "lat": 57.1168870, - "lon": -5.9891603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV44 113", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394696001, - "lat": 57.1076890, - "lon": -5.9846154, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 394741837, - "lat": 51.0862806, - "lon": -1.3485338, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO22 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 394822454, - "lat": 51.5778168, - "lon": -0.1042274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 19", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 394838943, - "lat": 50.8391781, - "lon": -0.0690444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-02-04", - "old_ref": "BN2 80", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394839271, - "lat": 50.8382120, - "lon": -0.0645592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394860225, - "lat": 51.1145927, - "lon": -0.2029301, - "tags": { - "amenity": "post_box", - "ref": "RH11 27", - "source_ref": "THIS IS THE REF ON THE BOX. Not from Dracos.co.uk, which is wrong." - } -}, -{ - "type": "node", - "id": 394860247, - "lat": 51.1127119, - "lon": -0.1924343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH11 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 394860251, - "lat": 51.1109573, - "lon": -0.1908073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 394860266, - "lat": 51.1077299, - "lon": -0.1913940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH10 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 394860272, - "lat": 51.1100875, - "lon": -0.1991142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 31" - } -}, -{ - "type": "node", - "id": 395015555, - "lat": 51.5123015, - "lon": -0.2123767, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W11 38" - } -}, -{ - "type": "node", - "id": 395034809, - "lat": 51.5118740, - "lon": -0.2104176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "W11 4D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 395214493, - "lat": 51.4381056, - "lon": -3.1717551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF64 301", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 395337310, - "lat": 53.4028491, - "lon": -2.6407426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 357", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 395351615, - "lat": 51.6023911, - "lon": -1.4445896, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 395381588, - "lat": 51.0389911, - "lon": -0.4513455, - "tags": { - "amenity": "post_box", - "ref": "RH14 177" - } -}, -{ - "type": "node", - "id": 395480142, - "lat": 57.4803054, - "lon": -4.4661138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV4 137", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 395517223, - "lat": 53.7262328, - "lon": -1.6599352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 395559478, - "lat": 51.5387679, - "lon": -2.4208190, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 396" - } -}, -{ - "type": "node", - "id": 395559502, - "lat": 51.5321319, - "lon": -2.4037157, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 295" - } -}, -{ - "type": "node", - "id": 395560154, - "lat": 51.5324184, - "lon": -2.4298917, - "tags": { - "amenity": "post_box", - "postal_code": "BS37", - "ref": "BS37 588" - } -}, -{ - "type": "node", - "id": 395560307, - "lat": 51.5292478, - "lon": -2.4245070, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "BS37", - "ref": "BS37 1125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 395560319, - "lat": 51.5416712, - "lon": -2.4176217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "collection_times_checked": "2016-01-06", - "note": "indoor plastic pillar box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS37 681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 395731435, - "lat": 56.0412626, - "lon": -3.3427035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 195", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 395934030, - "lat": 54.3996885, - "lon": -1.2423221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL6 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 396034472, - "lat": 54.4097555, - "lon": -1.2647252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL6 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 398209832, - "lat": 53.7440188, - "lon": -1.4923716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 257", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 398343048, - "lat": 52.9131338, - "lon": -1.2083086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG9 698D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 399078224, - "lat": 57.6044397, - "lon": -5.3021503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV22 252", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 399236124, - "lat": 53.4030098, - "lon": -2.6474596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 349", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 399288014, - "lat": 53.7616375, - "lon": -0.1027670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 399288321, - "lat": 53.7610274, - "lon": -0.1138504, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 399288393, - "lat": 53.7552945, - "lon": -0.0441221, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 399288931, - "lat": 53.7287910, - "lon": -0.0416132, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 399288935, - "lat": 53.7227675, - "lon": -0.0702791, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 399322881, - "lat": 51.1033496, - "lon": -0.1896371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 399322895, - "lat": 51.1044006, - "lon": -0.1932645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 399616605, - "lat": 51.8865774, - "lon": 0.8682608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 278" - } -}, -{ - "type": "node", - "id": 399616607, - "lat": 51.8916154, - "lon": 0.8705606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 298", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 399616644, - "lat": 51.8948614, - "lon": 0.8663392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 463" - } -}, -{ - "type": "node", - "id": 399760047, - "lat": 54.8003298, - "lon": -1.5083589, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 399866120, - "lat": 50.7334608, - "lon": -3.4364809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "mapillary": "476327764517246", - "name": "Clyst Honiton Old Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "EX5 2NJ", - "ref": "EX5 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 399873353, - "lat": 54.8074129, - "lon": -1.4758947, - "tags": { - "amenity": "post_box", - "ref": "DH5 138" - } -}, -{ - "type": "node", - "id": 399873376, - "lat": 54.7969165, - "lon": -1.4923582, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DH6 31" - } -}, -{ - "type": "node", - "id": 399873428, - "lat": 54.7926409, - "lon": -1.4891563, - "tags": { - "amenity": "post_box", - "ref": "DH6 91" - } -}, -{ - "type": "node", - "id": 399873550, - "lat": 54.7891222, - "lon": -1.4879640, - "tags": { - "amenity": "post_box", - "ref": "DH6 244D" - } -}, -{ - "type": "node", - "id": 399981567, - "lat": 52.4425756, - "lon": -2.0739474, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B64 1334", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 400044430, - "lat": 50.7295196, - "lon": -3.4103285, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 400710831, - "lat": 53.0300021, - "lon": -2.1786908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 201" - } -}, -{ - "type": "node", - "id": 400720683, - "lat": 54.5473205, - "lon": -1.3210005, - "tags": { - "amenity": "post_box", - "ref": "TS18 603" - } -}, -{ - "type": "node", - "id": 400723898, - "lat": 54.5429570, - "lon": -1.3324970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 400731405, - "lat": 54.5241528, - "lon": -1.3087723, - "tags": { - "amenity": "post_box", - "ref": "TS17 587" - } -}, -{ - "type": "node", - "id": 400861603, - "lat": 51.3601337, - "lon": -0.6997793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU19 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 400962830, - "lat": 53.7776209, - "lon": -1.5541621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 400962832, - "lat": 53.7796657, - "lon": -1.5534586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "fixme": "box re/moved?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 241" - } -}, -{ - "type": "node", - "id": 401244848, - "lat": 51.8896695, - "lon": 0.8812650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO3 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401244870, - "lat": 51.8743608, - "lon": 0.8458692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 173" - } -}, -{ - "type": "node", - "id": 401244884, - "lat": 51.8783245, - "lon": 0.8390943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 462" - } -}, -{ - "type": "node", - "id": 401244888, - "lat": 51.8792724, - "lon": 0.8329978, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 18" - } -}, -{ - "type": "node", - "id": 401244900, - "lat": 51.8893228, - "lon": 0.8329218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 31" - } -}, -{ - "type": "node", - "id": 401244901, - "lat": 51.8801547, - "lon": 0.7968034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO6 291", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 401244911, - "lat": 51.8823345, - "lon": 0.8101068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CO3 195" - } -}, -{ - "type": "node", - "id": 401244936, - "lat": 51.8845455, - "lon": 0.8446889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO3 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401244938, - "lat": 51.8641717, - "lon": 0.8352897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 235" - } -}, -{ - "type": "node", - "id": 401256631, - "lat": 50.8882315, - "lon": -0.3289194, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7-LC", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN44 1568", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 401256639, - "lat": 50.9210977, - "lon": -0.3223266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "BN44 1563" - } -}, -{ - "type": "node", - "id": 401274483, - "lat": 51.8817755, - "lon": 0.8800806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 55" - } -}, -{ - "type": "node", - "id": 401274485, - "lat": 51.8927736, - "lon": 0.8368096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 292" - } -}, -{ - "type": "node", - "id": 401274486, - "lat": 51.8923577, - "lon": 0.8305262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 350" - } -}, -{ - "type": "node", - "id": 401274487, - "lat": 51.8896508, - "lon": 0.8412870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 414" - } -}, -{ - "type": "node", - "id": 401274488, - "lat": 51.9005587, - "lon": 0.8261757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 401274491, - "lat": 51.8958130, - "lon": 0.8230355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 191" - } -}, -{ - "type": "node", - "id": 401274492, - "lat": 51.8690262, - "lon": 0.7989142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO6 331" - } -}, -{ - "type": "node", - "id": 401306150, - "lat": 53.1870285, - "lon": -2.5033340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CW7 193D" - } -}, -{ - "type": "node", - "id": 401323276, - "lat": 53.7442949, - "lon": -1.6237355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 713", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401323332, - "lat": 53.7484088, - "lon": -1.6278395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LS27 12" - } -}, -{ - "type": "node", - "id": 401349051, - "lat": 53.7511681, - "lon": -1.6339718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401349104, - "lat": 53.7575459, - "lon": -1.6327613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 723", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401358692, - "lat": 53.1220406, - "lon": -1.2528098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 401362057, - "lat": 52.0687998, - "lon": -0.6729921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK16 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 401576413, - "lat": 52.0453815, - "lon": -0.7678745, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-09", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK13 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401590235, - "lat": 52.0394064, - "lon": -0.8098685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK8 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 401594007, - "lat": 52.0433565, - "lon": -0.7735468, - "tags": { - "amenity": "post_box", - "ref": "MK13 443" - } -}, -{ - "type": "node", - "id": 401616928, - "lat": 52.0515457, - "lon": -0.7513944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 401720528, - "lat": 51.7295785, - "lon": -1.2171105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 621" - } -}, -{ - "type": "node", - "id": 401740600, - "lat": 50.8331791, - "lon": 0.4275107, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cooden Sea Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 49", - "ref:GB:uprn": "10015430847", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Cooden Sea Road opp Hotel TN3949.jpg" - } -}, -{ - "type": "node", - "id": 401769797, - "lat": 53.7581806, - "lon": -1.6283042, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 592", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 401770120, - "lat": 53.7631794, - "lon": -1.6336876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 640D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 401770176, - "lat": 53.7604997, - "lon": -1.6359499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401787053, - "lat": 50.9582366, - "lon": -0.4711645, - "tags": { - "amenity": "post_box", - "fixme": "check position", - "post_box:type": "lamp", - "ref": "RH20 68", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 401794770, - "lat": 52.6176495, - "lon": 1.1969878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 910" - } -}, -{ - "type": "node", - "id": 401794790, - "lat": 52.6150639, - "lon": 1.1897298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 914D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401794818, - "lat": 52.6166176, - "lon": 1.1435694, - "tags": { - "amenity": "post_box", - "ref": "NR9 904" - } -}, -{ - "type": "node", - "id": 401794828, - "lat": 52.6066938, - "lon": 1.1512165, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NR9 906", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401798619, - "lat": 52.0180232, - "lon": -0.7912112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 401806714, - "lat": 50.9544463, - "lon": -1.2084343, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO32 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 401806717, - "lat": 50.9655286, - "lon": -1.2085898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO32 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 401806738, - "lat": 50.9719108, - "lon": -1.1963758, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO32 491", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 401806944, - "lat": 50.9623823, - "lon": -1.1787853, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 401949645, - "lat": 51.2407948, - "lon": -1.3707375, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 401971314, - "lat": 51.5994192, - "lon": -1.3095923, - "tags": { - "amenity": "post_box", - "mapillary": "500372914959086", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "OX11", - "ref": "OX11 1032", - "survey:date": "2020-02-14" - } -}, -{ - "type": "node", - "id": 401971317, - "lat": 51.8064471, - "lon": -1.3015553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "OX5", - "ref": "OX5 922", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-01-07" - } -}, -{ - "type": "node", - "id": 401971319, - "lat": 51.8218827, - "lon": -1.3183215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "OX5", - "ref": "OX5 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 401971320, - "lat": 51.8926227, - "lon": -1.4930866, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "OX7", - "ref": "OX7 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 401971321, - "lat": 51.8758018, - "lon": -1.4789753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "OX7", - "ref": "OX7 122" - } -}, -{ - "type": "node", - "id": 402346485, - "lat": 52.0089809, - "lon": -0.7724126, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "MK4", - "ref": "MK4 439", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 402381830, - "lat": 51.5111358, - "lon": -0.2346143, - "tags": { - "amenity": "post_box", - "ref": "W12 43" - } -}, -{ - "type": "node", - "id": 402384141, - "lat": 51.5057562, - "lon": -0.2271421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 402384534, - "lat": 51.5065787, - "lon": -0.2345011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 402391502, - "lat": 51.5064240, - "lon": -0.2322836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 402408444, - "lat": 52.0593252, - "lon": -0.7855799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 402697414, - "lat": 52.0590489, - "lon": -0.7798183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 402707137, - "lat": 52.0564095, - "lon": -0.7441001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 402771265, - "lat": 52.4603119, - "lon": -2.0566060, - "tags": { - "amenity": "post_box", - "ref": "B63 1235", - "source": "survey" - } -}, -{ - "type": "node", - "id": 402813629, - "lat": 53.7657286, - "lon": -1.5787238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate:date": "2017-03-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 1006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 402900708, - "lat": 55.7174374, - "lon": -2.5884122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1214239865951287", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD3 43", - "survey:date": "2023-05-28" - } -}, -{ - "type": "node", - "id": 402900792, - "lat": 55.7060573, - "lon": -2.4653148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD10 9", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 402900794, - "lat": 55.7066074, - "lon": -2.4618978, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TD10 23" - } -}, -{ - "type": "node", - "id": 402973239, - "lat": 53.7701928, - "lon": -1.5882250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS11 644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 402973279, - "lat": 53.7658813, - "lon": -1.5825536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS11 1003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 402989801, - "lat": 55.7068704, - "lon": -2.4564771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD10 8" - } -}, -{ - "type": "node", - "id": 403000781, - "lat": 53.7110916, - "lon": -0.0364056, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 403000933, - "lat": 53.7020709, - "lon": -0.0327454, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 403001092, - "lat": 53.7380023, - "lon": -0.0117127, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 403001431, - "lat": 53.7612637, - "lon": -0.0132094, - "tags": { - "amenity": "post_box", - "post_box:type": "phone_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 403001445, - "lat": 53.7670100, - "lon": -0.0206905, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU12 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 403021887, - "lat": 52.0634457, - "lon": -0.7808388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403097190, - "lat": 53.7750401, - "lon": -1.5874326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 403097213, - "lat": 53.7647880, - "lon": -1.6087107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 375" - } -}, -{ - "type": "node", - "id": 403169710, - "lat": 54.8389269, - "lon": -1.9282583, - "tags": { - "amenity": "post_box", - "ref": "DH8 165" - } -}, -{ - "type": "node", - "id": 403209987, - "lat": 52.0250253, - "lon": -0.6743754, - "tags": { - "amenity": "post_box", - "ref": "MK17 74" - } -}, -{ - "type": "node", - "id": 403210043, - "lat": 52.0228977, - "lon": -0.6825794, - "tags": { - "amenity": "post_box", - "ref": "MK7 251" - } -}, -{ - "type": "node", - "id": 403267560, - "lat": 52.0250491, - "lon": -0.6861187, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "MK7 453" - } -}, -{ - "type": "node", - "id": 403310737, - "lat": 52.0533657, - "lon": -0.7469663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403319219, - "lat": 51.1053331, - "lon": -0.1489141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "name": "Lucerne Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403328770, - "lat": 52.0168618, - "lon": -0.6924140, - "tags": { - "amenity": "post_box", - "ref": "MK7 426" - } -}, -{ - "type": "node", - "id": 403331651, - "lat": 51.1057248, - "lon": -0.1843429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "name": "Forester Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403334264, - "lat": 52.0174392, - "lon": -0.7357488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403336289, - "lat": 52.0206120, - "lon": -0.6977177, - "tags": { - "amenity": "post_box", - "mapillary": "937574447059220", - "post_box:type": "pillar", - "ref": "MK7 8", - "survey:date": "2020-10-17" - } -}, -{ - "type": "node", - "id": 403362811, - "lat": 52.0228258, - "lon": -0.6941721, - "tags": { - "amenity": "post_box", - "ref": "MK7 432" - } -}, -{ - "type": "node", - "id": 403366505, - "lat": 52.0179104, - "lon": -0.6962708, - "tags": { - "amenity": "post_box", - "ref": "MK7 431" - } -}, -{ - "type": "node", - "id": 403366508, - "lat": 52.0155887, - "lon": -0.6873752, - "tags": { - "amenity": "post_box", - "ref": "MK7 437" - } -}, -{ - "type": "node", - "id": 403422967, - "lat": 51.4750900, - "lon": -0.3366761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW7 265" - } -}, -{ - "type": "node", - "id": 403422970, - "lat": 51.4750787, - "lon": -0.3378713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW7 250", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 403454618, - "lat": 51.5554063, - "lon": -0.1156318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "note": "Missing front panel giving reference number etc.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 403630738, - "lat": 52.0662268, - "lon": -0.7855098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK13 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403638389, - "lat": 52.0673037, - "lon": -0.7318637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403638670, - "lat": 52.0624559, - "lon": -0.7195596, - "tags": { - "amenity": "post_box", - "ref": "MK15 142" - } -}, -{ - "type": "node", - "id": 403821200, - "lat": 55.9041720, - "lon": -3.1470194, - "tags": { - "amenity": "post_box", - "postal_code": "EH17", - "ref": "EH17 471" - } -}, -{ - "type": "node", - "id": 403850602, - "lat": 51.4533264, - "lon": -0.0571765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403850647, - "lat": 51.4507736, - "lon": -0.0580076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 403876887, - "lat": 54.5467951, - "lon": -3.1559113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "78.4727783", - "mapillary": "1447788685778044", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA12 118", - "survey:date": "2023-08-16" - } -}, -{ - "type": "node", - "id": 403895789, - "lat": 52.0012991, - "lon": -0.8042582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK4 539" - } -}, -{ - "type": "node", - "id": 403909420, - "lat": 51.5886984, - "lon": -1.7588512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 327" - } -}, -{ - "type": "node", - "id": 403916169, - "lat": 51.5880335, - "lon": -1.7749051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 331" - } -}, -{ - "type": "node", - "id": 403993432, - "lat": 52.0052364, - "lon": -0.7652138, - "tags": { - "amenity": "post_box", - "ref": "MK4 405", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 403993482, - "lat": 52.0084409, - "lon": -0.7670792, - "tags": { - "amenity": "post_box", - "postal_code": "MK4", - "ref": "MK4 440", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 403993599, - "lat": 52.0091062, - "lon": -0.7574320, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "MK4", - "ref": "MK4 353", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 404261554, - "lat": 52.0226097, - "lon": -0.6890379, - "tags": { - "amenity": "post_box", - "ref": "MK7 470" - } -}, -{ - "type": "node", - "id": 404331096, - "lat": 52.0257410, - "lon": -0.6961765, - "tags": { - "amenity": "post_box", - "ref": "MK7 446" - } -}, -{ - "type": "node", - "id": 404396953, - "lat": 53.4916397, - "lon": -1.4894665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S75 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 404403789, - "lat": 52.0870501, - "lon": -0.7122474, - "tags": { - "amenity": "post_box", - "ref": "MK16 368" - } -}, -{ - "type": "node", - "id": 404403988, - "lat": 52.0850877, - "lon": -0.7179220, - "tags": { - "amenity": "post_box", - "ref": "MK16 151" - } -}, -{ - "type": "node", - "id": 404404024, - "lat": 52.0838604, - "lon": -0.7136939, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "MK16 182" - } -}, -{ - "type": "node", - "id": 404404032, - "lat": 52.0818403, - "lon": -0.7099422, - "tags": { - "amenity": "post_box", - "ref": "MK16 511" - } -}, -{ - "type": "node", - "id": 404404036, - "lat": 52.0815084, - "lon": -0.7100892, - "tags": { - "amenity": "post_box", - "ref": "MK16 156" - } -}, -{ - "type": "node", - "id": 404467038, - "lat": 51.0789000, - "lon": -0.3164757, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "RH12 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 404545466, - "lat": 52.0640991, - "lon": -0.7380383, - "tags": { - "amenity": "post_box", - "ref": "MK15 428" - } -}, -{ - "type": "node", - "id": 404595077, - "lat": 53.6797787, - "lon": -1.5106048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 404624889, - "lat": 52.0189313, - "lon": -0.7299090, - "tags": { - "amenity": "post_box", - "ref": "MK6 320" - } -}, -{ - "type": "node", - "id": 404707968, - "lat": 52.0293443, - "lon": -0.7479602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 404723696, - "lat": 52.0425078, - "lon": -0.7598327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 423", - "source": "survey" - } -}, -{ - "type": "node", - "id": 404728632, - "lat": 52.0259795, - "lon": -0.7556159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 404735610, - "lat": 52.0139953, - "lon": -0.7001113, - "tags": { - "amenity": "post_box", - "ref": "MK7 455" - } -}, -{ - "type": "node", - "id": 404735789, - "lat": 52.0079928, - "lon": -0.6979098, - "tags": { - "amenity": "post_box", - "ref": "MK7 477" - } -}, -{ - "type": "node", - "id": 404742461, - "lat": 52.0104109, - "lon": -0.6969073, - "tags": { - "amenity": "post_box", - "ref": "MK7 49" - } -}, -{ - "type": "node", - "id": 404744767, - "lat": 55.8992113, - "lon": -4.1111788, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 404790645, - "lat": 52.0597501, - "lon": -0.7540117, - "tags": { - "amenity": "post_box", - "ref": "MK14 347" - } -}, -{ - "type": "node", - "id": 405083826, - "lat": 52.0315903, - "lon": -0.7349618, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12noon", - "postal_code": "MK6", - "ref": "MK6 321" - } -}, -{ - "type": "node", - "id": 405466758, - "lat": 51.0749483, - "lon": 1.0251210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CT21", - "ref": "CT21 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 406063805, - "lat": 51.4173971, - "lon": -0.2974237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 406154045, - "lat": 51.4356532, - "lon": -0.3118728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TW10 43", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 406364535, - "lat": 53.7088773, - "lon": -1.6213589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 88" - } -}, -{ - "type": "node", - "id": 406397051, - "lat": 53.7010429, - "lon": -1.6352858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 406499212, - "lat": 53.3992682, - "lon": -2.6506247, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA5 351", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 406499491, - "lat": 53.3906363, - "lon": -2.6371913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 9", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 406509830, - "lat": 53.3919868, - "lon": -2.6280987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 406513782, - "lat": 53.3942669, - "lon": -2.6305901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 244", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 406652633, - "lat": 51.3488668, - "lon": -1.3914926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 406670836, - "lat": 52.0221496, - "lon": -0.7670032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 406711084, - "lat": 52.0570571, - "lon": -0.7394776, - "tags": { - "amenity": "post_box", - "ref": "MK15 399" - } -}, -{ - "type": "node", - "id": 406722776, - "lat": 52.0305057, - "lon": -0.7592058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 406734965, - "lat": 52.0160005, - "lon": -0.7764203, - "tags": { - "amenity": "post_box", - "ref": "MK5 451" - } -}, -{ - "type": "node", - "id": 406739345, - "lat": 53.0251472, - "lon": -1.0516372, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 406763933, - "lat": 53.0231684, - "lon": -1.0555171, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 407040064, - "lat": 51.2925717, - "lon": -1.0532507, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "RG24", - "ref": "RG24 319" - } -}, -{ - "type": "node", - "id": 407138565, - "lat": 53.2119624, - "lon": -1.2895645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 407145131, - "lat": 53.2085817, - "lon": -1.2892704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 407205463, - "lat": 51.4188118, - "lon": -0.2961105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 407943867, - "lat": 51.6694308, - "lon": -3.1352252, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 408118262, - "lat": 51.5343989, - "lon": -0.1934540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 408128503, - "lat": 51.5342516, - "lon": -0.1858164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NW8 24D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 408157485, - "lat": 51.5720488, - "lon": -1.7358565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN3 367" - } -}, -{ - "type": "node", - "id": 408158064, - "lat": 51.5733478, - "lon": -1.7485484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 46" - } -}, -{ - "type": "node", - "id": 408423602, - "lat": 51.0589422, - "lon": -0.3416977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 408423810, - "lat": 51.0598287, - "lon": -0.3494409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 408429045, - "lat": 53.6889034, - "lon": -0.0321682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 408429126, - "lat": 53.6838669, - "lon": -0.0120872, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 408429706, - "lat": 53.6997240, - "lon": 0.0610140, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 408429792, - "lat": 53.6877820, - "lon": 0.0675537, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 408430079, - "lat": 51.0682777, - "lon": -0.3158280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mailtypes": "franked", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "RH13 5P" - } -}, -{ - "type": "node", - "id": 408436167, - "lat": 51.0389819, - "lon": -0.3462897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH13 142" - } -}, -{ - "type": "node", - "id": 408436451, - "lat": 52.0447381, - "lon": -0.7852360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 408436882, - "lat": 52.0484562, - "lon": -0.7879943, - "tags": { - "amenity": "post_box", - "ref": "MK13 169" - } -}, -{ - "type": "node", - "id": 408436945, - "lat": 52.0484791, - "lon": -0.7820237, - "tags": { - "amenity": "post_box", - "ref": "MK13 384" - } -}, -{ - "type": "node", - "id": 408437092, - "lat": 52.0500402, - "lon": -0.7882453, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-13", - "ref": "MK13 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 408474280, - "lat": 53.3971915, - "lon": -2.6686275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA5 369", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 408475168, - "lat": 53.3931563, - "lon": -2.6661608, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA5 83", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 408475433, - "lat": 53.3953245, - "lon": -2.6583721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WA5 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 408475652, - "lat": 53.3908639, - "lon": -2.6492982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 408479667, - "lat": 52.0101173, - "lon": -0.7257910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 570", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 408482826, - "lat": 51.2951524, - "lon": -1.0584982, - "tags": { - "amenity": "post_box", - "mapillary": "377383260409736", - "post_box:type": "pillar", - "postal_code": "RG24", - "ref": "RG24 330", - "survey:date": "2021-07-05" - } -}, -{ - "type": "node", - "id": 408486457, - "lat": 53.6633858, - "lon": -1.5055219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 299" - } -}, -{ - "type": "node", - "id": 408496484, - "lat": 57.4761698, - "lon": -4.2176508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV2", - "ref": "IV2 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 408496487, - "lat": 57.4709359, - "lon": -4.2223173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV2", - "ref": "IV2 8D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 408496488, - "lat": 57.4765062, - "lon": -4.2228740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV2", - "ref": "IV2 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 408561650, - "lat": 51.5480240, - "lon": -0.2196213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 30", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 408561713, - "lat": 51.5458734, - "lon": -0.2157810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW6 53", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 408561747, - "lat": 51.5470054, - "lon": -0.2123490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 45", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 408615997, - "lat": 51.5408412, - "lon": 0.0742557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "IG11 4D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 408749452, - "lat": 53.4116647, - "lon": -2.6374960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 332", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 408757637, - "lat": 51.6163467, - "lon": -3.8076788, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 408764536, - "lat": 50.8038795, - "lon": -0.5168529, - "tags": { - "amenity": "post_box", - "ref": "BN16 1432" - } -}, -{ - "type": "node", - "id": 408764538, - "lat": 50.8123493, - "lon": -0.5087976, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN16 1443D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 408792237, - "lat": 52.4668261, - "lon": -1.9354252, - "tags": { - "amenity": "post_box", - "ref": "B15 1195" - } -}, -{ - "type": "node", - "id": 408959502, - "lat": 51.5564773, - "lon": 0.0071872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 30", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 409017347, - "lat": 53.7064333, - "lon": -1.0229215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 409031460, - "lat": 51.1813696, - "lon": -3.4467770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 56", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 409097364, - "lat": 51.2973493, - "lon": -1.0502054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "RG24", - "ref": "RG24 340" - } -}, -{ - "type": "node", - "id": 409098887, - "lat": 51.0327429, - "lon": -0.3420991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH13 243" - } -}, -{ - "type": "node", - "id": 409111132, - "lat": 51.0628166, - "lon": -0.3396572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 225" - } -}, -{ - "type": "node", - "id": 409111141, - "lat": 51.0655827, - "lon": -0.3438472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 409111224, - "lat": 51.0581344, - "lon": -0.3454465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RH12 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 409111815, - "lat": 51.1074020, - "lon": -0.1530935, - "tags": { - "amenity": "post_box", - "ref": "RH10 165" - } -}, -{ - "type": "node", - "id": 409133024, - "lat": 50.4782347, - "lon": -3.5204093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ1", - "ref": "TQ1 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 409159034, - "lat": 50.4849010, - "lon": -3.5332456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 409192683, - "lat": 50.4847130, - "lon": -3.5491663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 418;TQ2 4180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 409214776, - "lat": 52.0708021, - "lon": -0.8568740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK19 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 409220338, - "lat": 53.6815944, - "lon": -1.5040842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 409227629, - "lat": 51.5135220, - "lon": -0.0055399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 409227646, - "lat": 51.5133962, - "lon": -0.0035573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 409290456, - "lat": 51.5442142, - "lon": -0.2104248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 59D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 409290467, - "lat": 51.5461941, - "lon": -0.2059436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 409290469, - "lat": 51.5448358, - "lon": -0.2076924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 11D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 409456841, - "lat": 52.9808570, - "lon": -2.1991401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 288" - } -}, -{ - "type": "node", - "id": 409459746, - "lat": 52.4374863, - "lon": -1.8051756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B92 168", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 409639744, - "lat": 53.4069793, - "lon": -2.6295729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 321", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 409639746, - "lat": 53.4080759, - "lon": -2.6294297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "WA5 120" - } -}, -{ - "type": "node", - "id": 409679978, - "lat": 50.4911194, - "lon": -3.5311074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ2", - "ref": "TQ2 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 409684019, - "lat": 50.4949240, - "lon": -3.5362848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ2", - "ref": "TQ2 86D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 409697286, - "lat": 53.2594895, - "lon": -1.9134469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "mapillary": "553982162350339", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK17 999", - "royal_cypher": "EIIR", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 409697395, - "lat": 53.2662754, - "lon": -1.9148909, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 409697405, - "lat": 53.2621778, - "lon": -1.9254086, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 409737706, - "lat": 52.9972180, - "lon": -2.8355183, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY14 727" - } -}, -{ - "type": "node", - "id": 409761691, - "lat": 55.6405955, - "lon": -2.2789900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD12 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 409761859, - "lat": 55.6388412, - "lon": -2.3203791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD12 47", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 409772472, - "lat": 51.0744577, - "lon": -0.2935539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 409839842, - "lat": 53.3271014, - "lon": -2.2378813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SK9 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 409894758, - "lat": 51.4976084, - "lon": -0.1258281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-22", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "information_plate_date": "2016-08-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 45;SW1P 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 410068597, - "lat": 50.8282007, - "lon": -0.0722147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 85D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 410068798, - "lat": 50.8367842, - "lon": -0.0659597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 90", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 410102236, - "lat": 53.7687054, - "lon": -1.5328677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410102403, - "lat": 53.7698020, - "lon": -1.5209068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS10 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410133796, - "lat": 54.7164736, - "lon": -1.5299493, - "tags": { - "amenity": "post_box", - "ref": "DH6 338" - } -}, -{ - "type": "node", - "id": 410141383, - "lat": 51.4955214, - "lon": -0.2407531, - "tags": { - "amenity": "post_box", - "ref": "W6 9" - } -}, -{ - "type": "node", - "id": 410141399, - "lat": 51.4955366, - "lon": -0.2449631, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W6 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 410172421, - "lat": 53.0373401, - "lon": -2.8389781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 410212082, - "lat": 51.5360172, - "lon": -1.7849886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN4 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410220531, - "lat": 50.8639208, - "lon": -0.4015985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1789D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410263827, - "lat": 52.0399501, - "lon": -0.7618032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK9 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410273766, - "lat": 53.3179308, - "lon": -2.2609537, - "tags": { - "amenity": "post_box", - "ref": "SK9 91" - } -}, -{ - "type": "node", - "id": 410286019, - "lat": 52.6073374, - "lon": 0.3752768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410286566, - "lat": 52.6211047, - "lon": 0.3897644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE34 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410286635, - "lat": 52.6075241, - "lon": 0.3867967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE38 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410286643, - "lat": 52.6034375, - "lon": 0.3944341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 489D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 410286692, - "lat": 52.6116104, - "lon": 0.3898741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE38 256" - } -}, -{ - "type": "node", - "id": 410286705, - "lat": 52.6183671, - "lon": 0.3957939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE34 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410286750, - "lat": 52.6065828, - "lon": 0.3816593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE38 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410294824, - "lat": 51.4706413, - "lon": -2.1212705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN15 270", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 410294866, - "lat": 51.4714149, - "lon": -2.1138012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN15 293" - } -}, -{ - "type": "node", - "id": 410350851, - "lat": 53.7570208, - "lon": -1.5269499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 244" - } -}, -{ - "type": "node", - "id": 410366271, - "lat": 51.7321234, - "lon": -0.8219337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 410366931, - "lat": 55.5504658, - "lon": -4.6241717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=53d81c0a-4e17-4a53-903e-455a1fe65fc0&cp=55.550356~-4.624089&lvl=21.056389&pi=0&style=x&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "fence", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 410370961, - "lat": 53.1636283, - "lon": -1.4589730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S45 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410374902, - "lat": 53.1633279, - "lon": -1.4802172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S45 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410425920, - "lat": 52.0351404, - "lon": -0.7415691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410456367, - "lat": 53.1441232, - "lon": -1.5494429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "582232473018101", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE4 906", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 410456372, - "lat": 53.1435142, - "lon": -1.5408706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 1375" - } -}, -{ - "type": "node", - "id": 410456386, - "lat": 53.1388288, - "lon": -1.5545303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "DE4 1350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410458863, - "lat": 52.4756507, - "lon": -2.1332567, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 139", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410458866, - "lat": 52.4778870, - "lon": -2.1273095, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 146", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410458880, - "lat": 52.4770409, - "lon": -2.1235881, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 5", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410460636, - "lat": 51.0066254, - "lon": -0.9411537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GU32 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410460641, - "lat": 51.0084289, - "lon": -0.9438105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410494867, - "lat": 53.7487422, - "lon": -1.5405286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 775" - } -}, -{ - "type": "node", - "id": 410495039, - "lat": 53.7512097, - "lon": -1.5445314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410607366, - "lat": 51.2765506, - "lon": 0.1889647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 410607382, - "lat": 51.2800990, - "lon": 0.1889964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410614425, - "lat": 51.2850673, - "lon": 0.1927567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410614447, - "lat": 51.2815924, - "lon": 0.1943823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN13 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410627634, - "lat": 53.6637858, - "lon": -1.6161824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 69" - } -}, -{ - "type": "node", - "id": 410640571, - "lat": 50.6386785, - "lon": -3.4657225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "lamp", - "ref": "EX6 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 410690169, - "lat": 51.3536123, - "lon": 0.2584437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410720443, - "lat": 52.4118006, - "lon": -1.9065203, - "tags": { - "amenity": "post_box", - "note": "Might be disused", - "ref": "B30 821" - } -}, -{ - "type": "node", - "id": 410720445, - "lat": 52.4128514, - "lon": -1.9155660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B30 725", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410749776, - "lat": 52.4076397, - "lon": -1.9969280, - "tags": { - "amenity": "post_box", - "ref": "B31 973", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410766627, - "lat": 52.3948968, - "lon": -2.0304269, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 410784926, - "lat": 51.2854584, - "lon": 0.1694646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TN13 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410792845, - "lat": 51.5775290, - "lon": 0.0695247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG2 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410836301, - "lat": 51.3388898, - "lon": -0.8465964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU46 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410837248, - "lat": 51.8951932, - "lon": -1.7286027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410846049, - "lat": 51.7081309, - "lon": -1.2895081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "wall", - "ref": "OX1 595", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2013-06-08" - } -}, -{ - "type": "node", - "id": 410849650, - "lat": 50.8053365, - "lon": -0.4411935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN12 1802", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN12 1802D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 410849651, - "lat": 50.8196739, - "lon": -0.4542467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN12 1793D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410849652, - "lat": 50.8046511, - "lon": -0.5424156, - "tags": { - "amenity": "post_box", - "last_collection": "5.15pm Sat 12 noon", - "post_box:type": "pillar", - "ref": "BN17 1497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410849653, - "lat": 50.8425400, - "lon": -0.5140885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410849654, - "lat": 50.8447850, - "lon": -0.5311641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410849655, - "lat": 50.8453131, - "lon": -0.5387034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN18 1292" - } -}, -{ - "type": "node", - "id": 410849656, - "lat": 50.9140568, - "lon": -0.4519901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH20 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410849657, - "lat": 50.8098394, - "lon": -0.3715570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "check location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN11 1700D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410849658, - "lat": 50.8290342, - "lon": -0.3819440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1714D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410851832, - "lat": 52.9068868, - "lon": -1.2394992, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-19", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "ele": "33.531494", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG9 691", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 410851964, - "lat": 52.9132930, - "lon": -1.2389404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ele": "31.608887", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG9 606", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 410873742, - "lat": 52.4941287, - "lon": -2.1013182, - "tags": { - "amenity": "post_box", - "ref": "DY2 323", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410876451, - "lat": 52.2083499, - "lon": 0.1232454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB5 8", - "ref": "CB5 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 410887467, - "lat": 52.0740699, - "lon": -0.7401985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410895293, - "lat": 51.2858070, - "lon": 0.1976157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410895449, - "lat": 51.2877523, - "lon": 0.1986767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410895522, - "lat": 51.2892395, - "lon": 0.2074523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "fixme": "has this post box been moved?", - "ref": "TN14 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410895609, - "lat": 51.2825607, - "lon": 0.2053314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN13 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410895714, - "lat": 51.2804915, - "lon": 0.2003077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410910358, - "lat": 52.0338199, - "lon": -0.7103839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 116", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410910382, - "lat": 52.0320800, - "lon": -0.7247664, - "tags": { - "amenity": "post_box", - "ref": "MK6 441" - } -}, -{ - "type": "node", - "id": 410917973, - "lat": 51.7190462, - "lon": -1.2993239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX1 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-06-08" - } -}, -{ - "type": "node", - "id": 410920530, - "lat": 53.7577753, - "lon": -1.6236240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 91" - } -}, -{ - "type": "node", - "id": 410924624, - "lat": 55.0214072, - "lon": -1.5481001, - "tags": { - "amenity": "post_box", - "ref": "NE12 393" - } -}, -{ - "type": "node", - "id": 410924639, - "lat": 55.0214570, - "lon": -1.5394632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NE12 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410924699, - "lat": 52.4324901, - "lon": -1.8352747, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 665", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410924713, - "lat": 52.4307253, - "lon": -1.8322721, - "tags": { - "amenity": "post_box", - "ref": "B28 598", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410924715, - "lat": 52.4234130, - "lon": -1.8303276, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 431", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410929057, - "lat": 52.4960250, - "lon": -2.1056280, - "tags": { - "amenity": "post_box", - "postal_code": "DY2", - "ref": "DY2 13", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 410936976, - "lat": 51.6155925, - "lon": -0.3622656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA5 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410936977, - "lat": 51.6035076, - "lon": -0.3839102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA5 357", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410936978, - "lat": 51.6022403, - "lon": -0.3877385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA5 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410936983, - "lat": 51.6015350, - "lon": -0.3890832, - "tags": { - "amenity": "post_box", - "ref": "HA5 524" - } -}, -{ - "type": "node", - "id": 410936987, - "lat": 51.6077454, - "lon": -0.3736079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 410936989, - "lat": 51.6044793, - "lon": -0.3729021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 407", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 410936991, - "lat": 51.6089927, - "lon": -0.3599866, - "tags": { - "amenity": "post_box", - "ref": "HA5 44" - } -}, -{ - "type": "node", - "id": 410948753, - "lat": 51.7824209, - "lon": -1.2949884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "mapillary": "338875574383714", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX2 809", - "survey:date": "2021-05-05" - } -}, -{ - "type": "node", - "id": 410949505, - "lat": 51.7840741, - "lon": -1.2901705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 321", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 410960457, - "lat": 51.2869323, - "lon": 0.1956446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN13 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410960488, - "lat": 51.2774606, - "lon": 0.1965508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 07:15; Su off", - "colour": "red", - "ref": "TN13 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410960504, - "lat": 51.2771453, - "lon": 0.1935245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 09:00; Su off", - "colour": "red", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN13 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410960547, - "lat": 51.2721706, - "lon": 0.1927586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN13 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410975016, - "lat": 51.5334387, - "lon": -0.0074630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410982516, - "lat": 51.2665319, - "lon": 0.1935327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TN13 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410991515, - "lat": 51.2863846, - "lon": 0.4886046, - "tags": { - "amenity": "post_box", - "ref": "ME16 377" - } -}, -{ - "type": "node", - "id": 410991531, - "lat": 51.2816007, - "lon": 0.4901916, - "tags": { - "amenity": "post_box", - "ref": "ME16 300" - } -}, -{ - "type": "node", - "id": 410996171, - "lat": 52.4813602, - "lon": -2.1132735, - "tags": { - "amenity": "post_box", - "ref": "DY5 608" - } -}, -{ - "type": "node", - "id": 410996175, - "lat": 52.4793395, - "lon": -2.1100376, - "tags": { - "amenity": "post_box", - "note": "Approximate location - GPS reception not good here at time of survey", - "ref": "DY5 179", - "source": "survey" - } -}, -{ - "type": "node", - "id": 410996323, - "lat": 52.4866429, - "lon": -2.1146352, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "DY5 334" - } -}, -{ - "type": "node", - "id": 411001687, - "lat": 52.4764066, - "lon": -2.1442634, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 411002081, - "lat": 53.8145804, - "lon": -1.7518423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD2 42" - } -}, -{ - "type": "node", - "id": 411002707, - "lat": 52.4773180, - "lon": -2.1499828, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 411002713, - "lat": 51.5274005, - "lon": -0.0129534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411005631, - "lat": 51.2886400, - "lon": 0.1987125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN13 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411005658, - "lat": 51.2915437, - "lon": 0.1987261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN13 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411006025, - "lat": 51.2768388, - "lon": 0.4933651, - "tags": { - "amenity": "post_box", - "ref": "ME16 257" - } -}, -{ - "type": "node", - "id": 411020582, - "lat": 55.1149676, - "lon": -1.5248940, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 2TU", - "ref": "NE24 419" - } -}, -{ - "type": "node", - "id": 411020586, - "lat": 55.1256153, - "lon": -1.5298223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 5DA", - "ref": "NE24 391" - } -}, -{ - "type": "node", - "id": 411051866, - "lat": 53.2551855, - "lon": -1.2476086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "wall", - "ref": "S80 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 411087498, - "lat": 52.3903536, - "lon": -1.2650820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV21 72P" - } -}, -{ - "type": "node", - "id": 411087499, - "lat": 52.3869163, - "lon": -1.2759001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "927115914539975", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV21 19", - "survey:date": "2021-07-31" - } -}, -{ - "type": "node", - "id": 411089806, - "lat": 50.5806690, - "lon": -3.4647410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX7 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 411092126, - "lat": 51.3073398, - "lon": -0.9014196, - "tags": { - "amenity": "post_box", - "ref": "RG27 345", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411092128, - "lat": 51.3015107, - "lon": -0.9275957, - "tags": { - "amenity": "post_box", - "note": "possibly inaccurate", - "ref": "RG27 227", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411092129, - "lat": 51.2983318, - "lon": -0.9143071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "959095494668183", - "post_box:type": "lamp", - "ref": "RG27 127D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411092134, - "lat": 51.3049529, - "lon": -0.8970574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411104624, - "lat": 52.3700455, - "lon": -1.2584105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV22 3D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411104626, - "lat": 52.3621477, - "lon": -1.2666810, - "tags": { - "amenity": "post_box", - "ref": "CV22 226" - } -}, -{ - "type": "node", - "id": 411104639, - "lat": 53.2380672, - "lon": -1.2288151, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NG20 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411115307, - "lat": 51.5528306, - "lon": -0.2107466, - "tags": { - "addr:street": "Cricklewood Broadway", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW2 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 411115782, - "lat": 52.5002963, - "lon": -2.1048594, - "tags": { - "amenity": "post_box", - "postal_code": "DY2", - "ref": "DY2 205", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 411131475, - "lat": 50.8284420, - "lon": -0.8511461, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411139087, - "lat": 52.4872360, - "lon": -2.1206016, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 133", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 411151865, - "lat": 52.4838205, - "lon": -2.1268474, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "DY5", - "ref": "DY5 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 411169348, - "lat": 52.4809480, - "lon": -2.1223335, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 173", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 411264491, - "lat": 55.8269730, - "lon": -4.3391521, - "tags": { - "amenity": "post_box", - "ref": "G53 1088" - } -}, -{ - "type": "node", - "id": 411282533, - "lat": 53.4192963, - "lon": -1.3403485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S60 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 411285703, - "lat": 53.4226952, - "lon": -1.2411577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S66 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411289118, - "lat": 55.8459600, - "lon": -4.2762814, - "tags": { - "amenity": "post_box", - "postal_code": "G41", - "ref": "G41 88" - } -}, -{ - "type": "node", - "id": 411289120, - "lat": 55.8454744, - "lon": -4.2835312, - "tags": { - "amenity": "post_box", - "postal_code": "G41", - "ref": "G41 729" - } -}, -{ - "type": "node", - "id": 411289131, - "lat": 55.8472979, - "lon": -4.2971197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "G41", - "ref": "G41 505" - } -}, -{ - "type": "node", - "id": 411290504, - "lat": 55.8385875, - "lon": -4.2927640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "G41", - "ref": "G41 373", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 411292457, - "lat": 55.8466230, - "lon": -4.3801546, - "tags": { - "amenity": "post_box", - "postal_code": "PA1", - "ref": "PA1 163" - } -}, -{ - "type": "node", - "id": 411297185, - "lat": 53.4218964, - "lon": -1.2231867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "location": "53.42193 -1.22314", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S66 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411297191, - "lat": 53.4247557, - "lon": -1.2227630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42479 -1.22274", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S66 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411297269, - "lat": 53.4244452, - "lon": -1.1901591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42634 -1.29950", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S66 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411298955, - "lat": 53.4231225, - "lon": -1.2015689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S66 504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411306802, - "lat": 51.6201000, - "lon": -0.3037610, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA7 817", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 411328476, - "lat": 51.2400911, - "lon": -0.0930234, - "tags": { - "amenity": "post_box", - "note": "missing plaque on 2011-03-21", - "operator": "Royal Mail", - "ref": "RH1 215" - } -}, -{ - "type": "node", - "id": 411371746, - "lat": 53.2531589, - "lon": -1.9192524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4728342770537103", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 411378780, - "lat": 53.2574929, - "lon": -1.9242529, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 411444831, - "lat": 55.9170599, - "lon": -4.1490252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G66 738D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 411492576, - "lat": 51.2835735, - "lon": 0.2137497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411504972, - "lat": 52.3844852, - "lon": -1.2488597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411542036, - "lat": 52.0661124, - "lon": -0.7526901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411581747, - "lat": 52.9326829, - "lon": -1.2059106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ele": "17.669800", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 629", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 411585372, - "lat": 51.2789501, - "lon": 0.1764930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TN13 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411585375, - "lat": 51.2802762, - "lon": 0.1724761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN13 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 411585382, - "lat": 51.2837423, - "lon": 0.1696318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "mapillary": "374720394276032", - "post_box:type": "pillar", - "ref": "TN13 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-28" - } -}, -{ - "type": "node", - "id": 411585387, - "lat": 51.2849730, - "lon": 0.1778244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN13 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411601821, - "lat": 55.9175612, - "lon": -4.1543396, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 411627949, - "lat": 50.7335449, - "lon": -4.0013148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 411705926, - "lat": 55.8636681, - "lon": -4.4070996, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 91" - } -}, -{ - "type": "node", - "id": 411705927, - "lat": 55.8615408, - "lon": -4.4107235, - "tags": { - "amenity": "post_box", - "postal_code": "PA3", - "ref": "PA3 151" - } -}, -{ - "type": "node", - "id": 411725349, - "lat": 53.5519458, - "lon": -2.5235692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BL5 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411734313, - "lat": 51.4583038, - "lon": -2.1376130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 411749848, - "lat": 51.5945073, - "lon": -3.7905620, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 411760543, - "lat": 53.3849378, - "lon": -2.6262461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA5 192", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 411760544, - "lat": 53.4010976, - "lon": -2.6229046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 316", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 411760545, - "lat": 53.4038339, - "lon": -2.6297179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 322", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 411786762, - "lat": 52.3723510, - "lon": -1.2495220, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CV21 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 411798357, - "lat": 53.4040969, - "lon": -1.5306973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S6 386" - } -}, -{ - "type": "node", - "id": 411811613, - "lat": 53.7486136, - "lon": -0.8549749, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 411811739, - "lat": 53.7464233, - "lon": -0.8658731, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 411823462, - "lat": 51.2915221, - "lon": 0.3210440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "post_box:type": "pillar", - "ref": "TN15 257", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 411828290, - "lat": 51.6403688, - "lon": -0.4733430, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WD3 52" - } -}, -{ - "type": "node", - "id": 411829229, - "lat": 51.6390399, - "lon": -0.4692094, - "tags": { - "amenity": "post_box", - "last_collection": "7pm;12pm Sat", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WD3 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411845257, - "lat": 51.9977285, - "lon": -0.4970011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "MK45 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 411855750, - "lat": 51.9491091, - "lon": 0.6449618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 411861279, - "lat": 51.8481774, - "lon": -0.0198021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG11 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 411888760, - "lat": 51.0657278, - "lon": -0.3143935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "old_ref": "RH13 120", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 120D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 411888769, - "lat": 51.0653512, - "lon": -0.3178155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "collection_times_1": "CP1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 411888784, - "lat": 51.0760467, - "lon": -0.3078455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412071437, - "lat": 54.4831304, - "lon": -0.6281878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO21 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412124672, - "lat": 53.5549304, - "lon": -2.5094134, - "tags": { - "amenity": "post_box", - "ref": "BL5 52" - } -}, -{ - "type": "node", - "id": 412125112, - "lat": 52.4261442, - "lon": -2.9797331, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 412125596, - "lat": 53.7170681, - "lon": -1.4851685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 111" - } -}, -{ - "type": "node", - "id": 412182266, - "lat": 51.8837346, - "lon": 0.8173391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CO3 186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 412214464, - "lat": 53.0631556, - "lon": -2.9901744, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 412219248, - "lat": 53.2713844, - "lon": -2.6052399, - "tags": { - "amenity": "post_box", - "ref": "CW8 61" - } -}, -{ - "type": "node", - "id": 412219284, - "lat": 53.2760961, - "lon": -2.5983022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 412258894, - "lat": 51.0018667, - "lon": -1.4727066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412268050, - "lat": 51.2886398, - "lon": 0.2209254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "colour": "Red", - "post_box:type": "pillar", - "ref": "TN15 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412277940, - "lat": 57.4804865, - "lon": -4.2195826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "indoor": "yes", - "note": "just inside Morrisons main entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV2", - "ref": "IV2 348", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412277941, - "lat": 57.4802191, - "lon": -4.2149277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV2", - "ref": "IV2 7", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412277943, - "lat": 57.4766369, - "lon": -4.2288552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 26D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412277945, - "lat": 57.4721468, - "lon": -4.2391248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV3", - "ref": "IV3 88", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412277946, - "lat": 57.4838288, - "lon": -4.2495753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV3", - "ref": "IV3 359D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412279458, - "lat": 50.8784328, - "lon": -0.8900119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412288374, - "lat": 54.7839717, - "lon": -1.5862515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH1 190D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412288394, - "lat": 54.7942875, - "lon": -1.5903799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 78" - } -}, -{ - "type": "node", - "id": 412288624, - "lat": 54.8018536, - "lon": -1.5916057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 285" - } -}, -{ - "type": "node", - "id": 412288625, - "lat": 54.8032195, - "lon": -1.5887023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 66" - } -}, -{ - "type": "node", - "id": 412300573, - "lat": 56.6235472, - "lon": -6.0647906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PA75 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412303101, - "lat": 53.7647349, - "lon": -1.5522483, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LS11 9" - } -}, -{ - "type": "node", - "id": 412303132, - "lat": 53.7651011, - "lon": -1.5581518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 815", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 412303191, - "lat": 53.7624818, - "lon": -1.5587236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 379" - } -}, -{ - "type": "node", - "id": 412303265, - "lat": 53.7605832, - "lon": -1.5669265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 981" - } -}, -{ - "type": "node", - "id": 412314742, - "lat": 52.2681385, - "lon": -1.0304538, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "NN7 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412347364, - "lat": 52.8151140, - "lon": -2.0872192, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412430996, - "lat": 52.4238091, - "lon": -1.4428946, - "tags": { - "amenity": "post_box", - "ref": "CV2 265" - } -}, -{ - "type": "node", - "id": 412430997, - "lat": 52.4241685, - "lon": -1.4396176, - "tags": { - "amenity": "post_box", - "ref": "CV2 212" - } -}, -{ - "type": "node", - "id": 412430998, - "lat": 52.4211179, - "lon": -1.4374551, - "tags": { - "amenity": "post_box", - "ref": "CV2 78" - } -}, -{ - "type": "node", - "id": 412442604, - "lat": 51.9597322, - "lon": 1.0479200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO11 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 412442606, - "lat": 51.8882435, - "lon": 1.1826915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO12 73", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 412449193, - "lat": 51.3174779, - "lon": 0.0739567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "red", - "ref": "TN14 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412449259, - "lat": 51.3073251, - "lon": 0.0264537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN16 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412449261, - "lat": 51.2931969, - "lon": 0.0409331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN16 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412451512, - "lat": 52.9213430, - "lon": -3.5154790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL23 82" - } -}, -{ - "type": "node", - "id": 412485510, - "lat": 55.6012598, - "lon": -2.4305311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen and Co, London", - "post_box:type": "wall", - "ref": "TD5 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412485511, - "lat": 55.6035462, - "lon": -2.4424399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "317224529850279", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD5 24", - "survey:date": "2020-09-13" - } -}, -{ - "type": "node", - "id": 412506270, - "lat": 53.8405471, - "lon": -1.7268653, - "tags": { - "amenity": "post_box", - "note": "in wall", - "ref": "BD10 148" - } -}, -{ - "type": "node", - "id": 412518667, - "lat": 53.2558120, - "lon": -4.3131689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL77 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412529571, - "lat": 51.7416821, - "lon": -2.2128524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "fixme": "position approximate", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "GL5", - "ref": "GL5 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 412564402, - "lat": 51.0042499, - "lon": -1.1112552, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412569512, - "lat": 51.4034165, - "lon": -0.1993256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 73" - } -}, -{ - "type": "node", - "id": 412569517, - "lat": 51.4095028, - "lon": -0.1925363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412569521, - "lat": 51.4091902, - "lon": -0.1906448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412569523, - "lat": 51.4091585, - "lon": -0.1957996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 2" - } -}, -{ - "type": "node", - "id": 412569525, - "lat": 51.4122134, - "lon": -0.2010534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 412569528, - "lat": 51.4135628, - "lon": -0.2045447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW19 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412569530, - "lat": 51.4152922, - "lon": -0.1980845, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-31", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412569531, - "lat": 51.4164830, - "lon": -0.2046201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 29", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 412569532, - "lat": 51.4177294, - "lon": -0.2034813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 412569534, - "lat": 51.4222184, - "lon": -0.2138040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 97" - } -}, -{ - "type": "node", - "id": 412569537, - "lat": 51.4189490, - "lon": -0.2131598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SW19 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412569539, - "lat": 51.4189477, - "lon": -0.2176559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 3" - } -}, -{ - "type": "node", - "id": 412569541, - "lat": 51.4170951, - "lon": -0.2194953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 412569543, - "lat": 51.4201520, - "lon": -0.2226011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 60" - } -}, -{ - "type": "node", - "id": 412569550, - "lat": 51.4211691, - "lon": -0.2201208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 27" - } -}, -{ - "type": "node", - "id": 412569552, - "lat": 51.4223836, - "lon": -0.2180216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW19 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412569555, - "lat": 51.4244747, - "lon": -0.2154193, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-31", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 412569557, - "lat": 51.4260685, - "lon": -0.2128986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 412569560, - "lat": 51.4262858, - "lon": -0.2097615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW19 99", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 412569562, - "lat": 51.4240699, - "lon": -0.2079423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412571358, - "lat": 51.6418564, - "lon": -2.3029576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412571388, - "lat": 51.6229878, - "lon": -2.3395351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GL12", - "ref": "GL12 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412571817, - "lat": 50.9704814, - "lon": -1.2163281, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO32 374", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412571818, - "lat": 50.9607648, - "lon": -1.2330394, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "collection_times_checked": "2020-01-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412571819, - "lat": 51.0172785, - "lon": -1.1895081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO24 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412723106, - "lat": 54.4734371, - "lon": -0.6084109, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "YO22 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412723113, - "lat": 54.4633776, - "lon": -0.5925471, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO22 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412723116, - "lat": 54.4711429, - "lon": -0.6025774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO22 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412723117, - "lat": 54.4747939, - "lon": -0.6050939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO22 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 412723120, - "lat": 54.4792734, - "lon": -0.6089794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO22 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412727249, - "lat": 51.2995209, - "lon": 0.2311805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN15 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412727864, - "lat": 51.3062310, - "lon": 0.2212597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "colour": "red", - "ref": "TN15 149", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412746377, - "lat": 51.6263953, - "lon": -4.0420552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA2 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412770984, - "lat": 51.7515451, - "lon": -2.2827383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412778136, - "lat": 51.7019482, - "lon": -2.2288798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL6 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 412778185, - "lat": 51.6991785, - "lon": -2.2331215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 46" - } -}, -{ - "type": "node", - "id": 412792649, - "lat": 51.2405363, - "lon": -0.6082515, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU2 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412811763, - "lat": 51.2904678, - "lon": 0.1922853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN13 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412812759, - "lat": 51.2404123, - "lon": -0.6124429, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "last_checked": "2021-06-09", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU2 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412812760, - "lat": 51.2403723, - "lon": -0.6124454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "description": "This Postbox is a Parcel Postbox for Parcels & Franked Mail.", - "mail:franked": "yes", - "mail:meter": "yes", - "old_ref": "GU2 81", - "opening_hours": "Mo-Fr 12:00-18:00", - "post_box:type": "meter", - "ref": "GU2 81P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412812765, - "lat": 51.2316571, - "lon": -0.6039474, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU2 161", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU2 161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412813786, - "lat": 51.2320349, - "lon": -0.5980081, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU2 135", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU2 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412813794, - "lat": 51.2340005, - "lon": -0.5997319, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU2 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412813803, - "lat": 51.2329777, - "lon": -0.5929760, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:royal_cypher": "Not visible", - "old_ref": "GU2 213", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU2 213D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412813807, - "lat": 51.2382606, - "lon": -0.5969818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU2 241", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 412813811, - "lat": 51.2366191, - "lon": -0.5939550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU2 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412815789, - "lat": 51.2958053, - "lon": 0.1913040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN14 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412815823, - "lat": 51.2991898, - "lon": 0.1930448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 12:00; Su off", - "post_box:type": "meter", - "ref": "TN14 61", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412815824, - "lat": 51.2992116, - "lon": 0.1930487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 12:00; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN13 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412818008, - "lat": 51.2643544, - "lon": -0.5857639, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU2 297" - } -}, -{ - "type": "node", - "id": 412818028, - "lat": 51.2607017, - "lon": -0.5932578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU2 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 412818098, - "lat": 51.2581876, - "lon": -0.5991073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GU2 210" - } -}, -{ - "type": "node", - "id": 412854101, - "lat": 51.2564612, - "lon": 0.1930370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412854118, - "lat": 51.2600804, - "lon": 0.1949105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TN13 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412854122, - "lat": 51.2541663, - "lon": 0.1960201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN13 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412854156, - "lat": 51.2531422, - "lon": 0.1886262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412860177, - "lat": 51.2537276, - "lon": 0.1987045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412875023, - "lat": 54.5574793, - "lon": -1.3011336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS17 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412875065, - "lat": 54.5620922, - "lon": -1.3003560, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS17 431" - } -}, -{ - "type": "node", - "id": 412878526, - "lat": 51.2825558, - "lon": 0.1962345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412909344, - "lat": 52.3786115, - "lon": -1.2581103, - "tags": { - "amenity": "post_box", - "ref": "CV21 14" - } -}, -{ - "type": "node", - "id": 412914072, - "lat": 51.2772529, - "lon": 0.2108817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412943091, - "lat": 51.2807864, - "lon": 0.2124623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "red", - "ref": "TN15 197", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412943649, - "lat": 51.0030454, - "lon": -1.0031289, - "tags": { - "amenity": "post_box", - "ref": "GU32 38" - } -}, -{ - "type": "node", - "id": 412943655, - "lat": 51.0085802, - "lon": -0.9969890, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 412955237, - "lat": 54.5863953, - "lon": -1.2430890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 412964124, - "lat": 51.0898751, - "lon": -0.5207947, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "RH14 44", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412975727, - "lat": 54.5796457, - "lon": -1.2338736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TS2 67P" - } -}, -{ - "type": "node", - "id": 412975728, - "lat": 54.5755281, - "lon": -1.2349162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TS1 23;TS1 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412975730, - "lat": 54.5727834, - "lon": -1.2357300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TS1 67;TS1 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 412975734, - "lat": 54.5675184, - "lon": -1.2336515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS1 58" - } -}, -{ - "type": "node", - "id": 412989312, - "lat": 51.0787530, - "lon": -0.5451167, - "tags": { - "amenity": "post_box", - "note": "appears to bea post box serving one private private residence, does not bear standard royal mail notice or reference number" - } -}, -{ - "type": "node", - "id": 413045619, - "lat": 53.6915338, - "lon": -1.6108501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF12 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413049004, - "lat": 51.0129537, - "lon": -0.5522819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "RH14 90", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH14 90D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey_date": "2022-06-11" - } -}, -{ - "type": "node", - "id": 413049013, - "lat": 50.9604360, - "lon": -0.5402375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 69", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 413065226, - "lat": 52.3657507, - "lon": -1.2304852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV21 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413065230, - "lat": 52.3633887, - "lon": -1.2168671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV21 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413065233, - "lat": 52.3609815, - "lon": -1.2122102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV21 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413065235, - "lat": 52.3562493, - "lon": -1.2013984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413230000, - "lat": 53.6937263, - "lon": -1.6361690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 25" - } -}, -{ - "type": "node", - "id": 413272579, - "lat": 53.7527554, - "lon": -1.6657936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD11 456" - } -}, -{ - "type": "node", - "id": 413272680, - "lat": 53.7534118, - "lon": -1.6568788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD11 453" - } -}, -{ - "type": "node", - "id": 413272842, - "lat": 53.7634159, - "lon": -1.6487410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 452" - } -}, -{ - "type": "node", - "id": 413272948, - "lat": 53.7737167, - "lon": -1.6585801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD4 127", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 413272955, - "lat": 53.7801861, - "lon": -1.6409353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 298" - } -}, -{ - "type": "node", - "id": 413289310, - "lat": 51.7533163, - "lon": -1.2015860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 719" - } -}, -{ - "type": "node", - "id": 413289376, - "lat": 51.7491295, - "lon": -1.2009242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX3 717", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps_survey;streetlevel imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 413291031, - "lat": 51.4090362, - "lon": 0.2368601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DA4 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;photo" - } -}, -{ - "type": "node", - "id": 413332246, - "lat": 51.2130019, - "lon": -0.5641566, - "tags": { - "amenity": "post_box", - "indoor": "no", - "ref": "GU4 106" - } -}, -{ - "type": "node", - "id": 413339584, - "lat": 51.4622684, - "lon": -2.1154488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2015-11-08", - "name": "Chippenham Railway Station", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413386127, - "lat": 51.3495856, - "lon": -2.9350180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1738891419873036", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 413401028, - "lat": 51.4506523, - "lon": -0.3522519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 413408861, - "lat": 53.7595068, - "lon": -1.6551474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 455" - } -}, -{ - "type": "node", - "id": 413408921, - "lat": 53.7556254, - "lon": -1.6591564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD11 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413408992, - "lat": 53.7505740, - "lon": -1.6423101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD11 457" - } -}, -{ - "type": "node", - "id": 413425823, - "lat": 53.7331945, - "lon": -0.6671290, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU15 109", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413436099, - "lat": 51.2448106, - "lon": -0.5762637, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-04", - "old_ref": "GU1 75", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU1 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413436100, - "lat": 51.2425912, - "lon": -0.5760936, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU1 8", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU1 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 413436101, - "lat": 51.2410965, - "lon": -0.5713011, - "tags": { - "amenity": "post_box", - "ref": "GU1 61" - } -}, -{ - "type": "node", - "id": 413436107, - "lat": 51.2395856, - "lon": -0.5730817, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU1 16", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413436108, - "lat": 51.2369264, - "lon": -0.5727103, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU1 273", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 413436110, - "lat": 51.2361202, - "lon": -0.5758500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU1 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 413436114, - "lat": 51.2333194, - "lon": -0.5701417, - "tags": { - "amenity": "post_box", - "ref": "GU1 116" - } -}, -{ - "type": "node", - "id": 413436116, - "lat": 51.2353557, - "lon": -0.5620763, - "tags": { - "amenity": "post_box", - "ref": "GU1 63" - } -}, -{ - "type": "node", - "id": 413436120, - "lat": 51.2336550, - "lon": -0.5585099, - "tags": { - "amenity": "post_box", - "ref": "GU1 284" - } -}, -{ - "type": "node", - "id": 413436121, - "lat": 51.2364124, - "lon": -0.5574470, - "tags": { - "amenity": "post_box", - "ref": "GU1 30" - } -}, -{ - "type": "node", - "id": 413442748, - "lat": 51.2374157, - "lon": -0.5540970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU1 176", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 413442757, - "lat": 51.2385200, - "lon": -0.5496400, - "tags": { - "amenity": "post_box", - "ref": "GU1 175" - } -}, -{ - "type": "node", - "id": 413445305, - "lat": 51.2465465, - "lon": -0.5459646, - "tags": { - "amenity": "post_box", - "ref": "GU1 290" - } -}, -{ - "type": "node", - "id": 413445306, - "lat": 51.2426982, - "lon": -0.5322797, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-05", - "old_ref": "GU1 259", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU1 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413445310, - "lat": 51.2460791, - "lon": -0.5296654, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413445318, - "lat": 51.2527309, - "lon": -0.5710190, - "tags": { - "amenity": "post_box", - "ref": "GU1 130" - } -}, -{ - "type": "node", - "id": 413450448, - "lat": 51.2358922, - "lon": -0.5688214, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU1 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413455927, - "lat": 51.3187505, - "lon": -0.5900039, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "last_check": "2021-06-07", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413469551, - "lat": 53.2239597, - "lon": -4.2051725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413479726, - "lat": 51.4482345, - "lon": -0.3532002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 413494940, - "lat": 51.6634696, - "lon": -3.7932721, - "tags": { - "amenity": "post_box", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 413519091, - "lat": 55.8789657, - "lon": -3.1686750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 344D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 413520785, - "lat": 51.3051372, - "lon": -0.6272333, - "tags": { - "amenity": "post_box", - "check_date": "2019-07-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU24 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413545454, - "lat": 53.8024262, - "lon": -1.8943223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 413545461, - "lat": 53.8501443, - "lon": -1.9179264, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD21 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413545468, - "lat": 54.1469059, - "lon": -2.2937074, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-12", - "check_date:collection_times": "2022-03-12", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "note": "Modern style", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "BD24 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413559022, - "lat": 50.8052126, - "lon": -0.4816055, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413559025, - "lat": 50.8088341, - "lon": -0.4847215, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN16 1476D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413559026, - "lat": 50.8105042, - "lon": -0.4808128, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1475", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 413571506, - "lat": 53.7531642, - "lon": -1.4542591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 878" - } -}, -{ - "type": "node", - "id": 413585303, - "lat": 55.1163360, - "lon": -1.5333017, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 4QR", - "ref": "NE24 407" - } -}, -{ - "type": "node", - "id": 413585304, - "lat": 55.1079547, - "lon": -1.5299092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 4AR", - "ref": "NE24 562", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 413588043, - "lat": 53.7451440, - "lon": -1.6825127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "BD11 411" - } -}, -{ - "type": "node", - "id": 413588105, - "lat": 53.7453973, - "lon": -1.6925270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 413" - } -}, -{ - "type": "node", - "id": 413617485, - "lat": 55.1447659, - "lon": -1.5501711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 7AY", - "ref": "NE22 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413662310, - "lat": 53.8702175, - "lon": -1.9094112, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BD21 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413662319, - "lat": 53.8734288, - "lon": -1.9089979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD21 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413662336, - "lat": 53.8725481, - "lon": -1.9040899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD21 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413669788, - "lat": 50.4989804, - "lon": -3.5857913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "postal_code": "TQ12", - "ref": "TQ12 190D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 413678295, - "lat": 50.4796533, - "lon": -3.5720424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ2", - "ref": "TQ2 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 413687575, - "lat": 52.6336273, - "lon": -1.1832726, - "tags": { - "amenity": "post_box", - "ref": "LE3 632" - } -}, -{ - "type": "node", - "id": 413687667, - "lat": 52.6334273, - "lon": -1.1887214, - "tags": { - "amenity": "post_box", - "ref": "LE3 691" - } -}, -{ - "type": "node", - "id": 413713326, - "lat": 51.4304497, - "lon": 0.2159977, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 413713330, - "lat": 51.4311340, - "lon": 0.2190533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=21347c0e-a8e3-425f-a295-47876bbe7a84&cp=51.431142~0.219182&lvl=19&dir=280.00085&pi=-6.883288&style=x&mo=z.2.86&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 413737347, - "lat": 51.0473929, - "lon": -1.1494325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-01-02", - "old_ref": "SO24 162", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 162D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413739163, - "lat": 51.3179437, - "lon": 0.0272560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN16 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413739164, - "lat": 51.2972512, - "lon": 0.0367913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN16 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413750952, - "lat": 55.9217920, - "lon": -4.0965680, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 413751283, - "lat": 55.9296697, - "lon": -4.1227847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "G66 726" - } -}, -{ - "type": "node", - "id": 413889977, - "lat": 53.3005648, - "lon": -3.0884135, - "tags": { - "amenity": "post_box", - "ref": "CH64 454" - } -}, -{ - "type": "node", - "id": 413897012, - "lat": 53.3157559, - "lon": -3.0752776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH60 356 by Abbot of Kirkintilloch on Gayton Parkway (RM have this at Leighton Cottage, but it has been moved)", - "manufacturer": "Abbot of Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Gayton Parkway.jpg" - } -}, -{ - "type": "node", - "id": 413897013, - "lat": 53.3564571, - "lon": -3.0978932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box CH61 362 at the corner of Thingwall Drive and Thingwall Road, Irby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Thingwall Drive, Irby.jpg" - } -}, -{ - "type": "node", - "id": 413897305, - "lat": 53.1392588, - "lon": -2.3374552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW11 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413904028, - "lat": 51.6408939, - "lon": -1.1651939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX10 657", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 413919424, - "lat": 52.0403732, - "lon": -0.7293167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 413988222, - "lat": 53.5513520, - "lon": -2.5171697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "BL5 3DN", - "ref": "BL5 261" - } -}, -{ - "type": "node", - "id": 414040597, - "lat": 54.0740339, - "lon": -3.1743612, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LA13", - "ref": "LA13 96", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 414090491, - "lat": 53.1959577, - "lon": -1.7773023, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DE45 1265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414132393, - "lat": 53.7051962, - "lon": 0.0403373, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU19 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414132394, - "lat": 53.7106806, - "lon": 0.0404310, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 414132554, - "lat": 53.6501795, - "lon": 0.1161990, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 414132572, - "lat": 53.6202227, - "lon": 0.1294079, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 414132812, - "lat": 53.6521737, - "lon": 0.0737604, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 414132819, - "lat": 53.6604092, - "lon": 0.0499932, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 414132947, - "lat": 53.6682592, - "lon": 0.0316050, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 414132949, - "lat": 53.6681091, - "lon": 0.0333131, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414160120, - "lat": 53.0357987, - "lon": -0.9653594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG14 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414186644, - "lat": 51.8811411, - "lon": 0.9137976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO1 24", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 414194097, - "lat": 52.9878681, - "lon": -0.9858426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "wall", - "ref": "NG14 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 414194102, - "lat": 53.0031342, - "lon": -0.9764823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:manufacturer": "W.T Allen & Co. London", - "post_box:type": "wall", - "ref": "NG14 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414203386, - "lat": 53.7691546, - "lon": -1.5430773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414218735, - "lat": 51.7703441, - "lon": -0.3353220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL3 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414228405, - "lat": 52.9521332, - "lon": -0.9608164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG13 170D" - } -}, -{ - "type": "node", - "id": 414231127, - "lat": 51.1178289, - "lon": -0.2052260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 414239848, - "lat": 51.3899817, - "lon": 0.2307648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA4 290D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-07-07" - } -}, -{ - "type": "node", - "id": 414244956, - "lat": 52.2515640, - "lon": 0.1261541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB24 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414251886, - "lat": 51.3966855, - "lon": 0.2359030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA4 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 414251892, - "lat": 51.4015291, - "lon": 0.2355276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA4 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 414253462, - "lat": 53.4232697, - "lon": -2.1833199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 414268019, - "lat": 51.4245697, - "lon": -0.2028596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 38" - } -}, -{ - "type": "node", - "id": 414268020, - "lat": 51.4272332, - "lon": -0.2004373, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-29", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414268021, - "lat": 51.4298682, - "lon": -0.1997433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 79" - } -}, -{ - "type": "node", - "id": 414268022, - "lat": 51.4297526, - "lon": -0.2011264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 93" - } -}, -{ - "type": "node", - "id": 414268023, - "lat": 51.4294480, - "lon": -0.2031244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 80" - } -}, -{ - "type": "node", - "id": 414268024, - "lat": 51.4305546, - "lon": -0.2052108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 24" - } -}, -{ - "type": "node", - "id": 414268025, - "lat": 51.4235328, - "lon": -0.1995755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 66" - } -}, -{ - "type": "node", - "id": 414268026, - "lat": 51.4211753, - "lon": -0.2012361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 34" - } -}, -{ - "type": "node", - "id": 414268027, - "lat": 51.4170099, - "lon": -0.2018739, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-05", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414268513, - "lat": 52.9283061, - "lon": -1.4815595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE1 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 414272437, - "lat": 52.9130449, - "lon": -1.4702029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE23 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 414557283, - "lat": 51.4808655, - "lon": -2.0750064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 414557391, - "lat": 51.4730819, - "lon": -2.0513053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN15 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 414571355, - "lat": 51.6490233, - "lon": -1.1696372, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 414574850, - "lat": 51.5152484, - "lon": -0.1301732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2H 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 414574852, - "lat": 51.5186457, - "lon": -0.1321370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1B 3D;WC1B 203D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 414630758, - "lat": 51.5142684, - "lon": -0.1065502, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4A 409;EC4A 4091", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 414633582, - "lat": 53.8290282, - "lon": -1.7323316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 414681239, - "lat": 51.0856956, - "lon": 0.9570933, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 160" - } -}, -{ - "type": "node", - "id": 414727672, - "lat": 53.3413462, - "lon": -3.4116788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL19 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414727795, - "lat": 53.3186640, - "lon": -3.3899004, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 414727813, - "lat": 53.3374707, - "lon": -3.3637561, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 414998853, - "lat": 53.7708089, - "lon": -1.5244585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 414998887, - "lat": 53.7721009, - "lon": -1.5310860, - "tags": { - "amenity": "post_box", - "fixme": "royal_cypher?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 234" - } -}, -{ - "type": "node", - "id": 415082410, - "lat": 52.9174777, - "lon": -1.4864566, - "tags": { - "amenity": "post_box", - "ref": "DE22 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415082433, - "lat": 52.9134810, - "lon": -1.4882418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 62D" - } -}, -{ - "type": "node", - "id": 415082461, - "lat": 52.9197908, - "lon": -1.4841909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE22 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 415083961, - "lat": 52.9346686, - "lon": -1.4841171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE22", - "ref": "DE22 11" - } -}, -{ - "type": "node", - "id": 415084004, - "lat": 52.9318804, - "lon": -1.4900770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "251638963687810", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 103", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 415084006, - "lat": 52.9345626, - "lon": -1.4926256, - "tags": { - "amenity": "post_box", - "ref": "DE22 4" - } -}, -{ - "type": "node", - "id": 415144246, - "lat": 56.4161896, - "lon": -4.6656488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "FK20 123", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415144337, - "lat": 56.3037016, - "lon": -4.7207430, - "tags": { - "amenity": "post_box", - "ref": "G83 90" - } -}, -{ - "type": "node", - "id": 415152714, - "lat": 55.3264054, - "lon": -3.4471499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "7054803667925030", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG10 46", - "source": "survey", - "source:position": "Mapillary 2021-09-16", - "survey:date": "2021-09-16" - } -}, -{ - "type": "node", - "id": 415261070, - "lat": 51.1237275, - "lon": -0.1773067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 415274262, - "lat": 55.8309406, - "lon": -4.2874018, - "tags": { - "amenity": "post_box", - "postal_code": "G41", - "ref": "G41 404" - } -}, -{ - "type": "node", - "id": 415288149, - "lat": 51.5648184, - "lon": -0.1324027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415295787, - "lat": 53.1652395, - "lon": -1.2319186, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415303263, - "lat": 53.1789627, - "lon": -1.2285734, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 415307094, - "lat": 53.2336797, - "lon": -1.3060476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S44 416D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415309221, - "lat": 51.5446418, - "lon": -0.1924880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415339256, - "lat": 54.0437347, - "lon": -1.5099677, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415341023, - "lat": 54.0434059, - "lon": -1.5418669, - "tags": { - "amenity": "post_box", - "ref": "HG3 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415343327, - "lat": 54.1305536, - "lon": -1.5092439, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415349266, - "lat": 54.2859514, - "lon": -1.5019033, - "tags": { - "amenity": "post_box", - "ref": "DL7 127", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415357286, - "lat": 54.3047538, - "lon": -1.5596884, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6697766", - "post_box:type": "pillar", - "ref": "DL7 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415371250, - "lat": 54.4544969, - "lon": -1.7859306, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415371251, - "lat": 54.4708346, - "lon": -1.8246181, - "tags": { - "amenity": "post_box", - "ref": "DL11 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415372828, - "lat": 54.5131460, - "lon": -1.8663784, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415380881, - "lat": 54.5286836, - "lon": -2.2452977, - "tags": { - "amenity": "post_box", - "ref": "CA17 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415409905, - "lat": 52.1470780, - "lon": -0.4484396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-13", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415409906, - "lat": 52.1484013, - "lon": -0.4332924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-04-09", - "check_date:collection_times": "2022-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 363D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415424699, - "lat": 51.4143517, - "lon": -0.2092042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 67", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415424701, - "lat": 51.4152148, - "lon": -0.2127590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415424706, - "lat": 51.4145637, - "lon": -0.2204735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 16", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415424707, - "lat": 51.4186578, - "lon": -0.2263866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW20 37" - } -}, -{ - "type": "node", - "id": 415424710, - "lat": 51.4148354, - "lon": -0.2254806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW20 5", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 415424714, - "lat": 51.4126582, - "lon": -0.2233894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW20 15" - } -}, -{ - "type": "node", - "id": 415424716, - "lat": 51.4107355, - "lon": -0.2281991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415424718, - "lat": 51.4129633, - "lon": -0.2288850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415424719, - "lat": 51.4139588, - "lon": -0.2316147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415424721, - "lat": 51.4119252, - "lon": -0.2334042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415452110, - "lat": 53.1280167, - "lon": -1.5392534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DE4 909", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415454004, - "lat": 51.3534540, - "lon": -2.9064031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS24 96" - } -}, -{ - "type": "node", - "id": 415462591, - "lat": 51.4181433, - "lon": -0.2299722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 415462592, - "lat": 51.4198648, - "lon": -0.2336775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415462594, - "lat": 51.4183464, - "lon": -0.2363687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415462595, - "lat": 51.4192783, - "lon": -0.2422674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415462597, - "lat": 51.4163767, - "lon": -0.2453733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SW20 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415462599, - "lat": 51.4144601, - "lon": -0.2483948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415462601, - "lat": 51.4099201, - "lon": -0.2461458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415462602, - "lat": 51.4122346, - "lon": -0.2428718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415462604, - "lat": 51.4103863, - "lon": -0.2370022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415464620, - "lat": 53.7405458, - "lon": -1.4505256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 935", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415472943, - "lat": 53.1332359, - "lon": -1.5527880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 904", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415504898, - "lat": 51.8812001, - "lon": -2.2276851, - "tags": { - "amenity": "post_box", - "ref": "GL2 105D" - } -}, -{ - "type": "node", - "id": 415504926, - "lat": 52.0588141, - "lon": -0.7585811, - "tags": { - "amenity": "post_box", - "ref": "MK14 612" - } -}, -{ - "type": "node", - "id": 415510977, - "lat": 53.8672203, - "lon": -1.9069902, - "tags": { - "amenity": "post_box", - "note": "double box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BD21 147;BD21 1147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415511085, - "lat": 53.8655914, - "lon": -1.9102556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD21 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415511119, - "lat": 53.8633222, - "lon": -1.9114697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD21 55" - } -}, -{ - "type": "node", - "id": 415511126, - "lat": 53.8627780, - "lon": -1.9081810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD21 30", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 415545287, - "lat": 56.5348924, - "lon": -5.3898283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA38 176", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415553712, - "lat": 56.7063504, - "lon": -5.2320013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 12:00", - "mapillary": "728497688584193", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH33 8", - "source": "survey", - "survey:date": "2022-09-05" - } -}, -{ - "type": "node", - "id": 415580900, - "lat": 51.4691896, - "lon": -0.0674679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 62", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415580910, - "lat": 51.4736429, - "lon": -0.0593066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415580945, - "lat": 51.4740892, - "lon": -0.0615646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415580969, - "lat": 51.4739138, - "lon": -0.0637185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 58", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 415580972, - "lat": 51.4714137, - "lon": -0.0636393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415691141, - "lat": 51.3945208, - "lon": -0.2869315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 201D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415691143, - "lat": 51.3400823, - "lon": -0.2582796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415723095, - "lat": 51.4254816, - "lon": 0.5614891, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 415733829, - "lat": 57.1731407, - "lon": -4.8285089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV63 241" - } -}, -{ - "type": "node", - "id": 415802768, - "lat": 56.0064016, - "lon": -3.7362863, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 415805106, - "lat": 51.4800570, - "lon": -0.0659710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE15 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415888097, - "lat": 51.1248170, - "lon": -0.1964864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 83", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 415888099, - "lat": 51.1267046, - "lon": -0.1911124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Langley Drive", - "old_ref": "RH11 81", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415888111, - "lat": 51.1038860, - "lon": -0.2106090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RH11 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415888142, - "lat": 51.1013094, - "lon": -0.2262346, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415902373, - "lat": 53.6766808, - "lon": -1.5114473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 187" - } -}, -{ - "type": "node", - "id": 415942014, - "lat": 51.1194035, - "lon": 1.0222190, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 164" - } -}, -{ - "type": "node", - "id": 415942319, - "lat": 51.1106249, - "lon": 1.0037019, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 218" - } -}, -{ - "type": "node", - "id": 415953113, - "lat": 52.9035852, - "lon": -0.9249806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "pillar", - "ref": "NG13 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415986739, - "lat": 51.4706039, - "lon": -0.9804827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "RG4 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 415986742, - "lat": 51.4791376, - "lon": -0.9831931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "RG4 120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 415986745, - "lat": 51.4848752, - "lon": -0.9749696, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 507D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 415986747, - "lat": 51.4824604, - "lon": -0.9706141, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-27", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "mapillary": "117241053998898", - "post_box:type": "pillar", - "ref": "RG4 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-31" - } -}, -{ - "type": "node", - "id": 415988054, - "lat": 51.4795209, - "lon": -0.0741536, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "No collection plate on 19/11/21 to confirm ref/collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 65", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 415990593, - "lat": 53.7863809, - "lon": -1.7754212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 415999519, - "lat": 53.2247046, - "lon": -1.7109069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DE45 1266", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416004422, - "lat": 53.2839950, - "lon": -1.6708412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S32 523D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416052420, - "lat": 53.0743797, - "lon": -2.5504119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "CW5 213", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416088839, - "lat": 51.2611766, - "lon": 0.1791733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416088848, - "lat": 51.2688933, - "lon": 0.1795112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "fixme": "Double check the Collection Times and the Royal Cypher", - "ref": "TN13 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416088892, - "lat": 51.2788214, - "lon": 0.1716053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416088921, - "lat": 51.2774859, - "lon": 0.1809719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "colour": "red", - "ref": "TN13 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416088988, - "lat": 51.2609602, - "lon": 0.1837270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416089014, - "lat": 51.2578301, - "lon": 0.1905411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "colour": "red", - "ref": "TN13 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416089056, - "lat": 51.2659351, - "lon": 0.1761776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416089136, - "lat": 51.2762000, - "lon": 0.1660455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00; Su off", - "colour": "red", - "ref": "TN13 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416126973, - "lat": 51.2703799, - "lon": -1.1883149, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 55" - } -}, -{ - "type": "node", - "id": 416340021, - "lat": 55.9281122, - "lon": -4.1626848, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 416340100, - "lat": 55.9457254, - "lon": -4.1407797, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 416375482, - "lat": 50.9630097, - "lon": -0.5637661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "fixme": "check position", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416393786, - "lat": 52.0473455, - "lon": -2.2312248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "postal_code": "WR8", - "ref": "WR8 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416418139, - "lat": 51.5066085, - "lon": -0.7132480, - "tags": { - "amenity": "post_box", - "note": "bit approx", - "ref": "SL6 9" - } -}, -{ - "type": "node", - "id": 416424478, - "lat": 53.4888950, - "lon": -2.9955055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416426285, - "lat": 51.1361107, - "lon": 0.2731961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 416433833, - "lat": 51.1364579, - "lon": 0.2691987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 41", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 416442531, - "lat": 51.8799095, - "lon": -0.3103945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SG4 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416445820, - "lat": 50.7974771, - "lon": -0.6197543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-08", - "note": "This postbox is a distinctive type of lamp postbox but I am unsure what one.", - "old_ref": "PO22 68", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416445841, - "lat": 50.7950754, - "lon": -0.6063719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-08", - "old_ref": "PO22 105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 105D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416462311, - "lat": 51.5586464, - "lon": -0.3947930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "mapillary": "865911930933981", - "post_box:type": "pillar", - "ref": "HA4 375", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 416468115, - "lat": 51.0135046, - "lon": -0.5021425, - "tags": { - "amenity": "post_box", - "ref": "RH14 81" - } -}, -{ - "type": "node", - "id": 416477890, - "lat": 51.5003065, - "lon": -0.0721132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 6;SE1 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416477892, - "lat": 51.4983749, - "lon": -0.0662339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "restricted times even though the ref has no D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416477893, - "lat": 51.4981574, - "lon": -0.0633717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE16 6;SE16 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416477899, - "lat": 51.4979795, - "lon": -0.0620231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times:signed": "no", - "drive_through": "no", - "note": "no plate with ref or collection times 22/01/23 - plate holder missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 416477901, - "lat": 51.4920987, - "lon": -0.0612492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416477903, - "lat": 51.4973275, - "lon": -0.0682829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416480061, - "lat": 51.5598978, - "lon": -0.2584305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 95" - } -}, -{ - "type": "node", - "id": 416480062, - "lat": 51.5623550, - "lon": -0.2573175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 22" - } -}, -{ - "type": "node", - "id": 416480063, - "lat": 51.5642040, - "lon": -0.2622308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 21" - } -}, -{ - "type": "node", - "id": 416480064, - "lat": 51.5533458, - "lon": -0.2523075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 109" - } -}, -{ - "type": "node", - "id": 416520050, - "lat": 51.8314587, - "lon": -2.1315383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 08:00", - "ele": "96.0167236", - "post_box:type": "lamp", - "ref": "GL3 94" - } -}, -{ - "type": "node", - "id": 416560377, - "lat": 50.8737668, - "lon": -1.1183330, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO17 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416560378, - "lat": 50.8887943, - "lon": -1.1455230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO17 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416560379, - "lat": 50.8936292, - "lon": -1.1429895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO17 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416560380, - "lat": 50.8997484, - "lon": -1.1418828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO17 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416560381, - "lat": 50.9066944, - "lon": -1.1285914, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO17 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416560382, - "lat": 50.9156084, - "lon": -1.1335472, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO17 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 416560383, - "lat": 50.9211883, - "lon": -1.1488236, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO17 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416560385, - "lat": 50.8997703, - "lon": -1.1880678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO17 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416562510, - "lat": 51.3975684, - "lon": -1.1776172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG7", - "ref": "RG7 245" - } -}, -{ - "type": "node", - "id": 416563377, - "lat": 51.2616024, - "lon": -0.5695780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU1 10" - } -}, -{ - "type": "node", - "id": 416563379, - "lat": 51.2649191, - "lon": -0.5736839, - "tags": { - "amenity": "post_box", - "ref": "GU4 37" - } -}, -{ - "type": "node", - "id": 416563763, - "lat": 51.4050082, - "lon": -1.1723746, - "tags": { - "amenity": "post_box", - "mapillary": "1120359758443266", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG7", - "ref": "RG7 22", - "survey:date": "2020-10-03" - } -}, -{ - "type": "node", - "id": 416567909, - "lat": 51.2613307, - "lon": -0.5445570, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "last_checked": "2021-08-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU4 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416573581, - "lat": 51.2556362, - "lon": -0.5506783, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-29", - "old_ref": "GU4 76", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU4 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416573584, - "lat": 51.2551444, - "lon": -0.5473568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "GU1 257", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 416573710, - "lat": 51.2580543, - "lon": -0.5456551, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2021-07-29", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU4 214", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416574619, - "lat": 51.2549334, - "lon": -0.5365461, - "tags": { - "amenity": "post_box", - "ref": "GU4 69" - } -}, -{ - "type": "node", - "id": 416574620, - "lat": 51.2597371, - "lon": -0.5391045, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-05", - "old_ref": "GU4 253", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU4 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416585666, - "lat": 51.9016459, - "lon": -0.2067003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "layer": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG1 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:location": "survey" - } -}, -{ - "type": "node", - "id": 416590128, - "lat": 51.8604222, - "lon": 0.8243245, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CO3 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 416590130, - "lat": 51.8835985, - "lon": 0.8569986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO3 160", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 416611279, - "lat": 55.5657376, - "lon": -2.6310998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD6 73" - } -}, -{ - "type": "node", - "id": 416612593, - "lat": 55.6771549, - "lon": -2.1902698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD12 52" - } -}, -{ - "type": "node", - "id": 416666342, - "lat": 53.4842549, - "lon": -2.9947603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L30 767" - } -}, -{ - "type": "node", - "id": 416683639, - "lat": 53.4824683, - "lon": -2.9903541, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L30 920", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 416692719, - "lat": 53.3949164, - "lon": -2.9730780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 60 at the mouth of Blair Street on Upper Parliament Street.", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L8 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L8 60 on Upper Parliament Street.jpg" - } -}, -{ - "type": "node", - "id": 416700059, - "lat": 53.4757674, - "lon": -2.9962151, - "tags": { - "amenity": "post_box", - "ref": "L21 693" - } -}, -{ - "type": "node", - "id": 416820212, - "lat": 53.4763525, - "lon": -2.9614871, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 416821401, - "lat": 50.8169835, - "lon": -0.4763523, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416931444, - "lat": 53.4840857, - "lon": -2.9867722, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L30 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 416944721, - "lat": 52.9237353, - "lon": -1.2479769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 665D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 416944725, - "lat": 52.9223207, - "lon": -1.2508239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 662D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416944729, - "lat": 52.9205341, - "lon": -1.2478475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 630D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416944741, - "lat": 52.9195260, - "lon": -1.2403966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG9 652", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416944751, - "lat": 52.9225589, - "lon": -1.2373251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 655D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416944766, - "lat": 52.9325679, - "lon": -1.2447149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 603D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416944774, - "lat": 52.9261228, - "lon": -1.2395805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416944795, - "lat": 52.9179026, - "lon": -1.1997060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG9 640", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416987411, - "lat": 51.5322361, - "lon": -0.0044971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 416999851, - "lat": 53.4663969, - "lon": -2.9562450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "Edward VII post box L9 186 by McDowell Stevens at the junction of Danehurst Road and Warbreck Moor, Aintree.", - "manufacturer": "McDoweel Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 186", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Danehurst Road.jpg" - } -}, -{ - "type": "node", - "id": 417007934, - "lat": 51.8561620, - "lon": 0.0086420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "ref": "SG11 89" - } -}, -{ - "type": "node", - "id": 417010325, - "lat": 50.8250329, - "lon": -0.4861458, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1449D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417020785, - "lat": 53.4723506, - "lon": -2.9492606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L9 927 by Carron Company on Melling Road at Fir Grove, Aintree", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 927", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Fir Grove, Aintree.jpg" - } -}, -{ - "type": "node", - "id": 417021908, - "lat": 51.7356490, - "lon": 0.4502564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417021911, - "lat": 51.7331347, - "lon": 0.4565049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417047784, - "lat": 51.5521027, - "lon": -0.0441727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417063682, - "lat": 51.6120328, - "lon": -0.3702160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA5 79", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 417063683, - "lat": 51.6113576, - "lon": -0.3645147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA5 464", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 417072605, - "lat": 51.4663052, - "lon": -0.2724617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 417090303, - "lat": 53.4877732, - "lon": -2.9541818, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 417128573, - "lat": 53.4718703, - "lon": -2.9469818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L9 409 on Seeds Lane, Fazakerley.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L9 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Seeds Lane.jpg" - } -}, -{ - "type": "node", - "id": 417137278, - "lat": 51.3488741, - "lon": -0.2438091, - "tags": { - "amenity": "post_box", - "ref": "KT17 75" - } -}, -{ - "type": "node", - "id": 417151103, - "lat": 51.3463097, - "lon": -0.2415418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "ref": "KT17 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 417151119, - "lat": 51.3480463, - "lon": -0.2373768, - "tags": { - "amenity": "post_box", - "ref": "KT17 164" - } -}, -{ - "type": "node", - "id": 417151149, - "lat": 51.3506213, - "lon": -0.2362211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "KT17 185" - } -}, -{ - "type": "node", - "id": 417185801, - "lat": 51.3924666, - "lon": -1.4456190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "postal_code": "RG17", - "ref": "RG17 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417185803, - "lat": 51.3658128, - "lon": -1.4339376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG20", - "ref": "RG20 48" - } -}, -{ - "type": "node", - "id": 417185806, - "lat": 51.3638230, - "lon": -1.4119269, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG20 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417192705, - "lat": 52.9285825, - "lon": -4.1338027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL49 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 417192722, - "lat": 52.9319657, - "lon": -4.1369573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417192733, - "lat": 52.9331925, - "lon": -4.1357157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417192768, - "lat": 52.9376892, - "lon": -4.1436545, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417192777, - "lat": 52.9515373, - "lon": -4.1062325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417192779, - "lat": 52.9595053, - "lon": -4.1960686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 417192824, - "lat": 52.9646462, - "lon": -4.2263028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 417216583, - "lat": 53.7125524, - "lon": -1.4219197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF6 632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417216698, - "lat": 53.7094313, - "lon": -1.4294579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 640" - } -}, -{ - "type": "node", - "id": 417216714, - "lat": 53.6960347, - "lon": -1.4228606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 639" - } -}, -{ - "type": "node", - "id": 417216771, - "lat": 53.6771830, - "lon": -1.4900679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417216772, - "lat": 53.6771800, - "lon": -1.4900134, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF1 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417216786, - "lat": 53.6863267, - "lon": -1.4203625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417220345, - "lat": 51.0702005, - "lon": -1.1866038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO24 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417225152, - "lat": 51.8408650, - "lon": -0.3875946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417225277, - "lat": 51.8649510, - "lon": -0.4523800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU1 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417225434, - "lat": 51.8580250, - "lon": -0.4401918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417280281, - "lat": 55.9744484, - "lon": -3.1849018, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH6 107" - } -}, -{ - "type": "node", - "id": 417318051, - "lat": 52.6749870, - "lon": -1.8441670, - "tags": { - "amenity": "post_box", - "ref": "WS13 113" - } -}, -{ - "type": "node", - "id": 417328962, - "lat": 50.7139883, - "lon": -3.5064909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:15", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "EX2 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417633128, - "lat": 53.3959467, - "lon": -1.5024932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S6 955", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 417633317, - "lat": 53.3938574, - "lon": -1.5086356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S6 80", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 417684068, - "lat": 51.1758611, - "lon": -0.0139791, - "tags": { - "amenity": "post_box", - "ref": "RH7 9" - } -}, -{ - "type": "node", - "id": 417718835, - "lat": 51.4973082, - "lon": -0.0538707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718836, - "lat": 51.4992479, - "lon": -0.0601470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718837, - "lat": 51.4999140, - "lon": -0.0542559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE16 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718838, - "lat": 51.5056387, - "lon": -0.0399115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "type is Romec", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718839, - "lat": 51.4959136, - "lon": -0.0419829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "fixme": "collection Plate shows ref \"N13 6\" on 20/05/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718840, - "lat": 51.4928520, - "lon": -0.0466867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718841, - "lat": 51.4909854, - "lon": -0.0497279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718842, - "lat": 51.4906138, - "lon": -0.0540732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718843, - "lat": 51.4882011, - "lon": -0.0576367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417718844, - "lat": 51.4902558, - "lon": -0.0595880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417720692, - "lat": 55.9711931, - "lon": -4.0949935, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 417727703, - "lat": 51.4117063, - "lon": -0.0457280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR3 227", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417727704, - "lat": 51.4116789, - "lon": -0.0489315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417727706, - "lat": 51.4085431, - "lon": -0.0539384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 417727748, - "lat": 51.2843291, - "lon": 0.1506123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "colour": "red", - "post_box:type": "wall", - "ref": "TN13 281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 417727762, - "lat": 51.2885056, - "lon": 0.1457860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417727798, - "lat": 51.2842594, - "lon": 0.1632276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN13 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417727807, - "lat": 51.2874038, - "lon": 0.1635477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN13 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417728504, - "lat": 50.8273261, - "lon": -1.6852030, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417808779, - "lat": 53.1993357, - "lon": -4.1371810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 417810389, - "lat": 52.3663140, - "lon": -0.5477866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 69" - } -}, -{ - "type": "node", - "id": 417858435, - "lat": 51.8173180, - "lon": -0.0255018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG12 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 417944640, - "lat": 50.9360409, - "lon": -1.3883358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 417964473, - "lat": 51.9380177, - "lon": -2.0685825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL52 29" - } -}, -{ - "type": "node", - "id": 417964541, - "lat": 51.9468803, - "lon": -2.0802259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 373" - } -}, -{ - "type": "node", - "id": 417972264, - "lat": 52.4584019, - "lon": -1.8973892, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 252", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 418007310, - "lat": 51.9506429, - "lon": -2.0747440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 375" - } -}, -{ - "type": "node", - "id": 418007312, - "lat": 51.9484978, - "lon": -2.0682922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 369" - } -}, -{ - "type": "node", - "id": 418007323, - "lat": 51.9479638, - "lon": -2.0492543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "799601947348872", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL52", - "ref": "GL52 368", - "survey:date": "2020-01-19" - } -}, -{ - "type": "node", - "id": 418007328, - "lat": 51.9427126, - "lon": -2.0467578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 205" - } -}, -{ - "type": "node", - "id": 418009716, - "lat": 56.0088203, - "lon": -3.7169441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 220D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 418067146, - "lat": 53.7093374, - "lon": -1.4263919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 636" - } -}, -{ - "type": "node", - "id": 418161918, - "lat": 53.1142864, - "lon": -4.1229746, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 418168937, - "lat": 53.8313038, - "lon": -1.7229951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD10 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418200886, - "lat": 51.4643009, - "lon": -2.1395994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 418325888, - "lat": 55.9615207, - "lon": -4.0001595, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 418393708, - "lat": 53.1213874, - "lon": -4.1312062, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 418396211, - "lat": 51.7906687, - "lon": 0.9694952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "fixme": "RM 2013 data shows CO5 261", - "post_box:type": "lamp", - "ref": "CO5 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418407112, - "lat": 51.5704158, - "lon": -0.4114885, - "tags": { - "amenity": "post_box", - "ref": "HA4 486" - } -}, -{ - "type": "node", - "id": 418416631, - "lat": 51.1321351, - "lon": 0.2634997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 418439973, - "lat": 51.5182194, - "lon": -1.7647008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "mapillary": "271565879366123", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN4 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-04-25" - } -}, -{ - "type": "node", - "id": 418439976, - "lat": 51.5539907, - "lon": -1.8257343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 380", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 418494165, - "lat": 55.9550322, - "lon": -4.0218819, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 418495169, - "lat": 55.1186629, - "lon": -1.5285609, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 5RZ", - "ref": "NE24 548" - } -}, -{ - "type": "node", - "id": 418495182, - "lat": 55.1218410, - "lon": -1.5233728, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 5SB", - "ref": "NE24 45" - } -}, -{ - "type": "node", - "id": 418497293, - "lat": 51.8585281, - "lon": -0.3428705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 418499040, - "lat": 51.0803822, - "lon": -0.5167208, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "description": "This postbox is of a lamp shape and is set back in the hedge of the house named Coppergarth.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418499094, - "lat": 51.0630648, - "lon": -0.5153233, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH14 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418815385, - "lat": 54.9730444, - "lon": -1.6548890, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "NE4 199" - } -}, -{ - "type": "node", - "id": 418875230, - "lat": 53.3592240, - "lon": -1.4632785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "post_box:type": "pillar", - "ref": "S2 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 418901391, - "lat": 52.4691028, - "lon": -1.9327948, - "tags": { - "amenity": "post_box", - "ref": "B15 283" - } -}, -{ - "type": "node", - "id": 418901408, - "lat": 52.4700888, - "lon": -1.9270178, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B15 89" - } -}, -{ - "type": "node", - "id": 418901441, - "lat": 52.4721826, - "lon": -1.9252592, - "tags": { - "amenity": "post_box", - "note": "Ref not readable", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B16 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418901542, - "lat": 52.4654821, - "lon": -1.9143629, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B15 417", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 418901549, - "lat": 52.4685678, - "lon": -1.9134754, - "tags": { - "amenity": "post_box", - "ref": "B15 14" - } -}, -{ - "type": "node", - "id": 418901561, - "lat": 52.4652862, - "lon": -1.9081677, - "tags": { - "amenity": "post_box", - "ref": "B15 21" - } -}, -{ - "type": "node", - "id": 418901565, - "lat": 52.4568717, - "lon": -1.9093938, - "tags": { - "amenity": "post_box", - "ref": "B5 16" - } -}, -{ - "type": "node", - "id": 418901575, - "lat": 52.4537093, - "lon": -1.8969764, - "tags": { - "amenity": "post_box", - "ref": "B12 221" - } -}, -{ - "type": "node", - "id": 418947149, - "lat": 51.3028276, - "lon": -0.1665778, - "tags": { - "amenity": "post_box", - "ref": "CR5 252" - } -}, -{ - "type": "node", - "id": 418947150, - "lat": 51.2946708, - "lon": -0.1698275, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR5 264D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 418947152, - "lat": 51.1537006, - "lon": -0.1108135, - "tags": { - "amenity": "post_box", - "ref": "RH6 212" - } -}, -{ - "type": "node", - "id": 418954901, - "lat": 51.0559100, - "lon": -0.4191051, - "tags": { - "amenity": "post_box", - "ref": "RH13 76" - } -}, -{ - "type": "node", - "id": 418954902, - "lat": 51.0656956, - "lon": -0.4062639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418954905, - "lat": 51.0687738, - "lon": -0.4052753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 418954907, - "lat": 51.0717716, - "lon": -0.4053301, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH13 129" - } -}, -{ - "type": "node", - "id": 418956751, - "lat": 50.9906515, - "lon": -0.1000938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RH16 43" - } -}, -{ - "type": "node", - "id": 418974174, - "lat": 51.8713123, - "lon": -0.4243054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 117", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 418974181, - "lat": 51.8737176, - "lon": -0.4326122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 133", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419028265, - "lat": 53.3664107, - "lon": -2.8388164, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L26 965", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419028353, - "lat": 53.3600265, - "lon": -2.8397647, - "tags": { - "amenity": "post_box", - "ref": "L26 388" - } -}, -{ - "type": "node", - "id": 419028526, - "lat": 53.3714654, - "lon": -2.8293181, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 419028571, - "lat": 53.3825671, - "lon": -2.8118831, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 419070640, - "lat": 50.7888468, - "lon": -1.0903334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419135786, - "lat": 50.6807232, - "lon": -3.4113359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 419136298, - "lat": 50.6769093, - "lon": -3.4003298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX5 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419139638, - "lat": 51.4925251, - "lon": -0.2283756, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-20", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "W6 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 419237043, - "lat": 53.9360672, - "lon": -0.5638272, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419237089, - "lat": 53.9331348, - "lon": -0.5613947, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419253175, - "lat": 55.8271609, - "lon": -4.0163708, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 419269399, - "lat": 52.3809544, - "lon": -1.5019736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 435D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419269714, - "lat": 52.3848696, - "lon": -1.5314112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CV3", - "ref": "CV3 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 419269747, - "lat": 52.3804161, - "lon": -1.5364472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "post_box:type": "pillar", - "ref": "CV3 333", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 419272339, - "lat": 52.3840261, - "lon": -1.5190819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CV3", - "ref": "CV3 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419309897, - "lat": 52.4279273, - "lon": -1.9453005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B30 622", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 419309902, - "lat": 52.4521613, - "lon": -1.9139335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B5 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419316022, - "lat": 53.2111097, - "lon": -2.7091123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW6 378D" - } -}, -{ - "type": "node", - "id": 419332306, - "lat": 53.7067541, - "lon": -1.4374827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 621" - } -}, -{ - "type": "node", - "id": 419332402, - "lat": 53.7045420, - "lon": -1.4324379, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF6 629" - } -}, -{ - "type": "node", - "id": 419358035, - "lat": 51.2350269, - "lon": -0.5770340, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-27", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU2 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 419371216, - "lat": 50.9242678, - "lon": -0.1826227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419371217, - "lat": 50.8462232, - "lon": -0.1517815, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-02", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 113" - } -}, -{ - "type": "node", - "id": 419371849, - "lat": 51.5575644, - "lon": -0.4076372, - "tags": { - "amenity": "post_box", - "ref": "HA4 244" - } -}, -{ - "type": "node", - "id": 419379626, - "lat": 50.6726130, - "lon": -3.4001511, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX5 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419416502, - "lat": 50.8331396, - "lon": -3.3553517, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 419628544, - "lat": 52.9433950, - "lon": -1.1457831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ele": "23.437622", - "post_box:design": "type_a", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG2 412", - "ref:GB:uprn": "10015315792", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 419628545, - "lat": 52.9409235, - "lon": -1.1549569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "ele": "21.755371", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG2 25", - "ref:GB:uprn": "10015366724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 419697936, - "lat": 50.8317198, - "lon": -0.1366710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "note:collection_plate": "Not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN1 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419736165, - "lat": 56.0551180, - "lon": -4.8182510, - "tags": { - "amenity": "post_box", - "postal_code": "G84 8HL", - "ref": "G84 68" - } -}, -{ - "type": "node", - "id": 419763862, - "lat": 51.1333069, - "lon": 1.2524197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419774604, - "lat": 53.6666874, - "lon": -1.6827523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419890235, - "lat": 51.5320532, - "lon": -0.2174239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 13", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 419890236, - "lat": 51.5301468, - "lon": -0.2220822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 30" - } -}, -{ - "type": "node", - "id": 419890237, - "lat": 51.5322727, - "lon": -0.2255505, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 31" - } -}, -{ - "type": "node", - "id": 419890238, - "lat": 51.5339478, - "lon": -0.2207632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 46", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 419890239, - "lat": 51.5341139, - "lon": -0.2259495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 53", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 419890240, - "lat": 51.5352175, - "lon": -0.2261604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 83" - } -}, -{ - "type": "node", - "id": 419890241, - "lat": 51.5305739, - "lon": -0.2287982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 33" - } -}, -{ - "type": "node", - "id": 419890243, - "lat": 51.5343086, - "lon": -0.2412019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 19" - } -}, -{ - "type": "node", - "id": 419890245, - "lat": 51.5322869, - "lon": -0.2362370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 34" - } -}, -{ - "type": "node", - "id": 419890247, - "lat": 51.5296802, - "lon": -0.2370922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 32" - } -}, -{ - "type": "node", - "id": 419890251, - "lat": 51.5271290, - "lon": -0.2392158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 41" - } -}, -{ - "type": "node", - "id": 419890252, - "lat": 51.5332821, - "lon": -0.2453886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 7" - } -}, -{ - "type": "node", - "id": 419890254, - "lat": 51.5341285, - "lon": -0.2476435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 10" - } -}, -{ - "type": "node", - "id": 419890257, - "lat": 51.5356827, - "lon": -0.2495758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 21" - } -}, -{ - "type": "node", - "id": 419890259, - "lat": 51.5346452, - "lon": -0.2528014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 35" - } -}, -{ - "type": "node", - "id": 419890262, - "lat": 51.5322735, - "lon": -0.2458995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 9", - "source": "Survey of 2015-08-28" - } -}, -{ - "type": "node", - "id": 419890266, - "lat": 51.5262005, - "lon": -0.2664664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NW10 44" - } -}, -{ - "type": "node", - "id": 419897336, - "lat": 51.5287693, - "lon": -0.2697891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 105" - } -}, -{ - "type": "node", - "id": 419897337, - "lat": 51.5294920, - "lon": -0.2682050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 27" - } -}, -{ - "type": "node", - "id": 419897338, - "lat": 51.5319230, - "lon": -0.2884451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 97" - } -}, -{ - "type": "node", - "id": 419897339, - "lat": 51.5328128, - "lon": -0.2746474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 70" - } -}, -{ - "type": "node", - "id": 419897340, - "lat": 51.5379439, - "lon": -0.2602353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 60" - } -}, -{ - "type": "node", - "id": 419897341, - "lat": 51.5446941, - "lon": -0.2638734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 103", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 419897342, - "lat": 51.5445359, - "lon": -0.2609206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 101", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 419904470, - "lat": 51.5462486, - "lon": -0.2598578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 15" - } -}, -{ - "type": "node", - "id": 419904471, - "lat": 51.5492325, - "lon": -0.2636174, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-12", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 8", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 419904472, - "lat": 51.5491814, - "lon": -0.2657224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 5" - } -}, -{ - "type": "node", - "id": 419904473, - "lat": 51.5507323, - "lon": -0.2608495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 87" - } -}, -{ - "type": "node", - "id": 419904474, - "lat": 51.5523753, - "lon": -0.2568621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 45", - "survey:date": "2021-12-20", - "wikimedia_commons": "File:The North Circular Road, east of Woodheyes Road, NW10 - geograph.org.uk - 2909362.jpg" - } -}, -{ - "type": "node", - "id": 419904475, - "lat": 51.5565475, - "lon": -0.2453498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 57", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 419904476, - "lat": 51.5532407, - "lon": -0.2433347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 59" - } -}, -{ - "type": "node", - "id": 419904478, - "lat": 51.5477239, - "lon": -0.2458116, - "tags": { - "amenity": "post_box", - "ref": "NW10 39" - } -}, -{ - "type": "node", - "id": 419904479, - "lat": 51.5489763, - "lon": -0.2476596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 3" - } -}, -{ - "type": "node", - "id": 419904480, - "lat": 51.5509969, - "lon": -0.2499066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 26" - } -}, -{ - "type": "node", - "id": 419912313, - "lat": 51.4097464, - "lon": 0.0154488, - "tags": { - "amenity": "post_box", - "ref": "BR1 76" - } -}, -{ - "type": "node", - "id": 419912316, - "lat": 51.4116306, - "lon": 0.0191377, - "tags": { - "amenity": "post_box", - "ref": "BR1 89" - } -}, -{ - "type": "node", - "id": 419912321, - "lat": 51.4119840, - "lon": 0.0161256, - "tags": { - "amenity": "post_box", - "ref": "BR1 46" - } -}, -{ - "type": "node", - "id": 419917806, - "lat": 51.4168813, - "lon": 0.0130187, - "tags": { - "amenity": "post_box", - "ref": "BR1 79" - } -}, -{ - "type": "node", - "id": 419919477, - "lat": 53.2120853, - "lon": -1.7973140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 419923320, - "lat": 52.4387200, - "lon": -1.8914528, - "tags": { - "amenity": "post_box", - "ref": "B14 155" - } -}, -{ - "type": "node", - "id": 419923323, - "lat": 52.4431879, - "lon": -1.8829782, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 309", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 419923324, - "lat": 52.4449324, - "lon": -1.8811275, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-30", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "post_box:type": "pillar", - "ref": "B13 218", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419923326, - "lat": 52.4496101, - "lon": -1.8764182, - "tags": { - "amenity": "post_box", - "ref": "B13 132" - } -}, -{ - "type": "node", - "id": 419923328, - "lat": 52.4550143, - "lon": -1.8737521, - "tags": { - "amenity": "post_box", - "ref": "B12 713" - } -}, -{ - "type": "node", - "id": 419923331, - "lat": 52.4635402, - "lon": -1.8835913, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 47", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419923335, - "lat": 52.4623475, - "lon": -1.8707046, - "tags": { - "amenity": "post_box", - "ref": "B11 123" - } -}, -{ - "type": "node", - "id": 419923373, - "lat": 52.4564817, - "lon": -1.9005232, - "tags": { - "amenity": "post_box", - "postal_code": "B12", - "ref": "B12 208", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419934638, - "lat": 51.4178843, - "lon": 0.0074241, - "tags": { - "amenity": "post_box", - "ref": "BR1 243" - } -}, -{ - "type": "node", - "id": 419934641, - "lat": 51.4294033, - "lon": -0.0016133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 261D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 419999348, - "lat": 53.1467460, - "lon": -1.4456334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420129160, - "lat": 53.1660921, - "lon": -1.4790308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S45 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420131202, - "lat": 51.5541684, - "lon": -0.0471704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 2D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420135876, - "lat": 53.1700614, - "lon": -1.4943399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S45 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420135878, - "lat": 53.1690838, - "lon": -1.4825639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420159795, - "lat": 50.9871444, - "lon": -0.5521281, - "tags": { - "amenity": "post_box", - "ref": "RH20 105" - } -}, -{ - "type": "node", - "id": 420281568, - "lat": 52.9363518, - "lon": -1.4917578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 598" - } -}, -{ - "type": "node", - "id": 420293962, - "lat": 51.4833430, - "lon": -0.0538598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "no collection plate on 19/11/21 to confirm ref/collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420302730, - "lat": 51.9893787, - "lon": 0.2140421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420304465, - "lat": 51.4018132, - "lon": 0.0197799, - "tags": { - "amenity": "post_box", - "ref": "BR1 56" - } -}, -{ - "type": "node", - "id": 420304469, - "lat": 51.4007530, - "lon": 0.0184385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR1 640P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420306783, - "lat": 51.4042309, - "lon": 0.0247370, - "tags": { - "amenity": "post_box", - "ref": "BR1 265" - } -}, -{ - "type": "node", - "id": 420309247, - "lat": 51.3990388, - "lon": 0.0230318, - "tags": { - "amenity": "post_box", - "ref": "BR2 160" - } -}, -{ - "type": "node", - "id": 420309248, - "lat": 51.4005870, - "lon": 0.0264557, - "tags": { - "amenity": "post_box", - "ref": "BR1 311" - } -}, -{ - "type": "node", - "id": 420309267, - "lat": 51.4066000, - "lon": 0.0287005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 420314112, - "lat": 51.4029525, - "lon": 0.0310479, - "tags": { - "amenity": "post_box", - "ref": "BR1 4" - } -}, -{ - "type": "node", - "id": 420314205, - "lat": 51.4046160, - "lon": 0.0310123, - "tags": { - "amenity": "post_box", - "ref": "BR1 422" - } -}, -{ - "type": "node", - "id": 420314220, - "lat": 51.4062153, - "lon": 0.0329676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420317334, - "lat": 51.9452144, - "lon": 0.2745477, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 420319328, - "lat": 51.4009527, - "lon": 0.0360682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 420324695, - "lat": 51.8831202, - "lon": 0.0900041, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 420326661, - "lat": 51.4004214, - "lon": 0.0453405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 420329249, - "lat": 52.2787675, - "lon": -1.9271712, - "tags": { - "amenity": "post_box", - "ref": "B98 185" - } -}, -{ - "type": "node", - "id": 420331851, - "lat": 51.8352239, - "lon": 0.0026099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SG12 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420338652, - "lat": 54.4538455, - "lon": -3.0168177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "wall", - "ref": "LA22 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420339060, - "lat": 54.4343071, - "lon": -3.0374179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA22 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420339959, - "lat": 51.4017840, - "lon": 0.0510517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR1 23" - } -}, -{ - "type": "node", - "id": 420339964, - "lat": 51.4015678, - "lon": 0.0554258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=4db4de97-adc6-47b0-bc63-669d2f1f6c92&cp=51.401589~0.055278&lvl=19&dir=93.29587&pi=-4.0639777&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BR1 485" - } -}, -{ - "type": "node", - "id": 420345323, - "lat": 50.9520612, - "lon": -0.5665329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "RH20 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 420345325, - "lat": 50.9521483, - "lon": -0.5797097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "wall", - "ref": "RH20 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 420347123, - "lat": 55.6143740, - "lon": -2.8044754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "TD1 4" - } -}, -{ - "type": "node", - "id": 420347124, - "lat": 55.6150565, - "lon": -2.8016068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "note": "in entrance lobby", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "TD1 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420347125, - "lat": 55.5929959, - "lon": -2.4311661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD5 119", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420347126, - "lat": 55.6051528, - "lon": -2.4279563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD5 120" - } -}, -{ - "type": "node", - "id": 420347127, - "lat": 55.4659821, - "lon": -2.3519959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "TD5 107" - } -}, -{ - "type": "node", - "id": 420364247, - "lat": 51.4052443, - "lon": 0.0581990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR7 128" - } -}, -{ - "type": "node", - "id": 420364266, - "lat": 51.4038083, - "lon": 0.0517778, - "tags": { - "amenity": "post_box", - "ref": "BR1 83" - } -}, -{ - "type": "node", - "id": 420364287, - "lat": 51.4075130, - "lon": 0.0453173, - "tags": { - "amenity": "post_box", - "ref": "BR1 22" - } -}, -{ - "type": "node", - "id": 420364306, - "lat": 51.4039801, - "lon": 0.0430691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "ref": "BR1 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420364310, - "lat": 51.3953375, - "lon": 0.0364560, - "tags": { - "amenity": "post_box", - "ref": "BR2 54" - } -}, -{ - "type": "node", - "id": 420364331, - "lat": 51.3966359, - "lon": 0.0239157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 43", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420364353, - "lat": 51.3993739, - "lon": 0.0169966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420364527, - "lat": 50.9171113, - "lon": -0.5805147, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH20 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420364530, - "lat": 50.9570566, - "lon": -0.5135001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH20 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420365342, - "lat": 50.8176265, - "lon": -0.5131692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1440D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 420365343, - "lat": 50.8123027, - "lon": -0.4943464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420388783, - "lat": 51.7967042, - "lon": -1.1835388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "OX3 550" - } -}, -{ - "type": "node", - "id": 420404614, - "lat": 52.6817235, - "lon": -1.8321274, - "tags": { - "amenity": "post_box", - "ref": "WS13 10" - } -}, -{ - "type": "node", - "id": 420406517, - "lat": 51.1353978, - "lon": 0.2805422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TN2 12" - } -}, -{ - "type": "node", - "id": 420417113, - "lat": 51.1155614, - "lon": -0.1497376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Worth Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420417167, - "lat": 51.1162581, - "lon": -0.1451422, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Turners Hill Pound Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420417185, - "lat": 51.1142414, - "lon": -0.2113398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 128" - } -}, -{ - "type": "node", - "id": 420418274, - "lat": 51.0269276, - "lon": -0.9530689, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420418281, - "lat": 51.0124129, - "lon": -0.9649741, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of the modern latest EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420418282, - "lat": 51.0081659, - "lon": -0.9688865, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420423122, - "lat": 50.9234428, - "lon": 0.7225904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN36 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420423123, - "lat": 50.9205040, - "lon": 0.7247759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN36 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420430335, - "lat": 50.8803561, - "lon": 0.6612229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN35 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420432171, - "lat": 50.8788067, - "lon": 0.6538360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN35 212" - } -}, -{ - "type": "node", - "id": 420437084, - "lat": 52.4073052, - "lon": -1.9297767, - "tags": { - "amenity": "post_box", - "ref": "B38 225" - } -}, -{ - "type": "node", - "id": 420437089, - "lat": 52.4096182, - "lon": -1.9374541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 21:00; Sa 19:00", - "ref": "B38 157" - } -}, -{ - "type": "node", - "id": 420437090, - "lat": 52.4090998, - "lon": -1.9501443, - "tags": { - "amenity": "post_box", - "ref": "B31 373" - } -}, -{ - "type": "node", - "id": 420437091, - "lat": 52.4030068, - "lon": -2.0165342, - "tags": { - "amenity": "post_box", - "ref": "B45 425" - } -}, -{ - "type": "node", - "id": 420437104, - "lat": 52.3752874, - "lon": -2.0420313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B60 81" - } -}, -{ - "type": "node", - "id": 420437119, - "lat": 52.3508133, - "lon": -2.0631073, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B61 238", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 420437122, - "lat": 52.3409886, - "lon": -2.0668465, - "tags": { - "amenity": "post_box", - "postal_code": "B3 1ZZ", - "ref": "B61 207" - } -}, -{ - "type": "node", - "id": 420437126, - "lat": 52.3336250, - "lon": -2.0525504, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B60 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420437136, - "lat": 52.3301652, - "lon": -2.0485663, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B60 1276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420437143, - "lat": 52.3258879, - "lon": -2.0467998, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "B60 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 420437195, - "lat": 52.2969472, - "lon": -1.9766204, - "tags": { - "amenity": "post_box", - "ref": "B97 52" - } -}, -{ - "type": "node", - "id": 420437197, - "lat": 52.3002330, - "lon": -1.9736284, - "tags": { - "amenity": "post_box", - "ref": "B97 151", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420437199, - "lat": 52.2983539, - "lon": -1.9638693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B97 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420437200, - "lat": 52.2974166, - "lon": -1.9598934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B97 17", - "source": "Survey/Draco" - } -}, -{ - "type": "node", - "id": 420437201, - "lat": 52.2947413, - "lon": -1.9516004, - "tags": { - "amenity": "post_box", - "ref": "B97 64", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420437243, - "lat": 52.3044802, - "lon": -1.9378741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420444675, - "lat": 54.4590059, - "lon": -3.0247125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA22 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-06-25" - } -}, -{ - "type": "node", - "id": 420445219, - "lat": 51.8513100, - "lon": -0.2990650, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG4 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420514823, - "lat": 56.2311294, - "lon": -5.0716984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA32 38", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420542977, - "lat": 52.0244754, - "lon": -0.7209101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420545301, - "lat": 52.0250462, - "lon": -0.7109058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 232", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420692782, - "lat": 52.3381470, - "lon": -2.2779417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DY13 64" - } -}, -{ - "type": "node", - "id": 420729621, - "lat": 51.4024976, - "lon": 0.0157514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 420741884, - "lat": 51.4059908, - "lon": 0.0137876, - "tags": { - "amenity": "post_box", - "ref": "BR1 433" - } -}, -{ - "type": "node", - "id": 420745012, - "lat": 55.8238310, - "lon": -4.0901248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "G71 196", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 420752278, - "lat": 51.4070583, - "lon": 0.0120580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BR1 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 420777516, - "lat": 51.4147781, - "lon": 0.0872782, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 420784934, - "lat": 51.4051151, - "lon": 0.0122223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BR2 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 420786872, - "lat": 51.4024017, - "lon": 0.0079531, - "tags": { - "amenity": "post_box", - "ref": "BR2 64" - } -}, -{ - "type": "node", - "id": 420844454, - "lat": 51.4008058, - "lon": 0.0183996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 420846527, - "lat": 55.4399702, - "lon": -1.9763065, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE66 24", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 420855468, - "lat": 51.8134004, - "lon": -2.1455411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "ele": "240.6939697", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL4 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420883770, - "lat": 55.1171451, - "lon": -1.5253476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE24 5RB", - "ref": "NE24 593", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 420883823, - "lat": 55.1271531, - "lon": -1.5186083, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "NE24 5BY", - "ref": "NE24 521" - } -}, -{ - "type": "node", - "id": 420884120, - "lat": 55.1242595, - "lon": -1.5367842, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 5AU", - "ref": "NE24 624" - } -}, -{ - "type": "node", - "id": 420885244, - "lat": 56.8334812, - "lon": -5.0762158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "mapillary": "1274132696671626", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH33 6", - "source": "survey", - "survey:date": "2022-09-04" - } -}, -{ - "type": "node", - "id": 420885246, - "lat": 56.8219770, - "lon": -5.0863027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH33 19D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420885251, - "lat": 56.8001330, - "lon": -5.0675391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 33", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420885252, - "lat": 56.8043816, - "lon": -5.0741440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "description": "has notice: This post box is the property of Glen Nevis Holidays Ltd. Collections daily except sundays and bank holidays approx midday.", - "post_box:type": "lamp", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 420887666, - "lat": 51.1261845, - "lon": 0.2472741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN4 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 420897841, - "lat": 51.3868786, - "lon": 0.0633499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "ref": "BR2 366" - } -}, -{ - "type": "node", - "id": 420897852, - "lat": 51.3893333, - "lon": 0.0595227, - "tags": { - "amenity": "post_box", - "ref": "BR2 331" - } -}, -{ - "type": "node", - "id": 420897867, - "lat": 51.3874283, - "lon": 0.0482325, - "tags": { - "amenity": "post_box", - "ref": "BR2 324" - } -}, -{ - "type": "node", - "id": 420963574, - "lat": 52.9921655, - "lon": -1.1340522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 232", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Local" - } -}, -{ - "type": "node", - "id": 421064712, - "lat": 51.4237435, - "lon": -0.1241210, - "tags": { - "amenity": "post_box", - "ref": "SW16 9" - } -}, -{ - "type": "node", - "id": 421419519, - "lat": 51.5219821, - "lon": -3.5550871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF35 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 421426695, - "lat": 53.0398706, - "lon": -2.9818532, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 421456934, - "lat": 51.1293738, - "lon": 1.0782039, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 63" - } -}, -{ - "type": "node", - "id": 421767035, - "lat": 51.9446600, - "lon": -2.0531842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL52", - "ref": "GL52 330" - } -}, -{ - "type": "node", - "id": 421767043, - "lat": 51.9431065, - "lon": -2.0587132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 305" - } -}, -{ - "type": "node", - "id": 421767052, - "lat": 51.9507172, - "lon": -2.0615650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "GL52", - "ref": "GL52 146" - } -}, -{ - "type": "node", - "id": 421784677, - "lat": 51.7719845, - "lon": -2.2353064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "239.7326660", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL6 232" - } -}, -{ - "type": "node", - "id": 421810645, - "lat": 51.1552578, - "lon": 1.1373971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 175", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 421825087, - "lat": 57.3900204, - "lon": -7.3366220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS8 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421825687, - "lat": 57.4789085, - "lon": -7.3098909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HS7 40", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421826185, - "lat": 57.6071940, - "lon": -7.1757625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS6 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421826969, - "lat": 57.7119341, - "lon": -7.1762076, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421836446, - "lat": 54.7421830, - "lon": -1.5888236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "DH1 182" - } -}, -{ - "type": "node", - "id": 421899127, - "lat": 57.7949853, - "lon": -6.8848363, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421899247, - "lat": 57.7995523, - "lon": -6.8781376, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421900396, - "lat": 57.8888532, - "lon": -6.8036306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS3 119", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421907394, - "lat": 50.7819244, - "lon": 0.0836872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1045D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 421936822, - "lat": 52.9992228, - "lon": -1.0661675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "63.091797", - "post_box:type": "lamp", - "ref": "NG4 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 421939338, - "lat": 53.8673005, - "lon": -1.9097156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 421955819, - "lat": 53.7467361, - "lon": -1.8224787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 421955829, - "lat": 53.7297564, - "lon": -1.8148227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 421955831, - "lat": 53.7291946, - "lon": -1.8079394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 421987719, - "lat": 52.5132824, - "lon": -2.2028348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DY3 507" - } -}, -{ - "type": "node", - "id": 422045526, - "lat": 51.7130273, - "lon": 0.4879464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 458", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 422055085, - "lat": 51.3775052, - "lon": -0.1021504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CR0 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 422080734, - "lat": 51.3805870, - "lon": -0.1051406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 558D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422080736, - "lat": 51.3959819, - "lon": -0.1075267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 219", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422080744, - "lat": 51.3971356, - "lon": -0.1044785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 6", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422080745, - "lat": 51.4063865, - "lon": -0.0846233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422080747, - "lat": 51.4150470, - "lon": -0.0830127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "note": "ref revealed with a bit of fingernail scraping...", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE19 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422080748, - "lat": 51.4197366, - "lon": -0.0798872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 46", - "ref:GB:uprn": "10015283356", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422080850, - "lat": 50.7731757, - "lon": -0.7938375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 422081915, - "lat": 57.9188481, - "lon": -6.6812709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HS3 111", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422085319, - "lat": 53.7023954, - "lon": -1.4086984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF6 624" - } -}, -{ - "type": "node", - "id": 422085322, - "lat": 53.7032400, - "lon": -1.4124191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 678" - } -}, -{ - "type": "node", - "id": 422086998, - "lat": 50.8449688, - "lon": -0.7875362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 422094153, - "lat": 50.8386072, - "lon": -0.7934552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 170D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 422094598, - "lat": 50.8421907, - "lon": -0.7897066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 422130352, - "lat": 52.9461497, - "lon": -1.4837360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "126163569769852", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 351", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 422134287, - "lat": 51.3901020, - "lon": 0.0418065, - "tags": { - "amenity": "post_box", - "ref": "BR2 75" - } -}, -{ - "type": "node", - "id": 422164270, - "lat": 51.8767926, - "lon": -0.4308277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422164391, - "lat": 51.8822132, - "lon": -0.4471685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422164408, - "lat": 51.8779390, - "lon": -0.4423803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422164453, - "lat": 51.8672517, - "lon": -0.4334481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422164489, - "lat": 51.8704307, - "lon": -0.4325358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Notice plate missing, hence no collection times or reference data", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422164502, - "lat": 51.8750819, - "lon": -0.4386823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422558793, - "lat": 57.9217967, - "lon": -6.8484144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 170", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422559279, - "lat": 58.0613174, - "lon": -6.6675832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 168", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422559499, - "lat": 58.0935704, - "lon": -6.5919622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 47", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422559671, - "lat": 58.1524670, - "lon": -6.5008699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 48", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422648013, - "lat": 58.2882741, - "lon": -6.7350136, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422692454, - "lat": 51.4544794, - "lon": -2.1285515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 422713189, - "lat": 58.2162815, - "lon": -6.3806387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HS1 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422730677, - "lat": 58.2571142, - "lon": -6.3329599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LH16 Garrieguirm", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422750728, - "lat": 58.2767699, - "lon": -6.2940832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "LH14 Back Crossroads", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 422755749, - "lat": 58.2667803, - "lon": -6.3243742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LH17 Upper Coll", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422862099, - "lat": 57.8936046, - "lon": -5.1428042, - "tags": { - "amenity": "post_box", - "ref": "IV26 203", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422862463, - "lat": 57.8101006, - "lon": -5.0575490, - "tags": { - "amenity": "post_box", - "ref": "IV23 196", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422862516, - "lat": 57.7530563, - "lon": -5.0107427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV23 190", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 422888678, - "lat": 50.6576781, - "lon": -1.1503537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO36 10", - "ref:GB:uprn": "10015440580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/avenue-road-po36-8bq/0000PO3610" - } -}, -{ - "type": "node", - "id": 422925478, - "lat": 51.9009865, - "lon": 0.4042177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 422925486, - "lat": 51.8958525, - "lon": 0.4092471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 422925488, - "lat": 51.8927742, - "lon": 0.4122969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 422925497, - "lat": 51.8893692, - "lon": 0.4167210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 423021790, - "lat": 54.8365411, - "lon": -1.5450452, - "tags": { - "amenity": "post_box", - "fixme": "Confirm location", - "operator": "Royal Mail", - "ref": "DH3 119" - } -}, -{ - "type": "node", - "id": 423184410, - "lat": 54.3628451, - "lon": -2.9226257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA23 87", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423190092, - "lat": 54.4295602, - "lon": -2.9624936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-18", - "mapillary": "1072711687249629", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA22 135", - "source": "survey", - "survey:date": "2023-08-17" - } -}, -{ - "type": "node", - "id": 423190095, - "lat": 54.4323511, - "lon": -2.9623284, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LA22 160;LA22 161", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423241110, - "lat": 51.9286899, - "lon": -2.3145571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 423295464, - "lat": 57.4733499, - "lon": -4.2273172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-10-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV2", - "ref": "IV2 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423295497, - "lat": 57.4730324, - "lon": -4.1983557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV2", - "ref": "IV2 50", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423332239, - "lat": 51.9792933, - "lon": -2.4399489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "post_box:type": "pillar", - "ref": "GL18 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 423342202, - "lat": 53.7050349, - "lon": -1.4038083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF6 625" - } -}, -{ - "type": "node", - "id": 423342219, - "lat": 53.7062479, - "lon": -1.4008764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF6 631" - } -}, -{ - "type": "node", - "id": 423342221, - "lat": 53.6998387, - "lon": -1.4186775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF6 628" - } -}, -{ - "type": "node", - "id": 423342235, - "lat": 53.6708964, - "lon": -1.4548374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF1 101" - } -}, -{ - "type": "node", - "id": 423367619, - "lat": 58.9837870, - "lon": -2.9578381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW15 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 423374916, - "lat": 51.3969058, - "lon": -0.0812743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423374919, - "lat": 51.3936057, - "lon": -0.0869726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423749761, - "lat": 51.4304146, - "lon": -0.2125025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 423780745, - "lat": 51.1229269, - "lon": -0.1592323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "name": "St Mary's Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 423793860, - "lat": 55.8740190, - "lon": -4.3945957, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA4", - "ref": "PA4 69" - } -}, -{ - "type": "node", - "id": 423796134, - "lat": 50.6471078, - "lon": -1.1722212, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 133", - "ref:GB:uprn": "10015397194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lake-post-office-po36-9lt/000PO36133" - } -}, -{ - "type": "node", - "id": 423806029, - "lat": 55.6327258, - "lon": -2.2409137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD12 51" - } -}, -{ - "type": "node", - "id": 423806030, - "lat": 55.6298301, - "lon": -2.2223592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 68" - } -}, -{ - "type": "node", - "id": 423818283, - "lat": 53.8348520, - "lon": -1.7306713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD10 259" - } -}, -{ - "type": "node", - "id": 423818305, - "lat": 53.8258437, - "lon": -1.7269574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD10 356" - } -}, -{ - "type": "node", - "id": 423836514, - "lat": 53.5420980, - "lon": -2.5377785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BL5 2AX", - "ref": "BL5 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 423842748, - "lat": 51.5374698, - "lon": -0.9050074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "post_box:type": "pillar", - "ref": "RG9 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 423842751, - "lat": 51.5386768, - "lon": -0.9058867, - "tags": { - "amenity": "post_box", - "ref": "RG9 105", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 423886452, - "lat": 50.6717740, - "lon": -1.1627542, - "tags": { - "amenity": "post_box", - "check_date": "2016-05-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 94", - "ref:GB:uprn": "10015336247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/grove-farm-po36-0aa/0000PO3694" - } -}, -{ - "type": "node", - "id": 424001791, - "lat": 51.1274383, - "lon": 1.1190020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "note": "letters only", - "postal_code": "CT18", - "ref": "CT18 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 424001793, - "lat": 51.1157774, - "lon": 1.1357779, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 83" - } -}, -{ - "type": "node", - "id": 424095501, - "lat": 51.3988451, - "lon": -0.0989543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424216611, - "lat": 51.9506433, - "lon": -1.3899625, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 424250420, - "lat": 55.4403254, - "lon": -1.9284076, - "tags": { - "amenity": "post_box", - "ref": "NE66 61" - } -}, -{ - "type": "node", - "id": 424250500, - "lat": 55.4227680, - "lon": -1.9107484, - "tags": { - "amenity": "post_box", - "ref": "NE66 43" - } -}, -{ - "type": "node", - "id": 424250528, - "lat": 55.3795816, - "lon": -1.9188997, - "tags": { - "amenity": "post_box", - "ref": "NE66 105" - } -}, -{ - "type": "node", - "id": 424250554, - "lat": 55.4025774, - "lon": -1.8608901, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "NE66 28" - } -}, -{ - "type": "node", - "id": 424250604, - "lat": 55.4480661, - "lon": -1.8856601, - "tags": { - "amenity": "post_box", - "ref": "NE66 151" - } -}, -{ - "type": "node", - "id": 424512486, - "lat": 53.1529543, - "lon": -1.1988664, - "tags": { - "amenity": "post_box", - "ref": "NG19 16" - } -}, -{ - "type": "node", - "id": 424533517, - "lat": 52.9651688, - "lon": -1.1709063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 114", - "ref:GB:uprn": "10015452682", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424533524, - "lat": 52.9661656, - "lon": -1.1662695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 139", - "ref:GB:uprn": "10015443261", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424533530, - "lat": 52.9727772, - "lon": -1.1521599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 82D", - "ref:GB:uprn": "10015467342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 424533534, - "lat": 52.9781047, - "lon": -1.1483474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 87D", - "ref:GB:uprn": "10015474893", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424533551, - "lat": 52.9910637, - "lon": -1.1400017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG5 182", - "ref:GB:uprn": "10015272628", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424533554, - "lat": 52.9871112, - "lon": -1.1415881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424533588, - "lat": 52.9932614, - "lon": -1.0732109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "NG4 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424565626, - "lat": 51.8966349, - "lon": -0.3666135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 424565694, - "lat": 51.9008219, - "lon": -0.3671255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 425160593, - "lat": 52.9910222, - "lon": -1.1201973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG5 331", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 425163376, - "lat": 51.5301374, - "lon": -0.1168629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q125385728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1X 28D;WC1X 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box WC1X 28D and WC1X 228D" - } -}, -{ - "type": "node", - "id": 425246085, - "lat": 52.9776365, - "lon": -1.0817226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "image": "https://www.mapillary.com/map/im/viuHvhwrfqWiBZrMXb11cQ", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 425246092, - "lat": 52.9723637, - "lon": -1.0816430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 435", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 425324159, - "lat": 55.6163559, - "lon": -2.2624860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 100" - } -}, -{ - "type": "node", - "id": 425362411, - "lat": 51.4994162, - "lon": -0.2299963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 20", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 425362614, - "lat": 51.5020863, - "lon": -0.2287659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425439656, - "lat": 50.7391788, - "lon": -3.4638711, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 425510089, - "lat": 54.9802779, - "lon": -1.6230133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE2 150D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 425616743, - "lat": 51.1122125, - "lon": 1.1655014, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 211" - } -}, -{ - "type": "node", - "id": 425616786, - "lat": 51.1158615, - "lon": 1.1645502, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT18", - "ref": "CT18 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 425720585, - "lat": 51.5328642, - "lon": -0.1223152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 23;N1 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 425720642, - "lat": 51.5367791, - "lon": -0.1219944, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 121" - } -}, -{ - "type": "node", - "id": 425868700, - "lat": 51.7168326, - "lon": 0.5155095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 189", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 425895132, - "lat": 53.7987838, - "lon": -0.1653089, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 425895134, - "lat": 53.7926820, - "lon": -0.1374364, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU11 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 425895155, - "lat": 53.7319664, - "lon": 0.0307183, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 425907406, - "lat": 51.3929572, - "lon": 0.0306591, - "tags": { - "amenity": "post_box", - "ref": "BR2 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 425907422, - "lat": 51.3921345, - "lon": 0.0357477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 425953933, - "lat": 51.3957290, - "lon": 0.0553553, - "tags": { - "amenity": "post_box", - "ref": "BR1 74" - } -}, -{ - "type": "node", - "id": 425958006, - "lat": 53.6984742, - "lon": -1.4042002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 513" - } -}, -{ - "type": "node", - "id": 425958299, - "lat": 53.6981525, - "lon": -1.4133449, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF6 620" - } -}, -{ - "type": "node", - "id": 425958310, - "lat": 53.7001088, - "lon": -1.4211020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF6 619" - } -}, -{ - "type": "node", - "id": 425982788, - "lat": 51.3863843, - "lon": 0.0793071, - "tags": { - "amenity": "post_box", - "ref": "BR5 336" - } -}, -{ - "type": "node", - "id": 425982793, - "lat": 51.3718881, - "lon": 0.1070077, - "tags": { - "amenity": "post_box", - "ref": "BR6 293" - } -}, -{ - "type": "node", - "id": 425986560, - "lat": 51.4102472, - "lon": -0.2225299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 425986567, - "lat": 51.4107033, - "lon": -0.2186976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Collection plate missing 2020-02-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 11", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 425986570, - "lat": 51.4092168, - "lon": -0.2144352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 425986573, - "lat": 51.4060664, - "lon": -0.2085431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425986575, - "lat": 51.4054047, - "lon": -0.2097492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425986579, - "lat": 51.4031902, - "lon": -0.2146312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425986580, - "lat": 51.3988800, - "lon": -0.2188751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425986581, - "lat": 51.3949788, - "lon": -0.2184815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 271D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425986582, - "lat": 51.3991327, - "lon": -0.2289139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW20 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425986583, - "lat": 51.4072050, - "lon": -0.2297345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SW20 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 425986585, - "lat": 51.4059800, - "lon": -0.2383823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 44", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 425986588, - "lat": 51.4088824, - "lon": -0.2357520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 425995524, - "lat": 51.3744599, - "lon": 0.1089830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "mapillary": "339720757667275", - "post_box:type": "pillar", - "ref": "BR6 404", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-06-23" - } -}, -{ - "type": "node", - "id": 426001410, - "lat": 51.3782366, - "lon": 0.1093010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 426444271, - "lat": 51.1050067, - "lon": -0.1985805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 130" - } -}, -{ - "type": "node", - "id": 426444387, - "lat": 51.1275661, - "lon": -0.1438580, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "name": "Wakeham's Green Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426532757, - "lat": 55.5486773, - "lon": -4.6253661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 426573187, - "lat": 54.7795860, - "lon": -1.5397705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 426573192, - "lat": 54.7801715, - "lon": -1.5403585, - "tags": { - "amenity": "post_box", - "mail:franked": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DH1 14" - } -}, -{ - "type": "node", - "id": 426617870, - "lat": 53.3153434, - "lon": -1.2831699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S26 9509D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426683265, - "lat": 52.0046719, - "lon": -0.7416410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426683270, - "lat": 52.0088327, - "lon": -0.7493609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426683429, - "lat": 51.9958895, - "lon": -0.7426268, - "tags": { - "amenity": "post_box", - "disused": "yes", - "old_ref": "MK3 252" - } -}, -{ - "type": "node", - "id": 426783840, - "lat": 51.4014313, - "lon": 0.1129601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 313", - "ref:GB:uprn": "10015269840", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 426864109, - "lat": 58.1517680, - "lon": -4.9747569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 13:00", - "post_box:type": "lamp", - "ref": "IV27 304", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426916515, - "lat": 51.1286301, - "lon": 1.1591466, - "tags": { - "amenity": "post_box", - "ref": "CT18 87" - } -}, -{ - "type": "node", - "id": 426916542, - "lat": 51.1218282, - "lon": 1.1712182, - "tags": { - "amenity": "post_box", - "ref": "CT18 192" - } -}, -{ - "type": "node", - "id": 426929234, - "lat": 51.4769600, - "lon": -0.2408130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 426929237, - "lat": 51.4738880, - "lon": -0.2459920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 426929240, - "lat": 51.4719639, - "lon": -0.2534842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 426929242, - "lat": 51.4688648, - "lon": -0.2741448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 426929245, - "lat": 51.4677313, - "lon": -0.2742048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-05", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 426929246, - "lat": 51.4694690, - "lon": -0.2658793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 426929248, - "lat": 51.4649523, - "lon": -0.2210668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 2" - } -}, -{ - "type": "node", - "id": 426936183, - "lat": 55.5036928, - "lon": -2.5454460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Attached to phone box!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "phone_box", - "post_box:type": "lamp", - "ref": "TD8 84", - "royal_cypher": "scottish_crown", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 426941087, - "lat": 55.7778072, - "lon": -2.3429063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "TD11 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 426941088, - "lat": 55.7842444, - "lon": -2.0171113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD15 97" - } -}, -{ - "type": "node", - "id": 426941090, - "lat": 55.7624913, - "lon": -2.0088082, - "tags": { - "addr:city": "Berwick-upon-Tweed", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD15 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 426941092, - "lat": 55.7528169, - "lon": -2.1057567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "TD15", - "ref": "TD15 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426947466, - "lat": 51.2418917, - "lon": -0.7439859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GU12 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 426948486, - "lat": 50.7409668, - "lon": -3.4860990, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 426957046, - "lat": 51.2469189, - "lon": -0.7413113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:45", - "ref": "GU12 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 426961029, - "lat": 54.8190864, - "lon": -1.7375948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DH7 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 426961030, - "lat": 54.8193651, - "lon": -1.7352957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "DH7 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 426962689, - "lat": 53.1327619, - "lon": -1.0271006, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 426982582, - "lat": 51.4287492, - "lon": 0.0695861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SE9 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 426987352, - "lat": 51.2270370, - "lon": -0.6938955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "photo" - } -}, -{ - "type": "node", - "id": 426993925, - "lat": 51.4292711, - "lon": 0.0721573, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 426994554, - "lat": 53.1506733, - "lon": -0.9931460, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 427008558, - "lat": 53.1112882, - "lon": -0.9905368, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427038143, - "lat": 53.1041002, - "lon": -1.0347373, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 427053542, - "lat": 53.1954354, - "lon": -1.3924079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S42 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427069581, - "lat": 53.2197056, - "lon": -1.4135899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427069584, - "lat": 53.2120073, - "lon": -1.4065156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S41 239D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 427097339, - "lat": 53.2341202, - "lon": -1.3579102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427108996, - "lat": 53.2640966, - "lon": -1.3520036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "note": "franked mail only", - "post_box:type": "meter", - "ref": "S43 301P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 427146496, - "lat": 52.9920741, - "lon": -1.1155909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 469D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427146499, - "lat": 52.9899217, - "lon": -1.1150939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 427146501, - "lat": 52.9907334, - "lon": -1.1287697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG5 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427156410, - "lat": 52.9710661, - "lon": -1.1870528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 292D", - "ref:GB:uprn": "10015385618", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427156416, - "lat": 52.9634138, - "lon": -1.1911985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 290D", - "ref:GB:uprn": "10015421482", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427159717, - "lat": 53.8231916, - "lon": -1.7605162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD18 949D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 427159891, - "lat": 53.8126749, - "lon": -1.7609337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "note": "This postbox is designed to take letters, and is separate from the one next to it which takes parcels.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD2 130", - "royal_cypher": "EIIR", - "website": "https://www.royalmail.com/services-near-you/postbox/hillam-road-bd2-1qn/0000BD2130" - } -}, -{ - "type": "node", - "id": 427210969, - "lat": 51.4973587, - "lon": -0.3130501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "mapillary": "433750764937239", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-10-20" - } -}, -{ - "type": "node", - "id": 427210974, - "lat": 51.4945132, - "lon": -0.3138074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1162811454634868", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 50", - "survey:date": "2022-11-22" - } -}, -{ - "type": "node", - "id": 427210978, - "lat": 51.4962209, - "lon": -0.3093417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "759871491393558", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-01-08" - } -}, -{ - "type": "node", - "id": 427210979, - "lat": 51.4953741, - "lon": -0.3058083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427210982, - "lat": 51.4958509, - "lon": -0.2998640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 48" - } -}, -{ - "type": "node", - "id": 427210985, - "lat": 51.4987251, - "lon": -0.3058619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 427210987, - "lat": 51.5003421, - "lon": -0.3004732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 52" - } -}, -{ - "type": "node", - "id": 427210990, - "lat": 51.5014004, - "lon": -0.2949595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427210993, - "lat": 51.4998678, - "lon": -0.3092126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "1129922724178264", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 62", - "survey:date": "2021-03-09" - } -}, -{ - "type": "node", - "id": 427210996, - "lat": 51.5017423, - "lon": -0.3115492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "370586824364517", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 55D", - "survey:date": "2023-01-04" - } -}, -{ - "type": "node", - "id": 427210998, - "lat": 51.5043854, - "lon": -0.3065920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "mapillary": "253068133754614", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 24", - "survey:date": "2023-04-11" - } -}, -{ - "type": "node", - "id": 427211000, - "lat": 51.5062335, - "lon": -0.3079606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 31" - } -}, -{ - "type": "node", - "id": 427211002, - "lat": 51.5075646, - "lon": -0.3054178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "3347524698890988", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 17", - "survey:date": "2023-04-11" - } -}, -{ - "type": "node", - "id": 427211005, - "lat": 51.5099906, - "lon": -0.3064079, - "tags": { - "amenity": "post_box", - "note": "old stamp machine built into wall next to it", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "W5 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427211007, - "lat": 51.5104780, - "lon": -0.3052787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 23" - } -}, -{ - "type": "node", - "id": 427211009, - "lat": 51.5088644, - "lon": -0.3023744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 35" - } -}, -{ - "type": "node", - "id": 427211012, - "lat": 51.5108530, - "lon": -0.3002361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427211014, - "lat": 51.5093589, - "lon": -0.2981817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427211016, - "lat": 51.5081431, - "lon": -0.2960695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427211019, - "lat": 51.5055880, - "lon": -0.2952690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 81D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 427211021, - "lat": 51.5045120, - "lon": -0.2988532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 72", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427211024, - "lat": 51.5074604, - "lon": -0.2886005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 64" - } -}, -{ - "type": "node", - "id": 427211027, - "lat": 51.5098946, - "lon": -0.2895754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 82D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 427211029, - "lat": 51.5115766, - "lon": -0.2851941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 59" - } -}, -{ - "type": "node", - "id": 427211032, - "lat": 51.5121181, - "lon": -0.2922958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 7D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 427211035, - "lat": 51.5132000, - "lon": -0.2887409, - "tags": { - "amenity": "post_box", - "mapillary": "503357354314922", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-05-16" - } -}, -{ - "type": "node", - "id": 427211038, - "lat": 51.5122283, - "lon": -0.2853770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 427211039, - "lat": 51.5141054, - "lon": -0.2955511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 29" - } -}, -{ - "type": "node", - "id": 427211042, - "lat": 51.5137859, - "lon": -0.2991560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427211047, - "lat": 51.5113643, - "lon": -0.2964224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 4", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 427211049, - "lat": 51.5130449, - "lon": -0.3052504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W5 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427211055, - "lat": 51.5111833, - "lon": -0.3093293, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W5 8" - } -}, -{ - "type": "node", - "id": 427247579, - "lat": 51.5149184, - "lon": -0.3103467, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 15" - } -}, -{ - "type": "node", - "id": 427247582, - "lat": 51.5149759, - "lon": -0.3143785, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 36" - } -}, -{ - "type": "node", - "id": 427247585, - "lat": 51.5151888, - "lon": -0.3047054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "mapillary": "874550350355320", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 25", - "survey:date": "2022-12-05" - } -}, -{ - "type": "node", - "id": 427247587, - "lat": 51.5155280, - "lon": -0.3022089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 16" - } -}, -{ - "type": "node", - "id": 427247591, - "lat": 51.5166489, - "lon": -0.3063510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 1" - } -}, -{ - "type": "node", - "id": 427247594, - "lat": 51.5192993, - "lon": -0.3083289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 41" - } -}, -{ - "type": "node", - "id": 427247598, - "lat": 51.5214448, - "lon": -0.3113482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 427247601, - "lat": 51.5246289, - "lon": -0.3124451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 47" - } -}, -{ - "type": "node", - "id": 427247604, - "lat": 51.5263390, - "lon": -0.3127027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427247607, - "lat": 51.5256236, - "lon": -0.3161318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427247610, - "lat": 51.5263824, - "lon": -0.3045403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 79", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 427247612, - "lat": 51.5282662, - "lon": -0.2955742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427247614, - "lat": 51.5227603, - "lon": -0.3031049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 32" - } -}, -{ - "type": "node", - "id": 427247617, - "lat": 51.5218531, - "lon": -0.3068012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 9", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 427247620, - "lat": 51.5208581, - "lon": -0.3039133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 34", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 427247622, - "lat": 51.5200948, - "lon": -0.3009571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 54" - } -}, -{ - "type": "node", - "id": 427247625, - "lat": 51.5178973, - "lon": -0.3013787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427247629, - "lat": 51.5160456, - "lon": -0.3014004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427247631, - "lat": 51.5164687, - "lon": -0.2967862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427247635, - "lat": 51.5197886, - "lon": -0.2981007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 427247639, - "lat": 51.5225247, - "lon": -0.2959945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427247641, - "lat": 51.5201890, - "lon": -0.2912539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 58" - } -}, -{ - "type": "node", - "id": 427247644, - "lat": 51.5169618, - "lon": -0.2916554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427247646, - "lat": 51.5192105, - "lon": -0.2876898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427247648, - "lat": 51.5245048, - "lon": -0.2846118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 76" - } -}, -{ - "type": "node", - "id": 427247650, - "lat": 51.5269892, - "lon": -0.2848530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 77" - } -}, -{ - "type": "node", - "id": 427247651, - "lat": 51.5292356, - "lon": -0.2919415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W5 68" - } -}, -{ - "type": "node", - "id": 427278877, - "lat": 51.1384959, - "lon": 0.2777876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 7D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 427278879, - "lat": 51.1419031, - "lon": 0.2775009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 291D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427551270, - "lat": 51.6117432, - "lon": -2.5495501, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 134", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 427551271, - "lat": 51.6209390, - "lon": -2.5695241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4782781518499773", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS35", - "ref": "BS35 186", - "survey:date": "2022-04-15" - } -}, -{ - "type": "node", - "id": 427551272, - "lat": 51.6303958, - "lon": -2.5653631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "BS35", - "ref": "BS35 703D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427553796, - "lat": 50.8717370, - "lon": -3.2848557, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 427585401, - "lat": 51.3048384, - "lon": -0.6571061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU24 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427585408, - "lat": 51.3043143, - "lon": -0.6435553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_check": "2018-09-13", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU24 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427587574, - "lat": 51.3086477, - "lon": -0.6396306, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "last_check": "2021-06-26", - "note": "This postbox is in the Sheets Heath estate and the roads do not display street names and some stretches of road are unpaved. When one looks for this postbox it is worth using software to give your precise location to locate the road The Ridgeway.", - "note_1": "This postbox is on the westbound side and is immediately east of the property Heath House.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU24 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427646442, - "lat": 51.1263421, - "lon": 0.2815514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427647792, - "lat": 51.1344249, - "lon": 0.2632718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN1 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 427680659, - "lat": 51.5132891, - "lon": -0.0477989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 56;E1 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427684148, - "lat": 54.8190309, - "lon": -1.7442467, - "tags": { - "amenity": "post_box", - "ref": "DH7 23" - } -}, -{ - "type": "node", - "id": 427693974, - "lat": 55.1233318, - "lon": -1.5429808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "348305007414766", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "NE24 4DZ", - "ref": "NE24 645", - "survey:date": "2022-06-05" - } -}, -{ - "type": "node", - "id": 427693975, - "lat": 55.1273489, - "lon": -1.5403570, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 5AB", - "ref": "NE24 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427729478, - "lat": 51.7859692, - "lon": -2.1982104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-11-19", - "ele": "138.3143311", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427737204, - "lat": 53.6921105, - "lon": -1.4022128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 650" - } -}, -{ - "type": "node", - "id": 427737332, - "lat": 53.6935045, - "lon": -1.4067241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 638" - } -}, -{ - "type": "node", - "id": 427737742, - "lat": 53.6955216, - "lon": -1.4032270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 623" - } -}, -{ - "type": "node", - "id": 427744309, - "lat": 50.9568265, - "lon": -1.2186215, - "tags": { - "amenity": "post_box", - "ref": "SO32 689" - } -}, -{ - "type": "node", - "id": 427750994, - "lat": 50.7093117, - "lon": -1.2088683, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "mapillary": "289964326168990", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/havenstreet-village-po33-4da/0000PO3349" - } -}, -{ - "type": "node", - "id": 427793095, - "lat": 51.4527550, - "lon": -2.5896567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "post_box:type": "pillar", - "ref": "BS1 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 427794472, - "lat": 51.5126520, - "lon": -0.1092759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q113687568", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4Y 418D;EC4Y 4181D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:United Kingdom post box EC4Y 418D and EC4Y 4181D" - } -}, -{ - "type": "node", - "id": 427819443, - "lat": 53.8420172, - "lon": -1.7380155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 427832242, - "lat": 51.5254792, - "lon": 0.0191121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "730942071709390", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427864784, - "lat": 52.9928174, - "lon": -1.2168451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 206", - "ref:GB:uprn": "10015369228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 427882036, - "lat": 51.7724550, - "lon": 0.7376301, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CM9 236" - } -}, -{ - "type": "node", - "id": 427896626, - "lat": 50.8757601, - "lon": -0.0100985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 441" - } -}, -{ - "type": "node", - "id": 427896631, - "lat": 50.8739728, - "lon": -0.0040646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "247436710586399", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN7 582", - "survey:date": "2021-08-30" - } -}, -{ - "type": "node", - "id": 427896637, - "lat": 50.8723666, - "lon": -0.0034733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 447" - } -}, -{ - "type": "node", - "id": 427896651, - "lat": 50.8792510, - "lon": -0.0089384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 443" - } -}, -{ - "type": "node", - "id": 427946875, - "lat": 55.6321949, - "lon": -2.1685875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD12 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 427956786, - "lat": 55.6447071, - "lon": -2.3322809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD12 70", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 427961093, - "lat": 53.7927216, - "lon": -1.7395037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 427986549, - "lat": 51.5921484, - "lon": -3.8006783, - "tags": { - "amenity": "post_box", - "ref": "SA12 4" - } -}, -{ - "type": "node", - "id": 428004750, - "lat": 51.4728520, - "lon": -0.9089415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG4 560D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428049905, - "lat": 51.4168222, - "lon": 0.0630423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR7 136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428052513, - "lat": 51.4156447, - "lon": 0.0566924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 126D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 428080951, - "lat": 53.2362662, - "lon": -1.4260902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "S40 1;S40 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428089006, - "lat": 51.4070975, - "lon": 0.0621358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR7 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428114128, - "lat": 51.1337700, - "lon": 0.2555888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN4 51D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 428114130, - "lat": 51.1355497, - "lon": 0.2513379, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 428114131, - "lat": 51.1380724, - "lon": 0.2532659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 279D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428114133, - "lat": 51.1391679, - "lon": 0.2492802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428114134, - "lat": 51.1402330, - "lon": 0.2558156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428114137, - "lat": 51.1252057, - "lon": 0.2603677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 258D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428120141, - "lat": 53.1700226, - "lon": -1.2526198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 428137900, - "lat": 52.9928075, - "lon": -1.1276887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG5 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 428172729, - "lat": 53.2019726, - "lon": -1.2178924, - "tags": { - "amenity": "post_box", - "ref": "NG20 52" - } -}, -{ - "type": "node", - "id": 428173745, - "lat": 51.3364866, - "lon": 0.0538395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428180719, - "lat": 55.1227093, - "lon": -1.5770236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "postal_code": "NE24 4HL", - "ref": "NE24 638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428217569, - "lat": 51.4320332, - "lon": -0.1287901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "SW16 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428390886, - "lat": 55.6218965, - "lon": -2.2909348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 56" - } -}, -{ - "type": "node", - "id": 428412677, - "lat": 51.5371971, - "lon": -0.3893814, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 428412678, - "lat": 51.5424895, - "lon": -0.3793733, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428463050, - "lat": 52.5582933, - "lon": -0.3134697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE2 351D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428505505, - "lat": 50.8632027, - "lon": -0.8352849, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428506391, - "lat": 52.4789818, - "lon": -1.9101165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "B1 1403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 428511046, - "lat": 50.8579837, - "lon": -0.8593555, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428511555, - "lat": 53.7421958, - "lon": -0.8713242, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 428576287, - "lat": 50.8470226, - "lon": -1.2372575, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428576518, - "lat": 52.0014770, - "lon": -0.4892799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 428584418, - "lat": 51.1053644, - "lon": -0.2194043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 428586547, - "lat": 51.2980930, - "lon": -0.6545457, - "tags": { - "amenity": "post_box", - "ref": "GU24 102" - } -}, -{ - "type": "node", - "id": 428594487, - "lat": 51.5675685, - "lon": -0.4078664, - "tags": { - "amenity": "post_box", - "ref": "HA4 382" - } -}, -{ - "type": "node", - "id": 428600640, - "lat": 50.8449582, - "lon": -1.2778172, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428600773, - "lat": 50.8399262, - "lon": -1.2922010, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO31 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428601225, - "lat": 50.8491055, - "lon": -1.3008173, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO31 608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428613168, - "lat": 50.8954371, - "lon": -1.2093120, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "PO17 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428614136, - "lat": 50.9205160, - "lon": -1.4652834, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "301525951596772", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 281D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428621343, - "lat": 50.8750506, - "lon": -1.4391022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO45 57" - } -}, -{ - "type": "node", - "id": 428621846, - "lat": 52.3917277, - "lon": -1.9252569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B38 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428621847, - "lat": 52.4017449, - "lon": -1.9266809, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B38 17" - } -}, -{ - "type": "node", - "id": 428629613, - "lat": 50.8119570, - "lon": -1.5801128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO42 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428629614, - "lat": 50.8054061, - "lon": -0.5250194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-16", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "BN17 1886", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN17 1886D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 428630783, - "lat": 50.8041550, - "lon": -1.5821926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428635614, - "lat": 50.7762261, - "lon": -1.7159135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 26" - } -}, -{ - "type": "node", - "id": 428641019, - "lat": 52.0084523, - "lon": -0.7778867, - "tags": { - "amenity": "post_box", - "ref": "MK4 449" - } -}, -{ - "type": "node", - "id": 428643606, - "lat": 51.2744138, - "lon": 0.6570963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "postal_code": "ME17", - "ref": "ME17 3", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 428645614, - "lat": 52.0041978, - "lon": -0.7770968, - "tags": { - "amenity": "post_box", - "mapillary": "108247814683518", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "MK4 491", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 428645640, - "lat": 52.0017473, - "lon": -0.7677371, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "MK4 412" - } -}, -{ - "type": "node", - "id": 428757804, - "lat": 51.0808342, - "lon": 1.1791874, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 51" - } -}, -{ - "type": "node", - "id": 428835407, - "lat": 53.3471190, - "lon": -1.9911152, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 428846101, - "lat": 52.6477599, - "lon": 1.7272738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR30 3043D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428846250, - "lat": 52.6513207, - "lon": 1.7238778, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428846512, - "lat": 52.6576860, - "lon": 1.7216127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428846679, - "lat": 52.6474528, - "lon": 1.7210556, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 428915841, - "lat": 51.9374355, - "lon": -1.3902362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX7 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428918810, - "lat": 55.6090665, - "lon": -2.7890791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD1 16" - } -}, -{ - "type": "node", - "id": 428921053, - "lat": 55.6096957, - "lon": -2.7986373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1444018446054141", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD1 20", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 428936552, - "lat": 53.7809975, - "lon": -1.5956604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 820", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 428940020, - "lat": 53.6891281, - "lon": -1.4165101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF6 732" - } -}, -{ - "type": "node", - "id": 428940049, - "lat": 53.6884371, - "lon": -1.4253923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 635" - } -}, -{ - "type": "node", - "id": 428964050, - "lat": 51.4905666, - "lon": -0.1445302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 16;SW1V 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428964051, - "lat": 51.4899290, - "lon": -0.1374844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 65;SW1V 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 428967446, - "lat": 50.6985032, - "lon": -1.3211238, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 24", - "ref:GB:uprn": "10015383213", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/gunville-po30-1aq/0000PO3024" - } -}, -{ - "type": "node", - "id": 428968681, - "lat": 50.6858662, - "lon": -1.3736849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1029266037861036", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 80", - "ref:GB:uprn": "10015389577", - "survey:date": "2021-08-28", - "website": "https://www.royalmail.com/services-near-you/postbox/swainstone-po30-4pd/0000PO3080" - } -}, -{ - "type": "node", - "id": 428969473, - "lat": 55.1296029, - "lon": -1.5328264, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 5QG", - "ref": "NE24 132" - } -}, -{ - "type": "node", - "id": 428969478, - "lat": 55.1300319, - "lon": -1.5229833, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 5EX", - "ref": "NE24 495" - } -}, -{ - "type": "node", - "id": 428972671, - "lat": 51.8974954, - "lon": -0.3889094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 428972685, - "lat": 51.9045857, - "lon": -0.3810508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429178149, - "lat": 55.8797931, - "lon": -4.3855183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "postal_code": "PA4", - "ref": "PA4 93" - } -}, -{ - "type": "node", - "id": 429241805, - "lat": 51.4605693, - "lon": -2.1182843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429269517, - "lat": 53.9107338, - "lon": -0.1741677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 429290216, - "lat": 52.9972120, - "lon": -1.2106878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 264", - "ref:GB:uprn": "10015331922", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429310459, - "lat": 50.9231598, - "lon": -1.3950237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO17 93" - } -}, -{ - "type": "node", - "id": 429334004, - "lat": 51.5963071, - "lon": -1.7539578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 368" - } -}, -{ - "type": "node", - "id": 429370415, - "lat": 51.4451574, - "lon": -0.0854436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SE21 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429370416, - "lat": 51.4562286, - "lon": -0.0909942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429372134, - "lat": 51.3969646, - "lon": -0.0498115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429375136, - "lat": 53.3948021, - "lon": -1.4891010, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 58" - } -}, -{ - "type": "node", - "id": 429375137, - "lat": 53.3947409, - "lon": -1.4960920, - "tags": { - "amenity": "post_box", - "ref": "S6 27" - } -}, -{ - "type": "node", - "id": 429378822, - "lat": 53.0120645, - "lon": -1.0049103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "gold", - "ele": "25", - "olympics:2012": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG14 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 429378823, - "lat": 53.0157061, - "lon": -1.0072318, - "tags": { - "amenity": "post_box", - "ele": "24.879639", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG14 222", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 429381810, - "lat": 53.0007343, - "lon": -1.0608878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "ele": "55.641602", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG4 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS;survey (2015-03-28)" - } -}, -{ - "type": "node", - "id": 429381812, - "lat": 52.9861467, - "lon": -1.1182725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "ele": "123.654297", - "image": "https://www.mapillary.com/map/im/nmBLy4snJwDu9sbhx1x6YQ", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 219", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 429381814, - "lat": 52.9908007, - "lon": -1.1107552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "121.010742", - "old_ref": "NG3 195", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG3 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 429429770, - "lat": 55.8683533, - "lon": -4.4013087, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA4", - "ref": "PA4 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 429484917, - "lat": 52.5543355, - "lon": -0.3117219, - "tags": { - "amenity": "post_box", - "ref": "PE2 329" - } -}, -{ - "type": "node", - "id": 429484918, - "lat": 52.5552929, - "lon": -0.3149141, - "tags": { - "amenity": "post_box", - "ref": "PE2 356" - } -}, -{ - "type": "node", - "id": 429509398, - "lat": 51.6371568, - "lon": -1.2786832, - "tags": { - "amenity": "post_box", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 429527139, - "lat": 55.6921013, - "lon": -2.2184146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "TD12", - "ref": "TD12 66", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429531728, - "lat": 55.8540178, - "lon": -4.4289233, - "tags": { - "amenity": "post_box", - "postal_code": "PA3", - "ref": "PA3 155" - } -}, -{ - "type": "node", - "id": 429549888, - "lat": 51.9984312, - "lon": -3.2291473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 429549890, - "lat": 51.9984779, - "lon": -3.2356462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 429551230, - "lat": 54.7753261, - "lon": -2.0919808, - "tags": { - "amenity": "post_box", - "fixme": "Fix location!", - "ref": "DL13 65" - } -}, -{ - "type": "node", - "id": 429551247, - "lat": 54.7808347, - "lon": -2.0967026, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL13 97" - } -}, -{ - "type": "node", - "id": 429579506, - "lat": 52.9891841, - "lon": -2.5073435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "ref": "CW3 174", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 429579529, - "lat": 52.9827102, - "lon": -2.5477214, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 429594947, - "lat": 54.7951107, - "lon": -1.5834669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 284" - } -}, -{ - "type": "node", - "id": 429618757, - "lat": 51.8400750, - "lon": -2.6383325, - "tags": { - "amenity": "post_box", - "ref": "HR9 675" - } -}, -{ - "type": "node", - "id": 429640030, - "lat": 51.5229145, - "lon": 0.0151022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429640132, - "lat": 51.5212038, - "lon": 0.0124353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429652229, - "lat": 51.9844249, - "lon": -2.1570252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL20 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 429746522, - "lat": 53.0407683, - "lon": -2.9875230, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-06", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL13 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 429746644, - "lat": 53.0353746, - "lon": -2.9848060, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 429765369, - "lat": 54.2194266, - "lon": -2.8643963, - "tags": { - "amenity": "post_box", - "ref": "LA11 146" - } -}, -{ - "type": "node", - "id": 429771310, - "lat": 51.1398096, - "lon": 1.0975773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 94", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429793123, - "lat": 50.9992645, - "lon": -0.4715818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429793130, - "lat": 51.0190996, - "lon": -0.4724663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH14 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429804064, - "lat": 51.8264299, - "lon": 0.0224664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Babbs Green", - "ref": "SG12 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429807967, - "lat": 51.8350117, - "lon": 0.0248714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Baker's End", - "ref": "SG12 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429827032, - "lat": 53.7732056, - "lon": -1.6253749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 318" - } -}, -{ - "type": "node", - "id": 429827033, - "lat": 53.7707137, - "lon": -1.6338858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS12 86" - } -}, -{ - "type": "node", - "id": 429827077, - "lat": 53.7760471, - "lon": -1.6241853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 720" - } -}, -{ - "type": "node", - "id": 429831809, - "lat": 51.4384627, - "lon": -0.3075303, - "tags": { - "amenity": "post_box", - "ref": "TW10 14" - } -}, -{ - "type": "node", - "id": 429834826, - "lat": 52.3426058, - "lon": -2.0581373, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B61 778", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429834839, - "lat": 52.3041008, - "lon": -1.9617957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429834846, - "lat": 52.3055100, - "lon": -1.9540627, - "tags": { - "amenity": "post_box", - "ref": "B97 105" - } -}, -{ - "type": "node", - "id": 429834851, - "lat": 52.3094588, - "lon": -1.9360690, - "tags": { - "amenity": "post_box", - "ref": "B98 95" - } -}, -{ - "type": "node", - "id": 429834854, - "lat": 52.3117330, - "lon": -1.9322402, - "tags": { - "amenity": "post_box", - "ref": "B97 123" - } -}, -{ - "type": "node", - "id": 429834880, - "lat": 52.3315431, - "lon": -1.9098016, - "tags": { - "amenity": "post_box", - "ref": "B98 59" - } -}, -{ - "type": "node", - "id": 429834889, - "lat": 52.3645470, - "lon": -1.9186017, - "tags": { - "amenity": "post_box", - "ref": "B48 9" - } -}, -{ - "type": "node", - "id": 429834904, - "lat": 52.3426748, - "lon": -2.0515198, - "tags": { - "amenity": "post_box", - "ref": "B61 1073" - } -}, -{ - "type": "node", - "id": 429855607, - "lat": 52.3457107, - "lon": -2.0554733, - "tags": { - "amenity": "post_box", - "ref": "B61 172" - } -}, -{ - "type": "node", - "id": 429866577, - "lat": 52.3790166, - "lon": -0.5428484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 55" - } -}, -{ - "type": "node", - "id": 429875145, - "lat": 53.6942149, - "lon": -1.4168026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 627" - } -}, -{ - "type": "node", - "id": 429886467, - "lat": 51.7355889, - "lon": -1.2055387, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-16", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 284", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 429911354, - "lat": 51.4637435, - "lon": -2.5969863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 297", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 429911359, - "lat": 51.4678118, - "lon": -2.5942235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS6 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429911362, - "lat": 51.4662280, - "lon": -2.5954622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 298", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 429931235, - "lat": 51.3715902, - "lon": 0.5489557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME5 258D" - } -}, -{ - "type": "node", - "id": 429938179, - "lat": 53.1164613, - "lon": -2.0316903, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-12", - "ref": "ST13 726" - } -}, -{ - "type": "node", - "id": 429942868, - "lat": 51.6198929, - "lon": -0.1904160, - "tags": { - "amenity": "post_box", - "ref": "N12 35" - } -}, -{ - "type": "node", - "id": 429946276, - "lat": 53.1101372, - "lon": -2.0388965, - "tags": { - "amenity": "post_box", - "ref": "ST13 710" - } -}, -{ - "type": "node", - "id": 429954200, - "lat": 53.1066263, - "lon": -2.0255738, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST13 711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429954204, - "lat": 53.1091982, - "lon": -2.0332010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "ST13 707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 429972709, - "lat": 51.3863796, - "lon": -1.1140854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "RG7", - "ref": "RG7 174" - } -}, -{ - "type": "node", - "id": 429976612, - "lat": 52.9535629, - "lon": -1.1518080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "NG1 79", - "ref:GB:uprn": "10015334433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 429997775, - "lat": 51.8920753, - "lon": -2.1907961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL3 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 430015919, - "lat": 52.1525823, - "lon": -0.7017705, - "tags": { - "amenity": "post_box", - "ref": "MK46 512" - } -}, -{ - "type": "node", - "id": 430064055, - "lat": 56.0063898, - "lon": -3.7309135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 124" - } -}, -{ - "type": "node", - "id": 430111682, - "lat": 50.6168644, - "lon": -3.4487588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-12-10" - } -}, -{ - "type": "node", - "id": 430121716, - "lat": 50.2971076, - "lon": -3.8930227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ7 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 430194821, - "lat": 55.1311658, - "lon": -1.5148589, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 1JJ", - "ref": "NE24 536" - } -}, -{ - "type": "node", - "id": 430194926, - "lat": 55.1179944, - "lon": -1.5009829, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NE24 3EL", - "ref": "NE24 625", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 430218235, - "lat": 51.9136268, - "lon": -0.6524867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "LU7 83" - } -}, -{ - "type": "node", - "id": 430218239, - "lat": 51.9133405, - "lon": -0.6424031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "LU7 69" - } -}, -{ - "type": "node", - "id": 430219397, - "lat": 55.1321986, - "lon": -1.5167091, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 1NX", - "ref": "NE24 535" - } -}, -{ - "type": "node", - "id": 430228900, - "lat": 53.1154428, - "lon": -2.0078835, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST13 756" - } -}, -{ - "type": "node", - "id": 430228901, - "lat": 53.1112467, - "lon": -2.0069202, - "tags": { - "amenity": "post_box", - "ref": "ST13 757" - } -}, -{ - "type": "node", - "id": 430243720, - "lat": 50.9712843, - "lon": -0.4963977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430243728, - "lat": 50.9562261, - "lon": -0.5369390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430244137, - "lat": 50.9595861, - "lon": -0.4988059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 384D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory" - } -}, -{ - "type": "node", - "id": 430261146, - "lat": 53.7056415, - "lon": -1.3976286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF6 6" - } -}, -{ - "type": "node", - "id": 430261183, - "lat": 53.7041076, - "lon": -1.4003883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF6 856" - } -}, -{ - "type": "node", - "id": 430266786, - "lat": 51.4652960, - "lon": -0.9152141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG5 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430280782, - "lat": 54.7885308, - "lon": -1.5931939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 467" - } -}, -{ - "type": "node", - "id": 430286672, - "lat": 51.0653689, - "lon": 0.8574978, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TN26", - "ref": "TN26 298" - } -}, -{ - "type": "node", - "id": 430295986, - "lat": 51.0645305, - "lon": 0.8548506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN26", - "ref": "TN26 268", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 430308887, - "lat": 51.2772696, - "lon": 0.5055074, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME16 243" - } -}, -{ - "type": "node", - "id": 430328820, - "lat": 55.6301272, - "lon": -2.2775805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 55" - } -}, -{ - "type": "node", - "id": 430328821, - "lat": 55.5975847, - "lon": -2.4335955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD5 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 430363492, - "lat": 54.2309292, - "lon": -2.6945122, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 43" - } -}, -{ - "type": "node", - "id": 430364259, - "lat": 52.7596795, - "lon": 0.3991409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 430364341, - "lat": 52.7606203, - "lon": 0.4059219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE30 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 430364391, - "lat": 52.7646647, - "lon": 0.4052837, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 430364405, - "lat": 52.7667231, - "lon": 0.4092447, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 430364508, - "lat": 52.7661182, - "lon": 0.4151714, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 430364677, - "lat": 52.7708467, - "lon": 0.4104079, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 430364844, - "lat": 52.7613619, - "lon": 0.4089340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 430364889, - "lat": 52.7631029, - "lon": 0.4083330, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 430432257, - "lat": 51.5346680, - "lon": -0.0336873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "pillar", - "ref": "E3 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430447874, - "lat": 51.5311687, - "lon": -0.0389555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430497118, - "lat": 57.4445001, - "lon": -4.5553826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV4 129", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430511500, - "lat": 52.7537887, - "lon": 0.4030218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430511593, - "lat": 52.7535493, - "lon": 0.4326474, - "tags": { - "amenity": "post_box", - "ref": "PE30 460" - } -}, -{ - "type": "node", - "id": 430512147, - "lat": 52.9629907, - "lon": -1.1380200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG3 99", - "ref:GB:uprn": "10015272375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430532321, - "lat": 52.7536816, - "lon": 0.4455880, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE30 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 430536139, - "lat": 50.9629722, - "lon": -1.3532230, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 430653618, - "lat": 51.4990351, - "lon": -0.8766198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG10 324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430675326, - "lat": 50.6788391, - "lon": -3.2489491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX10 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430675677, - "lat": 51.4504329, - "lon": -2.6194778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS8 1373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430676699, - "lat": 51.4527624, - "lon": -2.6172563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS8 436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430686402, - "lat": 50.6789363, - "lon": -3.2410604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "pillar box has plant pot holder on top", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 74D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430723361, - "lat": 55.6795860, - "lon": -2.2246265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 53" - } -}, -{ - "type": "node", - "id": 430723366, - "lat": 55.7017471, - "lon": -2.2370899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 62" - } -}, -{ - "type": "node", - "id": 430723368, - "lat": 55.6980753, - "lon": -2.2037006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "TD12", - "ref": "TD12 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430732981, - "lat": 51.0604108, - "lon": -1.3760072, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430751957, - "lat": 50.9267790, - "lon": -1.2646393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 430754500, - "lat": 51.0769936, - "lon": -1.4854472, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO20 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430772854, - "lat": 51.0956137, - "lon": -1.6620252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP5 112" - } -}, -{ - "type": "node", - "id": 430780447, - "lat": 50.6501657, - "lon": -1.1663965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 114", - "ref:GB:uprn": "10015420352", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/fairway-po36-9lt/000PO36114" - } -}, -{ - "type": "node", - "id": 430790919, - "lat": 53.2690666, - "lon": -2.6759832, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA6 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 430805108, - "lat": 53.2704304, - "lon": -2.5489370, - "tags": { - "amenity": "post_box", - "postal_code": "CW8", - "ref": "CW8 1", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 430832822, - "lat": 53.2698483, - "lon": -2.6568105, - "tags": { - "amenity": "post_box", - "postal_code": "WA6", - "ref": "WA6 150", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 430913604, - "lat": 52.9518815, - "lon": -1.1428502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG1 7", - "ref:GB:uprn": "10015357912", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430913607, - "lat": 52.9508526, - "lon": -1.1437717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 80", - "ref:GB:uprn": "10015365682", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 430913609, - "lat": 52.9515507, - "lon": -1.1479268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "note": "There really are two boxes here.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430913612, - "lat": 52.9515499, - "lon": -1.1479081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "note": "There really are two boxes here.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 430913615, - "lat": 52.9600627, - "lon": -1.1401408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "image": "https://www.mapillary.com/map/im/PfGCNF01aZI4e_TDmeIJBg", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 220", - "ref:GB:uprn": "10015455266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 430952918, - "lat": 53.7828048, - "lon": -1.5859538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 933" - } -}, -{ - "type": "node", - "id": 430953009, - "lat": 53.7846999, - "lon": -1.5944712, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 408" - } -}, -{ - "type": "node", - "id": 430953154, - "lat": 53.7836824, - "lon": -1.6022454, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 402" - } -}, -{ - "type": "node", - "id": 430953166, - "lat": 53.7811383, - "lon": -1.5908419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 430960738, - "lat": 53.4909326, - "lon": -2.1524935, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 430966393, - "lat": 52.7495115, - "lon": 0.4362588, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE30 506" - } -}, -{ - "type": "node", - "id": 430967492, - "lat": 50.7570068, - "lon": -1.3265215, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 32", - "ref:GB:uprn": "10015296202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/solent-view-road-po31-7bb/0000PO3132" - } -}, -{ - "type": "node", - "id": 430967500, - "lat": 50.7556302, - "lon": -1.3335613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1205035246746857", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO31 27D", - "ref:GB:uprn": "10015272954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/gurnard-marsh-po31-7bb/0000PO3127" - } -}, -{ - "type": "node", - "id": 431032782, - "lat": 51.4304869, - "lon": -0.3072651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT2 2561;KT2 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431072217, - "lat": 52.4191798, - "lon": -1.7860591, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B91 278", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431074173, - "lat": 52.4123009, - "lon": -1.7922388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 284", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431074176, - "lat": 52.4118930, - "lon": -1.8011516, - "tags": { - "amenity": "post_box", - "ref": "B91 348", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431131147, - "lat": 51.2369454, - "lon": 0.5337842, - "tags": { - "amenity": "post_box", - "ref": "ME17 23" - } -}, -{ - "type": "node", - "id": 431140093, - "lat": 51.8742865, - "lon": -1.4761440, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX7 952", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431169595, - "lat": 57.5797171, - "lon": -5.6896203, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV22 210", - "source": "survey" - } -}, -{ - "type": "node", - "id": 431169600, - "lat": 57.5603113, - "lon": -5.6267484, - "tags": { - "amenity": "post_box", - "ref": "IV22 253", - "source": "survey" - } -}, -{ - "type": "node", - "id": 431169624, - "lat": 57.5495269, - "lon": -5.5164442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV22 235", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 431228030, - "lat": 55.6907868, - "lon": -2.3348232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "582863453087925", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD12 73", - "royal_cypher": "scottish_crown", - "survey:date": "2021-08-10" - } -}, -{ - "type": "node", - "id": 431228031, - "lat": 55.6895100, - "lon": -2.3387700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD12 58" - } -}, -{ - "type": "node", - "id": 431230217, - "lat": 55.6100872, - "lon": -2.3882760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD5 27" - } -}, -{ - "type": "node", - "id": 431235460, - "lat": 51.5112542, - "lon": -0.1222646, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-13", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "WC2E 66;WC2E 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431237831, - "lat": 54.0702762, - "lon": -0.5710824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431242484, - "lat": 53.1900173, - "lon": -1.3650987, - "tags": { - "amenity": "post_box", - "comment": "no collection plate", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S42 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 431243147, - "lat": 50.8039305, - "lon": -0.6655480, - "tags": { - "amenity": "post_box", - "ref": "PO22 122" - } -}, -{ - "type": "node", - "id": 431244632, - "lat": 53.1626730, - "lon": -1.3447818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S45 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431253916, - "lat": 53.2132126, - "lon": -1.2592957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431281924, - "lat": 53.1743060, - "lon": -1.4375941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431307656, - "lat": 51.4714978, - "lon": -2.1269165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN15 253" - } -}, -{ - "type": "node", - "id": 431334032, - "lat": 51.5517765, - "lon": -1.7916419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN1 621" - } -}, -{ - "type": "node", - "id": 431342499, - "lat": 52.7390711, - "lon": 0.3951728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 431346328, - "lat": 53.6919642, - "lon": -1.4230999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF6 622" - } -}, -{ - "type": "node", - "id": 431358014, - "lat": 51.4995865, - "lon": -0.1297610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-02", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate London as the host city of the 2012 Olympic and Paralympic Games and was unveiled by Jo Swinson MP, Under Secretary of State, Department for Business, Innovation and Skills", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "SW1", - "ref": "SW1H 1;SW1H 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431358016, - "lat": 51.5007981, - "lon": -0.1316316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1H 14;SW1H 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 431364073, - "lat": 52.5882622, - "lon": -1.8304285, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 1801", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431364074, - "lat": 52.5882562, - "lon": -1.8304559, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 180", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431418642, - "lat": 55.8519100, - "lon": -4.1839360, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 431700261, - "lat": 52.4536343, - "lon": -2.0148458, - "tags": { - "amenity": "post_box", - "ref": "B62 941", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431757391, - "lat": 52.4498650, - "lon": -2.0234397, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B62 1020", - "royal_cypher": "EVIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431757403, - "lat": 52.4485926, - "lon": -2.0302470, - "tags": { - "amenity": "post_box", - "ref": "B62 721", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431757467, - "lat": 52.4543652, - "lon": -2.0232477, - "tags": { - "amenity": "post_box", - "ref": "B62 330", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 431838112, - "lat": 50.5891248, - "lon": -2.4726286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "766386214078089", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 106D", - "ref:GB:uprn": "10015448397", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 431895065, - "lat": 51.4428508, - "lon": 0.1435208, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "DA5 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26641685" - } -}, -{ - "type": "node", - "id": 431924102, - "lat": 51.4413735, - "lon": 0.1479400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "DA5 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 431968943, - "lat": 53.3119474, - "lon": -2.2985601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 52", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 432011073, - "lat": 51.3969092, - "lon": -0.4024649, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 432011137, - "lat": 51.4008548, - "lon": -0.3597348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 432011143, - "lat": 51.4006250, - "lon": -0.3563793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT8 71;KT8 7101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432011175, - "lat": 51.4018403, - "lon": -0.3453019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT8 1951;KT8 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432012566, - "lat": 51.2503563, - "lon": -1.1688109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG23", - "ref": "RG23 307", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 432397389, - "lat": 56.1894265, - "lon": -3.9704446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK15 98D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432432658, - "lat": 51.4578747, - "lon": -0.3109918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 83D" - } -}, -{ - "type": "node", - "id": 432455415, - "lat": 55.8472892, - "lon": -4.2206233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "ref obscured", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 432464672, - "lat": 55.8785124, - "lon": -4.4019911, - "tags": { - "amenity": "post_box", - "postal_code": "PA4", - "ref": "PA4 134" - } -}, -{ - "type": "node", - "id": 432464697, - "lat": 55.8817459, - "lon": -4.3923175, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PA4", - "ref": "PA4 206", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432578795, - "lat": 50.7154665, - "lon": -1.9306999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "note": "Rare Edward VIII-reign", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 197D", - "ref:GB:uprn": "10015329828", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 432582018, - "lat": 54.0404398, - "lon": -0.3748977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "YO25 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432582045, - "lat": 54.0517919, - "lon": -0.3186022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432582165, - "lat": 54.0642203, - "lon": -0.2424406, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO15 2005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432619522, - "lat": 55.6674404, - "lon": -2.2046160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD12 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432619523, - "lat": 55.6540900, - "lon": -2.1773600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 76" - } -}, -{ - "type": "node", - "id": 432619524, - "lat": 55.5962800, - "lon": -2.2406600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 43" - } -}, -{ - "type": "node", - "id": 432619526, - "lat": 55.6701100, - "lon": -2.1603200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 67" - } -}, -{ - "type": "node", - "id": 432619527, - "lat": 55.5892800, - "lon": -2.2531500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 42" - } -}, -{ - "type": "node", - "id": 432619530, - "lat": 55.5958100, - "lon": -2.1841000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 90" - } -}, -{ - "type": "node", - "id": 432619531, - "lat": 55.6373881, - "lon": -2.1340076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD12 115", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432619533, - "lat": 55.5995350, - "lon": -2.1625200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 40" - } -}, -{ - "type": "node", - "id": 432619535, - "lat": 55.5869050, - "lon": -2.1834145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 155" - } -}, -{ - "type": "node", - "id": 432619536, - "lat": 55.6098300, - "lon": -2.1276700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE71 134", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 432619537, - "lat": 55.6391600, - "lon": -2.1078598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD12 91", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432619540, - "lat": 55.5381442, - "lon": -2.4635953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD5 34" - } -}, -{ - "type": "node", - "id": 432640626, - "lat": 50.8013353, - "lon": -2.0532172, - "tags": { - "amenity": "post_box", - "fixme": "has this box been removed?", - "ref": "BH21 37", - "ref:GB:uprn": "10015275839" - } -}, -{ - "type": "node", - "id": 432668340, - "lat": 50.8976784, - "lon": -2.2766372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 432671479, - "lat": 50.8945660, - "lon": -2.3443752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DT10 76", - "ref:GB:uprn": "10015335537", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432673532, - "lat": 50.8863905, - "lon": -2.3701275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 26", - "ref:GB:uprn": "10015418883", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432676196, - "lat": 50.8953933, - "lon": -2.4187980, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT9 124", - "ref:GB:uprn": "10015306217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432676205, - "lat": 50.8955199, - "lon": -2.4248300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT9 44", - "ref:GB:uprn": "10015469034", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 432693165, - "lat": 51.4275148, - "lon": -0.3269230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW11 205" - } -}, -{ - "type": "node", - "id": 432693168, - "lat": 51.4290554, - "lon": -0.3241091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW11 191D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 432693266, - "lat": 51.4331322, - "lon": -0.3152866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW10 136", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 432696844, - "lat": 50.9089763, - "lon": -2.5791412, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015452560" - } -}, -{ - "type": "node", - "id": 432703474, - "lat": 51.4077934, - "lon": -0.3685441, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT8 367", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 432708382, - "lat": 57.2085789, - "lon": -5.9865221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:30", - "old_ref": "P0103", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV49 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432711002, - "lat": 52.6968578, - "lon": -1.8240032, - "tags": { - "amenity": "post_box", - "postal_code": "WS13", - "ref": "WS13 93", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 432715352, - "lat": 57.6104490, - "lon": -4.9142691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV23 211", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432719246, - "lat": 51.2478378, - "lon": -1.1748690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "postal_code": "RG23", - "ref": "RG23 299" - } -}, -{ - "type": "node", - "id": 432720786, - "lat": 52.6783810, - "lon": -1.8260837, - "tags": { - "amenity": "post_box", - "ref": "WS14 6" - } -}, -{ - "type": "node", - "id": 432720796, - "lat": 52.6807224, - "lon": -1.8189106, - "tags": { - "amenity": "post_box", - "ref": "WS14 46" - } -}, -{ - "type": "node", - "id": 432720797, - "lat": 52.6726311, - "lon": -1.8134857, - "tags": { - "amenity": "post_box", - "ref": "WS14 67" - } -}, -{ - "type": "node", - "id": 432720798, - "lat": 52.6809640, - "lon": -1.8130841, - "tags": { - "amenity": "post_box", - "ref": "WS14 83" - } -}, -{ - "type": "node", - "id": 432721470, - "lat": 51.5290027, - "lon": -0.0295045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432723137, - "lat": 51.2435808, - "lon": -1.1692111, - "tags": { - "amenity": "post_box", - "postal_code": "RG23", - "ref": "RG23 52" - } -}, -{ - "type": "node", - "id": 432731937, - "lat": 54.7809939, - "lon": -1.5435860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 13:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432731947, - "lat": 54.7789080, - "lon": -1.5589148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 4" - } -}, -{ - "type": "node", - "id": 432734169, - "lat": 57.5563662, - "lon": -4.8282075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV6 162", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432734232, - "lat": 57.5549491, - "lon": -4.8158411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV6 343", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432734278, - "lat": 57.5614843, - "lon": -4.6613975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV4 161", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432737431, - "lat": 57.5478113, - "lon": -4.5415974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV4 169", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432786963, - "lat": 50.9545500, - "lon": -2.6487765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 432801535, - "lat": 51.5957336, - "lon": -1.3365528, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 432814787, - "lat": 57.5184300, - "lon": -4.4623807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV6 136", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432816880, - "lat": 57.5665593, - "lon": -4.5790047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV14 40", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432816894, - "lat": 57.5694107, - "lon": -4.5809842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV14 10", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432817524, - "lat": 55.8885648, - "lon": -4.3777006, - "tags": { - "amenity": "post_box", - "postal_code": "G14 0JZ", - "ref": "G14 423" - } -}, -{ - "type": "node", - "id": 432817526, - "lat": 55.9039585, - "lon": -4.3702732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G15 6SB", - "ref": "G15 1507" - } -}, -{ - "type": "node", - "id": 432817528, - "lat": 55.9120989, - "lon": -4.3684353, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 432817529, - "lat": 55.9112370, - "lon": -4.3605790, - "tags": { - "amenity": "post_box", - "ref": "G15 1282" - } -}, -{ - "type": "node", - "id": 432817532, - "lat": 55.9193595, - "lon": -4.3451984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G61 4BS", - "ref": "G61 763", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 432817533, - "lat": 55.9216832, - "lon": -4.3350641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-12-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G61 3", - "ref": "G61 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 432817535, - "lat": 55.9298203, - "lon": -4.3160545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-10-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G61 3", - "ref": "G61 1016D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 432817536, - "lat": 55.9481784, - "lon": -4.3167925, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "G62 8NJ", - "ref": "G62 555D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 432817537, - "lat": 55.9629097, - "lon": -4.3108621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-01-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "G62 8", - "ref": "G62 501", - "support": "wall", - "survey:date": "2024-02-02", - "wikimedia_commons": "File:Road junction, Mugdock - geograph.org.uk - 6244649.jpg" - } -}, -{ - "type": "node", - "id": 432817539, - "lat": 55.9838860, - "lon": -4.3065423, - "tags": { - "amenity": "post_box", - "postal_code": "G63 9", - "ref": "G63 612" - } -}, -{ - "type": "node", - "id": 432817605, - "lat": 55.9888341, - "lon": -4.2288390, - "tags": { - "amenity": "post_box", - "postal_code": "G66 7", - "ref": "G66 1122" - } -}, -{ - "type": "node", - "id": 432817652, - "lat": 55.8991813, - "lon": -4.2312373, - "tags": { - "amenity": "post_box", - "postal_code": "G64 2AS", - "ref": "G64 1070" - } -}, -{ - "type": "node", - "id": 432826463, - "lat": 53.6907345, - "lon": -1.4850718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432833549, - "lat": 53.2087062, - "lon": -4.1664993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 310" - } -}, -{ - "type": "node", - "id": 432994272, - "lat": 50.9667471, - "lon": -2.6887099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432994324, - "lat": 50.9712307, - "lon": -2.7169744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 432999080, - "lat": 51.6101286, - "lon": -0.1326165, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433010147, - "lat": 50.9808098, - "lon": -2.7435145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA12 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433062061, - "lat": 50.9678690, - "lon": -2.8326796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 433062071, - "lat": 50.9640631, - "lon": -2.8349844, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 433062081, - "lat": 50.9529291, - "lon": -2.8455058, - "tags": { - "amenity": "post_box", - "mapillary": "377849790238199", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TA19 482", - "survey:date": "2020-03-12" - } -}, -{ - "type": "node", - "id": 433062090, - "lat": 50.9502535, - "lon": -2.8516371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433062100, - "lat": 50.9468702, - "lon": -2.8511168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 483", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 433062117, - "lat": 50.9509722, - "lon": -2.9074893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433062134, - "lat": 50.9341641, - "lon": -2.9684200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 433062214, - "lat": 50.9275980, - "lon": -3.0219030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA20 491" - } -}, -{ - "type": "node", - "id": 433063591, - "lat": 51.4002929, - "lon": 0.1197176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 405D", - "ref:GB:uprn": "10015364157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 433072281, - "lat": 51.3970655, - "lon": 0.1231064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR5 427D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433073129, - "lat": 51.3974155, - "lon": 0.1158789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 138", - "ref:GB:uprn": "10015432777", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433112266, - "lat": 50.8378300, - "lon": -3.3806984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX15 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433112289, - "lat": 50.8127354, - "lon": -3.4300534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 10:25", - "colour": "red", - "direction": "E", - "name": "Hele | Bradninch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 4PN", - "ref": "EX5 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433115868, - "lat": 50.8157463, - "lon": -3.4841242, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX5 611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433115872, - "lat": 50.8168361, - "lon": -3.4834442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX5 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433184118, - "lat": 51.5273991, - "lon": -0.0330804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "E3 24D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 433198530, - "lat": 50.8061466, - "lon": -3.5184176, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "EX5 283D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 433198605, - "lat": 50.7960033, - "lon": -3.7440547, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX17 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 433198768, - "lat": 50.7968215, - "lon": -3.9733867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 102D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 433308698, - "lat": 53.0378616, - "lon": -2.9936380, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 433310561, - "lat": 50.8204867, - "lon": -4.0701720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 96D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 433310562, - "lat": 50.8193461, - "lon": -4.0725984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 433310581, - "lat": 50.8235710, - "lon": -4.0714358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 433326326, - "lat": 50.8311933, - "lon": -4.1760949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX21 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433326400, - "lat": 50.8131733, - "lon": -4.2571589, - "tags": { - "amenity": "post_box", - "mapillary": "807793904297029", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX22 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433378879, - "lat": 50.8248158, - "lon": -4.2504805, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 144", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 433378924, - "lat": 50.8157842, - "lon": -4.3508687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX22 173" - } -}, -{ - "type": "node", - "id": 433435169, - "lat": 51.5297087, - "lon": -0.0207938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 433483843, - "lat": 57.5636710, - "lon": -4.6798294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV6 174", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 433558850, - "lat": 50.7989344, - "lon": -4.4407258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX22 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 433558866, - "lat": 50.7977556, - "lon": -4.4627377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX22 133D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 433558876, - "lat": 50.7964536, - "lon": -4.4798668, - "tags": { - "amenity": "post_box", - "ref": "EX23 102" - } -}, -{ - "type": "node", - "id": 433561782, - "lat": 50.8056505, - "lon": -4.5216551, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "EX23 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433561804, - "lat": 50.8047029, - "lon": -4.5330376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX23 2" - } -}, -{ - "type": "node", - "id": 433603409, - "lat": 55.5689085, - "lon": -2.4565512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD5 112" - } -}, -{ - "type": "node", - "id": 433603410, - "lat": 55.4912600, - "lon": -2.4788000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD8 87" - } -}, -{ - "type": "node", - "id": 433603411, - "lat": 55.4563731, - "lon": -2.4757948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD8 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 433603412, - "lat": 55.4764628, - "lon": -2.5540028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "TD8 151D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 433666089, - "lat": 50.7511328, - "lon": -1.2823966, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 24", - "ref:GB:uprn": "10015377149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/victoria-grove-po32-6aa/0000PO3224" - } -}, -{ - "type": "node", - "id": 433666100, - "lat": 50.7538047, - "lon": -1.2782753, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/york-avenue-po32-6aa/00000PO327" - } -}, -{ - "type": "node", - "id": 433666112, - "lat": 50.7534894, - "lon": -1.2826281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO32 43", - "ref:GB:uprn": "10015352938", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/connaught-road-po31-7aa/0000PO3243" - } -}, -{ - "type": "node", - "id": 433666141, - "lat": 50.7581050, - "lon": -1.2878762, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 2511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/east-cowes-post-office-po32-6ra/00PO322511" - } -}, -{ - "type": "node", - "id": 433666146, - "lat": 50.7572562, - "lon": -1.2785527, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO32 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/old-road-po32-6aa/0000PO3247" - } -}, -{ - "type": "node", - "id": 433715672, - "lat": 51.4328889, - "lon": -0.3075625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW10 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 433715681, - "lat": 51.4296247, - "lon": -0.3095195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "KT2 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 433715687, - "lat": 51.4400433, - "lon": -0.3142461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TW10 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433720720, - "lat": 53.0385624, - "lon": -3.0047091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 433720758, - "lat": 53.0406028, - "lon": -3.0018245, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 433722260, - "lat": 54.1220140, - "lon": -1.1925995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO61 389;YO61 9389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433726909, - "lat": 52.9710712, - "lon": -2.1619566, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST3 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433855313, - "lat": 52.6534350, - "lon": 1.2625062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:00", - "operator": "Royal Mail", - "postal_code": "NR6", - "ref": "NR6 620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433857843, - "lat": 53.7854846, - "lon": -1.5555608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 872", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433864676, - "lat": 53.8786324, - "lon": -0.7070939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "lamp", - "ref": "YO43 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433869585, - "lat": 52.9766704, - "lon": -2.1483418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST3 620" - } -}, -{ - "type": "node", - "id": 433869587, - "lat": 52.9788173, - "lon": -2.1482079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST3 487" - } -}, -{ - "type": "node", - "id": 433873319, - "lat": 53.7838824, - "lon": -1.5750179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433873320, - "lat": 53.7838819, - "lon": -1.5750007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mailtypes": "franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS12 7" - } -}, -{ - "type": "node", - "id": 433909018, - "lat": 53.9310280, - "lon": -0.8215947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "YO42 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433909248, - "lat": 53.9339627, - "lon": -0.7886600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO42 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433909298, - "lat": 53.9329172, - "lon": -0.7828205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO42 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 433921665, - "lat": 51.4200881, - "lon": 0.1322169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 309", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 433952497, - "lat": 51.4184031, - "lon": 0.1314279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA14 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 433967639, - "lat": 51.1726946, - "lon": 1.0158253, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 8" - } -}, -{ - "type": "node", - "id": 433967724, - "lat": 51.1650967, - "lon": 0.9968238, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 271", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 433997767, - "lat": 53.9368957, - "lon": -0.7790027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO42 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433997789, - "lat": 53.9327655, - "lon": -0.7753133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO42 129", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 433997856, - "lat": 53.9357813, - "lon": -0.7691425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO42 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 433997967, - "lat": 53.9318582, - "lon": -0.7719170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO42 457", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 434003248, - "lat": 53.2210460, - "lon": -4.2040414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL61 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434004303, - "lat": 53.2211698, - "lon": -4.2104869, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "location is indoors at entrance to Pringles", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL61 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 434057126, - "lat": 50.8148296, - "lon": -4.5550870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 434057158, - "lat": 50.7817581, - "lon": -4.5579192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 38D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 434057286, - "lat": 50.7562533, - "lon": -4.5991511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434065380, - "lat": 50.7401530, - "lon": -4.5889523, - "tags": { - "amenity": "post_box", - "ref": "EX23 164" - } -}, -{ - "type": "node", - "id": 434097381, - "lat": 50.6619264, - "lon": -4.5759647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PL32 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434097409, - "lat": 50.5998811, - "lon": -4.6579006, - "tags": { - "amenity": "post_box", - "ref": "PL32 84" - } -}, -{ - "type": "node", - "id": 434114554, - "lat": 50.5651390, - "lon": -4.6885211, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 434114607, - "lat": 50.5613320, - "lon": -4.6872102, - "tags": { - "amenity": "post_box", - "ref": "PL30 150" - } -}, -{ - "type": "node", - "id": 434128593, - "lat": 52.9807717, - "lon": -2.1554800, - "tags": { - "amenity": "post_box", - "ref": "ST3 433" - } -}, -{ - "type": "node", - "id": 434128618, - "lat": 52.9850358, - "lon": -2.1586076, - "tags": { - "amenity": "post_box", - "ref": "ST3 498" - } -}, -{ - "type": "node", - "id": 434128620, - "lat": 52.9886701, - "lon": -2.1598306, - "tags": { - "amenity": "post_box", - "ref": "ST3 465" - } -}, -{ - "type": "node", - "id": 434156676, - "lat": 51.3524100, - "lon": -2.9373928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 434187139, - "lat": 50.8743626, - "lon": -1.2112336, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "PO15 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434304452, - "lat": 50.5265236, - "lon": -4.6965704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL30 156" - } -}, -{ - "type": "node", - "id": 434317978, - "lat": 50.5132138, - "lon": -4.8314653, - "tags": { - "amenity": "post_box", - "mapillary": "817061928999792", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 220", - "survey:date": "2021-07-06" - } -}, -{ - "type": "node", - "id": 434328188, - "lat": 50.5395797, - "lon": -4.9384378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/pxl-20210912-142432333/DSCN6369.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "PL28 88D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 434332422, - "lat": 50.5093176, - "lon": -4.9852590, - "tags": { - "amenity": "post_box", - "ref": "PL28 123" - } -}, -{ - "type": "node", - "id": 434338381, - "lat": 50.5301838, - "lon": -5.0116193, - "tags": { - "amenity": "post_box", - "ref": "PL28 143" - } -}, -{ - "type": "node", - "id": 434338395, - "lat": 50.5373265, - "lon": -5.0050150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL28 4D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 434338409, - "lat": 50.5381004, - "lon": -4.9977043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "720929246402316", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL28 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 434338442, - "lat": 50.5369831, - "lon": -4.9695823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL28 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434343234, - "lat": 50.4937484, - "lon": -4.9662608, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PL27 19" - } -}, -{ - "type": "node", - "id": 434343817, - "lat": 50.7274501, - "lon": -1.9847573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH15 7295;BH15 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434346547, - "lat": 50.4388409, - "lon": -4.9383455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR9 9D", - "royal_cypher": "VR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434346551, - "lat": 50.4317030, - "lon": -4.9422141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-10-25" - } -}, -{ - "type": "node", - "id": 434351248, - "lat": 50.4143134, - "lon": -4.9612938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434362083, - "lat": 50.4180200, - "lon": -5.0568291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR7 44D" - } -}, -{ - "type": "node", - "id": 434408279, - "lat": 52.5606374, - "lon": -1.8123874, - "tags": { - "amenity": "post_box", - "note": "These two adjacent boxes were moved slightly in 2010 to make way for a new cycle path", - "post_box:type": "pillar", - "ref": "B75 987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 434408280, - "lat": 52.5606265, - "lon": -1.8123942, - "tags": { - "amenity": "post_box", - "note": "These two adjacent boxes were moved slightly in 2010 to make way for a new cycle path", - "post_box:type": "pillar", - "postal_code": "B75", - "ref": "B75 4987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 434409417, - "lat": 50.3669517, - "lon": -5.0562865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR8 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 434418599, - "lat": 50.3530372, - "lon": -5.0655453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box design post box embedded into a brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "TR8 22D", - "royal_cypher": "GVIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434430403, - "lat": 50.5842381, - "lon": -3.6323010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "TQ13 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434430453, - "lat": 50.2788318, - "lon": -5.0553866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR4 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434430501, - "lat": 50.2688073, - "lon": -5.0503757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box design post box embedded into a stone wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR1 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434430994, - "lat": 53.6763822, - "lon": -1.6712739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 58" - } -}, -{ - "type": "node", - "id": 434444372, - "lat": 51.0505104, - "lon": 0.3909516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN5 257" - } -}, -{ - "type": "node", - "id": 434446445, - "lat": 50.2480625, - "lon": -5.0579020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR3 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 434446557, - "lat": 50.2345089, - "lon": -5.0692318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR3 169D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434453660, - "lat": 51.1303020, - "lon": 0.2460558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434453666, - "lat": 51.1335319, - "lon": 0.2493997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN4 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 434453689, - "lat": 51.1353306, - "lon": 0.2496986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434453695, - "lat": 51.1371595, - "lon": 0.2497899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 90D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 434453739, - "lat": 51.1350919, - "lon": 0.2561606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN4 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 434453742, - "lat": 51.1338612, - "lon": 0.2606897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 236D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 434457961, - "lat": 50.2218085, - "lon": -5.0815487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434457973, - "lat": 50.2231751, - "lon": -5.0873442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434462760, - "lat": 50.2235134, - "lon": -5.1418775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434462794, - "lat": 50.2186700, - "lon": -5.1413423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434473368, - "lat": 50.1822624, - "lon": -5.2179384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "636145938684958", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 434473385, - "lat": 50.1750260, - "lon": -5.2178571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TR16 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434473589, - "lat": 50.1553686, - "lon": -5.2316265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434478850, - "lat": 50.1422020, - "lon": -5.3071510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "410738154304509", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-04" - } -}, -{ - "type": "node", - "id": 434481400, - "lat": 52.6756566, - "lon": -1.8319098, - "tags": { - "amenity": "post_box", - "ref": "WS13 3" - } -}, -{ - "type": "node", - "id": 434487004, - "lat": 50.1264230, - "lon": -5.4259095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR20 87", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 434507308, - "lat": 50.0808029, - "lon": -5.5399026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "mapillary": "121528817187065", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR19 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-27" - } -}, -{ - "type": "node", - "id": 434507346, - "lat": 50.0661259, - "lon": -5.5699305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR19 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 434507362, - "lat": 50.0718068, - "lon": -5.5789495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 434507422, - "lat": 50.0627822, - "lon": -5.5985462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR19 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434507448, - "lat": 50.0742460, - "lon": -5.6228210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:45; Su off", - "drive_through": "no", - "mapillary": "981177982547395", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-06-13", - "survey:date": "2022-06-13" - } -}, -{ - "type": "node", - "id": 434509992, - "lat": 51.7198896, - "lon": -0.8013383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 434511071, - "lat": 51.7100041, - "lon": -0.8043486, - "tags": { - "amenity": "post_box", - "ref": "HP27 231" - } -}, -{ - "type": "node", - "id": 434513153, - "lat": 51.4471666, - "lon": 0.1886916, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 434517267, - "lat": 50.0658076, - "lon": -5.7130005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR19 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434525005, - "lat": 52.8207295, - "lon": -4.1011156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL45 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434535589, - "lat": 50.0606975, - "lon": -5.6543338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "fixme": "Check that this post box still exists as I couldn't find it in Oct 2022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434544164, - "lat": 50.0964564, - "lon": -5.5937077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "drive_through": "no", - "mapillary": "743102930448878", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 15", - "source": "survey", - "survey:date": "2022-07-09" - } -}, -{ - "type": "node", - "id": 434544496, - "lat": 50.1217460, - "lon": -5.5325237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR18 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434557524, - "lat": 51.5386404, - "lon": -0.1435299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 5;NW1 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 x 15 Parkway" - } -}, -{ - "type": "node", - "id": 434557544, - "lat": 51.5341536, - "lon": -0.1381217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 191D;NW1 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 191D and NW1 80D" - } -}, -{ - "type": "node", - "id": 434557553, - "lat": 51.5482258, - "lon": -0.0635400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 30D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434557554, - "lat": 51.5482789, - "lon": -0.0680196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-01-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434557555, - "lat": 51.5310696, - "lon": -0.1186314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 33D;N1 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box N1 33D and N1 133D" - } -}, -{ - "type": "node", - "id": 434565675, - "lat": 51.5383525, - "lon": -0.1138068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "N1 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-09-09" - } -}, -{ - "type": "node", - "id": 434565677, - "lat": 51.5419014, - "lon": -0.0984915, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-06", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 80;N1 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-20" - } -}, -{ - "type": "node", - "id": 434568881, - "lat": 52.7216176, - "lon": -4.0536647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "mapillary": "1428272147659205", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL42 7", - "royal_cypher": "EIIR", - "survey:date": "2022-09-23" - } -}, -{ - "type": "node", - "id": 434568891, - "lat": 52.7203585, - "lon": -4.0522820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL42 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434573519, - "lat": 52.7219856, - "lon": -4.0560066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL42 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434599123, - "lat": 50.1942769, - "lon": -5.4038023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434604726, - "lat": 51.0144800, - "lon": -4.1944748, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 434610592, - "lat": 50.1874860, - "lon": -5.3662053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 434617543, - "lat": 51.9158748, - "lon": -0.6481406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "LU7 34" - } -}, -{ - "type": "node", - "id": 434617562, - "lat": 51.9190382, - "lon": -0.6438270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LU7 53" - } -}, -{ - "type": "node", - "id": 434620102, - "lat": 50.1886623, - "lon": -5.3400999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434644601, - "lat": 55.8470973, - "lon": -4.4466601, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 434650726, - "lat": 50.9655445, - "lon": -4.2008952, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 434676847, - "lat": 52.7513160, - "lon": 0.4319116, - "tags": { - "amenity": "post_box", - "ref": "PE30 468" - } -}, -{ - "type": "node", - "id": 434676936, - "lat": 52.7525706, - "lon": 0.4379497, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE30 48" - } -}, -{ - "type": "node", - "id": 434713185, - "lat": 50.9795463, - "lon": -1.1311373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO32 287", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434723332, - "lat": 52.7498081, - "lon": 0.4254258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434731940, - "lat": 52.7554978, - "lon": 0.4110910, - "tags": { - "amenity": "post_box", - "ref": "PE30 22" - } -}, -{ - "type": "node", - "id": 434751709, - "lat": 55.6448900, - "lon": -2.1479100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 164" - } -}, -{ - "type": "node", - "id": 434751713, - "lat": 55.6479266, - "lon": -2.1171544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD12 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 434803015, - "lat": 57.5216364, - "lon": -4.4536733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV4 327", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434803019, - "lat": 57.5367106, - "lon": -4.4229213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV4 187", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434803032, - "lat": 57.5404428, - "lon": -4.3328119, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-18", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "IV4 153", - "royal_cypher": "scottish_crown", - "source": "survey 29th October 2014" - } -}, -{ - "type": "node", - "id": 434803037, - "lat": 57.5278952, - "lon": -4.3692252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV4 150", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 434803657, - "lat": 52.1099947, - "lon": -2.3186763, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR14 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 434803661, - "lat": 52.1115349, - "lon": -2.3263018, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:45, Sa 11:30", - "post_box:type": "pillar", - "ref": "WR14 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 434943191, - "lat": 53.9599878, - "lon": -1.0799501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO1 3;YO1 9003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 435104716, - "lat": 51.5163066, - "lon": -0.0986281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "EC1A 114;EC1A 1141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435107862, - "lat": 51.5965912, - "lon": -1.3387072, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 435139406, - "lat": 51.5273786, - "lon": -0.1641827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "the left aperture is blocked up, the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 16D" - } -}, -{ - "type": "node", - "id": 435194141, - "lat": 51.9937066, - "lon": 0.1596600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194148, - "lat": 52.0033555, - "lon": 0.1788210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194203, - "lat": 51.9701169, - "lon": 0.1533201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB11 94", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194225, - "lat": 51.9648678, - "lon": 0.1417265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194229, - "lat": 51.9885354, - "lon": 0.1585103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB11 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194286, - "lat": 51.9188050, - "lon": 0.1673459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM23 102D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194296, - "lat": 51.9616668, - "lon": 0.1446856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB11 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194307, - "lat": 51.9614674, - "lon": 0.1803252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435194315, - "lat": 51.9523643, - "lon": 0.1891943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435204274, - "lat": 50.9542887, - "lon": -4.1888128, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 435330679, - "lat": 50.2163558, - "lon": -5.2752457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 435330892, - "lat": 50.2270724, - "lon": -5.2391494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 435330927, - "lat": 50.2290203, - "lon": -5.2327014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 435408932, - "lat": 52.0286418, - "lon": -0.8003492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK8 610", - "source": "survey" - } -}, -{ - "type": "node", - "id": 435411230, - "lat": 50.2315410, - "lon": -5.2285003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 21D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 435411245, - "lat": 50.2303020, - "lon": -5.2229473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR15 1D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 435422956, - "lat": 51.2042853, - "lon": 1.0015660, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 85" - } -}, -{ - "type": "node", - "id": 435423108, - "lat": 51.1545937, - "lon": 1.0387976, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 168" - } -}, -{ - "type": "node", - "id": 435452027, - "lat": 50.2605797, - "lon": -5.0658240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 435452305, - "lat": 50.2717329, - "lon": -5.0058823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 435452395, - "lat": 50.2905836, - "lon": -4.9701466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR2 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 435678253, - "lat": 50.3270347, - "lon": -4.7932608, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PL26 58" - } -}, -{ - "type": "node", - "id": 435678308, - "lat": 50.3332452, - "lon": -4.7858888, - "tags": { - "amenity": "post_box", - "ref": "PL25 214" - } -}, -{ - "type": "node", - "id": 435678458, - "lat": 50.3406208, - "lon": -4.7934678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL25 63", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 436131271, - "lat": 52.9666848, - "lon": -2.1541629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST3 326", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 436150794, - "lat": 51.6334545, - "lon": -1.2799507, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 436157533, - "lat": 51.4475946, - "lon": -2.1014128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 436172378, - "lat": 51.5497138, - "lon": -0.0715205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 10D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 436172380, - "lat": 51.5487110, - "lon": -0.0799286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 169" - } -}, -{ - "type": "node", - "id": 436172421, - "lat": 51.5423672, - "lon": -0.1343221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture is blocked, LH collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 29D" - } -}, -{ - "type": "node", - "id": 436172427, - "lat": 51.5468064, - "lon": -0.1436283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "mapillary": "6100625216629896", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW5 14D" - } -}, -{ - "type": "node", - "id": 436172451, - "lat": 51.5458716, - "lon": -0.1544051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW5 36D" - } -}, -{ - "type": "node", - "id": 436174854, - "lat": 51.5517155, - "lon": -0.0660632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 436199307, - "lat": 50.7447925, - "lon": -3.9896037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX20 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 436209597, - "lat": 50.9847077, - "lon": -1.4004354, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 796", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 436275636, - "lat": 53.2396919, - "lon": -1.4492061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 4AN", - "ref": "S40 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 436371668, - "lat": 54.0167117, - "lon": -0.7700678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "YO41 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 436371675, - "lat": 53.9619296, - "lon": -0.7872558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO42 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 436371690, - "lat": 53.9587147, - "lon": -0.7995210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO42 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 436371716, - "lat": 53.9265050, - "lon": -1.8184360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 805" - } -}, -{ - "type": "node", - "id": 436384954, - "lat": 53.2225348, - "lon": -4.1967148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 195" - } -}, -{ - "type": "node", - "id": 436625033, - "lat": 57.4908210, - "lon": -4.2250109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 125", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 436625034, - "lat": 57.4908232, - "lon": -4.2250211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only, 1st class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV1", - "ref": "IV1 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 436625035, - "lat": 57.4908272, - "lon": -4.2250323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "franked mail only, 2nd class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV1", - "ref": "IV1 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 436632673, - "lat": 53.8722757, - "lon": -1.9226369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 436633244, - "lat": 52.7192151, - "lon": -2.0046654, - "tags": { - "amenity": "post_box", - "ref": "WS12 204" - } -}, -{ - "type": "node", - "id": 436643000, - "lat": 50.6423851, - "lon": -1.9477666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH19 104D", - "ref:GB:uprn": "10015309584", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 436643712, - "lat": 53.4104068, - "lon": -2.9907469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box L3 105 by Carron Company on Pall Mall, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Pall Mall, Liverpool" - } -}, -{ - "type": "node", - "id": 436648855, - "lat": 50.6751763, - "lon": -2.0988339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-02-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 177D", - "ref:GB:uprn": "10015344962", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 436648863, - "lat": 50.6915651, - "lon": -2.1142794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 252D", - "ref:GB:uprn": "10015321640", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 437365056, - "lat": 52.9812834, - "lon": -0.0323306, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "PE21", - "ref": "PE21 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 437365057, - "lat": 52.9810618, - "lon": -0.0363390, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "PE21", - "ref": "PE21 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 437365059, - "lat": 52.9809526, - "lon": -0.0276281, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "postal_code": "PE21", - "ref": "PE21 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 437381829, - "lat": 50.6922966, - "lon": -1.2892273, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 78", - "ref:GB:uprn": "10015333376", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/medina-avenue-po30-1ae/0000PO3078" - } -}, -{ - "type": "node", - "id": 437409023, - "lat": 52.0061003, - "lon": -0.4924192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 437481510, - "lat": 50.9319408, - "lon": -4.1488811, - "tags": { - "amenity": "post_box", - "mapillary": "216685861234779", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 437482384, - "lat": 52.8447382, - "lon": -1.6538677, - "tags": { - "amenity": "post_box", - "fixme": "check position, was in junction", - "operator": "Royal Mail", - "ref": "DE13 1242" - } -}, -{ - "type": "node", - "id": 437498407, - "lat": 50.8628743, - "lon": -4.1134536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "fixme": "Post box present in Sept 2011 Google Streetview but not listed in Royal Mail list (Mar 2022). Needs a survey to confirm if box still exists", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 155", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 437500070, - "lat": 50.8677228, - "lon": -4.1180423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 133D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 437605836, - "lat": 52.9250478, - "lon": -1.4781361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE1", - "ref": "DE1 188D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 437605837, - "lat": 52.9250386, - "lon": -1.4781334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DE1", - "ref": "DE1 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 437930459, - "lat": 51.5542340, - "lon": -1.0864917, - "tags": { - "amenity": "post_box", - "name": "OX10 6AN", - "ref": "OX10 625" - } -}, -{ - "type": "node", - "id": 438057042, - "lat": 50.9035042, - "lon": -3.4834158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX16 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 438063021, - "lat": 50.9023782, - "lon": -3.4887171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "EX16 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 438077290, - "lat": 50.9017589, - "lon": -3.4865178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX16 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 438092443, - "lat": 51.3552325, - "lon": -2.9394480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 438094620, - "lat": 51.3572264, - "lon": -2.9226938, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 438170474, - "lat": 51.5160683, - "lon": -0.1120604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2A 55D;WC2A 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box WC2A 55D and WC2A 255D" - } -}, -{ - "type": "node", - "id": 438170511, - "lat": 51.5175920, - "lon": -0.1213964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "now a parcel box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WC1V 43P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 438170699, - "lat": 51.5152537, - "lon": -0.1267949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2H 72;WC2H 272", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 438254776, - "lat": 51.1317139, - "lon": 0.9833229, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 255" - } -}, -{ - "type": "node", - "id": 438490935, - "lat": 53.2342450, - "lon": -3.2712262, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 439206872, - "lat": 51.3204305, - "lon": -0.5401559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU22 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 439216197, - "lat": 53.2205945, - "lon": -4.2000925, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 439220232, - "lat": 53.2899360, - "lon": -2.7166752, - "tags": { - "amenity": "post_box", - "ref": "WA6 23" - } -}, -{ - "type": "node", - "id": 439228633, - "lat": 51.1066622, - "lon": 0.9932443, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 170" - } -}, -{ - "type": "node", - "id": 439228641, - "lat": 51.1115285, - "lon": 0.9861134, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 165" - } -}, -{ - "type": "node", - "id": 439245564, - "lat": 53.8480111, - "lon": -1.8287317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD16 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 439279781, - "lat": 57.4714691, - "lon": -4.2270250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV2", - "ref": "IV2 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 439279789, - "lat": 57.4696400, - "lon": -4.2361843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV3", - "ref": "IV3 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 439279802, - "lat": 57.4775573, - "lon": -4.2391261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 439279807, - "lat": 57.4758350, - "lon": -4.2425958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 439279817, - "lat": 57.4726296, - "lon": -4.2461491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "IV3", - "ref": "IV3 103", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 439525069, - "lat": 54.8425337, - "lon": -3.8722194, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 439533394, - "lat": 51.4488824, - "lon": 0.2070612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 439576952, - "lat": 53.2209771, - "lon": -4.1913385, - "tags": { - "amenity": "post_box", - "note": "moved away from corner", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 95" - } -}, -{ - "type": "node", - "id": 439576970, - "lat": 53.2257378, - "lon": -4.1995670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 118" - } -}, -{ - "type": "node", - "id": 439629802, - "lat": 52.0628327, - "lon": -1.3171919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "post_box:type": "pillar", - "ref": "OX16 1917", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 439634815, - "lat": 50.8339302, - "lon": -0.2445219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 439634817, - "lat": 50.8332819, - "lon": -0.2400706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 685", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 439635156, - "lat": 51.4351647, - "lon": 0.1710072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA5 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 439683923, - "lat": 51.4372069, - "lon": 0.1617411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA5 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 439701047, - "lat": 55.7214004, - "lon": -2.2588565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD11 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 439787135, - "lat": 50.8817555, - "lon": -1.2022853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO17 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 439801742, - "lat": 50.3897635, - "lon": -4.7416848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL30 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 439801985, - "lat": 50.4188500, - "lon": -4.7428300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL30 152", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 439801991, - "lat": 50.4377560, - "lon": -4.7337208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL30 135", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 439838214, - "lat": 51.4585681, - "lon": -2.1264394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 439856102, - "lat": 51.7033958, - "lon": -0.6132244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 440007807, - "lat": 50.4503291, - "lon": -4.5524492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL14 132" - } -}, -{ - "type": "node", - "id": 440020285, - "lat": 50.4778332, - "lon": -4.4458121, - "tags": { - "amenity": "post_box", - "ref": "PL14 144" - } -}, -{ - "type": "node", - "id": 440020746, - "lat": 50.5169423, - "lon": -4.3595309, - "tags": { - "amenity": "post_box", - "ref": "PL17 408" - } -}, -{ - "type": "node", - "id": 440020832, - "lat": 50.5065553, - "lon": -4.2608610, - "tags": { - "amenity": "post_box", - "ref": "PL17 489" - } -}, -{ - "type": "node", - "id": 440057167, - "lat": 50.6011613, - "lon": -3.8992237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL20 747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 440059417, - "lat": 50.6440872, - "lon": -3.8215130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 440068344, - "lat": 50.6599161, - "lon": -3.7716180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 440068352, - "lat": 50.6606274, - "lon": -3.7665459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ13 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 440069692, - "lat": 50.6874749, - "lon": -3.6755888, - "tags": { - "amenity": "post_box", - "note": "Post box was still in place in 2014 (https://goo.gl/maps/wb8RTD1yVopyLQ7y5) but apart from the pier on which it stood had been removed by Nov 2021 (https://goo.gl/maps/wb8RTD1yVopyLQ7y5) and is no longer shown in the Royal Mail list (Jan 2022)", - "ref": "EX6 198" - } -}, -{ - "type": "node", - "id": 440069704, - "lat": 50.6930087, - "lon": -3.6493005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 440070062, - "lat": 50.7032067, - "lon": -3.6279118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 440070711, - "lat": 50.7062750, - "lon": -3.5920861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 440071112, - "lat": 50.7115777, - "lon": -3.5569991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440088245, - "lat": 50.7875849, - "lon": -3.4950289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440091840, - "lat": 50.7891527, - "lon": -3.4482828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:20; Sa 08:35", - "colour": "red", - "name": "Budlake | Broadclyst", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440097307, - "lat": 51.4128353, - "lon": 0.0479422, - "tags": { - "amenity": "post_box", - "ref": "BR7 134" - } -}, -{ - "type": "node", - "id": 440097311, - "lat": 51.4104259, - "lon": 0.0420655, - "tags": { - "amenity": "post_box", - "ref": "BR1 77" - } -}, -{ - "type": "node", - "id": 440099636, - "lat": 51.3462982, - "lon": -2.9468144, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 440114096, - "lat": 55.7993227, - "lon": -4.2666388, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 440152708, - "lat": 51.7297510, - "lon": -2.2897489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GL10", - "ref": "GL10 152", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 440152720, - "lat": 51.6834936, - "lon": -2.2912662, - "tags": { - "amenity": "post_box", - "new": "yes", - "operator": "Royal Mail", - "postal_code": "GL11", - "ref": "GL11 34" - } -}, -{ - "type": "node", - "id": 440158889, - "lat": 50.6007251, - "lon": -3.6001531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 440162875, - "lat": 50.8363521, - "lon": -0.2624448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1528", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 440178291, - "lat": 50.8907998, - "lon": -3.4969881, - "tags": { - "amenity": "post_box", - "ref": "EX16 10" - } -}, -{ - "type": "node", - "id": 440185962, - "lat": 55.8289386, - "lon": -3.2139573, - "tags": { - "amenity": "post_box", - "ref": "EH26 124", - "source": "survey" - } -}, -{ - "type": "node", - "id": 440234771, - "lat": 52.0452551, - "lon": -0.7274699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 440234917, - "lat": 52.0401692, - "lon": -0.7368523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 440248334, - "lat": 51.0806564, - "lon": 1.1647908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT20", - "ref": "CT20 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 440248337, - "lat": 51.0814015, - "lon": 1.1601267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT20", - "ref": "CT20 74D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 440248343, - "lat": 51.0799865, - "lon": 1.1601402, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 17:45, Sa 12:15", - "postal_code": "CT20", - "ref": "CT20 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 440248345, - "lat": 51.0777118, - "lon": 1.1584081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "postal_code": "CT20", - "ref": "CT20 143" - } -}, -{ - "type": "node", - "id": 440248348, - "lat": 51.0763384, - "lon": 1.1624988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "post_box:type": "pillar", - "postal_code": "CT20", - "ref": "CT20 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 440248349, - "lat": 51.0772535, - "lon": 1.1653955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:15", - "postal_code": "CT20", - "ref": "CT20 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440248351, - "lat": 51.0779522, - "lon": 1.1692991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT20", - "ref": "CT20 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 440248352, - "lat": 51.0795268, - "lon": 1.1724845, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 58" - } -}, -{ - "type": "node", - "id": 440248355, - "lat": 51.0806577, - "lon": 1.1765317, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT20", - "ref": "CT20 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 440253647, - "lat": 50.9631394, - "lon": -3.3239510, - "tags": { - "amenity": "post_box", - "ref": "TA21 515" - } -}, -{ - "type": "node", - "id": 440253677, - "lat": 50.9980944, - "lon": -3.2679476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA21 348" - } -}, -{ - "type": "node", - "id": 440253695, - "lat": 51.0183021, - "lon": -3.1685131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440253723, - "lat": 51.0147994, - "lon": -3.1157595, - "tags": { - "amenity": "post_box", - "mapillary": "3763317120461771", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 131", - "survey:date": "2020-03-26" - } -}, -{ - "type": "node", - "id": 440254202, - "lat": 51.0614435, - "lon": -1.3103915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 440264882, - "lat": 54.7190958, - "lon": -1.4749539, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/460339" - } -}, -{ - "type": "node", - "id": 440267326, - "lat": 54.7201244, - "lon": -1.4791809, - "tags": { - "amenity": "post_box", - "ele": "140.96", - "postal_code": "DH6 4LU", - "ref": "DH6 336" - } -}, -{ - "type": "node", - "id": 440272497, - "lat": 51.1608093, - "lon": -2.9212690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440288523, - "lat": 51.2955246, - "lon": -3.0103806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TA8", - "ref": "TA8 148" - } -}, -{ - "type": "node", - "id": 440344350, - "lat": 53.1087820, - "lon": -2.0112381, - "tags": { - "amenity": "post_box", - "ref": "ST13 701" - } -}, -{ - "type": "node", - "id": 440344353, - "lat": 53.1100771, - "lon": -2.0163545, - "tags": { - "amenity": "post_box", - "ref": "ST13 1307" - } -}, -{ - "type": "node", - "id": 440344367, - "lat": 53.1145929, - "lon": -2.0126168, - "tags": { - "amenity": "post_box", - "ref": "ST13 752" - } -}, -{ - "type": "node", - "id": 440344404, - "lat": 53.1117005, - "lon": -2.0094039, - "tags": { - "amenity": "post_box", - "ref": "ST13 1304" - } -}, -{ - "type": "node", - "id": 440651257, - "lat": 51.4681523, - "lon": -1.0540527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 440662850, - "lat": 50.7890123, - "lon": -3.6515770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "816052967060777", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 440675612, - "lat": 51.8158311, - "lon": 0.1484974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM21 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 440697425, - "lat": 52.9360807, - "lon": -1.4994757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "316999323137407", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE22 619", - "survey:date": "2021-09-19" - } -}, -{ - "type": "node", - "id": 440716402, - "lat": 51.4125375, - "lon": -0.1794271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 110" - } -}, -{ - "type": "node", - "id": 440716403, - "lat": 51.4115685, - "lon": -0.1823069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 39" - } -}, -{ - "type": "node", - "id": 440735254, - "lat": 51.1359782, - "lon": 1.2239093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 440735458, - "lat": 51.1311115, - "lon": 1.2124308, - "tags": { - "amenity": "post_box", - "postal_code": "CT15", - "ref": "CT15 92" - } -}, -{ - "type": "node", - "id": 440742070, - "lat": 51.0798785, - "lon": 0.9832783, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 112" - } -}, -{ - "type": "node", - "id": 440742071, - "lat": 51.0808548, - "lon": 0.9578778, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 325" - } -}, -{ - "type": "node", - "id": 440742072, - "lat": 51.0699157, - "lon": 0.9539812, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 189" - } -}, -{ - "type": "node", - "id": 440742073, - "lat": 51.0627576, - "lon": 1.0061365, - "tags": { - "amenity": "post_box", - "note": "\"Box No 88\". Could not see a ref in the normal format.", - "postal_code": "CT21", - "ref": "CT21 88" - } -}, -{ - "type": "node", - "id": 440742077, - "lat": 51.0691530, - "lon": 1.0320892, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 122" - } -}, -{ - "type": "node", - "id": 440782849, - "lat": 53.6613608, - "lon": -1.6469562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 23" - } -}, -{ - "type": "node", - "id": 440785007, - "lat": 50.7406048, - "lon": -3.3142376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440795550, - "lat": 52.9290445, - "lon": -1.4886557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE1 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440823019, - "lat": 51.6270097, - "lon": -0.7431339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 25" - } -}, -{ - "type": "node", - "id": 440839328, - "lat": 51.3397090, - "lon": -2.9441268, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 440903834, - "lat": 55.7636731, - "lon": -4.1522718, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 440908642, - "lat": 52.9399863, - "lon": 1.2088471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NR26 2607", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 440908774, - "lat": 51.2102523, - "lon": -0.2573618, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=611ac231-103c-417a-800b-c87ac23e2eaa&cp=51.210194~-0.257475&lvl=19&dir=80.48397&pi=-2.7412663&style=x&mo=z.2.43&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH2 98" - } -}, -{ - "type": "node", - "id": 440939888, - "lat": 51.3179092, - "lon": -0.5561039, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-12", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 19:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GU22 170;GU22 1701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440946172, - "lat": 52.2079515, - "lon": 1.5756785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "IP16 4629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 440972593, - "lat": 51.4731877, - "lon": -2.1319100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 441019546, - "lat": 51.4016838, - "lon": 0.5006566, - "tags": { - "amenity": "post_box", - "ref": "ME2 115" - } -}, -{ - "type": "node", - "id": 441023866, - "lat": 51.3962373, - "lon": 0.4951810, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ME2 3581;ME2 3582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 441024986, - "lat": 51.4113504, - "lon": 0.5083166, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "ME2 230", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441024987, - "lat": 51.4140182, - "lon": 0.5094705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 260D" - } -}, -{ - "type": "node", - "id": 441129755, - "lat": 51.5156215, - "lon": -0.2174514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 441140851, - "lat": 52.9432722, - "lon": 1.1399963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "NR25 2530", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 441140974, - "lat": 52.9409150, - "lon": 1.1433718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR25 2531D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 441142818, - "lat": 52.0628112, - "lon": -1.3171892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 08:00", - "post_box:type": "meter", - "ref": "OX16 75P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 441239156, - "lat": 52.2921381, - "lon": -1.8240066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "note": "plate is broken and second half of ref is not xurrently readable (14/05/18)", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441257006, - "lat": 56.1583808, - "lon": -4.3662316, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-28", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "post_box:type": "lamp", - "postal_code": "FK8", - "ref": "FK8 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 441268263, - "lat": 52.9646365, - "lon": -1.4607156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE21 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 441277538, - "lat": 52.9995753, - "lon": -1.4590377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE56 313D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 441294779, - "lat": 51.4857728, - "lon": 0.0986332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 441302603, - "lat": 51.4850646, - "lon": 0.0885210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 441335113, - "lat": 53.7844162, - "lon": -1.6355157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS12 884", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 441335485, - "lat": 53.7932963, - "lon": -1.6741164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 654" - } -}, -{ - "type": "node", - "id": 441335498, - "lat": 53.7900931, - "lon": -1.6760855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 362" - } -}, -{ - "type": "node", - "id": 441335563, - "lat": 53.7882208, - "lon": -1.6667965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 685", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 441335735, - "lat": 53.7862642, - "lon": -1.6567067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 189", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 441335797, - "lat": 53.7878202, - "lon": -1.6394415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 352" - } -}, -{ - "type": "node", - "id": 441347240, - "lat": 53.0348197, - "lon": -1.3770910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE5 52D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 441399294, - "lat": 53.0944688, - "lon": -1.3760835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 1389" - } -}, -{ - "type": "node", - "id": 441415443, - "lat": 51.2498934, - "lon": -1.1877664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "RG23", - "ref": "RG23 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 441420670, - "lat": 51.2487000, - "lon": -1.1784779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "post_box:type": "pillar", - "ref": "RG23 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 441421977, - "lat": 51.2520699, - "lon": -1.1750327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1276866886117094", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG23", - "ref": "RG23 105", - "royal_cypher": "EIIR", - "survey:date": "2021-08-07" - } -}, -{ - "type": "node", - "id": 441576517, - "lat": 50.8367778, - "lon": -0.2165996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 669", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 441597233, - "lat": 52.2166444, - "lon": -1.5051868, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "last_checked": "2020-10-31", - "name": "M40 Services North", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CV34 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441602541, - "lat": 56.9349090, - "lon": -4.2458031, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 12:00; Sa 08:45", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH19 11", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441685653, - "lat": 51.5631776, - "lon": -1.0831937, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 441689090, - "lat": 57.3152932, - "lon": -5.6928201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1441480269766154", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IV40 8", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 441694996, - "lat": 57.2381229, - "lon": -5.8813211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:00", - "post_box:type": "lamp", - "ref": "IV49 34", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441695025, - "lat": 57.2480627, - "lon": -5.9081826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 14:00", - "ref": "IV49 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441695031, - "lat": 57.2434794, - "lon": -5.9116875, - "tags": { - "amenity": "post_box", - "ref": "IV49 137", - "source": "survey" - } -}, -{ - "type": "node", - "id": 441743257, - "lat": 51.9472506, - "lon": -2.0595920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Bishops Cleeve Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 329" - } -}, -{ - "type": "node", - "id": 441942931, - "lat": 53.7890571, - "lon": -1.5844487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 297", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 441945154, - "lat": 53.1026487, - "lon": -2.0103531, - "tags": { - "amenity": "post_box", - "ref": "ST13 704" - } -}, -{ - "type": "node", - "id": 441945164, - "lat": 53.1048476, - "lon": -2.0164947, - "tags": { - "amenity": "post_box", - "ref": "ST13 723" - } -}, -{ - "type": "node", - "id": 441945183, - "lat": 53.1042394, - "lon": -2.0199224, - "tags": { - "amenity": "post_box", - "ref": "ST13 708" - } -}, -{ - "type": "node", - "id": 441948494, - "lat": 53.0899572, - "lon": -2.0187923, - "tags": { - "amenity": "post_box", - "ref": "ST13 641" - } -}, -{ - "type": "node", - "id": 441948495, - "lat": 53.0888820, - "lon": -2.0207532, - "tags": { - "amenity": "post_box", - "ref": "ST13 747" - } -}, -{ - "type": "node", - "id": 441948505, - "lat": 53.0987607, - "lon": -2.0239820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "ST13 729", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 441983602, - "lat": 51.5211215, - "lon": -0.1036295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "postal_code": "EC1", - "ref": "EC1M 106;EC1M 1061", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442029423, - "lat": 54.1206608, - "lon": -1.1956550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:50; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO61 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442041619, - "lat": 57.0637595, - "lon": -4.1229110, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB217", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "PH20", - "ref": "PH20 32D", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2024-03-03" - } -}, -{ - "type": "node", - "id": 442041631, - "lat": 57.0656302, - "lon": -4.1193519, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-03", - "collection_plate": "SCP7", - "collection_plate:date": "2017-06-13", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "manufacturer": "McDowall, Steven & Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "PH20", - "ref": "PH20 52", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2024-03-03" - } -}, -{ - "type": "node", - "id": 442041636, - "lat": 57.0668185, - "lon": -4.1164480, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "pier", - "post_box:type": "wall", - "postal_code": "PH20", - "ref": "PH20 33", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2020-01-24" - } -}, -{ - "type": "node", - "id": 442041653, - "lat": 57.0590642, - "lon": -4.1193634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH20 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442045494, - "lat": 53.7510123, - "lon": -1.3797254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 61" - } -}, -{ - "type": "node", - "id": 442063556, - "lat": 51.4575210, - "lon": -0.0693014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442116223, - "lat": 55.7542976, - "lon": -4.1518141, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442116224, - "lat": 55.7564421, - "lon": -4.1485268, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442116226, - "lat": 55.7622441, - "lon": -4.1568567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442117974, - "lat": 55.7614552, - "lon": -4.1496976, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442120708, - "lat": 51.3604865, - "lon": 0.0950900, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442120762, - "lat": 51.1589117, - "lon": 1.2945618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Joyes Road", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT16", - "ref": "CT16 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442120763, - "lat": 51.1593467, - "lon": 1.2981104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Cranleigh Drive", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442120765, - "lat": 51.1415006, - "lon": 1.3000558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Green Lane Roundabout", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 442120766, - "lat": 51.1553258, - "lon": 1.2894654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Archers Court", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 442120767, - "lat": 51.1650371, - "lon": 1.2907337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Royal Oak", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT16", - "ref": "CT16 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442120769, - "lat": 51.1573731, - "lon": 1.2889219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "name": "Whitfield", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442149142, - "lat": 51.2414893, - "lon": -2.5011362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "273743531714340", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 442149459, - "lat": 51.2233915, - "lon": -2.5276965, - "tags": { - "amenity": "post_box", - "mapillary": "3119188138292597", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 442168048, - "lat": 51.5695859, - "lon": -2.5865861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS32", - "ref": "BS32 27" - } -}, -{ - "type": "node", - "id": 442168150, - "lat": 51.6068977, - "lon": -2.5864942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS35 671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442168342, - "lat": 51.7087979, - "lon": -2.4606212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL13", - "ref": "GL13 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442168382, - "lat": 51.7163877, - "lon": -2.4365516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL13 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 442294533, - "lat": 51.7614890, - "lon": -2.3699719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL2 162", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442294554, - "lat": 51.8172795, - "lon": -2.3255470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "221718596055618", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GL2", - "ref": "GL2 347", - "survey:date": "2020-06-22" - } -}, -{ - "type": "node", - "id": 442304992, - "lat": 51.9646262, - "lon": -2.2524286, - "tags": { - "amenity": "post_box", - "postal_code": "GL19", - "ref": "GL19 364" - } -}, -{ - "type": "node", - "id": 442305012, - "lat": 51.9766904, - "lon": -2.2451797, - "tags": { - "amenity": "post_box", - "postal_code": "GL19", - "ref": "GL19 326" - } -}, -{ - "type": "node", - "id": 442316118, - "lat": 52.1169969, - "lon": -2.2503136, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "description": "\"Clevelode Crossroads\"", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "postal_code": "WR13 6PD", - "ref": "WR13 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442321421, - "lat": 52.1596795, - "lon": -2.2462548, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WR2", - "ref": "WR2 149" - } -}, -{ - "type": "node", - "id": 442337012, - "lat": 52.3036907, - "lon": -2.2946889, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DY13 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442365255, - "lat": 57.4805510, - "lon": -4.2354596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV3", - "ref": "IV3 32D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442365268, - "lat": 57.4845704, - "lon": -4.2358078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV3", - "ref": "IV3 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442365274, - "lat": 57.4905588, - "lon": -4.2404617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV3", - "ref": "IV3 90D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442365282, - "lat": 57.4763386, - "lon": -4.2247226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-09-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "IV2", - "ref": "IV2 31", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442365289, - "lat": 57.4715867, - "lon": -4.2174925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "IV2", - "ref": "IV2 27D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442365297, - "lat": 57.4774082, - "lon": -4.2133053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Co. Falkirk", - "post_box:type": "wall", - "postal_code": "IV2", - "ref": "IV2 22D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442369386, - "lat": 51.7147010, - "lon": -3.8524032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "SA8 655", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442370629, - "lat": 51.5183777, - "lon": -0.1114770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "note": "is EVIIR box with a VR door", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1X 37;WC1X 237", - "royal_cypher": "EVIIR;VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442374614, - "lat": 52.4753579, - "lon": -2.3728815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "wall", - "ref": "WV15 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 442391286, - "lat": 51.4019924, - "lon": -1.4465099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "RG17", - "ref": "RG17 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442513898, - "lat": 53.4098036, - "lon": -2.9839544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR type A post box L2 91 on Dale Street near to Trueman Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L2 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Dale Street.jpg" - } -}, -{ - "type": "node", - "id": 442513949, - "lat": 53.4113896, - "lon": -2.9881819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type K post box L3 4 by Carron Company on Vauxhall Road, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L3 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Vauxhall Road at Tithebarn Building.jpg" - } -}, -{ - "type": "node", - "id": 442544088, - "lat": 51.4168933, - "lon": -0.8192129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG40 191", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 442573061, - "lat": 53.7992025, - "lon": -1.4647353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "name": "Halton Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 724" - } -}, -{ - "type": "node", - "id": 442580257, - "lat": 55.7611916, - "lon": -4.1539619, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442580262, - "lat": 55.7660797, - "lon": -4.1686999, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442581890, - "lat": 55.7680985, - "lon": -4.1628482, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442650842, - "lat": 52.8588277, - "lon": -4.4920941, - "tags": { - "amenity": "post_box", - "ref": "LL53 76" - } -}, -{ - "type": "node", - "id": 442650843, - "lat": 52.8474324, - "lon": -4.5308391, - "tags": { - "amenity": "post_box", - "ref": "LL53 43" - } -}, -{ - "type": "node", - "id": 442650844, - "lat": 52.8307957, - "lon": -4.5320620, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL53 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442650951, - "lat": 52.8511751, - "lon": -4.4944074, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442659232, - "lat": 52.4041548, - "lon": -2.3604853, - "tags": { - "amenity": "post_box", - "ref": "DY12 222" - } -}, -{ - "type": "node", - "id": 442673653, - "lat": 52.4747313, - "lon": -2.3765014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WV16 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442681826, - "lat": 52.5012222, - "lon": -2.4094658, - "tags": { - "amenity": "post_box", - "ref": "WV16 97" - } -}, -{ - "type": "node", - "id": 442696328, - "lat": 52.5897292, - "lon": -2.4680897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 62" - } -}, -{ - "type": "node", - "id": 442723684, - "lat": 52.7434153, - "lon": 0.4188938, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442725320, - "lat": 55.7565324, - "lon": -4.1548726, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442729316, - "lat": 51.3736701, - "lon": 0.1385990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "mapillary": "504169327387347", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BR5 246", - "survey:date": "2020-07-15" - } -}, -{ - "type": "node", - "id": 442729321, - "lat": 51.3610400, - "lon": 0.1598731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR6 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-01-22" - } -}, -{ - "type": "node", - "id": 442738394, - "lat": 51.4141436, - "lon": -1.5129691, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-23", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "postal_code": "RG17", - "ref": "RG17 144", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 442743468, - "lat": 51.3993348, - "lon": -1.4509756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG17", - "ref": "RG17 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442748317, - "lat": 51.3887594, - "lon": -1.4297526, - "tags": { - "amenity": "post_box", - "postal_code": "RG17", - "ref": "RG17 176" - } -}, -{ - "type": "node", - "id": 442748971, - "lat": 51.3885370, - "lon": -1.4097181, - "tags": { - "amenity": "post_box", - "postal_code": "RG20", - "ref": "RG20 86" - } -}, -{ - "type": "node", - "id": 442750725, - "lat": 51.3789947, - "lon": -1.3773653, - "tags": { - "amenity": "post_box", - "fixme": "check ref", - "note": "The reference says RG20 239 - but that doesn't seem correct", - "ref": "RG20 239" - } -}, -{ - "type": "node", - "id": 442751052, - "lat": 51.3823470, - "lon": -1.3406866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG14", - "ref": "RG14 191" - } -}, -{ - "type": "node", - "id": 442864055, - "lat": 51.4900270, - "lon": -0.1553665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442875044, - "lat": 50.8351693, - "lon": -0.2493275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN43 1512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442878170, - "lat": 50.8403892, - "lon": -0.2490734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN43 1513", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1513D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 442898907, - "lat": 55.7809000, - "lon": -3.5536181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH55 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 442899204, - "lat": 55.8365372, - "lon": -3.5352552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH55 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 442899219, - "lat": 55.8661723, - "lon": -3.5327347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 303", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 442903356, - "lat": 50.3819609, - "lon": -4.1340431, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-11", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:apertures": "2", - "ref": "PL4 65;PL4 6500", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 442908444, - "lat": 53.0038486, - "lon": -1.2884397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 46", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG16 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442908446, - "lat": 53.0090457, - "lon": -1.2965947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG16 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 442934941, - "lat": 51.4334347, - "lon": 0.1121596, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 442975390, - "lat": 53.8012408, - "lon": -1.4584225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS15 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 442975639, - "lat": 53.7980298, - "lon": -1.4494528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 442980296, - "lat": 55.8862114, - "lon": -3.5385499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 442981581, - "lat": 55.8838212, - "lon": -3.5149446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 97", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 442981662, - "lat": 55.8847361, - "lon": -3.5105531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 91", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 442983367, - "lat": 55.9112630, - "lon": -3.2382716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "name": "Tesco", - "note": "Box actually in-store, only accessible when store open", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 560", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443009276, - "lat": 51.2482785, - "lon": -0.3973464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH5 71" - } -}, -{ - "type": "node", - "id": 443030623, - "lat": 51.4861496, - "lon": -0.1612987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW3 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 443032072, - "lat": 51.4884504, - "lon": -0.1662811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW3 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 443043479, - "lat": 56.3536892, - "lon": -2.8713320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 411", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443043481, - "lat": 56.3324394, - "lon": -2.8763655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 369", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443043501, - "lat": 56.3396477, - "lon": -2.7900185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY16 366D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443044359, - "lat": 56.3377862, - "lon": -2.7902570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY16 60D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443077708, - "lat": 56.3365355, - "lon": -2.8002968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY16 349D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443077717, - "lat": 56.3361249, - "lon": -2.7921219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY16 350D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 443079938, - "lat": 56.3364342, - "lon": -2.8103445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY16 352D", - "royal_cypher": "scottish_crown", - "source": "Survey June 2015" - } -}, -{ - "type": "node", - "id": 443108402, - "lat": 51.7925099, - "lon": -1.4770335, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX28 292" - } -}, -{ - "type": "node", - "id": 443132297, - "lat": 53.4881492, - "lon": -2.9726793, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L30 872" - } -}, -{ - "type": "node", - "id": 443132298, - "lat": 53.4900331, - "lon": -2.9834072, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L30 851", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443132587, - "lat": 55.9419664, - "lon": -4.2062936, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 443152048, - "lat": 53.4694879, - "lon": -3.0037319, - "tags": { - "amenity": "post_box", - "ref": "L21 321" - } -}, -{ - "type": "node", - "id": 443152102, - "lat": 53.4708639, - "lon": -3.0080289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L21 662", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 443261682, - "lat": 53.2562192, - "lon": -3.8612402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443267746, - "lat": 53.3651789, - "lon": -3.1716202, - "tags": { - "amenity": "post_box", - "description": "George VI post box CH48 497 at the junction of Stonehey Road and Norfolk Drive, West Kirby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 497", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Postbox on Stonehey Drive, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 443289139, - "lat": 51.4884681, - "lon": -0.1574163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW3 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 443289140, - "lat": 51.4881656, - "lon": -0.1619655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW3 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q27081204" - } -}, -{ - "type": "node", - "id": 443289141, - "lat": 51.4897910, - "lon": -0.1630507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-25", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443293961, - "lat": 51.2460157, - "lon": -1.2166035, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG25 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443297694, - "lat": 51.2427069, - "lon": -1.2472589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG25 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443305240, - "lat": 51.2620080, - "lon": -1.2321322, - "tags": { - "amenity": "post_box", - "postal_code": "RG25", - "ref": "RG25 251" - } -}, -{ - "type": "node", - "id": 443327891, - "lat": 51.4787652, - "lon": -1.6211437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "fixme": "Couldn't read ref on second collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "SN8", - "ref": "SN8 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443328970, - "lat": 51.1385234, - "lon": -1.9903162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 50" - } -}, -{ - "type": "node", - "id": 443329030, - "lat": 51.4315963, - "lon": -1.5382710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "346306634350040", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG17", - "ref": "RG17 221", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 443343030, - "lat": 51.5730662, - "lon": -0.4007976, - "tags": { - "amenity": "post_box", - "ref": "HA4 451" - } -}, -{ - "type": "node", - "id": 443343042, - "lat": 51.5742397, - "lon": -0.3885227, - "tags": { - "amenity": "post_box", - "ref": "HA4 456" - } -}, -{ - "type": "node", - "id": 443351503, - "lat": 56.3392249, - "lon": -2.7960837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KY16 200;KY16 201", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443351506, - "lat": 56.3352993, - "lon": -2.8221379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 86D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443351507, - "lat": 56.3343099, - "lon": -2.8293247, - "tags": { - "amenity": "post_box", - "postal_code": "KY16", - "ref": "KY16 378" - } -}, -{ - "type": "node", - "id": 443353181, - "lat": 56.3370681, - "lon": -2.8795296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 390", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443353187, - "lat": 56.3370741, - "lon": -2.8699703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 353", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443354227, - "lat": 56.3341428, - "lon": -2.7981505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY16 364D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443357607, - "lat": 51.2365803, - "lon": -0.7620544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443369920, - "lat": 51.4792240, - "lon": -0.1798348, - "tags": { - "amenity": "post_box", - "ref": "SW10 4" - } -}, -{ - "type": "node", - "id": 443370230, - "lat": 51.4788564, - "lon": -0.1830441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443371664, - "lat": 51.7561005, - "lon": -1.2222302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX3 381", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 443372995, - "lat": 51.2511150, - "lon": -0.7430688, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-07", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU12 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 443373077, - "lat": 51.2425075, - "lon": -0.7593214, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GU11 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 443373109, - "lat": 51.2401532, - "lon": -0.7630452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU11 23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 443376066, - "lat": 52.6351391, - "lon": -1.1695501, - "tags": { - "amenity": "post_box", - "ref": "LE3 330" - } -}, -{ - "type": "node", - "id": 443383153, - "lat": 53.9201756, - "lon": -0.2621533, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 443383330, - "lat": 53.9520389, - "lon": -0.2443194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "YO25 353", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 443383331, - "lat": 53.9333292, - "lon": -0.2264858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "YO25 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443397795, - "lat": 50.9289420, - "lon": -1.3755991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 85", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 443418098, - "lat": 51.5321905, - "lon": -0.0337302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443419952, - "lat": 51.7578295, - "lon": -1.2186452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "OX3 405D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443422047, - "lat": 51.4986215, - "lon": -0.1300056, - "tags": { - "amenity": "post_box", - "postal_code": "SW1", - "ref": "SW1 274" - } -}, -{ - "type": "node", - "id": 443424316, - "lat": 51.4955973, - "lon": -0.1281661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SW1", - "ref": "SW1P 205P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 443429910, - "lat": 51.6444711, - "lon": -3.2212640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443437287, - "lat": 51.1322584, - "lon": 1.1589808, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT18", - "ref": "CT18 157", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-13" - } -}, -{ - "type": "node", - "id": 443447333, - "lat": 55.9209703, - "lon": -3.2014446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 259D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 443447336, - "lat": 55.9205421, - "lon": -3.2064160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH10 205", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 443493068, - "lat": 51.4019311, - "lon": -1.2622613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "118752500487801", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG19", - "ref": "RG19 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 443493104, - "lat": 51.4048382, - "lon": -1.2676118, - "tags": { - "amenity": "post_box", - "mapillary": "379565410372314", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG18", - "ref": "RG18 54", - "survey:date": "2022-03-13" - } -}, -{ - "type": "node", - "id": 443493106, - "lat": 51.4132167, - "lon": -1.2729089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG18 184D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 443535171, - "lat": 50.1907616, - "lon": -5.1828170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 443652462, - "lat": 50.7310843, - "lon": -3.5032152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 312", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 443655258, - "lat": 51.6455403, - "lon": -3.2142978, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 443658721, - "lat": 51.4909636, - "lon": -0.1572809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443658724, - "lat": 51.4848107, - "lon": -0.1597226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW3 41" - } -}, -{ - "type": "node", - "id": 443679487, - "lat": 55.0311314, - "lon": -1.5837873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE12 389D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443687061, - "lat": 53.1609232, - "lon": -2.8992165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 443690804, - "lat": 50.6873050, - "lon": -3.3941112, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 443690840, - "lat": 50.6910438, - "lon": -3.3986931, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443695686, - "lat": 50.6975048, - "lon": -3.3894212, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 443727533, - "lat": 53.1024874, - "lon": -2.0244746, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "ST13 713", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 443776042, - "lat": 53.6761948, - "lon": -1.4034532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 93" - } -}, -{ - "type": "node", - "id": 443797271, - "lat": 52.0376332, - "lon": -2.4234139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HR8 1290;HR8 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 443808191, - "lat": 52.0325323, - "lon": -2.3908374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HR8 360", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 443824127, - "lat": 54.0692331, - "lon": -2.2823348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD24 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 443851392, - "lat": 55.9343309, - "lon": -3.2056340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH10 244", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 443938376, - "lat": 50.8153702, - "lon": -0.3420914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN11 1693D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 443939766, - "lat": 51.5447954, - "lon": -0.0554573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443946506, - "lat": 51.7898518, - "lon": -2.1949140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1208501929604266", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL6 23", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 443974707, - "lat": 52.3025285, - "lon": -2.0852029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B60 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 443975015, - "lat": 52.3206208, - "lon": -2.0889307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B61 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 444007020, - "lat": 50.8383983, - "lon": -0.2583477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN43 1527", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1527D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 444012233, - "lat": 52.2898291, - "lon": -3.5354309, - "tags": { - "amenity": "post_box", - "postal_code": "LD6", - "ref": "LD6 51", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444032986, - "lat": 50.8289171, - "lon": -0.1411917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "When I was at Brighton station on 16.08.2017 I could not find this postbox. I have since emailed Royal Mail and they tell me that this postbox is no longer in service.", - "disused:amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 62" - } -}, -{ - "type": "node", - "id": 444069231, - "lat": 53.1845871, - "lon": -1.3276854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S44 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 444227533, - "lat": 52.7511026, - "lon": 0.4106180, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 444353737, - "lat": 56.3404897, - "lon": -2.7950529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "KY16", - "ref": "KY16 360", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 444357728, - "lat": 50.8433930, - "lon": -0.1352798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 291", - "ref:GB:uprn": "10015383119", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 444358241, - "lat": 55.9136261, - "lon": -3.2390645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "467391581006018", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH13 561D", - "royal_cypher": "scottish_crown", - "survey:date": "2020-04-21" - } -}, -{ - "type": "node", - "id": 444364011, - "lat": 53.1493875, - "lon": -0.6668995, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 444365292, - "lat": 52.3703492, - "lon": -3.4573567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 444370154, - "lat": 53.2456280, - "lon": -0.5000957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 444384416, - "lat": 51.0891474, - "lon": 1.1814866, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 36" - } -}, -{ - "type": "node", - "id": 444384425, - "lat": 51.0929859, - "lon": 1.1818695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT19", - "ref": "CT19 78" - } -}, -{ - "type": "node", - "id": 444384429, - "lat": 51.0887121, - "lon": 1.1802566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT19", - "ref": "CT19 17" - } -}, -{ - "type": "node", - "id": 444417794, - "lat": 57.2800478, - "lon": -5.5156574, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV40 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 444510728, - "lat": 51.2353905, - "lon": -0.7570502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-07-01", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 444514389, - "lat": 53.3671250, - "lon": -3.1746245, - "tags": { - "amenity": "post_box", - "description": "Type K QEII post box at former post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH48 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at The Village post office, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 444540575, - "lat": 51.4759382, - "lon": -0.0333911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 444554061, - "lat": 52.4604943, - "lon": -2.0235464, - "tags": { - "amenity": "post_box", - "ref": "B62 707", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444562739, - "lat": 52.4579905, - "lon": -2.0196318, - "tags": { - "amenity": "post_box", - "ref": "B62 605", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444569133, - "lat": 52.4491739, - "lon": -2.0357716, - "tags": { - "amenity": "post_box", - "ref": "B63 1344", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444569173, - "lat": 52.4478896, - "lon": -2.0448440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B63 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444575020, - "lat": 53.3729872, - "lon": -3.1819256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH48 269, actually at the junction of Elder Grove and Westbourne Road, West Kirby, with pouch box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH48 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:Post box on Grange Road, West Kirby" - } -}, -{ - "type": "node", - "id": 444601095, - "lat": 52.7490111, - "lon": 0.4090882, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 444601121, - "lat": 52.7464047, - "lon": 0.4061659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 444622474, - "lat": 53.7899084, - "lon": -1.6613110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 735" - } -}, -{ - "type": "node", - "id": 444622672, - "lat": 53.7918437, - "lon": -1.6652269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 736" - } -}, -{ - "type": "node", - "id": 444622783, - "lat": 53.7940627, - "lon": -1.6602770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 1008" - } -}, -{ - "type": "node", - "id": 444623036, - "lat": 53.7900681, - "lon": -1.6554877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 322" - } -}, -{ - "type": "node", - "id": 444635668, - "lat": 51.3574837, - "lon": 0.1277544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 444635718, - "lat": 51.3547670, - "lon": 0.1448545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BR6 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 444642785, - "lat": 52.6446104, - "lon": -1.9295102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS8", - "ref": "WS8 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444642804, - "lat": 52.6469204, - "lon": -1.9325757, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS8", - "ref": "WS8 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444644100, - "lat": 53.2714793, - "lon": -1.2221757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "S80 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 444644494, - "lat": 52.6214020, - "lon": -1.8925340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "WS9", - "ref": "WS9 161", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 444645055, - "lat": 53.2808442, - "lon": -1.2109595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 444720522, - "lat": 53.3556234, - "lon": -3.1695235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II wall mounted post box CH48 502 at the junction of Croft Drive & Shore Road, Caldy.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH48 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Shore Road, Caldy.jpg" - } -}, -{ - "type": "node", - "id": 444790935, - "lat": 50.9077582, - "lon": -1.0884320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "PO7 6", - "ref": "PO7 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 444858546, - "lat": 52.9865611, - "lon": -1.9854088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 444926199, - "lat": 55.7682344, - "lon": -4.1761796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 445035739, - "lat": 54.0113582, - "lon": -1.5432882, - "tags": { - "amenity": "post_box", - "name": "Corner of Old Barber and Knox Lane" - } -}, -{ - "type": "node", - "id": 445077674, - "lat": 51.7496150, - "lon": -0.3352550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AL1 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 445091727, - "lat": 51.3370851, - "lon": -2.3146556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 445091729, - "lat": 51.3373815, - "lon": -2.3200660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "688280456541951", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA2 327", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 445091737, - "lat": 51.3391937, - "lon": -2.3060780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 445146564, - "lat": 51.4257029, - "lon": 0.2876134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 445146574, - "lat": 51.4275219, - "lon": 0.2832449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 445151812, - "lat": 50.9077486, - "lon": -1.4137132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 445151813, - "lat": 50.9097704, - "lon": -1.4084453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 445151814, - "lat": 50.9188856, - "lon": -1.3930194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 733", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 445153911, - "lat": 50.7350023, - "lon": -1.7781952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 100", - "ref:GB:uprn": "10015409594", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 445153912, - "lat": 50.7336873, - "lon": -1.7760751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH23 80", - "ref:GB:uprn": "10015280049", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 445349155, - "lat": 53.3664199, - "lon": -0.2854810, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 445349159, - "lat": 53.3342295, - "lon": -0.2782111, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 445409786, - "lat": 51.0637931, - "lon": -0.3317035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "description": "Bishopric", - "last_checked": "2020-10-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 445446338, - "lat": 50.7422291, - "lon": -3.4670113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "colour": "red", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "EX4 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos; drive-by" - } -}, -{ - "type": "node", - "id": 445580058, - "lat": 52.9847844, - "lon": -1.9838854, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 445817013, - "lat": 52.5046854, - "lon": -2.0281666, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data shows B69 181", - "ref": "B69 184", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 445832685, - "lat": 52.4959117, - "lon": -2.0178051, - "tags": { - "amenity": "post_box", - "ref": "B69 771", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 445832691, - "lat": 52.4959420, - "lon": -2.0209939, - "tags": { - "amenity": "post_box", - "ref": "B69 734", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 445834204, - "lat": 52.4127013, - "lon": -1.5851292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 445846605, - "lat": 53.6754421, - "lon": -1.3920695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 19:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 445846798, - "lat": 53.6707753, - "lon": -1.4129838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 12" - } -}, -{ - "type": "node", - "id": 445848126, - "lat": 50.8011860, - "lon": -3.6657614, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 446046447, - "lat": 55.8514373, - "lon": -4.4303815, - "tags": { - "amenity": "post_box", - "postal_code": "PA3", - "ref": "PA3 3" - } -}, -{ - "type": "node", - "id": 446046470, - "lat": 55.8482221, - "lon": -4.4274947, - "tags": { - "amenity": "post_box", - "postal_code": "PA3", - "ref": "PA3 4" - } -}, -{ - "type": "node", - "id": 446049201, - "lat": 51.6023895, - "lon": -3.8215713, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 446058801, - "lat": 52.3539235, - "lon": -1.8212302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "confirmed ref (not D despite collection times)", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "B94 266", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 446058805, - "lat": 52.3294622, - "lon": -1.7938137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Ref does not have a D siffix despote C&D collection times", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B94 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 446058806, - "lat": 52.3492615, - "lon": -1.7802401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 446064886, - "lat": 50.6566626, - "lon": -3.3218725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX9 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 446072441, - "lat": 50.6546791, - "lon": -3.3220068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX9 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446087628, - "lat": 51.0897473, - "lon": 1.1674086, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 69" - } -}, -{ - "type": "node", - "id": 446087634, - "lat": 51.0893750, - "lon": 1.1709933, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 19" - } -}, -{ - "type": "node", - "id": 446097301, - "lat": 50.6597871, - "lon": -3.3011283, - "tags": { - "amenity": "post_box", - "check_date": "2023-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX9 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 446126639, - "lat": 51.4845725, - "lon": -0.0332462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE8 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 446143784, - "lat": 51.4904762, - "lon": -0.0341232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE8 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 446277770, - "lat": 53.7895495, - "lon": -1.5589751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446277773, - "lat": 53.7933372, - "lon": -1.5955887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 446" - } -}, -{ - "type": "node", - "id": 446291321, - "lat": 52.7206948, - "lon": -2.6998865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY4 366", - "source": "survey" - } -}, -{ - "type": "node", - "id": 446293983, - "lat": 53.5194558, - "lon": -1.5849385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "S36 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446295530, - "lat": 53.8053299, - "lon": -1.7257695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD2 154" - } -}, -{ - "type": "node", - "id": 446295557, - "lat": 53.8029239, - "lon": -1.6980422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS28 624", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446295583, - "lat": 53.8265205, - "lon": -1.6813605, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS28 128" - } -}, -{ - "type": "node", - "id": 446295661, - "lat": 53.8288476, - "lon": -1.7100771, - "tags": { - "amenity": "post_box", - "ref": "BD10 388" - } -}, -{ - "type": "node", - "id": 446295679, - "lat": 53.8719833, - "lon": -1.7496418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 493D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446295683, - "lat": 53.8733719, - "lon": -1.8512428, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 446295699, - "lat": 53.8764503, - "lon": -1.8811733, - "tags": { - "amenity": "post_box", - "ref": "BD21 101" - } -}, -{ - "type": "node", - "id": 446296337, - "lat": 53.8750058, - "lon": -1.8913426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD21 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 446308492, - "lat": 53.8667365, - "lon": -1.9197867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD21 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 446308494, - "lat": 53.8688133, - "lon": -1.9154026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD21 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 446308663, - "lat": 53.5484603, - "lon": -1.5635789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446334430, - "lat": 53.8957871, - "lon": -1.9561245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD20 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446334436, - "lat": 53.8336710, - "lon": -1.8110143, - "tags": { - "amenity": "post_box", - "ref": "BD18 950" - } -}, -{ - "type": "node", - "id": 446334533, - "lat": 53.8390533, - "lon": -1.7505513, - "tags": { - "amenity": "post_box", - "check_date": "2020-01-31", - "post_box:type": "pillar", - "ref:GB:uprn": "10015297627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446334536, - "lat": 53.8222783, - "lon": -1.6581812, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-09", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS13 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446334559, - "lat": 53.9463898, - "lon": -1.0465170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO10 582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 446392392, - "lat": 55.9523210, - "lon": -3.1965000, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-15", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "colour": "gold", - "note": "Commemorates gold medals by Sir Chris Hoy", - "post_box:type": "pillar", - "ref": "EH2 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 446392393, - "lat": 55.9532793, - "lon": -3.2006934, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-02", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "local_ref": "A", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "EH2 84", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 446392394, - "lat": 55.9532921, - "lon": -3.2007014, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-02", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "local_ref": "B", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "EH2 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 446392395, - "lat": 55.9533049, - "lon": -3.2007082, - "tags": { - "amenity": "post_box", - "check_date": "2023-06-10", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "local_ref": "C", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "EH2 94", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 446754433, - "lat": 55.9767026, - "lon": -3.1714287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 446783358, - "lat": 52.7149555, - "lon": -2.7353299, - "tags": { - "amenity": "post_box", - "ref": "SY2 567", - "source": "survey" - } -}, -{ - "type": "node", - "id": 446859845, - "lat": 52.1725060, - "lon": -0.5265071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 119" - } -}, -{ - "type": "node", - "id": 446860186, - "lat": 52.1741650, - "lon": -0.5213428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:55", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "MK43 7", - "ref": "MK43 141" - } -}, -{ - "type": "node", - "id": 446882434, - "lat": 51.5203514, - "lon": -0.2072453, - "tags": { - "amenity": "post_box", - "ref": "W10 16" - } -}, -{ - "type": "node", - "id": 446969668, - "lat": 53.8376880, - "lon": -3.0453257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 222D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 446969703, - "lat": 53.8376627, - "lon": -3.0524247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 446969760, - "lat": 53.8353891, - "lon": -3.0546846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY2 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447081562, - "lat": 52.6014629, - "lon": 0.3781766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "non-standard aperture in wall", - "post_box:type": "wall", - "ref": "PE38 500", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 447081963, - "lat": 52.6011084, - "lon": 0.3585740, - "tags": { - "amenity": "post_box", - "fixme": "What is the number of this post box?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 447081974, - "lat": 52.6038504, - "lon": 0.3730662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 424D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447082055, - "lat": 52.6035991, - "lon": 0.3841552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PE38 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447082078, - "lat": 52.6013965, - "lon": 0.3845152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447082113, - "lat": 52.6028486, - "lon": 0.3741556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE38 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 447082140, - "lat": 52.6022623, - "lon": 0.3772802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE38 4988;PE38 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447082149, - "lat": 52.6033729, - "lon": 0.3781269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE38 244D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 447093742, - "lat": 51.4279535, - "lon": -0.0094784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 406D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447261621, - "lat": 52.5593821, - "lon": 0.3894802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE38 124" - } -}, -{ - "type": "node", - "id": 447261628, - "lat": 52.5579990, - "lon": 0.3878691, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 447261681, - "lat": 52.5557567, - "lon": 0.3890357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 243" - } -}, -{ - "type": "node", - "id": 447261747, - "lat": 52.5516654, - "lon": 0.3588748, - "tags": { - "amenity": "post_box", - "ref": "PE38 254" - } -}, -{ - "type": "node", - "id": 447261756, - "lat": 52.5465655, - "lon": 0.3617451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "PE38 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 447261792, - "lat": 52.5441059, - "lon": 0.3548871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "PE38 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447359628, - "lat": 51.4098013, - "lon": 0.0069277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 447532312, - "lat": 52.1410287, - "lon": -0.4820266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 447595379, - "lat": 51.3517917, - "lon": -2.9415430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS22 162" - } -}, -{ - "type": "node", - "id": 447597890, - "lat": 51.3530100, - "lon": -2.9484227, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447597892, - "lat": 51.3514970, - "lon": -2.9554976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 447598176, - "lat": 51.3485857, - "lon": -2.9575872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 447650829, - "lat": 52.3112188, - "lon": 1.0090765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP22 7108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447670650, - "lat": 52.3063317, - "lon": 1.0331670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447725259, - "lat": 52.9328955, - "lon": -1.1580618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "ele": "24.158569", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 447785374, - "lat": 51.4463774, - "lon": 0.3279093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 447797629, - "lat": 52.5413237, - "lon": -2.8114001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 592D" - } -}, -{ - "type": "node", - "id": 447797691, - "lat": 52.5357649, - "lon": -2.8102459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY6 531D" - } -}, -{ - "type": "node", - "id": 447797751, - "lat": 52.5368931, - "lon": -2.8133127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447805197, - "lat": 52.8930340, - "lon": -1.1826090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 394D", - "ref:GB:uprn": "10015352369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447809504, - "lat": 52.3339149, - "lon": 1.0469010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447809527, - "lat": 52.3400646, - "lon": 1.0560962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7088", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447814469, - "lat": 52.1416402, - "lon": -0.4781818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 447815259, - "lat": 52.8961899, - "lon": -1.1759920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 385", - "ref:GB:uprn": "10015391772", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447815260, - "lat": 52.8971398, - "lon": -1.1887168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 504", - "ref:GB:uprn": "10015857662", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447815262, - "lat": 52.9051767, - "lon": -1.1920917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG11 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447815270, - "lat": 52.9159200, - "lon": -1.1777867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 84", - "ref:GB:uprn": "10015674933", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447817912, - "lat": 51.3496517, - "lon": -2.9671831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 447822931, - "lat": 50.8608489, - "lon": -3.5441389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 447838881, - "lat": 52.5347814, - "lon": -2.7876678, - "tags": { - "amenity": "post_box", - "note": "ref SY6 571D correct checked Feb 2016 & Mar 2017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447838882, - "lat": 52.5356690, - "lon": -2.7962657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "ref SY6 464 correct checked Feb 2016 & Mar 2017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447838890, - "lat": 52.5370089, - "lon": -2.7929306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 447856790, - "lat": 51.1865010, - "lon": 1.1567205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 235", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 447869087, - "lat": 53.1028285, - "lon": -1.0370476, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 447869269, - "lat": 51.5194031, - "lon": -0.1234548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC1A 2;WC1A 202", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447873256, - "lat": 51.5150132, - "lon": -0.1313828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "note": "LH collection plate currently broken 12/02/20; 2024-07-10 the plate is still missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W1D 98D;W1D 298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447878513, - "lat": 51.5195595, - "lon": -0.1297545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "WC1B 4;WC1B 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447878521, - "lat": 51.8672401, - "lon": -2.6168391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "HR9 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447878600, - "lat": 55.9224559, - "lon": -4.4558429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G60 522" - } -}, -{ - "type": "node", - "id": 447878601, - "lat": 55.9196615, - "lon": -4.4478559, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 447909976, - "lat": 52.0481770, - "lon": 0.7242575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO10 1086D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 447923408, - "lat": 51.5395322, - "lon": -0.0563412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447923449, - "lat": 51.5478013, - "lon": -0.0565865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "289001739537912", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 6D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447959133, - "lat": 52.0428174, - "lon": 0.7325696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO10 1088", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 447959134, - "lat": 52.0416782, - "lon": 0.7350170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "CO10 1022" - } -}, -{ - "type": "node", - "id": 447979160, - "lat": 50.8093953, - "lon": -0.3849939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1613", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 447979569, - "lat": 52.0451718, - "lon": 0.7413214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "CO10 1116" - } -}, -{ - "type": "node", - "id": 447981515, - "lat": 52.9377309, - "lon": -1.1627694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "yes", - "opening_hours": "Mo-Fr 12:30-18:30", - "post_box:type": "meter", - "ref": "NG2 3", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 447987499, - "lat": 52.3477311, - "lon": -1.1380917, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "NN6 7", - "ref": "NN6 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 447987501, - "lat": 52.3473375, - "lon": -1.1327115, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "NN6 7", - "ref": "NN6 232" - } -}, -{ - "type": "node", - "id": 447988384, - "lat": 51.4549097, - "lon": 0.1548486, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 447997386, - "lat": 52.0430850, - "lon": 0.7292976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "CO10 1041" - } -}, -{ - "type": "node", - "id": 448000494, - "lat": 53.0357555, - "lon": -3.0265403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LL14 103D" - } -}, -{ - "type": "node", - "id": 448001146, - "lat": 51.4510713, - "lon": 0.1794976, - "tags": { - "amenity": "post_box", - "mapillary": "302166684712326", - "post_box:type": "meter", - "survey:date": "2021-02-11" - } -}, -{ - "type": "node", - "id": 448004918, - "lat": 51.4391018, - "lon": 0.2487730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "DA2 232" - } -}, -{ - "type": "node", - "id": 448004927, - "lat": 51.4384303, - "lon": 0.2538652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA2 106" - } -}, -{ - "type": "node", - "id": 448012012, - "lat": 51.4411281, - "lon": 0.2608560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA9 277" - } -}, -{ - "type": "node", - "id": 448014803, - "lat": 51.4455727, - "lon": 0.2601772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA9 356" - } -}, -{ - "type": "node", - "id": 448014811, - "lat": 51.4462731, - "lon": 0.2641417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA9 99" - } -}, -{ - "type": "node", - "id": 448019273, - "lat": 52.9146879, - "lon": -1.1747879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG11 370", - "ref:GB:uprn": "10015716901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448019274, - "lat": 52.9092895, - "lon": -1.1728145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG11 373", - "ref:GB:uprn": "10015309099", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448019277, - "lat": 52.9029288, - "lon": -1.1670512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG11 497", - "ref:GB:uprn": "10015277030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448019278, - "lat": 52.9067800, - "lon": -1.1672248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 374D", - "ref:GB:uprn": "10015452993", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448028299, - "lat": 52.9144722, - "lon": -1.1567439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "post_box:type": "meter", - "ref": "NG11 17", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448028300, - "lat": 52.9123123, - "lon": -1.1526419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG2 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448028302, - "lat": 52.9099624, - "lon": -1.1484069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "NG2 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448028305, - "lat": 52.9188452, - "lon": -1.1534301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:manufacturer": "Abbot Eng., Paisley", - "post_box:type": "pillar", - "ref": "NG2 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448029301, - "lat": 51.4504210, - "lon": 0.2657579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA9 48" - } -}, -{ - "type": "node", - "id": 448034542, - "lat": 51.4498623, - "lon": 0.2744611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA9 420" - } -}, -{ - "type": "node", - "id": 448034604, - "lat": 51.4437131, - "lon": 0.2504757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DA2 20" - } -}, -{ - "type": "node", - "id": 448035772, - "lat": 51.4426332, - "lon": 0.2470400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DA2 209" - } -}, -{ - "type": "node", - "id": 448037416, - "lat": 51.4410645, - "lon": 0.2370434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA1 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 448037419, - "lat": 51.4390889, - "lon": 0.2310128, - "tags": { - "amenity": "post_box", - "ref": "DA1 305" - } -}, -{ - "type": "node", - "id": 448037425, - "lat": 51.4408486, - "lon": 0.2245628, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA1 361" - } -}, -{ - "type": "node", - "id": 448121582, - "lat": 55.9165419, - "lon": -4.4437412, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 448130011, - "lat": 52.2258642, - "lon": -0.2673310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448154528, - "lat": 51.1817317, - "lon": 0.3813163, - "tags": { - "amenity": "post_box", - "ref": "TN12 332" - } -}, -{ - "type": "node", - "id": 448172404, - "lat": 54.9915702, - "lon": -1.6771975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 448186087, - "lat": 51.3477092, - "lon": -2.9527123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 448223056, - "lat": 51.7654158, - "lon": -1.2141872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "OX3 605D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 448247348, - "lat": 52.4496134, - "lon": -1.8070213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "ref": "B26 333", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 448282665, - "lat": 51.2958660, - "lon": -0.7830340, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 448282678, - "lat": 51.2986031, - "lon": -0.7799184, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 448353171, - "lat": 51.3471601, - "lon": -2.9662389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 448353178, - "lat": 51.3463560, - "lon": -2.9706335, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 448396607, - "lat": 51.3508814, - "lon": -2.9603280, - "tags": { - "amenity": "post_box", - "note": "Approximate position, saw this while travelling on the other side of Milton Road, recessed into a brick wall" - } -}, -{ - "type": "node", - "id": 448424415, - "lat": 53.0327474, - "lon": -3.0311508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:15", - "ref": "LL14 131" - } -}, -{ - "type": "node", - "id": 448440258, - "lat": 52.1776953, - "lon": -0.3157339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 448447927, - "lat": 52.6470190, - "lon": -2.4502418, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TF3 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 448457451, - "lat": 51.4440182, - "lon": 0.2188872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "post_box:manufacturer": "Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "DA1 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 448509410, - "lat": 51.4983652, - "lon": -0.1508881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 51D;SW1X 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448510628, - "lat": 51.4975378, - "lon": -0.1545792, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-19", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "same ref on both apertures", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "The Meadow Foundry Co Ltd, Mansfield, Notts", - "post_box:type": "pillar", - "ref": "SW1 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 448591031, - "lat": 50.3968562, - "lon": -3.6726639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 448620469, - "lat": 52.4554189, - "lon": -1.8072027, - "tags": { - "amenity": "post_box", - "ref": "B26 817", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 448620575, - "lat": 52.9251906, - "lon": -1.2065092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 615D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 448626804, - "lat": 52.4581694, - "lon": -1.8013950, - "tags": { - "amenity": "post_box", - "ref": "B26 924", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 448635608, - "lat": 52.4614205, - "lon": -1.8088457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B26 740", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 448651993, - "lat": 50.5430367, - "lon": -3.5909032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 448659095, - "lat": 53.3927879, - "lon": -2.1524717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "SK2 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 448698424, - "lat": 51.4536853, - "lon": 0.2355429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA1 364", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 448698431, - "lat": 51.4559863, - "lon": 0.2321390, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 448707375, - "lat": 53.7950990, - "lon": -1.6805097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 144" - } -}, -{ - "type": "node", - "id": 448707604, - "lat": 53.7965137, - "lon": -1.6856648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 796" - } -}, -{ - "type": "node", - "id": 448708050, - "lat": 53.8002206, - "lon": -1.6985404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 448708437, - "lat": 53.7990871, - "lon": -1.6847526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 960" - } -}, -{ - "type": "node", - "id": 448708624, - "lat": 53.8000947, - "lon": -1.6696382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 593" - } -}, -{ - "type": "node", - "id": 448750282, - "lat": 51.5648719, - "lon": 0.2022186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 448750386, - "lat": 51.5534298, - "lon": 0.2475455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM14 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 448751018, - "lat": 51.4404170, - "lon": 0.3027089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA10 359", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 448751059, - "lat": 51.4458134, - "lon": 0.3025465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA10 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 448827285, - "lat": 50.3446816, - "lon": -5.1542726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TR6 135;TR6 1350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 448849616, - "lat": 51.4512233, - "lon": 0.2209474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "DA1 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 448861096, - "lat": 51.5960946, - "lon": -1.3527435, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 448879141, - "lat": 52.9692421, - "lon": -2.2003888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST4 260", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 448885814, - "lat": 51.6416117, - "lon": -3.2235805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 448924375, - "lat": 51.0906703, - "lon": 1.1642933, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 105" - } -}, -{ - "type": "node", - "id": 448939937, - "lat": 53.4825517, - "lon": -2.2542422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-01", - "collection_times": "Mo-Fr 06:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M3 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 449049240, - "lat": 51.3340143, - "lon": -2.3001322, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 449079236, - "lat": 52.7480373, - "lon": -2.4037948, - "tags": { - "amenity": "post_box", - "ref": "TF10 226" - } -}, -{ - "type": "node", - "id": 449079305, - "lat": 52.7983059, - "lon": -2.3949890, - "tags": { - "amenity": "post_box", - "ref": "TF10 205" - } -}, -{ - "type": "node", - "id": 449079490, - "lat": 52.8579053, - "lon": -2.4100610, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF9 418" - } -}, -{ - "type": "node", - "id": 449079519, - "lat": 52.8650592, - "lon": -2.4181576, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TF9 474" - } -}, -{ - "type": "node", - "id": 449079554, - "lat": 52.8754696, - "lon": -2.4141209, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF9 472" - } -}, -{ - "type": "node", - "id": 449079693, - "lat": 52.9005207, - "lon": -2.4582573, - "tags": { - "amenity": "post_box", - "ref": "TF9 471" - } -}, -{ - "type": "node", - "id": 449079801, - "lat": 52.9103817, - "lon": -2.4812373, - "tags": { - "amenity": "post_box", - "ref": "TF9 491" - } -}, -{ - "type": "node", - "id": 449079903, - "lat": 52.9264243, - "lon": -2.4610115, - "tags": { - "amenity": "post_box", - "ref": "TF9 439" - } -}, -{ - "type": "node", - "id": 449080022, - "lat": 52.9440637, - "lon": -2.4430675, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF9 458" - } -}, -{ - "type": "node", - "id": 449080068, - "lat": 52.9484220, - "lon": -2.4496157, - "tags": { - "amenity": "post_box", - "ref": "TF9 485" - } -}, -{ - "type": "node", - "id": 449080223, - "lat": 52.9758934, - "lon": -2.4933145, - "tags": { - "amenity": "post_box", - "ref": "CW3 167" - } -}, -{ - "type": "node", - "id": 449091947, - "lat": 51.4538432, - "lon": 0.2083539, - "tags": { - "amenity": "post_box", - "mapillary": "469398950951883", - "post_box:type": "pillar", - "survey:date": "2021-02-21" - } -}, -{ - "type": "node", - "id": 449096721, - "lat": 51.4490416, - "lon": 0.2164163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "image": "https://archive.org/details/dartford-2020-07-11/IMG_20200712_171412.jpg", - "note": "Unable to read ref due to damaged/dirty screen over collection plate", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449097378, - "lat": 53.9018762, - "lon": -0.7538349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "YO42 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449097618, - "lat": 53.9269400, - "lon": -0.7766504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO42 568", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449099690, - "lat": 51.4540360, - "lon": 0.2233458, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 449103380, - "lat": 51.4569783, - "lon": 0.2264653, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 449103384, - "lat": 51.4491043, - "lon": 0.2350829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "image": "https://archive.org/details/Dartford-north-2021-04-24/Dartford%20%28north%29%202021-04-24/2021-04-24_16-25-18_20210424_19_06_29.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "DA1 348D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 449103387, - "lat": 51.4464639, - "lon": 0.2314195, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 449116948, - "lat": 51.4427505, - "lon": 0.2434128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA2 56" - } -}, -{ - "type": "node", - "id": 449116956, - "lat": 51.4542505, - "lon": 0.2490303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 449116975, - "lat": 51.4542505, - "lon": 0.2490961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 449130754, - "lat": 51.4515784, - "lon": 0.2713499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 449187401, - "lat": 52.2084837, - "lon": -0.2676204, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 449202822, - "lat": 51.4576933, - "lon": 0.0182534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 449273320, - "lat": 50.5990779, - "lon": -3.4456860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX7 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-12-10" - } -}, -{ - "type": "node", - "id": 449309180, - "lat": 51.5493155, - "lon": 0.2518561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM14 251" - } -}, -{ - "type": "node", - "id": 449309188, - "lat": 51.5502421, - "lon": 0.2580232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM14 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 449309194, - "lat": 51.5526182, - "lon": 0.2522443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM14 304", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 449309196, - "lat": 51.5525426, - "lon": 0.2395655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "145522421456971", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM14 237D", - "royal_cypher": "GR", - "survey:date": "2024-01-28" - } -}, -{ - "type": "node", - "id": 449340450, - "lat": 54.5378790, - "lon": -0.7727880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449351649, - "lat": 51.4366129, - "lon": 0.2366539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "image": "https://archive.org/details/dartford-2021-05-09/2021-05-09_16-46-00_20210509_18_06_13.jpg", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA1 509D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 449368352, - "lat": 51.4507089, - "lon": 0.2923070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA9 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 449723780, - "lat": 51.0784153, - "lon": 1.0265441, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 140" - } -}, -{ - "type": "node", - "id": 449832121, - "lat": 52.2056842, - "lon": 0.1333131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449846701, - "lat": 52.2072816, - "lon": 0.1252291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CB1 1", - "ref": "CB1 7" - } -}, -{ - "type": "node", - "id": 449846719, - "lat": 52.2035207, - "lon": 0.1291001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449846724, - "lat": 52.2011361, - "lon": 0.1342819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 2", - "ref": "CB1 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449846726, - "lat": 52.1996395, - "lon": 0.1384534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CB1 2", - "ref": "CB1 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 449871351, - "lat": 52.2089608, - "lon": 0.1403552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB5", - "ref": "CB5 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 449871404, - "lat": 52.2080853, - "lon": 0.1330408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450006209, - "lat": 52.0916663, - "lon": 0.1580302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450018798, - "lat": 52.1132730, - "lon": 0.1493999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450036822, - "lat": 52.1276110, - "lon": 0.0357582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 450044502, - "lat": 55.5992721, - "lon": -1.8286542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "drive_through": "no", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NE70 137" - } -}, -{ - "type": "node", - "id": 450135258, - "lat": 50.8897050, - "lon": -1.3162013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "SO31 382", - "source": "survey_2017_01_07" - } -}, -{ - "type": "node", - "id": 450135262, - "lat": 50.9094689, - "lon": -1.3604606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-24", - "old_ref": "SO19 259", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 259D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450138944, - "lat": 52.1440085, - "lon": 0.1470776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB22 485", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450140316, - "lat": 51.5700697, - "lon": -0.4204892, - "tags": { - "amenity": "post_box", - "ref": "HA4 250" - } -}, -{ - "type": "node", - "id": 450140322, - "lat": 51.5651355, - "lon": -0.4211196, - "tags": { - "amenity": "post_box", - "ref": "HA4 253" - } -}, -{ - "type": "node", - "id": 450140325, - "lat": 51.5595200, - "lon": -0.4167818, - "tags": { - "amenity": "post_box", - "last_collection": "5.15pm Sat 12.45pm", - "postal_code": "HA4", - "ref": "HA4 192" - } -}, -{ - "type": "node", - "id": 450140326, - "lat": 51.5612443, - "lon": -0.4198619, - "tags": { - "amenity": "post_box", - "ref": "HA4 476" - } -}, -{ - "type": "node", - "id": 450151514, - "lat": 51.1459228, - "lon": 1.0741261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 74", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 450167963, - "lat": 51.4553323, - "lon": -0.0077037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450188019, - "lat": 51.7039763, - "lon": 0.4823562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:35; Sa 12:20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM2 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 450199947, - "lat": 52.4411705, - "lon": -1.8439196, - "tags": { - "amenity": "post_box", - "ref": "B28 974", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450208810, - "lat": 52.4415461, - "lon": -1.8499792, - "tags": { - "amenity": "post_box", - "ref": "B28 243", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450211913, - "lat": 51.4891379, - "lon": -0.1647853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SW3 28" - } -}, -{ - "type": "node", - "id": 450358636, - "lat": 52.7078254, - "lon": -2.7356473, - "tags": { - "amenity": "post_box", - "ref": "SY2 179", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450360473, - "lat": 52.7038198, - "lon": -2.7312868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY2 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 450525225, - "lat": 52.4461437, - "lon": -1.8061185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "B92 890", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450525697, - "lat": 52.4449793, - "lon": -1.8008346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "B92 1236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450543042, - "lat": 52.4531975, - "lon": -1.8090496, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 1026", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450543045, - "lat": 52.4550522, - "lon": -1.7968312, - "tags": { - "amenity": "post_box", - "ref": "B92 918", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450543055, - "lat": 52.4507371, - "lon": -1.7994518, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 1188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450545911, - "lat": 54.1284957, - "lon": -1.1879046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO61 592" - } -}, -{ - "type": "node", - "id": 450547964, - "lat": 52.4442908, - "lon": -1.7952842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 1379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450547967, - "lat": 52.4442811, - "lon": -1.7906432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 972", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 450607826, - "lat": 52.1972822, - "lon": 0.1458387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 450609180, - "lat": 52.2015367, - "lon": 0.1533601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 26", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 450609574, - "lat": 52.1989568, - "lon": 0.1521396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB1 3", - "ref": "CB1 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 450610445, - "lat": 52.1970440, - "lon": 0.1508783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "506293830545612", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-04-16" - } -}, -{ - "type": "node", - "id": 450632352, - "lat": 56.2919167, - "lon": -3.2323252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY14 321", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 450637038, - "lat": 53.3276053, - "lon": -3.0963255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR type PB58 box CH60 426 inside Heswall Post Office, just inside the entrance on Downham Road South. It's not clear why it is also marked in Welsh, because this is not even in Cheshire, it's in Merseyside, and Heswall as far as I know does not have a l", - "note": "This ref appears to have been reassigned from \"CH60 Heswall LDO\" to this new PB58.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH60 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box inside Heswall Post Office.jpg" - } -}, -{ - "type": "node", - "id": 450639834, - "lat": 53.3352688, - "lon": -3.0969393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type A postbox CH60 415 outside the shops opposite Sainsbury Local.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Pensby Road near Whitfield Lane.jpg" - } -}, -{ - "type": "node", - "id": 450643694, - "lat": 56.2917608, - "lon": -3.2281390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 310D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 450652257, - "lat": 50.5306192, - "lon": -3.6096684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ12 50;TQ12 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 450656162, - "lat": 50.5241886, - "lon": -3.6108301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 101D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 450689044, - "lat": 51.2427524, - "lon": -0.5894781, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU2 285" - } -}, -{ - "type": "node", - "id": 450704480, - "lat": 54.1178633, - "lon": -1.1884239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:50; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO61 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 450884693, - "lat": 51.1133855, - "lon": 1.1516916, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 153" - } -}, -{ - "type": "node", - "id": 450944559, - "lat": 51.1318060, - "lon": -1.0508228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU34 80" - } -}, -{ - "type": "node", - "id": 450974589, - "lat": 56.3165327, - "lon": -6.2338203, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA67 117", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 451014197, - "lat": 55.1282017, - "lon": -1.5105020, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 1LS", - "ref": "NE24 537" - } -}, -{ - "type": "node", - "id": 451014198, - "lat": 55.1262030, - "lon": -1.5127795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE24 1DF", - "ref": "NE24 538", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 451014199, - "lat": 55.1210062, - "lon": -1.5090589, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 2HR", - "ref": "NE24 549", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 451014204, - "lat": 55.1245517, - "lon": -1.5048856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 2DS", - "ref": "NE24 539" - } -}, -{ - "type": "node", - "id": 451084692, - "lat": 51.3631890, - "lon": -2.9579016, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 451182904, - "lat": 51.3583689, - "lon": -2.9414897, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 451619817, - "lat": 53.2819054, - "lon": -2.4754696, - "tags": { - "amenity": "post_box", - "postal_code": "CW9", - "ref": "CW9 219" - } -}, -{ - "type": "node", - "id": 451690452, - "lat": 52.4869287, - "lon": -0.4651005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 451705950, - "lat": 52.2055396, - "lon": 0.1503228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 451706157, - "lat": 52.2079415, - "lon": 0.1434681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 451706177, - "lat": 52.2058702, - "lon": 0.1449212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "note": "Only accessible when ASDA is open", - "operator": "Royal Mail", - "postal_code": "CB1 3", - "ref": "CB1 183" - } -}, -{ - "type": "node", - "id": 451706615, - "lat": 52.2062849, - "lon": 0.1357485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 451706683, - "lat": 52.2076583, - "lon": 0.1342809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB1 1", - "ref": "CB1 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 451706828, - "lat": 52.2069238, - "lon": 0.1344788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 451727162, - "lat": 52.4473774, - "lon": -1.8719236, - "tags": { - "amenity": "post_box", - "ref": "B13 301", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 451731454, - "lat": 52.4517444, - "lon": -1.8790293, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 25", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 451771594, - "lat": 57.0316450, - "lon": -2.1535016, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 451823034, - "lat": 50.7978985, - "lon": -3.1836085, - "tags": { - "amenity": "post_box", - "ref": "EX14 498" - } -}, -{ - "type": "node", - "id": 451835246, - "lat": 55.9056262, - "lon": -4.3884998, - "tags": { - "amenity": "post_box", - "postal_code": "G81 2", - "ref": "G81 1221" - } -}, -{ - "type": "node", - "id": 451835248, - "lat": 55.9086325, - "lon": -4.3908615, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "G81 2", - "ref": "G81 1112" - } -}, -{ - "type": "node", - "id": 451961451, - "lat": 53.8263631, - "lon": -1.6874090, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LS28 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 451961475, - "lat": 53.8097138, - "lon": -1.7140562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 452002985, - "lat": 53.8070302, - "lon": -1.6938757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 887" - } -}, -{ - "type": "node", - "id": 452003053, - "lat": 53.8104122, - "lon": -1.6909266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 636" - } -}, -{ - "type": "node", - "id": 452003065, - "lat": 53.8146258, - "lon": -1.6968140, - "tags": { - "amenity": "post_box", - "note": "in wall", - "operator": "Royal Mail", - "ref": "LS28 626" - } -}, -{ - "type": "node", - "id": 452003092, - "lat": 53.8288577, - "lon": -1.7584764, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BD18 910" - } -}, -{ - "type": "node", - "id": 452038604, - "lat": 50.8215007, - "lon": 0.2443064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1038", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452038612, - "lat": 50.8235232, - "lon": 0.2446068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN26 1036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452038634, - "lat": 50.8263859, - "lon": 0.2441863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 998" - } -}, -{ - "type": "node", - "id": 452038647, - "lat": 50.8136703, - "lon": 0.2126349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1016" - } -}, -{ - "type": "node", - "id": 452065689, - "lat": 52.0307244, - "lon": -0.7980638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mapillary": "1891752824322804", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK8 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2020-07-17" - } -}, -{ - "type": "node", - "id": 452070917, - "lat": 51.3620217, - "lon": -2.9525640, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 452140246, - "lat": 53.7750183, - "lon": -1.5671402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 398", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 452140385, - "lat": 53.7791661, - "lon": -1.5582014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS11 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452143316, - "lat": 52.9396545, - "lon": -1.4973391, - "tags": { - "amenity": "post_box", - "ref": "DE22 793" - } -}, -{ - "type": "node", - "id": 452149664, - "lat": 51.5152996, - "lon": -0.1599632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 14D;W1H 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452168097, - "lat": 51.5167167, - "lon": -0.1600268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "note": "Apertures marked \"stamped\" and \"franked\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "W1H 9D;W1H 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452169211, - "lat": 51.5148330, - "lon": -0.1579910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W1H 16;W1H 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452214758, - "lat": 51.5139060, - "lon": -0.1416680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 91;W1B 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452215413, - "lat": 51.5085122, - "lon": -0.1390839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Unusual wooden postbox in LH arch entrance into Burlington house courtyard.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "W1J 93D;W1J 293D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452215422, - "lat": 51.5090794, - "lon": -0.1369796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 95D;W1J 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1J 95D and W1J 295D" - } -}, -{ - "type": "node", - "id": 452215440, - "lat": 51.5102574, - "lon": -0.1398329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1S 290D;W1S 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452215442, - "lat": 51.5098434, - "lon": -0.1417199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W1S 92D;W1S 292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452215459, - "lat": 51.5101255, - "lon": -0.1380265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "note": "Two postboxes have plates with refs W1K 40 and W1K 240, this one and one on Mount Street. This one is the one with the wrong plates because an earlier plate had W1 96. Correct refs deduced from earlier plate according to the usual pattern.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 96;W1B 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1K 240D and W1K 40D" - } -}, -{ - "type": "node", - "id": 452390724, - "lat": 53.0413723, - "lon": -2.1882614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 24" - } -}, -{ - "type": "node", - "id": 452410279, - "lat": 51.5025159, - "lon": -0.1523721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "currently (20/1/15) out of use due to building work. Both apertures blocked up. No collection plates in place.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 30D;SW1X 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452412639, - "lat": 51.5059438, - "lon": -0.1512696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1K 64D;W1K 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452415076, - "lat": 51.5089308, - "lon": -0.1546149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "RH aperture sealed with no plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452418778, - "lat": 51.5110605, - "lon": -0.1500089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1K 86;W1K 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452481411, - "lat": 51.3704846, - "lon": -2.3493129, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 452481412, - "lat": 51.3690593, - "lon": -2.3517076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 452482767, - "lat": 52.2549680, - "lon": -1.9131594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B96 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 452484720, - "lat": 52.2665774, - "lon": -1.8922167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B80 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 452484721, - "lat": 52.2649517, - "lon": -1.8996229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B80 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452486839, - "lat": 52.2410910, - "lon": -1.8839797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B49 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 452489771, - "lat": 52.2372732, - "lon": -1.8613086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 452489776, - "lat": 52.2321278, - "lon": -1.8345798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B49 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 452489780, - "lat": 52.2592919, - "lon": -1.8707844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B80 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 452515783, - "lat": 51.5095659, - "lon": -0.1328431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 54;SW1Y 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452518695, - "lat": 50.7401658, - "lon": -3.4923193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452530446, - "lat": 53.7914018, - "lon": -2.7508267, - "tags": { - "amenity": "post_box", - "ref": "PR4 245" - } -}, -{ - "type": "node", - "id": 452530449, - "lat": 53.8526900, - "lon": -2.7454026, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PR3 362" - } -}, -{ - "type": "node", - "id": 452531564, - "lat": 50.9229367, - "lon": -1.3448308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO18 45" - } -}, -{ - "type": "node", - "id": 452538679, - "lat": 53.9081883, - "lon": -2.7439991, - "tags": { - "amenity": "post_box", - "postal_code": "PR3", - "ref": "PR3 157" - } -}, -{ - "type": "node", - "id": 452540234, - "lat": 53.9331350, - "lon": -2.7599341, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-05", - "collection_times": "Mo-Fr 16:45, Sa 10:45", - "post_box:type": "wall", - "postal_code": "PR3", - "ref": "PR3 257", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 452541858, - "lat": 54.0253781, - "lon": -2.7339755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "LA2", - "ref": "LA2 112", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 452555286, - "lat": 53.9365946, - "lon": -0.7760583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO42 563", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 452555326, - "lat": 53.9328445, - "lon": -0.7658558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO42 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452560723, - "lat": 54.2067547, - "lon": -2.5749166, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "LA6", - "ref": "LA6 162" - } -}, -{ - "type": "node", - "id": 452560798, - "lat": 54.3163865, - "lon": -2.5536172, - "tags": { - "amenity": "post_box", - "postal_code": "LA10", - "ref": "LA10 183" - } -}, -{ - "type": "node", - "id": 452560802, - "lat": 54.3218676, - "lon": -2.5364342, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6820814", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "LA10", - "ref": "LA10 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452560810, - "lat": 54.3251831, - "lon": -2.5262533, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "LA10", - "ref": "LA10 255" - } -}, -{ - "type": "node", - "id": 452566182, - "lat": 54.3250194, - "lon": -2.5352562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA10 217", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 452566208, - "lat": 54.3496203, - "lon": -2.5639924, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "LA10", - "ref": "LA10 193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452571015, - "lat": 54.4240116, - "lon": -2.6034153, - "tags": { - "amenity": "post_box", - "postal_code": "CA10", - "ref": "CA10 225", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452571147, - "lat": 51.4457903, - "lon": 0.2252530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DA1 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 452590043, - "lat": 51.5121729, - "lon": -0.1417708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "has this postbox been removed?", - "last_collection": "6.30pm, Sat 12noon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "W1", - "ref": "W1 87" - } -}, -{ - "type": "node", - "id": 452610754, - "lat": 54.4454420, - "lon": -2.6223174, - "tags": { - "amenity": "post_box", - "postal_code": "CA10", - "ref": "CA10 152" - } -}, -{ - "type": "node", - "id": 452611505, - "lat": 54.4685974, - "lon": -2.5855508, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CA10", - "ref": "CA10 223" - } -}, -{ - "type": "node", - "id": 452617032, - "lat": 54.5262681, - "lon": -2.5880742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CA10", - "ref": "CA10 232", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452618214, - "lat": 54.5429097, - "lon": -2.5813668, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CA10", - "ref": "CA10 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452624042, - "lat": 51.4419027, - "lon": 0.2319306, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA1 196", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 452626101, - "lat": 54.5844950, - "lon": -2.5890372, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CA10", - "ref": "CA10 1" - } -}, -{ - "type": "node", - "id": 452638706, - "lat": 54.7181555, - "lon": -2.6745354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CA10", - "ref": "CA10 186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 452643788, - "lat": 53.8299355, - "lon": -1.6911384, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LS28 261", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 452644031, - "lat": 53.8163131, - "lon": -1.6291659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS13 69" - } -}, -{ - "type": "node", - "id": 452653429, - "lat": 50.9194627, - "lon": -1.4316869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 795", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452653442, - "lat": 50.9210932, - "lon": -1.4307990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO15 428;SO15 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452780480, - "lat": 52.1162333, - "lon": -1.6417094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452916732, - "lat": 54.7632859, - "lon": -2.6920850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CA10", - "ref": "CA10 250", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452916899, - "lat": 54.7975965, - "lon": -2.7839888, - "tags": { - "amenity": "post_box", - "postal_code": "CA4", - "ref": "CA4 79" - } -}, -{ - "type": "node", - "id": 452922117, - "lat": 54.8456142, - "lon": -2.7460967, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "CA8", - "ref": "CA8 279" - } -}, -{ - "type": "node", - "id": 452922231, - "lat": 50.6539835, - "lon": -1.1587371, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 56", - "ref:GB:uprn": "10015303039", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "website": "https://www.royalmail.com/services-near-you/postbox/melville-street-po36-9lt/0000PO3656" - } -}, -{ - "type": "node", - "id": 452922592, - "lat": 54.8880386, - "lon": -2.7886749, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CA8", - "ref": "CA8 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 452944829, - "lat": 54.9223426, - "lon": -2.8956192, - "tags": { - "amenity": "post_box", - "ref": "CA6 320" - } -}, -{ - "type": "node", - "id": 452967671, - "lat": 55.0047002, - "lon": -3.0591713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG16 102", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452967776, - "lat": 54.9915984, - "lon": -3.0676365, - "tags": { - "amenity": "post_box", - "postal_code": "DG16", - "ref": "DG16 147" - } -}, -{ - "type": "node", - "id": 452984209, - "lat": 55.0167867, - "lon": -3.1407612, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "DG11", - "ref": "DG11 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 452984999, - "lat": 52.5599553, - "lon": 0.0913904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "PE15 8SJ", - "ref": "PE15 9" - } -}, -{ - "type": "node", - "id": 452987419, - "lat": 55.0579474, - "lon": -3.2594285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1171624454154548", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DG11", - "ref": "DG11 40", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 452991232, - "lat": 54.7748984, - "lon": -1.5746697, - "tags": { - "addr:city": "Durham", - "addr:postcode": "DH1 3ET", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452991233, - "lat": 54.7722666, - "lon": -1.5754452, - "tags": { - "addr:city": "Durham", - "addr:postcode": "DH1 3EE", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 452991258, - "lat": 55.0594225, - "lon": -3.2666065, - "tags": { - "amenity": "post_box", - "ref": "DG11 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 452995707, - "lat": 50.9297278, - "lon": -1.2400816, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO32 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 453004129, - "lat": 55.1423985, - "lon": -3.3709709, - "tags": { - "amenity": "post_box", - "postal_code": "DG11", - "ref": "DG11 16" - } -}, -{ - "type": "node", - "id": 453013511, - "lat": 52.0275399, - "lon": -1.1491198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN13 84" - } -}, -{ - "type": "node", - "id": 453049530, - "lat": 55.4928384, - "lon": -3.6923020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "lamp", - "postal_code": "ML12", - "ref": "ML12 44", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 453055600, - "lat": 50.7611253, - "lon": -3.1745488, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 453056128, - "lat": 55.5539248, - "lon": -2.3163935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "description": "Edward 7th red box built into boundary wall of Catch A Penny Cottage", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD5 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 453071247, - "lat": 50.7541745, - "lon": -3.1616317, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 453098177, - "lat": 52.4441007, - "lon": -1.8915035, - "tags": { - "amenity": "post_box", - "ref": "B13 207", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 453117236, - "lat": 55.6710428, - "lon": -3.7715450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "ref": "ML11 7" - } -}, -{ - "type": "node", - "id": 453117242, - "lat": 55.6719701, - "lon": -3.7765251, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "ML11", - "ref": "ML11 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 453117258, - "lat": 55.6698307, - "lon": -3.7754629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "postal_code": "ML11", - "ref": "ML11 1" - } -}, -{ - "type": "node", - "id": 453117364, - "lat": 55.6632073, - "lon": -3.7798511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "ML11 27D" - } -}, -{ - "type": "node", - "id": 453128483, - "lat": 55.6840869, - "lon": -3.8528002, - "tags": { - "amenity": "post_box", - "postal_code": "ML11", - "ref": "ML11 31" - } -}, -{ - "type": "node", - "id": 453140455, - "lat": 55.7790942, - "lon": -4.0433639, - "tags": { - "amenity": "post_box", - "postal_code": "ML3", - "ref": "ML3 26" - } -}, -{ - "type": "node", - "id": 453172007, - "lat": 50.7688190, - "lon": -3.4789085, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 453174147, - "lat": 50.7618811, - "lon": -3.4669971, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX4 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 453184640, - "lat": 52.6238675, - "lon": -2.4644328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF8 277" - } -}, -{ - "type": "node", - "id": 453184696, - "lat": 52.6260264, - "lon": -2.4723544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TF8 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 453212364, - "lat": 56.0650507, - "lon": -4.4519280, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-02", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "G63", - "ref": "G63 792", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 453212373, - "lat": 56.0676758, - "lon": -4.4517309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G63", - "ref": "G63 1389", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 453221414, - "lat": 56.1427392, - "lon": -4.3822527, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "FK8", - "ref": "FK8 209" - } -}, -{ - "type": "node", - "id": 453221575, - "lat": 51.5599226, - "lon": -0.3848091, - "tags": { - "amenity": "post_box", - "ref": "HA4 449" - } -}, -{ - "type": "node", - "id": 453270400, - "lat": 56.3243620, - "lon": -4.3289650, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "FK18", - "ref": "FK18 186" - } -}, -{ - "type": "node", - "id": 453271615, - "lat": 54.6798264, - "lon": -1.8460152, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/7644879", - "post_box:type": "wall", - "ref": "DL13 114" - } -}, -{ - "type": "node", - "id": 453310492, - "lat": 52.1378268, - "lon": -0.4587876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 453433382, - "lat": 52.2664698, - "lon": 0.1611310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB25 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 453489318, - "lat": 56.4435632, - "lon": -2.8779027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 453498197, - "lat": 51.3144064, - "lon": 0.0620823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN16 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 453529567, - "lat": 54.3224385, - "lon": -1.9492995, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL8 136" - } -}, -{ - "type": "node", - "id": 453544191, - "lat": 56.3571743, - "lon": -4.3723924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "post_box:type": "lamp", - "postal_code": "FK19", - "ref": "FK19 208", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 453544194, - "lat": 56.3560954, - "lon": -4.3377639, - "tags": { - "amenity": "post_box", - "postal_code": "FK19", - "ref": "FK19 194" - } -}, -{ - "type": "node", - "id": 453563380, - "lat": 54.3051842, - "lon": -1.9869716, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 453563384, - "lat": 54.3034472, - "lon": -1.9911414, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 453582434, - "lat": 54.3149483, - "lon": -2.0805830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 453582437, - "lat": 54.3143894, - "lon": -2.1017324, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454124271, - "lat": 50.9336771, - "lon": -1.3826890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 238D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454175072, - "lat": 50.7547354, - "lon": -3.3554128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 454179871, - "lat": 50.7664717, - "lon": -3.2956103, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 454211511, - "lat": 50.7870481, - "lon": -3.2847979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EX14 350D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 454212856, - "lat": 51.5070138, - "lon": -0.1433373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:meter": "no", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 72;W1J 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454224579, - "lat": 50.9213196, - "lon": -1.3412512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO18 124" - } -}, -{ - "type": "node", - "id": 454228701, - "lat": 52.2000947, - "lon": 0.1608984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB1 3", - "ref": "CB1 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 454255438, - "lat": 50.7856693, - "lon": -3.2794548, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454301642, - "lat": 51.4398394, - "lon": 0.2078510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA1 300" - } -}, -{ - "type": "node", - "id": 454303976, - "lat": 50.7674515, - "lon": -3.2813859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454306568, - "lat": 50.7536882, - "lon": -3.2770772, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454360107, - "lat": 51.5075104, - "lon": -0.1414456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Has commemorative plaque for Anthony Trollope. Left stamped;right franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 74D;W1J 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454360138, - "lat": 51.5111148, - "lon": -0.1414216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1S 88;W1S 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454360147, - "lat": 51.5107061, - "lon": -0.1444552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 62;W1J 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454380754, - "lat": 52.0543542, - "lon": -0.8884596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK19 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 454380757, - "lat": 52.0532743, - "lon": -0.8856851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK19 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 454521793, - "lat": 51.3353270, - "lon": -2.3113596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA2 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 454521796, - "lat": 51.3290783, - "lon": -2.2880885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA15 25D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 454551493, - "lat": 51.3566406, - "lon": -2.9342312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 454568360, - "lat": 53.0121423, - "lon": -1.1903548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG6 366", - "ref:GB:uprn": "10015477991", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454568383, - "lat": 53.0061784, - "lon": -1.1987415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "52.757690", - "post_box:type": "pillar", - "ref": "NG6 358D", - "ref:GB:uprn": "10015308534", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 454576073, - "lat": 52.9756471, - "lon": -1.1823866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 285D", - "ref:GB:uprn": "10015292460", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454583794, - "lat": 56.4950879, - "lon": -4.1643428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "FK21", - "ref": "FK21 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 454583823, - "lat": 56.6180820, - "lon": -3.8736404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "578895614221653", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "PH15", - "ref": "PH15 25", - "royal_cypher": "scottish_crown", - "survey:date": "2023-05-25" - } -}, -{ - "type": "node", - "id": 454590916, - "lat": 56.6609532, - "lon": -3.7703367, - "tags": { - "amenity": "post_box", - "postal_code": "PH9", - "ref": "PH9 32" - } -}, -{ - "type": "node", - "id": 454590918, - "lat": 56.6614501, - "lon": -3.7566130, - "tags": { - "amenity": "post_box", - "postal_code": "PH9", - "ref": "PH9 35" - } -}, -{ - "type": "node", - "id": 454591554, - "lat": 56.6467740, - "lon": -3.7204031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 12:00", - "drive_through": "no", - "manufacturer": "W.T.Allen & Co. London", - "note": "aperture has been widened", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "PH9", - "ref": "PH9 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 454599229, - "lat": 56.7056080, - "lon": -3.7440414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 3D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 454600440, - "lat": 51.5484960, - "lon": -0.1464139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW5 22D" - } -}, -{ - "type": "node", - "id": 454607319, - "lat": 52.9707774, - "lon": -1.1980508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG8 253", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454607334, - "lat": 52.9612612, - "lon": -1.2000320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "35.934692", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 361D", - "ref:GB:uprn": "10015402584", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 454607336, - "lat": 52.9551793, - "lon": -1.2421898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 319D", - "ref:GB:uprn": "10015307690", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454616266, - "lat": 56.7700021, - "lon": -3.9023278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "postal_code": "PH18", - "ref": "PH18 46", - "royal_cypher": "GVIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 454616269, - "lat": 56.7690470, - "lon": -3.9341350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "PH18", - "ref": "PH18 59", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 454616289, - "lat": 56.7682162, - "lon": -3.9575341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:15", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PH18 102", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 454616727, - "lat": 51.5575798, - "lon": -0.0466718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454617188, - "lat": 51.4972089, - "lon": -0.9795581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG4 466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 454618664, - "lat": 52.9822508, - "lon": -1.2335265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG16 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454635508, - "lat": 53.0053879, - "lon": -1.2125827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:00-18:30", - "post_box:type": "meter", - "ref": "NG6 9", - "ref:GB:uprn": "10015839169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454635518, - "lat": 53.0036926, - "lon": -1.2095972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 131", - "ref:GB:uprn": "10015434680", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-04" - } -}, -{ - "type": "node", - "id": 454635523, - "lat": 52.9978619, - "lon": -1.1975552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 354", - "ref:GB:uprn": "10015327798", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454640643, - "lat": 52.9813915, - "lon": -1.1768022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 193", - "ref:GB:uprn": "10015837076", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454667728, - "lat": 53.0051010, - "lon": -1.2142026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 298", - "ref:GB:uprn": "10015395012", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 454678350, - "lat": 51.4322039, - "lon": -2.7733462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "BS48 1133D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 454744163, - "lat": 51.3601225, - "lon": -2.9433388, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454744168, - "lat": 51.3587228, - "lon": -2.9513342, - "tags": { - "amenity": "post_box", - "ref": "BS22 230" - } -}, -{ - "type": "node", - "id": 454746641, - "lat": 51.3553867, - "lon": -2.9559016, - "tags": { - "amenity": "post_box", - "ref": "BS22 247" - } -}, -{ - "type": "node", - "id": 454751021, - "lat": 51.3566751, - "lon": -2.9521423, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454756198, - "lat": 51.3571896, - "lon": -2.9489251, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 454904199, - "lat": 50.7587211, - "lon": -1.3011490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "448539487423994", - "name": "Victoria Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PO31 17D", - "ref:GB:uprn": "10015403766", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/victoria-road-po31-7aa/0000PO3117" - } -}, -{ - "type": "node", - "id": 455031522, - "lat": 50.9304971, - "lon": -1.4592759, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 582D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 455031524, - "lat": 50.9314372, - "lon": -1.4483431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 72" - } -}, -{ - "type": "node", - "id": 455045710, - "lat": 52.5001077, - "lon": -2.0420993, - "tags": { - "amenity": "post_box", - "ref": "B69 1428", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 455193190, - "lat": 51.9040422, - "lon": 0.2048067, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455193291, - "lat": 51.9078264, - "lon": 0.2016858, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455193307, - "lat": 51.9066373, - "lon": 0.1962872, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455193317, - "lat": 51.9029474, - "lon": 0.1951587, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455193535, - "lat": 51.8979429, - "lon": 0.1947882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM24 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 455193710, - "lat": 51.8990155, - "lon": 0.2012111, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455221756, - "lat": 52.1887406, - "lon": 0.1361009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1 1", - "ref": "CB1 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 455222687, - "lat": 52.1866609, - "lon": 0.1377016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 1", - "ref": "CB2 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 455224442, - "lat": 52.1835139, - "lon": 0.1397145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB2 71D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455226156, - "lat": 52.1875824, - "lon": 0.1471433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 455228814, - "lat": 52.1908247, - "lon": 0.1472023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 455306200, - "lat": 53.9298513, - "lon": -0.7801298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO42 355;YO42 9355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 455352755, - "lat": 52.5047273, - "lon": -2.0352276, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "ref": "B69 1113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 455451025, - "lat": 50.9819451, - "lon": -1.2317796, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455452818, - "lat": 50.9773802, - "lon": -1.2487020, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455457593, - "lat": 50.9325501, - "lon": -1.3705956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 426", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455457595, - "lat": 50.9367385, - "lon": -1.3786247, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 160", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455498413, - "lat": 56.9291319, - "lon": -4.2416481, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-06-09", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "PH19", - "ref": "PH19 53", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455498425, - "lat": 50.7306261, - "lon": -3.5082190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 107D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 455527988, - "lat": 57.0901758, - "lon": -3.9628301, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PH21", - "ref": "PH21 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 455540590, - "lat": 57.1162045, - "lon": -3.8973274, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PH21", - "ref": "PH21 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 455566756, - "lat": 57.2488132, - "lon": -3.7537854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:30", - "post_box:type": "pillar", - "postal_code": "PH24", - "ref": "PH24 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 455582839, - "lat": 52.0668988, - "lon": -0.6791440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 455593341, - "lat": 53.7978743, - "lon": -1.6734326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 455593507, - "lat": 53.7989518, - "lon": -1.6641309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 448" - } -}, -{ - "type": "node", - "id": 455594020, - "lat": 53.7984823, - "lon": -1.6591021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 436" - } -}, -{ - "type": "node", - "id": 455630704, - "lat": 52.1825946, - "lon": 0.1898233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB21 318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 455658597, - "lat": 52.1851459, - "lon": 0.2115859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB21 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-25" - } -}, -{ - "type": "node", - "id": 455680156, - "lat": 53.8333248, - "lon": -1.7755171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.geograph.org.uk/photo/6742716", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BD18 900;BD18 1900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 455895290, - "lat": 50.7649227, - "lon": -1.3112834, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Egypt Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 1D", - "ref:GB:uprn": "10015392804", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/egypt-hill-po31-7aa/00000PO311" - } -}, -{ - "type": "node", - "id": 455900637, - "lat": 50.7603061, - "lon": -1.3033282, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Park Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 4D", - "ref:GB:uprn": "10015402684", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/park-road-po31-7aa/00000PO314" - } -}, -{ - "type": "node", - "id": 455902445, - "lat": 50.7574875, - "lon": -1.2999278, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Lower Mill Hill Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 3D", - "ref:GB:uprn": "10015439075", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/mill-hill-road-po31-7aa/00000PO313" - } -}, -{ - "type": "node", - "id": 455903437, - "lat": 50.7550425, - "lon": -1.3019006, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 38", - "ref:GB:uprn": "10015296376", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/upper-mill-hill-po31-7hg/0000PO3138" - } -}, -{ - "type": "node", - "id": 455910651, - "lat": 51.6138449, - "lon": -3.8162712, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455910801, - "lat": 50.7606087, - "lon": -1.3234101, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Woodvale", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 39D", - "ref:GB:uprn": "10015460124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/woodvale-po31-7aa/0000PO3139" - } -}, -{ - "type": "node", - "id": 455910990, - "lat": 50.7597191, - "lon": -1.3182012, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Cow Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 48D", - "ref:GB:uprn": "10023710470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/cow-lane-po31-7aa/0000PO3148" - } -}, -{ - "type": "node", - "id": 455911138, - "lat": 50.7627269, - "lon": -1.3159524, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "name": "Battery Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/baring-road-po31-7aa/0000PO3133" - } -}, -{ - "type": "node", - "id": 455911580, - "lat": 53.0309378, - "lon": -2.1927311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "ref": "ST1 569", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 455916845, - "lat": 50.7662132, - "lon": -1.3005067, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 14", - "ref:GB:uprn": "10015379428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/royal-yacht-squadron-po31-7aa/0000PO3114" - } -}, -{ - "type": "node", - "id": 455916850, - "lat": 50.7624294, - "lon": -1.2978239, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 201", - "ref:GB:uprn": "10015823242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/cowes-precinct-po31-7aa/000PO31201" - } -}, -{ - "type": "node", - "id": 455916851, - "lat": 50.7611548, - "lon": -1.2974154, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po31-7aa/0000PO3115" - } -}, -{ - "type": "node", - "id": 455916853, - "lat": 50.7584160, - "lon": -1.2933961, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Medina Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 20D", - "ref:GB:uprn": "10015273023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/medina-road-po31-7aa/0000PO3120" - } -}, -{ - "type": "node", - "id": 455916854, - "lat": 50.7556084, - "lon": -1.2961625, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Arctic Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 13D", - "ref:GB:uprn": "10015387093", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/arctic-road-po31-7aa/0000PO3113" - } -}, -{ - "type": "node", - "id": 455916856, - "lat": 50.7669075, - "lon": -1.3083247, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Esplanade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 5D", - "ref:GB:uprn": "10015274497", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/queens-road-cliff-road-po31-7aa/00000PO315" - } -}, -{ - "type": "node", - "id": 455916857, - "lat": 50.7536377, - "lon": -1.3078500, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "name": "Admiral Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 362", - "ref:GB:uprn": "10015825588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/seaview-road-po31-7aa/000PO31362" - } -}, -{ - "type": "node", - "id": 455987858, - "lat": 53.0829797, - "lon": -1.1620859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 455987859, - "lat": 53.0854425, - "lon": -1.1663632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 36" - } -}, -{ - "type": "node", - "id": 456126090, - "lat": 52.1178873, - "lon": -1.2842122, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 456126111, - "lat": 52.1112708, - "lon": -1.2830145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX17 1023D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 456194661, - "lat": 50.8523355, - "lon": -1.1752141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "last_checked": "2020-03-19", - "note": "PO16 131 is for Stamped Mail; PO16 2 is for Franked Mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PO16 2;PO16 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 456205386, - "lat": 52.1105790, - "lon": -1.2764667, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 456214300, - "lat": 52.1371336, - "lon": -0.4528120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "MK40 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 456215442, - "lat": 56.0030699, - "lon": -3.7263280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 198", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 456301522, - "lat": 52.2084313, - "lon": 0.1634924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "postal_code": "CB5 8", - "ref": "CB5 54" - } -}, -{ - "type": "node", - "id": 456341784, - "lat": 51.9956228, - "lon": 0.6664544, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO9 32" - } -}, -{ - "type": "node", - "id": 456363896, - "lat": 51.5160943, - "lon": -0.1196160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2B 65;WC2B 265", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 456363899, - "lat": 51.5175750, - "lon": -0.1213823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1V 33;WC1V 233", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 456388363, - "lat": 55.1256834, - "lon": -1.5085476, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 2JL", - "ref": "NE24 547" - } -}, -{ - "type": "node", - "id": 456390412, - "lat": 55.1228856, - "lon": -1.5161107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 2PG", - "ref": "NE24 627" - } -}, -{ - "type": "node", - "id": 456865247, - "lat": 51.0935280, - "lon": 1.1710421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT19", - "ref": "CT19 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 456865297, - "lat": 51.0901549, - "lon": 1.1772472, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 170" - } -}, -{ - "type": "node", - "id": 456879747, - "lat": 51.5086254, - "lon": -3.1327331, - "tags": { - "amenity": "post_box", - "mapillary": "341187354505068", - "post_box:type": "pillar", - "source": "local_knowledge", - "survey:date": "2022-01-02" - } -}, -{ - "type": "node", - "id": 456879833, - "lat": 51.5095221, - "lon": -3.1326365, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 456901970, - "lat": 51.5073026, - "lon": -3.1336114, - "tags": { - "amenity": "post_box", - "mapillary": "915620869221572", - "post_box:type": "pillar", - "source": "local_knowledge", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 456998409, - "lat": 51.4480966, - "lon": 0.0290029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457010433, - "lat": 51.4527946, - "lon": 0.0299484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457024295, - "lat": 51.4511855, - "lon": 0.0066713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457024419, - "lat": 51.4490289, - "lon": 0.0062177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457040934, - "lat": 51.4458331, - "lon": 0.0150390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457054981, - "lat": 52.4762353, - "lon": -0.9315509, - "tags": { - "amenity": "post_box", - "ref": "LE16 29" - } -}, -{ - "type": "node", - "id": 457071873, - "lat": 52.4634332, - "lon": -1.8338939, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 457102331, - "lat": 51.5269170, - "lon": -0.1183930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "mail:abroad": "yes", - "mail:first_class": "yes", - "mail:franked": "yes", - "manufacturer:wikidata": "Q125385728", - "note": "has slot restrictors", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1X 39D;WC1X 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box WC1X 39D and WC1X 239D" - } -}, -{ - "type": "node", - "id": 457138834, - "lat": 52.3657391, - "lon": 0.9562839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "IP22 7174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457146794, - "lat": 52.7103073, - "lon": -2.6610538, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 39" - } -}, -{ - "type": "node", - "id": 457154282, - "lat": 53.3546728, - "lon": -0.8326885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 457156194, - "lat": 51.3424752, - "lon": 0.0511297, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 457161561, - "lat": 53.7097421, - "lon": -1.6580028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 215" - } -}, -{ - "type": "node", - "id": 457321936, - "lat": 57.8981138, - "lon": -5.1564622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV26 314" - } -}, -{ - "type": "node", - "id": 457321962, - "lat": 57.8960068, - "lon": -5.1612113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV26 236", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 457325599, - "lat": 53.0822963, - "lon": -1.5740010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457409745, - "lat": 51.5955605, - "lon": -0.1039543, - "tags": { - "amenity": "post_box", - "ref": "N22 9D" - } -}, -{ - "type": "node", - "id": 457411382, - "lat": 50.9173980, - "lon": -1.4113413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 122", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 457423798, - "lat": 51.1741496, - "lon": -0.1409681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "855121989135483", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 457460571, - "lat": 52.1932701, - "lon": 0.1755659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457460817, - "lat": 52.1906438, - "lon": 0.1774037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457461156, - "lat": 52.1934192, - "lon": 0.1820160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457461326, - "lat": 52.1946113, - "lon": 0.1779054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 79D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 457462865, - "lat": 52.1948794, - "lon": 0.1856797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB1 4", - "ref": "CB1 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2015-04-04" - } -}, -{ - "type": "node", - "id": 457464047, - "lat": 52.1922593, - "lon": 0.1863663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB1 4", - "ref": "CB1 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2015-04-04" - } -}, -{ - "type": "node", - "id": 457464423, - "lat": 52.1895509, - "lon": 0.1866356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB1 9GD", - "ref": "CB1 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2015-04-04" - } -}, -{ - "type": "node", - "id": 457464647, - "lat": 52.1871237, - "lon": 0.1875422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "note": "Only accessible when Tesco is open", - "operator": "Royal Mail", - "postal_code": "CB1 4", - "ref": "CB1 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457465639, - "lat": 52.1852235, - "lon": 0.1833514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 76D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 457466801, - "lat": 52.1878523, - "lon": 0.1740207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457466955, - "lat": 52.1851381, - "lon": 0.1724329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CB1 4", - "ref": "CB1 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457468292, - "lat": 52.1903019, - "lon": 0.1645798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB1 3", - "ref": "CB1 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457469903, - "lat": 52.1902230, - "lon": 0.1602652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 3", - "ref": "CB1 89D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 457478568, - "lat": 52.5123278, - "lon": -1.0832364, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE17 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457486465, - "lat": 51.5138487, - "lon": -3.1242557, - "tags": { - "amenity": "post_box", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 457504293, - "lat": 50.4931493, - "lon": -3.6028866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ12", - "ref": "TQ12 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 457505015, - "lat": 50.4515819, - "lon": -3.5632314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3", - "ref": "TQ3 230D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 457532139, - "lat": 51.3612367, - "lon": -2.8987058, - "tags": { - "amenity": "post_box", - "ref": "BS22 129" - } -}, -{ - "type": "node", - "id": 457532167, - "lat": 51.3654493, - "lon": -2.8549555, - "tags": { - "amenity": "post_box", - "ref": "BS24 220" - } -}, -{ - "type": "node", - "id": 457532207, - "lat": 51.3722087, - "lon": -2.8272356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 457544056, - "lat": 52.2898776, - "lon": -0.6016414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 457561770, - "lat": 51.6028473, - "lon": -0.5646172, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 457621211, - "lat": 55.4285072, - "lon": -5.5939977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00" - } -}, -{ - "type": "node", - "id": 457646663, - "lat": 53.8373461, - "lon": -1.7326989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BD10 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 457646731, - "lat": 53.8331228, - "lon": -1.7172519, - "tags": { - "amenity": "post_box", - "note": "double box", - "operator": "Royal Mail", - "ref": "BD10 192" - } -}, -{ - "type": "node", - "id": 457646811, - "lat": 53.8296901, - "lon": -1.6961366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 959" - } -}, -{ - "type": "node", - "id": 457656972, - "lat": 55.5319438, - "lon": -5.5097745, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 457692505, - "lat": 58.1467213, - "lon": -5.2393916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "342087661964435", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV27 308", - "survey:date": "2023-08-12" - } -}, -{ - "type": "node", - "id": 457718330, - "lat": 53.4920168, - "lon": -3.0343442, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 457718533, - "lat": 53.4896901, - "lon": -3.0343839, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 457721995, - "lat": 53.4876353, - "lon": -3.0397687, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 457796367, - "lat": 53.3481926, - "lon": -2.2150398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SK9 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 457796369, - "lat": 53.3499632, - "lon": -2.2123588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK9 704D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457875931, - "lat": 52.2889280, - "lon": -1.5816119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 457878958, - "lat": 50.2029243, - "lon": -5.2378546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-02-11", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR16 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 457892276, - "lat": 58.1919207, - "lon": -5.3321161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV27 310", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 457892282, - "lat": 58.2024588, - "lon": -5.3382028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 457904422, - "lat": 51.6391709, - "lon": -1.5058349, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 457942696, - "lat": 52.6849727, - "lon": -1.8317195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "ref": "WS13 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 457946585, - "lat": 51.0906106, - "lon": 1.1859955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "postal_code": "CT19", - "ref": "CT19 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 457946590, - "lat": 51.0907154, - "lon": 1.1902403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "CT19", - "ref": "CT19 176" - } -}, -{ - "type": "node", - "id": 458077484, - "lat": 58.2226114, - "lon": -5.3145399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458214004, - "lat": 51.4343894, - "lon": 0.2155722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "image": "https://archive.org/details/dartford-2021-05-09/2021-05-09_16-46-00_20210509_18_49_46.jpg", - "post_box:type": "pillar", - "ref": "DA1 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 458233281, - "lat": 51.4332052, - "lon": 0.2221624, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 458234348, - "lat": 57.2837191, - "lon": -3.8152525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PH23 36", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458234537, - "lat": 57.3343037, - "lon": -3.9905284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:45", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "IV13", - "ref": "IV13 86", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458234559, - "lat": 57.3840164, - "lon": -4.0545084, - "tags": { - "amenity": "post_box", - "postal_code": "IV13", - "ref": "IV13 83" - } -}, -{ - "type": "node", - "id": 458234690, - "lat": 57.4915246, - "lon": -4.1286709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458234710, - "lat": 57.4867986, - "lon": -4.1373524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV2 21D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458234717, - "lat": 57.4751458, - "lon": -4.1453508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458234912, - "lat": 57.5054013, - "lon": -4.2612490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "postal_code": "IV1", - "ref": "IV1 112" - } -}, -{ - "type": "node", - "id": 458234943, - "lat": 57.5132719, - "lon": -4.2873651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 55", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 458237615, - "lat": 51.4326005, - "lon": 0.2074767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 458259787, - "lat": 51.3878033, - "lon": -0.4092370, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "KT12", - "ref": "KT12 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 458311296, - "lat": 56.0066270, - "lon": -3.7237333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 118D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458379894, - "lat": 52.9851465, - "lon": -1.2043282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 332", - "ref:GB:uprn": "10015469382", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458379909, - "lat": 52.9917342, - "lon": -1.1987604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG6 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 458379930, - "lat": 52.9790392, - "lon": -1.2083931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG8 300", - "ref:GB:uprn": "10015328483", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458379954, - "lat": 52.9644227, - "lon": -1.2288208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG8 330", - "ref:GB:uprn": "10022953349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458382675, - "lat": 52.6389579, - "lon": 1.3348174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Inside a hedgerow", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR7 734D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 458382676, - "lat": 52.6605646, - "lon": 1.3295522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "note": "Inside a wall", - "operator": "Royal Mail", - "postal_code": "NR7 8BE", - "ref": "NR7 719" - } -}, -{ - "type": "node", - "id": 458382678, - "lat": 52.6596837, - "lon": 1.3343220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NR7 8RJ", - "ref": "NR7 730" - } -}, -{ - "type": "node", - "id": 458422287, - "lat": 57.5681150, - "lon": -4.2920477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV8", - "ref": "IV8 157", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458422337, - "lat": 57.5799485, - "lon": -4.3605025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV7", - "ref": "IV7 27", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458422350, - "lat": 57.5672141, - "lon": -4.3811819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV7", - "ref": "IV7 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 458423005, - "lat": 53.0057192, - "lon": -1.1268998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458423094, - "lat": 53.0104608, - "lon": -1.1840426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 471D", - "ref:GB:uprn": "10015315200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458425109, - "lat": 52.2823848, - "lon": -1.5897304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458425111, - "lat": 52.2823807, - "lon": -1.5896885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458426593, - "lat": 58.4882071, - "lon": -5.0878776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 458426594, - "lat": 58.4784951, - "lon": -5.0728049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 458426612, - "lat": 58.4551682, - "lon": -5.0198023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IV27 274", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458443578, - "lat": 53.0077421, - "lon": -1.1573221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG5 461", - "ref:GB:uprn": "10015280670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458443582, - "lat": 53.0007627, - "lon": -1.1459791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG5 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458454119, - "lat": 53.0128156, - "lon": -1.1594713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 513D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458461893, - "lat": 50.8506765, - "lon": -0.5639321, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1317D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 458462915, - "lat": 50.6512455, - "lon": -3.3173582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "590406339264014", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX9 114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 458476524, - "lat": 50.8534504, - "lon": -0.5573483, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1304D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 458503519, - "lat": 55.5469260, - "lon": -2.8417563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TD7 91", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458505124, - "lat": 51.7410095, - "lon": -1.2893504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "OX2 744", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 458711927, - "lat": 57.6017640, - "lon": -4.4291256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV15", - "ref": "IV15 3" - } -}, -{ - "type": "node", - "id": 458746928, - "lat": 51.5559182, - "lon": -0.0559091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458748558, - "lat": 51.5578914, - "lon": -0.0561260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 19D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458753148, - "lat": 51.5729233, - "lon": -0.0713584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 17D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 458753847, - "lat": 51.5754699, - "lon": -0.0722265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 47", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 458755205, - "lat": 51.5795007, - "lon": -0.0727280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 31", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 458758779, - "lat": 50.8405208, - "lon": -0.2173534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN41 666D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 458764606, - "lat": 51.2658582, - "lon": -2.3074031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 458772479, - "lat": 51.5910322, - "lon": -0.0872149, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 458802198, - "lat": 52.4141686, - "lon": -1.5479458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "ref": "CV5 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 458978571, - "lat": 51.3321970, - "lon": -2.8643095, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459001458, - "lat": 51.3666858, - "lon": 0.0820920, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459003400, - "lat": 51.3683503, - "lon": 0.0845256, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459045942, - "lat": 53.6705460, - "lon": -1.4070550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 233" - } -}, -{ - "type": "node", - "id": 459046123, - "lat": 53.6645903, - "lon": -1.4077799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 177" - } -}, -{ - "type": "node", - "id": 459046370, - "lat": 53.6827231, - "lon": -1.4266888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 48" - } -}, -{ - "type": "node", - "id": 459046436, - "lat": 53.6761765, - "lon": -1.4241468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 134" - } -}, -{ - "type": "node", - "id": 459060454, - "lat": 53.1128198, - "lon": -3.0325917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 459060663, - "lat": 53.1041643, - "lon": -3.0330087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 459063905, - "lat": 51.3630281, - "lon": 0.0955877, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459096759, - "lat": 51.2404742, - "lon": -0.7705586, - "tags": { - "amenity": "post_box", - "ref": "GU11 20" - } -}, -{ - "type": "node", - "id": 459096765, - "lat": 51.2422309, - "lon": -0.7689501, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU11 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 459096774, - "lat": 51.2436109, - "lon": -0.7671042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "old_ref": "GU11 4", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459096784, - "lat": 51.2441391, - "lon": -0.7743082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459107340, - "lat": 51.2443848, - "lon": -0.7800031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU11 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 459107347, - "lat": 51.2429278, - "lon": -0.7849990, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "old_ref": "GU11 54", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU11 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 459110924, - "lat": 51.3402736, - "lon": -2.8875305, - "tags": { - "amenity": "post_box", - "ref": "BS29 162" - } -}, -{ - "type": "node", - "id": 459128592, - "lat": 51.2467394, - "lon": -0.7775771, - "tags": { - "amenity": "post_box", - "ref": "GU11 46" - } -}, -{ - "type": "node", - "id": 459128613, - "lat": 51.2466274, - "lon": -0.7661377, - "tags": { - "amenity": "post_box", - "ref": "GU11 21D" - } -}, -{ - "type": "node", - "id": 459132332, - "lat": 54.7109655, - "lon": -1.5100733, - "tags": { - "amenity": "post_box", - "ele": "96.74", - "ref": "DH6 325" - } -}, -{ - "type": "node", - "id": 459148359, - "lat": 51.2966608, - "lon": -0.7550896, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459154402, - "lat": 51.0841694, - "lon": 1.1851180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT20", - "ref": "CT20 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459154413, - "lat": 51.0860979, - "lon": 1.1911612, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 48" - } -}, -{ - "type": "node", - "id": 459161566, - "lat": 54.7089770, - "lon": -1.5365117, - "tags": { - "amenity": "post_box", - "ele": "86.1632080", - "ref": "DH6 337" - } -}, -{ - "type": "node", - "id": 459161872, - "lat": 53.1008264, - "lon": -2.0460665, - "tags": { - "amenity": "post_box", - "ref": "ST13 650" - } -}, -{ - "type": "node", - "id": 459161968, - "lat": 53.1027716, - "lon": -2.0295298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST13 727", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459161973, - "lat": 53.1013025, - "lon": -2.0327408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST13 718", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459161983, - "lat": 53.1040420, - "lon": -2.0372231, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST13 746", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 459183412, - "lat": 51.5686885, - "lon": -0.1189708, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "N4 3" - } -}, -{ - "type": "node", - "id": 459212390, - "lat": 52.6789005, - "lon": -0.3138255, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459212414, - "lat": 52.6783727, - "lon": -0.3239912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459222940, - "lat": 51.5532706, - "lon": -0.0901771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "N5 12", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 459246934, - "lat": 51.5567379, - "lon": -0.0958521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N5 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 459276806, - "lat": 51.5636414, - "lon": -0.0859267, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-21", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N16 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 459277775, - "lat": 51.5622020, - "lon": -0.0791303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 459355190, - "lat": 51.8286942, - "lon": -2.4041402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 459455656, - "lat": 51.5135111, - "lon": -0.2093627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 2D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 459501532, - "lat": 54.1221533, - "lon": -1.2034678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 445", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 459515833, - "lat": 51.5665280, - "lon": -0.0882945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "153270104013392", - "post_box:type": "pillar", - "ref": "N16 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-15" - } -}, -{ - "type": "node", - "id": 459539729, - "lat": 51.5534676, - "lon": 0.2191409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 459578685, - "lat": 51.5505177, - "lon": 0.2214228, - "tags": { - "amenity": "post_box", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 459587847, - "lat": 51.5552083, - "lon": 0.2272748, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 459594393, - "lat": 51.5524950, - "lon": 0.2290734, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459617521, - "lat": 51.5553900, - "lon": 0.2363390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 459642507, - "lat": 51.5509706, - "lon": -0.4016195, - "tags": { - "amenity": "post_box", - "ref": "HA4 376" - } -}, -{ - "type": "node", - "id": 459646163, - "lat": 51.5592665, - "lon": 0.2350091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 459669503, - "lat": 52.4780893, - "lon": -0.9270984, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 9AY", - "ref": "LE16 25" - } -}, -{ - "type": "node", - "id": 459700906, - "lat": 51.5978816, - "lon": 0.2408769, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459722200, - "lat": 51.6002960, - "lon": 0.2306767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459734575, - "lat": 51.6021000, - "lon": 0.2350707, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 459786904, - "lat": 51.6001389, - "lon": -0.1074707, - "tags": { - "amenity": "post_box", - "ref": "N22 22" - } -}, -{ - "type": "node", - "id": 459797138, - "lat": 51.5501074, - "lon": -0.0845809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "N1 70;N1 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-01" - } -}, -{ - "type": "node", - "id": 459799127, - "lat": 51.5508268, - "lon": -0.0919990, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-03", - "ref": "N5 4" - } -}, -{ - "type": "node", - "id": 459799133, - "lat": 51.5504281, - "lon": -0.1023954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N5 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 459802025, - "lat": 51.5502961, - "lon": -0.1089829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N7 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 459804622, - "lat": 51.5467728, - "lon": -0.1177213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 459804626, - "lat": 51.5433990, - "lon": -0.1268505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 6D" - } -}, -{ - "type": "node", - "id": 459806506, - "lat": 52.9894971, - "lon": -1.2220189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 317", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 459809779, - "lat": 51.5506592, - "lon": -0.1179541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 459815267, - "lat": 51.7550972, - "lon": -1.2283352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "OX3 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 459829623, - "lat": 52.8919108, - "lon": -1.5889524, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "ref": "DE65 481", - "source": "survey" - } -}, -{ - "type": "node", - "id": 459872653, - "lat": 51.1306475, - "lon": 0.2751514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN2 52" - } -}, -{ - "type": "node", - "id": 459873676, - "lat": 51.1286105, - "lon": 0.2699742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN2 5" - } -}, -{ - "type": "node", - "id": 459963544, - "lat": 51.4257708, - "lon": -2.7699169, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 459971428, - "lat": 51.1311576, - "lon": 0.2699757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 89D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 459973286, - "lat": 50.7412226, - "lon": -4.0091453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "EX20 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 459983383, - "lat": 50.7384030, - "lon": -4.0047610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "The year 2001 is engraved in a stone above this lamp box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "stone_pillar", - "post_box:type": "lamp", - "ref": "EX20 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 459991504, - "lat": 51.2434221, - "lon": -0.2406058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH3 296", - "source": "Photo P142 0040" - } -}, -{ - "type": "node", - "id": 460009987, - "lat": 52.8099773, - "lon": -4.5174952, - "tags": { - "amenity": "post_box", - "ref": "LL53 9" - } -}, -{ - "type": "node", - "id": 460010026, - "lat": 52.8229977, - "lon": -4.5136395, - "tags": { - "amenity": "post_box", - "ref": "LL53 36" - } -}, -{ - "type": "node", - "id": 460019602, - "lat": 52.8296681, - "lon": -4.5144842, - "tags": { - "amenity": "post_box", - "note": "reference partially obscured" - } -}, -{ - "type": "node", - "id": 460019604, - "lat": 52.8274483, - "lon": -4.5050499, - "tags": { - "amenity": "post_box", - "ref": "LL53 46" - } -}, -{ - "type": "node", - "id": 460019646, - "lat": 52.8245424, - "lon": -4.5048620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "LL53 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460019668, - "lat": 52.8212970, - "lon": -4.5066471, - "tags": { - "amenity": "post_box", - "ref": "LL53 75" - } -}, -{ - "type": "node", - "id": 460020609, - "lat": 53.1811528, - "lon": -1.8679599, - "tags": { - "amenity": "post_box", - "ele": "286.596680", - "post_box:type": "wall", - "ref": "SK17 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 460363916, - "lat": 52.5707198, - "lon": -1.3175340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 460390237, - "lat": 54.1875350, - "lon": -1.1831279, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-18", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 460391047, - "lat": 54.1627757, - "lon": -1.1633680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:10; Sa 10:10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 188", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 460418985, - "lat": 51.7271459, - "lon": -1.2027036, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-16", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "ref": "OX4 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460436080, - "lat": 52.8589737, - "lon": -4.4882065, - "tags": { - "amenity": "post_box", - "ref": "LL53 86" - } -}, -{ - "type": "node", - "id": 460438868, - "lat": 51.4232830, - "lon": -0.1323285, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 8" - } -}, -{ - "type": "node", - "id": 460439751, - "lat": 51.1321047, - "lon": 1.0877410, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 177" - } -}, -{ - "type": "node", - "id": 460439768, - "lat": 51.1269093, - "lon": 1.0875282, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 37" - } -}, -{ - "type": "node", - "id": 460439793, - "lat": 51.1290754, - "lon": 1.0869949, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 64" - } -}, -{ - "type": "node", - "id": 460565377, - "lat": 52.2271417, - "lon": 0.0934437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460590883, - "lat": 52.2428803, - "lon": 0.0814032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB3 0", - "ref": "CB3 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460597124, - "lat": 52.2387794, - "lon": 0.0790256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB3 0", - "ref": "CB3 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460613610, - "lat": 52.2658676, - "lon": 0.0772498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB24 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460619368, - "lat": 52.2596710, - "lon": 0.0642198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB4 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460634159, - "lat": 52.2518364, - "lon": 0.1063853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CB4 373;CB4 3733", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460640523, - "lat": 52.2556086, - "lon": 0.1033556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB4 368D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 460655654, - "lat": 52.2550402, - "lon": 0.1133330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CB24 372" - } -}, -{ - "type": "node", - "id": 460674495, - "lat": 52.8828514, - "lon": -4.4095884, - "tags": { - "amenity": "post_box", - "ref": "LL53 120" - } -}, -{ - "type": "node", - "id": 460674642, - "lat": 52.8800428, - "lon": -4.4286001, - "tags": { - "amenity": "post_box", - "ref": "LL53 137" - } -}, -{ - "type": "node", - "id": 460674659, - "lat": 52.8806521, - "lon": -4.4231844, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL53 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460674791, - "lat": 52.8878407, - "lon": -4.4197649, - "tags": { - "amenity": "post_box", - "ref": "LL53 20" - } -}, -{ - "type": "node", - "id": 460675272, - "lat": 52.8823574, - "lon": -4.4138126, - "tags": { - "amenity": "post_box", - "ref": "LL53 10" - } -}, -{ - "type": "node", - "id": 460675563, - "lat": 52.8870558, - "lon": -4.4262380, - "tags": { - "amenity": "post_box", - "ref": "LL53 83" - } -}, -{ - "type": "node", - "id": 460715156, - "lat": 52.2477106, - "lon": 0.1087721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB4 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 460929716, - "lat": 51.5301744, - "lon": -1.0658522, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461041465, - "lat": 51.3597546, - "lon": 0.0900001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 461069960, - "lat": 51.3983616, - "lon": -1.2502273, - "tags": { - "amenity": "post_box", - "postal_code": "RG19", - "ref": "RG19 261" - } -}, -{ - "type": "node", - "id": 461073230, - "lat": 52.2461497, - "lon": -0.2987741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 461221150, - "lat": 51.5463674, - "lon": 0.1973606, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 461257523, - "lat": 52.8966646, - "lon": -4.3969392, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL53 37" - } -}, -{ - "type": "node", - "id": 461257546, - "lat": 52.8915545, - "lon": -4.4091556, - "tags": { - "amenity": "post_box", - "ref": "LL53 14" - } -}, -{ - "type": "node", - "id": 461257564, - "lat": 52.8898612, - "lon": -4.4139244, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL53 1" - } -}, -{ - "type": "node", - "id": 461258573, - "lat": 50.9255431, - "lon": -1.3968315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 461281902, - "lat": 51.5173149, - "lon": -0.1120987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2A 53D;WC2A 253D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box WC2A 53D and WC2A 253D" - } -}, -{ - "type": "node", - "id": 461292001, - "lat": 50.6144853, - "lon": -3.7970149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 461292005, - "lat": 50.6168895, - "lon": -3.7683321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ13 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 461612643, - "lat": 51.3187288, - "lon": -0.0701291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "CR6 583", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 461643838, - "lat": 50.8989736, - "lon": -1.3482612, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-24", - "name": "Butts Road outside Tesco", - "old_ref": "SO19 392", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 392D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 461656367, - "lat": 51.3583982, - "lon": 0.1018169, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461659112, - "lat": 50.7237314, - "lon": -3.7404163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX6 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "http://edwardbetts.com/postboxes/EX6.html;survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 461661644, - "lat": 51.3565382, - "lon": 0.1054111, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461665585, - "lat": 51.3541746, - "lon": 0.0991648, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461685875, - "lat": 51.3533920, - "lon": 0.0899380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "707920450088523", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 461694734, - "lat": 51.0728821, - "lon": 1.0667951, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 200" - } -}, -{ - "type": "node", - "id": 461694755, - "lat": 51.0723345, - "lon": 1.0725720, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 133" - } -}, -{ - "type": "node", - "id": 461713944, - "lat": 57.5212986, - "lon": -5.6516840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:15", - "post_box:type": "lamp", - "ref": "IV54 261", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 461713947, - "lat": 57.5248002, - "lon": -5.6493977, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV54 351", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 461721284, - "lat": 57.6128611, - "lon": -6.1788134, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV51 65", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 461813079, - "lat": 52.6030646, - "lon": -2.0901929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 461816720, - "lat": 53.6942917, - "lon": -0.8686319, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461816743, - "lat": 53.6899300, - "lon": -0.8374807, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461816756, - "lat": 53.6909244, - "lon": -0.8327062, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 43" - } -}, -{ - "type": "node", - "id": 461816801, - "lat": 53.6978164, - "lon": -0.7917610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN14 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 461816829, - "lat": 53.6945331, - "lon": -0.7755351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN14 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 461816836, - "lat": 53.6969414, - "lon": -0.7580378, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 461816838, - "lat": 53.6982538, - "lon": -0.7431822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DN14 53", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 461831605, - "lat": 52.4838478, - "lon": -1.0489968, - "tags": { - "amenity": "post_box", - "postal_code": "LE17 6", - "ref": "LE17 113" - } -}, -{ - "type": "node", - "id": 461844217, - "lat": 51.3374247, - "lon": -1.3373345, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 461846378, - "lat": 57.6663803, - "lon": -4.3307707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV16", - "ref": "IV16 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 461875145, - "lat": 55.6134767, - "lon": -3.5389315, - "tags": { - "amenity": "post_box", - "ref": "ML12 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 461930760, - "lat": 52.6497228, - "lon": 1.3694757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR13 1355" - } -}, -{ - "type": "node", - "id": 461984973, - "lat": 57.7722277, - "lon": -4.0985365, - "tags": { - "amenity": "post_box", - "postal_code": "IV18", - "ref": "IV18 23" - } -}, -{ - "type": "node", - "id": 461985024, - "lat": 57.8028447, - "lon": -4.0655484, - "tags": { - "amenity": "post_box", - "postal_code": "IV19", - "ref": "IV19 21" - } -}, -{ - "type": "node", - "id": 461987290, - "lat": 51.4581563, - "lon": -0.0186019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 49", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 461995669, - "lat": 57.1549613, - "lon": -7.3101213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HS8 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 461995719, - "lat": 57.2105154, - "lon": -7.3938429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:45; Sa 08:00", - "mapillary": "3141972479377005", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS8 57", - "survey:date": "2022-06-20" - } -}, -{ - "type": "node", - "id": 461995733, - "lat": 57.2535372, - "lon": -7.4063139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS8 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 462003427, - "lat": 52.3303188, - "lon": 0.9479502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7066", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 462004136, - "lat": 51.5194976, - "lon": -0.1104131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1N 105;EC1N 1051", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 462007230, - "lat": 51.5267575, - "lon": -0.1002270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa off", - "opening_hours": "Mo-Fr 14:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC1V 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 462008530, - "lat": 51.5401010, - "lon": -0.0921958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "N1 178" - } -}, -{ - "type": "node", - "id": 462009823, - "lat": 51.5412698, - "lon": -0.0943185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-09-21", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462009831, - "lat": 51.5392499, - "lon": -0.0820607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "N1 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462012143, - "lat": 51.5457498, - "lon": -0.0834333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 173" - } -}, -{ - "type": "node", - "id": 462016664, - "lat": 55.1274170, - "lon": -1.5067565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE24 1AA", - "ref": "NE24 688" - } -}, -{ - "type": "node", - "id": 462016665, - "lat": 55.1235074, - "lon": -1.5104450, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 2HA", - "ref": "NE24 607" - } -}, -{ - "type": "node", - "id": 462016666, - "lat": 55.1268588, - "lon": -1.5544851, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 4LZ", - "ref": "NE24 700" - } -}, -{ - "type": "node", - "id": 462021646, - "lat": 51.2683690, - "lon": -1.0445773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "RG24", - "ref": "RG24 213" - } -}, -{ - "type": "node", - "id": 462025384, - "lat": 51.5129119, - "lon": -0.1535289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "note": "LH stamped; RH franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1K 54;W1K 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462086521, - "lat": 57.8333220, - "lon": -4.1764215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "IV20", - "ref": "IV20 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 462111679, - "lat": 57.8818122, - "lon": -4.3633560, - "tags": { - "amenity": "post_box", - "old_ref": "IV 319 Ardgay", - "post_box:type": "lamp", - "ref": "IV24 319", - "source": "survey" - } -}, -{ - "type": "node", - "id": 462111690, - "lat": 57.8852961, - "lon": -4.3793042, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "old_ref": "IV 281 Gledfield" - } -}, -{ - "type": "node", - "id": 462159408, - "lat": 51.5726471, - "lon": 0.6499682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SS9 309D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 462159410, - "lat": 51.5707933, - "lon": 0.6456201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SS9 110D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 462159416, - "lat": 51.5749029, - "lon": 0.6402427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 462167055, - "lat": 51.1464367, - "lon": -0.4965919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU6 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462168547, - "lat": 51.1874786, - "lon": -0.4800653, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU5 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 462188993, - "lat": 53.1434913, - "lon": -2.1432776, - "tags": { - "amenity": "post_box", - "ref": "ST8 404" - } -}, -{ - "type": "node", - "id": 462197135, - "lat": 53.7941904, - "lon": -1.8574260, - "tags": { - "amenity": "post_box", - "name": "Hill Top Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 462198715, - "lat": 53.1071506, - "lon": -2.0371348, - "tags": { - "amenity": "post_box", - "ref": "ST13 759" - } -}, -{ - "type": "node", - "id": 462198719, - "lat": 53.1068102, - "lon": -2.0433930, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST13 750" - } -}, -{ - "type": "node", - "id": 462198725, - "lat": 53.1056317, - "lon": -2.0266700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ST13 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462232645, - "lat": 51.0644798, - "lon": 1.0558931, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 201" - } -}, -{ - "type": "node", - "id": 462232662, - "lat": 51.0658638, - "lon": 1.0610562, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 138" - } -}, -{ - "type": "node", - "id": 462232690, - "lat": 51.0702574, - "lon": 1.0696888, - "tags": { - "amenity": "post_box", - "postal_code": "CT21", - "ref": "CT21 146" - } -}, -{ - "type": "node", - "id": 462252442, - "lat": 52.7379066, - "lon": -2.7250913, - "tags": { - "amenity": "post_box", - "ref": "SY1 211" - } -}, -{ - "type": "node", - "id": 462252443, - "lat": 52.7299312, - "lon": -2.7429080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY1 756" - } -}, -{ - "type": "node", - "id": 462252444, - "lat": 52.7238434, - "lon": -2.7387962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY1 128" - } -}, -{ - "type": "node", - "id": 462252867, - "lat": 52.6873409, - "lon": -2.6391396, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 204" - } -}, -{ - "type": "node", - "id": 462255245, - "lat": 52.6999360, - "lon": -2.7371380, - "tags": { - "amenity": "post_box", - "ref": "SY3 294" - } -}, -{ - "type": "node", - "id": 462255248, - "lat": 52.6984120, - "lon": -2.7413952, - "tags": { - "amenity": "post_box", - "ref": "SY3 768" - } -}, -{ - "type": "node", - "id": 462255250, - "lat": 52.7012190, - "lon": -2.7420796, - "tags": { - "amenity": "post_box", - "ref": "SY3 472" - } -}, -{ - "type": "node", - "id": 462255252, - "lat": 52.7145992, - "lon": -2.7221817, - "tags": { - "amenity": "post_box", - "ref": "SY2 600" - } -}, -{ - "type": "node", - "id": 462255255, - "lat": 52.7159707, - "lon": -2.7196030, - "tags": { - "amenity": "post_box", - "ref": "SY2 731" - } -}, -{ - "type": "node", - "id": 462329304, - "lat": 51.3867828, - "lon": -2.8201247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "BS49 1099", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 462381472, - "lat": 54.4650509, - "lon": -6.2606738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 462538244, - "lat": 51.4407954, - "lon": -0.8975797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG5 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462542723, - "lat": 51.6314443, - "lon": -0.6789412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP10 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 462626775, - "lat": 51.9265497, - "lon": -0.6584112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "fixme": "precise location?", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU7 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 462626776, - "lat": 51.9243627, - "lon": -0.6537866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "ref": "LU7 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462626780, - "lat": 51.9209787, - "lon": -0.6638300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LU7 31" - } -}, -{ - "type": "node", - "id": 462637486, - "lat": 52.2864120, - "lon": -1.5330226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV31 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462638944, - "lat": 51.9176573, - "lon": -2.1064744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "GL51", - "ref": "GL51 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462685479, - "lat": 52.4517311, - "lon": -1.7798848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 23:30", - "post_box:type": "pillar", - "ref": "B26 927", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 462704041, - "lat": 50.8391179, - "lon": -0.2216537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 667D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462746592, - "lat": 53.1075282, - "lon": -2.0151697, - "tags": { - "amenity": "post_box", - "ref": "ST13 730" - } -}, -{ - "type": "node", - "id": 462761346, - "lat": 52.9504939, - "lon": -0.9728279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG13 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 462761835, - "lat": 52.9509405, - "lon": -0.9579059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG13 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 462849618, - "lat": 50.9748274, - "lon": -1.3503018, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 462858295, - "lat": 50.9412786, - "lon": -1.3802120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 365D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 463180645, - "lat": 53.0586845, - "lon": -2.1637373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 448" - } -}, -{ - "type": "node", - "id": 463185774, - "lat": 57.9193537, - "lon": -4.4051785, - "tags": { - "amenity": "post_box", - "old_ref": "IV 320 Culrain" - } -}, -{ - "type": "node", - "id": 463185783, - "lat": 57.9236029, - "lon": -4.3991830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "IV27", - "ref": "IV27 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 463185959, - "lat": 58.0274436, - "lon": -4.4039639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "310206044565452", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "IV27", - "ref": "IV27 1", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 463210321, - "lat": 52.9512624, - "lon": -0.9561979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG13 98D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 463210322, - "lat": 52.9482370, - "lon": -0.9648266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG13 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 463212793, - "lat": 51.2137158, - "lon": -0.5408624, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "last_checked": "2020-02-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU4 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 463216164, - "lat": 50.7699226, - "lon": -3.3475735, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 463408450, - "lat": 51.7290843, - "lon": 0.4643805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 463518186, - "lat": 52.7311704, - "lon": -2.7115216, - "tags": { - "amenity": "post_box", - "ref": "SY1 803" - } -}, -{ - "type": "node", - "id": 463630867, - "lat": 50.8596719, - "lon": -1.2852973, - "tags": { - "amenity": "post_box", - "odbl": "clean", - "ref": "SO31 730" - } -}, -{ - "type": "node", - "id": 463641219, - "lat": 50.8530932, - "lon": -1.2981616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 463989479, - "lat": 53.3297706, - "lon": -0.9498767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 463996654, - "lat": 53.7208685, - "lon": -0.8475217, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 463996822, - "lat": 53.7115375, - "lon": -0.8504461, - "tags": { - "amenity": "post_box", - "ref": "DN14 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 463997032, - "lat": 53.7084321, - "lon": -0.8539598, - "tags": { - "amenity": "post_box", - "ref": "DN14 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 463997180, - "lat": 53.7095815, - "lon": -0.8575981, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 463997319, - "lat": 53.7053996, - "lon": -0.8620661, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 464014168, - "lat": 51.5599409, - "lon": -0.1724048, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NW3 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 464261425, - "lat": 53.5688434, - "lon": -1.5713468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S75 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 464408425, - "lat": 53.9857062, - "lon": -1.5149223, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 464409947, - "lat": 53.9874047, - "lon": -1.5205110, - "tags": { - "amenity": "post_box", - "post_box:design": "type_e", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 464726982, - "lat": 57.1669434, - "lon": -2.1297973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB24 172", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 464732742, - "lat": 57.1581679, - "lon": -2.1141841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "note": "not 'regular' wall post box - built into shop? no royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB25 26", - "royal_cypher": "no", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 464800102, - "lat": 51.2659187, - "lon": -1.0345038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "postal_code": "RG24", - "ref": "RG24 286" - } -}, -{ - "type": "node", - "id": 464906204, - "lat": 53.1210185, - "lon": -2.1599267, - "tags": { - "amenity": "post_box", - "ref": "ST8 804" - } -}, -{ - "type": "node", - "id": 464906207, - "lat": 53.1247783, - "lon": -2.1619346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "ref": "ST8 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 464906233, - "lat": 53.1165088, - "lon": -2.1640889, - "tags": { - "amenity": "post_box", - "ref": "ST8 805" - } -}, -{ - "type": "node", - "id": 465193810, - "lat": 53.0160513, - "lon": -2.1847175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 164" - } -}, -{ - "type": "node", - "id": 465249869, - "lat": 54.1244120, - "lon": -1.1855198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:40; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 77" - } -}, -{ - "type": "node", - "id": 465284969, - "lat": 51.0756492, - "lon": 1.0734182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT21", - "ref": "CT21 171" - } -}, -{ - "type": "node", - "id": 466038139, - "lat": 51.8337614, - "lon": -2.4486373, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 466039157, - "lat": 51.9434536, - "lon": -2.5121349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:type": "wall", - "ref": "HR9 506", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 466243550, - "lat": 51.5532325, - "lon": -1.8066716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN5 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 466294844, - "lat": 52.4457809, - "lon": -1.9275091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B29 194", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 466310797, - "lat": 51.7517320, - "lon": -0.2939820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-11", - "collection_times": "Mo-Fr 16:00, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AL4 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 466503328, - "lat": 53.1159182, - "lon": -2.1701490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST8 802", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 466503353, - "lat": 53.1178535, - "lon": -2.1741900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "ref": "ST8 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 466503356, - "lat": 53.1168711, - "lon": -2.1756778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "ref": "ST8 629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 466503387, - "lat": 53.1120592, - "lon": -2.1774724, - "tags": { - "amenity": "post_box", - "ref": "ST8 400" - } -}, -{ - "type": "node", - "id": 466926227, - "lat": 51.5115570, - "lon": -0.1365204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1F 106D;W1F 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1F 106D and W1F 306D" - } -}, -{ - "type": "node", - "id": 466926230, - "lat": 51.5120002, - "lon": -0.1372674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q113687568", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1F 105D;W1F 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1F 105D and W1F 305D" - } -}, -{ - "type": "node", - "id": 466926265, - "lat": 51.5126962, - "lon": -0.1364078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1F 107D;W1F 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1F 107D and W1F 307D" - } -}, -{ - "type": "node", - "id": 467017518, - "lat": 52.5035428, - "lon": -2.0576879, - "tags": { - "amenity": "post_box", - "ref": "B69 1116", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 467017532, - "lat": 52.5005403, - "lon": -2.0485560, - "tags": { - "amenity": "post_box", - "ref": "B69 1115", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 467121000, - "lat": 51.3442910, - "lon": -0.0066905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 491", - "ref:GB:uprn": "10015387256" - } -}, -{ - "type": "node", - "id": 467135624, - "lat": 51.8254728, - "lon": -2.4556708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "842511230012765", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 467137658, - "lat": 51.3429548, - "lon": -0.0117239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 490" - } -}, -{ - "type": "node", - "id": 467315537, - "lat": 51.4472631, - "lon": -0.3592251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TW2", - "ref": "TW2 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 467357834, - "lat": 51.3354171, - "lon": -0.7748999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "covered": "yes", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU47 120", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 467481824, - "lat": 51.7467300, - "lon": -2.3185862, - "tags": { - "amenity": "post_box", - "note": "Postbox in a bad way; no faceplate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 467481854, - "lat": 51.7503297, - "lon": -2.3157038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "GL10", - "ref": "GL10 203", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 467481902, - "lat": 51.7462077, - "lon": -2.3274109, - "tags": { - "amenity": "post_box", - "ref": "GL10 164" - } -}, -{ - "type": "node", - "id": 467689508, - "lat": 52.0125676, - "lon": -0.7843437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK5 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467708464, - "lat": 53.6926461, - "lon": -0.8753132, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 467708540, - "lat": 53.6959479, - "lon": -0.8719701, - "tags": { - "amenity": "post_box", - "ref": "DN14 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 467708776, - "lat": 53.7047176, - "lon": -0.8827893, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 467708804, - "lat": 53.7020820, - "lon": -0.8953761, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 467708812, - "lat": 53.7055835, - "lon": -0.8975180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DN14 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 467722605, - "lat": 53.2749423, - "lon": -2.3578641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 11", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 467734356, - "lat": 53.4320867, - "lon": -1.3811101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467767755, - "lat": 52.3071704, - "lon": 0.3917169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467767825, - "lat": 52.3109639, - "lon": 0.3936820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB7 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467767896, - "lat": 52.3113521, - "lon": 0.4080286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467767934, - "lat": 52.3177986, - "lon": 0.3996284, - "tags": { - "amenity": "post_box", - "ref": "CB7 48" - } -}, -{ - "type": "node", - "id": 467767965, - "lat": 52.3113885, - "lon": 0.3861385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467768441, - "lat": 52.2825272, - "lon": 0.3934939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 467840950, - "lat": 51.8348640, - "lon": -2.1975195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "520034135821014", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL4 133", - "source": "survey", - "survey:date": "2020-05-27" - } -}, -{ - "type": "node", - "id": 468331423, - "lat": 52.8743261, - "lon": -1.0932975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG12 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 468331433, - "lat": 52.8770010, - "lon": -1.0886568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG12 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge;survey" - } -}, -{ - "type": "node", - "id": 468442604, - "lat": 58.5082748, - "lon": -4.2199720, - "tags": { - "amenity": "post_box", - "postal_code": "KW14", - "ref": "KW14 33" - } -}, -{ - "type": "node", - "id": 468922662, - "lat": 53.4300315, - "lon": -1.3803858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 468922789, - "lat": 53.4353004, - "lon": -1.3850140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 468923005, - "lat": 53.4402318, - "lon": -1.4053251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Check ref: nodes 468923005 and 469775422 both have the same value", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S61 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 468923250, - "lat": 53.4315066, - "lon": -1.3694712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S60 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469078709, - "lat": 51.3932351, - "lon": -0.0669372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469128700, - "lat": 53.4320443, - "lon": -1.3867546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S61 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469128703, - "lat": 53.4270246, - "lon": -1.3917757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 216", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 469164024, - "lat": 50.7204974, - "lon": -3.3627345, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469164588, - "lat": 50.7171826, - "lon": -3.3625113, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469167542, - "lat": 55.1265544, - "lon": -1.5025997, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 3BE", - "ref": "NE24 544" - } -}, -{ - "type": "node", - "id": 469184614, - "lat": 53.3913821, - "lon": -2.3617300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 65", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 469191614, - "lat": 52.0279076, - "lon": -1.1548516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN13 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469191617, - "lat": 52.0300829, - "lon": -1.1517945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "ref": "NN13 99" - } -}, -{ - "type": "node", - "id": 469192669, - "lat": 54.3738253, - "lon": -2.9067484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA23 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469194094, - "lat": 52.0282826, - "lon": -1.1865935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "NN13 110" - } -}, -{ - "type": "node", - "id": 469197214, - "lat": 53.4175237, - "lon": -2.7706599, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469197223, - "lat": 53.4163062, - "lon": -2.7647290, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469250755, - "lat": 50.7041704, - "lon": -3.5006486, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "flickr" - } -}, -{ - "type": "node", - "id": 469251790, - "lat": 50.6959457, - "lon": -3.4856534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1048705792321722", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX2 422", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-07-29" - } -}, -{ - "type": "node", - "id": 469251853, - "lat": 51.6144383, - "lon": 0.0793077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG7 99" - } -}, -{ - "type": "node", - "id": 469252701, - "lat": 50.6906787, - "lon": -3.4685393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX3 357D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469256302, - "lat": 52.4775192, - "lon": -0.9329777, - "tags": { - "amenity": "post_box", - "note": "Postcode is wrong in postbox database, LE16 9DB doesn't exist", - "postal_code": "LE16 9BD", - "ref": "LE16 26" - } -}, -{ - "type": "node", - "id": 469256488, - "lat": 50.6923569, - "lon": -3.4670157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX3 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469262333, - "lat": 50.7033601, - "lon": -3.4854159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX2 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469262815, - "lat": 50.7079282, - "lon": -3.4642725, - "tags": { - "amenity": "post_box", - "ref": "EX2 130D" - } -}, -{ - "type": "node", - "id": 469279453, - "lat": 51.7285367, - "lon": 0.4671014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM2 9002;CM2 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469279463, - "lat": 51.7290180, - "lon": 0.4709459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM2 41;CM2 9041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469306021, - "lat": 52.8980800, - "lon": -1.0956636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NG12 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469309298, - "lat": 51.0467717, - "lon": 1.0311574, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN29", - "ref": "TN29 291" - } -}, -{ - "type": "node", - "id": 469313297, - "lat": 52.9216387, - "lon": -1.0907613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG12 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469319661, - "lat": 51.3893243, - "lon": -2.8242813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS49 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469321545, - "lat": 54.4188413, - "lon": -2.3371290, - "tags": { - "amenity": "post_box", - "ref": "CA17 106", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469321752, - "lat": 54.4556881, - "lon": -2.3492761, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469323499, - "lat": 51.4194536, - "lon": -0.0225773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BR3 207D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 469324387, - "lat": 51.7262601, - "lon": 0.4626557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "CM2 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469325745, - "lat": 51.6169062, - "lon": 0.1833005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469327273, - "lat": 51.6041500, - "lon": 0.1807299, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469328113, - "lat": 51.5977670, - "lon": 0.1752879, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469328725, - "lat": 51.5907506, - "lon": 0.1728401, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469334913, - "lat": 50.7154686, - "lon": -3.3808338, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 469339248, - "lat": 51.5852930, - "lon": 0.1864454, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469342214, - "lat": 51.0405930, - "lon": 1.0218006, - "tags": { - "amenity": "post_box", - "postal_code": "TN29", - "ref": "TN29 285" - } -}, -{ - "type": "node", - "id": 469342968, - "lat": 51.5817450, - "lon": 0.2043439, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469351141, - "lat": 52.1089258, - "lon": -2.3228242, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "wall", - "ref": "WR14 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 469351143, - "lat": 52.1060718, - "lon": -2.3229047, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 469354186, - "lat": 51.0235898, - "lon": 0.9897273, - "tags": { - "amenity": "post_box", - "postal_code": "TN29", - "ref": "TN29 288" - } -}, -{ - "type": "node", - "id": 469390513, - "lat": 51.3638750, - "lon": -0.2661239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 145D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 469390514, - "lat": 51.3626497, - "lon": -0.2610952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 167D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 469390585, - "lat": 51.3586530, - "lon": -0.2573915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 469390604, - "lat": 51.3579127, - "lon": -0.2533222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 191D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 469397103, - "lat": 50.9381965, - "lon": -1.4652998, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO16 335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469438874, - "lat": 51.8792281, - "lon": -2.2401103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL2 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469439635, - "lat": 50.8483332, - "lon": -0.4094041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1778", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 469439636, - "lat": 50.8448697, - "lon": -0.4087873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN13 1777" - } -}, -{ - "type": "node", - "id": 469439637, - "lat": 50.8402654, - "lon": -0.4593053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN13 1782", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 469439638, - "lat": 50.8235877, - "lon": -0.4766439, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-19", - "old_ref": "BN16 1893", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1893D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469489975, - "lat": 52.7345054, - "lon": -1.5550772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1162", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469650130, - "lat": 54.5139849, - "lon": -1.3138071, - "tags": { - "amenity": "post_box", - "ref": "TS17 171" - } -}, -{ - "type": "node", - "id": 469686469, - "lat": 54.5639843, - "lon": -1.3180902, - "tags": { - "amenity": "post_box", - "ref": "TS18 368" - } -}, -{ - "type": "node", - "id": 469686478, - "lat": 54.5612144, - "lon": -1.3168007, - "tags": { - "amenity": "post_box", - "ref": "TS18 302" - } -}, -{ - "type": "node", - "id": 469709527, - "lat": 52.9152188, - "lon": -1.1324094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469733910, - "lat": 51.4109779, - "lon": -0.0152860, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469734819, - "lat": 51.4130234, - "lon": -0.0092630, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BR3 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 469738098, - "lat": 51.4124790, - "lon": -0.0045462, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469740225, - "lat": 51.0734189, - "lon": 1.1377512, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 4" - } -}, -{ - "type": "node", - "id": 469754007, - "lat": 50.7109095, - "lon": -3.5135136, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 612D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469775422, - "lat": 53.4380222, - "lon": -1.3816673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Check ref: nodes 468923005 and 469775422 both have the same value", - "post_box:type": "lamp", - "ref": "S61 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469820414, - "lat": 50.9298137, - "lon": -2.9674141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 469821692, - "lat": 50.9642605, - "lon": -0.2126635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469834199, - "lat": 51.5697604, - "lon": -0.0640505, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 469843170, - "lat": 52.0716012, - "lon": -2.1156058, - "tags": { - "amenity": "post_box", - "fixme": "Need to revisit and get aux data and check number.", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WR10 393", - "source": "observation", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 469843178, - "lat": 52.0390371, - "lon": -2.1048812, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "GL20 7", - "ref": "GL20 41" - } -}, -{ - "type": "node", - "id": 469846682, - "lat": 52.0690124, - "lon": -2.1165496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "WR10 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469860507, - "lat": 51.5875588, - "lon": -2.9963215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NP20 10D", - "royal_cypher": "GVIR", - "wikidata": "Q29500264" - } -}, -{ - "type": "node", - "id": 469881975, - "lat": 51.8390812, - "lon": -2.1305416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "GL3 2224", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469901256, - "lat": 50.7213757, - "lon": -3.5297084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX1 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469935107, - "lat": 51.2571145, - "lon": -2.1824897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "BA13 46" - } -}, -{ - "type": "node", - "id": 469935114, - "lat": 51.2613437, - "lon": -2.1777930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "mapillary": "767375107104511", - "post_box:type": "pillar", - "ref": "BA13 22", - "survey:date": "2020-11-04" - } -}, -{ - "type": "node", - "id": 469935130, - "lat": 51.2600040, - "lon": -2.1763941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "BA13 36", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 469947698, - "lat": 52.0577046, - "lon": -2.2297772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "WR8 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 469947715, - "lat": 52.0568331, - "lon": -2.2890547, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 469957094, - "lat": 52.7380289, - "lon": -1.5590884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1163", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469957194, - "lat": 52.7352465, - "lon": -1.5654449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1170" - } -}, -{ - "type": "node", - "id": 469957202, - "lat": 52.7370309, - "lon": -1.5662899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DE12 1199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 469974816, - "lat": 50.7154415, - "lon": -3.4994811, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX2 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469989264, - "lat": 50.9975185, - "lon": -1.4981059, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 469996438, - "lat": 51.8615930, - "lon": -2.1946315, - "tags": { - "amenity": "post_box", - "ref": "GL3 394" - } -}, -{ - "type": "node", - "id": 470000209, - "lat": 52.1026226, - "lon": -2.3515487, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "historic_operator": "Royal Mail", - "note": "Hovis style box attached to telegraph pole stolen in 2009, but seems to have been replaced with modern box (by 2011-03)", - "post_box:type": "lamp", - "ref": "WR13 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 470055963, - "lat": 53.1635260, - "lon": -1.6021436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 936" - } -}, -{ - "type": "node", - "id": 470095845, - "lat": 53.1441125, - "lon": -1.5855651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 920", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 470095849, - "lat": 53.1400416, - "lon": -1.5833214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE4 968", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 470232621, - "lat": 52.9184191, - "lon": -1.1206269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 229D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 470232812, - "lat": 52.9206379, - "lon": -1.1114017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG2 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 470233070, - "lat": 52.9239727, - "lon": -1.1002007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG2 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 470233263, - "lat": 52.9292313, - "lon": -1.1038513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "post_box:type": "wall", - "ref": "NG2 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 470267073, - "lat": 50.1516626, - "lon": -5.5600772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;osm notes" - } -}, -{ - "type": "node", - "id": 470286094, - "lat": 51.5240752, - "lon": -0.0739737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 30;E1 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 470286962, - "lat": 51.0853883, - "lon": 1.1383267, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 86" - } -}, -{ - "type": "node", - "id": 470304250, - "lat": 51.5053040, - "lon": -0.0238786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 470313303, - "lat": 50.7291390, - "lon": -3.5088893, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX1 81D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 470313502, - "lat": 52.7205275, - "lon": -2.7309456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SY2 558" - } -}, -{ - "type": "node", - "id": 470325121, - "lat": 50.2461933, - "lon": -5.2120763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "name": "Mount Ambrose sub-PO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 470326333, - "lat": 52.7084606, - "lon": -2.7257758, - "tags": { - "amenity": "post_box", - "ref": "SY2 611" - } -}, -{ - "type": "node", - "id": 470326336, - "lat": 52.7083098, - "lon": -2.7218052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SY2 762", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 470347270, - "lat": 50.5791424, - "lon": -4.0999606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL19 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 470350673, - "lat": 51.3998792, - "lon": -2.7960305, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 470354851, - "lat": 51.5046726, - "lon": -0.0209138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "level": "1", - "level:ref": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 30;E14 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 470367364, - "lat": 52.1767868, - "lon": 0.1130195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "postal_code": "CB2 2HZ", - "ref": "CB2 91" - } -}, -{ - "type": "node", - "id": 470369030, - "lat": 52.1805487, - "lon": 0.1174892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 90" - } -}, -{ - "type": "node", - "id": 470371744, - "lat": 52.1839465, - "lon": 0.1579899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB1 4", - "ref": "CB1 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 470377035, - "lat": 50.8824652, - "lon": -1.1813850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO17 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 470388917, - "lat": 52.9249123, - "lon": -1.1208185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 470461420, - "lat": 54.1017267, - "lon": -0.1660247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO15 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 470478613, - "lat": 52.8804309, - "lon": -1.0829061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "NG12 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 470478655, - "lat": 52.8909496, - "lon": -1.0902589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "NG12 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge;survey" - } -}, -{ - "type": "node", - "id": 470503909, - "lat": 52.1118702, - "lon": -2.3240941, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR14 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 470511892, - "lat": 52.1074853, - "lon": -2.3173673, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR14 18" - } -}, -{ - "type": "node", - "id": 470651649, - "lat": 56.8469195, - "lon": -5.0465488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:30", - "description": "plate for royal cypher is missing", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH33 17", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 470685002, - "lat": 51.6218215, - "lon": -3.9837878, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 470725991, - "lat": 53.8087849, - "lon": -1.8357352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD15 403" - } -}, -{ - "type": "node", - "id": 470855866, - "lat": 50.1296507, - "lon": -5.5288687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 470858746, - "lat": 50.1243897, - "lon": -5.6799946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR19 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2015-09-29", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 470951129, - "lat": 52.5301840, - "lon": -1.8463022, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 60", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 470965742, - "lat": 57.5970300, - "lon": -4.5208950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "mapillary": "259062203295453", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV14 16", - "source": "survey", - "survey:date": "2023-05-11" - } -}, -{ - "type": "node", - "id": 471003610, - "lat": 51.0865696, - "lon": 1.1514709, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 15" - } -}, -{ - "type": "node", - "id": 471018835, - "lat": 57.6008713, - "lon": -4.4489350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV15 11", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471018859, - "lat": 51.6415606, - "lon": -1.2763080, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 471019237, - "lat": 57.6054796, - "lon": -4.4430761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV15 17", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471019615, - "lat": 57.6009875, - "lon": -4.4371826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV15 5D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471052109, - "lat": 53.7044037, - "lon": -0.8742252, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-12", - "post_box:type": "pillar", - "ref": "DN14 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471052165, - "lat": 53.7060218, - "lon": -0.8657129, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 471052241, - "lat": 53.7023907, - "lon": -0.8704640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DN14 103P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 471065419, - "lat": 52.2114493, - "lon": 0.1440921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "Only accessible when Tesco is open", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CB5", - "ref": "CB5 35" - } -}, -{ - "type": "node", - "id": 471076574, - "lat": 53.9666830, - "lon": -2.4414248, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BB7 444", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471088696, - "lat": 52.1619571, - "lon": -1.7518785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471088760, - "lat": 52.1457827, - "lon": -1.8081302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV37 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471088818, - "lat": 52.1394721, - "lon": -1.8077627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471088879, - "lat": 52.1315063, - "lon": -1.7771155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471099379, - "lat": 57.6042610, - "lon": -4.4314998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV15 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471125355, - "lat": 57.5050858, - "lon": -4.2646961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 11:15", - "operator": "Royal Mail", - "ref": "IV1 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471130989, - "lat": 52.2077189, - "lon": 0.1278057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB5 8", - "ref": "CB5 41D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471139209, - "lat": 51.4046352, - "lon": -0.7253873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG12 188" - } -}, -{ - "type": "node", - "id": 471180414, - "lat": 55.3182668, - "lon": -2.0732959, - "tags": { - "amenity": "post_box", - "ref": "NE65 86" - } -}, -{ - "type": "node", - "id": 471180616, - "lat": 52.7870243, - "lon": -1.6724509, - "tags": { - "amenity": "post_box", - "ref": "DE14 1121" - } -}, -{ - "type": "node", - "id": 471185315, - "lat": 53.2318009, - "lon": -4.1171123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471195878, - "lat": 51.8735636, - "lon": -2.2297235, - "tags": { - "amenity": "post_box", - "ref": "GL1 73", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471219220, - "lat": 57.4624860, - "lon": -4.2046773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 72", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471219298, - "lat": 57.4636174, - "lon": -4.1988958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 65D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471284591, - "lat": 51.0557822, - "lon": -3.9682648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 209" - } -}, -{ - "type": "node", - "id": 471330264, - "lat": 54.5915715, - "lon": -1.2379941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "882333839925482", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-09-04" - } -}, -{ - "type": "node", - "id": 471352269, - "lat": 51.3558933, - "lon": -2.8764459, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS24 221D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 471407698, - "lat": 52.2195516, - "lon": -0.2944399, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 471422860, - "lat": 52.1833883, - "lon": 0.1337918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 98" - } -}, -{ - "type": "node", - "id": 471425689, - "lat": 52.1748242, - "lon": 0.1401564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 185" - } -}, -{ - "type": "node", - "id": 471483395, - "lat": 51.4174563, - "lon": -1.7293483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471498006, - "lat": 51.4013116, - "lon": -0.3040926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471498012, - "lat": 51.4003601, - "lon": -0.3006684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471527324, - "lat": 50.7058475, - "lon": -3.0719799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX12 74;EX12 740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471533075, - "lat": 57.2931601, - "lon": -5.6419194, - "tags": { - "amenity": "post_box", - "ref": "IV40 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471536629, - "lat": 51.8188894, - "lon": -2.2826740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL2 32" - } -}, -{ - "type": "node", - "id": 471574383, - "lat": 51.4438782, - "lon": -0.0681507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471608759, - "lat": 50.7282053, - "lon": -3.4702158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX1 606;EX1 6060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 471612629, - "lat": 50.7244430, - "lon": -3.4513406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471621704, - "lat": 50.7312436, - "lon": -3.4469814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Stonefield", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EX5 2FT", - "ref": "EX5 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471626762, - "lat": 50.7472509, - "lon": -3.4617634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "colour": "red", - "name": "West Clyst End", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX1 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471631217, - "lat": 50.7451970, - "lon": -3.4720158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30", - "ref": "EX4 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471632762, - "lat": 56.8046082, - "lon": -2.7603049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD9 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471634395, - "lat": 50.7469748, - "lon": -3.4810922, - "tags": { - "amenity": "post_box", - "ref": "EX4 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471667970, - "lat": 52.6188900, - "lon": -0.2860985, - "tags": { - "amenity": "post_box", - "name": "Loxley" - } -}, -{ - "type": "node", - "id": 471701655, - "lat": 50.7269586, - "lon": -3.0638698, - "tags": { - "amenity": "post_box", - "note": "No information plate is shown. Ref number unknown. Collection times unknown", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471773471, - "lat": 51.6315169, - "lon": -0.7335561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 471798187, - "lat": 50.7410069, - "lon": -3.0706516, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 471807498, - "lat": 58.2840019, - "lon": -4.4438955, - "tags": { - "amenity": "post_box", - "old_ref": "LG 017 Altnaharra", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IV27 17", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471807672, - "lat": 58.4868532, - "lon": -4.4130253, - "tags": { - "amenity": "post_box", - "old_ref": "LG 011 Braetongue", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV27 11" - } -}, -{ - "type": "node", - "id": 471809152, - "lat": 58.5005114, - "lon": -4.3989834, - "tags": { - "amenity": "post_box", - "old_ref": "LG 010 Rhitongue" - } -}, -{ - "type": "node", - "id": 471809163, - "lat": 58.5060709, - "lon": -4.3803014, - "tags": { - "amenity": "post_box", - "old_ref": "LG 009 Coldbackie", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471823140, - "lat": 58.5251567, - "lon": -4.2220654, - "tags": { - "amenity": "post_box", - "old_ref": "TH 064 Bettyhill PO", - "post_box:type": "lamp", - "ref": "KW14 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471823143, - "lat": 58.5301024, - "lon": -4.1836799, - "tags": { - "amenity": "post_box", - "note": "Not a standard postcode-based ref.", - "old_ref": "TH 039 Farr Rd End" - } -}, -{ - "type": "node", - "id": 471823210, - "lat": 58.5524219, - "lon": -4.0594311, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471825628, - "lat": 58.5591315, - "lon": -3.9909571, - "tags": { - "amenity": "post_box", - "postal_code": "KW14", - "ref": "KW14 34" - } -}, -{ - "type": "node", - "id": 471825670, - "lat": 58.5531923, - "lon": -3.9176251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471832380, - "lat": 58.5595388, - "lon": -3.7730112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 60", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471832408, - "lat": 58.5606098, - "lon": -3.7499369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471834235, - "lat": 52.1018951, - "lon": -2.3067430, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR14 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471834238, - "lat": 52.0959084, - "lon": -2.3209700, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "historic_operator": "Post Office", - "post_box:apertures": "1", - "post_box:design": "fluted", - "post_box:manufacturer": "no", - "post_box:type": "pillar", - "ref": "WR14 105", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 471835575, - "lat": 58.5524277, - "lon": -3.6886290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471835599, - "lat": 58.5551778, - "lon": -3.6177462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471842628, - "lat": 53.0920565, - "lon": -1.1696079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG15 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 471847664, - "lat": 52.9733929, - "lon": -2.2006077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 162" - } -}, -{ - "type": "node", - "id": 471847694, - "lat": 52.9759679, - "lon": -2.1983690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 455" - } -}, -{ - "type": "node", - "id": 471847716, - "lat": 52.9788365, - "lon": -2.1950209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 467" - } -}, -{ - "type": "node", - "id": 471851489, - "lat": 51.1678052, - "lon": -0.6500900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU8 25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU8 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 471851968, - "lat": 50.7375346, - "lon": -3.5082948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 471863414, - "lat": 54.3552454, - "lon": -1.4305020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DL6 37" - } -}, -{ - "type": "node", - "id": 471868187, - "lat": 58.5713140, - "lon": -3.5652619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 13:15", - "note": "flap over slot", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW14", - "ref": "KW14 27", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471868196, - "lat": 58.5850960, - "lon": -3.5365583, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KW14 15D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471947704, - "lat": 58.7546808, - "lon": -2.9659148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW17", - "ref": "KW17 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471947716, - "lat": 58.7664913, - "lon": -2.9641762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "KW17", - "ref": "KW17 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471947741, - "lat": 58.8028049, - "lon": -2.9592833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:30", - "mapillary": "315886960251902", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "KW17", - "ref": "KW17 62", - "royal_cypher": "scottish_crown", - "survey:date": "2020-09-18" - } -}, -{ - "type": "node", - "id": 471947751, - "lat": 58.8220124, - "lon": -2.9552732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:15", - "old_ref": "K 092 Monument, Burray", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 92", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471947798, - "lat": 58.8095834, - "lon": -2.9302077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "363231692568768", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "KW17", - "ref": "KW17 97", - "survey:date": "2022-06-05" - } -}, -{ - "type": "node", - "id": 471949494, - "lat": 51.0529535, - "lon": -3.9704552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471951361, - "lat": 51.4717060, - "lon": -0.9840614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 471951619, - "lat": 53.2363285, - "lon": -0.5429395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "LN1 16D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 471951713, - "lat": 51.4753852, - "lon": -0.9892628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 315D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Postbox on Woodcote Road 2021-04-03 16.16.07.jpg" - } -}, -{ - "type": "node", - "id": 471954404, - "lat": 58.9352342, - "lon": -2.8573684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "KW17", - "ref": "KW17 27", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 471960296, - "lat": 51.7899951, - "lon": -1.2646029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX2 781", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 471975538, - "lat": 52.2111084, - "lon": -0.2907783, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472040684, - "lat": 52.7165684, - "lon": -2.5303402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 472040868, - "lat": 52.6998295, - "lon": -2.5158308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 472074437, - "lat": 50.9649652, - "lon": -1.2995923, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472075319, - "lat": 52.1028179, - "lon": -2.3275008, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 472076246, - "lat": 52.9038294, - "lon": -1.0902575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NG12 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472088538, - "lat": 50.5910328, - "lon": -3.6980322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 472120601, - "lat": 51.3949040, - "lon": -2.3693975, - "tags": { - "amenity": "post_box", - "colour": "red", - "post_box:type": "wall", - "ref": "BA1 185D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 472131189, - "lat": 50.8101241, - "lon": -0.3907602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BN11 1610D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 472141374, - "lat": 51.7362381, - "lon": -0.4610422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 472141375, - "lat": 51.7394263, - "lon": -0.4645932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 472196053, - "lat": 57.5870796, - "lon": -4.4998298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV15 24", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472226625, - "lat": 52.9301477, - "lon": -1.4793547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472239105, - "lat": 51.3561898, - "lon": -2.3749998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 472277487, - "lat": 50.9103400, - "lon": -1.1112727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO7 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472296402, - "lat": 51.2220110, - "lon": -1.4393832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP11", - "ref": "SP11 7" - } -}, -{ - "type": "node", - "id": 472300809, - "lat": 51.1793920, - "lon": -0.6118222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "brick pillarhas decorative crenellations", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 472305496, - "lat": 51.1902285, - "lon": -0.6062366, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GU7 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 472308053, - "lat": 57.9678295, - "lon": -5.1294019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV26 195", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472334978, - "lat": 50.3820863, - "lon": -3.5966670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "TQ6 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 472335368, - "lat": 50.3843056, - "lon": -3.6031279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 472353466, - "lat": 53.6995543, - "lon": -1.5514954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 163" - } -}, -{ - "type": "node", - "id": 472364596, - "lat": 54.8480865, - "lon": -2.0549034, - "tags": { - "amenity": "post_box", - "colour": "white", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DH8 461", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 472364620, - "lat": 54.8452422, - "lon": -2.0672128, - "tags": { - "amenity": "post_box", - "ref": "DH8 13" - } -}, -{ - "type": "node", - "id": 472371313, - "lat": 53.0335838, - "lon": -4.0493238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL55 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472377077, - "lat": 50.8331300, - "lon": -0.1312508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "BN2 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472389103, - "lat": 52.2243709, - "lon": -2.7665164, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472390047, - "lat": 53.3126144, - "lon": -4.2226679, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 472390048, - "lat": 53.2900194, - "lon": -4.2205865, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 472390053, - "lat": 53.4101584, - "lon": -4.4496936, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 472398164, - "lat": 52.6701965, - "lon": -0.7313617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "ele": "102.745850", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 3457 740740", - "post_box:type": "pillar", - "ref": "LE15 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 472406917, - "lat": 52.6570362, - "lon": -0.7058464, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-18", - "ele": "87.124512", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE15 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 472408821, - "lat": 51.8075606, - "lon": -0.8273601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 472419812, - "lat": 51.2701758, - "lon": 0.4895202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME16 184D" - } -}, -{ - "type": "node", - "id": 472419942, - "lat": 51.2706349, - "lon": 0.4843639, - "tags": { - "amenity": "post_box", - "ref": "ME16 453" - } -}, -{ - "type": "node", - "id": 472420859, - "lat": 51.1626490, - "lon": 0.8897740, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN24 279", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN24 279D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 472424806, - "lat": 50.7139627, - "lon": -1.4010328, - "tags": { - "amenity": "post_box", - "check_date": "2018-06-04", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 17", - "ref:GB:uprn": "10015412810", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/newtown-po30-4pa/0000PO3017" - } -}, -{ - "type": "node", - "id": 472434436, - "lat": 51.7430773, - "lon": -0.4657729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 472434474, - "lat": 51.7118147, - "lon": -0.4459864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 472434482, - "lat": 51.6993271, - "lon": -0.4341666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD4 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472436021, - "lat": 54.7245279, - "lon": -1.4159959, - "tags": { - "amenity": "post_box", - "ele": "158.0000000" - } -}, -{ - "type": "node", - "id": 472437805, - "lat": 51.5725894, - "lon": 0.0264261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472437970, - "lat": 51.5722010, - "lon": 0.0369357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472439410, - "lat": 54.7173814, - "lon": -1.4116660, - "tags": { - "amenity": "post_box", - "ele": "159.0000000", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 472444914, - "lat": 54.6807060, - "lon": -1.4377454, - "tags": { - "amenity": "post_box", - "ele": "116.0000000" - } -}, -{ - "type": "node", - "id": 472444943, - "lat": 54.2017693, - "lon": -2.5948329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA6 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472446992, - "lat": 51.8092815, - "lon": -2.3006801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472485705, - "lat": 51.3697694, - "lon": -2.3658170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "571769085078046", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA2 66", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 472492339, - "lat": 51.3772088, - "lon": -2.3646314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3198441587124831", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA2 83D", - "royal_cypher": "EIIR", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 472582945, - "lat": 52.8906196, - "lon": -2.1416600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST15 252" - } -}, -{ - "type": "node", - "id": 472612795, - "lat": 54.5279690, - "lon": -1.3265498, - "tags": { - "amenity": "post_box", - "colour": "Gold" - } -}, -{ - "type": "node", - "id": 472616747, - "lat": 51.5425555, - "lon": -0.0696780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472624203, - "lat": 51.6213215, - "lon": -1.3279549, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 472624210, - "lat": 51.5994848, - "lon": -1.3364911, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 472624219, - "lat": 51.6239792, - "lon": -1.3199183, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 472673883, - "lat": 52.6944987, - "lon": -2.7247276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY2 448", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472673884, - "lat": 52.7000961, - "lon": -2.7267885, - "tags": { - "amenity": "post_box", - "ref": "SY2 38" - } -}, -{ - "type": "node", - "id": 472673885, - "lat": 52.6995005, - "lon": -2.7293184, - "tags": { - "amenity": "post_box", - "ref": "SY2 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472685389, - "lat": 53.6179526, - "lon": -2.5982099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mapillary": "248869820328578", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 59", - "source:position": "Mapillary 2019-02-06", - "survey:date": "2022-11-04" - } -}, -{ - "type": "node", - "id": 472691538, - "lat": 50.7264043, - "lon": -3.5491601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "ref": "EX4 367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 472695911, - "lat": 50.7197501, - "lon": -3.5431848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 334D" - } -}, -{ - "type": "node", - "id": 472734819, - "lat": 53.0168801, - "lon": -2.7912652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "Lamp box attached to old telegraph pole.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 472744887, - "lat": 53.0846303, - "lon": -1.6585573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 328" - } -}, -{ - "type": "node", - "id": 472798630, - "lat": 53.0528775, - "lon": -1.6888470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 756" - } -}, -{ - "type": "node", - "id": 472807780, - "lat": 53.0481532, - "lon": -1.6923560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 864" - } -}, -{ - "type": "node", - "id": 472924684, - "lat": 51.4803215, - "lon": 0.0525133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 472975037, - "lat": 51.2995006, - "lon": 0.4531205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME19 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 472975059, - "lat": 51.2996788, - "lon": 0.4334482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME20 315D" - } -}, -{ - "type": "node", - "id": 472975068, - "lat": 51.3003514, - "lon": 0.4398927, - "tags": { - "addr:city": "Leybourne", - "addr:postcode": "ME19 5QL", - "addr:street": "Kingfisher Road", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 327", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 472977070, - "lat": 51.1741150, - "lon": 0.3947635, - "tags": { - "amenity": "post_box", - "ref": "TN12 242" - } -}, -{ - "type": "node", - "id": 472978573, - "lat": 52.0635169, - "lon": 1.1909089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "opening_hours": "Mo-Fr 0:00-17:30; Sa 0:00-12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 3457740740", - "post_box:type": "pillar", - "ref": "IP4 1266" - } -}, -{ - "type": "node", - "id": 472978645, - "lat": 52.0611037, - "lon": 1.1861150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP4 1020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 472985341, - "lat": 51.3107101, - "lon": 0.4370449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 334D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 472985393, - "lat": 51.3074963, - "lon": 0.4369114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ME20 380" - } -}, -{ - "type": "node", - "id": 473000386, - "lat": 51.0298487, - "lon": -1.0754086, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "last_checked": "2020-07-31", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473001842, - "lat": 51.2653167, - "lon": 0.5971408, - "tags": { - "amenity": "post_box", - "ref": "ME14 281" - } -}, -{ - "type": "node", - "id": 473022097, - "lat": 51.2675328, - "lon": 0.5717980, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME15 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473022166, - "lat": 51.2531843, - "lon": 0.5460033, - "tags": { - "amenity": "post_box", - "ref": "ME15 284" - } -}, -{ - "type": "node", - "id": 473069472, - "lat": 52.0054792, - "lon": -0.5060933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "MK45 258" - } -}, -{ - "type": "node", - "id": 473074459, - "lat": 51.9972417, - "lon": -0.5075404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 473078550, - "lat": 51.3805861, - "lon": -1.1007429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 473092159, - "lat": 51.4190248, - "lon": -0.0545840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473107771, - "lat": 52.7060252, - "lon": -2.5129603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 473107795, - "lat": 52.7024806, - "lon": -2.5125230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 473107848, - "lat": 52.7033433, - "lon": -2.5163608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 473158926, - "lat": 51.8167470, - "lon": -2.2900443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473174112, - "lat": 51.1729076, - "lon": 0.3898354, - "tags": { - "amenity": "post_box", - "ref": "TN12 310" - } -}, -{ - "type": "node", - "id": 473193863, - "lat": 54.1896662, - "lon": -2.4016454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473196301, - "lat": 55.8064245, - "lon": -4.1872207, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 473397846, - "lat": 52.0367764, - "lon": 1.1750503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1322" - } -}, -{ - "type": "node", - "id": 473417048, - "lat": 52.5082965, - "lon": -2.0390033, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B69 1119", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 473421302, - "lat": 53.0541507, - "lon": -4.1359067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473465235, - "lat": 57.4590466, - "lon": -4.1979376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 183", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473469257, - "lat": 52.5092081, - "lon": -2.0564975, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B69 46", - "royal_cypher": "GVIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 473472712, - "lat": 52.6838465, - "lon": -1.2729394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE67 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473492956, - "lat": 53.6594641, - "lon": -2.6187070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473495798, - "lat": 53.8475719, - "lon": -3.0503771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-09-11", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 473507118, - "lat": 54.5639902, - "lon": -1.3128182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TS18 328;TS18 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473519578, - "lat": 53.7274734, - "lon": -1.0203362, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 473538341, - "lat": 51.9681867, - "lon": 0.7732923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO8 48" - } -}, -{ - "type": "node", - "id": 473593991, - "lat": 50.1080771, - "lon": -5.6098137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR20 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 473642861, - "lat": 54.1026163, - "lon": -0.1795972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO16 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473642862, - "lat": 54.0997206, - "lon": -0.1773461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO16 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473668732, - "lat": 51.0931481, - "lon": -0.4461797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH12 176" - } -}, -{ - "type": "node", - "id": 473668733, - "lat": 51.0899744, - "lon": -0.4492089, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH13 245", - "source": "Photo P143-0559" - } -}, -{ - "type": "node", - "id": 473669324, - "lat": 51.0724149, - "lon": 1.0990043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT21", - "ref": "CT21 137D" - } -}, -{ - "type": "node", - "id": 473669329, - "lat": 51.0761159, - "lon": 1.0947161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT21", - "ref": "CT21 195" - } -}, -{ - "type": "node", - "id": 473669338, - "lat": 51.0720116, - "lon": 1.1059949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 12:00", - "operator": "Royal Mail", - "postal_code": "CT21", - "ref": "CT21 128" - } -}, -{ - "type": "node", - "id": 473669343, - "lat": 51.0724803, - "lon": 1.1148752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT21", - "ref": "CT21 89" - } -}, -{ - "type": "node", - "id": 473714865, - "lat": 53.8412161, - "lon": -3.0315927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473714867, - "lat": 53.8519836, - "lon": -3.0407810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 203", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 473714868, - "lat": 53.8471393, - "lon": -3.0417119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-03-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473721932, - "lat": 51.2506474, - "lon": -2.1902983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BA13 10" - } -}, -{ - "type": "node", - "id": 473728670, - "lat": 52.3185043, - "lon": 0.3578606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473728748, - "lat": 52.3285192, - "lon": 0.3438635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB7 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473728802, - "lat": 52.3220084, - "lon": 0.3555066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473728895, - "lat": 52.3357499, - "lon": 0.3371231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB7 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473729101, - "lat": 52.3413403, - "lon": 0.3336494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB7 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 473743341, - "lat": 52.4952525, - "lon": -1.0490561, - "tags": { - "amenity": "post_box", - "ref": "LE17 84" - } -}, -{ - "type": "node", - "id": 473743361, - "lat": 52.4662739, - "lon": -1.0172314, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LE17 6", - "ref": "LE17 215" - } -}, -{ - "type": "node", - "id": 473773990, - "lat": 52.7192142, - "lon": -2.5090691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 473805220, - "lat": 52.3546516, - "lon": 0.4206270, - "tags": { - "amenity": "post_box", - "ref": "CB7 66" - } -}, -{ - "type": "node", - "id": 473805331, - "lat": 52.3434768, - "lon": 0.4171258, - "tags": { - "amenity": "post_box", - "ref": "CB7 62" - } -}, -{ - "type": "node", - "id": 473805377, - "lat": 52.3419912, - "lon": 0.4094329, - "tags": { - "amenity": "post_box", - "ref": "CB7 64" - } -}, -{ - "type": "node", - "id": 473805438, - "lat": 52.3383659, - "lon": 0.4126619, - "tags": { - "amenity": "post_box", - "ref": "CB7 65" - } -}, -{ - "type": "node", - "id": 473807106, - "lat": 58.9771991, - "lon": -2.9678840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "KW15", - "ref": "KW15 10" - } -}, -{ - "type": "node", - "id": 473807171, - "lat": 58.9541488, - "lon": -3.0169351, - "tags": { - "amenity": "post_box", - "postal_code": "KW15", - "ref": "KW15 19" - } -}, -{ - "type": "node", - "id": 473807179, - "lat": 58.9462206, - "lon": -3.0982234, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "KW17", - "ref": "KW17 5" - } -}, -{ - "type": "node", - "id": 473824877, - "lat": 58.9748990, - "lon": -2.9629426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "post_box:type": "lamp", - "postal_code": "KW15", - "ref": "KW15 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 473824986, - "lat": 58.9204095, - "lon": -2.9283024, - "tags": { - "amenity": "post_box", - "postal_code": "KW17", - "ref": "KW17 16" - } -}, -{ - "type": "node", - "id": 473834014, - "lat": 58.5937206, - "lon": -3.4552250, - "tags": { - "amenity": "post_box", - "postal_code": "KW14", - "ref": "KW14 26" - } -}, -{ - "type": "node", - "id": 473835273, - "lat": 55.1147541, - "lon": -1.5195822, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 3NJ", - "ref": "NE24 623", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 473835331, - "lat": 55.1229111, - "lon": -1.5020400, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 3DL", - "ref": "NE24 554" - } -}, -{ - "type": "node", - "id": 473835333, - "lat": 55.1203768, - "lon": -1.5199666, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 2SF", - "ref": "NE24 642" - } -}, -{ - "type": "node", - "id": 473852305, - "lat": 52.1766491, - "lon": 0.1390843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB2 2", - "ref": "CB2 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 473858205, - "lat": 58.5206697, - "lon": -3.3686418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "postal_code": "KW1", - "ref": "KW1 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 473858221, - "lat": 58.5162615, - "lon": -3.3543232, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "KW1", - "ref": "KW1 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 473858417, - "lat": 58.3073649, - "lon": -3.2582263, - "tags": { - "amenity": "post_box", - "postal_code": "KW3", - "ref": "KW3 72" - } -}, -{ - "type": "node", - "id": 473858446, - "lat": 58.2952134, - "lon": -3.3263193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "975593023981957", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "KW3", - "ref": "KW3 38", - "survey:date": "2023-08-14" - } -}, -{ - "type": "node", - "id": 473877332, - "lat": 53.0526122, - "lon": -4.3319409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 109D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 473890628, - "lat": 52.6307968, - "lon": -1.1299612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "LE1 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 474369053, - "lat": 51.6056712, - "lon": -3.8194866, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 474474307, - "lat": 53.6478295, - "lon": -1.6008073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 188" - } -}, -{ - "type": "node", - "id": 474519346, - "lat": 52.7726363, - "lon": 0.4478774, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 474520068, - "lat": 52.7757166, - "lon": 0.4526475, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 474523296, - "lat": 57.4263738, - "lon": -4.1285271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IV2 47D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474538667, - "lat": 51.0478982, - "lon": -3.9694411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 474680097, - "lat": 51.4658669, - "lon": -0.1065021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 12" - } -}, -{ - "type": "node", - "id": 474699279, - "lat": 51.0622849, - "lon": -4.0117008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX32 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 474700502, - "lat": 58.2491773, - "lon": -3.4315039, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "KW3", - "ref": "KW3 50", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474700503, - "lat": 58.2462563, - "lon": -3.4385865, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW3 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474716611, - "lat": 52.7024055, - "lon": -2.5238968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 474727736, - "lat": 52.0313166, - "lon": 0.7183917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 474728538, - "lat": 58.0987303, - "lon": -3.6855155, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "KW8", - "ref": "KW8 56", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474728904, - "lat": 57.8971614, - "lon": -4.0184177, - "tags": { - "amenity": "post_box", - "postal_code": "IV25", - "ref": "IV25 287", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474728935, - "lat": 57.8719746, - "lon": -4.0726514, - "tags": { - "amenity": "post_box", - "old_ref": "IV 345 Davochfin", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474736185, - "lat": 52.6159523, - "lon": -1.6442048, - "tags": { - "amenity": "post_box", - "ref": "B77 185" - } -}, -{ - "type": "node", - "id": 474737215, - "lat": 52.0337253, - "lon": 0.7164199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO10 1001" - } -}, -{ - "type": "node", - "id": 474748409, - "lat": 54.1130687, - "lon": -0.1362893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO15 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474766967, - "lat": 52.0316080, - "lon": 0.7492158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO10 1083" - } -}, -{ - "type": "node", - "id": 474769431, - "lat": 57.7265665, - "lon": -4.0008827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV19", - "ref": "IV19 13", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474774690, - "lat": 52.0330641, - "lon": 0.7572327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO10 1046" - } -}, -{ - "type": "node", - "id": 474787829, - "lat": 57.4806042, - "lon": -4.1512493, - "tags": { - "amenity": "post_box", - "postal_code": "IV2", - "ref": "IV2 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474796511, - "lat": 57.4978057, - "lon": -3.9990323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "postal_code": "IV12", - "ref": "IV12 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474807606, - "lat": 52.0272587, - "lon": 0.7573359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO10 1129" - } -}, -{ - "type": "node", - "id": 474809490, - "lat": 55.8851974, - "lon": -4.0881138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G69 1031", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 474836244, - "lat": 51.4853315, - "lon": -0.5707122, - "tags": { - "amenity": "post_box", - "ref": "SL3 227" - } -}, -{ - "type": "node", - "id": 474842077, - "lat": 51.4739835, - "lon": -0.0969471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE5 5;SE5 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474842084, - "lat": 51.4728786, - "lon": -0.0966461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 17", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474967572, - "lat": 52.0569304, - "lon": -1.8502748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR12 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 474967583, - "lat": 52.0529470, - "lon": -1.8448907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "WR12 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 474986934, - "lat": 51.7511480, - "lon": -1.2540067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX1 90", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 474986992, - "lat": 55.9225682, - "lon": -3.2164153, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times updated 2018-06-04. Edward VII era box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 119D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 474987200, - "lat": 55.9250251, - "lon": -3.2099944, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH10 118", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 475130847, - "lat": 50.2294000, - "lon": -5.1819147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR16 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 475182479, - "lat": 51.7327462, - "lon": -0.4941571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP3 128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 475203671, - "lat": 51.4555204, - "lon": -2.5913501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS1 1015D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475203672, - "lat": 51.4555235, - "lon": -2.5913352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "historic": "memorial", - "inscription": "This postbox celebrates ICC Cricket World Cup victories for the England Men's cricket team on 14th July 2019 and the England Women's cricket team on 23 July, 2017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS1 1014", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475233435, - "lat": 52.2717350, - "lon": 0.2943495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB25 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 475239702, - "lat": 52.2398684, - "lon": 0.2782137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB25 0", - "ref": "CB25 490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475241006, - "lat": 52.2369214, - "lon": 0.2766135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB25 0", - "ref": "CB25 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475244440, - "lat": 52.2233894, - "lon": 0.2581445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB25 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475352554, - "lat": 57.5856380, - "lon": -3.8610702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "IV12", - "ref": "IV12 12D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 475352557, - "lat": 57.5873016, - "lon": -3.8516883, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-21", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "postal_code": "IV12", - "ref": "IV12 29", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 475357174, - "lat": 51.7488779, - "lon": -0.3108137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 172", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 475357507, - "lat": 51.7493500, - "lon": -0.3055212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475390144, - "lat": 51.3688002, - "lon": 1.4430101, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475390163, - "lat": 51.3603264, - "lon": 1.4322605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "post_box:type": "wall", - "postal_code": "CT10", - "ref": "CT10 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475394784, - "lat": 51.4814560, - "lon": -0.5686277, - "tags": { - "amenity": "post_box", - "ref": "SL3 169" - } -}, -{ - "type": "node", - "id": 475394831, - "lat": 51.4849710, - "lon": -0.5757446, - "tags": { - "amenity": "post_box", - "ref": "SL3 178" - } -}, -{ - "type": "node", - "id": 475394917, - "lat": 51.4754593, - "lon": -0.5787262, - "tags": { - "amenity": "post_box", - "ref": "SL3 170" - } -}, -{ - "type": "node", - "id": 475396466, - "lat": 52.6217301, - "lon": -1.9495720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS4", - "ref": "WS4 337", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 475396543, - "lat": 52.6233375, - "lon": -1.9559188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS4", - "ref": "WS4 43", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 475396564, - "lat": 52.6190914, - "lon": -1.9591277, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS4", - "ref": "WS4 288D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 475403911, - "lat": 51.4874978, - "lon": -3.6912008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "830710031945545", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 475415041, - "lat": 51.2619519, - "lon": -1.0221082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "RG25", - "ref": "RG25 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 475415055, - "lat": 51.2565428, - "lon": -1.0159313, - "tags": { - "amenity": "post_box", - "mapillary": "252304416640849", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "RG25", - "ref": "RG25 281", - "survey:date": "2020-05-25" - } -}, -{ - "type": "node", - "id": 475532560, - "lat": 51.3803911, - "lon": 1.4195744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 475538411, - "lat": 51.0250832, - "lon": -0.3450869, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-06", - "old_ref": "RH13 236", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 475731055, - "lat": 53.3624948, - "lon": -1.4055586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475737538, - "lat": 52.0446665, - "lon": 1.1896263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475737543, - "lat": 52.0461649, - "lon": 1.2050713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP3 1384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475737544, - "lat": 52.0419323, - "lon": 1.1977183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP3 1268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475737545, - "lat": 52.0467944, - "lon": 1.2004005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1274D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475737552, - "lat": 52.0493901, - "lon": 1.2211494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1291", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475737553, - "lat": 52.0487867, - "lon": 1.2116243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475737569, - "lat": 52.0528284, - "lon": 1.2131660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP4 8134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475833204, - "lat": 53.7069928, - "lon": -0.8744608, - "tags": { - "amenity": "post_box", - "ref": "DN14 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 475833465, - "lat": 53.7088786, - "lon": -0.8685051, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 475839125, - "lat": 55.9164300, - "lon": -4.3304944, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "G61", - "ref": "G61 752", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475847119, - "lat": 55.9111330, - "lon": -4.2258285, - "tags": { - "amenity": "post_box", - "postal_code": "G64", - "ref": "G64 324" - } -}, -{ - "type": "node", - "id": 475847137, - "lat": 55.9095426, - "lon": -4.2226088, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-19", - "postal_code": "G64", - "ref": "G64 802" - } -}, -{ - "type": "node", - "id": 475847140, - "lat": 55.9059407, - "lon": -4.2244865, - "tags": { - "amenity": "post_box", - "postal_code": "G64", - "ref": "G64 125" - } -}, -{ - "type": "node", - "id": 475870654, - "lat": 52.4952263, - "lon": -1.0295600, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LE17 106", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 475870807, - "lat": 52.5039245, - "lon": -1.1137331, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "LE17 5", - "ref": "LE17 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475935006, - "lat": 51.3608973, - "lon": -2.8863556, - "tags": { - "amenity": "post_box", - "ref": "BS24 69" - } -}, -{ - "type": "node", - "id": 475958424, - "lat": 51.4796409, - "lon": -2.6391913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 524", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 475963304, - "lat": 51.4836952, - "lon": -2.6335931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "BS9", - "ref": "BS9 530", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 476355547, - "lat": 52.7746827, - "lon": -3.1587782, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 476355548, - "lat": 52.7745112, - "lon": -3.1532102, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 476455787, - "lat": 53.3078385, - "lon": -2.2644560, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SK9 92" - } -}, -{ - "type": "node", - "id": 476466978, - "lat": 52.6276404, - "lon": -1.7060992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 476467055, - "lat": 52.6173661, - "lon": -1.6496126, - "tags": { - "amenity": "post_box", - "ref": "B77 423" - } -}, -{ - "type": "node", - "id": 476614616, - "lat": 53.1914292, - "lon": -3.0494422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH5 490" - } -}, -{ - "type": "node", - "id": 476639898, - "lat": 53.1951380, - "lon": -3.0278668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 476673542, - "lat": 51.9903697, - "lon": 1.3151335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476673648, - "lat": 51.9854586, - "lon": 1.3136362, - "tags": { - "amenity": "post_box", - "mapillary": "2798131053770119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-01-26" - } -}, -{ - "type": "node", - "id": 476673717, - "lat": 51.9829099, - "lon": 1.3218166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1436" - } -}, -{ - "type": "node", - "id": 476673720, - "lat": 51.9804777, - "lon": 1.3225180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1425" - } -}, -{ - "type": "node", - "id": 476673723, - "lat": 51.9790931, - "lon": 1.3269196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1437" - } -}, -{ - "type": "node", - "id": 476674035, - "lat": 51.9765633, - "lon": 1.3268271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "815585009389412", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1163" - } -}, -{ - "type": "node", - "id": 476674048, - "lat": 51.9637003, - "lon": 1.3309466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP11 1009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476674049, - "lat": 51.9669821, - "lon": 1.3341393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1334", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 476674050, - "lat": 51.9603630, - "lon": 1.3417036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1181" - } -}, -{ - "type": "node", - "id": 476674051, - "lat": 51.9625897, - "lon": 1.3391434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476674053, - "lat": 51.9608060, - "lon": 1.3463226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 476674079, - "lat": 51.9629635, - "lon": 1.3557594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP11 1012", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 476674085, - "lat": 51.9669518, - "lon": 1.3530404, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP11 1036", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 476675403, - "lat": 51.9708327, - "lon": 1.3515783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1108" - } -}, -{ - "type": "node", - "id": 476681044, - "lat": 50.9026397, - "lon": -1.0145400, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PO8 8", - "ref": "PO8 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 476694247, - "lat": 51.0552852, - "lon": 0.1663203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476706796, - "lat": 51.0235139, - "lon": -0.4554330, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH14 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476706800, - "lat": 51.0257498, - "lon": -0.4514022, - "tags": { - "amenity": "post_box", - "ref": "RH14 479" - } -}, -{ - "type": "node", - "id": 476706802, - "lat": 51.0827001, - "lon": -0.4707837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH12 86D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 476706817, - "lat": 51.0705009, - "lon": -0.4882617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476706819, - "lat": 51.0734277, - "lon": -0.5193857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RH14 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476754969, - "lat": 51.3138484, - "lon": -0.6178906, - "tags": { - "amenity": "post_box", - "check_date": "2019-07-09", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476754996, - "lat": 51.3172232, - "lon": -0.6187423, - "tags": { - "amenity": "post_box", - "check_date": "2020-02-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476761611, - "lat": 51.3123452, - "lon": -0.5955110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 1113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 476764973, - "lat": 55.9657162, - "lon": -3.2744957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH4 402D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 476848457, - "lat": 52.2104441, - "lon": -1.8639177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B50 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 476848481, - "lat": 52.2140485, - "lon": -1.8704023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "colour": "gold", - "note": "RH aperture has no plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "B49 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 476856612, - "lat": 50.6291085, - "lon": -3.4507697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 497D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 476883137, - "lat": 52.2164586, - "lon": -1.8684853, - "tags": { - "amenity": "post_box", - "ref": "B49 144", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 476884573, - "lat": 52.5694616, - "lon": -1.1641605, - "tags": { - "amenity": "post_box", - "postal_code": "LE8 4", - "ref": "LE8 685" - } -}, -{ - "type": "node", - "id": 476884621, - "lat": 52.5286806, - "lon": -1.1263939, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LE8 3", - "ref": "LE8 300" - } -}, -{ - "type": "node", - "id": 476906140, - "lat": 50.6253229, - "lon": -3.4513250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 476912230, - "lat": 54.7594579, - "lon": -1.7271183, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 476920672, - "lat": 52.9357685, - "lon": -1.5085682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 165" - } -}, -{ - "type": "node", - "id": 476921935, - "lat": 52.9671061, - "lon": -1.5467964, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 86" - } -}, -{ - "type": "node", - "id": 476951139, - "lat": 54.7339840, - "lon": -1.7482841, - "tags": { - "amenity": "post_box", - "ele": "246.94" - } -}, -{ - "type": "node", - "id": 476986064, - "lat": 51.8485384, - "lon": -2.1722104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477079023, - "lat": 50.3728640, - "lon": -4.1556131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "420925006090715", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL1 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-10-23" - } -}, -{ - "type": "node", - "id": 477199577, - "lat": 53.3911427, - "lon": -2.3689555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 72", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 477199611, - "lat": 53.3875200, - "lon": -2.3667251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 5", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 477222808, - "lat": 51.6296877, - "lon": -0.7422210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "collection_times:old": "Mo-Fr 17:00; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP13 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 477222809, - "lat": 51.6251768, - "lon": -0.7361586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "HP11 40" - } -}, -{ - "type": "node", - "id": 477275766, - "lat": 56.0517640, - "lon": -3.2988544, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KY3 62" - } -}, -{ - "type": "node", - "id": 477275772, - "lat": 50.8297015, - "lon": 0.0188945, - "tags": { - "amenity": "post_box", - "ref": "BN7 570", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 477276361, - "lat": 55.9062688, - "lon": -4.1013233, - "tags": { - "amenity": "post_box", - "mapillary": "1090346325289479", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 477281861, - "lat": 50.6666621, - "lon": -1.1878371, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 14:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 69", - "ref:GB:uprn": "10015339432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/alverstone-garden-village-po36-0ha/0000PO3669" - } -}, -{ - "type": "node", - "id": 477281862, - "lat": 50.6631464, - "lon": -1.1918901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO36 45", - "website": "https://www.royalmail.com/services-near-you/postbox/woodside-avenue-po36-0ha/0000PO3645" - } -}, -{ - "type": "node", - "id": 477327483, - "lat": 50.7291011, - "lon": -1.1888783, - "tags": { - "amenity": "post_box", - "mapillary": "410842194086400", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "PO33 83", - "ref:GB:uprn": "10015445691", - "survey:date": "2021-08-31", - "website": "https://www.royalmail.com/services-near-you/postbox/church-road-po33-3aa/0000PO3383" - } -}, -{ - "type": "node", - "id": 477366642, - "lat": 51.4833957, - "lon": -0.0094331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477369641, - "lat": 52.4462930, - "lon": -1.8448171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B11 408", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 477370600, - "lat": 51.9761874, - "lon": 0.1738370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477371963, - "lat": 54.5223685, - "lon": -1.2619317, - "tags": { - "amenity": "post_box", - "note": "collection times Aug-2009 17:00 & 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TS8 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 477372023, - "lat": 54.5195979, - "lon": -1.2588612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TS8 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 477395795, - "lat": 51.9218226, - "lon": 0.2152934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM22 47", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477427131, - "lat": 52.6898040, - "lon": -2.4925579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "TF1 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 477451804, - "lat": 54.7149149, - "lon": -1.6888038, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 477458920, - "lat": 52.0092319, - "lon": -1.1455005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN13 111" - } -}, -{ - "type": "node", - "id": 477528739, - "lat": 51.4358090, - "lon": 0.0677590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477531734, - "lat": 52.9380110, - "lon": 0.7569614, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477541208, - "lat": 57.6216489, - "lon": -3.6731475, - "tags": { - "amenity": "post_box", - "postal_code": "IV36", - "ref": "IV36 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477557898, - "lat": 51.3581805, - "lon": -0.8395657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 477572569, - "lat": 57.6348742, - "lon": -3.5699256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV36 67", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 477788994, - "lat": 57.6602410, - "lon": -3.0837745, - "tags": { - "amenity": "post_box", - "postal_code": "IV32", - "ref": "IV32 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477800707, - "lat": 54.2405671, - "lon": -0.7651586, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO18 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 477813115, - "lat": 57.6628443, - "lon": -3.0197602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 477821690, - "lat": 53.0847103, - "lon": -1.5038248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 976" - } -}, -{ - "type": "node", - "id": 477830395, - "lat": 57.6744217, - "lon": -2.9838830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "AB56", - "ref": "AB56 71D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477877019, - "lat": 54.2448330, - "lon": -0.7725931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO18 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 477960987, - "lat": 51.3318241, - "lon": -0.2730776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT18 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 477972675, - "lat": 57.7029430, - "lon": -2.8636862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB56 97D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 477979423, - "lat": 53.1064404, - "lon": -1.8905789, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 478004437, - "lat": 57.6869379, - "lon": -2.8178419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "AB56", - "ref": "AB56 606", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478069773, - "lat": 51.6580928, - "lon": -2.4406300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL13 203", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478081762, - "lat": 53.0856183, - "lon": -1.8729140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 478549523, - "lat": 52.9772002, - "lon": -1.1904486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "outside Spar", - "post_box:type": "pillar", - "ref": "NG8 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478559142, - "lat": 54.2810130, - "lon": -0.4025440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 13:20", - "note": "location approx. inside shopping centre", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "YO11 191", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478575384, - "lat": 54.2869599, - "lon": -0.4138827, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478585864, - "lat": 52.2757014, - "lon": -1.9529595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B97 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478595734, - "lat": 52.2413143, - "lon": 0.9171865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 478613629, - "lat": 52.2733990, - "lon": -1.9470495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B97 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478775616, - "lat": 52.4626092, - "lon": -1.8539534, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 212", - "royal_cypher": "EVIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 478776193, - "lat": 57.1872768, - "lon": -5.8955287, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478776589, - "lat": 57.2381175, - "lon": -5.8944241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:00", - "post_box:type": "wall", - "ref": "IV49 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478810247, - "lat": 57.6617618, - "lon": -2.7466085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "AB45", - "ref": "AB45 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478867429, - "lat": 51.4242240, - "lon": -0.0343403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478867700, - "lat": 51.4243121, - "lon": -0.0577855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478875188, - "lat": 57.6773324, - "lon": -2.5799123, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "AB45", - "ref": "AB45 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478875199, - "lat": 57.6762307, - "lon": -2.5753140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB45 38D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 478883518, - "lat": 51.5107524, - "lon": -0.9531611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG9 16" - } -}, -{ - "type": "node", - "id": 478911681, - "lat": 54.4680519, - "lon": -1.1954628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "63.09", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TS9 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478918456, - "lat": 51.4347450, - "lon": -0.0623883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 478923696, - "lat": 57.6675994, - "lon": -2.5236054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "AB45", - "ref": "AB45 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 479029678, - "lat": 51.5471450, - "lon": -0.0757126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479033646, - "lat": 51.3869873, - "lon": -2.3524093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA2 1002D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479036917, - "lat": 50.8039527, - "lon": -0.4917899, - "tags": { - "FIXME": "check position", - "amenity": "post_box", - "ref": "BN16 1477" - } -}, -{ - "type": "node", - "id": 479090537, - "lat": 51.5171758, - "lon": -0.9818537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:00" - } -}, -{ - "type": "node", - "id": 479090856, - "lat": 50.2438892, - "lon": -5.1864443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR16 66D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479100299, - "lat": 54.6538717, - "lon": -1.6898888, - "tags": { - "amenity": "post_box", - "ref": "DL14 15" - } -}, -{ - "type": "node", - "id": 479104460, - "lat": 51.3297820, - "lon": 0.6167396, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "post_box:type": "lamp", - "ref": "ME9 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479132205, - "lat": 51.6411181, - "lon": -0.7069467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HP10 156D" - } -}, -{ - "type": "node", - "id": 479159857, - "lat": 51.2499632, - "lon": -0.7646043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "ref": "GU11 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479159868, - "lat": 51.2489291, - "lon": -0.7674323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "ref": "GU11 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479163232, - "lat": 54.0965369, - "lon": -0.1775599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO16 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479171949, - "lat": 51.6180399, - "lon": -0.7161333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "HP10 37" - } -}, -{ - "type": "node", - "id": 479188809, - "lat": 51.2477840, - "lon": -0.7714142, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GU11 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479188846, - "lat": 51.2485115, - "lon": -0.7755475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU11 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479199688, - "lat": 52.0956266, - "lon": -2.3278807, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR14 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479199691, - "lat": 52.0922832, - "lon": -2.3346437, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 67", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 479260980, - "lat": 54.5927716, - "lon": -1.7456590, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL2 82" - } -}, -{ - "type": "node", - "id": 479261083, - "lat": 54.5697178, - "lon": -1.7370632, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL2 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479261591, - "lat": 55.1317379, - "lon": -1.5424792, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 4RG", - "ref": "NE24 567" - } -}, -{ - "type": "node", - "id": 479284284, - "lat": 54.5798681, - "lon": -1.7345708, - "tags": { - "amenity": "post_box", - "ref": "DL2 204" - } -}, -{ - "type": "node", - "id": 479295611, - "lat": 52.4253931, - "lon": -0.8919506, - "tags": { - "amenity": "post_box", - "ref": "LE16 56" - } -}, -{ - "type": "node", - "id": 479298289, - "lat": 50.2151258, - "lon": -5.1925149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 479300319, - "lat": 54.0962753, - "lon": -0.1877729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 479306403, - "lat": 50.9541625, - "lon": -1.2186049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO32 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479488552, - "lat": 51.3384310, - "lon": -2.2826502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA15 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479509927, - "lat": 51.3403932, - "lon": -1.7983990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN9 24" - } -}, -{ - "type": "node", - "id": 479511390, - "lat": 52.9104866, - "lon": -0.8148420, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG13 262" - } -}, -{ - "type": "node", - "id": 479524550, - "lat": 52.9109886, - "lon": -1.0329159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG12 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479524551, - "lat": 52.9056395, - "lon": -1.0348425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG12 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479524556, - "lat": 52.9091374, - "lon": -1.0420209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "NG12 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479524623, - "lat": 52.9119766, - "lon": -1.0422672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG12 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479570931, - "lat": 51.5271072, - "lon": -0.0965730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1V 136;EC1V 1361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479575813, - "lat": 51.5464807, - "lon": -0.0809060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "ref": "N1 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 479756800, - "lat": 54.5115236, - "lon": -1.3261948, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 479769924, - "lat": 54.2824722, - "lon": -0.3959091, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 34D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479783203, - "lat": 51.2511024, - "lon": -0.2674645, - "tags": { - "amenity": "post_box", - "ref": "RH3 182", - "source": "P141-0912", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 479800313, - "lat": 51.2403826, - "lon": -0.1705922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479803832, - "lat": 54.2870319, - "lon": -0.3986272, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 479872390, - "lat": 51.0867185, - "lon": 1.1754639, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 66" - } -}, -{ - "type": "node", - "id": 479905185, - "lat": 52.8052762, - "lon": -2.1098839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "description": "ASDA INDOOR PILLAR BOX", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST16 1601" - } -}, -{ - "type": "node", - "id": 479931114, - "lat": 50.8251499, - "lon": -0.5424101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-07", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN17 1486D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480005848, - "lat": 55.9641374, - "lon": -3.1933791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 146", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 480015085, - "lat": 51.2881577, - "lon": -0.2314703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480020926, - "lat": 51.2906092, - "lon": -0.2304726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 93D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480115990, - "lat": 52.2022795, - "lon": 0.1163644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB3 9", - "ref": "CB3 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480118373, - "lat": 52.2015554, - "lon": 0.1254005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB2 1", - "ref": "CB2 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480228427, - "lat": 53.2515381, - "lon": -0.5309516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 480297252, - "lat": 51.7467112, - "lon": 0.4890742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 418", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 480303647, - "lat": 53.7375899, - "lon": -2.7362479, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PR1 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 480324271, - "lat": 51.6730051, - "lon": -1.8586440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 131" - } -}, -{ - "type": "node", - "id": 480439868, - "lat": 51.7362868, - "lon": 0.5068065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 480448826, - "lat": 54.4907137, - "lon": -0.6245689, - "tags": { - "amenity": "post_box", - "ele": "46.749512", - "post_box:type": "pillar", - "ref": "YO21 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 480448829, - "lat": 54.4908024, - "lon": -0.6315133, - "tags": { - "amenity": "post_box", - "ele": "53.718994", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO21 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 480459502, - "lat": 54.4874093, - "lon": -0.6215216, - "tags": { - "amenity": "post_box", - "ele": "42.423584", - "name": "Whitby Sorting Office", - "post_box:type": "wall", - "ref": "YO21 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 480459509, - "lat": 54.4882819, - "lon": -0.6120207, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "post_box:type": "wall", - "ref": "YO22 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 480470297, - "lat": 54.4881931, - "lon": -0.6147471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO21 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 480475348, - "lat": 51.2683981, - "lon": -1.0396388, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "RG24", - "ref": "RG24 274" - } -}, -{ - "type": "node", - "id": 480697036, - "lat": 53.1075375, - "lon": -1.5562240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 998", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480721505, - "lat": 51.8672489, - "lon": -2.3344348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "mapillary": "1042714127312705", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 480759447, - "lat": 50.8367307, - "lon": -0.7802641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 1682", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 480771825, - "lat": 51.5669504, - "lon": -0.0025805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 21D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480835358, - "lat": 50.6683971, - "lon": -3.4407696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX3 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-14" - } -}, -{ - "type": "node", - "id": 480835370, - "lat": 50.6723177, - "lon": -3.4399915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX3 560D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-01-14" - } -}, -{ - "type": "node", - "id": 480866735, - "lat": 50.6742412, - "lon": -3.4042693, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX5 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 480906432, - "lat": 52.9556311, - "lon": -1.0927290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG4 450", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 480939962, - "lat": 52.9741782, - "lon": -1.0886480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "image": "https://www.mapillary.com/map/im/JSRiHGss5CN4F-1LLe38Pw", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 453", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 480952181, - "lat": 50.8754895, - "lon": 0.2604282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BN27 912D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 481010708, - "lat": 54.5289506, - "lon": -0.7167048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "YO21 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 481010719, - "lat": 54.5201708, - "lon": -0.7094255, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 481313166, - "lat": 52.7066980, - "lon": -2.5294035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 481608218, - "lat": 53.6895304, - "lon": -2.3291586, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 481608291, - "lat": 53.6898455, - "lon": -2.3281458, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 481643781, - "lat": 51.4800343, - "lon": -0.1074999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "no collection plate on 18/sep/2022 to confirm ref/times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 481644116, - "lat": 51.4786023, - "lon": -0.0966405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 481644164, - "lat": 51.4755260, - "lon": -0.0936365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 481663920, - "lat": 57.3845787, - "lon": -4.4009653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV3 53", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 482088543, - "lat": 54.5224607, - "lon": -1.3066499, - "tags": { - "amenity": "post_box", - "ref": "TS17 85" - } -}, -{ - "type": "node", - "id": 482150312, - "lat": 51.6447404, - "lon": -3.3276293, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 482340367, - "lat": 52.1220843, - "lon": -2.3443878, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "description": "In gatepost of number 112. Very peely paint", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 482363362, - "lat": 56.3921851, - "lon": -4.6171141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:25", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK20 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 482371771, - "lat": 56.3943560, - "lon": -4.6246218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:45; Sa 10:25", - "mapillary": "239630347609196", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK20 94", - "source": "survey", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 482497340, - "lat": 53.2457976, - "lon": -2.6103844, - "tags": { - "amenity": "post_box", - "ref": "CW8 95" - } -}, -{ - "type": "node", - "id": 482497420, - "lat": 53.2409290, - "lon": -2.6093362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 482651731, - "lat": 52.4758033, - "lon": -0.9383256, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 9", - "ref": "LE16 63" - } -}, -{ - "type": "node", - "id": 482699081, - "lat": 52.1881635, - "lon": 0.8798033, - "tags": { - "amenity": "post_box", - "ref": "IP30 2143" - } -}, -{ - "type": "node", - "id": 482699082, - "lat": 52.1892740, - "lon": 0.8915145, - "tags": { - "amenity": "post_box", - "ref": "IP30 2075" - } -}, -{ - "type": "node", - "id": 482707620, - "lat": 50.9231733, - "lon": 0.9763314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2358522694334451", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN29 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-30" - } -}, -{ - "type": "node", - "id": 482712825, - "lat": 52.6064661, - "lon": -0.2420852, - "tags": { - "amenity": "post_box", - "name": "Chadburn" - } -}, -{ - "type": "node", - "id": 482729886, - "lat": 52.2190647, - "lon": -0.2606825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE19 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dictaphone" - } -}, -{ - "type": "node", - "id": 482748707, - "lat": 50.4081273, - "lon": -4.2194335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "115117541130942", - "name": "Windmill Hill", - "post_box:type": "pillar", - "ref": "PL12 629D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 482752616, - "lat": 50.4065931, - "lon": -4.2092622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Coombe Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL12 642D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-03-20" - } -}, -{ - "type": "node", - "id": 482752617, - "lat": 50.4076377, - "lon": -4.2115733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "195632722996293", - "name": "Culver Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 632D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-14" - } -}, -{ - "type": "node", - "id": 482776592, - "lat": 52.5267489, - "lon": -2.0010077, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B71 39", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 482793839, - "lat": 50.9446126, - "lon": -0.9949719, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO8 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 482798919, - "lat": 53.6834589, - "lon": -2.3336894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1878018739370288", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2024-06-24" - } -}, -{ - "type": "node", - "id": 482798920, - "lat": 53.6916574, - "lon": -2.3184115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 482843948, - "lat": 54.5239302, - "lon": -1.3195546, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 482901138, - "lat": 51.6699617, - "lon": -3.3619183, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 482986993, - "lat": 53.2514212, - "lon": -2.7909137, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA6 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483228971, - "lat": 51.9722805, - "lon": 1.3711234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1404" - } -}, -{ - "type": "node", - "id": 483229012, - "lat": 51.9704995, - "lon": 1.3595911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483229080, - "lat": 51.9739211, - "lon": 1.3662543, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483348320, - "lat": 52.9922172, - "lon": -2.8265588, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483379397, - "lat": 51.2016765, - "lon": -0.4199218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "RH5 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483397180, - "lat": 51.1710162, - "lon": -0.3611856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH5 133" - } -}, -{ - "type": "node", - "id": 483399271, - "lat": 53.7395944, - "lon": -2.6892182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483553840, - "lat": 51.5403065, - "lon": -0.2090913, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 69D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 483565635, - "lat": 52.1014282, - "lon": -2.3196033, - "tags": { - "amenity": "post_box", - "historic_operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan Scotland", - "post_box:platecode": "no", - "post_box:type": "lamp", - "ref": "WR14 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 483633032, - "lat": 52.7006407, - "lon": -2.5303413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 484177735, - "lat": 51.2383785, - "lon": -0.7790888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU9 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 484177736, - "lat": 51.2379554, - "lon": -0.7873234, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 484559583, - "lat": 55.8402494, - "lon": -4.2739240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G41 101D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 484562258, - "lat": 50.5213007, - "lon": -4.2125995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 484569789, - "lat": 52.9699235, - "lon": -2.6893959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 673D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-01-24" - } -}, -{ - "type": "node", - "id": 484570076, - "lat": 52.9741227, - "lon": -2.6792786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 6??D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 484675254, - "lat": 52.4797386, - "lon": -0.9623291, - "tags": { - "amenity": "post_box", - "note": "Has the wrong name plate on it", - "ref": "LE16 88" - } -}, -{ - "type": "node", - "id": 484780859, - "lat": 51.5900719, - "lon": -1.8186187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 399" - } -}, -{ - "type": "node", - "id": 484828024, - "lat": 51.1935238, - "lon": -0.6142311, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-12", - "collection_times": "Mo-Fr 17:00, Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU7 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 484828045, - "lat": 51.1973160, - "lon": -0.6188187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU7 3D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2018-01-27" - } -}, -{ - "type": "node", - "id": 484829201, - "lat": 50.9610138, - "lon": -1.1391067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "collection_times_checked": "2020-02-06", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 484829234, - "lat": 50.9775698, - "lon": -1.1274551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 484829250, - "lat": 50.9787315, - "lon": -1.1158153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-02-06", - "note": "Yes the ref of this postcode does have the suffix 'D'. Given the recent change in collection times I suspect that this indicates that the box is now emptied as part of the delivery round.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 484875154, - "lat": 51.1924533, - "lon": -0.6011732, - "tags": { - "amenity": "post_box", - "source": "audio" - } -}, -{ - "type": "node", - "id": 484899337, - "lat": 51.2147834, - "lon": -0.6339788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU3 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 484930618, - "lat": 50.7989748, - "lon": -3.8153543, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 485021336, - "lat": 52.6983309, - "lon": -2.5245957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 485034168, - "lat": 50.6724034, - "lon": -4.4959865, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 485054029, - "lat": 52.6969899, - "lon": -2.5288221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 485239190, - "lat": 51.7221965, - "lon": -2.1143049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL6 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 485299099, - "lat": 55.2318439, - "lon": -2.1798610, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE19 498" - } -}, -{ - "type": "node", - "id": 485306060, - "lat": 55.2363060, - "lon": -2.1845034, - "tags": { - "amenity": "post_box", - "ref": "NE19 773" - } -}, -{ - "type": "node", - "id": 485348535, - "lat": 53.1732446, - "lon": -3.0531249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH7 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 485348548, - "lat": 53.1751768, - "lon": -3.0595648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 485354220, - "lat": 51.5258601, - "lon": -0.1307868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC1H 217D;WC1H 17D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 485354268, - "lat": 51.5514568, - "lon": -0.0979899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "N5 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26585663" - } -}, -{ - "type": "node", - "id": 485544184, - "lat": 50.5813544, - "lon": -3.4785347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 2D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 485544728, - "lat": 50.5789412, - "lon": -3.4796181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 485611694, - "lat": 50.7384442, - "lon": -3.5224464, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 485617704, - "lat": 53.1214585, - "lon": -1.5931141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 939", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 485630121, - "lat": 53.1136082, - "lon": -1.5769671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "125.0964355", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 926" - } -}, -{ - "type": "node", - "id": 485647186, - "lat": 53.1066028, - "lon": -1.5627864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "107.0716553", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 970" - } -}, -{ - "type": "node", - "id": 485655184, - "lat": 52.9537884, - "lon": -1.1550733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG1 100", - "ref:GB:uprn": "10015835583", - "source": "survey" - } -}, -{ - "type": "node", - "id": 485656605, - "lat": 53.1046328, - "lon": -1.5652426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 927" - } -}, -{ - "type": "node", - "id": 485661773, - "lat": 52.9432932, - "lon": -1.1406500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 101D", - "ref:GB:uprn": "10015326545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 485686589, - "lat": 52.9228621, - "lon": -1.1255878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 485686597, - "lat": 52.9350561, - "lon": -1.1351062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 485797369, - "lat": 52.2383443, - "lon": -1.4470594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV33 57D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 485837729, - "lat": 53.1925980, - "lon": -3.0535469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH5 373" - } -}, -{ - "type": "node", - "id": 485949273, - "lat": 52.2416177, - "lon": 0.8614569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2333", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 485992888, - "lat": 52.2349865, - "lon": -1.4619417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV33 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 486057849, - "lat": 52.9126278, - "lon": -1.1127467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "post_box:type": "pillar", - "ref": "NG12 356", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 486076656, - "lat": 52.9146483, - "lon": -1.1086551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "post_box:type": "pillar", - "ref": "NG12 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 486077306, - "lat": 51.7117034, - "lon": -0.4918504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 486078894, - "lat": 52.2365135, - "lon": -1.4562599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "note": "called by to confirm location. This box is some distance from where Royal Mail say it is.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV33 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 486092090, - "lat": 53.2026184, - "lon": -3.0447598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 486096459, - "lat": 51.5726454, - "lon": 0.6398906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SS9 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 486097326, - "lat": 51.2272178, - "lon": -0.3700165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH4 119" - } -}, -{ - "type": "node", - "id": 486172861, - "lat": 51.1859798, - "lon": -0.6056326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GU7 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 486224233, - "lat": 50.8971693, - "lon": -0.5413988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "name": "Houghton Bridge", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN18 1327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 486270575, - "lat": 54.0687429, - "lon": -2.2770635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD24 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 486275896, - "lat": 50.4392488, - "lon": -4.0115063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 486561171, - "lat": 51.6437567, - "lon": -0.7109432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "ref": "HP10 157" - } -}, -{ - "type": "node", - "id": 486619463, - "lat": 53.2038791, - "lon": -3.0325095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 486625869, - "lat": 51.7333048, - "lon": 0.4972697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CM2 37" - } -}, -{ - "type": "node", - "id": 486662761, - "lat": 51.5209566, - "lon": 0.0489352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 486662766, - "lat": 51.5202545, - "lon": 0.0542505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 487071796, - "lat": 51.7514544, - "lon": 0.4690855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 487095024, - "lat": 54.5156150, - "lon": -1.3266785, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 487788051, - "lat": 51.2625539, - "lon": -2.1823590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "BA13 24" - } -}, -{ - "type": "node", - "id": 487855840, - "lat": 53.7098344, - "lon": -0.8826496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 487856080, - "lat": 53.7131101, - "lon": -0.8789778, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 487856190, - "lat": 53.7128743, - "lon": -0.8865434, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 487856320, - "lat": 53.7126425, - "lon": -0.8697335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN14 60", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 488188778, - "lat": 51.1134652, - "lon": 0.9532734, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 488188875, - "lat": 51.0947288, - "lon": 0.9394712, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN25", - "ref": "TN25 171", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 488188876, - "lat": 51.0916711, - "lon": 0.9447688, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 488267241, - "lat": 51.0664501, - "lon": 0.8899145, - "tags": { - "amenity": "post_box", - "postal_code": "TN26", - "ref": "TN26 134", - "source": "survey" - } -}, -{ - "type": "node", - "id": 488593377, - "lat": 51.7417819, - "lon": -0.9614124, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX9 793" - } -}, -{ - "type": "node", - "id": 488593402, - "lat": 51.7387257, - "lon": -0.9662390, - "tags": { - "amenity": "post_box", - "ref": "OX9 923" - } -}, -{ - "type": "node", - "id": 488689301, - "lat": 51.3959904, - "lon": -1.2620204, - "tags": { - "amenity": "post_box", - "postal_code": "RG19", - "ref": "RG19 36" - } -}, -{ - "type": "node", - "id": 488787533, - "lat": 51.7431936, - "lon": -0.9705834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 08:45", - "mapillary": "256045879596376", - "post_box:type": "pillar", - "ref": "OX9 397", - "survey:date": "2020-12-09" - } -}, -{ - "type": "node", - "id": 488787583, - "lat": 51.7431914, - "lon": -0.9765119, - "tags": { - "amenity": "post_box", - "ref": "OX9 676" - } -}, -{ - "type": "node", - "id": 488797424, - "lat": 51.3992990, - "lon": -1.2595120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1045514386206957", - "note": "there is no visible ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG19 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 488816616, - "lat": 51.7427190, - "lon": -0.9781867, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 488868283, - "lat": 51.7508082, - "lon": -0.9762553, - "tags": { - "amenity": "post_box", - "ref": "OX9 896" - } -}, -{ - "type": "node", - "id": 488868386, - "lat": 51.7517843, - "lon": -0.9724665, - "tags": { - "amenity": "post_box", - "ref": "OX9 398" - } -}, -{ - "type": "node", - "id": 489411834, - "lat": 51.2517883, - "lon": 0.7294383, - "tags": { - "amenity": "post_box", - "name": "Woodside Green", - "postal_code": "ME17", - "ref": "ME17 120" - } -}, -{ - "type": "node", - "id": 489413403, - "lat": 51.2370939, - "lon": 0.7181877, - "tags": { - "amenity": "post_box", - "name": "Lenham Square", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ME17", - "ref": "ME17 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 489600823, - "lat": 52.9585104, - "lon": -1.1801965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "ele": "30.647583", - "latest_survey_date": "2015-04-05", - "post_box:type": "lamp", - "ref": "NG7 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 489620076, - "lat": 52.3068085, - "lon": 0.9399075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2288D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 489663371, - "lat": 51.4319788, - "lon": -2.5550399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "BS4 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 489731940, - "lat": 50.7046110, - "lon": -3.5582545, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 489773375, - "lat": 51.9440105, - "lon": -2.0434366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "479076796707640", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 130", - "survey:date": "2020-01-19" - } -}, -{ - "type": "node", - "id": 489783600, - "lat": 51.9657711, - "lon": -2.0608101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 489799419, - "lat": 51.9130383, - "lon": -2.0698653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Penfold pillar box", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1333230", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL50 45", - "ref:GB:nhle": "1333230", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26617994" - } -}, -{ - "type": "node", - "id": 489799434, - "lat": 51.9403946, - "lon": -2.0577980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 327" - } -}, -{ - "type": "node", - "id": 489826565, - "lat": 52.2709992, - "lon": 0.9245776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2091" - } -}, -{ - "type": "node", - "id": 489827605, - "lat": 52.9558552, - "lon": -1.1687869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 23D", - "ref:GB:uprn": "10015285398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 489827612, - "lat": 52.9560335, - "lon": -1.1758246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 489956930, - "lat": 51.4419790, - "lon": -2.5788197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS3 1123", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 489961155, - "lat": 52.2185854, - "lon": 0.1448453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 489963765, - "lat": 52.2225567, - "lon": 0.1480148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 155D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 489966716, - "lat": 52.2256686, - "lon": 0.1517075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB4 1", - "ref": "CB4 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 489970285, - "lat": 52.2279146, - "lon": 0.1449799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 489976927, - "lat": 52.2173468, - "lon": 0.1389854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 489981595, - "lat": 50.9886532, - "lon": 0.8916629, - "tags": { - "amenity": "post_box", - "mapillary": "2992151171009616", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN29 55", - "source": "survey", - "survey:date": "2020-07-22" - } -}, -{ - "type": "node", - "id": 489994209, - "lat": 51.2459448, - "lon": 1.0051079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 315", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490088360, - "lat": 51.8666049, - "lon": -1.4783879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "167023568672192", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX7 457", - "survey:date": "2020-04-25" - } -}, -{ - "type": "node", - "id": 490116401, - "lat": 52.2145745, - "lon": -0.2895230, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 490144721, - "lat": 57.5392932, - "lon": -2.4666609, - "tags": { - "amenity": "post_box", - "postal_code": "AB53", - "ref": "AB53 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490144761, - "lat": 57.5375606, - "lon": -2.4577104, - "tags": { - "amenity": "post_box", - "postal_code": "AB53", - "ref": "AB53 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490172365, - "lat": 53.3163687, - "lon": -2.2470019, - "tags": { - "amenity": "post_box", - "ref": "SK9 695" - } -}, -{ - "type": "node", - "id": 490179452, - "lat": 57.5425588, - "lon": -2.3352636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "AB53", - "ref": "AB53 58", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490181623, - "lat": 57.5433342, - "lon": -2.3247853, - "tags": { - "amenity": "post_box", - "postal_code": "AB53", - "ref": "AB53 28", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490200851, - "lat": 51.7478520, - "lon": -0.9897850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX9 183" - } -}, -{ - "type": "node", - "id": 490216076, - "lat": 51.8222593, - "lon": -1.5403497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX29 402D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 490216103, - "lat": 51.8349042, - "lon": -1.5437522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX29 455", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490251183, - "lat": 53.3269168, - "lon": -3.1166034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier CH60 367 on Broad Lane, Heswall, opposite Banks Road", - "name": "Mostyn Avenue | Broad Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Broad Lane, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 490252402, - "lat": 53.7975331, - "lon": -0.9251486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO8 42" - } -}, -{ - "type": "node", - "id": 490253798, - "lat": 51.4981723, - "lon": -0.1532068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 23;SW1X 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490253824, - "lat": 51.4968646, - "lon": -0.1532126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 21;SW1X 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490256317, - "lat": 51.4968497, - "lon": -0.1513368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 490257881, - "lat": 53.8183054, - "lon": -0.9155696, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO8 29" - } -}, -{ - "type": "node", - "id": 490259458, - "lat": 53.7751190, - "lon": -0.9235664, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 490262338, - "lat": 53.1779269, - "lon": -1.6063710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 991" - } -}, -{ - "type": "node", - "id": 490265958, - "lat": 53.1649927, - "lon": -1.5951100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "104.6684570", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DE4 941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 490615473, - "lat": 53.3416784, - "lon": -3.0822554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "EIIR lamp box pier CH61 282 in Barnston Village nearly opposite Storeton Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Barnston Village.jpg" - } -}, -{ - "type": "node", - "id": 490695186, - "lat": 57.3743361, - "lon": -2.0894878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "AB41", - "ref": "AB41 599", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 490695189, - "lat": 57.3704292, - "lon": -2.0867761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "AB41", - "ref": "AB41 473D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 491139846, - "lat": 53.8065396, - "lon": -0.8713176, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 491147614, - "lat": 53.8157199, - "lon": -0.9168045, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 81" - } -}, -{ - "type": "node", - "id": 491177115, - "lat": 50.6799885, - "lon": -3.8822427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 491191129, - "lat": 50.6754086, - "lon": -3.8494460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 491219569, - "lat": 53.5165975, - "lon": -1.6335683, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 491219574, - "lat": 53.5215322, - "lon": -1.6309210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S36 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 491267425, - "lat": 52.5368603, - "lon": -1.8040235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B76 1080", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 491427987, - "lat": 51.3978454, - "lon": -0.7287343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "RG12 190" - } -}, -{ - "type": "node", - "id": 491460194, - "lat": 52.2211197, - "lon": -1.0360355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN7 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 491471339, - "lat": 51.7495592, - "lon": -0.9824931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX9 271", - "survey:date": "2021-06-02", - "wikimedia_commons": "File:The Six Bells - geograph.org.uk - 2103072.jpg" - } -}, -{ - "type": "node", - "id": 491482904, - "lat": 51.7440578, - "lon": -0.9812628, - "tags": { - "amenity": "post_box", - "ref": "OX9 868" - } -}, -{ - "type": "node", - "id": 491482967, - "lat": 51.7366710, - "lon": -0.9944805, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX9 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 491485577, - "lat": 53.3358812, - "lon": -2.2015047, - "tags": { - "amenity": "post_box", - "ref": "SK9 69" - } -}, -{ - "type": "node", - "id": 491485578, - "lat": 53.3357983, - "lon": -2.2090429, - "tags": { - "amenity": "post_box", - "ref": "SK9 720" - } -}, -{ - "type": "node", - "id": 491485580, - "lat": 53.3378379, - "lon": -2.2316297, - "tags": { - "amenity": "post_box", - "ref": "SK9 633" - } -}, -{ - "type": "node", - "id": 491518304, - "lat": 51.8845782, - "lon": 0.6371890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM77 34" - } -}, -{ - "type": "node", - "id": 491529529, - "lat": 51.5080707, - "lon": -0.2030915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 491560592, - "lat": 50.7459406, - "lon": -1.5679775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO41 168", - "survey:date": "2021-08-08", - "wikimedia_commons": "File:Efford, postbox № SO41 168 - geograph.org.uk - 2455144.jpg" - } -}, -{ - "type": "node", - "id": 491560629, - "lat": 50.7604469, - "lon": -1.5434908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 25" - } -}, -{ - "type": "node", - "id": 491584789, - "lat": 51.8755178, - "lon": -2.2688597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL2 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 491640123, - "lat": 52.9167788, - "lon": -1.1072770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "post_box:type": "lamp", - "ref": "NG2 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 491821647, - "lat": 51.5685417, - "lon": 0.0073014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "826598168264082", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E11 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 491821993, - "lat": 51.5684476, - "lon": 0.0020492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 16", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492004142, - "lat": 52.8990721, - "lon": 0.4915407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:25", - "name": "PE31 7LD – Collingwood Close | Heacham", - "ref": "PE31 434" - } -}, -{ - "type": "node", - "id": 492004157, - "lat": 52.9023702, - "lon": 0.4890762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "name": "PE31 7TB – Cheney Crescent | Heacham", - "ref": "PE31 294" - } -}, -{ - "type": "node", - "id": 492054288, - "lat": 51.6283290, - "lon": -0.7426181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "HP13 26" - } -}, -{ - "type": "node", - "id": 492093232, - "lat": 51.0513753, - "lon": -3.9879937, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 492095869, - "lat": 52.6525268, - "lon": -2.8256361, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 442", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492097452, - "lat": 52.6435969, - "lon": -2.8084524, - "tags": { - "amenity": "post_box", - "ref": "SY5 572", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492099382, - "lat": 56.4076514, - "lon": -4.9836229, - "tags": { - "amenity": "post_box", - "ref": "PA33 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492099548, - "lat": 52.6358864, - "lon": -2.7833104, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY5 174", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492099565, - "lat": 52.5740124, - "lon": -2.8884123, - "tags": { - "amenity": "post_box", - "ref": "SY5 220", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492118102, - "lat": 52.6765923, - "lon": -2.7931117, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492135753, - "lat": 52.6164372, - "lon": -2.8507859, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY5 136", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492293640, - "lat": 54.0925847, - "lon": -0.1816633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492443869, - "lat": 57.5744192, - "lon": -4.4411159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV7 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492460903, - "lat": 53.7111472, - "lon": -0.8636116, - "tags": { - "amenity": "post_box", - "ref": "DN14 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 492460953, - "lat": 53.7145015, - "lon": -0.8634040, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 492498742, - "lat": 52.2679156, - "lon": 0.3287558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB25 247" - } -}, -{ - "type": "node", - "id": 492500476, - "lat": 52.2787879, - "lon": 0.3306434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB25 248" - } -}, -{ - "type": "node", - "id": 492502734, - "lat": 52.2835578, - "lon": 0.3251131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CB25 243" - } -}, -{ - "type": "node", - "id": 492503360, - "lat": 57.5555773, - "lon": -5.6090040, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492504584, - "lat": 52.2753016, - "lon": 0.3272095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB25 245", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 492505039, - "lat": 52.2800621, - "lon": 0.3242745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB25 241", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 492621956, - "lat": 52.7102265, - "lon": -1.9641661, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 492621958, - "lat": 52.6917681, - "lon": -1.9859073, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 492731620, - "lat": 57.5655357, - "lon": -4.0385073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 73D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492731775, - "lat": 57.5642675, - "lon": -4.0343419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 99D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492751353, - "lat": 57.5698376, - "lon": -4.0379679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "IV2 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492833072, - "lat": 57.4942316, - "lon": -4.1394247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 115D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 492884731, - "lat": 57.4812550, - "lon": -4.1438268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 346D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 492887952, - "lat": 50.7316136, - "lon": -1.5953900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 134" - } -}, -{ - "type": "node", - "id": 492887989, - "lat": 50.7871361, - "lon": -1.6697396, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 68" - } -}, -{ - "type": "node", - "id": 492957891, - "lat": 56.0178332, - "lon": -3.7123609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 111D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 493187542, - "lat": 51.6161563, - "lon": -3.9729736, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-16" - } -}, -{ - "type": "node", - "id": 493232150, - "lat": 50.9927859, - "lon": -1.3274322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 15:00; Sa 07:00", - "collection_times_checked": "2018-12-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493240048, - "lat": 51.7572749, - "lon": 0.4915658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM1 476", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 493261351, - "lat": 52.9820092, - "lon": -3.3736717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 493261537, - "lat": 52.9780112, - "lon": -3.3846695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 493364399, - "lat": 52.9905852, - "lon": -3.3801022, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 493525264, - "lat": 50.5586746, - "lon": -3.5551868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 493528935, - "lat": 50.5553032, - "lon": -3.5469529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 493533844, - "lat": 50.5528795, - "lon": -3.5390189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 493538387, - "lat": 50.5487340, - "lon": -3.5372841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ14 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 493541430, - "lat": 57.1756408, - "lon": -2.1468726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "AB24", - "ref": "AB24 598", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493553498, - "lat": 57.1690899, - "lon": -2.1030936, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "W.T.Allen & Co London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB24 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493558520, - "lat": 51.9904297, - "lon": -1.0455336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 493558552, - "lat": 51.9904614, - "lon": -1.0485535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 493584489, - "lat": 57.1015420, - "lon": -2.0802033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "AB12", - "ref": "AB12 406", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493584492, - "lat": 57.0986882, - "lon": -2.0797913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "AB12", - "ref": "AB12 454", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493586921, - "lat": 57.0688378, - "lon": -2.1071988, - "tags": { - "amenity": "post_box", - "postal_code": "AB12", - "ref": "AB12 297", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493589180, - "lat": 57.0593464, - "lon": -2.1321443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "AB12 427", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493591930, - "lat": 51.2778293, - "lon": -0.3648552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 493593694, - "lat": 57.0589459, - "lon": -2.1398694, - "tags": { - "addr:postcode": "AB12 4SS", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:type": "pillar", - "ref": "AB12 532", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493597293, - "lat": 57.0876279, - "lon": -2.1872522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "AB12", - "ref": "AB12 346", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493604095, - "lat": 57.0305890, - "lon": -2.2153428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "AB39", - "ref": "AB39 318", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493634131, - "lat": 52.2319645, - "lon": 0.9181640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493634135, - "lat": 52.2581889, - "lon": 0.9180505, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2091", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 493634138, - "lat": 52.2667224, - "lon": 0.9426863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP31 2093" - } -}, -{ - "type": "node", - "id": 493646016, - "lat": 51.2816485, - "lon": -1.1109136, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 305" - } -}, -{ - "type": "node", - "id": 493649465, - "lat": 52.2107628, - "lon": -0.2629034, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493683518, - "lat": 53.8470218, - "lon": -1.6536259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS18 958" - } -}, -{ - "type": "node", - "id": 493683529, - "lat": 53.8723270, - "lon": -1.6947043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LS20 498D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493683531, - "lat": 53.8804871, - "lon": -1.7186154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "LS20 495", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 493683535, - "lat": 53.8889425, - "lon": -1.7372590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS29 876", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 493683538, - "lat": 53.8907428, - "lon": -1.7446462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS29 870", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493706433, - "lat": 51.6903942, - "lon": -4.9268281, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 493712313, - "lat": 53.8926803, - "lon": -1.7411261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS29 885", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493715614, - "lat": 53.9023833, - "lon": -1.7679872, - "tags": { - "amenity": "post_box", - "note": "in wall", - "ref": "LS29 863" - } -}, -{ - "type": "node", - "id": 493733418, - "lat": 50.7255520, - "lon": -1.5893216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO41 149", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 493758970, - "lat": 53.9338234, - "lon": -1.8829465, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS29 836", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 493763065, - "lat": 50.7400976, - "lon": -1.6211755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO41 75" - } -}, -{ - "type": "node", - "id": 493763078, - "lat": 50.8978350, - "lon": -1.6006096, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SO43 8", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO43 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493763080, - "lat": 50.8962760, - "lon": -1.5893275, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 493763087, - "lat": 50.8764223, - "lon": -1.5768908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO43 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493763109, - "lat": 50.8725201, - "lon": -1.5761214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO43 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 493763110, - "lat": 50.8725142, - "lon": -1.5761426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO43 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493777677, - "lat": 51.2601043, - "lon": -2.1834748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "BA13 1" - } -}, -{ - "type": "node", - "id": 493782254, - "lat": 53.8750618, - "lon": -1.8919496, - "tags": { - "amenity": "post_box", - "note": "franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493788182, - "lat": 53.8395662, - "lon": -0.4244702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "4.451782", - "post_box:type": "wall", - "ref": "HU17 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 493792068, - "lat": 53.8227215, - "lon": -1.6623567, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS13 738", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493792069, - "lat": 53.8139836, - "lon": -1.6592374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS13 974" - } -}, -{ - "type": "node", - "id": 493792070, - "lat": 53.8365467, - "lon": -1.6567346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS18 595" - } -}, -{ - "type": "node", - "id": 493797806, - "lat": 53.3025883, - "lon": -1.6267745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00", - "colour": "red", - "manufacturer:wikidata": "Q125810324", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "S32 291D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box S32 291D" - } -}, -{ - "type": "node", - "id": 493841229, - "lat": 53.4863644, - "lon": -2.2949304, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 493843724, - "lat": 55.9287847, - "lon": -4.1574051, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 493843741, - "lat": 55.9260214, - "lon": -4.1567367, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 493855503, - "lat": 51.3627455, - "lon": 0.2048194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA4 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 493861669, - "lat": 55.8903631, - "lon": -3.2009023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "471386044472663", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH10 368", - "survey:date": "2021-09-16" - } -}, -{ - "type": "node", - "id": 493972813, - "lat": 53.1553306, - "lon": -4.0431469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 493977498, - "lat": 52.4771214, - "lon": -0.9250624, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 9", - "ref": "LE16 1" - } -}, -{ - "type": "node", - "id": 493977499, - "lat": 52.4784188, - "lon": -0.9207989, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 7", - "ref": "LE16 6" - } -}, -{ - "type": "node", - "id": 493977500, - "lat": 52.4787407, - "lon": -0.9121144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "LE16 7AA", - "ref": "LE16 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 493977501, - "lat": 52.4821674, - "lon": -0.9324864, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 9", - "ref": "LE16 75" - } -}, -{ - "type": "node", - "id": 494080767, - "lat": 53.8359411, - "lon": -1.7061118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD10 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 494147696, - "lat": 57.3283975, - "lon": -6.4038465, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV47 88", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494147700, - "lat": 57.3169706, - "lon": -6.4412146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "name": "Fiskavaig Road End", - "old_ref": "P134", - "ref": "IV47 134", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494147705, - "lat": 57.3203866, - "lon": -6.4196597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "old_ref": "P118", - "ref": "IV47 118", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494147709, - "lat": 57.3235829, - "lon": -6.4126585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "ref": "IV47 123", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494147731, - "lat": 57.3007985, - "lon": -6.3518116, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV47 121", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494147741, - "lat": 57.2984885, - "lon": -6.3021484, - "tags": { - "amenity": "post_box", - "ref": "IV47 117", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494197185, - "lat": 51.6214888, - "lon": -2.5099091, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS35 180D" - } -}, -{ - "type": "node", - "id": 494231532, - "lat": 51.0619967, - "lon": -0.3282791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "name": "Market Square", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 494232897, - "lat": 50.7352508, - "lon": -3.3575710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 494243060, - "lat": 51.2407518, - "lon": -1.2650801, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 494258759, - "lat": 56.0453486, - "lon": -3.3489859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 38D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 494318313, - "lat": 53.8339937, - "lon": -1.7096880, - "tags": { - "amenity": "post_box", - "ref": "BD10 252" - } -}, -{ - "type": "node", - "id": 494519311, - "lat": 52.6428221, - "lon": -1.9452210, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 181", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494519424, - "lat": 52.6389143, - "lon": -1.9403811, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 12", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 494519474, - "lat": 52.6480335, - "lon": -1.9493931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WS8 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "observation" - } -}, -{ - "type": "node", - "id": 494527586, - "lat": 52.9854946, - "lon": -1.1865768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "39.539551", - "post_box:type": "lamp", - "ref": "NG6 526D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 494596300, - "lat": 52.9861904, - "lon": -1.1808757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 151", - "ref:GB:uprn": "10015383054", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 494851077, - "lat": 53.0996496, - "lon": -1.1183210, - "tags": { - "amenity": "post_box", - "ref": "NG21 89" - } -}, -{ - "type": "node", - "id": 494901930, - "lat": 56.9611324, - "lon": -2.2282775, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "AB39", - "ref": "AB39 418", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 494902017, - "lat": 56.9635291, - "lon": -2.2269075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "AB39", - "ref": "AB39 368", - "source": "survey" - } -}, -{ - "type": "node", - "id": 494914462, - "lat": 56.8446708, - "lon": -2.2796027, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP8", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "DD10", - "ref": "DD10 92", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 494940361, - "lat": 51.3784866, - "lon": 0.2252458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA4 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 494948673, - "lat": 52.6329194, - "lon": -1.1702241, - "tags": { - "amenity": "post_box", - "ref": "LE3 807" - } -}, -{ - "type": "node", - "id": 495023594, - "lat": 54.5709462, - "lon": -1.2858266, - "tags": { - "amenity": "post_box", - "ref": "TS18 296" - } -}, -{ - "type": "node", - "id": 495140692, - "lat": 52.6305648, - "lon": -1.1731351, - "tags": { - "amenity": "post_box", - "ref": "LE3 34" - } -}, -{ - "type": "node", - "id": 495206455, - "lat": 51.7498529, - "lon": -0.9658524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX9 406" - } -}, -{ - "type": "node", - "id": 495207270, - "lat": 52.8309954, - "lon": -1.1733561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co., London, SE1", - "post_box:type": "lamp", - "ref": "LE12 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495207371, - "lat": 52.8313008, - "lon": -1.1766221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "LE12 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495213272, - "lat": 51.7449581, - "lon": -0.9671388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX9 272" - } -}, -{ - "type": "node", - "id": 495213281, - "lat": 51.7417912, - "lon": -0.9671856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX9 273" - } -}, -{ - "type": "node", - "id": 495318082, - "lat": 56.7072710, - "lon": -2.4605610, - "tags": { - "amenity": "post_box", - "postal_code": "DD10", - "ref": "DD10 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495354960, - "lat": 56.6559124, - "lon": -2.5126423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "DD11", - "ref": "DD11 331", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495355202, - "lat": 51.2544920, - "lon": -2.1871440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "mapillary": "1351397648667964", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BA13 35", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 495410816, - "lat": 52.6305429, - "lon": -1.1662705, - "tags": { - "amenity": "post_box", - "ref": "LE3 719" - } -}, -{ - "type": "node", - "id": 495485069, - "lat": 52.7190837, - "lon": -2.7289692, - "tags": { - "amenity": "post_box", - "ref": "SY2 557" - } -}, -{ - "type": "node", - "id": 495494329, - "lat": 56.5449603, - "lon": -2.6216862, - "tags": { - "amenity": "post_box", - "postal_code": "DD11", - "ref": "DD11 316", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495494535, - "lat": 56.5164165, - "lon": -2.6678722, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DD7", - "ref": "DD7 236D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495494590, - "lat": 56.5020675, - "lon": -2.6970346, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DD7", - "ref": "DD7 297D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495511704, - "lat": 56.5007869, - "lon": -2.7068471, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "DD7", - "ref": "DD7 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495551150, - "lat": 51.9602353, - "lon": -2.6624368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "HR2 226", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495551151, - "lat": 51.9588403, - "lon": -2.7069866, - "tags": { - "amenity": "post_box", - "name": "Cross Collar" - } -}, -{ - "type": "node", - "id": 495555462, - "lat": 54.9658206, - "lon": -2.1026977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE46 11" - } -}, -{ - "type": "node", - "id": 495555463, - "lat": 54.9624029, - "lon": -2.0997062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE46 100" - } -}, -{ - "type": "node", - "id": 495555464, - "lat": 54.9559154, - "lon": -2.1072649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 495562262, - "lat": 52.5190556, - "lon": -2.0131907, - "tags": { - "amenity": "post_box", - "ref": "B70 8", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 495570669, - "lat": 50.7786345, - "lon": -3.2287815, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495570879, - "lat": 50.7791671, - "lon": -3.2117441, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495573482, - "lat": 51.4333426, - "lon": -0.8746012, - "tags": { - "amenity": "post_box", - "mapillary": "385695579833277", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG41 112D", - "royal_cypher": "EIIR", - "survey:date": "2024-01-05" - } -}, -{ - "type": "node", - "id": 495592441, - "lat": 51.7803734, - "lon": -1.3739697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX29 813D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495592544, - "lat": 51.7806211, - "lon": -1.3774164, - "tags": { - "addr:city": "Eynsham, Witney", - "addr:street": "Acre End Street", - "amenity": "post_box", - "check_date:collection_times": "2023-01-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX29 629", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 495599349, - "lat": 51.7831004, - "lon": -1.3822377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1669902513215220", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX29 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495641876, - "lat": 53.4432326, - "lon": -1.3197185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S65 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495641927, - "lat": 53.4250126, - "lon": -1.2149613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42500 -1.21495", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S66 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495641957, - "lat": 53.4270253, - "lon": -1.2084945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42704 -1.20851", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S66 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 495642389, - "lat": 52.4170398, - "lon": -1.9383500, - "tags": { - "amenity": "post_box", - "note": "No label. Disused?", - "ref": "B30 351" - } -}, -{ - "type": "node", - "id": 495642558, - "lat": 52.4179041, - "lon": -1.9449071, - "tags": { - "amenity": "post_box", - "ref": "B30 338" - } -}, -{ - "type": "node", - "id": 495642766, - "lat": 52.8342269, - "lon": -1.1766918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 495644698, - "lat": 55.8497579, - "lon": -2.4951687, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TD11 26" - } -}, -{ - "type": "node", - "id": 495644942, - "lat": 55.7582496, - "lon": -1.9945244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TD15 26" - } -}, -{ - "type": "node", - "id": 495644958, - "lat": 55.7556344, - "lon": -1.9907673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TD15 11", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 495672790, - "lat": 55.6774620, - "lon": -1.9042035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "image": "https://www.geograph.org.uk/photo/4464009", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 495707697, - "lat": 55.7657581, - "lon": -2.0101113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TD15 15" - } -}, -{ - "type": "node", - "id": 495770665, - "lat": 53.7348001, - "lon": -2.0442192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "ele": "108.75", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-19" - } -}, -{ - "type": "node", - "id": 495949594, - "lat": 51.4998004, - "lon": -3.5810924, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 495981001, - "lat": 55.7713093, - "lon": -2.0002809, - "tags": { - "amenity": "post_box", - "ref": "TD15 78" - } -}, -{ - "type": "node", - "id": 496044766, - "lat": 52.9760345, - "lon": -1.1381851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 311D", - "ref:GB:uprn": "10015857822", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 496060491, - "lat": 52.5153765, - "lon": -2.0063248, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B70 63", - "royal_cypher": "GVIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 496105556, - "lat": 52.3376448, - "lon": -1.2912497, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-03", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV22 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/dunchurch-post-office-cv22-6ns/000CV22211" - } -}, -{ - "type": "node", - "id": 496108150, - "lat": 53.4012570, - "lon": -2.1694144, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 496130721, - "lat": 52.9739080, - "lon": -1.1382736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 129D", - "ref:GB:uprn": "10015835817", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 496130774, - "lat": 52.9752085, - "lon": -1.1259299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "ele": "96.737671", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 212D", - "ref:GB:uprn": "10015343427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 496130793, - "lat": 52.9568673, - "lon": -1.1484285, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-06", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "ele": "48.672119", - "post_box:type": "pillar", - "ref": "NG1 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 496133192, - "lat": 53.3892358, - "lon": -2.2286508, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 496152926, - "lat": 50.9133358, - "lon": -1.0143617, - "tags": { - "amenity": "post_box", - "postal_code": "PO8 9", - "ref": "PO8 378" - } -}, -{ - "type": "node", - "id": 496152927, - "lat": 50.9078643, - "lon": -1.0019541, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO8 9PJ", - "ref": "PO8 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 496176466, - "lat": 51.5809181, - "lon": 0.6063886, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 496289509, - "lat": 56.3306187, - "lon": -2.8288038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 144", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 496364923, - "lat": 50.8026302, - "lon": -1.4001802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO45 340" - } -}, -{ - "type": "node", - "id": 496491465, - "lat": 51.1888860, - "lon": -1.9020380, - "tags": { - "amenity": "post_box", - "mapillary": "1177881159349616", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-11" - } -}, -{ - "type": "node", - "id": 496503191, - "lat": 57.4662404, - "lon": -4.2365827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV3 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 496504792, - "lat": 53.8729632, - "lon": -0.9306320, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 496602461, - "lat": 51.3459436, - "lon": -0.2281491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM2 273", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 496834675, - "lat": 51.4031213, - "lon": 0.5039254, - "tags": { - "amenity": "post_box", - "ref": "ME2 190" - } -}, -{ - "type": "node", - "id": 496948773, - "lat": 54.7223618, - "lon": -4.9560413, - "tags": { - "amenity": "post_box", - "ref": "DG9 32" - } -}, -{ - "type": "node", - "id": 496965355, - "lat": 51.4708240, - "lon": -0.3316603, - "tags": { - "addr:street": "Shire Horse Way", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-04-24", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 496968881, - "lat": 51.4705132, - "lon": -0.3285376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 497017623, - "lat": 52.2346367, - "lon": 0.9055594, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2074" - } -}, -{ - "type": "node", - "id": 497017625, - "lat": 52.3356496, - "lon": 0.9126116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IP22 7030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497065327, - "lat": 53.0320301, - "lon": -1.2825836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "ele": "77.9920654", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497079520, - "lat": 52.5737093, - "lon": -1.2327932, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 497119986, - "lat": 54.0878072, - "lon": -0.1881444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497119989, - "lat": 54.0851519, - "lon": -0.1900022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497119990, - "lat": 54.0872755, - "lon": -0.1913862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497119995, - "lat": 54.0824588, - "lon": -0.1936126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497119998, - "lat": 54.0796357, - "lon": -0.1967979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497120000, - "lat": 54.0737941, - "lon": -0.2032157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO15 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497120004, - "lat": 54.0799017, - "lon": -0.2023168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497121171, - "lat": 51.7199225, - "lon": 0.4781494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 409D" - } -}, -{ - "type": "node", - "id": 497340410, - "lat": 54.5668037, - "lon": -1.3123642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "fixme": "I have made an assumption since the ref tag was on 1 node and that the amenity=post_box tag on another nearby node that these are the same post box. but the reference should be verified by survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS18 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497364295, - "lat": 52.9594731, - "lon": -1.1672659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG7 22D", - "ref:GB:uprn": "10015282245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 497392246, - "lat": 53.8348913, - "lon": -1.7916592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD18 929", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 497396117, - "lat": 53.8031604, - "lon": -1.6460383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS13 491" - } -}, -{ - "type": "node", - "id": 497396123, - "lat": 53.8358589, - "lon": -1.7854543, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BD18 916", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497396138, - "lat": 53.8367561, - "lon": -1.7901221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BD18 938", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 497396165, - "lat": 53.8357676, - "lon": -1.7788317, - "tags": { - "amenity": "post_box", - "note": "franked mail", - "post_box:type": "meter", - "ref": "BD17 965" - } -}, -{ - "type": "node", - "id": 497478148, - "lat": 52.3288714, - "lon": 0.9184232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:00", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "IP22 7179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497478150, - "lat": 52.3531014, - "lon": 0.8890879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP31 2120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497562753, - "lat": 51.6408263, - "lon": -0.7220832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "collection_times:old": "Mo-Fr 16:45; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 497562766, - "lat": 51.6331001, - "lon": -0.7112333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 497579445, - "lat": 50.1222431, - "lon": -5.6797554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 497695314, - "lat": 53.8049146, - "lon": -1.7427079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD3 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497977099, - "lat": 53.2260217, - "lon": -1.4302966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S40 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 497977116, - "lat": 53.2268952, - "lon": -1.4347512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S40 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 498372362, - "lat": 52.5066118, - "lon": -2.0679466, - "tags": { - "amenity": "post_box", - "ref": "DY2 203", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 498426860, - "lat": 51.2657048, - "lon": -2.1762242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "ref": "BA13 40" - } -}, -{ - "type": "node", - "id": 498426885, - "lat": 50.7149380, - "lon": -3.5465085, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 498472058, - "lat": 53.7763670, - "lon": -1.5733419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 192", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 498494644, - "lat": 51.3595707, - "lon": -0.8185242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG45 106D" - } -}, -{ - "type": "node", - "id": 498499678, - "lat": 53.6652290, - "lon": -1.4524376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 262" - } -}, -{ - "type": "node", - "id": 498499885, - "lat": 53.6602492, - "lon": -1.4382984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 251" - } -}, -{ - "type": "node", - "id": 498694197, - "lat": 51.4859112, - "lon": -0.1726790, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall Steven Co Ltd London & Falkirk", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW3 3D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 498827643, - "lat": 55.8800547, - "lon": -4.3529572, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "postal_code": "G14", - "ref": "G14 794" - } -}, -{ - "type": "node", - "id": 498847375, - "lat": 56.2223587, - "lon": -2.6984524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "painted_wall", - "post_box:type": "wall", - "ref": "KY10 258", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 498847387, - "lat": 56.2226088, - "lon": -2.6992748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY10 255", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 498847405, - "lat": 56.2245150, - "lon": -2.7024135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "KY10", - "ref": "KY10 406", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 498850956, - "lat": 56.2128930, - "lon": -2.7302752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY10 239", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 498851012, - "lat": 56.2126730, - "lon": -2.7285196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY10 201D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 498986178, - "lat": 51.0930403, - "lon": -4.0534661, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 95" - } -}, -{ - "type": "node", - "id": 499017472, - "lat": 51.2577557, - "lon": -0.1505654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH1 91" - } -}, -{ - "type": "node", - "id": 499051196, - "lat": 53.8429054, - "lon": -3.0377448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 202D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 499121752, - "lat": 51.4073187, - "lon": -0.8261538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 499350852, - "lat": 51.5134778, - "lon": -0.1408535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 103;W1B 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 499350865, - "lat": 51.5136803, - "lon": -0.1356269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q125385728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1F 116D;W1F 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1F 116D and W1F 316D" - } -}, -{ - "type": "node", - "id": 499382724, - "lat": 51.4525351, - "lon": -2.6228467, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS8 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 499382726, - "lat": 51.4534306, - "lon": -2.6222356, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 428", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 499896076, - "lat": 52.2416228, - "lon": -1.1035391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 500011279, - "lat": 51.0501503, - "lon": -1.3349696, - "tags": { - "amenity": "post_box", - "ele": "145.000000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 60" - } -}, -{ - "type": "node", - "id": 500062133, - "lat": 55.7813881, - "lon": -4.3377268, - "tags": { - "amenity": "post_box", - "name": "Harvie Ave shops", - "ref": "G77 102", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 500243924, - "lat": 51.4812780, - "lon": 0.0198493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500274788, - "lat": 55.9334822, - "lon": -3.1884629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "500354297675216", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH9 153", - "royal_cypher": "scottish_crown", - "survey:date": "2020-04-11" - } -}, -{ - "type": "node", - "id": 500315771, - "lat": 51.4840965, - "lon": 0.0197694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500317001, - "lat": 51.4837968, - "lon": 0.0173990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE3 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500321389, - "lat": 51.0759067, - "lon": -0.0558910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 500367365, - "lat": 51.2685929, - "lon": -2.1839833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "ref": "BA13 44" - } -}, -{ - "type": "node", - "id": 500554591, - "lat": 56.4978167, - "lon": -2.7172271, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 41D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500616561, - "lat": 51.4136889, - "lon": -0.3005315, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 500619320, - "lat": 51.4735266, - "lon": 0.0145826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 500633989, - "lat": 53.3242578, - "lon": -3.4184121, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 500635083, - "lat": 57.5208479, - "lon": -4.4592842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV6 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500814306, - "lat": 52.2225047, - "lon": -0.2565027, - "tags": { - "amenity": "post_box", - "source": "dictaphone" - } -}, -{ - "type": "node", - "id": 500837003, - "lat": 52.2351904, - "lon": -0.2466170, - "tags": { - "amenity": "post_box", - "source": "dictaphone" - } -}, -{ - "type": "node", - "id": 500885936, - "lat": 51.2623858, - "lon": -2.1890173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "BA13 12" - } -}, -{ - "type": "node", - "id": 500953214, - "lat": 52.9247007, - "lon": -1.2337610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "NG9 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500953216, - "lat": 52.9256821, - "lon": -1.2285988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 624D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500953217, - "lat": 52.9354990, - "lon": -1.2200102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG9 626", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 500953218, - "lat": 52.9324028, - "lon": -1.2218106, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 619D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 501567525, - "lat": 50.9594637, - "lon": -2.3784632, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT10 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 501586928, - "lat": 52.2705714, - "lon": -1.3616314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "note": "confirmed ref is CV23 and not CV47 (24/01/19)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV47 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/stockton-post-office-cv47-8jy/000CV47229" - } -}, -{ - "type": "node", - "id": 501754582, - "lat": 51.4412347, - "lon": 0.3667702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA11 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 501766461, - "lat": 51.5298340, - "lon": -0.1408080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "the left aperture blocked up", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 22D" - } -}, -{ - "type": "node", - "id": 501813155, - "lat": 50.8364300, - "lon": -3.5525470, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 501816162, - "lat": 50.8928886, - "lon": -1.0411662, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 501816163, - "lat": 50.8977970, - "lon": -1.0278788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 501816164, - "lat": 50.9009301, - "lon": -1.0353113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO8 25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 501816165, - "lat": 50.9018030, - "lon": -1.0267444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 501816166, - "lat": 50.9071584, - "lon": -1.0234035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO8 2" - } -}, -{ - "type": "node", - "id": 501820441, - "lat": 53.1973516, - "lon": -2.5365167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 162" - } -}, -{ - "type": "node", - "id": 501820468, - "lat": 53.2001584, - "lon": -2.5369585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref number obscured by condensation", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 215" - } -}, -{ - "type": "node", - "id": 501846593, - "lat": 50.5760461, - "lon": -3.4707323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 501855823, - "lat": 50.5819283, - "lon": -3.4683791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 501898041, - "lat": 50.7350904, - "lon": -3.6774821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 501902593, - "lat": 53.4930480, - "lon": -3.0242840, - "tags": { - "amenity": "post_box", - "name": "Moore Lane Post Office" - } -}, -{ - "type": "node", - "id": 501902982, - "lat": 53.4862510, - "lon": -3.0327745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 501903664, - "lat": 53.4718958, - "lon": -3.0252271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "description": "EIIR type B post box L22 566 by Carron Company on Great George's Road, Waterloo, although Royal Mail list it as \"St George's Road\"", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L22 566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Great George's Road, Waterloo.jpg" - } -}, -{ - "type": "node", - "id": 502057635, - "lat": 50.9010206, - "lon": -1.0232710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502130773, - "lat": 53.4831646, - "lon": -3.0393147, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 502134605, - "lat": 53.4810348, - "lon": -3.0375396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "description": "GR type B post box L22 400 by Carron Company on Mersey View at Heathfield Road, Brighton-Le-Sands.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L22 400", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Mersey View, Brighton le Sands.jpg" - } -}, -{ - "type": "node", - "id": 502147764, - "lat": 53.4706483, - "lon": -3.0197775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "GVIR type B post box L22 306 by Carron Company on Crosby Road at Marlborough Road, although Royal Mail list it as Cambridge Road", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L22 306", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Marlborough Road, Waterloo.jpg" - } -}, -{ - "type": "node", - "id": 502153357, - "lat": 53.4737237, - "lon": -3.0215177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L22 89 on Crosby Road, Waterloo, near the war memorial, nicknamed \"Waterloo Lamps\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L22 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Waterloo Lamps.jpg" - } -}, -{ - "type": "node", - "id": 502203144, - "lat": 53.4824703, - "lon": -3.0229832, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 502218988, - "lat": 53.4995882, - "lon": -3.0063088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 502269240, - "lat": 55.1116030, - "lon": -1.5319285, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 4AA", - "ref": "NE24 568" - } -}, -{ - "type": "node", - "id": 502269242, - "lat": 55.1121024, - "lon": -1.5288823, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 4NE", - "ref": "NE24 564" - } -}, -{ - "type": "node", - "id": 502269245, - "lat": 55.1181898, - "lon": -1.5175041, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 2QA", - "ref": "NE24 541" - } -}, -{ - "type": "node", - "id": 502269322, - "lat": 55.1291009, - "lon": -1.5535954, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE24 4JN", - "ref": "NE24 566" - } -}, -{ - "type": "node", - "id": 502269323, - "lat": 55.1301082, - "lon": -1.5467304, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 5BS", - "ref": "NE24 565" - } -}, -{ - "type": "node", - "id": 502269502, - "lat": 55.1306955, - "lon": -1.5379205, - "tags": { - "amenity": "post_box", - "postal_code": "NE24 5HZ", - "ref": "NE24 551" - } -}, -{ - "type": "node", - "id": 502336218, - "lat": 53.1627787, - "lon": 0.1345316, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 502424112, - "lat": 52.1156001, - "lon": -1.0637458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 362" - } -}, -{ - "type": "node", - "id": 502424116, - "lat": 52.1367478, - "lon": -1.1009727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 374" - } -}, -{ - "type": "node", - "id": 502424118, - "lat": 52.1590655, - "lon": -1.1312590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN12 359" - } -}, -{ - "type": "node", - "id": 502424121, - "lat": 52.1387529, - "lon": -1.1615089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "136612875182970", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NN11 167", - "survey:date": "2020-09-14" - } -}, -{ - "type": "node", - "id": 502424123, - "lat": 52.1170819, - "lon": -1.1260713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 525" - } -}, -{ - "type": "node", - "id": 502424128, - "lat": 52.1343366, - "lon": -0.9913356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 456" - } -}, -{ - "type": "node", - "id": 502424133, - "lat": 52.1263809, - "lon": -0.9820918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 294" - } -}, -{ - "type": "node", - "id": 502424140, - "lat": 52.1267537, - "lon": -0.9862411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 266" - } -}, -{ - "type": "node", - "id": 502424142, - "lat": 52.1290908, - "lon": -0.9845933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN12 461" - } -}, -{ - "type": "node", - "id": 502424144, - "lat": 52.1436732, - "lon": -1.0217881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502424146, - "lat": 52.1425537, - "lon": -1.0251636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN12 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 502424151, - "lat": 52.1430251, - "lon": -0.9373462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 376" - } -}, -{ - "type": "node", - "id": 502424154, - "lat": 52.1430611, - "lon": -0.9137819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 377", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 502426799, - "lat": 51.5165588, - "lon": 0.0457857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 502440011, - "lat": 52.1425104, - "lon": -0.9181264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 502440018, - "lat": 52.1723983, - "lon": -1.0113766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502440021, - "lat": 52.1833164, - "lon": -1.0761744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502440027, - "lat": 52.1769024, - "lon": -1.0470557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 369" - } -}, -{ - "type": "node", - "id": 502440031, - "lat": 52.1202429, - "lon": -0.9643741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502440037, - "lat": 52.1141175, - "lon": -0.9200084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 368" - } -}, -{ - "type": "node", - "id": 502440042, - "lat": 52.1122245, - "lon": -0.8977099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "220956016526345", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "NN12", - "ref": "NN12 181", - "survey:date": "2021-06-16" - } -}, -{ - "type": "node", - "id": 502440045, - "lat": 52.0820109, - "lon": -0.8967313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 183" - } -}, -{ - "type": "node", - "id": 502499935, - "lat": 51.7084271, - "lon": -2.2285988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "wall", - "postal_code": "GL5", - "ref": "GL5 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 502552015, - "lat": 52.4575667, - "lon": -1.9057614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B5 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 502594639, - "lat": 50.9340002, - "lon": -1.4281050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 498D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 502626816, - "lat": 52.4530499, - "lon": -1.9090106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B5 1036" - } -}, -{ - "type": "node", - "id": 502706440, - "lat": 52.4435266, - "lon": -1.9225517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B29 1106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 502897856, - "lat": 51.7880884, - "lon": -1.2186165, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-25", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "ref": "OX3 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502919675, - "lat": 51.7941515, - "lon": -1.1766078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "OX3 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 502928937, - "lat": 51.6956944, - "lon": -2.2190102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "colour": "gold", - "drive_through": "no", - "old_ref": "SDR195", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "GL6", - "ref": "GL6 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Nailsworth, postbox № GL5 195 and 1195, Old Market - geograph.org.uk - 3268879.jpg" - } -}, -{ - "type": "node", - "id": 502928938, - "lat": 51.6956946, - "lon": -2.2190290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "colour": "gold", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Pete Reed Gold medal winner London 2012 Olympic Games Rowing: Men's Fours", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL6 1195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Nailsworth, postbox № GL5 195 and 1195, Old Market - geograph.org.uk - 3268879.jpg" - } -}, -{ - "type": "node", - "id": 503018300, - "lat": 54.1448651, - "lon": -2.5339296, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA6 123" - } -}, -{ - "type": "node", - "id": 503023865, - "lat": 54.1174891, - "lon": -2.3924419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "post_box:type": "pillar", - "ref": "LA2 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503045764, - "lat": 49.8920919, - "lon": -6.3431299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR22 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 503089023, - "lat": 56.4700901, - "lon": -2.9456919, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DD4", - "ref": "DD4 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 503096695, - "lat": 55.0262056, - "lon": -1.5601725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE12 395D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 503097701, - "lat": 55.0231772, - "lon": -1.5686135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE12 386D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 503128027, - "lat": 51.8848030, - "lon": -0.5137133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 503164626, - "lat": 54.6860421, - "lon": -1.2197761, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 503385351, - "lat": 54.6837598, - "lon": -1.2204507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS26 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 503387188, - "lat": 54.6822339, - "lon": -1.2275379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS26 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503387663, - "lat": 54.6860005, - "lon": -1.2352203, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 503417092, - "lat": 51.0783324, - "lon": -0.2914075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503419356, - "lat": 52.9351793, - "lon": -1.4663039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 587" - } -}, -{ - "type": "node", - "id": 503419360, - "lat": 52.9352023, - "lon": -1.4662623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked Mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 785" - } -}, -{ - "type": "node", - "id": 503437524, - "lat": 55.1408828, - "lon": -1.5632570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE22 7DU", - "ref": "NE22 641", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503437672, - "lat": 55.1447951, - "lon": -1.5351148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "NE22 7BG", - "ref": "NE22 609", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503437757, - "lat": 55.1452130, - "lon": -1.5205260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 1QS", - "ref": "NE24 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503437835, - "lat": 55.1354072, - "lon": -1.5115684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 1SB", - "ref": "NE24 557", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503437839, - "lat": 55.1575906, - "lon": -1.5284150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE24 1RX", - "ref": "NE24 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503462788, - "lat": 58.9613555, - "lon": -3.2997177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "KW16 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 503462791, - "lat": 58.9593054, - "lon": -3.3006840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "KW16 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 503473861, - "lat": 51.7703129, - "lon": -1.2681152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 126" - } -}, -{ - "type": "node", - "id": 503480007, - "lat": 51.7101552, - "lon": -1.1548377, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX44 471" - } -}, -{ - "type": "node", - "id": 503495736, - "lat": 51.7155584, - "lon": -1.1763212, - "tags": { - "amenity": "post_box", - "ref": "OX44 737" - } -}, -{ - "type": "node", - "id": 503501694, - "lat": 50.9268923, - "lon": -2.3047452, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015355953" - } -}, -{ - "type": "node", - "id": 503505450, - "lat": 53.8388522, - "lon": -1.5356047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 29", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 503600552, - "lat": 49.9609271, - "lon": -6.2840107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR25 215" - } -}, -{ - "type": "node", - "id": 503615188, - "lat": 49.9177957, - "lon": -6.2989873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR21 21" - } -}, -{ - "type": "node", - "id": 503615200, - "lat": 49.9142512, - "lon": -6.2948692, - "tags": { - "amenity": "post_box", - "ref": "TR21 24" - } -}, -{ - "type": "node", - "id": 503615669, - "lat": 51.2813618, - "lon": -0.8418284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "post_box:type": "pillar", - "ref": "GU51 692", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503638414, - "lat": 52.5524757, - "lon": -2.7296116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "SY6 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 503689457, - "lat": 49.9170274, - "lon": -6.3057698, - "tags": { - "amenity": "post_box", - "ref": "TR21 210" - } -}, -{ - "type": "node", - "id": 503697651, - "lat": 49.9296111, - "lon": -6.3029379, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR21 159" - } -}, -{ - "type": "node", - "id": 503729707, - "lat": 53.3684241, - "lon": -2.2407985, - "tags": { - "amenity": "post_box", - "note": "didn't collect ref" - } -}, -{ - "type": "node", - "id": 503730379, - "lat": 52.6507754, - "lon": -1.9255314, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 362", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 503730387, - "lat": 52.6521568, - "lon": -1.9180604, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 80", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 503730429, - "lat": 52.6467996, - "lon": -1.9240385, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS8", - "ref": "WS8 285", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 503730496, - "lat": 52.6469669, - "lon": -1.9403706, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 283", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 503730539, - "lat": 52.6507333, - "lon": -1.9382986, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 265", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 503742358, - "lat": 51.4234204, - "lon": -1.1801082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG7", - "ref": "RG7 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503768169, - "lat": 55.8614911, - "lon": -4.3666356, - "tags": { - "amenity": "post_box", - "name": "Hillington PO Box" - } -}, -{ - "type": "node", - "id": 503792495, - "lat": 55.8507788, - "lon": -4.3575316, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 503975635, - "lat": 50.9565196, - "lon": -2.4339326, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT9 21", - "ref:GB:uprn": "10015328545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 503989410, - "lat": 51.0884459, - "lon": 1.1348537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 46" - } -}, -{ - "type": "node", - "id": 504266671, - "lat": 50.6770987, - "lon": -3.3003393, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 504310414, - "lat": 51.2046895, - "lon": -1.9165327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "ele": "95", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP3 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 504313782, - "lat": 54.1464101, - "lon": -2.5996806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Greta Bridge", - "postal_code": "LA6 2QU", - "ref": "LA6 150", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 504313783, - "lat": 54.1504374, - "lon": -2.5822997, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "LA6 2QT", - "ref": "LA6 149" - } -}, -{ - "type": "node", - "id": 504313838, - "lat": 52.4317914, - "lon": -1.8536828, - "tags": { - "amenity": "post_box", - "ref": "B28 382", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 504317176, - "lat": 51.1998708, - "lon": -1.9016191, - "tags": { - "amenity": "post_box", - "ele": "132.000000", - "ref": "SP3 219" - } -}, -{ - "type": "node", - "id": 504404162, - "lat": 55.3947359, - "lon": -4.1850499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "949247982850333", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 504487377, - "lat": 52.4277738, - "lon": -1.8514272, - "tags": { - "amenity": "post_box", - "ref": "B28 470", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 504641379, - "lat": 51.2657754, - "lon": -2.1904249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "BA13 41" - } -}, -{ - "type": "node", - "id": 504665928, - "lat": 53.9224421, - "lon": -3.0120450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 504721406, - "lat": 51.2138368, - "lon": -1.1584483, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "503630810872943", - "post_box:type": "pillar", - "postal_code": "RG25", - "ref": "RG25 16", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 504756464, - "lat": 53.9189011, - "lon": -3.0308370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 504756525, - "lat": 53.9219820, - "lon": -3.0181838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 504756529, - "lat": 53.9204649, - "lon": -3.0166762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 504756531, - "lat": 53.9240657, - "lon": -3.0138771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 504756540, - "lat": 53.9229935, - "lon": -3.0233745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 504756954, - "lat": 50.9565215, - "lon": -1.4486748, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SO16", - "ref": "SO16 658", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 505121057, - "lat": 50.6998323, - "lon": -3.4321493, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 505125609, - "lat": 54.5178902, - "lon": -1.3168680, - "tags": { - "amenity": "post_box", - "ref": "TS17 600" - } -}, -{ - "type": "node", - "id": 505255558, - "lat": 53.8562938, - "lon": -3.0416698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-01-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "open Edward VII cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 63D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 505255603, - "lat": 53.8543167, - "lon": -3.0458667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY2 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 505338101, - "lat": 54.1202530, - "lon": -1.1858536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 527" - } -}, -{ - "type": "node", - "id": 505360148, - "lat": 53.8005119, - "lon": -1.6422700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS13 732", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 505370449, - "lat": 52.8668069, - "lon": -1.6357049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE65 1401" - } -}, -{ - "type": "node", - "id": 505382909, - "lat": 52.8713181, - "lon": -1.6281497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE65 17" - } -}, -{ - "type": "node", - "id": 505445761, - "lat": 54.1129787, - "lon": -0.1263027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO15 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505511523, - "lat": 50.9678027, - "lon": -0.8789778, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU31 154", - "post_box:type": "lamp", - "ref": "GU31 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 505512040, - "lat": 50.9896352, - "lon": -0.9237506, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 505569041, - "lat": 50.4298922, - "lon": -3.6746650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ9 111D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 505569057, - "lat": 50.4302772, - "lon": -3.6800599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "drive_through": "no", - "mapillary": "1219942995135298", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2020-08-23", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 505657595, - "lat": 50.4279478, - "lon": -3.6744328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ9 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 505743144, - "lat": 51.4995989, - "lon": -0.0133076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 9;E14 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743153, - "lat": 51.4957668, - "lon": -0.0140021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E14 19P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743159, - "lat": 51.4957868, - "lon": -0.0140027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 51;E14 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743173, - "lat": 51.4975603, - "lon": -0.0190289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 48;E14 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743176, - "lat": 51.4976336, - "lon": -0.0190180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E14 36P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743196, - "lat": 51.5032285, - "lon": -0.0176234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 57;E14 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743204, - "lat": 51.5047656, - "lon": -0.0168922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 49;E14 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505743214, - "lat": 51.5054415, - "lon": -0.0208447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 31D;E14 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 505829016, - "lat": 55.9697249, - "lon": -4.0123075, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 505829665, - "lat": 52.9285939, - "lon": -1.4772335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 738D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 505845076, - "lat": 55.9790397, - "lon": -4.0522911, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 506086847, - "lat": 51.5235355, - "lon": -0.0899525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "mail:meter": "yes", - "mail:stamped": "yes", - "note": "each aperture has an individual ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "A. Handyside & Co. Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "EC1Y 129;EC1Y 1291", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 506088927, - "lat": 50.4314116, - "lon": -3.6870166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-21", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 506088928, - "lat": 50.4316763, - "lon": -3.6898506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 506094033, - "lat": 50.4427315, - "lon": -3.7082945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ9 92D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 506103854, - "lat": 54.5180039, - "lon": -1.3049833, - "tags": { - "amenity": "post_box", - "ref": "TS17 207" - } -}, -{ - "type": "node", - "id": 506114444, - "lat": 54.5085843, - "lon": -1.3095926, - "tags": { - "amenity": "post_box", - "ref": "TS17 414" - } -}, -{ - "type": "node", - "id": 506144014, - "lat": 50.5463761, - "lon": -4.9070611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL27 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 506193382, - "lat": 56.3839072, - "lon": -2.8802086, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "KY16", - "ref": "KY16 194", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506202944, - "lat": 56.3696522, - "lon": -2.8911318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 362", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506202974, - "lat": 56.3666292, - "lon": -2.8920894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "KY16 354", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506218135, - "lat": 56.3268545, - "lon": -2.9458460, - "tags": { - "amenity": "post_box", - "postal_code": "KY15", - "ref": "KY15 276", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506218140, - "lat": 56.3220607, - "lon": -2.9458272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 08:00", - "post_box:type": "wall", - "postal_code": "KY15", - "ref": "KY15 271", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506218170, - "lat": 56.3069821, - "lon": -2.9434325, - "tags": { - "amenity": "post_box", - "postal_code": "KY15", - "ref": "KY15 340", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506218917, - "lat": 52.5096442, - "lon": -2.0699251, - "tags": { - "amenity": "post_box", - "ref": "DY2 93", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 506255545, - "lat": 56.2480530, - "lon": -3.1584150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "KY15", - "ref": "KY15 320", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506262357, - "lat": 56.2534782, - "lon": -3.2059830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "KY15", - "ref": "KY15 319", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506276359, - "lat": 52.5063254, - "lon": -2.0635891, - "tags": { - "amenity": "post_box", - "ref": "DY2 187", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 506284232, - "lat": 52.9598176, - "lon": -1.2053777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ele": "37.376709", - "post_box:type": "lamp", - "ref": "NG8 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 506284234, - "lat": 52.9593076, - "lon": -1.1985998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "33.050781", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 315D", - "ref:GB:uprn": "10015353269", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 506294813, - "lat": 53.8306940, - "lon": -3.0510027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506302517, - "lat": 51.4988391, - "lon": -0.1309620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1H 10;SW1H 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506302519, - "lat": 51.4976693, - "lon": -0.1343920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1H 49D;SW1H 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506306289, - "lat": 51.4946092, - "lon": -0.1365436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "postal_code": "SW1", - "ref": "SW1P 67;SW1P 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506323272, - "lat": 51.4972703, - "lon": -0.1119725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SE1", - "ref": "SE1 9;SE1 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506326946, - "lat": 51.4994862, - "lon": -0.1138781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 27;SE1 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506332255, - "lat": 51.4242092, - "lon": -0.9328171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 506359169, - "lat": 51.4153557, - "lon": 0.7510256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME11 29" - } -}, -{ - "type": "node", - "id": 506365325, - "lat": 50.9353391, - "lon": -1.4764444, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 19:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506369210, - "lat": 53.6564028, - "lon": -1.4283147, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-03", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 129" - } -}, -{ - "type": "node", - "id": 506369307, - "lat": 53.6604796, - "lon": -1.4320997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 38" - } -}, -{ - "type": "node", - "id": 506369311, - "lat": 53.6594699, - "lon": -1.4256155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 130" - } -}, -{ - "type": "node", - "id": 506395297, - "lat": 56.1353146, - "lon": -3.3742771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 506426984, - "lat": 51.4326285, - "lon": -0.2635744, - "tags": { - "amenity": "post_box", - "mapillary": "505376537282646", - "post_box:type": "pillar", - "ref": "SW15 40", - "survey:date": "2021-02-01" - } -}, -{ - "type": "node", - "id": 506427032, - "lat": 51.4392653, - "lon": -0.2028910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW18 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 506427033, - "lat": 51.4401544, - "lon": -0.1980772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW18 46", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 506541024, - "lat": 51.4972321, - "lon": -3.6478182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1084370816252747", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 506556007, - "lat": 51.5384011, - "lon": -1.9077743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "969649743674041", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN4 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 506675572, - "lat": 51.5893175, - "lon": -0.5517573, - "tags": { - "amenity": "post_box", - "ref": "SL9 152" - } -}, -{ - "type": "node", - "id": 506675615, - "lat": 51.5913692, - "lon": -0.5526662, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 506685056, - "lat": 52.2601877, - "lon": -1.8901850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B80 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 506685070, - "lat": 52.2783819, - "lon": -1.8776254, - "tags": { - "amenity": "post_box", - "note": "Collection plate removed. Notice saying box is currently out of use due to birds nesting in it 2/5/15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B80 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 506689199, - "lat": 54.0917345, - "lon": -0.1887374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506701375, - "lat": 50.9577988, - "lon": -2.3825306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 158D", - "ref:GB:uprn": "10015452139" - } -}, -{ - "type": "node", - "id": 506779112, - "lat": 51.4338275, - "lon": -0.9302433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG6 461" - } -}, -{ - "type": "node", - "id": 506793386, - "lat": 50.7425281, - "lon": -3.5186716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "ref": "EX4 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506794297, - "lat": 50.7388826, - "lon": -3.5180378, - "tags": { - "amenity": "post_box", - "ref": "EX4 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506800084, - "lat": 52.4302271, - "lon": 0.2500230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "CB6 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506800123, - "lat": 52.4365336, - "lon": 0.2497991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "CB6 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506800316, - "lat": 52.4312772, - "lon": 0.2345811, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB6 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506800344, - "lat": 52.4338732, - "lon": 0.2426736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CB6 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506800391, - "lat": 52.4316363, - "lon": 0.2377362, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CB6 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506811418, - "lat": 51.2611641, - "lon": -2.1953373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "BA13 32" - } -}, -{ - "type": "node", - "id": 506812288, - "lat": 54.6793953, - "lon": -1.2194789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 506812315, - "lat": 54.6854070, - "lon": -1.2171041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 15:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TS26 28;TS26 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 506815437, - "lat": 54.6470508, - "lon": -1.2011910, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 506820703, - "lat": 53.2645174, - "lon": -1.2875112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "ele": "80.8760986", - "post_box:type": "lamp", - "ref": "S44 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506830832, - "lat": 57.8804526, - "lon": -4.0317186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV25 266", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 506847631, - "lat": 51.2055102, - "lon": -1.1867274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1634875776723181", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-02" - } -}, -{ - "type": "node", - "id": 506880512, - "lat": 51.5426233, - "lon": 0.3378029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 506951549, - "lat": 51.8825992, - "lon": -2.0791764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "GL53 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506952915, - "lat": 51.8759013, - "lon": -2.0805383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "375129307255745", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 321", - "royal_cypher": "EIIR", - "survey:date": "2019-12-29" - } -}, -{ - "type": "node", - "id": 506953157, - "lat": 51.8726935, - "lon": -2.0749833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506954491, - "lat": 51.8796653, - "lon": -2.0707151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL53 133D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 506955382, - "lat": 51.8773572, - "lon": -2.0770964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL53 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 506955704, - "lat": 51.8715056, - "lon": -2.0914856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-12-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506965545, - "lat": 51.8824741, - "lon": -2.1009393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "collection_times_checked": "2015-10-11", - "fixme": "Saturday collection time obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 506982786, - "lat": 51.8823774, - "lon": -2.0515812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 72" - } -}, -{ - "type": "node", - "id": 506985854, - "lat": 51.8811846, - "lon": -2.0639139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL53 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 507002915, - "lat": 51.4978270, - "lon": 0.3035293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 53" - } -}, -{ - "type": "node", - "id": 507004795, - "lat": 51.6744160, - "lon": -1.2920326, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 507050042, - "lat": 53.0911419, - "lon": -2.8197014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 507050230, - "lat": 53.0847419, - "lon": -2.8024345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 363" - } -}, -{ - "type": "node", - "id": 507070655, - "lat": 53.3300289, - "lon": -3.1182150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "EIIR lamp box pier CH60 595 on Piper's Lane, Heswall", - "name": "Pipers Lane | Craig-E-Barns", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Piper's Lane, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 507071033, - "lat": 53.3254140, - "lon": -3.1000012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EVIIR wall-mounted Type B post box CH60 268 at the junction of The Mount and Rocky Lane, Heswall.", - "name": "The Mount | Corner Rocky Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH60 268", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box opposite Heswall War Memorial.jpg" - } -}, -{ - "type": "node", - "id": 507071238, - "lat": 53.3283597, - "lon": -3.0993113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "QEII type A post box CH60 301 on The Mount, Heswall near Telegraph Road.", - "name": "Castle Buildings", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Castle Buildings, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 507075631, - "lat": 52.9865385, - "lon": -2.1359861, - "tags": { - "amenity": "post_box", - "ref": "ST3 324" - } -}, -{ - "type": "node", - "id": 507102147, - "lat": 52.4108004, - "lon": 0.1144995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB6 99", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 507222495, - "lat": 52.5077864, - "lon": -2.0763088, - "tags": { - "amenity": "post_box", - "ref": "DY2 8", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 507619629, - "lat": 52.2146045, - "lon": -0.2836033, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 507739797, - "lat": 52.6189073, - "lon": -1.6401594, - "tags": { - "amenity": "post_box", - "ref": "B77 1374" - } -}, -{ - "type": "node", - "id": 507896253, - "lat": 53.7738039, - "lon": -1.5791423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS11 27" - } -}, -{ - "type": "node", - "id": 507896258, - "lat": 53.7738129, - "lon": -1.5791893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 1005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 507901085, - "lat": 53.7720941, - "lon": -1.5706133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 507901976, - "lat": 51.5954326, - "lon": -0.5586427, - "tags": { - "amenity": "post_box", - "ref": "SL9 179" - } -}, -{ - "type": "node", - "id": 507937602, - "lat": 52.2314847, - "lon": -0.2782465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE19 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 508057369, - "lat": 50.9592172, - "lon": -0.5619065, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH20 383" - } -}, -{ - "type": "node", - "id": 508294147, - "lat": 52.7287313, - "lon": -2.6942444, - "tags": { - "amenity": "post_box", - "ref": "SY4 510" - } -}, -{ - "type": "node", - "id": 508408516, - "lat": 55.0139501, - "lon": -1.6618387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-04-30", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "drive_through": "no", - "name": "Tesco Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE3 48", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 508445232, - "lat": 50.8298184, - "lon": -3.7750513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 508534312, - "lat": 51.5008780, - "lon": -0.4240435, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 508540688, - "lat": 51.4973830, - "lon": -0.4267371, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 508608656, - "lat": 51.1609826, - "lon": 0.0066321, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH7 62", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 508608756, - "lat": 51.1555195, - "lon": -0.0039117, - "tags": { - "amenity": "post_box", - "ref": "RH7 26" - } -}, -{ - "type": "node", - "id": 508609207, - "lat": 51.1793729, - "lon": -0.0136785, - "tags": { - "amenity": "post_box", - "ref": "RH7 103" - } -}, -{ - "type": "node", - "id": 508642146, - "lat": 51.7180850, - "lon": -1.0923638, - "tags": { - "amenity": "post_box", - "ref": "OX44 495" - } -}, -{ - "type": "node", - "id": 508799240, - "lat": 54.7826542, - "lon": -1.6305978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 76" - } -}, -{ - "type": "node", - "id": 508799747, - "lat": 54.7732221, - "lon": -1.6292515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 345" - } -}, -{ - "type": "node", - "id": 508799778, - "lat": 54.7756513, - "lon": -1.6364825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH7 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 508799786, - "lat": 54.7806626, - "lon": -1.6416703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 37" - } -}, -{ - "type": "node", - "id": 508811859, - "lat": 50.7716771, - "lon": 0.2806467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Collection plate has specific times, but sticky label overrides to make is 09:00 and 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 768", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 508811874, - "lat": 50.7691775, - "lon": 0.2811632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN21 744", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 508811884, - "lat": 50.7788554, - "lon": 0.2777152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal MailR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 771D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 508811902, - "lat": 50.7695068, - "lon": 0.2790890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "name": "Upperton Rd DO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN21 875", - "source": "survey" - } -}, -{ - "type": "node", - "id": 508811920, - "lat": 50.7685242, - "lon": 0.2873089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "name": "Terminus Road Business Box", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN21 1169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 508877623, - "lat": 52.6942813, - "lon": -2.5174595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1381294082250772", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2019-12-30" - } -}, -{ - "type": "node", - "id": 508880619, - "lat": 51.7425759, - "lon": -1.1173663, - "tags": { - "amenity": "post_box", - "ref": "OX33 60" - } -}, -{ - "type": "node", - "id": 508882997, - "lat": 52.4984360, - "lon": -2.0676466, - "tags": { - "amenity": "post_box", - "ref": "DY2 235", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 508896116, - "lat": 54.7704687, - "lon": -1.6220551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 508898563, - "lat": 50.5437988, - "lon": -3.4971956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 508898792, - "lat": 52.5015567, - "lon": -2.0763354, - "tags": { - "amenity": "post_box", - "ref": "DY2 52", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 508898806, - "lat": 52.5012968, - "lon": -2.0848358, - "tags": { - "amenity": "post_box", - "ref": "DY2 127", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 508902608, - "lat": 51.7436622, - "lon": -1.1272841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX33 659" - } -}, -{ - "type": "node", - "id": 508902618, - "lat": 51.7459559, - "lon": -1.1273313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX33 472" - } -}, -{ - "type": "node", - "id": 508949298, - "lat": 51.7359845, - "lon": -1.1611764, - "tags": { - "amenity": "post_box", - "ref": "OX33 669" - } -}, -{ - "type": "node", - "id": 509085915, - "lat": 50.8734540, - "lon": -2.3534406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT10 33", - "ref:GB:uprn": "10015399491", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 509086082, - "lat": 50.9046100, - "lon": -2.4378457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 09:00", - "description": "Beautiful pillar box dated 1855, believed to be the oldest post box in use in mainland UK.", - "operator": "Royal Mail", - "post_box:design": "octagonal", - "post_box:type": "pillar", - "ref": "DT9 4", - "ref:GB:uprn": "10015315791", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 509086565, - "lat": 50.9195402, - "lon": -2.4864929, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT9 87", - "ref:GB:uprn": "10015272598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 509237351, - "lat": 51.9054615, - "lon": -2.0819389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 372", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 509239743, - "lat": 50.5587580, - "lon": -3.4939720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 509242415, - "lat": 50.5565676, - "lon": -3.4968219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 509247002, - "lat": 50.5542501, - "lon": -3.4993453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 509252272, - "lat": 50.5504151, - "lon": -3.4952401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 509258325, - "lat": 50.5624390, - "lon": -3.4993480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ14 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 509268945, - "lat": 50.5580149, - "lon": -3.5007195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 509282598, - "lat": 51.7175584, - "lon": -2.1931094, - "tags": { - "amenity": "post_box", - "postal_code": "GL5", - "ref": "GL5 124", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 509282758, - "lat": 51.7092319, - "lon": -2.2180005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GL5", - "ref": "GL5 58D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 509390558, - "lat": 53.2648230, - "lon": -1.8170174, - "tags": { - "amenity": "post_box", - "ele": "312.7922363", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 509421681, - "lat": 51.5725257, - "lon": 0.5012443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 509652896, - "lat": 51.4020403, - "lon": -1.2711932, - "tags": { - "amenity": "post_box", - "mapillary": "252328013471650", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "RG19", - "ref": "RG19 232", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 509672932, - "lat": 51.4019629, - "lon": -1.2763091, - "tags": { - "amenity": "post_box", - "postal_code": "RG19", - "ref": "RG19 293" - } -}, -{ - "type": "node", - "id": 510086415, - "lat": 51.5645821, - "lon": 0.4931146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS14 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 510086424, - "lat": 51.5682856, - "lon": 0.4903739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS14 436", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 510097591, - "lat": 53.3295135, - "lon": -3.0982538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR Type A post box CH60 427 in front of the former post office on Pensby Road, near the LDO", - "note": "Listed by RM as \"CH60 Heswall BO Telegraph Road\", but it's actually on Pensby Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at former Heswall Post Office.jpg" - } -}, -{ - "type": "node", - "id": 510103860, - "lat": 51.5670214, - "lon": 0.4505430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SS16 304" - } -}, -{ - "type": "node", - "id": 510150456, - "lat": 50.6999438, - "lon": -3.4923530, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX2 353D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 510184179, - "lat": 55.0270904, - "lon": -1.5708647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 387D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 510306924, - "lat": 51.5866245, - "lon": 0.4452220, - "tags": { - "amenity": "post_box", - "ref": "SS15 471" - } -}, -{ - "type": "node", - "id": 510494454, - "lat": 55.9659295, - "lon": -3.2301633, - "tags": { - "amenity": "post_box", - "ref": "EH4 641", - "source": "survey" - } -}, -{ - "type": "node", - "id": 510598089, - "lat": 51.1513168, - "lon": -0.0237015, - "tags": { - "amenity": "post_box", - "ref": "RH19 13" - } -}, -{ - "type": "node", - "id": 510602194, - "lat": 51.1908026, - "lon": -0.0495500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH7 30", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 510626354, - "lat": 56.4681356, - "lon": -4.3173527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK21 198", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 510626438, - "lat": 56.4732670, - "lon": -4.3216883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK21 197", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 510626918, - "lat": 51.7731191, - "lon": -0.0050518, - "tags": { - "amenity": "post_box", - "ref": "EN11 115" - } -}, -{ - "type": "node", - "id": 510626923, - "lat": 51.7774096, - "lon": -0.0090599, - "tags": { - "amenity": "post_box", - "ref": "EN11 106" - } -}, -{ - "type": "node", - "id": 510626924, - "lat": 51.7798500, - "lon": -0.0077315, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG12 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 510626927, - "lat": 51.7721903, - "lon": -0.0175179, - "tags": { - "amenity": "post_box", - "ref": "EN11 139" - } -}, -{ - "type": "node", - "id": 510626928, - "lat": 51.7716604, - "lon": -0.0110942, - "tags": { - "amenity": "post_box", - "ref": "EN11 133" - } -}, -{ - "type": "node", - "id": 510626929, - "lat": 51.7703553, - "lon": -0.0142057, - "tags": { - "amenity": "post_box", - "ref": "EN11 111" - } -}, -{ - "type": "node", - "id": 510626935, - "lat": 51.7621784, - "lon": -0.0006749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "EN11 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 510626936, - "lat": 51.7610049, - "lon": -0.0166529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EN11 108", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 510798326, - "lat": 51.2529948, - "lon": -2.2002547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "ref": "BA13 47" - } -}, -{ - "type": "node", - "id": 510800039, - "lat": 52.6576458, - "lon": -1.9538056, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 353", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 510895429, - "lat": 53.3543267, - "lon": -2.2057620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK8 390" - } -}, -{ - "type": "node", - "id": 510905531, - "lat": 51.9017528, - "lon": -2.0841688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "note": "Located inside main store entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 381" - } -}, -{ - "type": "node", - "id": 510931560, - "lat": 51.2563469, - "lon": -2.1976669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BA13 17" - } -}, -{ - "type": "node", - "id": 510946875, - "lat": 51.9084275, - "lon": -2.0535129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 337" - } -}, -{ - "type": "node", - "id": 511039561, - "lat": 51.4970345, - "lon": -1.8198765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 511039566, - "lat": 51.5757569, - "lon": -1.7774168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 80" - } -}, -{ - "type": "node", - "id": 511047664, - "lat": 51.8995086, - "lon": -2.1111669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "mapillary": "2615166188776573", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 185", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2020-06-19" - } -}, -{ - "type": "node", - "id": 511047681, - "lat": 51.8936525, - "lon": -2.0906679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1104382", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL50 7D", - "ref:GB:nhle": "1104382", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26398359" - } -}, -{ - "type": "node", - "id": 511047703, - "lat": 51.8963483, - "lon": -2.0890291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Penfold pillar box", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1104286", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL50 17", - "ref:GB:nhle": "1104286", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26398264" - } -}, -{ - "type": "node", - "id": 511047764, - "lat": 51.9060847, - "lon": -2.1063570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 200D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 511059780, - "lat": 51.8914987, - "lon": -2.0807199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 59D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 511059803, - "lat": 51.8893305, - "lon": -2.0854202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL50 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 511059811, - "lat": 51.8820413, - "lon": -2.0830033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 511081851, - "lat": 51.8760231, - "lon": -2.0932730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-12-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 511081865, - "lat": 51.8686608, - "lon": -2.0763669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-13", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL53 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 511081881, - "lat": 51.8583917, - "lon": -2.0821868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-26" - } -}, -{ - "type": "node", - "id": 511111726, - "lat": 53.3533760, - "lon": -2.1828269, - "tags": { - "amenity": "post_box", - "ref": "SK8 306" - } -}, -{ - "type": "node", - "id": 511117156, - "lat": 55.9349226, - "lon": -3.0913954, - "tags": { - "amenity": "post_box", - "ref": "EH21 109" - } -}, -{ - "type": "node", - "id": 511130312, - "lat": 53.3096693, - "lon": -2.9668235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII lamp box pier CH62 508 on Thornleigh Avenue, Mill Park, Eastham, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Postbox at Thornleigh Avenue, Mill Park.jpg" - } -}, -{ - "type": "node", - "id": 511179500, - "lat": 50.8539648, - "lon": -0.6421953, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN18 1339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 511247663, - "lat": 52.6716979, - "lon": -1.9642931, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 511451463, - "lat": 55.9692229, - "lon": -2.9642284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH32 149", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 511451564, - "lat": 55.9713945, - "lon": -2.9597549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 146" - } -}, -{ - "type": "node", - "id": 512024281, - "lat": 51.5844928, - "lon": 0.4650237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SS14 508" - } -}, -{ - "type": "node", - "id": 512024690, - "lat": 51.3191001, - "lon": -1.9252686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512026249, - "lat": 51.6116191, - "lon": -1.4156161, - "tags": { - "amenity": "post_box", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 512045652, - "lat": 51.7219647, - "lon": -1.0897435, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX44 494" - } -}, -{ - "type": "node", - "id": 512079149, - "lat": 60.1461698, - "lon": -1.1672177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE1 77" - } -}, -{ - "type": "node", - "id": 512080062, - "lat": 51.3132456, - "lon": -1.9472528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 512080065, - "lat": 51.3127593, - "lon": -1.9428280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512176974, - "lat": 51.0016112, - "lon": -2.4156006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA8 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512197152, - "lat": 50.9868209, - "lon": -1.3564530, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 604D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512282514, - "lat": 51.8897428, - "lon": -2.0911226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 512282525, - "lat": 51.8853557, - "lon": -2.0883229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 102", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 512282660, - "lat": 51.9026143, - "lon": -2.1140549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "GL51 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512364974, - "lat": 51.9000374, - "lon": -2.1595335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "post_box:type": "pillar", - "ref": "GL51 284" - } -}, -{ - "type": "node", - "id": 512365041, - "lat": 51.8840656, - "lon": -2.1140288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512365051, - "lat": 51.8870778, - "lon": -2.1085901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 95D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 512365068, - "lat": 51.8860368, - "lon": -2.1199192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512365081, - "lat": 51.8816149, - "lon": -2.0929585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512365114, - "lat": 51.8800940, - "lon": -2.1078950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "priority": "yes", - "ref": "GL51 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-09-14" - } -}, -{ - "type": "node", - "id": 512418713, - "lat": 55.8649740, - "lon": -4.4325661, - "tags": { - "amenity": "post_box", - "postal_code": "PA3", - "ref": "PA3 2171" - } -}, -{ - "type": "node", - "id": 512454307, - "lat": 51.8925083, - "lon": -2.0878730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "note": "Priority Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL50 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 512454349, - "lat": 51.8874593, - "lon": -2.0645900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "note": "Mo-Fr 17:45 until 2016-01-15, 17:00 since then", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-26" - } -}, -{ - "type": "node", - "id": 512464390, - "lat": 53.4117276, - "lon": -2.9052262, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 512464397, - "lat": 53.4088303, - "lon": -2.9055986, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 512464406, - "lat": 53.4108336, - "lon": -2.9090590, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 512465282, - "lat": 51.9002526, - "lon": -2.0599802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 251" - } -}, -{ - "type": "node", - "id": 512465302, - "lat": 51.9031228, - "lon": -2.0503697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 293" - } -}, -{ - "type": "node", - "id": 512478118, - "lat": 51.9482591, - "lon": -1.9750750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512529130, - "lat": 53.4056335, - "lon": -2.9306328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "EIIR double G type postbox L7 28 by Carron Company on Dryden Road, Wavertree Technology park. Next to L7 58", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L7 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L7 28 on Dryden Road.jpg" - } -}, -{ - "type": "node", - "id": 512537961, - "lat": 51.3618567, - "lon": 0.0276160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BR2 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 512569899, - "lat": 51.4283730, - "lon": -0.9034621, - "tags": { - "amenity": "post_box", - "ref": "RG6 615" - } -}, -{ - "type": "node", - "id": 512591344, - "lat": 53.5211578, - "lon": -2.3231362, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 512593065, - "lat": 51.7570356, - "lon": -1.3999661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX29 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512593104, - "lat": 51.7538949, - "lon": -1.3968159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "OX29 170", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 512686192, - "lat": 50.7388330, - "lon": -3.5450730, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 512697974, - "lat": 57.4972266, - "lon": -4.1203484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "IV2 105D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 512697976, - "lat": 57.4950806, - "lon": -4.1150147, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 512751800, - "lat": 56.0095420, - "lon": -2.8578961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EH32 31" - } -}, -{ - "type": "node", - "id": 512764952, - "lat": 51.4722413, - "lon": -0.1042912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 512764967, - "lat": 51.4735099, - "lon": -0.1013546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 512765271, - "lat": 51.4744981, - "lon": -0.1049067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 512814437, - "lat": 51.3568496, - "lon": -1.2816496, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 512814438, - "lat": 51.3410116, - "lon": -1.2800725, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 512845156, - "lat": 56.0572356, - "lon": -2.7411011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "EH39 122D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 512845165, - "lat": 56.0587039, - "lon": -2.7436912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH39 11D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 513064957, - "lat": 56.0592362, - "lon": -2.7381122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH39 177D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 513070739, - "lat": 56.0580457, - "lon": -2.7344480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH39 170D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 513070753, - "lat": 56.0584935, - "lon": -2.7281588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "mapillary": "287786130647804", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH39 119D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 513075280, - "lat": 55.8555415, - "lon": -4.2835657, - "tags": { - "amenity": "post_box", - "postal_code": "G51", - "ref": "G51 397" - } -}, -{ - "type": "node", - "id": 513286210, - "lat": 53.3169294, - "lon": -2.9817351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "description": "QEII Type K post box CH62 308 with pouch box on Plymyard Avenue opposite Bettisfield Avenue, Eastham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH62 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Plymyard Avenue, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 513375939, - "lat": 53.3969521, - "lon": -2.8959580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "L16 594" - } -}, -{ - "type": "node", - "id": 513379094, - "lat": 50.7372667, - "lon": -2.9597815, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "DT7 61" - } -}, -{ - "type": "node", - "id": 513379196, - "lat": 50.7252205, - "lon": -2.9410202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT7 34D", - "ref:GB:uprn": "10015468241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 513379324, - "lat": 50.7784270, - "lon": -2.9868388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX13 121D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 513399701, - "lat": 50.7956122, - "lon": -3.0724027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX13 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 513399792, - "lat": 50.7981688, - "lon": -3.0700082, - "tags": { - "amenity": "post_box", - "ref": "EX13 6" - } -}, -{ - "type": "node", - "id": 513400020, - "lat": 50.8027780, - "lon": -3.0579668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:15; Sa 09:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX13 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 513411030, - "lat": 50.8599447, - "lon": -2.9231016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA20 529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 513412582, - "lat": 54.4016955, - "lon": -1.3130202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 513412591, - "lat": 54.3994066, - "lon": -1.3089736, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 513423789, - "lat": 54.5240028, - "lon": -3.1471603, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA12 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 513431632, - "lat": 51.5507913, - "lon": -0.8904013, - "tags": { - "amenity": "post_box", - "ele": "53.718994", - "image": "http://www.flickr.com/photos/43047002@N06/3965398689", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG9 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 513444689, - "lat": 51.6955644, - "lon": -0.1815075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 513473707, - "lat": 51.6973321, - "lon": -0.1861286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 120", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 513482403, - "lat": 50.8634683, - "lon": -3.3925592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1218581801913733", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 513555149, - "lat": 51.2582535, - "lon": -2.1929367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 12:00", - "ref": "BA13 25" - } -}, -{ - "type": "node", - "id": 513677639, - "lat": 51.7385815, - "lon": -1.2160861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "ref": "OX4 112" - } -}, -{ - "type": "node", - "id": 513677658, - "lat": 51.7487928, - "lon": -1.2399914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "OX4 454" - } -}, -{ - "type": "node", - "id": 513738964, - "lat": 53.2339423, - "lon": -0.5426032, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "LN1 118D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 513745017, - "lat": 52.8671606, - "lon": 1.3582586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR11 1182D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 513793717, - "lat": 51.5159851, - "lon": -0.1691723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 12:00", - "collection_times_checked": "2018-04-24", - "description": "Left aperture for stamped; right aperture for franked.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 10;W2 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 513799487, - "lat": 51.4363823, - "lon": -0.9364803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG6 307D" - } -}, -{ - "type": "node", - "id": 513799507, - "lat": 51.4369774, - "lon": -0.9314168, - "tags": { - "amenity": "post_box", - "ref": "RG6 443" - } -}, -{ - "type": "node", - "id": 513853834, - "lat": 57.1750695, - "lon": -3.7947774, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 15:30; Sa 07:15", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH22 15", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 513872110, - "lat": 53.0003826, - "lon": -1.1907648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "ele": "51.075317", - "post_box:type": "pillar", - "ref": "NG6 350", - "ref:GB:uprn": "10015328566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 513896499, - "lat": 57.1923584, - "lon": -3.8285958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-10-06", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH22 27", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 513911352, - "lat": 53.6532480, - "lon": -1.4227343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 87" - } -}, -{ - "type": "node", - "id": 514075799, - "lat": 55.8749311, - "lon": -4.3626825, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 514589747, - "lat": 52.4156413, - "lon": -1.8573338, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 575", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 514877473, - "lat": 51.7497528, - "lon": -1.2444555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX4 643", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 515120086, - "lat": 51.1205361, - "lon": 0.9315810, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 234" - } -}, -{ - "type": "node", - "id": 515126276, - "lat": 51.1393073, - "lon": 0.9008235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "postal_code": "TN24", - "ref": "TN24 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 515143420, - "lat": 51.1040121, - "lon": 0.7127441, - "tags": { - "amenity": "post_box", - "postal_code": "TN26", - "ref": "TN26 181" - } -}, -{ - "type": "node", - "id": 515166706, - "lat": 51.1056619, - "lon": 0.6437475, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 198" - } -}, -{ - "type": "node", - "id": 515166707, - "lat": 51.1492689, - "lon": 0.6875415, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 124" - } -}, -{ - "type": "node", - "id": 515166711, - "lat": 51.1552593, - "lon": 0.6722472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TN27", - "ref": "TN27 125", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 515166713, - "lat": 51.1687312, - "lon": 0.6753461, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN27 203", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TN27", - "ref": "TN27 203D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-19" - } -}, -{ - "type": "node", - "id": 515166715, - "lat": 51.1808852, - "lon": 0.6714321, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TN27", - "ref": "TN27 89" - } -}, -{ - "type": "node", - "id": 515636137, - "lat": 51.4767516, - "lon": 0.0213131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-07-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 515642197, - "lat": 51.7510444, - "lon": -1.2573030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "name": "St Aldates Oxford", - "note": "There's no collection plate with the ref on", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:design": "wood", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 515644785, - "lat": 52.4287150, - "lon": -1.8559164, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 1145", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 515663680, - "lat": 50.9147177, - "lon": 0.4942370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "TN33 35D" - } -}, -{ - "type": "node", - "id": 515663681, - "lat": 50.9411429, - "lon": 0.5276031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN33", - "ref": "TN33 111" - } -}, -{ - "type": "node", - "id": 515663682, - "lat": 50.9114735, - "lon": 0.5444809, - "tags": { - "amenity": "post_box", - "postal_code": "TN33", - "ref": "TN33 129" - } -}, -{ - "type": "node", - "id": 515663683, - "lat": 50.9334733, - "lon": 0.5343565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN33", - "ref": "TN33 148" - } -}, -{ - "type": "node", - "id": 515663684, - "lat": 50.9457827, - "lon": 0.5296131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN33", - "ref": "TN33 241" - } -}, -{ - "type": "node", - "id": 515663685, - "lat": 51.2115480, - "lon": 0.0601616, - "tags": { - "amenity": "post_box", - "note": "Now disused - replacement box slightly north on same road on corner with Brownings Road.\nWas TN8 234.", - "postal_code": "TN8", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 515663686, - "lat": 51.2323867, - "lon": 0.0550349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "postal_code": "TN8", - "ref": "TN8 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 515663687, - "lat": 51.0998430, - "lon": 0.4403487, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 255" - } -}, -{ - "type": "node", - "id": 515663688, - "lat": 51.1087494, - "lon": 0.4394597, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 251" - } -}, -{ - "type": "node", - "id": 515663689, - "lat": 51.1117052, - "lon": 0.4563152, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 334" - } -}, -{ - "type": "node", - "id": 515663690, - "lat": 51.1130120, - "lon": 0.4592531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "postal_code": "TN17", - "ref": "TN17 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 515663691, - "lat": 51.1370746, - "lon": 0.4844990, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 248" - } -}, -{ - "type": "node", - "id": 515663692, - "lat": 51.0616138, - "lon": 0.5984332, - "tags": { - "amenity": "post_box", - "colour": "red", - "postal_code": "TN17", - "ref": "TN17 186", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 515663693, - "lat": 51.0945504, - "lon": 0.5407487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "postal_code": "TN17", - "ref": "TN17 185", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 515664886, - "lat": 51.0856675, - "lon": 0.4495978, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 244" - } -}, -{ - "type": "node", - "id": 515664887, - "lat": 51.1012982, - "lon": 0.4559942, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 245" - } -}, -{ - "type": "node", - "id": 515664891, - "lat": 51.1215306, - "lon": 0.5116572, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 188" - } -}, -{ - "type": "node", - "id": 515681126, - "lat": 51.1021887, - "lon": 0.4974561, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 193" - } -}, -{ - "type": "node", - "id": 515681130, - "lat": 51.1131660, - "lon": 0.5321942, - "tags": { - "amenity": "post_box", - "postal_code": "TN17", - "ref": "TN17 192" - } -}, -{ - "type": "node", - "id": 515682119, - "lat": 53.6270124, - "lon": -2.9866522, - "tags": { - "amenity": "post_box", - "ref": "PR8 52" - } -}, -{ - "type": "node", - "id": 515722540, - "lat": 52.9883534, - "lon": -1.1682326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "49.633423", - "post_box:type": "pillar", - "ref": "NG5 291D", - "ref:GB:uprn": "10015374956", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 515722638, - "lat": 52.9890453, - "lon": -1.1624458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "49.63", - "post_box:type": "wall", - "ref": "NG5 88D", - "ref:GB:uprn": "10015285424", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 515722657, - "lat": 52.9914394, - "lon": -1.1565105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "54.199585", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 515868766, - "lat": 53.4226813, - "lon": -1.3660566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "S60 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 515876703, - "lat": 52.7120781, - "lon": -2.7258216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY2 3" - } -}, -{ - "type": "node", - "id": 516188601, - "lat": 51.8524170, - "lon": -2.1883669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL3 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 516636637, - "lat": 53.3134279, - "lon": -2.9775863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type B post box CH62 547 by Carron Company on Heygarth Road opposite Grampian Way, Eastham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 547", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box opposite Grampian Way, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 517326758, - "lat": 51.8331207, - "lon": -2.2068512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL4 397D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 517328988, - "lat": 51.8322964, - "lon": -2.1995764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "GL4 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 517371504, - "lat": 51.8381222, - "lon": -2.2149977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "resurvey", - "note": "No faceplate at time of survey, will resurvey. Replaces nearby postbox which was placed from memory and not accurately positioned.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 517438161, - "lat": 51.2503044, - "lon": -2.1964162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BA13 20" - } -}, -{ - "type": "node", - "id": 517913083, - "lat": 52.1984061, - "lon": -0.2731825, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-03", - "source": "survey" - } -}, -{ - "type": "node", - "id": 517966455, - "lat": 51.1576961, - "lon": -0.0511911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH7 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 517966457, - "lat": 51.1975298, - "lon": -0.0657782, - "tags": { - "amenity": "post_box", - "mapillary": "125194826716471", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH9 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 517966459, - "lat": 51.1930892, - "lon": -0.0408157, - "tags": { - "amenity": "post_box", - "ref": "RH7 85" - } -}, -{ - "type": "node", - "id": 517966460, - "lat": 51.1754648, - "lon": -0.0207898, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH7 79" - } -}, -{ - "type": "node", - "id": 517966462, - "lat": 51.1584914, - "lon": -0.0223521, - "tags": { - "amenity": "post_box", - "ref": "RH19 96" - } -}, -{ - "type": "node", - "id": 517966463, - "lat": 51.2030517, - "lon": -0.0375189, - "tags": { - "amenity": "post_box", - "ref": "RH7 87" - } -}, -{ - "type": "node", - "id": 517966464, - "lat": 51.1810057, - "lon": -0.0096486, - "tags": { - "amenity": "post_box", - "ref": "RH7 98" - } -}, -{ - "type": "node", - "id": 518142652, - "lat": 53.8268816, - "lon": -1.6373665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "in wall", - "ref": "LS13 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 518224755, - "lat": 50.8237664, - "lon": -3.6598820, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 518523418, - "lat": 51.1764014, - "lon": -0.0073831, - "tags": { - "amenity": "post_box", - "ref": "RH7 33" - } -}, -{ - "type": "node", - "id": 518523421, - "lat": 51.1658172, - "lon": 0.0055015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH7 113" - } -}, -{ - "type": "node", - "id": 518523424, - "lat": 51.1611728, - "lon": 0.0032853, - "tags": { - "amenity": "post_box", - "ref": "RH7 35" - } -}, -{ - "type": "node", - "id": 518523525, - "lat": 51.1581547, - "lon": 0.0115187, - "tags": { - "amenity": "post_box", - "ref": "RH7 69" - } -}, -{ - "type": "node", - "id": 518523527, - "lat": 51.1550428, - "lon": 0.0040162, - "tags": { - "amenity": "post_box", - "ref": "RH7 43" - } -}, -{ - "type": "node", - "id": 518523530, - "lat": 51.1685670, - "lon": -0.0170221, - "tags": { - "amenity": "post_box", - "ref": "RH7 38" - } -}, -{ - "type": "node", - "id": 518523564, - "lat": 51.2014450, - "lon": -0.0061831, - "tags": { - "amenity": "post_box", - "ref": "RH7 99" - } -}, -{ - "type": "node", - "id": 518523567, - "lat": 51.2149850, - "lon": -0.0233901, - "tags": { - "amenity": "post_box", - "ref": "RH8 40" - } -}, -{ - "type": "node", - "id": 518523569, - "lat": 51.2045940, - "lon": -0.0574194, - "tags": { - "amenity": "post_box", - "mapillary": "812633329660785", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH1 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-12-27" - } -}, -{ - "type": "node", - "id": 518523572, - "lat": 51.1964137, - "lon": -0.0532412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "RH7 83" - } -}, -{ - "type": "node", - "id": 518523653, - "lat": 51.1766412, - "lon": -0.0626395, - "tags": { - "amenity": "post_box", - "ref": "RH7 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 518523655, - "lat": 51.1805367, - "lon": -0.0538836, - "tags": { - "amenity": "post_box", - "ref": "RH7 86" - } -}, -{ - "type": "node", - "id": 518523656, - "lat": 51.1673888, - "lon": -0.0416369, - "tags": { - "amenity": "post_box", - "ref": "RH7 60" - } -}, -{ - "type": "node", - "id": 518548018, - "lat": 52.2729344, - "lon": 0.8596342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 518729701, - "lat": 53.3883571, - "lon": -2.3581489, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 518750002, - "lat": 52.7247122, - "lon": -2.7526024, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 519000774, - "lat": 52.4672994, - "lon": -0.9352570, - "tags": { - "amenity": "post_box", - "ref": "LE16 78" - } -}, -{ - "type": "node", - "id": 519000836, - "lat": 52.4675292, - "lon": -0.9291461, - "tags": { - "amenity": "post_box", - "ref": "LE16 73" - } -}, -{ - "type": "node", - "id": 519027045, - "lat": 52.9815527, - "lon": -1.1904802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "ele": "61.409546", - "post_box:type": "pillar", - "ref": "NG6 166", - "ref:GB:uprn": "10015372049", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 519061856, - "lat": 52.4732309, - "lon": -0.9171161, - "tags": { - "amenity": "post_box", - "ref": "LE16 20" - } -}, -{ - "type": "node", - "id": 519064615, - "lat": 52.4739134, - "lon": -0.9242160, - "tags": { - "amenity": "post_box", - "ref": "LE16 69" - } -}, -{ - "type": "node", - "id": 519073738, - "lat": 52.9421334, - "lon": -1.4806418, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DE22 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 519158216, - "lat": 53.0214412, - "lon": -1.2977166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "79.434082", - "old_ref": "NG16 349", - "post_box:type": "pillar", - "ref": "NG16 349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 519218974, - "lat": 51.4691565, - "lon": 0.0667956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 57", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 519218981, - "lat": 51.4723339, - "lon": 0.0722005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 519218984, - "lat": 51.4746307, - "lon": 0.0722252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519218986, - "lat": 51.4739942, - "lon": 0.0698437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519218990, - "lat": 51.4797703, - "lon": 0.0741674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519218992, - "lat": 51.4813880, - "lon": 0.0771532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 519218996, - "lat": 51.4793265, - "lon": 0.0793262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519219002, - "lat": 51.4803436, - "lon": 0.0826731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Replacement for VR pillar now located away from junction.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SE18 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519219005, - "lat": 51.4780678, - "lon": 0.0880605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519219008, - "lat": 51.4764894, - "lon": 0.0910923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 75", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 519219012, - "lat": 51.4756902, - "lon": 0.0885026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "correct plate seen 03/Sep/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_e", - "post_box:type": "pillar", - "ref": "SE18 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519219015, - "lat": 51.4742772, - "lon": 0.0834285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519219018, - "lat": 51.4749715, - "lon": 0.0933553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 519219024, - "lat": 51.4792699, - "lon": 0.0984883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519219027, - "lat": 51.4807926, - "lon": 0.0907038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "collection plate has ref code se18 38 in it - but that belongs to another box: https://www.openstreetmap.org/edit?node=519219027\nRMNY shows this as SE18 17: https://www.royalmail.com/services-near-you/postbox/4-kings-highway-se18-2ng/0000SE1817", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519219029, - "lat": 51.4848179, - "lon": 0.0952156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 519219033, - "lat": 51.4881611, - "lon": 0.0960970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "note": "missing collection plate 17/Aug/21 so cannot confirm ref or collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "McDowall Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "SE18 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 519253388, - "lat": 51.4874540, - "lon": 0.0928641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "missing collection plate 17/Aug/21 so cannot confirm ref or collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "McDowall Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "SE18 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 519253389, - "lat": 51.4877887, - "lon": 0.0906870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519253390, - "lat": 51.4871689, - "lon": 0.0858338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519253391, - "lat": 51.4860933, - "lon": 0.0805882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 519253392, - "lat": 51.4860930, - "lon": 0.0750048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "note": "Missing collection plate on 30/jun/21 so cannot confirm times or ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519253393, - "lat": 51.4845370, - "lon": 0.0715728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519253394, - "lat": 51.4817474, - "lon": 0.0730829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 519253395, - "lat": 51.4779992, - "lon": 0.0690109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519263884, - "lat": 52.3267556, - "lon": 0.9472602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 519271956, - "lat": 51.4514663, - "lon": 0.0489661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519271958, - "lat": 51.4451738, - "lon": 0.0405625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519308488, - "lat": 51.8893305, - "lon": -2.1157223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "collection_times_checked": "2015-10-11", - "note": "marked as \"PRIORITY POSTBOX\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "priority": "yes", - "ref": "GL51 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 519354942, - "lat": 51.4351890, - "lon": 0.0768571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519354945, - "lat": 51.4410017, - "lon": 0.0789664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Romec design with sunken keyhole", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519354947, - "lat": 51.4410579, - "lon": 0.0730138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519354950, - "lat": 51.4329375, - "lon": 0.0720503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519354953, - "lat": 51.4350164, - "lon": 0.0716787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519354955, - "lat": 51.4295050, - "lon": 0.0642188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519354956, - "lat": 51.4257971, - "lon": 0.0598226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 87", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 519354959, - "lat": 51.4263947, - "lon": 0.0521427, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "missing collection plate on 25/4/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519381566, - "lat": 51.4920757, - "lon": -2.6434542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 523", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519391934, - "lat": 51.4330134, - "lon": 0.0489165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391938, - "lat": 51.4322019, - "lon": 0.0561213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 82", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391945, - "lat": 51.4323886, - "lon": 0.0446764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391949, - "lat": 51.4343549, - "lon": 0.0419298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391954, - "lat": 51.4375197, - "lon": 0.0408850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391959, - "lat": 51.4342612, - "lon": 0.0374694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391963, - "lat": 51.4394995, - "lon": 0.0369192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE9 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519391968, - "lat": 51.4409487, - "lon": 0.0413814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519402651, - "lat": 51.4808024, - "lon": -2.6345524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 1129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 519424616, - "lat": 51.4661335, - "lon": 0.0502954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 519424624, - "lat": 51.4629307, - "lon": 0.0505512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519424626, - "lat": 51.4604506, - "lon": 0.0446381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519424631, - "lat": 51.4560116, - "lon": 0.0410062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519429301, - "lat": 51.4648118, - "lon": 0.0558581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "ref code on collection plate unreadable 18/03/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519436786, - "lat": 51.5978159, - "lon": -0.1213155, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N22 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519439537, - "lat": 52.7730079, - "lon": -2.3709755, - "tags": { - "amenity": "post_box", - "postal_code": "TF10 7RH" - } -}, -{ - "type": "node", - "id": 519451364, - "lat": 51.4547356, - "lon": 0.0845260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519451369, - "lat": 51.4508291, - "lon": 0.0632687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519451372, - "lat": 51.4508222, - "lon": 0.0567855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "On 25/4/21 the collection plate shows incorrect ref \"SE21 2\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519451374, - "lat": 51.4534442, - "lon": 0.0558442, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "collection plate missing 18/03/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519451377, - "lat": 51.4540361, - "lon": 0.0569644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519459062, - "lat": 51.4491399, - "lon": 0.0587203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519459065, - "lat": 51.4704156, - "lon": 0.0600478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519459068, - "lat": 51.4464218, - "lon": 0.0526349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "actual collection plate showed SE9 19 on April 2021 but RMNY site shows SE9 18 - https://www.royalmail.com/services-near-you/postbox/court-road-se9-5ny/00000SE918", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519459071, - "lat": 51.4442493, - "lon": 0.0634096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519459074, - "lat": 51.4474364, - "lon": 0.0625870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 47", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477969, - "lat": 51.4419829, - "lon": 0.0667607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477973, - "lat": 51.4374272, - "lon": 0.0724477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477976, - "lat": 51.4332451, - "lon": 0.0776098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477979, - "lat": 51.4503117, - "lon": 0.0814537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477982, - "lat": 51.4475131, - "lon": 0.0845217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 85", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477985, - "lat": 51.4358755, - "lon": 0.0629774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "SE9 21P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519477988, - "lat": 51.4245972, - "lon": 0.0653476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR7 142" - } -}, -{ - "type": "node", - "id": 519477991, - "lat": 51.4293742, - "lon": 0.0570806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 519535523, - "lat": 53.1149818, - "lon": -1.2866462, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 519537327, - "lat": 56.0604258, - "lon": -2.7175699, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH39 47D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 519537934, - "lat": 53.1239408, - "lon": -1.2726111, - "tags": { - "amenity": "post_box", - "ele": "164" - } -}, -{ - "type": "node", - "id": 519537946, - "lat": 53.1258760, - "lon": -1.2804023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "170", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG17 316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519545635, - "lat": 56.0575805, - "lon": -2.7055969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH39 169D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 519662722, - "lat": 49.9219979, - "lon": -6.3077967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR21 180" - } -}, -{ - "type": "node", - "id": 519662755, - "lat": 49.9262013, - "lon": -6.2931984, - "tags": { - "amenity": "post_box", - "ref": "TR21 17" - } -}, -{ - "type": "node", - "id": 519688216, - "lat": 49.9199372, - "lon": -6.2859196, - "tags": { - "amenity": "post_box", - "ref": "TR21 178" - } -}, -{ - "type": "node", - "id": 519688221, - "lat": 49.9126707, - "lon": -6.2998690, - "tags": { - "amenity": "post_box", - "ref": "TR21 9" - } -}, -{ - "type": "node", - "id": 519796209, - "lat": 52.4793318, - "lon": -0.9277300, - "tags": { - "amenity": "post_box", - "ref": "LE16 85" - } -}, -{ - "type": "node", - "id": 519796321, - "lat": 52.4846716, - "lon": -0.9353128, - "tags": { - "amenity": "post_box", - "ref": "LE16 61" - } -}, -{ - "type": "node", - "id": 519796478, - "lat": 52.4846047, - "lon": -0.9291736, - "tags": { - "amenity": "post_box", - "ref": "LE16 3" - } -}, -{ - "type": "node", - "id": 519980415, - "lat": 51.8841795, - "lon": -2.0548511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "marked as priority", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 112", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 519988502, - "lat": 53.3277119, - "lon": -3.0970895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type K post box CH60 267 outside the Church of the Good Shepherd, Telegraph Road, Heswall. Used to be on on Rocky Lane, then moved to the opposite side of the road before settling here.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH60 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box opposite Heswall Hall.jpg" - } -}, -{ - "type": "node", - "id": 520012004, - "lat": 51.8829762, - "lon": -2.1074691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520261891, - "lat": 51.7043570, - "lon": 0.1184810, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 520293574, - "lat": 51.6987687, - "lon": 0.1109445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM16 3301;CM16 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520308090, - "lat": 51.5089780, - "lon": -0.0336463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-12-31", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "note": "Machan 2001", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "E14 20;E14 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520308098, - "lat": 51.5116282, - "lon": -0.0564640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-08", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 20;E1 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520345925, - "lat": 51.3019897, - "lon": -0.1038806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR5 544D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520405033, - "lat": 50.8656946, - "lon": -0.7102236, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520405580, - "lat": 50.9276546, - "lon": -0.6404631, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "ele": "183.000000", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520409458, - "lat": 50.9635559, - "lon": -0.7054266, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "note": "This postbox is of the brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520410439, - "lat": 50.9624863, - "lon": -0.7383591, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "ele": "143.000000", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520477019, - "lat": 51.1054200, - "lon": -1.1241809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO24 117", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 520477167, - "lat": 51.1019284, - "lon": -1.1856061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520477196, - "lat": 51.1254067, - "lon": -1.1877171, - "tags": { - "amenity": "post_box", - "ref": "SO24 149" - } -}, -{ - "type": "node", - "id": 520480413, - "lat": 51.1532632, - "lon": 1.2687329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 520480438, - "lat": 50.9581272, - "lon": -0.6666407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU28 34", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "GU28 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 520480463, - "lat": 51.1483967, - "lon": 1.2697353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT16", - "ref": "CT16 93", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 520649634, - "lat": 51.7431407, - "lon": 0.4833770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 425D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520655838, - "lat": 58.3118719, - "lon": -4.9155594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV27 340", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520683561, - "lat": 52.6574506, - "lon": -1.9375756, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 21", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 520749602, - "lat": 52.6563700, - "lon": -1.9320459, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 94", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 520749625, - "lat": 52.6563352, - "lon": -1.9198965, - "tags": { - "amenity": "post_box", - "postal_code": "WS8", - "ref": "WS8 271", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 520829911, - "lat": 53.6917578, - "lon": -1.6269940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 997", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 520880824, - "lat": 53.1286600, - "lon": -1.4181348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "157.5406494", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 520880835, - "lat": 53.1264867, - "lon": -1.4526902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "161.8664551", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 366" - } -}, -{ - "type": "node", - "id": 520880847, - "lat": 53.1264764, - "lon": -1.4108220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 399" - } -}, -{ - "type": "node", - "id": 520946115, - "lat": 55.8154599, - "lon": -3.0916394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH23 172", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 520946124, - "lat": 55.8109759, - "lon": -3.0178610, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-22", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "ref": "EH23 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 520946125, - "lat": 55.8251414, - "lon": -3.0111351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:45", - "ref": "EH23 56" - } -}, -{ - "type": "node", - "id": 520946127, - "lat": 55.8663463, - "lon": -2.9945753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH23 280", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 520946128, - "lat": 55.8912971, - "lon": -2.9378050, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2023-10-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH33 217D", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520946129, - "lat": 55.8903410, - "lon": -2.8928692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH33 218" - } -}, -{ - "type": "node", - "id": 520946132, - "lat": 55.8964298, - "lon": -2.8636776, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-10-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH33 251D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520946134, - "lat": 55.8998734, - "lon": -2.8397355, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-10-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EH34 216D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520946137, - "lat": 55.9208572, - "lon": -2.7905636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "EH41 304", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 520946139, - "lat": 55.9362797, - "lon": -2.7513006, - "tags": { - "amenity": "post_box", - "ref": "EH41 305" - } -}, -{ - "type": "node", - "id": 521135435, - "lat": 54.0483511, - "lon": -2.8039739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA1 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521135438, - "lat": 54.0483418, - "lon": -2.8039722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA1 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521202838, - "lat": 54.3021321, - "lon": -3.1704282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA20 6" - } -}, -{ - "type": "node", - "id": 521203172, - "lat": 54.2549433, - "lon": -3.0669126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LA12 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521203182, - "lat": 54.3377953, - "lon": -3.1036396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA21 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521208961, - "lat": 54.5562674, - "lon": -1.2776867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TS17 181D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 521219473, - "lat": 51.1832529, - "lon": 0.9379519, - "tags": { - "amenity": "post_box", - "operator": "Wye Post Box", - "post_box:type": "pillar", - "postal_code": "TN25", - "ref": "TN25 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521219477, - "lat": 51.1808407, - "lon": 0.9416764, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 334", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521228942, - "lat": 51.1609478, - "lon": 0.9325566, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 237", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521228950, - "lat": 51.1593169, - "lon": 0.9510941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TN25", - "ref": "TN25 132", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521229261, - "lat": 53.3864301, - "lon": -2.3537245, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 42", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521312225, - "lat": 51.1587483, - "lon": 0.8002943, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=151c22ed-c6e1-490a-8f18-5544dc85b296&cp=51.158743~0.800408&lvl=19&dir=281.11185&pi=-9.124251&style=x&mo=z.0&v=2&sV=2&form=S00027", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TN26", - "ref": "TN26 243", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521371794, - "lat": 51.1947507, - "lon": 0.7288883, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 61", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521371814, - "lat": 51.1997647, - "lon": 0.7350911, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TN27", - "ref": "TN27 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521378878, - "lat": 51.1859794, - "lon": 0.7075932, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN27 19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "TN27", - "ref": "TN27 19D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2022-12-19" - } -}, -{ - "type": "node", - "id": 521396825, - "lat": 51.1536719, - "lon": 0.6997442, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521443843, - "lat": 53.4861164, - "lon": -3.0435802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521444711, - "lat": 53.4953234, - "lon": -3.0415632, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521445092, - "lat": 53.4970135, - "lon": -3.0342075, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521447038, - "lat": 53.5060395, - "lon": -3.0288688, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521456458, - "lat": 53.4946392, - "lon": -3.0136768, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521456882, - "lat": 53.4939040, - "lon": -3.0197107, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521470152, - "lat": 53.5249399, - "lon": -3.0565325, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521483085, - "lat": 51.1455141, - "lon": 0.6835806, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521511190, - "lat": 53.4892678, - "lon": -3.0239101, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521512999, - "lat": 53.4864948, - "lon": -3.0237642, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 521524708, - "lat": 51.1389907, - "lon": 0.7282204, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 16:45, Sa 09:00", - "postal_code": "TN26", - "ref": "TN26 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521524744, - "lat": 51.1380046, - "lon": 0.7967408, - "tags": { - "amenity": "post_box", - "postal_code": "TN26", - "ref": "TN26 233", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521524795, - "lat": 51.1353470, - "lon": 0.8195070, - "tags": { - "amenity": "post_box", - "mapillary": "561271001520828", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TN23", - "ref": "TN23 25", - "source": "survey", - "survey:date": "2020-08-12" - } -}, -{ - "type": "node", - "id": 521524821, - "lat": 51.1444603, - "lon": 0.8333936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "TN23", - "ref": "TN23 150", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521617276, - "lat": 51.5148452, - "lon": -0.1780389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "collection_times_checked": "2015-10-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 77;W2 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521651707, - "lat": 51.5177688, - "lon": -0.1815424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 4D;W2 204D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 521681521, - "lat": 51.5182232, - "lon": -0.1862530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 23;W2 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521725242, - "lat": 51.4414140, - "lon": -0.0532594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521726635, - "lat": 50.9425359, - "lon": -0.6791672, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521726638, - "lat": 50.9289182, - "lon": -0.5647385, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521726641, - "lat": 50.9715013, - "lon": -0.5933574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 521726647, - "lat": 50.9753757, - "lon": -0.5704021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH20 8", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 521726649, - "lat": 50.9802799, - "lon": -0.5948280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU28 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 521876003, - "lat": 51.3155812, - "lon": -0.1381449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "name": "Brighton Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 455", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521894603, - "lat": 51.3826102, - "lon": -0.2596487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 521894609, - "lat": 51.3810618, - "lon": -0.2518982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 233D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 521894614, - "lat": 51.3842867, - "lon": -0.2471555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 245D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 521908045, - "lat": 51.0123365, - "lon": -1.0872023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU32 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521908055, - "lat": 50.9844591, - "lon": -1.0255117, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "last_checked": "2020-02-07", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 521908060, - "lat": 51.0063282, - "lon": -1.0465519, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 521935165, - "lat": 53.7852526, - "lon": -1.7128444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 105" - } -}, -{ - "type": "node", - "id": 521935179, - "lat": 53.7897467, - "lon": -1.7104064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 336" - } -}, -{ - "type": "node", - "id": 521935198, - "lat": 53.7912010, - "lon": -1.7012539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 171" - } -}, -{ - "type": "node", - "id": 522095786, - "lat": 54.8909449, - "lon": -2.9333037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "location": "Inside the station near the entrance (there is another in the middle platforms)", - "post_box:type": "pillar", - "ref": "CA1 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 522100139, - "lat": 50.9172916, - "lon": -0.0264211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN7 472D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 522100162, - "lat": 50.9275134, - "lon": -0.0424134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN7 475", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 522100201, - "lat": 50.9193749, - "lon": -0.0519987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 522100289, - "lat": 50.9212994, - "lon": -0.0607998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 480" - } -}, -{ - "type": "node", - "id": 522112672, - "lat": 54.9035270, - "lon": -2.9592218, - "tags": { - "amenity": "post_box", - "ref": "CA3 48" - } -}, -{ - "type": "node", - "id": 522243494, - "lat": 51.4045269, - "lon": -1.2882925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG18", - "ref": "RG18 89" - } -}, -{ - "type": "node", - "id": 522427392, - "lat": 51.4743543, - "lon": 0.0225783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522428147, - "lat": 51.4760488, - "lon": 0.0266749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522431790, - "lat": 55.4129951, - "lon": -1.7066405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE66 1023;NE66 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522431792, - "lat": 55.4108261, - "lon": -1.7074753, - "tags": { - "amenity": "post_box", - "ref": "NE66 8" - } -}, -{ - "type": "node", - "id": 522441413, - "lat": 51.4826438, - "lon": 0.0085964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 15", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522520209, - "lat": 55.0698680, - "lon": -3.6120435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DG1 204", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522524807, - "lat": 51.5871572, - "lon": -0.5538810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL9 284" - } -}, -{ - "type": "node", - "id": 522651470, - "lat": 51.1461883, - "lon": 1.1912534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 72", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522929401, - "lat": 51.3351110, - "lon": 1.3928493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 522929402, - "lat": 51.3378673, - "lon": 1.4230050, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT11", - "ref": "CT11 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 522949210, - "lat": 53.7859754, - "lon": -1.5606334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 522949215, - "lat": 53.7854438, - "lon": -1.5623619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 518", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 522949231, - "lat": 53.7814795, - "lon": -1.5609914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 203", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 523074840, - "lat": 51.2596625, - "lon": 1.0007443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 114", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 523074944, - "lat": 51.2623383, - "lon": 1.0322257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 238", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 523099011, - "lat": 50.8618673, - "lon": -1.5952587, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "name": "Bank", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 523104561, - "lat": 51.7505190, - "lon": -1.2389981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OX4 62", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 523131133, - "lat": 51.7498292, - "lon": -1.2249382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "colour": "gold", - "note": "painted gold in honour of paralympic rowing medallist Lily van den Broecke", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "OX4 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 523131163, - "lat": 51.7467616, - "lon": -1.2227467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "ref": "OX4 942" - } -}, -{ - "type": "node", - "id": 523147678, - "lat": 56.8704578, - "lon": -5.4354385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "name": "Glenfinnan", - "post_box:type": "lamp", - "ref": "PH37 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 523188611, - "lat": 56.3174333, - "lon": -5.5838851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Tigh an Truish", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "PA34 151D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 523229989, - "lat": 53.0451147, - "lon": -2.9917009, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 523307162, - "lat": 55.0695195, - "lon": -3.6100164, - "tags": { - "amenity": "post_box", - "ref": "DG1 1000" - } -}, -{ - "type": "node", - "id": 523307164, - "lat": 55.0717757, - "lon": -3.6103045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG1 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 523320161, - "lat": 53.3478904, - "lon": -3.0724391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa off", - "description": "EIIR lamp box pier CH61 319 by Machan of Scotland near site of former Storeton railway station, now in a private garden.", - "manufacturer": "Machan, Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Storeton Station.jpg" - } -}, -{ - "type": "node", - "id": 523323654, - "lat": 55.0669103, - "lon": -3.6118019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DG1 27", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 523346705, - "lat": 55.0702987, - "lon": -3.5950250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "624815085874931", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DG1 15", - "survey:date": "2022-09-03" - } -}, -{ - "type": "node", - "id": 523413021, - "lat": 54.9871529, - "lon": -3.5609837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DG1 40" - } -}, -{ - "type": "node", - "id": 523422763, - "lat": 54.9853062, - "lon": -3.5161958, - "tags": { - "amenity": "post_box", - "ref": "DG1 175" - } -}, -{ - "type": "node", - "id": 523440829, - "lat": 55.0015397, - "lon": -3.5223273, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG1 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 523448674, - "lat": 53.8308538, - "lon": -1.8036187, - "tags": { - "amenity": "post_box", - "ref": "BD18 944" - } -}, -{ - "type": "node", - "id": 523459786, - "lat": 53.8348919, - "lon": -1.8014527, - "tags": { - "amenity": "post_box", - "ref": "BD18 908" - } -}, -{ - "type": "node", - "id": 523464641, - "lat": 54.9933578, - "lon": -3.4083294, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG1 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 523808775, - "lat": 54.9785743, - "lon": -3.3310150, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 86", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 523969118, - "lat": 55.9566494, - "lon": -3.1736928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2952158211689017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 93", - "royal_cypher": "GR", - "survey:date": "2023-06-10" - } -}, -{ - "type": "node", - "id": 524017603, - "lat": 54.1720640, - "lon": -2.5150157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LA6 178", - "source": "survey" - } -}, -{ - "type": "node", - "id": 524017622, - "lat": 54.1827560, - "lon": -2.5595709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA6 134", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 524272447, - "lat": 50.9094765, - "lon": -3.3243775, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 524375164, - "lat": 50.9032458, - "lon": -3.3365908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 524375168, - "lat": 50.9040739, - "lon": -3.3342305, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 524476203, - "lat": 51.6089926, - "lon": -3.3780156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF37 29D" - } -}, -{ - "type": "node", - "id": 524519697, - "lat": 54.1144225, - "lon": -0.1231895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO15 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 524519725, - "lat": 54.1163711, - "lon": -0.1246346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO15 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 524519817, - "lat": 54.1190885, - "lon": -0.1219601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO15 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 524575913, - "lat": 51.4327411, - "lon": -0.9296268, - "tags": { - "amenity": "post_box", - "mapillary": "211844110529163", - "post_box:type": "pillar", - "ref": "RG6 531", - "survey:date": "2020-07-03" - } -}, -{ - "type": "node", - "id": 524576814, - "lat": 52.8980620, - "lon": -1.2601083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 524576877, - "lat": 52.9129840, - "lon": -1.2611307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG9 658D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 524680607, - "lat": 51.7535639, - "lon": -1.2700965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-11-27", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX1 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 524757293, - "lat": 54.9739821, - "lon": -3.2806332, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG12 88", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 525340196, - "lat": 54.9835292, - "lon": -3.2018194, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 525379530, - "lat": 51.6035625, - "lon": -0.5547972, - "tags": { - "amenity": "post_box", - "ref": "SL9 73" - } -}, -{ - "type": "node", - "id": 525401718, - "lat": 51.2767801, - "lon": -0.3731340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT23 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 525414731, - "lat": 53.3259392, - "lon": -3.0768383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH60 604 by Carron Company on Broadmeads, Heswall Hills, Wirral.", - "manufacturer": "Carron Company", - "name": "Broadmeads", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH60 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Broadmeads, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 525417447, - "lat": 52.1926452, - "lon": 0.8904638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP30 2116" - } -}, -{ - "type": "node", - "id": 525419837, - "lat": 53.3294800, - "lon": -3.0747900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QEII Type K post box CH60 310 at Brimstage Road post office.", - "name": "Brimstage Road Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH60 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Brimstage Road post office.jpg" - } -}, -{ - "type": "node", - "id": 525497166, - "lat": 52.6744635, - "lon": -2.7598180, - "tags": { - "amenity": "post_box", - "ref": "SY3 523" - } -}, -{ - "type": "node", - "id": 525569374, - "lat": 50.9757469, - "lon": -1.3877304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525576080, - "lat": 50.9424366, - "lon": -1.4032958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 393D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 525576083, - "lat": 50.9461951, - "lon": -1.4048876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525654598, - "lat": 51.7658554, - "lon": 0.4760417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 525684406, - "lat": 51.7711356, - "lon": 0.4699155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 525690267, - "lat": 52.6567590, - "lon": -2.7820889, - "tags": { - "amenity": "post_box", - "ref": "SY3 90" - } -}, -{ - "type": "node", - "id": 525704307, - "lat": 52.2247435, - "lon": 0.1281868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525732465, - "lat": 52.2284184, - "lon": 0.1208818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB4 2", - "ref": "CB4 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525742292, - "lat": 52.2329197, - "lon": 0.1226655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CB4 2", - "ref": "CB4 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 525744945, - "lat": 52.2332548, - "lon": 0.1289070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 2", - "ref": "CB4 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525747541, - "lat": 51.7634234, - "lon": 0.4674155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM1 329D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 525793553, - "lat": 51.6066661, - "lon": -4.1691198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA3 659", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525793700, - "lat": 51.6084767, - "lon": -4.1712107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA3 662D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525793914, - "lat": 50.8966294, - "lon": -3.4918681, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 525796032, - "lat": 51.5194271, - "lon": -0.3147080, - "tags": { - "addr:street": "St Stephen's Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W13 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 525896147, - "lat": 51.7526284, - "lon": 0.5191460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 15:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 505", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 525975233, - "lat": 50.6163436, - "lon": -3.4168399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 525992850, - "lat": 50.6133545, - "lon": -3.4102243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 112D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 526003490, - "lat": 51.5241843, - "lon": -0.1168976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1N 22D;WC1N 222D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box WC1N 22D and WC1N 222D" - } -}, -{ - "type": "node", - "id": 526048744, - "lat": 51.5231872, - "lon": -0.1249946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1N 23;WC1N 223", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 526080809, - "lat": 52.9804096, - "lon": -2.1248940, - "tags": { - "amenity": "post_box", - "ref": "ST3 121" - } -}, -{ - "type": "node", - "id": 526171046, - "lat": 53.8167576, - "lon": -1.6638150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 721", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 526199501, - "lat": 55.6042176, - "lon": -4.4971750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 526199533, - "lat": 55.6077322, - "lon": -4.4968764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 526199599, - "lat": 55.6105272, - "lon": -4.4959343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 526900841, - "lat": 55.1067175, - "lon": -3.5802349, - "tags": { - "amenity": "post_box", - "ref": "DG1 194" - } -}, -{ - "type": "node", - "id": 526906560, - "lat": 55.1034244, - "lon": -3.5844330, - "tags": { - "amenity": "post_box", - "ref": "DG1 60" - } -}, -{ - "type": "node", - "id": 526950501, - "lat": 51.6653065, - "lon": -2.2661071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "GL8", - "ref": "GL8 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 527139257, - "lat": 53.3114079, - "lon": -3.0356931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "description": "VR Type C wall box CH63 363 at junction of Raby Mere Road and The Green, Raby, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH63 363D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box in Raby village.jpg" - } -}, -{ - "type": "node", - "id": 527139271, - "lat": 53.3170406, - "lon": -3.0528812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "description": "EIIR Type B post box CH63 590 by Carron Company at Eton Drive, Neston Road, Thornton Hough. RM list it as Oxford Road, but that is a little distance away.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 590", - "wikimedia_commons": "File:Post box at Eton Drive, Thornton Hough.jpg" - } -}, -{ - "type": "node", - "id": 527139333, - "lat": 53.3234479, - "lon": -2.9922684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box CH63 285 at junction of Dibbinsdale Road and Blyth Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Dibbinsdale.jpg" - } -}, -{ - "type": "node", - "id": 527139383, - "lat": 53.3127126, - "lon": -2.9848895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "description": "EIIR type B post box CH63 70 by Carron Company at the corner of Brookhurst Avenue and Keswick Avenue, Bromborough", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Brookhurst Avenue, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 527166070, - "lat": 51.6414962, - "lon": -2.3691129, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 527335867, - "lat": 55.8349745, - "lon": -4.5032810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PA5 108", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 527346815, - "lat": 57.0196176, - "lon": -4.2831928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH20 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 527363302, - "lat": 51.6459225, - "lon": -3.0069627, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 527364884, - "lat": 57.0201671, - "lon": -4.2877243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH20 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 527496563, - "lat": 51.4038542, - "lon": -0.0804553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 527885093, - "lat": 55.6051460, - "lon": -4.4906363, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 527913042, - "lat": 52.6668868, - "lon": -2.6220861, - "tags": { - "amenity": "post_box", - "ref": "SY5 302" - } -}, -{ - "type": "node", - "id": 527913902, - "lat": 52.6811987, - "lon": -2.6265837, - "tags": { - "amenity": "post_box", - "ref": "SY4 578" - } -}, -{ - "type": "node", - "id": 527928317, - "lat": 52.6810062, - "lon": -2.7683873, - "tags": { - "amenity": "post_box", - "ref": "SY3 364" - } -}, -{ - "type": "node", - "id": 527954119, - "lat": 51.2041570, - "lon": -0.4422390, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 527962638, - "lat": 51.1599544, - "lon": -0.3975606, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH5 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P143-0626" - } -}, -{ - "type": "node", - "id": 528012559, - "lat": 51.7473589, - "lon": 0.4972594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM1 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528033143, - "lat": 54.2413811, - "lon": -2.7737900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528047966, - "lat": 53.6259988, - "lon": -3.0258279, - "tags": { - "amenity": "post_box", - "ref": "PR8 130" - } -}, -{ - "type": "node", - "id": 528067225, - "lat": 52.3935315, - "lon": -1.5792658, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CV4 339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528070542, - "lat": 51.4289010, - "lon": 0.3678028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 52" - } -}, -{ - "type": "node", - "id": 528078898, - "lat": 55.3060428, - "lon": -3.4515807, - "tags": { - "amenity": "post_box", - "ref": "DG10 41" - } -}, -{ - "type": "node", - "id": 528219318, - "lat": 55.1273715, - "lon": -1.5932158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 5EL", - "ref": "NE22 650", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528219383, - "lat": 55.1327773, - "lon": -1.6042814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE22 6HR", - "ref": "NE22 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528219385, - "lat": 55.1332753, - "lon": -1.6096263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE22 6ED", - "ref": "NE22 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528252566, - "lat": 53.1670944, - "lon": -1.4162158, - "tags": { - "amenity": "post_box", - "ele": "148" - } -}, -{ - "type": "node", - "id": 528254495, - "lat": 50.9168525, - "lon": -0.4477810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528254506, - "lat": 50.9228465, - "lon": -0.4136602, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 528254508, - "lat": 50.9722860, - "lon": -0.4136307, - "tags": { - "amenity": "post_box", - "ref": "RH12 202" - } -}, -{ - "type": "node", - "id": 528254510, - "lat": 50.9778429, - "lon": -0.3966478, - "tags": { - "amenity": "post_box", - "ref": "RH13 56" - } -}, -{ - "type": "node", - "id": 528254513, - "lat": 50.9805809, - "lon": -0.3838934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RH13 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528262166, - "lat": 55.1719762, - "lon": -3.5444266, - "tags": { - "amenity": "post_box", - "ref": "DG1 62" - } -}, -{ - "type": "node", - "id": 528305435, - "lat": 53.2943762, - "lon": -1.7293891, - "tags": { - "amenity": "post_box", - "ele": "298.6129150", - "post_box:type": "wall", - "ref": "SK17 134D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 528309988, - "lat": 52.9702288, - "lon": -2.6732715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 19:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY13 737D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 528339091, - "lat": 53.2972123, - "lon": -1.7342932, - "tags": { - "amenity": "post_box", - "ele": "303.6599121", - "post_box:type": "wall", - "ref": "SK17 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 528376819, - "lat": 52.9767848, - "lon": -2.6891329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 739D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 528379507, - "lat": 53.2731122, - "lon": -1.7554855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "ele": "295.7290039", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SK17 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528418949, - "lat": 51.4197874, - "lon": 0.3607813, - "tags": { - "amenity": "post_box", - "mapillary": "320207762803671", - "post_box:type": "pillar", - "ref": "DA11 60", - "survey:date": "2021-01-17" - } -}, -{ - "type": "node", - "id": 528419516, - "lat": 51.4158629, - "lon": 0.3706711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 528419523, - "lat": 51.4158370, - "lon": 0.3656407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 137" - } -}, -{ - "type": "node", - "id": 528487150, - "lat": 51.7947097, - "lon": -2.2744381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528508354, - "lat": 51.4129687, - "lon": 0.3760477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 129D" - } -}, -{ - "type": "node", - "id": 528510581, - "lat": 51.4202093, - "lon": 0.3909392, - "tags": { - "amenity": "post_box", - "ref": "DA12 55" - } -}, -{ - "type": "node", - "id": 528510643, - "lat": 51.4223224, - "lon": 0.3931315, - "tags": { - "amenity": "post_box", - "ref": "DA12 141" - } -}, -{ - "type": "node", - "id": 528510658, - "lat": 51.4266035, - "lon": 0.3913285, - "tags": { - "amenity": "post_box", - "ref": "DA12 125" - } -}, -{ - "type": "node", - "id": 528510743, - "lat": 51.4295732, - "lon": 0.3944454, - "tags": { - "amenity": "post_box", - "ref": "DA12 116" - } -}, -{ - "type": "node", - "id": 528510769, - "lat": 51.4208429, - "lon": 0.3973416, - "tags": { - "amenity": "post_box", - "ref": "DA12 127" - } -}, -{ - "type": "node", - "id": 528511594, - "lat": 52.7717022, - "lon": -2.3758073, - "tags": { - "amenity": "post_box", - "ref": "TF10 270" - } -}, -{ - "type": "node", - "id": 528511595, - "lat": 52.7674629, - "lon": -2.3769795, - "tags": { - "amenity": "post_box", - "ref": "TF10 347" - } -}, -{ - "type": "node", - "id": 528511596, - "lat": 52.7708315, - "lon": -2.3711204, - "tags": { - "amenity": "post_box", - "ref": "TF10 209" - } -}, -{ - "type": "node", - "id": 528511597, - "lat": 52.7734024, - "lon": -2.4021431, - "tags": { - "amenity": "post_box", - "ref": "TF10 188" - } -}, -{ - "type": "node", - "id": 528511598, - "lat": 52.7547136, - "lon": -2.3672614, - "tags": { - "amenity": "post_box", - "ref": "TF10 219" - } -}, -{ - "type": "node", - "id": 528511600, - "lat": 52.7733755, - "lon": -2.3808225, - "tags": { - "amenity": "post_box", - "ref": "TF10 208" - } -}, -{ - "type": "node", - "id": 528511601, - "lat": 52.7704335, - "lon": -2.3740299, - "tags": { - "amenity": "post_box", - "fixme": "Check ref: nodes 528511601 and 990303246 both have the same value", - "ref": "TF10 213" - } -}, -{ - "type": "node", - "id": 528511602, - "lat": 52.7687019, - "lon": -2.3680939, - "tags": { - "amenity": "post_box", - "ref": "TF10 314" - } -}, -{ - "type": "node", - "id": 528511603, - "lat": 52.7676003, - "lon": -2.3776257, - "tags": { - "amenity": "post_box", - "ref": "TF10 212" - } -}, -{ - "type": "node", - "id": 528511604, - "lat": 52.7758876, - "lon": -2.3764977, - "tags": { - "amenity": "post_box", - "ref": "TF10 342" - } -}, -{ - "type": "node", - "id": 528511605, - "lat": 52.7771445, - "lon": -2.3779723, - "tags": { - "amenity": "post_box", - "ref": "TF10 203" - } -}, -{ - "type": "node", - "id": 528511606, - "lat": 52.7884284, - "lon": -2.3657818, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF10 202", - "source:geometry": "survey" - } -}, -{ - "type": "node", - "id": 528511607, - "lat": 52.7786924, - "lon": -2.4176798, - "tags": { - "amenity": "post_box", - "ref": "TF10 204" - } -}, -{ - "type": "node", - "id": 528511609, - "lat": 52.7460279, - "lon": -2.3529818, - "tags": { - "amenity": "post_box", - "ref": "TF10 218" - } -}, -{ - "type": "node", - "id": 528511610, - "lat": 52.7462602, - "lon": -2.3980291, - "tags": { - "amenity": "post_box", - "ref": "TF10 246" - } -}, -{ - "type": "node", - "id": 528511611, - "lat": 52.7398129, - "lon": -2.3972785, - "tags": { - "amenity": "post_box", - "ref": "TF10 234" - } -}, -{ - "type": "node", - "id": 528585725, - "lat": 52.9492740, - "lon": -1.1687998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "ele": "49.873779", - "post_box:type": "pillar", - "ref": "NG7 214", - "ref:GB:uprn": "10015381796", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 528606656, - "lat": 52.9524126, - "lon": -1.1501643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "ele": "34.492798", - "mail:franked": "only", - "opening_hours": "Mo-Fr 11:00-18:00", - "post_box:type": "meter", - "ref": "NG1 33", - "ref:GB:uprn": "10015304628", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528606660, - "lat": 52.9523640, - "lon": -1.1500755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "ele": "33.291138", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 30", - "ref:GB:uprn": "10025371173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528606664, - "lat": 52.9510549, - "lon": -1.1535741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 1", - "ref:GB:uprn": "10015360112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 528641972, - "lat": 52.9685578, - "lon": -2.7005259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-01-24" - } -}, -{ - "type": "node", - "id": 528735143, - "lat": 50.3715143, - "lon": -4.1526973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL1 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528748914, - "lat": 50.6483781, - "lon": -3.4617567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-01-02" - } -}, -{ - "type": "node", - "id": 528750742, - "lat": 51.4084976, - "lon": -1.2467288, - "tags": { - "amenity": "post_box", - "note": "there is no visible ref" - } -}, -{ - "type": "node", - "id": 528839258, - "lat": 52.6357457, - "lon": -1.9665344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "WS3", - "ref": "WS3 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 528866717, - "lat": 54.9769968, - "lon": -3.8640137, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG7 82", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528869114, - "lat": 52.2680109, - "lon": -0.3561475, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 528869259, - "lat": 52.2907456, - "lon": -0.3762677, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 528869300, - "lat": 52.3084673, - "lon": -0.4176416, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 528869882, - "lat": 52.3016000, - "lon": -0.3898694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 50" - } -}, -{ - "type": "node", - "id": 528869960, - "lat": 52.3117646, - "lon": -0.3794638, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 528870052, - "lat": 52.2701310, - "lon": -0.3462136, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 528879262, - "lat": 54.9897538, - "lon": -3.9126143, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG7 30" - } -}, -{ - "type": "node", - "id": 528881259, - "lat": 55.0609968, - "lon": -3.9311650, - "tags": { - "amenity": "post_box", - "ref": "DG7 38" - } -}, -{ - "type": "node", - "id": 528885534, - "lat": 52.6306406, - "lon": -1.9763860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "WS3", - "ref": "WS3 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 528898010, - "lat": 55.1352827, - "lon": -3.8105094, - "tags": { - "amenity": "post_box", - "ref": "DG2 92" - } -}, -{ - "type": "node", - "id": 528898214, - "lat": 51.8118393, - "lon": -2.2420776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL4 363D", - "source": "survey", - "survey:date": "2022-10-14" - } -}, -{ - "type": "node", - "id": 528906358, - "lat": 51.4268195, - "lon": 0.3359254, - "tags": { - "amenity": "post_box", - "ref": "DA11 143" - } -}, -{ - "type": "node", - "id": 528906369, - "lat": 51.4259909, - "lon": 0.3409697, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA11 122" - } -}, -{ - "type": "node", - "id": 528906425, - "lat": 51.4300194, - "lon": 0.3396843, - "tags": { - "amenity": "post_box", - "ref": "DA11 100" - } -}, -{ - "type": "node", - "id": 528908163, - "lat": 52.9610305, - "lon": -2.6916803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY13 617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528908215, - "lat": 52.9639748, - "lon": -2.6866318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528908333, - "lat": 52.9661382, - "lon": -2.6832375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY13 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528921297, - "lat": 51.4312489, - "lon": 0.3338763, - "tags": { - "amenity": "post_box", - "ref": "DA11 117" - } -}, -{ - "type": "node", - "id": 528921307, - "lat": 51.4327049, - "lon": 0.3372949, - "tags": { - "amenity": "post_box", - "ref": "DA11 98" - } -}, -{ - "type": "node", - "id": 528921349, - "lat": 51.4352958, - "lon": 0.3433353, - "tags": { - "amenity": "post_box", - "ref": "DA11 76" - } -}, -{ - "type": "node", - "id": 528921682, - "lat": 50.8951553, - "lon": -3.4963201, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 528930356, - "lat": 52.9484663, - "lon": -1.4863013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 529" - } -}, -{ - "type": "node", - "id": 528930412, - "lat": 51.4247962, - "lon": 0.3568884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "DA11 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528930493, - "lat": 52.9507663, - "lon": -1.4812303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "476067623658587", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 209", - "royal_cypher": "EIIR", - "survey:date": "2021-09-19" - } -}, -{ - "type": "node", - "id": 528932836, - "lat": 52.9443935, - "lon": -1.4909327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 695", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528945076, - "lat": 51.4204379, - "lon": 0.3540686, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 528945127, - "lat": 51.4219055, - "lon": 0.3541900, - "tags": { - "amenity": "post_box", - "ref": "DA11 144" - } -}, -{ - "type": "node", - "id": 528945208, - "lat": 51.4274250, - "lon": 0.3570227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 121D" - } -}, -{ - "type": "node", - "id": 528946808, - "lat": 51.4409908, - "lon": 0.3691723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "meter", - "postal_code": "DA11", - "ref": "DA11 1111;DA11 1122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528946842, - "lat": 51.4424404, - "lon": 0.3685175, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DA11", - "ref": "DA11 1131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528946860, - "lat": 51.4419127, - "lon": 0.3711188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA12 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528946868, - "lat": 51.4414558, - "lon": 0.3731701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "mail:franked": "only", - "opening_hours": "Mo-Fr 09:00-18:00; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "DA12", - "ref": "DA12 425", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528946869, - "lat": 51.4414457, - "lon": 0.3731664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DA12", - "ref": "DA12 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528946870, - "lat": 51.4414375, - "lon": 0.3731637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DA12", - "ref": "DA12 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 528964410, - "lat": 51.4271209, - "lon": 0.3501524, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA11 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 528964426, - "lat": 51.4293308, - "lon": 0.3561535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 115D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 528964600, - "lat": 51.4009050, - "lon": 0.3547622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 22" - } -}, -{ - "type": "node", - "id": 528985226, - "lat": 51.4065053, - "lon": 0.3450557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 142" - } -}, -{ - "type": "node", - "id": 529003454, - "lat": 51.4241783, - "lon": 0.3456097, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 529009581, - "lat": 51.1771300, - "lon": 0.3846087, - "tags": { - "amenity": "post_box", - "postal_code": "TN12", - "ref": "TN12 53" - } -}, -{ - "type": "node", - "id": 529035500, - "lat": 51.4246520, - "lon": 0.3682867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 529035502, - "lat": 51.4273338, - "lon": 0.3713156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529038977, - "lat": 53.8480125, - "lon": -1.9102814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BD21 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529039014, - "lat": 53.8595208, - "lon": -1.8864219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD21 119" - } -}, -{ - "type": "node", - "id": 529040693, - "lat": 51.4362204, - "lon": 0.3733396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "DA12", - "ref": "DA12 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529040721, - "lat": 51.4379747, - "lon": 0.3721811, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 411", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529040776, - "lat": 51.4373971, - "lon": 0.3776612, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 147", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529068910, - "lat": 53.3226667, - "lon": -3.0842955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type post box CH60 230 at Gayton roundabout.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Gayton Roundabout.jpg" - } -}, -{ - "type": "node", - "id": 529071192, - "lat": 53.1700116, - "lon": -1.3986705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "parcel", - "ref": "S45 421P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 529071834, - "lat": 51.5976498, - "lon": -0.0680223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N17 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 529080670, - "lat": 51.1837157, - "lon": 0.3912434, - "tags": { - "amenity": "post_box", - "ref": "TN12 255" - } -}, -{ - "type": "node", - "id": 529080683, - "lat": 51.1794975, - "lon": 0.3868403, - "tags": { - "amenity": "post_box", - "mapillary": "851357198787331", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN12 348", - "survey:date": "2020-09-06" - } -}, -{ - "type": "node", - "id": 529080684, - "lat": 51.1821662, - "lon": 0.3894324, - "tags": { - "amenity": "post_box", - "postal_code": "TN12", - "ref": "TN12 120" - } -}, -{ - "type": "node", - "id": 529080687, - "lat": 51.1842752, - "lon": 0.3877758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "TN12 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529083695, - "lat": 52.2031373, - "lon": -3.8126257, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY25 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529090160, - "lat": 53.7619470, - "lon": -1.6955271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 102" - } -}, -{ - "type": "node", - "id": 529090558, - "lat": 53.7624607, - "lon": -1.7145957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 25" - } -}, -{ - "type": "node", - "id": 529090617, - "lat": 53.7586353, - "lon": -1.7019358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 242" - } -}, -{ - "type": "node", - "id": 529096613, - "lat": 51.5945304, - "lon": -0.0691657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N17 46;N17 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529096651, - "lat": 53.1963462, - "lon": -1.4908956, - "tags": { - "amenity": "post_box", - "ele": "300.2952881" - } -}, -{ - "type": "node", - "id": 529099335, - "lat": 51.4052398, - "lon": -1.2792743, - "tags": { - "amenity": "post_box", - "mapillary": "1746561898879321", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG19", - "ref": "RG19 229", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 529116492, - "lat": 51.5940408, - "lon": -0.0697354, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "N17 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 529120649, - "lat": 51.4055574, - "lon": -1.2541487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "RG18", - "ref": "RG18 270" - } -}, -{ - "type": "node", - "id": 529288810, - "lat": 51.8070414, - "lon": -0.2068480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "AL8 164" - } -}, -{ - "type": "node", - "id": 529288811, - "lat": 51.8082302, - "lon": -0.2117918, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529317391, - "lat": 56.6745581, - "lon": -5.2428463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA38 1D", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 529332025, - "lat": 53.2188758, - "lon": -1.6925446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE45 1276", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 529409849, - "lat": 51.6643158, - "lon": -4.0653812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 495D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529416474, - "lat": 53.9741770, - "lon": -1.5323629, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529443662, - "lat": 51.4798955, - "lon": 0.0051905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529450688, - "lat": 52.4523312, - "lon": -2.0526714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B63 1269", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529450843, - "lat": 52.4561606, - "lon": -2.0597241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B63 1022", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529491876, - "lat": 52.1830465, - "lon": 0.9284130, - "tags": { - "amenity": "post_box", - "ref": "IP14 8063" - } -}, -{ - "type": "node", - "id": 529491877, - "lat": 52.1763276, - "lon": 0.9093499, - "tags": { - "amenity": "post_box", - "ref": "IP14 8013" - } -}, -{ - "type": "node", - "id": 529491880, - "lat": 52.1435120, - "lon": 0.8908268, - "tags": { - "amenity": "post_box", - "ref": "IP7 1083" - } -}, -{ - "type": "node", - "id": 529500950, - "lat": 54.0886361, - "lon": -0.2030888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529500970, - "lat": 54.0912130, - "lon": -0.2022292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO16 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529505920, - "lat": 51.4184611, - "lon": 0.3828938, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 135" - } -}, -{ - "type": "node", - "id": 529505926, - "lat": 51.4263081, - "lon": 0.3784694, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests this should be DA12 112", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 1122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 529505930, - "lat": 51.4250546, - "lon": 0.3858209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 120D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529508077, - "lat": 50.4490836, - "lon": -3.5630270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 198D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 529511768, - "lat": 51.4224316, - "lon": 0.3741494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 529511772, - "lat": 51.4255885, - "lon": 0.3755436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 529528625, - "lat": 51.4324584, - "lon": 0.3813009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "DA12", - "ref": "DA12 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529528676, - "lat": 51.4340859, - "lon": 0.3757965, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529529634, - "lat": 51.4366881, - "lon": 0.3515963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 56D" - } -}, -{ - "type": "node", - "id": 529529648, - "lat": 51.4404767, - "lon": 0.3643536, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 529544297, - "lat": 50.4447603, - "lon": -3.5733138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 529553236, - "lat": 50.4441482, - "lon": -3.5694859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TQ3 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 529553239, - "lat": 50.4462430, - "lon": -3.5659889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 144D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 529564617, - "lat": 50.4421273, - "lon": -3.5770689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ3 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 529569011, - "lat": 52.2449613, - "lon": -0.1147772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529576106, - "lat": 51.4315184, - "lon": 0.3743390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529596534, - "lat": 51.8946519, - "lon": -2.1181350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "collection_times_checked": "2015-10-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529600836, - "lat": 56.4200172, - "lon": -5.4698424, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-19", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA34 9", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 529609582, - "lat": 56.6857620, - "lon": -5.1949074, - "tags": { - "amenity": "post_box", - "ref": "PH49 120", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 529644997, - "lat": 51.7059801, - "lon": -2.5767230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "677268690634732", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 529709036, - "lat": 56.3643793, - "lon": -6.0215843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 06:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA70 176", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 529712955, - "lat": 51.0462382, - "lon": -1.3408062, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529727889, - "lat": 55.0723529, - "lon": -3.6045693, - "tags": { - "amenity": "post_box", - "ref": "DG1 21" - } -}, -{ - "type": "node", - "id": 529729962, - "lat": 54.8904168, - "lon": -2.9333056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Central platforms in station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA1 55D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 529735551, - "lat": 50.8596290, - "lon": -0.1388585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 278D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 529735552, - "lat": 50.8590918, - "lon": -0.1346054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 272" - } -}, -{ - "type": "node", - "id": 529745564, - "lat": 52.4585009, - "lon": -2.0502551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B63 1274", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529748842, - "lat": 51.4250983, - "lon": 0.3973922, - "tags": { - "amenity": "post_box", - "ref": "DA12 416" - } -}, -{ - "type": "node", - "id": 529804908, - "lat": 54.8887594, - "lon": -2.9210786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CA1 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 529808254, - "lat": 57.2430629, - "lon": -5.9148039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 14:00", - "operator": "Royal Mail", - "ref": "IV49 131" - } -}, -{ - "type": "node", - "id": 529810025, - "lat": 57.2394679, - "lon": -5.9003615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV49 33", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529814579, - "lat": 51.4387974, - "lon": 0.3865102, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529814813, - "lat": 51.4322580, - "lon": 0.3880993, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 110", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529827967, - "lat": 51.4402276, - "lon": 0.3880459, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 66", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529833626, - "lat": 51.7331130, - "lon": 0.4740690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 529836537, - "lat": 51.7344353, - "lon": 0.4732664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM1 9460;CM1 460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 529840488, - "lat": 51.4342337, - "lon": 0.3915621, - "tags": { - "amenity": "post_box", - "postal_code": "DA12", - "ref": "DA12 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529855787, - "lat": 51.6522863, - "lon": -3.7797527, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 529889536, - "lat": 55.9295664, - "lon": -3.1853673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH9 290D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 529890908, - "lat": 55.9329497, - "lon": -3.1704352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH9 268", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 529892649, - "lat": 55.9371610, - "lon": -3.1744740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH9 211D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 529898258, - "lat": 55.9353301, - "lon": -3.1943090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 27", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529902865, - "lat": 55.9386958, - "lon": -3.1915143, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH9 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 529903885, - "lat": 55.9379382, - "lon": -3.1857984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 529906972, - "lat": 51.7707137, - "lon": -2.2203124, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL6 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 529913031, - "lat": 51.4103900, - "lon": 0.0246792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 529926681, - "lat": 52.4698185, - "lon": -2.0933078, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B64 1385", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 530008749, - "lat": 51.2694691, - "lon": -0.3893119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT23 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 530022007, - "lat": 51.7404195, - "lon": -1.2383648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX4 29" - } -}, -{ - "type": "node", - "id": 530101515, - "lat": 51.4294490, - "lon": 0.3808525, - "tags": { - "amenity": "post_box", - "ref": "DA12 102" - } -}, -{ - "type": "node", - "id": 530176090, - "lat": 57.4735735, - "lon": -6.3386880, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV51 17", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 530213915, - "lat": 54.8942736, - "lon": -2.9084759, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA1 493" - } -}, -{ - "type": "node", - "id": 530220978, - "lat": 51.0913011, - "lon": -0.7133694, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_149D_Church_Road,_Haslemere.jpg" - } -}, -{ - "type": "node", - "id": 530567989, - "lat": 55.9340733, - "lon": -3.1747120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH9 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 530577321, - "lat": 51.1787473, - "lon": 0.3948941, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN12 168" - } -}, -{ - "type": "node", - "id": 530577322, - "lat": 51.1757932, - "lon": 0.3907828, - "tags": { - "amenity": "post_box", - "postal_code": "TN12", - "ref": "TN12 338" - } -}, -{ - "type": "node", - "id": 530636101, - "lat": 55.9614660, - "lon": -3.2933211, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 542D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 530640722, - "lat": 51.4592969, - "lon": -0.8943918, - "tags": { - "amenity": "post_box", - "ref": "RG5 526" - } -}, -{ - "type": "node", - "id": 530653329, - "lat": 55.5862032, - "lon": -4.4956534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 530685814, - "lat": 51.6139842, - "lon": -3.9736797, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 530685816, - "lat": 51.6150850, - "lon": -3.9690632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 530715541, - "lat": 51.9162868, - "lon": -0.6619254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "ref": "LU7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 530723106, - "lat": 52.4689726, - "lon": -2.0789491, - "tags": { - "amenity": "post_box", - "ref": "B64 1135", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 530731736, - "lat": 51.6638276, - "lon": 0.3019227, - "tags": { - "amenity": "post_box", - "name": "Doddinghurst Post Office's Post Box" - } -}, -{ - "type": "node", - "id": 530731803, - "lat": 51.6678522, - "lon": 0.2992963, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 530737267, - "lat": 51.7504200, - "lon": -1.2734130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "OX2", - "ref": "OX2 460", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-30" - } -}, -{ - "type": "node", - "id": 530750155, - "lat": 50.6561065, - "lon": -1.1505562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "mapillary": "144280894534594", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 12", - "ref:GB:uprn": "10015455419", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-08-08", - "website": "https://www.royalmail.com/services-near-you/postbox/library-po36-9lt/0000PO3612" - } -}, -{ - "type": "node", - "id": 530753429, - "lat": 50.6533628, - "lon": -1.1570561, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 5011", - "ref:GB:uprn": "10015818577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/sandown-delivery-office-po36-8lj/00PO365011" - } -}, -{ - "type": "node", - "id": 530753430, - "lat": 50.6533815, - "lon": -1.1570101, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 5012", - "ref:GB:uprn": "10015821781", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/sandown-delivery-office-po36-9lt/00PO365012" - } -}, -{ - "type": "node", - "id": 530768289, - "lat": 51.7646593, - "lon": -1.2617584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX2 770", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 530790234, - "lat": 55.5957054, - "lon": -4.4831001, - "tags": { - "accuracy": "8 feet", - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 530852972, - "lat": 51.0122511, - "lon": -3.9467257, - "tags": { - "amenity": "post_box", - "name": "Post Office" - } -}, -{ - "type": "node", - "id": 530861061, - "lat": 50.6362648, - "lon": -3.3290831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX9 175D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 530902625, - "lat": 50.9954833, - "lon": -3.9848590, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 531262551, - "lat": 52.1657258, - "lon": -0.5179706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:50", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "MK43 7", - "ref": "MK43 285" - } -}, -{ - "type": "node", - "id": 531276262, - "lat": 51.4821884, - "lon": 0.0142447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 531351950, - "lat": 51.2470159, - "lon": 1.0305675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 401", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 531351955, - "lat": 51.2121868, - "lon": 1.1650158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 296", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 531351960, - "lat": 51.2157144, - "lon": 1.2131107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 531351963, - "lat": 51.2242890, - "lon": 1.1941839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT3", - "ref": "CT3 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 531480064, - "lat": 57.1646692, - "lon": -2.1326490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 135D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 531531172, - "lat": 53.3784070, - "lon": -1.4552541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 95D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 531531175, - "lat": 53.3772801, - "lon": -1.4595503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 1031D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 531819623, - "lat": 51.5482376, - "lon": 0.2063889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 531831885, - "lat": 50.9490867, - "lon": 0.9104072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN29 88" - } -}, -{ - "type": "node", - "id": 531831888, - "lat": 50.9493960, - "lon": 0.9017259, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TN29 183", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 531853475, - "lat": 51.5508264, - "lon": 0.2104601, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 531920641, - "lat": 51.6309715, - "lon": -4.9139257, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 531924734, - "lat": 51.6381384, - "lon": -4.9087729, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 532273628, - "lat": 56.0176270, - "lon": -3.7080007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 532282951, - "lat": 51.8036519, - "lon": 0.7221567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 532390126, - "lat": 53.8644621, - "lon": -1.9013165, - "tags": { - "amenity": "post_box", - "ref": "BD21 54" - } -}, -{ - "type": "node", - "id": 532490012, - "lat": 55.6012683, - "lon": -4.5028003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 532515145, - "lat": 51.5742450, - "lon": -0.0720866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N16 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 533634350, - "lat": 54.1324687, - "lon": -1.2493814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 224", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 533710039, - "lat": 50.4303257, - "lon": -3.5697869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 533735339, - "lat": 53.5923810, - "lon": -1.8487822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 302", - "source": "survey" - } -}, -{ - "type": "node", - "id": 533736836, - "lat": 50.4116479, - "lon": -3.5698361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 533747209, - "lat": 50.4185480, - "lon": -3.5817962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 388D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 533756366, - "lat": 54.0959295, - "lon": -0.1978492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO16 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 533866622, - "lat": 51.7460788, - "lon": 0.4725044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 510D" - } -}, -{ - "type": "node", - "id": 533893939, - "lat": 52.1973230, - "lon": -0.3036930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 534121229, - "lat": 58.2332364, - "lon": -5.3732443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV27 330", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 534125601, - "lat": 58.2164554, - "lon": -5.3402768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:45", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "IV282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534261466, - "lat": 50.6289384, - "lon": -3.3223251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX9 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534267958, - "lat": 50.9029490, - "lon": -3.4941141, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 534350159, - "lat": 51.4093558, - "lon": 0.5004241, - "tags": { - "amenity": "post_box", - "mapillary": "313914273510131", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME2 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2020-08-04" - } -}, -{ - "type": "node", - "id": 534350719, - "lat": 52.4728650, - "lon": -2.0808443, - "tags": { - "amenity": "post_box", - "ref": "B64 1125", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 534352342, - "lat": 53.5564280, - "lon": -1.4828358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S70 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534353355, - "lat": 53.5540592, - "lon": -1.4816237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "colour": "red", - "material": "metal", - "note": "Although Royal Mail data has the LH and RH apertures with different refs (S70 251 & S70 2519) the plates on both sides were identical on the ground so that is what has been mapped here. Further reading: https://osm.mathmos.net/postboxes/progress/S/S70", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S70 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 534360444, - "lat": 53.5510362, - "lon": -1.4790686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S70 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534366947, - "lat": 53.9032819, - "lon": -1.6969388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 16D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534367572, - "lat": 52.9470168, - "lon": -1.4798096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 457" - } -}, -{ - "type": "node", - "id": 534369225, - "lat": 52.5141732, - "lon": -0.2570087, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 534382106, - "lat": 52.5488801, - "lon": -0.2286267, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 534384513, - "lat": 51.3788088, - "lon": -1.0725168, - "tags": { - "amenity": "post_box", - "mapillary": "306834611071265", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG7 572D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-04-11" - } -}, -{ - "type": "node", - "id": 534384533, - "lat": 51.3751141, - "lon": -1.0751780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "RG7 131", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 534386578, - "lat": 51.5960814, - "lon": -0.2482062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 12" - } -}, -{ - "type": "node", - "id": 534386579, - "lat": 51.5990538, - "lon": -0.2415985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 62" - } -}, -{ - "type": "node", - "id": 534386580, - "lat": 51.5971484, - "lon": -0.2453090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 17" - } -}, -{ - "type": "node", - "id": 534386581, - "lat": 51.6012160, - "lon": -0.2520914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 59" - } -}, -{ - "type": "node", - "id": 534386582, - "lat": 51.6012179, - "lon": -0.2573833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA8 728" - } -}, -{ - "type": "node", - "id": 534386584, - "lat": 51.5988255, - "lon": -0.2611250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA8 735" - } -}, -{ - "type": "node", - "id": 534386585, - "lat": 51.5972896, - "lon": -0.2594564, - "tags": { - "addr:street": "Greenway Gardens", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW9 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW9 42D" - } -}, -{ - "type": "node", - "id": 534386586, - "lat": 51.5930950, - "lon": -0.2585083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 23", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534386587, - "lat": 51.5935583, - "lon": -0.2543934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534386588, - "lat": 51.5913219, - "lon": -0.2476378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 22" - } -}, -{ - "type": "node", - "id": 534388591, - "lat": 50.7044191, - "lon": -3.0641129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX12 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534388643, - "lat": 52.4888067, - "lon": -0.9256490, - "tags": { - "amenity": "post_box", - "old_ref": "MAR087" - } -}, -{ - "type": "node", - "id": 534388668, - "lat": 52.4926283, - "lon": -0.9104245, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 7AA", - "ref": "LE16 27" - } -}, -{ - "type": "node", - "id": 534388673, - "lat": 50.7036492, - "lon": -3.0673210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX12 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534388708, - "lat": 52.5252416, - "lon": -0.8724414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "wall", - "postal_code": "LE16 7", - "ref": "LE16 18" - } -}, -{ - "type": "node", - "id": 534388731, - "lat": 52.4920901, - "lon": -0.9034311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LE16 7", - "ref": "LE16 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534389526, - "lat": 51.5895235, - "lon": -0.2417961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 34" - } -}, -{ - "type": "node", - "id": 534389527, - "lat": 51.5853040, - "lon": -0.2425746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 57" - } -}, -{ - "type": "node", - "id": 534389528, - "lat": 51.5867530, - "lon": -0.2454402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 44" - } -}, -{ - "type": "node", - "id": 534389529, - "lat": 51.5888248, - "lon": -0.2499947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 30" - } -}, -{ - "type": "node", - "id": 534389530, - "lat": 51.5876422, - "lon": -0.2517967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534389531, - "lat": 51.5888950, - "lon": -0.2551518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 24" - } -}, -{ - "type": "node", - "id": 534389532, - "lat": 51.5859058, - "lon": -0.2590089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534389533, - "lat": 51.5881000, - "lon": -0.2637123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 6" - } -}, -{ - "type": "node", - "id": 534389534, - "lat": 51.5890137, - "lon": -0.2573888, - "tags": { - "addr:street": "Evelyn Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW9 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW9 37D" - } -}, -{ - "type": "node", - "id": 534389535, - "lat": 51.5912634, - "lon": -0.2623817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534389887, - "lat": 51.0726353, - "lon": -1.3140313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 534394113, - "lat": 51.5908728, - "lon": -0.2659727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 16" - } -}, -{ - "type": "node", - "id": 534394115, - "lat": 51.5898531, - "lon": -0.2710091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 32" - } -}, -{ - "type": "node", - "id": 534394116, - "lat": 51.5923494, - "lon": -0.2699939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 39" - } -}, -{ - "type": "node", - "id": 534394117, - "lat": 51.5928181, - "lon": -0.2781810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 46" - } -}, -{ - "type": "node", - "id": 534394118, - "lat": 51.5897500, - "lon": -0.2776747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 38" - } -}, -{ - "type": "node", - "id": 534394120, - "lat": 51.5869256, - "lon": -0.2827304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 47" - } -}, -{ - "type": "node", - "id": 534394123, - "lat": 51.5850032, - "lon": -0.2794111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 26" - } -}, -{ - "type": "node", - "id": 534394125, - "lat": 51.5815113, - "lon": -0.2789853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 51" - } -}, -{ - "type": "node", - "id": 534394126, - "lat": 51.5831545, - "lon": -0.2757842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 36" - } -}, -{ - "type": "node", - "id": 534394127, - "lat": 51.5859472, - "lon": -0.2753781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534396734, - "lat": 50.7428504, - "lon": -3.0655888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX24 18D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 534397850, - "lat": 53.7870421, - "lon": -2.9718555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534399080, - "lat": 56.0262747, - "lon": -3.4027877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "KY11", - "ref": "KY11 71D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534399162, - "lat": 52.2917551, - "lon": -1.6011164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV34 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534411523, - "lat": 51.5847740, - "lon": -0.2716225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 7" - } -}, -{ - "type": "node", - "id": 534411526, - "lat": 51.5842333, - "lon": -0.2654662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 15" - } -}, -{ - "type": "node", - "id": 534411529, - "lat": 51.5811785, - "lon": -0.2658288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 5" - } -}, -{ - "type": "node", - "id": 534411531, - "lat": 51.5761641, - "lon": -0.2663574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 56" - } -}, -{ - "type": "node", - "id": 534411535, - "lat": 51.5772532, - "lon": -0.2673016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 14" - } -}, -{ - "type": "node", - "id": 534411537, - "lat": 51.5700259, - "lon": -0.2710736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 53" - } -}, -{ - "type": "node", - "id": 534411552, - "lat": 51.5685762, - "lon": -0.2682730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 4" - } -}, -{ - "type": "node", - "id": 534411554, - "lat": 51.5666465, - "lon": -0.2643894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 19D" - } -}, -{ - "type": "node", - "id": 534411559, - "lat": 51.5675792, - "lon": -0.2586558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 31D" - } -}, -{ - "type": "node", - "id": 534413466, - "lat": 51.5702472, - "lon": -0.2628968, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534413471, - "lat": 51.5707444, - "lon": -0.2670001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 41" - } -}, -{ - "type": "node", - "id": 534413474, - "lat": 51.5750305, - "lon": -0.2623232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 20" - } -}, -{ - "type": "node", - "id": 534413479, - "lat": 51.5735090, - "lon": -0.2566570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 45" - } -}, -{ - "type": "node", - "id": 534413484, - "lat": 51.5739710, - "lon": -0.2524881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 35" - } -}, -{ - "type": "node", - "id": 534413487, - "lat": 51.5753179, - "lon": -0.2542762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 54" - } -}, -{ - "type": "node", - "id": 534413491, - "lat": 51.5776235, - "lon": -0.2626855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 29" - } -}, -{ - "type": "node", - "id": 534413494, - "lat": 51.5828586, - "lon": -0.2623707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 2" - } -}, -{ - "type": "node", - "id": 534413501, - "lat": 51.5823817, - "lon": -0.2555324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 25" - } -}, -{ - "type": "node", - "id": 534413504, - "lat": 51.5850135, - "lon": -0.2535652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 33" - } -}, -{ - "type": "node", - "id": 534413506, - "lat": 51.5829528, - "lon": -0.2464632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 3" - } -}, -{ - "type": "node", - "id": 534416603, - "lat": 51.5816615, - "lon": -0.2501866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534416604, - "lat": 51.5790040, - "lon": -0.2413039, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 8" - } -}, -{ - "type": "node", - "id": 534416605, - "lat": 51.5765573, - "lon": -0.2384784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534416606, - "lat": 51.5752676, - "lon": -0.2409235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 52" - } -}, -{ - "type": "node", - "id": 534416608, - "lat": 51.5771475, - "lon": -0.2345954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW4 26" - } -}, -{ - "type": "node", - "id": 534416609, - "lat": 51.5782313, - "lon": -0.2275916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW4 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 534446643, - "lat": 55.8049459, - "lon": -4.1903529, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 534447516, - "lat": 52.1407194, - "lon": -2.2228639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR5 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534456956, - "lat": 51.5425720, - "lon": -1.7814038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN1 406" - } -}, -{ - "type": "node", - "id": 534458290, - "lat": 53.7926805, - "lon": -2.9355799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 534516054, - "lat": 51.7750310, - "lon": -2.3589978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 396", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534516055, - "lat": 51.7726624, - "lon": -2.3291545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534610888, - "lat": 52.4845063, - "lon": -0.9231772, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 7", - "ref": "LE16 31" - } -}, -{ - "type": "node", - "id": 534610892, - "lat": 52.4804958, - "lon": -0.9235542, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 7", - "ref": "LE16 4" - } -}, -{ - "type": "node", - "id": 534610896, - "lat": 52.4790065, - "lon": -0.9222506, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 7", - "ref": "LE16 21" - } -}, -{ - "type": "node", - "id": 534629062, - "lat": 52.6940317, - "lon": -2.7180930, - "tags": { - "amenity": "post_box", - "ref": "SY2 301" - } -}, -{ - "type": "node", - "id": 534630793, - "lat": 53.0210612, - "lon": -2.9525347, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 534630824, - "lat": 53.0175735, - "lon": -2.9313479, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 534656104, - "lat": 51.7323612, - "lon": -1.2163183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "level": "0", - "ref": "OX4 796" - } -}, -{ - "type": "node", - "id": 534692026, - "lat": 52.6201291, - "lon": -1.9685761, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-13", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "WS3", - "ref": "WS3 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 534706741, - "lat": 52.6254471, - "lon": -1.9720272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "WS3", - "ref": "WS3 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 534710217, - "lat": 55.9060219, - "lon": -4.3638966, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G15 921", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 534746064, - "lat": 52.6290661, - "lon": -1.1593215, - "tags": { - "amenity": "post_box", - "ref": "LE3 525" - } -}, -{ - "type": "node", - "id": 534751004, - "lat": 52.0178125, - "lon": 0.0196186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG8 422D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534751608, - "lat": 51.0308741, - "lon": -1.1786028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SO24 129" - } -}, -{ - "type": "node", - "id": 534753956, - "lat": 52.0055839, - "lon": 0.0140073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 438" - } -}, -{ - "type": "node", - "id": 534759370, - "lat": 51.4600690, - "lon": -1.0538996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 534775981, - "lat": 50.8413773, - "lon": -0.4513120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1784D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534779488, - "lat": 50.5639348, - "lon": -3.4767601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 534793396, - "lat": 52.4133782, - "lon": 0.3206767, - "tags": { - "amenity": "post_box", - "ref": "CB7 106" - } -}, -{ - "type": "node", - "id": 534793399, - "lat": 52.4150861, - "lon": 0.3393771, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB7 104" - } -}, -{ - "type": "node", - "id": 534793480, - "lat": 52.4214580, - "lon": 0.3572844, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB7 105" - } -}, -{ - "type": "node", - "id": 534797421, - "lat": 55.1163929, - "lon": -1.6246291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 6AN", - "ref": "NE22 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534797432, - "lat": 55.1363409, - "lon": -1.6006441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE22 6JR", - "ref": "NE22 669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534797433, - "lat": 55.1364047, - "lon": -1.5951775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 7LE", - "ref": "NE22 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534802903, - "lat": 51.7185174, - "lon": -1.2276512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX4 474" - } -}, -{ - "type": "node", - "id": 534803046, - "lat": 52.9796299, - "lon": -1.2307989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG8 39D", - "ref:GB:uprn": "10015838859", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534803049, - "lat": 52.9730510, - "lon": -1.2269282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "NG8 308", - "ref:GB:uprn": "10015431492", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534804391, - "lat": 52.9634934, - "lon": -1.2133025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 271D", - "ref:GB:uprn": "10015389977", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534808008, - "lat": 52.6883958, - "lon": -2.7418669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "romec_pillar", - "post_box:type": "pillar", - "ref": "SY2 508D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534808011, - "lat": 52.6911439, - "lon": -2.7172776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY2 110" - } -}, -{ - "type": "node", - "id": 534808014, - "lat": 52.6912617, - "lon": -2.7173084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY2 109" - } -}, -{ - "type": "node", - "id": 534816120, - "lat": 51.7228402, - "lon": -1.2238661, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-14", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX4 739", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "streetlevel imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 534823774, - "lat": 51.7205505, - "lon": -1.2260396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX4 348" - } -}, -{ - "type": "node", - "id": 534823777, - "lat": 51.7163976, - "lon": -1.2305371, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-14", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "OX4 42" - } -}, -{ - "type": "node", - "id": 534854555, - "lat": 57.5173731, - "lon": -4.2181889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV1 84", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534861675, - "lat": 51.6092576, - "lon": -0.7988580, - "tags": { - "amenity": "post_box", - "ref": "SL7 168" - } -}, -{ - "type": "node", - "id": 534876561, - "lat": 52.3282614, - "lon": 0.8508927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2042", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 534876568, - "lat": 52.3065025, - "lon": 0.7665056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "IP31 2102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534893781, - "lat": 51.0828854, - "lon": 1.1693773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT19", - "ref": "CT19 41", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534893869, - "lat": 51.0938243, - "lon": 1.1667361, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT19", - "ref": "CT19 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534893909, - "lat": 51.0935417, - "lon": 1.1710322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "inscription": "Buy postace online, drop off here 24/7", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "CT19", - "ref": "CT19 671P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534893946, - "lat": 51.0958017, - "lon": 1.1777138, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534924544, - "lat": 52.3464417, - "lon": -0.4074130, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE28 148", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 534935829, - "lat": 52.3565134, - "lon": -0.3124065, - "tags": { - "amenity": "post_box", - "ref": "PE28 30" - } -}, -{ - "type": "node", - "id": 534935834, - "lat": 52.3642848, - "lon": -0.3323394, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE28 27" - } -}, -{ - "type": "node", - "id": 534935860, - "lat": 52.3850350, - "lon": -0.3844093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "PE28 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 534948146, - "lat": 55.5638455, - "lon": -2.6142939, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD6 74", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 534950205, - "lat": 55.9088581, - "lon": -4.0824333, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 534957831, - "lat": 51.4890667, - "lon": -1.8513161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534963487, - "lat": 51.8474389, - "lon": -2.2662626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534963488, - "lat": 51.8508931, - "lon": -2.2684902, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL2 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534967437, - "lat": 50.5968101, - "lon": -2.0386860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "wall", - "ref": "BH19 82", - "ref:GB:uprn": "10015381013", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 534982348, - "lat": 50.9229294, - "lon": -1.5228272, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "description": "Inside lobby of Morrisons store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 786" - } -}, -{ - "type": "node", - "id": 535072821, - "lat": 53.3953557, - "lon": -2.3549369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 79", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 535160587, - "lat": 50.9224315, - "lon": -1.3485772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ele": "125.000000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 688", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 535186273, - "lat": 51.0950877, - "lon": 1.1845695, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535197743, - "lat": 52.9743305, - "lon": -1.2321254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "NG8 243", - "ref:GB:uprn": "10015363598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535245130, - "lat": 52.3019237, - "lon": -1.2406550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV23 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535273207, - "lat": 53.2487378, - "lon": -2.5963283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW8 91" - } -}, -{ - "type": "node", - "id": 535308133, - "lat": 51.2989679, - "lon": -0.3699124, - "tags": { - "amenity": "post_box", - "ref": "KT22 51" - } -}, -{ - "type": "node", - "id": 535387153, - "lat": 53.9478552, - "lon": -0.8823109, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 535387246, - "lat": 53.9489191, - "lon": -0.8916236, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 535440911, - "lat": 51.0867688, - "lon": 1.1810934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT19", - "ref": "CT19 98D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535440933, - "lat": 51.0932075, - "lon": 1.1860631, - "tags": { - "amenity": "post_box", - "postal_code": "CT19", - "ref": "CT19 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535445886, - "lat": 51.7409141, - "lon": 0.4732529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 481D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 535576510, - "lat": 50.8166899, - "lon": -0.5529270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BN17", - "ref": "BN17 1489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 535576611, - "lat": 50.8116007, - "lon": -0.5437262, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "BN17", - "ref": "BN17 1480", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 535576621, - "lat": 50.8139922, - "lon": -0.5451470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1490D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 535625335, - "lat": 53.4242391, - "lon": -2.9015625, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 535633440, - "lat": 51.0807372, - "lon": 1.1884833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT19", - "ref": "CT19 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535633489, - "lat": 51.0831788, - "lon": 1.1918815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 535870569, - "lat": 52.4823917, - "lon": -0.9256260, - "tags": { - "amenity": "post_box", - "ref": "LE16 67" - } -}, -{ - "type": "node", - "id": 535872104, - "lat": 50.7300593, - "lon": -3.4822369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX1 418D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 535875405, - "lat": 50.7353905, - "lon": -3.4889122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 535950806, - "lat": 55.5891918, - "lon": -4.4913159, - "tags": { - "accuracy": "8 feet", - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 535951407, - "lat": 51.0496669, - "lon": -1.3575024, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "134.000000", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO22 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 535951418, - "lat": 51.0393885, - "lon": -1.3907496, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "description": "This postbox is of a brand new EIIR design.", - "ele": "96.000000", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 535954904, - "lat": 51.3401195, - "lon": -0.6438062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1563723744076105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 535960669, - "lat": 51.8208050, - "lon": -2.4759628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "819781851961800", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL14 128", - "source": "survey", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 536126463, - "lat": 51.5890447, - "lon": -0.3132562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "drive_through": "no", - "last_collection": "5.45pm, Sat 12.45pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 342" - } -}, -{ - "type": "node", - "id": 536132780, - "lat": 51.5839414, - "lon": -0.3059673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 233D" - } -}, -{ - "type": "node", - "id": 536170382, - "lat": 51.5837603, - "lon": -0.3137853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "HA3", - "ref": "HA3 312" - } -}, -{ - "type": "node", - "id": 536521638, - "lat": 54.1345326, - "lon": -0.8675015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO17 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 536564789, - "lat": 51.0816371, - "lon": 1.1816887, - "tags": { - "amenity": "post_box", - "postal_code": "CT20", - "ref": "CT20 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536585034, - "lat": 51.0766403, - "lon": 1.1749856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "postal_code": "CT20", - "ref": "CT20 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536585045, - "lat": 51.0788140, - "lon": 1.1774841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CT20", - "ref": "CT20 200;CT20 2002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536627085, - "lat": 51.0826345, - "lon": 1.1522206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT20", - "ref": "CT20 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536627089, - "lat": 51.0841382, - "lon": 1.1527676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT20", - "ref": "CT20 161", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536627099, - "lat": 51.0768148, - "lon": 1.1724934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "postal_code": "CT20", - "ref": "CT20 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536642809, - "lat": 51.0850570, - "lon": 1.1453387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT20", - "ref": "CT20 173", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536728116, - "lat": 54.0963578, - "lon": -0.2059380, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO16 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536728123, - "lat": 54.0937065, - "lon": -0.1982301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO16 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536728181, - "lat": 54.0973159, - "lon": -0.1995777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 536775970, - "lat": 55.8893829, - "lon": -4.6369804, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 536795969, - "lat": 50.9677625, - "lon": -1.3044146, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "ele": "79.000000", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 368", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 536795970, - "lat": 50.9710097, - "lon": -1.3038373, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "102.000000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 536795971, - "lat": 50.9781166, - "lon": -1.3031936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "ele": "112.000000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO50 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-15", - "wikimedia_commons": "File:Winchester Road - geograph.org.uk - 5126725.jpg" - } -}, -{ - "type": "node", - "id": 536812766, - "lat": 50.3773300, - "lon": -4.1543225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL1 146D" - } -}, -{ - "type": "node", - "id": 536821180, - "lat": 53.2346431, - "lon": -4.1224706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 537015153, - "lat": 55.5919601, - "lon": -4.4881984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 537119025, - "lat": 53.2260520, - "lon": -4.1339247, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 537119506, - "lat": 51.2862139, - "lon": 1.1272175, - "tags": { - "amenity": "post_box", - "postal_code": "CT3", - "ref": "CT3 204", - "source": "survey" - } -}, -{ - "type": "node", - "id": 537151828, - "lat": 53.2231587, - "lon": -4.1313900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "mapillary": "5235173066571781", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-15" - } -}, -{ - "type": "node", - "id": 537528296, - "lat": 51.5017960, - "lon": -0.5545328, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 537528297, - "lat": 51.5002038, - "lon": -0.5641030, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 537653705, - "lat": 50.7869367, - "lon": -1.0907861, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 537659232, - "lat": 50.7938201, - "lon": 0.2832822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 828D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 537662538, - "lat": 51.3511816, - "lon": -0.6647224, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 537684730, - "lat": 50.8876196, - "lon": -3.3768317, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 537787092, - "lat": 51.3217082, - "lon": -0.2167960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 285", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 537788181, - "lat": 51.3180987, - "lon": -0.2121196, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM7 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 537897257, - "lat": 52.9885517, - "lon": -1.1769386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 296D", - "ref:GB:uprn": "10015372450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 537956104, - "lat": 51.6494736, - "lon": -0.1745556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 537956107, - "lat": 51.6518648, - "lon": -0.1798857, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 538071909, - "lat": 53.1914500, - "lon": -1.4158236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "106", - "post_box:type": "lamp", - "ref": "S42 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 538074907, - "lat": 52.9528641, - "lon": -1.4764228, - "tags": { - "amenity": "post_box", - "ref": "DE22 172" - } -}, -{ - "type": "node", - "id": 538080710, - "lat": 53.1956527, - "lon": -1.4163909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S42 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 538102516, - "lat": 51.5628385, - "lon": 0.5033319, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "SS13 503" - } -}, -{ - "type": "node", - "id": 538188477, - "lat": 51.3801813, - "lon": 1.3347962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT8", - "ref": "CT8 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538195063, - "lat": 52.4686045, - "lon": -2.0733884, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B64 1126", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 538207822, - "lat": 52.4749846, - "lon": -2.0741975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B64 1123", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 538394334, - "lat": 52.5675197, - "lon": -1.1669399, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 538416200, - "lat": 53.6787543, - "lon": -1.8384716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX5 135" - } -}, -{ - "type": "node", - "id": 538416201, - "lat": 53.6835308, - "lon": -1.8413848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 134" - } -}, -{ - "type": "node", - "id": 538416261, - "lat": 53.6808428, - "lon": -1.8425378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 132" - } -}, -{ - "type": "node", - "id": 538502014, - "lat": 55.5993203, - "lon": -4.4907684, - "tags": { - "accuracy": "35 feet", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "mail:first_class": "yes", - "mail:meter": "no", - "mail:second_class": "yes", - "mail:stamped": "yes", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KA1 500", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 538510569, - "lat": 51.0057111, - "lon": 0.0100828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 538512096, - "lat": 51.5617831, - "lon": 0.4951086, - "tags": { - "amenity": "post_box", - "ref": "SS16 379" - } -}, -{ - "type": "node", - "id": 538810114, - "lat": 53.9037817, - "lon": -1.7008381, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS21 560D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538835050, - "lat": 53.9026592, - "lon": -1.7071839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS21 953", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538858258, - "lat": 50.7523331, - "lon": -3.2783880, - "tags": { - "amenity": "post_box", - "mapillary": "778779876626723", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 538904394, - "lat": 51.1845983, - "lon": 1.2349094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538904404, - "lat": 51.1760501, - "lon": 1.2465909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538904416, - "lat": 51.1867709, - "lon": 1.2398522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538906760, - "lat": 51.2213507, - "lon": 1.3892787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538906796, - "lat": 53.3896980, - "lon": -2.2939796, - "tags": { - "amenity": "post_box", - "description": "Post Box inside hospital entrance" - } -}, -{ - "type": "node", - "id": 538907930, - "lat": 51.2630854, - "lon": 1.3067766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1200978350416179", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 538908439, - "lat": 51.2613233, - "lon": 1.2951224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 538968246, - "lat": 53.8512477, - "lon": -3.0460069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 194D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 538980823, - "lat": 53.2212954, - "lon": -4.1385151, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 538995688, - "lat": 51.4384011, - "lon": -3.5030726, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 539019794, - "lat": 52.9979497, - "lon": -2.1389809, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 539019799, - "lat": 52.9996721, - "lon": -2.1462509, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 539031008, - "lat": 51.2519632, - "lon": -0.4479277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539071065, - "lat": 53.4054590, - "lon": -2.1633342, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "last_checked": "2020-01-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK3 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539125107, - "lat": 53.2250798, - "lon": -0.6027198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 539194041, - "lat": 51.0398473, - "lon": -1.0798771, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539196801, - "lat": 53.7878804, - "lon": -2.7570939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR4 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539235126, - "lat": 51.2159458, - "lon": -0.7411899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU10 150", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 539243288, - "lat": 51.2219481, - "lon": -0.6679935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU3 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539315996, - "lat": 50.7569850, - "lon": -1.5483094, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 539530945, - "lat": 51.6390708, - "lon": -2.1618150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "collection_times_checked": "2020-07-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL8 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539530946, - "lat": 51.6953466, - "lon": -2.1671805, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 539530950, - "lat": 51.6824253, - "lon": -2.1559962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL8 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539530953, - "lat": 51.6800218, - "lon": -2.1684127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "missed this on actual survey but from reviewing imagery since, the original location was on the opposite side of the road junction by the old post office back in 2009 or so, but since it has been moved next to the pub. ref is assumed to be GL8 131 but nee", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 539542919, - "lat": 57.6032153, - "lon": -3.6167781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "IV36 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542922, - "lat": 57.6052686, - "lon": -3.6153868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "IV36 91", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542923, - "lat": 57.6083085, - "lon": -3.6220055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV36 2", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542924, - "lat": 57.6078834, - "lon": -3.6197570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 70D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542925, - "lat": 57.6086618, - "lon": -3.6168371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "note": "can't read ref on RH aperture", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IV36 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542929, - "lat": 57.6085701, - "lon": -3.6100532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV36 72D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542930, - "lat": 57.6097381, - "lon": -3.6135506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV36 127", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542931, - "lat": 57.6108435, - "lon": -3.6113917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV36 77", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542933, - "lat": 57.6130539, - "lon": -3.6042630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 99D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539542934, - "lat": 57.6135147, - "lon": -3.6084485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "IV36 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539549620, - "lat": 55.8237523, - "lon": -4.0852784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G71 231", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539549621, - "lat": 55.8268861, - "lon": -4.0710347, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 539552778, - "lat": 50.7841556, - "lon": -3.6350259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 539560156, - "lat": 50.4931285, - "lon": -3.7815789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ11 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 539562720, - "lat": 52.1460296, - "lon": -2.2155693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR5 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539709027, - "lat": 52.9515150, - "lon": -1.1407117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG1 50", - "ref:GB:uprn": "10015420652", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539709038, - "lat": 52.9535420, - "lon": -1.1449056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "mail:franked": "yes", - "mail:stamped": "yes", - "opening_hours": "24/7", - "post_box:type": "meter", - "ref": "NG1 200P", - "ref:GB:uprn": "10015470663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539726619, - "lat": 51.0987364, - "lon": 1.1215101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "postal_code": "CT18", - "ref": "CT18 184D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539726620, - "lat": 51.1101917, - "lon": 1.1305456, - "tags": { - "amenity": "post_box", - "disused": "yes", - "fixme": "cannot find postbox at survey 2021-09", - "ref": "CT18 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539726622, - "lat": 51.1458791, - "lon": 1.3187520, - "tags": { - "amenity": "post_box", - "postal_code": "CT15", - "ref": "CT15 127", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539726630, - "lat": 51.1821872, - "lon": 1.2539228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539726631, - "lat": 51.1618840, - "lon": 1.2869768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT16", - "ref": "CT16 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 539734595, - "lat": 52.5929060, - "lon": -1.0677150, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 539761844, - "lat": 52.6054516, - "lon": -1.1423605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "LE2 8EJ", - "ref": "LE2 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 539763590, - "lat": 52.5995144, - "lon": -1.1416553, - "tags": { - "amenity": "post_box", - "postal_code": "LE2 6UN", - "ref": "LE2 350" - } -}, -{ - "type": "node", - "id": 539780609, - "lat": 55.8147329, - "lon": -4.2105984, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 539790322, - "lat": 53.6557399, - "lon": -1.5815983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539790327, - "lat": 53.6583706, - "lon": -1.5766665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WF4 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 539790328, - "lat": 53.6592646, - "lon": -1.5591486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 46" - } -}, -{ - "type": "node", - "id": 539790331, - "lat": 53.6647562, - "lon": -1.5405353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 121" - } -}, -{ - "type": "node", - "id": 539790333, - "lat": 53.6692625, - "lon": -1.5323874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 193" - } -}, -{ - "type": "node", - "id": 539790335, - "lat": 53.6782488, - "lon": -1.5270130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 150" - } -}, -{ - "type": "node", - "id": 539802999, - "lat": 52.1122810, - "lon": -2.3186381, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 539820746, - "lat": 52.1137881, - "lon": -2.3116918, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 540036159, - "lat": 53.1591073, - "lon": -2.6687362, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 540036194, - "lat": 53.1628691, - "lon": -2.6658947, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 540036216, - "lat": 53.1662335, - "lon": -2.6601197, - "tags": { - "amenity": "post_box", - "ref": "CW6 150" - } -}, -{ - "type": "node", - "id": 540119295, - "lat": 50.6622201, - "lon": -3.5373214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 540D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 540123806, - "lat": 52.2173346, - "lon": 0.1283316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 182D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540132565, - "lat": 51.4237169, - "lon": -0.0535331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540163991, - "lat": 51.4316869, - "lon": 0.1856020, - "tags": { - "amenity": "post_box", - "mapillary": "484064206193824", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA2 40", - "survey:date": "2021-02-14" - } -}, -{ - "type": "node", - "id": 540202509, - "lat": 55.0267948, - "lon": -1.5648605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE12 7AN", - "ref": "NE12 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540211241, - "lat": 52.6311533, - "lon": -1.1533256, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE3 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540214650, - "lat": 51.7599073, - "lon": -1.2265546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "OX3 399" - } -}, -{ - "type": "node", - "id": 540214652, - "lat": 51.7535102, - "lon": -1.2295517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "ref": "OX3 3003" - } -}, -{ - "type": "node", - "id": 540214653, - "lat": 51.7551345, - "lon": -1.2236352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX3 3001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-05-07" - } -}, -{ - "type": "node", - "id": 540214658, - "lat": 51.7623790, - "lon": -1.2369689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "OX3 926D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540215627, - "lat": 51.5878650, - "lon": 0.4347719, - "tags": { - "amenity": "post_box", - "ref": "SS15 423" - } -}, -{ - "type": "node", - "id": 540221237, - "lat": 51.7684302, - "lon": -1.2404581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX3 735", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540221264, - "lat": 51.7782906, - "lon": -1.2406281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX3 861", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540223408, - "lat": 51.7681326, - "lon": -1.2295227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "OX3 641", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 540226177, - "lat": 51.7688047, - "lon": -1.2238525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "OX3 707", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 540226182, - "lat": 51.7661158, - "lon": -1.2259935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX3 587", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540233119, - "lat": 51.7630360, - "lon": -1.2047123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "OX3 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540252391, - "lat": 51.7625097, - "lon": -1.2002610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "OX3 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540252485, - "lat": 51.7617236, - "lon": -1.2044472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OX3 350D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 540273441, - "lat": 51.6532003, - "lon": -0.1899715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 540285146, - "lat": 51.7619452, - "lon": -1.2202720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX3 377", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 540292301, - "lat": 51.7377495, - "lon": 0.7079275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 540293095, - "lat": 51.4623767, - "lon": -1.2734665, - "tags": { - "amenity": "post_box", - "ref": "RG18 183" - } -}, -{ - "type": "node", - "id": 540328240, - "lat": 50.5475090, - "lon": -3.5863281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ12 226D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 540328847, - "lat": 55.1314404, - "lon": -1.6138353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE22 6DY", - "ref": "NE22 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540335173, - "lat": 50.7141147, - "lon": -3.0495269, - "tags": { - "amenity": "post_box", - "ref": "EX12 65" - } -}, -{ - "type": "node", - "id": 540343281, - "lat": 51.5555659, - "lon": -0.1763943, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-13", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "NW3 65", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 540343284, - "lat": 51.5546803, - "lon": -0.1727319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540343285, - "lat": 51.5529021, - "lon": -0.1746995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 82" - } -}, -{ - "type": "node", - "id": 540343286, - "lat": 51.5544011, - "lon": -0.1689799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540343287, - "lat": 51.5547528, - "lon": -0.1626801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 85" - } -}, -{ - "type": "node", - "id": 540343288, - "lat": 51.5581270, - "lon": -0.1618721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 72D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540343290, - "lat": 51.5539980, - "lon": -0.1548333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 58" - } -}, -{ - "type": "node", - "id": 540343291, - "lat": 51.5533762, - "lon": -0.1575942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 80" - } -}, -{ - "type": "node", - "id": 540348895, - "lat": 51.4732327, - "lon": -1.0503875, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 540351465, - "lat": 51.5501462, - "lon": -0.1646103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW3 63" - } -}, -{ - "type": "node", - "id": 540351470, - "lat": 51.5518416, - "lon": -0.1669050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 87" - } -}, -{ - "type": "node", - "id": 540351473, - "lat": 51.5530940, - "lon": -0.1709780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540351475, - "lat": 51.5507404, - "lon": -0.1743438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 62" - } -}, -{ - "type": "node", - "id": 540351479, - "lat": 51.5525092, - "lon": -0.1760421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 74" - } -}, -{ - "type": "node", - "id": 540351482, - "lat": 51.5478035, - "lon": -0.1776366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 27", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 540351485, - "lat": 51.5504594, - "lon": -0.1793115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 40", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 540351490, - "lat": 51.5518776, - "lon": -0.1825388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 68" - } -}, -{ - "type": "node", - "id": 540351493, - "lat": 51.5521080, - "lon": -0.1854370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 73" - } -}, -{ - "type": "node", - "id": 540351863, - "lat": 51.8285110, - "lon": -1.3500947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "OX20 175", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2013-04-20" - } -}, -{ - "type": "node", - "id": 540352792, - "lat": 53.2085643, - "lon": -0.5964374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 540353036, - "lat": 53.2169709, - "lon": -0.5940502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 540359567, - "lat": 51.5528176, - "lon": -0.1889093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 50" - } -}, -{ - "type": "node", - "id": 540359568, - "lat": 51.5544914, - "lon": -0.1917374, - "tags": { - "amenity": "post_box", - "mapillary": "150281920870653", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 3", - "survey:date": "2022-05-21" - } -}, -{ - "type": "node", - "id": 540359569, - "lat": 51.5572296, - "lon": -0.1933242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 84" - } -}, -{ - "type": "node", - "id": 540359570, - "lat": 51.5597436, - "lon": -0.1915631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 57" - } -}, -{ - "type": "node", - "id": 540359571, - "lat": 51.5594774, - "lon": -0.1940453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 89" - } -}, -{ - "type": "node", - "id": 540359572, - "lat": 51.5629320, - "lon": -0.1978699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 7" - } -}, -{ - "type": "node", - "id": 540359573, - "lat": 51.5637048, - "lon": -0.1969911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 13" - } -}, -{ - "type": "node", - "id": 540359574, - "lat": 51.5660884, - "lon": -0.1936433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 92" - } -}, -{ - "type": "node", - "id": 540359575, - "lat": 51.5678000, - "lon": -0.1833265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd London & Falkirk", - "mapillary": "1108477303440497", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 540359576, - "lat": 51.5618460, - "lon": -0.1795087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd London & Glasgo", - "mapillary": "143098838011533", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 6D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2024-07-13" - } -}, -{ - "type": "node", - "id": 540364156, - "lat": 51.5622271, - "lon": -0.1764584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 33" - } -}, -{ - "type": "node", - "id": 540364157, - "lat": 51.5594096, - "lon": -0.1810664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NW3 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540364159, - "lat": 51.5610384, - "lon": -0.1834606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 76" - } -}, -{ - "type": "node", - "id": 540364163, - "lat": 51.5598933, - "lon": -0.1893746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 88" - } -}, -{ - "type": "node", - "id": 540364165, - "lat": 51.5594637, - "lon": -0.1875006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 91" - } -}, -{ - "type": "node", - "id": 540364166, - "lat": 51.5574812, - "lon": -0.1889946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 56" - } -}, -{ - "type": "node", - "id": 540364167, - "lat": 51.5570278, - "lon": -0.1866340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 79" - } -}, -{ - "type": "node", - "id": 540364169, - "lat": 51.5564476, - "lon": -0.1826113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 11" - } -}, -{ - "type": "node", - "id": 540372743, - "lat": 51.5226350, - "lon": -0.1030220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1V 122;EC1V 1221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540392106, - "lat": 51.5542665, - "lon": -0.1840154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 81" - } -}, -{ - "type": "node", - "id": 540392110, - "lat": 51.5551714, - "lon": -0.1784015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 64" - } -}, -{ - "type": "node", - "id": 540392111, - "lat": 51.5579957, - "lon": -0.1798213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 90" - } -}, -{ - "type": "node", - "id": 540393302, - "lat": 51.3315105, - "lon": 0.7524265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME10", - "ref": "ME10 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 540393559, - "lat": 51.3369719, - "lon": 0.7515481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 540393577, - "lat": 51.3349685, - "lon": 0.7533444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-11-01" - } -}, -{ - "type": "node", - "id": 540400868, - "lat": 51.2148442, - "lon": -1.3752633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "736511011938780", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG28 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-09" - } -}, -{ - "type": "node", - "id": 540401440, - "lat": 52.5870642, - "lon": -2.1435682, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WV1 112", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540401452, - "lat": 52.4622437, - "lon": -1.9637124, - "tags": { - "amenity": "post_box", - "ref": "B17 349" - } -}, -{ - "type": "node", - "id": 540403149, - "lat": 51.3011918, - "lon": 0.7493970, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540403169, - "lat": 51.3031168, - "lon": 0.7698279, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540403177, - "lat": 51.2992248, - "lon": 0.7814615, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540403202, - "lat": 51.3184116, - "lon": 0.7476205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 540403206, - "lat": 51.3228845, - "lon": 0.7632766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "ME9", - "ref": "ME9 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540403219, - "lat": 51.3140474, - "lon": 0.7864539, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540403227, - "lat": 51.3221626, - "lon": 0.7780444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 540403239, - "lat": 51.2751229, - "lon": 0.8134083, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540403242, - "lat": 51.2785959, - "lon": 0.8166699, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 69", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 69D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 540403244, - "lat": 51.3228328, - "lon": 0.7951301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 540403247, - "lat": 51.3165245, - "lon": 0.8181252, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540408319, - "lat": 51.5481672, - "lon": -0.1805676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 19" - } -}, -{ - "type": "node", - "id": 540408320, - "lat": 51.5497641, - "lon": -0.1821660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mapillary": "1166143164201033", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 67", - "survey:date": "2022-05-21" - } -}, -{ - "type": "node", - "id": 540408321, - "lat": 51.5477702, - "lon": -0.1821230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 93" - } -}, -{ - "type": "node", - "id": 540408323, - "lat": 51.5452213, - "lon": -0.1774076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW3 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540408324, - "lat": 51.5432799, - "lon": -0.1752201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 22:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540408325, - "lat": 51.5453611, - "lon": -0.1713246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540408326, - "lat": 51.5447255, - "lon": -0.1694410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540408327, - "lat": 51.5440957, - "lon": -0.1668452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Victorian anonymous post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NW3 30", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540412000, - "lat": 53.7287882, - "lon": -1.8007890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 540414961, - "lat": 51.5401903, - "lon": -0.1691494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 540414962, - "lat": 51.5410721, - "lon": -0.1650926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 61D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 540414963, - "lat": 51.5419229, - "lon": -0.1618225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 69", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 540414964, - "lat": 51.5422771, - "lon": -0.1643106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 28", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 540414966, - "lat": 51.5439441, - "lon": -0.1594694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 1" - } -}, -{ - "type": "node", - "id": 540414967, - "lat": 51.5486190, - "lon": -0.1617116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 75D" - } -}, -{ - "type": "node", - "id": 540414969, - "lat": 51.5496574, - "lon": -0.1632972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 24D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540415675, - "lat": 51.5497766, - "lon": -0.1659330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 49D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 540415676, - "lat": 51.5471642, - "lon": -0.1654753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 18", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 540415677, - "lat": 51.5493626, - "lon": -0.1713727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 52" - } -}, -{ - "type": "node", - "id": 540415679, - "lat": 51.5475885, - "lon": -0.1741643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 37", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 540419331, - "lat": 52.7847444, - "lon": -0.1672972, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540421106, - "lat": 52.2521107, - "lon": -0.8139017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540431363, - "lat": 51.5266289, - "lon": -2.1207409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "580705693163127", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 540451364, - "lat": 52.5726474, - "lon": -0.2879526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE3 130", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 540451671, - "lat": 52.5749602, - "lon": -0.2295244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 178D" - } -}, -{ - "type": "node", - "id": 540469642, - "lat": 52.5610326, - "lon": -2.1117001, - "tags": { - "amenity": "post_box", - "ref": "WV4 408" - } -}, -{ - "type": "node", - "id": 540491671, - "lat": 55.9524665, - "lon": -4.1574920, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 540580561, - "lat": 52.3252497, - "lon": -0.4530658, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE28 74" - } -}, -{ - "type": "node", - "id": 540642989, - "lat": 52.2603873, - "lon": -0.8219011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540649255, - "lat": 54.0678384, - "lon": -2.2759537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD24 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540673394, - "lat": 52.5796451, - "lon": -2.1214667, - "tags": { - "amenity": "post_box", - "ref": "WV2 55", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 540714378, - "lat": 52.7370761, - "lon": -2.6654290, - "tags": { - "amenity": "post_box", - "ref": "SY4 176" - } -}, -{ - "type": "node", - "id": 540782504, - "lat": 51.4343884, - "lon": -3.4797878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 207D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 540791812, - "lat": 52.2134731, - "lon": 0.1388668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CB4 1", - "ref": "CB4 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540792831, - "lat": 52.2126952, - "lon": 0.1330511, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CB4 1", - "ref": "CB4 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 540822717, - "lat": 53.3422677, - "lon": -2.7404246, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540883284, - "lat": 53.3427088, - "lon": -2.7347708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "WA7 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540883286, - "lat": 53.3157839, - "lon": -2.6995974, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 54", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 540883287, - "lat": 53.3102880, - "lon": -2.6933853, - "tags": { - "amenity": "post_box", - "ref": "WA7 26" - } -}, -{ - "type": "node", - "id": 540883290, - "lat": 53.3445846, - "lon": -2.6972431, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA7 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540883291, - "lat": 53.2999744, - "lon": -2.6642940, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WA7 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 540883293, - "lat": 53.3211370, - "lon": -2.6785189, - "tags": { - "amenity": "post_box", - "ref": "WA7 60" - } -}, -{ - "type": "node", - "id": 540883294, - "lat": 53.3321741, - "lon": -2.7249769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 33", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 540883296, - "lat": 53.3305590, - "lon": -2.7336212, - "tags": { - "amenity": "post_box", - "ref": "WA7 24" - } -}, -{ - "type": "node", - "id": 540883297, - "lat": 53.3272680, - "lon": -2.7493421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA7 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 540883300, - "lat": 53.3202479, - "lon": -2.6657456, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540883301, - "lat": 53.3141051, - "lon": -2.7126957, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA7 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540883305, - "lat": 53.3364013, - "lon": -2.7008989, - "tags": { - "amenity": "post_box", - "ref": "WA7 10" - } -}, -{ - "type": "node", - "id": 540883306, - "lat": 53.3278624, - "lon": -2.7092106, - "tags": { - "amenity": "post_box", - "ref": "WA7 56" - } -}, -{ - "type": "node", - "id": 540883307, - "lat": 53.3398386, - "lon": -2.7160925, - "tags": { - "amenity": "post_box", - "ref": "WA7 5" - } -}, -{ - "type": "node", - "id": 540883308, - "lat": 53.3380990, - "lon": -2.7083125, - "tags": { - "amenity": "post_box", - "ref": "WA7 13" - } -}, -{ - "type": "node", - "id": 540883309, - "lat": 53.3185123, - "lon": -2.6827174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540883312, - "lat": 53.3486841, - "lon": -2.6713106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA7 77" - } -}, -{ - "type": "node", - "id": 540883313, - "lat": 53.3430095, - "lon": -2.7248733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA7 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540922986, - "lat": 51.6324211, - "lon": 0.0391108, - "tags": { - "amenity": "post_box", - "ref": "IG9 77" - } -}, -{ - "type": "node", - "id": 540923437, - "lat": 53.3355910, - "lon": -2.2359064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK9 653" - } -}, -{ - "type": "node", - "id": 540929063, - "lat": 52.1394200, - "lon": -2.2174400, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR5 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540940183, - "lat": 56.6186939, - "lon": -2.6442574, - "tags": { - "amenity": "post_box", - "ref": "DD11 324" - } -}, -{ - "type": "node", - "id": 540940184, - "lat": 56.5772473, - "lon": -2.5873154, - "tags": { - "amenity": "post_box", - "ref": "DD11 330", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 540940210, - "lat": 56.6014529, - "lon": -2.6117533, - "tags": { - "amenity": "post_box", - "ref": "DD11 319" - } -}, -{ - "type": "node", - "id": 540940211, - "lat": 56.6373395, - "lon": -2.6606110, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DD11 334", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 540940214, - "lat": 56.6370302, - "lon": -2.6663237, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DD11 340" - } -}, -{ - "type": "node", - "id": 540984036, - "lat": 53.3351806, - "lon": -2.7355744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "WA7 18" - } -}, -{ - "type": "node", - "id": 540984039, - "lat": 53.3336785, - "lon": -2.7290796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 30", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 540984044, - "lat": 53.3255656, - "lon": -2.7167239, - "tags": { - "amenity": "post_box", - "ref": "WA7 38" - } -}, -{ - "type": "node", - "id": 540984049, - "lat": 53.3235942, - "lon": -2.7193206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540984052, - "lat": 53.3263745, - "lon": -2.6836943, - "tags": { - "amenity": "post_box", - "ref": "WA7 83" - } -}, -{ - "type": "node", - "id": 540984056, - "lat": 53.3218454, - "lon": -2.7386299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 28", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 540984061, - "lat": 53.3334437, - "lon": -2.7131533, - "tags": { - "amenity": "post_box", - "ref": "WA7 35" - } -}, -{ - "type": "node", - "id": 540984063, - "lat": 53.3378258, - "lon": -2.7431457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 4", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 540984065, - "lat": 53.3364241, - "lon": -2.6874609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 540984073, - "lat": 53.3243892, - "lon": -2.7548335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA7 25" - } -}, -{ - "type": "node", - "id": 540984076, - "lat": 53.3392753, - "lon": -2.6765578, - "tags": { - "amenity": "post_box", - "ref": "WA7 63" - } -}, -{ - "type": "node", - "id": 540984089, - "lat": 53.3243615, - "lon": -2.7445984, - "tags": { - "amenity": "post_box", - "ref": "WA7 20" - } -}, -{ - "type": "node", - "id": 540984091, - "lat": 53.3331087, - "lon": -2.7433662, - "tags": { - "amenity": "post_box", - "ref": "WA7 16" - } -}, -{ - "type": "node", - "id": 540984097, - "lat": 53.3103209, - "lon": -2.6495165, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "WA7 69" - } -}, -{ - "type": "node", - "id": 540984099, - "lat": 53.3261719, - "lon": -2.6893281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 541028769, - "lat": 51.5607759, - "lon": 0.4873260, - "tags": { - "amenity": "post_box", - "ref": "SS16 281" - } -}, -{ - "type": "node", - "id": 541064123, - "lat": 55.0956456, - "lon": -3.5809910, - "tags": { - "amenity": "post_box", - "ref": "DG1 202" - } -}, -{ - "type": "node", - "id": 541101952, - "lat": 50.9619545, - "lon": -0.1245848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 541101955, - "lat": 50.9590941, - "lon": -0.1369615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 541124108, - "lat": 51.5724080, - "lon": -0.3618845, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12.30pm", - "postal_code": "HA2" - } -}, -{ - "type": "node", - "id": 541172407, - "lat": 50.9213680, - "lon": -1.3540233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-24", - "old_ref": "SO18 359", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 359D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541172874, - "lat": 51.5796469, - "lon": -0.3665559, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12.45pm", - "postal_code": "HA2", - "ref": "HA2 351", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 541238195, - "lat": 56.5722535, - "lon": -2.6175573, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 541238196, - "lat": 56.5734119, - "lon": -2.6117638, - "tags": { - "amenity": "post_box", - "postal_code": "DD11 3RD", - "ref": "DD11 337", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997876, - "lat": 52.2151993, - "lon": 0.1687701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB5 8", - "ref": "CB5 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 541997889, - "lat": 51.2264212, - "lon": 0.8753965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN25 244", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN25 244D", - "source": "survey", - "survey:date": "2023-11-24" - } -}, -{ - "type": "node", - "id": 541997897, - "lat": 51.2493985, - "lon": 0.8765990, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "ME13", - "ref": "ME13 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-11-24" - } -}, -{ - "type": "node", - "id": 541997902, - "lat": 51.2537113, - "lon": 0.9026180, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 65", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997905, - "lat": 51.2698797, - "lon": 0.8860921, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 41", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997906, - "lat": 51.2778099, - "lon": 0.8985536, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997912, - "lat": 51.2740689, - "lon": 0.9116063, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 27", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997913, - "lat": 51.2712977, - "lon": 0.9230982, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997914, - "lat": 51.2790744, - "lon": 0.9303046, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997915, - "lat": 51.2850054, - "lon": 0.8855284, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997917, - "lat": 51.2950383, - "lon": 0.9665185, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541997919, - "lat": 51.2983130, - "lon": 0.9471240, - "tags": { - "amenity": "post_box", - "mapillary": "214898834020974", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 34", - "source": "survey", - "survey:date": "2021-08-15" - } -}, -{ - "type": "node", - "id": 541997925, - "lat": 51.2966309, - "lon": 0.9506673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "mapillary": "245091927620553", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ME13", - "ref": "ME13 52", - "source": "survey", - "survey:date": "2021-08-15" - } -}, -{ - "type": "node", - "id": 541997996, - "lat": 51.3081338, - "lon": 0.9612454, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "ME13", - "ref": "ME13 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541998033, - "lat": 51.3150411, - "lon": 0.9638550, - "tags": { - "amenity": "post_box", - "mapillary": "351276823130175", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 6", - "source": "survey", - "survey:date": "2021-06-06" - } -}, -{ - "type": "node", - "id": 541998065, - "lat": 51.3165798, - "lon": 0.9817946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "mapillary": "218239620182939", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 45", - "source": "survey", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 541998089, - "lat": 51.3258894, - "lon": 0.9712447, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 56", - "source": "survey" - } -}, -{ - "type": "node", - "id": 541998097, - "lat": 51.3251614, - "lon": 0.9883730, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 542162878, - "lat": 51.1308134, - "lon": -4.2241820, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 542275297, - "lat": 51.1341317, - "lon": -4.2355877, - "tags": { - "amenity": "post_box", - "fixme": "Is the pillar box now back in use? In Sep 2021, there was a new lamp type box next to the substation east of the service road and the older pillar box was taped up and out-of-use.", - "post_box:type": "pillar", - "ref": "EX33 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 542491277, - "lat": 51.3659599, - "lon": 1.1109583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 542529652, - "lat": 53.2054111, - "lon": -3.0245209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 542532212, - "lat": 51.2468453, - "lon": -2.2036900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BA13 4" - } -}, -{ - "type": "node", - "id": 542539505, - "lat": 53.7374350, - "lon": -1.5315423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 221" - } -}, -{ - "type": "node", - "id": 542603596, - "lat": 50.7779451, - "lon": -3.0014099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "407093581415232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 542655481, - "lat": 53.1719694, - "lon": -1.4294300, - "tags": { - "amenity": "post_box", - "comment": "plate missing", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S45 254", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 542711739, - "lat": 55.5950950, - "lon": -4.4971019, - "tags": { - "accuracy": "34 feet", - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 542739636, - "lat": 52.4158220, - "lon": -1.9587249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B31 736", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 542787341, - "lat": 56.5898449, - "lon": -2.5216285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "DD11 5SQ", - "ref": "DD11 327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 543670367, - "lat": 51.5579857, - "lon": -1.8010551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN1 94" - } -}, -{ - "type": "node", - "id": 543671561, - "lat": 51.5451900, - "lon": -1.7789422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "409148530843257", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 233", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 543846559, - "lat": 55.9661414, - "lon": -3.3075105, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH4 490", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 544106745, - "lat": 50.9985885, - "lon": -1.3542192, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 544191743, - "lat": 53.5675770, - "lon": -2.2307118, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 544203787, - "lat": 55.5961726, - "lon": -4.4858211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 544233004, - "lat": 50.6752248, - "lon": -3.4909521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2023-01-02" - } -}, -{ - "type": "node", - "id": 544298258, - "lat": 51.5363229, - "lon": -0.1123795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 131D;N1 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 544303744, - "lat": 51.5626412, - "lon": -0.4137194, - "tags": { - "amenity": "post_box", - "last_collection": "5.15pm Sat 12noon", - "postal_code": "HA4", - "ref": "HA4 367" - } -}, -{ - "type": "node", - "id": 544310529, - "lat": 51.5706394, - "lon": -0.4361175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA4 340" - } -}, -{ - "type": "node", - "id": 544316299, - "lat": 51.5600397, - "lon": -0.4464121, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 544328507, - "lat": 51.5296444, - "lon": -0.4873191, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 544460855, - "lat": 55.6135059, - "lon": -4.5399174, - "tags": { - "accuracy": "15 feet", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "KA2 66" - } -}, -{ - "type": "node", - "id": 544526523, - "lat": 53.0801545, - "lon": -0.9503878, - "tags": { - "amenity": "post_box", - "ele": "33.771729", - "ref": "NG25 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 544544037, - "lat": 52.9724411, - "lon": -1.1713405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "ele": "47.230103", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG7 35", - "ref:GB:uprn": "10009157740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 544544125, - "lat": 52.0189100, - "lon": 0.6938853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO10 1064", - "source": "gps" - } -}, -{ - "type": "node", - "id": 544603757, - "lat": 51.1579919, - "lon": 1.0515721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 76", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 544926198, - "lat": 51.1555307, - "lon": -0.2298810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 363" - } -}, -{ - "type": "node", - "id": 545151510, - "lat": 51.2014931, - "lon": -1.1735105, - "tags": { - "amenity": "post_box", - "mapillary": "485747525971058", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "RG25", - "ref": "RG25 231", - "survey:date": "2020-04-12" - } -}, -{ - "type": "node", - "id": 545151514, - "lat": 51.1924725, - "lon": -1.1596652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "RG25", - "ref": "RG25 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 545151569, - "lat": 51.1859187, - "lon": -1.1286011, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "RG25", - "ref": "RG25 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 545151579, - "lat": 51.1964207, - "lon": -1.1289223, - "tags": { - "amenity": "post_box", - "postal_code": "RG25", - "ref": "RG25 184" - } -}, -{ - "type": "node", - "id": 545789506, - "lat": 51.7527655, - "lon": -1.2566422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX1 100", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 546119721, - "lat": 51.9434668, - "lon": 0.6315204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO9 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps" - } -}, -{ - "type": "node", - "id": 546119780, - "lat": 51.9483971, - "lon": 0.6374756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO9 21", - "source": "gps" - } -}, -{ - "type": "node", - "id": 546380669, - "lat": 51.5003775, - "lon": -0.3151731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "mapillary": "175576181248501", - "post_box:type": "pillar", - "ref": "W13 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-05-05" - } -}, -{ - "type": "node", - "id": 546569979, - "lat": 52.6062662, - "lon": -0.1849578, - "tags": { - "amenity": "post_box", - "postal_code": "PE6", - "ref": "PE6 260", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 546617426, - "lat": 51.8427299, - "lon": -2.0558967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Previously ref was mapped as GL53 40, but that's certainly not what the plate says as of 14/12/2019. GL53 40 appears to be mapped correctly in Leckhampton. https://www.openstreetmap.org/node/511081865", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL53 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 546617506, - "lat": 51.8123132, - "lon": -2.0901610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL4 124", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Survey in person with geo-tagged photo." - } -}, -{ - "type": "node", - "id": 546643320, - "lat": 52.6102450, - "lon": -0.1836749, - "tags": { - "amenity": "post_box", - "postal_code": "PE6", - "ref": "PE6 370", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 546643417, - "lat": 52.6157780, - "lon": -0.1865902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "In end wall of outhouse of The Greyhound public house; at the right of the car park entrance", - "post_box:type": "wall", - "ref": "PE6 30", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 546680250, - "lat": 50.8630440, - "lon": -3.2223609, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 546680253, - "lat": 50.8641281, - "lon": -3.2235011, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX14 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 546683672, - "lat": 51.5296997, - "lon": -0.1105166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1R 117;EC1R 1171", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 546793742, - "lat": 52.1116866, - "lon": -2.3077678, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 546854115, - "lat": 51.4296016, - "lon": -0.3501540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TW11 188" - } -}, -{ - "type": "node", - "id": 546974265, - "lat": 53.9936314, - "lon": -1.5059646, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547125002, - "lat": 51.5774356, - "lon": -0.3489770, - "tags": { - "amenity": "post_box", - "last_collection": "6.00pm Sat 12.30pm", - "post_box:type": "pillar", - "postal_code": "HA1", - "ref": "HA1 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 547322854, - "lat": 51.5725788, - "lon": -0.3658930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_collection": "5.45pm, Sat 12.30pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HA2", - "ref": "HA2 283", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 547322982, - "lat": 51.5774152, - "lon": -0.3713205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "last_collection": "5.30pm, Sat 1.00pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HA5", - "ref": "HA5 225" - } -}, -{ - "type": "node", - "id": 547323241, - "lat": 51.5818523, - "lon": -0.3712685, - "tags": { - "amenity": "post_box", - "last_collection": "5.00pm, Sat 12.45pm", - "postal_code": "HA2", - "ref": "HA2 327" - } -}, -{ - "type": "node", - "id": 547343190, - "lat": 52.2272611, - "lon": 1.4859508, - "tags": { - "amenity": "post_box", - "ref": "IP17 4645" - } -}, -{ - "type": "node", - "id": 547355488, - "lat": 52.2139430, - "lon": 1.4917950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "IP17 4050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547420185, - "lat": 52.1789918, - "lon": 1.6144639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4689", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547469801, - "lat": 52.1888719, - "lon": 1.4491648, - "tags": { - "amenity": "post_box", - "ref": "IP17 4616" - } -}, -{ - "type": "node", - "id": 547513061, - "lat": 52.1409314, - "lon": -2.2997105, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:type": "lamp", - "ref": "WR13 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Waypoint" - } -}, -{ - "type": "node", - "id": 547513067, - "lat": 52.1481544, - "lon": -2.2852257, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547513070, - "lat": 52.1694754, - "lon": -2.3553453, - "tags": { - "amenity": "post_box", - "ref": "WR6 177", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547513073, - "lat": 52.1685069, - "lon": -2.3306657, - "tags": { - "amenity": "post_box", - "fixme": "Position by GPS. Need to visit in daylight to get aux data", - "old_ref": "M022", - "post_box:type": "lamp", - "ref": "WR13 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547513087, - "lat": 52.1783063, - "lon": -2.3331133, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR6 388", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547513089, - "lat": 52.1793701, - "lon": -2.3224395, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR6 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547513094, - "lat": 52.1678564, - "lon": -2.2876900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR6 247", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547534866, - "lat": 52.1255934, - "lon": -2.2870040, - "tags": { - "amenity": "post_box", - "historic_operator": "Post Office", - "old_ref": "M116", - "post_box:type": "wall", - "ref": "WR13 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 547534883, - "lat": 52.1345693, - "lon": -2.3000792, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "historic_operator": "Royal Mail", - "manufacturer": "Machan Scotland", - "note": "RM replaced this box on about 2010-12-15; it had been stolen. It is now on a pier rather than being strapped to a post.", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WR13 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 547540217, - "lat": 51.5871328, - "lon": -0.3004313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 49" - } -}, -{ - "type": "node", - "id": 548660229, - "lat": 51.5791633, - "lon": -0.3087677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 172" - } -}, -{ - "type": "node", - "id": 548660235, - "lat": 51.5819294, - "lon": -0.3116480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 13:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 141", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 548660247, - "lat": 51.5780974, - "lon": -0.3036524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 341" - } -}, -{ - "type": "node", - "id": 548660248, - "lat": 51.5768921, - "lon": -0.2984818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 277D" - } -}, -{ - "type": "node", - "id": 548660253, - "lat": 51.5762634, - "lon": -0.2950785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 419D" - } -}, -{ - "type": "node", - "id": 548704464, - "lat": 51.5813730, - "lon": -0.3180087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-20", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "postal_code": "HA3", - "ref": "HA3 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 548704533, - "lat": 51.5808930, - "lon": -0.3032685, - "tags": { - "amenity": "post_box", - "last_collection": "5.45pm, Sat 11.45am", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 220" - } -}, -{ - "type": "node", - "id": 548720595, - "lat": 52.7649911, - "lon": -2.6992272, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY4 407", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 548802526, - "lat": 51.5769252, - "lon": -0.3078410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "last_collection": "5.15pm Sat 12.45pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA3", - "ref": "HA3 279D" - } -}, -{ - "type": "node", - "id": 548865963, - "lat": 51.5683727, - "lon": -0.2889099, - "tags": { - "amenity": "post_box", - "last_collection": "5.00pm Sat 12noon", - "postal_code": "HA9", - "ref": "HA9 326" - } -}, -{ - "type": "node", - "id": 548865996, - "lat": 51.5740571, - "lon": -0.3034348, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm Sat 12.15pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HA9", - "ref": "HA9 365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 548866003, - "lat": 51.5719397, - "lon": -0.2974660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "HA9", - "ref:GB:uprn": "10015432524" - } -}, -{ - "type": "node", - "id": 548932057, - "lat": 55.8173808, - "lon": -4.0818300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "G71 410" - } -}, -{ - "type": "node", - "id": 549029429, - "lat": 53.2264075, - "lon": -4.1348827, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 549086315, - "lat": 51.8418156, - "lon": 0.9390303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549088468, - "lat": 53.2234262, - "lon": -4.1429747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL57 240", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 549161799, - "lat": 50.9053214, - "lon": -3.4935737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 549217725, - "lat": 51.8562724, - "lon": 0.9592747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO7 3041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549221519, - "lat": 50.4855540, - "lon": -4.2002718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 443", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 549222809, - "lat": 50.4803560, - "lon": -4.1958949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-18" - } -}, -{ - "type": "node", - "id": 549230970, - "lat": 50.4793799, - "lon": -4.1904234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 08:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 543", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 549230985, - "lat": 50.4798785, - "lon": -4.1892971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 702", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 549244777, - "lat": 53.7574791, - "lon": -1.6950744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 414" - } -}, -{ - "type": "node", - "id": 549244963, - "lat": 53.7580843, - "lon": -1.6867295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 415" - } -}, -{ - "type": "node", - "id": 549245247, - "lat": 53.7517293, - "lon": -1.6942160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 410" - } -}, -{ - "type": "node", - "id": 549256421, - "lat": 51.1887238, - "lon": 1.2210653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256425, - "lat": 51.2100015, - "lon": 1.2299455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256426, - "lat": 51.2185640, - "lon": 1.2223479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256429, - "lat": 51.1756135, - "lon": 1.2323977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256526, - "lat": 51.1960385, - "lon": 1.2667612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT15", - "ref": "CT15 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256532, - "lat": 51.1785762, - "lon": 1.3176678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.bing.com/maps?osid=ccdead79-2185-4587-9953-dd198dc06c91&cp=51.178557~1.317618&lvl=19&dir=74.12215&pi=-16.536718&style=x&mo=z.0&imgid=f83d804a-3426-4787-b313-31e1cae7bb25&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256534, - "lat": 51.1811085, - "lon": 1.3097837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "507474466974027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 549256540, - "lat": 51.1925466, - "lon": 1.3065126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256553, - "lat": 51.2059599, - "lon": 1.2396062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256559, - "lat": 51.2002090, - "lon": 1.2634457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256577, - "lat": 51.2076408, - "lon": 1.2581174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2972225309703221", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 549256594, - "lat": 51.2220602, - "lon": 1.2318298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT15", - "ref": "CT15 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256597, - "lat": 51.1965277, - "lon": 1.3123200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256602, - "lat": 51.1680232, - "lon": 1.3386633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256608, - "lat": 51.1706018, - "lon": 1.3481743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549256610, - "lat": 51.1745763, - "lon": 1.3450080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "mapillary": "243861130505166", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 549262461, - "lat": 53.0040321, - "lon": -1.1781114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 95D", - "ref:GB:uprn": "10015365392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549268708, - "lat": 53.0003358, - "lon": -1.1782192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 376D", - "ref:GB:uprn": "10015418078", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549271241, - "lat": 52.9855470, - "lon": -1.1731807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG6 309D", - "ref:GB:uprn": "10015339127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549280225, - "lat": 51.2689312, - "lon": -2.2010810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "BA13 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 549327624, - "lat": 51.2534422, - "lon": 0.6899643, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "ME17", - "ref": "ME17 113", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-16" - } -}, -{ - "type": "node", - "id": 549327744, - "lat": 51.2641420, - "lon": 0.6977247, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 259", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549327757, - "lat": 51.2701842, - "lon": 0.6928304, - "tags": { - "amenity": "post_box", - "mapillary": "243270164177432", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME17", - "ref": "ME17 247", - "source": "survey", - "survey:date": "2020-09-05" - } -}, -{ - "type": "node", - "id": 549327779, - "lat": 51.2473268, - "lon": 0.7054385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "postal_code": "ME17", - "ref": "ME17 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-20" - } -}, -{ - "type": "node", - "id": 549327869, - "lat": 51.2813426, - "lon": 0.7721909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "368760154756946", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 549327897, - "lat": 51.2969405, - "lon": 0.7294628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 54", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549327909, - "lat": 51.2757344, - "lon": 0.8651967, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549327917, - "lat": 51.2843431, - "lon": 0.7992229, - "tags": { - "amenity": "post_box", - "mapillary": "394572658676137", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 109", - "source": "survey", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 549327970, - "lat": 51.2987362, - "lon": 0.8416379, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 51", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 51D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 549327980, - "lat": 51.2949218, - "lon": 0.8572486, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 68", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549328002, - "lat": 51.2975631, - "lon": 0.8575979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME13", - "ref": "ME13 18D", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 549328004, - "lat": 51.2976673, - "lon": 0.8681185, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 9", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME13", - "ref": "ME13 9D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 549328013, - "lat": 51.3013287, - "lon": 0.8759371, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 61", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549328016, - "lat": 51.3039895, - "lon": 0.9119843, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 77", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "postal_code": "ME13", - "ref": "ME13 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-12-14" - } -}, -{ - "type": "node", - "id": 549365021, - "lat": 53.0489201, - "lon": -1.1821205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG15 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549365030, - "lat": 53.0544787, - "lon": -1.1829836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG15 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549393808, - "lat": 52.7273269, - "lon": -4.0578003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL42 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 549400904, - "lat": 51.5658968, - "lon": 0.4532442, - "tags": { - "amenity": "post_box", - "ref": "SS16 298" - } -}, -{ - "type": "node", - "id": 549402524, - "lat": 53.1997239, - "lon": -1.1603565, - "tags": { - "amenity": "post_box", - "ref": "NG20 161", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549402531, - "lat": 53.2155998, - "lon": -1.1616220, - "tags": { - "amenity": "post_box", - "ref": "NG20 114", - "source": "survey;OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 549402725, - "lat": 53.2010887, - "lon": -1.4185438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "113.8009033", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S42 231D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 549402755, - "lat": 53.2030732, - "lon": -1.4289921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "158.0212402", - "post_box:type": "lamp", - "ref": "S42 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 549406124, - "lat": 51.5663553, - "lon": 0.4588971, - "tags": { - "amenity": "post_box", - "ref": "SS16 292" - } -}, -{ - "type": "node", - "id": 549446940, - "lat": 51.3357737, - "lon": 0.7379874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 549447279, - "lat": 51.3341717, - "lon": 0.7450909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME10", - "ref": "ME10 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 549485620, - "lat": 51.5637285, - "lon": 0.4629868, - "tags": { - "amenity": "post_box", - "ref": "SS16 297" - } -}, -{ - "type": "node", - "id": 549709506, - "lat": 52.2444908, - "lon": 0.7062920, - "tags": { - "amenity": "post_box", - "ref": "IP33 2051" - } -}, -{ - "type": "node", - "id": 549743867, - "lat": 55.1313341, - "lon": -1.5974513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE22 5TT", - "ref": "NE22 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 549743879, - "lat": 55.1308622, - "lon": -1.5936827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE22 5UA", - "ref": "NE22 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 549772284, - "lat": 52.9927601, - "lon": -1.1742887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 318D", - "ref:GB:uprn": "10015457835", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 549778549, - "lat": 50.9178618, - "lon": -1.3988896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 94D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 549803409, - "lat": 54.2882590, - "lon": -1.8086340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 549807848, - "lat": 50.4826414, - "lon": -4.1891674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PL20 498D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 549862671, - "lat": 50.4805882, - "lon": -4.1840038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL20 550D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 550062929, - "lat": 51.5414094, - "lon": -1.8964403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN4", - "ref": "SN4 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 550156094, - "lat": 52.7796560, - "lon": -1.2016629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 550370959, - "lat": 54.2849541, - "lon": -1.8096275, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 550370982, - "lat": 54.2855442, - "lon": -1.8056050, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6596566", - "post_box:type": "pillar", - "ref": "DL8 2" - } -}, -{ - "type": "node", - "id": 550437180, - "lat": 51.4782874, - "lon": -0.0374886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 550441287, - "lat": 50.8466330, - "lon": -1.1865168, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PO16 50D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 550441303, - "lat": 50.8464297, - "lon": -1.1825796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 550449094, - "lat": 50.8405398, - "lon": -1.1860523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 550647319, - "lat": 52.4306493, - "lon": -1.9118927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B30 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 550647343, - "lat": 52.4335314, - "lon": -1.9006552, - "tags": { - "amenity": "post_box", - "ref": "B14 324" - } -}, -{ - "type": "node", - "id": 551499120, - "lat": 51.3025650, - "lon": 0.9549743, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 551512883, - "lat": 51.8414419, - "lon": -2.2161747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "155400616471176", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL4 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 551588825, - "lat": 51.1138933, - "lon": 1.2552970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT15", - "ref": "CT15 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 551588836, - "lat": 51.2003788, - "lon": 1.1776369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CT4", - "ref": "CT4 295", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 551588837, - "lat": 51.1631789, - "lon": 1.2372879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 551588843, - "lat": 51.1621949, - "lon": 1.2478030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT15", - "ref": "CT15 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 551855451, - "lat": 53.4052155, - "lon": -2.9961611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type K post box L3 140 on Water Street, Liverpool, near the Pier Head and adjacent to the Cunard Building.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L3 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Pier Head, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 551978311, - "lat": 51.2169503, - "lon": 0.8565864, - "tags": { - "amenity": "post_box", - "postal_code": "TN25", - "ref": "TN25 146", - "source": "survey" - } -}, -{ - "type": "node", - "id": 551978334, - "lat": 51.2186693, - "lon": 0.8732015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "wall", - "postal_code": "TN25", - "ref": "TN25 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 552155690, - "lat": 53.9578073, - "lon": -2.0162454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD23 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 552396549, - "lat": 52.4761559, - "lon": -0.9088517, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE16 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 552430254, - "lat": 52.4706276, - "lon": -0.9144415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE16 30" - } -}, -{ - "type": "node", - "id": 552430313, - "lat": 52.4737496, - "lon": -0.9115110, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE16 7" - } -}, -{ - "type": "node", - "id": 552445316, - "lat": 54.1574032, - "lon": -2.4833382, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 147", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 552455082, - "lat": 52.3265705, - "lon": -0.0675694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE27 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 552546407, - "lat": 53.2301853, - "lon": -3.2450777, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 552557822, - "lat": 52.6573854, - "lon": -2.4459650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TF3 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 552784828, - "lat": 51.2452208, - "lon": 0.9755768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT4", - "ref": "CT4 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 553006441, - "lat": 50.9956788, - "lon": -1.3686311, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 553097695, - "lat": 50.9173633, - "lon": -2.2787196, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 553116422, - "lat": 52.7734924, - "lon": -1.2184643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 553195681, - "lat": 52.4856724, - "lon": -0.9101763, - "tags": { - "amenity": "post_box", - "ref": "LE16 11" - } -}, -{ - "type": "node", - "id": 553306637, - "lat": 51.5184974, - "lon": -0.1376452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W1T 42;W1T 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 553310162, - "lat": 51.5173891, - "lon": -0.1379353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "note": "LH for 2nd class; RH for 1st class and abroad.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1T 43D;W1T 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1T 43D and W1T 243D" - } -}, -{ - "type": "node", - "id": 553321714, - "lat": 51.3386942, - "lon": 0.7440157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 553484988, - "lat": 51.8864648, - "lon": 0.9384599, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554174872, - "lat": 50.9147653, - "lon": -2.3029612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT10 72", - "ref:GB:uprn": "10015475414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554245221, - "lat": 57.0522201, - "lon": -4.7965508, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH34 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554247899, - "lat": 56.8901659, - "lon": -4.8644563, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref is PH31 62KD not PH31 62D", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH31 62KD", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554253417, - "lat": 51.1217250, - "lon": 1.0547033, - "tags": { - "amenity": "post_box", - "postal_code": "CT18", - "ref": "CT18 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554289391, - "lat": 56.9070244, - "lon": -4.8126573, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH31 101", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554579529, - "lat": 56.9757212, - "lon": -4.3897657, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 12:15; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH20 28", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554684912, - "lat": 54.0834526, - "lon": -0.2073609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554684928, - "lat": 54.0868039, - "lon": -0.2069451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554684948, - "lat": 54.0866716, - "lon": -0.2014082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554754587, - "lat": 56.7508967, - "lon": -3.7977825, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-05-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 45D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 554774354, - "lat": 56.4993234, - "lon": -3.5128490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 104D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 554785334, - "lat": 57.4796410, - "lon": -4.3623450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV3 82", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785337, - "lat": 57.4786242, - "lon": -4.3087800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV3 58", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785341, - "lat": 57.4700813, - "lon": -4.2700464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV3 91", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785343, - "lat": 57.4753457, - "lon": -4.2617244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV3 74", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785345, - "lat": 57.4787881, - "lon": -4.2525857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV3 41D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785348, - "lat": 57.4810070, - "lon": -4.2628382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV3 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785351, - "lat": 57.4818163, - "lon": -4.2569768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV3 44", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554785353, - "lat": 57.4860467, - "lon": -4.2555548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV3 42", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554885068, - "lat": 51.2724457, - "lon": 1.0694998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT1", - "ref": "CT1 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554895175, - "lat": 51.3364772, - "lon": 1.3969844, - "tags": { - "amenity": "post_box", - "ref": "CT11 70" - } -}, -{ - "type": "node", - "id": 554896766, - "lat": 54.1655220, - "lon": -1.5078746, - "tags": { - "amenity": "post_box", - "ref": "HG4 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554920507, - "lat": 54.3977211, - "lon": -1.6555209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 554951531, - "lat": 54.4508940, - "lon": -1.7696315, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL11 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 554959827, - "lat": 51.4683211, - "lon": -0.2267799, - "tags": { - "addr:housenumber": "207", - "addr:street": "Lower Richmond Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 23", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 554959830, - "lat": 51.4652464, - "lon": -0.2294997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554959833, - "lat": 51.4637634, - "lon": -0.2321531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 554959836, - "lat": 51.4649023, - "lon": -0.2403249, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 554959837, - "lat": 51.4635663, - "lon": -0.2437230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "old_ref": "SW15 65", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554959841, - "lat": 51.4642748, - "lon": -0.2495390, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-20", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 554959844, - "lat": 51.4546161, - "lon": -0.2500720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554959847, - "lat": 51.4534336, - "lon": -0.2496898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554959849, - "lat": 51.4532186, - "lon": -0.2513954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 554991540, - "lat": 50.7796633, - "lon": 0.2553944, - "tags": { - "amenity": "post_box", - "mapillary": "782734912410000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 787", - "survey:date": "2019-12-26" - } -}, -{ - "type": "node", - "id": 555050969, - "lat": 54.4617856, - "lon": -1.8096166, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555051375, - "lat": 52.2509788, - "lon": -0.1187693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB23 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555062505, - "lat": 51.4504700, - "lon": -0.2461754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062507, - "lat": 51.4495128, - "lon": -0.2416015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Both collection plates show the same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW15 85;SW15 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062509, - "lat": 51.4470033, - "lon": -0.2414100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555062511, - "lat": 51.4469133, - "lon": -0.2385647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062514, - "lat": 51.4440420, - "lon": -0.2404707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062516, - "lat": 51.4329297, - "lon": -0.2567637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 75" - } -}, -{ - "type": "node", - "id": 555062518, - "lat": 51.4298501, - "lon": -0.2568561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555062520, - "lat": 51.4286561, - "lon": -0.2594327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 49" - } -}, -{ - "type": "node", - "id": 555062523, - "lat": 51.4318263, - "lon": -0.2598908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "SW15 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555062524, - "lat": 51.4350691, - "lon": -0.2578157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 47" - } -}, -{ - "type": "node", - "id": 555062527, - "lat": 51.4374976, - "lon": -0.2466927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062529, - "lat": 51.4395002, - "lon": -0.2464866, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SW15 5" - } -}, -{ - "type": "node", - "id": 555062531, - "lat": 51.4499582, - "lon": -0.2294631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 555062533, - "lat": 51.4538706, - "lon": -0.2347466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062537, - "lat": 51.4557352, - "lon": -0.2418251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 7" - } -}, -{ - "type": "node", - "id": 555062540, - "lat": 51.4561764, - "lon": -0.2430687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW15 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555062543, - "lat": 51.4584476, - "lon": -0.2430059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 81" - } -}, -{ - "type": "node", - "id": 555062545, - "lat": 51.4592027, - "lon": -0.2378251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 50", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 555062547, - "lat": 51.4614157, - "lon": -0.2381727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555072013, - "lat": 51.4628863, - "lon": -0.2269126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 555072015, - "lat": 51.4617018, - "lon": -0.2315405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 53" - } -}, -{ - "type": "node", - "id": 555072023, - "lat": 51.4595685, - "lon": -0.2260689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 60", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 555072025, - "lat": 51.4597001, - "lon": -0.2196769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 555072029, - "lat": 51.4604187, - "lon": -0.2187863, - "tags": { - "addr:city": "London", - "addr:housenumber": "3", - "addr:postcode": "SW15 6BW", - "addr:street": "Burston Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "name": "Putney Sorting Office", - "note": "In front of the Putney Royal Mail Sorting & Delivery Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SW15 1" - } -}, -{ - "type": "node", - "id": 555072031, - "lat": 51.4586976, - "lon": -0.2226028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 555072033, - "lat": 51.4622637, - "lon": -0.2226276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555085753, - "lat": 51.1164574, - "lon": 1.2364612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555085756, - "lat": 51.2202932, - "lon": 1.3393336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555085759, - "lat": 51.2291042, - "lon": 1.3302612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555085762, - "lat": 51.3402848, - "lon": 1.3891720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT12 160" - } -}, -{ - "type": "node", - "id": 555085763, - "lat": 51.3448551, - "lon": 1.3988243, - "tags": { - "amenity": "post_box", - "check_date": "2020-04-16", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT12 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555085766, - "lat": 51.3521205, - "lon": 1.4024371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT12 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 555094168, - "lat": 51.1271098, - "lon": 1.3118486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CT16 2111;CT16 2122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555094170, - "lat": 51.1486751, - "lon": 1.2750057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555114669, - "lat": 51.0906227, - "lon": 1.1305129, - "tags": { - "amenity": "post_box", - "ref": "CT19 209" - } -}, -{ - "type": "node", - "id": 555114673, - "lat": 51.0764138, - "lon": 1.1672325, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "CT20 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26570369" - } -}, -{ - "type": "node", - "id": 555114674, - "lat": 51.0945090, - "lon": 1.1515926, - "tags": { - "amenity": "post_box", - "ref": "CT19 640" - } -}, -{ - "type": "node", - "id": 555114675, - "lat": 51.0944976, - "lon": 1.1515993, - "tags": { - "amenity": "post_box", - "ref": "CT19 641" - } -}, -{ - "type": "node", - "id": 555114677, - "lat": 51.1442362, - "lon": 1.2730767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555114678, - "lat": 51.1314536, - "lon": 1.2896637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555115991, - "lat": 51.0610604, - "lon": 1.0502429, - "tags": { - "amenity": "post_box", - "ref": "CT21 145", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555117585, - "lat": 54.4955509, - "lon": -1.8288969, - "tags": { - "amenity": "post_box", - "ref": "DL11 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555117662, - "lat": 54.5083387, - "lon": -1.8054941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL11 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555120043, - "lat": 51.3232550, - "lon": 1.1965388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CT3 200", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 555134234, - "lat": 51.3504235, - "lon": 1.1328201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CT6 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 555136112, - "lat": 54.5308889, - "lon": -2.2646981, - "tags": { - "amenity": "post_box", - "ref": "CA17 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555157358, - "lat": 54.5898370, - "lon": -2.4228618, - "tags": { - "amenity": "post_box", - "ref": "CA16 75", - "source": "survey" - } -}, -{ - "type": "node", - "id": 555539318, - "lat": 52.5397159, - "lon": -2.1359510, - "tags": { - "amenity": "post_box", - "ref": "DY3 242" - } -}, -{ - "type": "node", - "id": 556191837, - "lat": 54.6372606, - "lon": -2.4966722, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA16 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556193783, - "lat": 54.6750135, - "lon": -2.5623429, - "tags": { - "amenity": "post_box", - "ref": "CA10 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556228201, - "lat": 54.6718899, - "lon": -2.7472279, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 330", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556339387, - "lat": 55.1243141, - "lon": -3.3504418, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556339419, - "lat": 55.1290222, - "lon": -3.3521241, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556380775, - "lat": 52.4708189, - "lon": -2.0620371, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B64 1124", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 556439508, - "lat": 55.6741152, - "lon": -3.9233048, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556562775, - "lat": 52.4642937, - "lon": -2.0673000, - "tags": { - "amenity": "post_box", - "ref": "B64 1127", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 556650327, - "lat": 50.7033313, - "lon": -3.2269588, - "tags": { - "amenity": "post_box", - "mapillary": "1493741604371639", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 556656046, - "lat": 50.6989762, - "lon": -3.2348159, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 556668152, - "lat": 50.7028903, - "lon": -3.2227138, - "tags": { - "amenity": "post_box", - "mapillary": "758954395259511", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 556672045, - "lat": 50.7043471, - "lon": -3.2320007, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 556675028, - "lat": 50.7018636, - "lon": -3.2377201, - "tags": { - "amenity": "post_box", - "mapillary": "309650274068797", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2020-08-29" - } -}, -{ - "type": "node", - "id": 556786432, - "lat": 52.9919767, - "lon": -1.1699425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "note": "stamp machine attached (book of stamps for 50p seems unlikely)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 399", - "ref:GB:uprn": "10015389180", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556819976, - "lat": 52.9940749, - "lon": -1.1617771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG5 355", - "ref:GB:uprn": "10015762631", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 556956736, - "lat": 51.3294892, - "lon": -0.8341348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU46 128" - } -}, -{ - "type": "node", - "id": 557009653, - "lat": 53.4900018, - "lon": -3.0167644, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 557015921, - "lat": 53.4857018, - "lon": -3.0125501, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 557018067, - "lat": 53.4822799, - "lon": -3.0163267, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 557020177, - "lat": 53.4798690, - "lon": -3.0192707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "VR type B post box L22 538 by Andrew Handyside & Co on Stuart Road/Parkfield Road, Crosby", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L22 538", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Stuart Road, Crosby.jpg" - } -}, -{ - "type": "node", - "id": 557021582, - "lat": 53.4733254, - "lon": -3.0156041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR type A/B post box L22 685 by Carron Company on Brook Vale, Waterloo", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L22 685", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Brook Vale, Waterloo.jpg" - } -}, -{ - "type": "node", - "id": 557022903, - "lat": 53.4683444, - "lon": -3.0113986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L21 104", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 557049697, - "lat": 53.4954832, - "lon": -3.0270722, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 557207032, - "lat": 55.5997020, - "lon": -2.2307122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TD12 44" - } -}, -{ - "type": "node", - "id": 557325755, - "lat": 52.4618169, - "lon": -1.9181394, - "tags": { - "amenity": "post_box", - "ref": "B15 3" - } -}, -{ - "type": "node", - "id": 558002207, - "lat": 53.1929566, - "lon": -1.0669824, - "tags": { - "amenity": "post_box", - "ref": "NG21 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558002448, - "lat": 53.1966785, - "lon": -1.0743107, - "tags": { - "amenity": "post_box", - "ref": "NG21 211", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558002471, - "lat": 53.1939799, - "lon": -1.0743810, - "tags": { - "amenity": "post_box", - "ref": "NG21 104", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558002633, - "lat": 53.1842307, - "lon": -1.0567223, - "tags": { - "amenity": "post_box", - "ref": "NG21 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558022358, - "lat": 53.1908793, - "lon": -1.0628225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG21 141", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558053724, - "lat": 53.1683484, - "lon": -1.1199848, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "ref": "NG21 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558079934, - "lat": 53.1604000, - "lon": -1.1380725, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558079978, - "lat": 53.1632029, - "lon": -1.1136870, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "ref": "NG21 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558079990, - "lat": 53.1633637, - "lon": -1.1235762, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "ref": "NG21 120", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558080313, - "lat": 53.1576530, - "lon": -1.1482071, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 558287065, - "lat": 53.5745764, - "lon": -2.3941736, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 558287144, - "lat": 53.5691507, - "lon": -2.3997396, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 558349718, - "lat": 53.8997887, - "lon": -1.6262785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS21 954", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558355954, - "lat": 53.8966449, - "lon": -1.6227029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS21 525", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558421274, - "lat": 50.3949069, - "lon": -3.9134261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL21 538D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 558458113, - "lat": 52.4835058, - "lon": -0.9184775, - "tags": { - "amenity": "post_box", - "ref": "LE16 70" - } -}, -{ - "type": "node", - "id": 558538164, - "lat": 52.1081982, - "lon": -2.3014087, - "tags": { - "amenity": "post_box", - "collection_plate": "uncoded", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Royal Mail", - "note": "Has old-style collection plate.", - "old_ref": "M133 Eston Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WR14 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558539156, - "lat": 52.4806180, - "lon": -0.9153411, - "tags": { - "amenity": "post_box", - "ref": "LE16 55" - } -}, -{ - "type": "node", - "id": 558539401, - "lat": 52.4812611, - "lon": -0.9184286, - "tags": { - "amenity": "post_box", - "ref": "LE16 83" - } -}, -{ - "type": "node", - "id": 558539564, - "lat": 52.4793522, - "lon": -0.9074815, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE16 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558632148, - "lat": 50.8591507, - "lon": -1.2154163, - "tags": { - "addr:street": "Hillson Drive", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "75.0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558635247, - "lat": 50.8645431, - "lon": -1.2150162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558637906, - "lat": 52.3229622, - "lon": -0.0717278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE27 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558843533, - "lat": 52.6271131, - "lon": -1.1547151, - "tags": { - "amenity": "post_box", - "ref": "LE3 325" - } -}, -{ - "type": "node", - "id": 558843563, - "lat": 52.6334004, - "lon": -1.1525222, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 558862415, - "lat": 52.9007445, - "lon": -1.0569576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "wall", - "ref": "NG12 127", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "gps" - } -}, -{ - "type": "node", - "id": 558873010, - "lat": 52.1910212, - "lon": 0.1233070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 94", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558874124, - "lat": 52.1715484, - "lon": 0.1114588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "postal_code": "CB2 2", - "ref": "CB2 193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558889051, - "lat": 50.9143622, - "lon": 0.0195156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558889081, - "lat": 50.9305106, - "lon": 0.0309182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "BN8 489D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558889147, - "lat": 50.9477200, - "lon": 0.0000120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 495" - } -}, -{ - "type": "node", - "id": 558889163, - "lat": 50.9396736, - "lon": 0.0291072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 491D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 558889188, - "lat": 50.9629325, - "lon": 0.0063230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 494", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 558912115, - "lat": 51.1458384, - "lon": -0.4702770, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU6 226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 558912125, - "lat": 51.1555960, - "lon": -0.5088586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU6 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558912127, - "lat": 51.1633610, - "lon": -0.5104250, - "tags": { - "amenity": "post_box", - "source": "visual_estimate" - } -}, -{ - "type": "node", - "id": 558912134, - "lat": 51.1581471, - "lon": -0.5045817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU6 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558912137, - "lat": 51.1649059, - "lon": -0.4936227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU6 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 558927068, - "lat": 51.8900019, - "lon": 0.8927592, - "tags": { - "amenity": "post_box", - "ref": "CO3 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559164026, - "lat": 52.9706484, - "lon": -1.3332669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559172141, - "lat": 52.9564158, - "lon": -1.2866282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG9 672D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559180233, - "lat": 52.9805326, - "lon": -1.2270392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG8 532D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559180241, - "lat": 52.9800106, - "lon": -1.2140931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG8 364D", - "ref:GB:uprn": "10015375836", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559185005, - "lat": 52.9795328, - "lon": -1.1820945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG6 231", - "ref:GB:uprn": "10015478382", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559198910, - "lat": 52.4182850, - "lon": -4.0841640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY23 001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559199044, - "lat": 52.9558313, - "lon": -1.2295685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "ele": "66.456299", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 559207164, - "lat": 52.0372786, - "lon": -1.1537423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "drive_through": "no", - "ref": "NN13 928" - } -}, -{ - "type": "node", - "id": 559207266, - "lat": 52.9611986, - "lon": -1.3757108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 627", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559208755, - "lat": 52.9151676, - "lon": -1.2036436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG9 612D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559221325, - "lat": 52.1556065, - "lon": -2.2153747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR5 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559240975, - "lat": 52.5434078, - "lon": -2.1149797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY3 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559241031, - "lat": 52.5352122, - "lon": -2.1032765, - "tags": { - "amenity": "post_box", - "ref": "DY3 19" - } -}, -{ - "type": "node", - "id": 559241159, - "lat": 52.5407269, - "lon": -2.0994788, - "tags": { - "amenity": "post_box", - "ref": "WV14 214" - } -}, -{ - "type": "node", - "id": 559241254, - "lat": 52.5421491, - "lon": -2.1032411, - "tags": { - "amenity": "post_box", - "ref": "WV14 249" - } -}, -{ - "type": "node", - "id": 559241409, - "lat": 52.5447430, - "lon": -2.0965179, - "tags": { - "amenity": "post_box", - "ref": "WV14 234" - } -}, -{ - "type": "node", - "id": 559276879, - "lat": 52.5458212, - "lon": -2.1179241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY3 130" - } -}, -{ - "type": "node", - "id": 559277003, - "lat": 52.5459945, - "lon": -2.1121469, - "tags": { - "amenity": "post_box", - "note": "no collection plate on this box today(01/09/2020).", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DY3 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559278684, - "lat": 50.8602893, - "lon": -1.3969801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO45 606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559278686, - "lat": 50.8642136, - "lon": -1.3966121, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO45 597D" - } -}, -{ - "type": "node", - "id": 559278694, - "lat": 50.8592014, - "lon": -1.4042022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 651", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559278696, - "lat": 50.8699583, - "lon": -1.3983749, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 758", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559299005, - "lat": 52.6144072, - "lon": -1.1702051, - "tags": { - "amenity": "post_box", - "ref": "LE3 573" - } -}, -{ - "type": "node", - "id": 559302260, - "lat": 52.6179272, - "lon": -1.1741108, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 559424942, - "lat": 52.5238734, - "lon": -1.2135158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE9 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559426578, - "lat": 52.3227131, - "lon": 0.8846007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559460938, - "lat": 51.3271235, - "lon": 1.3922016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT11 20", - "ref": "CT11 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559460940, - "lat": 51.3400714, - "lon": 1.2615277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT12", - "ref": "CT12 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461233, - "lat": 51.3301649, - "lon": 1.3739464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CT12 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461259, - "lat": 51.3287100, - "lon": 1.3982225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461260, - "lat": 51.3309605, - "lon": 1.4044547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT11", - "ref": "CT11 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461326, - "lat": 51.3506394, - "lon": 1.3633607, - "tags": { - "amenity": "post_box", - "note": "Quite hidden in wall behind bush.", - "postal_code": "CT12", - "ref": "CT12 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461334, - "lat": 51.3580527, - "lon": 1.3689329, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "Previously reported as installed circa 1903, sealed February 1996. Box is in use December 2019", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT9", - "ref": "CT9 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "start_date": "~1903" - } -}, -{ - "type": "node", - "id": 559461395, - "lat": 51.3532371, - "lon": 1.3984624, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "postal_code": "CT12", - "ref": "CT12 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461396, - "lat": 51.3555227, - "lon": 1.4003996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:45", - "post_box:type": "lamp", - "postal_code": "CT12", - "ref": "CT12 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461399, - "lat": 51.3509146, - "lon": 1.4057229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "postal_code": "CT12", - "ref": "CT12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461440, - "lat": 51.3301030, - "lon": 1.4171370, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT11", - "ref": "CT11 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461452, - "lat": 51.3380725, - "lon": 1.4101285, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461458, - "lat": 51.3387601, - "lon": 1.4142610, - "tags": { - "amenity": "post_box", - "check_date": "2019-05-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461493, - "lat": 51.3336004, - "lon": 1.4194584, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461499, - "lat": 51.3322484, - "lon": 1.4204632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461507, - "lat": 51.3322146, - "lon": 1.4240211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 35D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461524, - "lat": 51.3344829, - "lon": 1.4183521, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-08", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "postal_code": "CT11", - "ref": "CT11 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461530, - "lat": 51.3352355, - "lon": 1.4238082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461531, - "lat": 51.3347473, - "lon": 1.4261088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 17", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461533, - "lat": 51.3363026, - "lon": 1.4271865, - "tags": { - "amenity": "post_box", - "postal_code": "CT11", - "ref": "CT11 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461535, - "lat": 51.3378551, - "lon": 1.4271800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT11", - "ref": "CT11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461539, - "lat": 51.3411008, - "lon": 1.4265252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461540, - "lat": 51.3379414, - "lon": 1.4309129, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT11", - "ref": "CT11 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461541, - "lat": 51.3435782, - "lon": 1.4307857, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461542, - "lat": 51.3516772, - "lon": 1.4274774, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461544, - "lat": 51.3536529, - "lon": 1.4247976, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461545, - "lat": 51.3590727, - "lon": 1.4189765, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT10 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559461546, - "lat": 51.3642108, - "lon": 1.4182824, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CT10 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559461547, - "lat": 51.3659691, - "lon": 1.4271672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559461548, - "lat": 51.3583618, - "lon": 1.4301226, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 107D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 559461552, - "lat": 51.3630427, - "lon": 1.4361445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559464354, - "lat": 53.2154941, - "lon": -1.4366332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "109.7154541", - "post_box:type": "wall", - "ref": "S40 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559494723, - "lat": 51.1978612, - "lon": -0.6020337, - "tags": { - "amenity": "post_box", - "ref": "GU7 137" - } -}, -{ - "type": "node", - "id": 559494731, - "lat": 51.2003152, - "lon": -0.6003859, - "tags": { - "amenity": "post_box", - "ref": "GU7 129" - } -}, -{ - "type": "node", - "id": 559494750, - "lat": 51.2042399, - "lon": -0.6015951, - "tags": { - "amenity": "post_box", - "ref": "GU7 148" - } -}, -{ - "type": "node", - "id": 559507118, - "lat": 52.5412200, - "lon": -2.1230777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY3 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559537696, - "lat": 52.5366687, - "lon": -2.1222207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DY3 193" - } -}, -{ - "type": "node", - "id": 559565040, - "lat": 50.4351824, - "lon": -3.6907120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ9 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 559586810, - "lat": 50.4357405, - "lon": -3.6984383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "1017187752327565", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ9 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2022-07-30", - "survey:date": "2022-07-30" - } -}, -{ - "type": "node", - "id": 559614958, - "lat": 52.9493572, - "lon": -1.4923779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 707" - } -}, -{ - "type": "node", - "id": 559616315, - "lat": 52.9219779, - "lon": -4.1339157, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 559619167, - "lat": 52.5354429, - "lon": -2.1328636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DY3 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559619736, - "lat": 50.4545780, - "lon": -3.7162543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 559623976, - "lat": 51.9488973, - "lon": -0.0275506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "name": "Greenways", - "ref": "SG9 129" - } -}, -{ - "type": "node", - "id": 559635044, - "lat": 52.0090494, - "lon": -0.0136596, - "tags": { - "amenity": "post_box", - "ref": "SG8 388" - } -}, -{ - "type": "node", - "id": 559638760, - "lat": 51.5729063, - "lon": -4.0133912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559652225, - "lat": 55.1328784, - "lon": -1.5851484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NE22 5QN", - "ref": "NE22 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559652272, - "lat": 55.1325729, - "lon": -1.5769991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "NE22 5NG", - "ref": "NE22 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559658553, - "lat": 51.9180228, - "lon": -0.1740389, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559674126, - "lat": 51.7530235, - "lon": -3.2762917, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 583", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 559674811, - "lat": 51.2635137, - "lon": 1.1619930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 147", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559731473, - "lat": 53.2271638, - "lon": -1.2090597, - "tags": { - "amenity": "post_box", - "ele": "77", - "ref": "NG20 76" - } -}, -{ - "type": "node", - "id": 559743423, - "lat": 52.5279479, - "lon": -2.1216048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DY3 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559757168, - "lat": 51.9036370, - "lon": -0.2038807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG1 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559764532, - "lat": 52.5523254, - "lon": -2.0805604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WV14", - "ref": "WV14 484", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559767935, - "lat": 51.5841616, - "lon": -0.0343028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559767937, - "lat": 51.5761601, - "lon": -0.0212593, - "tags": { - "addr:street": "Collingwood Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 40D", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 559778323, - "lat": 53.1945492, - "lon": -1.3463580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S44 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 559806296, - "lat": 52.9246520, - "lon": -4.1269580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "mapillary": "730261479236190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL49 17", - "survey:date": "2024-03-01" - } -}, -{ - "type": "node", - "id": 559813088, - "lat": 53.4014342, - "lon": -2.3543070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA14 4", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 559814001, - "lat": 52.5492146, - "lon": -2.0925346, - "tags": { - "amenity": "post_box", - "postal_code": "WV14", - "ref": "WV14 233", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559836093, - "lat": 53.7491946, - "lon": -1.1050740, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO8 41", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 559944637, - "lat": 52.5473051, - "lon": -2.0796923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WV14", - "ref": "WV14 309", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559944662, - "lat": 52.5493346, - "lon": -2.0821408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WV14", - "ref": "WV14 394", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559946127, - "lat": 53.6556921, - "lon": -2.6446900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3716717975122613", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559959982, - "lat": 52.5421981, - "lon": -2.0769137, - "tags": { - "amenity": "post_box", - "postal_code": "WV14", - "ref": "WV14 351", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559959993, - "lat": 52.5398872, - "lon": -2.0713566, - "tags": { - "amenity": "post_box", - "postal_code": "DY4", - "ref": "DY4 115", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 559973719, - "lat": 57.4682785, - "lon": -4.2574018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV3 45D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559985548, - "lat": 57.2143425, - "lon": -5.4206443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV40 18", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559986499, - "lat": 57.2209689, - "lon": -5.4462883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV40 7", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559986517, - "lat": 57.2560981, - "lon": -5.5102719, - "tags": { - "amenity": "post_box", - "ref": "IV40 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559989725, - "lat": 57.0014503, - "lon": -4.3172211, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 12:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH20 29", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559991219, - "lat": 57.0074085, - "lon": -4.2517411, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 11:45; Sa 07:15", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH20 54", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559996618, - "lat": 56.6863504, - "lon": -3.6993506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "PH16 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559997934, - "lat": 51.2257766, - "lon": 1.1970147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 559997942, - "lat": 51.2258388, - "lon": 1.2015004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560006876, - "lat": 51.2407157, - "lon": 1.2889741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT13", - "ref": "CT13 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560006895, - "lat": 51.2503229, - "lon": 1.3053714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560006907, - "lat": 51.2644987, - "lon": 1.2776585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CT13", - "ref": "CT13 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560006925, - "lat": 51.2439322, - "lon": 1.3320832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560031424, - "lat": 56.6563069, - "lon": -3.6706130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH9 63", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 560039932, - "lat": 50.6858488, - "lon": -1.0781658, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO35 126", - "ref:GB:uprn": "10015309708", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/egerton-po35-5aa/000PO35126" - } -}, -{ - "type": "node", - "id": 560042904, - "lat": 50.6878447, - "lon": -1.0849965, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-08", - "check_date:collection_times": "2022-07-08", - "check_date:ref": "2022-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO35 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/foreland-road-po35-5aa/000PO35105" - } -}, -{ - "type": "node", - "id": 560043471, - "lat": 50.6941376, - "lon": -1.0912340, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PO35 27", - "ref:GB:uprn": "10015329567", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/the-point-po35-5aa/0000PO3527" - } -}, -{ - "type": "node", - "id": 560050165, - "lat": 56.5328010, - "lon": -3.5225928, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH1 157", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560050675, - "lat": 56.5136590, - "lon": -3.5292610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 67", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 560086909, - "lat": 54.5503630, - "lon": -6.0065326, - "tags": { - "addr:city": "Belfast", - "addr:housename": "Railway Crossing Dunmurry", - "addr:postcode": "BT17 9SB", - "addr:street": "Kingsway", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT17 454" - } -}, -{ - "type": "node", - "id": 560103486, - "lat": 54.6964635, - "lon": -2.7939032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560103572, - "lat": 54.7387779, - "lon": -2.8561826, - "tags": { - "amenity": "post_box", - "ref": "CA11 27", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560103939, - "lat": 54.7240951, - "lon": -2.7964448, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_wall", - "ref": "CA11 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560105361, - "lat": 54.8056968, - "lon": -2.8325487, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 424", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560105708, - "lat": 54.8320395, - "lon": -2.8797559, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 302", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560105719, - "lat": 54.7988744, - "lon": -2.8589270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 183", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560117458, - "lat": 54.9586792, - "lon": -2.9884117, - "tags": { - "amenity": "post_box", - "ref": "CA6 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560122520, - "lat": 50.4525139, - "lon": -3.6731860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 560124026, - "lat": 54.5581049, - "lon": -5.9904388, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT10 0LL", - "addr:street": "Upper Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT10 559" - } -}, -{ - "type": "node", - "id": 560129644, - "lat": 54.5610627, - "lon": -5.9856390, - "tags": { - "addr:city": "Belfast", - "addr:housename": "Finaghy Crossroads", - "addr:street": "Upper Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BT10 535" - } -}, -{ - "type": "node", - "id": 560136649, - "lat": 54.5641784, - "lon": -5.9791322, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT10 0GY", - "addr:street": "Upper Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT10 459" - } -}, -{ - "type": "node", - "id": 560137178, - "lat": 55.9857704, - "lon": -4.5829590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "G83 34D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560137179, - "lat": 55.9843757, - "lon": -4.5809914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "G83 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "source_ref": "survey" - } -}, -{ - "type": "node", - "id": 560145227, - "lat": 51.5699913, - "lon": 0.6501125, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 560168317, - "lat": 54.5679215, - "lon": -5.9684944, - "tags": { - "addr:city": "Belfast", - "addr:housename": "King's Hall", - "addr:postcode": "BT9 6GU", - "addr:street": "Upper Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT9 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 560168321, - "lat": 54.5699633, - "lon": -5.9645283, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT9 7GX", - "addr:street": "Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT9 234", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 560168329, - "lat": 54.5735040, - "lon": -5.9580988, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "360", - "addr:street": "Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "drive_through": "no", - "note": "Collection time updated 16/09/17. RM plaque dated 26/06/2017.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT9 587" - } -}, -{ - "type": "node", - "id": 560168335, - "lat": 54.5764940, - "lon": -5.9553092, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT9 7GQ", - "addr:street": "Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT9 160" - } -}, -{ - "type": "node", - "id": 560169246, - "lat": 54.5783349, - "lon": -5.9516041, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "268", - "addr:street": "Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT9 595" - } -}, -{ - "type": "node", - "id": 560171859, - "lat": 54.5818740, - "lon": -5.9474072, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT9 7EJ", - "addr:street": "Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BT9 25" - } -}, -{ - "type": "node", - "id": 560171870, - "lat": 54.5855378, - "lon": -5.9410612, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT9 7AB", - "addr:street": "Lisburn Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BT9 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 560354514, - "lat": 51.4874873, - "lon": -3.6765278, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 560374554, - "lat": 51.4541068, - "lon": -2.5850407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BS2", - "ref": "BS2 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 560430911, - "lat": 50.6697282, - "lon": -1.1486093, - "tags": { - "amenity": "post_box", - "check_date": "2018-06-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PO36 93", - "ref:GB:uprn": "10015448770", - "website": "https://www.royalmail.com/services-near-you/postbox/aylett-close-po36-9py/0000PO3693" - } -}, -{ - "type": "node", - "id": 560430913, - "lat": 50.6653065, - "lon": -1.1327893, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-04", - "collection_times": "Mo-Fr 14:30, Sa 10:30", - "mapillary": "584832646511396", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-20" - } -}, -{ - "type": "node", - "id": 560430914, - "lat": 50.6700138, - "lon": -1.1329099, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-04", - "collection_times": "Mo-Fr 14:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO36 35", - "ref:GB:uprn": "10015373888", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/yaverland-manor-po36-0aa/0000PO3635" - } -}, -{ - "type": "node", - "id": 560430916, - "lat": 50.6760299, - "lon": -1.0987957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO35 66", - "ref:GB:uprn": "10015326303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/hillway-po35-5qa/0000PO3566" - } -}, -{ - "type": "node", - "id": 560430919, - "lat": 50.6776561, - "lon": -1.0933897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO35 84", - "ref:GB:uprn": "10015390560", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/bembridge-school-po35-5aa/0000PO3584" - } -}, -{ - "type": "node", - "id": 560451526, - "lat": 51.5455226, - "lon": -0.1800041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NW6 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 560539130, - "lat": 51.1194235, - "lon": -0.1933890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "name": "Town Mead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560565518, - "lat": 52.4426778, - "lon": -1.9271274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "No reference number", - "ref": "B29 455", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 560794721, - "lat": 55.8181193, - "lon": -4.2020912, - "tags": { - "amenity": "post_box", - "postal_code": "G73", - "ref": "G73 510" - } -}, -{ - "type": "node", - "id": 560806958, - "lat": 55.8647659, - "lon": -4.2652069, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-19", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "postal_code": "G2", - "ref": "G2 850" - } -}, -{ - "type": "node", - "id": 560806971, - "lat": 55.8642192, - "lon": -4.2600843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:15", - "postal_code": "G2", - "ref": "G2 85" - } -}, -{ - "type": "node", - "id": 560806974, - "lat": 55.8657364, - "lon": -4.2600734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "G2", - "ref": "G2 169", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 560806976, - "lat": 55.8672009, - "lon": -4.2596995, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "G3", - "ref": "G3 97D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 560810769, - "lat": 54.0847876, - "lon": -0.2047419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "YO16 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560810781, - "lat": 54.0896429, - "lon": -0.2088340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO16 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560967614, - "lat": 51.5191352, - "lon": -0.1154919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "WC1R 29D;WC1R 229D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 560985627, - "lat": 55.5863606, - "lon": -4.4860158, - "tags": { - "accuracy": "12 feet", - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 561086769, - "lat": 57.4801894, - "lon": -4.1969041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 96", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561090192, - "lat": 57.4756676, - "lon": -4.2027166, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IV2 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561094305, - "lat": 57.4686834, - "lon": -4.2097082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 10D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561108000, - "lat": 57.4600046, - "lon": -4.2140662, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IV2 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561126849, - "lat": 57.4576462, - "lon": -4.2098705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 170D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561131951, - "lat": 57.4610363, - "lon": -4.2323902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 17D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561132108, - "lat": 57.4550207, - "lon": -4.2436374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV2 108", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561265994, - "lat": 54.0992540, - "lon": -0.2038037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO16 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561266046, - "lat": 54.1107573, - "lon": -0.1679123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO15 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 561270911, - "lat": 51.2144113, - "lon": -0.6266876, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU3 271" - } -}, -{ - "type": "node", - "id": 561270940, - "lat": 51.2104917, - "lon": -0.6208602, - "tags": { - "amenity": "post_box", - "ref": "GU3 17" - } -}, -{ - "type": "node", - "id": 561270988, - "lat": 51.2207990, - "lon": -0.6301162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU3 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 561317765, - "lat": 52.1870890, - "lon": 0.9854182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8058D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 561317766, - "lat": 52.1890908, - "lon": 0.9789053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 561428021, - "lat": 53.8161301, - "lon": -1.6740808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 978" - } -}, -{ - "type": "node", - "id": 561428184, - "lat": 53.8249765, - "lon": -1.6693744, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS13 831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 561589293, - "lat": 50.5237471, - "lon": -3.8199110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 561607315, - "lat": 50.5059389, - "lon": -3.8394332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 561607347, - "lat": 50.5111905, - "lon": -3.8263018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 561675538, - "lat": 50.5417093, - "lon": -3.8886085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 503", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 561675659, - "lat": 50.5434766, - "lon": -3.8753834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 561892247, - "lat": 50.6826627, - "lon": -1.3310131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "mapillary": "570276944218049", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-28", - "website": "https://www.royalmail.com/services-near-you/postbox/plaish-old-forge-po30-3jb/0000PO3058" - } -}, -{ - "type": "node", - "id": 561892257, - "lat": 50.6932169, - "lon": -1.3176559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "140343568762799", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PO30 99D", - "ref:GB:uprn": "10015412661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/priory-road-po30-1ae/0000PO3099" - } -}, -{ - "type": "node", - "id": 561892263, - "lat": 50.6946350, - "lon": -1.3130294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "227301209309194", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 127", - "ref:GB:uprn": "10015827122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-31", - "website": "https://www.royalmail.com/services-near-you/postbox/kinchington-road-po30-1ae/000PO30127" - } -}, -{ - "type": "node", - "id": 561892323, - "lat": 50.7067847, - "lon": -1.2999701, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 358", - "ref:GB:uprn": "10015400392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/hunnyhill-po30-1ae/000PO30358" - } -}, -{ - "type": "node", - "id": 561892333, - "lat": 50.7096403, - "lon": -1.2982391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "mapillary": "737400656935533", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 125", - "ref:GB:uprn": "10015283257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-08-20", - "website": "https://www.royalmail.com/services-near-you/postbox/daish-way-po30-1ag/000PO30125" - } -}, -{ - "type": "node", - "id": 561892341, - "lat": 50.7050945, - "lon": -1.2939662, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 123", - "ref:GB:uprn": "10015289881", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/riverway-po30-1ae/000PO30123" - } -}, -{ - "type": "node", - "id": 562900934, - "lat": 50.8479178, - "lon": -1.2211485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "name": "Wild Ridings", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 562901866, - "lat": 50.8476360, - "lon": -1.2146650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "name": "Greyshott Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 562902301, - "lat": 50.8512020, - "lon": -1.2093894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO14 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 562909389, - "lat": 50.8484673, - "lon": -1.2066241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 562939523, - "lat": 52.9859062, - "lon": -1.1914109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "ele": "42.663818", - "post_box:type": "pillar", - "ref": "NG6 317", - "ref:GB:uprn": "10015446139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 563047612, - "lat": 52.9892035, - "lon": -1.1999802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "54.680298", - "post_box:type": "pillar", - "ref": "NG6 93D", - "ref:GB:uprn": "10015296114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563138537, - "lat": 55.9196801, - "lon": -3.0404462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "EH21", - "ref": "EH21 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563138540, - "lat": 55.9305404, - "lon": -3.0608768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EH21", - "ref": "EH21 352", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563180842, - "lat": 52.1949420, - "lon": -0.2981002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 563204780, - "lat": 55.6231250, - "lon": -3.0611161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-23", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EH44", - "ref": "EH44 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563259833, - "lat": 51.5113653, - "lon": -0.8841038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG9 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 563261208, - "lat": 51.5053262, - "lon": -0.8835049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "RG9 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 563283514, - "lat": 52.6015228, - "lon": 1.2361843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR4 422D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 563291850, - "lat": 52.4170758, - "lon": -1.9686560, - "tags": { - "amenity": "post_box", - "ref": "B31 481" - } -}, -{ - "type": "node", - "id": 563291913, - "lat": 52.4198443, - "lon": -1.9222803, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B30 710" - } -}, -{ - "type": "node", - "id": 563707612, - "lat": 52.7377980, - "lon": -2.7178730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY1 196" - } -}, -{ - "type": "node", - "id": 563791702, - "lat": 51.4063581, - "lon": 0.5000764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME2", - "ref": "ME2 298" - } -}, -{ - "type": "node", - "id": 563791709, - "lat": 51.4063890, - "lon": 0.5064815, - "tags": { - "amenity": "post_box", - "postal_code": "ME2", - "ref": "ME2 351", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563818930, - "lat": 52.1080151, - "lon": 1.2438289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 563938962, - "lat": 51.1874019, - "lon": -0.6505295, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU7 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563939007, - "lat": 51.1959169, - "lon": -0.6502600, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "last_checked": "2021-05-29", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 563939242, - "lat": 51.1990513, - "lon": -0.6408884, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU7 43" - } -}, -{ - "type": "node", - "id": 563971018, - "lat": 50.6461230, - "lon": -1.1814966, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-11-21", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "mapillary": "190708563314204", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 136", - "ref:GB:uprn": "10015391195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/morrisons-po36-9lt/000PO36136" - } -}, -{ - "type": "node", - "id": 564046060, - "lat": 52.1257221, - "lon": -2.2181433, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR5 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564046125, - "lat": 52.1342838, - "lon": -2.2040569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "post_box:type": "lamp", - "ref": "WR5 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564046139, - "lat": 52.1673580, - "lon": -2.2133150, - "tags": { - "amenity": "post_box", - "ref": "WR5 273" - } -}, -{ - "type": "node", - "id": 564046141, - "lat": 52.1684188, - "lon": -2.2031953, - "tags": { - "amenity": "post_box", - "ref": "WR5 413" - } -}, -{ - "type": "node", - "id": 564046143, - "lat": 52.1717076, - "lon": -2.2055822, - "tags": { - "amenity": "post_box", - "ref": "WR5 95" - } -}, -{ - "type": "node", - "id": 564046146, - "lat": 52.1772848, - "lon": -2.2139301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR5 3" - } -}, -{ - "type": "node", - "id": 564046149, - "lat": 52.1393357, - "lon": -2.1907136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR5 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564046153, - "lat": 52.1390534, - "lon": -2.1740211, - "tags": { - "amenity": "post_box", - "ref": "WR5 182" - } -}, -{ - "type": "node", - "id": 564046156, - "lat": 52.1619004, - "lon": -2.1959215, - "tags": { - "amenity": "post_box", - "fixme": "Seems to have modern label on now. Need to schedule visit and get information.", - "note": "Ref part of label not visible, but probably is this one", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR5 162", - "source": "observation;bing", - "source:ref": "conjecture;foi_list" - } -}, -{ - "type": "node", - "id": 564073073, - "lat": 52.9458177, - "lon": -1.2446262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 667D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS; survey" - } -}, -{ - "type": "node", - "id": 564076779, - "lat": 52.9409572, - "lon": -1.2417926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184748, - "lat": 51.2146369, - "lon": 1.2941251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184755, - "lat": 51.2105325, - "lon": 1.2982098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184763, - "lat": 51.2268920, - "lon": 1.3140550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184831, - "lat": 51.2142129, - "lon": 1.3587542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 18", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184876, - "lat": 51.2293844, - "lon": 1.3459130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184883, - "lat": 51.2364941, - "lon": 1.3451631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184897, - "lat": 51.2362598, - "lon": 1.3556164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "note": "Appears to be mounted in wall, but is supported by pedestal underneath!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 73", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184911, - "lat": 51.2168448, - "lon": 1.3690896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184915, - "lat": 51.2438427, - "lon": 1.2996715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 86", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564184971, - "lat": 51.2419608, - "lon": 1.3077813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "CT13", - "ref": "CT13 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564185002, - "lat": 51.2551827, - "lon": 1.3259330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 71", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564185006, - "lat": 51.2528963, - "lon": 1.3376246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 48", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564185008, - "lat": 51.2576590, - "lon": 1.3371817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT14", - "ref": "CT14 52", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564185038, - "lat": 51.2560415, - "lon": 1.3453656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT14", - "ref": "CT14 70", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564289329, - "lat": 52.6735347, - "lon": 0.1807484, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 564297976, - "lat": 50.7336245, - "lon": -1.8489625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 106D", - "ref:GB:uprn": "10015337331", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 564309045, - "lat": 52.6658463, - "lon": 0.1725987, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 564309052, - "lat": 52.6676021, - "lon": 0.1732767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 564309100, - "lat": 52.6719859, - "lon": 0.1705672, - "tags": { - "amenity": "post_box", - "ref": "PE13 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564369410, - "lat": 52.6848975, - "lon": 0.1284278, - "tags": { - "amenity": "post_box", - "ref": "PE13 202" - } -}, -{ - "type": "node", - "id": 564369495, - "lat": 52.6624612, - "lon": 0.1435621, - "tags": { - "amenity": "post_box", - "ref": "PE13 107" - } -}, -{ - "type": "node", - "id": 564369527, - "lat": 52.6595138, - "lon": 0.1488801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE13 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564369542, - "lat": 52.6638986, - "lon": 0.1522695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE13 5" - } -}, -{ - "type": "node", - "id": 564369627, - "lat": 52.6660988, - "lon": 0.1574432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE13 65", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 564369695, - "lat": 52.6756548, - "lon": 0.1363017, - "tags": { - "amenity": "post_box", - "ref": "PE13 57" - } -}, -{ - "type": "node", - "id": 564369736, - "lat": 52.6738457, - "lon": 0.1447589, - "tags": { - "amenity": "post_box", - "ref": "PE13 183" - } -}, -{ - "type": "node", - "id": 564369759, - "lat": 52.6704098, - "lon": 0.1501702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE13 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 564369778, - "lat": 52.6714461, - "lon": 0.1537856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE13 62" - } -}, -{ - "type": "node", - "id": 564369845, - "lat": 52.6784608, - "lon": 0.1461764, - "tags": { - "amenity": "post_box", - "ref": "PE13 149" - } -}, -{ - "type": "node", - "id": 564369857, - "lat": 52.6754625, - "lon": 0.1506504, - "tags": { - "amenity": "post_box", - "ref": "PE13 8" - } -}, -{ - "type": "node", - "id": 564369882, - "lat": 52.6815300, - "lon": 0.1367216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE13 100" - } -}, -{ - "type": "node", - "id": 564369942, - "lat": 52.6694320, - "lon": 0.1558409, - "tags": { - "amenity": "post_box", - "note": "Inside Asda entrance", - "operator": "Royal Mail", - "ref": "PE13 212" - } -}, -{ - "type": "node", - "id": 564672808, - "lat": 54.7809257, - "lon": -1.6638137, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/4985270", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 219" - } -}, -{ - "type": "node", - "id": 564696242, - "lat": 54.7775405, - "lon": -1.6459613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 105" - } -}, -{ - "type": "node", - "id": 564696244, - "lat": 54.7787999, - "lon": -1.6475305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 83" - } -}, -{ - "type": "node", - "id": 564734032, - "lat": 55.7690397, - "lon": -4.0780595, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 564744062, - "lat": 51.4759508, - "lon": -0.1809423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 564751734, - "lat": 53.7536312, - "lon": -0.4272875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 564773756, - "lat": 51.1961910, - "lon": -0.6064589, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "GU7 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 564773808, - "lat": 51.1973716, - "lon": -0.6114992, - "tags": { - "amenity": "post_box", - "ref": "GU7 103" - } -}, -{ - "type": "node", - "id": 564819372, - "lat": 51.1866151, - "lon": -0.5781784, - "tags": { - "amenity": "post_box", - "ref": "GU7 119" - } -}, -{ - "type": "node", - "id": 564819437, - "lat": 51.1930122, - "lon": -0.5742814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU5 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564819474, - "lat": 51.1891668, - "lon": -0.5677066, - "tags": { - "amenity": "post_box", - "ref": "GU5 34" - } -}, -{ - "type": "node", - "id": 564819525, - "lat": 51.1982203, - "lon": -0.5625793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU5 216D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 564825527, - "lat": 52.6045483, - "lon": -1.1811590, - "tags": { - "amenity": "post_box", - "ref": "LE3 122" - } -}, -{ - "type": "node", - "id": 564827940, - "lat": 51.2002423, - "lon": -0.5651292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GU5 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 564837393, - "lat": 52.4298982, - "lon": -1.9220943, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-04", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "ref": "B30 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "estimation" - } -}, -{ - "type": "node", - "id": 564876797, - "lat": 52.4237118, - "lon": -1.9333961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "B30 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564893564, - "lat": 51.3673036, - "lon": 1.0903637, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 253", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 564893565, - "lat": 51.3642079, - "lon": 1.1025031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564893566, - "lat": 51.3664293, - "lon": 1.1042869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564893567, - "lat": 51.3691176, - "lon": 1.1027776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564904758, - "lat": 51.3575388, - "lon": 1.1046943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564904762, - "lat": 51.3583864, - "lon": 1.1076474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564909635, - "lat": 52.1886652, - "lon": 1.4541286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP17 4660", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 564909645, - "lat": 52.1735609, - "lon": 1.4220735, - "tags": { - "amenity": "post_box", - "ref": "IP13 6297" - } -}, -{ - "type": "node", - "id": 564916838, - "lat": 51.1454920, - "lon": -0.9887507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU34 76D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 564922563, - "lat": 52.2192371, - "lon": 1.4841380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP17 8205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564922566, - "lat": 52.2158685, - "lon": 1.4880869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP17 4638D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564922567, - "lat": 52.2149503, - "lon": 1.4859304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP17 4668D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 564923959, - "lat": 51.5225915, - "lon": -0.1625889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 69;NW1 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 69 and NW1 333" - } -}, -{ - "type": "node", - "id": 564951003, - "lat": 51.3606730, - "lon": 1.1183640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 397", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 397D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 564951005, - "lat": 51.3623364, - "lon": 1.1095396, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 269", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 564951027, - "lat": 51.3626080, - "lon": 1.1212370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CT6 399", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564951028, - "lat": 51.3712211, - "lon": 1.1214656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 154", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564951034, - "lat": 51.3712630, - "lon": 1.1275210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564951036, - "lat": 51.3712620, - "lon": 1.1275121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "CT6", - "ref": "CT6 268", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564951058, - "lat": 51.3675178, - "lon": 1.1328974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564951090, - "lat": 51.3701552, - "lon": 1.1475760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 564951097, - "lat": 51.3675867, - "lon": 1.1567289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565005392, - "lat": 54.5215367, - "lon": -6.0266682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565018312, - "lat": 51.3430312, - "lon": 1.1205808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The previous edit says that this postbox is a pillar but as at Thursday 13.07.2023 it is a lamp postbox.", - "old_ref": "CT6 35", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 35D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-14" - } -}, -{ - "type": "node", - "id": 565018372, - "lat": 51.3434459, - "lon": 1.1283517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT6 280", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-22" - } -}, -{ - "type": "node", - "id": 565018413, - "lat": 51.3501100, - "lon": 1.1153810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565018420, - "lat": 51.3558990, - "lon": 1.1409430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565018476, - "lat": 51.3608862, - "lon": 1.1740252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565018676, - "lat": 51.3679160, - "lon": 1.1747093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT6", - "ref": "CT6 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565049169, - "lat": 51.9797329, - "lon": -1.9089352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL54 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 565072660, - "lat": 51.3719200, - "lon": 1.1322760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "note": "Right hand aperture blocked, out of use.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CT6 2341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565073629, - "lat": 51.7123281, - "lon": -1.2200880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ref": "OX4 713" - } -}, -{ - "type": "node", - "id": 565073744, - "lat": 51.6705724, - "lon": -1.0881875, - "tags": { - "amenity": "post_box", - "ref": "OX44 771" - } -}, -{ - "type": "node", - "id": 565164526, - "lat": 53.1927688, - "lon": -0.5721448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 482" - } -}, -{ - "type": "node", - "id": 565188424, - "lat": 50.6954043, - "lon": -1.3031029, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 36D", - "ref:GB:uprn": "10015299963", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/castle-road-bottom-po30-1ae/0000PO3036" - } -}, -{ - "type": "node", - "id": 565188433, - "lat": 50.7001153, - "lon": -1.2972638, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lugley-street-po30-1ae/000PO30138" - } -}, -{ - "type": "node", - "id": 565189378, - "lat": 50.6918044, - "lon": -1.2542387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "mapillary": "792890002363435", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 60", - "ref:GB:uprn": "10015402664", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-27", - "website": "https://www.royalmail.com/services-near-you/postbox/little-east-standen-po30-2pa/0000PO3060" - } -}, -{ - "type": "node", - "id": 565193253, - "lat": 50.6915759, - "lon": -1.3125116, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 140", - "ref:GB:uprn": "10015818197", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/carisbrooke-post-office-po30-1pa/000PO30140" - } -}, -{ - "type": "node", - "id": 565193254, - "lat": 50.6929623, - "lon": -1.3055022, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 19D", - "ref:GB:uprn": "10015821803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/castle-road-middle-po30-1ae/0000PO3019" - } -}, -{ - "type": "node", - "id": 565247081, - "lat": 52.1922597, - "lon": -1.9895577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WR7 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 565252280, - "lat": 52.2119934, - "lon": -1.9868151, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "WR7 430", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 565254451, - "lat": 52.1788829, - "lon": -2.0103717, - "tags": { - "amenity": "post_box", - "fixme": "Not convinced this box is still there.", - "ref": "WR10 220", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 565254455, - "lat": 52.2087621, - "lon": -1.9808202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR7 419", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 565345691, - "lat": 51.4194880, - "lon": -0.9737494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG2 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565366787, - "lat": 51.9630707, - "lon": -1.8735327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "GL54", - "ref": "GL54 215", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 565366797, - "lat": 51.9712312, - "lon": -1.8736200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "ref no obscured by sticker", - "post_box:type": "wall", - "ref": "GL54 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 565429823, - "lat": 50.7976899, - "lon": -1.1071706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "note": "From passing this location I understand that this postbox has been removed. If somebody could confirm this.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO1 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565429825, - "lat": 50.6459988, - "lon": -1.3537235, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/shorwell-post-office-po30-4aa/0000PO3085" - } -}, -{ - "type": "node", - "id": 565429827, - "lat": 50.7243430, - "lon": -1.1238540, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO34 20D", - "ref:GB:uprn": "10015462434", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/springvale-po33-1aa/0000PO3420" - } -}, -{ - "type": "node", - "id": 565429828, - "lat": 50.6880786, - "lon": -1.3202630, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 89D", - "ref:GB:uprn": "10015389587", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/clatterford-road-po30-1bx/0000PO3089" - } -}, -{ - "type": "node", - "id": 565429829, - "lat": 50.7265370, - "lon": -1.2195026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-05-13", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1036448337259947", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 115D", - "ref:GB:uprn": "10015317142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/kite-hill-po33-4aa/000PO33115" - } -}, -{ - "type": "node", - "id": 565429830, - "lat": 50.7286912, - "lon": -1.1755023, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1608394026176785", - "name": "Treefields", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-31", - "website": "https://www.royalmail.com/services-near-you/postbox/binstead-road-po33-2aa/0000PO3379" - } -}, -{ - "type": "node", - "id": 565429832, - "lat": 50.7304730, - "lon": -1.1625443, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 1012", - "ref:GB:uprn": "10015824360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/ryde-post-office-po33-2ad/00PO331012" - } -}, -{ - "type": "node", - "id": 565470142, - "lat": 51.5129587, - "lon": -0.1319456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-08-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1D 114;W1D 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565474114, - "lat": 51.8775123, - "lon": 0.5534417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 100D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 565502440, - "lat": 50.9818674, - "lon": -1.3708807, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 665D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 565502457, - "lat": 50.9881210, - "lon": -1.3737601, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "name": "Fryern Arcade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565502462, - "lat": 50.9914228, - "lon": -1.3764278, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Merdon Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565502464, - "lat": 50.9972793, - "lon": -1.3599187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Winchester Road (N)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO53 493D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565516873, - "lat": 51.1488773, - "lon": -0.9790014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU34 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565516942, - "lat": 51.1498183, - "lon": -0.9761461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU34 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 565567910, - "lat": 52.1637705, - "lon": -2.0162729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR10 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565568824, - "lat": 52.6663642, - "lon": 0.1807885, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 565568845, - "lat": 52.6605246, - "lon": 0.1928773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 565568918, - "lat": 52.6709082, - "lon": 0.1873586, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 565569526, - "lat": 53.1886919, - "lon": -0.5768902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 548" - } -}, -{ - "type": "node", - "id": 565572153, - "lat": 52.1603526, - "lon": -2.0175350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR10 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 565667316, - "lat": 51.0769507, - "lon": 1.1788031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "ref": "CT20 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 565719963, - "lat": 57.4158808, - "lon": -7.3374381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HS7 53" - } -}, -{ - "type": "node", - "id": 565732137, - "lat": 57.4228530, - "lon": -5.4287892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 15:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV54 262", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 565732141, - "lat": 57.4002381, - "lon": -5.4913112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:type": "pillar", - "ref": "IV54 258", - "royal_cypher": "scottish_crown", - "source": "estimate", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 565732147, - "lat": 57.4335018, - "lon": -5.8141554, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IV54 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 565734617, - "lat": 50.7198479, - "lon": -1.1491566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 48", - "ref:GB:uprn": "10015346124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/high-park-road-po33-1aa/0000PO3348" - } -}, -{ - "type": "node", - "id": 565736151, - "lat": 50.6987744, - "lon": -1.1085199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 71", - "ref:GB:uprn": "10015390580", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/st-helens-green-po35-5aa/0000PO3371" - } -}, -{ - "type": "node", - "id": 565788229, - "lat": 54.0403681, - "lon": -1.0265706, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-20", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO32 439", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 566138186, - "lat": 53.0196902, - "lon": -2.1628576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 481" - } -}, -{ - "type": "node", - "id": 566184255, - "lat": 50.8615057, - "lon": -3.3813291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "name": "Kingsmill Estate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "EX15 1BS", - "ref": "EX15 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 566185626, - "lat": 54.9396903, - "lon": -1.6342819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE11 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 566218824, - "lat": 52.6761113, - "lon": 0.1672294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 566218898, - "lat": 52.6758274, - "lon": 0.1743904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 566218951, - "lat": 52.6781223, - "lon": 0.1704843, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 566248006, - "lat": 52.6464964, - "lon": 0.1358204, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 566248066, - "lat": 52.6590031, - "lon": 0.1495582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "PE14 213" - } -}, -{ - "type": "node", - "id": 566248125, - "lat": 52.6543940, - "lon": 0.1576756, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 566248126, - "lat": 52.6544073, - "lon": 0.1576105, - "tags": { - "amenity": "post_box", - "note": "franked mail" - } -}, -{ - "type": "node", - "id": 566258937, - "lat": 52.6689509, - "lon": 0.1659026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 566356368, - "lat": 53.9599026, - "lon": -1.0918937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 19:00; Sa 14:00", - "drive_through": "no", - "name": "York Mail Centre", - "note": "LH slot 1st class, RH slot 2nd class - both have identical ref YO26 1001", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "YO26 1001", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 566357595, - "lat": 53.8348641, - "lon": -1.0582579, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO19 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 566358001, - "lat": 53.9283794, - "lon": -1.0700173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO19 420D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 566358588, - "lat": 53.9790938, - "lon": -0.9724463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO19 51" - } -}, -{ - "type": "node", - "id": 566358669, - "lat": 53.9891270, - "lon": -0.9716463, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 566359838, - "lat": 53.8900571, - "lon": -1.0455600, - "tags": { - "amenity": "post_box", - "name": "Deighton Post Box", - "post_box:type": "wall", - "ref": "YO19 153", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 566383578, - "lat": 50.9621398, - "lon": -1.3056263, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "83.000000", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO50 692D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 566410110, - "lat": 50.7939890, - "lon": -1.0477681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 146", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 566483015, - "lat": 50.6941321, - "lon": -1.3066746, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/wellington-road-po30-1ae/00000PO301" - } -}, -{ - "type": "node", - "id": 566483016, - "lat": 50.6969393, - "lon": -1.2952165, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 22", - "ref:GB:uprn": "10015386463", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/upper-st-james-po30-1ae/0000PO3022" - } -}, -{ - "type": "node", - "id": 566604698, - "lat": 50.8556501, - "lon": -1.1984620, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO15 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 566649818, - "lat": 51.5129191, - "lon": -0.2654685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 40D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 567014873, - "lat": 50.6634883, - "lon": -1.1360981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2016-05-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 14:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 140", - "ref:GB:uprn": "10015322847", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-12", - "website": "https://www.royalmail.com/services-near-you/postbox/culver-way-po36-0aa/000PO36140", - "wikimedia_commons": "File:Yaverland, postbox № PO36 140, Culver Way - geograph.org.uk - 3904103.jpg" - } -}, -{ - "type": "node", - "id": 567014874, - "lat": 50.6831661, - "lon": -1.0795505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1585384088966164", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PO35 103", - "ref:GB:uprn": "10015290803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-20", - "website": "https://www.royalmail.com/services-near-you/postbox/howgate-lane-po35-5aa/000PO35103" - } -}, -{ - "type": "node", - "id": 567053899, - "lat": 54.5717348, - "lon": -1.3195890, - "tags": { - "amenity": "post_box", - "ref": "TS19 596" - } -}, -{ - "type": "node", - "id": 567054389, - "lat": 50.5289572, - "lon": -3.6214749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 567055759, - "lat": 50.5369880, - "lon": -3.6267151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 567149762, - "lat": 51.6093594, - "lon": -0.5601953, - "tags": { - "amenity": "post_box", - "ref": "SL9 190" - } -}, -{ - "type": "node", - "id": 567174378, - "lat": 55.8715370, - "lon": -4.2903036, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G12 271", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 567285689, - "lat": 50.7421994, - "lon": -1.8788365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH9 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 567375220, - "lat": 51.4936665, - "lon": -0.2794614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "W4 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 567383908, - "lat": 50.6824071, - "lon": -3.4438261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX3 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 567384383, - "lat": 50.6644260, - "lon": -3.4350534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX8 132", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 567515187, - "lat": 53.1960197, - "lon": -0.5684562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 182" - } -}, -{ - "type": "node", - "id": 567532932, - "lat": 51.5313000, - "lon": -0.9041004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "RG9 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 567598078, - "lat": 51.4122350, - "lon": 0.0233140, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 567670102, - "lat": 54.0776207, - "lon": -0.9542763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "ele": "44.5865479", - "post_box:type": "lamp", - "ref": "YO60 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 567811433, - "lat": 51.3600286, - "lon": 1.1029300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT6", - "ref": "CT6 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 567811451, - "lat": 51.3393840, - "lon": 1.2389195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-09-16", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT7", - "ref": "CT7 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 567811454, - "lat": 51.3833625, - "lon": 1.3427575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT8", - "ref": "CT8 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-09-11" - } -}, -{ - "type": "node", - "id": 567841002, - "lat": 50.7816082, - "lon": -3.3951832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "colour": "red", - "direction": "SW", - "name": "Westwood | Broadclyst", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 3DH", - "ref": "EX5 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "observation" - } -}, -{ - "type": "node", - "id": 567915205, - "lat": 53.8560938, - "lon": -0.4335073, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 567944139, - "lat": 51.8824409, - "lon": -2.1720179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 567944140, - "lat": 51.8799043, - "lon": -2.1683207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GL3 153D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 568037962, - "lat": 51.4962470, - "lon": -0.2561294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "W4 69" - } -}, -{ - "type": "node", - "id": 568316119, - "lat": 52.6052583, - "lon": -1.1757828, - "tags": { - "amenity": "post_box", - "ref": "LE3 629" - } -}, -{ - "type": "node", - "id": 568318108, - "lat": 50.6544529, - "lon": -1.2108629, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 14:45; Sa 11:15", - "name": "Winford Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 92", - "ref:GB:uprn": "10015366984", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/winford-cross-po36-0lt/0000PO3692" - } -}, -{ - "type": "node", - "id": 568337039, - "lat": 51.6130627, - "lon": -0.4846267, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "UB9 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey_2016-08-29" - } -}, -{ - "type": "node", - "id": 568386395, - "lat": 51.6211056, - "lon": -0.4329195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "HA6 503" - } -}, -{ - "type": "node", - "id": 568414643, - "lat": 52.7630406, - "lon": -2.6824005, - "tags": { - "amenity": "post_box", - "ref": "SY4 116" - } -}, -{ - "type": "node", - "id": 568425244, - "lat": 52.7443053, - "lon": -2.7193802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY1 763" - } -}, -{ - "type": "node", - "id": 568433187, - "lat": 55.8502950, - "lon": -4.5881356, - "tags": { - "amenity": "post_box", - "note": "ref from Dracos, not survey. needs checking", - "ref": "PA11 34" - } -}, -{ - "type": "node", - "id": 568436712, - "lat": 50.7754584, - "lon": 0.2701137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN21 774D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 568446352, - "lat": 52.7362355, - "lon": -4.0233947, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 568468753, - "lat": 51.4525177, - "lon": -1.0462962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG31 286D" - } -}, -{ - "type": "node", - "id": 568470742, - "lat": 51.2731596, - "lon": -2.2110028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "Franked Mail Only", - "ref": "BA13 45" - } -}, -{ - "type": "node", - "id": 568470783, - "lat": 51.2731059, - "lon": -2.2110457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "BA13 38" - } -}, -{ - "type": "node", - "id": 568542895, - "lat": 51.4962408, - "lon": -0.2702804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W4 11", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 568542898, - "lat": 51.4982326, - "lon": -0.2695777, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 50D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 568542900, - "lat": 51.4948566, - "lon": -0.2665027, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W4 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 568544273, - "lat": 51.4954471, - "lon": -0.2598792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 568544274, - "lat": 51.4987746, - "lon": -0.2426446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "ref": "W12 4", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 568548610, - "lat": 51.3452222, - "lon": 0.5920650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME8 392D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 568567321, - "lat": 51.4982278, - "lon": -0.2461464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "W6 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 568604708, - "lat": 52.7443568, - "lon": -3.9045669, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 568630635, - "lat": 52.6285776, - "lon": -1.9671125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "WS3", - "ref": "WS3 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 569044661, - "lat": 51.4006145, - "lon": -0.2657578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 569073546, - "lat": 51.3269739, - "lon": -0.6387606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 569083049, - "lat": 51.6448284, - "lon": -4.0353972, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 569100724, - "lat": 52.6854933, - "lon": -1.2622566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE67 631" - } -}, -{ - "type": "node", - "id": 569103278, - "lat": 51.3117950, - "lon": -0.6244131, - "tags": { - "amenity": "post_box", - "check_date": "2019-07-09", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 569396805, - "lat": 53.6539846, - "lon": -2.6326011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "mapillary": "297961371943558", - "note": "Gold for Bradley Wiggins 2012 Olympics", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 569426751, - "lat": 53.6543340, - "lon": -2.6541598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR7 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 569429006, - "lat": 53.6457889, - "lon": -2.6530202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "299243155138666", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 96", - "survey:date": "2022-10-18" - } -}, -{ - "type": "node", - "id": 569461608, - "lat": 53.6505175, - "lon": -2.6498572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 25" - } -}, -{ - "type": "node", - "id": 569474684, - "lat": 53.6510485, - "lon": -2.6384525, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 569478733, - "lat": 53.6465406, - "lon": -2.6346879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR7 29" - } -}, -{ - "type": "node", - "id": 569483471, - "lat": 53.6486451, - "lon": -2.6364079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 28" - } -}, -{ - "type": "node", - "id": 569485513, - "lat": 53.6513156, - "lon": -2.6335548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "PR7 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 569514498, - "lat": 51.4919401, - "lon": -0.2801618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 569524524, - "lat": 52.6347532, - "lon": 0.1911063, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 569524573, - "lat": 52.6448416, - "lon": 0.1845781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 34" - } -}, -{ - "type": "node", - "id": 569524623, - "lat": 52.6439533, - "lon": 0.1960398, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 569524648, - "lat": 52.6286970, - "lon": 0.2104092, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 569524693, - "lat": 52.6353070, - "lon": 0.2129232, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 569524724, - "lat": 52.6368892, - "lon": 0.2001685, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 569646341, - "lat": 55.6490650, - "lon": -3.1932697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "EH45", - "ref": "EH45 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 569646348, - "lat": 55.6478100, - "lon": -3.1905951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "180306573978816", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "EH45", - "ref": "EH45 53", - "source": "survey", - "survey:date": "2021-04-17" - } -}, -{ - "type": "node", - "id": 569646425, - "lat": 55.6010965, - "lon": -3.0636917, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "EH44", - "ref": "EH44 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 569646465, - "lat": 55.6157362, - "lon": -3.0662939, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH44 153", - "source": "survey" - } -}, -{ - "type": "node", - "id": 569646606, - "lat": 55.6198077, - "lon": -3.0614665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EH44", - "ref": "EH44 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 569646627, - "lat": 55.6194191, - "lon": -3.0570740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "EH44", - "ref": "EH44 47", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 569675869, - "lat": 52.7802023, - "lon": -4.0965941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 569675973, - "lat": 53.1306428, - "lon": -1.8454581, - "tags": { - "amenity": "post_box", - "ele": "215", - "post_box:type": "lamp", - "ref": "SK17 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 569700963, - "lat": 51.5403719, - "lon": -0.1576294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 45D" - } -}, -{ - "type": "node", - "id": 569732042, - "lat": 52.4298497, - "lon": -1.9348439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "post_box:type": "wall", - "ref": "B30 56" - } -}, -{ - "type": "node", - "id": 569783707, - "lat": 53.1254786, - "lon": -1.8507315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "ele": "213.5369873", - "fixme": "does this exists?", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 877", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 570244079, - "lat": 53.0988207, - "lon": -1.1077596, - "tags": { - "amenity": "post_box", - "ele": "91.2100830", - "post_box:type": "pillar", - "ref": "NG21 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 570264063, - "lat": 51.1118699, - "lon": 0.0342330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 570354193, - "lat": 50.7004118, - "lon": -1.2901601, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 23", - "ref:GB:uprn": "10015399576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/police-station-po30-1ae/0000PO3023" - } -}, -{ - "type": "node", - "id": 570354196, - "lat": 50.7000796, - "lon": -1.2852532, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 104D", - "ref:GB:uprn": "10015343648", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/barton-school-po30-1ae/000PO30104" - } -}, -{ - "type": "node", - "id": 570691839, - "lat": 50.7184494, - "lon": -1.1292141, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO33 38", - "ref:GB:uprn": "10015322860", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/uplands-cross-po33-1aa/0000PO3338" - } -}, -{ - "type": "node", - "id": 570694030, - "lat": 50.7186525, - "lon": -1.1114667, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO34 70D", - "ref:GB:uprn": "10015366196", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/upper-seaview-lane-po34-5aa/0000PO3470" - } -}, -{ - "type": "node", - "id": 570699974, - "lat": 50.9217420, - "lon": -1.4329053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 570756278, - "lat": 53.6786550, - "lon": -2.6359651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2542953312679551", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR6 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 570783413, - "lat": 53.6606018, - "lon": -2.6527504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 122" - } -}, -{ - "type": "node", - "id": 570792710, - "lat": 53.6614537, - "lon": -2.6452080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 30" - } -}, -{ - "type": "node", - "id": 570898200, - "lat": 51.9006623, - "lon": -0.7140556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 65", - "source": "survey" - } -}, -{ - "type": "node", - "id": 570952063, - "lat": 52.6076258, - "lon": -1.9727087, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS3", - "ref": "WS3 261D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 571084197, - "lat": 52.4635677, - "lon": -2.0500490, - "tags": { - "amenity": "post_box", - "postal_code": "B62", - "ref": "B62 1317", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 571113533, - "lat": 53.6657700, - "lon": -2.6321443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 38" - } -}, -{ - "type": "node", - "id": 571137510, - "lat": 50.7892264, - "lon": -3.2100640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX14 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571179628, - "lat": 55.1348927, - "lon": -1.5738539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 5HT", - "ref": "NE22 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571179711, - "lat": 55.1385544, - "lon": -1.5726435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE22 5HB", - "ref": "NE22 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571186042, - "lat": 52.4820333, - "lon": -2.0629937, - "tags": { - "amenity": "post_box", - "postal_code": "B64", - "ref": "B64 1128", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 571195542, - "lat": 55.8128452, - "lon": -4.0899220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15" - } -}, -{ - "type": "node", - "id": 571209000, - "lat": 52.8969971, - "lon": -4.0849596, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 571267951, - "lat": 50.4335043, - "lon": -3.6734298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 571276823, - "lat": 52.6601166, - "lon": 0.1702806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE13 105" - } -}, -{ - "type": "node", - "id": 571404679, - "lat": 53.6538096, - "lon": -2.6310358, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-27", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR7 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571487370, - "lat": 53.6989672, - "lon": -2.6376091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571488700, - "lat": 52.6191473, - "lon": -1.1844368, - "tags": { - "amenity": "post_box", - "ref": "LE3 383" - } -}, -{ - "type": "node", - "id": 571521104, - "lat": 51.4718077, - "lon": -0.4880796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "indoor": "yes", - "level": "0", - "post_box:type": "pillar", - "ref": "TW6 1150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571521109, - "lat": 51.4712898, - "lon": -0.4880769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "indoor": "yes", - "level": "0", - "post_box:type": "pillar", - "ref": "TW6 1152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571565813, - "lat": 51.3944293, - "lon": -2.3879497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA1 198" - } -}, -{ - "type": "node", - "id": 571565814, - "lat": 51.3913499, - "lon": -2.3831231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA1 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 571565815, - "lat": 51.3893680, - "lon": -2.3783772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA1 58", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 571565816, - "lat": 51.3835503, - "lon": -2.3686578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA1 70D" - } -}, -{ - "type": "node", - "id": 571565817, - "lat": 51.3814562, - "lon": -2.3605279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA1 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 571565819, - "lat": 51.3834558, - "lon": -2.3600925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-30", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BA1 500;BA1 1500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 571565820, - "lat": 51.3858337, - "lon": -2.3596713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "6982505981813119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA1 61", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 571565822, - "lat": 51.3855378, - "lon": -2.3638258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BA1 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 571770852, - "lat": 52.4786555, - "lon": -2.0685338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B64", - "ref": "B64 1130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 571773899, - "lat": 52.4642827, - "lon": -2.0558782, - "tags": { - "amenity": "post_box", - "ref": "B64 121", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 571952785, - "lat": 53.7791159, - "lon": -0.6524509, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 572098371, - "lat": 52.1102792, - "lon": 0.2351319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572107509, - "lat": 52.1164207, - "lon": 0.2381683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB21 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572345769, - "lat": 51.2302687, - "lon": -2.1935638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 572345775, - "lat": 51.2177915, - "lon": -2.1999460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "BA12 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 572345781, - "lat": 51.2060085, - "lon": -2.1955402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 115" - } -}, -{ - "type": "node", - "id": 572345785, - "lat": 51.2032385, - "lon": -2.1991380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 80" - } -}, -{ - "type": "node", - "id": 572345789, - "lat": 51.2001352, - "lon": -2.2025057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "old_ref": "BA12 109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572345795, - "lat": 51.2023757, - "lon": -2.2087724, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "last_checked": "2020-08-26", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572345799, - "lat": 51.1980037, - "lon": -2.1890476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "old_ref": "BA12 89", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA12 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572345802, - "lat": 51.1998575, - "lon": -2.1975083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "last_checked": "2020-08-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA12 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572345807, - "lat": 51.1966739, - "lon": -2.1951978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "old_ref": "BA12 5", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 572345812, - "lat": 51.2052903, - "lon": -2.1872462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1374247116294977", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA12 88" - } -}, -{ - "type": "node", - "id": 572345815, - "lat": 51.2040738, - "lon": -2.1932271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 20" - } -}, -{ - "type": "node", - "id": 572345818, - "lat": 51.2018973, - "lon": -2.1922453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 26" - } -}, -{ - "type": "node", - "id": 572345826, - "lat": 51.2056332, - "lon": -2.1845160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "326535189100128", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA12 17", - "survey:date": "2020-11-04" - } -}, -{ - "type": "node", - "id": 572359282, - "lat": 51.1932127, - "lon": -2.1539104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA12 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 572359284, - "lat": 51.1887010, - "lon": -2.1326157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA12 3", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 572518014, - "lat": 52.1066261, - "lon": -2.2940781, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 09:45", - "description": "Lamp box embedded in curved wall surrounding houses, behind tree.", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 572655035, - "lat": 51.1825281, - "lon": -2.1094684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 572655036, - "lat": 51.1759168, - "lon": -2.0902625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 27" - } -}, -{ - "type": "node", - "id": 572655037, - "lat": 51.1802595, - "lon": -2.0914440, - "tags": { - "amenity": "post_box", - "mapillary": "588296835421232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA12 86", - "survey:date": "2021-04-20" - } -}, -{ - "type": "node", - "id": 572655038, - "lat": 51.1684660, - "lon": -2.0784764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA12 31" - } -}, -{ - "type": "node", - "id": 572655039, - "lat": 51.1570506, - "lon": -2.0440450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BA12 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 572655040, - "lat": 51.1603036, - "lon": -2.0551005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BA12 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 572655041, - "lat": 51.1946112, - "lon": -2.0127968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA12 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 573257006, - "lat": 52.0553722, - "lon": -0.8245959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK12 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 573390077, - "lat": 51.8764579, - "lon": 0.9460534, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 573392115, - "lat": 53.8190038, - "lon": -0.6149660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO43 351", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 573545709, - "lat": 51.1412323, - "lon": -1.9658282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 58" - } -}, -{ - "type": "node", - "id": 573545711, - "lat": 51.1421421, - "lon": -2.0159781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA12 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 573545713, - "lat": 51.1443180, - "lon": -2.0289775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 44" - } -}, -{ - "type": "node", - "id": 573545714, - "lat": 51.1519631, - "lon": -2.0590178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA12 28" - } -}, -{ - "type": "node", - "id": 573545715, - "lat": 51.1568140, - "lon": -2.0715758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA12 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 573545716, - "lat": 51.1639185, - "lon": -2.0917170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 34", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 573545717, - "lat": 51.1690055, - "lon": -2.1223451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA12 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 573545718, - "lat": 51.1727825, - "lon": -2.1382147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA12 35" - } -}, -{ - "type": "node", - "id": 573563409, - "lat": 51.6208698, - "lon": -0.3766189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "WD19 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564911, - "lat": 51.1789861, - "lon": -2.1467175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564912, - "lat": 51.1665434, - "lon": -2.1884485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "808833296481190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA12 43", - "survey:date": "2021-08-07" - } -}, -{ - "type": "node", - "id": 573564913, - "lat": 51.1787973, - "lon": -2.1978792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 40" - } -}, -{ - "type": "node", - "id": 573564914, - "lat": 51.1614191, - "lon": -2.1911982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564915, - "lat": 51.1472836, - "lon": -2.1979368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA12 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564916, - "lat": 51.1362605, - "lon": -2.2076283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564917, - "lat": 51.1324757, - "lon": -2.2150508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA12 56" - } -}, -{ - "type": "node", - "id": 573564918, - "lat": 51.1343148, - "lon": -2.2208883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564919, - "lat": 51.1275643, - "lon": -2.3018428, - "tags": { - "amenity": "post_box", - "mapillary": "544716056914630", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA12 59" - } -}, -{ - "type": "node", - "id": 573564920, - "lat": 51.1229014, - "lon": -2.3198316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564921, - "lat": 51.1207699, - "lon": -2.3263244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA12 62" - } -}, -{ - "type": "node", - "id": 573564922, - "lat": 51.1732834, - "lon": -2.2728441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564923, - "lat": 51.1713403, - "lon": -2.2582803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573564924, - "lat": 51.1975243, - "lon": -2.3213466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "BA11 12", - "survey:date": "2022-11-28", - "wikimedia_commons": "File:West Woodlands, postbox № BA11 12 - geograph.org.uk - 4059038.jpg" - } -}, -{ - "type": "node", - "id": 573564925, - "lat": 51.2003383, - "lon": -2.2988462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 573564926, - "lat": 51.2056190, - "lon": -2.2831372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573597817, - "lat": 51.3929188, - "lon": -2.3883335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA1 183" - } -}, -{ - "type": "node", - "id": 573597821, - "lat": 51.3891124, - "lon": -2.3893687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA1 50" - } -}, -{ - "type": "node", - "id": 573597823, - "lat": 51.3917918, - "lon": -2.3907569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Expected reference is BA1 299", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "probably_wrong:ref": "BA12 299" - } -}, -{ - "type": "node", - "id": 573597826, - "lat": 51.3797545, - "lon": -2.3598879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BA1 1002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 573599284, - "lat": 53.1815532, - "lon": -1.3873287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "S42 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 573756395, - "lat": 50.6780433, - "lon": -2.2298017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 146", - "ref:GB:uprn": "10015351812", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 573756396, - "lat": 50.6768968, - "lon": -2.2455140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "DT2 504P" - } -}, -{ - "type": "node", - "id": 573756399, - "lat": 50.6796528, - "lon": -2.2188145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "BH20 81", - "ref:GB:uprn": "10015384345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 574279037, - "lat": 51.4510079, - "lon": -1.0322332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "CHURCH END", - "drive_through": "no", - "mapillary": "245943267512739", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "RG30 18D", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 574306840, - "lat": 51.5283069, - "lon": -2.0121708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 574321275, - "lat": 50.6721361, - "lon": -1.3022524, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 63", - "ref:GB:uprn": "10015393616", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/whitecroft-po30-3ea/0000PO3063" - } -}, -{ - "type": "node", - "id": 574321277, - "lat": 50.6729602, - "lon": -1.2847838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "mapillary": "861587618859530", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-12-09", - "website": "https://www.royalmail.com/services-near-you/postbox/blackwater-po30-3ea/0000PO3075" - } -}, -{ - "type": "node", - "id": 574460930, - "lat": 53.4919013, - "lon": -3.0256481, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 574762556, - "lat": 52.5630429, - "lon": -2.0077524, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS10", - "ref": "WS10 184", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 574774612, - "lat": 51.8531359, - "lon": -2.2053275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "ref": "GL4 401", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774626, - "lat": 51.8459613, - "lon": -2.2007103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "GL4 156", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774637, - "lat": 51.8488152, - "lon": -2.1995548, - "tags": { - "amenity": "post_box", - "ref": "GL4 154", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774642, - "lat": 51.8515068, - "lon": -2.1992855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "ref": "GL4 143", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774656, - "lat": 51.8475725, - "lon": -2.2144113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "mapillary": "980104712820065", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL4 134", - "source": "survey", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 574774677, - "lat": 51.8592314, - "lon": -2.2125757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "GL4 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774699, - "lat": 51.8532277, - "lon": -2.2202761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "mapillary": "1862993333870585", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL4 80", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 574774711, - "lat": 51.8598106, - "lon": -2.2076428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GL4 760", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774723, - "lat": 51.8466839, - "lon": -2.1991871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "GL4 409", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574774732, - "lat": 51.8474076, - "lon": -2.2091257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "GL4 406", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574797209, - "lat": 51.8258547, - "lon": -2.1939492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 08:45", - "mapillary": "374072580656299", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL4 132", - "source": "survey", - "survey:date": "2020-08-01" - } -}, -{ - "type": "node", - "id": 574797213, - "lat": 51.8343817, - "lon": -2.1941005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "post_box:type": "lamp", - "ref": "GL4 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574815437, - "lat": 55.9781324, - "lon": -3.1931769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "782032139126244", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 33", - "survey:date": "2020-05-05" - } -}, -{ - "type": "node", - "id": 574838913, - "lat": 55.1389812, - "lon": -1.5687402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "postal_code": "NE22 5LY", - "ref": "NE22 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 574851675, - "lat": 51.2906082, - "lon": 0.9886791, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 574852567, - "lat": 55.0200236, - "lon": -3.5810857, - "tags": { - "amenity": "post_box", - "ref": "DG1 39" - } -}, -{ - "type": "node", - "id": 575043363, - "lat": 51.2616024, - "lon": 0.6244589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "postal_code": "ME17", - "ref": "ME17 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043435, - "lat": 51.2468231, - "lon": 0.6564610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME17", - "ref": "ME17 291", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043453, - "lat": 51.2587551, - "lon": 0.6465758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "ME17", - "ref": "ME17 316", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043485, - "lat": 51.2629613, - "lon": 0.6365689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "postal_code": "ME17", - "ref": "ME17 276", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043499, - "lat": 51.2659248, - "lon": 0.6414054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "ME17", - "ref": "ME17 4", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043565, - "lat": 51.2449551, - "lon": 0.6626781, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 214", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043677, - "lat": 51.2422869, - "lon": 0.6748981, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 164", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043692, - "lat": 51.2448370, - "lon": 0.6859041, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 143", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043705, - "lat": 51.2451725, - "lon": 0.6933424, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043741, - "lat": 51.2952956, - "lon": 0.6686760, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043835, - "lat": 51.2844586, - "lon": 0.6954707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:design": "penfold", - "post_box:type": "pillar", - "postal_code": "ME9", - "ref": "ME9 68", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575043889, - "lat": 51.2994671, - "lon": 0.6872657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "postal_code": "ME9", - "ref": "ME9 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044004, - "lat": 51.3117502, - "lon": 0.6965282, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044012, - "lat": 51.3156353, - "lon": 0.6985129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "ME9", - "ref": "ME9 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044032, - "lat": 51.2393191, - "lon": 0.7065088, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 367", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044044, - "lat": 51.2359178, - "lon": 0.7142776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME17", - "ref": "ME17 275D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044091, - "lat": 51.2394677, - "lon": 0.7147755, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 381", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044109, - "lat": 51.2366854, - "lon": 0.7219432, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 294", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044120, - "lat": 51.2833754, - "lon": 0.7115032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "wall", - "postal_code": "ME9", - "ref": "ME9 73", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044140, - "lat": 51.2449644, - "lon": 0.7600220, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 114", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044142, - "lat": 51.2713236, - "lon": 0.7507693, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 44", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044280, - "lat": 51.3051546, - "lon": 0.7132740, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 72", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044309, - "lat": 51.2899518, - "lon": 0.7461792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 575044334, - "lat": 51.3103659, - "lon": 0.7295945, - "tags": { - "amenity": "post_box", - "fixme": "Double-check ref. Second half not easily readable.", - "postal_code": "ME9", - "ref": "ME9 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575044395, - "lat": 51.2895506, - "lon": 0.7748018, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575096374, - "lat": 51.2424841, - "lon": 0.6974163, - "tags": { - "amenity": "post_box", - "postal_code": "ME17", - "ref": "ME17 202", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575100309, - "lat": 51.3797631, - "lon": -2.3943917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BA2 1022" - } -}, -{ - "type": "node", - "id": 575100310, - "lat": 51.3805173, - "lon": -2.3962853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 235" - } -}, -{ - "type": "node", - "id": 575100311, - "lat": 51.3811913, - "lon": -2.4046621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 285" - } -}, -{ - "type": "node", - "id": 575100312, - "lat": 51.3764106, - "lon": -2.4040999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 1029" - } -}, -{ - "type": "node", - "id": 575100313, - "lat": 51.3751774, - "lon": -2.4007776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 308" - } -}, -{ - "type": "node", - "id": 575100314, - "lat": 51.3716082, - "lon": -2.4008119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 351" - } -}, -{ - "type": "node", - "id": 575100315, - "lat": 51.3720077, - "lon": -2.3965544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "BA2 1036" - } -}, -{ - "type": "node", - "id": 575100316, - "lat": 51.3771191, - "lon": -2.3890028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 86" - } -}, -{ - "type": "node", - "id": 575100317, - "lat": 51.3775931, - "lon": -2.3823407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 575100318, - "lat": 51.3707381, - "lon": -2.3858290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 575100319, - "lat": 51.3679850, - "lon": -2.3873407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 1027", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 575113112, - "lat": 51.3671683, - "lon": -2.3835240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 341" - } -}, -{ - "type": "node", - "id": 575113119, - "lat": 51.3648836, - "lon": -2.3928354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 181" - } -}, -{ - "type": "node", - "id": 575113122, - "lat": 51.3627694, - "lon": -2.3867237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 13", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 575113124, - "lat": 51.3629318, - "lon": -2.3830918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 259" - } -}, -{ - "type": "node", - "id": 575113125, - "lat": 51.3575721, - "lon": -2.3825140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 325" - } -}, -{ - "type": "node", - "id": 575113126, - "lat": 51.3600214, - "lon": -2.3787756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 1035" - } -}, -{ - "type": "node", - "id": 575120070, - "lat": 50.5501400, - "lon": -3.5886392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 575127912, - "lat": 50.5463027, - "lon": -3.5963063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ12 249;TQ12 2490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 575131317, - "lat": 51.3675249, - "lon": -2.3689564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 220" - } -}, -{ - "type": "node", - "id": 575131318, - "lat": 51.3682582, - "lon": -2.3713705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 41", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 575131321, - "lat": 51.3697913, - "lon": -2.3695468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 277", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 575131323, - "lat": 51.3713089, - "lon": -2.3749501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 282", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 575131326, - "lat": 51.3380218, - "lon": -2.4239863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 47" - } -}, -{ - "type": "node", - "id": 575131328, - "lat": 51.3720694, - "lon": -2.3800523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 575131331, - "lat": 51.3598325, - "lon": -2.3729853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "This postbox appears to be blocked up on mapillary images", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA2 77" - } -}, -{ - "type": "node", - "id": 575131333, - "lat": 51.3756762, - "lon": -2.3768154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA2 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 575131336, - "lat": 51.3335536, - "lon": -2.4392458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 575144065, - "lat": 51.3306870, - "lon": -2.4500638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 280" - } -}, -{ - "type": "node", - "id": 575144066, - "lat": 51.3261268, - "lon": -2.4600474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA2 193" - } -}, -{ - "type": "node", - "id": 575144067, - "lat": 51.3319282, - "lon": -2.4797086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 192" - } -}, -{ - "type": "node", - "id": 575144069, - "lat": 51.3225000, - "lon": -2.4798229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "BA2 310" - } -}, -{ - "type": "node", - "id": 575144076, - "lat": 51.3285335, - "lon": -2.4906641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 203" - } -}, -{ - "type": "node", - "id": 575144078, - "lat": 51.3262965, - "lon": -2.4767957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BA2 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 575144081, - "lat": 51.3181142, - "lon": -2.4711284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 26" - } -}, -{ - "type": "node", - "id": 575144083, - "lat": 51.3148356, - "lon": -2.4535255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 40" - } -}, -{ - "type": "node", - "id": 575144087, - "lat": 51.3195554, - "lon": -2.4590183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 95" - } -}, -{ - "type": "node", - "id": 575144089, - "lat": 51.3208471, - "lon": -2.4470967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 344" - } -}, -{ - "type": "node", - "id": 575144092, - "lat": 51.3154798, - "lon": -2.4274065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 179", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 575144094, - "lat": 51.3173372, - "lon": -2.4333732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 321" - } -}, -{ - "type": "node", - "id": 575148680, - "lat": 51.3830033, - "lon": 1.3491001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148684, - "lat": 51.3828504, - "lon": 1.3556027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148687, - "lat": 51.3853550, - "lon": 1.3519318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148692, - "lat": 51.3859939, - "lon": 1.4051314, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "postal_code": "CT9", - "ref": "CT9 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148698, - "lat": 51.3917025, - "lon": 1.4000864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148701, - "lat": 51.3736259, - "lon": 1.4270043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148704, - "lat": 51.3873841, - "lon": 1.4149556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CT9", - "ref": "CT9 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575148715, - "lat": 51.3879840, - "lon": 1.4356296, - "tags": { - "amenity": "post_box", - "postal_code": "CT10", - "ref": "CT10 125", - "source": "survey" - } -}, -{ - "type": "node", - "id": 575152618, - "lat": 51.3114254, - "lon": -2.4307520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 303" - } -}, -{ - "type": "node", - "id": 575152619, - "lat": 51.3336949, - "lon": -2.4092814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 237" - } -}, -{ - "type": "node", - "id": 575152622, - "lat": 51.3326747, - "lon": -2.4171450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 6" - } -}, -{ - "type": "node", - "id": 575152623, - "lat": 51.3434883, - "lon": -2.4053286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA2 113" - } -}, -{ - "type": "node", - "id": 575152625, - "lat": 51.3372607, - "lon": -2.4809404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BA2 297" - } -}, -{ - "type": "node", - "id": 575152626, - "lat": 51.3451568, - "lon": -2.4895315, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 575152627, - "lat": 51.3430237, - "lon": -2.4939217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 305", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 575152629, - "lat": 51.3394419, - "lon": -2.5035882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA2 134" - } -}, -{ - "type": "node", - "id": 575152630, - "lat": 51.3343668, - "lon": -2.5096571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 135" - } -}, -{ - "type": "node", - "id": 575157247, - "lat": 53.5551713, - "lon": -2.8984567, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 575164772, - "lat": 53.6470328, - "lon": -1.8044693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 575188960, - "lat": 53.1682690, - "lon": -2.4647806, - "tags": { - "amenity": "post_box", - "ref": "CW10 157" - } -}, -{ - "type": "node", - "id": 575993856, - "lat": 52.5682224, - "lon": -1.4845571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CV13 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source_ref": "survey" - } -}, -{ - "type": "node", - "id": 576478950, - "lat": 54.1715064, - "lon": -2.5928245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 151", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576497918, - "lat": 54.1859239, - "lon": -2.5467421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 16:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 161", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576601584, - "lat": 54.2653799, - "lon": -2.6940282, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA8 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576623669, - "lat": 54.2958730, - "lon": -2.6843319, - "tags": { - "amenity": "post_box", - "ref": "LA8 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576654628, - "lat": 54.3629212, - "lon": -2.5925977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "image": "https://www.geograph.org.uk/photo/6820782", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA8 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-15" - } -}, -{ - "type": "node", - "id": 576657311, - "lat": 54.0404383, - "lon": -1.1888435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 576679367, - "lat": 54.4269386, - "lon": -2.5964387, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 153", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576703797, - "lat": 51.6940901, - "lon": -0.3856905, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD25 156D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 576717474, - "lat": 51.0647824, - "lon": -1.3157718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Jewry Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 221", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576720471, - "lat": 54.4400689, - "lon": -2.5929689, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 576771100, - "lat": 54.9075341, - "lon": -2.9526679, - "tags": { - "amenity": "post_box", - "ref": "CA3 158", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577131416, - "lat": 55.5968994, - "lon": -3.7815002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML11 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 577179222, - "lat": 51.5180391, - "lon": -0.1442108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-11-23", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "apertures marked \"stamped\" and \"franked\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 30;W1B 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577179375, - "lat": 51.5199850, - "lon": -0.1446494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 37;W1B 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 577188261, - "lat": 55.5830312, - "lon": -3.8225095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "ML11 66D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577203598, - "lat": 50.6597242, - "lon": -3.3029322, - "tags": { - "amenity": "post_box", - "check_date": "2023-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX9 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 577212763, - "lat": 51.6697295, - "lon": -1.2832124, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 577230594, - "lat": 51.4621495, - "lon": -2.5975782, - "tags": { - "amenity": "post_box", - "ref": "BS6 300" - } -}, -{ - "type": "node", - "id": 577236756, - "lat": 51.3175886, - "lon": -0.6455708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU24 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 577268431, - "lat": 50.8340221, - "lon": -1.3834811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "ref": "SO45 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 577268432, - "lat": 50.8228430, - "lon": -1.3441723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 577271121, - "lat": 50.9822440, - "lon": -1.3835348, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-07", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 417", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 577271558, - "lat": 51.8539623, - "lon": -0.6649737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577273871, - "lat": 56.1450337, - "lon": -4.3797624, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "FK8", - "ref": "FK8 183", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 577319856, - "lat": 51.0891456, - "lon": 1.1498539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 158", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577319858, - "lat": 51.0898214, - "lon": 1.1541402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CT19", - "ref": "CT19 166D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577319966, - "lat": 51.2709193, - "lon": 1.2146829, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "lastcheck": "2023-03-04", - "mapillary": "885014589099765", - "old_ref": "CT3 124", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 577321993, - "lat": 51.3382130, - "lon": 1.3909044, - "tags": { - "amenity": "post_box", - "postal_code": "CT11", - "ref": "CT11 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577321994, - "lat": 51.3344965, - "lon": 1.3981061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577321995, - "lat": 51.3294128, - "lon": 1.4133283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577325939, - "lat": 51.3453856, - "lon": 1.4373170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "CT10", - "ref": "CT10 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577325943, - "lat": 51.3490819, - "lon": 1.4395216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "CT10", - "ref": "CT10 101", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577325946, - "lat": 51.3705582, - "lon": 1.4191522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577325951, - "lat": 51.3525645, - "lon": 1.4397847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577325954, - "lat": 51.3827415, - "lon": 1.4419248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT10 100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577329824, - "lat": 56.4138611, - "lon": -3.0357765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DD6 241", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 577338624, - "lat": 53.1454331, - "lon": -2.4056338, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW11 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 577380877, - "lat": 51.4340171, - "lon": -0.3297007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 101D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 577497489, - "lat": 51.3878839, - "lon": 1.3827288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 2111;CT9 2222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 577584635, - "lat": 51.1917176, - "lon": -0.2111841, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 577612248, - "lat": 51.1135929, - "lon": -0.1847341, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "This postbox is inside County Mall shopping centre on the ground floor.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "plastic_pillar", - "post_box:type": "pillar", - "ref": "RH10 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 577819115, - "lat": 51.1800243, - "lon": -0.1953579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "218114830778420", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RH2 220", - "source": "Photo P141-0890 on 2011-03-07", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 577820915, - "lat": 51.1728290, - "lon": -0.1916047, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH6 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-0202;survey" - } -}, -{ - "type": "node", - "id": 577822607, - "lat": 51.1675830, - "lon": -0.1877880, - "tags": { - "amenity": "post_box", - "ref": "RH6 211", - "source": "Photo P142-0206" - } -}, -{ - "type": "node", - "id": 577855037, - "lat": 51.1701120, - "lon": -0.1671350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "556028872526570", - "name": "Russells Crescent", - "old_ref": "RH6 209", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 579470856, - "lat": 52.4887790, - "lon": -2.0559998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B65 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "visual survey;estimate" - } -}, -{ - "type": "node", - "id": 579470857, - "lat": 52.4941851, - "lon": -2.0640779, - "tags": { - "amenity": "post_box", - "ref": "B65 1114", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 579494622, - "lat": 53.1795009, - "lon": -4.0605581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 579507542, - "lat": 53.6634723, - "lon": -2.6323572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 579586365, - "lat": 55.8965048, - "lon": -4.1910006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:45", - "ref": "G33 1517", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 579718109, - "lat": 55.8664948, - "lon": -4.1839471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G33 1038", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 579795691, - "lat": 51.3134981, - "lon": -2.2159315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 580010911, - "lat": 50.9111515, - "lon": -3.4662978, - "tags": { - "amenity": "post_box", - "ref": "EX16 145" - } -}, -{ - "type": "node", - "id": 580181955, - "lat": 50.6995134, - "lon": -1.2970146, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 1371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po30-1ae/00PO301371" - } -}, -{ - "type": "node", - "id": 580181958, - "lat": 50.6984272, - "lon": -1.2950622, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO30 5101", - "ref:GB:uprn": "10015677050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/bus-station-left-po30-1ae/00PO305101" - } -}, -{ - "type": "node", - "id": 580823108, - "lat": 51.4843141, - "lon": -3.2394209, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 580834328, - "lat": 51.4789222, - "lon": -3.2571378, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 580845220, - "lat": 51.4800046, - "lon": -3.2397356, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 580859786, - "lat": 51.2414155, - "lon": -0.2053455, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "London Road", - "old_ref": "RH2 128", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 581000091, - "lat": 50.7204428, - "lon": -1.1709559, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/upton-road-po33-2aa/000PO33111" - } -}, -{ - "type": "node", - "id": 581000108, - "lat": 50.7246171, - "lon": -1.1646254, - "tags": { - "addr:housenumber": "16", - "addr:street": "Well Street", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 33", - "ref:GB:uprn": "10015315886", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/swanmore-road-po33-1aa/0000PO3333" - } -}, -{ - "type": "node", - "id": 581000110, - "lat": 50.7272432, - "lon": -1.1661676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "name": "Fiveways", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 5", - "ref:GB:uprn": "10015392859", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/fiveways-po33-1aa/00000PO335" - } -}, -{ - "type": "node", - "id": 581059954, - "lat": 51.4785991, - "lon": -3.1794334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "name": "Westgate Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581061311, - "lat": 52.6141194, - "lon": -1.1794315, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE3 658", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 581074485, - "lat": 52.8735988, - "lon": -1.7601679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DE6 131" - } -}, -{ - "type": "node", - "id": 581074486, - "lat": 52.8596183, - "lon": -1.7491329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 298", - "source:location": "survey" - } -}, -{ - "type": "node", - "id": 581074487, - "lat": 52.8533531, - "lon": -1.7702564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 121" - } -}, -{ - "type": "node", - "id": 581074488, - "lat": 52.8593391, - "lon": -1.7889236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 591" - } -}, -{ - "type": "node", - "id": 581074489, - "lat": 52.8607465, - "lon": -1.7703984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 291" - } -}, -{ - "type": "node", - "id": 581074490, - "lat": 52.8856942, - "lon": -1.7470194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 39" - } -}, -{ - "type": "node", - "id": 581074491, - "lat": 52.8858111, - "lon": -1.7621861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 274" - } -}, -{ - "type": "node", - "id": 581074492, - "lat": 52.8980641, - "lon": -1.7677300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE6 354" - } -}, -{ - "type": "node", - "id": 581076139, - "lat": 52.6099395, - "lon": -1.1780846, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE3 627", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 581076414, - "lat": 52.8971821, - "lon": -1.7979239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 179" - } -}, -{ - "type": "node", - "id": 581076415, - "lat": 52.9017041, - "lon": -1.8170471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 545" - } -}, -{ - "type": "node", - "id": 581076416, - "lat": 52.9006084, - "lon": -1.8245503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 579" - } -}, -{ - "type": "node", - "id": 581076417, - "lat": 52.9042255, - "lon": -1.8246894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE6 523" - } -}, -{ - "type": "node", - "id": 581076418, - "lat": 52.9072305, - "lon": -1.8279952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 632" - } -}, -{ - "type": "node", - "id": 581089320, - "lat": 52.9050918, - "lon": -1.8289835, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 802" - } -}, -{ - "type": "node", - "id": 581089323, - "lat": 52.9140135, - "lon": -1.7969792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581089327, - "lat": 52.9167458, - "lon": -1.7600468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 318" - } -}, -{ - "type": "node", - "id": 581089329, - "lat": 52.9187165, - "lon": -1.7328781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 41" - } -}, -{ - "type": "node", - "id": 581089332, - "lat": 52.9172278, - "lon": -1.7388425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581089335, - "lat": 52.9351758, - "lon": -1.7564430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 883" - } -}, -{ - "type": "node", - "id": 581101716, - "lat": 52.9393245, - "lon": -1.8004382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DE6 828", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581101720, - "lat": 52.9403122, - "lon": -1.7545660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE6 884" - } -}, -{ - "type": "node", - "id": 581101725, - "lat": 52.9595705, - "lon": -1.7242342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 839", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 581101730, - "lat": 52.9440511, - "lon": -1.7239773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE6 838", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 581101736, - "lat": 52.9601567, - "lon": -1.7016794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 218" - } -}, -{ - "type": "node", - "id": 581101745, - "lat": 52.9694896, - "lon": -1.7534139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 892" - } -}, -{ - "type": "node", - "id": 581101750, - "lat": 52.9703740, - "lon": -1.7859681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 882" - } -}, -{ - "type": "node", - "id": 581101754, - "lat": 52.9666628, - "lon": -1.8037348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 830", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581101756, - "lat": 52.9677584, - "lon": -1.7788726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 855" - } -}, -{ - "type": "node", - "id": 581290396, - "lat": 50.8116475, - "lon": -1.3265397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 581374945, - "lat": 52.9779374, - "lon": -1.8154530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 811" - } -}, -{ - "type": "node", - "id": 581374946, - "lat": 52.9811086, - "lon": -1.8249502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 822" - } -}, -{ - "type": "node", - "id": 581374947, - "lat": 52.9873418, - "lon": -1.8277436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 890" - } -}, -{ - "type": "node", - "id": 581374948, - "lat": 53.0026371, - "lon": -1.8424168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 812" - } -}, -{ - "type": "node", - "id": 581374949, - "lat": 53.0262715, - "lon": -1.8379761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 880" - } -}, -{ - "type": "node", - "id": 581374950, - "lat": 53.0117588, - "lon": -1.8103441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 874" - } -}, -{ - "type": "node", - "id": 581374951, - "lat": 53.0085833, - "lon": -1.7578929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "109101548174593", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE6 819", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 581374952, - "lat": 52.9999915, - "lon": -1.7818798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 818" - } -}, -{ - "type": "node", - "id": 581374953, - "lat": 52.9936146, - "lon": -1.8002253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 851" - } -}, -{ - "type": "node", - "id": 581375572, - "lat": 52.9876519, - "lon": -1.7755262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 837", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581375573, - "lat": 53.0010608, - "lon": -1.7672403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 821" - } -}, -{ - "type": "node", - "id": 581375574, - "lat": 53.0068554, - "lon": -1.7680230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 834" - } -}, -{ - "type": "node", - "id": 581375575, - "lat": 53.0120915, - "lon": -1.7727918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 810" - } -}, -{ - "type": "node", - "id": 581375577, - "lat": 53.0010700, - "lon": -1.7532887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 817" - } -}, -{ - "type": "node", - "id": 581375578, - "lat": 52.9813122, - "lon": -1.7320552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 878" - } -}, -{ - "type": "node", - "id": 581375579, - "lat": 52.9790109, - "lon": -1.7268799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 846" - } -}, -{ - "type": "node", - "id": 581375580, - "lat": 52.9906460, - "lon": -1.7036157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE6 842", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581375581, - "lat": 53.0030083, - "lon": -1.7113287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 860" - } -}, -{ - "type": "node", - "id": 581375582, - "lat": 52.9974438, - "lon": -1.6997837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 870" - } -}, -{ - "type": "node", - "id": 581377234, - "lat": 52.9899335, - "lon": -1.6864649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 826" - } -}, -{ - "type": "node", - "id": 581377235, - "lat": 53.0062854, - "lon": -1.7135922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 1354" - } -}, -{ - "type": "node", - "id": 581377236, - "lat": 52.9711143, - "lon": -1.6754581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 532" - } -}, -{ - "type": "node", - "id": 581377237, - "lat": 52.9553308, - "lon": -1.6615496, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581377238, - "lat": 52.9473157, - "lon": -1.6619057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 491" - } -}, -{ - "type": "node", - "id": 581377239, - "lat": 52.9344853, - "lon": -1.6756691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 203" - } -}, -{ - "type": "node", - "id": 581377240, - "lat": 52.9268846, - "lon": -1.6617021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 187" - } -}, -{ - "type": "node", - "id": 581377241, - "lat": 52.9107145, - "lon": -1.6511719, - "tags": { - "amenity": "post_box", - "geograph:id": "4914665", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:detail": "Geograph" - } -}, -{ - "type": "node", - "id": 581377242, - "lat": 52.8994083, - "lon": -1.6530656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 224", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 581377243, - "lat": 52.9165420, - "lon": -1.6228812, - "tags": { - "amenity": "post_box", - "geograph:id": "4916142", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE6 858", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source:details": "Geograph" - } -}, -{ - "type": "node", - "id": 581386818, - "lat": 52.9393798, - "lon": -1.6273232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE6 894", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581386819, - "lat": 52.9391116, - "lon": -1.5698332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DE6 850", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581386820, - "lat": 52.9461717, - "lon": -1.5717697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE6 243" - } -}, -{ - "type": "node", - "id": 581386821, - "lat": 52.9229545, - "lon": -1.5796723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 840" - } -}, -{ - "type": "node", - "id": 581386822, - "lat": 52.9314220, - "lon": -1.6077068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "DE6 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581386823, - "lat": 52.9377771, - "lon": -1.6409523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 220" - } -}, -{ - "type": "node", - "id": 581386824, - "lat": 52.9237695, - "lon": -1.6436652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 868", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581386825, - "lat": 52.9505834, - "lon": -1.6345307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 191" - } -}, -{ - "type": "node", - "id": 581386826, - "lat": 52.9552191, - "lon": -1.6116938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 622" - } -}, -{ - "type": "node", - "id": 581386827, - "lat": 52.9617123, - "lon": -1.6004751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 659" - } -}, -{ - "type": "node", - "id": 581388623, - "lat": 52.9449592, - "lon": -1.5863572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 715" - } -}, -{ - "type": "node", - "id": 581388624, - "lat": 52.9694666, - "lon": -1.6212296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "mapillary": "132191262493730", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 896", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 581388625, - "lat": 52.9697531, - "lon": -1.6239933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 684" - } -}, -{ - "type": "node", - "id": 581388626, - "lat": 52.9733405, - "lon": -1.6205019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 748" - } -}, -{ - "type": "node", - "id": 581388627, - "lat": 52.9737532, - "lon": -1.6410039, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 174" - } -}, -{ - "type": "node", - "id": 581388628, - "lat": 52.9696192, - "lon": -1.6456520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE6 854" - } -}, -{ - "type": "node", - "id": 581388629, - "lat": 52.9842784, - "lon": -1.6053625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 145" - } -}, -{ - "type": "node", - "id": 581388630, - "lat": 52.9832706, - "lon": -1.5784442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE6 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581388631, - "lat": 52.9925274, - "lon": -1.5737552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 134" - } -}, -{ - "type": "node", - "id": 581388632, - "lat": 52.9802718, - "lon": -1.5674494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 480" - } -}, -{ - "type": "node", - "id": 581389902, - "lat": 53.0012970, - "lon": -1.5788017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE6 602" - } -}, -{ - "type": "node", - "id": 581389903, - "lat": 53.0074194, - "lon": -1.6660275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 872" - } -}, -{ - "type": "node", - "id": 581389904, - "lat": 53.0054925, - "lon": -1.6779256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 808" - } -}, -{ - "type": "node", - "id": 581389905, - "lat": 53.0201768, - "lon": -1.6540866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "892417874775922", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE6 290", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 581389906, - "lat": 53.0190510, - "lon": -1.6355282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 160" - } -}, -{ - "type": "node", - "id": 581389907, - "lat": 53.0155776, - "lon": -1.6288759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 749" - } -}, -{ - "type": "node", - "id": 581389908, - "lat": 53.0206147, - "lon": -1.6212219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "590807501928316", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 285", - "ref:GB:uprn": "10025257394", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 581389909, - "lat": 53.0215237, - "lon": -1.6165995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 1378" - } -}, -{ - "type": "node", - "id": 581389910, - "lat": 53.0261347, - "lon": -1.6059169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "DE6 710", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 581392088, - "lat": 53.0336099, - "lon": -1.6136577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 162" - } -}, -{ - "type": "node", - "id": 581392089, - "lat": 53.0411510, - "lon": -1.6173263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 505" - } -}, -{ - "type": "node", - "id": 581392090, - "lat": 53.0312295, - "lon": -1.6555747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 806" - } -}, -{ - "type": "node", - "id": 581392091, - "lat": 53.0368605, - "lon": -1.6570609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 891" - } -}, -{ - "type": "node", - "id": 581392092, - "lat": 53.0398852, - "lon": -1.6438435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 881" - } -}, -{ - "type": "node", - "id": 581392093, - "lat": 53.0498457, - "lon": -1.6475180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 833" - } -}, -{ - "type": "node", - "id": 581392094, - "lat": 53.0522570, - "lon": -1.6513373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "pillar", - "ref": "DE6 845", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581392095, - "lat": 53.0676965, - "lon": -1.6713638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DE6 867", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 581392096, - "lat": 53.0704407, - "lon": -1.6881107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE6 863", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581393880, - "lat": 53.0409690, - "lon": -1.7072990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 893" - } -}, -{ - "type": "node", - "id": 581393886, - "lat": 53.0226410, - "lon": -1.7210120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 862" - } -}, -{ - "type": "node", - "id": 581393892, - "lat": 53.0421367, - "lon": -1.7366747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "544409940219781", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE6 889", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 581393895, - "lat": 53.0484086, - "lon": -1.7419602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 832" - } -}, -{ - "type": "node", - "id": 581393898, - "lat": 53.0509657, - "lon": -1.7583210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 871" - } -}, -{ - "type": "node", - "id": 581393901, - "lat": 53.0488564, - "lon": -1.7691770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 886" - } -}, -{ - "type": "node", - "id": 581393903, - "lat": 53.0549079, - "lon": -1.7991789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 07:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE6 875", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 581406959, - "lat": 53.0417750, - "lon": -1.7944930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 848" - } -}, -{ - "type": "node", - "id": 581406962, - "lat": 53.0359409, - "lon": -1.8276063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 847" - } -}, -{ - "type": "node", - "id": 581406965, - "lat": 53.0309024, - "lon": -1.8023970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 825" - } -}, -{ - "type": "node", - "id": 581406969, - "lat": 53.0850953, - "lon": -1.8116023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 841" - } -}, -{ - "type": "node", - "id": 581406971, - "lat": 53.0923062, - "lon": -1.8181350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 815" - } -}, -{ - "type": "node", - "id": 581406978, - "lat": 53.0960999, - "lon": -1.8390943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE6 865" - } -}, -{ - "type": "node", - "id": 581406981, - "lat": 53.0970208, - "lon": -1.8057900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE6 827", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 581406983, - "lat": 53.0932651, - "lon": -1.7618320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 07:15", - "operator": "Royal Mail", - "ref": "DE6 805", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581409446, - "lat": 53.0689577, - "lon": -1.7411439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 814" - } -}, -{ - "type": "node", - "id": 581409453, - "lat": 53.0668042, - "lon": -1.7368948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE6 820" - } -}, -{ - "type": "node", - "id": 581427089, - "lat": 51.5719251, - "lon": -0.1295583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "ref": "N19 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 581846143, - "lat": 54.1255921, - "lon": -0.1180340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO15 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581850204, - "lat": 55.6054205, - "lon": -2.9038719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TD1", - "ref": "TD1 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581881668, - "lat": 55.5993233, - "lon": -2.7315561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 19:00", - "post_box:type": "wall", - "postal_code": "TD6", - "ref": "TD6 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581881678, - "lat": 55.5852021, - "lon": -2.6804234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:00, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TD6", - "ref": "TD6 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581881685, - "lat": 55.5805481, - "lon": -2.6494176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "wall", - "postal_code": "TD6", - "ref": "TD6 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581881718, - "lat": 55.5851407, - "lon": -2.6161996, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "TD6", - "ref": "TD6 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581885177, - "lat": 50.8836497, - "lon": -3.0864058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX14 286" - } -}, -{ - "type": "node", - "id": 581899162, - "lat": 55.5882763, - "lon": -2.5425176, - "tags": { - "amenity": "post_box", - "postal_code": "TD5", - "ref": "TD5 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581899191, - "lat": 55.5855974, - "lon": -2.5241529, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "TD5", - "ref": "TD5 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581899336, - "lat": 55.6655081, - "lon": -2.3785604, - "tags": { - "amenity": "post_box", - "postal_code": "TD5", - "ref": "TD5 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581899422, - "lat": 55.7187376, - "lon": -2.1624386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581899446, - "lat": 55.7203652, - "lon": -2.1573349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 581899471, - "lat": 55.7662081, - "lon": -2.1088631, - "tags": { - "amenity": "post_box", - "postal_code": "TD15", - "ref": "TD15 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581899478, - "lat": 55.7682479, - "lon": -2.0550969, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581908788, - "lat": 51.4260152, - "lon": -0.9710103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RG2 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581919006, - "lat": 51.1238669, - "lon": -0.1880939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "name": "Windmill Court", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581948618, - "lat": 51.1504406, - "lon": -0.6468570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU8 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 581948741, - "lat": 51.1541756, - "lon": -0.6516405, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU8 136", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581960438, - "lat": 53.1850177, - "lon": -4.0668231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 581966187, - "lat": 51.5579213, - "lon": -0.0523411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 581967392, - "lat": 52.6045333, - "lon": -1.9754543, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 23", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 581968268, - "lat": 50.8706251, - "lon": -2.9699901, - "tags": { - "amenity": "post_box", - "mapillary": "523977272094169", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA20 793", - "survey:date": "2020-05-07" - } -}, -{ - "type": "node", - "id": 581973467, - "lat": 52.5924956, - "lon": -1.9732537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:45", - "postal_code": "WS4", - "ref": "WS4 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 581986225, - "lat": 54.8475524, - "lon": -1.5391962, - "tags": { - "amenity": "post_box", - "ref": "DH3 147" - } -}, -{ - "type": "node", - "id": 581988539, - "lat": 52.5975914, - "lon": -1.9783644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 309", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 581988857, - "lat": 50.8726608, - "lon": -2.9655970, - "tags": { - "amenity": "post_box", - "mapillary": "372290520869896", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-05-07" - } -}, -{ - "type": "node", - "id": 582004279, - "lat": 52.9541492, - "lon": -1.4845986, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 300", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 582004334, - "lat": 52.9544637, - "lon": -1.4888320, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 605" - } -}, -{ - "type": "node", - "id": 582086538, - "lat": 52.0653148, - "lon": -2.2199953, - "tags": { - "amenity": "post_box", - "old_ref": "R400 Hanley Road", - "post_box:type": "lamp", - "ref": "WR8 400" - } -}, -{ - "type": "node", - "id": 582086539, - "lat": 52.1036880, - "lon": -2.2179616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR8 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 582086540, - "lat": 52.0982326, - "lon": -2.2081402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR8 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 582086541, - "lat": 52.1174452, - "lon": -2.2049928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "post_box:type": "wall", - "ref": "WR5 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582086542, - "lat": 52.1911000, - "lon": -2.1814000, - "tags": { - "amenity": "post_box", - "ref": "WR5 11" - } -}, -{ - "type": "node", - "id": 582132550, - "lat": 51.6503704, - "lon": -1.0553090, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX49 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582132598, - "lat": 51.6337333, - "lon": -1.0325599, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX49 484" - } -}, -{ - "type": "node", - "id": 582257129, - "lat": 53.3182268, - "lon": -1.3127429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "100.8232422", - "post_box:type": "lamp", - "ref": "S21 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582275510, - "lat": 53.3024946, - "lon": -1.3166680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "97.4586182", - "post_box:type": "lamp", - "ref": "S21 547D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582463945, - "lat": 52.1397291, - "lon": -0.4567552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582578273, - "lat": 52.9623781, - "lon": -1.5056862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE22 74" - } -}, -{ - "type": "node", - "id": 582578291, - "lat": 52.9649992, - "lon": -1.5040201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 296", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 582590693, - "lat": 50.8176446, - "lon": -3.0301679, - "tags": { - "amenity": "post_box", - "ref": "EX13 19" - } -}, -{ - "type": "node", - "id": 582590951, - "lat": 50.8344879, - "lon": -3.0376822, - "tags": { - "amenity": "post_box", - "ref": "EX13 93" - } -}, -{ - "type": "node", - "id": 582592016, - "lat": 50.6301703, - "lon": -1.1926524, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-05-21", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO37 16", - "ref:GB:uprn": "10015336390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/blythe-way-po38-3es/0000PO3716" - } -}, -{ - "type": "node", - "id": 582592018, - "lat": 50.6373274, - "lon": -1.1783000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 95", - "ref:GB:uprn": "10015412563", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "website": "https://www.royalmail.com/services-near-you/postbox/green-lane-po37-7ay/0000PO3795" - } -}, -{ - "type": "node", - "id": 582592021, - "lat": 50.6430533, - "lon": -1.1692585, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 65D", - "ref:GB:uprn": "10015436645", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/cemetary-road-po36-9lt/0000PO3665" - } -}, -{ - "type": "node", - "id": 582592026, - "lat": 50.6544645, - "lon": -1.1667508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 135", - "ref:GB:uprn": "10015316476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/roseway-po36-9lt/000PO36135" - } -}, -{ - "type": "node", - "id": 582592030, - "lat": 50.6583292, - "lon": -1.1620686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "mapillary": "874267886853046", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 142", - "ref:GB:uprn": "10015409510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-08", - "website": "https://www.royalmail.com/services-near-you/postbox/perowne-way-po36-9lt/000PO36142" - } -}, -{ - "type": "node", - "id": 582592033, - "lat": 50.6610920, - "lon": -1.1514057, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-24", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lower-avenue-road-po36-8bq/000PO36119" - } -}, -{ - "type": "node", - "id": 582619358, - "lat": 53.1783620, - "lon": -4.0561846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 280" - } -}, -{ - "type": "node", - "id": 582629331, - "lat": 51.2009100, - "lon": -1.5014694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 582630401, - "lat": 52.1023450, - "lon": -2.3235794, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 582630402, - "lat": 52.1059691, - "lon": -2.3283107, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR14 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 582637386, - "lat": 52.0675500, - "lon": -2.2047138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "wall", - "ref": "WR8 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 582749580, - "lat": 50.9477327, - "lon": -3.0920471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 582758997, - "lat": 51.5136668, - "lon": -0.1934168, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 51D;W2 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582761967, - "lat": 51.5142716, - "lon": -0.1947150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 69D;W2 269D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 582768095, - "lat": 55.4558611, - "lon": -5.2738568, - "tags": { - "amenity": "post_box", - "ref": "KA27 53" - } -}, -{ - "type": "node", - "id": 582768096, - "lat": 55.5017725, - "lon": -5.3317559, - "tags": { - "amenity": "post_box", - "ref": "KA27 31" - } -}, -{ - "type": "node", - "id": 582768097, - "lat": 55.5190329, - "lon": -5.3254700, - "tags": { - "amenity": "post_box", - "ref": "KA27 13" - } -}, -{ - "type": "node", - "id": 582768098, - "lat": 55.5161314, - "lon": -5.3093559, - "tags": { - "amenity": "post_box", - "ref": "KA27 130" - } -}, -{ - "type": "node", - "id": 582768099, - "lat": 55.4495973, - "lon": -5.2554515, - "tags": { - "amenity": "post_box", - "ref": "KA27 89" - } -}, -{ - "type": "node", - "id": 582768100, - "lat": 55.4446100, - "lon": -5.2315200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582768101, - "lat": 55.5331689, - "lon": -5.1294611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KA27 182", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582768102, - "lat": 55.5366497, - "lon": -5.1234641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 12:15", - "post_box:type": "wall", - "ref": "KA27 16", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 582768103, - "lat": 55.5402514, - "lon": -5.1243933, - "tags": { - "amenity": "post_box", - "ref": "KA27 114" - } -}, -{ - "type": "node", - "id": 582768104, - "lat": 55.4762841, - "lon": -5.0877043, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA27 80" - } -}, -{ - "type": "node", - "id": 582768105, - "lat": 55.4898064, - "lon": -5.0950729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA27 158", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582768107, - "lat": 55.5797751, - "lon": -5.1572240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KA27 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 582768108, - "lat": 55.5772192, - "lon": -5.1509154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:45", - "ref": "KA27 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 582768109, - "lat": 55.5761318, - "lon": -5.1395558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KA27 21" - } -}, -{ - "type": "node", - "id": 582768110, - "lat": 55.5913971, - "lon": -5.1560170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KA27 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582768111, - "lat": 55.6345531, - "lon": -5.1381186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "KA27 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582768112, - "lat": 55.6424227, - "lon": -5.1389959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "KA27 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582768113, - "lat": 55.6441290, - "lon": -5.1396614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:type": "wall", - "ref": "KA27 93", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 582823167, - "lat": 53.1795081, - "lon": -2.9158983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582895581, - "lat": 53.7036509, - "lon": -2.6397298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR6 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582896059, - "lat": 53.6936195, - "lon": -2.6383583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 20" - } -}, -{ - "type": "node", - "id": 582898005, - "lat": 53.6851285, - "lon": -2.6383012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR6 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582898886, - "lat": 53.6907846, - "lon": -2.6359188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 12", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 582899419, - "lat": 53.6967378, - "lon": -2.6343015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "935409413902506", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582929613, - "lat": 51.5328958, - "lon": -0.4757818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB8 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582962353, - "lat": 53.0728387, - "lon": -1.5790443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 337", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 582962354, - "lat": 53.0764398, - "lon": -1.5757613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582962355, - "lat": 53.0763932, - "lon": -1.5698957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 76" - } -}, -{ - "type": "node", - "id": 582962356, - "lat": 53.0776365, - "lon": -1.5773280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 918" - } -}, -{ - "type": "node", - "id": 582962357, - "lat": 53.0819933, - "lon": -1.5746018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582962358, - "lat": 53.0739161, - "lon": -1.5763844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 724" - } -}, -{ - "type": "node", - "id": 582962359, - "lat": 53.0794803, - "lon": -1.5820917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 773" - } -}, -{ - "type": "node", - "id": 582962360, - "lat": 53.0834483, - "lon": -1.5536155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE4 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582962361, - "lat": 53.0876122, - "lon": -1.5726417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 346" - } -}, -{ - "type": "node", - "id": 582970092, - "lat": 53.0955780, - "lon": -1.5693091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 697" - } -}, -{ - "type": "node", - "id": 582970095, - "lat": 53.0925479, - "lon": -1.5694614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 340" - } -}, -{ - "type": "node", - "id": 582970098, - "lat": 53.0934791, - "lon": -1.5666938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 702" - } -}, -{ - "type": "node", - "id": 582970101, - "lat": 53.0948967, - "lon": -1.5843139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582970103, - "lat": 53.1006952, - "lon": -1.5886446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 336", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 582970106, - "lat": 53.1014782, - "lon": -1.5894336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 341" - } -}, -{ - "type": "node", - "id": 582970108, - "lat": 53.1019858, - "lon": -1.5860323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 852" - } -}, -{ - "type": "node", - "id": 582970111, - "lat": 53.1090586, - "lon": -1.5608111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582976498, - "lat": 53.1125079, - "lon": -1.5625625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "1719817278215514", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE4 962", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 582976500, - "lat": 53.1168546, - "lon": -1.5611892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 901", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 582976501, - "lat": 53.1219062, - "lon": -1.5630290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 981", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 582976503, - "lat": 53.1206806, - "lon": -1.5632729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "mapillary": "430198105437872", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 933", - "royal_cypher": "EIIR", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 582976505, - "lat": 53.1352617, - "lon": -1.5561970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1595528504125912", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 957", - "source": "Unknown;survey", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 582976506, - "lat": 53.1376560, - "lon": -1.5567505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1851114425277066", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 910", - "royal_cypher": "EIIR", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 582976508, - "lat": 53.1347497, - "lon": -1.5485572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DE4 912", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 582976509, - "lat": 53.1265406, - "lon": -1.5517114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 958", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582976511, - "lat": 53.1242085, - "lon": -1.5519079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 913", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 582982818, - "lat": 53.1403262, - "lon": -1.5468237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1001974003920542", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE4 914", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 582982820, - "lat": 53.1374474, - "lon": -1.5420215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 967" - } -}, -{ - "type": "node", - "id": 582982821, - "lat": 53.1391203, - "lon": -1.5416336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 900" - } -}, -{ - "type": "node", - "id": 582982822, - "lat": 53.1393327, - "lon": -1.5373528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 999" - } -}, -{ - "type": "node", - "id": 582982823, - "lat": 53.1441647, - "lon": -1.5431379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE4 905" - } -}, -{ - "type": "node", - "id": 582982824, - "lat": 53.1417605, - "lon": -1.5575910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 944" - } -}, -{ - "type": "node", - "id": 582982825, - "lat": 53.1425548, - "lon": -1.5602820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 907" - } -}, -{ - "type": "node", - "id": 582985032, - "lat": 53.1436732, - "lon": -1.5562971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 908" - } -}, -{ - "type": "node", - "id": 582985034, - "lat": 53.1453267, - "lon": -1.5521736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 964" - } -}, -{ - "type": "node", - "id": 582985035, - "lat": 53.1465154, - "lon": -1.5619452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 960" - } -}, -{ - "type": "node", - "id": 582985036, - "lat": 53.1494446, - "lon": -1.5659191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 955" - } -}, -{ - "type": "node", - "id": 582985037, - "lat": 53.1549729, - "lon": -1.5716638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 969" - } -}, -{ - "type": "node", - "id": 582985038, - "lat": 53.1499686, - "lon": -1.5649687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 947" - } -}, -{ - "type": "node", - "id": 582985039, - "lat": 53.1534448, - "lon": -1.5788332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "590704861949460", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DE4 916", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 582985040, - "lat": 53.1589241, - "lon": -1.5800864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE4 995", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 582986822, - "lat": 53.1617756, - "lon": -1.5881407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE4 986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 582986823, - "lat": 53.1631031, - "lon": -1.5816529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DE4 988", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 582986826, - "lat": 53.1720485, - "lon": -1.5984759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 915" - } -}, -{ - "type": "node", - "id": 582991445, - "lat": 53.0005017, - "lon": -2.3441281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 582991446, - "lat": 52.9970975, - "lon": -2.3429867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 582991449, - "lat": 53.0032726, - "lon": -2.3362546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 582994320, - "lat": 51.5269610, - "lon": -0.8933080, - "tags": { - "amenity": "post_box", - "description": "Inside supermarket" - } -}, -{ - "type": "node", - "id": 583053964, - "lat": 53.5788871, - "lon": -2.4939092, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 583176009, - "lat": 51.7584785, - "lon": -3.5920259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "337911158559450", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA11 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 583183119, - "lat": 51.8157337, - "lon": -2.7130803, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP25 531", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 583211339, - "lat": 50.4915375, - "lon": -4.0858470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL20 553;PL20 5330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 583228465, - "lat": 50.7940780, - "lon": -0.9731376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 583271887, - "lat": 53.5592106, - "lon": -2.5245913, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BL5 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 583288067, - "lat": 51.8643606, - "lon": -0.7415638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "ref": "HP22 301" - } -}, -{ - "type": "node", - "id": 583296344, - "lat": 52.6487213, - "lon": -2.8892576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY5 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 583299800, - "lat": 50.9314614, - "lon": -1.7967286, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 445" - } -}, -{ - "type": "node", - "id": 583299801, - "lat": 50.9331114, - "lon": -1.7957630, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 366" - } -}, -{ - "type": "node", - "id": 583299802, - "lat": 50.9353223, - "lon": -1.7930056, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 113" - } -}, -{ - "type": "node", - "id": 583318553, - "lat": 53.7378773, - "lon": -0.8482514, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 86", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 583344811, - "lat": 52.7160628, - "lon": -1.1583428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 583350867, - "lat": 51.0487096, - "lon": 0.4940939, - "tags": { - "amenity": "post_box", - "postal_code": "TN18", - "ref": "TN18 269" - } -}, -{ - "type": "node", - "id": 583357253, - "lat": 54.6434135, - "lon": -3.5619876, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "CA14 19;CA14 1019" - } -}, -{ - "type": "node", - "id": 583435198, - "lat": 53.1509253, - "lon": -1.5751731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 1361" - } -}, -{ - "type": "node", - "id": 583435200, - "lat": 53.1752943, - "lon": -1.6075306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=8f25714f-0391-41dd-a756-18fa4634a41f&cp=53.175378~-1.607681&lvl=19&dir=122.19598&pi=-9.712972&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DE4 917" - } -}, -{ - "type": "node", - "id": 583435201, - "lat": 53.1909915, - "lon": -1.6141679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 899" - } -}, -{ - "type": "node", - "id": 583435202, - "lat": 53.1923069, - "lon": -1.6123736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE4 937", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 583435204, - "lat": 53.2034318, - "lon": -1.6043062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 992" - } -}, -{ - "type": "node", - "id": 583435206, - "lat": 53.2093941, - "lon": -1.6160000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 1359" - } -}, -{ - "type": "node", - "id": 583435207, - "lat": 53.1814233, - "lon": -1.6272956, - "tags": { - "amenity": "post_box", - "fixme": "couldn't see this.", - "operator": "Royal Mail", - "ref": "DE4 982" - } -}, -{ - "type": "node", - "id": 583435208, - "lat": 53.1740247, - "lon": -1.6397815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 996" - } -}, -{ - "type": "node", - "id": 583435210, - "lat": 53.1754449, - "lon": -1.6410091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE4 980", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 583435213, - "lat": 53.1507222, - "lon": -1.6000481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 935" - } -}, -{ - "type": "node", - "id": 583435214, - "lat": 53.1542691, - "lon": -1.5982696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 919", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 583439661, - "lat": 53.1593461, - "lon": -1.6131878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 1355" - } -}, -{ - "type": "node", - "id": 583439663, - "lat": 53.1581776, - "lon": -1.6497668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 948" - } -}, -{ - "type": "node", - "id": 583490184, - "lat": 53.7850580, - "lon": -1.0678772, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 1001" - } -}, -{ - "type": "node", - "id": 583504134, - "lat": 50.9326504, - "lon": -1.8242793, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 204" - } -}, -{ - "type": "node", - "id": 583587598, - "lat": 53.6979357, - "lon": -2.6445520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "533244891173709", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 124" - } -}, -{ - "type": "node", - "id": 583591735, - "lat": 53.7038907, - "lon": -2.6455036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 74" - } -}, -{ - "type": "node", - "id": 583594114, - "lat": 51.0200962, - "lon": -0.7015990, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 583596734, - "lat": 53.7074862, - "lon": -2.6449035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "mapillary": "265922918552517", - "note": "Inside Asda foyer", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR6 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 583863474, - "lat": 53.1452222, - "lon": -1.6698254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 997", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 583863477, - "lat": 53.1463692, - "lon": -1.6081493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 966" - } -}, -{ - "type": "node", - "id": 583868813, - "lat": 50.6559415, - "lon": -1.1552112, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 29", - "ref:GB:uprn": "10015303038", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/station-avenue-po36-9lt/0000PO3629" - } -}, -{ - "type": "node", - "id": 583884943, - "lat": 52.7943841, - "lon": -1.4486635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE65 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 583915032, - "lat": 53.1328535, - "lon": -1.6064929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 923" - } -}, -{ - "type": "node", - "id": 583915033, - "lat": 53.1140574, - "lon": -1.5920619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 938" - } -}, -{ - "type": "node", - "id": 583946499, - "lat": 50.6832286, - "lon": -1.0888943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO35 31", - "ref:GB:uprn": "10015455783", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/steyne-road-po35-5aa/0000PO3531" - } -}, -{ - "type": "node", - "id": 583946500, - "lat": 50.6903595, - "lon": -1.0794883, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO35 77", - "ref:GB:uprn": "10015386377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/swains-po35-5aa/0000PO3577" - } -}, -{ - "type": "node", - "id": 583946503, - "lat": 50.6873526, - "lon": -1.0751594, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-08", - "check_date:collection_times": "2022-07-08", - "check_date:ref": "2022-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO35 51D", - "ref:GB:uprn": "10015435812", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lane-end-po35-5aa/0000PO3551" - } -}, -{ - "type": "node", - "id": 584032052, - "lat": 53.0985122, - "lon": -1.6631968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 1353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 584032058, - "lat": 53.0861460, - "lon": -1.6561886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 343" - } -}, -{ - "type": "node", - "id": 584032065, - "lat": 53.0838654, - "lon": -1.6561759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE4 994" - } -}, -{ - "type": "node", - "id": 584032070, - "lat": 53.0682357, - "lon": -1.6521455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 344" - } -}, -{ - "type": "node", - "id": 584045853, - "lat": 53.0758898, - "lon": -1.6129645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 333", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 584045862, - "lat": 53.0921721, - "lon": -1.5321691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE4 949" - } -}, -{ - "type": "node", - "id": 584045869, - "lat": 53.0892917, - "lon": -1.4687830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DE4 946", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 584073182, - "lat": 53.0819810, - "lon": -1.4946034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 1351" - } -}, -{ - "type": "node", - "id": 584073186, - "lat": 53.0859568, - "lon": -1.4966230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 932" - } -}, -{ - "type": "node", - "id": 584073190, - "lat": 53.1224269, - "lon": -1.5621891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 902", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 584073194, - "lat": 53.1033132, - "lon": -1.5167800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 977" - } -}, -{ - "type": "node", - "id": 584073198, - "lat": 53.1026552, - "lon": -1.5134416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 950" - } -}, -{ - "type": "node", - "id": 584073202, - "lat": 53.1056174, - "lon": -1.5173742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 951", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 584073206, - "lat": 53.1072370, - "lon": -1.5245264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 1376" - } -}, -{ - "type": "node", - "id": 584415425, - "lat": 51.5283993, - "lon": -0.1068726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "EC1R 121D;EC1R 1211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 585105206, - "lat": 53.4074038, - "lon": -2.8724132, - "tags": { - "amenity": "post_box", - "ref": "L16 720" - } -}, -{ - "type": "node", - "id": 585147014, - "lat": 53.0562969, - "lon": -2.8090353, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 585150678, - "lat": 50.7254037, - "lon": -3.4642254, - "tags": { - "amenity": "post_box", - "ref": "EX2 888", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585150683, - "lat": 50.7252815, - "lon": -3.4643326, - "tags": { - "amenity": "post_box", - "ref": "EX2 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585202841, - "lat": 50.6588568, - "lon": -3.5290714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EX6 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 585204688, - "lat": 51.0653221, - "lon": -0.6772043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 60D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 585204980, - "lat": 51.0381426, - "lon": -0.6783765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU28 107", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 585210311, - "lat": 53.7716951, - "lon": -1.1253209, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO8 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585210380, - "lat": 50.9852121, - "lon": -1.3848676, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585210383, - "lat": 50.9915676, - "lon": -1.3828737, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 585219446, - "lat": 50.9015170, - "lon": -1.4039957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO14 661;SO14 662", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585219447, - "lat": 50.9017713, - "lon": -1.4040641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585402442, - "lat": 53.6023239, - "lon": -1.7999870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HD9 461" - } -}, -{ - "type": "node", - "id": 585425227, - "lat": 53.8186988, - "lon": -0.9871156, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 585504612, - "lat": 53.3861373, - "lon": -2.2294618, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 586266998, - "lat": 53.1374255, - "lon": -1.2472830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 586466754, - "lat": 53.1400400, - "lon": -1.2113657, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 586509251, - "lat": 51.0724352, - "lon": -0.3340221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Swindon Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH12 151D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 586749008, - "lat": 51.4005281, - "lon": -0.6315111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "name": "Upper Nursery", - "ref": "SL5 33" - } -}, -{ - "type": "node", - "id": 587033567, - "lat": 53.7766053, - "lon": -2.7093925, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 587666663, - "lat": 55.6221614, - "lon": -1.8638821, - "tags": { - "amenity": "post_box", - "postal_code": "NE70", - "ref": "NE70 93", - "source": "survey" - } -}, -{ - "type": "node", - "id": 587666671, - "lat": 55.6546422, - "lon": -1.8985310, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 587666680, - "lat": 55.6714646, - "lon": -1.9156008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 587670308, - "lat": 51.1843340, - "lon": -0.1749320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 321" - } -}, -{ - "type": "node", - "id": 587670688, - "lat": 51.1799603, - "lon": -0.1725556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Charlesfield Road", - "old_ref": "RH6 224", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH6 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 587673339, - "lat": 52.0479258, - "lon": -0.8283625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK11 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 587684981, - "lat": 51.1809500, - "lon": -0.1815020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 365" - } -}, -{ - "type": "node", - "id": 587685418, - "lat": 51.1770890, - "lon": -0.1821350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 236" - } -}, -{ - "type": "node", - "id": 587696293, - "lat": 55.8741585, - "lon": -4.3058402, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 587696720, - "lat": 55.8759954, - "lon": -4.3084651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "G11 434D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 587729667, - "lat": 50.8269960, - "lon": -3.6763076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX17 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 587737995, - "lat": 51.5059668, - "lon": -0.1012197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 90;SE1 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 587741380, - "lat": 53.7544347, - "lon": -0.7320239, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 587758789, - "lat": 51.8668871, - "lon": -2.2441096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 587758790, - "lat": 51.8681342, - "lon": -2.2457088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL1 19" - } -}, -{ - "type": "node", - "id": 587758798, - "lat": 51.8671195, - "lon": -2.2475474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/gloucester-2022-03-12/PXL_20220312_163928742.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co Ld, Derby & London", - "post_box:type": "pillar", - "ref": "GL1 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 587763012, - "lat": 52.0232072, - "lon": 0.7275403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO10 1067", - "source": "gps" - } -}, -{ - "type": "node", - "id": 588134987, - "lat": 51.7213629, - "lon": -1.9723895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "295809058804986", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL7 29", - "survey:date": "2020-08-01" - } -}, -{ - "type": "node", - "id": 588140729, - "lat": 51.7197572, - "lon": -1.9691798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL7 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 588144751, - "lat": 50.9146403, - "lon": -1.3514266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 343", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 588413920, - "lat": 53.0731921, - "lon": -4.1432518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588422662, - "lat": 52.7109737, - "lon": -2.7615393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY3 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 588454744, - "lat": 53.9657842, - "lon": -1.1314765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO26 259D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 588473235, - "lat": 51.4039458, - "lon": 0.4968833, - "tags": { - "amenity": "post_box", - "postal_code": "ME2", - "ref": "ME2 340" - } -}, -{ - "type": "node", - "id": 588477901, - "lat": 51.5171339, - "lon": -0.1708549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 61;W2 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588477904, - "lat": 51.5177498, - "lon": -0.1736447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 58D;W2 258D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 588498447, - "lat": 55.9702561, - "lon": -3.1718574, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-28", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 588502718, - "lat": 55.1517483, - "lon": -1.6010988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE62 5SA", - "ref": "NE62 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 588505088, - "lat": 51.5169597, - "lon": -0.1270746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1A 6;WC1A 206", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588510311, - "lat": 57.4637471, - "lon": -7.3942448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:45; Sa 09:30", - "operator": "Royal Mail", - "ref": "HS7 45" - } -}, -{ - "type": "node", - "id": 588510322, - "lat": 57.4797233, - "lon": -7.3472659, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 588518831, - "lat": 57.5238889, - "lon": -7.3144068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 09:30", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 588518837, - "lat": 57.5176437, - "lon": -7.2781625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1194542627998147", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-06-20" - } -}, -{ - "type": "node", - "id": 588549713, - "lat": 57.5600741, - "lon": -7.3705133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "697117574923146", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-06-20" - } -}, -{ - "type": "node", - "id": 588549717, - "lat": 57.5355245, - "lon": -7.3200278, - "tags": { - "amenity": "post_box", - "ref": "HS6 39" - } -}, -{ - "type": "node", - "id": 588552635, - "lat": 53.1823860, - "lon": -4.0575965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 123" - } -}, -{ - "type": "node", - "id": 588552661, - "lat": 53.1804642, - "lon": -4.0537084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 235" - } -}, -{ - "type": "node", - "id": 588552727, - "lat": 53.1773972, - "lon": -4.0478477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 151" - } -}, -{ - "type": "node", - "id": 588554349, - "lat": 57.5717810, - "lon": -7.3981238, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 588579333, - "lat": 53.8485664, - "lon": -0.4264090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 588584720, - "lat": 50.7835152, - "lon": -3.6430394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 588646128, - "lat": 57.5879344, - "lon": -7.4406261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 588650310, - "lat": 55.1450880, - "lon": -1.5929196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 7AP", - "ref": "NE22 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 588650405, - "lat": 55.1418853, - "lon": -1.5695885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE22 7JY", - "ref": "NE22 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 588650607, - "lat": 55.1428230, - "lon": -1.5611403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 7EJ", - "ref": "NE22 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 588685340, - "lat": 57.5898436, - "lon": -7.4549556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 588824872, - "lat": 52.7279941, - "lon": -2.7273066, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-04", - "post_box:type": "pillar", - "ref": "SY1 474", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 588867020, - "lat": 51.5804248, - "lon": 0.0235881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588867179, - "lat": 51.5828178, - "lon": 0.0248349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588867295, - "lat": 51.5855427, - "lon": 0.0266558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588867997, - "lat": 51.5872216, - "lon": 0.0214485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588868197, - "lat": 51.5817575, - "lon": 0.0204142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588966573, - "lat": 51.4311033, - "lon": -0.0141151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588966579, - "lat": 51.4334403, - "lon": -0.0029278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588966583, - "lat": 51.4370261, - "lon": 0.0016686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 588966586, - "lat": 51.4297106, - "lon": 0.0049950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR1 343" - } -}, -{ - "type": "node", - "id": 588966600, - "lat": 51.4341594, - "lon": 0.0009089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "CP unreadable 28/2/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 588966603, - "lat": 51.4408133, - "lon": 0.0064796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 588966607, - "lat": 51.4397520, - "lon": -0.0017813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588966610, - "lat": 51.4399938, - "lon": 0.0028268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 588966614, - "lat": 51.4400633, - "lon": -0.0068597, - "tags": { - "amenity": "post_box", - "note": "28/2/21 Back in operation with E7 door", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 588966617, - "lat": 51.4380118, - "lon": -0.0085540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 588966620, - "lat": 51.4408016, - "lon": -0.0026815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 588966623, - "lat": 51.4352504, - "lon": -0.0176025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 588966625, - "lat": 51.4371448, - "lon": -0.0130208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 56", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 588966627, - "lat": 51.4315154, - "lon": 0.0104555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 260", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 588973410, - "lat": 53.1001445, - "lon": -2.6285025, - "tags": { - "amenity": "post_box", - "ref": "CW6 207" - } -}, -{ - "type": "node", - "id": 588995511, - "lat": 51.3683691, - "lon": -0.2745986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 588998524, - "lat": 51.4430554, - "lon": -0.9920257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Opposite 178 Wensley Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 496D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Coley Park 2019-05-18 11.56.07.jpg" - } -}, -{ - "type": "node", - "id": 589012343, - "lat": 51.3606861, - "lon": -0.2805346, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT19 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 589012359, - "lat": 51.3666146, - "lon": -0.2775212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 182D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 589091090, - "lat": 51.3399644, - "lon": 0.5770853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME7 427D" - } -}, -{ - "type": "node", - "id": 589226130, - "lat": 53.0517056, - "lon": -1.3977166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "162.5874023", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE5 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 589266199, - "lat": 53.0742391, - "lon": -1.3827606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "134.2287598", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 667" - } -}, -{ - "type": "node", - "id": 589382885, - "lat": 53.0629062, - "lon": -1.3427206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "69.3403320", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG16 137" - } -}, -{ - "type": "node", - "id": 589575031, - "lat": 51.5149342, - "lon": -0.1799535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-10-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 22D;W2 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 590052286, - "lat": 51.3186375, - "lon": -0.6151534, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "last_checked": "2020-02-19", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 1121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 590069328, - "lat": 52.4725703, - "lon": -1.8835459, - "tags": { - "amenity": "post_box", - "postal_code": "B12", - "ref": "B12 86", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 590158623, - "lat": 50.3224035, - "lon": -4.0298786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL8 409D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 590185132, - "lat": 53.0747092, - "lon": -1.3169813, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 590185156, - "lat": 53.0943363, - "lon": -1.3142555, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 590185174, - "lat": 53.0860760, - "lon": -1.3092827, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 590185187, - "lat": 53.0956550, - "lon": -1.3210567, - "tags": { - "amenity": "post_box", - "ele": "124.3753662", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 434", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 590364410, - "lat": 53.8364635, - "lon": -0.4086418, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 590364417, - "lat": 53.8564363, - "lon": -0.4186245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "HU17 239D" - } -}, -{ - "type": "node", - "id": 590528721, - "lat": 50.4001002, - "lon": -3.5015782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ5", - "ref": "TQ5 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 590886967, - "lat": 52.3321058, - "lon": -0.0761400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE27 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 591052274, - "lat": 50.9390959, - "lon": -1.3700830, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO18 589", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 592045713, - "lat": 51.4937801, - "lon": -0.0846100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 71;SE1 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 592641968, - "lat": 50.5508376, - "lon": -3.5936296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 593344407, - "lat": 51.5236418, - "lon": -0.0987575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1V 134;EC1V 1341", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 593560261, - "lat": 53.6608774, - "lon": -2.6678168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR7 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 593561773, - "lat": 53.6623048, - "lon": -2.6745074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 10" - } -}, -{ - "type": "node", - "id": 593577028, - "lat": 53.6686664, - "lon": -2.6757465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "mapillary": "1107063536513074", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 24", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 594680400, - "lat": 51.2330840, - "lon": -0.2372510, - "tags": { - "amenity": "post_box", - "ref": "RH2 139", - "source": "Photo P143-0510" - } -}, -{ - "type": "node", - "id": 594682610, - "lat": 51.2405258, - "lon": -0.2211405, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH2 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Photo P142-0044" - } -}, -{ - "type": "node", - "id": 595095074, - "lat": 50.7806385, - "lon": 0.2738006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal MailR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 772D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 595235923, - "lat": 53.8279063, - "lon": -0.4592392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HU17 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 595322953, - "lat": 51.5338771, - "lon": -0.0881822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N1 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 595415106, - "lat": 52.0533799, - "lon": -0.8513052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK11 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 595593203, - "lat": 50.6970642, - "lon": -1.3009706, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 2D", - "ref:GB:uprn": "10015417281", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/the-mall-po30-1ae/00000PO302" - } -}, -{ - "type": "node", - "id": 595709486, - "lat": 51.5230875, - "lon": -0.1439368, - "tags": { - "amenity": "post_box", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W1W 50D;W1W 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 595766418, - "lat": 57.6446663, - "lon": -7.4771072, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 595766434, - "lat": 57.6434825, - "lon": -7.3687966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HS6 2" - } -}, -{ - "type": "node", - "id": 595766440, - "lat": 57.6505968, - "lon": -7.3434576, - "tags": { - "amenity": "post_box", - "fixme": "Confirm the reference number HS6 21 is correct. The Royal Mail website suggests it is a bit further to the south-west, but there's no post box at that location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS6 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 595766453, - "lat": 57.6529540, - "lon": -7.3247007, - "tags": { - "amenity": "post_box", - "drive_through": "yes", - "ref": "HS6 6" - } -}, -{ - "type": "node", - "id": 595780198, - "lat": 50.3136059, - "lon": -4.0403338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 534D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 595784932, - "lat": 57.6589831, - "lon": -7.2375248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 08:00" - } -}, -{ - "type": "node", - "id": 595784934, - "lat": 57.6808245, - "lon": -7.2126532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 08:00", - "drive_through": "yes", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 595795738, - "lat": 57.8155797, - "lon": -6.8576352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 122", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 596164958, - "lat": 51.5374236, - "lon": 0.1607558, - "tags": { - "amenity": "post_box", - "name": "Acre Road" - } -}, -{ - "type": "node", - "id": 596199467, - "lat": 55.1670345, - "lon": -1.6869688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "NE61 1PJ", - "ref": "NE61 3D;NE61 1003D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 596362333, - "lat": 52.6282506, - "lon": 1.2922508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NR2 211D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 596583838, - "lat": 51.5216950, - "lon": -0.7605017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SL6 179", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 596584273, - "lat": 51.5253497, - "lon": -0.7450120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 596584678, - "lat": 51.5551978, - "lon": -0.7544872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SL6 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 596584781, - "lat": 51.5529581, - "lon": -0.7272248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SL6 178", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 596584831, - "lat": 51.5579001, - "lon": -0.7246006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 596901381, - "lat": 52.6013892, - "lon": 1.7207273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 597214784, - "lat": 53.8592107, - "lon": -0.4042591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "HU17 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 597287105, - "lat": 51.5001180, - "lon": -0.1048340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 33;SE1 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597329180, - "lat": 51.5224837, - "lon": -0.7326982, - "tags": { - "amenity": "post_box", - "ele": "54.920532", - "post_box:type": "pillar", - "ref": "SL6 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 597329184, - "lat": 51.5209181, - "lon": -0.7277421, - "tags": { - "amenity": "post_box", - "ele": "47.230103", - "post_box:type": "pillar", - "ref": "SL6 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597349474, - "lat": 51.2193487, - "lon": -0.5955587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU3 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 597354724, - "lat": 51.5075479, - "lon": -0.5071129, - "tags": { - "amenity": "post_box", - "ele": "26.802246", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL0 154", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 597354731, - "lat": 51.5078710, - "lon": -0.5046771, - "tags": { - "amenity": "post_box", - "ele": "28.724976", - "ref": "SL0 90", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 597372718, - "lat": 52.9238526, - "lon": -1.2676676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "location": "Toton Lane, Westerlands", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 689", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597395247, - "lat": 52.9245094, - "lon": -1.2744456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Brookhill Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 676D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597398384, - "lat": 52.9272178, - "lon": -1.2792934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Derby Road, Park Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG9 680D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 597446478, - "lat": 51.8703291, - "lon": -2.4916012, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 597447327, - "lat": 52.0353932, - "lon": 1.1850857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1348", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 597466003, - "lat": 51.5849310, - "lon": 0.0103891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E11 78", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597466016, - "lat": 51.5847063, - "lon": 0.0155141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597466075, - "lat": 51.5850705, - "lon": 0.0202724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597470115, - "lat": 51.5470901, - "lon": -1.7721487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 125" - } -}, -{ - "type": "node", - "id": 597471119, - "lat": 57.8302133, - "lon": -6.8493908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 597596434, - "lat": 51.5794886, - "lon": 0.0017802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 597600077, - "lat": 50.9167884, - "lon": -1.3698122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 233D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 597613092, - "lat": 51.9465912, - "lon": -0.0200650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "name": "SG9 9AA – Buntingford Branch Office | Baldock Road", - "post_box:type": "wall", - "ref": "SG9 135", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 597731723, - "lat": 51.0533464, - "lon": -1.3192372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is a bit hidden in the hedge.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 98D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 598184993, - "lat": 50.9398418, - "lon": -0.4881610, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 598201828, - "lat": 51.9992443, - "lon": -2.1513757, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "GL20 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 598206043, - "lat": 51.2637451, - "lon": 0.4706929, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME16 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 598206064, - "lat": 51.2687567, - "lon": 0.4710737, - "tags": { - "amenity": "post_box", - "ref": "ME16 207" - } -}, -{ - "type": "node", - "id": 598206132, - "lat": 51.2667010, - "lon": 0.4763017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 179" - } -}, -{ - "type": "node", - "id": 598206155, - "lat": 51.2696968, - "lon": 0.4732171, - "tags": { - "amenity": "post_box", - "ref": "ME16 378" - } -}, -{ - "type": "node", - "id": 598208805, - "lat": 50.7288036, - "lon": -1.1502412, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-12-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 7", - "ref:GB:uprn": "10015369307", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/lower-st-johns-park-po33-1aa/00000PO337" - } -}, -{ - "type": "node", - "id": 598328434, - "lat": 52.9231291, - "lon": -1.2707701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Archer Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 686D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 598573205, - "lat": 51.1619896, - "lon": 0.8761081, - "tags": { - "amenity": "post_box", - "ref": "TN24 174" - } -}, -{ - "type": "node", - "id": 598573253, - "lat": 51.1694386, - "lon": 0.8785397, - "tags": { - "amenity": "post_box", - "ref": "TN24 301" - } -}, -{ - "type": "node", - "id": 598573259, - "lat": 51.1596542, - "lon": 0.8806706, - "tags": { - "amenity": "post_box", - "ref": "TN24 297" - } -}, -{ - "type": "node", - "id": 598573316, - "lat": 51.1639990, - "lon": 0.8805645, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 598573325, - "lat": 51.1639749, - "lon": 0.8942046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN24 103", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN24 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 598597481, - "lat": 53.1737622, - "lon": -4.0536058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 21", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 598621832, - "lat": 52.6591202, - "lon": 1.2022689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR8 801D" - } -}, -{ - "type": "node", - "id": 598666975, - "lat": 53.7671638, - "lon": -1.0905416, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO8 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 598712718, - "lat": 56.5829439, - "lon": -3.3450777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH10 104D", - "royal_cypher": "EVIIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 598724846, - "lat": 52.9323732, - "lon": -1.2622220, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Nottingham Road, Ryecroft Street", - "post_box:type": "pillar", - "ref": "NG9 681D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 598724847, - "lat": 52.9343096, - "lon": -1.2331215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 644D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 598724850, - "lat": 52.9288083, - "lon": -1.2229623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "NG9 621", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 598985926, - "lat": 51.5097277, - "lon": -0.1468054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 61;W1J 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 599004170, - "lat": 50.7312586, - "lon": -3.5186434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1191483648020960", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX4 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-09-02" - } -}, -{ - "type": "node", - "id": 599018614, - "lat": 52.9301273, - "lon": -1.2778922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Warren Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 685D", - "ref:GB:uprn": "10015456671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 599101060, - "lat": 52.0199613, - "lon": -0.7238855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 599129191, - "lat": 51.2990805, - "lon": 0.4417599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 599223692, - "lat": 52.0341223, - "lon": -2.0628483, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL20 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 599286398, - "lat": 52.0385908, - "lon": -2.0878482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL20 2D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 599351695, - "lat": 52.0360962, - "lon": -2.0757002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL20 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 599572348, - "lat": 51.7163499, - "lon": -1.9660248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "GL7 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 599573267, - "lat": 51.7135355, - "lon": -1.9717760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "GL7 144", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 599597069, - "lat": 51.1261682, - "lon": 0.8560248, - "tags": { - "amenity": "post_box", - "ref": "TN23 64" - } -}, -{ - "type": "node", - "id": 599613654, - "lat": 53.1929462, - "lon": -4.0907362, - "tags": { - "amenity": "post_box", - "ref": "LL57 313" - } -}, -{ - "type": "node", - "id": 599613802, - "lat": 53.1896866, - "lon": -4.0905452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 88" - } -}, -{ - "type": "node", - "id": 599618689, - "lat": 50.8604727, - "lon": -2.1506233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 2D", - "ref:GB:uprn": "10015382593", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 599631096, - "lat": 53.1939130, - "lon": -4.0882276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 41" - } -}, -{ - "type": "node", - "id": 599631124, - "lat": 53.1902653, - "lon": -4.0834979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 122" - } -}, -{ - "type": "node", - "id": 599660822, - "lat": 51.9914018, - "lon": -1.9694687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "fixme": "check ref value", - "note": "Original ref was GL55 163, but this location is in the GL54 postal district, so I'm guessing it was a typo", - "post_box:type": "lamp", - "ref": "GL54 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 599660831, - "lat": 51.9907977, - "lon": -1.9877368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 599664241, - "lat": 51.9977522, - "lon": -2.1034339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "206311335095166", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 59", - "source": "drive-by survey", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 599664243, - "lat": 52.0013481, - "lon": -2.0881883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1615286142182001", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "drive-by survey", - "survey:date": "2021-07-22" - } -}, -{ - "type": "node", - "id": 599689088, - "lat": 50.7804114, - "lon": -2.9916480, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX13 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 599696161, - "lat": 52.0064068, - "lon": -1.8992299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00; Su off", - "drive_through": "no", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR12 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 599933773, - "lat": 52.4793363, - "lon": -0.9075576, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 600027915, - "lat": 53.6509008, - "lon": -1.8434291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 600039017, - "lat": 50.3746619, - "lon": -3.5392860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ5", - "ref": "TQ5 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 600042898, - "lat": 51.1466492, - "lon": 0.8726752, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "lastcheck": "2023-04-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 600042900, - "lat": 51.1494395, - "lon": 0.8718656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "note": "If using this postbox travelling in a motor vehicle, the gate on Bank Street to access High Street is sometimes closed. If approaching Bank Street at a time that the gate is closed, explain to the person on the gate that you need to access High Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN23 2121;TN23 2122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600042908, - "lat": 51.1490343, - "lon": 0.8745824, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN24 292", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TN23", - "ref": "TN24 292D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-05-29" - } -}, -{ - "type": "node", - "id": 600042914, - "lat": 51.1515496, - "lon": 0.8746696, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN24 41", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN24 41D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 600042929, - "lat": 51.1562677, - "lon": 0.8690473, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 600045898, - "lat": 51.1500969, - "lon": 0.8834157, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN24 56", - "royal_cypher": "EIIR", - "source": "survey", - "survey_point": "2023-03-18" - } -}, -{ - "type": "node", - "id": 600045900, - "lat": 51.1501135, - "lon": 0.8834438, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "description": "This is a postbox for Parcels and Franked mail.", - "old_ref": "TN24 55", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TN24 55P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 600048454, - "lat": 51.1461637, - "lon": 0.8860295, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN24 100D", - "royal_cypher": "EVIIR", - "source": "survey", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 600048456, - "lat": 51.1476167, - "lon": 0.8834816, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN24 46D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-05-21" - } -}, -{ - "type": "node", - "id": 600048782, - "lat": 51.1432181, - "lon": 0.9075973, - "tags": { - "amenity": "post_box", - "ref": "TN24 34" - } -}, -{ - "type": "node", - "id": 600053594, - "lat": 50.3477416, - "lon": -3.5701102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 175D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "https://www.mapillary.com/app/?lat=50.3476862842686&lng=-3.570101587105142&z=17&pKey=7VCRfBEtMraKJXPrjfG5hg&focus=photo;survey;streetlevel imagery;aerial imagery", - "survey:date": "2018-05-28" - } -}, -{ - "type": "node", - "id": 600053598, - "lat": 50.3510839, - "lon": -3.5668804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ6", - "ref": "TQ6 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 600067237, - "lat": 50.5830661, - "lon": -4.7200689, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 600068036, - "lat": 51.8246761, - "lon": -2.0375576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 277" - } -}, -{ - "type": "node", - "id": 600086826, - "lat": 50.5486554, - "lon": -3.6014310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 600115136, - "lat": 53.1675193, - "lon": -4.0913137, - "tags": { - "amenity": "post_box", - "ref": "LL57 180" - } -}, -{ - "type": "node", - "id": 600120808, - "lat": 55.8816697, - "lon": -3.1256446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EH18", - "ref": "EH18 83", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 600199086, - "lat": 52.9337273, - "lon": -1.2576612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Derby Road, Valmont Road", - "post_box:type": "pillar", - "ref": "NG9 654", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600199202, - "lat": 52.9463559, - "lon": -1.2740239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Trowell Grove", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "NG9 669D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 600348547, - "lat": 52.4351003, - "lon": -1.8352575, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 724D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 600365261, - "lat": 52.0688170, - "lon": -2.7714110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "observation" - } -}, -{ - "type": "node", - "id": 600379024, - "lat": 51.1501260, - "lon": -0.1449090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 203" - } -}, -{ - "type": "node", - "id": 600387936, - "lat": 52.0075156, - "lon": -2.1124961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "GL20 56D" - } -}, -{ - "type": "node", - "id": 600390090, - "lat": 52.0047940, - "lon": -2.1108693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "old_ref": "TWT 386 Northway PO", - "post_box:type": "pillar", - "ref": "GL20 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600391567, - "lat": 52.0093920, - "lon": -2.0870070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL20 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 600395391, - "lat": 52.0337233, - "lon": -2.0942591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600395393, - "lat": 52.0281890, - "lon": -2.0818341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL20 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 600406071, - "lat": 51.6974210, - "lon": -1.9513753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Siddington", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 47D" - } -}, -{ - "type": "node", - "id": 600425814, - "lat": 50.5933529, - "lon": -4.7360952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "573848988206446", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "survey:date": "2023-05-31" - } -}, -{ - "type": "node", - "id": 600430309, - "lat": 51.4791562, - "lon": -0.8614795, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 600430310, - "lat": 51.4731621, - "lon": -0.8595376, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 600430311, - "lat": 51.4684304, - "lon": -0.8612064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 600430312, - "lat": 51.4734628, - "lon": -0.8563940, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 600440076, - "lat": 51.1755189, - "lon": 0.3801065, - "tags": { - "amenity": "post_box", - "ref": "TN12 329" - } -}, -{ - "type": "node", - "id": 600440866, - "lat": 52.6117456, - "lon": -1.1678741, - "tags": { - "amenity": "post_box", - "ref": "LE3 694" - } -}, -{ - "type": "node", - "id": 600443815, - "lat": 51.1405297, - "lon": 0.8930987, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN24 2" - } -}, -{ - "type": "node", - "id": 600443878, - "lat": 51.1449775, - "lon": 0.8973674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TN24 296", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 600443880, - "lat": 51.1469929, - "lon": 0.8928547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN24 319", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN24 319D" - } -}, -{ - "type": "node", - "id": 600443901, - "lat": 51.1362561, - "lon": 0.9071259, - "tags": { - "amenity": "post_box", - "ref": "TN24 12" - } -}, -{ - "type": "node", - "id": 600446074, - "lat": 51.1367545, - "lon": 0.8901732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN24 235" - } -}, -{ - "type": "node", - "id": 600449163, - "lat": 51.1369946, - "lon": 0.8799822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN24 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600449166, - "lat": 51.1373033, - "lon": 0.8822762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TN24 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 600456654, - "lat": 55.9709267, - "lon": -2.9473918, - "tags": { - "amenity": "post_box", - "man_made": "street_cabinet", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH32 269", - "street_cabinet": "postal_service" - } -}, -{ - "type": "node", - "id": 600479049, - "lat": 52.6290971, - "lon": 0.1684125, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 600479347, - "lat": 52.6357166, - "lon": 0.1724212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 70" - } -}, -{ - "type": "node", - "id": 600500163, - "lat": 50.7395335, - "lon": -1.8591330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "fixme": "Check collection times -- is there a saturday collection too?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH8 167", - "ref:GB:uprn": "10015383436", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 600500598, - "lat": 53.8436028, - "lon": -1.5831367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 55", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 600534545, - "lat": 53.1770288, - "lon": -4.0736257, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL59 19" - } -}, -{ - "type": "node", - "id": 600549227, - "lat": 52.5493047, - "lon": -1.3586345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "LE10 21", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 600674940, - "lat": 51.1809904, - "lon": -0.1653053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH6 229", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Photo P142-0193" - } -}, -{ - "type": "node", - "id": 600830878, - "lat": 52.0010452, - "lon": -2.1453877, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL20 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600874688, - "lat": 51.9949648, - "lon": -2.1465690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "note": "Indoor plastic box in supermarket foyer", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "GL20 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600879904, - "lat": 55.1314286, - "lon": -1.6336448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE22 6AU", - "ref": "NE22 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600879916, - "lat": 55.1289914, - "lon": -1.5896343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "NE22 5DS", - "ref": "NE22 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 600879920, - "lat": 55.1339583, - "lon": -1.5680376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "NE22 5LZ", - "ref": "NE22 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600879985, - "lat": 55.1530702, - "lon": -1.5765790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE22 7AQ", - "ref": "NE22 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600903713, - "lat": 53.1855187, - "lon": -4.0799393, - "tags": { - "amenity": "post_box", - "ref": "LL57 297" - } -}, -{ - "type": "node", - "id": 600911301, - "lat": 54.9735430, - "lon": -2.1023690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 600911397, - "lat": 54.9746512, - "lon": -2.1089161, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE46 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 600996273, - "lat": 50.9228258, - "lon": -0.6023104, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 601121072, - "lat": 50.4635098, - "lon": -4.7172097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL31 141D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 601121086, - "lat": 50.5106369, - "lon": -4.7300829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "the box has VR above the letter slot but the door has been replaced with one with GR on it", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR;GR" - } -}, -{ - "type": "node", - "id": 601121092, - "lat": 50.5083305, - "lon": -4.7174981, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 601121094, - "lat": 50.5752200, - "lon": -4.7202991, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 601121095, - "lat": 50.5780198, - "lon": -4.7136521, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 601121127, - "lat": 50.5948776, - "lon": -4.7193772, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 601166904, - "lat": 52.3538811, - "lon": 0.0315344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE28 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 601166956, - "lat": 52.3574706, - "lon": 0.0329070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE28 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601167051, - "lat": 52.3572349, - "lon": 0.0376326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 230" - } -}, -{ - "type": "node", - "id": 601386677, - "lat": 52.4159927, - "lon": -4.0546405, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601455223, - "lat": 51.1228200, - "lon": -0.1928270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "note": "inside store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "P174-0202" - } -}, -{ - "type": "node", - "id": 601503040, - "lat": 50.6230742, - "lon": -1.1770282, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-18", - "check_date:collection_times": "2023-02-18", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 32D", - "ref:GB:uprn": "10015476602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/luccombe-road-po37-6aa/0000PO3732" - } -}, -{ - "type": "node", - "id": 601503043, - "lat": 50.6102575, - "lon": -1.1805896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-02-18", - "check_date:collection_times": "2023-02-18", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO37 235D", - "ref:GB:uprn": "10015317262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601503045, - "lat": 50.5974514, - "lon": -1.1868997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 234", - "ref:GB:uprn": "10015478672", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/bonchurch-shore-po37-6rb/000PO38234" - } -}, -{ - "type": "node", - "id": 601503092, - "lat": 50.6220644, - "lon": -1.1827763, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-05-22", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 104", - "ref:GB:uprn": "10015377753", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-22", - "website": "https://www.royalmail.com/services-near-you/postbox/church-road-po38-3es/000PO37104", - "wikimedia_commons": "File:Postbox opposite St Blaisius, Shanklin - geograph.org.uk - 3354076.jpg" - } -}, -{ - "type": "node", - "id": 601507425, - "lat": 50.7208559, - "lon": -1.1937956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO33 121", - "ref:GB:uprn": "10015466489", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/bartons-corner-po33-3bb/000PO33121" - } -}, -{ - "type": "node", - "id": 601513243, - "lat": 53.2463564, - "lon": -1.8583518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SK17 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601517663, - "lat": 51.4934816, - "lon": -0.1045749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 601517664, - "lat": 53.2193248, - "lon": -4.1599175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601517682, - "lat": 53.2232330, - "lon": -4.1518463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601520924, - "lat": 50.7272063, - "lon": -1.1876847, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-05", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "mapillary": "467136521527385", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 80", - "ref:GB:uprn": "10015353722", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/binstead-post-office-po33-3rp/0000PO3380" - } -}, -{ - "type": "node", - "id": 601595234, - "lat": 52.3996580, - "lon": 0.2623626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 601595244, - "lat": 52.3992872, - "lon": 0.2667741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 601608945, - "lat": 52.6614155, - "lon": 0.1594176, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 601661472, - "lat": 51.8072026, - "lon": -0.3422088, - "tags": { - "amenity": "post_box", - "ref": "AL5 8" - } -}, -{ - "type": "node", - "id": 601847814, - "lat": 51.4922587, - "lon": -0.2757200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 601853418, - "lat": 51.4489254, - "lon": -1.0475692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG31 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 601854894, - "lat": 50.6829751, - "lon": -3.6673379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 411D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 602010167, - "lat": 51.0438070, - "lon": -1.3520593, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO22 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602183571, - "lat": 52.0501647, - "lon": -2.1024771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TWR 012 Bredon's Norton SO", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL20 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 602183605, - "lat": 52.0485872, - "lon": -2.1029736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "A small lamp box, built in to a stone wall", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL20 37D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 602244101, - "lat": 51.2636288, - "lon": 0.4930619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME16 265" - } -}, -{ - "type": "node", - "id": 602275368, - "lat": 50.8135787, - "lon": -0.5308542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602279173, - "lat": 50.9362522, - "lon": -1.4470808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 344", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 602496865, - "lat": 52.7820105, - "lon": -2.7072971, - "tags": { - "amenity": "post_box", - "ref": "SY4 382" - } -}, -{ - "type": "node", - "id": 602531407, - "lat": 50.6703384, - "lon": -1.2099775, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 15:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 54", - "ref:GB:uprn": "10015402562", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/langbridge-po36-0na/0000PO3654" - } -}, -{ - "type": "node", - "id": 602534346, - "lat": 50.6365104, - "lon": -1.1736922, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 15", - "ref:GB:uprn": "10015284660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/arthurs-hill-po37-7ay/0000PO3715" - } -}, -{ - "type": "node", - "id": 602534350, - "lat": 50.6399101, - "lon": -1.1708522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-17", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO37 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/sandown-road-po37-6aa/0000PO3758" - } -}, -{ - "type": "node", - "id": 602540300, - "lat": 50.6495638, - "lon": -1.2675512, - "tags": { - "amenity": "post_box", - "mapillary": "396870458027332", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 230", - "ref:GB:uprn": "10003339752", - "survey:date": "2020-09-02", - "website": "https://www.royalmail.com/services-near-you/postbox/bohemia-po38-3nb/000PO38230" - } -}, -{ - "type": "node", - "id": 602605272, - "lat": 56.7154340, - "lon": -5.2290320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:45; Sa 12:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH33 58", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 602612042, - "lat": 51.5002640, - "lon": -0.2112144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W14 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 602636169, - "lat": 51.1155325, - "lon": -0.8000937, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU35 130" - } -}, -{ - "type": "node", - "id": 602636182, - "lat": 51.1192838, - "lon": -0.7945040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "lamp", - "ref": "GU35 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602636188, - "lat": 51.1215795, - "lon": -0.8045124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "GU35 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602655186, - "lat": 52.8436606, - "lon": -1.0155003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LE14 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 602657538, - "lat": 52.0174161, - "lon": -2.1655632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GL20 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602700167, - "lat": 51.5164127, - "lon": -0.2270295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 38D", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 602788857, - "lat": 50.9071646, - "lon": -1.4967614, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602788861, - "lat": 50.9050046, - "lon": -1.5077323, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 654D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602788863, - "lat": 50.9021788, - "lon": -1.5131859, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 602797905, - "lat": 52.6239923, - "lon": -2.1544117, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 602986736, - "lat": 51.4078782, - "lon": 0.4915157, - "tags": { - "amenity": "post_box", - "ref": "ME2 255" - } -}, -{ - "type": "node", - "id": 602986742, - "lat": 51.4062461, - "lon": 0.4858559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 191" - } -}, -{ - "type": "node", - "id": 602986753, - "lat": 51.3999561, - "lon": 0.4923111, - "tags": { - "amenity": "post_box", - "ref": "ME2 156" - } -}, -{ - "type": "node", - "id": 603024396, - "lat": 51.6439955, - "lon": -2.1646580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2015-08-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL8 209", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 603033571, - "lat": 52.6138343, - "lon": -2.1422836, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 603033578, - "lat": 52.6136067, - "lon": -2.1324091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 603033588, - "lat": 52.6035624, - "lon": -2.1305352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 603050275, - "lat": 51.7139143, - "lon": -1.9671479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "Lewis Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 603057782, - "lat": 51.7098675, - "lon": -1.9604479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "old_ref": "Watermoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 25D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 603068057, - "lat": 53.2641031, - "lon": -4.2156050, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL75 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603074856, - "lat": 53.2941176, - "lon": -4.2001818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL75 64D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 603090891, - "lat": 51.4984287, - "lon": -0.1109135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 55;SE1 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 603096676, - "lat": 51.1385183, - "lon": 0.9042566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN24 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603102427, - "lat": 52.6171204, - "lon": -2.1385894, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 603102433, - "lat": 52.6228972, - "lon": -2.1354130, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 603102447, - "lat": 52.6269196, - "lon": -2.1342471, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 603113379, - "lat": 51.0499090, - "lon": -1.3303776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO22 315" - } -}, -{ - "type": "node", - "id": 603130572, - "lat": 51.5113254, - "lon": -0.1253773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2E 67;WC2E 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 603131267, - "lat": 51.0614165, - "lon": -2.0070176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP3 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 603131286, - "lat": 51.0560704, - "lon": -1.9921315, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 603138118, - "lat": 51.0637771, - "lon": -2.0377048, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SP3 351D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 603146511, - "lat": 51.4997327, - "lon": -0.1068868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 64;SE1 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 603161149, - "lat": 50.9315576, - "lon": -0.0608465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN7 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603161167, - "lat": 50.9372262, - "lon": -0.0601504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 477" - } -}, -{ - "type": "node", - "id": 603161684, - "lat": 50.9461093, - "lon": -0.0577042, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN7 476" - } -}, -{ - "type": "node", - "id": 603174628, - "lat": 51.0223553, - "lon": -1.3379040, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO21 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603241819, - "lat": 50.7378020, - "lon": -3.9973245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "EX20 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 603260659, - "lat": 50.7372405, - "lon": -3.9991995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 603293902, - "lat": 51.0103116, - "lon": 0.7023867, - "tags": { - "amenity": "post_box", - "mapillary": "335580861265270", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN30 248", - "survey:date": "2020-07-22" - } -}, -{ - "type": "node", - "id": 603306698, - "lat": 50.7393622, - "lon": -4.0017718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX20 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 603643038, - "lat": 51.7275537, - "lon": -1.9763835, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref:GB:uprn": "10015846690", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603647252, - "lat": 51.6637961, - "lon": -1.8909465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 99D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 603686802, - "lat": 52.5173116, - "lon": -1.6269703, - "tags": { - "amenity": "post_box", - "ele": "119.5687256", - "ref": "B46 68" - } -}, -{ - "type": "node", - "id": 603741638, - "lat": 51.7841195, - "lon": -1.8772057, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL54 26" - } -}, -{ - "type": "node", - "id": 603741657, - "lat": 51.7894230, - "lon": -1.8720730, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL54 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603751173, - "lat": 52.5870614, - "lon": -1.9155395, - "tags": { - "amenity": "post_box", - "postal_code": "WS9", - "ref": "WS9 147", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 603760733, - "lat": 51.7588225, - "lon": -1.8307413, - "tags": { - "amenity": "post_box", - "note": "Out of Service (06/11/23)", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 603763152, - "lat": 53.1814697, - "lon": -4.0666291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 57" - } -}, -{ - "type": "node", - "id": 603765182, - "lat": 52.4017472, - "lon": 0.2707399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB7 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 603773420, - "lat": 52.6224966, - "lon": -1.9870152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "WS3", - "ref": "WS3 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 603773436, - "lat": 52.6276702, - "lon": -1.9961002, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-16", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 603783813, - "lat": 52.5207848, - "lon": -1.6059772, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B46 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603794180, - "lat": 50.9279947, - "lon": -1.4639996, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603794187, - "lat": 50.9189213, - "lon": -1.4903835, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-28", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603798052, - "lat": 51.4005572, - "lon": -1.0840382, - "tags": { - "amenity": "post_box", - "mapillary": "1089773271868719", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2022-02-12" - } -}, -{ - "type": "node", - "id": 603798094, - "lat": 51.4116821, - "lon": -1.0831579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 603798163, - "lat": 51.4027389, - "lon": -1.0896458, - "tags": { - "amenity": "post_box", - "mapillary": "381237393164695", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG7 53", - "source": "GPS", - "survey:date": "2021-01-09" - } -}, -{ - "type": "node", - "id": 603841207, - "lat": 51.2764345, - "lon": -0.0526047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 603865966, - "lat": 53.0076651, - "lon": -2.3254050, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603877881, - "lat": 52.5334287, - "lon": -2.3824893, - "tags": { - "amenity": "post_box", - "ref": "WV15 113" - } -}, -{ - "type": "node", - "id": 603881050, - "lat": 50.8932059, - "lon": -1.5307359, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603922260, - "lat": 51.6820214, - "lon": -1.9021694, - "tags": { - "amenity": "post_box", - "old_ref": "Old Horse & Groom", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 603946733, - "lat": 53.2285944, - "lon": -4.5202735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL64 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603987449, - "lat": 50.8167606, - "lon": -0.6101886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1307", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 603990546, - "lat": 50.8028543, - "lon": -0.6379156, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO22 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 603990550, - "lat": 50.8074728, - "lon": -0.6165889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 603995024, - "lat": 50.8249407, - "lon": -0.6429162, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-12", - "old_ref": "PO22 23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO22 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 604012707, - "lat": 53.2559600, - "lon": -1.4461450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S41 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 604315684, - "lat": 51.9466512, - "lon": -2.0619558, - "tags": { - "amenity": "post_box", - "note": "Inside Tesco store. May be a private box run by Tesco, rather than one collected by Royal Mail" - } -}, -{ - "type": "node", - "id": 604520851, - "lat": 52.8047772, - "lon": -2.6537443, - "tags": { - "amenity": "post_box", - "ref": "SY4 95" - } -}, -{ - "type": "node", - "id": 604988772, - "lat": 50.4761719, - "lon": -3.5706059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "postal_code": "TQ2", - "ref": "TQ2 254D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 605006487, - "lat": 50.4246652, - "lon": -3.5600163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ4", - "ref": "TQ4 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 605006496, - "lat": 50.4288946, - "lon": -3.5582486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ4", - "ref": "TQ4 137D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 605032249, - "lat": 50.7359929, - "lon": -4.0071636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 605097481, - "lat": 53.1923457, - "lon": -0.5989449, - "tags": { - "amenity": "post_box", - "source": "gps" - } -}, -{ - "type": "node", - "id": 605270371, - "lat": 52.0778552, - "lon": -1.9456737, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR11 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 605276236, - "lat": 52.4946777, - "lon": -0.3130080, - "tags": { - "amenity": "post_box", - "name": "Elm Road/Manor Road", - "post_box:type": "lamp", - "ref": "PE7 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 605393703, - "lat": 54.7920522, - "lon": -2.8169489, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA4 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 605393741, - "lat": 54.9075283, - "lon": -2.9420316, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-12-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CA3 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 605393746, - "lat": 54.9062339, - "lon": -2.9327913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CA3 474" - } -}, -{ - "type": "node", - "id": 605393775, - "lat": 54.9412666, - "lon": -2.9785781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CA6 401" - } -}, -{ - "type": "node", - "id": 605475872, - "lat": 52.0314417, - "lon": -1.9969277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "historic_operator": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 605477842, - "lat": 52.0835750, - "lon": -1.9509651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "WR11 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 605498097, - "lat": 51.4812432, - "lon": -2.5083291, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 1009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 606141219, - "lat": 53.1052246, - "lon": -2.8055627, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CH3 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 606175038, - "lat": 51.2376674, - "lon": -0.2068989, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "name": "High Street Reigate", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 606255563, - "lat": 52.9262010, - "lon": -1.2704510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Toton Lane", - "old_ref": "NG9 682", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 682D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607144694, - "lat": 52.9318868, - "lon": -1.2390706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 694D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607144699, - "lat": 52.9330473, - "lon": -1.2685602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Copeland Avenue, Saville Close", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 674D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607144768, - "lat": 52.9251611, - "lon": -1.2221280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "wall", - "ref": "NG9 622", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607144774, - "lat": 52.9261211, - "lon": -1.2168601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NG9 696;NG9 6960", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607144779, - "lat": 52.9293189, - "lon": -1.2181092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG9 620D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607144826, - "lat": 52.9329311, - "lon": -1.2167985, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 609D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 607289272, - "lat": 50.9676495, - "lon": -1.5631905, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 608494061, - "lat": 51.4770677, - "lon": -0.8683299, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 608494066, - "lat": 51.4777845, - "lon": -0.8662231, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 608494071, - "lat": 51.4861723, - "lon": -0.8696187, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 608527394, - "lat": 51.3821639, - "lon": -0.4591278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW17 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 608547864, - "lat": 52.9325891, - "lon": -1.2735644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Mill Road, Church Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG9 678D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 608547866, - "lat": 52.9359547, - "lon": -1.2675032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Hickings Lane, West Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG9 699D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 608547871, - "lat": 52.9361993, - "lon": -1.2637797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Central Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 684D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 608547878, - "lat": 52.9413974, - "lon": -1.2727412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Pasture Road, Moorbridge Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG9 679D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 608547912, - "lat": 52.9397386, - "lon": -1.2686286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Braddon Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG9 688D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 608547968, - "lat": 52.9369593, - "lon": -1.2580478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Central Avenue, Ewe Lamb Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG9 657D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 608749403, - "lat": 53.3479904, - "lon": -1.4330942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "S12 988", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 609352353, - "lat": 51.3366236, - "lon": -0.8024788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU17 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 609399127, - "lat": 51.4755417, - "lon": -0.8633549, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-12", - "old_ref": "RG10 61", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG10 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 609614321, - "lat": 54.0782878, - "lon": -1.1974398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 609625263, - "lat": 54.0823963, - "lon": -1.1360236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO61 342", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 609628797, - "lat": 54.0887415, - "lon": -1.1372064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO61 433" - } -}, -{ - "type": "node", - "id": 609635709, - "lat": 53.7267396, - "lon": -1.8603712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:10; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HX1 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 609636239, - "lat": 53.7269348, - "lon": -1.8607038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HX1 317" - } -}, -{ - "type": "node", - "id": 610355651, - "lat": 50.9699029, - "lon": -1.3309167, - "tags": { - "amenity": "post_box", - "ref": "SO50 592" - } -}, -{ - "type": "node", - "id": 610366306, - "lat": 56.4654255, - "lon": -2.9997888, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-20", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 610373039, - "lat": 50.9673460, - "lon": -1.3280030, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO50 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 610374749, - "lat": 50.9669369, - "lon": -1.3217405, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO50 681D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 610375781, - "lat": 50.9669749, - "lon": -1.3137717, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO50 713D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 610429994, - "lat": 52.4525290, - "lon": -1.8366211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B11 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 610450774, - "lat": 52.3981086, - "lon": 0.2633641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB7 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 610470178, - "lat": 51.1201994, - "lon": -1.3263556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 610475475, - "lat": 50.4452727, - "lon": -3.5883897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3 3", - "ref": "TQ3 331D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475477, - "lat": 50.4454379, - "lon": -3.5835436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ3 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475478, - "lat": 50.4475909, - "lon": -3.5843619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ3 3", - "ref": "TQ3 303D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475485, - "lat": 50.4460563, - "lon": -3.5783447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ3 1", - "ref": "TQ3 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475487, - "lat": 50.4485359, - "lon": -3.5727241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ3 1", - "ref": "TQ3 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475489, - "lat": 50.4475726, - "lon": -3.5694723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "TQ3 1", - "ref": "TQ3 226D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475492, - "lat": 50.4441467, - "lon": -3.5596245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ3 2", - "ref": "TQ3 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475505, - "lat": 50.4491361, - "lon": -3.5559113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "703040574088420", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ3 2", - "ref": "TQ3 114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2022-06-20", - "survey:date": "2022-06-20" - } -}, -{ - "type": "node", - "id": 610475507, - "lat": 50.4496677, - "lon": -3.5851583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "postal_code": "TQ3 1", - "ref": "TQ3 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475511, - "lat": 50.4499818, - "lon": -3.5768988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ3 1BP", - "ref": "TQ3 373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475512, - "lat": 50.4492417, - "lon": -3.5683131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3 1", - "ref": "TQ3 231D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610475514, - "lat": 50.4502441, - "lon": -3.5594361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "TQ3 1EE", - "ref": "TQ3 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496436, - "lat": 50.4354658, - "lon": -3.5876598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ3 3", - "ref": "TQ3 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496443, - "lat": 50.4356505, - "lon": -3.5818989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3 3QH", - "ref": "TQ3 195D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496446, - "lat": 50.4405866, - "lon": -3.5938536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ3 3LU", - "ref": "TQ3 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496448, - "lat": 50.4392289, - "lon": -3.5904450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "409833237445127", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ3 3", - "ref": "TQ3 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2020-08-23", - "survey:date": "2021-06-15" - } -}, -{ - "type": "node", - "id": 610496459, - "lat": 50.4408235, - "lon": -3.5890678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3 3", - "ref": "TQ3 349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496474, - "lat": 50.4396752, - "lon": -3.5848727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ3 3SU", - "ref": "TQ3 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496487, - "lat": 50.4384587, - "lon": -3.5830790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "TQ3 3", - "ref": "TQ3 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610496489, - "lat": 50.4430363, - "lon": -3.5855361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "TQ3 3SP", - "ref": "TQ3 266D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610507857, - "lat": 50.4376360, - "lon": -3.5752671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ3 3", - "ref": "TQ3 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610511504, - "lat": 50.4405325, - "lon": -3.5721517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ3 2", - "ref": "TQ3 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 610513730, - "lat": 50.9449687, - "lon": -1.4393642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 701" - } -}, -{ - "type": "node", - "id": 610553024, - "lat": 52.9064267, - "lon": -1.2327453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 610553028, - "lat": 52.9083046, - "lon": -1.2353261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG9 601", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 610553048, - "lat": 52.9102830, - "lon": -1.2259619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG9 632D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 610556922, - "lat": 54.9830972, - "lon": -1.6307803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 32", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 610924800, - "lat": 51.4837819, - "lon": -0.3289672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 255", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 610925822, - "lat": 51.4854138, - "lon": -0.3308443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 611015924, - "lat": 51.5583193, - "lon": -0.1434402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 21D" - } -}, -{ - "type": "node", - "id": 611063596, - "lat": 52.9270224, - "lon": -1.2095516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "NG9 645", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 611063620, - "lat": 52.9275691, - "lon": -1.2053561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 616D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 611063652, - "lat": 52.9298086, - "lon": -1.2026362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 641D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 611071478, - "lat": 52.4063480, - "lon": 0.2715440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB7 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 611071750, - "lat": 52.4088988, - "lon": 0.2986576, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB7 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 611092999, - "lat": 52.9195559, - "lon": -1.2270608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 611227090, - "lat": 53.1035889, - "lon": -2.7143994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 611711049, - "lat": 52.6594157, - "lon": -2.7976564, - "tags": { - "amenity": "post_box", - "ref": "SY3 238" - } -}, -{ - "type": "node", - "id": 611714595, - "lat": 52.6899104, - "lon": -2.7622339, - "tags": { - "amenity": "post_box", - "colour": "red", - "direction": "300", - "post_box:type": "wall", - "ref": "SY3 198", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 611715378, - "lat": 52.6875942, - "lon": -2.7704318, - "tags": { - "amenity": "post_box", - "ref": "SY3 21" - } -}, -{ - "type": "node", - "id": 611716042, - "lat": 52.6900491, - "lon": -2.7663898, - "tags": { - "amenity": "post_box", - "ref": "SY3 495" - } -}, -{ - "type": "node", - "id": 611717113, - "lat": 52.6866869, - "lon": -2.7805438, - "tags": { - "amenity": "post_box", - "ref": "SY5 108" - } -}, -{ - "type": "node", - "id": 611717813, - "lat": 52.6654108, - "lon": -2.8108018, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 355" - } -}, -{ - "type": "node", - "id": 611726555, - "lat": 50.8339804, - "lon": -0.1395777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 611729856, - "lat": 50.8331629, - "lon": -0.1447612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection plate missing on most recent survey (2022-02-02).", - "old_ref": "BN1 108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 108D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 611862218, - "lat": 55.5086338, - "lon": -4.6112190, - "tags": { - "amenity": "post_box", - "ref": "KA9 1" - } -}, -{ - "type": "node", - "id": 611884055, - "lat": 51.4254893, - "lon": -0.0215707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 60", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 611963595, - "lat": 51.4095449, - "lon": 0.0105900, - "tags": { - "amenity": "post_box", - "mapillary": "2540221122947107", - "post_box:type": "pillar", - "survey:date": "2019-09-21" - } -}, -{ - "type": "node", - "id": 612059663, - "lat": 52.0628902, - "lon": 1.1612584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP4 1067", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 612105778, - "lat": 50.7888806, - "lon": -3.1955977, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 612135830, - "lat": 51.1296917, - "lon": -0.1830761, - "tags": { - "amenity": "post_box", - "ref": "RH10 68" - } -}, -{ - "type": "node", - "id": 612424499, - "lat": 54.9689240, - "lon": -2.4089244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE49 44" - } -}, -{ - "type": "node", - "id": 612549207, - "lat": 54.9738361, - "lon": -2.3655817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE47 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 612567303, - "lat": 54.9805890, - "lon": -2.3544335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE47 147" - } -}, -{ - "type": "node", - "id": 612567321, - "lat": 54.9759106, - "lon": -2.3477503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE47 57" - } -}, -{ - "type": "node", - "id": 612770065, - "lat": 52.9068265, - "lon": -1.4722807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 110", - "source": "gps" - } -}, -{ - "type": "node", - "id": 612940896, - "lat": 54.5136905, - "lon": -3.1406243, - "tags": { - "amenity": "post_box", - "note": "Georgian Hovis post box in wall has been replaced with a rectangular Elizabethan one", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CA12 234", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 612955426, - "lat": 54.5177624, - "lon": -3.1484021, - "tags": { - "amenity": "post_box", - "ref": "CA12 127", - "source": "survey" - } -}, -{ - "type": "node", - "id": 612958960, - "lat": 51.7876123, - "lon": -3.9888384, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA18 91" - } -}, -{ - "type": "node", - "id": 612958984, - "lat": 51.7881041, - "lon": -3.9967477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Old SA18 360 was probably across road on former Parcyrhun post office corner house. This replacement is at bus stop.", - "old_ref": "SA18 360", - "post_box:type": "lamp", - "ref": "SA18 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 612959233, - "lat": 51.7862387, - "lon": -4.0102936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "PO closed", - "post_box:type": "pillar", - "ref": "SA18 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 612959336, - "lat": 51.7820900, - "lon": -4.0194383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 433", - "post_box:type": "lamp", - "ref": "SA18 433D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 612959422, - "lat": 51.7750671, - "lon": -4.0268789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 275", - "post_box:type": "lamp", - "ref": "SA18 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 613147675, - "lat": 53.8527672, - "lon": -1.8199712, - "tags": { - "amenity": "post_box", - "ref": "BD16 610" - } -}, -{ - "type": "node", - "id": 613530715, - "lat": 51.4772788, - "lon": -0.0688753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 613598912, - "lat": 51.8096017, - "lon": 0.1509573, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 613611710, - "lat": 52.9020347, - "lon": -1.3119888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "DE72 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 613611766, - "lat": 52.9165196, - "lon": -1.3142928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DE72 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 613611772, - "lat": 52.9154174, - "lon": -1.2894543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Longmoor Lane, Collin Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 278D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 613611778, - "lat": 52.9233224, - "lon": -1.2816445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Derby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 677D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 613611779, - "lat": 52.9239204, - "lon": -1.2783317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Lawrence Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG9 683D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 613675380, - "lat": 50.7304853, - "lon": -1.1625361, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 1011", - "ref:GB:uprn": "10015823257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/ryde-post-office-po33-2ad/00PO331011" - } -}, -{ - "type": "node", - "id": 613777323, - "lat": 57.4785112, - "lon": -4.2218263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 167", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614124960, - "lat": 51.8133845, - "lon": 0.1515573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM21 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614226149, - "lat": 52.1928438, - "lon": -1.7057313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2017-08-09", - "colour": "gold", - "name": "Bridge Street", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614396943, - "lat": 50.4189067, - "lon": -3.6309908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "post", - "post_box:type": "lamp", - "postal_code": "TQ9", - "ref": "TQ9 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 614464538, - "lat": 53.9780850, - "lon": -1.5341475, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 614597422, - "lat": 51.1386847, - "lon": 0.2305452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 614619220, - "lat": 50.7401167, - "lon": -2.4585820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5396389640381824", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT2 29" - } -}, -{ - "type": "node", - "id": 614672560, - "lat": 52.7008243, - "lon": -2.7450423, - "tags": { - "amenity": "post_box", - "ref": "SY3 29" - } -}, -{ - "type": "node", - "id": 614672950, - "lat": 52.6964629, - "lon": -2.7510471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY3 471", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 614865372, - "lat": 51.0762724, - "lon": -4.0601969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX31 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "walked with GPS" - } -}, -{ - "type": "node", - "id": 614922496, - "lat": 52.9513584, - "lon": -1.2804525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "location": "Trowell Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 668", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922515, - "lat": 52.9359502, - "lon": -1.2519318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "location": "Bramcote Post Office", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 628", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 614922532, - "lat": 52.9364073, - "lon": -1.2468349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 660D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922537, - "lat": 52.9379886, - "lon": -1.2444769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "NG9 637D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922556, - "lat": 52.9368231, - "lon": -1.2305672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 647", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922561, - "lat": 52.9391405, - "lon": -1.2384354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 659", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922578, - "lat": 52.9390790, - "lon": -1.2315884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 692D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922595, - "lat": 52.9413839, - "lon": -1.2359583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG9 651D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922607, - "lat": 52.9524288, - "lon": -1.2423945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG8 115D", - "ref:GB:uprn": "200001378901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922617, - "lat": 52.9562844, - "lon": -1.2642048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 671D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614922621, - "lat": 52.9382714, - "lon": -1.2231652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 666D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614925953, - "lat": 52.1896395, - "lon": -1.9680400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR7 431", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614925957, - "lat": 52.1932711, - "lon": -1.9609144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR7 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614925959, - "lat": 52.1949748, - "lon": -1.9557069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR7 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614925960, - "lat": 52.1900591, - "lon": -1.9371640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR7 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 614942711, - "lat": 52.0031929, - "lon": -2.1183737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "GL20 67D" - } -}, -{ - "type": "node", - "id": 615222236, - "lat": 50.7413499, - "lon": -3.3770400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "colour": "red", - "drive_through": "no", - "name": "Rockbeare Manor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 2LT", - "ref": "EX5 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615223090, - "lat": 50.7460341, - "lon": -3.3909925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "name": "Rockbeare Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 2EG", - "ref": "EX5 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615262931, - "lat": 50.3956378, - "lon": -3.5675345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ5", - "ref": "TQ5 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 615361220, - "lat": 52.7194301, - "lon": -2.7512357, - "tags": { - "amenity": "post_box", - "ref": "SY1 18" - } -}, -{ - "type": "node", - "id": 615423728, - "lat": 52.9568591, - "lon": -1.3291722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615423737, - "lat": 52.9550353, - "lon": -1.3216607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615423759, - "lat": 52.9264395, - "lon": -1.2880420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "location": "Town Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG10 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615423822, - "lat": 52.9408936, - "lon": -1.2665525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 615423831, - "lat": 52.9423082, - "lon": -1.2633587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Ilkeston Road, Matthews Court", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG9 625D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615423873, - "lat": 52.9591809, - "lon": -1.3154635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615423879, - "lat": 52.9631874, - "lon": -1.3079899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615423889, - "lat": 52.9636617, - "lon": -1.2999079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "post_box:type": "pillar", - "ref": "DE7 1330", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615423892, - "lat": 52.9662599, - "lon": -1.3049174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615423896, - "lat": 52.9613109, - "lon": -1.2958852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1308", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 615423917, - "lat": 52.9555924, - "lon": -1.2780861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG9 670D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615476633, - "lat": 50.3741461, - "lon": -3.5429263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ5", - "ref": "TQ5 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 615476672, - "lat": 50.3861533, - "lon": -3.5197454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ5", - "ref": "TQ5 146", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615503210, - "lat": 50.3901947, - "lon": -3.5147278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "TQ5", - "ref": "TQ5 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 615546590, - "lat": 52.6229741, - "lon": -1.9955151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 615546597, - "lat": 52.6252112, - "lon": -2.0037768, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 615576166, - "lat": 52.0028731, - "lon": -0.4973480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK45 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 615576180, - "lat": 52.0028700, - "lon": -0.4973689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK45 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 615650088, - "lat": 57.8981984, - "lon": -6.7985333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HS3 78", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615675540, - "lat": 50.8571677, - "lon": -2.1578265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT11 21D", - "ref:GB:uprn": "10015709590", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 615698389, - "lat": 51.6424853, - "lon": -2.1989442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "collection_times_checked": "2015-08-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL8 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615745279, - "lat": 53.1915908, - "lon": -4.0631754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 216" - } -}, -{ - "type": "node", - "id": 615766318, - "lat": 50.8553208, - "lon": -2.1568667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT11 170D", - "ref:GB:uprn": "10015459013", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 615814469, - "lat": 52.9223695, - "lon": -1.2210762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "wall", - "ref": "NG9 623", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615814473, - "lat": 52.9278652, - "lon": -1.2264869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 649D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615814481, - "lat": 52.9193798, - "lon": -1.2049622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG9 614", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615814503, - "lat": 52.9283210, - "lon": -1.1977151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "NG9 799", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615814505, - "lat": 52.9283472, - "lon": -1.1977634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 14:00", - "mail:franked": "yes", - "mail:pre-paid": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG9 800P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615814509, - "lat": 52.9372893, - "lon": -1.2257294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 631D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 615834581, - "lat": 54.7385132, - "lon": -1.4667789, - "tags": { - "amenity": "post_box", - "flickr": "https://www.flickr.com/photos/32159881@N03/3141814062", - "ref": "DH6 332" - } -}, -{ - "type": "node", - "id": 615934413, - "lat": 53.2175678, - "lon": -4.1059888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LL57 107", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 615934920, - "lat": 50.8136816, - "lon": -1.0763710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615936729, - "lat": 53.2167186, - "lon": -4.1008413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL57 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615937646, - "lat": 53.2079795, - "lon": -3.0411198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 615953521, - "lat": 53.3257287, - "lon": -1.3127573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S21 1137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 615953523, - "lat": 53.3233955, - "lon": -1.3092210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "58", - "post_box:type": "wall", - "ref": "S21 265D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 615963197, - "lat": 52.3651284, - "lon": 0.0127936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 616116995, - "lat": 51.6418143, - "lon": -4.0273690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA5 465D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 616218683, - "lat": 57.3395686, - "lon": -5.6507970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 14:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV40 24", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616218685, - "lat": 57.3019720, - "lon": -5.7136882, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV40 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616218689, - "lat": 57.2853018, - "lon": -5.7145589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1863150497477698", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV40 11", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 616218691, - "lat": 57.2826414, - "lon": -5.6283374, - "tags": { - "amenity": "post_box", - "ref": "IV40 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616219828, - "lat": 51.7708529, - "lon": -4.0398255, - "tags": { - "amenity": "post_box", - "ref": "SA18 151" - } -}, -{ - "type": "node", - "id": 616251729, - "lat": 51.4135995, - "lon": -3.4287360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Eglwys Brewis Post Box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF62 93D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 616269264, - "lat": 53.9784161, - "lon": -1.5374663, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 616280034, - "lat": 53.2405133, - "lon": -2.6050162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 112", - "royal_cypher": "EIIR", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 616335271, - "lat": 55.8772872, - "lon": -4.3007706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "mapillary": "152299776865159", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G12 78", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2020-10-21" - } -}, -{ - "type": "node", - "id": 616385000, - "lat": 52.9088261, - "lon": -1.2560434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "indoor": "yes", - "post_box:type": "indoor_pillar", - "ref": "NG9 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616385005, - "lat": 52.9096257, - "lon": -1.2530040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG9 695D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616385006, - "lat": 52.9035914, - "lon": -1.2519537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 639", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616385959, - "lat": 51.6047529, - "lon": 0.0684696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "IG8 157D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 616426342, - "lat": 55.8798320, - "lon": -4.3053910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G12 190", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 616430041, - "lat": 53.9532111, - "lon": -1.0765721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-02-14", - "check_date:collection_times": "2024-02-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO10 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 616448551, - "lat": 52.6876838, - "lon": -2.7532832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SY3 458;SY3 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 616678070, - "lat": 51.4802663, - "lon": -0.8564895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "mapillary": "594802805906484", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "parcel_mail_in": "yes", - "post_box:type": "pillar", - "ref": "RG10 72", - "royal_cypher": "EIIR", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 616702706, - "lat": 51.3140474, - "lon": 0.8816635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "ME13", - "ref": "ME13 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616712577, - "lat": 51.4752897, - "lon": -0.8874899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "578020124508451", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 616722792, - "lat": 53.3566905, - "lon": -2.5560966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 616725313, - "lat": 50.6905597, - "lon": -3.4410876, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX3 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616757491, - "lat": 51.4534723, - "lon": -2.5965682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BS1 410;BS1 409", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 616761495, - "lat": 52.9204997, - "lon": -1.2939867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Hayworth Road", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616761572, - "lat": 52.9233928, - "lon": -1.2894293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG10 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 616875994, - "lat": 52.3565667, - "lon": 0.0020089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 53" - } -}, -{ - "type": "node", - "id": 616876067, - "lat": 52.3571060, - "lon": 0.0080620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 255" - } -}, -{ - "type": "node", - "id": 617197078, - "lat": 51.0794283, - "lon": -4.0614768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 617251450, - "lat": 52.9172858, - "lon": -1.2497546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 673D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617251498, - "lat": 52.9234909, - "lon": -1.2405984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "wall", - "ref": "NG9 656", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617372821, - "lat": 52.9094305, - "lon": -1.2865127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617372823, - "lat": 52.9096453, - "lon": -1.2900012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "NG10 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617372830, - "lat": 52.9011223, - "lon": -1.2784015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG10 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617372846, - "lat": 52.9002083, - "lon": -1.2659944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG10 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617372938, - "lat": 52.9126997, - "lon": -1.2941748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG10 200D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 617372985, - "lat": 52.9158747, - "lon": -1.2313130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG9 642", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617551655, - "lat": 53.5203734, - "lon": -2.6543867, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 617643522, - "lat": 53.2336560, - "lon": -0.5584780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 617754680, - "lat": 50.6399279, - "lon": -3.4048796, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617754914, - "lat": 50.6388814, - "lon": -3.3987005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 617872250, - "lat": 54.5309301, - "lon": -1.0638318, - "tags": { - "amenity": "post_box", - "ref": "TS14 296", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 617872255, - "lat": 54.5352979, - "lon": -1.0533639, - "tags": { - "amenity": "post_box", - "name": "Westgate", - "ref": "TS14 207", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 617892270, - "lat": 52.4233180, - "lon": -1.9055750, - "tags": { - "amenity": "post_box", - "note": "No Reference", - "ref": "B14 1243" - } -}, -{ - "type": "node", - "id": 618142169, - "lat": 51.9746774, - "lon": -0.7664213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK17 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618170623, - "lat": 51.8496795, - "lon": -3.0023307, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 618217190, - "lat": 53.8288923, - "lon": -3.0456695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 618269169, - "lat": 51.8779945, - "lon": -0.5097020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU6 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618283892, - "lat": 52.9243511, - "lon": -1.2964606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Wood Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG10 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS; survey" - } -}, -{ - "type": "node", - "id": 618338029, - "lat": 57.2821804, - "lon": -5.5247212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV40 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618340608, - "lat": 57.2339994, - "lon": -5.4251545, - "tags": { - "amenity": "post_box", - "ref": "IV40 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618340627, - "lat": 57.2411393, - "lon": -5.4557300, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IV40 16", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618395979, - "lat": 51.5373522, - "lon": -0.0614539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618396504, - "lat": 57.2334409, - "lon": -5.3850840, - "tags": { - "amenity": "post_box", - "ref": "IV40 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618396507, - "lat": 57.2277531, - "lon": -5.4031221, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-12", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "ref": "IV40 9", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618396512, - "lat": 57.2259328, - "lon": -5.4066752, - "tags": { - "amenity": "post_box", - "ref": "IV40 17", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618412162, - "lat": 57.2201265, - "lon": -5.5393657, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV40 27", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618436128, - "lat": 57.2128910, - "lon": -5.6215704, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV40 28", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618437107, - "lat": 50.9198074, - "lon": -1.4251462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO15 401" - } -}, -{ - "type": "node", - "id": 618437108, - "lat": 50.9211578, - "lon": -1.4213471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 278D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 618437109, - "lat": 50.9237545, - "lon": -1.4190512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO15 405" - } -}, -{ - "type": "node", - "id": 618437110, - "lat": 50.9285968, - "lon": -1.4001429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO17 435D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 618442787, - "lat": 57.1993732, - "lon": -5.6310082, - "tags": { - "amenity": "post_box", - "ref": "IV40 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618447496, - "lat": 51.5628448, - "lon": 0.0334230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618447943, - "lat": 57.1344921, - "lon": -5.5664702, - "tags": { - "amenity": "post_box", - "ref": "IV40 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618447951, - "lat": 57.1246140, - "lon": -5.5527600, - "tags": { - "amenity": "post_box", - "ref": "IV40 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618673614, - "lat": 51.4877842, - "lon": -0.8629712, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 618673615, - "lat": 51.4833514, - "lon": -0.8596136, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 618700049, - "lat": 52.1100711, - "lon": -2.3139692, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 618700051, - "lat": 52.1148947, - "lon": -2.3100241, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR14 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618700052, - "lat": 52.1181378, - "lon": -2.3106547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR14 122" - } -}, -{ - "type": "node", - "id": 618700054, - "lat": 52.1211636, - "lon": -2.3039054, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "WR14 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618724476, - "lat": 52.1370159, - "lon": -2.2484580, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR2 490" - } -}, -{ - "type": "node", - "id": 618724482, - "lat": 52.1508841, - "lon": -2.2431602, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR2 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618724486, - "lat": 52.1590465, - "lon": -2.2621243, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 08:15", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR2 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618725899, - "lat": 53.4075270, - "lon": -2.9894760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "New-style business box L2 463 on North John Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L2 463", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box L2 463, 2019.jpg" - } -}, -{ - "type": "node", - "id": 618725901, - "lat": 53.4057649, - "lon": -2.9923084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "Wall-mounted brass post box L2 756 outside the Corn Exchange post office, Indial Buildings, Liverpool.", - "location": "in the wall by the entrance to the India Building", - "note": "unusual GVR cypher with V in it (not the usual one without V)", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "L2 756", - "royal_cypher": "GVR", - "wikimedia_commons": "File:George V post box, India Buildings.jpg" - } -}, -{ - "type": "node", - "id": 618725902, - "lat": 53.4049625, - "lon": -2.9877109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QE II off-street post box L1 31 inside the ground floor of WH Smith, 1 - 3 South John Street, Liverpool.", - "location": "ground floor of WH Smith", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_box", - "ref": "L1 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L1 31 at WH Smith, South John Street.jpg" - } -}, -{ - "type": "node", - "id": 618725930, - "lat": 53.4095048, - "lon": -2.9924064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR type A post box L3 335 in the commercial sector of Liverpool. L3 337 also visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L3 335 on Bixteth Street.jpg" - } -}, -{ - "type": "node", - "id": 618725937, - "lat": 53.4094855, - "lon": -2.9923717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "description": "Business post box L3 337 in the commercial sector of Liverpool. L3 335 also visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L3 337", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box L3 337 on Bixteth Street.jpg" - } -}, -{ - "type": "node", - "id": 618725946, - "lat": 53.4087252, - "lon": -2.9936185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Victorian wall-mounted post box L3 172 on Old Hall Street, Liverpool opposite Ormond Street.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L3 172D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:Post box on Old Hall Street, Liverpool" - } -}, -{ - "type": "node", - "id": 618725950, - "lat": 53.4074497, - "lon": -2.9915760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "George V double post box L2 579 by Carron & Company on High Street, Liverpool, to the rear of the Town Hall.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L2 579", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box, High Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 618733010, - "lat": 51.4720890, - "lon": -0.0681656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618792493, - "lat": 52.8887630, - "lon": -1.3915549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "wall", - "ref": "DE72 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618792538, - "lat": 52.8895120, - "lon": -1.3649432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "DE72 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618792556, - "lat": 52.9063300, - "lon": -1.3662305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE72 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618792584, - "lat": 52.9206806, - "lon": -1.2988651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Derby Road, York Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618836244, - "lat": 52.8833300, - "lon": -1.3943255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "DE72 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618836254, - "lat": 52.9095323, - "lon": -1.3806902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DE72 85D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836269, - "lat": 52.9091559, - "lon": -1.3695093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE72 456D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836275, - "lat": 52.8712030, - "lon": -1.3615948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE72 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 618836289, - "lat": 52.8968376, - "lon": -1.3495828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DE72 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836298, - "lat": 52.8948480, - "lon": -1.3423391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "DE72 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836304, - "lat": 52.8948682, - "lon": -1.3362793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DE72 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836307, - "lat": 52.8961065, - "lon": -1.3272100, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DE72 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS; survey" - } -}, -{ - "type": "node", - "id": 618836317, - "lat": 52.8975314, - "lon": -1.3182394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DE72 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 618836322, - "lat": 52.8981560, - "lon": -1.3053510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "DE72 311", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836331, - "lat": 52.9116345, - "lon": -1.3785294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DE72 163D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836353, - "lat": 52.9180024, - "lon": -1.3721193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DE72 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836362, - "lat": 52.9245589, - "lon": -1.3715708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE72 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 618836970, - "lat": 50.7490095, - "lon": -3.2791270, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 618889233, - "lat": 50.9157260, - "lon": 0.4854208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TN33 9991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618905708, - "lat": 53.2136849, - "lon": -4.0903907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 618912066, - "lat": 51.7184696, - "lon": 0.6726300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 619005904, - "lat": 52.5047325, - "lon": 0.0800818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE15 41" - } -}, -{ - "type": "node", - "id": 619006044, - "lat": 52.5095994, - "lon": 0.0839595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE15 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619006105, - "lat": 52.5169532, - "lon": 0.0808631, - "tags": { - "amenity": "post_box", - "ref": "PE15 77" - } -}, -{ - "type": "node", - "id": 619006139, - "lat": 52.5154504, - "lon": 0.0938439, - "tags": { - "amenity": "post_box", - "fixme": "check ref", - "post_box:type": "lamp", - "ref": "PE15 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619055162, - "lat": 53.3768086, - "lon": -2.9206517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "L18 23" - } -}, -{ - "type": "node", - "id": 619055427, - "lat": 51.1958450, - "lon": -0.2694380, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to find ref when collection plate repaired / returned", - "note": "no ref on plate 2011-12-15 - P170-0156" - } -}, -{ - "type": "node", - "id": 619055913, - "lat": 53.3836819, - "lon": -2.9064068, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L18 734", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 619056855, - "lat": 53.3796964, - "lon": -2.9131507, - "tags": { - "amenity": "post_box", - "ref": "L18 481" - } -}, -{ - "type": "node", - "id": 619056856, - "lat": 53.3875323, - "lon": -2.9105194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "354016203516475", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L18 230", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 619058943, - "lat": 53.3851444, - "lon": -2.8952490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "563635698314340", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L18 763", - "survey:date": "2021-08-26" - } -}, -{ - "type": "node", - "id": 619065492, - "lat": 53.3683785, - "lon": -2.9121692, - "tags": { - "amenity": "post_box", - "ref": "L19 752" - } -}, -{ - "type": "node", - "id": 619134351, - "lat": 53.8174529, - "lon": -3.0377655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 619177006, - "lat": 50.5413182, - "lon": -3.5999366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ12 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 619220095, - "lat": 53.1971407, - "lon": -4.0629788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL57 54" - } -}, -{ - "type": "node", - "id": 619297442, - "lat": 51.7291132, - "lon": -1.2329900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX4 590" - } -}, -{ - "type": "node", - "id": 619297443, - "lat": 51.7327869, - "lon": -1.2310619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX4 136" - } -}, -{ - "type": "node", - "id": 619313191, - "lat": 52.9189044, - "lon": -1.3075040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Second Avenue, Derby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE72 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619313408, - "lat": 52.9288914, - "lon": -1.2934411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "location:description": "Spencer Avenue, Stanton Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG10 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619313419, - "lat": 52.9306089, - "lon": -1.2958161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Coronation Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619313474, - "lat": 52.9287570, - "lon": -1.2881142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location:description": "Church Street", - "manufacturer": "A. Handyside & Co. Ltd, Derby & London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:narrow_aperture": "yes", - "post_box:type": "pillar", - "ref": "NG10 97D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 619331985, - "lat": 52.9377927, - "lon": -1.3090118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE7 1343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619336261, - "lat": 54.6536262, - "lon": -1.4490459, - "tags": { - "amenity": "post_box", - "ref": "TS21 391" - } -}, -{ - "type": "node", - "id": 619336274, - "lat": 54.6666853, - "lon": -1.4483754, - "tags": { - "amenity": "post_box", - "ref": "TS21 234" - } -}, -{ - "type": "node", - "id": 619349194, - "lat": 54.6485661, - "lon": -1.5103338, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 619375943, - "lat": 57.3160330, - "lon": -5.4612598, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV40 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619376195, - "lat": 57.3163194, - "lon": -5.4128945, - "tags": { - "amenity": "post_box", - "ref": "IV40 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619378379, - "lat": 50.7943825, - "lon": -1.0642145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO4 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619380373, - "lat": 50.7987260, - "lon": -1.0782639, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 619395805, - "lat": 52.1062635, - "lon": -2.3296438, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "description": "CP7 Lamp box embedded in gatepost.", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619401914, - "lat": 50.7955913, - "lon": -0.6515011, - "tags": { - "amenity": "post_box", - "ref": "PO22 90" - } -}, -{ - "type": "node", - "id": 619401921, - "lat": 50.7937975, - "lon": -0.6395940, - "tags": { - "amenity": "post_box", - "ref": "PO22 50D" - } -}, -{ - "type": "node", - "id": 619401923, - "lat": 50.7944048, - "lon": -0.6295806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "colour": "red", - "post_box:type": "pillar", - "ref": "PO22 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 619401926, - "lat": 50.7921739, - "lon": -0.5988291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "last_checked": "2021-05-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 619411351, - "lat": 52.0792216, - "lon": -2.3322885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "nocode", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "description": "At North end of terrace of houses/shops", - "historic_operator": "Post Office", - "old_ref": "M069 Malvern Wells P.O.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR14 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619422107, - "lat": 52.0787202, - "lon": -2.3270528, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "fixme": "Might be an idea to tidy up geomy. of GL when I'm there.", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619424206, - "lat": 53.2342724, - "lon": -1.3619394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ele": "90.49", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619430592, - "lat": 52.0477003, - "lon": -2.3127839, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619430593, - "lat": 52.0382390, - "lon": -2.2845118, - "tags": { - "amenity": "post_box", - "ref": "WR13 91" - } -}, -{ - "type": "node", - "id": 619457972, - "lat": 51.5368962, - "lon": -0.5185799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL0 101" - } -}, -{ - "type": "node", - "id": 619466009, - "lat": 56.5887265, - "lon": -3.3372886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 134D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 619466054, - "lat": 56.5855995, - "lon": -3.3306193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 2D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 619466276, - "lat": 56.5879422, - "lon": -3.3439843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 102D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 619476659, - "lat": 51.0961183, - "lon": 0.0300942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH18 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619498547, - "lat": 52.1497634, - "lon": -2.1813122, - "tags": { - "amenity": "post_box", - "ref": "WR5 159" - } -}, -{ - "type": "node", - "id": 619498556, - "lat": 52.1718534, - "lon": -2.1830161, - "tags": { - "amenity": "post_box", - "ref": "WR5 298" - } -}, -{ - "type": "node", - "id": 619498559, - "lat": 52.1800961, - "lon": -2.1899616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WR5 308", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 619498560, - "lat": 52.1826138, - "lon": -2.1889433, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "historic_operator": "none", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR5 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 619498578, - "lat": 52.1815433, - "lon": -2.1838227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WR5 505", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 619498580, - "lat": 52.1640449, - "lon": -2.1643127, - "tags": { - "amenity": "post_box", - "ref": "WR5 117" - } -}, -{ - "type": "node", - "id": 619551104, - "lat": 52.3513096, - "lon": 0.0101218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 123" - } -}, -{ - "type": "node", - "id": 619783039, - "lat": 52.7526780, - "lon": -2.7790570, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 259" - } -}, -{ - "type": "node", - "id": 619790556, - "lat": 52.7270344, - "lon": -2.7719191, - "tags": { - "amenity": "post_box", - "ref": "SY4 509" - } -}, -{ - "type": "node", - "id": 619869157, - "lat": 57.8366670, - "lon": -3.8275528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 620020661, - "lat": 52.9158313, - "lon": -1.2919897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "location": "Sandringham Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG10 440", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 620078010, - "lat": 52.3590057, - "lon": -1.2926018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 213", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 620083247, - "lat": 53.9341214, - "lon": -1.0713396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO10 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 620083251, - "lat": 53.9451659, - "lon": -1.0775148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-01-15", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO10 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 620088854, - "lat": 53.9435867, - "lon": -1.0739386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO10 236", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 620119720, - "lat": 52.3542618, - "lon": 0.0065113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 98" - } -}, -{ - "type": "node", - "id": 620532275, - "lat": 51.6411235, - "lon": -4.0196347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA5 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 620532276, - "lat": 51.6427450, - "lon": -4.0177985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 620536707, - "lat": 52.4683255, - "lon": 0.0385510, - "tags": { - "amenity": "post_box", - "ref": "PE16 42" - } -}, -{ - "type": "node", - "id": 620536791, - "lat": 52.4576508, - "lon": 0.0472611, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE16 5", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 620536908, - "lat": 52.4605949, - "lon": 0.0448684, - "tags": { - "amenity": "post_box", - "ref": "PE16 31" - } -}, -{ - "type": "node", - "id": 620737879, - "lat": 50.6046395, - "lon": -3.5345613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 620749209, - "lat": 50.5845781, - "lon": -3.4800944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX7 341D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 620751687, - "lat": 51.5492867, - "lon": -0.1959315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW6 34", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 620774330, - "lat": 52.4933338, - "lon": 0.0554128, - "tags": { - "amenity": "post_box", - "ref": "PE15 3" - } -}, -{ - "type": "node", - "id": 620774343, - "lat": 52.4960329, - "lon": 0.0599511, - "tags": { - "amenity": "post_box", - "colour": "gold", - "ref": "PE15 34" - } -}, -{ - "type": "node", - "id": 620774425, - "lat": 52.4972214, - "lon": 0.0664272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE15 54" - } -}, -{ - "type": "node", - "id": 620774464, - "lat": 52.4999751, - "lon": 0.0745175, - "tags": { - "amenity": "post_box", - "ref": "PE15 162" - } -}, -{ - "type": "node", - "id": 620810374, - "lat": 52.9362364, - "lon": -1.2113386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 610D", - "ref:GB:uprn": "10015452877", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 620848976, - "lat": 52.9292365, - "lon": -1.2114683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG9 617", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 620848982, - "lat": 52.9322596, - "lon": -1.2114749, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG9 633D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 620900426, - "lat": 53.9388675, - "lon": -1.0630554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO10 508D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 620988723, - "lat": 53.3893124, - "lon": -2.9490192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Edward VII post box L8 114 by McDowall & Stevens on Croxteth Road, near junction of Sefton Park Road.", - "manufacturer": "McDowall Stevens & Co.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 114", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box, Croxteth Road.jpg" - } -}, -{ - "type": "node", - "id": 620990553, - "lat": 53.4038188, - "lon": -2.9731997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box L3 7 on Mount Pleasant, Liverpool, near to Rodney Street.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Mount Pleasant near Rodney Street.jpg" - } -}, -{ - "type": "node", - "id": 620990554, - "lat": 53.4047454, - "lon": -2.9768725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box L3 617 outside Riley's Bar on Mount Pleasant, Liverpool.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 617", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Mount Pleasant near Brownlow Hill.jpg" - } -}, -{ - "type": "node", - "id": 621057222, - "lat": 53.3954472, - "lon": -2.9393732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "611036383582554", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 120", - "survey:date": "2021-10-26" - } -}, -{ - "type": "node", - "id": 621355486, - "lat": 53.3816020, - "lon": -2.9090225, - "tags": { - "amenity": "post_box", - "note": "Inside Tesco. Check store opening times.", - "ref": "L18 466" - } -}, -{ - "type": "node", - "id": 621355492, - "lat": 53.3710478, - "lon": -2.9150092, - "tags": { - "amenity": "post_box", - "ref": "L18 680" - } -}, -{ - "type": "node", - "id": 621418295, - "lat": 57.2394435, - "lon": -5.8474888, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV42 111", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 621418989, - "lat": 57.2728166, - "lon": -5.7275619, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV40 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 621420635, - "lat": 57.2808533, - "lon": -5.7148012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 14:45", - "note": "ref obscured by sticker, but someone had scraped off the relevant bit for me!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IV40 33", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 621420652, - "lat": 57.2806790, - "lon": -5.7100859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV40 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 621538531, - "lat": 53.3897238, - "lon": -2.9364503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1959232507609361", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L17 301" - } -}, -{ - "type": "node", - "id": 621538532, - "lat": 53.3898710, - "lon": -2.9231036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 459" - } -}, -{ - "type": "node", - "id": 621594966, - "lat": 53.4084271, - "lon": -2.9891433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "Double G type post box L2 216 on Moorfields, Liverpool. It is next to L2 218", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L2 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L2 216 on Moorfields.jpg" - } -}, -{ - "type": "node", - "id": 621668760, - "lat": 52.4590115, - "lon": -1.2051200, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 621834036, - "lat": 53.4894774, - "lon": -2.5228025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WN7 8" - } -}, -{ - "type": "node", - "id": 621869409, - "lat": 51.5551666, - "lon": -1.7803860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN1 79", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 622035535, - "lat": 52.9147222, - "lon": -1.2859008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 622066828, - "lat": 52.9048642, - "lon": -1.2835352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 622066831, - "lat": 52.9048583, - "lon": -1.2779826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG10 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 622100553, - "lat": 51.3405724, - "lon": -2.1997426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 622133163, - "lat": 51.3360751, - "lon": -2.1978946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 622153066, - "lat": 51.3209941, - "lon": -2.2052999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 43", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 622161541, - "lat": 53.2061728, - "lon": -3.0655897, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 622161545, - "lat": 53.2110932, - "lon": -3.0661075, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 622161546, - "lat": 53.2100300, - "lon": -3.0595630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 622378688, - "lat": 51.5989415, - "lon": -0.1275785, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N22 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 622397346, - "lat": 53.8458126, - "lon": -0.4974228, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 622397350, - "lat": 53.8783553, - "lon": -0.5118089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 622535077, - "lat": 54.7766783, - "lon": -1.5794072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH1 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 622535080, - "lat": 54.7734594, - "lon": -1.5711530, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-12", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH1 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 622535082, - "lat": 54.7793256, - "lon": -1.5816938, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 356", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 622552750, - "lat": 51.5064186, - "lon": -0.1472194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 68;W1J 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 623254505, - "lat": 51.5045279, - "lon": -0.1476784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 67D;W1J 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 623257813, - "lat": 51.5036547, - "lon": -0.1496163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Apertures marked \"Stamped\" and \"Franked\". Only one aperture had acollection info and ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 66D;W1J 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "survey by GNSS RTK" - } -}, -{ - "type": "node", - "id": 623322877, - "lat": 51.8744960, - "lon": -0.5052703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU6 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 623357644, - "lat": 51.5090246, - "lon": -0.1377448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Left Stamped;Right franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1S 94;W1S 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 623425421, - "lat": 52.5801080, - "lon": -1.9642026, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 95", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 623632321, - "lat": 53.9293216, - "lon": -2.9800537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 623632354, - "lat": 53.9357909, - "lon": -2.9574868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "FY6 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 623632369, - "lat": 53.9318418, - "lon": -2.9097817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 623645548, - "lat": 51.5805948, - "lon": -1.7781866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 304" - } -}, -{ - "type": "node", - "id": 623666817, - "lat": 53.9261018, - "lon": -2.9925847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 41D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 623666941, - "lat": 53.8869058, - "lon": -2.9742081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 623666944, - "lat": 53.8768504, - "lon": -2.9621905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 623667038, - "lat": 53.8896096, - "lon": -2.9276029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 623872442, - "lat": 55.9387349, - "lon": -3.2010412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 149", - "royal_cypher": "VR", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 623993698, - "lat": 51.4579960, - "lon": -0.0653759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 624077995, - "lat": 50.7302343, - "lon": -1.1540696, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 40", - "ref:GB:uprn": "10015369555", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/simeon-street-po33-1aa/0000PO3340" - } -}, -{ - "type": "node", - "id": 624177459, - "lat": 51.1332149, - "lon": -0.6456755, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-20", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 624185106, - "lat": 52.1061835, - "lon": -2.2736981, - "tags": { - "amenity": "post_box", - "collection_plate": "uncoded", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "old_ref": "M014 Guarlford Church", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR13 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 624244195, - "lat": 50.5190082, - "lon": -3.6381631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 624256468, - "lat": 51.1286844, - "lon": -0.5973842, - "tags": { - "amenity": "post_box", - "ref": "GU8 72" - } -}, -{ - "type": "node", - "id": 624265169, - "lat": 52.1822660, - "lon": -2.2073556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 105" - } -}, -{ - "type": "node", - "id": 624265193, - "lat": 52.1490926, - "lon": -2.1702152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR5 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 624272352, - "lat": 54.7452255, - "lon": -1.6445720, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-21", - "ref": "DH7 102" - } -}, -{ - "type": "node", - "id": 624272444, - "lat": 54.7506300, - "lon": -1.6421691, - "tags": { - "amenity": "post_box", - "ref": "DH7 259" - } -}, -{ - "type": "node", - "id": 624300747, - "lat": 52.1776294, - "lon": -2.1768589, - "tags": { - "amenity": "post_box", - "ref": "WR5 406" - } -}, -{ - "type": "node", - "id": 624318849, - "lat": 53.4092215, - "lon": -2.9751630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box L3 203 on London Road, Liverpool near to Seymour Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L3 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on London Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 624318859, - "lat": 53.4093206, - "lon": -2.9717298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box L3 500 at Monument Place, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Monument Place.jpg" - } -}, -{ - "type": "node", - "id": 624392321, - "lat": 53.6971285, - "lon": -1.4994473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF1 550" - } -}, -{ - "type": "node", - "id": 624392333, - "lat": 53.7108481, - "lon": -1.5197742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "WF2 3" - } -}, -{ - "type": "node", - "id": 624404410, - "lat": 53.4087165, - "lon": -2.9675210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR post box L3 83 on Pembroke Place near Daulby Street.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Pembroke Place.jpg" - } -}, -{ - "type": "node", - "id": 624415858, - "lat": 50.4938543, - "lon": -3.5749136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "TQ12", - "ref": "TQ12 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 624492807, - "lat": 53.3728523, - "lon": -2.9338396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "L17 548", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 624493093, - "lat": 50.6996126, - "lon": -1.2938923, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 9", - "ref:GB:uprn": "10015403628", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/st-thomas-square-po30-1ae/00000PO309" - } -}, -{ - "type": "node", - "id": 624501448, - "lat": 51.2433630, - "lon": 0.6709856, - "tags": { - "amenity": "post_box", - "ref": "ME17 40" - } -}, -{ - "type": "node", - "id": 624501525, - "lat": 51.2404038, - "lon": 0.6786792, - "tags": { - "amenity": "post_box", - "ref": "ME17 117" - } -}, -{ - "type": "node", - "id": 624516028, - "lat": 50.6589308, - "lon": -3.7664260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 97D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 624520586, - "lat": 52.9954028, - "lon": -1.1225389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 624567988, - "lat": 50.6481724, - "lon": -3.7898249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ13 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 624633219, - "lat": 50.6409132, - "lon": -3.7831141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ13 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 624635596, - "lat": 53.2114907, - "lon": -3.0751261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 624643905, - "lat": 51.4894563, - "lon": -0.1148192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 624698490, - "lat": 51.4004801, - "lon": 0.4970580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "ME2", - "ref": "ME2 185" - } -}, -{ - "type": "node", - "id": 625116983, - "lat": 56.4384359, - "lon": -4.7132664, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-25", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK20 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 625277463, - "lat": 51.2735423, - "lon": 0.0386634, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-11", - "collection_times": "Mo-Fr 17:15, Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN16 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 625990469, - "lat": 50.3719458, - "lon": -4.1471443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL1 41;PL1 4100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-03" - } -}, -{ - "type": "node", - "id": 626090637, - "lat": 55.9435475, - "lon": -3.2359372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH12 420", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 626098840, - "lat": 53.9407161, - "lon": -1.0772116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO10 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 626113313, - "lat": 57.4713956, - "lon": -4.2307671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV3 358D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626171330, - "lat": 51.4057493, - "lon": -0.1090056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR7 274D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 626477798, - "lat": 55.5361871, - "lon": -1.7064026, - "tags": { - "amenity": "post_box", - "postal_code": "NE67", - "ref": "NE67 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626477825, - "lat": 55.5490598, - "lon": -1.6940815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NE67", - "ref": "NE67 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626477850, - "lat": 55.6075497, - "lon": -1.7146692, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-04", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "post_box:type": "pillar", - "postal_code": "NE69", - "ref": "NE69 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626477876, - "lat": 55.5764313, - "lon": -1.6669593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE68", - "ref": "NE68 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626491670, - "lat": 55.4198637, - "lon": -1.5823038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "NE66", - "ref": "NE66 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626491715, - "lat": 55.4967555, - "lon": -1.6344222, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "NE66", - "ref": "NE66 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626491725, - "lat": 55.4931222, - "lon": -1.6188560, - "tags": { - "amenity": "post_box", - "postal_code": "NE66", - "ref": "NE66 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626566554, - "lat": 52.7035089, - "lon": -2.7769611, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY3 594", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "verified": "20100318" - } -}, -{ - "type": "node", - "id": 626571233, - "lat": 52.7029661, - "lon": -2.7848929, - "tags": { - "amenity": "post_box", - "ref": "SY3 761" - } -}, -{ - "type": "node", - "id": 626572081, - "lat": 51.4364177, - "lon": 0.0456746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626572083, - "lat": 52.7057278, - "lon": -2.7871959, - "tags": { - "amenity": "post_box", - "ref": "SY3 408" - } -}, -{ - "type": "node", - "id": 626579074, - "lat": 55.3318937, - "lon": -1.5677904, - "tags": { - "amenity": "post_box", - "postal_code": "NE65", - "ref": "NE65 73", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626582230, - "lat": 55.2354144, - "lon": -1.5389023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "mapillary": "3824622394317241", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "NE61", - "ref": "NE61 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2020-09-13" - } -}, -{ - "type": "node", - "id": 626616742, - "lat": 55.0753130, - "lon": -1.4664280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE26 0RL", - "ref": "NE26 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626649828, - "lat": 54.9654717, - "lon": -1.3660313, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/5886876", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SR6", - "ref": "SR6 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626728334, - "lat": 54.8999859, - "lon": -1.3980931, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626728337, - "lat": 54.9072628, - "lon": -1.3850661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SR1", - "ref": "SR1 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 626780886, - "lat": 54.7992581, - "lon": -1.4066143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "DH6", - "ref": "DH6 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 627197416, - "lat": 53.3596302, - "lon": -2.5648087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA4 323", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 627589115, - "lat": 55.7737856, - "lon": -2.0106093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TD15 1NF", - "ref": "TD15 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 627589120, - "lat": 55.7705105, - "lon": -2.0051456, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "TD15 1BH", - "ref": "TD15 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 627589122, - "lat": 55.7730352, - "lon": -2.0085526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "728439292450137", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TD15 1JS", - "ref": "TD15 7", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 627783618, - "lat": 51.7556071, - "lon": 0.4693185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 400D" - } -}, -{ - "type": "node", - "id": 627837075, - "lat": 52.8985844, - "lon": -1.2710949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "NG10 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 627837083, - "lat": 52.9029166, - "lon": -1.2642579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 628065665, - "lat": 51.4861931, - "lon": -0.1868646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 628139640, - "lat": 51.5290802, - "lon": 0.7969748, - "tags": { - "amenity": "post_box", - "ref": "SS3 318" - } -}, -{ - "type": "node", - "id": 628139902, - "lat": 51.5270777, - "lon": 0.7818686, - "tags": { - "amenity": "post_box", - "ref": "SS3 28" - } -}, -{ - "type": "node", - "id": 628227517, - "lat": 51.5504367, - "lon": 0.7080972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 628227520, - "lat": 51.5511972, - "lon": 0.7044923, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 628227523, - "lat": 51.5477365, - "lon": 0.7039370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 628227530, - "lat": 51.5519552, - "lon": 0.7151363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 628243328, - "lat": 51.5486899, - "lon": 0.7217944, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 628618668, - "lat": 51.5164879, - "lon": -0.1489226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 21;W1G 221", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 629023869, - "lat": 53.8171455, - "lon": -0.3482668, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 629035135, - "lat": 51.5097558, - "lon": -0.3012108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 6D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 629041509, - "lat": 52.9374668, - "lon": -1.2730713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Pasture Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG9 675D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 629119881, - "lat": 52.7503014, - "lon": 0.3833351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 629253234, - "lat": 51.4399593, - "lon": -2.5195664, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 629384820, - "lat": 51.3098602, - "lon": -0.2988289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 629552478, - "lat": 51.7085084, - "lon": -3.9825459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA5 364D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 630065552, - "lat": 53.4109949, - "lon": -2.9731678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L3 141 on Stafford Street, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stafford Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 630121426, - "lat": 53.3787431, - "lon": -2.9410947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L17 225 on Aigburth Drive near its junction with Livingston Drive South.", - "name": "Aigburth Drive", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L17 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Aigburth Drive.jpg" - } -}, -{ - "type": "node", - "id": 630121429, - "lat": 53.3800456, - "lon": -2.9433322, - "tags": { - "amenity": "post_box", - "ref": "L17 372" - } -}, -{ - "type": "node", - "id": 630121433, - "lat": 53.3811676, - "lon": -2.9477996, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-14", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "wall", - "ref": "L17 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 630121441, - "lat": 53.3671188, - "lon": -2.9250250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "517781896058577", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L17 549", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 630121457, - "lat": 53.4008781, - "lon": -2.9664915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QE II type A post box L7 450 by McDowell, Stevens & Co on Myrtle Street", - "manufacturer": "McDowell Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L7 450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Myrtle Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 630355035, - "lat": 54.0624708, - "lon": -2.8011636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA1 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 630465507, - "lat": 51.5362988, - "lon": -0.1936384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 630485161, - "lat": 54.3445988, - "lon": -7.6387190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT74 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 630495492, - "lat": 51.5408924, - "lon": -0.1918885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW6 25" - } -}, -{ - "type": "node", - "id": 630501497, - "lat": 51.5489471, - "lon": -0.1912621, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-18", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW6 62", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 630502747, - "lat": 51.5507490, - "lon": -0.1915030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 15", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 630564271, - "lat": 53.5625716, - "lon": -0.6304010, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 630922848, - "lat": 51.1160984, - "lon": 0.0141356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631146506, - "lat": 51.5522180, - "lon": 0.7008431, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 631183744, - "lat": 52.9067134, - "lon": -1.2968158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG10 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631183800, - "lat": 52.9002163, - "lon": -1.2920169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Eng Scotland 2013", - "post_box:type": "pillar", - "ref": "NG10 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631184090, - "lat": 52.9019241, - "lon": -1.2826797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "wall", - "ref": "NG10 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631184469, - "lat": 52.9031873, - "lon": -1.2735171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG10 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631443649, - "lat": 52.4154824, - "lon": -4.0746081, - "tags": { - "amenity": "post_box", - "name": "Caradoc Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 23" - } -}, -{ - "type": "node", - "id": 631443650, - "lat": 52.4176313, - "lon": -4.0651520, - "tags": { - "amenity": "post_box", - "name": "University", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 109" - } -}, -{ - "type": "node", - "id": 631443651, - "lat": 52.4165883, - "lon": -4.0749810, - "tags": { - "amenity": "post_box", - "name": "Penglias Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 131" - } -}, -{ - "type": "node", - "id": 631443652, - "lat": 52.4177793, - "lon": -4.0806096, - "tags": { - "amenity": "post_box", - "name": "North Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 002" - } -}, -{ - "type": "node", - "id": 631443653, - "lat": 52.4202500, - "lon": -4.0844280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Victoria Terrace", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SY23 013", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 631443654, - "lat": 52.4169722, - "lon": -4.0703987, - "tags": { - "amenity": "post_box", - "name": "Penglais Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 197" - } -}, -{ - "type": "node", - "id": 631477674, - "lat": 51.8017714, - "lon": -0.1725321, - "tags": { - "amenity": "post_box", - "ref": "AL7 314" - } -}, -{ - "type": "node", - "id": 631486117, - "lat": 53.8356007, - "lon": -3.0433102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 631493205, - "lat": 52.1100894, - "lon": -2.3046454, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 631493253, - "lat": 52.1133820, - "lon": -2.3006467, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR14 145" - } -}, -{ - "type": "node", - "id": 631493334, - "lat": 52.1179123, - "lon": -2.3023555, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 631738653, - "lat": 51.8779486, - "lon": -0.5199904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 75", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631738658, - "lat": 51.8894912, - "lon": -0.5396239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU6 70", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631762282, - "lat": 54.1270257, - "lon": -2.2869660, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD24 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631777378, - "lat": 51.7389517, - "lon": -0.4714847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 631830585, - "lat": 51.0420320, - "lon": -1.0577909, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 631839262, - "lat": 52.1832516, - "lon": -2.2113092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 161", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 631839295, - "lat": 52.1779429, - "lon": -2.2023100, - "tags": { - "amenity": "post_box", - "ref": "WR5 325" - } -}, -{ - "type": "node", - "id": 631839318, - "lat": 52.1848880, - "lon": -2.2051699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 22" - } -}, -{ - "type": "node", - "id": 631839334, - "lat": 52.1851516, - "lon": -2.2149329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 631839354, - "lat": 52.1855068, - "lon": -2.2115216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 4" - } -}, -{ - "type": "node", - "id": 631839357, - "lat": 52.1867240, - "lon": -2.2130889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 512" - } -}, -{ - "type": "node", - "id": 631839388, - "lat": 52.1816750, - "lon": -2.1945433, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR5 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 631861417, - "lat": 54.7277902, - "lon": -1.9607749, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519579", - "post_box:type": "pillar", - "ref": "DL13 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 631878658, - "lat": 54.7272814, - "lon": -1.9558811, - "tags": { - "amenity": "post_box", - "ref": "DL13 72" - } -}, -{ - "type": "node", - "id": 631977763, - "lat": 52.3303962, - "lon": -0.0316226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 286" - } -}, -{ - "type": "node", - "id": 632008754, - "lat": 51.3943671, - "lon": -0.2387676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 632222290, - "lat": 51.8029419, - "lon": -0.8078939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 632224845, - "lat": 51.8074133, - "lon": -0.8191484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 632354900, - "lat": 53.9457546, - "lon": -1.0549768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO10 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 632414679, - "lat": 52.6413630, - "lon": -0.3847922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE9 73" - } -}, -{ - "type": "node", - "id": 632416029, - "lat": 52.9842172, - "lon": -2.2244967, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 632448690, - "lat": 53.7857954, - "lon": -2.4072254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 632448923, - "lat": 53.7075448, - "lon": -0.7255367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 09:00", - "post_box:type": "lamp", - "ref": "DN14 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 632560298, - "lat": 51.3146338, - "lon": -0.6377489, - "tags": { - "amenity": "post_box", - "ref": "GU21 69" - } -}, -{ - "type": "node", - "id": 632644445, - "lat": 54.9320768, - "lon": -1.6010683, - "tags": { - "amenity": "post_box", - "ref": "NE9 88" - } -}, -{ - "type": "node", - "id": 632645565, - "lat": 54.9335673, - "lon": -1.6029198, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "NE9 68" - } -}, -{ - "type": "node", - "id": 632655557, - "lat": 52.9060365, - "lon": -1.3867921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DE72 628D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 632655566, - "lat": 52.9062621, - "lon": -1.3800636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE72 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 632655571, - "lat": 52.9048305, - "lon": -1.3726277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DE72 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 632655666, - "lat": 52.8787752, - "lon": -1.2986323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 632655756, - "lat": 52.8875856, - "lon": -1.2878689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 632676226, - "lat": 51.1668288, - "lon": -0.2898562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH5 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:ref": "P170-0134" - } -}, -{ - "type": "node", - "id": 632856878, - "lat": 52.1907833, - "lon": -2.2025365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 528" - } -}, -{ - "type": "node", - "id": 632856880, - "lat": 52.1944435, - "lon": -2.2007771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR5 26" - } -}, -{ - "type": "node", - "id": 632856881, - "lat": 52.1845763, - "lon": -2.1750194, - "tags": { - "amenity": "post_box", - "ref": "WR5 41" - } -}, -{ - "type": "node", - "id": 632856883, - "lat": 52.1924656, - "lon": -2.1901332, - "tags": { - "amenity": "post_box", - "ref": "WR5 98" - } -}, -{ - "type": "node", - "id": 632856885, - "lat": 52.1937303, - "lon": -2.1874128, - "tags": { - "amenity": "post_box", - "ref": "WR5 427" - } -}, -{ - "type": "node", - "id": 632859801, - "lat": 53.8060639, - "lon": -1.0393217, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 632859963, - "lat": 53.8004103, - "lon": -1.0398406, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 632890797, - "lat": 50.9172829, - "lon": -1.4328603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 187D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 632901693, - "lat": 52.9211978, - "lon": -1.3741437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DE72 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 632901737, - "lat": 52.9442959, - "lon": -1.3519359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE7 1306", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 632910484, - "lat": 52.5821488, - "lon": 0.2105135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE14 15", - "sealed": "yes" - } -}, -{ - "type": "node", - "id": 632910512, - "lat": 52.5919599, - "lon": 0.2068650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE14 95" - } -}, -{ - "type": "node", - "id": 632910534, - "lat": 52.5975349, - "lon": 0.2105955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE14 16" - } -}, -{ - "type": "node", - "id": 632910574, - "lat": 52.5799695, - "lon": 0.2201603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE14 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 632910717, - "lat": 52.6002361, - "lon": 0.2283859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 204" - } -}, -{ - "type": "node", - "id": 632910749, - "lat": 52.5982820, - "lon": 0.2368011, - "tags": { - "amenity": "post_box", - "note": "letters only", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "PE14 29" - } -}, -{ - "type": "node", - "id": 632910955, - "lat": 52.6096121, - "lon": 0.2334598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE14 88" - } -}, -{ - "type": "node", - "id": 633219133, - "lat": 54.9369343, - "lon": -1.5995638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE9 1069;NE9 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 633408137, - "lat": 51.0737892, - "lon": -4.0683474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 246" - } -}, -{ - "type": "node", - "id": 633423998, - "lat": 51.4106042, - "lon": -3.4681147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF61 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 633424002, - "lat": 51.4051755, - "lon": -3.4715178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF61 117D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 633426611, - "lat": 51.7874575, - "lon": -0.7877085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 633537719, - "lat": 54.7123000, - "lon": -1.7673665, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 633537721, - "lat": 54.7125763, - "lon": -1.7544586, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 634164895, - "lat": 51.3137532, - "lon": 0.7645549, - "tags": { - "amenity": "post_box", - "note": "Not sure whether this is actually a public postbox or one that's been purchased for private use." - } -}, -{ - "type": "node", - "id": 634164975, - "lat": 51.3275817, - "lon": 0.8271930, - "tags": { - "amenity": "post_box", - "postal_code": "ME9", - "ref": "ME9 48", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 634164988, - "lat": 51.3269526, - "lon": 0.8596151, - "tags": { - "amenity": "post_box", - "postal_code": "ME13", - "ref": "ME13 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 634164996, - "lat": 51.3330712, - "lon": 0.7977986, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME9 27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "ME9", - "ref": "ME9 27D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 634165001, - "lat": 51.3328862, - "lon": 0.8078137, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME9 12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ME9", - "ref": "ME9 12D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 634165015, - "lat": 51.3338547, - "lon": 0.8132952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 634182330, - "lat": 51.3419347, - "lon": 0.7347572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "ME10", - "ref": "ME10 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 634218218, - "lat": 54.5602619, - "lon": -1.2345756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TS5", - "ref": "TS5 195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 634218597, - "lat": 51.6428374, - "lon": -3.8258685, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 634229846, - "lat": 54.4479089, - "lon": -1.2793388, - "tags": { - "amenity": "post_box", - "description": "Royal Mail Post Box", - "operator": "Royal Mail", - "postal_code": "TS15", - "ref": "TS15 172" - } -}, -{ - "type": "node", - "id": 634229864, - "lat": 54.4826376, - "lon": -1.2800571, - "tags": { - "amenity": "post_box", - "postal_code": "TS15", - "ref": "TS15 269", - "source": "survey" - } -}, -{ - "type": "node", - "id": 634511969, - "lat": 50.8326141, - "lon": -0.5159667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN18 1295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634512817, - "lat": 50.8214624, - "lon": -0.4955890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN16 1448", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 634512818, - "lat": 50.8466175, - "lon": -0.4468998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN13 1783", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 634538468, - "lat": 51.3499607, - "lon": -1.0195801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG7 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634659333, - "lat": 53.7859381, - "lon": -2.4025440, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "ref": "BB6 43" - } -}, -{ - "type": "node", - "id": 634828568, - "lat": 52.4074273, - "lon": -1.8328406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B90 1007D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634898166, - "lat": 52.6399451, - "lon": 0.0288734, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634898235, - "lat": 52.6076328, - "lon": 0.0603555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE13 113" - } -}, -{ - "type": "node", - "id": 634898308, - "lat": 52.6114646, - "lon": 0.0644384, - "tags": { - "amenity": "post_box", - "note": "Post Office here no longer operational" - } -}, -{ - "type": "node", - "id": 634898341, - "lat": 52.6144608, - "lon": 0.0696441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 634898396, - "lat": 52.6178659, - "lon": 0.0741435, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 634898517, - "lat": 52.6356754, - "lon": 0.0677620, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634898778, - "lat": 52.6593461, - "lon": 0.0412806, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634898789, - "lat": 52.6469663, - "lon": 0.0448679, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 634898805, - "lat": 52.6614477, - "lon": 0.0549064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 634898845, - "lat": 52.6489307, - "lon": 0.0868118, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 634899284, - "lat": 52.6860659, - "lon": 0.1022750, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 634921550, - "lat": 51.4623812, - "lon": -2.5027958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "post_box:type": "wall", - "ref": "BS15 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 634996018, - "lat": 52.4452570, - "lon": -2.0491966, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 1229", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 635037980, - "lat": 52.4521264, - "lon": -2.0551770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B63", - "ref": "B63 1148", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 635075747, - "lat": 52.4467078, - "lon": -2.0563137, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 1397", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 635145433, - "lat": 52.5996219, - "lon": -1.4161124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CV13 0AA", - "ref": "CV13 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 635148688, - "lat": 53.8245502, - "lon": -3.0435122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 85D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 635148839, - "lat": 52.5354651, - "lon": -1.3937110, - "tags": { - "amenity": "post_box", - "postal_code": "LE10 0", - "ref": "LE10 35" - } -}, -{ - "type": "node", - "id": 635189330, - "lat": 52.6046544, - "lon": 0.1172865, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 635189966, - "lat": 52.6063509, - "lon": 0.2288392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 93" - } -}, -{ - "type": "node", - "id": 635298226, - "lat": 56.4485928, - "lon": -2.8804285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 120", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 635298339, - "lat": 56.4505988, - "lon": -2.8813212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 127D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 635403766, - "lat": 52.3177604, - "lon": -0.0378824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE27 88" - } -}, -{ - "type": "node", - "id": 635492532, - "lat": 51.9469169, - "lon": -3.3912129, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 635492829, - "lat": 51.9491488, - "lon": -3.3942465, - "tags": { - "amenity": "post_box", - "source": "approx" - } -}, -{ - "type": "node", - "id": 635520324, - "lat": 51.7041665, - "lon": -3.4100456, - "tags": { - "amenity": "post_box", - "source": "approx" - } -}, -{ - "type": "node", - "id": 635735460, - "lat": 50.1654681, - "lon": -5.4309139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 635846843, - "lat": 51.4236683, - "lon": -2.6151077, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 635866923, - "lat": 51.7070004, - "lon": -1.7869524, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 635866927, - "lat": 51.7076443, - "lon": -1.7813547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 635866961, - "lat": 51.7074245, - "lon": -1.7755897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5507310752672170", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL7 75D", - "survey:date": "2023-02-14" - } -}, -{ - "type": "node", - "id": 635870918, - "lat": 52.4118046, - "lon": -1.7638702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B91", - "ref": "B91 668", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 635893917, - "lat": 51.5189063, - "lon": -0.0232144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 635899095, - "lat": 52.4149900, - "lon": -1.7771422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 345", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 635905204, - "lat": 52.8092529, - "lon": -2.7360429, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 454" - } -}, -{ - "type": "node", - "id": 635910253, - "lat": 52.7721691, - "lon": -2.7531203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY4 169" - } -}, -{ - "type": "node", - "id": 635916091, - "lat": 52.8368516, - "lon": -2.6721666, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 635916653, - "lat": 52.8063389, - "lon": -2.7095860, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 347" - } -}, -{ - "type": "node", - "id": 635917959, - "lat": 52.8567166, - "lon": -2.6457892, - "tags": { - "amenity": "post_box", - "ref": "SY4 351" - } -}, -{ - "type": "node", - "id": 635975687, - "lat": 53.4903597, - "lon": -2.7671870, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 636062154, - "lat": 57.1432586, - "lon": -2.1615832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 637515308, - "lat": 53.7477029, - "lon": -0.3030410, - "tags": { - "amenity": "post_box", - "ref": "HU9 124" - } -}, -{ - "type": "node", - "id": 637515313, - "lat": 53.7623703, - "lon": -0.2927423, - "tags": { - "amenity": "post_box", - "fixme": "missing box number", - "note": "inside the Supermarket" - } -}, -{ - "type": "node", - "id": 637515327, - "lat": 53.7620512, - "lon": -0.2742473, - "tags": { - "amenity": "post_box", - "fixme": "missing box number", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 637798301, - "lat": 50.8532593, - "lon": -1.2238660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO15 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 637798307, - "lat": 50.8564715, - "lon": -1.2153063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 637825055, - "lat": 52.1184070, - "lon": -2.3266090, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR14 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 637825056, - "lat": 52.1196928, - "lon": -2.3296116, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR14 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 637862982, - "lat": 52.6147206, - "lon": 0.2536849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 164" - } -}, -{ - "type": "node", - "id": 637924714, - "lat": 57.1446041, - "lon": -2.1530733, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 6DN", - "addr:street": "King's Gate", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 637924717, - "lat": 57.1102286, - "lon": -2.0836039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:15", - "operator": "Royal Mail", - "ref": "AB12 589" - } -}, -{ - "type": "node", - "id": 637924723, - "lat": 57.1102336, - "lon": -2.0836279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45", - "operator": "Royal Mail", - "ref": "AB12 10" - } -}, -{ - "type": "node", - "id": 637924726, - "lat": 57.1158539, - "lon": -2.0801067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 586" - } -}, -{ - "type": "node", - "id": 637924730, - "lat": 57.1158514, - "lon": -2.0800851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB12 902P" - } -}, -{ - "type": "node", - "id": 638339780, - "lat": 54.9642146, - "lon": -1.4604451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638419697, - "lat": 51.8764370, - "lon": -0.5262736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU6 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 638542745, - "lat": 51.2268335, - "lon": -0.6420223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "last_checked": "2021-03-05", - "mapillary": "539283477674291", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU3 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual_estimate; survey", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 638555994, - "lat": 54.7516306, - "lon": -1.6301235, - "tags": { - "amenity": "post_box", - "ref": "DH7 155" - } -}, -{ - "type": "node", - "id": 638571633, - "lat": 51.2506622, - "lon": -0.7747655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638571755, - "lat": 51.2532318, - "lon": -0.7734876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "973785823975624", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU11 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 638572579, - "lat": 54.0566511, - "lon": -2.8137138, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA1 242" - } -}, -{ - "type": "node", - "id": 638572584, - "lat": 54.0596257, - "lon": -2.8221907, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA1 145" - } -}, -{ - "type": "node", - "id": 638580499, - "lat": 51.2531593, - "lon": -0.7674380, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638589198, - "lat": 51.2691720, - "lon": -0.7515484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 638589199, - "lat": 51.2716678, - "lon": -0.7494754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638593338, - "lat": 54.0561909, - "lon": -2.8105366, - "tags": { - "amenity": "post_box", - "ref": "LA1 139" - } -}, -{ - "type": "node", - "id": 638593886, - "lat": 54.7473427, - "lon": -1.6383726, - "tags": { - "amenity": "post_box", - "ref": "DH7 309" - } -}, -{ - "type": "node", - "id": 638593957, - "lat": 54.7497888, - "lon": -1.6320598, - "tags": { - "amenity": "post_box", - "ref": "DH7 253" - } -}, -{ - "type": "node", - "id": 638653814, - "lat": 53.4970832, - "lon": -0.3156124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LN7 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638710315, - "lat": 52.6435071, - "lon": 0.2369275, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 638731970, - "lat": 51.4081699, - "lon": -0.7251973, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 638750672, - "lat": 50.8469106, - "lon": -0.4566823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1781D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638790681, - "lat": 51.3472226, - "lon": 0.7122341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "note": "As at Thursday 10th August 2023 a postbox sticker notice says that from.a date in September the collection times will change.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;local knowledge;survey", - "source_1": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 638868729, - "lat": 51.3479457, - "lon": -2.3149431, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA2 279", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 638868791, - "lat": 51.3829594, - "lon": -2.3639190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA1 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 638868802, - "lat": 51.3776498, - "lon": -2.3569275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "BA1", - "ref": "BA1 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638868836, - "lat": 51.3871896, - "lon": -2.3699641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA1 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 638941695, - "lat": 52.5841885, - "lon": 0.2969527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE38 418", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 638967767, - "lat": 52.7147192, - "lon": -2.8059937, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "ref": "SY3 809", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 638980465, - "lat": 51.4336547, - "lon": -0.9394106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG6 529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639085677, - "lat": 53.9898511, - "lon": -0.4466286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639085914, - "lat": 54.0002223, - "lon": -0.4465150, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639086345, - "lat": 54.0023819, - "lon": -0.4401810, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 382", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 639096174, - "lat": 53.9181006, - "lon": -1.0966944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO23 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639105540, - "lat": 53.9144527, - "lon": -1.0951674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO23 543", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639119012, - "lat": 51.5151823, - "lon": -0.2041757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 22", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 639130847, - "lat": 51.5126006, - "lon": -0.1307472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1D 113;W1D 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639142956, - "lat": 51.5609362, - "lon": 0.6904607, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 639142961, - "lat": 51.5625903, - "lon": 0.6953316, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 639160363, - "lat": 56.8198760, - "lon": -5.1040575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH33 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639160365, - "lat": 56.8209458, - "lon": -5.1001726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH33 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639172446, - "lat": 51.1900571, - "lon": -0.7901688, - "tags": { - "amenity": "post_box", - "mapillary": "1446711179118951", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 90", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 639199320, - "lat": 55.0837376, - "lon": -1.6498454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "NE13 6DG", - "ref": "NE13 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639199352, - "lat": 55.0968192, - "lon": -1.6607623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE13 6DG", - "ref": "NE13 306", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 639199402, - "lat": 55.1365835, - "lon": -1.7225881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "postal_code": "NE61 6AQ", - "ref": "NE61 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639199426, - "lat": 55.1246105, - "lon": -1.7137563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "note": "Replacement box, definately South of the street.", - "post_box:type": "lamp", - "postal_code": "NE61 6AT", - "ref": "NE61 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639199647, - "lat": 55.1363160, - "lon": -1.6491712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "787108388616152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "NE61 6LP", - "ref": "NE61 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-24" - } -}, -{ - "type": "node", - "id": 639200171, - "lat": 50.7203159, - "lon": -3.4908035, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "568894961535102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX1 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 639203478, - "lat": 52.9535598, - "lon": -1.3059830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE7 765", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639203481, - "lat": 52.9535608, - "lon": -1.3060383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "mail:franked": "yes", - "mail:parcel": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DE7 1332P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 639203738, - "lat": 52.9546980, - "lon": -1.2964150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:15", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DE7 1312", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 639263770, - "lat": 52.1882403, - "lon": -2.1952748, - "tags": { - "amenity": "post_box", - "ref": "WR5 178" - } -}, -{ - "type": "node", - "id": 639273762, - "lat": 53.7616000, - "lon": -1.7323773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 142" - } -}, -{ - "type": "node", - "id": 639377958, - "lat": 53.4369310, - "lon": -1.4936280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S35 561", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "elbatrop" - } -}, -{ - "type": "node", - "id": 639769035, - "lat": 51.1834536, - "lon": 0.1105492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN8 144D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 639769179, - "lat": 51.1837721, - "lon": 0.1311880, - "tags": { - "amenity": "post_box", - "ref": "TN8 242" - } -}, -{ - "type": "node", - "id": 639769222, - "lat": 51.1958191, - "lon": 0.1110312, - "tags": { - "amenity": "post_box", - "ref": "TN8 231" - } -}, -{ - "type": "node", - "id": 639769487, - "lat": 51.1859918, - "lon": 0.1461438, - "tags": { - "amenity": "post_box", - "ref": "TN8 213" - } -}, -{ - "type": "node", - "id": 639769857, - "lat": 51.2019128, - "lon": 0.1471896, - "tags": { - "amenity": "post_box", - "ref": "TN8 238" - } -}, -{ - "type": "node", - "id": 639822544, - "lat": 52.7098829, - "lon": -2.8018736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SY3 491D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639908295, - "lat": 54.0041006, - "lon": -0.4474669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO25 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639908297, - "lat": 54.0064849, - "lon": -0.4496867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO25 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 639908373, - "lat": 54.0088501, - "lon": -0.4470305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO25 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 640130131, - "lat": 51.2174851, - "lon": -0.4519018, - "tags": { - "amenity": "post_box", - "ref": "GU5 233" - } -}, -{ - "type": "node", - "id": 640130246, - "lat": 51.2244244, - "lon": -0.4447270, - "tags": { - "amenity": "post_box", - "ref": "GU5 232" - } -}, -{ - "type": "node", - "id": 640177842, - "lat": 55.9957716, - "lon": -2.7172014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH39 361", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 640409851, - "lat": 52.0888820, - "lon": -2.3338432, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "description": "There is a fake box some 30m further into the Terrace; it is black and gold.", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 640429981, - "lat": 50.5576230, - "lon": -3.5941251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ12 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 640565544, - "lat": 51.5450142, - "lon": -0.2469317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 51" - } -}, -{ - "type": "node", - "id": 641758544, - "lat": 52.5683888, - "lon": -1.9150418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:15", - "postal_code": "WS9", - "ref": "WS9 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 641824387, - "lat": 51.8849324, - "lon": -1.7582696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL54 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 641824392, - "lat": 51.8834882, - "lon": -1.7563832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 641872060, - "lat": 50.9217474, - "lon": -1.4417876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 309" - } -}, -{ - "type": "node", - "id": 641872650, - "lat": 50.9216844, - "lon": -1.4358872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 641876558, - "lat": 50.9169603, - "lon": -1.4411257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 642211776, - "lat": 51.4392787, - "lon": -2.4844191, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 642220609, - "lat": 51.8454583, - "lon": -2.2489998, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL1 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 642272236, - "lat": 55.9718954, - "lon": -4.5675376, - "tags": { - "amenity": "post_box", - "ref": "G83 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642333422, - "lat": 55.9498523, - "lon": -4.5446265, - "tags": { - "amenity": "post_box", - "ref": "G82 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642341546, - "lat": 55.9458555, - "lon": -4.5457770, - "tags": { - "amenity": "post_box", - "fixme": "confirm ref (blurry photo)", - "ref": "G82 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642366044, - "lat": 55.9433565, - "lon": -4.5401781, - "tags": { - "amenity": "post_box", - "ref": "G82 70", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642431671, - "lat": 55.9363951, - "lon": -4.5188235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "250381167733933", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 642582989, - "lat": 54.2246190, - "lon": -2.6856200, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 111", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642593345, - "lat": 54.8683955, - "lon": -2.8945742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA1 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642593444, - "lat": 54.8785019, - "lon": -2.9086067, - "tags": { - "amenity": "post_box", - "ref": "CA1 348", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642605091, - "lat": 54.8795967, - "lon": -2.9164458, - "tags": { - "amenity": "post_box", - "ref": "CA1 358", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642621356, - "lat": 54.9093625, - "lon": -2.9376917, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-12-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA3 199", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642655451, - "lat": 55.6633063, - "lon": -3.9164262, - "tags": { - "amenity": "post_box", - "ref": "ML11 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642692420, - "lat": 55.6705128, - "lon": -3.9233837, - "tags": { - "amenity": "post_box", - "ref": "ML11 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 642989989, - "lat": 50.9235318, - "lon": -1.4344250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 642990534, - "lat": 50.9140230, - "lon": -1.4478240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO15 66D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 642991618, - "lat": 50.9145108, - "lon": -1.4518942, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 586D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 642997201, - "lat": 55.9082093, - "lon": -4.3843752, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643010102, - "lat": 52.8779685, - "lon": -2.1274716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST15 241" - } -}, -{ - "type": "node", - "id": 643022352, - "lat": 55.9148423, - "lon": -4.3762766, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643026164, - "lat": 55.9112821, - "lon": -4.3935578, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G81 1114D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643026166, - "lat": 55.9126168, - "lon": -4.4041616, - "tags": { - "amenity": "post_box", - "ref": "G81 280", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643026265, - "lat": 55.9103465, - "lon": -4.4002072, - "tags": { - "amenity": "post_box", - "ref": "G81 740", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643026406, - "lat": 55.9086116, - "lon": -4.3960765, - "tags": { - "amenity": "post_box", - "ref": "G81 149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643027080, - "lat": 55.9463177, - "lon": -3.2055331, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-15", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643419929, - "lat": 53.9511628, - "lon": -1.0853291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO23 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 643428753, - "lat": 53.9307673, - "lon": -1.0904371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO23 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 643440108, - "lat": 53.9217939, - "lon": -1.1003307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO23 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 643445826, - "lat": 53.9201449, - "lon": -1.0932550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO23 424", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 643467343, - "lat": 53.3760557, - "lon": -2.8749292, - "tags": { - "amenity": "post_box", - "ref": "L25 345" - } -}, -{ - "type": "node", - "id": 643467356, - "lat": 53.3815021, - "lon": -2.8600483, - "tags": { - "amenity": "post_box", - "ref": "L25 376" - } -}, -{ - "type": "node", - "id": 643467361, - "lat": 53.3826157, - "lon": -2.8668826, - "tags": { - "amenity": "post_box", - "ref": "L25 56" - } -}, -{ - "type": "node", - "id": 643486169, - "lat": 53.3745228, - "lon": -2.8659009, - "tags": { - "amenity": "post_box", - "ref": "L25 626" - } -}, -{ - "type": "node", - "id": 643497614, - "lat": 53.9202871, - "lon": -1.1061568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO23 488D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 643646993, - "lat": 51.4888323, - "lon": -3.2247234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 269D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643739121, - "lat": 51.5111646, - "lon": -0.0225410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "E14 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 643778660, - "lat": 53.9453728, - "lon": -1.0928274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-10-06", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO23 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 643879550, - "lat": 52.4826576, - "lon": -0.9106154, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 7DH", - "ref": "LE16 65" - } -}, -{ - "type": "node", - "id": 644041641, - "lat": 55.9367129, - "lon": -4.3018711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G62 688D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 644739947, - "lat": 52.6767656, - "lon": -2.7790706, - "tags": { - "amenity": "post_box", - "ref": "SY3 470" - } -}, -{ - "type": "node", - "id": 644771600, - "lat": 50.6775689, - "lon": -3.2466649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 83D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 644969366, - "lat": 53.8771473, - "lon": -0.4569487, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 644969375, - "lat": 53.9281867, - "lon": -0.4586607, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 645105604, - "lat": 53.7677790, - "lon": -1.1260480, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO8 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 645536118, - "lat": 54.1257820, - "lon": -0.1102202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO15 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 645591312, - "lat": 51.7643235, - "lon": -0.2259380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "AL10 18" - } -}, -{ - "type": "node", - "id": 645591316, - "lat": 51.7623298, - "lon": -0.2263800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 645684106, - "lat": 50.9243983, - "lon": -1.3097265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 679", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 645714918, - "lat": 50.9133321, - "lon": -1.3245725, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO30 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 645714986, - "lat": 50.9112790, - "lon": -1.3129183, - "tags": { - "amenity": "post_box", - "ref": "SO30 413" - } -}, -{ - "type": "node", - "id": 645715067, - "lat": 50.9134107, - "lon": -1.3040780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 645715143, - "lat": 50.9158281, - "lon": -1.3034018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 624D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 645715215, - "lat": 50.9216246, - "lon": -1.3038739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 646743866, - "lat": 52.6726114, - "lon": -2.7777342, - "tags": { - "amenity": "post_box", - "ref": "SY3 150" - } -}, -{ - "type": "node", - "id": 646864372, - "lat": 52.7663027, - "lon": -0.9547459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 646924211, - "lat": 51.0714598, - "lon": -4.0501787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 27D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 646965735, - "lat": 51.4400482, - "lon": -0.0566226, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 647059350, - "lat": 52.9025658, - "lon": -1.2976191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Lion Fdry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "NG10 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 647059558, - "lat": 52.9066557, - "lon": -1.2890750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 647059707, - "lat": 52.8971774, - "lon": -1.2717301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 12:00-18:30", - "post_box:type": "meter", - "ref": "NG10 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 647059710, - "lat": 52.8971671, - "lon": -1.2717416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NG10 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 647071893, - "lat": 51.5065310, - "lon": -0.2377198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 647401970, - "lat": 51.5039013, - "lon": -0.2346929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 648058351, - "lat": 51.3533033, - "lon": 0.5199486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 389D" - } -}, -{ - "type": "node", - "id": 648229957, - "lat": 54.7463219, - "lon": -1.6253752, - "tags": { - "amenity": "post_box", - "ref": "DH7 29" - } -}, -{ - "type": "node", - "id": 648237987, - "lat": 51.8227737, - "lon": -2.2677404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL2 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 648241127, - "lat": 51.2001368, - "lon": -0.6126628, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU7 96", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 648241195, - "lat": 51.2043565, - "lon": -0.6123498, - "tags": { - "amenity": "post_box", - "ref": "GU7 139" - } -}, -{ - "type": "node", - "id": 648261180, - "lat": 54.0107474, - "lon": -0.4474382, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 648261219, - "lat": 54.0048565, - "lon": -0.4388747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO25 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 648263506, - "lat": 51.5441223, - "lon": 0.7089238, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 648280652, - "lat": 51.8680713, - "lon": -0.0099145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "ele": "114", - "post_box:type": "lamp", - "ref": "SG11 69", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 648399409, - "lat": 52.0909247, - "lon": -1.8995453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "WR11 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 648399486, - "lat": 52.0924709, - "lon": -1.8941095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:manufacturer": "Carron Co. Falkirk", - "post_box:type": "wall", - "ref": "WR11 999D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 648465723, - "lat": 54.0672622, - "lon": -2.7964918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA1 208" - } -}, -{ - "type": "node", - "id": 648467028, - "lat": 57.1075892, - "lon": -2.2343791, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB13 0HU", - "addr:street": "Binghill Crescent", - "addr:village": "Milltimber", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 648584796, - "lat": 53.2807316, - "lon": -4.2187412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL75 2" - } -}, -{ - "type": "node", - "id": 648748741, - "lat": 51.8303927, - "lon": -0.1633272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL6 243D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 648750507, - "lat": 52.3575222, - "lon": -1.2420597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV22 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 648833669, - "lat": 55.9444114, - "lon": -3.2940849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH12 315", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 648833990, - "lat": 55.9248787, - "lon": -3.3060899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "EH11 401", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 648840975, - "lat": 51.4992529, - "lon": -0.7032729, - "tags": { - "amenity": "post_box", - "ref": "SL6 41" - } -}, -{ - "type": "node", - "id": 648840978, - "lat": 51.4950033, - "lon": -0.6915087, - "tags": { - "amenity": "post_box", - "ref": "SL6 67" - } -}, -{ - "type": "node", - "id": 648861164, - "lat": 51.5304667, - "lon": -0.0770491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 648861175, - "lat": 51.5272543, - "lon": -0.0775609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 648862825, - "lat": 54.0587317, - "lon": -2.8005319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "LA1 32", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 649033094, - "lat": 51.8751773, - "lon": -0.5160565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 84", - "source": "survey" - } -}, -{ - "type": "node", - "id": 649287369, - "lat": 52.6323117, - "lon": -1.7927325, - "tags": { - "amenity": "post_box", - "ref": "WS14 114", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 649523785, - "lat": 52.1611641, - "lon": -3.6756828, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD5 153", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 649594435, - "lat": 53.2265934, - "lon": -4.1253671, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL57 143", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 649742548, - "lat": 52.9359884, - "lon": -1.5314279, - "tags": { - "amenity": "post_box", - "ele": "71.2629395", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 297" - } -}, -{ - "type": "node", - "id": 649779104, - "lat": 52.4566706, - "lon": -0.9474141, - "tags": { - "amenity": "post_box", - "postal_code": "LE16 9SJ", - "ref": "LE16 43" - } -}, -{ - "type": "node", - "id": 649779134, - "lat": 52.4430743, - "lon": -0.9191469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LE16 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 649984463, - "lat": 51.6718138, - "lon": -1.2797047, - "tags": { - "amenity": "post_box", - "ref": "OX14 1360" - } -}, -{ - "type": "node", - "id": 649984496, - "lat": 51.6776161, - "lon": -1.2638457, - "tags": { - "amenity": "post_box", - "ref": "OX14 1095", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 649986752, - "lat": 51.6729614, - "lon": -1.2712948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 940", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 649986758, - "lat": 51.6755712, - "lon": -1.2641334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 1242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 650033280, - "lat": 53.7898050, - "lon": -2.3979911, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 650214087, - "lat": 52.6935186, - "lon": 0.1118968, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 650214788, - "lat": 52.7113469, - "lon": 0.1327554, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 650423952, - "lat": 53.9564975, - "lon": -2.3295200, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 650481854, - "lat": 52.4096487, - "lon": -1.7775379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B91", - "ref": "B91 682", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 650493653, - "lat": 52.0950415, - "lon": -1.9076978, - "tags": { - "amenity": "post_box", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "WR11 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 650582077, - "lat": 52.4059760, - "lon": -1.7773053, - "tags": { - "amenity": "post_box", - "postal_code": "B91", - "ref": "B91 726", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 650587989, - "lat": 53.7857812, - "lon": -2.4072127, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 650587990, - "lat": 53.7882544, - "lon": -2.4037670, - "tags": { - "amenity": "post_box", - "ref": "BB6 97" - } -}, -{ - "type": "node", - "id": 650587992, - "lat": 53.7826990, - "lon": -2.4094339, - "tags": { - "amenity": "post_box", - "ref": "BB6 44" - } -}, -{ - "type": "node", - "id": 650587997, - "lat": 53.7831618, - "lon": -2.4042917, - "tags": { - "amenity": "post_box", - "ref": "BB6 98" - } -}, -{ - "type": "node", - "id": 650588008, - "lat": 53.7880839, - "lon": -2.4071968, - "tags": { - "amenity": "post_box", - "ref": "BB6 42" - } -}, -{ - "type": "node", - "id": 650719861, - "lat": 52.6688618, - "lon": -2.7687598, - "tags": { - "amenity": "post_box", - "ref": "SY3 222" - } -}, -{ - "type": "node", - "id": 650730627, - "lat": 52.4666347, - "lon": -0.9834082, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE16 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 650990896, - "lat": 55.9462955, - "lon": -3.2358109, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH12 186D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 651074936, - "lat": 53.8261150, - "lon": -1.2221399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS24 715", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 651075387, - "lat": 51.5756320, - "lon": -0.2081430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 30" - } -}, -{ - "type": "node", - "id": 651075594, - "lat": 51.7043282, - "lon": -0.1502836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "mapillary": "295814155516662", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 56", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 651075752, - "lat": 51.7441790, - "lon": -3.3784050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 651075908, - "lat": 51.6325890, - "lon": -0.4408140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 651076067, - "lat": 51.4866620, - "lon": 0.2935230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM20 504" - } -}, -{ - "type": "node", - "id": 651076225, - "lat": 53.1724420, - "lon": -0.5321690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "ref": "LN5 446" - } -}, -{ - "type": "node", - "id": 651076413, - "lat": 50.3765550, - "lon": -4.2167370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "mapillary": "301410195454845", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 651076572, - "lat": 51.6658614, - "lon": -0.0003920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E4 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 651076725, - "lat": 52.0042020, - "lon": -0.7941509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK4 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 651076879, - "lat": 51.6982718, - "lon": -0.1230957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EN6 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 651077034, - "lat": 51.3508802, - "lon": -0.0384290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 651269680, - "lat": 54.3797710, - "lon": -1.6322160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 651486592, - "lat": 51.4759355, - "lon": -3.2540346, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 651516248, - "lat": 51.7193800, - "lon": -1.2452138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "922517575236667", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX1 57", - "source": "photograph", - "survey:date": "2020-09-06" - } -}, -{ - "type": "node", - "id": 651593092, - "lat": 52.6986272, - "lon": -2.7839616, - "tags": { - "amenity": "post_box", - "ref": "SY3 515" - } -}, -{ - "type": "node", - "id": 651594413, - "lat": 52.6978293, - "lon": -2.7689269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SY3 620" - } -}, -{ - "type": "node", - "id": 651738356, - "lat": 53.7744892, - "lon": -0.1664259, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU12 90" - } -}, -{ - "type": "node", - "id": 651799774, - "lat": 51.6450383, - "lon": -0.2799539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD6 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 651799883, - "lat": 51.6574799, - "lon": -0.3926674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD17 51D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 651978519, - "lat": 51.7302676, - "lon": -0.4578448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP3 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 652505399, - "lat": 51.6426173, - "lon": -4.0045819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA5 450D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 652743061, - "lat": 51.7751501, - "lon": 0.0848277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 652764858, - "lat": 50.8506004, - "lon": -1.4065333, - "tags": { - "amenity": "post_box", - "ref": "SO45 310D" - } -}, -{ - "type": "node", - "id": 652816849, - "lat": 52.2506238, - "lon": -0.1146319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB23 460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 652827330, - "lat": 51.5079816, - "lon": -0.2291088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W12 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26487669" - } -}, -{ - "type": "node", - "id": 652850241, - "lat": 51.5277879, - "lon": -0.0231663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 652852517, - "lat": 50.7323435, - "lon": -3.4911793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 652857404, - "lat": 51.8545331, - "lon": -2.2533848, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL1 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 652858715, - "lat": 51.8428451, - "lon": -2.2438973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 652878753, - "lat": 53.2718786, - "lon": -1.8199514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 652893786, - "lat": 50.9122437, - "lon": -1.4065589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 95D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 652916638, - "lat": 51.5655415, - "lon": -3.3214612, - "tags": { - "amenity": "post_box", - "location": "St Illtyd Road", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 653195912, - "lat": 52.4569656, - "lon": -1.8865190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B12", - "ref": "B12 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 653262246, - "lat": 51.4850842, - "lon": -2.5962440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS6 330D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 653264102, - "lat": 51.5874354, - "lon": -3.3267673, - "tags": { - "amenity": "post_box", - "name": "Campus Post Office" - } -}, -{ - "type": "node", - "id": 653290496, - "lat": 50.9529378, - "lon": -1.4077691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 653307595, - "lat": 53.8847866, - "lon": -2.5748132, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 653773785, - "lat": 50.7190853, - "lon": -1.8923278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 204", - "ref:GB:uprn": "10015420660", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 653918832, - "lat": 51.3258028, - "lon": -0.2161658, - "tags": { - "amenity": "post_box", - "ref": "SM7 214" - } -}, -{ - "type": "node", - "id": 653926234, - "lat": 52.6262106, - "lon": -1.2033795, - "tags": { - "amenity": "post_box", - "name": "LFE Post Office" - } -}, -{ - "type": "node", - "id": 653926276, - "lat": 51.5743787, - "lon": -0.0766359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "N16 20", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 653926284, - "lat": 52.6261716, - "lon": -1.1987231, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 653926405, - "lat": 51.5732681, - "lon": -0.0793332, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "N16 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 653926842, - "lat": 52.7306510, - "lon": -2.7314140, - "tags": { - "amenity": "post_box", - "ref": "SY1 371" - } -}, -{ - "type": "node", - "id": 653956942, - "lat": 51.4983037, - "lon": -3.2318771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 263D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 654059144, - "lat": 54.0837357, - "lon": -0.1861636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO15 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 654077339, - "lat": 51.8491848, - "lon": -2.2586833, - "tags": { - "amenity": "post_box", - "ref": "GL1 16" - } -}, -{ - "type": "node", - "id": 654563533, - "lat": 51.4265003, - "lon": 0.1013212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 654563538, - "lat": 51.4264978, - "lon": 0.1013615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DA14 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 655130265, - "lat": 50.9350768, - "lon": -0.6206471, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 655202374, - "lat": 52.4476613, - "lon": -1.8829174, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B13", - "ref": "B13 131", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 655203961, - "lat": 53.8232598, - "lon": -2.2974140, - "tags": { - "amenity": "post_box", - "ref": "BB12 102", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 655203962, - "lat": 53.8246954, - "lon": -2.2909606, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BB12 82", - "royal_cypher": "EIIR", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 655298717, - "lat": 50.7264205, - "lon": -3.6386821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655298777, - "lat": 50.7253707, - "lon": -3.6083541, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 655298852, - "lat": 50.7291852, - "lon": -3.5938649, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 655308613, - "lat": 53.3521264, - "lon": -1.4249705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 873", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 655310515, - "lat": 55.9488888, - "lon": -3.2490253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1384853258536774", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH12 299", - "survey:date": "2020-07-28" - } -}, -{ - "type": "node", - "id": 655310516, - "lat": 55.9508791, - "lon": -3.2434142, - "tags": { - "amenity": "post_box", - "ref": "EH12 235" - } -}, -{ - "type": "node", - "id": 655310517, - "lat": 55.9494980, - "lon": -3.2358476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH12 169D" - } -}, -{ - "type": "node", - "id": 655311249, - "lat": 50.6621313, - "lon": -3.7632912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655317506, - "lat": 50.6609047, - "lon": -3.7632543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655318606, - "lat": 50.6582537, - "lon": -3.7609771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ13 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655324496, - "lat": 50.6629499, - "lon": -3.7671509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655326259, - "lat": 53.3493240, - "lon": -1.4284243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 655394375, - "lat": 55.9456526, - "lon": -3.2309685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "999667231808212", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 48", - "royal_cypher": "GVIR", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 655425734, - "lat": 50.6488794, - "lon": -3.6500737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "EX6 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655426281, - "lat": 50.6675200, - "lon": -3.6458356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 655435403, - "lat": 52.8967093, - "lon": -1.2670212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG10 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 655435404, - "lat": 52.8967305, - "lon": -1.2651282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 655435416, - "lat": 52.8915075, - "lon": -1.2582513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 655446528, - "lat": 52.1999449, - "lon": -0.8901348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 312" - } -}, -{ - "type": "node", - "id": 655610622, - "lat": 51.6740907, - "lon": -0.4184855, - "tags": { - "amenity": "post_box", - "ref": "WD17 208" - } -}, -{ - "type": "node", - "id": 655618687, - "lat": 51.6698710, - "lon": -0.4126941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD17 40D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 656085028, - "lat": 50.6948202, - "lon": -3.4926084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EX2 222", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 656135092, - "lat": 55.1086286, - "lon": -1.6681715, - "tags": { - "amenity": "post_box", - "postal_code": "NE61 6HF", - "ref": "NE61 141" - } -}, -{ - "type": "node", - "id": 656139398, - "lat": 51.0110592, - "lon": -1.5608343, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656415325, - "lat": 51.7269748, - "lon": 0.4137111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 656415330, - "lat": 51.7302394, - "lon": 0.4163209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656415353, - "lat": 51.7291011, - "lon": 0.4121407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "image": "https://www.bing.com/maps?osid=66ccc69d-2de4-4ef1-9f73-097c453e9db0&cp=51.729018~0.412181&lvl=19&dir=51.186665&pi=-7.334271&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 656428988, - "lat": 52.1234609, - "lon": -2.3119012, - "tags": { - "amenity": "post_box", - "collection_plate": "CP10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In wall of gatepost of Morgan Motor Company.Collection plate is CP10", - "drive_through": "no", - "post_box:type": "wall", - "ref": "WR14 126", - "royal_cypher": "no", - "source": "GPS Waypoint, long exposure;walking_survey" - } -}, -{ - "type": "node", - "id": 656428994, - "lat": 52.1292200, - "lon": -2.3102100, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR14 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Waypoint" - } -}, -{ - "type": "node", - "id": 656434788, - "lat": 51.7325909, - "lon": -1.2489830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "ref": "OX1 135" - } -}, -{ - "type": "node", - "id": 656434920, - "lat": 51.7340950, - "lon": -1.2633771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX1 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2014-07-27" - } -}, -{ - "type": "node", - "id": 656467984, - "lat": 51.9185139, - "lon": -0.1792753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "SG1 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656473505, - "lat": 51.7513214, - "lon": -1.2638517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "OX1 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 656473506, - "lat": 51.7424228, - "lon": -1.2553799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "OX1 94" - } -}, -{ - "type": "node", - "id": 656486003, - "lat": 52.6021343, - "lon": -1.9835190, - "tags": { - "amenity": "post_box", - "fixme": "is this post box still here", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 290", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 656545807, - "lat": 57.1069274, - "lon": -2.2246207, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB13 0HL", - "addr:street": "North Deeside Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 656569864, - "lat": 53.9183690, - "lon": -1.1342817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO23 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656569875, - "lat": 53.9064678, - "lon": -1.1198594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO23 500" - } -}, -{ - "type": "node", - "id": 656569899, - "lat": 53.9175855, - "lon": -1.1457026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO23 512" - } -}, -{ - "type": "node", - "id": 656569931, - "lat": 53.9107891, - "lon": -1.1315001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO23 295" - } -}, -{ - "type": "node", - "id": 656579609, - "lat": 53.9209011, - "lon": -1.1379430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO23 372D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656579919, - "lat": 57.1040561, - "lon": -2.2350603, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB13 0HD", - "addr:street": "North Deeside Road", - "addr:village": "Milltimber", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 656598763, - "lat": 51.4309384, - "lon": -0.1264095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW16 24" - } -}, -{ - "type": "node", - "id": 656683617, - "lat": 53.2175994, - "lon": -4.1468432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 656733443, - "lat": 53.2149464, - "lon": -4.1428501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656736059, - "lat": 53.7669300, - "lon": -1.7303914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 285" - } -}, -{ - "type": "node", - "id": 656753417, - "lat": 52.9160228, - "lon": -0.6496170, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-19", - "ele": "58.5255127" - } -}, -{ - "type": "node", - "id": 656764013, - "lat": 52.9144112, - "lon": -0.6541291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "71.7435303", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 656766242, - "lat": 52.9144743, - "lon": -0.6661749, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 656785831, - "lat": 52.9036829, - "lon": -0.6661335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "75.1081543", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656845331, - "lat": 53.9152257, - "lon": -1.1413716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO23 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 656864676, - "lat": 53.2177478, - "lon": -4.1401801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 656874239, - "lat": 52.8933368, - "lon": -1.2690570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "NG10 16D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 656874267, - "lat": 52.8903301, - "lon": -1.2661075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 12:00-18:30", - "post_box:type": "meter", - "ref": "NG10 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 656874584, - "lat": 52.8945040, - "lon": -1.2660542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG10 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 657072428, - "lat": 53.2670003, - "lon": -1.3395132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S43 138D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 658058021, - "lat": 51.0232819, - "lon": -0.3908662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 658059831, - "lat": 51.0251998, - "lon": -0.4136671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 658068504, - "lat": 51.6522121, - "lon": -4.0015784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA5 190D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 658068639, - "lat": 51.2870231, - "lon": -0.9514992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 658326768, - "lat": 52.7288288, - "lon": -2.7131660, - "tags": { - "amenity": "post_box", - "ref": "SY1 566" - } -}, -{ - "type": "node", - "id": 658326775, - "lat": 52.7347098, - "lon": -2.7262805, - "tags": { - "amenity": "post_box", - "ref": "SY1 537" - } -}, -{ - "type": "node", - "id": 658326783, - "lat": 52.7188980, - "lon": -2.7437309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY1 23" - } -}, -{ - "type": "node", - "id": 658339914, - "lat": 51.6396335, - "lon": -3.8161602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 658436827, - "lat": 52.4022700, - "lon": -2.2390400, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 658745513, - "lat": 53.2035806, - "lon": -4.1627359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL57 307D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 658875447, - "lat": 51.4352176, - "lon": -0.1039207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "name": "Chatsworth Way pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 658875886, - "lat": 52.9069423, - "lon": -1.2538593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG9 608", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 658909875, - "lat": 51.2566005, - "lon": -2.2077061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "ref": "BA13 13" - } -}, -{ - "type": "node", - "id": 658958428, - "lat": 51.5562890, - "lon": -0.0746294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 659253036, - "lat": 51.0382868, - "lon": -3.3125362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 659253117, - "lat": 51.0422389, - "lon": -3.3124488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA4 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 659253220, - "lat": 51.0995894, - "lon": -3.3894303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 659253755, - "lat": 51.1321342, - "lon": -3.4686242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA23 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 659253868, - "lat": 51.2059163, - "lon": -3.5583544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 659253920, - "lat": 51.1972182, - "lon": -3.4675196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 659254023, - "lat": 51.1573491, - "lon": -3.3142058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 659432411, - "lat": 50.8158290, - "lon": -1.5785578, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SO42", - "ref": "SO42 28", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659432419, - "lat": 50.8222041, - "lon": -1.5554253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SO42", - "ref": "SO42 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659432423, - "lat": 50.8243015, - "lon": -1.5762154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SO42", - "ref": "SO42 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659432426, - "lat": 50.8271682, - "lon": -1.5671871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SO42", - "ref": "SO42 122", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-02-25", - "wikimedia_commons": "File:Balmer Lawn Road - geograph.org.uk - 3225045.jpg" - } -}, -{ - "type": "node", - "id": 659433867, - "lat": 51.2711236, - "lon": 0.0392634, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-28", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "TN16", - "ref": "TN16 294", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659435864, - "lat": 51.2530857, - "lon": 0.9894539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT4", - "ref": "CT4 263", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659566253, - "lat": 55.9417200, - "lon": -3.3013800, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH12 416" - } -}, -{ - "type": "node", - "id": 659566254, - "lat": 55.9464757, - "lon": -3.3005152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH12 432", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 659566255, - "lat": 55.9491804, - "lon": -3.2967532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "935667937258101", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 474", - "royal_cypher": "scottish_crown", - "survey:date": "2020-05-10" - } -}, -{ - "type": "node", - "id": 659566256, - "lat": 55.9424464, - "lon": -3.2955938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "296202552094416", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 354", - "royal_cypher": "GR", - "survey:date": "2020-04-17" - } -}, -{ - "type": "node", - "id": 659603616, - "lat": 52.1970876, - "lon": -2.2428280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 479" - } -}, -{ - "type": "node", - "id": 659652726, - "lat": 51.6710940, - "lon": -0.0281540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "post_box:type": "pillar", - "ref": "EN3 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 659653116, - "lat": 51.5087433, - "lon": -0.1492676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 60D;W1J 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 659653162, - "lat": 51.5083193, - "lon": -0.1461643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-10-28", - "note": "RH aperture sealed 2024-04-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 69D;W1J 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 659653171, - "lat": 51.5093025, - "lon": -0.1445214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 76;W1J 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659663322, - "lat": 53.7905338, - "lon": -2.3866344, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 659722491, - "lat": 57.1559477, - "lon": -6.0868503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "198750925558502", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV49 101", - "source": "survey", - "survey:date": "2021-09-19" - } -}, -{ - "type": "node", - "id": 659722492, - "lat": 57.1451549, - "lon": -6.1076571, - "tags": { - "amenity": "post_box", - "ref": "IV49 136", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659761011, - "lat": 52.6935450, - "lon": -2.6772678, - "tags": { - "amenity": "post_box", - "ref": "SY4 590" - } -}, -{ - "type": "node", - "id": 659761269, - "lat": 52.6886692, - "lon": -2.6379995, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SY5 129" - } -}, -{ - "type": "node", - "id": 659762201, - "lat": 52.6886855, - "lon": -2.6379566, - "tags": { - "amenity": "post_box", - "fixme": "check ref", - "post_box:type": "meter", - "ref": "SY4 200" - } -}, -{ - "type": "node", - "id": 659764415, - "lat": 52.6887328, - "lon": -2.7023572, - "tags": { - "amenity": "post_box", - "ref": "SY5 233" - } -}, -{ - "type": "node", - "id": 659765848, - "lat": 52.6795192, - "lon": -2.6781996, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 367" - } -}, -{ - "type": "node", - "id": 659766531, - "lat": 52.6929623, - "lon": -2.5335623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF1 303" - } -}, -{ - "type": "node", - "id": 659773239, - "lat": 52.6812991, - "lon": -2.5934345, - "tags": { - "amenity": "post_box", - "ref": "TF6 195" - } -}, -{ - "type": "node", - "id": 659795921, - "lat": 52.4442628, - "lon": -2.0583588, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B63", - "ref": "B63 161", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 659808097, - "lat": 53.3896247, - "lon": -2.9527199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIRI post box L8 250 by Carron Company on Croxteth Road, Liverpool", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Croxteth Road.jpg" - } -}, -{ - "type": "node", - "id": 659820740, - "lat": 57.2444890, - "lon": -5.8532933, - "tags": { - "amenity": "post_box", - "ref": "IV42 112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659902978, - "lat": 51.7451109, - "lon": -1.7123259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL7 92" - } -}, -{ - "type": "node", - "id": 659903371, - "lat": 53.3860045, - "lon": -2.9799082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box at the entrance to Brunswick Business Park, Liverpool, just off Sefton Street roundabout. It is adjacent to L3 63 and Royal Mail refer to it as Tower Street.", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L3 73 at Brunswick Business Park.jpg" - } -}, -{ - "type": "node", - "id": 659903372, - "lat": 53.3860109, - "lon": -2.9798700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa off", - "description": "Business post box at the entrance to Brunswick Business Park, Liverpool, just off Sefton Street roundabout. It is adjacent to L3 73", - "note": "franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "L3 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L3 63 at Brunswick Business Park.jpg" - } -}, -{ - "type": "node", - "id": 659903373, - "lat": 53.3996336, - "lon": -2.9683410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "George V post box L8 414 by Carron Company at the junction of Catherine St and Falkner Street, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 414", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Catharine Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 659911556, - "lat": 53.3933779, - "lon": -2.9369574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "L15 993", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 659918832, - "lat": 53.3951375, - "lon": -2.9667321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Edward VII post box L8 302 by McDowall, Stevens & Co on Upper Stanhope St near Princes Road.", - "manufacturer": "McDowall Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 302", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Upper Stanhope Street.jpg" - } -}, -{ - "type": "node", - "id": 659931854, - "lat": 52.6859002, - "lon": 0.1188037, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 659932020, - "lat": 52.7236168, - "lon": 0.1024969, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 659932224, - "lat": 52.7278911, - "lon": 0.1114822, - "tags": { - "amenity": "post_box", - "ref": "PE13 145", - "source": "survey" - } -}, -{ - "type": "node", - "id": 659932652, - "lat": 52.7457402, - "lon": 0.1364160, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 659932736, - "lat": 52.7369602, - "lon": 0.1693495, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 659934692, - "lat": 51.3954891, - "lon": -0.9057431, - "tags": { - "amenity": "post_box", - "mapillary": "315843637312161", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-27" - } -}, -{ - "type": "node", - "id": 659962328, - "lat": 53.3925026, - "lon": -2.9443145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 221 on Hartington Road, Toxteth", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Hartington Road, Toxteth.jpg" - } -}, -{ - "type": "node", - "id": 659990106, - "lat": 51.7270570, - "lon": -0.4545121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD4 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 660031862, - "lat": 53.3874644, - "lon": -2.9799546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "EIIR post box L8 236 on Sefton Street, Dingle, Liverpool.", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L8 236 on Sefton Street.jpg" - } -}, -{ - "type": "node", - "id": 660031863, - "lat": 53.3981962, - "lon": -2.9664560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VIII post box L8 75 at the corner of Bedford Street South & Canning Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 75", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "wikimedia_commons": "File:Post box on Bedford Street South, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 660031864, - "lat": 53.3914206, - "lon": -2.9664236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L8 76 on Upper Warwick Street, Toxteth, made by Carron Company.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Upper Warwick Street.jpg" - } -}, -{ - "type": "node", - "id": 660031865, - "lat": 53.3906684, - "lon": -2.9738084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box L8 62 on Mill Street, Dingle, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L8 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 660031866, - "lat": 53.3876676, - "lon": -2.9625773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR post box L8 59 by Carron Company on Admiral Street, opposite the police station.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:George V post box on Admiral Street.jpg" - } -}, -{ - "type": "node", - "id": 660087832, - "lat": 52.4428476, - "lon": -2.0662103, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 1039", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 660092034, - "lat": 52.4464164, - "lon": -2.0646165, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 883", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 660095763, - "lat": 52.4477657, - "lon": -2.0704488, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B63", - "ref": "B63 4372", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 660102863, - "lat": 52.4371819, - "lon": -2.0776052, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 88", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 660102865, - "lat": 52.4403458, - "lon": -2.0700549, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 625", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 660134829, - "lat": 50.7727998, - "lon": -3.5238373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "EX5 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 660191067, - "lat": 53.7762669, - "lon": -2.3831535, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660192811, - "lat": 53.7749693, - "lon": -2.3851746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 660197479, - "lat": 53.7309019, - "lon": -2.3419430, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660197483, - "lat": 53.7557136, - "lon": -2.3918761, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660271206, - "lat": 51.8511592, - "lon": -2.2357297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 660271219, - "lat": 51.8536942, - "lon": -2.2428999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 660278539, - "lat": 51.8507294, - "lon": -2.2517444, - "tags": { - "amenity": "post_box", - "ref": "GL1 32" - } -}, -{ - "type": "node", - "id": 660398704, - "lat": 51.0382754, - "lon": -1.0373663, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "collection_times_checked": "2020-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 660398776, - "lat": 51.0521383, - "lon": -1.0384312, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 660398867, - "lat": 51.0431048, - "lon": -1.0031038, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 660447479, - "lat": 53.9751131, - "lon": -1.5372475, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 660459930, - "lat": 52.6979663, - "lon": 0.1739943, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "PE14 1390" - } -}, -{ - "type": "node", - "id": 660477318, - "lat": 51.5011274, - "lon": 0.0554029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E16 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 660480135, - "lat": 53.3648037, - "lon": -2.8534531, - "tags": { - "amenity": "post_box", - "ref": "L25 864" - } -}, -{ - "type": "node", - "id": 660488637, - "lat": 53.3777820, - "lon": -2.8825617, - "tags": { - "amenity": "post_box", - "ref": "L25 559" - } -}, -{ - "type": "node", - "id": 660522718, - "lat": 53.7858787, - "lon": -1.0767987, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 660529443, - "lat": 53.6917566, - "lon": -1.0296017, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DN14 68" - } -}, -{ - "type": "node", - "id": 660629152, - "lat": 52.2045909, - "lon": -0.8670186, - "tags": { - "amenity": "post_box", - "ref": "NN4 431" - } -}, -{ - "type": "node", - "id": 660659190, - "lat": 53.7772240, - "lon": -2.3730876, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660664397, - "lat": 52.7264630, - "lon": 0.2175853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 660664421, - "lat": 52.7339925, - "lon": 0.2194946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 660664456, - "lat": 52.7136380, - "lon": 0.2367652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660664491, - "lat": 52.7251261, - "lon": 0.2278121, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660664930, - "lat": 53.7712355, - "lon": -2.3814587, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660676051, - "lat": 53.7823746, - "lon": -2.3828149, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660676094, - "lat": 53.7790245, - "lon": -2.3841275, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 660734970, - "lat": 51.6843594, - "lon": -4.1544036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 660741381, - "lat": 53.6276678, - "lon": -2.6574066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 660751175, - "lat": 52.0921008, - "lon": -2.3375767, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 660751198, - "lat": 52.0977350, - "lon": -2.3343611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "Post Office", - "ref": "WR14 64", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 660760074, - "lat": 51.5022385, - "lon": 0.0458637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 660843308, - "lat": 53.3109996, - "lon": -1.8303635, - "tags": { - "amenity": "post_box", - "ele": "311.3503418" - } -}, -{ - "type": "node", - "id": 660843309, - "lat": 53.3141442, - "lon": -1.8284265, - "tags": { - "amenity": "post_box", - "ele": "313.7535400" - } -}, -{ - "type": "node", - "id": 660843496, - "lat": 53.4000801, - "lon": -2.8737651, - "tags": { - "amenity": "post_box", - "ref": "L16 820" - } -}, -{ - "type": "node", - "id": 660843500, - "lat": 53.4034703, - "lon": -2.8695486, - "tags": { - "amenity": "post_box", - "ref": "L16 805" - } -}, -{ - "type": "node", - "id": 660843509, - "lat": 53.4042442, - "lon": -2.8823160, - "tags": { - "amenity": "post_box", - "ref": "L16 878" - } -}, -{ - "type": "node", - "id": 660851105, - "lat": 53.4050718, - "lon": -2.8908191, - "tags": { - "amenity": "post_box", - "ref": "L16 385" - } -}, -{ - "type": "node", - "id": 660851106, - "lat": 53.3965175, - "lon": -2.8878310, - "tags": { - "amenity": "post_box", - "ref": "L16 835" - } -}, -{ - "type": "node", - "id": 660851108, - "lat": 53.3952636, - "lon": -2.8822413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L16 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 660899275, - "lat": 51.5623426, - "lon": -0.0736634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "N16 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 661035962, - "lat": 50.9389578, - "lon": -0.4336447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661037861, - "lat": 50.7684522, - "lon": -1.5488583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO41 71", - "survey:date": "2021-12-11", - "wikimedia_commons": "File:Lymington, postbox № SO41 71, Marsh Lane - geograph.org.uk - 2867452.jpg" - } -}, -{ - "type": "node", - "id": 661059973, - "lat": 53.8699671, - "lon": -2.3982115, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661059978, - "lat": 53.8671432, - "lon": -2.4028253, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 661062418, - "lat": 53.8727463, - "lon": -2.3918491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB7 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661071253, - "lat": 51.5098220, - "lon": -0.1930142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Left-hand aperture labelled \"First Class and Abroad\", right-hand labelled \"Second Class\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 14D;W2 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661093487, - "lat": 51.3038260, - "lon": -0.5381505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_check": "2018-10-03", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU22 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 661107536, - "lat": 53.2124596, - "lon": -2.9247936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661111742, - "lat": 51.5781445, - "lon": -0.1376133, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 661119921, - "lat": 51.5830170, - "lon": -0.1381200, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N10 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 661143013, - "lat": 51.5229956, - "lon": -0.1505276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-24", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "the right aperture is blocked; the left (yes) collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1G 223D" - } -}, -{ - "type": "node", - "id": 661153455, - "lat": 51.5086498, - "lon": -0.1319781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "fixme": "has this post box been moved?", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1 6" - } -}, -{ - "type": "node", - "id": 661184636, - "lat": 52.1008066, - "lon": -1.8956295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "post_box:type": "lamp", - "ref": "WR11 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661188899, - "lat": 52.3971596, - "lon": -2.2427598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 661189974, - "lat": 54.8588487, - "lon": -1.5170754, - "tags": { - "amenity": "post_box", - "ref": "DH4 115" - } -}, -{ - "type": "node", - "id": 661196756, - "lat": 52.6285384, - "lon": -2.0139580, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-30", - "note": "ref may be wrong. Condensation making it difficult to read", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 661201238, - "lat": 53.2253750, - "lon": -3.0731232, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 661207423, - "lat": 52.3963136, - "lon": -2.2482540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 661264040, - "lat": 52.9773672, - "lon": -2.2183999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 661313743, - "lat": 51.3415225, - "lon": 0.5740413, - "tags": { - "amenity": "post_box", - "ref": "ME7 408" - } -}, -{ - "type": "node", - "id": 661358801, - "lat": 52.8871531, - "lon": -1.2834845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 661358840, - "lat": 52.8870908, - "lon": -1.2773999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 661358893, - "lat": 52.8909892, - "lon": -1.2781874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 661358999, - "lat": 52.8931624, - "lon": -1.2741721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG10 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS;local knowledge" - } -}, -{ - "type": "node", - "id": 661418164, - "lat": 53.2012277, - "lon": -2.9347254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661469940, - "lat": 51.7182136, - "lon": -1.2774196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "ref": "OX1 633" - } -}, -{ - "type": "node", - "id": 661469941, - "lat": 51.7239544, - "lon": -1.2661368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "wall", - "ref": "OX1 215", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 661469942, - "lat": 51.7216696, - "lon": -1.2707685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "ref": "OX1 287" - } -}, -{ - "type": "node", - "id": 661506500, - "lat": 51.4889228, - "lon": -0.7236681, - "tags": { - "amenity": "post_box", - "ref": "SL6 14" - } -}, -{ - "type": "node", - "id": 661542699, - "lat": 52.8988426, - "lon": -1.2687713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "indoor": "yes", - "post_box:type": "indoor_pillar", - "ref": "NG10 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 661547131, - "lat": 53.0720704, - "lon": -0.5594859, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 661641717, - "lat": 53.2657744, - "lon": -0.4883981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 661758722, - "lat": 51.3579711, - "lon": -1.3743477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG20 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 662036058, - "lat": 53.7819969, - "lon": -2.4154667, - "tags": { - "amenity": "post_box", - "ref": "BB6 177" - } -}, -{ - "type": "node", - "id": 662054762, - "lat": 53.7675980, - "lon": -2.4188574, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 662054784, - "lat": 53.7852715, - "lon": -2.4119502, - "tags": { - "amenity": "post_box", - "ref": "BB6 107" - } -}, -{ - "type": "node", - "id": 662072014, - "lat": 52.8119112, - "lon": -3.0064993, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 662072015, - "lat": 52.8245119, - "lon": -2.9712447, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 662079958, - "lat": 52.9369150, - "lon": -3.0910212, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL14 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 662084193, - "lat": 51.6967663, - "lon": -1.2994641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "OX13 1189" - } -}, -{ - "type": "node", - "id": 662191066, - "lat": 51.5136733, - "lon": 0.0154707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662274052, - "lat": 52.2684345, - "lon": -2.1484365, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR9 376", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 662281528, - "lat": 52.6058230, - "lon": 1.2317230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "29.870400", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR4 447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 662295682, - "lat": 52.3868583, - "lon": -2.2483313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY10 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "gps_survey;survey;bing" - } -}, -{ - "type": "node", - "id": 662361902, - "lat": 51.2078962, - "lon": -0.1997724, - "tags": { - "amenity": "post_box", - "ref": "RH2 192", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 662369666, - "lat": 54.7901993, - "lon": -1.5992654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 310" - } -}, -{ - "type": "node", - "id": 662375221, - "lat": 54.7923307, - "lon": -1.5926650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 283" - } -}, -{ - "type": "node", - "id": 662380151, - "lat": 52.8948770, - "lon": -1.2733182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG10 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662408651, - "lat": 50.6324564, - "lon": -1.2207556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 223", - "website": "https://www.royalmail.com/services-near-you/postbox/sandford-po38-3es/000PO38237" - } -}, -{ - "type": "node", - "id": 662441261, - "lat": 53.7713695, - "lon": -1.7211066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD4 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 662495154, - "lat": 51.0249578, - "lon": -0.9982479, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "last_checked": "2020-07-27", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 57", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662495190, - "lat": 51.0339675, - "lon": -0.9862648, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-07-27", - "old_ref": "GU32 42", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662495198, - "lat": 51.0344678, - "lon": -0.9819688, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "last_checked": "2020-07-27", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662495221, - "lat": 51.0359111, - "lon": -0.9775547, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is a lamp set back from the road in a hedge.", - "last_checked": "2020-07-27", - "old_ref": "GU32 145", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662496110, - "lat": 52.8795645, - "lon": -1.2891471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG10 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662496139, - "lat": 52.8844867, - "lon": -1.2870511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG10 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 662496253, - "lat": 52.8838184, - "lon": -1.2730142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662686520, - "lat": 52.8813289, - "lon": -1.3046730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 662686666, - "lat": 52.8815572, - "lon": -1.2977351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "fixme": "Gone?", - "post_box:type": "pillar", - "ref": "NG10 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662699003, - "lat": 53.1122350, - "lon": -0.4079824, - "tags": { - "amenity": "post_box", - "ele": "21.7553711" - } -}, -{ - "type": "node", - "id": 662704452, - "lat": 53.1071992, - "lon": -0.3819931, - "tags": { - "amenity": "post_box", - "ele": "7.5760498", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 662763114, - "lat": 53.6116668, - "lon": -2.6121972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "767067030670526", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 662763202, - "lat": 53.6124449, - "lon": -2.6046892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "mapillary": "467861504422228", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 72" - } -}, -{ - "type": "node", - "id": 662768343, - "lat": 55.0257150, - "lon": -1.5298280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE27 392", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 662858077, - "lat": 52.9851482, - "lon": -1.9972358, - "tags": { - "amenity": "post_box", - "name": "Town End Cheadle" - } -}, -{ - "type": "node", - "id": 662858118, - "lat": 52.9864626, - "lon": -1.9907395, - "tags": { - "amenity": "post_box", - "name": "High Street Cheadle" - } -}, -{ - "type": "node", - "id": 662866501, - "lat": 51.3445430, - "lon": -2.9718564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "On Railway Station", - "ref": "BS23 31D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 662866661, - "lat": 51.3908822, - "lon": -2.8279026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "note": "On Railway Station; Platform 1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS49 6" - } -}, -{ - "type": "node", - "id": 662886021, - "lat": 51.8801036, - "lon": -0.4012450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Notice plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662886084, - "lat": 51.8847060, - "lon": -0.3978025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Notice plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662886100, - "lat": 51.8826569, - "lon": -0.3917427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU2 77" - } -}, -{ - "type": "node", - "id": 662968802, - "lat": 53.3853428, - "lon": -3.0596245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "EIIR type B post box CH43 162 by Carron Company on Waterford Road/Budworth Road, Noctorum.", - "manufacturer": "Carron Company", - "name": "Waterford Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Waterford Road, Noctorum.jpg" - } -}, -{ - "type": "node", - "id": 662968803, - "lat": 53.3835830, - "lon": -3.0648306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "George V type A post box CH43 1 on Budworth Road, Noctorum.", - "name": "Budworth Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH43 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Budworth Road, Noctorum.jpg" - } -}, -{ - "type": "node", - "id": 662968804, - "lat": 53.3868641, - "lon": -3.0752751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "description": "EIIR lamp box pier CH43 123 on Beryl Road, Noctorum. Installed November 2017", - "name": "Beryl Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Beryl Road, Noctorum.jpg" - } -}, -{ - "type": "node", - "id": 662970281, - "lat": 52.5628934, - "lon": -1.8234505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:30", - "ref": "B72 4419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 662976889, - "lat": 51.1552130, - "lon": 0.8162352, - "tags": { - "amenity": "post_box", - "postal_code": "TN23", - "ref": "TN23 118", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662977006, - "lat": 51.1083526, - "lon": 0.8670478, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "TN26", - "ref": "TN26 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 662978436, - "lat": 51.5943423, - "lon": 0.0222236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663060128, - "lat": 53.1258276, - "lon": -2.6125204, - "tags": { - "amenity": "post_box", - "ref": "CW6 204" - } -}, -{ - "type": "node", - "id": 663060267, - "lat": 53.1307927, - "lon": -2.6192616, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW6 237" - } -}, -{ - "type": "node", - "id": 663060284, - "lat": 53.1332460, - "lon": -2.6189243, - "tags": { - "amenity": "post_box", - "ref": "CW6 253" - } -}, -{ - "type": "node", - "id": 663071819, - "lat": 52.7279133, - "lon": -3.0441086, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 480", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663071945, - "lat": 52.7334015, - "lon": -2.9977805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY5 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 663073647, - "lat": 50.9693281, - "lon": -1.3520124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663074895, - "lat": 50.9447065, - "lon": -1.3903236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663074990, - "lat": 50.9497615, - "lon": -1.4004429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "SO16 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 663075795, - "lat": 55.9411309, - "lon": -3.3150961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "EH12 429" - } -}, -{ - "type": "node", - "id": 663075811, - "lat": 55.9402090, - "lon": -3.3081551, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH12 602", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 663075822, - "lat": 55.9474400, - "lon": -3.2923526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH12 316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 663075824, - "lat": 55.9430416, - "lon": -3.2899735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-12-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 314", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663075825, - "lat": 55.9456740, - "lon": -3.2861378, - "tags": { - "amenity": "post_box", - "ref": "EH12 317" - } -}, -{ - "type": "node", - "id": 663075826, - "lat": 55.9512182, - "lon": -3.2954264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH12 628" - } -}, -{ - "type": "node", - "id": 663075832, - "lat": 55.9443794, - "lon": -3.2802455, - "tags": { - "amenity": "post_box", - "ref": "EH12 319" - } -}, -{ - "type": "node", - "id": 663075835, - "lat": 55.9457027, - "lon": -3.2740548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH12 455", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 663075837, - "lat": 55.9479751, - "lon": -3.2794176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH12 318" - } -}, -{ - "type": "node", - "id": 663075867, - "lat": 57.2374243, - "lon": -2.3454591, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB51 206", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 663075868, - "lat": 57.2350255, - "lon": -2.3402652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "AB51 431", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 663201163, - "lat": 54.2554595, - "lon": -1.2835382, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "YO7", - "ref": "YO7 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663201183, - "lat": 54.3023123, - "lon": -1.2857486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "YO7", - "ref": "YO7 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663201224, - "lat": 54.1818212, - "lon": -1.1729780, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "YO61", - "ref": "YO61 398", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663201230, - "lat": 54.2096683, - "lon": -1.2142467, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "YO61", - "ref": "YO61 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663201237, - "lat": 54.1872659, - "lon": -1.1808846, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-16", - "post_box:type": "lamp", - "postal_code": "YO61", - "ref": "YO61 212", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663204114, - "lat": 54.0920298, - "lon": -1.2314190, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "YO61", - "ref": "YO61 27", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663205703, - "lat": 52.4511414, - "lon": -2.0646544, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 623", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 663216258, - "lat": 54.0388380, - "lon": -1.2349803, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO30 430", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663216284, - "lat": 54.0650726, - "lon": -1.2515989, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "YO61", - "ref": "YO61 17", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663216751, - "lat": 52.4507062, - "lon": -2.0729591, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 943", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 663216756, - "lat": 52.4546122, - "lon": -2.0734236, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B63", - "ref": "B63 795", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 663218598, - "lat": 52.4449758, - "lon": -2.0759946, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 1021", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 663224628, - "lat": 53.9954296, - "lon": -1.1563053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "YO30", - "ref": "YO30 471D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663236034, - "lat": 53.8261085, - "lon": -1.0457079, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663251360, - "lat": 53.7532457, - "lon": -2.3724600, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 663251367, - "lat": 53.7528302, - "lon": -2.3647782, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 663311984, - "lat": 53.7774580, - "lon": -0.9971627, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663312034, - "lat": 54.0086726, - "lon": -0.4326949, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO25 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 663313956, - "lat": 53.7662642, - "lon": -0.9789993, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663313958, - "lat": 53.7706387, - "lon": -0.9791266, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663324276, - "lat": 53.7494592, - "lon": -0.9568246, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663334669, - "lat": 54.3016068, - "lon": -1.4434520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL7 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 663345893, - "lat": 51.0732204, - "lon": -4.0367437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX32 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364990, - "lat": 51.5754327, - "lon": 0.0282923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 19", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364991, - "lat": 51.5714710, - "lon": 0.0234187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364992, - "lat": 51.5640267, - "lon": 0.0265487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E11 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364993, - "lat": 51.5642939, - "lon": 0.0289428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E11 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364994, - "lat": 51.5663286, - "lon": 0.0245922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364995, - "lat": 51.5989237, - "lon": 0.0204383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "3292998470980223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364996, - "lat": 51.5956462, - "lon": 0.0229199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663364998, - "lat": 51.5896596, - "lon": 0.0306956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663365813, - "lat": 51.6600499, - "lon": -0.5581239, - "tags": { - "amenity": "post_box", - "mapillary": "770306353674898", - "post_box:type": "pillar", - "ref": "HP8 99", - "survey:date": "2020-09-24" - } -}, -{ - "type": "node", - "id": 663373504, - "lat": 53.5703074, - "lon": -0.4024156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN38 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663373529, - "lat": 53.5814470, - "lon": -0.3870409, - "tags": { - "amenity": "post_box", - "ref": "DN38 305", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663373552, - "lat": 53.7259044, - "lon": -0.5294289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "operator": "Royal Mail", - "ref": "HU14 147", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663373574, - "lat": 53.6404989, - "lon": -0.3992873, - "tags": { - "amenity": "post_box", - "ref": "DN18 300", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663379800, - "lat": 53.1842158, - "lon": -2.6014313, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 663395629, - "lat": 51.7639189, - "lon": -1.2715933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "OX2 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-12-10" - } -}, -{ - "type": "node", - "id": 663395630, - "lat": 51.7727723, - "lon": -1.2726859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 87" - } -}, -{ - "type": "node", - "id": 663411339, - "lat": 55.8627250, - "lon": -3.9988416, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663424023, - "lat": 53.5002591, - "lon": -0.1812347, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663427250, - "lat": 53.4540564, - "lon": -0.2409844, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LN8 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663431296, - "lat": 53.4154590, - "lon": -0.2960899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LN8 186", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663469934, - "lat": 50.7618890, - "lon": -1.9956784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH18 91;BH18 7091", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663556062, - "lat": 52.0565381, - "lon": -2.7202425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR4 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 663638564, - "lat": 52.0857285, - "lon": -1.9139287, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR11 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 663698335, - "lat": 52.0538413, - "lon": -2.7187105, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HR4 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 663701191, - "lat": 52.0170255, - "lon": -0.6788973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 436", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663765930, - "lat": 52.8987336, - "lon": -1.2959839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "NG10 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663793225, - "lat": 52.0557232, - "lon": -2.7132770, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "HR1 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 663886602, - "lat": 51.4050017, - "lon": -0.0745456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663946499, - "lat": 51.8983852, - "lon": -0.4000795, - "tags": { - "amenity": "post_box", - "ref": "LU2 111" - } -}, -{ - "type": "node", - "id": 663954708, - "lat": 53.3642993, - "lon": -0.3341795, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LN8 157", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663965824, - "lat": 53.2714789, - "lon": -0.4852727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN2 460", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663965836, - "lat": 53.2825153, - "lon": -0.4549493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN2 563", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663965868, - "lat": 53.2868288, - "lon": -0.4068783, - "tags": { - "amenity": "post_box", - "ref": "LN3 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663965895, - "lat": 53.3025051, - "lon": -0.3997989, - "tags": { - "amenity": "post_box", - "ref": "LN3 148", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663965955, - "lat": 53.3229493, - "lon": -0.3675164, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LN3 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663976956, - "lat": 53.2405783, - "lon": -0.5283986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN2 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663976962, - "lat": 53.2294403, - "lon": -0.5230246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN2 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663976966, - "lat": 53.2351157, - "lon": -0.5249594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN2 14", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 663977030, - "lat": 53.2529846, - "lon": -0.5151953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN2 479", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663977578, - "lat": 53.2281593, - "lon": -0.5384937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LN1 999;LN1 998", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663982184, - "lat": 53.2076996, - "lon": -0.3351745, - "tags": { - "amenity": "post_box", - "ref": "LN3 90", - "source": "survey" - } -}, -{ - "type": "node", - "id": 663992611, - "lat": 51.9843524, - "lon": -0.5943357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "MK17 297" - } -}, -{ - "type": "node", - "id": 664000562, - "lat": 50.8280217, - "lon": -0.1368067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 664013055, - "lat": 57.1116615, - "lon": -5.8538908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV44 105" - } -}, -{ - "type": "node", - "id": 664015773, - "lat": 57.1438733, - "lon": -5.8105658, - "tags": { - "amenity": "post_box", - "ref": "IV43 91", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664017792, - "lat": 57.1436956, - "lon": -5.8018183, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IV43 128", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664017793, - "lat": 57.1381405, - "lon": -5.8048348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:30", - "ref": "IV43 92" - } -}, -{ - "type": "node", - "id": 664026414, - "lat": 51.9053949, - "lon": -0.4546254, - "tags": { - "amenity": "post_box", - "ref": "LU3 2" - } -}, -{ - "type": "node", - "id": 664103987, - "lat": 51.8947865, - "lon": -0.4524231, - "tags": { - "amenity": "post_box", - "ref": "LU4 41" - } -}, -{ - "type": "node", - "id": 664104009, - "lat": 51.9003120, - "lon": -0.4527626, - "tags": { - "amenity": "post_box", - "ref": "LU4 173" - } -}, -{ - "type": "node", - "id": 664104022, - "lat": 51.9002361, - "lon": -0.4479332, - "tags": { - "amenity": "post_box", - "ref": "LU3 48" - } -}, -{ - "type": "node", - "id": 664104041, - "lat": 51.8909679, - "lon": -0.4361241, - "tags": { - "amenity": "post_box", - "ref": "LU4 51" - } -}, -{ - "type": "node", - "id": 664104558, - "lat": 51.3659718, - "lon": -1.3521784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664104707, - "lat": 50.8889316, - "lon": -1.1807582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO17 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664113025, - "lat": 51.8780698, - "lon": -0.4235317, - "tags": { - "amenity": "post_box", - "ref": "LU1 20" - } -}, -{ - "type": "node", - "id": 664113031, - "lat": 51.8774599, - "lon": -0.4197216, - "tags": { - "amenity": "post_box", - "ref": "LU1 15" - } -}, -{ - "type": "node", - "id": 664122044, - "lat": 52.0714037, - "lon": -1.9011587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:45; Su off", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "WR11 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 664137445, - "lat": 52.6055949, - "lon": -1.9861802, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 664137651, - "lat": 52.6087211, - "lon": -1.9835128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 197", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 664158971, - "lat": 51.8955760, - "lon": -0.1968040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 274", - "royal_cypher": "GVIR", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 664188986, - "lat": 52.4670269, - "lon": -2.0898464, - "tags": { - "amenity": "post_box", - "postal_code": "B63", - "ref": "B63 28", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 664208269, - "lat": 52.7076827, - "lon": -2.6586676, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664247951, - "lat": 55.8625847, - "lon": -4.2799206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 664284560, - "lat": 53.2202953, - "lon": -1.4271078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S40 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664304350, - "lat": 53.6658646, - "lon": -1.5091363, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF2 19", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 664304351, - "lat": 53.6591194, - "lon": -1.4849868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF2 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664304352, - "lat": 53.7030291, - "lon": -1.5463745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 10" - } -}, -{ - "type": "node", - "id": 664432861, - "lat": 52.4754592, - "lon": -2.1046686, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 135", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 664438857, - "lat": 52.4725509, - "lon": -2.1044284, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 156", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 664449872, - "lat": 53.3233098, - "lon": -2.6577278, - "tags": { - "amenity": "post_box", - "ref": "WA7 55" - } -}, -{ - "type": "node", - "id": 664469284, - "lat": 53.1646252, - "lon": -3.0526526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 664474638, - "lat": 51.3677200, - "lon": 1.3332004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT7 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664475184, - "lat": 51.3572106, - "lon": 1.3130187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT7 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 664479182, - "lat": 51.3872411, - "lon": 1.3994915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT9 78", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 664479756, - "lat": 51.3639621, - "lon": 1.3947746, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT9 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664482082, - "lat": 51.3758530, - "lon": 1.3563846, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT9 86", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT9 86D", - "source": "survey", - "survey:date": "2023-09-11" - } -}, -{ - "type": "node", - "id": 664485747, - "lat": 51.8821063, - "lon": -0.4084020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Notice plate missing. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664489655, - "lat": 51.3767943, - "lon": 1.3629355, - "tags": { - "amenity": "post_box", - "ref": "CT9 117" - } -}, -{ - "type": "node", - "id": 664490678, - "lat": 51.3779192, - "lon": 1.3795271, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT9 64D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664515805, - "lat": 51.6700219, - "lon": -0.5911250, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HP7 164", - "source": "observation;bing;gps", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 664534999, - "lat": 51.5116212, - "lon": 0.0444917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664562107, - "lat": 53.8279525, - "lon": -2.4180177, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 664565301, - "lat": 53.8237301, - "lon": -2.4122521, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 664570902, - "lat": 53.3988492, - "lon": -2.9213121, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L15 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664570903, - "lat": 53.4040880, - "lon": -2.9472598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "King George VI post box L7 522 by Carron Company on Wavertree Road near Durning Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 522", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Wavertree Road.jpg" - } -}, -{ - "type": "node", - "id": 664571221, - "lat": 52.0550326, - "lon": -2.7174037, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HR4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664572630, - "lat": 51.8999477, - "lon": -2.9705926, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 664572803, - "lat": 53.8227091, - "lon": -2.4065986, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664590266, - "lat": 51.4671600, - "lon": -2.5554538, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 178", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 664590333, - "lat": 51.5141901, - "lon": 0.0462754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E6 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 664590814, - "lat": 51.5075841, - "lon": -2.5534080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS34 637", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664593815, - "lat": 53.8616329, - "lon": -0.8130270, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO42 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664593897, - "lat": 53.8722680, - "lon": -0.7790566, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 664682347, - "lat": 51.6705133, - "lon": -0.5623895, - "tags": { - "amenity": "post_box", - "fixme": "Need to confirm number of this one, due to mismatch with dr5acos", - "ref": "HP6 144" - } -}, -{ - "type": "node", - "id": 664689340, - "lat": 52.5399230, - "lon": -1.8867290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "postal_code": "B44", - "ref": "B44 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual survey & estimate" - } -}, -{ - "type": "node", - "id": 664842591, - "lat": 52.1863715, - "lon": -2.2388187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 664842660, - "lat": 52.1888741, - "lon": -2.2333857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 462" - } -}, -{ - "type": "node", - "id": 664861864, - "lat": 50.8498428, - "lon": -0.9083871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "note:collection_plate": "Not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664939248, - "lat": 52.2864235, - "lon": -1.5330199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV31 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 664939250, - "lat": 52.2864005, - "lon": -1.5330247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV31 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665072792, - "lat": 51.5180772, - "lon": -0.1054360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4A 415;EC4A 4151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box EC4A 415 and EC4A 4151" - } -}, -{ - "type": "node", - "id": 665306952, - "lat": 53.2143648, - "lon": -0.5237333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 665336596, - "lat": 54.0664599, - "lon": -2.8089666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA1 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665391178, - "lat": 51.0176541, - "lon": -1.0157268, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "last_checked": "2020-08-26", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 80", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 665393303, - "lat": 50.9657585, - "lon": -1.0302332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 665395396, - "lat": 53.6392982, - "lon": -2.3330277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "832459528815218", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-06-24" - } -}, -{ - "type": "node", - "id": 665416052, - "lat": 52.9443468, - "lon": -1.5031009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "309345170732260", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 621", - "survey:date": "2021-09-19" - } -}, -{ - "type": "node", - "id": 665432589, - "lat": 55.1593483, - "lon": -1.6074796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE62 5PG", - "ref": "NE62 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665432784, - "lat": 55.1627335, - "lon": -1.6032231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE62 5PB", - "ref": "NE62 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665479935, - "lat": 52.8904492, - "lon": -1.2841834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 665485053, - "lat": 52.2031486, - "lon": -2.2877744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 152" - } -}, -{ - "type": "node", - "id": 665485072, - "lat": 52.1970189, - "lon": -2.2472244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 136" - } -}, -{ - "type": "node", - "id": 665485073, - "lat": 52.1979942, - "lon": -2.2446408, - "tags": { - "amenity": "post_box", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 119" - } -}, -{ - "type": "node", - "id": 665485074, - "lat": 52.2031952, - "lon": -2.2446736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 485" - } -}, -{ - "type": "node", - "id": 665485075, - "lat": 52.1798563, - "lon": -2.2371598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR2 435", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 665485085, - "lat": 52.2094690, - "lon": -2.2743687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR2 174" - } -}, -{ - "type": "node", - "id": 665498711, - "lat": 57.2095328, - "lon": -2.1915760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "AB21 906", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 665498715, - "lat": 57.2031818, - "lon": -2.1855640, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB21 7FE", - "addr:street": "Glenhome Crescent", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 665500650, - "lat": 57.2060870, - "lon": -2.1897027, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-08", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB21 370", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 665550364, - "lat": 52.2151652, - "lon": -2.2777161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 175" - } -}, -{ - "type": "node", - "id": 665550463, - "lat": 52.2230393, - "lon": -2.2542643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR2 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665606304, - "lat": 53.0624400, - "lon": -0.3935000, - "tags": { - "amenity": "post_box", - "ele": "12.8632813", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 665607897, - "lat": 52.2331212, - "lon": -2.2690767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665607930, - "lat": 52.2417449, - "lon": -2.2706565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665607953, - "lat": 52.2400840, - "lon": -2.2421624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR2 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665607999, - "lat": 53.0626350, - "lon": -0.3855066, - "tags": { - "amenity": "post_box", - "ele": "10.9405518", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665712215, - "lat": 51.5144852, - "lon": -0.5739677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 184" - } -}, -{ - "type": "node", - "id": 665712257, - "lat": 51.5178308, - "lon": -0.5779253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL2 191" - } -}, -{ - "type": "node", - "id": 665712297, - "lat": 51.5186678, - "lon": -0.5706497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 245" - } -}, -{ - "type": "node", - "id": 665768435, - "lat": 52.6243591, - "lon": -2.0222919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 1", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 665789384, - "lat": 52.6202593, - "lon": -2.0207573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS3", - "ref": "WS3 287", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 665897219, - "lat": 55.0026870, - "lon": -1.6048113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665897363, - "lat": 55.0034427, - "lon": -1.5984699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE3 704D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 665955089, - "lat": 51.9180669, - "lon": -0.6556395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LU7 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 665955607, - "lat": 51.8720110, - "lon": -0.5065364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU6 91", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666073259, - "lat": 52.7643590, - "lon": -0.9514927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE14 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666073534, - "lat": 52.7650117, - "lon": -0.9607321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666083924, - "lat": 51.3897824, - "lon": -0.2722737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 666175149, - "lat": 51.5072907, - "lon": -0.5432879, - "tags": { - "amenity": "post_box", - "note": "Position approx from memory, having been there a couple of days ago.", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 666180675, - "lat": 55.1045128, - "lon": -1.7858436, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NE20 0AU", - "ref": "NE20 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666180705, - "lat": 55.1496402, - "lon": -1.8150505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "postal_code": "NE61 3QL", - "ref": "NE61 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666180745, - "lat": 55.1272478, - "lon": -1.7981464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:design": "type_m", - "post_box:type": "lamp", - "postal_code": "NE61 3XB", - "ref": "NE61 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666180893, - "lat": 55.1677532, - "lon": -1.7318230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "postal_code": "NE61 3PR", - "ref": "NE61 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666180918, - "lat": 55.1683330, - "lon": -1.7142259, - "tags": { - "amenity": "post_box", - "postal_code": "NE61 2YN", - "ref": "NE61 104" - } -}, -{ - "type": "node", - "id": 666192795, - "lat": 55.1467658, - "lon": -1.7058131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "postal_code": "NE61 6AE", - "ref": "NE61 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666244452, - "lat": 53.2049587, - "lon": -4.1805149, - "tags": { - "amenity": "post_box", - "ref": "LL57 339" - } -}, -{ - "type": "node", - "id": 666258529, - "lat": 53.2028290, - "lon": -4.1759275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666271375, - "lat": 50.8554542, - "lon": -1.2082322, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO15 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666283244, - "lat": 53.8304140, - "lon": -2.6173467, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666283279, - "lat": 53.8222857, - "lon": -2.6093360, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "PR3 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666283288, - "lat": 53.8259475, - "lon": -2.6012682, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 666302584, - "lat": 51.9425751, - "lon": -0.1466471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "SG4 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666362389, - "lat": 50.8236675, - "lon": -3.0200151, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 666402964, - "lat": 52.8927747, - "lon": -1.2914578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG10 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666482163, - "lat": 51.7879991, - "lon": -1.2723204, - "tags": { - "amenity": "post_box", - "ref": "OX2 820" - } -}, -{ - "type": "node", - "id": 666482203, - "lat": 51.7945014, - "lon": -1.2731472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 731" - } -}, -{ - "type": "node", - "id": 666777095, - "lat": 51.3588689, - "lon": 1.4393300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "ref": "CT10 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666779784, - "lat": 51.3655503, - "lon": 1.4432459, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT10 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 666792172, - "lat": 51.3596939, - "lon": 1.4074715, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-08", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT10", - "ref": "CT10 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666817258, - "lat": 53.0892406, - "lon": -2.4651562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW2 153", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 666832446, - "lat": 51.3381294, - "lon": 1.4191955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT11", - "ref": "CT11 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 666837409, - "lat": 51.3294020, - "lon": 1.3172084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT12 140D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666845373, - "lat": 51.3293119, - "lon": 1.3661059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT12 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666848148, - "lat": 51.3360323, - "lon": 1.3674352, - "tags": { - "amenity": "post_box", - "ref": "CT12 63" - } -}, -{ - "type": "node", - "id": 666849751, - "lat": 51.4993528, - "lon": -2.5037026, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 1004" - } -}, -{ - "type": "node", - "id": 666904246, - "lat": 51.3509281, - "lon": 1.3502047, - "tags": { - "amenity": "post_box", - "ref": "CT12 66" - } -}, -{ - "type": "node", - "id": 666925539, - "lat": 57.2042641, - "lon": -2.2153835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "type m post box has been replaced with more modern lamp box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB21 578", - "royal_cypher": "scottish_crown", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 666927845, - "lat": 52.4608176, - "lon": -1.8030720, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B26", - "ref": "B26 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 666933643, - "lat": 51.2674478, - "lon": 1.3190965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "202878131767311", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "CT13 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 666944970, - "lat": 51.2696813, - "lon": 1.3338282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CT13 117", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT13 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-10-18" - } -}, -{ - "type": "node", - "id": 666944978, - "lat": 51.2692776, - "lon": 1.3404313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT13 112" - } -}, -{ - "type": "node", - "id": 666949330, - "lat": 51.2750618, - "lon": 1.3388601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT13 102D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666957822, - "lat": 51.2727821, - "lon": 1.3494319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "137901868484021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CT13 106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 666957827, - "lat": 51.2708795, - "lon": 1.3595253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CT13 84", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 666965167, - "lat": 51.2253100, - "lon": 1.3993611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT14 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 666968539, - "lat": 51.2265605, - "lon": 1.4021722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT14 3", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 666968979, - "lat": 51.2301834, - "lon": 1.4022001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT14 30", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 666970625, - "lat": 51.2267882, - "lon": 1.4045282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT14 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 666977548, - "lat": 51.2293588, - "lon": 1.3998482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 666980354, - "lat": 51.2197909, - "lon": 1.4001537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CT14 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 666980355, - "lat": 51.2208810, - "lon": 1.4045939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "834622783849415", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT14 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 666983261, - "lat": 51.2092725, - "lon": 1.3992302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "218359989789770", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CT14 35", - "royal_cypher": "GR", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 666992500, - "lat": 51.1826047, - "lon": 1.3955674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT14 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666992503, - "lat": 51.2020157, - "lon": 1.3831985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 666992508, - "lat": 51.1997366, - "lon": 1.3927749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT14 34", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 667008993, - "lat": 53.0310753, - "lon": -0.1610714, - "tags": { - "amenity": "post_box", - "ref": "LN4 256", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667008994, - "lat": 53.0246370, - "lon": -0.1531785, - "tags": { - "amenity": "post_box", - "ref": "LN4 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667009009, - "lat": 53.0896355, - "lon": -0.2152432, - "tags": { - "amenity": "post_box", - "ref": "LN4 379", - "source": "OS_OpenData _StreetView" - } -}, -{ - "type": "node", - "id": 667013253, - "lat": 52.7120853, - "lon": -2.7196691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "SY2 608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667015633, - "lat": 52.7184610, - "lon": -2.7212355, - "tags": { - "amenity": "post_box", - "ref": "SY2 511" - } -}, -{ - "type": "node", - "id": 667021903, - "lat": 52.4800690, - "lon": 0.1671260, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE15 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667022041, - "lat": 52.4825158, - "lon": 0.1764771, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE15 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667022157, - "lat": 52.4882971, - "lon": 0.1773687, - "tags": { - "amenity": "post_box", - "ref": "PE15 53" - } -}, -{ - "type": "node", - "id": 667022194, - "lat": 52.4968620, - "lon": 0.1780970, - "tags": { - "amenity": "post_box", - "ref": "PE15 15" - } -}, -{ - "type": "node", - "id": 667022219, - "lat": 52.5098849, - "lon": 0.1813636, - "tags": { - "amenity": "post_box", - "ref": "PE15 40" - } -}, -{ - "type": "node", - "id": 667027098, - "lat": 52.4440391, - "lon": -0.8141958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 89" - } -}, -{ - "type": "node", - "id": 667027099, - "lat": 52.4429371, - "lon": -0.8184771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "old_ref": "Desborough Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 667027101, - "lat": 52.4385243, - "lon": -0.8226903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 88" - } -}, -{ - "type": "node", - "id": 667038371, - "lat": 52.9492710, - "lon": -0.0269608, - "tags": { - "amenity": "post_box", - "ref": "PE21 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667038436, - "lat": 52.9582305, - "lon": -0.0193537, - "tags": { - "amenity": "post_box", - "ref": "PE21 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667055897, - "lat": 51.5107379, - "lon": 0.0552149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667080588, - "lat": 52.8297201, - "lon": 0.0251710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE12 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667092869, - "lat": 50.7355375, - "lon": -3.5386320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2016-06-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX4 340D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 667096204, - "lat": 51.5177061, - "lon": 0.0623402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E6 46P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667128445, - "lat": 52.7068551, - "lon": -2.7306351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SY2 447", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 667131502, - "lat": 50.1172848, - "lon": -5.1098588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR11 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 667136860, - "lat": 52.7436427, - "lon": 0.1270850, - "tags": { - "amenity": "post_box", - "ref": "PE13 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667142955, - "lat": 52.4536429, - "lon": 0.0484333, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE16 22" - } -}, -{ - "type": "node", - "id": 667142971, - "lat": 52.4492531, - "lon": 0.0547991, - "tags": { - "amenity": "post_box", - "ref": "PE16 45" - } -}, -{ - "type": "node", - "id": 667143130, - "lat": 52.4567675, - "lon": 0.0519513, - "tags": { - "amenity": "post_box", - "ref": "PE16 12" - } -}, -{ - "type": "node", - "id": 667143432, - "lat": 52.4573239, - "lon": 0.0606593, - "tags": { - "amenity": "post_box", - "ref": "PE16 35" - } -}, -{ - "type": "node", - "id": 667181188, - "lat": 51.4700821, - "lon": -0.1711881, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 10", - "royal_cypher": "EIIR", - "support": "pole", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 667181234, - "lat": 51.4179380, - "lon": -0.2853245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 667181268, - "lat": 51.4098539, - "lon": -0.0454792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "ref": "BR3 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667181314, - "lat": 51.4192512, - "lon": -0.0537465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667181315, - "lat": 51.4234415, - "lon": -0.0517657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 21D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667181316, - "lat": 51.4219942, - "lon": -0.0623939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667181341, - "lat": 51.4489813, - "lon": -0.0898543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667181383, - "lat": 51.4380593, - "lon": -0.0526939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667181393, - "lat": 51.4442347, - "lon": -0.0517145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SE23 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q26354006" - } -}, -{ - "type": "node", - "id": 667181398, - "lat": 51.4466413, - "lon": -0.0493901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Ref not legible on 17/07/21 because collection plate has slipped down", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SE23 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q27085558" - } -}, -{ - "type": "node", - "id": 667352788, - "lat": 53.8460112, - "lon": -2.4346963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 667352791, - "lat": 53.8365569, - "lon": -2.4195851, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 667362598, - "lat": 54.0078302, - "lon": -2.2920182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 667362602, - "lat": 53.9118607, - "lon": -2.3424472, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667363533, - "lat": 54.0355072, - "lon": -2.3001630, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD24 88" - } -}, -{ - "type": "node", - "id": 667379135, - "lat": 51.1514287, - "lon": 1.3712496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT15 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-01-19", - "wikimedia_commons": "File:Phone Box and Post Box, Reach Road - geograph.org.uk - 6155106.jpg" - } -}, -{ - "type": "node", - "id": 667379137, - "lat": 51.1520085, - "lon": 1.3837780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT15 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667379138, - "lat": 51.1544700, - "lon": 1.3848081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667381155, - "lat": 52.4795781, - "lon": -1.7523418, - "tags": { - "amenity": "post_box", - "postal_code": "B37", - "ref": "B37 1151", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 667387877, - "lat": 51.5534751, - "lon": -0.0812156, - "tags": { - "amenity": "post_box", - "ref": "N16 50" - } -}, -{ - "type": "node", - "id": 667387913, - "lat": 51.5554042, - "lon": -0.0855333, - "tags": { - "amenity": "post_box", - "ref": "N16 15" - } -}, -{ - "type": "node", - "id": 667424679, - "lat": 51.5014787, - "lon": 0.0714083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E16 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667449405, - "lat": 57.1776533, - "lon": -2.1702773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 667469814, - "lat": 50.8623964, - "lon": -0.9036238, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30, Sa 08:00", - "post_box:type": "lamp", - "ref": "PO10 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667479163, - "lat": 52.6780019, - "lon": 0.1706111, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479179, - "lat": 52.6711570, - "lon": 0.2599887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE14 159", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479196, - "lat": 52.6810346, - "lon": 0.2516838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE14 189", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479253, - "lat": 52.6870618, - "lon": 0.3234356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE34 269", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479265, - "lat": 52.6996819, - "lon": 0.3282497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE34 143", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479305, - "lat": 52.7013895, - "lon": 0.3617438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE34 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479474, - "lat": 52.7927957, - "lon": 0.4369065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667479507, - "lat": 52.8093850, - "lon": 0.4848063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 667500332, - "lat": 52.8300976, - "lon": 0.5083582, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5585331", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PE35 351", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 667500368, - "lat": 52.8649567, - "lon": 0.5077149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE31 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667503160, - "lat": 52.4555324, - "lon": 0.0492103, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 667586067, - "lat": 55.9454600, - "lon": -3.2437469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "470828870884439", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 184", - "survey:date": "2020-08-22" - } -}, -{ - "type": "node", - "id": 667586152, - "lat": 55.9469941, - "lon": -3.2417975, - "tags": { - "amenity": "post_box", - "ref": "EH12 194" - } -}, -{ - "type": "node", - "id": 667586178, - "lat": 55.9484230, - "lon": -3.2442674, - "tags": { - "amenity": "post_box", - "ref": "EH12 278" - } -}, -{ - "type": "node", - "id": 667586209, - "lat": 55.9460532, - "lon": -3.2214294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH12 35", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667590577, - "lat": 55.6123989, - "lon": -3.3153399, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH45 55D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667590590, - "lat": 55.6256300, - "lon": -3.2972973, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "mapillary": "226358148859152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EH45 17D", - "royal_cypher": "EVIIR", - "source": "survey", - "survey:date": "2024-08-09" - } -}, -{ - "type": "node", - "id": 667608449, - "lat": 55.9467870, - "lon": -3.2155219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 104" - } -}, -{ - "type": "node", - "id": 667817351, - "lat": 55.1024159, - "lon": -1.8414660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-02-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "NE20 0DY", - "ref": "NE20 459" - } -}, -{ - "type": "node", - "id": 667952505, - "lat": 52.3640576, - "lon": -1.4374114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667953340, - "lat": 51.5005978, - "lon": 0.0632102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667977646, - "lat": 56.4602558, - "lon": -2.9703278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "Yes, these two postboxes are right next to one another", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 18", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 667996476, - "lat": 50.4327050, - "lon": -3.5599149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "810678173255018", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "postal_code": "TQ4", - "ref": "TQ4 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2022-06-20", - "survey:date": "2022-06-20" - } -}, -{ - "type": "node", - "id": 668000534, - "lat": 53.8685728, - "lon": -2.4085306, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 668001076, - "lat": 53.8722086, - "lon": -2.3958459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 668001079, - "lat": 53.8628015, - "lon": -2.3961731, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB7 460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 668010013, - "lat": 51.0048790, - "lon": -0.9366904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GU32 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 668033307, - "lat": 51.0436568, - "lon": -1.0423951, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-08", - "old_ref": "GU34 95", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 668038528, - "lat": 52.8949825, - "lon": -1.2920501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 668090634, - "lat": 50.9601136, - "lon": -0.1585748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 668090636, - "lat": 50.9617849, - "lon": -0.1563598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 668141881, - "lat": 50.8984498, - "lon": -1.4059669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 319D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 668397302, - "lat": 55.5846954, - "lon": -2.8618475, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD1 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 668422115, - "lat": 55.5521051, - "lon": -2.8523146, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 668425427, - "lat": 50.1627926, - "lon": -5.0646435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 668425437, - "lat": 50.1649501, - "lon": -5.0704320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 668425450, - "lat": 50.1784903, - "lon": -5.0667032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR11 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 668645919, - "lat": 55.4927537, - "lon": -2.8360879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD7 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 668710444, - "lat": 55.4489187, - "lon": -2.7631811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3396801643755728", - "note": "Lamp box attached on it's side to a building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD9 35", - "source": "survey", - "survey:date": "2020-08-14" - } -}, -{ - "type": "node", - "id": 668734739, - "lat": 55.6502828, - "lon": -2.8692151, - "tags": { - "amenity": "post_box", - "ref": "TD1 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 668835940, - "lat": 51.5116141, - "lon": -0.0816851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3M 319;EC3M 3191", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 668961008, - "lat": 50.9144715, - "lon": -1.2706751, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 668961009, - "lat": 50.9161839, - "lon": -1.2590118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 668961010, - "lat": 50.9276673, - "lon": -1.2331013, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO32 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 668961012, - "lat": 50.8703036, - "lon": -1.1994296, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO17 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 668999482, - "lat": 55.9899734, - "lon": -3.4040476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1338731183384388", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH30 184", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2023-07-24" - } -}, -{ - "type": "node", - "id": 669188957, - "lat": 51.3616862, - "lon": -2.2353272, - "tags": { - "amenity": "post_box", - "mapillary": "472815563999291", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2019-12-14" - } -}, -{ - "type": "node", - "id": 669222528, - "lat": 53.3964261, - "lon": -2.9048991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "104034471980763", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 629", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-08-26" - } -}, -{ - "type": "node", - "id": 669222529, - "lat": 53.4046523, - "lon": -2.9086006, - "tags": { - "amenity": "post_box", - "ref": "L15 176" - } -}, -{ - "type": "node", - "id": 669222530, - "lat": 53.3980317, - "lon": -2.9320829, - "tags": { - "amenity": "post_box", - "ref": "L15 21" - } -}, -{ - "type": "node", - "id": 669222531, - "lat": 53.3961574, - "lon": -2.9293609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "668899497578847", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "L15 483", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 669222532, - "lat": 53.4015244, - "lon": -2.9336310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1086126431981675", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 669222537, - "lat": 53.3971937, - "lon": -2.9358196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "428880748592299", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L15 609", - "survey:date": "2021-10-26" - } -}, -{ - "type": "node", - "id": 669222540, - "lat": 53.4003347, - "lon": -2.9371286, - "tags": { - "amenity": "post_box", - "ref": "L15 386" - } -}, -{ - "type": "node", - "id": 669223161, - "lat": 53.4093675, - "lon": -2.9145159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "222756749363454", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L13 199", - "survey:date": "2020-01-15" - } -}, -{ - "type": "node", - "id": 669223164, - "lat": 53.4027377, - "lon": -2.9131545, - "tags": { - "amenity": "post_box", - "ref": "L15 390" - } -}, -{ - "type": "node", - "id": 669571470, - "lat": 53.8896769, - "lon": -2.3575173, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 669722188, - "lat": 52.6467721, - "lon": -2.8839035, - "tags": { - "amenity": "post_box", - "ref": "SY5 217", - "source": "survey" - } -}, -{ - "type": "node", - "id": 669876593, - "lat": 55.8835332, - "lon": -4.3271004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G13 352" - } -}, -{ - "type": "node", - "id": 669888542, - "lat": 52.6941759, - "lon": -2.7554867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "description": "Pillar box corner of Meole Rise and Upper Road. Partially obscured by hedge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY3 526", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 669918974, - "lat": 53.2523687, - "lon": -2.4743274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 109" - } -}, -{ - "type": "node", - "id": 669946815, - "lat": 51.5657069, - "lon": -0.3517370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 669958022, - "lat": 50.9596338, - "lon": -0.1176051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 669978216, - "lat": 51.5264452, - "lon": 0.1177386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IG11 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670093045, - "lat": 50.9549834, - "lon": -0.1184434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670093064, - "lat": 50.9628475, - "lon": -0.1142460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670301719, - "lat": 51.5243110, - "lon": 0.1119092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670408323, - "lat": 51.5289004, - "lon": 0.0990596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670420418, - "lat": 54.9191914, - "lon": -1.5529612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE9 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 670420425, - "lat": 54.9200979, - "lon": -1.5359378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE37 307", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 670420456, - "lat": 54.9200853, - "lon": -1.5150609, - "tags": { - "amenity": "post_box", - "ref": "NE37 351" - } -}, -{ - "type": "node", - "id": 670420460, - "lat": 54.9204113, - "lon": -1.5451488, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE9 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670646813, - "lat": 51.5102840, - "lon": -0.1324270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Left aperture for first and abroad; right aperture for second class.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1D 111;W1D 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670746002, - "lat": 51.5269283, - "lon": 0.1133964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "reference not visible due to vandalism", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 670778414, - "lat": 53.2486817, - "lon": -2.4826068, - "tags": { - "amenity": "post_box", - "ref": "CW9 142" - } -}, -{ - "type": "node", - "id": 670778418, - "lat": 53.2487213, - "lon": -2.4826296, - "tags": { - "amenity": "post_box", - "ref": "CW9 138" - } -}, -{ - "type": "node", - "id": 670847010, - "lat": 52.1446603, - "lon": -0.4729029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 670955869, - "lat": 51.9796055, - "lon": -0.8488900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK17 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 670959741, - "lat": 51.0186595, - "lon": -1.3150801, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2020-01-02", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO21 250", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 670960379, - "lat": 51.0231370, - "lon": -1.3126754, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-01-02", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO21 25D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 671254007, - "lat": 53.7835229, - "lon": -1.0728170, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO8 14;YO8 9014", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671336681, - "lat": 51.5804103, - "lon": -0.3968570, - "tags": { - "amenity": "post_box", - "ref": "HA5 282" - } -}, -{ - "type": "node", - "id": 671336683, - "lat": 51.5777217, - "lon": -0.3946780, - "tags": { - "amenity": "post_box", - "ref": "HA5 370" - } -}, -{ - "type": "node", - "id": 671336685, - "lat": 51.5777521, - "lon": -0.3875947, - "tags": { - "amenity": "post_box", - "ref": "HA5 401" - } -}, -{ - "type": "node", - "id": 671337365, - "lat": 53.9353415, - "lon": -1.1054850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO24 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671362457, - "lat": 54.7990845, - "lon": -1.6734343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 169" - } -}, -{ - "type": "node", - "id": 671368683, - "lat": 52.8900472, - "lon": -1.2903008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG10 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671369425, - "lat": 50.1117362, - "lon": -5.1383350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671396146, - "lat": 53.7179870, - "lon": -1.0847309, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 9" - } -}, -{ - "type": "node", - "id": 671412311, - "lat": 53.7122950, - "lon": -1.0183693, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 1" - } -}, -{ - "type": "node", - "id": 671427971, - "lat": 50.8074598, - "lon": -3.2963912, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX14 38" - } -}, -{ - "type": "node", - "id": 671433658, - "lat": 50.8056311, - "lon": -3.2946051, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 671494048, - "lat": 52.0736689, - "lon": -1.8820602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15; Su off", - "post_box:type": "lamp", - "ref": "WR11 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671494085, - "lat": 52.0850928, - "lon": -1.8565847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "post_box:type": "lamp", - "ref": "WR11 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671503912, - "lat": 51.7286800, - "lon": -0.1170876, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-04", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "ref": "SG13 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 671518814, - "lat": 51.7851257, - "lon": 0.0002639, - "tags": { - "amenity": "post_box", - "ref": "SG12 124" - } -}, -{ - "type": "node", - "id": 671518859, - "lat": 51.7867814, - "lon": 0.0020167, - "tags": { - "amenity": "post_box", - "ref": "SG12 42" - } -}, -{ - "type": "node", - "id": 671518862, - "lat": 51.7884998, - "lon": 0.0063976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SG12 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671545183, - "lat": 51.3721944, - "lon": 0.0794881, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671545186, - "lat": 51.3589191, - "lon": 0.0815563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 473D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671561040, - "lat": 53.8416956, - "lon": -2.3998858, - "tags": { - "amenity": "post_box", - "note": "Post box is in the wall of a house.", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 671561053, - "lat": 53.8658441, - "lon": -2.3890120, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671561146, - "lat": 53.8703585, - "lon": -2.3862637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671561168, - "lat": 53.8682861, - "lon": -2.3879284, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671561171, - "lat": 53.8670192, - "lon": -2.3810128, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671561175, - "lat": 53.8944887, - "lon": -2.3287724, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 671561747, - "lat": 53.8802636, - "lon": -2.3556615, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671565022, - "lat": 50.7969820, - "lon": -3.2913889, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX14 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 671592867, - "lat": 50.9436410, - "lon": -0.1248832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671597392, - "lat": 53.7197000, - "lon": -0.9026158, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671651456, - "lat": 53.8345315, - "lon": -2.5916897, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 671681067, - "lat": 52.4058769, - "lon": -1.9101911, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 1132", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671687722, - "lat": 50.4992234, - "lon": -3.5818566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671687985, - "lat": 50.5018234, - "lon": -3.5496135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ12 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671702528, - "lat": 50.5023768, - "lon": -3.5768277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671702595, - "lat": 50.5073003, - "lon": -3.5668271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ12 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671705290, - "lat": 51.5683128, - "lon": -0.0312389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E10 27P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671705291, - "lat": 51.5681494, - "lon": -0.0310177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671725075, - "lat": 52.6163314, - "lon": -2.0135547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS3 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671728151, - "lat": 51.5698429, - "lon": -0.0395204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671729312, - "lat": 50.4953969, - "lon": -3.5795698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671738018, - "lat": 50.4948671, - "lon": -3.5770631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 151D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 671741401, - "lat": 52.6499629, - "lon": -2.8931285, - "tags": { - "amenity": "post_box", - "ref": "SY5 432", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671767290, - "lat": 50.9140537, - "lon": -1.4265282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671772184, - "lat": 53.8317647, - "lon": -2.3885012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BB7 470" - } -}, -{ - "type": "node", - "id": 671782631, - "lat": 57.2015456, - "lon": -2.1773479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 671787615, - "lat": 52.3670718, - "lon": -0.0672765, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 671797238, - "lat": 52.6176822, - "lon": -2.0216349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 354", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 671798411, - "lat": 57.2095165, - "lon": -2.1915512, - "tags": { - "amenity": "post_box", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB21 579" - } -}, -{ - "type": "node", - "id": 671799631, - "lat": 53.3558440, - "lon": -1.4490786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S2 905", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671800109, - "lat": 50.9488693, - "lon": -0.1258351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 671800121, - "lat": 50.9511510, - "lon": -0.1224018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671800129, - "lat": 50.9531723, - "lon": -0.1217359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 671801039, - "lat": 52.2033521, - "lon": -2.1146123, - "tags": { - "amenity": "post_box", - "ref": "WR7 252" - } -}, -{ - "type": "node", - "id": 671801120, - "lat": 52.2072154, - "lon": -2.1169119, - "tags": { - "amenity": "post_box", - "ref": "WR7 256" - } -}, -{ - "type": "node", - "id": 671816710, - "lat": 57.2046838, - "lon": -2.1754242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 671892520, - "lat": 53.4147731, - "lon": -2.9777220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L3 520 by Carron Company on Richmond Row, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L3 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Richmond Row, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 671893839, - "lat": 53.4146676, - "lon": -2.9993352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR post box L3 174 at the entrance to Waterloo Dock, Waterloo Road, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L3 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Waterloo Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 671893841, - "lat": 53.4180150, - "lon": -2.9998878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L3 509 by Carron Company on Regent Road, Liverpool at junction with Regent Street.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L3 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Regent Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 671907777, - "lat": 51.5641920, - "lon": -0.0484884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 672111222, - "lat": 50.7094355, - "lon": -3.5481248, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-11", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "ref": "EX2 303" - } -}, -{ - "type": "node", - "id": 672182388, - "lat": 52.4743304, - "lon": -2.0983021, - "tags": { - "amenity": "post_box", - "postal_code": "DY5", - "ref": "DY5 256", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 672196248, - "lat": 53.8062374, - "lon": -0.2756715, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 672196258, - "lat": 53.7997622, - "lon": -0.2457521, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672207233, - "lat": 51.2822263, - "lon": -2.1992831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:10", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BA13 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 672305560, - "lat": 53.4680930, - "lon": -2.2432380, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672463462, - "lat": 53.6982391, - "lon": -1.6396565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672495238, - "lat": 53.2621561, - "lon": -3.9676208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL33 130D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 672520858, - "lat": 51.7916470, - "lon": -3.9841215, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-11", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:type": "pillar", - "ref": "SA18 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672551403, - "lat": 53.2528813, - "lon": -3.9754746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 672554093, - "lat": 52.4524191, - "lon": 0.6228501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP27 3403D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 672555135, - "lat": 52.4480367, - "lon": 0.6237493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "IP27 3247", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 672562730, - "lat": 53.1281341, - "lon": -1.2938370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "181", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG17 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672562731, - "lat": 53.1287262, - "lon": -1.3023145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG17 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 672562809, - "lat": 53.1445645, - "lon": -1.3402301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "165.7116699", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE55 367", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 672594084, - "lat": 53.4321670, - "lon": -2.9665337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L4 574 on Blessington Road, Anfield at junction with Gurnall Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Blessington Road, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 672633951, - "lat": 53.4280005, - "lon": -2.9540909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box L4 8 on Walton Breck Road near junction of Oakfield.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L4 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Oakfield, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 672655222, - "lat": 53.4425952, - "lon": -2.9810441, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672690149, - "lat": 50.1604656, - "lon": -5.3550125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:15; Su off", - "drive_through": "no", - "name": "Leedstown Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR27 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 672697268, - "lat": 53.9152613, - "lon": -2.3473957, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672697275, - "lat": 53.9052199, - "lon": -2.3673951, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 672697279, - "lat": 53.9069770, - "lon": -2.3691386, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672697282, - "lat": 53.8718282, - "lon": -2.5005131, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BB7 420", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 672697286, - "lat": 53.9478783, - "lon": -2.3808885, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 672700911, - "lat": 53.0254404, - "lon": -2.1799192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 106" - } -}, -{ - "type": "node", - "id": 672710680, - "lat": 52.5144116, - "lon": 1.0218543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR17 1734D" - } -}, -{ - "type": "node", - "id": 672710695, - "lat": 52.5181265, - "lon": 1.0168744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR17 1733" - } -}, -{ - "type": "node", - "id": 672719034, - "lat": 52.4189977, - "lon": 0.7497525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP24 3317", - "ref:GB:uprn": "10015369557", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 672719035, - "lat": 52.4164278, - "lon": 0.7473926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP24 3308D", - "ref:GB:uprn": "10015286618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672724500, - "lat": 52.4136570, - "lon": 0.7503251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "note": "Two phsical boxes here, side by side.", - "note_2": "Although collection plate lists Sunday times, added sticker says no more Sunday collections.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP24 3249", - "ref:GB:uprn": "10011981035", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672755387, - "lat": 53.2796923, - "lon": -3.0519494, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672776289, - "lat": 50.9053503, - "lon": -3.4724319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 672777235, - "lat": 53.7600194, - "lon": -2.3731621, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672794732, - "lat": 53.4229870, - "lon": -2.9584597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type A post box L5 434 formerly at a branch office, now at the library which replaced it.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L5 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Breck Road library.jpg" - } -}, -{ - "type": "node", - "id": 672826417, - "lat": 51.5483061, - "lon": -0.1410556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "manufacturer:wikidata": "Q125385728", - "note": "to see postbox numbers, push collection plates at the bottom", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW5 1;NW5 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 1 and NW5 111" - } -}, -{ - "type": "node", - "id": 672826439, - "lat": 51.5502606, - "lon": -0.1408398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 7D" - } -}, -{ - "type": "node", - "id": 672905400, - "lat": 53.2814484, - "lon": -3.0568857, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672905743, - "lat": 53.2791747, - "lon": -3.0626701, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 672931318, - "lat": 52.4142624, - "lon": 0.7470882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP24 3301", - "ref:GB:uprn": "10015312939", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 672931877, - "lat": 53.2832872, - "lon": -3.0643318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH64 591", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 672947632, - "lat": 53.8692812, - "lon": -0.9507463, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672964063, - "lat": 52.3761264, - "lon": -0.0944898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 672974467, - "lat": 52.4101382, - "lon": 0.7542666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP24 3320D", - "ref:GB:uprn": "10015277194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 672995308, - "lat": 53.4263914, - "lon": -2.9661426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "description": "QEII Type A post box L5 329 by Machan at junction of Robson Street and Mere Lane, Everton", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L5 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at junction of Robson Street and Mere Lane.jpg" - } -}, -{ - "type": "node", - "id": 672996277, - "lat": 51.5572853, - "lon": 0.6748028, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 673333764, - "lat": 51.6405991, - "lon": -0.1860908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN5 137D" - } -}, -{ - "type": "node", - "id": 673387918, - "lat": 51.4971250, - "lon": 0.1601777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mapillary": "252710713308508", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DA17 418", - "royal_cypher": "EIIR", - "survey:date": "2021-04-08" - } -}, -{ - "type": "node", - "id": 673420841, - "lat": 53.2985230, - "lon": -3.0570360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH64 579D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 673587182, - "lat": 50.7729817, - "lon": 0.2771523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "BN21 766D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 673686628, - "lat": 50.1467263, - "lon": -5.0889697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 673784674, - "lat": 52.9924495, - "lon": -1.3212034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1313", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 673784797, - "lat": 52.9684958, - "lon": -1.3138376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:15", - "post_box:type": "pillar", - "ref": "DE7 1331", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 673784806, - "lat": 52.9721936, - "lon": -1.3148146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps" - } -}, -{ - "type": "node", - "id": 673885376, - "lat": 53.3606962, - "lon": -2.9120601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "474044763661114", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L19 588", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 673889760, - "lat": 53.3659048, - "lon": -2.9135107, - "tags": { - "amenity": "post_box", - "ref": "L19 374" - } -}, -{ - "type": "node", - "id": 673917821, - "lat": 53.3599966, - "lon": -2.8877498, - "tags": { - "amenity": "post_box", - "ref": "L19 674" - } -}, -{ - "type": "node", - "id": 674094014, - "lat": 53.8694892, - "lon": -2.3814951, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 674101893, - "lat": 53.8746889, - "lon": -2.3799126, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 674101897, - "lat": 53.8790381, - "lon": -2.3823327, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB7 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 674105107, - "lat": 53.8824642, - "lon": -2.3849906, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 674106568, - "lat": 53.8764912, - "lon": -2.3945896, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 674111404, - "lat": 53.8689854, - "lon": -2.4700788, - "tags": { - "amenity": "post_box", - "ref": "BB7 429" - } -}, -{ - "type": "node", - "id": 674111405, - "lat": 53.8656134, - "lon": -2.4630192, - "tags": { - "amenity": "post_box", - "ref": "BB7 411" - } -}, -{ - "type": "node", - "id": 674111415, - "lat": 53.8861825, - "lon": -2.4645427, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 674111434, - "lat": 53.8883609, - "lon": -2.4129284, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 674226319, - "lat": 53.3502018, - "lon": -2.8955152, - "tags": { - "amenity": "post_box", - "ref": "L19 604" - } -}, -{ - "type": "node", - "id": 674289797, - "lat": 53.4284895, - "lon": -2.9500492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type A post box L4 504 outside Priory Road Post Office, Anfield, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L4 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Priory Road Post Office, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 674335851, - "lat": 53.4452178, - "lon": -2.9502348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "George V type B post box L4 774 by Carron Company at Walton Hall Avenue Post Office on Stanley Park Avenue North, Walton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 774", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Walton Hall Avenue post office.jpg" - } -}, -{ - "type": "node", - "id": 674460560, - "lat": 52.2371201, - "lon": -1.6900455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CV37 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 674460665, - "lat": 52.2345941, - "lon": -1.6865441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37", - "ref": "CV37 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 674482799, - "lat": 52.9359793, - "lon": 0.6083276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "312837193772749", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 67", - "source": "survey", - "survey:date": "2020-10-07" - } -}, -{ - "type": "node", - "id": 674482841, - "lat": 52.9434747, - "lon": 0.7176697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 377", - "source": "survey" - } -}, -{ - "type": "node", - "id": 674489823, - "lat": 52.3838724, - "lon": -0.1199225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 63" - } -}, -{ - "type": "node", - "id": 674503338, - "lat": 53.4321180, - "lon": -2.9538444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VII Type B post box L4 464 on Priory Road near Watford Road, Anfield.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 464", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Priory Road, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 674683236, - "lat": 52.9224071, - "lon": 0.8012769, - "tags": { - "amenity": "post_box", - "note": "No information panel in place when I surveyed this.", - "source": "survey" - } -}, -{ - "type": "node", - "id": 674683459, - "lat": 52.9572834, - "lon": 0.8513244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR23 2301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 674683521, - "lat": 52.9225818, - "lon": 0.8826665, - "tags": { - "amenity": "post_box", - "ref": "NR23 2310", - "source": "survey" - } -}, -{ - "type": "node", - "id": 674692096, - "lat": 52.6444758, - "lon": -2.8947909, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 674745333, - "lat": 53.7985566, - "lon": -2.4409336, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 674906530, - "lat": 52.4322429, - "lon": -1.8931735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "pillar", - "postal_code": "B14", - "ref": "B14 4011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 674947529, - "lat": 50.8443459, - "lon": -0.8993474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 675376574, - "lat": 50.6802165, - "lon": -1.5182385, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 12D", - "ref:GB:uprn": "10015389994", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/camp-road-po39-0aa/0000PO4012" - } -}, -{ - "type": "node", - "id": 675669872, - "lat": 53.2741650, - "lon": -3.0173350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH64 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 675681442, - "lat": 53.2851990, - "lon": -3.0596100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "created_by": "iLOE 1.8", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 675763684, - "lat": 53.3128220, - "lon": -2.9643465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "description": "King George VI Type B post box CH62 379 by Lion Foundry, Stanley Lane, Eastham.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 379", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Stanley Lane, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 675792375, - "lat": 51.5073592, - "lon": -0.1322576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "inscription": "This plaque commemorates the bicentenary of the birth of Anthony Trollope (1815 - 1882), who introduced pillar boxes to the United Kingdom in 1852. In 1855 this street became one of the first in London to have a pillar box.", - "manufacturer:wikidata": "Q125385728", - "note": "The postbox number on the right collection plate isn't visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box SW1Y 63D" - } -}, -{ - "type": "node", - "id": 675792756, - "lat": 51.5063351, - "lon": -0.1320711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "SW1Y 24;SW1Y 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 675799256, - "lat": 51.5060814, - "lon": -0.1357934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 32;SW1Y 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 675804717, - "lat": 51.5062582, - "lon": -0.1380833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 53D;SW1Y 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box SW1Y 53D and SW1Y 153D" - } -}, -{ - "type": "node", - "id": 675835586, - "lat": 51.5056966, - "lon": -0.1397148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1A 28D;SW1A 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box SW1A 28D and SW1A 128D" - } -}, -{ - "type": "node", - "id": 675848879, - "lat": 51.5068419, - "lon": -0.1398312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1A 71D;SW1A 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 675860551, - "lat": 51.5078729, - "lon": -0.1385690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "Both apertures blocked (10/06/19) possibly due to roadworks", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 86;SW1Y 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 675871465, - "lat": 51.5085486, - "lon": -0.1364689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 68;SW1Y 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 675924353, - "lat": 57.1812222, - "lon": -2.1833851, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB21 9EY", - "addr:street": "Bankhead Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB21 271" - } -}, -{ - "type": "node", - "id": 676005519, - "lat": 51.4629780, - "lon": -0.2636125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 676015365, - "lat": 52.6190160, - "lon": -2.0085938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-03-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS3 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676017974, - "lat": 51.5752255, - "lon": -0.0766239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 39" - } -}, -{ - "type": "node", - "id": 676067054, - "lat": 53.7647062, - "lon": -2.4263685, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB1 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676079250, - "lat": 53.0643368, - "lon": -2.1679372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 565" - } -}, -{ - "type": "node", - "id": 676079285, - "lat": 53.0573671, - "lon": -2.1605664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 67" - } -}, -{ - "type": "node", - "id": 676079313, - "lat": 53.0602259, - "lon": -2.1651464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 586" - } -}, -{ - "type": "node", - "id": 676083675, - "lat": 54.6977407, - "lon": -1.5090329, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676112154, - "lat": 50.6656119, - "lon": -1.2322921, - "tags": { - "amenity": "post_box", - "check_date": "2016-05-08", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 41D", - "ref:GB:uprn": "10015307917", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 676125331, - "lat": 54.7819131, - "lon": -1.6244404, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/4985182", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 42" - } -}, -{ - "type": "node", - "id": 676199467, - "lat": 57.2042492, - "lon": -2.2153983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "AB21 5", - "royal_cypher": "no", - "source": "survey; gps; bing" - } -}, -{ - "type": "node", - "id": 676224073, - "lat": 51.2624515, - "lon": 0.5133519, - "tags": { - "amenity": "post_box", - "ref": "ME15 175" - } -}, -{ - "type": "node", - "id": 676237613, - "lat": 51.7809037, - "lon": -1.1620136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX33 873", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676250977, - "lat": 51.2612874, - "lon": 0.5101646, - "tags": { - "amenity": "post_box", - "ref": "ME15 385" - } -}, -{ - "type": "node", - "id": 676286510, - "lat": 57.2070592, - "lon": -2.1738984, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 676286512, - "lat": 57.2091329, - "lon": -2.1807246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Balloch Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB21 553D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 676291716, - "lat": 51.2549137, - "lon": 0.4686254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 67D" - } -}, -{ - "type": "node", - "id": 676303518, - "lat": 52.9757312, - "lon": -1.2810609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "plate broken, collection times not visible 170619", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 676305763, - "lat": 51.2717776, - "lon": 0.5124649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME16 344" - } -}, -{ - "type": "node", - "id": 676309447, - "lat": 51.2765810, - "lon": 0.5095257, - "tags": { - "amenity": "post_box", - "ref": "ME16 33" - } -}, -{ - "type": "node", - "id": 676341029, - "lat": 51.2804670, - "lon": 0.5294650, - "tags": { - "amenity": "post_box", - "ref": "ME14 95" - } -}, -{ - "type": "node", - "id": 676354500, - "lat": 51.2790652, - "lon": 0.5287419, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676374837, - "lat": 51.7947079, - "lon": -1.1951041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "wall", - "ref": "OX3 615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676386904, - "lat": 53.4361581, - "lon": -2.9752449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Anonymous post box L4 35 by Handyside & Co. on Westminster Road, Kirkdale, Liverpool. Near Tawd Street.", - "manufacturer": "Andrew Handyside & Co.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 35", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box on Westminster Road, Kirkdale, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 676396414, - "lat": 52.0521237, - "lon": -1.3371675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "mapillary": "486682392538006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "OX16 1030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-31" - } -}, -{ - "type": "node", - "id": 676396431, - "lat": 52.0493149, - "lon": -1.3336907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX16 557", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676396741, - "lat": 52.0487066, - "lon": -1.3279950, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX16 1166" - } -}, -{ - "type": "node", - "id": 676396896, - "lat": 52.0519627, - "lon": -1.3239876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "ref": "OX16 1881" - } -}, -{ - "type": "node", - "id": 676397015, - "lat": 52.0554449, - "lon": -1.3295940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX16 1134" - } -}, -{ - "type": "node", - "id": 676401155, - "lat": 53.2248195, - "lon": -1.2874096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676405393, - "lat": 53.2368183, - "lon": -1.2938517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "155.38", - "post_box:type": "lamp", - "ref": "S44 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676408936, - "lat": 53.2555339, - "lon": -1.3033459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S44 85D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 676506015, - "lat": 51.6230729, - "lon": 0.5687663, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676622193, - "lat": 53.7651962, - "lon": -1.7021123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 322" - } -}, -{ - "type": "node", - "id": 676622216, - "lat": 53.7680332, - "lon": -1.7106671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 48" - } -}, -{ - "type": "node", - "id": 676622308, - "lat": 53.7697382, - "lon": -1.7063135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 119" - } -}, -{ - "type": "node", - "id": 676622742, - "lat": 53.7757310, - "lon": -1.7051824, - "tags": { - "amenity": "post_box", - "note": "Plate missing so collection time or postbox ref", - "operator": "Royal Mail", - "ref": "BD4 39" - } -}, -{ - "type": "node", - "id": 676623040, - "lat": 53.7726835, - "lon": -1.7009716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 123" - } -}, -{ - "type": "node", - "id": 676623209, - "lat": 53.7815200, - "lon": -1.7100597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 7" - } -}, -{ - "type": "node", - "id": 676634657, - "lat": 52.0387852, - "lon": -0.5574824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 177" - } -}, -{ - "type": "node", - "id": 676653011, - "lat": 53.8650469, - "lon": -1.9137342, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "note": "franked mail", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "meter", - "ref": "BD21 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 676653726, - "lat": 53.0896307, - "lon": -1.6987207, - "tags": { - "amenity": "post_box", - "ele": "184.2169189", - "operator": "Royal Mail", - "ref": "DE6 824" - } -}, -{ - "type": "node", - "id": 676654201, - "lat": 52.0430312, - "lon": -0.5610581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 343" - } -}, -{ - "type": "node", - "id": 676679280, - "lat": 51.3989328, - "lon": 0.0600708, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676745721, - "lat": 52.6165309, - "lon": -2.0052054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 91", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 676745739, - "lat": 52.6155519, - "lon": -2.0043040, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-29", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 676746181, - "lat": 52.8846584, - "lon": -1.3026371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG10 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 676754463, - "lat": 51.3936694, - "lon": 0.0416533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676754464, - "lat": 51.3901737, - "lon": 0.0444870, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676766239, - "lat": 52.2557548, - "lon": -1.4465269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV33", - "ref": "CV33 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 676770066, - "lat": 53.8683971, - "lon": -2.3970714, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676771950, - "lat": 51.7910873, - "lon": -1.2714872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX2 34D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 676773063, - "lat": 51.7836800, - "lon": -1.2632962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 288" - } -}, -{ - "type": "node", - "id": 676773064, - "lat": 51.7870403, - "lon": -1.2629304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX2 663" - } -}, -{ - "type": "node", - "id": 676773071, - "lat": 51.7809198, - "lon": -1.2620020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX2 196" - } -}, -{ - "type": "node", - "id": 676778616, - "lat": 53.8722485, - "lon": -2.3891434, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 676778617, - "lat": 53.8747065, - "lon": -2.3868682, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 676779909, - "lat": 51.7782140, - "lon": -1.2676230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 145" - } -}, -{ - "type": "node", - "id": 676786039, - "lat": 54.7987760, - "lon": -1.6687230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 49" - } -}, -{ - "type": "node", - "id": 676818434, - "lat": 54.0457269, - "lon": -2.8995451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA3 97D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 676971305, - "lat": 51.0343335, - "lon": -0.9614620, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "description": "This postbox is a very recent EIIR lamp postbox. I am not sure of the correct name of this postbox design.", - "last_checked": "2020-07-27", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 676971364, - "lat": 51.0570144, - "lon": -0.9377511, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677192196, - "lat": 50.8292607, - "lon": -0.8839594, - "tags": { - "amenity": "post_box", - "ref": "PO18 132" - } -}, -{ - "type": "node", - "id": 677192197, - "lat": 50.8291414, - "lon": -0.8738430, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO18 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 677192200, - "lat": 50.8388856, - "lon": -0.8752798, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO18 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 677226504, - "lat": 51.6400778, - "lon": -3.0197009, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 677244635, - "lat": 53.4141939, - "lon": -2.9744835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L3 447 by Carron Company on Soho Street, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L3 447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Soho Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 677244773, - "lat": 53.4181607, - "lon": -2.9905246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR post box L3 701 on Eldonian Way/Burlington Street, Vauxhall, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Eldonian Village, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 677460476, - "lat": 51.2671150, - "lon": 0.6144253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME17 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677510509, - "lat": 51.2741310, - "lon": 0.4959995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME16 69" - } -}, -{ - "type": "node", - "id": 677510522, - "lat": 51.2759232, - "lon": 0.5124647, - "tags": { - "amenity": "post_box", - "ref": "ME16 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677513467, - "lat": 53.2917627, - "lon": -3.0307415, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 677517550, - "lat": 51.2770343, - "lon": 0.5220666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 50", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677521283, - "lat": 51.2709923, - "lon": 0.5252209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ME15 48", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677578480, - "lat": 51.4057267, - "lon": 0.3560925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 64D" - } -}, -{ - "type": "node", - "id": 677578482, - "lat": 51.4059191, - "lon": 0.3511183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 130" - } -}, -{ - "type": "node", - "id": 677578483, - "lat": 51.4054255, - "lon": 0.3442157, - "tags": { - "amenity": "post_box", - "mapillary": "869352240422206", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-12-18" - } -}, -{ - "type": "node", - "id": 677580042, - "lat": 51.2473505, - "lon": 0.5556141, - "tags": { - "amenity": "post_box", - "ref": "ME15 296", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677580135, - "lat": 51.2494801, - "lon": 0.5601930, - "tags": { - "amenity": "post_box", - "ref": "ME15 288", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677617982, - "lat": 51.2532813, - "lon": 0.5573672, - "tags": { - "amenity": "post_box", - "ref": "ME15 325", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677641479, - "lat": 51.2957866, - "lon": 0.4587238, - "tags": { - "amenity": "post_box", - "ref": "ME20 310" - } -}, -{ - "type": "node", - "id": 677641509, - "lat": 51.2931309, - "lon": 0.4639283, - "tags": { - "amenity": "post_box", - "ref": "ME20 319" - } -}, -{ - "type": "node", - "id": 677641536, - "lat": 51.2847642, - "lon": 0.4778897, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ME16 97" - } -}, -{ - "type": "node", - "id": 677657367, - "lat": 50.7936677, - "lon": -3.1165231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 677657585, - "lat": 50.8037577, - "lon": -3.2053369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "name": "Tracey Ham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX14 19" - } -}, -{ - "type": "node", - "id": 677657722, - "lat": 50.8188420, - "lon": -3.2645355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "EX14 3LA", - "ref": "EX14 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 677710961, - "lat": 51.2592639, - "lon": 0.5374770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 222", - "source": "survey" - } -}, -{ - "type": "node", - "id": 677711170, - "lat": 51.2498692, - "lon": 0.5520869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME15 285", - "source": "survey" - } -}, -{ - "type": "node", - "id": 678022870, - "lat": 55.8787146, - "lon": -4.2693063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 678197384, - "lat": 53.3567280, - "lon": -2.8940368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L19 200" - } -}, -{ - "type": "node", - "id": 678202300, - "lat": 53.3649538, - "lon": -2.9037883, - "tags": { - "amenity": "post_box", - "ref": "L19 643" - } -}, -{ - "type": "node", - "id": 678299367, - "lat": 50.8580418, - "lon": -3.3783657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "mapillary": "2175759029251089", - "name": "Stoneyford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "EX15 1NX", - "ref": "EX15 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 678300125, - "lat": 51.2230864, - "lon": -3.8334664, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX35 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 678395205, - "lat": 56.7037554, - "lon": -3.7272446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH16 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 678459264, - "lat": 52.4420872, - "lon": -1.8587046, - "tags": { - "amenity": "post_box", - "postal_code": "B13", - "ref": "B13 350", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 678461300, - "lat": 52.4403142, - "lon": -1.8561593, - "tags": { - "amenity": "post_box", - "postal_code": "B13", - "ref": "B13 87", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 678475500, - "lat": 52.4369460, - "lon": -1.8600339, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "post_box:type": "pillar", - "ref": "B13 134", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 678514551, - "lat": 55.6230904, - "lon": -2.8176407, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 678577258, - "lat": 53.7594656, - "lon": -0.7926236, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 678577264, - "lat": 53.7546123, - "lon": -0.7873954, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 70" - } -}, -{ - "type": "node", - "id": 678868328, - "lat": 55.4811952, - "lon": -3.0493086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "254646363107482", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD7 97", - "source": "survey", - "survey:date": "2020-06-24" - } -}, -{ - "type": "node", - "id": 678868336, - "lat": 55.4839996, - "lon": -3.0004116, - "tags": { - "amenity": "post_box", - "ref": "TD7 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 678868339, - "lat": 55.5084403, - "lon": -2.9698404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD7 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 678870191, - "lat": 55.6190191, - "lon": -2.8119423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD1 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 678891379, - "lat": 56.2785470, - "lon": -3.4013590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 122D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 678963137, - "lat": 51.3765546, - "lon": -2.3541086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA2 1016", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 678965011, - "lat": 56.3436551, - "lon": -3.4025679, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 143D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 678967545, - "lat": 51.2302885, - "lon": -3.8353758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX35 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 678967608, - "lat": 51.2286341, - "lon": -3.8403735, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX35 262" - } -}, -{ - "type": "node", - "id": 678967683, - "lat": 51.2287349, - "lon": -3.8345770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EX35 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 678967684, - "lat": 51.2301090, - "lon": -3.8299970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX35 122D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 679046237, - "lat": 50.7688959, - "lon": -3.0054776, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 679046254, - "lat": 50.7014298, - "lon": -3.0848732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX12 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 679081849, - "lat": 52.0920705, - "lon": -1.8384429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "post_box:type": "lamp", - "ref": "WR11 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 679094916, - "lat": 50.9484392, - "lon": -0.1165890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 679125904, - "lat": 51.4815079, - "lon": -0.2679331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 679212279, - "lat": 52.9013125, - "lon": -1.2699536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "indoor_pillar", - "ref": "NG10 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 679310952, - "lat": 55.9315200, - "lon": -3.2861400, - "tags": { - "amenity": "post_box", - "image": "https://storage13.openstreetcam.org/files/photo/2019/11/11/lth/2052838_4ede2_5dc981e071e39.jpg", - "ref": "EH12 470", - "source:position": "Mapillary 2019-06-20", - "survey:date": "2019-11-11" - } -}, -{ - "type": "node", - "id": 679310954, - "lat": 55.9421396, - "lon": -3.2690963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH12 283D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 679310958, - "lat": 55.9415889, - "lon": -3.2559229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH12 281" - } -}, -{ - "type": "node", - "id": 679310962, - "lat": 55.9447012, - "lon": -3.2513164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "7504251939703595", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 280", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 679311753, - "lat": 56.1478027, - "lon": -3.2161511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KY2 22" - } -}, -{ - "type": "node", - "id": 679321499, - "lat": 55.9419754, - "lon": -3.2483579, - "tags": { - "amenity": "post_box", - "ref": "EH12 296" - } -}, -{ - "type": "node", - "id": 679324677, - "lat": 52.4702443, - "lon": -0.9269621, - "tags": { - "amenity": "post_box", - "ref": "LE16 72" - } -}, -{ - "type": "node", - "id": 679324678, - "lat": 52.4735542, - "lon": -0.9886225, - "tags": { - "amenity": "post_box", - "ref": "LE16 82" - } -}, -{ - "type": "node", - "id": 679324679, - "lat": 52.4776754, - "lon": -0.9063158, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE16 79" - } -}, -{ - "type": "node", - "id": 679407061, - "lat": 51.2905104, - "lon": -0.7549177, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "last_checked": "2020-02-18", - "note": "GU14 2071 is for stamped mail. GU14 207 is for franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GU14 2071;GU14 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 679476098, - "lat": 52.4836537, - "lon": -0.9138048, - "tags": { - "amenity": "post_box", - "ref": "LE16 90" - } -}, -{ - "type": "node", - "id": 679750475, - "lat": 53.1182893, - "lon": -1.2803639, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 679761043, - "lat": 52.0841443, - "lon": -1.8966473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:45; Su off", - "post_box:type": "lamp", - "ref": "WR11 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 679789915, - "lat": 50.5879141, - "lon": -3.4560746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX7 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 679824903, - "lat": 50.5945400, - "lon": -3.4610819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 337D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 679829422, - "lat": 50.5913821, - "lon": -3.4593668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX7 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 679870689, - "lat": 53.3538599, - "lon": -2.5640588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 325", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 679976461, - "lat": 51.7197616, - "lon": -2.1849660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 138D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 679976463, - "lat": 51.7228573, - "lon": -2.1860666, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 680120555, - "lat": 53.6785137, - "lon": -0.7238030, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 680145552, - "lat": 52.7944730, - "lon": -1.6686025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DE14 618" - } -}, -{ - "type": "node", - "id": 680251347, - "lat": 53.6357552, - "lon": -2.9892369, - "tags": { - "amenity": "post_box", - "ref": "PR8 108" - } -}, -{ - "type": "node", - "id": 680264615, - "lat": 55.9391646, - "lon": -3.3159700, - "tags": { - "amenity": "post_box", - "ref": "EH12 644" - } -}, -{ - "type": "node", - "id": 680443908, - "lat": 51.2890623, - "lon": 0.4306633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 680443967, - "lat": 51.2880336, - "lon": 0.4393236, - "tags": { - "amenity": "post_box", - "ref": "ME19 8" - } -}, -{ - "type": "node", - "id": 680444117, - "lat": 51.2919096, - "lon": 0.4373674, - "tags": { - "amenity": "post_box", - "ref": "ME19 162" - } -}, -{ - "type": "node", - "id": 680444200, - "lat": 51.2953507, - "lon": 0.4328787, - "tags": { - "amenity": "post_box", - "ref": "ME19 323" - } -}, -{ - "type": "node", - "id": 680444623, - "lat": 51.2972944, - "lon": 0.4416495, - "tags": { - "amenity": "post_box", - "ref": "ME19 387" - } -}, -{ - "type": "node", - "id": 680444785, - "lat": 51.2968344, - "lon": 0.4482655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME20 308" - } -}, -{ - "type": "node", - "id": 680444881, - "lat": 51.2974314, - "lon": 0.4536384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME20 231" - } -}, -{ - "type": "node", - "id": 681290806, - "lat": 51.3555484, - "lon": -2.1951598, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 681435288, - "lat": 52.6923838, - "lon": -1.1627946, - "tags": { - "amenity": "post_box", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 681563479, - "lat": 51.4563814, - "lon": -0.3291270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "name": "Cavendish Road, Ivy Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 118", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 681632603, - "lat": 52.0296061, - "lon": -2.3772115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "post_box:type": "wall", - "ref": "HR8 339", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 681632616, - "lat": 52.0100363, - "lon": -2.2797168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Number is by conjecture", - "mapillary": "486752205769551", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR13 109", - "survey:date": "2020-10-15" - } -}, -{ - "type": "node", - "id": 681672851, - "lat": 55.3507458, - "lon": -2.1257452, - "tags": { - "amenity": "post_box", - "ref": "NE65 90" - } -}, -{ - "type": "node", - "id": 681678445, - "lat": 51.7268904, - "lon": 0.4281521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 681678466, - "lat": 51.7299670, - "lon": 0.4286197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 681678513, - "lat": 51.7280996, - "lon": 0.4221629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 681707805, - "lat": 51.4648452, - "lon": 0.0042849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 681707961, - "lat": 51.4632911, - "lon": 0.0031895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 26", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 682026333, - "lat": 52.7527676, - "lon": -1.0830598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LE12 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 682334887, - "lat": 53.1725156, - "lon": -1.6822188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE45 1291" - } -}, -{ - "type": "node", - "id": 682334898, - "lat": 53.2082009, - "lon": -1.6796242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1293" - } -}, -{ - "type": "node", - "id": 682334900, - "lat": 53.2086846, - "lon": -1.6777786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE45 1285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 682334903, - "lat": 53.2120069, - "lon": -1.6804224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "912147042758435", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE45 1270", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 682334905, - "lat": 53.2194054, - "lon": -1.6728172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE45 1272" - } -}, -{ - "type": "node", - "id": 682334908, - "lat": 53.6218272, - "lon": -1.5498229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 682347679, - "lat": 50.1169591, - "lon": -5.5340124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 682379504, - "lat": 50.1060731, - "lon": -5.5492638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-05-07" - } -}, -{ - "type": "node", - "id": 682956616, - "lat": 54.6981218, - "lon": -2.9743888, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 56" - } -}, -{ - "type": "node", - "id": 683095484, - "lat": 52.5366300, - "lon": 1.4762849, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 683095491, - "lat": 52.5343613, - "lon": 1.4816895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15" - } -}, -{ - "type": "node", - "id": 683123772, - "lat": 51.5989605, - "lon": 0.7903719, - "tags": { - "amenity": "post_box", - "name": "East Hall Road" - } -}, -{ - "type": "node", - "id": 683227633, - "lat": 56.4729152, - "lon": -3.0098315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DD2 56", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 683270143, - "lat": 53.2446404, - "lon": -0.5254827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 683285678, - "lat": 52.0323478, - "lon": -2.0541931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "wall", - "ref": "GL20 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 683404635, - "lat": 53.3886431, - "lon": -2.1685512, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 683447099, - "lat": 52.8888635, - "lon": -1.2984258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG10 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 683487748, - "lat": 52.4285742, - "lon": -0.9581413, - "tags": { - "amenity": "post_box", - "ref": "LE16 54" - } -}, -{ - "type": "node", - "id": 683487777, - "lat": 52.4276960, - "lon": -0.9532078, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE16 39" - } -}, -{ - "type": "node", - "id": 683651903, - "lat": 52.6146855, - "lon": -1.9990359, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 683651924, - "lat": 52.6139229, - "lon": -1.9902856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 92", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 683651968, - "lat": 52.6168104, - "lon": -1.9855828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WS3", - "ref": "WS3 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 683830157, - "lat": 53.9686346, - "lon": -1.0870401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-01-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO30 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 683830158, - "lat": 53.9648321, - "lon": -1.0891368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-01-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO30 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 683830159, - "lat": 53.9625983, - "lon": -1.0809895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "YO1 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 683830160, - "lat": 53.9628435, - "lon": -1.0856135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-29", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "note": "post box has two slots, lh slot (YO30 104) for stamped, rh slot (YO30 9104) for franked,", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO30 104;YO30 9104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 683849418, - "lat": 50.0925544, - "lon": -5.5383583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR18 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 683849483, - "lat": 50.0853886, - "lon": -5.5364773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 683864877, - "lat": 50.0835333, - "lon": -5.5391124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TR19 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 683864957, - "lat": 52.6070993, - "lon": -1.1718413, - "tags": { - "amenity": "post_box", - "ref": "LE3 499" - } -}, -{ - "type": "node", - "id": 683886393, - "lat": 52.4379629, - "lon": -1.0034207, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE16 19" - } -}, -{ - "type": "node", - "id": 683886395, - "lat": 52.4628998, - "lon": -0.9420284, - "tags": { - "amenity": "post_box", - "ref": "LE16 36" - } -}, -{ - "type": "node", - "id": 683886396, - "lat": 52.4770118, - "lon": -0.9175316, - "tags": { - "amenity": "post_box", - "ref": "LE16 84" - } -}, -{ - "type": "node", - "id": 683886398, - "lat": 52.4735421, - "lon": -0.9000407, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "LE16 62" - } -}, -{ - "type": "node", - "id": 683888770, - "lat": 55.0211052, - "lon": -1.5561074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 396" - } -}, -{ - "type": "node", - "id": 683998158, - "lat": 54.9488138, - "lon": -1.9719043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE44 168", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 684042029, - "lat": 50.1979281, - "lon": -5.4659334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 684042069, - "lat": 50.1969043, - "lon": -5.4627151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 684141992, - "lat": 54.9480975, - "lon": -1.9735741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE44 171" - } -}, -{ - "type": "node", - "id": 684173876, - "lat": 53.8469201, - "lon": -2.6466671, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 684173879, - "lat": 53.9458129, - "lon": -2.7808252, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-01", - "collection_times": "Mo-Fr 10:00; Sa 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR3 26" - } -}, -{ - "type": "node", - "id": 684173881, - "lat": 53.8652382, - "lon": -2.7328008, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 684173905, - "lat": 53.9834858, - "lon": -2.8241113, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 684173917, - "lat": 53.9628534, - "lon": -2.8166333, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 684173927, - "lat": 53.9496153, - "lon": -2.8059903, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 684173947, - "lat": 54.0896998, - "lon": -2.8108963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 72" - } -}, -{ - "type": "node", - "id": 684173952, - "lat": 54.0851468, - "lon": -2.8079309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 57" - } -}, -{ - "type": "node", - "id": 684173960, - "lat": 54.1629420, - "lon": -2.7620307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 1" - } -}, -{ - "type": "node", - "id": 684174003, - "lat": 54.9195760, - "lon": -1.9799437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE44 169" - } -}, -{ - "type": "node", - "id": 684174032, - "lat": 54.1462151, - "lon": -2.7643429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA5 102" - } -}, -{ - "type": "node", - "id": 684174037, - "lat": 54.1032044, - "lon": -2.5052598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LA2 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 684174041, - "lat": 54.1039943, - "lon": -2.5845136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "LA2 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684174047, - "lat": 54.1017667, - "lon": -2.6080522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "wall", - "ref": "LA2 117", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 684174079, - "lat": 54.0848399, - "lon": -2.3752536, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA2 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 684217391, - "lat": 53.4196338, - "lon": -2.9668207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L6 3 on Breck Road near junction of Everton Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L6 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Breck Road near Everton Road.jpg" - } -}, -{ - "type": "node", - "id": 684225780, - "lat": 52.6269778, - "lon": -2.0528549, - "tags": { - "amenity": "post_box", - "location": "In small walk-way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 684225816, - "lat": 52.6250630, - "lon": -2.0612422, - "tags": { - "amenity": "post_box", - "note": "in hedgerow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 684240432, - "lat": 51.4702560, - "lon": -0.0088839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "note": "Missing collection plate - hand painted times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE10 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 684245116, - "lat": 51.3724782, - "lon": 0.5326523, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME4 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 684295191, - "lat": 51.3564074, - "lon": -2.1989333, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 684355324, - "lat": 51.4707940, - "lon": -0.0267128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 684355571, - "lat": 53.1554565, - "lon": -3.1913309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 684377886, - "lat": 54.5047440, - "lon": -3.5453985, - "tags": { - "amenity": "post_box", - "ref": "CA22 121" - } -}, -{ - "type": "node", - "id": 684384370, - "lat": 52.5010757, - "lon": -0.9825797, - "tags": { - "amenity": "post_box", - "ref": "LE16 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684384373, - "lat": 52.5013460, - "lon": -0.9713312, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE16 64" - } -}, -{ - "type": "node", - "id": 684384375, - "lat": 52.5055731, - "lon": -0.9666644, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "LE16 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684404076, - "lat": 54.4948211, - "lon": -3.5927133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA27 69", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 684442966, - "lat": 50.7903496, - "lon": -0.6539062, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO22 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684461480, - "lat": 50.8074081, - "lon": -0.4607327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN16 1469", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN16 1469D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 684461484, - "lat": 51.0483845, - "lon": -0.3859154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "wall", - "ref": "RH13 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 684551665, - "lat": 52.1142723, - "lon": -1.8841607, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR11 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684644215, - "lat": 50.8430212, - "lon": -0.8822074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO18 131" - } -}, -{ - "type": "node", - "id": 684644221, - "lat": 50.8462700, - "lon": -0.9366900, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO10 1012", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684644222, - "lat": 50.8462574, - "lon": -0.9366936, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO10 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684644225, - "lat": 50.8487466, - "lon": -0.9369798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO10 5002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684644226, - "lat": 50.8487489, - "lon": -0.9369358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO10 5001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684644227, - "lat": 50.8544994, - "lon": -0.9373600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 684644228, - "lat": 50.8594357, - "lon": -0.9354372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 684644248, - "lat": 50.8533542, - "lon": -0.8825708, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "PO18 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684660903, - "lat": 50.0778463, - "lon": -5.7035159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-19" - } -}, -{ - "type": "node", - "id": 684688217, - "lat": 51.1332721, - "lon": -1.1906832, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO24 123" - } -}, -{ - "type": "node", - "id": 684688239, - "lat": 51.1269299, - "lon": -1.2115763, - "tags": { - "amenity": "post_box", - "mapillary": "541855700134344", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SO24 230", - "survey:date": "2020-08-07" - } -}, -{ - "type": "node", - "id": 684716609, - "lat": 51.5472336, - "lon": -2.3513714, - "tags": { - "amenity": "post_box", - "mapillary": "1948038345351030", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 201", - "source": "survey", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 684716611, - "lat": 51.5528403, - "lon": -2.3665998, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 238", - "source": "survey" - } -}, -{ - "type": "node", - "id": 684716677, - "lat": 51.5576974, - "lon": -2.3473489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "5776419765718126", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BS37", - "ref": "BS37 584D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 684716706, - "lat": 51.5699178, - "lon": -2.3566845, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "BS37", - "ref": "BS37 485", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 684726034, - "lat": 52.0970612, - "lon": -1.8722274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15; Su off", - "post_box:type": "lamp", - "ref": "WR11 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 684905686, - "lat": 51.2011510, - "lon": -1.5298211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 684918067, - "lat": 51.5219971, - "lon": -0.1153115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1N 25D;WC1N 225D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685055756, - "lat": 52.3813790, - "lon": -2.0228871, - "tags": { - "amenity": "post_box", - "ref": "B45 402" - } -}, -{ - "type": "node", - "id": 685061024, - "lat": 52.1439942, - "lon": -2.1198189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR7 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685061025, - "lat": 52.1765366, - "lon": -2.1339899, - "tags": { - "amenity": "post_box", - "fixme": "survey to find box number" - } -}, -{ - "type": "node", - "id": 685061032, - "lat": 52.0915225, - "lon": -2.1090450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "fixme": "PC McGarry Box: might as well go and get aux data.", - "post_box:type": "lamp", - "ref": "WR10 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 685061034, - "lat": 52.1354580, - "lon": -2.1151105, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "historic_operator": "Post Office", - "post_box:mounting": "tree_stump", - "post_box:type": "lamp", - "ref": "WR10 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 685066119, - "lat": 52.3771480, - "lon": -1.9583661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "ref": "B48 117" - } -}, -{ - "type": "node", - "id": 685066506, - "lat": 54.1224767, - "lon": -6.3890641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 685151331, - "lat": 53.2234086, - "lon": -4.2328306, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL60 24" - } -}, -{ - "type": "node", - "id": 685159047, - "lat": 53.2746786, - "lon": -2.2832259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK11 123" - } -}, -{ - "type": "node", - "id": 685161689, - "lat": 52.6279157, - "lon": -2.0619682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 685190475, - "lat": 53.6669120, - "lon": -1.5153089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 15" - } -}, -{ - "type": "node", - "id": 685190476, - "lat": 53.6702260, - "lon": -1.4886481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685337369, - "lat": 51.5018697, - "lon": -3.6012577, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 685444107, - "lat": 51.0448499, - "lon": -0.5994847, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 07:45", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685444121, - "lat": 51.0360248, - "lon": -0.6242332, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685444132, - "lat": 51.0359204, - "lon": -0.6364973, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 685444134, - "lat": 51.0429921, - "lon": -0.6111751, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685448630, - "lat": 52.2818725, - "lon": -2.2846806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR6 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685448669, - "lat": 52.2450182, - "lon": -2.2287078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685448676, - "lat": 52.2705528, - "lon": -2.2476206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685461040, - "lat": 51.4683889, - "lon": -0.0157529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685493277, - "lat": 52.2895981, - "lon": -2.2945389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR6 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685496454, - "lat": 52.2948285, - "lon": -2.2955052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "ref": "WR6 179" - } -}, -{ - "type": "node", - "id": 685605111, - "lat": 54.9481315, - "lon": -1.9680904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE44 183" - } -}, -{ - "type": "node", - "id": 685605308, - "lat": 51.4673086, - "lon": -0.0092795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 39", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685681656, - "lat": 50.8434229, - "lon": -0.8924209, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO18 129D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 685702058, - "lat": 52.4340459, - "lon": -1.8576544, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 320", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 685777264, - "lat": 51.8938028, - "lon": 0.1512600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "name": "CM23 1JF – Well Cottages Walnut Tree Lane | Farnham Road Bishops Stortford", - "ref": "CM23 27" - } -}, -{ - "type": "node", - "id": 685786193, - "lat": 51.3771778, - "lon": -2.1243497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "name": "Church Lane", - "operator": "Royal Mail", - "ref": "SN12 163", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 685793015, - "lat": 54.2420020, - "lon": -0.7756413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO18 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685800485, - "lat": 51.4546161, - "lon": -0.0249315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 685800496, - "lat": 51.4561494, - "lon": -0.0205694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685815163, - "lat": 54.3954455, - "lon": -0.7270659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO22 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 685815192, - "lat": 54.3999690, - "lon": -0.7198554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO22 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 685815194, - "lat": 54.4465070, - "lon": -0.7552606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "YO21 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685815195, - "lat": 54.4091178, - "lon": -0.7357352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685815196, - "lat": 54.4045349, - "lon": -0.7217176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO22 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 685815203, - "lat": 54.4370905, - "lon": -0.7173996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO22 19" - } -}, -{ - "type": "node", - "id": 685815208, - "lat": 54.4474433, - "lon": -0.6723681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO22 92" - } -}, -{ - "type": "node", - "id": 685815211, - "lat": 54.4496143, - "lon": -0.6664205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685815215, - "lat": 54.4551601, - "lon": -0.6647439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO22 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685820992, - "lat": 51.0620138, - "lon": -1.0437549, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 685831516, - "lat": 54.9745622, - "lon": -1.8141657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE41 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685833908, - "lat": 54.3935302, - "lon": -0.5677273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "YO22 87" - } -}, -{ - "type": "node", - "id": 685833909, - "lat": 54.4323352, - "lon": -0.6452309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO22 38" - } -}, -{ - "type": "node", - "id": 685833910, - "lat": 54.4533700, - "lon": -0.6631539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 26" - } -}, -{ - "type": "node", - "id": 685833911, - "lat": 54.4517219, - "lon": -0.6439160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685833912, - "lat": 54.4122664, - "lon": -0.5481741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO22 66" - } -}, -{ - "type": "node", - "id": 685833913, - "lat": 54.4366107, - "lon": -0.5597050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO22 30" - } -}, -{ - "type": "node", - "id": 685833914, - "lat": 54.4320723, - "lon": -0.5478369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO22 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 685833915, - "lat": 54.4290791, - "lon": -0.5464392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 20" - } -}, -{ - "type": "node", - "id": 685833917, - "lat": 54.4796584, - "lon": -0.5920252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO22 88" - } -}, -{ - "type": "node", - "id": 685841380, - "lat": 54.4575283, - "lon": -0.6622788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 46" - } -}, -{ - "type": "node", - "id": 685841417, - "lat": 54.4523576, - "lon": -0.6564053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO22 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685841420, - "lat": 54.4577318, - "lon": -0.6236954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO22 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 685862345, - "lat": 53.1140861, - "lon": -1.5094322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE4 973", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685862350, - "lat": 53.1319769, - "lon": -1.5186809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 922", - "source": "Unknown;View from road" - } -}, -{ - "type": "node", - "id": 685862358, - "lat": 53.1320917, - "lon": -1.5094486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 989", - "source": "Unknown;View from road" - } -}, -{ - "type": "node", - "id": 685862362, - "lat": 53.2303589, - "lon": -1.4992378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S42 7BZ", - "ref": "S42 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685862365, - "lat": 54.4550361, - "lon": -0.5777654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO22 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685937395, - "lat": 53.7740002, - "lon": -1.7179335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD4 324" - } -}, -{ - "type": "node", - "id": 685938075, - "lat": 53.7733574, - "lon": -1.7100064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 145" - } -}, -{ - "type": "node", - "id": 685938430, - "lat": 53.7786918, - "lon": -1.7107247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 379" - } -}, -{ - "type": "node", - "id": 685938908, - "lat": 53.7789765, - "lon": -1.7054451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD4 69" - } -}, -{ - "type": "node", - "id": 685960942, - "lat": 50.3730878, - "lon": -4.1272667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1616850885328390", - "post_box:type": "pillar", - "ref": "PL4 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 685975621, - "lat": 52.2120762, - "lon": -0.9067555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NN4 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 685989904, - "lat": 50.8484457, - "lon": 0.4872410, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Hastings Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 6", - "ref:GB:uprn": "10015470599", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Hastings Road Mayfield Way TN406.jpg" - } -}, -{ - "type": "node", - "id": 686000621, - "lat": 51.3972766, - "lon": -0.2112248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 686503467, - "lat": 51.4494051, - "lon": -3.5217161, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 686569916, - "lat": 52.6479867, - "lon": -2.8981705, - "tags": { - "amenity": "post_box", - "ref": "SY5 603", - "source": "survey" - } -}, -{ - "type": "node", - "id": 686667350, - "lat": 51.4240820, - "lon": 0.0029817, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 686680044, - "lat": 51.4230227, - "lon": 0.0214438, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 686705730, - "lat": 52.3078481, - "lon": -2.3099418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "ref": "DY13 77" - } -}, -{ - "type": "node", - "id": 686707517, - "lat": 51.3828196, - "lon": -2.3493919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BA2", - "ref": "BA2 1001" - } -}, -{ - "type": "node", - "id": 686708049, - "lat": 51.1419812, - "lon": 0.8623121, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN23 256", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN23 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 686708052, - "lat": 51.1423027, - "lon": 0.8657268, - "tags": { - "amenity": "post_box", - "note": "Front plate currently missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 686712875, - "lat": 51.1336900, - "lon": 0.8630832, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 686714618, - "lat": 51.1291464, - "lon": 0.8625319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "description": "This is a meter postbox for Parcels & Franked Mail.", - "mail:meter": "yes", - "mail:stamped": "no", - "old_ref": "TN23 53", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TN23 53P", - "source": "survey", - "survey:date": "2023-04-10" - } -}, -{ - "type": "node", - "id": 686714619, - "lat": 51.1291583, - "lon": 0.8624973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "mapillary": "210518731727486", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 59", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-04-30" - } -}, -{ - "type": "node", - "id": 686718477, - "lat": 51.1281323, - "lon": 0.8407446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TN23 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 686719935, - "lat": 51.1308438, - "lon": 0.8426246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN23 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 686725652, - "lat": 51.4199962, - "lon": 0.0190128, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 686729626, - "lat": 51.1384764, - "lon": 0.8503745, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN23 313", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 686729630, - "lat": 51.1470828, - "lon": 0.8546881, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN23 68", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 686729633, - "lat": 51.1516383, - "lon": 0.8547377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "fixme": "The \"disused\" box should be Business Box TN23 40. Survey required to check", - "name": "Business Box", - "note": "There are two post boxes close together here.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN23 40" - } -}, -{ - "type": "node", - "id": 686729637, - "lat": 51.1529141, - "lon": 0.8490626, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is a square pillar.", - "old_ref": "TN23 328", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 328D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 686730945, - "lat": 52.2546602, - "lon": -0.8974940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 78", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 686730949, - "lat": 52.2611314, - "lon": -0.9052584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 68", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 686742753, - "lat": 52.3070844, - "lon": -2.2778514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "DY13 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 686742762, - "lat": 52.3089792, - "lon": -2.2829437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "ref": "DY13 76" - } -}, -{ - "type": "node", - "id": 686790861, - "lat": 53.6342351, - "lon": -3.0024714, - "tags": { - "amenity": "post_box", - "ref": "PR8 54" - } -}, -{ - "type": "node", - "id": 686803140, - "lat": 51.5046544, - "lon": -3.6034166, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 687006016, - "lat": 51.3775172, - "lon": -2.1330500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "name": "Lowbourne Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN12 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 687006020, - "lat": 51.3806710, - "lon": -2.1286258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 245", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 687008013, - "lat": 55.0709731, - "lon": -1.5299352, - "tags": { - "amenity": "post_box", - "postal_code": "NE25 0EJ", - "ref": "NE25 122" - } -}, -{ - "type": "node", - "id": 687008209, - "lat": 55.0722197, - "lon": -1.5341691, - "tags": { - "amenity": "post_box", - "postal_code": "NE25 0TG", - "ref": "NE25 707" - } -}, -{ - "type": "node", - "id": 687059085, - "lat": 52.2131843, - "lon": -2.2266874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR3 5", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 687059086, - "lat": 52.2200734, - "lon": -2.2245694, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR3 199" - } -}, -{ - "type": "node", - "id": 687059097, - "lat": 52.2231921, - "lon": -2.2001382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687059104, - "lat": 52.2129365, - "lon": -2.2178760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "ref": "WR3 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687059107, - "lat": 52.2119078, - "lon": -2.2052154, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR3 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687059114, - "lat": 52.2151391, - "lon": -2.1966192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR4 6" - } -}, -{ - "type": "node", - "id": 687059116, - "lat": 52.2186431, - "lon": -2.2312081, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR3 42" - } -}, -{ - "type": "node", - "id": 687059131, - "lat": 52.2145137, - "lon": -2.2298556, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR3 529" - } -}, -{ - "type": "node", - "id": 687077879, - "lat": 56.4457425, - "lon": -3.1686306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "inscription": "GVIR Post Office Letter Box. Notice. Letters containing coins, paper money or jewellery should not be posted in this box, but should be registered.", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH14 220", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 687080948, - "lat": 53.7688788, - "lon": -1.7141779, - "tags": { - "amenity": "post_box", - "note": "No plate with reference", - "operator": "Royal Mail", - "ref": "BD4 92" - } -}, -{ - "type": "node", - "id": 687140801, - "lat": 51.3916807, - "lon": -0.3081204, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT6 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687183969, - "lat": 51.4899620, - "lon": -0.0655440, - "tags": { - "addr:city": "London", - "addr:street": "Esmeralda Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE1 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 687290725, - "lat": 54.5323764, - "lon": -1.0791046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "lamp", - "ref": "TS14 597" - } -}, -{ - "type": "node", - "id": 687290731, - "lat": 54.5313622, - "lon": -1.0852731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "lamp", - "ref": "TS14 572" - } -}, -{ - "type": "node", - "id": 687375015, - "lat": 52.2512429, - "lon": -2.1592373, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural; need to visit properly", - "post_box:type": "pillar", - "ref": "WR9 514" - } -}, -{ - "type": "node", - "id": 687375068, - "lat": 52.2612550, - "lon": -2.1527578, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WR9 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687397176, - "lat": 50.3688464, - "lon": -4.1172917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mapillary": "162798969415378", - "post_box:type": "pillar", - "ref": "PL4 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-29" - } -}, -{ - "type": "node", - "id": 687428720, - "lat": 51.4685448, - "lon": -2.5150602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 687475196, - "lat": 52.6737947, - "lon": -2.7626646, - "tags": { - "amenity": "post_box", - "ref": "SY3 377" - } -}, -{ - "type": "node", - "id": 687481839, - "lat": 52.2368782, - "lon": -2.1998040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687481850, - "lat": 52.2281697, - "lon": -2.2182188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR3 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 687486596, - "lat": 53.3845541, - "lon": -3.0397107, - "tags": { - "amenity": "post_box", - "description": "Grade II listed Queen Victoria post box on Balls Road next to the Williamson Art Gallery, Oxton, Birkenhead", - "note": "Victorian postbox with vertical slot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "CH43 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box at Balls Road, Oxton" - } -}, -{ - "type": "node", - "id": 687487248, - "lat": 51.3731349, - "lon": 0.5559647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 90" - } -}, -{ - "type": "node", - "id": 687494847, - "lat": 51.3801385, - "lon": 0.5628006, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME7 225" - } -}, -{ - "type": "node", - "id": 687503170, - "lat": 52.5716039, - "lon": -1.8031470, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B75", - "ref": "B75 293", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 687503180, - "lat": 52.5732782, - "lon": -1.7973016, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 1068", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 687554880, - "lat": 52.5076722, - "lon": -1.4803879, - "tags": { - "amenity": "post_box", - "ref": "CV10 29", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 687613111, - "lat": 51.0152040, - "lon": -3.8303691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX36 227" - } -}, -{ - "type": "node", - "id": 687635927, - "lat": 53.9957256, - "lon": -2.2265904, - "tags": { - "amenity": "post_box", - "ref": "BD23 134", - "source": "survey" - } -}, -{ - "type": "node", - "id": 687635940, - "lat": 54.0187116, - "lon": -2.2544031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 82" - } -}, -{ - "type": "node", - "id": 687635945, - "lat": 53.7668335, - "lon": -2.4629070, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 687635951, - "lat": 53.7796446, - "lon": -2.4691351, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 687710227, - "lat": 50.6770738, - "lon": -1.5264447, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 33D", - "ref:GB:uprn": "10015280247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/locksley-po39-0aa/0000PO4033" - } -}, -{ - "type": "node", - "id": 687749673, - "lat": 55.9297796, - "lon": -3.3012890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-08-11", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "mapillary": "397676216650993", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 639", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 687749733, - "lat": 55.9359291, - "lon": -3.3060150, - "tags": { - "amenity": "post_box", - "ref": "EH12 473" - } -}, -{ - "type": "node", - "id": 687749740, - "lat": 55.9370450, - "lon": -3.2969089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "934802584011122", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH12 206", - "survey:date": "2020-02-05" - } -}, -{ - "type": "node", - "id": 687749743, - "lat": 55.9392174, - "lon": -3.2806710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "866608640864232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH12 311D", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:position": "Mapillary 2020-04-17", - "survey:date": "2020-04-17" - } -}, -{ - "type": "node", - "id": 687749745, - "lat": 55.9394235, - "lon": -3.2705912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH12 310" - } -}, -{ - "type": "node", - "id": 687749748, - "lat": 55.9354550, - "lon": -3.2598605, - "tags": { - "amenity": "post_box", - "ref": "EH11 342" - } -}, -{ - "type": "node", - "id": 687749751, - "lat": 55.9468637, - "lon": -3.2297538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "374023634010802", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 249", - "survey:date": "2020-01-10" - } -}, -{ - "type": "node", - "id": 687781335, - "lat": 52.5189948, - "lon": -1.6348168, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "B46", - "ref": "B46 241", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 687787262, - "lat": 52.5394597, - "lon": -1.9993540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "B71 52" - } -}, -{ - "type": "node", - "id": 687927793, - "lat": 56.5588691, - "lon": -3.1457971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH12 152", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 687941700, - "lat": 51.4888870, - "lon": -0.0982222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "3 apertures, 2 sealed No collection plate but https://www.royalmail.com/services-near-you/postbox/crampton-street-walworth-sdo-se17-3aj/0000SE1717 confirms times and ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE17 17", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 687972856, - "lat": 51.2602678, - "lon": 0.5306581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 205" - } -}, -{ - "type": "node", - "id": 687983475, - "lat": 50.7219823, - "lon": -1.1561314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "mapillary": "1704579303258740", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO33 124", - "ref:GB:uprn": "10015400555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po33-1aa/000PO33124" - } -}, -{ - "type": "node", - "id": 687983476, - "lat": 50.7250106, - "lon": -1.1566915, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 6D", - "ref:GB:uprn": "10015384101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/monkton-street-po33-1aa/00000PO336" - } -}, -{ - "type": "node", - "id": 688065916, - "lat": 54.5362464, - "lon": -1.0502008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 688065937, - "lat": 54.5386997, - "lon": -1.0504792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 688065941, - "lat": 54.5381215, - "lon": -1.0530188, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 688131960, - "lat": 51.4634799, - "lon": -0.3858609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 688159541, - "lat": 51.5289149, - "lon": -0.1195815, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "WC1 35", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1X 35D;WC1X 235D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 688438097, - "lat": 51.2581772, - "lon": 0.5461025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 5" - } -}, -{ - "type": "node", - "id": 688438146, - "lat": 51.2584568, - "lon": 0.5531716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME15 148" - } -}, -{ - "type": "node", - "id": 688562739, - "lat": 50.2631083, - "lon": -5.0491568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "TR1 3D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 688741178, - "lat": 51.6553577, - "lon": -3.8011248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 688845189, - "lat": 55.1078508, - "lon": -6.4205231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 688892532, - "lat": 51.2561948, - "lon": 0.5436196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME15 39" - } -}, -{ - "type": "node", - "id": 688914254, - "lat": 52.2592551, - "lon": -0.8956537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 688914267, - "lat": 52.2509235, - "lon": -0.8986136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 688973485, - "lat": 52.0530871, - "lon": -1.8508732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "WR12 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 688993513, - "lat": 51.6488076, - "lon": -0.7757457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-19", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 688998386, - "lat": 51.6296767, - "lon": -3.8639093, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 689310990, - "lat": 51.0618062, - "lon": -0.9625143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 689465035, - "lat": 52.4357248, - "lon": -0.1065010, - "tags": { - "amenity": "post_box", - "ref": "PE26 247" - } -}, -{ - "type": "node", - "id": 689837288, - "lat": 50.6825138, - "lon": -1.5249315, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO40 301", - "ref:GB:uprn": "10015349898", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/school-green-road-po39-0aa/000PO40301" - } -}, -{ - "type": "node", - "id": 689837310, - "lat": 50.6736239, - "lon": -1.5178337, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO40 69", - "ref:GB:uprn": "10015332985", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/freshwater-bay-po39-0aa/0000PO4069" - } -}, -{ - "type": "node", - "id": 689924403, - "lat": 54.6134027, - "lon": -1.3149236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 689924404, - "lat": 54.6160193, - "lon": -1.3118885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 689924405, - "lat": 54.6118619, - "lon": -1.3089369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 689979027, - "lat": 52.8849806, - "lon": -2.1331040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "1076409343240993", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ST15 243" - } -}, -{ - "type": "node", - "id": 690156319, - "lat": 51.0774523, - "lon": -4.0206073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "EX32 67", - "source": "walked with GPS" - } -}, -{ - "type": "node", - "id": 690209157, - "lat": 52.7512419, - "lon": -2.7450776, - "tags": { - "amenity": "post_box", - "ref": "SY4 760" - } -}, -{ - "type": "node", - "id": 690234207, - "lat": 50.1234015, - "lon": -5.4728585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-01", - "collection_times": "Mo-Fr 16:45, Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR17 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-07-09" - } -}, -{ - "type": "node", - "id": 690252504, - "lat": 50.1446095, - "lon": -5.4936771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "mapillary": "1144395390122156", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-07-21" - } -}, -{ - "type": "node", - "id": 690253018, - "lat": 52.3193671, - "lon": -2.0710554, - "tags": { - "amenity": "post_box", - "ref": "B60 1390" - } -}, -{ - "type": "node", - "id": 690262543, - "lat": 52.3222580, - "lon": -2.0667865, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B60 4030", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 690280451, - "lat": 51.0735235, - "lon": -4.0245186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 279", - "source": "walked with GPS" - } -}, -{ - "type": "node", - "id": 690328313, - "lat": 51.0741092, - "lon": -4.0337131, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX32 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 690384087, - "lat": 52.2601547, - "lon": -0.9005748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 690656408, - "lat": 51.2482356, - "lon": -0.6281191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GU3 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 690716648, - "lat": 51.3522252, - "lon": 0.4409413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME3 164" - } -}, -{ - "type": "node", - "id": 690750308, - "lat": 55.7989009, - "lon": -4.0633277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 690754104, - "lat": 51.7528489, - "lon": -1.2296577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "note": "collection plate missing when surveyed, so reported to Royal Mail", - "ref": "OX3 890", - "source:collection_times": "Email from Royal Mail", - "source:ref": "Email from Royal Mail" - } -}, -{ - "type": "node", - "id": 690765123, - "lat": 51.3513156, - "lon": 0.4277617, - "tags": { - "amenity": "post_box", - "ref": "ME3 134" - } -}, -{ - "type": "node", - "id": 690765135, - "lat": 51.3638204, - "lon": 0.4426421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME2 336" - } -}, -{ - "type": "node", - "id": 690765142, - "lat": 51.3683488, - "lon": 0.4497035, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME2 133", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME2 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-14" - } -}, -{ - "type": "node", - "id": 690853690, - "lat": 53.0786089, - "lon": -2.7340167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "old_ref": "SY14 628", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 628D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 690875481, - "lat": 50.0561043, - "lon": -5.6665791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-13", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 690877604, - "lat": 50.0556254, - "lon": -5.6581404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-28", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 136", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 690887121, - "lat": 51.4844712, - "lon": -0.9472570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG4 591" - } -}, -{ - "type": "node", - "id": 690887189, - "lat": 51.4796697, - "lon": -0.9352596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG4 9", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 690887316, - "lat": 51.4437568, - "lon": -0.9037447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG5 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 690894014, - "lat": 51.8220173, - "lon": -1.4090167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 690914057, - "lat": 52.9437927, - "lon": -3.0587971, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 690914238, - "lat": 52.9382061, - "lon": -3.0501624, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 690914391, - "lat": 52.9546105, - "lon": -3.0406602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 690924027, - "lat": 53.8613951, - "lon": -1.9031703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD21 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 690924144, - "lat": 53.8592428, - "lon": -1.8979044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD21 78" - } -}, -{ - "type": "node", - "id": 690924233, - "lat": 53.8659693, - "lon": -1.9066672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD21 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 690954703, - "lat": 51.8165707, - "lon": -1.4056088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691032756, - "lat": 51.6412906, - "lon": -3.8582051, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 691071506, - "lat": 52.7673863, - "lon": 1.1147308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "NR10 1018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691084116, - "lat": 51.5157333, - "lon": -0.1407422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "note": "RH aperture is blocked up; RH collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "W1W", - "ref": "W1W 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691085569, - "lat": 51.5175961, - "lon": -0.1413430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "collection_times_checked": "2018-11-29", - "note": "Ugly steel cabinet thing. LH plate defaced and unreadable, no RH plate 2024-04-16. RH ref deduced from LH when it was readable, according to the usual pattern.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W1W 126;W1W 326", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691119348, - "lat": 52.7376990, - "lon": 1.1403173, - "tags": { - "amenity": "post_box", - "ele": "40.2606201", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 691139950, - "lat": 53.1403124, - "lon": -1.4016870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "132.7868652", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691207721, - "lat": 50.7013829, - "lon": -1.4400160, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 115", - "ref:GB:uprn": "10015449527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/endfield-po41-0tw/000PO30115" - } -}, -{ - "type": "node", - "id": 691388358, - "lat": 52.6164730, - "lon": -2.0679659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 691410063, - "lat": 52.6125360, - "lon": -2.0545197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 691439284, - "lat": 51.1511059, - "lon": -2.7066287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 691511723, - "lat": 51.0641269, - "lon": -0.4649021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691639480, - "lat": 55.8370497, - "lon": -3.2100400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH26 196", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691673873, - "lat": 51.4816720, - "lon": -2.5838172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS7", - "ref": "BS7 343", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "gps" - } -}, -{ - "type": "node", - "id": 691701470, - "lat": 52.9693049, - "lon": -1.4600697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 795", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691716041, - "lat": 54.8100509, - "lon": -1.6344428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 79" - } -}, -{ - "type": "node", - "id": 691748262, - "lat": 55.8341663, - "lon": -3.2373921, - "tags": { - "amenity": "post_box", - "ref": "EH26 75" - } -}, -{ - "type": "node", - "id": 691759038, - "lat": 55.8377418, - "lon": -3.2320477, - "tags": { - "amenity": "post_box", - "ref": "EH26 360" - } -}, -{ - "type": "node", - "id": 691864871, - "lat": 51.4739498, - "lon": 0.0613603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691864872, - "lat": 51.4768844, - "lon": 0.0635668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691864873, - "lat": 51.4809455, - "lon": 0.0694621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691864875, - "lat": 51.4837835, - "lon": 0.0769562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691864877, - "lat": 51.4823737, - "lon": 0.0830006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691864878, - "lat": 51.4825222, - "lon": 0.0869536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 45", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691864879, - "lat": 51.4842630, - "lon": 0.0892631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 64", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 691874014, - "lat": 51.4869570, - "lon": 0.0698817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Sticker over the ref number on 30/jun/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691874015, - "lat": 51.4887097, - "lon": 0.0734850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691874016, - "lat": 51.4878721, - "lon": 0.0799267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691874019, - "lat": 51.4908562, - "lon": 0.0793961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 691874020, - "lat": 51.4894981, - "lon": 0.0848190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691874021, - "lat": 51.4942224, - "lon": 0.0739251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691874023, - "lat": 51.4855733, - "lon": 0.0916308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 691909493, - "lat": 51.4906093, - "lon": 0.0486341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691909496, - "lat": 51.4890460, - "lon": 0.0507817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691909497, - "lat": 51.4874063, - "lon": 0.0562790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691909499, - "lat": 51.4925771, - "lon": 0.0628329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691909501, - "lat": 51.4910715, - "lon": 0.0649145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691909503, - "lat": 51.4935428, - "lon": 0.0626322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:manufacturer": "Lion Foundry", - "post_box:type": "pillar", - "ref": "SE18 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691909521, - "lat": 51.4821738, - "lon": 0.0664087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691909532, - "lat": 51.4918449, - "lon": 0.0661981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "note": "Inside WH Smiths, so box access depends on opening hours.", - "opening_hours": "Mo-Sa: 08:30-18:00; Su 10:30-16:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SE18 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691935320, - "lat": 51.4724446, - "lon": 0.0479310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE18 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691935324, - "lat": 51.4740079, - "lon": 0.0472600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691935325, - "lat": 51.4713785, - "lon": 0.0531897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 691935326, - "lat": 51.4903131, - "lon": 0.0526808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 691935329, - "lat": 51.4912399, - "lon": 0.0603672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:manufacturer": "Lion Foundry", - "post_box:type": "pillar", - "ref": "SE18 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 691935331, - "lat": 51.4888215, - "lon": 0.0635335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 691935878, - "lat": 55.8379108, - "lon": -3.2257840, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH26 266" - } -}, -{ - "type": "node", - "id": 691975748, - "lat": 51.3831058, - "lon": 0.3781487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DA13 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 691999311, - "lat": 51.3787089, - "lon": 0.4376780, - "tags": { - "amenity": "post_box", - "mapillary": "138147434970194", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "ME3 178", - "survey:date": "2020-08-26" - } -}, -{ - "type": "node", - "id": 692039789, - "lat": 51.3762557, - "lon": 0.4540500, - "tags": { - "amenity": "post_box", - "ref": "ME2 77" - } -}, -{ - "type": "node", - "id": 692074812, - "lat": 53.2696991, - "lon": -0.4474644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 692127244, - "lat": 53.2646334, - "lon": -0.4777811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 692127373, - "lat": 51.3740372, - "lon": 0.4538617, - "tags": { - "amenity": "post_box", - "ref": "ME2 211" - } -}, -{ - "type": "node", - "id": 692158271, - "lat": 55.8263758, - "lon": -3.2211178, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH26 118", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 692165674, - "lat": 55.8307415, - "lon": -3.2123793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 27", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 692221141, - "lat": 55.8281320, - "lon": -3.2227323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 126", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 692256106, - "lat": 52.4351164, - "lon": -0.1205544, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 692256351, - "lat": 52.4395914, - "lon": -0.1153670, - "tags": { - "amenity": "post_box", - "mapillary": "333184371562559", - "post_box:type": "pillar", - "ref": "PE26 191", - "source:position": "Mapillary 2020-08-05", - "survey:date": "2020-08-05" - } -}, -{ - "type": "node", - "id": 692256407, - "lat": 52.4382769, - "lon": -0.1128253, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 692271505, - "lat": 55.8331418, - "lon": -3.2172064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 267", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 692766288, - "lat": 51.5779714, - "lon": -0.3990858, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 692832665, - "lat": 53.2654344, - "lon": -0.4502728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 692948381, - "lat": 55.8493227, - "lon": -3.2079294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 692952251, - "lat": 55.8446286, - "lon": -3.2081739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "EH26 342" - } -}, -{ - "type": "node", - "id": 692965834, - "lat": 53.2660825, - "lon": -3.9359540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL34 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 692991711, - "lat": 53.2703452, - "lon": -3.9237218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL34 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693028807, - "lat": 52.3931543, - "lon": -1.5911974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV4 166", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 693034685, - "lat": 52.8537524, - "lon": -1.4537182, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE73 248" - } -}, -{ - "type": "node", - "id": 693124348, - "lat": 52.2012024, - "lon": -1.5456094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV35", - "ref": "CV35 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 693250425, - "lat": 53.2018072, - "lon": -0.5964142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LN6 607" - } -}, -{ - "type": "node", - "id": 693257956, - "lat": 52.2993060, - "lon": -3.5146662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LD6 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 693258267, - "lat": 52.1079064, - "lon": -1.9134534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "WR11 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693258373, - "lat": 52.1117845, - "lon": -1.9213733, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-30", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "post_box:type": "lamp", - "ref": "WR11 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693327233, - "lat": 54.0696761, - "lon": -2.8374550, - "tags": { - "amenity": "post_box", - "ref": "LA4 213" - } -}, -{ - "type": "node", - "id": 693327291, - "lat": 54.0601123, - "lon": -2.8609898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA3 142", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 693327398, - "lat": 54.0662032, - "lon": -2.8337532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA4 99", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 693357101, - "lat": 51.2089199, - "lon": -0.3451343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH5 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693401021, - "lat": 52.8446764, - "lon": -1.2575191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG11 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693401085, - "lat": 52.8553708, - "lon": -1.2652135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG11 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 693499559, - "lat": 55.8390603, - "lon": -3.2176393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH26 130", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 693509101, - "lat": 51.4340602, - "lon": -0.6080224, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL4 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 693513925, - "lat": 54.2778655, - "lon": -3.0892336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA12 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 693533473, - "lat": 50.6547500, - "lon": -1.2832537, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-11-01", - "check_date:ref": "2010-07-21", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "name": "Rookley Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2019-11-01", - "website": "https://www.royalmail.com/services-near-you/postbox/rookley-village-po38-3la/000PO38243" - } -}, -{ - "type": "node", - "id": 693533475, - "lat": 50.6372573, - "lon": -1.2589182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "mapillary": "921484182040548", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 259", - "ref:GB:uprn": "10015856762", - "survey:date": "2020-09-02", - "website": "https://www.royalmail.com/services-near-you/postbox/yarborough-close-po38-3lb/000PO38259" - } -}, -{ - "type": "node", - "id": 693541782, - "lat": 51.1030731, - "lon": -1.1622564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 124" - } -}, -{ - "type": "node", - "id": 693560865, - "lat": 53.7366466, - "lon": -1.6407452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 193" - } -}, -{ - "type": "node", - "id": 693590469, - "lat": 51.8508621, - "lon": 0.1459002, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 693745532, - "lat": 52.4422247, - "lon": -0.1188897, - "tags": { - "amenity": "post_box", - "ref": "PE26 274" - } -}, -{ - "type": "node", - "id": 693745716, - "lat": 52.4465310, - "lon": -0.1191396, - "tags": { - "amenity": "post_box", - "ref": "PE26 166" - } -}, -{ - "type": "node", - "id": 693745833, - "lat": 52.4446912, - "lon": -0.1123763, - "tags": { - "amenity": "post_box", - "ref": "PE26 71" - } -}, -{ - "type": "node", - "id": 693823158, - "lat": 55.9621347, - "lon": -3.1794502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1805762352931519", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 288", - "royal_cypher": "scottish_crown", - "survey:date": "2020-08-30" - } -}, -{ - "type": "node", - "id": 693823162, - "lat": 55.9675952, - "lon": -3.1703629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH6 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 693836509, - "lat": 51.3015028, - "lon": 0.4932341, - "tags": { - "amenity": "post_box", - "ref": "ME20 63" - } -}, -{ - "type": "node", - "id": 693849691, - "lat": 53.2678314, - "lon": -3.9288017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL34 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693849702, - "lat": 53.2681224, - "lon": -3.9218474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 693864723, - "lat": 53.2713803, - "lon": -3.9194034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL34 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 693871669, - "lat": 52.8545833, - "lon": -1.2337723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG11 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 693873431, - "lat": 53.2572937, - "lon": -3.9798998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL33 49D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 693939307, - "lat": 53.0996083, - "lon": -1.2488099, - "tags": { - "amenity": "post_box", - "ele": "150.8114014" - } -}, -{ - "type": "node", - "id": 693939311, - "lat": 53.1062077, - "lon": -1.2693821, - "tags": { - "amenity": "post_box", - "ele": "172.9216309" - } -}, -{ - "type": "node", - "id": 693939318, - "lat": 53.1170879, - "lon": -1.2611136, - "tags": { - "amenity": "post_box", - "ele": "173.4022217" - } -}, -{ - "type": "node", - "id": 693939320, - "lat": 53.1199439, - "lon": -1.2608151, - "tags": { - "amenity": "post_box", - "ele": "172.2005615" - } -}, -{ - "type": "node", - "id": 694163770, - "lat": 54.0143351, - "lon": -1.5188959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG1 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 694180064, - "lat": 52.6969986, - "lon": 0.2447169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 206" - } -}, -{ - "type": "node", - "id": 694201183, - "lat": 51.4618001, - "lon": -2.5574754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS5 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694257917, - "lat": 51.6224987, - "lon": -0.2554942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 34" - } -}, -{ - "type": "node", - "id": 694303400, - "lat": 54.6302417, - "lon": -1.6131755, - "tags": { - "amenity": "post_box", - "ref": "DL5 162", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 694358683, - "lat": 52.5387122, - "lon": -1.5381975, - "tags": { - "amenity": "post_box", - "postal_code": "CV10", - "ref": "CV10 68", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 694361378, - "lat": 52.8232299, - "lon": -2.1158672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 1607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694401579, - "lat": 52.1198482, - "lon": -1.8872434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 694401709, - "lat": 52.1250497, - "lon": -1.8812897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00; Su off", - "post_box:type": "lamp", - "ref": "WR11 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694401722, - "lat": 52.1231505, - "lon": -1.8741603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 694434466, - "lat": 51.5756213, - "lon": -4.1276202, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 694508652, - "lat": 51.5098111, - "lon": -0.0806306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "double aperture box, one marked stamped, the other franked.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3R 307D;EC3R 3071D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 694538659, - "lat": 52.1149669, - "lon": -1.9163275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "WR11 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694562865, - "lat": 52.9629472, - "lon": -2.7815344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY13 666", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694562872, - "lat": 52.9751500, - "lon": -2.7814186, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 694562876, - "lat": 52.9599324, - "lon": -2.7596658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY13 642D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694604350, - "lat": 53.2368162, - "lon": -0.5489887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 694606855, - "lat": 51.6376724, - "lon": -2.3517177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-04-27", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "black", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL12 100", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 694683424, - "lat": 52.6461974, - "lon": -2.0923336, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 694711447, - "lat": 52.4506331, - "lon": -0.1158896, - "tags": { - "amenity": "post_box", - "ref": "PE26 197" - } -}, -{ - "type": "node", - "id": 694711449, - "lat": 52.4515922, - "lon": -0.1183940, - "tags": { - "amenity": "post_box", - "ref": "PE26 214" - } -}, -{ - "type": "node", - "id": 694800872, - "lat": 55.0752933, - "lon": -1.5332945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE25 0QM", - "ref": "NE25 514D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 694801051, - "lat": 55.0691878, - "lon": -1.5212369, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE25 0JL", - "ref": "NE25 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694801375, - "lat": 55.0721168, - "lon": -1.5192258, - "tags": { - "amenity": "post_box", - "postal_code": "NE25 0AS", - "ref": "NE25 147" - } -}, -{ - "type": "node", - "id": 694801546, - "lat": 55.0651155, - "lon": -1.5105483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE25 0NP", - "ref": "NE25 245" - } -}, -{ - "type": "node", - "id": 694802326, - "lat": 55.0668296, - "lon": -1.5159556, - "tags": { - "amenity": "post_box", - "postal_code": "NE25 0HX", - "ref": "NE25 246" - } -}, -{ - "type": "node", - "id": 694835079, - "lat": 50.8647463, - "lon": -1.2082475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694837590, - "lat": 50.8661264, - "lon": -1.1980853, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "last_checked": "2021-03-16", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 694854280, - "lat": 53.0296163, - "lon": -1.1521305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 694857467, - "lat": 54.5511156, - "lon": -1.5467908, - "tags": { - "amenity": "post_box", - "ref": "DL1 136" - } -}, -{ - "type": "node", - "id": 694874842, - "lat": 53.0614751, - "lon": -1.1823195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "91.4503174", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG15 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 695156540, - "lat": 51.7347624, - "lon": -1.3745238, - "tags": { - "amenity": "post_box", - "ref": "OX29 475" - } -}, -{ - "type": "node", - "id": 695159883, - "lat": 51.8155617, - "lon": -1.4434560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 08:00", - "ref": "OX29 901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 695160959, - "lat": 51.4894941, - "lon": -2.5403588, - "tags": { - "amenity": "post_box", - "ref": "BS16 1127" - } -}, -{ - "type": "node", - "id": 695162895, - "lat": 52.1930791, - "lon": -2.2210761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695174827, - "lat": 53.3642766, - "lon": -2.5707839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 370", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 695183245, - "lat": 51.3774780, - "lon": -2.3339563, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "BA2", - "ref": "BA2 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695188753, - "lat": 52.7747637, - "lon": -2.7096814, - "tags": { - "amenity": "post_box", - "ref": "SY5 35" - } -}, -{ - "type": "node", - "id": 695225180, - "lat": 54.9575268, - "lon": -2.8713905, - "tags": { - "amenity": "post_box", - "ref": "CA6 292", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695225186, - "lat": 54.9362266, - "lon": -2.9183725, - "tags": { - "amenity": "post_box", - "ref": "CA6 193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695229888, - "lat": 52.6440959, - "lon": -2.8861706, - "tags": { - "amenity": "post_box", - "ref": "SY5 242" - } -}, -{ - "type": "node", - "id": 695232362, - "lat": 55.0779974, - "lon": -2.9535247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DG14 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695232363, - "lat": 55.0787364, - "lon": -2.9527195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG14 105", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695357822, - "lat": 50.9198359, - "lon": -1.3136534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 776", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 695357827, - "lat": 50.9198311, - "lon": -1.3136520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 790", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 695427319, - "lat": 55.5464000, - "lon": -2.8364876, - "tags": { - "amenity": "post_box", - "ref": "TD7 79", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695445361, - "lat": 55.5444427, - "lon": -2.8333039, - "tags": { - "amenity": "post_box", - "ref": "TD7 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695536269, - "lat": 51.4457002, - "lon": -0.8655243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 695651296, - "lat": 55.5511487, - "lon": -2.8355287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD7 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 695651730, - "lat": 52.1424094, - "lon": -2.2428284, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR2 300" - } -}, -{ - "type": "node", - "id": 695653916, - "lat": 52.1904500, - "lon": -2.2749760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 49" - } -}, -{ - "type": "node", - "id": 695718537, - "lat": 52.3929865, - "lon": -1.5727919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CV4 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 695718559, - "lat": 52.3885664, - "lon": -1.5729568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "drive_through": "yes", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV4 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 695815327, - "lat": 53.2712627, - "lon": -3.8851554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL34 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 695821113, - "lat": 53.2806424, - "lon": -3.8933446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL34 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 695999838, - "lat": 51.3161454, - "lon": -0.5915231, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-07", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 94D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 696056906, - "lat": 53.2592147, - "lon": -2.9107352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "note": "collections plate states CH66 on 12 Oct 2018.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH66 535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 696059465, - "lat": 53.2783439, - "lon": -2.9014809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH65 615", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 696111128, - "lat": 53.1379130, - "lon": -1.1895929, - "tags": { - "amenity": "post_box", - "ele": "112.1186523" - } -}, -{ - "type": "node", - "id": 696415611, - "lat": 55.7737684, - "lon": -2.9435893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH38 246", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 696458842, - "lat": 55.9314090, - "lon": -3.1822354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 155", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 696458846, - "lat": 55.9161785, - "lon": -3.1508694, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-06", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH17 335", - "source": "survey" - } -}, -{ - "type": "node", - "id": 696498624, - "lat": 56.4050484, - "lon": -3.4407253, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 180D", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 696740171, - "lat": 53.0896291, - "lon": -2.4720120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 119D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 697077764, - "lat": 51.8642111, - "lon": 0.1449874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "CM23 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 697101747, - "lat": 51.3807283, - "lon": -2.3573264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "BA1", - "ref": "BA1 14;BA1 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 697120980, - "lat": 50.6805397, - "lon": -1.5147936, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO40 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/freshwater-post-office-po40-9hj/0000PO4038" - } -}, -{ - "type": "node", - "id": 697121042, - "lat": 50.6842023, - "lon": -1.5125940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "mapillary": "125159400347515", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO40 34", - "ref:GB:uprn": "10015280290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/hooke-hill-po39-0aa/0000PO4034" - } -}, -{ - "type": "node", - "id": 697121061, - "lat": 50.6841193, - "lon": -1.5292042, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO40 52", - "ref:GB:uprn": "10015317209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/the-avenue-po39-0aa/0000PO4052" - } -}, -{ - "type": "node", - "id": 697121065, - "lat": 50.7035723, - "lon": -1.3378416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "244295611368373", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/vittlefields-po30-5na/0000PO3030" - } -}, -{ - "type": "node", - "id": 697121139, - "lat": 50.6871934, - "lon": -1.4197255, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO41 77", - "ref:GB:uprn": "10015374126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/newbridge-po41-0tw/0000PO4177" - } -}, -{ - "type": "node", - "id": 697121178, - "lat": 50.6964282, - "lon": -1.4702005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "name": "Thorley Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PO41 31", - "ref:GB:uprn": "10015332986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/thorley-po41-0ab/0000PO4131" - } -}, -{ - "type": "node", - "id": 697134926, - "lat": 50.6856515, - "lon": -1.5267170, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Golden Ridge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 56D", - "ref:GB:uprn": "10015323032", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/golden-ridge-po39-0aa/0000PO4056" - } -}, -{ - "type": "node", - "id": 697179243, - "lat": 55.9253125, - "lon": -3.2006432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "758731739492929", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 274", - "source": "survey", - "survey:date": "2023-08-01" - } -}, -{ - "type": "node", - "id": 697179244, - "lat": 55.9281345, - "lon": -3.1804917, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-24", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "ref": "EH9 375", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 697179245, - "lat": 55.9305911, - "lon": -3.1762066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "EH9 187", - "royal_cypher": "scottish_crown", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 697180688, - "lat": 53.1318723, - "lon": -1.2584693, - "tags": { - "amenity": "post_box", - "ele": "154.4162598" - } -}, -{ - "type": "node", - "id": 697182992, - "lat": 50.9735055, - "lon": -1.3801318, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 697183067, - "lat": 50.9720225, - "lon": -1.3828405, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 565", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 697183594, - "lat": 53.1342032, - "lon": -1.2649427, - "tags": { - "amenity": "post_box", - "ele": "156" - } -}, -{ - "type": "node", - "id": 697234520, - "lat": 50.6702465, - "lon": -1.5115611, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "note": "This is a brand new EIIR lamp postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/freshwater-gate-po40-9pe/0000PO4013" - } -}, -{ - "type": "node", - "id": 697268787, - "lat": 56.4606364, - "lon": -3.0036427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 580D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 697268788, - "lat": 56.4700841, - "lon": -3.0056812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 74D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 697269724, - "lat": 56.4673461, - "lon": -3.0151988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 697269725, - "lat": 56.4559532, - "lon": -2.9909564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 697302904, - "lat": 53.1684271, - "lon": -1.4256067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "125.58", - "post_box:type": "lamp", - "ref": "S45 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 697306802, - "lat": 53.8712850, - "lon": -2.3922215, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 697523042, - "lat": 55.1575759, - "lon": -3.7079192, - "tags": { - "amenity": "post_box", - "ref": "DG2 89" - } -}, -{ - "type": "node", - "id": 697804657, - "lat": 53.2775251, - "lon": -2.8977351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH65 406" - } -}, -{ - "type": "node", - "id": 697945844, - "lat": 52.9344505, - "lon": -3.1865818, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 697945883, - "lat": 52.9332125, - "lon": -3.1836311, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 697946025, - "lat": 52.9309271, - "lon": -3.1034138, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 698068909, - "lat": 55.8954670, - "lon": -3.5264336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 55D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 698068910, - "lat": 55.9056171, - "lon": -3.5014232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 698078977, - "lat": 50.7108755, - "lon": -1.3119613, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 71D", - "ref:GB:uprn": "10024897363", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/camp-hill-po30-9an/0000PO3071" - } -}, -{ - "type": "node", - "id": 698083374, - "lat": 50.7238652, - "lon": -1.1614123, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "check_date:ref": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO33 72D", - "ref:GB:uprn": "10015269635", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/albert-street-po33-1aa/0000PO3372" - } -}, -{ - "type": "node", - "id": 698084538, - "lat": 53.2166848, - "lon": -1.4050034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "103.23", - "post_box:type": "lamp", - "ref": "S41 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 698093270, - "lat": 53.2391134, - "lon": -1.4334316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "104.4281006", - "post_box:type": "pillar", - "ref": "S40 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 698343639, - "lat": 50.6314205, - "lon": -1.1866392, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO37 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/josephs-way-po38-3es/000PO37146" - } -}, -{ - "type": "node", - "id": 698343641, - "lat": 50.6313007, - "lon": -1.1809319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2018-11-21", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 1", - "ref:GB:uprn": "10015293901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/collingwood-road-po38-3es/00000PO371" - } -}, -{ - "type": "node", - "id": 698617533, - "lat": 52.8298247, - "lon": -2.1244699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 441", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 698617535, - "lat": 52.8205622, - "lon": -2.1153210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "description": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ST16 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 698617546, - "lat": 52.8205767, - "lon": -2.1154023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 698655751, - "lat": 50.6876087, - "lon": -1.3995445, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "name": "Stonesteps", - "note": "This postbox is a brand new EIIR lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 62", - "ref:GB:uprn": "10015290845", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/stonesteps-po30-4ja/0000PO3062" - } -}, -{ - "type": "node", - "id": 698772503, - "lat": 52.9371545, - "lon": -3.1875494, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 698795276, - "lat": 52.0593136, - "lon": -1.9093338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30; Su off", - "post_box:type": "lamp", - "ref": "WR12 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 698971824, - "lat": 52.1146338, - "lon": -2.3055936, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan Scotland", - "post_box:type": "lamp", - "ref": "WR14 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 699047551, - "lat": 52.4373866, - "lon": -1.8927535, - "tags": { - "amenity": "post_box", - "note": "I'm not sure if the ref is correct", - "post_box:type": "pillar", - "ref": "B14 1314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 699700239, - "lat": 51.4952122, - "lon": -0.1830455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "note": "manufacturer: MACHAN ENG SCOTLAND 1993 (the 3 is very peculiar)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Engineering", - "post_box:type": "pillar", - "ref": "SW7 3;SW7 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 699777226, - "lat": 51.5243996, - "lon": -0.0948952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1V 138;EC1V 1381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 699943039, - "lat": 54.5370736, - "lon": -1.0573834, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 699960357, - "lat": 51.8490776, - "lon": 0.1605203, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 699960358, - "lat": 51.8529463, - "lon": 0.1669102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CM22 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700168384, - "lat": 51.8744858, - "lon": 0.1546901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "CM23 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700171965, - "lat": 50.7084931, - "lon": -3.5395947, - "tags": { - "amenity": "post_box", - "ref": "EX2 515", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 700183486, - "lat": 51.0716231, - "lon": -0.7933681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "last_checked": "2020-08-11", - "note": "Caution: This postbox is very near the road and in order to use it, one has to either stand in the road or lean over from an angle to post the item in the postbox slot.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU30 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700183862, - "lat": 51.0769932, - "lon": -0.7926386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "old_ref": "GU30 49", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700183878, - "lat": 51.0790336, - "lon": -0.7968288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "old_ref": "GU30 48", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU30 48D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700183945, - "lat": 51.0788502, - "lon": -0.7924045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "last_checked": "2020-08-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700183950, - "lat": 51.0701632, - "lon": -0.7973947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "old_ref": "GU30 79", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700184096, - "lat": 51.0789298, - "lon": -0.7863945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU30 125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700211829, - "lat": 52.3736691, - "lon": -2.2718160, - "tags": { - "amenity": "post_box", - "ref": "DY11 243" - } -}, -{ - "type": "node", - "id": 700211884, - "lat": 52.3787619, - "lon": -2.2741381, - "tags": { - "amenity": "post_box", - "ref": "DY11 173" - } -}, -{ - "type": "node", - "id": 700211985, - "lat": 52.3735016, - "lon": -2.2672291, - "tags": { - "amenity": "post_box", - "ref": "DY11 172" - } -}, -{ - "type": "node", - "id": 700245214, - "lat": 52.2608136, - "lon": 0.3969401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB8 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700331873, - "lat": 52.3749412, - "lon": -2.2596726, - "tags": { - "amenity": "post_box", - "ref": "DY11 8" - } -}, -{ - "type": "node", - "id": 700351475, - "lat": 51.8820626, - "lon": 0.1724838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CM23 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700357912, - "lat": 51.3929688, - "lon": 0.0169873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 68" - } -}, -{ - "type": "node", - "id": 700357950, - "lat": 51.3988465, - "lon": 0.0054511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700357954, - "lat": 51.3964182, - "lon": 0.0145926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 287" - } -}, -{ - "type": "node", - "id": 700363792, - "lat": 53.2953583, - "lon": -1.5177825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "ele": "252.7104492", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700364062, - "lat": 52.3848625, - "lon": -2.2567021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "DY11 40D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 700364133, - "lat": 52.3877780, - "lon": -2.2572541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY11 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700364156, - "lat": 52.3839939, - "lon": -2.2519392, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "DY11 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 700400403, - "lat": 52.3818885, - "lon": -2.2675539, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DY11 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700400425, - "lat": 52.3830962, - "lon": -2.2745218, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DY11 33" - } -}, -{ - "type": "node", - "id": 700417239, - "lat": 52.3811336, - "lon": -2.2664519, - "tags": { - "amenity": "post_box", - "ref": "DY11 250" - } -}, -{ - "type": "node", - "id": 700417242, - "lat": 52.3854634, - "lon": -2.2637705, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DY11 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 700427339, - "lat": 51.0887492, - "lon": -0.7100067, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GU27 165;GU27 1651", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700427473, - "lat": 51.0966630, - "lon": -0.7104334, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700756021, - "lat": 51.7198310, - "lon": -1.3039882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "ref": "OX1 622" - } -}, -{ - "type": "node", - "id": 700765333, - "lat": 52.3926719, - "lon": -2.2759633, - "tags": { - "amenity": "post_box", - "postal_code": "DY11", - "ref": "DY11 36", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 700783409, - "lat": 52.3969644, - "lon": -2.2712691, - "tags": { - "amenity": "post_box", - "postal_code": "DY11", - "ref": "DY11 233", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 700783432, - "lat": 52.3973083, - "lon": -2.2664291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "6162577817091817", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DY11", - "ref": "DY11 3", - "source": "GPS Survey", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 700803551, - "lat": 52.3904741, - "lon": -2.2657561, - "tags": { - "amenity": "post_box", - "postal_code": "DY11", - "ref": "DY11 32", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 700803554, - "lat": 52.3931661, - "lon": -2.2651612, - "tags": { - "amenity": "post_box", - "postal_code": "DY11", - "ref": "DY11 208", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 700824214, - "lat": 53.2967267, - "lon": -1.5121293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "224.5920410", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 424D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700848327, - "lat": 50.5580373, - "lon": -4.7939736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700852416, - "lat": 52.3781781, - "lon": -2.2667352, - "tags": { - "amenity": "post_box", - "ref": "DY11 141" - } -}, -{ - "type": "node", - "id": 700852741, - "lat": 52.3785196, - "lon": -2.2624776, - "tags": { - "amenity": "post_box", - "ref": "DY11 256" - } -}, -{ - "type": "node", - "id": 700868753, - "lat": 53.3053562, - "lon": -1.4833266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "175.3248291", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 993D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700953730, - "lat": 52.9093188, - "lon": -1.4651028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 100D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 700956665, - "lat": 53.6340953, - "lon": -2.5806363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "mapillary": "206297124398674", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700958614, - "lat": 53.2909495, - "lon": -1.4421656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "ele": "93.8537598", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "S18 581", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 700976935, - "lat": 52.3895651, - "lon": -2.2802771, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DY11", - "ref": "DY11 216", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 700993601, - "lat": 50.5634612, - "lon": -4.8026736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 701002010, - "lat": 53.2644367, - "lon": -1.4268610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 701167798, - "lat": 51.6037820, - "lon": 0.7788290, - "tags": { - "amenity": "post_box", - "name": "Paglesham Church End", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 701172076, - "lat": 52.3687136, - "lon": -2.2359680, - "tags": { - "amenity": "post_box", - "ref": "DY10 324" - } -}, -{ - "type": "node", - "id": 701172169, - "lat": 52.3764218, - "lon": -2.2274727, - "tags": { - "amenity": "post_box", - "ref": "DY10 200" - } -}, -{ - "type": "node", - "id": 701172194, - "lat": 52.3708876, - "lon": -2.2318760, - "tags": { - "amenity": "post_box", - "ref": "DY10 182" - } -}, -{ - "type": "node", - "id": 701221321, - "lat": 51.4795602, - "lon": -0.6288741, - "tags": { - "amenity": "post_box", - "ref": "SL4 37" - } -}, -{ - "type": "node", - "id": 701231869, - "lat": 52.9003684, - "lon": -1.4679354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 712", - "source": "survey" - } -}, -{ - "type": "node", - "id": 701547919, - "lat": 51.6571896, - "lon": -0.2016865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN5 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 701556433, - "lat": 51.0857105, - "lon": -0.7305122, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "last_checked": "2020-08-20", - "note": "This Postboc has the latest collection in this area.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 701574583, - "lat": 52.3866156, - "lon": -2.2699961, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DY11", - "ref": "DY11 178", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 701588648, - "lat": 51.0953212, - "lon": -0.7304336, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 701719807, - "lat": 52.3939146, - "lon": -2.2246519, - "tags": { - "amenity": "post_box", - "postal_code": "DY10", - "ref": "DY10 156", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 701719836, - "lat": 52.3980630, - "lon": -2.2212825, - "tags": { - "amenity": "post_box", - "postal_code": "DY10", - "ref": "DY10 231", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 701723193, - "lat": 52.3830140, - "lon": -2.2990378, - "tags": { - "amenity": "post_box", - "postal_code": "DY12", - "ref": "DY12 205", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 701725229, - "lat": 52.3960517, - "lon": -2.2356947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "DY10", - "ref": "DY10 181", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 701731878, - "lat": 52.3802142, - "lon": -2.3061447, - "tags": { - "amenity": "post_box", - "postal_code": "DY12", - "ref": "DY12 207", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 701735691, - "lat": 52.7585053, - "lon": -2.1327518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST18 165" - } -}, -{ - "type": "node", - "id": 701781511, - "lat": 52.5583132, - "lon": -0.1357420, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701781725, - "lat": 52.5602289, - "lon": -0.1527314, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701781830, - "lat": 52.5626849, - "lon": -0.1415767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830193, - "lat": 52.5554956, - "lon": -0.1321963, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830266, - "lat": 52.5607617, - "lon": -0.1428438, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830327, - "lat": 52.5604007, - "lon": -0.1284654, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830331, - "lat": 52.5615384, - "lon": -0.1306334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830336, - "lat": 52.5640389, - "lon": -0.1306725, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830429, - "lat": 52.5619413, - "lon": -0.1168990, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830446, - "lat": 52.5640647, - "lon": -0.1117378, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701830475, - "lat": 52.5629680, - "lon": -0.1078093, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 701851961, - "lat": 52.0555867, - "lon": -1.9366765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR12 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 702001760, - "lat": 51.7597489, - "lon": -0.3088639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 94D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 702011363, - "lat": 52.3920433, - "lon": -2.2294897, - "tags": { - "amenity": "post_box", - "postal_code": "DY10", - "ref": "DY10 171", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 702021412, - "lat": 52.3882389, - "lon": -2.2334302, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DY10", - "ref": "DY10 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 702120261, - "lat": 52.3888956, - "lon": -2.2212874, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "DY10", - "ref": "DY10 1", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 702142923, - "lat": 51.0874696, - "lon": -0.7096986, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 702142970, - "lat": 51.0908786, - "lon": -0.7065582, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "old_ref": "GU27 31", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 702183203, - "lat": 52.3845062, - "lon": -2.2212094, - "tags": { - "amenity": "post_box", - "postal_code": "DY10", - "ref": "DY10 27", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 702238632, - "lat": 57.1757459, - "lon": -2.1028101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 524D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 702241994, - "lat": 52.3855263, - "lon": -2.2275356, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DY10 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 702254334, - "lat": 50.5211102, - "lon": -3.7440925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TQ13 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 702259749, - "lat": 52.4010046, - "lon": -2.2590471, - "tags": { - "amenity": "post_box", - "ref": "DY11 37" - } -}, -{ - "type": "node", - "id": 702495912, - "lat": 50.7131277, - "lon": -3.3047509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX11 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 702496240, - "lat": 50.7167944, - "lon": -3.2967177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX10 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 702566913, - "lat": 55.9478244, - "lon": -3.2213073, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH12 109" - } -}, -{ - "type": "node", - "id": 702566924, - "lat": 55.9499694, - "lon": -3.2195589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH12 247" - } -}, -{ - "type": "node", - "id": 702566931, - "lat": 55.9487598, - "lon": -3.2123252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH3 90", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 702566943, - "lat": 55.9487788, - "lon": -3.2108716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH2 88;EH2 880", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 702566956, - "lat": 55.9593578, - "lon": -3.1768112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH7 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 702566964, - "lat": 55.9623569, - "lon": -3.1714829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH7 45", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 702566969, - "lat": 55.9646364, - "lon": -3.1735638, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH6 224", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 702566977, - "lat": 55.9655801, - "lon": -3.1691053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH6 538", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 702677586, - "lat": 51.3531413, - "lon": -2.3765460, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 702749119, - "lat": 51.3906773, - "lon": -0.0235517, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 409D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 702785503, - "lat": 51.3795206, - "lon": -0.0186476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 702785524, - "lat": 51.3861668, - "lon": -0.0243144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 702787408, - "lat": 52.3958249, - "lon": -2.2616043, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- location is outside DY13 postal district", - "ref": "DY13 152" - } -}, -{ - "type": "node", - "id": 702795466, - "lat": 52.3881834, - "lon": -2.2495264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 19:00; Sa 12:30", - "historic_operator": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DY10 64;DY10 964", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 702806931, - "lat": 52.4023087, - "lon": -2.2640535, - "tags": { - "amenity": "post_box", - "ref": "DY11 244" - } -}, -{ - "type": "node", - "id": 702814813, - "lat": 51.5090781, - "lon": -0.0870511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "left hand aperture for stamped mail, right hand for metered mail", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EC4R 408;EC4R 4081", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703003591, - "lat": 54.2373570, - "lon": -6.1591797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT34 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703066428, - "lat": 52.4318922, - "lon": -2.8289607, - "tags": { - "amenity": "post_box", - "postal_code": "SY7", - "ref": "SY7 249", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 703076306, - "lat": 51.3724086, - "lon": 1.4463985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT10", - "ref": "CT10 103", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703177471, - "lat": 54.3478704, - "lon": -6.2705495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT32 10" - } -}, -{ - "type": "node", - "id": 703189295, - "lat": 53.2625410, - "lon": -2.9284361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CH66 345" - } -}, -{ - "type": "node", - "id": 703200283, - "lat": 53.2584450, - "lon": -2.9218700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH66 446" - } -}, -{ - "type": "node", - "id": 703206178, - "lat": 53.2599476, - "lon": -2.9170788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH66 486" - } -}, -{ - "type": "node", - "id": 703268973, - "lat": 53.8204853, - "lon": -2.4066655, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 703275378, - "lat": 53.2722149, - "lon": -2.8973986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH65 408", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 703333663, - "lat": 54.3081535, - "lon": -6.2195714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT32 61" - } -}, -{ - "type": "node", - "id": 703340932, - "lat": 54.3021206, - "lon": -6.1427871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "BT32 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 703340933, - "lat": 54.2867141, - "lon": -6.1697457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT32 31" - } -}, -{ - "type": "node", - "id": 703370598, - "lat": 51.5193818, - "lon": -0.1191555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1R 230D;WC1R 30D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703515846, - "lat": 55.9450230, - "lon": -3.2268720, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH12 191", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 703567520, - "lat": 52.5536725, - "lon": -0.1196399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE7 163", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 703573742, - "lat": 50.7070660, - "lon": -1.4789780, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "name": "Port La Salle", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/port-la-salle-po41-0ab/000PO41365" - } -}, -{ - "type": "node", - "id": 703586261, - "lat": 52.5529619, - "lon": -0.1253367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "928924351236248", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PE7 62", - "source": "survey", - "survey:date": "2020-08-20" - } -}, -{ - "type": "node", - "id": 703587614, - "lat": 54.3178247, - "lon": -1.4644803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DL7 13", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 703590325, - "lat": 51.3084956, - "lon": -0.7808648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU14 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703590326, - "lat": 51.3115546, - "lon": -0.7759309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU14 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 703590327, - "lat": 51.2992500, - "lon": -0.7926893, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 703591030, - "lat": 52.9061996, - "lon": 0.4920239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PE31 59" - } -}, -{ - "type": "node", - "id": 703597404, - "lat": 51.1565665, - "lon": 0.7475343, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703617613, - "lat": 53.2631557, - "lon": -2.9105953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "old_ref": "CH65 414", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 414D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 703698085, - "lat": 53.8516538, - "lon": -2.3711039, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703704467, - "lat": 51.2172880, - "lon": 0.8105615, - "tags": { - "amenity": "post_box", - "postal_code": "TN27", - "ref": "TN27 251", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703704751, - "lat": 51.1421595, - "lon": 0.7433322, - "tags": { - "amenity": "post_box", - "postal_code": "TN26", - "ref": "TN26 220", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703704950, - "lat": 51.0987642, - "lon": 0.8449304, - "tags": { - "amenity": "post_box", - "postal_code": "TN26", - "ref": "TN26 201", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703708504, - "lat": 50.9713286, - "lon": 0.7515161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN31", - "ref": "TN31 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 703709336, - "lat": 50.9601679, - "lon": 0.7334656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "TN31", - "ref": "TN31 7" - } -}, -{ - "type": "node", - "id": 703721688, - "lat": 53.9047336, - "lon": -0.5292281, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703721692, - "lat": 53.9200020, - "lon": -0.5236550, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO25 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703726566, - "lat": 53.9136203, - "lon": -0.4869408, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703726590, - "lat": 53.9318407, - "lon": -0.4796034, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 703735099, - "lat": 53.8755561, - "lon": -2.3891692, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 703735123, - "lat": 54.0655998, - "lon": -2.2923530, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD24 102" - } -}, -{ - "type": "node", - "id": 703835577, - "lat": 53.2923363, - "lon": -2.3738625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 703835611, - "lat": 53.2939392, - "lon": -2.3717969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA16 80", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 703909643, - "lat": 51.1695120, - "lon": -3.3779139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 703984380, - "lat": 54.8408155, - "lon": -5.1161228, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-12", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG9 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 704139893, - "lat": 51.5154046, - "lon": -0.1177638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2A 259;WC2A 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 704139943, - "lat": 51.5161904, - "lon": -0.1134097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "WC2A 60;WC2A 260", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 704191178, - "lat": 51.4865089, - "lon": -0.2519976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 704301896, - "lat": 52.4159540, - "lon": -0.1068778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 202" - } -}, -{ - "type": "node", - "id": 704301910, - "lat": 52.4295243, - "lon": -0.1042148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE26 204" - } -}, -{ - "type": "node", - "id": 704342186, - "lat": 50.9997442, - "lon": -3.7707810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX36 185" - } -}, -{ - "type": "node", - "id": 704395871, - "lat": 53.8171717, - "lon": -2.4184078, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 704397936, - "lat": 51.3069429, - "lon": -0.1198275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "name": "Old Coulsdon TSO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 704587206, - "lat": 53.2699176, - "lon": -0.6689582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 704610228, - "lat": 51.3573755, - "lon": -0.4871012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT15 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 704743634, - "lat": 50.7176442, - "lon": -3.4796812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "520467022418145", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX2 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 704811796, - "lat": 52.5035460, - "lon": -0.9958530, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LE16 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 704812663, - "lat": 53.2958793, - "lon": -2.3787849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 704812687, - "lat": 53.2985634, - "lon": -2.3816867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 76", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 704824815, - "lat": 52.4320275, - "lon": -0.1304294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE26 292" - } -}, -{ - "type": "node", - "id": 704893641, - "lat": 51.1511009, - "lon": -2.7140103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "142072071274568", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "survey:date": "2020-07-18" - } -}, -{ - "type": "node", - "id": 705011827, - "lat": 52.3850208, - "lon": -2.2399996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "754701325828455", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY10 21", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 705028503, - "lat": 51.6189838, - "lon": 0.6513024, - "tags": { - "amenity": "post_box", - "name": "The Dome", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 705028674, - "lat": 50.7159459, - "lon": -1.3045479, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 21", - "ref:GB:uprn": "10015306422", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/lonsdale-avenue-po30-9an/0000PO3021" - } -}, -{ - "type": "node", - "id": 705028676, - "lat": 50.7080631, - "lon": -1.3019318, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 98D", - "ref:GB:uprn": "10015309686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/whitesmith-road-po30-1af/0000PO3098" - } -}, -{ - "type": "node", - "id": 705028683, - "lat": 50.7081141, - "lon": -1.3067763, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 6", - "ref:GB:uprn": "10015449186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/albany-po30-1ag/00000PO306" - } -}, -{ - "type": "node", - "id": 705036489, - "lat": 50.8767332, - "lon": -0.6669320, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO18 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 705040328, - "lat": 51.7049277, - "lon": 0.5404896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Mayes Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 705047126, - "lat": 51.8113961, - "lon": 0.5198650, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 705052530, - "lat": 51.8439026, - "lon": 0.5025149, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 705074665, - "lat": 52.3854625, - "lon": -1.4001411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV8 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 705079594, - "lat": 52.3823691, - "lon": -1.4007197, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 705085108, - "lat": 51.4646516, - "lon": -0.0980955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 705097905, - "lat": 51.8412811, - "lon": 0.5621078, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 705101557, - "lat": 52.3665703, - "lon": -1.4350159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "note": "As at Sunday 03.07.2022 the postbox plate says collections are made at Mo-Fr 16:00; Sa 10:00 but the sticker notice says that Sa is now 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 705118683, - "lat": 52.7505298, - "lon": -1.2531312, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 705125193, - "lat": 52.3503534, - "lon": -1.4695761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV8 186", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 705138108, - "lat": 53.3208392, - "lon": -3.8271653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 705241400, - "lat": 51.0002080, - "lon": -0.1059723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "note": "has defunct stamp machine attached to side", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 705259185, - "lat": 51.4621508, - "lon": -0.1107206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW9 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "BrixtonVillageMap" - } -}, -{ - "type": "node", - "id": 705282452, - "lat": 54.8107591, - "lon": -1.6289629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 351" - } -}, -{ - "type": "node", - "id": 705324170, - "lat": 54.8211779, - "lon": -1.6299482, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH7 41" - } -}, -{ - "type": "node", - "id": 705331299, - "lat": 52.4182515, - "lon": -1.0560673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "534290677832042", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "NN6 6HT", - "ref": "NN6 529", - "survey:date": "2021-09-03" - } -}, -{ - "type": "node", - "id": 705341072, - "lat": 52.4523148, - "lon": -1.0566060, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "LE17 6", - "ref": "LE17 221" - } -}, -{ - "type": "node", - "id": 705345718, - "lat": 54.8195671, - "lon": -1.6285052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH7 192" - } -}, -{ - "type": "node", - "id": 705356386, - "lat": 54.8154910, - "lon": -1.6225703, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH7 73" - } -}, -{ - "type": "node", - "id": 705433158, - "lat": 52.8735933, - "lon": -1.2344426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG11 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 705478893, - "lat": 51.3909162, - "lon": -0.5752584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU25 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 705479043, - "lat": 51.3795085, - "lon": -0.5691575, - "tags": { - "amenity": "post_box", - "ref": "KT16 82" - } -}, -{ - "type": "node", - "id": 705512823, - "lat": 51.0716265, - "lon": -0.9931245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU34 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 705529097, - "lat": 52.4512962, - "lon": -0.0996337, - "tags": { - "amenity": "post_box", - "ref": "PE26 134" - } -}, -{ - "type": "node", - "id": 705548770, - "lat": 53.7691948, - "lon": -1.5430642, - "tags": { - "amenity": "post_box", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS11 10" - } -}, -{ - "type": "node", - "id": 705551985, - "lat": 53.4406000, - "lon": -2.3896869, - "tags": { - "amenity": "post_box", - "fixme": "Check ref -- nodes 705551985 and 715880597 both have the same value", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "M41 597", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 705552192, - "lat": 53.4440163, - "lon": -2.3845689, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 705554412, - "lat": 52.8888868, - "lon": -1.2253189, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "Really is the village post box despite being in the front garden of a private house Not surprising the front room of this hadjacent house used to be the post office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NG11 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 705583336, - "lat": 51.2056256, - "lon": -2.9877126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 705611967, - "lat": 53.4476299, - "lon": -2.4015617, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "M41 276", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 705659156, - "lat": 52.1249311, - "lon": -2.3033370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "post_box:type": "meter", - "ref": "WR14 160", - "royal_cypher": "no", - "source": "gps;bing;survey" - } -}, -{ - "type": "node", - "id": 705786804, - "lat": 52.5816235, - "lon": -1.6424772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV9 8" - } -}, -{ - "type": "node", - "id": 705833688, - "lat": 52.3397128, - "lon": -1.5105828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "No collection plate so no ref. Only a note saying collection times are changing in Sept 2014. JF 1/10/15", - "post_box:type": "wall", - "postal_code": "CV8", - "ref": "CV8 379", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 705867092, - "lat": 50.6770156, - "lon": -1.1442968, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 18D", - "ref:GB:uprn": "10015435424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/mall-po36-0aa/0000PO3618" - } -}, -{ - "type": "node", - "id": 705926877, - "lat": 55.0002595, - "lon": -1.5657267, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 705931062, - "lat": 53.2126413, - "lon": -0.3273661, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 705931123, - "lat": 53.1858352, - "lon": -0.2981071, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 705975166, - "lat": 53.4481770, - "lon": -2.3910184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "503424244415435", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M41 83", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 705975280, - "lat": 53.4525205, - "lon": -2.3923146, - "tags": { - "amenity": "post_box", - "ref": "M41 624" - } -}, -{ - "type": "node", - "id": 705975373, - "lat": 53.4574579, - "lon": -2.3924879, - "tags": { - "amenity": "post_box", - "ref": "M41 626" - } -}, -{ - "type": "node", - "id": 706103316, - "lat": 53.1710288, - "lon": -2.8606891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 287D" - } -}, -{ - "type": "node", - "id": 706209021, - "lat": 53.4594695, - "lon": -2.2188765, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-25" - } -}, -{ - "type": "node", - "id": 706271762, - "lat": 52.4453669, - "lon": -0.0982965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE26 193" - } -}, -{ - "type": "node", - "id": 706271911, - "lat": 52.4512763, - "lon": -0.1068694, - "tags": { - "amenity": "post_box", - "ref": "PE26 185" - } -}, -{ - "type": "node", - "id": 706271950, - "lat": 52.4529010, - "lon": -0.1102887, - "tags": { - "amenity": "post_box", - "mapillary": "2952123531735324", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE26 26", - "survey:date": "2020-08-19" - } -}, -{ - "type": "node", - "id": 706271961, - "lat": 52.4487034, - "lon": -0.1044308, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE26 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 706306768, - "lat": 56.0408296, - "lon": -3.3585129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "manufacturer": "Broadwater Mouldings Limited", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:material": "plastic", - "post_box:type": "pillar", - "ref": "KY11 434", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 706475021, - "lat": 50.8264801, - "lon": 0.1560635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN26 1033", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 706494167, - "lat": 52.2082744, - "lon": 0.0556593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CB23 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 706507939, - "lat": 52.1871226, - "lon": 0.0199061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB23 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 706524690, - "lat": 52.1824819, - "lon": 0.0558734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB23 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 706541578, - "lat": 52.1802405, - "lon": 0.0943987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB3 331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 706590504, - "lat": 55.0727238, - "lon": -1.5250577, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE25 0DU", - "ref": "NE25 254" - } -}, -{ - "type": "node", - "id": 706611743, - "lat": 51.4549523, - "lon": -0.2292794, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW15 79" - } -}, -{ - "type": "node", - "id": 706684576, - "lat": 52.4731536, - "lon": -0.0787297, - "tags": { - "amenity": "post_box", - "ref": "PE26 66" - } -}, -{ - "type": "node", - "id": 706722818, - "lat": 51.6174657, - "lon": 0.6251445, - "tags": { - "amenity": "post_box", - "name": "Pevensey Gardens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SS5 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 706723790, - "lat": 55.8293574, - "lon": -3.9563859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 706723809, - "lat": 55.8293574, - "lon": -3.9567078, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 706724936, - "lat": 52.8636304, - "lon": -1.2055737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "NG11 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 706725048, - "lat": 52.8671349, - "lon": -1.2057910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG11 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 706725091, - "lat": 52.8692558, - "lon": -1.2045971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG11 114D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 706751821, - "lat": 52.8750115, - "lon": -1.2406866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "NG11 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "was:post_box:manufacturer": "T Allen & Co, London SE1" - } -}, -{ - "type": "node", - "id": 706800744, - "lat": 50.6190465, - "lon": -1.2245611, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "check_date:ref": "2016-05-09", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 222D", - "ref:GB:uprn": "10015369396", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/the-vale-po38-3es/000PO38222" - } -}, -{ - "type": "node", - "id": 706800747, - "lat": 50.6700179, - "lon": -1.4394285, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chessell-po41-0ud/000PO41105" - } -}, -{ - "type": "node", - "id": 707062893, - "lat": 51.4751801, - "lon": -0.2917159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "mapillary": "1345594335823083", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 64D", - "survey:date": "2021-02-01" - } -}, -{ - "type": "node", - "id": 707164234, - "lat": 53.5910690, - "lon": -2.4435810, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 707235755, - "lat": 51.6176683, - "lon": 0.7390949, - "tags": { - "amenity": "post_box", - "name": "Canewdon Church", - "ref": "SS4 155" - } -}, -{ - "type": "node", - "id": 707357351, - "lat": 55.8227203, - "lon": -3.9696718, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 707411942, - "lat": 53.9652019, - "lon": -1.0671692, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO31 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 707468671, - "lat": 52.2664658, - "lon": -0.9113786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 707529457, - "lat": 53.4474880, - "lon": -2.4135706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Ferry Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M44 750" - } -}, -{ - "type": "node", - "id": 707529461, - "lat": 53.4484272, - "lon": -2.4188415, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 707529462, - "lat": 53.4443460, - "lon": -2.4221219, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 707529463, - "lat": 53.4449784, - "lon": -2.4172373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M44 749", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 707558540, - "lat": 51.0138515, - "lon": -3.7931752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4456174414607966", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX36 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-16" - } -}, -{ - "type": "node", - "id": 707559759, - "lat": 51.5856433, - "lon": 0.7154613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SS4 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 707818132, - "lat": 57.4481231, - "lon": -6.5866592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV55 41", - "source": "survey" - } -}, -{ - "type": "node", - "id": 707818135, - "lat": 56.4362851, - "lon": -4.7112988, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-15", - "collection_times": "Mo-Fr 14:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK20 187", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 707984528, - "lat": 55.9344751, - "lon": -4.3193544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G62 6N", - "ref": "G62 1312D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 707984685, - "lat": 55.9376326, - "lon": -4.3286722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G62 7", - "ref": "G62 414", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 708102225, - "lat": 55.0639612, - "lon": -1.5041113, - "tags": { - "amenity": "post_box", - "postal_code": "NE25 0LJ", - "ref": "NE25 323" - } -}, -{ - "type": "node", - "id": 708242424, - "lat": 53.1896873, - "lon": -1.2923265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "149.8500977", - "post_box:type": "lamp", - "ref": "S44 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 708248865, - "lat": 53.1920157, - "lon": -1.2621552, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 708270887, - "lat": 55.9574881, - "lon": -3.1992547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "785632966890439", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 42", - "royal_cypher": "scottish_crown", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 708270888, - "lat": 55.9661313, - "lon": -3.1638552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "458461963601885", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 258", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 708270892, - "lat": 55.9562542, - "lon": -3.2021331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 17", - "royal_cypher": "scottish_crown", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 708270893, - "lat": 55.9513145, - "lon": -3.2128744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH3 204", - "royal_cypher": "scottish_crown", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 708270896, - "lat": 55.9654450, - "lon": -3.1802602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "EH6 219", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 708270898, - "lat": 55.9548491, - "lon": -3.2054689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH3 54", - "royal_cypher": "scottish_crown", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 708361328, - "lat": 53.4054835, - "lon": -2.1791701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 708604167, - "lat": 55.9457385, - "lon": -4.5495987, - "tags": { - "amenity": "post_box", - "ref": "G82 27", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708604231, - "lat": 55.9526058, - "lon": -4.5570631, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708658648, - "lat": 55.9508433, - "lon": -4.5559844, - "tags": { - "amenity": "post_box", - "fixme": "check ref (blurry photo)", - "ref": "G82 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708658718, - "lat": 55.9490859, - "lon": -4.5610938, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708716732, - "lat": 53.9716091, - "lon": -2.0451577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "ref": "BD23 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708772226, - "lat": 50.8037633, - "lon": -3.3802327, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 708821654, - "lat": 54.8781785, - "lon": -4.8117380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG8 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 708821657, - "lat": 54.8424580, - "lon": -5.1159292, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG9 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 708947149, - "lat": 54.7732473, - "lon": -2.9674630, - "tags": { - "amenity": "post_box", - "ref": "CA5 278", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708952145, - "lat": 54.7997019, - "lon": -2.9662101, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA5 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708960019, - "lat": 54.8298678, - "lon": -2.9473208, - "tags": { - "amenity": "post_box", - "ref": "CA5 408", - "source": "survey" - } -}, -{ - "type": "node", - "id": 708962304, - "lat": 51.6173937, - "lon": 0.7449351, - "tags": { - "amenity": "post_box", - "name": "Canewdon", - "post_box:type": "pillar", - "ref": "SS4 164", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 709038137, - "lat": 54.8608753, - "lon": -2.9738028, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CA5 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 709039347, - "lat": 50.9649522, - "lon": -0.0827557, - "tags": { - "amenity": "post_box", - "name": "Slugwash Lane", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 709050985, - "lat": 54.8797172, - "lon": -2.9709181, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA2 405", - "source": "survey" - } -}, -{ - "type": "node", - "id": 709051038, - "lat": 54.8829816, - "lon": -2.9647920, - "tags": { - "amenity": "post_box", - "ref": "CA2 402" - } -}, -{ - "type": "node", - "id": 709051130, - "lat": 52.9954033, - "lon": -1.1305241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG5 426", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 709102184, - "lat": 51.4300232, - "lon": -0.8799291, - "tags": { - "amenity": "post_box", - "mapillary": "1084223955727504", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG41 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-21" - } -}, -{ - "type": "node", - "id": 709103708, - "lat": 51.5375007, - "lon": -0.1851696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 709106788, - "lat": 51.5396967, - "lon": -0.1761255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW8 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 709182954, - "lat": 51.4273823, - "lon": -0.8787302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG41 35D" - } -}, -{ - "type": "node", - "id": 709213968, - "lat": 53.1677850, - "lon": -1.2434758, - "tags": { - "amenity": "post_box", - "ele": "128.4609375" - } -}, -{ - "type": "node", - "id": 709244964, - "lat": 53.1464234, - "lon": -1.2275489, - "tags": { - "amenity": "post_box", - "ele": "146.7258301" - } -}, -{ - "type": "node", - "id": 709255737, - "lat": 53.1458088, - "lon": -1.2411852, - "tags": { - "amenity": "post_box", - "ele": "154.6566162" - } -}, -{ - "type": "node", - "id": 709443022, - "lat": 54.8865527, - "lon": -2.9530494, - "tags": { - "amenity": "post_box", - "ref": "CA2 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710167403, - "lat": 51.1259340, - "lon": 1.3050749, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is inside the ticket gates and on the platform.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-12-19" - } -}, -{ - "type": "node", - "id": 710244376, - "lat": 55.9069199, - "lon": -4.1119267, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710244430, - "lat": 55.9022925, - "lon": -4.1105819, - "tags": { - "amenity": "post_box", - "ref": "G69 1231", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710288176, - "lat": 55.9452620, - "lon": -4.3108055, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G62 295D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710331108, - "lat": 55.9878694, - "lon": -4.3156933, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710346907, - "lat": 51.1127989, - "lon": -0.7694351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "GU26 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 710353241, - "lat": 56.0421512, - "lon": -4.4464346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G63 918", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710355089, - "lat": 51.1375258, - "lon": -0.7796121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "note": "There is a notice on this postbox on 10-09-2022 that the final collection will be made on Mo-Fr at 09:00 and on Sa at 07:00. But the postbox plate has not yet had the collection times updated.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU10 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey_point": "2022-09-10" - } -}, -{ - "type": "node", - "id": 710360911, - "lat": 51.1923105, - "lon": -0.8205554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 710363879, - "lat": 51.1940337, - "lon": -0.8151841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 710365858, - "lat": 51.1920387, - "lon": -0.8116216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU10 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 710371340, - "lat": 51.1187125, - "lon": -0.7778561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "wall", - "ref": "GU26 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 710475124, - "lat": 50.7841828, - "lon": -3.3259729, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX5 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 710476685, - "lat": 50.7703926, - "lon": -3.3188145, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 710539310, - "lat": 56.8120500, - "lon": -5.1211189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH33 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710639403, - "lat": 54.5380400, - "lon": -1.5205817, - "tags": { - "amenity": "post_box", - "ref": "DL1 117" - } -}, -{ - "type": "node", - "id": 710645979, - "lat": 53.7743196, - "lon": -2.5230197, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 710645985, - "lat": 53.7745815, - "lon": -2.5046188, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 710645992, - "lat": 53.7787704, - "lon": -2.4865202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 710645996, - "lat": 53.8219470, - "lon": -2.6579616, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 710645999, - "lat": 53.8037161, - "lon": -2.6837162, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 710646001, - "lat": 53.7833412, - "lon": -2.6853902, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 710646005, - "lat": 53.8535277, - "lon": -2.6901309, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 710646021, - "lat": 53.8954329, - "lon": -2.6501915, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 710648039, - "lat": 51.6712163, - "lon": -1.8168264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 710844405, - "lat": 51.0795229, - "lon": -1.1622252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO24 151" - } -}, -{ - "type": "node", - "id": 710844415, - "lat": 51.0471888, - "lon": -1.1609556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "last_checked": "2020-08-21", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 710883089, - "lat": 52.2498801, - "lon": -0.8655919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 710920563, - "lat": 55.9371307, - "lon": -3.2493909, - "tags": { - "amenity": "post_box", - "ref": "EH11 201" - } -}, -{ - "type": "node", - "id": 711006603, - "lat": 53.0374297, - "lon": -1.0903873, - "tags": { - "amenity": "post_box", - "ele": "55.881958", - "post_box:type": "pillar", - "ref": "NG14 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 711044677, - "lat": 53.2488264, - "lon": -1.3738899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "106.3507080", - "post_box:type": "wall", - "ref": "S43 277D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 711044680, - "lat": 53.2458124, - "lon": -1.3715456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "97.4586182", - "post_box:type": "lamp", - "ref": "S43 419D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 711071165, - "lat": 53.2564652, - "lon": -1.3667488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S43 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 711080695, - "lat": 51.4619963, - "lon": -0.0375622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 711080734, - "lat": 51.4660296, - "lon": -0.0353146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 711080735, - "lat": 51.4630789, - "lon": -0.0328960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 31D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 711080737, - "lat": 51.4634005, - "lon": -0.0298128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 711080738, - "lat": 51.4659844, - "lon": -0.0282459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 711080739, - "lat": 51.4680748, - "lon": -0.0294098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE4 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 711104805, - "lat": 50.7546388, - "lon": -1.5398341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 86" - } -}, -{ - "type": "node", - "id": 711617875, - "lat": 57.4239386, - "lon": -1.9149503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 711617876, - "lat": 57.4249342, - "lon": -1.9239372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 711698493, - "lat": 53.2771640, - "lon": -2.9022020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45", - "fixme": "I believe this post box is no longer here - needs an on-the-ground survey please", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH65 587" - } -}, -{ - "type": "node", - "id": 711717381, - "lat": 53.2735660, - "lon": -2.8894021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 521" - } -}, -{ - "type": "node", - "id": 711737730, - "lat": 53.2777202, - "lon": -2.8923038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 512", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 711926288, - "lat": 53.7881857, - "lon": -2.4795518, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 711926391, - "lat": 53.8158212, - "lon": -2.4744563, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 711926409, - "lat": 53.7923307, - "lon": -2.4672994, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 712602786, - "lat": 53.4481840, - "lon": -2.3790557, - "tags": { - "amenity": "post_box", - "ref": "M41 139" - } -}, -{ - "type": "node", - "id": 712713028, - "lat": 53.4571104, - "lon": -2.3787790, - "tags": { - "amenity": "post_box", - "ref": "M41 97" - } -}, -{ - "type": "node", - "id": 712713041, - "lat": 53.4589538, - "lon": -2.3736341, - "tags": { - "amenity": "post_box", - "ref": "M41 659" - } -}, -{ - "type": "node", - "id": 712713049, - "lat": 53.4608456, - "lon": -2.3807920, - "tags": { - "amenity": "post_box", - "ref": "M41 399" - } -}, -{ - "type": "node", - "id": 712713079, - "lat": 53.4521655, - "lon": -2.3697203, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 712713099, - "lat": 53.4569507, - "lon": -2.3665577, - "tags": { - "amenity": "post_box", - "ref": "M41 40" - } -}, -{ - "type": "node", - "id": 713078537, - "lat": 51.4804108, - "lon": -0.0411577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 713400108, - "lat": 54.5510234, - "lon": -1.2883920, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 713400891, - "lat": 54.5789550, - "lon": -1.2347439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "layer": "2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 713400894, - "lat": 54.5762927, - "lon": -1.2323277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS1 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 713400895, - "lat": 54.5722837, - "lon": -1.2292770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 41", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 713437103, - "lat": 51.3393759, - "lon": 0.7347607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 12:00; Su off", - "mail:franked": "yes", - "note": "Box marked as 'Parcels and Franked Mail' with a further sticker stating 'This box does not accept special deliveries'", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "ME10", - "ref": "ME10 121P", - "royal_cypher": "no", - "source": "survey;local knowledge;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 713437104, - "lat": 51.3393547, - "lon": 0.7349314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "ME10", - "ref": "ME10 81;ME10 8122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 713437105, - "lat": 51.3395710, - "lon": 0.7381749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 713504646, - "lat": 53.6942944, - "lon": -1.0583755, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 713563537, - "lat": 53.6704625, - "lon": -1.0731155, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 713563598, - "lat": 53.6813497, - "lon": -1.0649678, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 713579755, - "lat": 53.6677139, - "lon": -1.0618062, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 713884302, - "lat": 50.9167177, - "lon": -0.9033902, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 713934953, - "lat": 51.3740218, - "lon": -2.1291468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 714041396, - "lat": 51.4018617, - "lon": 0.1670684, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 500D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 714169021, - "lat": 51.4471395, - "lon": -0.8983726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG5 519D" - } -}, -{ - "type": "node", - "id": 714217789, - "lat": 50.6489343, - "lon": -1.2814787, - "tags": { - "amenity": "post_box", - "mapillary": "281835813619618", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 232", - "survey:date": "2020-09-01", - "website": "https://www.royalmail.com/services-near-you/postbox/rookley-green-po38-3la/000PO38232" - } -}, -{ - "type": "node", - "id": 714707731, - "lat": 52.6312113, - "lon": -2.0587080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 714780836, - "lat": 50.7499787, - "lon": -1.2763179, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 25D", - "ref:GB:uprn": "10015372814", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/osborne-gates-po32-6jt/0000PO3225" - } -}, -{ - "type": "node", - "id": 714780862, - "lat": 50.7205993, - "lon": -1.2705114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "name": "Mill Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PO30 94", - "ref:GB:uprn": "10015313969", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/north-fairlee-po30-2la/0000PO3094" - } -}, -{ - "type": "node", - "id": 714780885, - "lat": 50.7268583, - "lon": -1.3540917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "mapillary": "637712294715833", - "name": "Whitehouse Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-26", - "website": "https://www.royalmail.com/services-near-you/postbox/whitehouse-cross-po30-4lq/000PO30106" - } -}, -{ - "type": "node", - "id": 714780892, - "lat": 50.7455910, - "lon": -1.3332133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "mapillary": "1059873818337538", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO31 40", - "ref:GB:uprn": "10015362631", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-28", - "website": "https://www.royalmail.com/services-near-you/postbox/rew-street-po31-8aa/0000PO3140" - } -}, -{ - "type": "node", - "id": 714806320, - "lat": 50.7245072, - "lon": -1.2495318, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 107", - "ref:GB:uprn": "10015468930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lushington-hill-po33-4aa/000PO33107" - } -}, -{ - "type": "node", - "id": 714859124, - "lat": 50.7405783, - "lon": -1.2693788, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-12", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Whippingham Heights", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO32 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/whippingham-heights-po32-6fd/000PO32353" - } -}, -{ - "type": "node", - "id": 715361006, - "lat": 52.1747580, - "lon": -0.9388261, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "post_box:type": "wall", - "ref": "NN7 204", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 715361027, - "lat": 52.1769379, - "lon": -0.9404247, - "tags": { - "amenity": "post_box", - "ref": "NN7 565" - } -}, -{ - "type": "node", - "id": 715411096, - "lat": 52.9582110, - "lon": -1.3220405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DE7 1333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 715596713, - "lat": 51.6537825, - "lon": -0.4006099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD18 129D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 715666638, - "lat": 55.6799690, - "lon": -4.5160774, - "tags": { - "accuracy": "27 feet", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KA3 59", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 715865444, - "lat": 53.4446071, - "lon": -2.3639633, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 314", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 715865510, - "lat": 53.4460154, - "lon": -2.3588456, - "tags": { - "amenity": "post_box", - "ref": "M41 101" - } -}, -{ - "type": "node", - "id": 715865536, - "lat": 53.4462977, - "lon": -2.3534752, - "tags": { - "amenity": "post_box", - "ref": "M41 309" - } -}, -{ - "type": "node", - "id": 715865671, - "lat": 53.4428132, - "lon": -2.3678118, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 411" - } -}, -{ - "type": "node", - "id": 715865768, - "lat": 53.4390617, - "lon": -2.3663623, - "tags": { - "amenity": "post_box", - "ref": "M41 321" - } -}, -{ - "type": "node", - "id": 715880489, - "lat": 53.4490370, - "lon": -2.3705987, - "tags": { - "amenity": "post_box", - "ref": "M41 84" - } -}, -{ - "type": "node", - "id": 715880597, - "lat": 53.4484330, - "lon": -2.3644406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Check ref -- nodes 705551985 and 715880597 both have the same value", - "mapillary": "830347247577917", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M41 597", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 715881063, - "lat": 52.4913746, - "lon": -0.1174685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE26 188" - } -}, -{ - "type": "node", - "id": 715881164, - "lat": 52.4840282, - "lon": -0.1072662, - "tags": { - "amenity": "post_box", - "mapillary": "262960118915020", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE26 24", - "survey:date": "2020-08-20" - } -}, -{ - "type": "node", - "id": 715888012, - "lat": 53.4483422, - "lon": -2.3576105, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 99" - } -}, -{ - "type": "node", - "id": 715928175, - "lat": 55.9346896, - "lon": -3.2433995, - "tags": { - "amenity": "post_box", - "ref": "EH11 273" - } -}, -{ - "type": "node", - "id": 715928176, - "lat": 55.9322315, - "lon": -3.2308970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH11 270", - "source": "survey" - } -}, -{ - "type": "node", - "id": 715928178, - "lat": 55.9376366, - "lon": -3.2347523, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 715928179, - "lat": 55.9368948, - "lon": -3.2364574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH11 134" - } -}, -{ - "type": "node", - "id": 715928180, - "lat": 55.9362608, - "lon": -3.2412853, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH11 255" - } -}, -{ - "type": "node", - "id": 716458121, - "lat": 51.1950390, - "lon": -1.9026279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 716665789, - "lat": 55.6811476, - "lon": -4.5133599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KA3 300" - } -}, -{ - "type": "node", - "id": 716847378, - "lat": 52.9613994, - "lon": -1.3269304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 716847526, - "lat": 52.9611606, - "lon": -1.3200656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 716885837, - "lat": 52.4177242, - "lon": 0.7572010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP24 3342", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 716885850, - "lat": 52.4193596, - "lon": 0.7416888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP24 3321D", - "ref:GB:uprn": "10015359638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 716885862, - "lat": 52.4135137, - "lon": 0.7588295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "man_made": "survey_point", - "note": "Survey point engraved on back of brick pillar for post box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP24 3351D", - "ref:GB:uprn": "10015382934", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey_point": "benchmark" - } -}, -{ - "type": "node", - "id": 716955794, - "lat": 55.0835271, - "lon": -1.5216912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE25 0RW", - "ref": "NE25 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 716955982, - "lat": 55.0840353, - "lon": -1.5182163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE25 0RP", - "ref": "NE25 383" - } -}, -{ - "type": "node", - "id": 717465707, - "lat": 55.6836126, - "lon": -4.5094189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2860106540910907", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA3 38", - "survey:date": "2021-05-07" - } -}, -{ - "type": "node", - "id": 717491571, - "lat": 53.7914896, - "lon": -3.0490808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 96D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 717509692, - "lat": 51.3961360, - "lon": -0.8512910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG41 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 717521923, - "lat": 57.6421786, - "lon": -3.3001217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV30 136", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 717585310, - "lat": 53.9555599, - "lon": -1.1149855, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-06", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 717585343, - "lat": 54.3049570, - "lon": -1.0650030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "YO62 456", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 717585344, - "lat": 54.2711733, - "lon": -1.0645971, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO62 483", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 717676808, - "lat": 55.0944919, - "lon": -2.9685070, - "tags": { - "amenity": "post_box", - "name": "Hollows", - "ref": "DG14 65", - "source": "survey" - } -}, -{ - "type": "node", - "id": 717750784, - "lat": 52.9064497, - "lon": 0.4982723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 314" - } -}, -{ - "type": "node", - "id": 717762596, - "lat": 53.4597489, - "lon": -2.3588414, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 630", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 717893316, - "lat": 55.9520922, - "lon": -3.2063003, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-31", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH2 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 717893374, - "lat": 55.9575589, - "lon": -3.1888557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "post_box:type": "pillar", - "ref": "EH1 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "NLS_OS_Edinburgh_map_1940;Bing;survey" - } -}, -{ - "type": "node", - "id": 717893376, - "lat": 55.9548055, - "lon": -3.1983916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:20; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH2 13", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 717893377, - "lat": 55.9574529, - "lon": -3.1709195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1083141442552364", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH7 91", - "royal_cypher": "scottish_crown", - "survey:date": "2022-06-02" - } -}, -{ - "type": "node", - "id": 717927372, - "lat": 52.9090619, - "lon": 0.4877004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE31 93" - } -}, -{ - "type": "node", - "id": 718025829, - "lat": 53.4600503, - "lon": -2.3539667, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "M41 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 718026039, - "lat": 53.4599478, - "lon": -2.3457400, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 726", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 718597694, - "lat": 53.4548627, - "lon": -2.3598450, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 575", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 718623026, - "lat": 53.4550240, - "lon": -2.3454454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "M41 598", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 718623048, - "lat": 53.4578758, - "lon": -2.3555603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 718623059, - "lat": 53.4571899, - "lon": -2.3494102, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 576", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 718623063, - "lat": 53.4620766, - "lon": -2.3526435, - "tags": { - "amenity": "post_box", - "ref": "M41 735" - } -}, -{ - "type": "node", - "id": 718623078, - "lat": 53.4601850, - "lon": -2.3632943, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 39" - } -}, -{ - "type": "node", - "id": 718623081, - "lat": 53.4521694, - "lon": -2.3553403, - "tags": { - "amenity": "post_box", - "ref": "M41 347" - } -}, -{ - "type": "node", - "id": 718803731, - "lat": 51.4891881, - "lon": -2.5113202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS16 626D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 718982567, - "lat": 55.5458782, - "lon": -2.0150411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "383269066835949", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE71 34", - "survey:date": "2021-10-17" - } -}, -{ - "type": "node", - "id": 718983093, - "lat": 55.5600286, - "lon": -2.2571981, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 719096203, - "lat": 51.9076551, - "lon": 0.0298477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG11 17" - } -}, -{ - "type": "node", - "id": 719162508, - "lat": 52.9312525, - "lon": 0.4853742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 719333164, - "lat": 53.4486245, - "lon": -2.3453515, - "tags": { - "amenity": "post_box", - "ref": "M41 98" - } -}, -{ - "type": "node", - "id": 719475642, - "lat": 50.8065766, - "lon": -3.4547080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "direction": "ENE", - "name": "Ellerhayes | Silverton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EX5 4PU", - "ref": "EX5 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 719700762, - "lat": 55.9371035, - "lon": -3.2439605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1675038319543610", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH11 217", - "survey:date": "2022-06-02" - } -}, -{ - "type": "node", - "id": 719867373, - "lat": 52.3772001, - "lon": -1.7439487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1048D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 719867378, - "lat": 52.3701835, - "lon": -1.7456321, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "B93 961D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 719867385, - "lat": 52.3733888, - "lon": -1.7539521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "B93 224;B93 2240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 719892119, - "lat": 57.6499935, - "lon": -3.3065764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV30 8D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 720048920, - "lat": 51.5653922, - "lon": -1.7849328, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SN1 373", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 720075865, - "lat": 53.4528172, - "lon": -2.3343502, - "tags": { - "amenity": "post_box", - "note": "not in use 3/5/2010", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 720079727, - "lat": 51.5280670, - "lon": -0.1329289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "indoor_pillar", - "ref": "NW1 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 9" - } -}, -{ - "type": "node", - "id": 720560868, - "lat": 50.9820229, - "lon": -1.4631153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 11:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SO52 678" - } -}, -{ - "type": "node", - "id": 720620778, - "lat": 54.3548042, - "lon": -3.4107236, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-26", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "postal_code": "CA18", - "ref": "CA18 111", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 720769207, - "lat": 50.9830647, - "lon": -3.7260381, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 721032351, - "lat": 52.8774797, - "lon": 0.8425301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR22 2203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 721032438, - "lat": 52.8956173, - "lon": 0.8756009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR22 2204", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 721057810, - "lat": 52.8354407, - "lon": 0.8392339, - "tags": { - "amenity": "post_box", - "ref": "NR21 2168" - } -}, -{ - "type": "node", - "id": 721171803, - "lat": 55.8289233, - "lon": -4.0905293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "G71 302", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 721482954, - "lat": 55.1500498, - "lon": -3.0082198, - "tags": { - "amenity": "post_box", - "name": "Eskdaill Street", - "ref": "DG13 103" - } -}, -{ - "type": "node", - "id": 721485188, - "lat": 51.5162198, - "lon": -2.4163362, - "tags": { - "amenity": "post_box", - "ref": "BS37 206" - } -}, -{ - "type": "node", - "id": 721508740, - "lat": 55.0858158, - "lon": -1.4824810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NE26 4HT", - "ref": "NE26 619" - } -}, -{ - "type": "node", - "id": 721508996, - "lat": 55.0872818, - "lon": -1.4861015, - "tags": { - "amenity": "post_box", - "postal_code": "NE26 4AW", - "ref": "NE26 249" - } -}, -{ - "type": "node", - "id": 721555158, - "lat": 51.5651180, - "lon": -0.2882850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 721597565, - "lat": 51.0870873, - "lon": -2.1084511, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 721597739, - "lat": 51.0864876, - "lon": -2.0681728, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 721611530, - "lat": 53.4500290, - "lon": -2.3537356, - "tags": { - "amenity": "post_box", - "ref": "M41 702" - } -}, -{ - "type": "node", - "id": 721611535, - "lat": 53.4467391, - "lon": -2.3421492, - "tags": { - "amenity": "post_box", - "ref": "M41 96" - } -}, -{ - "type": "node", - "id": 721611540, - "lat": 53.4522811, - "lon": -2.3404228, - "tags": { - "amenity": "post_box", - "ref": "M41 618" - } -}, -{ - "type": "node", - "id": 721614379, - "lat": 51.9769721, - "lon": -3.0863195, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP7 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 721638980, - "lat": 55.9593827, - "lon": -3.1562296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 452" - } -}, -{ - "type": "node", - "id": 721638981, - "lat": 55.9628667, - "lon": -3.1597943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1521400585393944", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 422", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 722393503, - "lat": 50.6925858, - "lon": -3.4818152, - "tags": { - "amenity": "post_box", - "check_date": "2023-09-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Newport Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX2 556D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 722811028, - "lat": 51.5003769, - "lon": -2.5446877, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 722868034, - "lat": 51.3587855, - "lon": -2.3488123, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 722946508, - "lat": 51.8234121, - "lon": 0.0581377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Benningfield Road", - "post_box:type": "pillar", - "ref": "SG12 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 722950959, - "lat": 51.5119635, - "lon": -2.5412274, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BS34 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 722950977, - "lat": 51.5085564, - "lon": -2.5469979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BS34 31" - } -}, -{ - "type": "node", - "id": 723031089, - "lat": 51.8482691, - "lon": 0.0704644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG10 82", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 723031354, - "lat": 51.8437984, - "lon": 0.0654263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "lamp", - "ref": "SG10 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 723053892, - "lat": 51.5414048, - "lon": -0.1736100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 723056317, - "lat": 51.5389950, - "lon": -0.1739101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 16D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 723130294, - "lat": 51.4584524, - "lon": -0.9713773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 724003423, - "lat": 52.9159523, - "lon": -1.4753340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 724019340, - "lat": 52.3984863, - "lon": -2.2753414, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724131604, - "lat": 52.3902734, - "lon": -2.2402271, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724164297, - "lat": 52.3918534, - "lon": -2.2354490, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724651427, - "lat": 52.6909186, - "lon": -1.8390625, - "tags": { - "amenity": "post_box", - "postal_code": "WS13", - "ref": "WS13 79", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724671717, - "lat": 55.9120249, - "lon": -3.3157279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "opening_hours": "Mo-Fr 13:00-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH14 609", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 724680423, - "lat": 53.2115509, - "lon": -1.4263977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "96.0167236", - "post_box:type": "lamp", - "ref": "S42 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 724680428, - "lat": 53.2171089, - "lon": -1.4283381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ele": "95.7763672", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S40 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 724686901, - "lat": 52.6889694, - "lon": -1.8274664, - "tags": { - "amenity": "post_box", - "postal_code": "WS13", - "ref": "WS13 18", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724686920, - "lat": 52.6906945, - "lon": -1.8348719, - "tags": { - "amenity": "post_box", - "postal_code": "WS13", - "ref": "WS13 74", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724686944, - "lat": 52.6929380, - "lon": -1.8307573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 724730590, - "lat": 53.1800465, - "lon": -1.3966584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "105", - "post_box:type": "lamp", - "ref": "S42 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 724744540, - "lat": 51.0580451, - "lon": -0.9232599, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 725115075, - "lat": 52.6710236, - "lon": -1.8331971, - "tags": { - "amenity": "post_box", - "ref": "WS14 40" - } -}, -{ - "type": "node", - "id": 725166854, - "lat": 53.6879936, - "lon": -0.4439592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "wall", - "ref": "DN18 124", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 725221138, - "lat": 53.8280164, - "lon": -2.5756610, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 725221140, - "lat": 53.8282443, - "lon": -2.5603617, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 725221147, - "lat": 53.8128493, - "lon": -2.5335557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 725221149, - "lat": 53.7968119, - "lon": -2.5015033, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 725224203, - "lat": 52.8202809, - "lon": 0.8421527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:10; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 725224325, - "lat": 52.8073212, - "lon": 0.8699637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "NR21 2127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 725252547, - "lat": 52.7788907, - "lon": 0.9084565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 11:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR20 2054", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 725256310, - "lat": 53.7919157, - "lon": -2.4098715, - "tags": { - "amenity": "post_box", - "ref": "BB6 84" - } -}, -{ - "type": "node", - "id": 725299954, - "lat": 53.9216697, - "lon": -1.8034033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 832" - } -}, -{ - "type": "node", - "id": 725436617, - "lat": 52.9968967, - "lon": -1.3942774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 725458903, - "lat": 52.6795673, - "lon": 0.9316698, - "tags": { - "amenity": "post_box", - "ref": "NR19 1947" - } -}, -{ - "type": "node", - "id": 725459103, - "lat": 52.6987784, - "lon": 0.9017814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 725488190, - "lat": 54.0101977, - "lon": -1.5448507, - "tags": { - "amenity": "post_box", - "name": "Knox Avenue" - } -}, -{ - "type": "node", - "id": 725560486, - "lat": 53.2682439, - "lon": -2.8912995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH65 610" - } -}, -{ - "type": "node", - "id": 725633532, - "lat": 51.5995954, - "lon": 0.0339045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG8 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 726069543, - "lat": 56.3776647, - "lon": -2.9256240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Engineering Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 98D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 726173589, - "lat": 51.6263411, - "lon": 0.8155467, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 726173630, - "lat": 51.6253874, - "lon": 0.8194291, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 726338498, - "lat": 52.9606785, - "lon": -1.1874994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "ele": "29.926514", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 341", - "ref:GB:uprn": "10015322312", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 726478969, - "lat": 52.6706942, - "lon": -1.8212767, - "tags": { - "amenity": "post_box", - "postal_code": "WS14", - "ref": "WS14 55", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 726632945, - "lat": 52.6209299, - "lon": 0.8447420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 726745132, - "lat": 52.4784410, - "lon": 0.8214217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP24 3310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 726745302, - "lat": 52.4808681, - "lon": 0.8359345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2023-08-31", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP24 3231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 726745436, - "lat": 52.5540480, - "lon": 0.8118830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:05", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP25 3314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 726745476, - "lat": 52.5475987, - "lon": 0.8195927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:10", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP25 3385", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 726818515, - "lat": 50.6652271, - "lon": -1.2076427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 88", - "ref:GB:uprn": "10015390368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/newchurch-po36-0lt/0000PO3688" - } -}, -{ - "type": "node", - "id": 726850589, - "lat": 52.9603923, - "lon": -1.3055394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1317", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "gps" - } -}, -{ - "type": "node", - "id": 726899847, - "lat": 51.0826360, - "lon": -4.0618087, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX31 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 726929777, - "lat": 50.2219164, - "lon": -5.3854388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR27 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 727161493, - "lat": 52.4774259, - "lon": 0.7959389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP24 3394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727279993, - "lat": 51.7637681, - "lon": 0.7371028, - "tags": { - "amenity": "post_box", - "name": "Beckingham Street" - } -}, -{ - "type": "node", - "id": 727284685, - "lat": 52.0563030, - "lon": -2.6981940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "fixme": "Can't work out which box this is. Need to go and visit again", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "flickr" - } -}, -{ - "type": "node", - "id": 727304465, - "lat": 51.7110221, - "lon": 0.6235609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Conduit Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 727338422, - "lat": 51.5965924, - "lon": 0.6077506, - "tags": { - "amenity": "post_box", - "name": "Deepdene Avenue" - } -}, -{ - "type": "node", - "id": 727345998, - "lat": 53.2630480, - "lon": -2.8792650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH65 459" - } -}, -{ - "type": "node", - "id": 727348510, - "lat": 55.9591595, - "lon": -3.2128882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "ref": "EH4 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 727355472, - "lat": 50.2650942, - "lon": -5.0608087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 727367592, - "lat": 52.4151237, - "lon": 0.7640552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP24 3245", - "ref:GB:uprn": "10015290508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727380173, - "lat": 51.5552979, - "lon": -0.0897267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 48" - } -}, -{ - "type": "node", - "id": 727381953, - "lat": 52.9582193, - "lon": -1.3004055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727429539, - "lat": 52.9539172, - "lon": -1.1534932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG1 61", - "ref:GB:uprn": "10015399078", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 727434622, - "lat": 53.2673449, - "lon": -2.8859683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH65 519" - } -}, -{ - "type": "node", - "id": 727448887, - "lat": 51.5865713, - "lon": -0.3615439, - "tags": { - "amenity": "post_box", - "name": "North Harrow PO" - } -}, -{ - "type": "node", - "id": 727517223, - "lat": 52.9667258, - "lon": -1.3226112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE7 1338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 727540948, - "lat": 51.3599837, - "lon": -2.4812084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 727578666, - "lat": 52.4758802, - "lon": -1.7929250, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B26", - "ref": "B26 863", - "royal_cypher": "GVIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 727596797, - "lat": 52.4467174, - "lon": 0.7548061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP24 3205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727614417, - "lat": 51.3437144, - "lon": -2.4851873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 727624730, - "lat": 54.3012865, - "lon": -2.5118151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA10 76", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 727624741, - "lat": 54.2887573, - "lon": -2.5733916, - "tags": { - "amenity": "post_box", - "ref": "LA6 143" - } -}, -{ - "type": "node", - "id": 727630962, - "lat": 52.4238001, - "lon": 0.7798577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP24 3323", - "ref:GB:uprn": "10015280869", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727656058, - "lat": 52.4322785, - "lon": 0.9182374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727656105, - "lat": 52.4407666, - "lon": 0.9373204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "NR16 1647", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727698254, - "lat": 51.5290044, - "lon": -1.1314405, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 727700611, - "lat": 51.5254712, - "lon": -1.1320877, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 727728648, - "lat": 52.9633751, - "lon": -1.8530711, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 727780518, - "lat": 51.7452043, - "lon": -0.1649999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "post_box:type": "wall", - "ref": "AL9 175", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 727781147, - "lat": 51.3647719, - "lon": -0.1979392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 727782770, - "lat": 51.5359623, - "lon": 0.7409636, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 727782773, - "lat": 51.5294916, - "lon": 0.7526010, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 727795480, - "lat": 51.5529768, - "lon": 0.8037487, - "tags": { - "amenity": "post_box", - "ref": "SS3 179" - } -}, -{ - "type": "node", - "id": 727802706, - "lat": 51.5566057, - "lon": 0.7550291, - "tags": { - "amenity": "post_box", - "ref": "SS3 221" - } -}, -{ - "type": "node", - "id": 727931169, - "lat": 55.8726367, - "lon": -3.1009668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH19 264" - } -}, -{ - "type": "node", - "id": 727959108, - "lat": 53.2536817, - "lon": -1.3931324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "129.9028320", - "post_box:type": "lamp", - "ref": "S43 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 727960536, - "lat": 52.9893469, - "lon": -1.1849382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ele": "52.517334", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 104", - "ref:GB:uprn": "10015282130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 727978217, - "lat": 55.9548915, - "lon": -3.1712938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH8 266", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 727978220, - "lat": 55.9371335, - "lon": -3.1787701, - "tags": { - "amenity": "post_box", - "check_date": "2024-08-03", - "check_date:collection_times": "2024-08-03", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "ref": "EH9 159", - "royal_cypher": "scottish_crown", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 727993107, - "lat": 53.2337464, - "lon": -1.3874416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ele": "133", - "post_box:type": "pillar", - "ref": "S44 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 728006354, - "lat": 53.2507522, - "lon": -1.4327576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "93.1328125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 728024862, - "lat": 53.2587526, - "lon": -1.4124358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "66.6966553", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 728329751, - "lat": 52.2544039, - "lon": -0.9355752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 396" - } -}, -{ - "type": "node", - "id": 728365329, - "lat": 52.2508794, - "lon": -0.9434406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 223" - } -}, -{ - "type": "node", - "id": 728558052, - "lat": 53.1996643, - "lon": -2.8716989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 127D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 728737617, - "lat": 51.3550742, - "lon": -2.3632405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 728845620, - "lat": 50.8513031, - "lon": -0.8478287, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PO18 71", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 728855561, - "lat": 50.3773651, - "lon": -4.1433801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL4 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 728860338, - "lat": 51.2692642, - "lon": -2.9193192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS26 227", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 728860339, - "lat": 51.0153035, - "lon": -2.6374260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA22 251" - } -}, -{ - "type": "node", - "id": 728860340, - "lat": 51.1319869, - "lon": -1.9034637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SP3 347" - } -}, -{ - "type": "node", - "id": 728904070, - "lat": 57.4821894, - "lon": -4.1856936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 356", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 728904072, - "lat": 57.4821973, - "lon": -4.1856600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "description": "This postbox is for pre-paid parcels bought online, barcode returns and business franked mail", - "mail:meter": "yes", - "mail:parcels": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IV2 355P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 728925378, - "lat": 55.0792687, - "lon": -1.4729276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-12-11", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE26 4BZ", - "ref": "NE26 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 728925478, - "lat": 55.0824144, - "lon": -1.4740154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE26 4DR", - "ref": "NE26 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 728925583, - "lat": 55.0752763, - "lon": -1.4700802, - "tags": { - "amenity": "post_box", - "postal_code": "NE26 4BJ", - "ref": "NE26 335" - } -}, -{ - "type": "node", - "id": 728947006, - "lat": 55.9691721, - "lon": -3.1592392, - "tags": { - "amenity": "post_box", - "ref": "EH6 72" - } -}, -{ - "type": "node", - "id": 729126776, - "lat": 55.9526228, - "lon": -3.2184244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH4 23", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 729126778, - "lat": 55.9630520, - "lon": -3.1962925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 360", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 729445272, - "lat": 50.6342548, - "lon": -1.2383170, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 237", - "ref:GB:uprn": "10015369249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/sandford-po38-3es/000PO38237" - } -}, -{ - "type": "node", - "id": 729651951, - "lat": 51.5447070, - "lon": -0.1449260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 60D" - } -}, -{ - "type": "node", - "id": 729672009, - "lat": 50.6364071, - "lon": -3.5042541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 729691497, - "lat": 51.5460170, - "lon": 0.7257460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 729709573, - "lat": 53.8287793, - "lon": -2.6062602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 729748363, - "lat": 53.8365847, - "lon": -2.4793685, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 729753136, - "lat": 51.9314573, - "lon": -1.7236967, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL54 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 729753439, - "lat": 51.9292410, - "lon": -1.7240052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 729776521, - "lat": 51.4132512, - "lon": -0.3948403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 241D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 729780476, - "lat": 53.2608907, - "lon": -2.8823366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 730067280, - "lat": 51.5018093, - "lon": -0.1690945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW7 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 730127791, - "lat": 51.5066595, - "lon": -0.2040353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 730702251, - "lat": 50.7277410, - "lon": -1.8288844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH5 23", - "ref:GB:uprn": "10015426216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 730702254, - "lat": 50.7244110, - "lon": -1.8233571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 217", - "ref:GB:uprn": "10015399823", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 730776944, - "lat": 51.5086624, - "lon": -0.1950187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "W8 45" - } -}, -{ - "type": "node", - "id": 730776988, - "lat": 51.5080377, - "lon": -0.1950965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W8 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 730800347, - "lat": 50.4640522, - "lon": -3.7001077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ9 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 730813732, - "lat": 50.4811337, - "lon": -3.6843867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 25D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 730815883, - "lat": 50.4842747, - "lon": -3.6848401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TQ9 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 730816517, - "lat": 50.4841833, - "lon": -3.6898885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 730918537, - "lat": 53.8662856, - "lon": -2.5794110, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 731035478, - "lat": 50.7315611, - "lon": -3.3757537, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 731088362, - "lat": 51.5125034, - "lon": -0.2032060, - "tags": { - "amenity": "post_box", - "ref": "W11 19" - } -}, -{ - "type": "node", - "id": 731114420, - "lat": 53.2535311, - "lon": -2.8680528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 21D" - } -}, -{ - "type": "node", - "id": 731908513, - "lat": 52.4396990, - "lon": -1.8751332, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B13", - "ref": "B13 254", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 731941172, - "lat": 51.2247429, - "lon": 0.6469432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 203" - } -}, -{ - "type": "node", - "id": 731946167, - "lat": 54.0386029, - "lon": -0.2402883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO15 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 731947878, - "lat": 51.2141262, - "lon": 0.6928515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 139" - } -}, -{ - "type": "node", - "id": 731952090, - "lat": 51.2280328, - "lon": 0.6981209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 195" - } -}, -{ - "type": "node", - "id": 732019054, - "lat": 51.8058315, - "lon": 0.6386176, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Witham Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM8 174D;CM8 1174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 732033440, - "lat": 51.2285494, - "lon": 0.7913787, - "tags": { - "amenity": "post_box", - "ref": "TN27 206" - } -}, -{ - "type": "node", - "id": 732061285, - "lat": 51.7771867, - "lon": 0.6603287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM8 165", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 732080955, - "lat": 51.5868983, - "lon": -1.8208289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 400" - } -}, -{ - "type": "node", - "id": 732095528, - "lat": 51.7328647, - "lon": 0.6182892, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 732132620, - "lat": 57.1419287, - "lon": -6.0723422, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV49 102", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 732205965, - "lat": 53.7137040, - "lon": -2.0574537, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 732290980, - "lat": 53.3939036, - "lon": -2.9100674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L15 399", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 732342392, - "lat": 52.2372666, - "lon": -0.8939400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN1 851", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 732711458, - "lat": 53.7141330, - "lon": -2.0974177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OL14 153D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 732711693, - "lat": 53.7140237, - "lon": -2.0964415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 732888487, - "lat": 50.5187868, - "lon": -3.6352318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 732898281, - "lat": 50.5194042, - "lon": -3.6291184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 732903655, - "lat": 55.9405116, - "lon": -3.2947547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "EH12 592", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 732903661, - "lat": 55.9399996, - "lon": -3.2911100, - "tags": { - "amenity": "post_box", - "ref": "EH12 623" - } -}, -{ - "type": "node", - "id": 732928219, - "lat": 50.5013000, - "lon": -3.6283310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 732988225, - "lat": 51.5023963, - "lon": -2.5237387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS16 1086", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 732988230, - "lat": 51.5044997, - "lon": -2.5381148, - "tags": { - "amenity": "post_box", - "ref": "BS16 76" - } -}, -{ - "type": "node", - "id": 733200948, - "lat": 53.4544511, - "lon": -2.3253983, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M32 465" - } -}, -{ - "type": "node", - "id": 733201021, - "lat": 53.4557441, - "lon": -2.3327954, - "tags": { - "amenity": "post_box", - "ref": "M32 617" - } -}, -{ - "type": "node", - "id": 733769042, - "lat": 52.4334730, - "lon": -1.8873936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B14", - "ref": "B14 578D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 733812224, - "lat": 50.2840772, - "lon": -3.7766020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "TQ7 222;TQ7 322", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 733961223, - "lat": 53.8013706, - "lon": -2.3138427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB12 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 733961227, - "lat": 53.8014669, - "lon": -2.3187232, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB12 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 733964299, - "lat": 50.9258710, - "lon": 0.1654822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN8 531", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 733964957, - "lat": 50.9233818, - "lon": 0.1604983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 523" - } -}, -{ - "type": "node", - "id": 734003806, - "lat": 51.4807871, - "lon": -2.5286687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BS16 1007", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 734010987, - "lat": 51.8975973, - "lon": -2.0874306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 734460050, - "lat": 51.6445388, - "lon": 0.5501834, - "tags": { - "amenity": "post_box", - "name": "Hoe Lane" - } -}, -{ - "type": "node", - "id": 734546844, - "lat": 51.7877113, - "lon": 0.4943398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 734564508, - "lat": 51.7880818, - "lon": 0.4778342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Church HIll", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 734662545, - "lat": 51.7480963, - "lon": 0.4447978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 455D" - } -}, -{ - "type": "node", - "id": 734760849, - "lat": 51.6504423, - "lon": 0.5186145, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 734792405, - "lat": 55.7652698, - "lon": -4.4949324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "155.8582764", - "mapillary": "873611408125938", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-07-29" - } -}, -{ - "type": "node", - "id": 734794324, - "lat": 52.2472400, - "lon": -0.9332660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 297", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 734870952, - "lat": 51.5454872, - "lon": -0.1846397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW6 19" - } -}, -{ - "type": "node", - "id": 734882742, - "lat": 50.6938307, - "lon": -1.2952737, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "This postbox is in the wall and is a bit hard to spot - it is by the plate for house number 36.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 4", - "ref:GB:uprn": "10015403005", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/st-johns-road-po30-1ae/00000PO304" - } -}, -{ - "type": "node", - "id": 734962591, - "lat": 52.9559516, - "lon": -1.2069265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG8 327", - "ref:GB:uprn": "10015428146", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 734963049, - "lat": 53.8039119, - "lon": -3.0448075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 64D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 734988554, - "lat": 54.0718742, - "lon": -2.2807515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD24 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 734990219, - "lat": 52.2376345, - "lon": -0.9398045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 202", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 735005137, - "lat": 51.5104886, - "lon": -0.2098346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 735005152, - "lat": 51.5085479, - "lon": -0.2079407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "W11 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 735005160, - "lat": 51.5111466, - "lon": -0.2081277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "W11 30" - } -}, -{ - "type": "node", - "id": 735005169, - "lat": 51.5109140, - "lon": -0.2051466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 735153681, - "lat": 54.0702220, - "lon": -2.2753983, - "tags": { - "amenity": "post_box", - "fixme": "check ref number", - "ref": "BD24 155" - } -}, -{ - "type": "node", - "id": 735174716, - "lat": 54.7257821, - "lon": -1.7492700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL15 102", - "source": "survey" - } -}, -{ - "type": "node", - "id": 735225531, - "lat": 54.7625343, - "lon": -1.7166419, - "tags": { - "amenity": "post_box", - "ref": "DH7 85" - } -}, -{ - "type": "node", - "id": 735289445, - "lat": 50.8655464, - "lon": -3.6673917, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 735352344, - "lat": 50.8749051, - "lon": -3.6985496, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX17 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 735361366, - "lat": 52.9681383, - "lon": -1.2988474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE7 1321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 735488145, - "lat": 50.8625921, - "lon": -3.5898441, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 735755948, - "lat": 54.0653914, - "lon": -2.2735121, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD24 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 735757523, - "lat": 50.8876744, - "lon": -3.8745050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 735865137, - "lat": 51.5519893, - "lon": 0.8192170, - "tags": { - "amenity": "post_box", - "ref": "SS3 93" - } -}, -{ - "type": "node", - "id": 735877443, - "lat": 50.8477515, - "lon": -0.7824608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 735888348, - "lat": 51.5535237, - "lon": 0.7972014, - "tags": { - "amenity": "post_box", - "ref": "SS3 505" - } -}, -{ - "type": "node", - "id": 735892196, - "lat": 51.5633855, - "lon": 0.7856738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 25", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 735925819, - "lat": 51.2010746, - "lon": -1.4759640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 735925930, - "lat": 51.2035797, - "lon": -1.4771478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP10 144" - } -}, -{ - "type": "node", - "id": 735926034, - "lat": 51.2051399, - "lon": -1.4722821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 735926142, - "lat": 51.2030344, - "lon": -1.4700317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 735926704, - "lat": 52.9836551, - "lon": -1.2844964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "NG16 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 735957438, - "lat": 51.2309916, - "lon": -1.4785528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP11 27" - } -}, -{ - "type": "node", - "id": 735957488, - "lat": 51.2235846, - "lon": -1.4906533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP10 44" - } -}, -{ - "type": "node", - "id": 735968683, - "lat": 51.1935704, - "lon": -1.5073999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP11 138" - } -}, -{ - "type": "node", - "id": 735970960, - "lat": 53.3944979, - "lon": -2.8761084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L25 936" - } -}, -{ - "type": "node", - "id": 735970961, - "lat": 53.3833006, - "lon": -2.8776169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1069933533545329", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L25 911", - "survey:date": "2021-09-25" - } -}, -{ - "type": "node", - "id": 735970962, - "lat": 53.3962410, - "lon": -2.8658741, - "tags": { - "amenity": "post_box", - "ref": "L25 900" - } -}, -{ - "type": "node", - "id": 736013800, - "lat": 50.6276469, - "lon": -1.1792276, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-11-21", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PO37 6601;PO37 6602", - "ref:GB:uprn": "10015319619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/steephill-road-po38-3es/00PO376601" - } -}, -{ - "type": "node", - "id": 736120745, - "lat": 52.4040154, - "lon": -1.5495334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "CV5 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 736138703, - "lat": 53.2491150, - "lon": -1.6175623, - "tags": { - "amenity": "post_box", - "ele": "127.7399902", - "post_box:type": "wall", - "ref": "DE45 1264" - } -}, -{ - "type": "node", - "id": 736205340, - "lat": 50.6810592, - "lon": -1.5419896, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO39 18", - "ref:GB:uprn": "10015287259", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/madeira-road-po39-0aa/0000PO3918" - } -}, -{ - "type": "node", - "id": 736205343, - "lat": 50.6803681, - "lon": -1.5403167, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO39 104", - "ref:GB:uprn": "10015369482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/totland-bay-post-office-po39-0aa/000PO39104" - } -}, -{ - "type": "node", - "id": 736208187, - "lat": 50.7187235, - "lon": -1.3696149, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/porchfield-village-po30-4lq/0000PO3073" - } -}, -{ - "type": "node", - "id": 736265698, - "lat": 54.9483071, - "lon": -1.9935417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE44 170" - } -}, -{ - "type": "node", - "id": 736470134, - "lat": 54.7408083, - "lon": -1.8034984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "ele": "301.74", - "mapillary": "1063954451671451", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DL13 98", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 736507242, - "lat": 53.0955556, - "lon": -1.4349251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "86.8841553", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 400" - } -}, -{ - "type": "node", - "id": 736516576, - "lat": 53.0969826, - "lon": -1.4284878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "79.4340820", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 373" - } -}, -{ - "type": "node", - "id": 736541753, - "lat": 53.0945460, - "lon": -1.3851889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 458" - } -}, -{ - "type": "node", - "id": 736596840, - "lat": 51.4790385, - "lon": -2.5838966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 291", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 736606194, - "lat": 51.4698598, - "lon": -2.5950749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS6 1242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 736625819, - "lat": 51.8814561, - "lon": -1.0122374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-10" - } -}, -{ - "type": "node", - "id": 736632247, - "lat": 50.6866877, - "lon": -1.5338374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO39 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/colwell-common-po39-0aa/0000PO3942" - } -}, -{ - "type": "node", - "id": 736632251, - "lat": 50.6912752, - "lon": -1.5257484, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 48", - "ref:GB:uprn": "10015269990", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/heathfield-po39-0aa/0000PO4048" - } -}, -{ - "type": "node", - "id": 736718781, - "lat": 53.3583709, - "lon": -2.8608545, - "tags": { - "amenity": "post_box", - "ref": "L25 690" - } -}, -{ - "type": "node", - "id": 736723646, - "lat": 53.3653048, - "lon": -2.8470035, - "tags": { - "amenity": "post_box", - "ref": "L25 945" - } -}, -{ - "type": "node", - "id": 736734061, - "lat": 53.3615147, - "lon": -2.8669591, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 736748678, - "lat": 53.3599333, - "lon": -2.8560372, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "L25 264" - } -}, -{ - "type": "node", - "id": 736751569, - "lat": 51.5538988, - "lon": 0.6731835, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS0 264", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 736757893, - "lat": 53.3711239, - "lon": -2.8633543, - "tags": { - "amenity": "post_box", - "ref": "L25 441" - } -}, -{ - "type": "node", - "id": 736758278, - "lat": 51.5598712, - "lon": 0.6433264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "ref:signed": "no", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 736760625, - "lat": 52.9702727, - "lon": -1.2973850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DE7 1304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 736760680, - "lat": 52.9819522, - "lon": -1.3056792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE7 1302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 736760704, - "lat": 52.9790466, - "lon": -1.3059995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE7 1329D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 736768953, - "lat": 51.6082702, - "lon": 0.5610684, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 736819683, - "lat": 51.6082902, - "lon": 0.5391816, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 736822412, - "lat": 51.6054019, - "lon": 0.5952363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 736830957, - "lat": 51.6102757, - "lon": 0.5761424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 736861708, - "lat": 51.2096469, - "lon": -1.4634698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 145", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 736916924, - "lat": 51.5747897, - "lon": 0.7168726, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 736925040, - "lat": 53.4500725, - "lon": -2.3320816, - "tags": { - "amenity": "post_box", - "ref": "M41 313" - } -}, -{ - "type": "node", - "id": 736925063, - "lat": 53.4462464, - "lon": -2.3331506, - "tags": { - "amenity": "post_box", - "ref": "M41 100" - } -}, -{ - "type": "node", - "id": 736950164, - "lat": 52.9717240, - "lon": -1.2382118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 10:30", - "post_box:type": "lamp", - "ref": "NG8 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 736967971, - "lat": 55.9309517, - "lon": -3.2196437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "486802137165546", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 207", - "source": "Bing;survey", - "survey:date": "2024-07-02" - } -}, -{ - "type": "node", - "id": 736967972, - "lat": 55.9310408, - "lon": -3.2256759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "114601040695750", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 122", - "survey:date": "2020-04-05" - } -}, -{ - "type": "node", - "id": 736967973, - "lat": 55.9312311, - "lon": -3.2137918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "ref": "EH10 218", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 736967974, - "lat": 55.9349753, - "lon": -3.2314298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1875996392564624", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 113", - "survey:date": "2020-02-16" - } -}, -{ - "type": "node", - "id": 736967975, - "lat": 55.9300103, - "lon": -3.2135260, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH10 144D", - "royal_cypher": "scottish_crown", - "source": "survey;NLS_OS_Edinburgh_map_1940s" - } -}, -{ - "type": "node", - "id": 736969405, - "lat": 51.4127483, - "lon": -0.4094223, - "tags": { - "amenity": "post_box", - "ref": "TW16 251" - } -}, -{ - "type": "node", - "id": 736980034, - "lat": 52.9419253, - "lon": -1.4331806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE21 782" - } -}, -{ - "type": "node", - "id": 737178066, - "lat": 51.4593841, - "lon": -0.9000890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG5 473" - } -}, -{ - "type": "node", - "id": 737260193, - "lat": 51.2078948, - "lon": -1.4798382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 180", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 737603179, - "lat": 55.6181574, - "lon": -2.8166863, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 737790000, - "lat": 51.5472339, - "lon": -0.2041597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW6 29", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 737790019, - "lat": 51.5481944, - "lon": -0.2020635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 19", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 737790028, - "lat": 51.5478693, - "lon": -0.2005577, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 9D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 737790133, - "lat": 51.5478400, - "lon": -0.1951394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "No front panel with information - is this still in use?", - "ref": "NW6 30D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 737845992, - "lat": 51.5464771, - "lon": -0.1863730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NW6 8" - } -}, -{ - "type": "node", - "id": 737850818, - "lat": 51.5497397, - "lon": -0.2125391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 46", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 737850872, - "lat": 51.5478075, - "lon": -0.2074127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 33", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 738089684, - "lat": 50.6984088, - "lon": -1.2950738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO30 5102", - "ref:GB:uprn": "10015389405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/bus-station-right-po30-1ae/00PO305102" - } -}, -{ - "type": "node", - "id": 738107215, - "lat": 50.6995180, - "lon": -1.2969976, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 1372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po30-1ae/00PO301372" - } -}, -{ - "type": "node", - "id": 738107216, - "lat": 50.7067282, - "lon": -1.2943182, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-17", - "collection_times": "Mo-Fr 18:00; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 9991", - "royal_cypher": "no", - "website": "https://www.royalmail.com/services-near-you/postbox/newport-delivery-office-po30-2qr/00PO309991" - } -}, -{ - "type": "node", - "id": 738107219, - "lat": 50.7067324, - "lon": -1.2943543, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-17", - "collection_times": "Mo-Fr 18:00; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 9992", - "royal_cypher": "no", - "website": "https://www.royalmail.com/services-near-you/postbox/newport-delivery-office-po30-2qr/00PO309992" - } -}, -{ - "type": "node", - "id": 738117674, - "lat": 50.7016588, - "lon": -1.4155550, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 65D", - "ref:GB:uprn": "10015286733", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/shalfleet-village-po41-0tw/0000PO3065" - } -}, -{ - "type": "node", - "id": 738156105, - "lat": 56.0535044, - "lon": -3.3023498, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KY3 87" - } -}, -{ - "type": "node", - "id": 738156184, - "lat": 55.9521671, - "lon": -3.1892453, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-28", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH1 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 738158252, - "lat": 50.7048679, - "lon": -1.5105412, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 67D", - "ref:GB:uprn": "10015369422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/norton-po41-0se/0000PO4167" - } -}, -{ - "type": "node", - "id": 738212309, - "lat": 52.1036919, - "lon": -4.1434677, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 738339342, - "lat": 51.2222642, - "lon": -1.4710163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 738429392, - "lat": 50.8020474, - "lon": -3.2617332, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 738430098, - "lat": 51.9194019, - "lon": -0.6601803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU7 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 738738275, - "lat": 54.0013651, - "lon": -2.2208454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BD23 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 738752737, - "lat": 51.5491604, - "lon": -0.2257853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW2 42" - } -}, -{ - "type": "node", - "id": 738753023, - "lat": 51.5522080, - "lon": -0.2293424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 88", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 738753028, - "lat": 51.5459240, - "lon": -0.2219199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW2 31" - } -}, -{ - "type": "node", - "id": 738753034, - "lat": 51.5488967, - "lon": -0.2301222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW2 9" - } -}, -{ - "type": "node", - "id": 738753051, - "lat": 51.5533285, - "lon": -0.2276922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 44" - } -}, -{ - "type": "node", - "id": 738753056, - "lat": 51.5432999, - "lon": -0.2238917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 52", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 738753062, - "lat": 51.5509989, - "lon": -0.2354692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 4" - } -}, -{ - "type": "node", - "id": 738755199, - "lat": 53.9848334, - "lon": -2.2400455, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 738773159, - "lat": 51.5505256, - "lon": -0.2167658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 27", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 738773163, - "lat": 51.5529087, - "lon": -0.2230009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 23" - } -}, -{ - "type": "node", - "id": 738773166, - "lat": 51.5497553, - "lon": -0.2204186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW2 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 738773169, - "lat": 51.5501841, - "lon": -0.2045602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 738773172, - "lat": 51.5480208, - "lon": -0.2104200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 738773175, - "lat": 51.5508072, - "lon": -0.2246224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW2 25", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 738773178, - "lat": 51.5505537, - "lon": -0.2220326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW2 10" - } -}, -{ - "type": "node", - "id": 738805285, - "lat": 51.5535444, - "lon": -0.2038051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 56" - } -}, -{ - "type": "node", - "id": 738805292, - "lat": 51.5527386, - "lon": -0.2184402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 738805293, - "lat": 51.5612712, - "lon": -0.2004822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 58" - } -}, -{ - "type": "node", - "id": 738805294, - "lat": 51.5613335, - "lon": -0.2105068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 48" - } -}, -{ - "type": "node", - "id": 738805295, - "lat": 51.5521205, - "lon": -0.2129186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 29", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 738805296, - "lat": 51.5541905, - "lon": -0.2206381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 738805297, - "lat": 51.5520501, - "lon": -0.2069331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 738805299, - "lat": 51.5637969, - "lon": -0.2047250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 73" - } -}, -{ - "type": "node", - "id": 738805301, - "lat": 51.5635709, - "lon": -0.2077867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 72" - } -}, -{ - "type": "node", - "id": 738814351, - "lat": 51.5591023, - "lon": -0.2208252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 24" - } -}, -{ - "type": "node", - "id": 738814354, - "lat": 51.5639435, - "lon": -0.2232163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 738814357, - "lat": 51.5605960, - "lon": -0.2071117, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 5" - } -}, -{ - "type": "node", - "id": 738814359, - "lat": 51.5593734, - "lon": -0.1980567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 69" - } -}, -{ - "type": "node", - "id": 738814362, - "lat": 51.5605202, - "lon": -0.2192231, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 90D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 738814366, - "lat": 51.5572548, - "lon": -0.2209250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 21" - } -}, -{ - "type": "node", - "id": 738814368, - "lat": 51.5610412, - "lon": -0.2048113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 37" - } -}, -{ - "type": "node", - "id": 738826473, - "lat": 51.5649435, - "lon": -0.2313690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 39" - } -}, -{ - "type": "node", - "id": 738826474, - "lat": 51.5595986, - "lon": -0.2426435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 66", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 738826475, - "lat": 51.5688802, - "lon": -0.2356959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 94" - } -}, -{ - "type": "node", - "id": 738826476, - "lat": 51.5659022, - "lon": -0.2442443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 65" - } -}, -{ - "type": "node", - "id": 738826477, - "lat": 51.5628796, - "lon": -0.2295410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 51" - } -}, -{ - "type": "node", - "id": 738826478, - "lat": 51.5613796, - "lon": -0.2291100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 61" - } -}, -{ - "type": "node", - "id": 738826479, - "lat": 51.5622443, - "lon": -0.2451801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 71" - } -}, -{ - "type": "node", - "id": 738826481, - "lat": 51.5671220, - "lon": -0.2339958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 92" - } -}, -{ - "type": "node", - "id": 738826482, - "lat": 51.5604559, - "lon": -0.2358304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 62" - } -}, -{ - "type": "node", - "id": 738826483, - "lat": 51.5644045, - "lon": -0.2496953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 55" - } -}, -{ - "type": "node", - "id": 738839712, - "lat": 51.8111355, - "lon": -1.3999199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 738855891, - "lat": 51.5546338, - "lon": -0.2102735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 49" - } -}, -{ - "type": "node", - "id": 738875050, - "lat": 55.8815009, - "lon": -3.4906854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 87", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 738875051, - "lat": 55.9368086, - "lon": -3.2872456, - "tags": { - "amenity": "post_box", - "ref": "EH12 607" - } -}, -{ - "type": "node", - "id": 738875052, - "lat": 55.9346543, - "lon": -3.2844878, - "tags": { - "amenity": "post_box", - "ref": "EH12 463" - } -}, -{ - "type": "node", - "id": 738875053, - "lat": 55.9343228, - "lon": -3.2767516, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-11", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH12 376", - "source": "survey" - } -}, -{ - "type": "node", - "id": 738875054, - "lat": 55.9368280, - "lon": -3.2706901, - "tags": { - "amenity": "post_box", - "ref": "EH12 419" - } -}, -{ - "type": "node", - "id": 738903612, - "lat": 50.6713714, - "lon": -1.2341601, - "tags": { - "amenity": "post_box", - "mapillary": "947939809352135", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 74", - "survey:date": "2021-03-17", - "website": "https://www.royalmail.com/services-near-you/postbox/arreton-post-office-po30-3ah/0000PO3074" - } -}, -{ - "type": "node", - "id": 738938517, - "lat": 52.2593197, - "lon": -0.8529260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN3 244", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 739113781, - "lat": 53.1749771, - "lon": -1.4615927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "251.5086670", - "post_box:type": "lamp", - "ref": "S42 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 739113782, - "lat": 53.1815157, - "lon": -1.4522282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "S42 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 739121149, - "lat": 53.3784036, - "lon": -2.8652087, - "tags": { - "amenity": "post_box", - "ref": "L25 840" - } -}, -{ - "type": "node", - "id": 739121152, - "lat": 53.3761635, - "lon": -2.8576449, - "tags": { - "amenity": "post_box", - "ref": "L25 602" - } -}, -{ - "type": "node", - "id": 739676573, - "lat": 51.5101621, - "lon": -0.0821254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC3R 313P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 739728397, - "lat": 51.4090378, - "lon": 0.1479986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "503901314146544", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA14 401", - "survey:date": "2021-04-22" - } -}, -{ - "type": "node", - "id": 739815504, - "lat": 53.1625417, - "lon": -3.0796539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 739910990, - "lat": 53.1678454, - "lon": -3.0928233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 739910998, - "lat": 53.1719806, - "lon": -3.0914811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 740110216, - "lat": 53.4529219, - "lon": -2.3167688, - "tags": { - "amenity": "post_box", - "ref": "M32 273" - } -}, -{ - "type": "node", - "id": 740110234, - "lat": 53.4450524, - "lon": -2.3192807, - "tags": { - "amenity": "post_box", - "ref": "M32 155" - } -}, -{ - "type": "node", - "id": 740110311, - "lat": 53.4463132, - "lon": -2.3140870, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M32 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 740110323, - "lat": 53.4536599, - "lon": -2.3105975, - "tags": { - "amenity": "post_box", - "ref": "M32 404" - } -}, -{ - "type": "node", - "id": 740110469, - "lat": 53.4510944, - "lon": -2.3035071, - "tags": { - "amenity": "post_box", - "ref": "M32 738" - } -}, -{ - "type": "node", - "id": 740158239, - "lat": 50.7520028, - "lon": -1.2965725, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 19D", - "ref:GB:uprn": "10015357708", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/tennyson-road-po31-7aa/0000PO3119" - } -}, -{ - "type": "node", - "id": 741354421, - "lat": 51.5783789, - "lon": -0.1907867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 25" - } -}, -{ - "type": "node", - "id": 741354422, - "lat": 51.5840293, - "lon": -0.2030963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 43" - } -}, -{ - "type": "node", - "id": 741354423, - "lat": 51.5738584, - "lon": -0.1875721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 32" - } -}, -{ - "type": "node", - "id": 741354424, - "lat": 51.5769505, - "lon": -0.1983995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 21" - } -}, -{ - "type": "node", - "id": 741354425, - "lat": 51.5805778, - "lon": -0.1964485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 36" - } -}, -{ - "type": "node", - "id": 741354426, - "lat": 51.5833275, - "lon": -0.1997607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW11 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:United Kingdom post box NW11 7D" - } -}, -{ - "type": "node", - "id": 741354427, - "lat": 51.5749086, - "lon": -0.1916086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 28" - } -}, -{ - "type": "node", - "id": 741354428, - "lat": 51.5755423, - "lon": -0.1961626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW11 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW11 41D" - } -}, -{ - "type": "node", - "id": 741354429, - "lat": 51.5824088, - "lon": -0.1966245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 22" - } -}, -{ - "type": "node", - "id": 741354430, - "lat": 51.5801877, - "lon": -0.1991672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW11 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW11 2D" - } -}, -{ - "type": "node", - "id": 741370799, - "lat": 51.5816147, - "lon": -0.1913342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 39" - } -}, -{ - "type": "node", - "id": 741370817, - "lat": 51.5869551, - "lon": -0.1907963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-04-17" - } -}, -{ - "type": "node", - "id": 741370822, - "lat": 51.5864312, - "lon": -0.1986801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 34" - } -}, -{ - "type": "node", - "id": 741370830, - "lat": 51.5797968, - "lon": -0.1894494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 14" - } -}, -{ - "type": "node", - "id": 741370838, - "lat": 51.5852774, - "lon": -0.1897057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 741370847, - "lat": 51.5852409, - "lon": -0.1943172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 741370850, - "lat": 51.5800421, - "lon": -0.1928841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 33" - } -}, -{ - "type": "node", - "id": 741370852, - "lat": 51.5889818, - "lon": -0.1932966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 50" - } -}, -{ - "type": "node", - "id": 741370855, - "lat": 51.5863423, - "lon": -0.1999756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW11 161D;NW11 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW11 161D and NW11 16D" - } -}, -{ - "type": "node", - "id": 741423985, - "lat": 51.5857414, - "lon": -0.1825630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW11 51;NW11 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW11 51 and NW11 511" - } -}, -{ - "type": "node", - "id": 741424074, - "lat": 51.5705946, - "lon": -0.1890041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-04-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 741424078, - "lat": 51.5817937, - "lon": -0.1811601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 17" - } -}, -{ - "type": "node", - "id": 741424080, - "lat": 51.5739576, - "lon": -0.1784003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 48" - } -}, -{ - "type": "node", - "id": 741424082, - "lat": 51.5780207, - "lon": -0.1818634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 741424084, - "lat": 51.5712166, - "lon": -0.1846149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 6D" - } -}, -{ - "type": "node", - "id": 741424087, - "lat": 51.5832707, - "lon": -0.1860563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 15" - } -}, -{ - "type": "node", - "id": 741424089, - "lat": 51.5796491, - "lon": -0.1858589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 40" - } -}, -{ - "type": "node", - "id": 741424092, - "lat": 51.5715257, - "lon": -0.1936917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 741424095, - "lat": 51.5714757, - "lon": -0.1800188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 19" - } -}, -{ - "type": "node", - "id": 741435977, - "lat": 51.5673968, - "lon": -0.1982974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 5" - } -}, -{ - "type": "node", - "id": 741435979, - "lat": 51.5710078, - "lon": -0.1999413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 741435980, - "lat": 51.5717653, - "lon": -0.2090750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 52", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 741435981, - "lat": 51.5712305, - "lon": -0.1954615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 3" - } -}, -{ - "type": "node", - "id": 741435982, - "lat": 51.5685133, - "lon": -0.1974254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 42" - } -}, -{ - "type": "node", - "id": 741435983, - "lat": 51.5692650, - "lon": -0.2061904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 31" - } -}, -{ - "type": "node", - "id": 741435984, - "lat": 51.5756778, - "lon": -0.2041859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 741435985, - "lat": 51.5726550, - "lon": -0.1985619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NW11 37" - } -}, -{ - "type": "node", - "id": 741435986, - "lat": 51.5731323, - "lon": -0.2108591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 29" - } -}, -{ - "type": "node", - "id": 741448246, - "lat": 51.5807495, - "lon": -0.2111883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 46" - } -}, -{ - "type": "node", - "id": 741448249, - "lat": 51.5858492, - "lon": -0.2256370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW4 29" - } -}, -{ - "type": "node", - "id": 741448252, - "lat": 51.5792510, - "lon": -0.2210995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW4 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 741448254, - "lat": 51.5796684, - "lon": -0.2092729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 1" - } -}, -{ - "type": "node", - "id": 741448256, - "lat": 51.5781465, - "lon": -0.2179340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW4 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 741448258, - "lat": 51.5777417, - "lon": -0.2070121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW11 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 741448260, - "lat": 51.5765860, - "lon": -0.2125652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 741594765, - "lat": 51.3947330, - "lon": 0.1792436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 741723829, - "lat": 55.9764239, - "lon": -3.1659535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Franked Mail Only", - "post_box:type": "meter", - "ref": "EH6 105", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 741723835, - "lat": 55.9622747, - "lon": -3.2001258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "245912120667444", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 46", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2023-06-10" - } -}, -{ - "type": "node", - "id": 741723850, - "lat": 55.9572806, - "lon": -3.2413505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "EH4 286", - "source": "survey" - } -}, -{ - "type": "node", - "id": 741723855, - "lat": 55.9573524, - "lon": -3.2332738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH4 168" - } -}, -{ - "type": "node", - "id": 741723858, - "lat": 55.9763996, - "lon": -3.1659688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH6 112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 741723860, - "lat": 55.9760487, - "lon": -3.1681443, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH6 60D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 741723862, - "lat": 55.9582392, - "lon": -3.2265256, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH4 21" - } -}, -{ - "type": "node", - "id": 741723874, - "lat": 55.9746244, - "lon": -3.1717856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 143D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 741723879, - "lat": 55.9588912, - "lon": -3.2211449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 436", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 741750969, - "lat": 53.3435753, - "lon": -2.8672606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "L24 624", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 741750970, - "lat": 53.3435745, - "lon": -2.8672177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "L24 625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 741754246, - "lat": 53.3351752, - "lon": -2.7993008, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L24 663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 742227216, - "lat": 50.7103229, - "lon": -1.1787883, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 47D", - "ref:GB:uprn": "10015352843", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/upton-cross-po33-2ga/0000PO3347" - } -}, -{ - "type": "node", - "id": 742231349, - "lat": 50.7295711, - "lon": -1.8286684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH7 68", - "ref:GB:uprn": "10015807679", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 742380671, - "lat": 52.3451158, - "lon": -0.8722339, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN6 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 742429689, - "lat": 52.2410367, - "lon": -0.9200859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN5 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 742647237, - "lat": 53.2549153, - "lon": -3.4484339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 742647263, - "lat": 53.2583514, - "lon": -3.4505941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL17 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 743078404, - "lat": 51.0898482, - "lon": -0.9709183, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 743078476, - "lat": 51.0855444, - "lon": -0.9944622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU34 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 743472925, - "lat": 53.1001737, - "lon": -1.3529674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 390" - } -}, -{ - "type": "node", - "id": 743472927, - "lat": 53.1032500, - "lon": -1.3431443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 376" - } -}, -{ - "type": "node", - "id": 743472929, - "lat": 53.0952884, - "lon": -1.3330544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 1394" - } -}, -{ - "type": "node", - "id": 743472943, - "lat": 53.0969668, - "lon": -1.3395547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 772" - } -}, -{ - "type": "node", - "id": 743472946, - "lat": 53.1006071, - "lon": -1.3356656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 394" - } -}, -{ - "type": "node", - "id": 743472948, - "lat": 53.1014644, - "lon": -1.3298050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 657" - } -}, -{ - "type": "node", - "id": 743472951, - "lat": 53.1025145, - "lon": -1.3333796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 177" - } -}, -{ - "type": "node", - "id": 743472953, - "lat": 53.1062806, - "lon": -1.3336522, - "tags": { - "amenity": "post_box", - "ele": "129.9028320", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 385" - } -}, -{ - "type": "node", - "id": 743472960, - "lat": 53.1104750, - "lon": -1.3399046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 396" - } -}, -{ - "type": "node", - "id": 743472961, - "lat": 53.1085800, - "lon": -1.3178461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 395", - "source": "survey" - } -}, -{ - "type": "node", - "id": 743485600, - "lat": 53.1223876, - "lon": -1.3359790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 743485654, - "lat": 53.1410781, - "lon": -1.3458899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 407" - } -}, -{ - "type": "node", - "id": 743500622, - "lat": 53.1338034, - "lon": -1.4171633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 635" - } -}, -{ - "type": "node", - "id": 743500875, - "lat": 53.1504829, - "lon": -1.4131510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 409" - } -}, -{ - "type": "node", - "id": 743500884, - "lat": 53.1333051, - "lon": -1.3800643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 405" - } -}, -{ - "type": "node", - "id": 743513576, - "lat": 53.1010274, - "lon": -1.4612020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 374" - } -}, -{ - "type": "node", - "id": 743513578, - "lat": 53.0959447, - "lon": -1.4408026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 404" - } -}, -{ - "type": "node", - "id": 743513581, - "lat": 53.1023916, - "lon": -1.4342724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 527" - } -}, -{ - "type": "node", - "id": 743513583, - "lat": 53.1142233, - "lon": -1.4442116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE55 411", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 743513586, - "lat": 53.1487987, - "lon": -1.4512954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE55 629" - } -}, -{ - "type": "node", - "id": 744681255, - "lat": 53.0824548, - "lon": -1.4453803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE55 379" - } -}, -{ - "type": "node", - "id": 744681256, - "lat": 53.0934123, - "lon": -1.4411082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 397" - } -}, -{ - "type": "node", - "id": 744681257, - "lat": 53.0937792, - "lon": -1.4375962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 421" - } -}, -{ - "type": "node", - "id": 744681258, - "lat": 53.0746367, - "lon": -1.4052896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 510" - } -}, -{ - "type": "node", - "id": 744681260, - "lat": 53.0696282, - "lon": -1.3982052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE55 558" - } -}, -{ - "type": "node", - "id": 744681263, - "lat": 53.0734391, - "lon": -1.3928288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 386" - } -}, -{ - "type": "node", - "id": 744681266, - "lat": 53.0754030, - "lon": -1.4003907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 418" - } -}, -{ - "type": "node", - "id": 744681269, - "lat": 53.0750121, - "lon": -1.3901982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 10" - } -}, -{ - "type": "node", - "id": 744709758, - "lat": 53.0627980, - "lon": -1.3681705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 14" - } -}, -{ - "type": "node", - "id": 744709759, - "lat": 53.0717927, - "lon": -1.3748439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 678" - } -}, -{ - "type": "node", - "id": 744709760, - "lat": 53.0665241, - "lon": -1.3681891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 391" - } -}, -{ - "type": "node", - "id": 744709761, - "lat": 53.0689619, - "lon": -1.3658110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 417" - } -}, -{ - "type": "node", - "id": 744709762, - "lat": 53.0709395, - "lon": -1.3692374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 413" - } -}, -{ - "type": "node", - "id": 744709763, - "lat": 53.0686233, - "lon": -1.3580852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 380" - } -}, -{ - "type": "node", - "id": 744709764, - "lat": 53.0716523, - "lon": -1.3423532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE55 414" - } -}, -{ - "type": "node", - "id": 744709765, - "lat": 53.0704190, - "lon": -1.3353611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 448" - } -}, -{ - "type": "node", - "id": 744750057, - "lat": 53.0815182, - "lon": -1.3881879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 500" - } -}, -{ - "type": "node", - "id": 744750060, - "lat": 53.0748394, - "lon": -1.3640361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 658" - } -}, -{ - "type": "node", - "id": 744750063, - "lat": 53.0809317, - "lon": -1.3746351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 487" - } -}, -{ - "type": "node", - "id": 744750065, - "lat": 53.0794078, - "lon": -1.3673529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE55 416", - "source:type": "geograph" - } -}, -{ - "type": "node", - "id": 744750067, - "lat": 53.0755752, - "lon": -1.3584555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 387" - } -}, -{ - "type": "node", - "id": 744750071, - "lat": 53.0793311, - "lon": -1.3613644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 758" - } -}, -{ - "type": "node", - "id": 744750073, - "lat": 53.0814055, - "lon": -1.3618174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 590" - } -}, -{ - "type": "node", - "id": 744750075, - "lat": 53.0816154, - "lon": -1.3561022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 375" - } -}, -{ - "type": "node", - "id": 744750077, - "lat": 53.0884480, - "lon": -1.3706599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 788" - } -}, -{ - "type": "node", - "id": 744924825, - "lat": 52.8018945, - "lon": -2.1183397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 1699", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 745211775, - "lat": 51.4886306, - "lon": 0.0119987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 745211779, - "lat": 51.4895833, - "lon": 0.0182501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Latest collection in area", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 745433448, - "lat": 50.6880435, - "lon": -1.4306167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO41 117", - "ref:GB:uprn": "10015400432", - "website": "https://www.royalmail.com/services-near-you/postbox/dodpitts-po41-0tw/000PO41117" - } -}, -{ - "type": "node", - "id": 745433515, - "lat": 50.6915226, - "lon": -1.4478230, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 126", - "ref:GB:uprn": "10015280341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/wellow-post-office-po41-0tw/000PO41126" - } -}, -{ - "type": "node", - "id": 745715877, - "lat": 51.4791051, - "lon": -0.1486581, - "tags": { - "amenity": "post_box", - "ref": "SW8 33" - } -}, -{ - "type": "node", - "id": 745742569, - "lat": 53.0849612, - "lon": -1.3724208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 98" - } -}, -{ - "type": "node", - "id": 745742571, - "lat": 53.0949509, - "lon": -1.3896281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 1395" - } -}, -{ - "type": "node", - "id": 745742574, - "lat": 53.0973829, - "lon": -1.3884438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DE55 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 745742575, - "lat": 53.0922172, - "lon": -1.3706207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 519" - } -}, -{ - "type": "node", - "id": 745745048, - "lat": 53.1199699, - "lon": -1.3565288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 372" - } -}, -{ - "type": "node", - "id": 745745050, - "lat": 53.1201756, - "lon": -1.3531138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 222" - } -}, -{ - "type": "node", - "id": 745745051, - "lat": 53.1253334, - "lon": -1.3453544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 388", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 745927222, - "lat": 51.6128806, - "lon": 0.7628442, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 745946029, - "lat": 54.7375492, - "lon": -1.3714325, - "tags": { - "amenity": "post_box", - "ele": "119.09", - "ref": "TS28 77" - } -}, -{ - "type": "node", - "id": 745976038, - "lat": 52.0922423, - "lon": -4.2808578, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 745976051, - "lat": 52.0612829, - "lon": -4.2574858, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 745976070, - "lat": 51.8687343, - "lon": -4.2851088, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 745976079, - "lat": 51.9486884, - "lon": -4.2664545, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 745976082, - "lat": 51.9629376, - "lon": -4.2634543, - "tags": { - "amenity": "post_box", - "mapillary": "348505861635580", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 745976086, - "lat": 52.1117011, - "lon": -4.2786908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 745976131, - "lat": 52.1328406, - "lon": -4.3010997, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 746184270, - "lat": 54.4502186, - "lon": -3.0048640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA22 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746295419, - "lat": 52.0082450, - "lon": 0.9852552, - "tags": { - "amenity": "post_box", - "ref": "IP7 1197" - } -}, -{ - "type": "node", - "id": 746309526, - "lat": 51.9472400, - "lon": 0.8754503, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 746512485, - "lat": 50.9492501, - "lon": -2.6198031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 746625340, - "lat": 50.9938835, - "lon": 0.6003334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN31 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746625469, - "lat": 50.9978181, - "lon": 0.5967279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN31 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746656557, - "lat": 55.0609256, - "lon": -1.5810332, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 7RD", - "ref": "NE23 3" - } -}, -{ - "type": "node", - "id": 746681108, - "lat": 54.7590959, - "lon": -1.6138488, - "tags": { - "amenity": "post_box", - "ref": "DH7 366" - } -}, -{ - "type": "node", - "id": 746681270, - "lat": 50.8541956, - "lon": -1.1336665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO16 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 746690082, - "lat": 54.7338716, - "lon": -1.7443444, - "tags": { - "amenity": "post_box", - "ref": "DL15 107" - } -}, -{ - "type": "node", - "id": 746761916, - "lat": 52.4942137, - "lon": -0.0247604, - "tags": { - "amenity": "post_box", - "name": "HIGH STREET", - "post_box:type": "wall", - "ref": "PE15 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 746814578, - "lat": 53.8264138, - "lon": -1.7155072, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD10 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 746836064, - "lat": 55.0987953, - "lon": -4.1836414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "DG7", - "ref": "DG7 36" - } -}, -{ - "type": "node", - "id": 746855030, - "lat": 50.9936155, - "lon": -1.0339960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "last_checked": "2020-02-07", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746855031, - "lat": 50.9893485, - "lon": -1.0035960, - "tags": { - "amenity": "post_box", - "ref": "GU32 117" - } -}, -{ - "type": "node", - "id": 746857931, - "lat": 54.3896184, - "lon": -2.9947828, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA22 170", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746858000, - "lat": 54.4278085, - "lon": -2.9668166, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA22 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746858208, - "lat": 54.3646207, - "lon": -2.9194958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA23 275D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 746858378, - "lat": 54.3747774, - "lon": -2.9985693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA22 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746873972, - "lat": 55.9673313, - "lon": -3.2456217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 526" - } -}, -{ - "type": "node", - "id": 746873987, - "lat": 55.9709099, - "lon": -3.2425966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "757869678241807", - "note": "Can't read ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 453", - "survey:date": "2020-07-28" - } -}, -{ - "type": "node", - "id": 746892690, - "lat": 57.5955450, - "lon": -4.4291733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV15 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746892708, - "lat": 57.5949863, - "lon": -4.4242939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "IV15 30", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 746892713, - "lat": 57.5974842, - "lon": -4.4307579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "indoor": "yes", - "note": "inside Tesco main entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV15 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746892720, - "lat": 57.5955137, - "lon": -4.4308236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "postbox moved from old post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV15 31", - "royal_cypher": "scottish_crown", - "source": "survey 1 May 2019" - } -}, -{ - "type": "node", - "id": 746980206, - "lat": 50.9337787, - "lon": -1.7878029, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 302" - } -}, -{ - "type": "node", - "id": 746980217, - "lat": 50.9286006, - "lon": -1.7888224, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "postal_code": "SP6", - "ref": "SP6 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 746981354, - "lat": 50.9451929, - "lon": -1.7948786, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 114" - } -}, -{ - "type": "node", - "id": 746982367, - "lat": 50.9311863, - "lon": -1.7911457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 177" - } -}, -{ - "type": "node", - "id": 746982961, - "lat": 50.9237284, - "lon": -1.7952367, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 137", - "source": "survey" - } -}, -{ - "type": "node", - "id": 746983151, - "lat": 50.9285903, - "lon": -1.8051469, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 64" - } -}, -{ - "type": "node", - "id": 746984567, - "lat": 50.9341327, - "lon": -1.8083220, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 257" - } -}, -{ - "type": "node", - "id": 747084282, - "lat": 53.8329447, - "lon": -2.3383822, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 747086248, - "lat": 50.9410776, - "lon": -1.7842805, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 239" - } -}, -{ - "type": "node", - "id": 747103187, - "lat": 53.8395575, - "lon": -2.2503843, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 747103198, - "lat": 53.8447545, - "lon": -2.2375741, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 747113780, - "lat": 50.8981696, - "lon": -1.7622083, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747117967, - "lat": 52.0963276, - "lon": -1.8268822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "post_box:type": "lamp", - "ref": "WR11 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747119728, - "lat": 55.9680564, - "lon": -3.1656726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1228951421423000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH6 478", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 747119886, - "lat": 50.9301582, - "lon": -1.7599663, - "tags": { - "amenity": "post_box", - "mapillary": "469469847716572", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 322", - "survey:date": "2020-08-28" - } -}, -{ - "type": "node", - "id": 747121210, - "lat": 50.9337639, - "lon": -1.7512223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 426" - } -}, -{ - "type": "node", - "id": 747122794, - "lat": 50.9301895, - "lon": -1.8110263, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 435" - } -}, -{ - "type": "node", - "id": 747123227, - "lat": 50.9331023, - "lon": -1.8207814, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 446" - } -}, -{ - "type": "node", - "id": 747156787, - "lat": 54.9964845, - "lon": -1.5685570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747156821, - "lat": 54.9944097, - "lon": -1.5716405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 277D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 747171540, - "lat": 51.3985270, - "lon": 0.1621510, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 468D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 747199089, - "lat": 51.7483195, - "lon": -0.0188115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "ref": "EN10 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747199091, - "lat": 51.7552177, - "lon": -0.0134168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "EN11 109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 747199095, - "lat": 51.7455724, - "lon": -0.0137051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "post_box:type": "pillar", - "ref": "EN10 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 747199103, - "lat": 51.7532490, - "lon": -0.0101436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EN11 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747344865, - "lat": 50.7062008, - "lon": -1.4999734, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO41 102", - "royal_cypher": "no", - "website": "https://www.royalmail.com/services-near-you/postbox/yarmouth-post-office-po41-0se/000PO41102" - } -}, -{ - "type": "node", - "id": 747387791, - "lat": 50.6828351, - "lon": -1.5388773, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO39 103", - "ref:GB:uprn": "10015363180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/broadway-po39-0aa/000PO39103" - } -}, -{ - "type": "node", - "id": 747480021, - "lat": 53.8951191, - "lon": -1.7437048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS29 874", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747484122, - "lat": 53.8974202, - "lon": -1.7383189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 871", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747487455, - "lat": 53.8956071, - "lon": -1.7359358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 878", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747499361, - "lat": 51.7882480, - "lon": -2.7869232, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747512840, - "lat": 51.4233772, - "lon": -2.2645212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN13 95D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 747518597, - "lat": 53.9049520, - "lon": -1.7432488, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS29 862", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747536203, - "lat": 52.9738065, - "lon": -1.4809160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "885523948754002", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE56 63", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 747536205, - "lat": 52.9788514, - "lon": -1.4856461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE56 496" - } -}, -{ - "type": "node", - "id": 747536206, - "lat": 52.9843083, - "lon": -1.4895655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE56 746", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747536208, - "lat": 52.9866076, - "lon": -1.4879231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "DE56 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 747536210, - "lat": 52.9794923, - "lon": -1.4748405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE56 214D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 747536211, - "lat": 52.9880498, - "lon": -1.4908870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE56 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747536212, - "lat": 52.9899819, - "lon": -1.4914631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE56 90" - } -}, -{ - "type": "node", - "id": 747536213, - "lat": 52.9974289, - "lon": -1.4774177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE56 571D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 747536214, - "lat": 53.0025331, - "lon": -1.4805248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 476" - } -}, -{ - "type": "node", - "id": 747536215, - "lat": 53.0088087, - "lon": -1.4624313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Fdry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "DE56 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747538647, - "lat": 52.3455339, - "lon": -1.5674057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747607011, - "lat": 53.0957955, - "lon": -1.3460808, - "tags": { - "amenity": "post_box", - "ele": "141.1983643", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 544" - } -}, -{ - "type": "node", - "id": 747701310, - "lat": 52.3518827, - "lon": -1.5651118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 231D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747701862, - "lat": 52.3492075, - "lon": -1.5726685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747701917, - "lat": 52.3423110, - "lon": -1.5739590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 381D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747702147, - "lat": 52.3468336, - "lon": -1.5776564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV8 345D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747703592, - "lat": 52.3480805, - "lon": -1.5565320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747703792, - "lat": 52.3421220, - "lon": -1.5551620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747704023, - "lat": 52.3374047, - "lon": -1.5656398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747704130, - "lat": 52.3402300, - "lon": -1.5633650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 383D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 747764332, - "lat": 52.8057337, - "lon": -2.1192891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747769503, - "lat": 50.9113382, - "lon": -1.8250033, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 452", - "ref:GB:uprn": "10015308371" - } -}, -{ - "type": "node", - "id": 747769504, - "lat": 50.9113874, - "lon": -1.8372071, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 233", - "ref:GB:uprn": "10015338192" - } -}, -{ - "type": "node", - "id": 747810846, - "lat": 55.7193573, - "lon": -2.7487145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TD2 55" - } -}, -{ - "type": "node", - "id": 747859535, - "lat": 53.3622574, - "lon": -1.5318324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Original GR box replaced with E2R", - "post_box:type": "pillar", - "ref": "S11 379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747874843, - "lat": 51.2369780, - "lon": -0.5710205, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "description": "GU1 204 on the left is for stamped mail; GU1 2041 on the right is for franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GU1 204;GU1 2041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 747888693, - "lat": 52.4761871, - "lon": -1.7306177, - "tags": { - "amenity": "post_box", - "postal_code": "B37", - "ref": "B37 3921", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 747894040, - "lat": 53.1144502, - "lon": -3.1181678, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 747894071, - "lat": 53.1186282, - "lon": -3.1203309, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748031022, - "lat": 50.9133560, - "lon": -1.7902633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 139", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 748031026, - "lat": 50.9192407, - "lon": -1.7878546, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 408" - } -}, -{ - "type": "node", - "id": 748047001, - "lat": 50.9173062, - "lon": -1.8269825, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 60", - "ref:GB:uprn": "10015290740" - } -}, -{ - "type": "node", - "id": 748051289, - "lat": 50.9321529, - "lon": -1.7537684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 276" - } -}, -{ - "type": "node", - "id": 748071317, - "lat": 51.5138590, - "lon": -0.1007845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4M 416;EC4M 4161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 748244096, - "lat": 51.7520630, - "lon": -1.3009236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX2 876", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-07-31" - } -}, -{ - "type": "node", - "id": 748244131, - "lat": 51.7734755, - "lon": -1.3577481, - "tags": { - "addr:city": "Swinford", - "addr:housename": "Outside Swinford Water Treatment Works", - "addr:street": "Oxford Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "mapillary": "572133900421707", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX29 84", - "survey:date": "2020-02-09" - } -}, -{ - "type": "node", - "id": 748244154, - "lat": 51.7493441, - "lon": -1.3106690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "OX2 188" - } -}, -{ - "type": "node", - "id": 748261495, - "lat": 51.7369646, - "lon": -1.3184420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "OX2 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 748268477, - "lat": 57.1965707, - "lon": -2.2085676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB21 600", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 748339682, - "lat": 52.1209599, - "lon": -1.8910305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00; Su off", - "note": "In Aug 15 wild honey bees had a hive in this box!", - "post_box:type": "wall", - "ref": "WR11 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 748503184, - "lat": 55.4609162, - "lon": -4.6402331, - "tags": { - "accuracy": "7 feet", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA7 148" - } -}, -{ - "type": "node", - "id": 748520071, - "lat": 50.9394558, - "lon": -0.8509659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO18 177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO18 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-05" - } -}, -{ - "type": "node", - "id": 748781227, - "lat": 53.7917762, - "lon": -1.5512185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748781228, - "lat": 53.7917778, - "lon": -1.5512829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS11 28" - } -}, -{ - "type": "node", - "id": 748781229, - "lat": 53.7852750, - "lon": -1.5506120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Left normal post box. Right Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS11 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748782286, - "lat": 50.9610238, - "lon": -1.7756429, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 184" - } -}, -{ - "type": "node", - "id": 748782287, - "lat": 50.9560622, - "lon": -1.7701408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748782288, - "lat": 50.9595349, - "lon": -1.7922398, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 373" - } -}, -{ - "type": "node", - "id": 748782289, - "lat": 50.9648973, - "lon": -1.7879920, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 15" - } -}, -{ - "type": "node", - "id": 748863804, - "lat": 52.9930036, - "lon": -1.5148674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3081074552131338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE56 31", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 748863805, - "lat": 53.0012588, - "lon": -1.5438339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 631" - } -}, -{ - "type": "node", - "id": 748863806, - "lat": 53.0145327, - "lon": -1.5795741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 158" - } -}, -{ - "type": "node", - "id": 748863807, - "lat": 53.0021437, - "lon": -1.5241024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 124" - } -}, -{ - "type": "node", - "id": 748863808, - "lat": 52.9934384, - "lon": -1.4919497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 219" - } -}, -{ - "type": "node", - "id": 748863809, - "lat": 53.0281926, - "lon": -1.5853966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 109" - } -}, -{ - "type": "node", - "id": 748863810, - "lat": 53.0105725, - "lon": -1.5110333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE56 897", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748863811, - "lat": 53.0340485, - "lon": -1.5708299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 314" - } -}, -{ - "type": "node", - "id": 748863812, - "lat": 52.9944404, - "lon": -1.4956105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE56 159", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 748863813, - "lat": 53.0059118, - "lon": -1.4807441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 64" - } -}, -{ - "type": "node", - "id": 748863814, - "lat": 53.0060414, - "lon": -1.5086726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE56 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748863815, - "lat": 53.0065410, - "lon": -1.5473152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DE56 732" - } -}, -{ - "type": "node", - "id": 748870499, - "lat": 53.0385059, - "lon": -1.5783079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 182" - } -}, -{ - "type": "node", - "id": 748870507, - "lat": 53.0345746, - "lon": -1.4900275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 325" - } -}, -{ - "type": "node", - "id": 748870509, - "lat": 53.0203274, - "lon": -1.5408227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 249" - } -}, -{ - "type": "node", - "id": 748870511, - "lat": 53.0229430, - "lon": -1.5649243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE56 60" - } -}, -{ - "type": "node", - "id": 748870512, - "lat": 53.0411844, - "lon": -1.5036719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 530" - } -}, -{ - "type": "node", - "id": 748870514, - "lat": 53.0230654, - "lon": -1.4970636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE56 563" - } -}, -{ - "type": "node", - "id": 748870515, - "lat": 53.0192202, - "lon": -1.5012697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "mapillary": "135425101949017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE56 601", - "survey:date": "2020-12-24" - } -}, -{ - "type": "node", - "id": 748870516, - "lat": 53.0277030, - "lon": -1.4858440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE56 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748870517, - "lat": 53.0160758, - "lon": -1.5586014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 1391" - } -}, -{ - "type": "node", - "id": 748870518, - "lat": 53.0316504, - "lon": -1.4868074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 535" - } -}, -{ - "type": "node", - "id": 748870519, - "lat": 53.0166512, - "lon": -1.5531484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 277" - } -}, -{ - "type": "node", - "id": 748878964, - "lat": 51.5334305, - "lon": -0.5224890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL0 97" - } -}, -{ - "type": "node", - "id": 748880261, - "lat": 53.0266123, - "lon": -1.4807287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE56 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748880262, - "lat": 53.0170659, - "lon": -1.4854477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 740" - } -}, -{ - "type": "node", - "id": 748880263, - "lat": 53.0230936, - "lon": -1.4733178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 639" - } -}, -{ - "type": "node", - "id": 748880264, - "lat": 53.0279773, - "lon": -1.4779190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Nudged east because from the south end you can see it's on the east side of Acorn Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 586" - } -}, -{ - "type": "node", - "id": 748880266, - "lat": 53.0170614, - "lon": -1.4854261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 1385" - } -}, -{ - "type": "node", - "id": 748880268, - "lat": 53.0235977, - "lon": -1.4753446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "1222426101510192", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DE56 419", - "survey:date": "2020-12-25" - } -}, -{ - "type": "node", - "id": 748880272, - "lat": 53.0190251, - "lon": -1.4849036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "233704818737406", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE56 423", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 748880275, - "lat": 53.0160457, - "lon": -1.4762187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 436" - } -}, -{ - "type": "node", - "id": 748880277, - "lat": 53.0242802, - "lon": -1.4787675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748880279, - "lat": 53.0170245, - "lon": -1.4813477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 331" - } -}, -{ - "type": "node", - "id": 748880281, - "lat": 53.0177233, - "lon": -1.4734280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 690" - } -}, -{ - "type": "node", - "id": 748880290, - "lat": 53.0208436, - "lon": -1.4861158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 719" - } -}, -{ - "type": "node", - "id": 748884550, - "lat": 53.0340887, - "lon": -1.4746055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 286" - } -}, -{ - "type": "node", - "id": 748884551, - "lat": 53.0536966, - "lon": -1.4805697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "271170228325544", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE56 1377", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 748884552, - "lat": 53.0309880, - "lon": -1.4930894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 528" - } -}, -{ - "type": "node", - "id": 748884553, - "lat": 53.0585413, - "lon": -1.4824747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 748884554, - "lat": 53.0344832, - "lon": -1.4679295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 424" - } -}, -{ - "type": "node", - "id": 748884555, - "lat": 53.0386833, - "lon": -1.4799982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 432" - } -}, -{ - "type": "node", - "id": 748884556, - "lat": 53.0576875, - "lon": -1.4803088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 320" - } -}, -{ - "type": "node", - "id": 748884557, - "lat": 53.0296915, - "lon": -1.4743669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 542" - } -}, -{ - "type": "node", - "id": 749047622, - "lat": 53.0424154, - "lon": -1.4462609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 430" - } -}, -{ - "type": "node", - "id": 749047635, - "lat": 53.0609075, - "lon": -1.4807436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749047641, - "lat": 53.0509429, - "lon": -1.4491917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE56 438", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 749047649, - "lat": 53.0289937, - "lon": -1.4526877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 778" - } -}, -{ - "type": "node", - "id": 749047652, - "lat": 53.0661414, - "lon": -1.4666215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 45" - } -}, -{ - "type": "node", - "id": 749047658, - "lat": 53.0606976, - "lon": -1.4663672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 305" - } -}, -{ - "type": "node", - "id": 749047663, - "lat": 53.0783883, - "lon": -1.5298293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE56 327" - } -}, -{ - "type": "node", - "id": 749047667, - "lat": 53.0329265, - "lon": -1.4471800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749047670, - "lat": 53.0252013, - "lon": -1.4584529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 439" - } -}, -{ - "type": "node", - "id": 749047675, - "lat": 53.0496599, - "lon": -1.4356722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 449" - } -}, -{ - "type": "node", - "id": 749047679, - "lat": 53.0551947, - "lon": -1.4770822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749072260, - "lat": 53.0202222, - "lon": -1.4572517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 555" - } -}, -{ - "type": "node", - "id": 749072267, - "lat": 53.0307939, - "lon": -1.4627743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 87" - } -}, -{ - "type": "node", - "id": 749072270, - "lat": 53.0054915, - "lon": -1.4318755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 526" - } -}, -{ - "type": "node", - "id": 749072276, - "lat": 53.0131926, - "lon": -1.4390082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 137" - } -}, -{ - "type": "node", - "id": 749072282, - "lat": 53.0159418, - "lon": -1.4628580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 728" - } -}, -{ - "type": "node", - "id": 749072287, - "lat": 53.0058430, - "lon": -1.4373591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 553" - } -}, -{ - "type": "node", - "id": 749072290, - "lat": 53.0299245, - "lon": -1.4557727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 633" - } -}, -{ - "type": "node", - "id": 749072295, - "lat": 53.0290662, - "lon": -1.4663651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 615" - } -}, -{ - "type": "node", - "id": 749072297, - "lat": 53.0087056, - "lon": -1.4259617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 531D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749072302, - "lat": 53.0217380, - "lon": -1.4509069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 434" - } -}, -{ - "type": "node", - "id": 749152844, - "lat": 53.0024759, - "lon": -1.4431265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 208" - } -}, -{ - "type": "node", - "id": 749152861, - "lat": 53.0232097, - "lon": -1.4830694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE56 433" - } -}, -{ - "type": "node", - "id": 749152867, - "lat": 53.0052670, - "lon": -1.4594174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE56 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749152870, - "lat": 53.0014362, - "lon": -1.4398275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 612D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749152879, - "lat": 53.0029890, - "lon": -1.4605697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 734" - } -}, -{ - "type": "node", - "id": 749152883, - "lat": 53.0225718, - "lon": -1.4814022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 775" - } -}, -{ - "type": "node", - "id": 749152889, - "lat": 53.0110675, - "lon": -1.4537371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE56 682D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749152894, - "lat": 53.0255419, - "lon": -1.4740521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DE56 435" - } -}, -{ - "type": "node", - "id": 749152899, - "lat": 53.0125740, - "lon": -1.4813486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3246767018893307", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE56 463", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 749152908, - "lat": 53.0225117, - "lon": -1.4810337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE56 594" - } -}, -{ - "type": "node", - "id": 749194851, - "lat": 52.8316145, - "lon": -1.6186463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1192" - } -}, -{ - "type": "node", - "id": 749195408, - "lat": 52.8158287, - "lon": -1.6384522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4057449641032985", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1397", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 749195416, - "lat": 52.8287822, - "lon": -1.6346940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1224" - } -}, -{ - "type": "node", - "id": 749195423, - "lat": 52.8278137, - "lon": -1.6409691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1213" - } -}, -{ - "type": "node", - "id": 749195429, - "lat": 52.8313203, - "lon": -1.6458422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1139" - } -}, -{ - "type": "node", - "id": 749195437, - "lat": 52.8383581, - "lon": -1.6156269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1044" - } -}, -{ - "type": "node", - "id": 749195443, - "lat": 52.8321290, - "lon": -1.6279767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1187" - } -}, -{ - "type": "node", - "id": 749195458, - "lat": 52.8340764, - "lon": -1.6420960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1116" - } -}, -{ - "type": "node", - "id": 749195462, - "lat": 52.8258070, - "lon": -1.6201483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3515453328557267", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE13 1194", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 749195465, - "lat": 52.8380469, - "lon": -1.6193831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1208" - } -}, -{ - "type": "node", - "id": 749225633, - "lat": 52.8066412, - "lon": -1.5749452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1190" - } -}, -{ - "type": "node", - "id": 749225638, - "lat": 52.8015331, - "lon": -1.5923178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1111" - } -}, -{ - "type": "node", - "id": 749225644, - "lat": 52.8387183, - "lon": -1.5417830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE65 626" - } -}, -{ - "type": "node", - "id": 749225648, - "lat": 52.8058449, - "lon": -1.5831122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1144" - } -}, -{ - "type": "node", - "id": 749225652, - "lat": 52.7917019, - "lon": -1.6132125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1258" - } -}, -{ - "type": "node", - "id": 749225656, - "lat": 52.7949274, - "lon": -1.6204788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1057194075024925", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE15 1029", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 749232980, - "lat": 50.9781472, - "lon": -1.7643705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749234456, - "lat": 52.8062997, - "lon": -1.6187125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "813972522882147", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE15 1003", - "survey:date": "2020-11-27" - } -}, -{ - "type": "node", - "id": 749360472, - "lat": 52.8340221, - "lon": -1.6266195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1110" - } -}, -{ - "type": "node", - "id": 749360478, - "lat": 52.8483497, - "lon": -1.6576052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE13 1184D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 749360482, - "lat": 52.8444015, - "lon": -1.6513001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1127" - } -}, -{ - "type": "node", - "id": 749360487, - "lat": 52.8392845, - "lon": -1.6486415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1176" - } -}, -{ - "type": "node", - "id": 749360491, - "lat": 52.8462586, - "lon": -1.6334465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1080" - } -}, -{ - "type": "node", - "id": 749360497, - "lat": 52.8470836, - "lon": -1.6389813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1368" - } -}, -{ - "type": "node", - "id": 749360501, - "lat": 52.8379485, - "lon": -1.6324729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1227" - } -}, -{ - "type": "node", - "id": 749483989, - "lat": 52.8295735, - "lon": -1.6695720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1151" - } -}, -{ - "type": "node", - "id": 749483995, - "lat": 52.8237919, - "lon": -1.6482632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1040" - } -}, -{ - "type": "node", - "id": 749484001, - "lat": 52.8254564, - "lon": -1.6861642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE13 1117" - } -}, -{ - "type": "node", - "id": 749484006, - "lat": 52.8193146, - "lon": -1.6487734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1096" - } -}, -{ - "type": "node", - "id": 749484011, - "lat": 52.8217609, - "lon": -1.7076199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1052" - } -}, -{ - "type": "node", - "id": 749484016, - "lat": 52.8122262, - "lon": -1.6974365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1180" - } -}, -{ - "type": "node", - "id": 749484019, - "lat": 52.8235110, - "lon": -1.6438040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Please check the reference number of this box. This box replaces a different box that was demolished nearby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE13 1025" - } -}, -{ - "type": "node", - "id": 749484028, - "lat": 52.8270468, - "lon": -1.6511856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1094" - } -}, -{ - "type": "node", - "id": 749484033, - "lat": 52.8303467, - "lon": -1.6532160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1084" - } -}, -{ - "type": "node", - "id": 749484038, - "lat": 52.8116320, - "lon": -1.6709069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1252" - } -}, -{ - "type": "node", - "id": 749484041, - "lat": 52.8138504, - "lon": -1.6427895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1060" - } -}, -{ - "type": "node", - "id": 749484044, - "lat": 52.8239419, - "lon": -1.6558245, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1241" - } -}, -{ - "type": "node", - "id": 749484050, - "lat": 52.8402904, - "lon": -1.6672465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1202" - } -}, -{ - "type": "node", - "id": 749484052, - "lat": 52.8118124, - "lon": -1.6842888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1221" - } -}, -{ - "type": "node", - "id": 749484056, - "lat": 52.8189962, - "lon": -1.6438363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1149" - } -}, -{ - "type": "node", - "id": 749509416, - "lat": 52.7810657, - "lon": -1.7211424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1069" - } -}, -{ - "type": "node", - "id": 749509424, - "lat": 52.7589588, - "lon": -1.7224057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1251" - } -}, -{ - "type": "node", - "id": 749509431, - "lat": 52.8046382, - "lon": -1.7303078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1132" - } -}, -{ - "type": "node", - "id": 749509435, - "lat": 52.7618634, - "lon": -1.7317932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "DE13 1055", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749509440, - "lat": 52.7844323, - "lon": -1.7410840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1226" - } -}, -{ - "type": "node", - "id": 749509444, - "lat": 52.7632263, - "lon": -1.7180599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1140" - } -}, -{ - "type": "node", - "id": 749509450, - "lat": 52.7278825, - "lon": -1.7318819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE13 755", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 749509467, - "lat": 52.7947520, - "lon": -1.6983178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1137" - } -}, -{ - "type": "node", - "id": 749509473, - "lat": 52.7318033, - "lon": -1.7404918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1073" - } -}, -{ - "type": "node", - "id": 749551247, - "lat": 52.7706657, - "lon": -1.7438485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1036" - } -}, -{ - "type": "node", - "id": 749551255, - "lat": 52.7837718, - "lon": -1.7960885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE13 1058" - } -}, -{ - "type": "node", - "id": 749551265, - "lat": 52.7682296, - "lon": -1.7703138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE13 1064" - } -}, -{ - "type": "node", - "id": 749551270, - "lat": 52.7793018, - "lon": -1.8053599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE13 1079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749551274, - "lat": 52.7703511, - "lon": -1.7927024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE13 1126" - } -}, -{ - "type": "node", - "id": 749551278, - "lat": 52.8097384, - "lon": -1.8194868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1081" - } -}, -{ - "type": "node", - "id": 749551284, - "lat": 52.7815812, - "lon": -1.7918401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1232" - } -}, -{ - "type": "node", - "id": 749551286, - "lat": 52.8068948, - "lon": -1.8053324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1233" - } -}, -{ - "type": "node", - "id": 749551289, - "lat": 52.7656697, - "lon": -1.7908266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE13 1230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749551296, - "lat": 52.7674315, - "lon": -1.8148140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1076" - } -}, -{ - "type": "node", - "id": 749551302, - "lat": 52.7630485, - "lon": -1.7951801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE13 1183" - } -}, -{ - "type": "node", - "id": 749551307, - "lat": 52.8042937, - "lon": -1.8162691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1220" - } -}, -{ - "type": "node", - "id": 749626588, - "lat": 52.8507189, - "lon": -1.6899871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1179" - } -}, -{ - "type": "node", - "id": 749626597, - "lat": 52.8475412, - "lon": -1.7451182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE13 1152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749626600, - "lat": 52.9171144, - "lon": -1.3955634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE21 679D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749626606, - "lat": 52.8537334, - "lon": -1.6844136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1106" - } -}, -{ - "type": "node", - "id": 749626610, - "lat": 52.8743082, - "lon": -1.6789675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE65 488" - } -}, -{ - "type": "node", - "id": 749626617, - "lat": 52.8072892, - "lon": -1.7826035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE13 1135" - } -}, -{ - "type": "node", - "id": 749626623, - "lat": 52.8543838, - "lon": -1.6937913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1193" - } -}, -{ - "type": "node", - "id": 749626627, - "lat": 52.9175092, - "lon": -1.4279083, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 91" - } -}, -{ - "type": "node", - "id": 749626631, - "lat": 52.8259981, - "lon": -1.7994271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE13 1145" - } -}, -{ - "type": "node", - "id": 749626634, - "lat": 52.8534159, - "lon": -1.6908434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1257" - } -}, -{ - "type": "node", - "id": 749626638, - "lat": 52.9207251, - "lon": -1.4287767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 358" - } -}, -{ - "type": "node", - "id": 749626642, - "lat": 52.8364334, - "lon": -1.7382724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE13 1107" - } -}, -{ - "type": "node", - "id": 749626647, - "lat": 52.9243613, - "lon": -1.3908264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DE21 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749626650, - "lat": 52.8551160, - "lon": -1.6909186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1206" - } -}, -{ - "type": "node", - "id": 749626653, - "lat": 52.8729664, - "lon": -1.6374465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "207680991589413", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE65 250", - "survey:date": "2022-08-22" - } -}, -{ - "type": "node", - "id": 749626658, - "lat": 52.8587107, - "lon": -1.7153950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1400" - } -}, -{ - "type": "node", - "id": 749626661, - "lat": 52.9277598, - "lon": -1.3920054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "DE21 790D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749626664, - "lat": 52.8670105, - "lon": -1.6805809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE65 564" - } -}, -{ - "type": "node", - "id": 749626668, - "lat": 52.8344856, - "lon": -1.7550743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1046" - } -}, -{ - "type": "node", - "id": 749633545, - "lat": 52.9869454, - "lon": -1.4490822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE21 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 749829493, - "lat": 53.1330179, - "lon": -3.0939524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 749829547, - "lat": 53.1366268, - "lon": -3.0970255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 749829560, - "lat": 53.1296605, - "lon": -3.0888054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 749829678, - "lat": 53.1306735, - "lon": -3.0935270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 750029041, - "lat": 51.9946594, - "lon": -0.7909633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK4 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 750039439, - "lat": 50.3933455, - "lon": -4.1518399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2172064339610995", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750039443, - "lat": 50.3940730, - "lon": -4.1459296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750060503, - "lat": 55.8895210, - "lon": -4.2579493, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 750414195, - "lat": 50.9588729, - "lon": -1.7582147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 290" - } -}, -{ - "type": "node", - "id": 750414199, - "lat": 50.9544887, - "lon": -1.7357264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 334" - } -}, -{ - "type": "node", - "id": 750418715, - "lat": 50.9659680, - "lon": -1.7388493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 32" - } -}, -{ - "type": "node", - "id": 750418717, - "lat": 50.9713917, - "lon": -1.7277906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750418719, - "lat": 50.9707536, - "lon": -1.7102915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 284" - } -}, -{ - "type": "node", - "id": 750426892, - "lat": 50.9419277, - "lon": -1.7597329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750426909, - "lat": 50.9271832, - "lon": -1.7766172, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 126" - } -}, -{ - "type": "node", - "id": 750438999, - "lat": 50.9179145, - "lon": -1.7737675, - "tags": { - "amenity": "post_box", - "fixme": "s this still here?", - "postal_code": "SP6", - "ref": "SP6 206" - } -}, -{ - "type": "node", - "id": 750439001, - "lat": 50.9158073, - "lon": -1.7655322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 349" - } -}, -{ - "type": "node", - "id": 750439004, - "lat": 50.9150981, - "lon": -1.7561097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 289" - } -}, -{ - "type": "node", - "id": 750442056, - "lat": 50.9209427, - "lon": -1.7530894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 17" - } -}, -{ - "type": "node", - "id": 750442060, - "lat": 50.9112371, - "lon": -1.7619578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750442064, - "lat": 50.9087706, - "lon": -1.7605823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750444799, - "lat": 50.9085236, - "lon": -1.7508454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SP6", - "ref": "SP6 344" - } -}, -{ - "type": "node", - "id": 750444805, - "lat": 50.9035369, - "lon": -1.7734238, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 44" - } -}, -{ - "type": "node", - "id": 750444810, - "lat": 50.8937658, - "lon": -1.7710044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 300", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 750455069, - "lat": 50.9217848, - "lon": -1.8118420, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 142" - } -}, -{ - "type": "node", - "id": 750462385, - "lat": 50.9711784, - "lon": -1.8200271, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750462417, - "lat": 50.9793255, - "lon": -1.8250833, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 436" - } -}, -{ - "type": "node", - "id": 750466741, - "lat": 50.9128310, - "lon": -1.8529935, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 399", - "ref:GB:uprn": "10015314564" - } -}, -{ - "type": "node", - "id": 750466883, - "lat": 50.9279253, - "lon": -1.8318519, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 150", - "ref:GB:uprn": "10015343587" - } -}, -{ - "type": "node", - "id": 750467282, - "lat": 50.9154963, - "lon": -1.8732387, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 18", - "ref:GB:uprn": "10015300356" - } -}, -{ - "type": "node", - "id": 750467322, - "lat": 50.9207788, - "lon": -1.8614157, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 365" - } -}, -{ - "type": "node", - "id": 750467941, - "lat": 50.9109234, - "lon": -1.8330701, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 442", - "ref:GB:uprn": "10015318515" - } -}, -{ - "type": "node", - "id": 750468408, - "lat": 50.9142251, - "lon": -1.8301885, - "tags": { - "amenity": "post_box", - "name": "The Green Hut", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 350", - "ref:GB:uprn": "10015310083", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 750468582, - "lat": 50.9443418, - "lon": -1.8526320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "SP6", - "ref": "SP6 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750468583, - "lat": 50.9389686, - "lon": -1.8539269, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 216" - } -}, -{ - "type": "node", - "id": 750468679, - "lat": 50.9749219, - "lon": -1.8956406, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 268" - } -}, -{ - "type": "node", - "id": 750468680, - "lat": 50.9747445, - "lon": -1.9028625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-14", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SP6 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750468684, - "lat": 50.9784176, - "lon": -1.9082067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-14", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SP6 356", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 750468834, - "lat": 50.9591923, - "lon": -1.8369646, - "tags": { - "amenity": "post_box", - "postal_code": "SP6", - "ref": "SP6 285" - } -}, -{ - "type": "node", - "id": 750485594, - "lat": 50.3760161, - "lon": -4.1478677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "post_box:type": "pillar", - "ref": "PL1 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 750485595, - "lat": 50.3745078, - "lon": -4.1466569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "PL1 43D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "bing", - "survey:date": "2022-02-08" - } -}, -{ - "type": "node", - "id": 750509180, - "lat": 57.0577178, - "lon": -5.9105170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:00", - "post_box:type": "lamp", - "ref": "IV44 135", - "source": "survey" - } -}, -{ - "type": "node", - "id": 750509185, - "lat": 57.0584200, - "lon": -5.9077413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "post_box:type": "pillar", - "ref": "IV45 125", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 750534660, - "lat": 52.2076980, - "lon": -1.6154250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 750696009, - "lat": 51.5230236, - "lon": -0.6228949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 751377634, - "lat": 50.3828227, - "lon": -4.1376633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "961216378153771", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL4 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 751626295, - "lat": 51.6733914, - "lon": 0.5729138, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 751988435, - "lat": 54.7854884, - "lon": -1.5850384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 219" - } -}, -{ - "type": "node", - "id": 752125901, - "lat": 51.6024832, - "lon": -3.8203789, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 752221362, - "lat": 50.6768234, - "lon": -1.5434504, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO39 26", - "ref:GB:uprn": "10015313252", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/weston-po39-0aa/0000PO3926" - } -}, -{ - "type": "node", - "id": 752221363, - "lat": 50.6782003, - "lon": -1.5335963, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO39 20D", - "ref:GB:uprn": "10015409412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/summers-lane-po39-0aa/0000PO3920" - } -}, -{ - "type": "node", - "id": 752595854, - "lat": 52.0868852, - "lon": -1.9483739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR11 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 753324749, - "lat": 51.5593146, - "lon": 0.0128643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 753349799, - "lat": 51.5637124, - "lon": 0.0097025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "E11 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 753350231, - "lat": 51.5647838, - "lon": 0.0100690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 753468020, - "lat": 51.5553914, - "lon": -0.1393991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "mapillary": "173942381315285", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW5 19D", - "royal_cypher": "no", - "wikimedia_commons": "Category:United Kingdom post box NW5 19D" - } -}, -{ - "type": "node", - "id": 753537430, - "lat": 51.5423997, - "lon": -0.1984586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 753537625, - "lat": 51.5493519, - "lon": -0.2060940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Check exact position.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 26", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 753602068, - "lat": 51.5550762, - "lon": -0.2164347, - "tags": { - "amenity": "post_box", - "ref": "NW2 13" - } -}, -{ - "type": "node", - "id": 753602114, - "lat": 51.5552113, - "lon": -0.2136617, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "fixme": "Check exact position relative to shops.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 754022755, - "lat": 51.4812442, - "lon": -2.5082812, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 1008", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 754098426, - "lat": 51.4274609, - "lon": -2.4431092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BS30", - "ref": "BS30 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 754098484, - "lat": 51.4197309, - "lon": -2.4462456, - "tags": { - "amenity": "post_box", - "mapillary": "600009794780844", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "BS30", - "ref": "BS30 160", - "survey:date": "2021-06-25" - } -}, -{ - "type": "node", - "id": 754174061, - "lat": 53.0724168, - "lon": -3.0953959, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 754303356, - "lat": 57.4515047, - "lon": -6.2642652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "672371415056250", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 20", - "source": "survey", - "survey:date": "2023-08-09" - } -}, -{ - "type": "node", - "id": 754349889, - "lat": 57.4982363, - "lon": -6.3232330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 89", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 754453609, - "lat": 57.5315566, - "lon": -6.3514792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV51 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 754453611, - "lat": 57.5664474, - "lon": -6.3649190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "751402149823485", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 23", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 755730620, - "lat": 57.6359631, - "lon": -6.3763432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1966422343832581", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 93", - "source": "survey", - "survey:date": "2024-07-08" - } -}, -{ - "type": "node", - "id": 755730625, - "lat": 57.6466330, - "lon": -6.3796974, - "tags": { - "amenity": "post_box", - "ref": "IV51 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 755743402, - "lat": 57.6295517, - "lon": -6.3782919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "672008865103224", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IV51 94", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 755743405, - "lat": 57.6075428, - "lon": -6.3744332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:00", - "mapillary": "758014499532408", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 79", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 755797109, - "lat": 57.6602686, - "lon": -6.3707724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 08:45", - "mapillary": "349823324459550", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 77", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 755818062, - "lat": 56.2011800, - "lon": -3.4218246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 122D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 755873046, - "lat": 52.0950556, - "lon": -1.5058378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 756233678, - "lat": 52.2653054, - "lon": -0.8183509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 756410296, - "lat": 50.3867526, - "lon": -4.1388754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "944711756166706", - "post_box:type": "pillar", - "ref": "PL3 54D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-27" - } -}, -{ - "type": "node", - "id": 756410299, - "lat": 50.3901344, - "lon": -4.1420356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "mapillary": "957164361898107", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PL3 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-10" - } -}, -{ - "type": "node", - "id": 756681856, - "lat": 51.4789246, - "lon": -2.4933643, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 545" - } -}, -{ - "type": "node", - "id": 756696013, - "lat": 52.4049760, - "lon": -1.9462013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B38 1293", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 756696055, - "lat": 52.4096789, - "lon": -1.9553749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "B31 745", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 756743895, - "lat": 51.4911932, - "lon": -2.5066058, - "tags": { - "amenity": "post_box", - "mapillary": "817944379160816", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BS16 364", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 756760379, - "lat": 51.4936030, - "lon": -2.5106400, - "tags": { - "amenity": "post_box", - "ref": "BS16 425" - } -}, -{ - "type": "node", - "id": 756917053, - "lat": 52.5305671, - "lon": -2.4205061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WV16 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 756917141, - "lat": 52.5338192, - "lon": -2.4170505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "WV16 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 757030176, - "lat": 52.9654113, - "lon": -2.1913948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 757103376, - "lat": 52.0631486, - "lon": -2.2629360, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR8 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 757362083, - "lat": 51.8678874, - "lon": 0.2861974, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 757445266, - "lat": 50.5172577, - "lon": -3.7514903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TQ13 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 757454597, - "lat": 51.4663350, - "lon": -3.1664682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 757462736, - "lat": 52.4320085, - "lon": -1.8843834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B14 694", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 757462739, - "lat": 52.4310494, - "lon": -1.8768838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "B13 450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 757641018, - "lat": 50.8763592, - "lon": -1.8759436, - "tags": { - "amenity": "post_box", - "postal_code": "BH31", - "ref": "BH31 208" - } -}, -{ - "type": "node", - "id": 758010867, - "lat": 50.8806473, - "lon": -1.8795365, - "tags": { - "amenity": "post_box", - "postal_code": "BH31", - "ref": "BH31 200", - "ref:GB:uprn": "10015443023" - } -}, -{ - "type": "node", - "id": 758060785, - "lat": 51.1223657, - "lon": 0.2597773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 40D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 758133765, - "lat": 57.5841178, - "lon": -6.3572388, - "tags": { - "amenity": "post_box", - "ref": "IV51 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 758175052, - "lat": 57.4181202, - "lon": -6.2105444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1338056353554589", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV51 21", - "source": "survey", - "survey:date": "2023-08-09" - } -}, -{ - "type": "node", - "id": 758199843, - "lat": 57.4142226, - "lon": -6.2053905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 758225810, - "lat": 57.4106168, - "lon": -6.2019016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 758758944, - "lat": 51.5048372, - "lon": -3.5962637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 758927164, - "lat": 52.2713440, - "lon": -0.8256225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 758951751, - "lat": 51.0758779, - "lon": -1.8002100, - "tags": { - "amenity": "post_box", - "postal_code": "SP2", - "ref": "SP2 354" - } -}, -{ - "type": "node", - "id": 759082356, - "lat": 53.8532787, - "lon": -3.0516070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY2 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 759083114, - "lat": 53.8681415, - "lon": -3.0458412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 759251668, - "lat": 50.9106075, - "lon": -1.8743014, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 126", - "ref:GB:uprn": "10015479618" - } -}, -{ - "type": "node", - "id": 759327479, - "lat": 50.1499151, - "lon": -5.0934936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR11 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 759469234, - "lat": 50.9011669, - "lon": -1.0662375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 303", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 759526099, - "lat": 53.1967301, - "lon": -2.8277268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 365D" - } -}, -{ - "type": "node", - "id": 759627191, - "lat": 53.8738592, - "lon": -2.1834944, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 759680625, - "lat": 51.6454197, - "lon": 0.4274773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "CM12 98" - } -}, -{ - "type": "node", - "id": 759772914, - "lat": 51.4899923, - "lon": 0.3039454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM16 503", - "royal_cypher": "EIIR", - "source": "Dracos postboxes" - } -}, -{ - "type": "node", - "id": 759772935, - "lat": 51.4806074, - "lon": 0.3170825, - "tags": { - "amenity": "post_box", - "note": "Location from Dracos - check!", - "ref": "RM17 10", - "source": "Dracos postboxes" - } -}, -{ - "type": "node", - "id": 759772941, - "lat": 51.4811218, - "lon": 0.3280569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 229", - "source": "Dracos postboxes" - } -}, -{ - "type": "node", - "id": 759791234, - "lat": 52.0989855, - "lon": -1.5643248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV36", - "ref": "CV36 130", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 759869586, - "lat": 50.9072385, - "lon": -1.0776159, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO7 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 759869598, - "lat": 50.8970352, - "lon": -1.0652563, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 759885821, - "lat": 50.7028730, - "lon": -1.2843639, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 7", - "ref:GB:uprn": "10015402694", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/st-pauls-po30-1ae/00000PO307" - } -}, -{ - "type": "node", - "id": 759886493, - "lat": 52.2311502, - "lon": -1.7408772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 759896937, - "lat": 50.7116543, - "lon": -1.2802828, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1192008707888146", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 107", - "ref:GB:uprn": "10015326373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-22", - "website": "https://www.royalmail.com/services-near-you/postbox/south-fairlee-po30-1ag/000PO30107" - } -}, -{ - "type": "node", - "id": 759993026, - "lat": 52.4528594, - "lon": -0.1575398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE26 39" - } -}, -{ - "type": "node", - "id": 759993048, - "lat": 52.4792472, - "lon": -0.1514230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE28 62" - } -}, -{ - "type": "node", - "id": 759993199, - "lat": 52.4955675, - "lon": -0.1470514, - "tags": { - "amenity": "post_box", - "ref": "PE26 183" - } -}, -{ - "type": "node", - "id": 759995490, - "lat": 52.4150533, - "lon": -4.0835105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SY23 4;SY23 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 759995491, - "lat": 52.4218649, - "lon": -4.0838848, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY23 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760115073, - "lat": 53.0930099, - "lon": -1.9272374, - "tags": { - "amenity": "post_box", - "ele": "283.9528809", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 760131033, - "lat": 53.0829532, - "lon": -1.9060837, - "tags": { - "amenity": "post_box", - "ele": "262.5637207", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 760188817, - "lat": 51.5141611, - "lon": -2.5436365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS34 634", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760262959, - "lat": 50.6082795, - "lon": -1.9592703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 139D", - "ref:GB:uprn": "10015273000", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 760339641, - "lat": 55.8604033, - "lon": -4.5755689, - "tags": { - "amenity": "post_box", - "ref": "PA11 157" - } -}, -{ - "type": "node", - "id": 760339663, - "lat": 55.8557769, - "lon": -4.5693901, - "tags": { - "amenity": "post_box", - "ref": "PA11 33" - } -}, -{ - "type": "node", - "id": 760339682, - "lat": 55.8544963, - "lon": -4.5857326, - "tags": { - "amenity": "post_box", - "ref": "PA11 39" - } -}, -{ - "type": "node", - "id": 760339706, - "lat": 55.8525821, - "lon": -4.5765519, - "tags": { - "amenity": "post_box", - "ref": "PA11 68" - } -}, -{ - "type": "node", - "id": 760339731, - "lat": 55.8580826, - "lon": -4.5838838, - "tags": { - "amenity": "post_box", - "ref": "PA11 188" - } -}, -{ - "type": "node", - "id": 760339759, - "lat": 55.8543258, - "lon": -4.5726045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "399179216514322", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA11 145", - "survey:date": "2024-05-21" - } -}, -{ - "type": "node", - "id": 760339764, - "lat": 55.8586752, - "lon": -4.5801072, - "tags": { - "amenity": "post_box", - "ref": "PA11 41" - } -}, -{ - "type": "node", - "id": 760469627, - "lat": 51.6170986, - "lon": -0.1720819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "N12 8D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 760469636, - "lat": 51.6168040, - "lon": -0.1768905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 760469644, - "lat": 51.6174367, - "lon": -0.1653060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 760556679, - "lat": 51.8726450, - "lon": 0.1584358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM23 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760556819, - "lat": 51.8708561, - "lon": 0.1594926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM23 58;CM23 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760557077, - "lat": 51.8668738, - "lon": 0.1606788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CM23 228;CM23 2280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 760564289, - "lat": 51.8740826, - "lon": 0.1589334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "CM23 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760625343, - "lat": 51.8909938, - "lon": 0.0131287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-06", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "colour": "red", - "name": "Puckeridge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SG11 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760625344, - "lat": 51.8887833, - "lon": 0.0163820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "name": "Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 77" - } -}, -{ - "type": "node", - "id": 760625347, - "lat": 51.9805638, - "lon": -0.2251323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-09", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SG6 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760625351, - "lat": 51.9417326, - "lon": -0.0150616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "name": "Layston Meadow", - "ref": "SG9 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760654807, - "lat": 55.9590235, - "lon": -3.1494776, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH7 223D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 760654809, - "lat": 55.9552578, - "lon": -3.1440446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "mapillary": "1840274326140014", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 114", - "survey:date": "2020-02-22" - } -}, -{ - "type": "node", - "id": 760654810, - "lat": 55.9538425, - "lon": -3.1493357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH8 241", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 760654811, - "lat": 55.9651775, - "lon": -3.1550509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH7 294" - } -}, -{ - "type": "node", - "id": 760654815, - "lat": 55.9547615, - "lon": -3.1614369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH8 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 760654819, - "lat": 55.9619817, - "lon": -3.1533477, - "tags": { - "addr:street": "Lochend Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH7 295" - } -}, -{ - "type": "node", - "id": 760654822, - "lat": 55.9536819, - "lon": -3.1541940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "927512268071206", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH8 364", - "royal_cypher": "no", - "survey:date": "2020-12-28" - } -}, -{ - "type": "node", - "id": 760654823, - "lat": 55.9492298, - "lon": -3.1941656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH1 102", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 760654829, - "lat": 55.9551347, - "lon": -3.1532238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH8 115", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 760654831, - "lat": 55.9502768, - "lon": -3.1870598, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-15", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "EH1 99", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 760654833, - "lat": 55.9554178, - "lon": -3.1669595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH8 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 760707316, - "lat": 51.1102372, - "lon": -0.9810417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "last_checked": "2021-07-24", - "old_ref": "GU34 11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU34 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 760726295, - "lat": 50.7214156, - "lon": -1.3045311, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 86D", - "ref:GB:uprn": "10015824326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/horsebridge-hill-po30-5fa/0000PO3086" - } -}, -{ - "type": "node", - "id": 760726304, - "lat": 50.7463528, - "lon": -1.3060121, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 30D", - "ref:GB:uprn": "10015402755", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/somerton-po31-8aa/0000PO3130" - } -}, -{ - "type": "node", - "id": 760726309, - "lat": 50.7389667, - "lon": -1.3079445, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Horseshoe", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 41D", - "ref:GB:uprn": "10015426301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/horseshoe-po31-8aa/0000PO3141" - } -}, -{ - "type": "node", - "id": 760758479, - "lat": 51.8806551, - "lon": -5.2620877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "ref": "SA62 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760758525, - "lat": 51.8834240, - "lon": -5.2624503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA62 121" - } -}, -{ - "type": "node", - "id": 760758545, - "lat": 51.8826217, - "lon": -5.2696587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-01", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA62 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 760758602, - "lat": 51.8815306, - "lon": -5.2642898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA62 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 760764432, - "lat": 53.1514478, - "lon": -2.0944328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:00", - "ele": "164.5100098", - "post_box:type": "lamp", - "ref": "SK11 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 761124437, - "lat": 51.0711974, - "lon": -1.8040897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "last_checked": "2020-10-30", - "note": "\"Please use both boxes\". \"This Postbox has the latest collection in this area.\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "postal_code": "SP2", - "ref": "SP2 115", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 761126413, - "lat": 55.8727909, - "lon": -4.2740043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G4 59", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 761127661, - "lat": 55.8740626, - "lon": -4.2772566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "G20 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 761128128, - "lat": 51.0704414, - "lon": -1.7959510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP1 120", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SP1", - "ref": "SP1 120D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 761128525, - "lat": 55.8705563, - "lon": -4.2764532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "G3 362", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 761130854, - "lat": 55.8734013, - "lon": -4.2956416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G12 292", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 761150963, - "lat": 55.8523043, - "lon": -4.5679936, - "tags": { - "amenity": "post_box", - "ref": "PA11 40" - } -}, -{ - "type": "node", - "id": 761182334, - "lat": 53.7422455, - "lon": -2.4067237, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 761182346, - "lat": 53.7434828, - "lon": -2.4033763, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 761182351, - "lat": 53.7457025, - "lon": -2.3936456, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 761240767, - "lat": 51.3658784, - "lon": -2.6106541, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 761240768, - "lat": 51.3679557, - "lon": -2.6056048, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS40 363", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 761244057, - "lat": 51.4807138, - "lon": -2.5883791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 1353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 761245987, - "lat": 52.0159657, - "lon": -1.3194702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX17 1115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing" - } -}, -{ - "type": "node", - "id": 761293919, - "lat": 55.1194253, - "lon": -6.6820022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 761293964, - "lat": 55.1194373, - "lon": -6.6872146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 761336559, - "lat": 50.7964664, - "lon": -1.1057825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 761391993, - "lat": 52.9695515, - "lon": -2.2054213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 761508087, - "lat": 52.3002699, - "lon": -3.5107525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LD6 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 761547152, - "lat": 50.8080121, - "lon": -2.9746909, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 761567438, - "lat": 53.3766528, - "lon": -2.1543817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK7 310D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 761569560, - "lat": 52.0511576, - "lon": 1.2011456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP4 287;IP4 1287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 761585211, - "lat": 51.4720150, - "lon": -2.4985471, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 761686462, - "lat": 52.0544055, - "lon": 1.1530960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP1 1089", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 761686477, - "lat": 52.0547529, - "lon": 1.1530784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "IP1 1468", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 761801965, - "lat": 51.3438863, - "lon": -2.9805215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BS23 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 761827369, - "lat": 51.3751968, - "lon": -0.3443638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "KT10 320D" - } -}, -{ - "type": "node", - "id": 761931707, - "lat": 50.8465787, - "lon": -1.7921474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "postal_code": "BH24", - "ref": "BH24 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 761931709, - "lat": 50.8476331, - "lon": -1.7933419, - "tags": { - "amenity": "post_box", - "check_date": "2023-10-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BH24", - "ref": "BH24 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 762053824, - "lat": 51.8572821, - "lon": -3.1409837, - "tags": { - "amenity": "post_box", - "ref": "NP8 64" - } -}, -{ - "type": "node", - "id": 762057304, - "lat": 51.8583143, - "lon": -3.1378335, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP8 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 762110475, - "lat": 52.4665643, - "lon": -1.8090473, - "tags": { - "amenity": "post_box", - "postal_code": "B26", - "ref": "B26 7", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 762207287, - "lat": 52.2796078, - "lon": -0.8968618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 762270650, - "lat": 51.4652841, - "lon": -3.1660705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 762291592, - "lat": 50.1042973, - "lon": -5.3918984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-07-17" - } -}, -{ - "type": "node", - "id": 762334674, - "lat": 52.2768360, - "lon": -0.8934054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 762884845, - "lat": 52.1867016, - "lon": -2.2486698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR2 328", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 762884994, - "lat": 52.1919437, - "lon": -2.2479761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 425" - } -}, -{ - "type": "node", - "id": 763095162, - "lat": 51.2691673, - "lon": -0.8400160, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 763128061, - "lat": 55.8753463, - "lon": -4.3010957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "G12 173D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 763253517, - "lat": 54.4937451, - "lon": -2.3883574, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 95" - } -}, -{ - "type": "node", - "id": 763253534, - "lat": 54.3455834, - "lon": -2.4769376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA10 153" - } -}, -{ - "type": "node", - "id": 763253597, - "lat": 54.5785757, - "lon": -2.5187767, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA16 72" - } -}, -{ - "type": "node", - "id": 763253607, - "lat": 54.5725714, - "lon": -2.4970176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA16 311" - } -}, -{ - "type": "node", - "id": 763253669, - "lat": 54.6029276, - "lon": -2.5628998, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA16 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 763253758, - "lat": 54.7484806, - "lon": -3.0508510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CA7 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 763253773, - "lat": 54.7380377, - "lon": -3.0263582, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CA7 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 763253921, - "lat": 54.6621033, - "lon": -3.3484606, - "tags": { - "amenity": "post_box", - "ref": "CA13 34" - } -}, -{ - "type": "node", - "id": 763253980, - "lat": 54.6527207, - "lon": -3.2996635, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA13 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 763377026, - "lat": 51.1344355, - "lon": 0.2355019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 763377027, - "lat": 51.1306250, - "lon": 0.2227781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN3 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 763573988, - "lat": 51.4564735, - "lon": 0.0945483, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 763575272, - "lat": 51.4551524, - "lon": 0.0951842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 763634771, - "lat": 51.4091557, - "lon": -0.0414084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "BR3 365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 763642657, - "lat": 52.5697240, - "lon": -2.0985340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WV2", - "ref": "WV2 59", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 763652261, - "lat": 52.5725437, - "lon": -2.1031283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WV2", - "ref": "WV2 157", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 763654174, - "lat": 50.9300274, - "lon": -2.6479657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-11-28", - "wikimedia_commons": "File:Forest Hill, Yeovil - geograph.org.uk - 2789279.jpg" - } -}, -{ - "type": "node", - "id": 763661806, - "lat": 54.7292715, - "lon": -1.4809249, - "tags": { - "amenity": "post_box", - "ele": "158.5", - "ref": "DH6 335" - } -}, -{ - "type": "node", - "id": 763681181, - "lat": 53.1513500, - "lon": -2.1065076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "ele": "204.8851318", - "post_box:type": "wall", - "ref": "SK11 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 764415825, - "lat": 53.0573865, - "lon": -1.4079239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "119.8090820", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 25" - } -}, -{ - "type": "node", - "id": 764417888, - "lat": 53.0504350, - "lon": -1.4025949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "149", - "post_box:type": "pillar", - "ref": "DE5 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 764417890, - "lat": 53.0530675, - "lon": -1.4055600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "143", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 46" - } -}, -{ - "type": "node", - "id": 764417894, - "lat": 53.0375128, - "lon": -1.4041812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "121.0107422", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE5 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 764447629, - "lat": 53.0229679, - "lon": -1.4162706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "ele": "92.6520996", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE5 517", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 764460779, - "lat": 50.6776567, - "lon": -1.5444925, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO39 53D", - "ref:GB:uprn": "10015393162", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/church-hill-road-po39-0aa/0000PO3953" - } -}, -{ - "type": "node", - "id": 764460800, - "lat": 50.6677152, - "lon": -1.5656589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "mapillary": "169249955393513", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO39 43", - "ref:GB:uprn": "10015399524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-28", - "website": "https://www.royalmail.com/services-near-you/postbox/alum-bay-po39-0jh/0000PO3943" - } -}, -{ - "type": "node", - "id": 764473333, - "lat": 53.0003665, - "lon": -1.4147800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ele": "115.9638672", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 261", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 764473405, - "lat": 52.9981185, - "lon": -1.4056166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "122.2122803", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 655D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 764486969, - "lat": 53.0022848, - "lon": -1.4244029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "126.5383301", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 323D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 764560789, - "lat": 52.5656074, - "lon": 1.2347505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1458D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 764610784, - "lat": 50.7312155, - "lon": -3.5281015, - "tags": { - "amenity": "post_box", - "ref": "EX4 157D" - } -}, -{ - "type": "node", - "id": 764610983, - "lat": 51.4392732, - "lon": 0.2027104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA1 313" - } -}, -{ - "type": "node", - "id": 764662458, - "lat": 52.6573122, - "lon": -2.9276521, - "tags": { - "amenity": "post_box", - "ref": "SY5 206" - } -}, -{ - "type": "node", - "id": 764672460, - "lat": 52.6415745, - "lon": -2.9287397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY5 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 764672463, - "lat": 52.6490702, - "lon": -2.9342271, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY5 284", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 764712564, - "lat": 55.9731325, - "lon": -3.1950482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "926227621462875", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH6 180", - "royal_cypher": "scottish_crown", - "survey:date": "2020-02-08" - } -}, -{ - "type": "node", - "id": 764712710, - "lat": 52.3490766, - "lon": -1.5675987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV8 391D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 764716766, - "lat": 55.9538677, - "lon": -3.2435779, - "tags": { - "amenity": "post_box", - "ref": "EH4 466", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 764716768, - "lat": 55.9527205, - "lon": -3.2284441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 170" - } -}, -{ - "type": "node", - "id": 764716775, - "lat": 55.9536146, - "lon": -3.2360666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "879284989290705", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 192", - "source": "Bing;survey", - "survey:date": "2021-01-10" - } -}, -{ - "type": "node", - "id": 764716777, - "lat": 55.9546849, - "lon": -3.2317176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "995860468791638", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH4 631", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 764729569, - "lat": 56.4693283, - "lon": -3.4087094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 87D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 764954322, - "lat": 53.2638358, - "lon": -2.8871232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH65 613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 765033999, - "lat": 54.4554565, - "lon": -2.3696465, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 111", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765050824, - "lat": 50.7131508, - "lon": -1.2025070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/havenstreet-main-road-po33-3sa/0000PO3386" - } -}, -{ - "type": "node", - "id": 765104166, - "lat": 51.4770834, - "lon": -2.6756637, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS20 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 765187536, - "lat": 55.0609437, - "lon": -1.6292588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "353343056823282", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE13 6ES", - "ref": "NE13 356", - "survey:date": "2022-04-20" - } -}, -{ - "type": "node", - "id": 765301678, - "lat": 51.4522172, - "lon": -2.4852962, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 765330474, - "lat": 51.4609638, - "lon": -0.1049091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 32" - } -}, -{ - "type": "node", - "id": 765330475, - "lat": 51.4672083, - "lon": -0.1053099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 34" - } -}, -{ - "type": "node", - "id": 765330477, - "lat": 51.4775861, - "lon": -0.1079303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 11", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 765330478, - "lat": 51.4653631, - "lon": -0.1032062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW9 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 765330479, - "lat": 51.4696199, - "lon": -0.1066034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 5" - } -}, -{ - "type": "node", - "id": 765330480, - "lat": 51.4608831, - "lon": -0.1109771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 2" - } -}, -{ - "type": "node", - "id": 765330481, - "lat": 51.4622674, - "lon": -0.1150252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:manufacturer": "Carron Co. Falkirk", - "post_box:type": "pillar", - "ref": "SW9 20" - } -}, -{ - "type": "node", - "id": 765330482, - "lat": 51.4749647, - "lon": -0.1103387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 27" - } -}, -{ - "type": "node", - "id": 765346102, - "lat": 52.5609606, - "lon": -0.1147698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE7 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765346119, - "lat": 52.5569419, - "lon": -0.1160939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE7 237", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765346120, - "lat": 52.5568558, - "lon": -0.1221826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE7 180", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765375709, - "lat": 54.8540454, - "lon": -1.5736127, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-02", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "ele": "24.4", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 765376572, - "lat": 55.0512919, - "lon": -1.6281399, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 6AF", - "ref": "NE13 443" - } -}, -{ - "type": "node", - "id": 765376590, - "lat": 55.0580096, - "lon": -1.6228920, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "NE13 6HB", - "ref": "NE13 309" - } -}, -{ - "type": "node", - "id": 765376591, - "lat": 55.0509150, - "lon": -1.6236106, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 6NL", - "ref": "NE13 340" - } -}, -{ - "type": "node", - "id": 765376615, - "lat": 55.0552723, - "lon": -1.6283804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NE13 6DZ", - "ref": "NE13 800D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765379315, - "lat": 54.8586683, - "lon": -1.5763767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 765379383, - "lat": 54.8586693, - "lon": -1.5763530, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-27", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "ele": "8.78", - "mail:franked": "yes", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DH3 81P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 765381440, - "lat": 51.4754530, - "lon": -0.0390919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765558051, - "lat": 55.0589335, - "lon": -1.6272504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE13 6ES", - "ref": "NE13 357", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 765623514, - "lat": 50.7525116, - "lon": -1.2886708, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 6", - "ref:GB:uprn": "10015406528", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/clarence-road-po31-7aa/00000PO326" - } -}, -{ - "type": "node", - "id": 765623518, - "lat": 50.7398049, - "lon": -1.2761153, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-12-12", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO32 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/rectory-po32-6fd/0000PO3237" - } -}, -{ - "type": "node", - "id": 765676505, - "lat": 54.0719160, - "lon": -2.2885621, - "tags": { - "amenity": "post_box", - "ref": "BD24 65" - } -}, -{ - "type": "node", - "id": 765752990, - "lat": 51.4540080, - "lon": -2.1443754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 765761579, - "lat": 51.3783056, - "lon": 0.5510285, - "tags": { - "amenity": "post_box", - "ref": "ME7 245" - } -}, -{ - "type": "node", - "id": 765882752, - "lat": 52.0893638, - "lon": -1.9287760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR11 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 765916704, - "lat": 54.6341917, - "lon": -2.6990371, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 765916707, - "lat": 54.1055543, - "lon": -2.4097353, - "tags": { - "amenity": "post_box", - "ref": "LA2 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 766017438, - "lat": 52.5132288, - "lon": -0.1427470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE26 25" - } -}, -{ - "type": "node", - "id": 766024858, - "lat": 51.4113844, - "lon": -1.0904750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 766031096, - "lat": 51.5392689, - "lon": -0.5072447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 766031307, - "lat": 51.4628976, - "lon": -0.1236896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 47" - } -}, -{ - "type": "node", - "id": 766031468, - "lat": 51.4677220, - "lon": -0.1184192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW9 16" - } -}, -{ - "type": "node", - "id": 766031470, - "lat": 51.4623302, - "lon": -0.1292808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW4 7" - } -}, -{ - "type": "node", - "id": 766031472, - "lat": 51.4640588, - "lon": -0.1154040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 124" - } -}, -{ - "type": "node", - "id": 766031473, - "lat": 51.4552136, - "lon": -0.1452054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW4 15" - } -}, -{ - "type": "node", - "id": 766031475, - "lat": 51.4650513, - "lon": -0.1106310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 29" - } -}, -{ - "type": "node", - "id": 766031476, - "lat": 51.4628793, - "lon": -0.1083755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW9 10" - } -}, -{ - "type": "node", - "id": 766072773, - "lat": 51.3868604, - "lon": 0.0156706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 356" - } -}, -{ - "type": "node", - "id": 766096674, - "lat": 51.3833878, - "lon": 0.0109390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 766096689, - "lat": 51.3836293, - "lon": 0.0087036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 766096696, - "lat": 51.3830091, - "lon": 0.0123369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 766133491, - "lat": 51.3790498, - "lon": -0.0073040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 766153994, - "lat": 51.3882544, - "lon": 0.0107536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 766153996, - "lat": 51.3865357, - "lon": 0.0113106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 766185380, - "lat": 55.9471864, - "lon": -3.2024319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH1 181", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 766185382, - "lat": 55.9449721, - "lon": -3.1863791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "494833316558329", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 766185385, - "lat": 55.9431234, - "lon": -3.1992894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH3 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 766185388, - "lat": 55.9500998, - "lon": -3.1782582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 22", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 766185391, - "lat": 55.9465345, - "lon": -3.1857565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Has scottish crown instead of normal penfold emblem", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EH8 136D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 766185392, - "lat": 55.9472762, - "lon": -3.1979213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "EH1 157", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 766185394, - "lat": 55.9477576, - "lon": -3.1936583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "EH1 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 766484424, - "lat": 51.4368929, - "lon": 0.1955521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DA1 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 766523199, - "lat": 52.5903196, - "lon": -1.9854663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "WS2", - "ref": "WS2 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 766523223, - "lat": 52.5959861, - "lon": -1.9869985, - "tags": { - "amenity": "post_box", - "postal_code": "WS2", - "ref": "WS2 51", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 766575086, - "lat": 52.6076361, - "lon": -1.9941117, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WS3", - "ref": "WS3 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 766638025, - "lat": 50.2211314, - "lon": -5.2676125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR15 37D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 766706148, - "lat": 51.4455037, - "lon": 0.2100226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA1 418", - "source": "survey" - } -}, -{ - "type": "node", - "id": 766742664, - "lat": 52.9560387, - "lon": -2.1797907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 766805562, - "lat": 51.7968756, - "lon": -1.4724066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 766858755, - "lat": 51.0891376, - "lon": -4.0699464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX31 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 766875648, - "lat": 50.6974458, - "lon": -3.5229577, - "tags": { - "amenity": "post_box", - "mapillary": "708424663759594", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EX2 34", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 766875662, - "lat": 50.6974253, - "lon": -3.5228773, - "tags": { - "amenity": "post_box", - "mapillary": "708424663759594", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EX2 46", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 766875960, - "lat": 55.8838053, - "lon": -3.1571431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 354", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 766895497, - "lat": 51.9257788, - "lon": -0.1695282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "post_box:type": "meter", - "ref": "SG1 1002", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 766895501, - "lat": 51.9257474, - "lon": -0.1695389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG1 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 766913010, - "lat": 51.4748347, - "lon": -0.1692360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 33", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 766913029, - "lat": 51.4745955, - "lon": -0.1632526, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 766913030, - "lat": 51.4698507, - "lon": -0.1758321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 9", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 766913032, - "lat": 51.4738861, - "lon": -0.1610863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 8" - } -}, -{ - "type": "node", - "id": 766913033, - "lat": 51.4792886, - "lon": -0.1665141, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW11 7", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 766913034, - "lat": 51.4744238, - "lon": -0.1526960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 66" - } -}, -{ - "type": "node", - "id": 766913036, - "lat": 51.4731269, - "lon": -0.1696888, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW11 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 766913037, - "lat": 51.4752420, - "lon": -0.1579090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 19" - } -}, -{ - "type": "node", - "id": 766913038, - "lat": 51.4762943, - "lon": -0.1532188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 61" - } -}, -{ - "type": "node", - "id": 766913039, - "lat": 51.4771490, - "lon": -0.1645431, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 766933984, - "lat": 55.6002756, - "lon": -4.5121197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 766953095, - "lat": 55.9502038, - "lon": -3.1902321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-28", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mapillary": "498713504811093", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH1 56", - "royal_cypher": "no", - "survey:date": "2020-05-27" - } -}, -{ - "type": "node", - "id": 767154143, - "lat": 53.3874372, - "lon": -2.6583855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 767277165, - "lat": 50.5015867, - "lon": -3.8289822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ11 101D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 767277298, - "lat": 50.4907078, - "lon": -3.8477869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "This replaced an old GVIR lamp box in a brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "lamp", - "ref": "TQ11 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 767389441, - "lat": 51.6022231, - "lon": -0.9151036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG9 52" - } -}, -{ - "type": "node", - "id": 767390497, - "lat": 51.6136212, - "lon": -0.8928445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG9 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 767390690, - "lat": 51.5721661, - "lon": -0.8704262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG9 75" - } -}, -{ - "type": "node", - "id": 767401208, - "lat": 51.5831709, - "lon": -1.7976974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 165" - } -}, -{ - "type": "node", - "id": 767451762, - "lat": 57.1368667, - "lon": -2.1580936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "ref": "AB15 197" - } -}, -{ - "type": "node", - "id": 767451763, - "lat": 57.1314013, - "lon": -2.1614493, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 8LL", - "addr:street": "Countesswells Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 506" - } -}, -{ - "type": "node", - "id": 767455272, - "lat": 53.4121556, - "lon": -4.3387395, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 767455314, - "lat": 53.4070875, - "lon": -4.3501859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 767494117, - "lat": 51.3794230, - "lon": -0.8320451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG40 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 767504143, - "lat": 50.6487177, - "lon": -1.1636727, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 67D", - "ref:GB:uprn": "10015409507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/ranelagh-road-po36-9lt/0000PO3667" - } -}, -{ - "type": "node", - "id": 767510348, - "lat": 51.3950090, - "lon": -0.8915594, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 767523902, - "lat": 52.1464312, - "lon": -1.7028602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV37 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 767541602, - "lat": 52.8775659, - "lon": -1.4536515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 691D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 767541637, - "lat": 52.8873457, - "lon": -1.4502697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 246", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 767549481, - "lat": 51.4812326, - "lon": -0.1979564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW6 169;SW6 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 767549486, - "lat": 51.4849373, - "lon": -0.1967928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 44", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 767808560, - "lat": 56.0304801, - "lon": -3.3983711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY11 143", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 767825050, - "lat": 50.6592203, - "lon": -1.1953335, - "tags": { - "amenity": "post_box", - "mapillary": "178904577730788", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 76", - "ref:GB:uprn": "10015430891", - "survey:date": "2021-09-01", - "website": "https://www.royalmail.com/services-near-you/postbox/queen-bower-po36-0lt/0000PO3676" - } -}, -{ - "type": "node", - "id": 767915251, - "lat": 55.9772023, - "lon": -3.1796867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "464463845606295", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 51", - "royal_cypher": "scottish_crown", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 767918932, - "lat": 55.9803015, - "lon": -3.1976822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1177843030218835", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 59", - "royal_cypher": "scottish_crown", - "source": "Bing;survey", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 767918939, - "lat": 55.9765865, - "lon": -3.1854489, - "tags": { - "amenity": "post_box", - "note": "postboxes 71 and 233 are interchanged on the Post Office database - is it wrong, or are the labels on the wrong boxes?", - "ref": "EH6 233" - } -}, -{ - "type": "node", - "id": 767918941, - "lat": 55.9789189, - "lon": -3.1867824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "485294885921985", - "note": "postboxes 71 and 233 are interchanged on the Post Office database - is it wrong, or are the labels on the wrong boxes?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 71", - "survey:date": "2020-05-04" - } -}, -{ - "type": "node", - "id": 767923006, - "lat": 51.1739907, - "lon": 0.8594565, - "tags": { - "amenity": "post_box", - "ref": "TN25 239" - } -}, -{ - "type": "node", - "id": 767984638, - "lat": 52.8979408, - "lon": -1.4529432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 718", - "source": "survey" - } -}, -{ - "type": "node", - "id": 767984656, - "lat": 52.8979236, - "lon": -1.4529489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 784", - "source": "survey" - } -}, -{ - "type": "node", - "id": 768244214, - "lat": 53.0588665, - "lon": -1.3362771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "71.5031738", - "fixme": "location approximate", - "geograph:id": "3454637", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 309", - "source:details": "Geograph" - } -}, -{ - "type": "node", - "id": 768263551, - "lat": 50.9574469, - "lon": -1.7529041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SP6", - "ref": "SP6 277D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 768553242, - "lat": 51.5673989, - "lon": -4.0882685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "ref": "SA3 378", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 768572562, - "lat": 52.4420060, - "lon": -2.9420840, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY7 121", - "source": "survey" - } -}, -{ - "type": "node", - "id": 768583970, - "lat": 53.7757839, - "lon": -1.0787871, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO8 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 768583976, - "lat": 53.7676901, - "lon": -1.0959835, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 768583983, - "lat": 53.7512667, - "lon": -1.0993207, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 36" - } -}, -{ - "type": "node", - "id": 768667896, - "lat": 52.2508404, - "lon": -0.8570678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN3 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 768896449, - "lat": 55.8810395, - "lon": -4.2836827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G20 436" - } -}, -{ - "type": "node", - "id": 768907647, - "lat": 52.0670744, - "lon": -3.1797236, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR3 629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 768936090, - "lat": 51.8486238, - "lon": 0.4398774, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 768939718, - "lat": 52.4304895, - "lon": -0.1466781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE26 226" - } -}, -{ - "type": "node", - "id": 768944034, - "lat": 51.8408771, - "lon": 0.4158944, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 768944526, - "lat": 51.8395377, - "lon": 0.4044470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 768945174, - "lat": 51.8084545, - "lon": 0.3519761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 768951573, - "lat": 51.7762450, - "lon": 0.5476700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 768952310, - "lat": 51.7615253, - "lon": 0.5847382, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 768952753, - "lat": 51.7877608, - "lon": 0.6424378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 769111241, - "lat": 52.9151455, - "lon": -1.4660930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:15", - "note": "First Class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE1 797", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 769125482, - "lat": 53.0693045, - "lon": -1.2937859, - "tags": { - "amenity": "post_box", - "ele": "146", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 769136253, - "lat": 53.0756651, - "lon": -1.2951283, - "tags": { - "amenity": "post_box", - "ele": "150.3306885" - } -}, -{ - "type": "node", - "id": 769139928, - "lat": 53.0768744, - "lon": -1.3004485, - "tags": { - "amenity": "post_box", - "ele": "133.7480469" - } -}, -{ - "type": "node", - "id": 769140146, - "lat": 51.5657952, - "lon": -0.2078189, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 769151543, - "lat": 51.3358315, - "lon": 1.3865585, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-01", - "ref": "CT11 106" - } -}, -{ - "type": "node", - "id": 769154159, - "lat": 51.1888359, - "lon": 1.3985352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 769185799, - "lat": 53.5217582, - "lon": -2.6691989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 267", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 769190613, - "lat": 53.0944741, - "lon": -1.3190351, - "tags": { - "amenity": "post_box", - "ele": "113.8009033" - } -}, -{ - "type": "node", - "id": 769218872, - "lat": 53.7872518, - "lon": -1.0611650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO8 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 769218876, - "lat": 53.7974225, - "lon": -1.0382394, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO8 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 769219121, - "lat": 53.7688230, - "lon": -1.1685502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO8 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 769300676, - "lat": 57.6363793, - "lon": -3.3084412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV30 126" - } -}, -{ - "type": "node", - "id": 769363954, - "lat": 53.5209848, - "lon": -2.6514691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 261", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 769373121, - "lat": 51.2061734, - "lon": -0.6871278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "GU3 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 769421672, - "lat": 58.2103387, - "lon": -6.3853068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HS1 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 769421673, - "lat": 58.2074965, - "lon": -6.3913583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HS1 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 769421675, - "lat": 58.2056248, - "lon": -6.3778653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HS1 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 769421678, - "lat": 58.2085603, - "lon": -6.3873145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HS1 172", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 769421679, - "lat": 58.2084542, - "lon": -6.3896501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HS1 11", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 770071504, - "lat": 51.2084765, - "lon": -0.5827495, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU3 102", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU3 102D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 770191523, - "lat": 51.3726134, - "lon": 0.5575792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 265" - } -}, -{ - "type": "node", - "id": 770191731, - "lat": 51.3686553, - "lon": 0.5744541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 417" - } -}, -{ - "type": "node", - "id": 770191763, - "lat": 51.3675534, - "lon": 0.5668280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 397" - } -}, -{ - "type": "node", - "id": 770191784, - "lat": 51.3699649, - "lon": 0.5616806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 280" - } -}, -{ - "type": "node", - "id": 770335944, - "lat": 52.7672737, - "lon": -0.8765159, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 770422619, - "lat": 54.8189809, - "lon": -1.6189517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 274" - } -}, -{ - "type": "node", - "id": 770430067, - "lat": 50.9279590, - "lon": -1.0880453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770458101, - "lat": 54.8206955, - "lon": -1.6207494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 170" - } -}, -{ - "type": "node", - "id": 770472024, - "lat": 52.5675868, - "lon": -1.5344205, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 31", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 770539470, - "lat": 52.3774729, - "lon": -0.2689096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770556451, - "lat": 52.5804594, - "lon": -1.6015185, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 44", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 770634776, - "lat": 52.5831157, - "lon": -1.5993478, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 45", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 770634805, - "lat": 52.5881071, - "lon": -1.5993748, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 27", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 770634854, - "lat": 52.5910667, - "lon": -1.5965250, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 28", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 770694389, - "lat": 51.4679199, - "lon": -2.6126693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS8 384D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 770694390, - "lat": 51.4687517, - "lon": -2.6136609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BS8 1383;BS8 1384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770694391, - "lat": 51.4704084, - "lon": -2.6155289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS8 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770694392, - "lat": 51.4610940, - "lon": -2.6022523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS2 1302", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770694393, - "lat": 51.4625268, - "lon": -2.6056199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS6 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770694394, - "lat": 51.4643986, - "lon": -2.6090565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS6 1387", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770738147, - "lat": 51.4740335, - "lon": -2.6255738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 531", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 770738149, - "lat": 51.4803692, - "lon": -2.6487395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 520", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770738152, - "lat": 51.4795858, - "lon": -2.6341471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS9 535", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770738153, - "lat": 51.4732243, - "lon": -2.6332411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 379D" - } -}, -{ - "type": "node", - "id": 770738156, - "lat": 51.4722743, - "lon": -2.6376907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 532D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 770738158, - "lat": 51.4802709, - "lon": -2.6453549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BS9 391", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770753041, - "lat": 51.4925430, - "lon": -2.6520611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS9 374", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770753045, - "lat": 51.4945247, - "lon": -2.6479887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 501D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770753049, - "lat": 51.4884186, - "lon": -2.6491024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 1072", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770753052, - "lat": 51.4823298, - "lon": -2.6406308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 484D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 770753055, - "lat": 51.4895918, - "lon": -2.6524974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 518D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770760421, - "lat": 51.4636413, - "lon": -2.5898488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BS1 1319;BS1 1320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770760424, - "lat": 51.4682413, - "lon": -2.5919958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BS6 2318D;BS6 2319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770760426, - "lat": 51.4706786, - "lon": -2.5938967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "old_ref": "BS7 288", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 338D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 770773448, - "lat": 51.4769997, - "lon": -2.5798981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS7 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 770773451, - "lat": 51.4729682, - "lon": -2.5911695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 1352", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 770773453, - "lat": 51.4750219, - "lon": -2.5976034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS7 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770773455, - "lat": 51.4750903, - "lon": -2.5911181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:40; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770773457, - "lat": 51.4749995, - "lon": -2.5882207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 288", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 770773458, - "lat": 51.4723629, - "lon": -2.5831323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS6 286", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 770778145, - "lat": 51.4918219, - "lon": -2.5839889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS7 1314", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 770778146, - "lat": 51.5010343, - "lon": -2.5731909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS7 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770778147, - "lat": 51.5012003, - "lon": -2.5793662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 1365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770784153, - "lat": 51.4826851, - "lon": -2.5727031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS7 1277" - } -}, -{ - "type": "node", - "id": 770784156, - "lat": 51.4594877, - "lon": -2.5883342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "collection_times_checked": "2015-08-12", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS1 2037", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 770784157, - "lat": 51.4594877, - "lon": -2.5883407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "collection_times_checked": "2015-08-12", - "description": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BS1 4011", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 771114001, - "lat": 52.5766052, - "lon": -1.5468984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV9 1;CV9 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 771114014, - "lat": 52.5778395, - "lon": -1.5484829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV9 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 771167974, - "lat": 51.5630919, - "lon": 0.7189715, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 771170152, - "lat": 51.5843117, - "lon": 0.7116579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "SS4 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 771170523, - "lat": 51.5841763, - "lon": 0.7271361, - "tags": { - "amenity": "post_box", - "name": "Cherry Tree" - } -}, -{ - "type": "node", - "id": 771171434, - "lat": 51.6010450, - "lon": 0.7460006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SS4 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 771185258, - "lat": 51.5722017, - "lon": 0.7233489, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 771185259, - "lat": 51.5698544, - "lon": 0.7363093, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 771186927, - "lat": 51.5553145, - "lon": 0.7901037, - "tags": { - "amenity": "post_box", - "ref": "SS3 267" - } -}, -{ - "type": "node", - "id": 771191211, - "lat": 52.6100513, - "lon": -1.5181969, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 21", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771191318, - "lat": 52.6042187, - "lon": -1.5260208, - "tags": { - "amenity": "post_box", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771205992, - "lat": 51.5618589, - "lon": -0.2140057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW2 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 771205993, - "lat": 51.5618877, - "lon": -0.2140300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NW2 101", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 771206010, - "lat": 51.5726935, - "lon": -0.2051236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 45" - } -}, -{ - "type": "node", - "id": 771212314, - "lat": 50.6945100, - "lon": -1.2928601, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 66D", - "ref:GB:uprn": "10015357202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/avondale-road-po30-1ae/0000PO3066" - } -}, -{ - "type": "node", - "id": 771230675, - "lat": 52.5734181, - "lon": -1.5501610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "postal_code": "CV9", - "ref": "CV9 41", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771230688, - "lat": 52.5691925, - "lon": -1.5325320, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 48", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771230715, - "lat": 52.5687054, - "lon": -1.5294956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "postal_code": "CV9", - "ref": "CV9 35", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771237524, - "lat": 52.5728545, - "lon": -1.5369777, - "tags": { - "amenity": "post_box", - "postal_code": "CV9", - "ref": "CV9 34", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771237541, - "lat": 52.5751543, - "lon": -1.5431096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "CV9", - "ref": "CV9 32", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 771248734, - "lat": 51.5669962, - "lon": -0.1536717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "ref": "N6 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 771319051, - "lat": 53.1529352, - "lon": -0.2030385, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 306", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 771373502, - "lat": 51.4710307, - "lon": -2.1377786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 771373503, - "lat": 51.4685612, - "lon": -2.1388568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 771403524, - "lat": 50.7357869, - "lon": -1.9085760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 771486533, - "lat": 51.4341556, - "lon": -0.0882787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE21 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 771647648, - "lat": 54.3191485, - "lon": -2.5258328, - "tags": { - "amenity": "post_box", - "ref": "LA10 49", - "source": "survey" - } -}, -{ - "type": "node", - "id": 771648738, - "lat": 54.2722509, - "lon": -2.4072914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA10 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 771722850, - "lat": 52.8122032, - "lon": -0.3980371, - "tags": { - "amenity": "post_box", - "name": "Stainfield" - } -}, -{ - "type": "node", - "id": 771725054, - "lat": 52.8015696, - "lon": -0.3912195, - "tags": { - "amenity": "post_box", - "name": "Hanthorpe post box" - } -}, -{ - "type": "node", - "id": 771766893, - "lat": 52.8892450, - "lon": -1.4514952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 466", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772048473, - "lat": 51.3879054, - "lon": -0.1270244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 213" - } -}, -{ - "type": "node", - "id": 772048478, - "lat": 51.3903298, - "lon": -0.1327325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 333" - } -}, -{ - "type": "node", - "id": 772048483, - "lat": 51.3864904, - "lon": -0.1174706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772048489, - "lat": 51.3851360, - "lon": -0.1253036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 374" - } -}, -{ - "type": "node", - "id": 772048492, - "lat": 51.3822821, - "lon": -0.1264489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "Information plate unreadable", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CR0 588D" - } -}, -{ - "type": "node", - "id": 772048495, - "lat": 51.3884988, - "lon": -0.1150235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 110" - } -}, -{ - "type": "node", - "id": 772070568, - "lat": 51.3891318, - "lon": -0.1042612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 16" - } -}, -{ - "type": "node", - "id": 772070573, - "lat": 51.3814453, - "lon": -0.1055581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 39" - } -}, -{ - "type": "node", - "id": 772070576, - "lat": 51.3915351, - "lon": -0.0945563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 89" - } -}, -{ - "type": "node", - "id": 772070579, - "lat": 51.3808251, - "lon": -0.1083392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 47" - } -}, -{ - "type": "node", - "id": 772070581, - "lat": 51.3866287, - "lon": -0.1072997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 234", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 772070583, - "lat": 51.3839780, - "lon": -0.1084873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 30" - } -}, -{ - "type": "node", - "id": 772083090, - "lat": 51.3868079, - "lon": -0.0764130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 303" - } -}, -{ - "type": "node", - "id": 772083095, - "lat": 51.3845136, - "lon": -0.0896065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 235" - } -}, -{ - "type": "node", - "id": 772083104, - "lat": 51.3822801, - "lon": -0.0819055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR0 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772083115, - "lat": 51.3872433, - "lon": -0.0954701, - "tags": { - "amenity": "post_box", - "mapillary": "705826433572135", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 154", - "survey:date": "2020-03-02" - } -}, -{ - "type": "node", - "id": 772083119, - "lat": 51.3890262, - "lon": -0.0807427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 585" - } -}, -{ - "type": "node", - "id": 772083126, - "lat": 51.3905230, - "lon": -0.0772678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 58" - } -}, -{ - "type": "node", - "id": 772083134, - "lat": 51.3868582, - "lon": -0.0918959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CR0 60D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772107552, - "lat": 51.3796892, - "lon": -0.0681717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 248" - } -}, -{ - "type": "node", - "id": 772107556, - "lat": 51.3854897, - "lon": -0.0729630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 181" - } -}, -{ - "type": "node", - "id": 772107557, - "lat": 51.3770752, - "lon": -0.0687409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 249" - } -}, -{ - "type": "node", - "id": 772107558, - "lat": 51.3744424, - "lon": -0.0692888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 396" - } -}, -{ - "type": "node", - "id": 772107560, - "lat": 51.3764603, - "lon": -0.0727494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 195" - } -}, -{ - "type": "node", - "id": 772107563, - "lat": 51.3822612, - "lon": -0.0680754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 197" - } -}, -{ - "type": "node", - "id": 772107566, - "lat": 51.3821058, - "lon": -0.0701506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 503" - } -}, -{ - "type": "node", - "id": 772107569, - "lat": 51.3751006, - "lon": -0.0747516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 128" - } -}, -{ - "type": "node", - "id": 772107572, - "lat": 51.3817466, - "lon": -0.0752202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 294D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772107575, - "lat": 51.3842710, - "lon": -0.0721908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 245" - } -}, -{ - "type": "node", - "id": 772124144, - "lat": 51.3771788, - "lon": -0.0778478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 10D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772124145, - "lat": 51.3794464, - "lon": -0.0749214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 208" - } -}, -{ - "type": "node", - "id": 772124147, - "lat": 51.3850289, - "lon": -0.0686390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 516" - } -}, -{ - "type": "node", - "id": 772124149, - "lat": 51.3754463, - "lon": -0.0808020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CR0 4", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772124150, - "lat": 51.3865697, - "lon": -0.0600409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 555" - } -}, -{ - "type": "node", - "id": 772124151, - "lat": 51.3754366, - "lon": -0.0645513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 299" - } -}, -{ - "type": "node", - "id": 772124154, - "lat": 51.3798827, - "lon": -0.0626693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772124157, - "lat": 51.3822708, - "lon": -0.0638285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 391", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772143784, - "lat": 51.3790345, - "lon": -0.0517142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CR0 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 772143788, - "lat": 51.3916308, - "lon": -0.0532656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 457" - } -}, -{ - "type": "node", - "id": 772143791, - "lat": 51.3770415, - "lon": -0.0539924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 361" - } -}, -{ - "type": "node", - "id": 772143794, - "lat": 51.3742146, - "lon": -0.0515130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772143797, - "lat": 51.3893810, - "lon": -0.0484680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 372" - } -}, -{ - "type": "node", - "id": 772143800, - "lat": 51.3777913, - "lon": -0.0478132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 517" - } -}, -{ - "type": "node", - "id": 772143803, - "lat": 51.3765730, - "lon": -0.0600554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 318", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772143805, - "lat": 51.3885567, - "lon": -0.0520937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 388", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772143808, - "lat": 51.3870719, - "lon": -0.0450872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 280" - } -}, -{ - "type": "node", - "id": 772143811, - "lat": 51.3859901, - "lon": -0.0628020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 309" - } -}, -{ - "type": "node", - "id": 772143814, - "lat": 51.3884801, - "lon": -0.0598941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 581" - } -}, -{ - "type": "node", - "id": 772143819, - "lat": 51.3806723, - "lon": -0.0417134, - "tags": { - "amenity": "post_box", - "mapillary": "524503671887778", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 279", - "survey:date": "2019-08-23" - } -}, -{ - "type": "node", - "id": 772403907, - "lat": 51.4113901, - "lon": -1.0419420, - "tags": { - "amenity": "post_box", - "mapillary": "853316288862216", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-01-09" - } -}, -{ - "type": "node", - "id": 772404051, - "lat": 51.4242803, - "lon": -1.0683955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG7 183" - } -}, -{ - "type": "node", - "id": 772410923, - "lat": 52.4691174, - "lon": -1.8030348, - "tags": { - "amenity": "post_box", - "ref": "B26 446", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 772435085, - "lat": 51.9009100, - "lon": 0.6262241, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 772435089, - "lat": 51.9050252, - "lon": 0.5734794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 772437165, - "lat": 51.9049105, - "lon": 0.5616725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 772503984, - "lat": 51.9878267, - "lon": 0.7521295, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO8 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 772514967, - "lat": 51.9596519, - "lon": 0.7730949, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 772517335, - "lat": 51.9368779, - "lon": 0.7589239, - "tags": { - "amenity": "post_box", - "note": "probably built into wall, \"Wakes Colne Green\" name?" - } -}, -{ - "type": "node", - "id": 772597155, - "lat": 55.9302979, - "lon": -3.1705559, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "ref": "EH16 117", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 772647350, - "lat": 51.2286841, - "lon": -0.6175259, - "tags": { - "amenity": "post_box", - "ref": "GU3 77" - } -}, -{ - "type": "node", - "id": 772647357, - "lat": 51.2238820, - "lon": -0.5870312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU3 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 772839787, - "lat": 51.0228222, - "lon": -0.9463853, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of the modern latest EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 772840323, - "lat": 52.3963905, - "lon": -1.8119157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B90", - "ref": "B90 366", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 772887521, - "lat": 51.4611519, - "lon": -2.4901603, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 772985678, - "lat": 50.7240391, - "lon": -1.8923741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "Outside 15 Surrey Road. Victorian anonymous", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 24", - "ref:GB:uprn": "10015389681" - } -}, -{ - "type": "node", - "id": 772987876, - "lat": 51.3616110, - "lon": -0.1177594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 430" - } -}, -{ - "type": "node", - "id": 772987880, - "lat": 51.3668256, - "lon": -0.1163810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 19" - } -}, -{ - "type": "node", - "id": 772987883, - "lat": 51.3744170, - "lon": -0.1193765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CR0 450D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772987886, - "lat": 51.3567052, - "lon": -0.1166294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772987889, - "lat": 51.3765314, - "lon": -0.1201263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 525" - } -}, -{ - "type": "node", - "id": 772989307, - "lat": 51.5522134, - "lon": -1.0009632, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772989309, - "lat": 51.5521280, - "lon": -0.9951455, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772989312, - "lat": 51.5528935, - "lon": -1.0316718, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772989509, - "lat": 51.3607853, - "lon": -0.1127532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 582" - } -}, -{ - "type": "node", - "id": 772989510, - "lat": 51.3630206, - "lon": -0.1118436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 313" - } -}, -{ - "type": "node", - "id": 772989511, - "lat": 51.3708832, - "lon": -0.1003366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "name": "High Street (78A) Whitgift Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CR0 21;CR0 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772989512, - "lat": 51.3718019, - "lon": -0.1089415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 772989513, - "lat": 51.3716381, - "lon": -0.1036125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR0 101D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772989514, - "lat": 51.3705632, - "lon": -0.0995288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa-Su off", - "drive_through": "no", - "name": "Impact House Business Box", - "opening_hours": "Mo-Fr 13:00-18:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CR0 606", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772989515, - "lat": 51.3653524, - "lon": -0.1076788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 552D" - } -}, -{ - "type": "node", - "id": 772989516, - "lat": 51.3665841, - "lon": -0.1050705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 17" - } -}, -{ - "type": "node", - "id": 772992408, - "lat": 51.3727855, - "lon": -0.0970064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Park Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772992410, - "lat": 51.3723952, - "lon": -0.0987244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 559" - } -}, -{ - "type": "node", - "id": 772992411, - "lat": 51.3750188, - "lon": -0.0978975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772992412, - "lat": 51.3753005, - "lon": -0.0971933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CR0 31;CR0 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 772993247, - "lat": 51.6060636, - "lon": -1.8488784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 773013764, - "lat": 55.9564669, - "lon": -3.1383316, - "tags": { - "access": "yes", - "amenity": "post_box", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "ref": "EH7 349" - } -}, -{ - "type": "node", - "id": 773013770, - "lat": 55.9490695, - "lon": -3.0993846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 506", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773013775, - "lat": 55.9510600, - "lon": -3.1072184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH15 511", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 773013779, - "lat": 55.9554207, - "lon": -3.1184056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1370568546809156", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 504", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 773013780, - "lat": 55.9565992, - "lon": -3.1321784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH7 269", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 773067903, - "lat": 51.6511445, - "lon": -0.1498843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN4 82" - } -}, -{ - "type": "node", - "id": 773075505, - "lat": 57.0332254, - "lon": -5.9680429, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV44 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773154363, - "lat": 52.4669796, - "lon": -1.7987857, - "tags": { - "amenity": "post_box", - "ref": "B26 351", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 773160707, - "lat": 54.1993515, - "lon": -2.6597303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 129" - } -}, -{ - "type": "node", - "id": 773160710, - "lat": 54.1915165, - "lon": -2.7201023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 89" - } -}, -{ - "type": "node", - "id": 773160714, - "lat": 54.1376386, - "lon": -2.6507478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 773231391, - "lat": 51.3760949, - "lon": -1.9483160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN10 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 773243224, - "lat": 51.3529889, - "lon": -1.9853515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "136026655231495", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-03-24" - } -}, -{ - "type": "node", - "id": 773334637, - "lat": 52.4684194, - "lon": -1.7933178, - "tags": { - "amenity": "post_box", - "postal_code": "B26", - "ref": "B26 424", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 773335484, - "lat": 56.2042485, - "lon": -4.7123118, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 773343585, - "lat": 51.3679939, - "lon": -0.0992524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773343591, - "lat": 51.3640480, - "lon": -0.0818780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 187" - } -}, -{ - "type": "node", - "id": 773343596, - "lat": 51.3689893, - "lon": -0.0858975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773343599, - "lat": 51.3636778, - "lon": -0.0978984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 61" - } -}, -{ - "type": "node", - "id": 773343604, - "lat": 51.3699815, - "lon": -0.0968418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773343608, - "lat": 51.3692124, - "lon": -0.0894981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR0 247", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773343611, - "lat": 51.3654578, - "lon": -0.0990523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 426", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773343615, - "lat": 51.3788847, - "lon": -0.0954874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CR0 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773343618, - "lat": 51.3652750, - "lon": -0.0866108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 113" - } -}, -{ - "type": "node", - "id": 773346724, - "lat": 52.4664509, - "lon": -1.7903818, - "tags": { - "amenity": "post_box", - "postal_code": "B26", - "ref": "B26 831", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 773348536, - "lat": 51.3736776, - "lon": -0.0307566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 315", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773348537, - "lat": 51.3591715, - "lon": -0.0311177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 451", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 773348538, - "lat": 51.3718029, - "lon": -0.0680002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 330" - } -}, -{ - "type": "node", - "id": 773348539, - "lat": 51.3766557, - "lon": -0.0368897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773348541, - "lat": 51.3715987, - "lon": -0.0743516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 415", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 773348542, - "lat": 51.3752258, - "lon": -0.0459098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 347" - } -}, -{ - "type": "node", - "id": 773348543, - "lat": 51.3766551, - "lon": -0.0393433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR0 536D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773348544, - "lat": 51.3745749, - "lon": -0.0257348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 394" - } -}, -{ - "type": "node", - "id": 773348545, - "lat": 51.3732117, - "lon": -0.0821959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 72" - } -}, -{ - "type": "node", - "id": 773348546, - "lat": 51.3727886, - "lon": -0.0557693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 310" - } -}, -{ - "type": "node", - "id": 773478203, - "lat": 52.4637246, - "lon": -1.7887238, - "tags": { - "amenity": "post_box", - "postal_code": "B26", - "ref": "B26 896", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 773531291, - "lat": 52.0403038, - "lon": -1.0297647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 773531292, - "lat": 52.0008169, - "lon": -0.9758190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773532984, - "lat": 52.0044728, - "lon": -0.9795503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 773563071, - "lat": 55.8752903, - "lon": -4.2706033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "ref": "G20 60" - } -}, -{ - "type": "node", - "id": 773619496, - "lat": 53.8480595, - "lon": -2.5998412, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 773638199, - "lat": 51.9927224, - "lon": -0.9908686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 773660078, - "lat": 51.5971458, - "lon": -2.9762719, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 773836345, - "lat": 52.0831019, - "lon": -4.6611149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA43 36" - } -}, -{ - "type": "node", - "id": 773836480, - "lat": 52.0798703, - "lon": -4.6601096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA43 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 773903790, - "lat": 51.8860700, - "lon": -0.2686620, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SG4 119D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 773908393, - "lat": 51.8939010, - "lon": -0.1587354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "SG2 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 773909628, - "lat": 51.8901060, - "lon": -0.1596690, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 773933207, - "lat": 52.0853395, - "lon": -4.6592868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SA43 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 773959068, - "lat": 51.4954064, - "lon": -2.5455191, - "tags": { - "amenity": "post_box", - "ref": "BS16 712" - } -}, -{ - "type": "node", - "id": 774075148, - "lat": 55.9211891, - "lon": -3.2187971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "note": "Collection times updated 2018-06-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 230", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 774077596, - "lat": 52.9518777, - "lon": -1.1314564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "VR pillar replaced with modern EIIR lamp box (2017)", - "old_royal_cypher": "VR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG2 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 774077597, - "lat": 52.9547156, - "lon": -1.1301753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 234D", - "ref:GB:uprn": "10015459651", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 774092469, - "lat": 52.2428315, - "lon": -4.2582300, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SA46 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 774432260, - "lat": 52.6828085, - "lon": -1.8253945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "WS13 20", - "royal_cypher": "EIIR", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 774466439, - "lat": 52.1484959, - "lon": -4.1941674, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 774747854, - "lat": 51.3413645, - "lon": -0.7782367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 774934631, - "lat": 50.7371085, - "lon": -3.6324366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX4 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 774936091, - "lat": 50.7380574, - "lon": -3.6047347, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 774957897, - "lat": 53.7882371, - "lon": -3.0317036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 775230136, - "lat": 52.5027961, - "lon": -0.0415057, - "tags": { - "amenity": "post_box", - "ref": "PE15 19" - } -}, -{ - "type": "node", - "id": 775238824, - "lat": 51.5676479, - "lon": -1.7385914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 336", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 775286916, - "lat": 52.1057179, - "lon": -2.0887953, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR10 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey;bing", - "source:ref": "observation" - } -}, -{ - "type": "node", - "id": 775286917, - "lat": 52.1066308, - "lon": -2.0831761, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR10 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 775294637, - "lat": 52.9510760, - "lon": -1.1344211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG2 97D", - "ref:GB:uprn": "10015359061", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775345814, - "lat": 52.4976651, - "lon": -0.0195855, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE15 38" - } -}, -{ - "type": "node", - "id": 775373379, - "lat": 51.3519023, - "lon": -0.0211250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 506" - } -}, -{ - "type": "node", - "id": 775373380, - "lat": 51.3460822, - "lon": -0.0189318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 405" - } -}, -{ - "type": "node", - "id": 775373381, - "lat": 51.3527596, - "lon": -0.0111941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 504" - } -}, -{ - "type": "node", - "id": 775373382, - "lat": 51.3578052, - "lon": -0.0168141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 568" - } -}, -{ - "type": "node", - "id": 775373383, - "lat": 51.3430207, - "lon": -0.0056486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 607" - } -}, -{ - "type": "node", - "id": 775373384, - "lat": 51.3528082, - "lon": -0.0161068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775373385, - "lat": 51.3557230, - "lon": -0.0204309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775373386, - "lat": 51.3496585, - "lon": -0.0193719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 486" - } -}, -{ - "type": "node", - "id": 775374966, - "lat": 51.3353636, - "lon": -0.0106240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 535" - } -}, -{ - "type": "node", - "id": 775374967, - "lat": 51.3412879, - "lon": -0.0144464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CR0 443;CR0 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775374968, - "lat": 51.3521287, - "lon": -0.0382641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775374969, - "lat": 51.3391442, - "lon": -0.0090825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR0 494", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 775374970, - "lat": 51.3378879, - "lon": -0.0139446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 586" - } -}, -{ - "type": "node", - "id": 775374971, - "lat": 51.3433980, - "lon": -0.0373276, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 775374972, - "lat": 51.3462244, - "lon": -0.0125939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 501" - } -}, -{ - "type": "node", - "id": 775376152, - "lat": 51.3702824, - "lon": -0.0432935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 360" - } -}, -{ - "type": "node", - "id": 775376153, - "lat": 51.3722457, - "lon": -0.0345556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775376154, - "lat": 51.3400091, - "lon": -0.0234682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR0 575D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775376155, - "lat": 51.3656285, - "lon": -0.0385288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 275" - } -}, -{ - "type": "node", - "id": 775376156, - "lat": 51.3706702, - "lon": -0.0381670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 400", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 775376157, - "lat": 51.3675439, - "lon": -0.0362760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 498" - } -}, -{ - "type": "node", - "id": 775376158, - "lat": 51.3467948, - "lon": -0.0418369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 84" - } -}, -{ - "type": "node", - "id": 775376159, - "lat": 51.3732179, - "lon": -0.0407333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 389" - } -}, -{ - "type": "node", - "id": 775376160, - "lat": 51.3486524, - "lon": -0.0357072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 327" - } -}, -{ - "type": "node", - "id": 775376938, - "lat": 51.3626433, - "lon": -0.0688737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "name": "Coombe Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR0 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775376939, - "lat": 51.3541725, - "lon": -0.0403035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 499" - } -}, -{ - "type": "node", - "id": 775376940, - "lat": 51.3587459, - "lon": -0.0566482, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 406" - } -}, -{ - "type": "node", - "id": 775376941, - "lat": 51.3892995, - "lon": -0.1416700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 177D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 775376942, - "lat": 51.3559231, - "lon": -0.0491787, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-06", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR0 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 775380004, - "lat": 50.7231944, - "lon": -1.1387321, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "791647008630418", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO33 73", - "ref:GB:uprn": "10015412625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/thornton-cross-po33-1aa/0000PO3373" - } -}, -{ - "type": "node", - "id": 775387325, - "lat": 56.0032023, - "lon": -2.6273163, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH42 230" - } -}, -{ - "type": "node", - "id": 775387328, - "lat": 56.0585484, - "lon": -2.7169514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH39 168", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 775526527, - "lat": 51.6034549, - "lon": -1.6399838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN6 276" - } -}, -{ - "type": "node", - "id": 775578661, - "lat": 55.0463427, - "lon": -1.6264615, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 6JP", - "ref": "NE13 440" - } -}, -{ - "type": "node", - "id": 775601467, - "lat": 50.6040119, - "lon": -3.6020948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 280", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 775626975, - "lat": 51.3466483, - "lon": -0.7777332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU47 42D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 775626976, - "lat": 51.3441024, - "lon": -0.7841892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "124535433361774", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 28D", - "royal_cypher": "EIIR", - "survey:date": "2021-12-01" - } -}, -{ - "type": "node", - "id": 775640049, - "lat": 52.4279780, - "lon": -1.8087667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "B91", - "ref": "B91 609", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 775650246, - "lat": 52.4246156, - "lon": -1.7844609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B91 989", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 775688224, - "lat": 52.4273133, - "lon": -1.7747124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B91", - "ref": "B91 988", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 775688288, - "lat": 52.4273231, - "lon": -1.7747131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "B91", - "ref": "B91 9025", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 775765791, - "lat": 54.0785965, - "lon": -2.7608240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 775862636, - "lat": 52.4376663, - "lon": -1.7968520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B92", - "ref": "B92 673", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 775878296, - "lat": 52.5434419, - "lon": 0.1947709, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE14 50" - } -}, -{ - "type": "node", - "id": 775878363, - "lat": 52.5298314, - "lon": 0.2078079, - "tags": { - "amenity": "post_box", - "ref": "PE14 128" - } -}, -{ - "type": "node", - "id": 775878389, - "lat": 52.5594056, - "lon": 0.1939958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE14 49" - } -}, -{ - "type": "node", - "id": 775881221, - "lat": 56.1175769, - "lon": -3.1626774, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "KY2", - "ref": "KY2 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 775888179, - "lat": 54.0657673, - "lon": -2.0026876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 775896384, - "lat": 53.2287275, - "lon": -1.2917074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "ele": "167.63", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "S44 116;S44 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 775896392, - "lat": 53.2336974, - "lon": -1.3198263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "80.4", - "post_box:type": "lamp", - "ref": "S44 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 775915555, - "lat": 53.2565820, - "lon": -2.9252350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CH66 377" - } -}, -{ - "type": "node", - "id": 775936253, - "lat": 55.6273175, - "lon": -4.6382046, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA11 1311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 775961939, - "lat": 51.9433373, - "lon": 0.9970093, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 775964536, - "lat": 51.9437634, - "lon": 0.9761422, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 775964973, - "lat": 51.9324791, - "lon": 0.9078424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 775965713, - "lat": 51.9457673, - "lon": 0.9085291, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 775967500, - "lat": 51.9495788, - "lon": 0.9116512, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 775996973, - "lat": 52.3066393, - "lon": -1.1231401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN6 532" - } -}, -{ - "type": "node", - "id": 776000378, - "lat": 53.2065029, - "lon": -4.1536760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL57 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 776019225, - "lat": 52.6646769, - "lon": -1.9673274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WS11 129", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 776019939, - "lat": 53.2256564, - "lon": -4.5219870, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "fixme": "This post box is so strange. The \"LL77 330\" reference is for a postbox which is notionally according to the Royal Mail file in Llangeni over 14km away, but there isn't a post at that location. There is one here though.", - "ref": "LL77 330" - } -}, -{ - "type": "node", - "id": 776042729, - "lat": 55.9032440, - "lon": -3.5461239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH54 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 776411865, - "lat": 51.4551541, - "lon": -0.2931625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 176D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 776564026, - "lat": 51.5326344, - "lon": -0.2003722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 776652261, - "lat": 51.5305950, - "lon": -0.1975716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 776711184, - "lat": 52.1119833, - "lon": -2.0850798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR10 447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 776860454, - "lat": 53.3128133, - "lon": -3.8229143, - "tags": { - "amenity": "post_box", - "ref": "LL30 152" - } -}, -{ - "type": "node", - "id": 776860487, - "lat": 53.3135829, - "lon": -3.8302462, - "tags": { - "amenity": "post_box", - "ref": "LL30 141" - } -}, -{ - "type": "node", - "id": 776860693, - "lat": 53.3142801, - "lon": -3.8255060, - "tags": { - "amenity": "post_box", - "ref": "LL30 151" - } -}, -{ - "type": "node", - "id": 777018437, - "lat": 51.4833397, - "lon": -0.1943147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW6 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 777073754, - "lat": 52.4403223, - "lon": -1.7832190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 1006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 777130524, - "lat": 52.4311964, - "lon": -1.7807322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B91", - "ref": "B91 980", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 777952936, - "lat": 56.1926229, - "lon": -3.9609870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 778069317, - "lat": 52.4284104, - "lon": -1.7950737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B92", - "ref": "B92 685", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 778141689, - "lat": 51.0910572, - "lon": -0.9380058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "200856951755092", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-23" - } -}, -{ - "type": "node", - "id": 778159272, - "lat": 52.2033835, - "lon": -2.1911139, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WR4 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 778159295, - "lat": 52.2049650, - "lon": -2.1856194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 778159400, - "lat": 52.2059501, - "lon": -2.2021922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR4 446", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 778164071, - "lat": 51.1551484, - "lon": -0.9591281, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "last_checked": "2021-08-08", - "note": "This Postbox has the latest collection in this area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU34 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778164073, - "lat": 51.1550285, - "lon": -0.9590926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "This postbox is for Parcels and Franked Mail.", - "last_checked": "2021-08-08", - "old_ref": "GU34 60", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "GU34 60P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778164087, - "lat": 51.1512047, - "lon": -0.9667834, - "tags": { - "amenity": "post_box", - "colour": "gold", - "note": "07/08/2012 - Painted Gold in honour of Olympic gold medallist showjumper, Peter Charles", - "olympic_gold": "Peter Charles", - "post_box:type": "pillar", - "ref": "GU34 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778165212, - "lat": 51.0974110, - "lon": -0.9430146, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778165246, - "lat": 51.0968547, - "lon": -0.9423065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778169806, - "lat": 50.7257144, - "lon": -1.8807284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 276", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778170698, - "lat": 55.0424365, - "lon": -1.6256102, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 6PX", - "ref": "NE13 441" - } -}, -{ - "type": "node", - "id": 778170968, - "lat": 55.0416690, - "lon": -1.6384284, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 7BP", - "ref": "NE13 345" - } -}, -{ - "type": "node", - "id": 778170991, - "lat": 55.0483124, - "lon": -1.6366938, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "NE13 7DT", - "ref": "NE13 347" - } -}, -{ - "type": "node", - "id": 778171008, - "lat": 55.0421284, - "lon": -1.6216556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "NE13 6PG", - "ref": "NE13 236", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 778171235, - "lat": 55.0439173, - "lon": -1.6349178, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 7HB", - "ref": "NE13 276" - } -}, -{ - "type": "node", - "id": 778253719, - "lat": 55.9768434, - "lon": -3.1881066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 195" - } -}, -{ - "type": "node", - "id": 778253720, - "lat": 55.9819434, - "lon": -3.1895058, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-01", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 778261619, - "lat": 54.5141902, - "lon": -1.5503566, - "tags": { - "amenity": "post_box", - "ref": "DL1 225", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 778261634, - "lat": 54.5212571, - "lon": -1.5493697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL1 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 778261644, - "lat": 54.5366476, - "lon": -1.5652442, - "tags": { - "amenity": "post_box", - "ref": "DL3 137", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 778301326, - "lat": 53.6142977, - "lon": -1.5166115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 167" - } -}, -{ - "type": "node", - "id": 778301333, - "lat": 53.6219980, - "lon": -1.4992201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 205" - } -}, -{ - "type": "node", - "id": 778312618, - "lat": 52.9699855, - "lon": -1.3018584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778328107, - "lat": 55.0413049, - "lon": -1.6322454, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE13 7ND", - "ref": "NE13 137" - } -}, -{ - "type": "node", - "id": 778351753, - "lat": 51.0988909, - "lon": -2.5878685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA4 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 778376100, - "lat": 53.7952904, - "lon": -3.0410215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778383683, - "lat": 51.1446739, - "lon": -2.7103355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA6 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778423694, - "lat": 51.1260813, - "lon": -2.6542511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA6 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778480509, - "lat": 52.1644630, - "lon": -1.9829752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR11 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778480572, - "lat": 52.1779374, - "lon": -1.9811960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "heritage": "2", - "heritage:operator": "Historic England", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR11 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778480574, - "lat": 52.1270809, - "lon": -2.1477870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR8 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 778480577, - "lat": 52.1641600, - "lon": -1.9610200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778480579, - "lat": 52.1218689, - "lon": -2.0753603, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 778480587, - "lat": 52.1595060, - "lon": -1.9653286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778480589, - "lat": 52.1354950, - "lon": -2.1082121, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778480592, - "lat": 52.1153711, - "lon": -2.1139849, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 415", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 778480595, - "lat": 52.1692463, - "lon": -2.0545685, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 230" - } -}, -{ - "type": "node", - "id": 778480598, - "lat": 52.1352393, - "lon": -2.0691348, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 778480600, - "lat": 52.1406900, - "lon": -1.9708800, - "tags": { - "amenity": "post_box", - "ref": "WR11 63" - } -}, -{ - "type": "node", - "id": 778480603, - "lat": 52.1470627, - "lon": -2.0657662, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 778480604, - "lat": 52.1452034, - "lon": -2.0300416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR10 233", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 778485211, - "lat": 52.9563421, - "lon": -1.1317461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 192", - "ref:GB:uprn": "10015316985", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778516668, - "lat": 51.3346760, - "lon": -1.8317060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "542857704699718", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN9 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-18" - } -}, -{ - "type": "node", - "id": 778568579, - "lat": 52.9573966, - "lon": -1.1290852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Ref not readable on plate (2015-03-21)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref:GB:uprn": "10015282564", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 778594678, - "lat": 57.1484147, - "lon": -2.1641834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 96", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 778594680, - "lat": 57.1600113, - "lon": -2.1594927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB16 187" - } -}, -{ - "type": "node", - "id": 778594681, - "lat": 57.1597452, - "lon": -2.1504670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB16 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 778652241, - "lat": 51.8844231, - "lon": -0.4527395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 778705004, - "lat": 50.6517616, - "lon": -1.3119986, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO30 11D", - "ref:GB:uprn": "10015346197", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/chillerton-green-po30-3ha/0000PO3011" - } -}, -{ - "type": "node", - "id": 778717449, - "lat": 53.3600585, - "lon": -2.0078888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK22 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778717451, - "lat": 53.3667712, - "lon": -2.0014609, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "fixme": "collection_times", - "ref": "SK22 383" - } -}, -{ - "type": "node", - "id": 778717499, - "lat": 53.3626325, - "lon": -2.0022650, - "tags": { - "amenity": "post_box", - "note": "Reference not visible" - } -}, -{ - "type": "node", - "id": 778717831, - "lat": 51.4904594, - "lon": -3.7030997, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 778778339, - "lat": 55.9676606, - "lon": -3.2242909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 469" - } -}, -{ - "type": "node", - "id": 778778341, - "lat": 55.9657563, - "lon": -3.2435361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "461385308287207", - "note": "information plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 412", - "survey:date": "2020-08-14" - } -}, -{ - "type": "node", - "id": 778778353, - "lat": 55.9805919, - "lon": -3.1775969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "drive_through": "no", - "ref": "EH6 534", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 778778355, - "lat": 55.9780601, - "lon": -3.2044214, - "tags": { - "amenity": "post_box", - "ref": "EH5 16" - } -}, -{ - "type": "node", - "id": 778778358, - "lat": 55.9801463, - "lon": -3.2090911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "979830670509361", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH5 47", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 778778368, - "lat": 55.9799550, - "lon": -3.2018004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "199624105316021", - "note": "information plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 188", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Bing;survey", - "survey:date": "2020-05-22" - } -}, -{ - "type": "node", - "id": 778778369, - "lat": 55.9790813, - "lon": -3.2108709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 778782333, - "lat": 53.7742813, - "lon": -1.1264738, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778783439, - "lat": 53.7842345, - "lon": -1.0640415, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778783440, - "lat": 53.7814944, - "lon": -1.0797763, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 778783441, - "lat": 53.7801376, - "lon": -1.0859598, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778783442, - "lat": 53.7790363, - "lon": -1.0993086, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778783444, - "lat": 53.7799517, - "lon": -1.0582792, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778783445, - "lat": 53.7785417, - "lon": -1.0523986, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 71", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 778783446, - "lat": 53.7735077, - "lon": -1.0608437, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 778783447, - "lat": 53.7781518, - "lon": -1.0633742, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO8 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 778783847, - "lat": 53.7763289, - "lon": -1.0578948, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 778869209, - "lat": 51.0684750, - "lon": -1.8164763, - "tags": { - "amenity": "post_box", - "postal_code": "SP2", - "ref": "SP2 156" - } -}, -{ - "type": "node", - "id": 778869224, - "lat": 51.0683806, - "lon": -1.8164870, - "tags": { - "amenity": "post_box", - "postal_code": "SP2", - "ref": "SP2 248" - } -}, -{ - "type": "node", - "id": 778887785, - "lat": 52.4236297, - "lon": -1.7776682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B91", - "ref": "B91 826", - "royal_cypher": "GVIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 779037435, - "lat": 51.3525938, - "lon": -0.7797989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU47 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 779131876, - "lat": 51.2353157, - "lon": -0.5824767, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU2 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780299108, - "lat": 51.4681725, - "lon": -0.1672191, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "mapillary": "1309847792911504", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 5", - "royal_cypher": "no", - "support": "ground", - "survey:date": "2023-03-21" - } -}, -{ - "type": "node", - "id": 780299114, - "lat": 51.4639656, - "lon": -0.1764717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780299120, - "lat": 51.4620120, - "lon": -0.1785165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 50" - } -}, -{ - "type": "node", - "id": 780299124, - "lat": 51.4668429, - "lon": -0.1697151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW11 17", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 780299127, - "lat": 51.4660759, - "lon": -0.1743921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 780299130, - "lat": 51.4606187, - "lon": -0.1754630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 29", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 780299136, - "lat": 51.4637645, - "lon": -0.1829794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 45", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 780299139, - "lat": 51.4655611, - "lon": -0.1800407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 47", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 780299141, - "lat": 51.4704470, - "lon": -0.1614182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 780301991, - "lat": 51.3548571, - "lon": -0.7739760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU47 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 780311280, - "lat": 51.4609251, - "lon": -0.1659917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780311715, - "lat": 51.4657341, - "lon": -0.1557833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SW11 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780311720, - "lat": 51.4609241, - "lon": -0.1631132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780311729, - "lat": 51.4665215, - "lon": -0.1590123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780311734, - "lat": 51.4656811, - "lon": -0.1557788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780311742, - "lat": 51.4613523, - "lon": -0.1595634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW4 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 780311748, - "lat": 51.4690507, - "lon": -0.1585789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 780311756, - "lat": 51.4716168, - "lon": -0.1587317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 780311759, - "lat": 51.4634440, - "lon": -0.1553514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 36" - } -}, -{ - "type": "node", - "id": 780340195, - "lat": 51.4524596, - "lon": -0.1663429, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 35", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 780340201, - "lat": 51.4462287, - "lon": -0.1613899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 780340207, - "lat": 51.4572881, - "lon": -0.1612721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW11 41", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 780340212, - "lat": 51.4546044, - "lon": -0.1602226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 780340216, - "lat": 51.4540571, - "lon": -0.1637609, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 27", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 780340221, - "lat": 51.4595735, - "lon": -0.1663517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780340225, - "lat": 51.4491063, - "lon": -0.1638988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 780340229, - "lat": 51.4584793, - "lon": -0.1580351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780518793, - "lat": 55.9235503, - "lon": -3.3279896, - "tags": { - "amenity": "post_box", - "ref": "EH12 322" - } -}, -{ - "type": "node", - "id": 780599551, - "lat": 53.3143458, - "lon": -1.1550007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 780602116, - "lat": 51.4849192, - "lon": -2.5680041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS7 278" - } -}, -{ - "type": "node", - "id": 780606324, - "lat": 53.4811403, - "lon": -2.8861875, - "tags": { - "amenity": "post_box", - "name": "Kirkby General Post Office" - } -}, -{ - "type": "node", - "id": 781306794, - "lat": 51.2368749, - "lon": -0.5802744, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "indoor": "yes", - "note": "Inside station concourse", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU1 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 781908784, - "lat": 51.8049274, - "lon": -1.3099019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-12-25", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX5 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 782003496, - "lat": 51.2418707, - "lon": -0.5661510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU1 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 782375093, - "lat": 52.1105171, - "lon": -2.0748771, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "historic_operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WR10 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 782420919, - "lat": 52.4551912, - "lon": 0.2010995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "pillar", - "ref": "CB6 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 783153898, - "lat": 51.4312536, - "lon": -0.9254503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG6 589" - } -}, -{ - "type": "node", - "id": 783352013, - "lat": 52.4791645, - "lon": 0.2180210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "note": "Old style collection plate does display modern box number.", - "old_ref": "EY 109", - "post_box:type": "lamp", - "ref": "CB6 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 783444967, - "lat": 53.1526943, - "lon": -0.2112837, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 301", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 783498884, - "lat": 51.1104825, - "lon": 1.0643058, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CT21 115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 783498885, - "lat": 51.1148092, - "lon": 0.9249695, - "tags": { - "amenity": "post_box", - "ref": "TN25 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498894, - "lat": 51.0122723, - "lon": 0.8896536, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN29 69", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498927, - "lat": 51.0445626, - "lon": 0.9271284, - "tags": { - "amenity": "post_box", - "ref": "TN29 130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498943, - "lat": 51.1057503, - "lon": 0.9182420, - "tags": { - "amenity": "post_box", - "ref": "TN25 152", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498955, - "lat": 51.1088894, - "lon": 0.9072979, - "tags": { - "amenity": "post_box", - "ref": "TN25 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498957, - "lat": 51.0929806, - "lon": 0.8952398, - "tags": { - "amenity": "post_box", - "ref": "TN25 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498973, - "lat": 51.0730285, - "lon": 0.9110799, - "tags": { - "amenity": "post_box", - "ref": "TN25 145", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783498977, - "lat": 51.0952139, - "lon": 0.9135201, - "tags": { - "amenity": "post_box", - "ref": "TN25 157" - } -}, -{ - "type": "node", - "id": 783575127, - "lat": 55.9223475, - "lon": -3.3067522, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-21", - "collection_plate": "SCP15-LC", - "collection_times": "Mo-Fr 19:30; Sa 15:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "posting_suite", - "ref": "EH11 996", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783575153, - "lat": 55.9325638, - "lon": -3.2593883, - "tags": { - "amenity": "post_box", - "ref": "EH11 301" - } -}, -{ - "type": "node", - "id": 783575154, - "lat": 55.9248442, - "lon": -3.2819232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "473678087030580", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 352", - "survey:date": "2020-02-08" - } -}, -{ - "type": "node", - "id": 783773228, - "lat": 51.0742986, - "lon": 1.0834300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CT21 119" - } -}, -{ - "type": "node", - "id": 783773231, - "lat": 51.0759213, - "lon": 1.1151869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT21 198" - } -}, -{ - "type": "node", - "id": 783773233, - "lat": 51.0683417, - "lon": 1.0932957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT21 100" - } -}, -{ - "type": "node", - "id": 783773236, - "lat": 51.0717760, - "lon": 1.0919828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT21 139" - } -}, -{ - "type": "node", - "id": 783842685, - "lat": 50.7369232, - "lon": -1.8506599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 179", - "ref:GB:uprn": "10015440200", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783842692, - "lat": 50.7359659, - "lon": -1.8628810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 164", - "ref:GB:uprn": "10015382886", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 783863521, - "lat": 50.6403281, - "lon": -1.1777471, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO37 139", - "ref:GB:uprn": "10015443476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/whitecross-avenue-po37-7ay/000PO37139" - } -}, -{ - "type": "node", - "id": 783918452, - "lat": 51.4865854, - "lon": -0.1977607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 783918459, - "lat": 51.4895134, - "lon": -0.1946075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "412711810731417", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 783918474, - "lat": 51.4909993, - "lon": -0.1904079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SW5 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 784015725, - "lat": 52.4267784, - "lon": -1.8035872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B91 1049", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 784210048, - "lat": 51.2119822, - "lon": -0.5728763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU4 57" - } -}, -{ - "type": "node", - "id": 784210077, - "lat": 51.2204259, - "lon": -0.5703943, - "tags": { - "amenity": "post_box", - "ref": "GU4 19" - } -}, -{ - "type": "node", - "id": 784210100, - "lat": 51.2142562, - "lon": -0.5469360, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-02-20", - "old_ref": "GU4 294", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU4 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 784210120, - "lat": 51.2109262, - "lon": -0.5520155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU4 126", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 784210137, - "lat": 51.2153622, - "lon": -0.5254504, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU4 240", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 784393951, - "lat": 51.8846000, - "lon": -0.4146000, - "tags": { - "amenity": "post_box", - "ref": "LU2 10", - "source": "long-exposure GPS" - } -}, -{ - "type": "node", - "id": 784480516, - "lat": 51.3548088, - "lon": -0.1984226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SM2 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 784480526, - "lat": 51.3535237, - "lon": -0.2042112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "ref": "SM2 72" - } -}, -{ - "type": "node", - "id": 785751715, - "lat": 51.4799635, - "lon": -0.1951749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW6 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 785751753, - "lat": 51.4814802, - "lon": -0.1991474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 786595653, - "lat": 52.4226964, - "lon": -1.8051572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B91", - "ref": "B91 958", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 786803371, - "lat": 52.9668290, - "lon": -2.0934861, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 786869147, - "lat": 52.2666511, - "lon": -0.8637527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 786881778, - "lat": 50.7219955, - "lon": -1.9024801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 787192068, - "lat": 53.7929868, - "lon": -1.0764350, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 787192097, - "lat": 53.8127912, - "lon": -1.1008963, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 787192134, - "lat": 53.8329919, - "lon": -1.1295556, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 787203970, - "lat": 53.7815704, - "lon": -1.0718227, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 787297922, - "lat": 52.2687626, - "lon": -0.8504793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "2333187943482447", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NN3 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-03-06" - } -}, -{ - "type": "node", - "id": 787297926, - "lat": 52.2718340, - "lon": -0.8403018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 787372498, - "lat": 52.8121324, - "lon": 0.0913814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:20", - "location": "Car Park of 'The Chequers' abandoned public house.", - "post_box:type": "lamp", - "ref": "PE12 176" - } -}, -{ - "type": "node", - "id": 787431413, - "lat": 52.8149631, - "lon": 0.0978289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "PE12 74", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 787456747, - "lat": 51.6197844, - "lon": -3.9460483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA1 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 787677227, - "lat": 52.9485576, - "lon": -1.1283401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG2 78", - "ref:GB:uprn": "10015385645", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 787939998, - "lat": 51.5790622, - "lon": -4.0712393, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 788576082, - "lat": 53.4369909, - "lon": -1.3553072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S60 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 788576157, - "lat": 53.4370502, - "lon": -1.3552740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S60 289", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 788656149, - "lat": 53.4140878, - "lon": -2.0829650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK6 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 788656189, - "lat": 53.4161728, - "lon": -2.0844093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK6 338" - } -}, -{ - "type": "node", - "id": 788833851, - "lat": 50.3719515, - "lon": -4.1147482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1439635739809806", - "post_box:type": "pillar", - "ref": "PL4 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-05-09" - } -}, -{ - "type": "node", - "id": 789376445, - "lat": 50.7213281, - "lon": -1.8928736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 100", - "ref:GB:uprn": "10015350608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 789539809, - "lat": 53.8483951, - "lon": -2.4641492, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 789547680, - "lat": 54.1358258, - "lon": -0.1887864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO15 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 789926885, - "lat": 52.4167976, - "lon": -1.8065647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 881", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 789985879, - "lat": 52.3182015, - "lon": -1.9171341, - "tags": { - "amenity": "post_box", - "ref": "B98 180" - } -}, -{ - "type": "node", - "id": 790036582, - "lat": 52.9604255, - "lon": -1.1274650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "image": "https://www.mapillary.com/map/im/LMRMn1NtfLVC9KOaU8g6QQ", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG3 8", - "ref:GB:uprn": "10015445142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 790042808, - "lat": 51.3327223, - "lon": -0.8221235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU46 1" - } -}, -{ - "type": "node", - "id": 790043602, - "lat": 52.9596583, - "lon": -1.1241202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/8bTV2E7JHH1kXxUOWwA4gQ", - "operator": "Royal Mail", - "operator:phone": "+44 345 774 0740", - "operator:website": "https://www.royalmail.com/", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG3 293D", - "ref:GB:uprn": "10015342181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 790046194, - "lat": 51.6190967, - "lon": -3.9438661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA1 90", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 790064726, - "lat": 52.2470779, - "lon": -2.1893202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR9 380" - } -}, -{ - "type": "node", - "id": 790308315, - "lat": 55.9520590, - "lon": -3.3502820, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH12 351", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 790308317, - "lat": 55.9562706, - "lon": -3.3384061, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH12 417", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 790308318, - "lat": 55.9447998, - "lon": -3.3125907, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH12 563", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 790351916, - "lat": 54.6513033, - "lon": -5.6752936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 747" - } -}, -{ - "type": "node", - "id": 790427268, - "lat": 54.6601451, - "lon": -5.6943067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 94D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 790504251, - "lat": 51.8133426, - "lon": 0.6146630, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 790693053, - "lat": 52.6045660, - "lon": -1.1064385, - "tags": { - "amenity": "post_box", - "postal_code": "LE2", - "ref": "LE2 444" - } -}, -{ - "type": "node", - "id": 791212026, - "lat": 52.0847571, - "lon": -1.9328021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR11 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791212948, - "lat": 52.2632414, - "lon": -0.8521204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791221993, - "lat": 52.8656597, - "lon": -3.0486868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY11 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 791222056, - "lat": 52.8653266, - "lon": -3.0614603, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 791222204, - "lat": 52.8636228, - "lon": -3.0565967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 791410601, - "lat": 51.9612580, - "lon": -0.2196660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG6 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791748002, - "lat": 52.8719773, - "lon": -1.5024824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 592" - } -}, -{ - "type": "node", - "id": 791772069, - "lat": 53.1755780, - "lon": -1.4263413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "ele": "140", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S42 212", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 791811554, - "lat": 52.8606518, - "lon": -3.0641328, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 791819652, - "lat": 51.5921262, - "lon": -0.0696713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791819653, - "lat": 51.5978203, - "lon": -0.0598942, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791819655, - "lat": 51.5945638, - "lon": -0.0609749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791819656, - "lat": 51.5989439, - "lon": -0.0621531, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 4D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 791819657, - "lat": 51.5933253, - "lon": -0.0650832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791819658, - "lat": 51.5907804, - "lon": -0.0562922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "N17 54P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 791819659, - "lat": 51.5957742, - "lon": -0.0629158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 791819660, - "lat": 51.5902301, - "lon": -0.0652806, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 791850442, - "lat": 51.6023951, - "lon": -0.0592102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791850447, - "lat": 51.6058124, - "lon": -0.0616457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 49D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 791850451, - "lat": 51.6023232, - "lon": -0.0546213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 791850457, - "lat": 51.6043840, - "lon": -0.0571920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "not ref N17 39", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791850461, - "lat": 51.6027052, - "lon": -0.0679058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791850468, - "lat": 51.5968929, - "lon": -0.0574493, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791850472, - "lat": 51.6079223, - "lon": -0.0579147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "N17 10P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 791850477, - "lat": 51.5998044, - "lon": -0.0678271, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791850485, - "lat": 51.6005898, - "lon": -0.0557329, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 791850491, - "lat": 51.6080209, - "lon": -0.0538164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889059, - "lat": 51.6068109, - "lon": -0.0908838, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 791889067, - "lat": 51.5996517, - "lon": -0.0827881, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889075, - "lat": 51.6047392, - "lon": -0.0860052, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889081, - "lat": 51.6083316, - "lon": -0.0948170, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889087, - "lat": 51.6047965, - "lon": -0.0834617, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889092, - "lat": 51.6040051, - "lon": -0.0910559, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889097, - "lat": 51.5987700, - "lon": -0.0709731, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889101, - "lat": 51.6035622, - "lon": -0.0944995, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791889107, - "lat": 51.6007521, - "lon": -0.0800544, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791916589, - "lat": 51.5936073, - "lon": -0.0784314, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 791916594, - "lat": 51.6020508, - "lon": -0.0728262, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 1D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 791916598, - "lat": 51.5964616, - "lon": -0.0728173, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 791916602, - "lat": 51.6060710, - "lon": -0.0773232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "N17 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791916608, - "lat": 51.5921472, - "lon": -0.0764279, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 791916614, - "lat": 51.5921560, - "lon": -0.0840340, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791916619, - "lat": 51.6072499, - "lon": -0.0752925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791934089, - "lat": 52.9502853, - "lon": -1.1233078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG2 174", - "ref:GB:uprn": "10015443171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 791992386, - "lat": 51.5883401, - "lon": -0.0936643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 23", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 791992391, - "lat": 51.5865860, - "lon": -0.0882183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 11" - } -}, -{ - "type": "node", - "id": 791992394, - "lat": 51.5837729, - "lon": -0.0963069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 1", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 791992402, - "lat": 51.5905811, - "lon": -0.0936560, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 791992405, - "lat": 51.5879346, - "lon": -0.0781215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 791992409, - "lat": 51.5869254, - "lon": -0.0968002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 19" - } -}, -{ - "type": "node", - "id": 792026612, - "lat": 51.5821810, - "lon": -0.0744762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 2", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 792026615, - "lat": 51.5813081, - "lon": -0.0873594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 10" - } -}, -{ - "type": "node", - "id": 792026618, - "lat": 51.5818282, - "lon": -0.0699199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 7", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 792026620, - "lat": 51.5836848, - "lon": -0.0870624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 34" - } -}, -{ - "type": "node", - "id": 792026622, - "lat": 51.5756556, - "lon": -0.0849272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 792026626, - "lat": 51.5797885, - "lon": -0.0814050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 29" - } -}, -{ - "type": "node", - "id": 792026628, - "lat": 51.5821141, - "lon": -0.0915171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 14" - } -}, -{ - "type": "node", - "id": 792026630, - "lat": 51.5811924, - "lon": -0.0793842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 40" - } -}, -{ - "type": "node", - "id": 792026632, - "lat": 51.5778741, - "lon": -0.0704533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 17" - } -}, -{ - "type": "node", - "id": 792026635, - "lat": 51.5845197, - "lon": -0.0676787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 33", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 792026638, - "lat": 51.5844288, - "lon": -0.0917641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 792026642, - "lat": 51.5790128, - "lon": -0.0672584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 30" - } -}, -{ - "type": "node", - "id": 792026645, - "lat": 51.5781735, - "lon": -0.0822285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N15 4", - "source": "Local" - } -}, -{ - "type": "node", - "id": 792052168, - "lat": 55.9710896, - "lon": -3.1518408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH6 127", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 792052171, - "lat": 55.9642958, - "lon": -3.1488430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH7 346", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 792052181, - "lat": 55.9630507, - "lon": -3.1356874, - "tags": { - "amenity": "post_box", - "ref": "EH7 358" - } -}, -{ - "type": "node", - "id": 792052197, - "lat": 55.9689953, - "lon": -3.1429905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 388", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 792052198, - "lat": 55.9608010, - "lon": -3.1307101, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH7 357" - } -}, -{ - "type": "node", - "id": 792081618, - "lat": 52.1930864, - "lon": -2.2244250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 516" - } -}, -{ - "type": "node", - "id": 792081712, - "lat": 52.1927303, - "lon": -2.2181621, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR1 17" - } -}, -{ - "type": "node", - "id": 792081751, - "lat": 52.1925312, - "lon": -2.2212734, - "tags": { - "amenity": "post_box", - "collection_plate": "CP15", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "Two postboxes inside WH Smith, one on each floor. WR1 1002 is on top floor, which accommodates the PO", - "fixme": "check collection times", - "indoor": "yes", - "layer": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "WR1 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 792081764, - "lat": 52.1944878, - "lon": -2.2175050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "description": "In the white wall, to the left of the One-Stop Shop.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR1 12" - } -}, -{ - "type": "node", - "id": 792081766, - "lat": 52.1953907, - "lon": -2.2159764, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR1 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 792081785, - "lat": 52.1935716, - "lon": -2.2227827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 792081794, - "lat": 52.1987218, - "lon": -2.2240827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-02-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 792081853, - "lat": 52.1921514, - "lon": -2.2149728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR1 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 792134452, - "lat": 56.1848279, - "lon": -3.5552339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KY13 168", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 792134461, - "lat": 56.1891640, - "lon": -3.5421969, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2022-11-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY13 131D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 792268199, - "lat": 51.4808280, - "lon": -3.1560190, - "tags": { - "amenity": "post_box", - "mapillary": "727981381930521", - "post_box:type": "pillar", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 792494669, - "lat": 50.2639468, - "lon": -5.0640890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR1 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery", - "survey:date": "2021-10-27" - } -}, -{ - "type": "node", - "id": 792575428, - "lat": 50.1503175, - "lon": -5.0582512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR11 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 792609035, - "lat": 50.1553156, - "lon": -5.0817368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 792763645, - "lat": 51.2290649, - "lon": -0.5670966, - "tags": { - "amenity": "post_box", - "ref": "GU1 80" - } -}, -{ - "type": "node", - "id": 793085006, - "lat": 52.5053165, - "lon": -1.3961707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV11 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 793140703, - "lat": 53.3760342, - "lon": -1.4692827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S1 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793152403, - "lat": 52.4576719, - "lon": -1.4105921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV7 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 793166462, - "lat": 52.4193230, - "lon": -1.8371202, - "tags": { - "amenity": "post_box", - "postal_code": "B28", - "ref": "B28 922", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 793192648, - "lat": 51.4302968, - "lon": -0.9421706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 793221042, - "lat": 52.5554049, - "lon": -1.4401145, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CV13 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793224099, - "lat": 51.9218908, - "lon": -0.1816577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793224103, - "lat": 51.9215122, - "lon": -0.1868907, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793241034, - "lat": 51.9348560, - "lon": -0.2142670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:40", - "post_box:type": "lamp", - "ref": "SG4 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793241036, - "lat": 51.9356313, - "lon": -0.2104043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "SG4 91" - } -}, -{ - "type": "node", - "id": 793351569, - "lat": 51.9804730, - "lon": -0.2238347, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-03", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793598696, - "lat": 52.1297900, - "lon": -0.4644600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "No royal cypher. Old-style pillar so quite unusual to have no cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 4D", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 793667291, - "lat": 52.5708203, - "lon": -1.4144735, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CV13 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793703997, - "lat": 52.3014382, - "lon": -1.2368302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 793708237, - "lat": 53.5546620, - "lon": -2.3028305, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 793712021, - "lat": 53.5535515, - "lon": -2.2970164, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 793717655, - "lat": 52.2914829, - "lon": -1.2081435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:14; Sa 11:00", - "post_box:type": "pillar", - "ref": "NN11 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 793717657, - "lat": 52.2917846, - "lon": -1.2123536, - "tags": { - "amenity": "post_box", - "ref": "NN11 583" - } -}, -{ - "type": "node", - "id": 793738557, - "lat": 50.9776528, - "lon": -3.1475560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "collection_times:lastcheck": "2021-05-11", - "name": "Taunton Deane Services Eastbound", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 794104516, - "lat": 52.9953800, - "lon": -3.9407807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL41 5" - } -}, -{ - "type": "node", - "id": 794104540, - "lat": 52.9943552, - "lon": -3.9411143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL41 6" - } -}, -{ - "type": "node", - "id": 794112930, - "lat": 52.9943882, - "lon": -3.9347006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL41 41" - } -}, -{ - "type": "node", - "id": 794217484, - "lat": 54.4362416, - "lon": -5.9970888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 794220109, - "lat": 53.0076253, - "lon": -1.3456491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 650D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 794265262, - "lat": 51.2323163, - "lon": -0.5767564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU2 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 794275875, - "lat": 56.4673241, - "lon": -2.8753636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 794377991, - "lat": 52.4770949, - "lon": -2.0909291, - "tags": { - "amenity": "post_box", - "postal_code": "DY2", - "ref": "DY2 198", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 794396216, - "lat": 54.4631727, - "lon": -6.0824689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 794397864, - "lat": 56.0455081, - "lon": -4.3762171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G63 1049", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 794450922, - "lat": 52.2518913, - "lon": -1.6179535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 794514342, - "lat": 51.6150321, - "lon": -3.9582651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SA1 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 794660657, - "lat": 51.4635321, - "lon": -0.0871869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 794832024, - "lat": 51.7564187, - "lon": -0.3499484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL3 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 794850710, - "lat": 51.9572000, - "lon": -0.2823000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 794878252, - "lat": 51.6720583, - "lon": -4.0470232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 500D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 794999314, - "lat": 51.6728579, - "lon": -4.0400825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA4 501", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 795056061, - "lat": 52.3969943, - "lon": -1.7837477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 1372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 795089141, - "lat": 52.9547415, - "lon": -1.1214079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "NG2 184", - "ref:GB:uprn": "10015319078", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 795257807, - "lat": 53.5026127, - "lon": -2.4108304, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 795367414, - "lat": 50.7281351, - "lon": -1.9055591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 795589839, - "lat": 52.4776899, - "lon": -2.0858776, - "tags": { - "amenity": "post_box", - "ref": "DY2 29", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 795606229, - "lat": 52.4797248, - "lon": -2.0915085, - "tags": { - "amenity": "post_box", - "ref": "DY2 209", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 795609826, - "lat": 53.7296149, - "lon": -1.0346138, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 795609832, - "lat": 53.7515886, - "lon": -1.0243928, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 61" - } -}, -{ - "type": "node", - "id": 795685837, - "lat": 52.8746170, - "lon": -1.4951520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 543" - } -}, -{ - "type": "node", - "id": 795717322, - "lat": 52.2635706, - "lon": -0.8445914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN3 388", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 795783532, - "lat": 51.2101014, - "lon": -1.4861238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 795814796, - "lat": 55.8564666, - "lon": -5.0651832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "postal_code": "PA20", - "ref": "PA20 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 795814838, - "lat": 55.8519709, - "lon": -5.0628020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "PA20", - "ref": "PA20 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 795814893, - "lat": 55.8382550, - "lon": -5.0578049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA20 16D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 795814950, - "lat": 55.8411288, - "lon": -5.0616911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA20 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 795814961, - "lat": 55.8376146, - "lon": -5.0530471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PA20", - "ref": "PA20 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 795814978, - "lat": 55.9236692, - "lon": -5.1502449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "PA22", - "ref": "PA22 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 795814996, - "lat": 55.8482643, - "lon": -5.0633575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "PA20", - "ref": "PA20 44D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 795815056, - "lat": 55.8380666, - "lon": -5.0557201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "postal_code": "PA20", - "ref": "PA20 100D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 795815085, - "lat": 55.8578950, - "lon": -5.0622090, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA20", - "ref": "PA20 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 795815089, - "lat": 55.8598934, - "lon": -5.0824963, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "postal_code": "PA20", - "ref": "PA20 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 795817105, - "lat": 53.7773195, - "lon": -3.0531857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 229", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 795916479, - "lat": 51.2453525, - "lon": -0.5773011, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "last_checked": "2021-08-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU1 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796033862, - "lat": 57.5591380, - "lon": -4.4880613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV7 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796160819, - "lat": 54.6509013, - "lon": -1.6788637, - "tags": { - "amenity": "post_box", - "ref": "DL14 42", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 796170793, - "lat": 50.6518519, - "lon": -1.4270846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 10", - "ref:GB:uprn": "10015379621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/mottistone-po30-4es/0000PO3010" - } -}, -{ - "type": "node", - "id": 796170804, - "lat": 50.6545162, - "lon": -1.4376177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO30 29", - "ref:GB:uprn": "10015419270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09", - "website": "https://www.royalmail.com/services-near-you/postbox/hulverstone-po30-4es/0000PO3029", - "wikimedia_commons": "File:Hulverstone, postbox № PO30 29 - geograph.org.uk - 3896786.jpg" - } -}, -{ - "type": "node", - "id": 796170806, - "lat": 50.6455598, - "lon": -1.4062031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 39", - "ref:GB:uprn": "10015299728", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/gagger-hill-po30-4bd/0000PO3039" - } -}, -{ - "type": "node", - "id": 796186750, - "lat": 55.0385234, - "lon": -1.5728670, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE12 6QL", - "ref": "NE12 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 796187107, - "lat": 55.0420368, - "lon": -1.5760350, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NE12 5XB", - "ref": "NE12 94", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 796187193, - "lat": 55.0427514, - "lon": -1.5650170, - "tags": { - "amenity": "post_box", - "postal_code": "NE12 5BB", - "ref": "NE12 710" - } -}, -{ - "type": "node", - "id": 796187521, - "lat": 55.0368214, - "lon": -1.5666658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE12 6DG", - "ref": "NE12 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 796187627, - "lat": 55.0378779, - "lon": -1.5602285, - "tags": { - "amenity": "post_box", - "postal_code": "NE12 7PL", - "ref": "NE12 209" - } -}, -{ - "type": "node", - "id": 796187988, - "lat": 55.0407402, - "lon": -1.5824291, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "NE12 6RF", - "ref": "NE12 707" - } -}, -{ - "type": "node", - "id": 796193902, - "lat": 54.7465551, - "lon": -2.7099010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA10 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796234227, - "lat": 54.7714129, - "lon": -2.6845074, - "tags": { - "amenity": "post_box", - "ref": "CA10 226", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796275189, - "lat": 54.9389772, - "lon": -2.7270386, - "tags": { - "amenity": "post_box", - "ref": "CA8 398", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796344112, - "lat": 53.7153146, - "lon": -0.9577232, - "tags": { - "amenity": "post_box", - "ref": "YO8 57" - } -}, -{ - "type": "node", - "id": 796344122, - "lat": 53.7253243, - "lon": -1.0160202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 51" - } -}, -{ - "type": "node", - "id": 796344133, - "lat": 53.7480443, - "lon": -0.9678613, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 17" - } -}, -{ - "type": "node", - "id": 796344137, - "lat": 53.7289095, - "lon": -0.9798530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO8 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 796475075, - "lat": 54.9572473, - "lon": -2.7815493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CA6 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796475219, - "lat": 51.3456277, - "lon": -0.7907168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 22D", - "royal_cypher": "EIIR", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 796482980, - "lat": 54.9798733, - "lon": -2.8743774, - "tags": { - "amenity": "post_box", - "ref": "CA6 147", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796483111, - "lat": 55.0122334, - "lon": -2.8207649, - "tags": { - "amenity": "post_box", - "ref": "CA6 161", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796483117, - "lat": 55.0385742, - "lon": -2.7853045, - "tags": { - "amenity": "post_box", - "ref": "CA6 427", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796496246, - "lat": 52.2881853, - "lon": 0.0497848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB24 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 796496814, - "lat": 55.0847223, - "lon": -2.7774084, - "tags": { - "amenity": "post_box", - "ref": "CA6 376", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796496955, - "lat": 55.0827367, - "lon": -2.8481919, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796497050, - "lat": 55.0797291, - "lon": -2.8813726, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA6 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 796518590, - "lat": 55.0950163, - "lon": -3.5869274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "894848304820034", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG1 36", - "survey:date": "2022-09-03" - } -}, -{ - "type": "node", - "id": 796529846, - "lat": 50.8020523, - "lon": -3.1816404, - "tags": { - "amenity": "post_box", - "mapillary": "849966102256328", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-29" - } -}, -{ - "type": "node", - "id": 796530016, - "lat": 50.7762000, - "lon": -3.0328760, - "tags": { - "amenity": "post_box", - "mapillary": "313121507132081", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-05-06", - "survey:date": "2020-05-06" - } -}, -{ - "type": "node", - "id": 796777233, - "lat": 51.6673819, - "lon": -1.3440526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 796777234, - "lat": 51.6697741, - "lon": -1.3410683, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 796777407, - "lat": 53.5098351, - "lon": -2.3746306, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 796795283, - "lat": 51.1965454, - "lon": 0.8482082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN25 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-21" - } -}, -{ - "type": "node", - "id": 796795285, - "lat": 51.1673639, - "lon": 0.8474573, - "tags": { - "amenity": "post_box", - "ref": "TN25 26" - } -}, -{ - "type": "node", - "id": 796795286, - "lat": 51.1902249, - "lon": 0.8456128, - "tags": { - "amenity": "post_box", - "ref": "TN25 223" - } -}, -{ - "type": "node", - "id": 796798266, - "lat": 51.1320510, - "lon": 1.0302574, - "tags": { - "amenity": "post_box", - "ref": "TN25 163" - } -}, -{ - "type": "node", - "id": 796798267, - "lat": 51.1502425, - "lon": 1.0354028, - "tags": { - "amenity": "post_box", - "ref": "TN25 166" - } -}, -{ - "type": "node", - "id": 796818842, - "lat": 51.2603244, - "lon": 0.8755220, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 59", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME13 59D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 797052322, - "lat": 51.3186196, - "lon": 0.8942559, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "lastcheck": "2023-10-09", - "mapillary": "462354115037485", - "old_ref": "ME13 33", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME13 33D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2021-03-14" - } -}, -{ - "type": "node", - "id": 797052421, - "lat": 51.2531157, - "lon": 0.8480375, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 44", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME13 44D" - } -}, -{ - "type": "node", - "id": 797052422, - "lat": 51.2650423, - "lon": 0.8539480, - "tags": { - "amenity": "post_box", - "ref": "ME13 8" - } -}, -{ - "type": "node", - "id": 797052423, - "lat": 51.1938646, - "lon": 0.9125388, - "tags": { - "amenity": "post_box", - "old_ref": "TN25 242", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN25 242D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-16" - } -}, -{ - "type": "node", - "id": 797052907, - "lat": 51.1813985, - "lon": 0.9348075, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "TN25 9" - } -}, -{ - "type": "node", - "id": 797056865, - "lat": 51.0954745, - "lon": 0.8224639, - "tags": { - "amenity": "post_box", - "ref": "TN26 213" - } -}, -{ - "type": "node", - "id": 797062776, - "lat": 51.1706993, - "lon": 0.8174968, - "tags": { - "amenity": "post_box", - "ref": "TN26 115" - } -}, -{ - "type": "node", - "id": 797098134, - "lat": 51.3444429, - "lon": 0.7230322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME10 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 797098135, - "lat": 51.3490150, - "lon": 0.7253246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "note": "On Tuesday 15th August 2023 i used this postbox in a hurry but i think there was a sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 797098136, - "lat": 51.3376458, - "lon": 0.7229876, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;aerial imagery;survey", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 797098137, - "lat": 51.3349921, - "lon": 0.7251449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "building": "yes", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "note": "There was a sticker on this postbox saying that as of.Monday 18.09.2023 the collection times are changing to Mo-Fr 16:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 797105343, - "lat": 51.1600432, - "lon": 1.3655421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "409315476924558", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 797117698, - "lat": 51.1399773, - "lon": 1.2947765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 797424598, - "lat": 50.7308742, - "lon": -1.9765687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 143", - "ref:GB:uprn": "10015323896", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 797480464, - "lat": 51.1281085, - "lon": 1.3085660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT17 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 797480631, - "lat": 51.1281700, - "lon": 1.3049955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT17 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 797643763, - "lat": 51.0722748, - "lon": 1.1337862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CT20 6D" - } -}, -{ - "type": "node", - "id": 797643765, - "lat": 51.1289034, - "lon": 1.0834615, - "tags": { - "amenity": "post_box", - "ref": "CT18 34" - } -}, -{ - "type": "node", - "id": 797643766, - "lat": 51.0824889, - "lon": 1.1774447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT20 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 797643767, - "lat": 51.1358562, - "lon": 1.0559936, - "tags": { - "amenity": "post_box", - "ref": "CT18 196" - } -}, -{ - "type": "node", - "id": 797643768, - "lat": 51.1014151, - "lon": 1.2094054, - "tags": { - "amenity": "post_box", - "ref": "CT18 62" - } -}, -{ - "type": "node", - "id": 797643769, - "lat": 51.0785592, - "lon": 1.1624097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT20 164D" - } -}, -{ - "type": "node", - "id": 797643770, - "lat": 51.1028174, - "lon": 1.2166846, - "tags": { - "amenity": "post_box", - "ref": "CT18 162" - } -}, -{ - "type": "node", - "id": 797726490, - "lat": 51.5426231, - "lon": -0.2745206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 106" - } -}, -{ - "type": "node", - "id": 797726491, - "lat": 51.5367576, - "lon": -0.2758399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NW10 108" - } -}, -{ - "type": "node", - "id": 797762773, - "lat": 55.9429124, - "lon": -3.1832452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 797762774, - "lat": 55.9334173, - "lon": -3.1665098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "colour": "blue", - "note": "Painted blue in support of NHS", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 166", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 797762776, - "lat": 55.9276372, - "lon": -3.1682132, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 116D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 797762785, - "lat": 55.9269153, - "lon": -3.1638236, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH16 551", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 797945261, - "lat": 50.7201810, - "lon": -1.8837765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH2 31", - "ref:GB:uprn": "10015360687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 798060297, - "lat": 50.7938649, - "lon": -3.1236174, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 798578510, - "lat": 52.0774303, - "lon": -1.9528655, - "tags": { - "amenity": "post_box", - "note": "Info plate missing Sep 2015", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 798712443, - "lat": 52.2641945, - "lon": -0.8407504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN3 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 798712444, - "lat": 52.2638506, - "lon": -0.8346505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 378", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 798786922, - "lat": 51.2529156, - "lon": 0.5934698, - "tags": { - "amenity": "post_box", - "ref": "ME17 190" - } -}, -{ - "type": "node", - "id": 798786923, - "lat": 51.2222756, - "lon": 0.6602157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "ME17 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 798786924, - "lat": 51.2458688, - "lon": 0.6064317, - "tags": { - "amenity": "post_box", - "ref": "ME17 167" - } -}, -{ - "type": "node", - "id": 798786925, - "lat": 51.2487734, - "lon": 0.6117610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "ME17 2" - } -}, -{ - "type": "node", - "id": 798804285, - "lat": 52.2369095, - "lon": -1.1009331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 798851367, - "lat": 50.6832219, - "lon": -1.1463392, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 141D", - "ref:GB:uprn": "10015439059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/park-road-po36-0aa/000PO36141" - } -}, -{ - "type": "node", - "id": 798873336, - "lat": 51.5369612, - "lon": -0.2539462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 36" - } -}, -{ - "type": "node", - "id": 798873340, - "lat": 51.5377771, - "lon": -0.2478359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 6" - } -}, -{ - "type": "node", - "id": 798873352, - "lat": 51.5369684, - "lon": -0.2432579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 42" - } -}, -{ - "type": "node", - "id": 798884196, - "lat": 51.5486370, - "lon": -0.2413192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 798884197, - "lat": 51.5471812, - "lon": -0.2293388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW10 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 798884199, - "lat": 51.5456911, - "lon": -0.2515119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "NW10 2" - } -}, -{ - "type": "node", - "id": 798884204, - "lat": 51.5492033, - "lon": -0.2428333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 110" - } -}, -{ - "type": "node", - "id": 798884206, - "lat": 51.5469614, - "lon": -0.2312206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 798886145, - "lat": 51.5374069, - "lon": -0.2217411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 56" - } -}, -{ - "type": "node", - "id": 798886148, - "lat": 51.5407617, - "lon": -0.2223478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 91" - } -}, -{ - "type": "node", - "id": 798886151, - "lat": 51.5342441, - "lon": -0.2189974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW10 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 798886153, - "lat": 51.5459839, - "lon": -0.2272572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 798886155, - "lat": 51.5351482, - "lon": -0.2200266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW10 49" - } -}, -{ - "type": "node", - "id": 798976922, - "lat": 55.1651894, - "lon": -1.5415556, - "tags": { - "amenity": "post_box", - "note": "Ref not found in DB - need checking", - "ref": "NE63 193" - } -}, -{ - "type": "node", - "id": 799153196, - "lat": 52.0632062, - "lon": -1.8925311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00; Su off", - "post_box:type": "lamp", - "ref": "WR12 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 799216576, - "lat": 52.0473647, - "lon": -1.8947184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR12 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 799260480, - "lat": 52.8596850, - "lon": -3.0409911, - "tags": { - "amenity": "post_box", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 799271123, - "lat": 55.8925741, - "lon": -3.2157815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH10 370" - } -}, -{ - "type": "node", - "id": 799285376, - "lat": 50.6726510, - "lon": -3.5629258, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX2 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 799318109, - "lat": 57.8817035, - "lon": -4.5761456, - "tags": { - "amenity": "post_box", - "name": "The Craigs", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 799532782, - "lat": 52.9110950, - "lon": -1.5142915, - "tags": { - "amenity": "post_box", - "note": "Inside the hospital near the main entrance, estimated location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 1402", - "source": "estimation;survey" - } -}, -{ - "type": "node", - "id": 799592253, - "lat": 52.8567337, - "lon": -3.0401886, - "tags": { - "amenity": "post_box", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "SY11 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 799642354, - "lat": 51.1190715, - "lon": -1.0493553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "GU34 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 799642855, - "lat": 51.1330134, - "lon": -0.9888216, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 799642875, - "lat": 51.1125215, - "lon": -0.9857950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 799643050, - "lat": 51.1103120, - "lon": -0.9937169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU34 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 799643191, - "lat": 51.1368038, - "lon": -0.9867144, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-08", - "note": "This postbox is of a brand new (2010s) EIIR lamp design.", - "old_ref": "GU34 77", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 799685428, - "lat": 51.6695319, - "lon": -0.6067405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP7 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 799749616, - "lat": 50.6171533, - "lon": -1.2213693, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "check_date:ref": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 224D", - "ref:GB:uprn": "10015286315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/castle-road-po38-3es/000PO38224" - } -}, -{ - "type": "node", - "id": 799788301, - "lat": 50.6004891, - "lon": -1.1872605, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "check_date:collection_times": "2024-01-07", - "check_date:ref": "2024-01-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "460338111931471", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 213D", - "ref:GB:uprn": "10015365917", - "royal_cypher": "no", - "website": "https://www.royalmail.com/services-near-you/postbox/bonchurch-hill-po37-6bz/000PO38213" - } -}, -{ - "type": "node", - "id": 799788305, - "lat": 50.5961156, - "lon": -1.2114182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-31", - "check_date:collection_times": "2021-03-31", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "134779565970801", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PO38 227D", - "ref:GB:uprn": "10015413711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-24", - "website": "https://www.royalmail.com/services-near-you/postbox/ocean-view-road-po38-1aa/000PO38227" - } -}, -{ - "type": "node", - "id": 799788333, - "lat": 50.5938884, - "lon": -1.2111018, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 201D", - "ref:GB:uprn": "10015429663", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/belgrave-road-po38-1aa/000PO38201" - } -}, -{ - "type": "node", - "id": 800075563, - "lat": 52.4673687, - "lon": -1.4790624, - "tags": { - "amenity": "post_box", - "postal_code": "CV7", - "ref": "CV7 445", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 800092250, - "lat": 51.3667646, - "lon": -1.0905341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG7 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 800146876, - "lat": 54.0030144, - "lon": -1.0589988, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "73.6661377", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "YO32 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 800148298, - "lat": 50.7981462, - "lon": 0.2814452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 829", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 800168307, - "lat": 53.6020342, - "lon": -3.0421174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1116606272175640", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 47", - "survey:date": "2020-04-09" - } -}, -{ - "type": "node", - "id": 800231491, - "lat": 52.4783286, - "lon": -1.4758877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV12 553", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 800254094, - "lat": 57.6460651, - "lon": -3.2902494, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 800293548, - "lat": 53.1265708, - "lon": -1.3095015, - "tags": { - "amenity": "post_box", - "ele": "146.0048828" - } -}, -{ - "type": "node", - "id": 800294211, - "lat": 52.8561362, - "lon": -3.0442949, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 800318382, - "lat": 51.9466451, - "lon": -0.2850999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 800444442, - "lat": 54.6981976, - "lon": -1.5876923, - "tags": { - "amenity": "post_box", - "ref": "DL16 124" - } -}, -{ - "type": "node", - "id": 800588845, - "lat": 52.4789215, - "lon": -1.4719252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:colour": "gold", - "post_box:type": "pillar", - "ref": "CV12 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 800662877, - "lat": 51.5730859, - "lon": -0.1679274, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-18", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 800770861, - "lat": 52.4650704, - "lon": -1.4724388, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 suggests this should be CV7 198", - "post_box:type": "pillar", - "postal_code": "CV7", - "ref": "CV7 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 800770909, - "lat": 52.4650448, - "lon": -1.4725082, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CV7", - "ref": "CV7 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 800811283, - "lat": 51.4031600, - "lon": -0.2654141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 800841805, - "lat": 55.2139364, - "lon": -1.5425774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "954457208703740", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "NE61 5YJ", - "ref": "NE61 2", - "survey:date": "2020-02-01" - } -}, -{ - "type": "node", - "id": 800841812, - "lat": 55.2133381, - "lon": -1.5461111, - "tags": { - "amenity": "post_box", - "postal_code": "NE61 5XD", - "ref": "NE61 134" - } -}, -{ - "type": "node", - "id": 800908984, - "lat": 50.8006248, - "lon": -3.8940071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 18D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 800909068, - "lat": 50.8021885, - "lon": -3.8962218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 111D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 800947518, - "lat": 52.0607756, - "lon": -1.9705106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR11 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 800947657, - "lat": 52.0591994, - "lon": -1.9659491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR11 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 801250009, - "lat": 52.1897218, - "lon": -2.2387014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR2 16" - } -}, -{ - "type": "node", - "id": 801279796, - "lat": 52.4793947, - "lon": -1.4812592, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CV12 8RR", - "ref": "CV12 559", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 801280134, - "lat": 52.4791012, - "lon": -1.4874212, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 8QD", - "ref": "CV12 560", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 801298575, - "lat": 51.6742016, - "lon": -0.6071348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "description": "Forecourt of Amersham Metro / Chiltern Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP6 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 801319670, - "lat": 50.5972443, - "lon": -1.2793283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO38 245", - "ref:GB:uprn": "10015274139", - "website": "https://www.royalmail.com/services-near-you/postbox/kingates-po38-2ba/000PO38245" - } -}, -{ - "type": "node", - "id": 801319700, - "lat": 50.5884738, - "lon": -1.2810071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-12", - "check_date:collection_times": "2023-03-12", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 261D", - "ref:GB:uprn": "10015359768", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chatfield-road-po38-1ya/000PO38261" - } -}, -{ - "type": "node", - "id": 801328935, - "lat": 51.4562005, - "lon": -0.0192966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE13 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 801328939, - "lat": 51.4454235, - "lon": -0.0286137, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "note": "Priority postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 801328943, - "lat": 51.4617720, - "lon": -0.0184031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 12", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801328964, - "lat": 51.4568958, - "lon": -0.0196755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 801328965, - "lat": 51.4466397, - "lon": -0.0316166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801328971, - "lat": 51.4591696, - "lon": -0.0206038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 801343151, - "lat": 51.4594919, - "lon": 0.0016151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE13 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801343156, - "lat": 51.4652372, - "lon": -0.0113300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE13 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801377613, - "lat": 51.4567618, - "lon": -0.0038222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 801377615, - "lat": 51.4625178, - "lon": -0.0102002, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE13 11D;SE13 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 801377621, - "lat": 51.4592316, - "lon": -0.0129570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 801377625, - "lat": 51.4537550, - "lon": -0.0040930, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 801377632, - "lat": 51.4588564, - "lon": -0.0024676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801377636, - "lat": 51.4596889, - "lon": -0.0075013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 21", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 801377637, - "lat": 51.4583773, - "lon": -0.0092438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE13 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 801377639, - "lat": 51.4610396, - "lon": -0.0055441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801377641, - "lat": 51.4535737, - "lon": 0.0000182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "1 pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 10D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801377644, - "lat": 51.4712217, - "lon": -0.0177620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801384364, - "lat": 51.4442357, - "lon": 0.0040813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801384365, - "lat": 51.4521045, - "lon": 0.0018761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801384369, - "lat": 51.4451442, - "lon": -0.0044412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801384371, - "lat": 51.4452008, - "lon": 0.0010455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 801384372, - "lat": 51.4528957, - "lon": 0.0059178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426028, - "lat": 51.4499830, - "lon": -0.0172908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426029, - "lat": 51.4434561, - "lon": -0.0022156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426032, - "lat": 51.4421442, - "lon": -0.0100578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Huge Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426034, - "lat": 51.4465176, - "lon": -0.0159011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 44D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426042, - "lat": 51.4449666, - "lon": -0.0090749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Huge pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426043, - "lat": 51.4505824, - "lon": -0.0111990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426045, - "lat": 51.4488316, - "lon": -0.0126662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 40", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426046, - "lat": 51.4469738, - "lon": -0.0034331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426048, - "lat": 51.4467788, - "lon": -0.0004080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801426050, - "lat": 51.4441954, - "lon": -0.0134580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Huge Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430438, - "lat": 51.4522772, - "lon": -0.0165778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430440, - "lat": 51.4463915, - "lon": -0.0218951, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "note": "Inside front door of Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE6 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 801430442, - "lat": 51.4570886, - "lon": -0.0138425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 801430443, - "lat": 51.4423703, - "lon": -0.0153625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430444, - "lat": 51.4480111, - "lon": -0.0177088, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 801430446, - "lat": 51.4536365, - "lon": -0.0169662, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa off; Su off", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "material": "plastic", - "note": "Enter main entrance, turn right and down the corridor on the right", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE13 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 801430447, - "lat": 51.4447881, - "lon": -0.0198557, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "note": "03/10/21 ref for LHS damaged/unreadable RM site has SE6 9/SE6 109 at this location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE6 9;SE6 109", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430450, - "lat": 51.4435857, - "lon": -0.0170698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 47D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430452, - "lat": 51.4457082, - "lon": -0.0197638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430453, - "lat": 51.4535109, - "lon": -0.0119790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430454, - "lat": 51.4498424, - "lon": -0.0214905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430456, - "lat": 51.4431760, - "lon": -0.0204809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 801430457, - "lat": 51.4445880, - "lon": -0.0239352, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 802017400, - "lat": 52.8784413, - "lon": -4.4732284, - "tags": { - "amenity": "post_box", - "ref": "LL53 110" - } -}, -{ - "type": "node", - "id": 802092068, - "lat": 52.9883764, - "lon": -1.0361445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG14 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 802107880, - "lat": 51.8112921, - "lon": -0.1845971, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 308", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 802107891, - "lat": 51.8125373, - "lon": -0.1904536, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL7 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 802200964, - "lat": 51.8671420, - "lon": -0.1928120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG3 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802200975, - "lat": 51.8668877, - "lon": -0.1873411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "SG3 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802200988, - "lat": 51.8613050, - "lon": -0.1837180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "pillar", - "ref": "SG3 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802200995, - "lat": 51.8392180, - "lon": -0.1552540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "lamp", - "ref": "SG3 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201009, - "lat": 51.8542060, - "lon": -0.1830770, - "tags": { - "addr:city": "Woolmer Green", - "addr:street": "Longmead", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG3 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201046, - "lat": 51.8539810, - "lon": -0.1565440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG3 243", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201054, - "lat": 51.8647509, - "lon": -0.2216575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG3 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201073, - "lat": 51.8646740, - "lon": -0.1930360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "SG3 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201087, - "lat": 51.8694690, - "lon": -0.1850480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG3 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201107, - "lat": 51.8664400, - "lon": -0.1902280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SG3 2", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201134, - "lat": 51.8501160, - "lon": -0.1770700, - "tags": { - "addr:city": "Woolmer Green", - "addr:street": "Oak Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG3 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201152, - "lat": 51.8622550, - "lon": -0.1887120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG3 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201175, - "lat": 51.8657260, - "lon": -0.1825990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "SG3 234", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201208, - "lat": 51.8574030, - "lon": -0.1632100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG3 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201272, - "lat": 51.8521053, - "lon": -0.1806908, - "tags": { - "addr:city": "Woolmer Green", - "addr:street": "London Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "note": "No Post Office here, despite RM saying there is!", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SG3 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201305, - "lat": 51.8689350, - "lon": -0.2134280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG3 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201324, - "lat": 51.8685068, - "lon": -0.2079468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SG3 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802201345, - "lat": 51.8484492, - "lon": -0.1584503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG3 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "stop-motion GPS" - } -}, -{ - "type": "node", - "id": 802424900, - "lat": 51.3751819, - "lon": -0.4422661, - "tags": { - "amenity": "post_box", - "note": "Royal Mail post box inside the hotel." - } -}, -{ - "type": "node", - "id": 802425253, - "lat": 51.3422916, - "lon": -0.3956623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT11 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 802425366, - "lat": 51.3254898, - "lon": -0.3897458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 114D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 802695604, - "lat": 52.6490164, - "lon": -2.9048511, - "tags": { - "amenity": "post_box", - "ref": "SY5 467", - "source": "survey" - } -}, -{ - "type": "node", - "id": 802851842, - "lat": 51.9463749, - "lon": -0.2905480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG5 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803021284, - "lat": 53.0621569, - "lon": -1.3190847, - "tags": { - "amenity": "post_box", - "ele": "86.1632080", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803097198, - "lat": 51.0561578, - "lon": -1.7912415, - "tags": { - "amenity": "post_box", - "postal_code": "SP2", - "ref": "SP2 282" - } -}, -{ - "type": "node", - "id": 803225127, - "lat": 51.4532809, - "lon": -2.5425001, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803298472, - "lat": 51.5560633, - "lon": -0.2088413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW2 15", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 803304663, - "lat": 51.0157049, - "lon": -1.7600840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SP5", - "ref": "SP5 86", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 803435508, - "lat": 51.9418187, - "lon": -0.1202635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "SG2 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803441038, - "lat": 51.9383540, - "lon": -0.1141600, - "tags": { - "amenity": "post_box", - "fixme": "Need to add collection times, but unable to use copyrighted source for same.", - "post_box:type": "wall", - "ref": "SG2 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803446235, - "lat": 51.9276770, - "lon": -0.0969890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG2 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803451443, - "lat": 51.9216041, - "lon": -0.0744501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SG2 235", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 803481614, - "lat": 51.8876840, - "lon": -0.1002640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "SG2 98" - } -}, -{ - "type": "node", - "id": 803484950, - "lat": 51.8885650, - "lon": -0.1481090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "SG2 56" - } -}, -{ - "type": "node", - "id": 803497435, - "lat": 51.3189446, - "lon": 0.6631492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 803497457, - "lat": 51.3354445, - "lon": 0.6715952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "522738272065416", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-05" - } -}, -{ - "type": "node", - "id": 803497475, - "lat": 51.3759837, - "lon": 0.6473774, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME9 67", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 803497489, - "lat": 51.3559338, - "lon": 0.6709999, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 34D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 803535772, - "lat": 51.0643738, - "lon": 1.0478288, - "tags": { - "amenity": "post_box", - "ref": "CT21 102" - } -}, -{ - "type": "node", - "id": 803544477, - "lat": 54.1906007, - "lon": -2.0906490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "wall", - "ref": "BD23 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 803643131, - "lat": 51.8887860, - "lon": -0.1908150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG2 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803654653, - "lat": 51.9137420, - "lon": -0.1710470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "SG2 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803654661, - "lat": 51.9125750, - "lon": -0.1766100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803654668, - "lat": 51.9085085, - "lon": -0.1755718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG2 346" - } -}, -{ - "type": "node", - "id": 803654676, - "lat": 51.9085319, - "lon": -0.1700958, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 344", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 803662847, - "lat": 51.8825340, - "lon": -0.1836240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG2 204" - } -}, -{ - "type": "node", - "id": 803662848, - "lat": 51.8839056, - "lon": -0.1899782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG2 99", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 803662850, - "lat": 51.8819080, - "lon": -0.1790350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG2 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 803662856, - "lat": 51.8853910, - "lon": -0.1878380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG2 304" - } -}, -{ - "type": "node", - "id": 803666354, - "lat": 51.8921890, - "lon": -0.1692310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG2 322" - } -}, -{ - "type": "node", - "id": 803666378, - "lat": 51.8903310, - "lon": -0.1767360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SG2 112" - } -}, -{ - "type": "node", - "id": 803666419, - "lat": 51.8924873, - "lon": -0.1832872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG2 297" - } -}, -{ - "type": "node", - "id": 803666441, - "lat": 51.8946737, - "lon": -0.1637995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803666469, - "lat": 51.8890040, - "lon": -0.1831170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803666491, - "lat": 51.8952410, - "lon": -0.1800670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803679738, - "lat": 51.8951380, - "lon": -0.1747380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 312" - } -}, -{ - "type": "node", - "id": 803679739, - "lat": 51.8973120, - "lon": -0.1706660, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-13", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG2 334" - } -}, -{ - "type": "node", - "id": 803679740, - "lat": 51.8999710, - "lon": -0.1761080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG2 15" - } -}, -{ - "type": "node", - "id": 803679741, - "lat": 51.9012790, - "lon": -0.1579770, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "SG2 97", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 803679742, - "lat": 51.8987690, - "lon": -0.1577590, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-09", - "collection_times": "Mo-Fr 17:45, Sa 11:30", - "post_box:type": "pillar", - "ref": "SG2 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803679743, - "lat": 51.9046440, - "lon": -0.1658300, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 340", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 803679744, - "lat": 51.9026410, - "lon": -0.1683570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG2 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803685806, - "lat": 51.8948060, - "lon": -0.1057840, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG2 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803688328, - "lat": 51.9189410, - "lon": -0.1273160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "wall", - "ref": "SG2 41" - } -}, -{ - "type": "node", - "id": 803691826, - "lat": 51.9171070, - "lon": -0.1327130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "post_box:type": "lamp", - "ref": "SG2 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803695285, - "lat": 52.8070112, - "lon": -4.5013292, - "tags": { - "amenity": "post_box", - "ref": "LL53 109" - } -}, -{ - "type": "node", - "id": 803695295, - "lat": 52.8054376, - "lon": -4.5066257, - "tags": { - "amenity": "post_box", - "ref": "LL53 27" - } -}, -{ - "type": "node", - "id": 803708471, - "lat": 51.8740418, - "lon": -0.1587725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "lamp", - "ref": "SG2 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803708513, - "lat": 51.8796770, - "lon": -0.1674480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG2 313" - } -}, -{ - "type": "node", - "id": 803708551, - "lat": 51.8753298, - "lon": -0.1663950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG2 216" - } -}, -{ - "type": "node", - "id": 803712843, - "lat": 51.9093930, - "lon": -0.1570410, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SG2 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803712885, - "lat": 51.9086190, - "lon": -0.1649690, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SG2 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803716412, - "lat": 51.8901600, - "lon": -0.1512360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "NOPLATE/School Lane / Aston End Road//NOPLATE", - "post_box:type": "lamp", - "ref": "SG2 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803716831, - "lat": 51.8797610, - "lon": -0.1734370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG2 298" - } -}, -{ - "type": "node", - "id": 803716850, - "lat": 51.9013820, - "lon": -0.1670400, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG2 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803716922, - "lat": 51.8849284, - "lon": -0.1709806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG2 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803717042, - "lat": 51.9019170, - "lon": -0.1512100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "ref": "SG2 197" - } -}, -{ - "type": "node", - "id": 803717149, - "lat": 51.8783680, - "lon": -0.1790000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG2 405" - } -}, -{ - "type": "node", - "id": 803738063, - "lat": 52.9259524, - "lon": -4.3839131, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 803742890, - "lat": 53.1069358, - "lon": -4.2703634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 124D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 803756682, - "lat": 52.8053130, - "lon": -0.0643680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "Between bus shelter and junction, on W-bound side of the road./High Road,A151 / Bell Lane,B1357", - "fixme": "Bus stop is correct wrt pb. Bell Lane needs to come 35m W or so.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE12 6" - } -}, -{ - "type": "node", - "id": 803756690, - "lat": 52.8000110, - "lon": -0.0956210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:05", - "post_box:type": "lamp", - "ref": "PE12 101" - } -}, -{ - "type": "node", - "id": 803756694, - "lat": 52.6655880, - "lon": -0.0028700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "description": "/Coronation Avenue / South Eau Bank,B1166", - "post_box:type": "lamp", - "ref": "PE12 244" - } -}, -{ - "type": "node", - "id": 803756702, - "lat": 52.6650701, - "lon": 0.0149520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "description": "Just after brick barn-like structure on the left, as you enter Broadgate./Broadgate / South Eau Bank,B1166//", - "post_box:type": "lamp", - "ref": "PE12 173" - } -}, -{ - "type": "node", - "id": 803756706, - "lat": 52.7807080, - "lon": 0.1074450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:10; Sa 09:00", - "description": "Delph Road has been severed by the A17. PB is on the W-bound part, with numbers 35..109/Delph Road / A17//", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 147" - } -}, -{ - "type": "node", - "id": 803756713, - "lat": 52.7747340, - "lon": -0.0130840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "description": "/Cranesgate / Hurdletree Bank//", - "post_box:type": "lamp", - "ref": "PE12 105" - } -}, -{ - "type": "node", - "id": 803756722, - "lat": 52.6920550, - "lon": -0.0666410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE12 139" - } -}, -{ - "type": "node", - "id": 803756728, - "lat": 52.6990010, - "lon": -0.0506920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "location": "Outside Four Boys Village Store and Post Office./Broadgate", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE12 131" - } -}, -{ - "type": "node", - "id": 803756734, - "lat": 52.8477940, - "lon": -0.0578910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "description": "On left as you travel N.
In an ersatz unmade layby, being the entrance to an abandoned brick-built barn./Carrington Road//", - "post_box:type": "lamp", - "ref": "PE12 99" - } -}, -{ - "type": "node", - "id": 803756740, - "lat": 52.8190650, - "lon": 0.1891830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "description": "Opposite Little Chapel at Road Junction
/South Drove / Marsh Road / Guy's Head Road / Leamlands Lane;Opposite Little Chapel at Road Junction
/South Drove / Marsh Road / Guy's Head Road / Leamlands Lane//", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE12 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803756748, - "lat": 52.7749520, - "lon": 0.0752520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "description": "/Bullocks Shortgate / Cades Drove / Harford Gate//In wall at N end of brick barn, next to telegraph post, where it joins the garden wall of adjacent house, \"Pulvertoft Hall\".", - "fixme": "Again, not convinced this junction pos is correct.", - "post_box:type": "wall", - "ref": "PE12 46" - } -}, -{ - "type": "node", - "id": 803756751, - "lat": 52.7920840, - "lon": -0.0736830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "description": "On green in front of bungalows on N side of road../Broad Lane//", - "post_box:type": "lamp", - "ref": "PE12 193" - } -}, -{ - "type": "node", - "id": 803756756, - "lat": 52.7718160, - "lon": 0.1791300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "PE12 161" - } -}, -{ - "type": "node", - "id": 803756762, - "lat": 52.7865334, - "lon": 0.1165176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:15", - "description": "Against fence, to the left (W) of Long Sutton Primary School, on yellow cross-markings which go on for a very long distance./Dick Turpin Way", - "post_box:type": "lamp", - "ref": "PE12 175" - } -}, -{ - "type": "node", - "id": 803756767, - "lat": 52.6924988, - "lon": -0.0398251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "description": "Between phone box and bus shelter.
Google calls Main Road \"Drove Road\"/Main Road,B1166 / Chapel Drove//", - "fixme": "Again, not convinced about jn position", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 138" - } -}, -{ - "type": "node", - "id": 803756772, - "lat": 52.7853790, - "lon": 0.1224002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "Old Post Office, now Travel Agent/High Street", - "fixme": "Road needs to be realigned wrt BS slightly SE of here.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE12 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803756777, - "lat": 52.8114423, - "lon": 0.0370562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:05; Sa 07:45", - "fixme": "Can not match recorded description with extant road layouts. Suspect A17 is wrong position.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE12 85" - } -}, -{ - "type": "node", - "id": 803756784, - "lat": 52.8078160, - "lon": 0.1240840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:20; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803756789, - "lat": 52.8009190, - "lon": -0.0008020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "Outside triangular hedge on corner.", - "fixme": "As usual, junction to the right needs to be checked", - "post_box:type": "lamp", - "ref": "PE12 256" - } -}, -{ - "type": "node", - "id": 803756794, - "lat": 52.7271859, - "lon": 0.0526178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "post_box:type": "lamp", - "ref": "PE12 166" - } -}, -{ - "type": "node", - "id": 803756802, - "lat": 52.7660980, - "lon": 0.1803430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "description": "At the S tip of a spit of green between old and new course of Railway Lane", - "post_box:type": "lamp", - "ref": "PE12 160" - } -}, -{ - "type": "node", - "id": 803756806, - "lat": 52.7377200, - "lon": -0.1271680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:10", - "post_box:type": "lamp", - "ref": "PE12 97" - } -}, -{ - "type": "node", - "id": 803756853, - "lat": 52.7444340, - "lon": 0.0658940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 13:30", - "description": "At left side of driveway to house.
Opposite flat-roofed white garage-like building.20m W of, and opposite, Spar shop.", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE12 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803756868, - "lat": 52.8266841, - "lon": 0.0096774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "description": "On the right as you enter Star Lane, next to the phone box.
Opposite hard standing outside Primary School/Roman Bank / Star Lane", - "fixme": "Going by bus stops, whole road layout needs to come 20m North;Need to identify Star Lane and move jn to match BS and PB", - "post_box:type": "lamp", - "ref": "PE12 140" - } -}, -{ - "type": "node", - "id": 803756872, - "lat": 52.6653400, - "lon": -0.0201030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "description": "Opposite modern house called \"Wysteria House\".
Strapped to telegraph post, and hidden in foliage.
Very winding road here;", - "post_box:type": "lamp", - "ref": "PE12 142" - } -}, -{ - "type": "node", - "id": 803756882, - "lat": 52.8037882, - "lon": 0.0166830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:20; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE12 49" - } -}, -{ - "type": "node", - "id": 803756896, - "lat": 52.6916160, - "lon": -0.0555330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "description": "Opposite brick bus shelter/Broadgate", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 132" - } -}, -{ - "type": "node", - "id": 803756908, - "lat": 52.7213020, - "lon": -0.0633470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "description": "Just S of Holland Bridge over the South Holland Main Drain, on the W side of the road.
Randall Bank and Holland Bank are N of the bridge./Gull Bank / Randall Bank / Holland Bank;", - "fixme": "Junction layout and position does not match description", - "post_box:type": "lamp", - "ref": "PE12 174" - } -}, -{ - "type": "node", - "id": 803756925, - "lat": 52.7843630, - "lon": 0.0835330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "description": "On verge outside grey-thatched house.
30m N of bifurcation with Huntsgate.", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE12 180" - } -}, -{ - "type": "node", - "id": 803756965, - "lat": 52.7965200, - "lon": 0.0150420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:50", - "description": "At road-side of garden of number 42a", - "fixme": "Road does not match BS or PB", - "post_box:type": "lamp", - "ref": "PE12 194", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 803756976, - "lat": 52.8016329, - "lon": 0.1305702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:25; Sa 09:35", - "description": "Just north of the driveway to the white house. On the right, traveling N.Hidden by telegraph pole", - "fixme": "Need to resurvey this box", - "post_box:type": "lamp", - "ref": "PE12 155" - } -}, -{ - "type": "node", - "id": 803756989, - "lat": 52.8005490, - "lon": 0.0121100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "PE12 63" - } -}, -{ - "type": "node", - "id": 803757009, - "lat": 52.8436890, - "lon": 0.0264190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "description": "10m to the right of the white gate, on the E side of the road.
Strapped to a large tree trunk/Marsh Road", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE12 89" - } -}, -{ - "type": "node", - "id": 803757013, - "lat": 52.8490790, - "lon": 0.1443080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "PE12 41" - } -}, -{ - "type": "node", - "id": 803757035, - "lat": 52.7787090, - "lon": 0.1523170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:10", - "fixme": "Needs to be reconciled with bus stop.", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE12 153" - } -}, -{ - "type": "node", - "id": 803757041, - "lat": 52.8030360, - "lon": -0.0112420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE12 172" - } -}, -{ - "type": "node", - "id": 803757051, - "lat": 52.7820010, - "lon": -0.0387070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:55", - "description": "/Millgate / Snaffers Lane;/Millgate / Snaffers Lane//", - "post_box:type": "lamp", - "ref": "PE12 106" - } -}, -{ - "type": "node", - "id": 803757082, - "lat": 52.7731290, - "lon": 0.1292220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:30", - "description": "In left gatepost of \"Seagate Hall\", the first building on left as you enter Vicarage Lane.Just S of where long brick wall curves away from road./Vicarage Lane / Roman Bank / Seagate Road", - "post_box:type": "wall", - "ref": "PE12 148" - } -}, -{ - "type": "node", - "id": 803757159, - "lat": 52.7710760, - "lon": 0.1901900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "PE12 265" - } -}, -{ - "type": "node", - "id": 803757191, - "lat": 52.7461550, - "lon": -0.0837390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "description": "Tucked away in corner, between shop and boundary wall; hidden by tree.
Almost opposite The Jolly Farmer public house./Roman Road;", - "fixme": "Not convinced about junction position", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 110" - } -}, -{ - "type": "node", - "id": 803757208, - "lat": 52.8011630, - "lon": -0.0254490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "description": "Opposite the car dealer's", - "post_box:type": "lamp", - "ref": "PE12 25" - } -}, -{ - "type": "node", - "id": 803757246, - "lat": 52.7699810, - "lon": 0.1854960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "PE12 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803757264, - "lat": 52.7983825, - "lon": -0.0630315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "description": "In wall of Moulton Post Office.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE12 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 803757289, - "lat": 52.7928831, - "lon": -0.0633394, - "tags": { - "amenity": "post_box", - "description": "Half way between The Sidings and Ashby Gardens, to the right of the bungalow, and deeply embedded into the start of the hedge surrounding the next house.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 56" - } -}, -{ - "type": "node", - "id": 803757299, - "lat": 52.8045920, - "lon": 0.0670380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "Outside Fleet Post Office /Fleet Road / Hocklesgate;Outside Fleet Post Office /Fleet Road / Hocklesgate//", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE12 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803757338, - "lat": 52.7455940, - "lon": 0.0314140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "description": "150m NW of bridge over South Holland Main Drain/Old Fendyke", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE12 177" - } -}, -{ - "type": "node", - "id": 803757341, - "lat": 52.8479650, - "lon": 0.1160980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:45", - "description": "Next to telegraph post on the (unnamed) road, a few m S of the junction.
This part of Dawsmere Road appears also to be called \"Durham's Road\" - different road name signs on opposite sides of road/(unnamed) / Dawsmere Road / Fox's Hole Bank//", - "post_box:type": "lamp", - "ref": "PE12 187" - } -}, -{ - "type": "node", - "id": 803757353, - "lat": 52.8601720, - "lon": 0.0334580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "fixme": "Need to get ref", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 803757384, - "lat": 52.7977310, - "lon": -0.0373894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "description": "On green triangle, at the junction of these two roads, by telephone box./Churchgate / Kirk Gate", - "post_box:type": "pillar", - "ref": "PE12 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803757399, - "lat": 52.6781921, - "lon": -0.0095710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "description": "Google refers to Luttongate as \"Lutton Gate Road\"./Luttongate / Highstock Lane//", - "post_box:type": "lamp", - "ref": "PE12 141" - } -}, -{ - "type": "node", - "id": 803757405, - "lat": 52.8083530, - "lon": -0.0828820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE12 23", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 803757466, - "lat": 52.8130990, - "lon": -0.0490310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "description": "Very low to the ground.
Dark paint. Easy to miss.", - "fixme": "Correct road position to match BS and PB", - "post_box:type": "lamp", - "ref": "PE12 18" - } -}, -{ - "type": "node", - "id": 803757510, - "lat": 52.8023380, - "lon": 0.0057090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 11:30", - "description": "Langwith Drive is somewhere near here, according to my records. Need to find it.", - "post_box:type": "lamp", - "ref": "PE12 43" - } -}, -{ - "type": "node", - "id": 803757550, - "lat": 52.7892813, - "lon": 0.1161555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "description": "On left as you enter Limewalk, in stone wall, as it joins the metal fence.
Opposite Bench/Limewalk / Gedney Road,B1359;On left as you enter Limewalk, in stone wall, as it joins the metal fence.
Opposite Bench/Limewalk / Gedney Road,B1359 //", - "post_box:type": "wall", - "ref": "PE12 150" - } -}, -{ - "type": "node", - "id": 803757565, - "lat": 52.7836700, - "lon": 0.1216373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "description": "Outside Co-Op / Post Office/(off) West Street", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE12 143" - } -}, -{ - "type": "node", - "id": 803757611, - "lat": 52.7715110, - "lon": 0.1842080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "post_box:type": "lamp", - "ref": "PE12 197" - } -}, -{ - "type": "node", - "id": 803757661, - "lat": 52.8036380, - "lon": 0.0235910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE12 42" - } -}, -{ - "type": "node", - "id": 803757734, - "lat": 52.8007390, - "lon": 0.0205610, - "tags": { - "amenity": "post_box", - "check_date": "2016-09-07", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "PE12 198" - } -}, -{ - "type": "node", - "id": 803757778, - "lat": 52.7840770, - "lon": 0.1153180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:15", - "description": "Spring Gardens is an augmented crescent; PB is at SW-most junction with Station Road, not the junction near the Fire Station./Spring Gardens / Station Road,B1390 / Garnsgate Road;", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE12 144" - } -}, -{ - "type": "node", - "id": 803757804, - "lat": 52.8168790, - "lon": 0.0038110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "fixme": "Road does not match bus stops", - "location": "At the end of the hedge to the left of the entrance to Holbeach Ambulance Station/Boston Road / Mill Lane", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 182" - } -}, -{ - "type": "node", - "id": 803757845, - "lat": 52.7450940, - "lon": -0.1270880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "PE12 119" - } -}, -{ - "type": "node", - "id": 803757896, - "lat": 52.7461681, - "lon": -0.0037333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "description": "30m W of, and opposite, The Plough public house.
Near phone box/Jekils Bank,B1168 / Ravensgate,B1168 / Joys Bank;30m W of, and opposite, The Plough public house.
Near phone box/Jekils Bank,B1168 / Ravensgate,B1168 / Joys Bank//", - "fixme": "Road does not match bus stops", - "post_box:type": "lamp", - "ref": "PE12 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 803757915, - "lat": 52.8222050, - "lon": 0.0653280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:40; Sa 08:00", - "description": "Against wall of cream colored house, opposite the start of Hurn Bank/Marsh Road / Hurn Bank / Roman Bank", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "PE12 98" - } -}, -{ - "type": "node", - "id": 803757957, - "lat": 52.8328550, - "lon": 0.1236200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:30", - "description": "Don't know how much of this road is called \"Black Barn\"; changes to \"Lutton Bank\" further on./Black Barn / Marsh Road,B1359//", - "post_box:type": "lamp", - "ref": "PE12 152" - } -}, -{ - "type": "node", - "id": 803757981, - "lat": 52.8048887, - "lon": 0.0089580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "wall", - "ref": "PE12 62" - } -}, -{ - "type": "node", - "id": 803758007, - "lat": 52.8045357, - "lon": 0.1234908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803758025, - "lat": 52.8085630, - "lon": 0.0252250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "PE12 125" - } -}, -{ - "type": "node", - "id": 803758046, - "lat": 52.7454566, - "lon": -0.1374744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "Outside Thorpe's Garage.
100m W of junction with B1357/Barrier Bank,A1073//", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 126" - } -}, -{ - "type": "node", - "id": 803758101, - "lat": 52.7824161, - "lon": 0.0196548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "fixme": "Is this really a GVIR, given that it's a lamp box ?", - "note": "RM names Red Lion but no PH anywhere near !", - "post_box:type": "lamp", - "ref": "PE12 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 803758178, - "lat": 52.7990588, - "lon": -0.1284365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:40; Sa 12:00", - "post_box:type": "pillar", - "ref": "PE12 303" - } -}, -{ - "type": "node", - "id": 803758190, - "lat": 52.7761690, - "lon": 0.0018640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "description": "On rough layby on left (traveling N), just before W arm of Hurdletree Bank merges.", - "post_box:type": "lamp", - "ref": "PE12 188" - } -}, -{ - "type": "node", - "id": 803758205, - "lat": 52.7999538, - "lon": -0.0327218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "description": "Outside Co-Op Late Shop and Post Office, both of which are part of the BP garage on the W-bound side of the road.
There is a Jet garage almost opposite (E-bound)/Main Road,A151 / High Road,A151//", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE12 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803758242, - "lat": 52.7029460, - "lon": -0.0520680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "Just outside the sign for Whaplode Drove, on the diagonal footpath cutting across this corner.
Google Refers to Green Bank as \"Back Bank\"/Green Bank / Farrow Road", - "fixme": "Road needs to go through BS and be closer to pb", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 133" - } -}, -{ - "type": "node", - "id": 803758362, - "lat": 52.8659100, - "lon": 0.0127550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "fixme": "Need to check this is in the right place re junction layout.", - "post_box:type": "lamp", - "ref": "PE12 135", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 803758367, - "lat": 52.8019600, - "lon": 0.0167100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "description": "Holbeach Delivery Office. In wall to left of public entrance/Barrington Gate / Albert Walk", - "fixme": "Might be a Ludlow Wall Box; unable to tell from records", - "post_box:type": "wall", - "ref": "PE12 111" - } -}, -{ - "type": "node", - "id": 803758401, - "lat": 52.8100240, - "lon": 0.1278020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:20; Sa 09:35", - "description": "In blind wall of house", - "fixme": "This road is seriously out wrt bus stops and PB", - "post_box:type": "wall", - "ref": "PE12 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803758416, - "lat": 52.7430277, - "lon": 0.0566486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:30", - "post_box:type": "lamp", - "ref": "PE12 168" - } -}, -{ - "type": "node", - "id": 803758439, - "lat": 52.8059200, - "lon": 0.0211110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "60m S of junction with Park Lane. To the left of the cemetery gates.", - "fixme": "Road does not match bus stops", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 264" - } -}, -{ - "type": "node", - "id": 803758459, - "lat": 52.7332806, - "lon": 0.0829927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE12 165" - } -}, -{ - "type": "node", - "id": 803758607, - "lat": 52.6826251, - "lon": -0.0217080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "description": "Towards the right (N) end of long cream building, most of which is Gedney Hill Post Office and McColl's.
Almost opposite the Church of The Holy Trinity/Hillgate,B1166//", - "post_box:type": "lamp", - "ref": "PE12 136" - } -}, -{ - "type": "node", - "id": 803758637, - "lat": 52.8244480, - "lon": -0.0118970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "description": "50m N of the New Saracens Head public house./Washway Road / (unnamed);On grass triangle where Washway Road joins unnnamed road.
Opposite Village Hall.
", - "fixme": "Road does not match bus stops", - "post_box:type": "lamp", - "ref": "PE12 93" - } -}, -{ - "type": "node", - "id": 803758671, - "lat": 52.7931140, - "lon": 0.0591190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "description": "In wall of yard of church of Saint Mary Magdalene, to the right of its entrance pillar, raised up above height of the wall.
This part of Hallgate is called Church End./Churchgate / Hallgate / Eastgate;", - "fixme": "Again, check junction layout. Not convinced", - "post_box:type": "wall", - "ref": "PE12 39" - } -}, -{ - "type": "node", - "id": 803758746, - "lat": 52.7987440, - "lon": 0.0904950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:25; Sa 09:20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE12 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803758797, - "lat": 52.8057903, - "lon": 0.0300717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "PE12 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803758948, - "lat": 52.7874870, - "lon": 0.1293810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "description": "On grass triangle, at junction of these three roads./Little London / Roman Bank / Park Road", - "fixme": "Can't visualise where this is. Jn looks like it needs fixing.", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "PE12 149" - } -}, -{ - "type": "node", - "id": 803758987, - "lat": 52.7676770, - "lon": 0.1206240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:05; Sa 08:45", - "description": "Corner of grey house.
Hidden by hedge and faces E so can only be seen when traveling W along the spur from Roman Bank to Gimmels Gate.
40m W of phone box./Gimmels Gate (spur)", - "fixme": "We need to add a junction here.", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE12 151" - } -}, -{ - "type": "node", - "id": 803759122, - "lat": 52.7375030, - "lon": -0.0745260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "On rough layby at entrance to farmhouse.
Hidden by two hedges, a tree, and a brick wall.
Only visible when traveling S on Eaugate Road on wrong side !/Eaugate Road / Jekils Bank", - "post_box:type": "lamp", - "ref": "PE12 112" - } -}, -{ - "type": "node", - "id": 803759196, - "lat": 52.7954180, - "lon": 0.1009150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:25; Sa 09:15", - "post_box:type": "lamp", - "ref": "PE12 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803759331, - "lat": 52.8080702, - "lon": 0.0114874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "description": "On corner, on left, just before you enter CP Avenue, between a sack box and electrical junction box./Boston Road,B1168 / Cecil Pywell Avenue", - "post_box:type": "lamp", - "ref": "PE12 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 803759364, - "lat": 52.7803690, - "lon": 0.1255530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "description": "Seagate Road / Colsuan Gardens", - "post_box:type": "lamp", - "ref": "PE12 164" - } -}, -{ - "type": "node", - "id": 803759396, - "lat": 52.8040700, - "lon": -0.0019770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "description": "5m W of the junction with Wignals Gate.", - "post_box:type": "lamp", - "ref": "PE12 92" - } -}, -{ - "type": "node", - "id": 803759426, - "lat": 52.8408660, - "lon": 0.1685150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "description": "PB on S side of road", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE12 157" - } -}, -{ - "type": "node", - "id": 803759439, - "lat": 52.7694890, - "lon": 0.1769500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "fixme": "This PB doesn't appear to be on any road.", - "post_box:type": "lamp", - "ref": "PE12 267" - } -}, -{ - "type": "node", - "id": 803762493, - "lat": 51.8964610, - "lon": -0.2030620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 13:30", - "post_box:type": "wall", - "ref": "SG1 1" - } -}, -{ - "type": "node", - "id": 803762514, - "lat": 51.9270940, - "lon": -0.1874620, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762527, - "lat": 51.8845520, - "lon": -0.1933230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "indoor_pillar", - "ref": "SG1 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762548, - "lat": 51.9013210, - "lon": -0.2024290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SG1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762574, - "lat": 51.9299390, - "lon": -0.1712950, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-17", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "post_box:type": "pillar", - "ref": "SG1 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762606, - "lat": 51.9208720, - "lon": -0.2085740, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 803762690, - "lat": 51.9163130, - "lon": -0.2241090, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 123" - } -}, -{ - "type": "node", - "id": 803762715, - "lat": 51.9041065, - "lon": -0.1871494, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG1 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762732, - "lat": 51.9243350, - "lon": -0.1832430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 388" - } -}, -{ - "type": "node", - "id": 803762748, - "lat": 51.9049220, - "lon": -0.1830470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762781, - "lat": 51.8978650, - "lon": -0.1925930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 277" - } -}, -{ - "type": "node", - "id": 803762798, - "lat": 51.9159930, - "lon": -0.1608709, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-17", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762826, - "lat": 51.9128150, - "lon": -0.1908850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803762868, - "lat": 51.9078250, - "lon": -0.2202302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "media_type": "meter_mail", - "opening_hours": "Mo-Fr 09:00-18:30", - "post_box:type": "meter", - "ref": "SG1 1003" - } -}, -{ - "type": "node", - "id": 803762931, - "lat": 51.9178540, - "lon": -0.1900560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 371" - } -}, -{ - "type": "node", - "id": 803762989, - "lat": 51.9113690, - "lon": -0.2029550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 126" - } -}, -{ - "type": "node", - "id": 803763019, - "lat": 51.8941000, - "lon": -0.2068520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763052, - "lat": 51.8958927, - "lon": -0.2136592, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SG1 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763095, - "lat": 51.9242630, - "lon": -0.2126080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "indoor_pillar", - "ref": "SG1 8" - } -}, -{ - "type": "node", - "id": 803763136, - "lat": 51.9155850, - "lon": -0.1797780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763171, - "lat": 51.9122160, - "lon": -0.1831600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 355" - } -}, -{ - "type": "node", - "id": 803763204, - "lat": 51.9167524, - "lon": -0.1846431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763233, - "lat": 51.9074590, - "lon": -0.2129810, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 137" - } -}, -{ - "type": "node", - "id": 803763310, - "lat": 51.9041790, - "lon": -0.2202150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SG1 18" - } -}, -{ - "type": "node", - "id": 803763399, - "lat": 51.9044690, - "lon": -0.1936310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 282", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 803763434, - "lat": 51.9066470, - "lon": -0.1943800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG1 276" - } -}, -{ - "type": "node", - "id": 803763567, - "lat": 51.9165500, - "lon": -0.2163520, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "lamp", - "ref": "SG1 128" - } -}, -{ - "type": "node", - "id": 803763610, - "lat": 51.9205470, - "lon": -0.1705050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763636, - "lat": 51.9152640, - "lon": -0.2134690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 130" - } -}, -{ - "type": "node", - "id": 803763685, - "lat": 51.9222300, - "lon": -0.2172480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 400" - } -}, -{ - "type": "node", - "id": 803763716, - "lat": 51.9095340, - "lon": -0.2259220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG1 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763786, - "lat": 51.9095920, - "lon": -0.1836450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 357" - } -}, -{ - "type": "node", - "id": 803763810, - "lat": 51.9083860, - "lon": -0.1917750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "SG1 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763824, - "lat": 51.9130670, - "lon": -0.2213220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG1 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803763864, - "lat": 51.9130590, - "lon": -0.1972680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG1 211" - } -}, -{ - "type": "node", - "id": 803763973, - "lat": 51.9233740, - "lon": -0.2260780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG1 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803764032, - "lat": 51.9150010, - "lon": -0.1985400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG1 314" - } -}, -{ - "type": "node", - "id": 803764095, - "lat": 51.9033660, - "lon": -0.2028210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 4" - } -}, -{ - "type": "node", - "id": 803764171, - "lat": 51.9112550, - "lon": -0.2174760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 396" - } -}, -{ - "type": "node", - "id": 803764280, - "lat": 51.9258270, - "lon": -0.1640900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803764347, - "lat": 51.9007230, - "lon": -0.1928910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 278" - } -}, -{ - "type": "node", - "id": 803764399, - "lat": 51.9265330, - "lon": -0.1754380, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG1 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803764490, - "lat": 51.9020776, - "lon": -0.1889368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 283", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 803764574, - "lat": 51.9154400, - "lon": -0.2198930, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "SG1 129" - } -}, -{ - "type": "node", - "id": 803764615, - "lat": 51.9004360, - "lon": -0.1854210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803764851, - "lat": 51.9082910, - "lon": -0.1964640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG1 264", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 803764904, - "lat": 51.9033780, - "lon": -0.2028210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 3" - } -}, -{ - "type": "node", - "id": 803764986, - "lat": 51.9231760, - "lon": -0.2037410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 14" - } -}, -{ - "type": "node", - "id": 803765037, - "lat": 51.9137080, - "lon": -0.2090000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG1 138" - } -}, -{ - "type": "node", - "id": 803765169, - "lat": 51.9105800, - "lon": -0.2075920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 10" - } -}, -{ - "type": "node", - "id": 803765304, - "lat": 51.8964730, - "lon": -0.2030380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa off", - "opening_hours": "Mo-Fr 09:00-19:30", - "post_box:type": "meter", - "ref": "SG1 1001" - } -}, -{ - "type": "node", - "id": 803765350, - "lat": 51.9027900, - "lon": -0.1969250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "SG1 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803765407, - "lat": 51.9078030, - "lon": -0.1877280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SG1 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 803814859, - "lat": 52.9606093, - "lon": -4.4484239, - "tags": { - "amenity": "post_box", - "ref": "LL53 99" - } -}, -{ - "type": "node", - "id": 803826756, - "lat": 52.8546798, - "lon": -4.5075891, - "tags": { - "amenity": "post_box", - "ref": "LL53 111" - } -}, -{ - "type": "node", - "id": 803834737, - "lat": 52.8396855, - "lon": -4.4987324, - "tags": { - "amenity": "post_box", - "note": "Interesting reference number!", - "old_ref": "Warren 128", - "operator": "Royal Mail", - "survey": "By visit" - } -}, -{ - "type": "node", - "id": 803835506, - "lat": 52.8134552, - "lon": -4.5326476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL53 49" - } -}, -{ - "type": "node", - "id": 803855656, - "lat": 52.8955364, - "lon": -4.4518113, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL53 6" - } -}, -{ - "type": "node", - "id": 803864127, - "lat": 52.8858050, - "lon": -4.4872853, - "tags": { - "amenity": "post_box", - "ref": "LL53 51" - } -}, -{ - "type": "node", - "id": 803882557, - "lat": 52.8119793, - "lon": -4.5216836, - "tags": { - "amenity": "post_box", - "ref": "LL53 42" - } -}, -{ - "type": "node", - "id": 803883776, - "lat": 52.8455586, - "lon": -4.5236539, - "tags": { - "amenity": "post_box", - "ref": "LL53 108" - } -}, -{ - "type": "node", - "id": 803967870, - "lat": 51.3701191, - "lon": -0.4074059, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 101D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 803972232, - "lat": 50.9982415, - "lon": 0.8290787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "TN29 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 804274345, - "lat": 52.6674955, - "lon": -2.8741765, - "tags": { - "amenity": "post_box", - "ref": "SY5 303" - } -}, -{ - "type": "node", - "id": 804388360, - "lat": 52.3727670, - "lon": -0.1493041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 38" - } -}, -{ - "type": "node", - "id": 804415782, - "lat": 55.9730625, - "lon": -3.2354168, - "tags": { - "amenity": "post_box", - "ref": "EH5 366" - } -}, -{ - "type": "node", - "id": 804415845, - "lat": 55.9698356, - "lon": -3.2316222, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-03", - "ref": "EH5 190" - } -}, -{ - "type": "node", - "id": 804415855, - "lat": 55.9763800, - "lon": -3.2460031, - "tags": { - "amenity": "post_box", - "ref": "EH4 55" - } -}, -{ - "type": "node", - "id": 804415862, - "lat": 55.9756683, - "lon": -3.2269233, - "tags": { - "amenity": "post_box", - "ref": "EH5 267", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 804415868, - "lat": 55.9751260, - "lon": -3.2195056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 132" - } -}, -{ - "type": "node", - "id": 804415891, - "lat": 55.9779152, - "lon": -3.2225125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "215662280097115", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH5 344", - "survey:date": "2020-05-26" - } -}, -{ - "type": "node", - "id": 804415902, - "lat": 55.9746877, - "lon": -3.2384796, - "tags": { - "amenity": "post_box", - "ref": "EH5 380" - } -}, -{ - "type": "node", - "id": 804523079, - "lat": 53.0249871, - "lon": -0.6026030, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 804523089, - "lat": 53.0251823, - "lon": -0.6065458, - "tags": { - "amenity": "post_box", - "ele": "68.1386719", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 804743921, - "lat": 51.9320490, - "lon": -0.2337140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 133" - } -}, -{ - "type": "node", - "id": 804774040, - "lat": 50.6985557, - "lon": -1.2823308, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 5", - "ref:GB:uprn": "10015824277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/pan-post-office-po30-2au/00000PO305" - } -}, -{ - "type": "node", - "id": 804774047, - "lat": 50.7003582, - "lon": -1.2929235, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 3001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804781859, - "lat": 51.9086460, - "lon": -0.2860180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG4 114" - } -}, -{ - "type": "node", - "id": 804781883, - "lat": 51.9215350, - "lon": -0.2780110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "post_box:type": "lamp", - "ref": "SG4 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804787361, - "lat": 51.9356000, - "lon": -0.2684370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG4 134" - } -}, -{ - "type": "node", - "id": 804790293, - "lat": 51.9403270, - "lon": -0.2717690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804791097, - "lat": 51.9400560, - "lon": -0.2741490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 804792093, - "lat": 51.9396550, - "lon": -0.2636100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804795009, - "lat": 51.9288929, - "lon": -0.2654559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "pillar", - "ref": "SG4 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804797493, - "lat": 51.9281270, - "lon": -0.2555260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG4 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804799906, - "lat": 51.9193190, - "lon": -0.2604300, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG4 97" - } -}, -{ - "type": "node", - "id": 804802662, - "lat": 51.9361720, - "lon": -0.2756560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804804789, - "lat": 51.9448620, - "lon": -0.2772630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG4 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 804810095, - "lat": 51.9476023, - "lon": -0.2749702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG4 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 804812051, - "lat": 51.9504010, - "lon": -0.2710300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG4 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 804820919, - "lat": 51.9618610, - "lon": -0.2540360, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-06", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 37" - } -}, -{ - "type": "node", - "id": 804822285, - "lat": 51.9588810, - "lon": -0.2610140, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 804822307, - "lat": 51.9610400, - "lon": -0.2602610, - "tags": { - "amenity": "post_box", - "fixme": "Sturgeon's Way and Tristram Road need to be resurveyed", - "post_box:type": "lamp", - "ref": "SG4 40" - } -}, -{ - "type": "node", - "id": 804823843, - "lat": 51.9606170, - "lon": -0.2660990, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 804823860, - "lat": 51.9626962, - "lon": -0.2640087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804854727, - "lat": 51.9549600, - "lon": -0.2615010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG4 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804871263, - "lat": 51.9504159, - "lon": -0.2579047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG4 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804875645, - "lat": 51.9499740, - "lon": -0.2526820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804875665, - "lat": 51.9473411, - "lon": -0.2539813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG4 135" - } -}, -{ - "type": "node", - "id": 804877917, - "lat": 51.9422680, - "lon": -0.2598550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804882779, - "lat": 51.8898390, - "lon": -0.3320430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "SG4 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804887224, - "lat": 51.8848950, - "lon": -0.3258340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG4 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804887448, - "lat": 51.8984640, - "lon": -0.3158040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In gatepost of farm. (Could be church car park?)
Opposite entrance to Saint Mary's Church/Church Road", - "post_box:type": "wall", - "ref": "SG4 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 804888855, - "lat": 51.9050140, - "lon": -0.3145800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "SG4 116" - } -}, -{ - "type": "node", - "id": 804889511, - "lat": 51.8976140, - "lon": -0.3029570, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG4 113" - } -}, -{ - "type": "node", - "id": 804907223, - "lat": 51.8971368, - "lon": -0.2418091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "note": "Inside grounds of Rush Green Motors.", - "post_box:type": "lamp", - "ref": "SG4 68" - } -}, -{ - "type": "node", - "id": 804910612, - "lat": 51.8863560, - "lon": -0.2358730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG4 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804917988, - "lat": 51.8763620, - "lon": -0.2814080, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG4 120" - } -}, -{ - "type": "node", - "id": 804919778, - "lat": 51.8740350, - "lon": -0.2861490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "SG4 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804947068, - "lat": 51.9338610, - "lon": -0.2387540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "post_box:type": "lamp", - "ref": "SG4 94" - } -}, -{ - "type": "node", - "id": 804949279, - "lat": 51.8511300, - "lon": -0.2348945, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG4 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804953046, - "lat": 51.8493312, - "lon": -0.2357675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "pillar", - "ref": "SG4 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804954983, - "lat": 51.8489974, - "lon": -0.2408433, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG4 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804957360, - "lat": 51.8466910, - "lon": -0.2499240, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "post_box:type": "wall", - "ref": "SG4 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 804961865, - "lat": 51.8511850, - "lon": -0.2936680, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "SG4 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804969287, - "lat": 51.8520391, - "lon": -0.3006141, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG4 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 804975291, - "lat": 51.9247060, - "lon": -0.2376520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG4 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 804989460, - "lat": 51.9397752, - "lon": -0.1681506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "SG4 87" - } -}, -{ - "type": "node", - "id": 804991468, - "lat": 51.9593620, - "lon": -0.1866330, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG4 89" - } -}, -{ - "type": "node", - "id": 805004894, - "lat": 51.9549100, - "lon": -0.1704830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "post_box:type": "wall", - "ref": "SG4 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805005880, - "lat": 51.9566500, - "lon": -0.1646690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG4 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805292543, - "lat": 51.9420646, - "lon": -0.2688867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805314535, - "lat": 51.9460110, - "lon": -0.2693260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG4 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 805316021, - "lat": 53.7333482, - "lon": -1.1475039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 805316033, - "lat": 53.7723585, - "lon": -1.0732510, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO8 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805316042, - "lat": 53.7664369, - "lon": -1.0843766, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805316059, - "lat": 53.7791631, - "lon": -1.0767378, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 805316070, - "lat": 53.7573382, - "lon": -1.0556533, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 73" - } -}, -{ - "type": "node", - "id": 805316084, - "lat": 53.7133056, - "lon": -1.0747627, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 59" - } -}, -{ - "type": "node", - "id": 805316090, - "lat": 53.7293719, - "lon": -1.1222779, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO8 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 805316099, - "lat": 53.7509798, - "lon": -1.1511514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO8 5", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 805316110, - "lat": 53.7900913, - "lon": -1.0441868, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 805323460, - "lat": 51.9533774, - "lon": -0.2648668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG4 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805330207, - "lat": 53.7712123, - "lon": -1.1638759, - "tags": { - "amenity": "post_box", - "note": "postbox has been moved from St Mary's Approach to Station Road due to new property development.First relocated to a point south of the Village Hall, but then to east of the Village Hall", - "post_box:type": "pillar", - "ref": "YO8 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805330211, - "lat": 53.7835900, - "lon": -1.0687582, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 805366299, - "lat": 51.9504166, - "lon": -0.2646776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 49" - } -}, -{ - "type": "node", - "id": 805366330, - "lat": 51.9594394, - "lon": -0.2492673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 36", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 805366353, - "lat": 51.9627040, - "lon": -0.2640090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 11:30-18:30", - "post_box:type": "meter", - "ref": "SG4 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805366403, - "lat": 51.9558220, - "lon": -0.2492910, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-16", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 35" - } -}, -{ - "type": "node", - "id": 805366456, - "lat": 51.9529150, - "lon": -0.2469990, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Purwell", - "information": "map", - "map_size": "region", - "post_box:type": "pillar", - "ref": "SG4 34", - "tourism": "information" - } -}, -{ - "type": "node", - "id": 805366482, - "lat": 51.9573860, - "lon": -0.2551740, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 38", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 805366524, - "lat": 51.9528270, - "lon": -0.2515480, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-05", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SG4 32", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 805426382, - "lat": 51.8680730, - "lon": -0.2700620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "wall", - "ref": "SG5 122", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 805430992, - "lat": 51.9752951, - "lon": -0.3285969, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "SG5 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805440228, - "lat": 51.9672580, - "lon": -0.2875660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "SG5 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805442959, - "lat": 51.9633615, - "lon": -0.2880319, - "tags": { - "amenity": "post_box", - "check_date": "2010-07-07", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 4" - } -}, -{ - "type": "node", - "id": 805444034, - "lat": 51.9600406, - "lon": -0.2867846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Postbox on N side of Wellingham Avenue", - "post_box:type": "pillar", - "ref": "SG5 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805458747, - "lat": 51.9549100, - "lon": -0.2777630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 805460953, - "lat": 51.9538690, - "lon": -0.2751650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 805463144, - "lat": 51.9510404, - "lon": -0.2766336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "SG5 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805471664, - "lat": 51.9497990, - "lon": -0.2804170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Sunday 13:15, but this is defunct", - "post_box:type": "pillar", - "ref": "SG5 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805473685, - "lat": 51.9507451, - "lon": -0.2837567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "wall", - "ref": "SG5 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 805475537, - "lat": 51.9492030, - "lon": -0.2861210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805480157, - "lat": 51.9457861, - "lon": -0.2815451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805484332, - "lat": 51.9475078, - "lon": -0.2783842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG5 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805490547, - "lat": 51.9539646, - "lon": -0.2688705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805491959, - "lat": 51.9938151, - "lon": -0.3600048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "pillar", - "ref": "SG5 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 805492701, - "lat": 51.9953100, - "lon": -0.3654563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG5 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805498400, - "lat": 51.9631500, - "lon": -0.3911840, - "tags": { - "amenity": "post_box", - "note": "Postbox is in wall of old Post Office. RM insists it is still in use. At time of survey (2010-08), had modern sticker on \"we no longer collect on BH\" so it appears genuine.", - "post_box:type": "wall", - "ref": "SG5 80", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 805500727, - "lat": 51.9299419, - "lon": -0.3417175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "direction": "NNE", - "name": "Offley Post Office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG5 125" - } -}, -{ - "type": "node", - "id": 805503327, - "lat": 51.9284345, - "lon": -0.3521196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "SG5 3DR", - "ref": "SG5 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805505671, - "lat": 51.9280797, - "lon": -0.3380651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "direction": "NW", - "name": "Gosling Avenue", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "SG5 3EP", - "ref": "SG5 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805509491, - "lat": 51.9389863, - "lon": -0.2870675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG5 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805557782, - "lat": 51.8682133, - "lon": -0.2333630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "SG4 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805841858, - "lat": 51.9945253, - "lon": -0.2079532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "SG6 150", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 805867656, - "lat": 51.9915288, - "lon": -0.2128860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG6 146" - } -}, -{ - "type": "node", - "id": 805870348, - "lat": 51.9879610, - "lon": -0.2171580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805871684, - "lat": 51.9873430, - "lon": -0.2220280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805892355, - "lat": 51.9919130, - "lon": -0.2213640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 285" - } -}, -{ - "type": "node", - "id": 805907338, - "lat": 51.9856260, - "lon": -0.2152740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805907354, - "lat": 51.9957810, - "lon": -0.2200890, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG6 301" - } -}, -{ - "type": "node", - "id": 805919343, - "lat": 51.9944690, - "lon": -0.2257270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 311" - } -}, -{ - "type": "node", - "id": 805932952, - "lat": 51.9834447, - "lon": -0.2015012, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SG6 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805933009, - "lat": 51.9834532, - "lon": -0.2015142, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SG6 4P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 805937466, - "lat": 51.9798890, - "lon": -0.2193560, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 805939400, - "lat": 51.9818003, - "lon": -0.2178419, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 160D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 805944890, - "lat": 51.9935870, - "lon": -0.2324580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 382" - } -}, -{ - "type": "node", - "id": 805952637, - "lat": 51.9890060, - "lon": -0.2353080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "fixme": "Seems to be walkable from the end of Kite Way, which does not connect with Southern Way for vechicles.", - "post_box:type": "lamp", - "ref": "SG6 10" - } -}, -{ - "type": "node", - "id": 805954222, - "lat": 51.9876710, - "lon": -0.2335400, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG6 159" - } -}, -{ - "type": "node", - "id": 805961058, - "lat": 51.9853020, - "lon": -0.2347470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 319" - } -}, -{ - "type": "node", - "id": 805964917, - "lat": 51.9843030, - "lon": -0.2421480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 265" - } -}, -{ - "type": "node", - "id": 805979974, - "lat": 51.9798804, - "lon": -0.2441353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 170" - } -}, -{ - "type": "node", - "id": 805982418, - "lat": 51.9794920, - "lon": -0.2464110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 250" - } -}, -{ - "type": "node", - "id": 805993611, - "lat": 51.9818270, - "lon": -0.2091160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806024485, - "lat": 51.9840426, - "lon": -0.2482402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG6 158" - } -}, -{ - "type": "node", - "id": 806035448, - "lat": 51.9793970, - "lon": -0.2391630, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG6 269" - } -}, -{ - "type": "node", - "id": 806036835, - "lat": 51.9763747, - "lon": -0.2367701, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 167D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 806040463, - "lat": 51.9775890, - "lon": -0.2331220, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 163D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 806041560, - "lat": 51.9820940, - "lon": -0.2257030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 147D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 806060465, - "lat": 51.9789096, - "lon": -0.2261896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG6 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806067287, - "lat": 51.9787448, - "lon": -0.2295048, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG6 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806068705, - "lat": 51.9781538, - "lon": -0.2310802, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-05", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "colour": "red", - "drive_through": "no", - "location": "Inside Morrisons store, adjacent to lift to basement car park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SG6 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806071890, - "lat": 51.9758150, - "lon": -0.2243020, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 153D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 806074306, - "lat": 51.9724200, - "lon": -0.2230180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806095326, - "lat": 51.9719200, - "lon": -0.2268710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "Unusual curved top.
On triangle junction between Sollershot East and the two arms of South View.
Seems to be at a disused garage entrance./Sollershot East / South View", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SG6 155" - } -}, -{ - "type": "node", - "id": 806097799, - "lat": 51.9688610, - "lon": -0.2310140, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG6 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806099877, - "lat": 51.9673580, - "lon": -0.2368580, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG6 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Stop-motion GPS" - } -}, -{ - "type": "node", - "id": 806114929, - "lat": 51.9769711, - "lon": -0.2151624, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806114933, - "lat": 51.9743493, - "lon": -0.2119106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806114935, - "lat": 51.9691334, - "lon": -0.2164452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 351D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806114937, - "lat": 51.9772105, - "lon": -0.2125535, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806114939, - "lat": 51.9715552, - "lon": -0.2045421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806114941, - "lat": 51.9698174, - "lon": -0.2106627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806114943, - "lat": 51.9707710, - "lon": -0.2007125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG6 379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806236242, - "lat": 51.4908058, - "lon": -0.0971769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 806378709, - "lat": 51.5871430, - "lon": -0.5632000, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 806513413, - "lat": 54.3172915, - "lon": -7.5377908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 806540534, - "lat": 50.7894290, - "lon": -1.0823290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 806749690, - "lat": 50.4035394, - "lon": -5.1301295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR8 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 806768372, - "lat": 50.4056123, - "lon": -5.0667473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 34D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 806777365, - "lat": 50.4013657, - "lon": -5.1097049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 806777834, - "lat": 50.3991779, - "lon": -5.1109454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 806778372, - "lat": 50.4011756, - "lon": -5.1193225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 806829397, - "lat": 51.9471653, - "lon": -0.2793755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "fixme": "RM list says extra box (SG5 58) inside PO. This does not exist.", - "fixme2": "Collection plate is WNE something. Don't know what this means", - "indoor": "yes", - "post_box:type": "internal_wooden_box", - "ref": "SG5 57" - } -}, -{ - "type": "node", - "id": 807124140, - "lat": 51.8955914, - "lon": -0.1109439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:40; Sa 07:45", - "post_box:type": "lamp", - "ref": "SG2 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807245698, - "lat": 50.6975084, - "lon": -1.1137769, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO33 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/st-helens-post-office-po33-1xb/0000PO3330" - } -}, -{ - "type": "node", - "id": 807306922, - "lat": 51.9853780, - "lon": -0.1862050, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "colour": "red", - "indoor": "yes", - "location": "Inside Tesco's, squeezed between Customer Service desk and Photo-Me machine, on the right as you enter the central arch.", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor", - "post_box:type": "indoor_pillar", - "ref": "SG7 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807311071, - "lat": 51.9859836, - "lon": -0.1892618, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SG7 205D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 807314009, - "lat": 51.9864712, - "lon": -0.1961457, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG7 182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807314029, - "lat": 51.9838522, - "lon": -0.1928652, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG7 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807314129, - "lat": 51.9818650, - "lon": -0.1910440, - "tags": { - "amenity": "post_box", - "fixme": "In grounds of Westway Post Office Stores. Need to survey and add Post Office", - "post_box:type": "pillar", - "ref": "SG7 245" - } -}, -{ - "type": "node", - "id": 807314284, - "lat": 51.9797060, - "lon": -0.1884570, - "tags": { - "amenity": "post_box", - "note": "In gatepost of 6 Clare Crescent, which is on a corner/Clare Crescent.", - "post_box:type": "wall", - "ref": "SG7 180" - } -}, -{ - "type": "node", - "id": 807315458, - "lat": 51.9806820, - "lon": -0.1852970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Between main London Road A4161 eponymous Service Road.", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG7 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807315478, - "lat": 51.9853940, - "lon": -0.1814690, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG7 185" - } -}, -{ - "type": "node", - "id": 807318256, - "lat": 51.9894637, - "lon": -0.1745214, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG7 410" - } -}, -{ - "type": "node", - "id": 807319274, - "lat": 51.9924960, - "lon": -0.1771940, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG7 411" - } -}, -{ - "type": "node", - "id": 807321835, - "lat": 51.9908680, - "lon": -0.1868487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "description": "Metal box in wall of Londis / Post Office.
Disused stamp machine.
SuBH collexion is defunct/Whitehorse Street, A505/ SuBH 1330", - "post_box:type": "wall", - "ref": "SG7 214" - } -}, -{ - "type": "node", - "id": 807323626, - "lat": 51.9889787, - "lon": -0.1884558, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG7 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807324101, - "lat": 52.0210190, - "lon": -0.1872030, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG7 215" - } -}, -{ - "type": "node", - "id": 807324439, - "lat": 52.0496060, - "lon": -0.2004390, - "tags": { - "amenity": "post_box", - "fixme": "Road seems to be wrong side of PB. Need to go and resurvey", - "post_box:type": "lamp", - "ref": "SG7 212" - } -}, -{ - "type": "node", - "id": 807324543, - "lat": 52.0405291, - "lon": -0.1546275, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG7 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 807325491, - "lat": 52.0366130, - "lon": -0.1293800, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "post_box:type": "lamp", - "ref": "SG7 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807334584, - "lat": 52.0305440, - "lon": -0.1107810, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "note": "CP7 Lamp Box embedded in wall", - "post_box:type": "wall", - "ref": "SG7 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807335088, - "lat": 52.0253560, - "lon": -0.1132550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:45", - "description": "In left gatepost of driveway of house
Hidden under foliage
Only really accessible from NE-bound carriageway/A505", - "post_box:type": "wall", - "ref": "SG7 177" - } -}, -{ - "type": "node", - "id": 807335610, - "lat": 52.0104750, - "lon": -0.1601900, - "tags": { - "amenity": "post_box", - "description": "At entrance to Manor Farm, which seems to be a private estate also containing houses and the Church of Saint Margaret of Antioch", - "post_box:type": "lamp", - "ref": "SG7 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807335724, - "lat": 52.0042950, - "lon": -0.1660860, - "tags": { - "amenity": "post_box", - "description": "At corner of wall surrounding house", - "post_box:type": "lamp", - "ref": "SG7 220" - } -}, -{ - "type": "node", - "id": 807336690, - "lat": 52.0074651, - "lon": -0.2049401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "description": "Opposite entrance to Radwell Bury farm.", - "post_box:type": "lamp", - "ref": "SG7 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807337205, - "lat": 51.9939341, - "lon": -0.1891711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "description": "/North Road,A507 / Bygrave Road / Salisbury Road", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "SG7 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807338632, - "lat": 51.9709850, - "lon": -0.1511040, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG7 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 807351713, - "lat": 51.9879663, - "lon": -0.1190991, - "tags": { - "amenity": "post_box", - "description": "In brick pillar in wall to left of 7 The Street/The Street / Wallington Road", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG7 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 807734261, - "lat": 50.6468889, - "lon": -1.2029793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 52", - "ref:GB:uprn": "10015414168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/apse-heath-post-office-po36-0lt/0000PO3652" - } -}, -{ - "type": "node", - "id": 807751773, - "lat": 52.5918009, - "lon": -2.2429623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30" - } -}, -{ - "type": "node", - "id": 807891188, - "lat": 50.6742693, - "lon": -1.1445342, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 21", - "ref:GB:uprn": "10015465312", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/new-road-po36-0aa/0000PO3621" - } -}, -{ - "type": "node", - "id": 807891213, - "lat": 50.6798775, - "lon": -1.1439899, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/the-bullring-po36-0aa/000PO36101" - } -}, -{ - "type": "node", - "id": 807936152, - "lat": 53.2964530, - "lon": -2.4504010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 807991548, - "lat": 52.1312628, - "lon": -0.0309430, - "tags": { - "amenity": "post_box", - "description": "Next to telephone box and notice board. 10m East of the bus stop.", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 282" - } -}, -{ - "type": "node", - "id": 807994384, - "lat": 52.0269777, - "lon": 0.0419980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "description": "At left-side driveway wall, just west of the Post Office (which is in a barn)/Church End", - "name": "Church End, Barley", - "post_box:type": "lamp", - "ref": "SG8 10" - } -}, -{ - "type": "node", - "id": 807997912, - "lat": 52.0102880, - "lon": -0.0403550, - "tags": { - "amenity": "post_box", - "description": "At West end of low barn at triangle junction/(unnamed) / Dane End / Haywoods Lane", - "post_box:type": "lamp", - "ref": "SG8 230" - } -}, -{ - "type": "node", - "id": 808234234, - "lat": 50.8442783, - "lon": -1.7921369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BH24", - "ref": "BH24 63" - } -}, -{ - "type": "node", - "id": 808314617, - "lat": 52.6960370, - "lon": -0.0103980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "description": "Opposite common driveway in between second and third (out of a block of four) near-identical double houses.
Next to a phone box. Both phone box and post box are practically in the ditch./North Road", - "fixme": "Not sure which side of road", - "post_box:type": "lamp", - "ref": "PE12 183" - } -}, -{ - "type": "node", - "id": 808343495, - "lat": 52.6996990, - "lon": 0.0241210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "description": "To the right of the white brick-built bus shelter on the E side of the road.
In front of garage.
All at the left of driveway to a house./Broadgate / Cross Road", - "post_box:type": "lamp", - "ref": "PE12 170" - } -}, -{ - "type": "node", - "id": 808452849, - "lat": 51.5798252, - "lon": -0.7740860, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 808452851, - "lat": 51.5814792, - "lon": -0.7679988, - "tags": { - "amenity": "post_box", - "ref": "SL7 48" - } -}, -{ - "type": "node", - "id": 808667753, - "lat": 52.7573370, - "lon": -1.2272640, - "tags": { - "addr:street": "Woodbrook Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 808845058, - "lat": 52.6383966, - "lon": -2.9236303, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 94", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 809707330, - "lat": 51.6019368, - "lon": 0.6566635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SS5 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 809902730, - "lat": 51.5901221, - "lon": -1.4287428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OX12 1116D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 810209360, - "lat": 50.2134795, - "lon": -5.4804744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR26 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 810209411, - "lat": 50.2158067, - "lon": -5.4781574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR26 202D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 810655570, - "lat": 57.1503135, - "lon": -2.1584801, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 6EX", - "addr:street": "Summerhill Drive", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 195" - } -}, -{ - "type": "node", - "id": 810655572, - "lat": 57.1511152, - "lon": -2.1527035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 176" - } -}, -{ - "type": "node", - "id": 810674753, - "lat": 57.1457704, - "lon": -2.1764725, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 8BW", - "addr:street": "Queen's Den", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "AB15 523" - } -}, -{ - "type": "node", - "id": 810700449, - "lat": 50.5967903, - "lon": -1.1988136, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-05", - "check_date:collection_times": "2021-01-06", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PO38 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/madeira-road-po38-1aa/000PO38210" - } -}, -{ - "type": "node", - "id": 810700453, - "lat": 50.5975190, - "lon": -1.2006147, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-31", - "check_date:collection_times": "2021-03-31", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 206D", - "ref:GB:uprn": "10015312692", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/st-boniface-road-po38-1aa/000PO38206" - } -}, -{ - "type": "node", - "id": 810700454, - "lat": 50.5984625, - "lon": -1.1974062, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 228D", - "ref:GB:uprn": "10015365871", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/leeson-road-po37-6rb/000PO38228" - } -}, -{ - "type": "node", - "id": 810700455, - "lat": 50.5940279, - "lon": -1.2207087, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-31", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 248", - "ref:GB:uprn": "10015317324", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/gills-cliff-road-po38-1aa/000PO38248" - } -}, -{ - "type": "node", - "id": 810700456, - "lat": 50.5923523, - "lon": -1.2176072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 225", - "ref:GB:uprn": "10015289794", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/park-avenue-po38-1aa/000PO38225" - } -}, -{ - "type": "node", - "id": 810700457, - "lat": 50.5931045, - "lon": -1.2100563, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-31", - "check_date:collection_times": "2021-03-31", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 215D", - "ref:GB:uprn": "10015359721", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/esplanade-west-po38-1aa/000PO38215" - } -}, -{ - "type": "node", - "id": 810700458, - "lat": 50.5990707, - "lon": -1.1898402, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-31", - "check_date:collection_times": "2021-03-31", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 233", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/village-road-po37-6rb/000PO38233" - } -}, -{ - "type": "node", - "id": 810700460, - "lat": 50.5976501, - "lon": -1.2053290, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-31", - "check_date:collection_times": "2021-03-31", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 205D", - "ref:GB:uprn": "10015403513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/mitchell-avenue-po38-1aa/000PO38205" - } -}, -{ - "type": "node", - "id": 810747475, - "lat": 53.4882695, - "lon": -2.3054204, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 810754108, - "lat": 53.1761609, - "lon": -2.0431547, - "tags": { - "amenity": "post_box", - "postal_code": "SK11", - "ref": "SK11 89" - } -}, -{ - "type": "node", - "id": 810792333, - "lat": 53.4202414, - "lon": -2.0819081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK6 46" - } -}, -{ - "type": "node", - "id": 810836138, - "lat": 50.8846204, - "lon": -1.7885090, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "postal_code": "BH24", - "ref": "BH24 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 811042796, - "lat": 51.4836653, - "lon": -2.5277931, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS16 48" - } -}, -{ - "type": "node", - "id": 811198111, - "lat": 50.7003594, - "lon": -1.2929032, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 3002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/town-hall-po30-1ae/00PO303002" - } -}, -{ - "type": "node", - "id": 811308850, - "lat": 52.5743655, - "lon": -0.2494209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "description": "Opposite Peterborough Railway Station; On corner, outside GN Hôtel", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Stop Motion" - } -}, -{ - "type": "node", - "id": 811311924, - "lat": 52.5739117, - "lon": -0.2360807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 31D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 811315387, - "lat": 52.2260210, - "lon": -0.2785850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "location": "On the verge, between the bus shelter and the bench, on the N side of the road.", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE19 104" - } -}, -{ - "type": "node", - "id": 811315392, - "lat": 52.2232090, - "lon": -0.2842930, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "location": "At the start of the layby on the N side of the road, 40m SW of the One-Stop Shop/", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE19 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 811319232, - "lat": 52.2282734, - "lon": -0.2582672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 811319233, - "lat": 52.2306180, - "lon": -0.2540190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "/Longsands Road / Longsands Parade", - "fixme": "Need to add shopping parade, on which this pb sits.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 233", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 811319235, - "lat": 52.2314687, - "lon": -0.2475310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "In S-facing wall of railway station building (on the down-side), next to the help-point.
CP1 /(off) Hawkesden Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE19 102", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 811319246, - "lat": 52.2279550, - "lon": -0.2521470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "PE19 159" - } -}, -{ - "type": "node", - "id": 811327030, - "lat": 52.7795940, - "lon": -0.1103060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "/Austendike Road,B1165 / Swindler's Drove", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE12 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Stop Motion" - } -}, -{ - "type": "node", - "id": 811329233, - "lat": 52.7789960, - "lon": -0.0940660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "30m W of, and opposite, The Bell Inn/Austendyke Road,B1165", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE12 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 811331984, - "lat": 52.8269866, - "lon": -0.0394478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "On W side of road. Next to white house, which sticks out into the pavement, making it only visible from the N./Seas End Road,B1357", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE12 79" - } -}, -{ - "type": "node", - "id": 811348649, - "lat": 52.8037830, - "lon": 0.0318620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "30m SE of Fleet Road Garage.
Opposite brick bus shelter./Fleet Road / Princes Street / Rowan Close", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE12 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 811348650, - "lat": 52.8206020, - "lon": 0.0171880, - "tags": { - "amenity": "post_box", - "check_date": "2018-11-25", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "description": "100 m NW of the triangle at which is The Bull's Neck public house./Washway Road / Peartree House Road / Penny Hill Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE12 189" - } -}, -{ - "type": "node", - "id": 811348651, - "lat": 52.8260270, - "lon": 0.0012160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Embedded into, and flush with, the hedge on the NE quadrant of this junction./Roman Bank / (Old) Sluice Road / Clough Road / (unnamed):Feb24 Hedge has gone", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE12 44", - "source": "photographic interpretation" - } -}, -{ - "type": "node", - "id": 811387656, - "lat": 52.2133113, - "lon": 0.1206703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB4 143D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 811395523, - "lat": 52.7552182, - "lon": 0.3968299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "description": "Has ominous notice telling people not to put stamped mail in it: Use PE30 603 (50m west)
RM/Norfolk Street (pedestrian spur)", - "post_box:type": "parcel", - "ref": "PE30 602P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 811395527, - "lat": 52.7550666, - "lon": 0.3959467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "Just off the main street in a covered building passage.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE30 603;PE30 6033", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 811396378, - "lat": 52.9757713, - "lon": -1.3025420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE7 1301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 811398197, - "lat": 51.8004808, - "lon": -0.0591767, - "tags": { - "amenity": "post_box", - "description": "Outside shop (looks like old Post Office)
On the left, 10m NE of Meadside Garage./ Cromwell Road / Stanstead Road,B1502", - "post_box:type": "pillar", - "ref": "SG13 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 811398198, - "lat": 51.7979130, - "lon": -0.0704280, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 33D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 811414443, - "lat": 51.8109493, - "lon": -0.0871445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "On East side of road; original contributor had it on W.", - "post_box:type": "lamp", - "ref": "SG14 72" - } -}, -{ - "type": "node", - "id": 811414448, - "lat": 51.7949751, - "lon": -0.0887061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "description": "Distant from the main road (Hertingfordbury Road,A414 W-bound), at the point where Riversmeet divides into two spurs/Riversmeet", - "name": "Riversmeet", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG14 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Stop-Motion GPS" - } -}, -{ - "type": "node", - "id": 811414451, - "lat": 51.8001860, - "lon": -0.0869680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG14 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Stop-Motion" - } -}, -{ - "type": "node", - "id": 811414456, - "lat": 51.7968900, - "lon": -0.0769580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "SG14 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 811414459, - "lat": 51.8032040, - "lon": -0.1001160, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG14 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 811414460, - "lat": 51.8025280, - "lon": -0.1047950, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG14 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 811414461, - "lat": 51.7961010, - "lon": -0.1045420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "lamp", - "ref": "SG14 74", - "source": "Stop-Motion GPS" - } -}, -{ - "type": "node", - "id": 811414462, - "lat": 51.7983820, - "lon": -0.0905080, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SG14 8D", - "royal_cypher": "GVIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 811414463, - "lat": 51.7989487, - "lon": -0.0729240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG14 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 811414466, - "lat": 51.7970920, - "lon": -0.0804050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG14 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812003582, - "lat": 52.4226410, - "lon": 0.7705210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "IP24 3431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812041978, - "lat": 51.3512866, - "lon": -2.0987024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 173", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 812042012, - "lat": 51.3454859, - "lon": -2.1019963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 165D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 812270231, - "lat": 51.7817420, - "lon": -0.1370210, - "tags": { - "amenity": "post_box", - "description": "Near notice board", - "post_box:type": "lamp", - "ref": "SG14 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812287125, - "lat": 51.8588341, - "lon": -0.0674482, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-06", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "description": "On the right, a few meters into Sacombe Green Road from Sacombe Pound.
Next to a notice board", - "name": "Sacombe Pound", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG12 19" - } -}, -{ - "type": "node", - "id": 812287128, - "lat": 51.8120160, - "lon": -0.0176980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "SG12 47" - } -}, -{ - "type": "node", - "id": 812287130, - "lat": 51.8749741, - "lon": -0.0653175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photographic_interpretation" - } -}, -{ - "type": "node", - "id": 812287136, - "lat": 51.8374617, - "lon": -0.0651334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "colour": "red", - "description": "At the left of the Robin Hood and Little John public house, between that building and the low wall./Ware Road / Bourne Honour", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG12 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812287137, - "lat": 51.8087580, - "lon": -0.0300100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "description": "On parade of shops, opposite Martin's Newsagent.
CP8/Amwell End,A1170 / Broadmeads / Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812287139, - "lat": 51.8737523, - "lon": -0.0872380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "20m S of junction with Mill Lane.
On the E side of the road, at the left of a rough entrance to a field. (At the right side of the entrance is an antique lamp-post.)/Whempstead Road / Mill Lane", - "post_box:type": "lamp", - "ref": "SG12 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812322838, - "lat": 50.2437367, - "lon": -3.7755542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 09:45; Su off", - "drive_through": "no", - "note": "Set into the side of a house! Victorian box where the slot has been widened to accept larger envelopes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ8 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 812371555, - "lat": 51.3215437, - "lon": 0.0278029, - "tags": { - "amenity": "post_box", - "colour": "red", - "ref": "TN16 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812418834, - "lat": 51.4593970, - "lon": -0.4476188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "name": "Heathrow Terminal 4", - "note": "Post boxes exist on arrivals and departure floors at this point.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW6 1108", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 812425392, - "lat": 51.6127953, - "lon": -0.2998270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA8 773D" - } -}, -{ - "type": "node", - "id": 812886396, - "lat": 51.8107300, - "lon": -0.0293150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812886397, - "lat": 51.8206520, - "lon": -0.0409690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG12 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 812886399, - "lat": 51.8110471, - "lon": -0.0226530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Vicarage Road", - "post_box:type": "pillar", - "ref": "SG12 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 813117887, - "lat": 51.4641146, - "lon": -0.0361647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 813423525, - "lat": 52.3920591, - "lon": -1.8724181, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B47", - "ref": "B47 730", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 813550448, - "lat": 52.3837272, - "lon": -1.8838754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B47 248D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 813759729, - "lat": 51.5314769, - "lon": -0.1011766, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 193" - } -}, -{ - "type": "node", - "id": 813768764, - "lat": 51.1493650, - "lon": -3.9866835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX31 4LW", - "ref": "EX31 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 813904433, - "lat": 52.4296415, - "lon": -1.7981642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "B91 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 813910855, - "lat": 56.1325773, - "lon": -3.3889078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY4 166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 814178243, - "lat": 54.0006133, - "lon": -1.5297724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 814203855, - "lat": 55.6863739, - "lon": -1.9355141, - "tags": { - "amenity": "post_box", - "ref": "TD15 94", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814266248, - "lat": 50.3851429, - "lon": -4.6172890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL22 75", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814266249, - "lat": 50.3626765, - "lon": -4.5804122, - "tags": { - "amenity": "post_box", - "ref": "PL13 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814283768, - "lat": 50.9194642, - "lon": -1.4607003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1381454412253423", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 584D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-25" - } -}, -{ - "type": "node", - "id": 814291667, - "lat": 50.6229450, - "lon": -4.4213219, - "tags": { - "amenity": "post_box", - "ref": "PL15 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814296155, - "lat": 50.3315182, - "lon": -4.5195340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL13 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814297012, - "lat": 50.3359860, - "lon": -4.5691789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:type": "wall", - "ref": "PL13 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814447569, - "lat": 51.0700091, - "lon": -1.8009924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP2 105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP2", - "ref": "SP2 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814447891, - "lat": 51.0694650, - "lon": -1.8045741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP2 130", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "SP2", - "ref": "SP2 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814448654, - "lat": 51.0695817, - "lon": -1.7958553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "last_checked": "2020-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 329", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814449338, - "lat": 51.0741332, - "lon": -1.7859418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 814461817, - "lat": 57.1545884, - "lon": -2.1785193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "AB16 116" - } -}, -{ - "type": "node", - "id": 814479936, - "lat": 51.0695608, - "lon": -1.8115833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Royal Mail list says Steventon Rd not Stephenson Rd", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP2", - "ref": "SP2 453D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 814485603, - "lat": 57.1496020, - "lon": -2.1758567, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 6NJ", - "addr:street": "Swannay Square", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "AB15 526" - } -}, -{ - "type": "node", - "id": 814489933, - "lat": 51.0738079, - "lon": -1.8223067, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "SP2", - "ref": "SP2 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 814524558, - "lat": 51.0733108, - "lon": -1.7963383, - "tags": { - "amenity": "post_box", - "postal_code": "SP1", - "ref": "SP1 58" - } -}, -{ - "type": "node", - "id": 814526638, - "lat": 51.0775625, - "lon": -1.7987883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP1 123", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814540353, - "lat": 51.0673525, - "lon": -1.7979211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "In Crane St, not High St", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814662201, - "lat": 52.3303961, - "lon": -0.1840446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE29 4100;PE29 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814662202, - "lat": 52.3288500, - "lon": -0.1921672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE29 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 814662205, - "lat": 52.3462859, - "lon": -0.1981203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE29 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 814662208, - "lat": 52.3462340, - "lon": -0.1981649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 11:30-18:00", - "post_box:type": "meter", - "ref": "PE29 291" - } -}, -{ - "type": "node", - "id": 814662213, - "lat": 52.3528645, - "lon": -0.2051319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "description": "In front of barn", - "operator": "Royal Mail", - "ref": "PE28 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 814891377, - "lat": 52.4182370, - "lon": -1.8403139, - "tags": { - "amenity": "post_box", - "postal_code": "B28", - "ref": "B28 430", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 814948689, - "lat": 52.4209706, - "lon": -1.8463008, - "tags": { - "amenity": "post_box", - "postal_code": "B28", - "ref": "B28 484", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 815114719, - "lat": 53.0628366, - "lon": -0.6874633, - "tags": { - "amenity": "post_box", - "ele": "13.3439941" - } -}, -{ - "type": "node", - "id": 815150978, - "lat": 52.1983843, - "lon": 1.0685761, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP14 8073", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815196208, - "lat": 53.0472254, - "lon": -0.6891225, - "tags": { - "amenity": "post_box", - "ele": "17.9", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG23 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 815200711, - "lat": 53.0302118, - "lon": -0.6998152, - "tags": { - "amenity": "post_box", - "ele": "23.9183350", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 815292473, - "lat": 55.7961997, - "lon": -4.2638012, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "postal_code": "G76", - "ref": "G76 1131", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 815305814, - "lat": 53.0066751, - "lon": -0.6266246, - "tags": { - "amenity": "post_box", - "ele": "59.4868164", - "post_box:type": "wall", - "ref": "NG32 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 815477438, - "lat": 52.8697052, - "lon": -0.8530464, - "tags": { - "amenity": "post_box", - "ele": "81.3566895" - } -}, -{ - "type": "node", - "id": 815477471, - "lat": 52.8727700, - "lon": -0.8560171, - "tags": { - "amenity": "post_box", - "ele": "71.2629395", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 815477498, - "lat": 52.8721596, - "lon": -0.8541032, - "tags": { - "amenity": "post_box", - "ele": "75.1081543", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 815625831, - "lat": 51.4781903, - "lon": -2.5324913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BS16 682" - } -}, -{ - "type": "node", - "id": 815657894, - "lat": 52.0222170, - "lon": -0.2634590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG15 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Walking;survey" - } -}, -{ - "type": "node", - "id": 815657895, - "lat": 52.0230168, - "lon": -0.2596702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "House Lane / Glossop Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG15 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 815657899, - "lat": 52.0056298, - "lon": -0.2657514, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SG15 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 815657915, - "lat": 51.9986387, - "lon": -0.2666996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "SG15 7", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 815657916, - "lat": 52.0133090, - "lon": -0.2594920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "description": "/Gothic Way", - "post_box:type": "lamp", - "ref": "SG15 5", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 815657918, - "lat": 52.0100956, - "lon": -0.2628010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "SG15 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 815696113, - "lat": 51.7711885, - "lon": -0.2141068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 36" - } -}, -{ - "type": "node", - "id": 815696115, - "lat": 51.7741363, - "lon": -0.2035605, - "tags": { - "amenity": "post_box", - "fixme": "Supposed to be in Mill Green Lane. Can't match with extant way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL9 188" - } -}, -{ - "type": "node", - "id": 815696117, - "lat": 51.7701424, - "lon": -0.2102970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 306" - } -}, -{ - "type": "node", - "id": 815701268, - "lat": 51.7637813, - "lon": -0.2151553, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 300" - } -}, -{ - "type": "node", - "id": 815701271, - "lat": 51.7654767, - "lon": -0.2130629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL9 301" - } -}, -{ - "type": "node", - "id": 815701274, - "lat": 51.7631136, - "lon": -0.2147542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815716958, - "lat": 51.7605455, - "lon": -0.1711822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00; Su off", - "description": "In brick wall of Upper West End Farm/West End Lane", - "post_box:type": "wall", - "ref": "AL9 200", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 815716967, - "lat": 51.7185480, - "lon": -0.1782980, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL9 208" - } -}, -{ - "type": "node", - "id": 815716973, - "lat": 51.7387200, - "lon": -0.2121330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "description": "Buried in foliage", - "post_box:type": "lamp", - "ref": "AL9 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815716992, - "lat": 51.7222440, - "lon": -0.2024170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "description": "At the parking bay", - "fixme": "Surrounding roads seem to be Bradmore Way / Brookmans Green / Bradmore Green", - "post_box:type": "pillar", - "ref": "AL9 193" - } -}, -{ - "type": "node", - "id": 815717002, - "lat": 51.7345791, - "lon": -0.2181093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815726685, - "lat": 51.8103572, - "lon": -0.2890661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "description": "On verge, E-bound side of the road; outside row of terraced houses", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AL4 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815726686, - "lat": 51.7457272, - "lon": -0.2650958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 207" - } -}, -{ - "type": "node", - "id": 815726705, - "lat": 51.7520141, - "lon": -0.2790720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AL4 202" - } -}, -{ - "type": "node", - "id": 815726708, - "lat": 51.8143240, - "lon": -0.2933293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "description": "On service road outside small parade of shops. One of these shops is the Post Office.
N-bound side of the road.
\"Meter Mail\" & \"Stamped Mail\"", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AL4 163" - } -}, -{ - "type": "node", - "id": 815742798, - "lat": 51.7513128, - "lon": -0.3235974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815742803, - "lat": 51.7534980, - "lon": -0.3375580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "On pavement, outside Robert G Dyas.
Between line of market stalls and road-line/Saint Peter's Street,A1081", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815742809, - "lat": 51.7521440, - "lon": -0.3117120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815742812, - "lat": 51.7511326, - "lon": -0.3335295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815742829, - "lat": 51.7526470, - "lon": -0.3174660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815742833, - "lat": 51.7502135, - "lon": -0.3271062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "description": "Outside Saint Albans City Railway Station (on ramp down from Victoria Street)/Station Way / Victoria Street,B691 / Grimston Road/", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 815742837, - "lat": 51.7382280, - "lon": -0.3447320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 138" - } -}, -{ - "type": "node", - "id": 815775022, - "lat": 51.8408620, - "lon": -0.2243560, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-02", - "collection_plate": "CP7-R(N)", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "AL6 162" - } -}, -{ - "type": "node", - "id": 815775033, - "lat": 51.8231510, - "lon": -0.2181830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "On left, going uphill (N)", - "post_box:type": "lamp", - "ref": "AL6 284" - } -}, -{ - "type": "node", - "id": 815775034, - "lat": 51.8420200, - "lon": -0.1940868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "note": "On N side of road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL6 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815775035, - "lat": 51.8357160, - "lon": -0.2155720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Has \"hydrant\" sign on base.", - "post_box:type": "pillar", - "ref": "AL6 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815775042, - "lat": 51.8474439, - "lon": -0.1856172, - "tags": { - "addr:city": "Welwyn", - "addr:street": "Mardley Hill", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL6 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 815775047, - "lat": 51.8448612, - "lon": -0.1979463, - "tags": { - "addr:city": "Welwyn", - "addr:street": "Canonsfield Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "description": "Buried in foliage.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL6 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815775053, - "lat": 51.8316650, - "lon": -0.2134110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL6 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 815775062, - "lat": 51.8252110, - "lon": -0.2150890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL6 187" - } -}, -{ - "type": "node", - "id": 815775065, - "lat": 51.8256910, - "lon": -0.2113970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "Near electrical substation", - "post_box:type": "lamp", - "ref": "AL6 317" - } -}, -{ - "type": "node", - "id": 815775066, - "lat": 51.8421130, - "lon": -0.2040380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "AL6 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815775067, - "lat": 51.8197127, - "lon": -0.1916221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "On the green, usually behind parked vehicles
CP7 /Hertford Road / Harmer Green Lane", - "post_box:type": "lamp", - "ref": "AL6 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815775069, - "lat": 51.8289720, - "lon": -0.2225360, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL6 240", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 815775073, - "lat": 51.8280410, - "lon": -0.2197080, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Under a tree", - "post_box:type": "pillar", - "ref": "AL6 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 815775078, - "lat": 51.8304750, - "lon": -0.2152620, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "description": "Under the porch of a Jeweller's Shop (which contains Welwyn Post Office)/High Street / Mimram Place", - "post_box:type": "pillar", - "ref": "AL6 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 815775081, - "lat": 51.8427808, - "lon": -0.1904834, - "tags": { - "addr:city": "Welwyn", - "addr:street": "Oaklands Rise", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL6 143", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 815798529, - "lat": 50.6450450, - "lon": -1.1781398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 144", - "ref:GB:uprn": "10015272930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/merrie-gardens-po36-9lt/000PO36144" - } -}, -{ - "type": "node", - "id": 815798534, - "lat": 50.6573725, - "lon": -1.1571259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "mapillary": "914449715781843", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 78", - "ref:GB:uprn": "10015337939", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-07-05", - "website": "https://www.royalmail.com/services-near-you/postbox/briars-po36-9lt/0000PO3678" - } -}, -{ - "type": "node", - "id": 815798553, - "lat": 50.6585550, - "lon": -1.1531570, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-24", - "check_date:collection_times": "2021-03-24", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 120D", - "ref:GB:uprn": "10003324496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/st-johns-crescent-po36-8bq/000PO36120" - } -}, -{ - "type": "node", - "id": 815798577, - "lat": 50.6522819, - "lon": -1.2010919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 14:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 145", - "ref:GB:uprn": "10015405872", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/woods-drive-po36-0lt/000PO36145" - } -}, -{ - "type": "node", - "id": 815798586, - "lat": 50.6546828, - "lon": -1.2016431, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 14:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 116", - "ref:GB:uprn": "10015446015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/forest-road-po36-0lt/000PO36116" - } -}, -{ - "type": "node", - "id": 815798604, - "lat": 50.6661449, - "lon": -1.1700988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2016-05-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "mapillary": "186364656924589", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO36 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-08-08", - "website": "https://www.royalmail.com/services-near-you/postbox/adgestone-village-po36-9aa/0000PO3675" - } -}, -{ - "type": "node", - "id": 815798612, - "lat": 50.6805117, - "lon": -1.1402988, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 128D", - "ref:GB:uprn": "10015409303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/lower-furlongs-po36-0aa/000PO36128" - } -}, -{ - "type": "node", - "id": 817072019, - "lat": 50.6547105, - "lon": -1.1533173, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 132", - "ref:GB:uprn": "10015372878", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-po36-9lt/000PO36132" - } -}, -{ - "type": "node", - "id": 817072020, - "lat": 50.6530182, - "lon": -1.1551604, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO36 55D", - "ref:GB:uprn": "10015452528", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/esplanade-po36-9lt/0000PO3655" - } -}, -{ - "type": "node", - "id": 817277549, - "lat": 55.9481521, - "lon": -3.3646055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "by international arrivals", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "EH12 2822", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 817277554, - "lat": 55.9486022, - "lon": -3.3634552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "upstairs, top of escalators, outside WH Smith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "EH12 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 817288514, - "lat": 50.7189054, - "lon": -1.8871025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH2 29", - "ref:GB:uprn": "10015460130", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 817297798, - "lat": 51.2057845, - "lon": -3.4610276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA24 24" - } -}, -{ - "type": "node", - "id": 817802685, - "lat": 50.7419559, - "lon": -3.4215453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "colour": "red", - "name": "Coachfield", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX5 2DX", - "ref": "EX5 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 817851062, - "lat": 55.9610665, - "lon": -3.2660635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "EH4 479D" - } -}, -{ - "type": "node", - "id": 817876126, - "lat": 55.9579168, - "lon": -3.2594573, - "tags": { - "amenity": "post_box", - "ref": "EH4 347" - } -}, -{ - "type": "node", - "id": 817887405, - "lat": 57.6895061, - "lon": -2.0104583, - "tags": { - "addr:city": "Fraserburgh", - "addr:country": "GB", - "addr:postcode": "AB43 9PN", - "addr:street": "King Edward Street", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB43 2" - } -}, -{ - "type": "node", - "id": 817888568, - "lat": 52.4124414, - "lon": -0.2152280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 176" - } -}, -{ - "type": "node", - "id": 818056370, - "lat": 51.7689928, - "lon": -0.2305575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 247", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818056382, - "lat": 51.7616960, - "lon": -0.2466560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "University of Hertfordshire.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056384, - "lat": 51.7573556, - "lon": -0.2418526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056387, - "lat": 51.7537399, - "lon": -0.2302465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056390, - "lat": 51.7608451, - "lon": -0.2359977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 253", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818056396, - "lat": 51.7532873, - "lon": -0.2229719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 299" - } -}, -{ - "type": "node", - "id": 818056399, - "lat": 51.7626096, - "lon": -0.2306633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "On wide pavement.
10m E of Bingo Hall.
Opposite exit from ASDA Car Park.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818056402, - "lat": 51.7616460, - "lon": -0.2227200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 139" - } -}, -{ - "type": "node", - "id": 818056414, - "lat": 51.7615950, - "lon": -0.2112252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL9 205", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 818056418, - "lat": 51.7571331, - "lon": -0.2373846, - "tags": { - "amenity": "post_box", - "description": "This neighborhood seems to be called \"Roe Green\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 264" - } -}, -{ - "type": "node", - "id": 818056423, - "lat": 51.7596240, - "lon": -0.2345750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 260" - } -}, -{ - "type": "node", - "id": 818056427, - "lat": 51.7633360, - "lon": -0.2180420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL10 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056431, - "lat": 51.7490730, - "lon": -0.2308850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "AL10 307" - } -}, -{ - "type": "node", - "id": 818056434, - "lat": 51.7660400, - "lon": -0.2334700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL10 322" - } -}, -{ - "type": "node", - "id": 818056438, - "lat": 51.7749171, - "lon": -0.2336844, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 135" - } -}, -{ - "type": "node", - "id": 818056448, - "lat": 51.7675559, - "lon": -0.2178184, - "tags": { - "amenity": "post_box", - "description": "NOPLATE", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818056452, - "lat": 51.7449797, - "lon": -0.2319150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056454, - "lat": 51.7602500, - "lon": -0.2409390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "Access only from SE-bound carriageway.
Outside the Galleria Shopping Center, to the SE of the main entrance.
Underneath the sign saying \"ODEON\", on what is presumably the cinema", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056458, - "lat": 51.7488052, - "lon": -0.2349096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "fixme": "Verify location. Either it has been moved here or it has been demolished", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056461, - "lat": 51.7568800, - "lon": -0.2492362, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818056465, - "lat": 51.7466160, - "lon": -0.2407660, - "tags": { - "amenity": "post_box", - "description": "In layby, next to electricity substation", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL10 323" - } -}, -{ - "type": "node", - "id": 818056487, - "lat": 51.7427900, - "lon": -0.2362920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 278" - } -}, -{ - "type": "node", - "id": 818056492, - "lat": 51.7715640, - "lon": -0.2331980, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818056497, - "lat": 51.7636936, - "lon": -0.2250524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AL10 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056500, - "lat": 51.7516940, - "lon": -0.2274390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 304" - } -}, -{ - "type": "node", - "id": 818056504, - "lat": 51.7469153, - "lon": -0.2258652, - "tags": { - "amenity": "post_box", - "description": "RM calls this \"Millwards\", but there is now no vehicular access from that road./Travellers Lane / Southdown Road / Millwards (pedestrian)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 198", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 818056507, - "lat": 51.7664739, - "lon": -0.2242801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 181" - } -}, -{ - "type": "node", - "id": 818056509, - "lat": 51.7729091, - "lon": -0.2388692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056516, - "lat": 51.7591103, - "lon": -0.2539532, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056519, - "lat": 51.7466376, - "lon": -0.2382400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 272" - } -}, -{ - "type": "node", - "id": 818056522, - "lat": 51.7706351, - "lon": -0.2245658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818056528, - "lat": 51.7734720, - "lon": -0.2192760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818056533, - "lat": 51.7578643, - "lon": -0.2313739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 267" - } -}, -{ - "type": "node", - "id": 818062566, - "lat": 51.7595369, - "lon": -0.2491199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL10 196D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818066921, - "lat": 52.4158839, - "lon": -0.1601092, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 818066929, - "lat": 52.3984101, - "lon": -0.1838065, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE28 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 818066984, - "lat": 52.4028641, - "lon": -0.1551800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 42" - } -}, -{ - "type": "node", - "id": 818068391, - "lat": 51.8004340, - "lon": -0.1998140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL7 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818087109, - "lat": 52.9412972, - "lon": -1.4581518, - "tags": { - "amenity": "post_box", - "ele": "59.4868164", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 675" - } -}, -{ - "type": "node", - "id": 818106247, - "lat": 51.8007660, - "lon": -0.2185570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "AL8 177", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818106248, - "lat": 51.8024370, - "lon": -0.2045130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:25; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818106249, - "lat": 51.8199460, - "lon": -0.2050660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "In a little alcove formed by the garden hedge", - "post_box:type": "pillar", - "ref": "AL8 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818106255, - "lat": 51.8050460, - "lon": -0.2196060, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL8 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818106256, - "lat": 51.7982600, - "lon": -0.2195520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818126961, - "lat": 52.0819150, - "lon": -0.3407993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 09:00", - "description": "Outside old post office, set back from road in a small courtyard", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG18 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818616773, - "lat": 55.9611074, - "lon": -3.2586862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "7612050792251039", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 325", - "source": "Bing;survey", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 818617556, - "lat": 55.9591761, - "lon": -3.2694347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "4133445103379463", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 363", - "survey:date": "2020-07-20" - } -}, -{ - "type": "node", - "id": 818648390, - "lat": 52.0267720, - "lon": -2.4824010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "description": "Left of gate to house (used to be Little Marcle Post Office)", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HR8 350", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818648391, - "lat": 52.0963480, - "lon": -2.4463120, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "description": "The Noverings; attached to the post in front of the picket fence of the eponymous Guest House", - "historic_operator": "Post Office", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HR8 672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818648393, - "lat": 52.0639530, - "lon": -2.4208330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "description": "Against wooden fence", - "post_box:type": "lamp", - "ref": "HR8 739" - } -}, -{ - "type": "node", - "id": 818648399, - "lat": 52.0930900, - "lon": -2.5659760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "description": "In passing place at S side of road, at gated entrance to B & W house.
Next to notice board", - "fixme": "According to my records, there is another PB in this village, but can not find.", - "post_box:type": "lamp", - "ref": "HR8 221", - "source": "stop_motion_gps" - } -}, -{ - "type": "node", - "id": 818648403, - "lat": 52.0211180, - "lon": -2.5218180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "description": "In left wall of driveway of house \"Kynaston Place\", at point where wall joins hedge. The wall is covered in foliage to match the hedge.
There is a clock on one of the house's outbuildings./(unnamed)", - "post_box:type": "wall", - "ref": "HR8 642" - } -}, -{ - "type": "node", - "id": 818648409, - "lat": 51.9952390, - "lon": -2.3901070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "description": "Outside Bromsberrow Heath Post Office
Five roads meet here./Dyke House Lane / (unnamed roads)", - "fixme": "mass-upload; needs manual review", - "post_box:type": "lamp", - "ref": "HR8 647" - } -}, -{ - "type": "node", - "id": 818648413, - "lat": 52.0819470, - "lon": -2.4120980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "description": "Hidden in hedge of black/white house on corner, where it joins picket fence of neighboring house.", - "post_box:type": "lamp", - "ref": "HR8 678", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818648416, - "lat": 52.0041810, - "lon": -2.4162490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:00", - "description": "In right-side garden wall of pink house, along with a notice board. These have been raised above wall height with modern brickwork", - "post_box:type": "wall", - "ref": "HR8 330D" - } -}, -{ - "type": "node", - "id": 818648419, - "lat": 52.0354690, - "lon": -2.4240440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "This section of New Street is E-bound only./New Street,B4216 / Market Street", - "post_box:type": "pillar", - "ref": "HR8 362" - } -}, -{ - "type": "node", - "id": 818648423, - "lat": 52.0281140, - "lon": -2.4298370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "HR8 148" - } -}, -{ - "type": "node", - "id": 818648426, - "lat": 52.0603900, - "lon": -2.4339820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "description": "In stone garden wall of white house.
House is at the entrance to a (horticultural) nursery.
PB is 6m to left (E) of door/gate in that wall", - "post_box:type": "wall", - "ref": "HR8 321" - } -}, -{ - "type": "node", - "id": 818648436, - "lat": 52.1022233, - "lon": -2.4163644, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "description": "In end wall of stone-built barn of a house called \"The Old Country\"", - "historic_operator": "(none)", - "post_box:type": "wall", - "ref": "HR8 345", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818648440, - "lat": 51.9920620, - "lon": -2.4991980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "description": "End of road-facing wall of long white barn-like building, where it adjoins house of similar color.", - "post_box:type": "wall", - "ref": "HR8 644" - } -}, -{ - "type": "node", - "id": 818648442, - "lat": 51.9966894, - "lon": -2.5024688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "HR8 645", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 818648443, - "lat": 52.0591016, - "lon": -2.5331852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "description": "At triangle junction in the unnamed road signposted for Ashperton", - "post_box:type": "lamp", - "ref": "HR8 296", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 818648445, - "lat": 52.0336950, - "lon": -2.4220880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "description": "In brick garden wall on this corner, facing main road. Almost hidden by lamppost, litter bin, and electrical junction box. 100m S of The Royal Oak public house (car park)", - "post_box:type": "wall", - "ref": "HR8 328" - } -}, -{ - "type": "node", - "id": 818648452, - "lat": 52.0831070, - "lon": -2.4563130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "description": "In wall of red-brick outhouse, now connected to otherwise-cream house at this junction.", - "fixme": "Is this PB still here. Local newsp reports one stolen in the area but not specific as to which one. Walked here a few weeks ago but didn't notice it !", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HR8 335" - } -}, -{ - "type": "node", - "id": 818648457, - "lat": 52.0131260, - "lon": -2.3409690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "description": "The hamlet seems to take its name from the thoroughfare.
In right-side boundary stone wall of house, a few meters along the N arm of this triangle junction./Chase End Street / Black Lane / (unnamed)", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HR8 336", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 818648466, - "lat": 52.0533980, - "lon": -2.5035480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "HR8 592" - } -}, -{ - "type": "node", - "id": 818648470, - "lat": 52.0329670, - "lon": -2.4278400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "HR8 59" - } -}, -{ - "type": "node", - "id": 818648475, - "lat": 52.0420990, - "lon": -2.4334800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "On small spit of green, where road is artificially narrowed", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HR8 359" - } -}, -{ - "type": "node", - "id": 818648481, - "lat": 52.0442430, - "lon": -2.4319620, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HR8 128", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818648484, - "lat": 52.0878973, - "lon": -2.4024563, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "historic_operator": "Post Office", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HR8 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 818648498, - "lat": 52.1097942, - "lon": -2.5675575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "description": "In pillar next to left gatepost.", - "post_box:type": "wall", - "ref": "HR8 341" - } -}, -{ - "type": "node", - "id": 818648502, - "lat": 52.0376590, - "lon": -2.3949740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "description": "In small layby at junction with unnamed spur to big house
Opposite large red brick house with two brick outbuildings ending onto the road/", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HR8 327" - } -}, -{ - "type": "node", - "id": 818648505, - "lat": 52.0439910, - "lon": -2.4262190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "HR8 295" - } -}, -{ - "type": "node", - "id": 818648509, - "lat": 52.0530154, - "lon": -2.4839022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "description": "In right-side gatepost of entrance to Hôtel mews", - "fixme": "Need to add Verzons Hôtel", - "post_box:type": "wall", - "ref": "HR8 342" - } -}, -{ - "type": "node", - "id": 818648514, - "lat": 52.0274200, - "lon": -2.3378480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "description": "Where a short spur joins the SE-bound A438/A438 / (unnamed roads)", - "post_box:type": "lamp", - "ref": "HR8 143" - } -}, -{ - "type": "node", - "id": 818648518, - "lat": 52.0151100, - "lon": -2.4536420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "description": "On grass triangle", - "post_box:type": "lamp", - "ref": "HR8 715" - } -}, -{ - "type": "node", - "id": 818648532, - "lat": 51.9925990, - "lon": -2.5190130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "note": "In stone wall, 15m N of, and opposite, grass-covered bus shelter", - "post_box:type": "wall", - "ref": "HR8 640" - } -}, -{ - "type": "node", - "id": 818648537, - "lat": 52.0447773, - "lon": -2.4234817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "Ledbury Sorting Office.
On complex containing Ledbury Railway Station.", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HR8 316" - } -}, -{ - "type": "node", - "id": 818648538, - "lat": 52.0346720, - "lon": -2.4284520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "Half way along low brick wall of house.
Usually hidden by parked vehicles", - "post_box:type": "lamp", - "ref": "HR8 346" - } -}, -{ - "type": "node", - "id": 818648539, - "lat": 52.0366940, - "lon": -2.4301000, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "HR8 377" - } -}, -{ - "type": "node", - "id": 818648542, - "lat": 52.0596021, - "lon": -2.4215175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "description": "Left, and slightly downhill (E) of entrance to The Farmers Arms
In short old-brick wall opposite fenced area called \"Pool Piece\".
Wall and PB are completely hidden by foliage/blossom.", - "post_box:type": "wall", - "ref": "HR8 320" - } -}, -{ - "type": "node", - "id": 818648552, - "lat": 52.0317650, - "lon": -2.4311730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "On green alongside church wall", - "post_box:type": "lamp", - "ref": "HR8 314" - } -}, -{ - "type": "node", - "id": 818648554, - "lat": 52.0414850, - "lon": -2.4225340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "Between numbers 58 and 60, in the wall (surmounted by a hedge) which fronts both those houses.", - "post_box:type": "wall", - "ref": "HR8 589" - } -}, -{ - "type": "node", - "id": 818772879, - "lat": 50.8559497, - "lon": 0.2530962, - "tags": { - "amenity": "post_box", - "ref": "BN27 929" - } -}, -{ - "type": "node", - "id": 818772887, - "lat": 50.8634801, - "lon": 0.2594796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 934" - } -}, -{ - "type": "node", - "id": 818944872, - "lat": 51.7946030, - "lon": -0.2093060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 234", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 818944873, - "lat": 51.7987729, - "lon": -0.2159822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "romec_pillar", - "post_box:type": "pillar", - "ref": "AL8 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 818995875, - "lat": 51.8184350, - "lon": -0.2109919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 819003115, - "lat": 51.7985805, - "lon": -0.2072977, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 235", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 819003119, - "lat": 51.8153697, - "lon": -0.2030633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 288", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 819190890, - "lat": 50.7200419, - "lon": -1.1139869, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO34 74", - "ref:GB:uprn": "10015369469", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/ryde-road-po34-5aa/0000PO3474" - } -}, -{ - "type": "node", - "id": 819190905, - "lat": 50.7136204, - "lon": -1.1069947, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO34 62D", - "ref:GB:uprn": "10015355988", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/priory-bay-po34-5aa/0000PO3462" - } -}, -{ - "type": "node", - "id": 819190906, - "lat": 50.7194757, - "lon": -1.1099381, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO34 82", - "ref:GB:uprn": "10015818736", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/seaview-post-office-po33-1xb/0000PO3482" - } -}, -{ - "type": "node", - "id": 819190908, - "lat": 50.7102054, - "lon": -1.1120070, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO34 354D", - "ref:GB:uprn": "10015286304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/horestone-rise-po34-5aa/000PO34354" - } -}, -{ - "type": "node", - "id": 819190917, - "lat": 50.7133275, - "lon": -1.1117411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "163026106284178", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO34 63D", - "ref:GB:uprn": "10015360375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-20", - "website": "https://www.royalmail.com/services-near-you/postbox/caws-avenue-po34-5aa/0000PO3463" - } -}, -{ - "type": "node", - "id": 819190920, - "lat": 50.7120811, - "lon": -1.1176225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO34 87", - "ref:GB:uprn": "10015479070", - "website": "https://www.royalmail.com/services-near-you/postbox/nettlestone-po34-5aa/0000PO3487" - } -}, -{ - "type": "node", - "id": 819199197, - "lat": 52.2377313, - "lon": -0.4152891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK44 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 819199199, - "lat": 52.2398617, - "lon": -0.4348048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 819227837, - "lat": 50.7263981, - "lon": -1.9060740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 241", - "ref:GB:uprn": "10015435846", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 819227841, - "lat": 50.7314604, - "lon": -1.9047938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH12 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 819336874, - "lat": 50.7035416, - "lon": -1.4960784, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO41 54D", - "ref:GB:uprn": "10015343814", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/station-road-yarmouth-po41-0se/0000PO4154" - } -}, -{ - "type": "node", - "id": 819336888, - "lat": 50.6936898, - "lon": -1.5175934, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO40 72D", - "ref:GB:uprn": "10015317728", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/norton-green-po39-0aa/0000PO4072" - } -}, -{ - "type": "node", - "id": 819418372, - "lat": 52.6414384, - "lon": -2.9183835, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 605" - } -}, -{ - "type": "node", - "id": 819483023, - "lat": 52.4487690, - "lon": -1.7783019, - "tags": { - "amenity": "post_box", - "ref": "B92 815", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 819636769, - "lat": 50.7176929, - "lon": -1.1574179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 372", - "ref:GB:uprn": "10015417509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/ryde-delivery-office-po33-1fb/000PO33372" - } -}, -{ - "type": "node", - "id": 819636774, - "lat": 50.7220487, - "lon": -1.1873158, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/milgrove-po33-2ua/0000PO3388" - } -}, -{ - "type": "node", - "id": 819636776, - "lat": 50.7276149, - "lon": -1.1786056, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 118D", - "ref:GB:uprn": "10015281488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/jellicoe-road-po33-2aa/000PO33118" - } -}, -{ - "type": "node", - "id": 819636778, - "lat": 50.7106073, - "lon": -1.1438073, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-22", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 371", - "ref:GB:uprn": "10094232308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/tescos-stores-po33-1xb/000PO33371" - } -}, -{ - "type": "node", - "id": 819636781, - "lat": 50.7242316, - "lon": -1.1805924, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 138D", - "ref:GB:uprn": "10015392946", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/wellington-road-po33-2aa/000PO33138" - } -}, -{ - "type": "node", - "id": 819636783, - "lat": 50.7273930, - "lon": -1.1627857, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO33 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-post-office-po33-2ja/0000PO3343" - } -}, -{ - "type": "node", - "id": 819636784, - "lat": 50.7259895, - "lon": -1.1721421, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 64D", - "ref:GB:uprn": "10015342820", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/pelhurst-road-po33-2aa/0000PO3364" - } -}, -{ - "type": "node", - "id": 819638727, - "lat": 52.9162324, - "lon": -1.4635276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 819879794, - "lat": 52.1462135, - "lon": -2.2403304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "description": "On The Pound (green) opposite shopping cluster", - "post_box:type": "pillar", - "ref": "WR2 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 819879814, - "lat": 52.1850889, - "lon": -2.2363311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "In the curving brick wall, to the left of the Brunswick Arms public house", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 819899285, - "lat": 52.0751530, - "lon": -2.3651710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR13 28" - } -}, -{ - "type": "node", - "id": 819899290, - "lat": 52.0805702, - "lon": -2.3583442, - "tags": { - "amenity": "post_box", - "collection_plate": "uncoded", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "old_ref": "M098 Colwall Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR13 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 819899292, - "lat": 52.0901110, - "lon": -2.3398000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 819907124, - "lat": 52.1582903, - "lon": -2.1780423, - "tags": { - "amenity": "post_box", - "note": "This is not WR5 159 - i've checked it.", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "WR5 132" - } -}, -{ - "type": "node", - "id": 819907462, - "lat": 52.3143810, - "lon": -2.1775690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR9 392", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 819911723, - "lat": 51.6830440, - "lon": -0.4178290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WD24 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 819911725, - "lat": 51.6764370, - "lon": -0.4033720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WD24 111" - } -}, -{ - "type": "node", - "id": 819911726, - "lat": 51.6765250, - "lon": -0.4069130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WD24 75" - } -}, -{ - "type": "node", - "id": 819911727, - "lat": 51.6713710, - "lon": -0.4013430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "In the wall between the surgery and Indian take-away", - "post_box:type": "wall", - "ref": "WD24 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 820182040, - "lat": 51.6685370, - "lon": -0.6244180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP7 100" - } -}, -{ - "type": "node", - "id": 820182051, - "lat": 51.6672813, - "lon": -0.5666041, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-15", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "In layby / bus stop/White Lion Road,A404", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "HP7 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 820182053, - "lat": 51.6657780, - "lon": -0.6109616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "indoor_pillar", - "ref": "HP7 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820182071, - "lat": 51.6663299, - "lon": -0.6161883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HP7 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820182075, - "lat": 51.6722120, - "lon": -0.6007889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "HP7 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 820182080, - "lat": 51.6732106, - "lon": -0.6055037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "HP7 130" - } -}, -{ - "type": "node", - "id": 820182093, - "lat": 51.6670150, - "lon": -0.5979481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "description": "/Mortens Wood / Quarrendon Road", - "post_box:type": "lamp", - "ref": "HP7 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820182097, - "lat": 51.6668590, - "lon": -0.6184190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In the wall of The Lemon Rooms, next to the little museum.
Usually hidden by parked vehicles.", - "post_box:type": "wall", - "ref": "HP7 96", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 820182101, - "lat": 51.6679249, - "lon": -0.6021200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "HP7 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820185570, - "lat": 51.6665610, - "lon": -0.5959730, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "Collection Plate is CP5 rather than the usual CP7", - "post_box:type": "lamp", - "ref": "HP7 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820185571, - "lat": 51.6635480, - "lon": -0.6196370, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HP7 133", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 820185572, - "lat": 51.6715160, - "lon": -0.5941214, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "HP7 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 820192386, - "lat": 51.7468828, - "lon": -0.4698927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 820192387, - "lat": 51.7508620, - "lon": -0.4753950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP1 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820192397, - "lat": 51.7556150, - "lon": -0.4729140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820223148, - "lat": 51.7464980, - "lon": -0.4885700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 820228386, - "lat": 51.0759938, - "lon": -4.0379192, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "EX32 8EG", - "ref": "EX32 121" - } -}, -{ - "type": "node", - "id": 820229622, - "lat": 51.7599169, - "lon": -0.5631193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 820229626, - "lat": 51.7705731, - "lon": -0.5270880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "description": "Outside village store.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP4 11" - } -}, -{ - "type": "node", - "id": 820236988, - "lat": 51.7063180, - "lon": -0.6120240, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-30", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "On Wednesday 04.04.2018 when I used this double postbox, the left aperture has the number HP5 1141 which is not on the Royal Mail list they have supplied to http://robert.mathmos.net/osm/postboxes/progress/HP/HP5/", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HP5 114;HP5 1141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820237002, - "lat": 51.7101860, - "lon": -0.6006610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 820244548, - "lat": 51.0770353, - "lon": -4.0428731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "EX32 8EE", - "ref": "EX32 263" - } -}, -{ - "type": "node", - "id": 820255611, - "lat": 51.6753837, - "lon": -0.6073978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7-LC", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "note": "Only one collection plate, but two apertures", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "HP6 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 820255612, - "lat": 51.6912690, - "lon": -0.6133820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "HP6 45" - } -}, -{ - "type": "node", - "id": 820255613, - "lat": 51.6858180, - "lon": -0.6056820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "HP6 37" - } -}, -{ - "type": "node", - "id": 820255614, - "lat": 51.6802710, - "lon": -0.6088440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP6 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 820255615, - "lat": 51.6783076, - "lon": -0.6054064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "description": "Outside HSBC (bank) and church/Sycamore Road", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HP6 111" - } -}, -{ - "type": "node", - "id": 820255617, - "lat": 51.6938518, - "lon": -0.6547112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "description": "Just inside the wooden fence of some sort of hall/shop with a clock.
There is a wall box just across the road, in a house at the junction of Weedon Hill and Brays Lane; I assume that is disused/Brays Lane / Hyde Heath Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP6 64" - } -}, -{ - "type": "node", - "id": 820255618, - "lat": 51.6784130, - "lon": -0.5961120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "Against the wooden fence, as it follows the narrowing of the pavement", - "post_box:type": "pillar", - "ref": "HP6 57" - } -}, -{ - "type": "node", - "id": 820255619, - "lat": 51.6849352, - "lon": -0.6205933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "HP6 15" - } -}, -{ - "type": "node", - "id": 820255620, - "lat": 51.6898650, - "lon": -0.6535590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP6 176" - } -}, -{ - "type": "node", - "id": 820255763, - "lat": 51.6753230, - "lon": -0.5858450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "HP6 177" - } -}, -{ - "type": "node", - "id": 820393995, - "lat": 54.8732912, - "lon": -3.5958796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG2 113", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 820521199, - "lat": 50.6289614, - "lon": -1.1754012, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-06-30", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "mapillary": "4512738982088129", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 14", - "ref:GB:uprn": "10015396118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2019-09-08", - "website": "https://www.royalmail.com/services-near-you/postbox/queens-road-po37-6aa/0000PO3714" - } -}, -{ - "type": "node", - "id": 820521201, - "lat": 50.6308325, - "lon": -1.1784194, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-01-02", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO37 5542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/shanklin-post-office-po38-3es/00PO375542" - } -}, -{ - "type": "node", - "id": 820521206, - "lat": 50.6273834, - "lon": -1.1862934, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-07-22", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO37 61", - "ref:GB:uprn": "10015439148", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/victoria-avenue-po38-3es/0000PO3761" - } -}, -{ - "type": "node", - "id": 820521208, - "lat": 50.6284944, - "lon": -1.1969584, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO37 109", - "ref:GB:uprn": "10015475374", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/cliff-bridge-po38-3es/000PO37109" - } -}, -{ - "type": "node", - "id": 820521209, - "lat": 50.6288432, - "lon": -1.1724926, - "tags": { - "amenity": "post_box", - "check_date:collection_plate": "2022-01-12", - "check_date:collection_times": "2022-01-12", - "check_date:ref": "2022-01-12", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 46D", - "ref:GB:uprn": "10015329605", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/esplanade-po37-6aa/0000PO3746" - } -}, -{ - "type": "node", - "id": 820521212, - "lat": 50.6332795, - "lon": -1.1757975, - "tags": { - "amenity": "post_box", - "check_date:collection_plate": "2022-01-12", - "check_date:collection_times": "2022-01-12", - "check_date:ref": "2022-01-12", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 17D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/atherley-road-po37-7ay/0000PO3717" - } -}, -{ - "type": "node", - "id": 820521214, - "lat": 50.6329282, - "lon": -1.1716434, - "tags": { - "amenity": "post_box", - "check_date:collection_plate": "2022-01-12", - "check_date:collection_times": "2022-01-12", - "check_date:ref": "2022-01-12", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO37 199D", - "ref:GB:uprn": "10015332862", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/hope-road-po37-6aa/000PO37199" - } -}, -{ - "type": "node", - "id": 820521219, - "lat": 50.6308413, - "lon": -1.1784199, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-01-02", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO37 5541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/shanklin-post-office-po38-3es/00PO375541" - } -}, -{ - "type": "node", - "id": 820841867, - "lat": 55.8268930, - "lon": -4.4692468, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "PA2", - "ref": "PA2 106", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 820842007, - "lat": 55.8307102, - "lon": -4.4649793, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 1" - } -}, -{ - "type": "node", - "id": 820860635, - "lat": 52.9570528, - "lon": -1.3803493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "67.4177246", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE7 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820866162, - "lat": 51.4884772, - "lon": 0.2750020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM20 57" - } -}, -{ - "type": "node", - "id": 820866168, - "lat": 51.4889935, - "lon": 0.3397562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM17 1" - } -}, -{ - "type": "node", - "id": 820866176, - "lat": 51.4760279, - "lon": 0.3226853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM17 23" - } -}, -{ - "type": "node", - "id": 820870559, - "lat": 51.6613095, - "lon": -0.5698276, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "HP7 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 820875870, - "lat": 51.6285510, - "lon": -0.6884890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:30", - "description": "By wooden fence, on little green patch", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP10 151" - } -}, -{ - "type": "node", - "id": 820879505, - "lat": 51.6829030, - "lon": -0.6988320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HP16 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 820879511, - "lat": 51.7088240, - "lon": -0.6868290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP16 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 820879514, - "lat": 51.7039391, - "lon": -0.7076679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "last_collection": "6.00pm, Sat 12.15pm", - "post_box:type": "wall", - "ref": "HP16 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 820882233, - "lat": 51.8135890, - "lon": -0.1999865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820936583, - "lat": 52.2940744, - "lon": -2.0864772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B60 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 820984213, - "lat": 51.3719769, - "lon": -0.2242830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821156217, - "lat": 51.5111981, - "lon": -0.1068229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "apertures have different refs", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4Y 421;EC4Y 4211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 821190994, - "lat": 50.6495808, - "lon": -1.2134990, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 53", - "ref:GB:uprn": "10015361216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/branstone-po36-0lt/0000PO3653" - } -}, -{ - "type": "node", - "id": 821190995, - "lat": 50.6568202, - "lon": -1.1621997, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-10-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO36 11D", - "ref:GB:uprn": "10015480609", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/railway-station-po36-9lt/0000PO3611" - } -}, -{ - "type": "node", - "id": 821190996, - "lat": 50.6624425, - "lon": -1.1580278, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO36 143", - "ref:GB:uprn": "10015473403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/halford-close-po36-9py/000PO36143" - } -}, -{ - "type": "node", - "id": 821191000, - "lat": 50.6684956, - "lon": -1.1829682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO36 44", - "ref:GB:uprn": "10015422311", - "website": "https://www.royalmail.com/services-near-you/postbox/alverstone-po36-0ha/0000PO3644" - } -}, -{ - "type": "node", - "id": 821260979, - "lat": 50.5310311, - "lon": -3.5653614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "note": "Modified aperture to take larger envelopes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 821276991, - "lat": 50.4836759, - "lon": -3.5511962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "fixme": "Has this box gone now? Needs a survey to confirm it's still there", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 253", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 821299802, - "lat": 53.0099441, - "lon": -2.1766977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 185", - "source": "survey" - } -}, -{ - "type": "node", - "id": 821375573, - "lat": 51.0602419, - "lon": -1.7964975, - "tags": { - "amenity": "post_box", - "postal_code": "SP2", - "ref": "SP2 80" - } -}, -{ - "type": "node", - "id": 821375594, - "lat": 51.0663856, - "lon": -1.7890496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821375765, - "lat": 51.0660793, - "lon": -1.7979267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "SP1 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 821446725, - "lat": 52.5935218, - "lon": 1.7168624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "name": "Boundary Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR31 3103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821447301, - "lat": 52.5913378, - "lon": 1.7097958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "name": "Morton Peto Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR31 3102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821681404, - "lat": 51.5437328, - "lon": 0.6593246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 821788275, - "lat": 52.9745743, - "lon": -1.3810533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "106.8312988", - "operator": "Royal Mail", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "DE7 688D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821791157, - "lat": 52.5737944, - "lon": 1.1095689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "NR18", - "ref": "NR18 1812D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821791381, - "lat": 52.5668859, - "lon": 1.1091416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1802D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821805793, - "lat": 52.9728563, - "lon": -1.3695092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "ele": "107.5523682", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1311", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 821816946, - "lat": 52.9790385, - "lon": -1.3886602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "133.2674561", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 549D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 821824730, - "lat": 52.2718037, - "lon": -0.8353030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 821877078, - "lat": 53.0139040, - "lon": -1.3499898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "104.4281006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 644D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 821877080, - "lat": 53.0182510, - "lon": -1.3373429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "ele": "58.0447998", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 821885363, - "lat": 53.0518990, - "lon": -0.9029413, - "tags": { - "amenity": "post_box", - "ele": "15.0262451" - } -}, -{ - "type": "node", - "id": 821920699, - "lat": 50.7236514, - "lon": -1.1419537, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 125", - "ref:GB:uprn": "10015356124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/seldon-avenue-po33-1ba/000PO33125" - } -}, -{ - "type": "node", - "id": 822075654, - "lat": 52.9767953, - "lon": -1.3179078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mail:franked": "only", - "opening_hours": "Mo-Fr 14:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DE7 789", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822075785, - "lat": 52.9755644, - "lon": -1.3184427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822131582, - "lat": 51.9522572, - "lon": -0.2869941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 822193672, - "lat": 50.5243642, - "lon": -3.5758868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ12 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 822195979, - "lat": 50.5208126, - "lon": -3.5805557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 822196514, - "lat": 50.5234301, - "lon": -3.5839705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 822219397, - "lat": 50.1148547, - "lon": -5.5403902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 98D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 822250695, - "lat": 51.7993656, - "lon": -0.1676933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL6 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Walking GPS" - } -}, -{ - "type": "node", - "id": 822250741, - "lat": 51.7977870, - "lon": -0.1760169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL7 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 822250745, - "lat": 51.8043839, - "lon": -0.1860584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "AL7 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 822259578, - "lat": 51.8046725, - "lon": -0.1959260, - "tags": { - "amenity": "post_box", - "collection_plate": "WNE-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:meter": "yes", - "mail:stamped": "yes", - "note": "Separate apertures for stamped and meter mail", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "AL7 290", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822629851, - "lat": 57.1120258, - "lon": -2.1165998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 624" - } -}, -{ - "type": "node", - "id": 822634129, - "lat": 57.1638760, - "lon": -2.2200350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "post_box:type": "lamp", - "ref": "AB15 651" - } -}, -{ - "type": "node", - "id": 822634132, - "lat": 57.1396034, - "lon": -2.1636740, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 8JQ", - "addr:street": "Woodburn Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 504" - } -}, -{ - "type": "node", - "id": 822634134, - "lat": 57.1429453, - "lon": -2.1675553, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 8EX", - "addr:street": "Hazlehead Crescent", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 512", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822636816, - "lat": 57.1679420, - "lon": -2.1607210, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 7ND", - "addr:street": "Marchburn Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB16 180" - } -}, -{ - "type": "node", - "id": 822638008, - "lat": 52.0472628, - "lon": 0.8937420, - "tags": { - "amenity": "post_box", - "ref": "IP7 1242" - } -}, -{ - "type": "node", - "id": 822646897, - "lat": 57.1595022, - "lon": -2.1174921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "note": "no royal cypher; just crown? SUNDAY collection at noon!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB25 622", - "royal_cypher": "scottish_crown", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 822646900, - "lat": 57.1594956, - "lon": -2.1175062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 18:00; Sa 15:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB25 917P", - "royal_cypher": "scottish_crown", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 822649267, - "lat": 51.7430458, - "lon": -0.3404584, - "tags": { - "addr:city": "St Albans", - "addr:postcode": "AL1 2QU", - "addr:street": "Everard Close", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 822658984, - "lat": 52.1045673, - "lon": 0.9624388, - "tags": { - "amenity": "post_box", - "ref": "IP7 1411" - } -}, -{ - "type": "node", - "id": 822726167, - "lat": 52.5424040, - "lon": -1.8493460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "On little grass verge, to the right (E) of an abandoned parade of shops.
Usually obscured by parked vehicles", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B23 1341" - } -}, -{ - "type": "node", - "id": 822733847, - "lat": 50.9432575, - "lon": -2.6620790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "5m W of junction with Abbots Meade, on the N side of the road.
In a stone wall that holds a large area of grass on the corner.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 822733850, - "lat": 50.9455684, - "lon": -2.6492514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 822743166, - "lat": 50.9159243, - "lon": -2.7185203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BA22 263" - } -}, -{ - "type": "node", - "id": 822743170, - "lat": 50.9190813, - "lon": -2.6869534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA22 156" - } -}, -{ - "type": "node", - "id": 822743183, - "lat": 50.8961618, - "lon": -2.6174099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "description": "Forecourt of A37 services.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 222" - } -}, -{ - "type": "node", - "id": 822806822, - "lat": 50.7201225, - "lon": -1.8701854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Spiritualist church somewhere near here", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 197", - "ref:GB:uprn": "10015413409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806832, - "lat": 50.7279046, - "lon": -1.8382838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH1 277", - "ref:GB:uprn": "10015416153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806834, - "lat": 50.7191999, - "lon": -1.8657307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BH1 4", - "ref:GB:uprn": "10015423260", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806837, - "lat": 50.7230291, - "lon": -1.8607343, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 90", - "ref:GB:uprn": "10015416627", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806851, - "lat": 50.7261445, - "lon": -1.8586803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 149", - "ref:GB:uprn": "10015306731", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "source:ref": "Chris Downer at Geograph (2008) available under GFDL. No plate in 2017." - } -}, -{ - "type": "node", - "id": 822806853, - "lat": 50.7272426, - "lon": -1.8463412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 55", - "ref:GB:uprn": "10015353056", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806856, - "lat": 50.7264016, - "lon": -1.8404731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH1 63;BH1 5063", - "ref:GB:uprn": "10015784402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806867, - "lat": 50.7251520, - "lon": -1.8610077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 145", - "ref:GB:uprn": "10015336254", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806870, - "lat": 50.7222310, - "lon": -1.8634424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "description": "Outside Bracken House, number 16.", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH1 502", - "ref:GB:uprn": "10015705993", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806876, - "lat": 50.7298786, - "lon": -1.8468508, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 110", - "ref:GB:uprn": "10015337332", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806882, - "lat": 50.7227192, - "lon": -1.8561235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 2", - "ref:GB:uprn": "10015724446", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806885, - "lat": 50.7304142, - "lon": -1.8512038, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 15", - "ref:GB:uprn": "10015711099", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806887, - "lat": 50.7282960, - "lon": -1.8729884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 48", - "ref:GB:uprn": "10015312932", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806890, - "lat": 50.7185194, - "lon": -1.8751016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH1 297", - "ref:GB:uprn": "10015329633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806893, - "lat": 50.7202809, - "lon": -1.8787102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "description": "First floor of WH Smith, by post office counters.", - "layer": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806898, - "lat": 50.7238317, - "lon": -1.8478894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "By entrance to gardens.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH1 61", - "ref:GB:uprn": "10015429223", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806899, - "lat": 50.7246734, - "lon": -1.8549699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "description": "Anonymous Victorian.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 40", - "ref:GB:uprn": "10015459470", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806900, - "lat": 50.7294183, - "lon": -1.8693502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "description": "Anonymous Victorian.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 43", - "ref:GB:uprn": "10015346893", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806909, - "lat": 50.7289825, - "lon": -1.8429934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Water Tower near here", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 36", - "ref:GB:uprn": "10015399804", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806912, - "lat": 50.7266237, - "lon": -1.8691641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 125", - "ref:GB:uprn": "10015432422", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806914, - "lat": 50.7221270, - "lon": -1.8712156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH1 186", - "ref:GB:uprn": "10015307740", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 822806918, - "lat": 50.7313660, - "lon": -1.8465702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 59", - "ref:GB:uprn": "10015269935", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806921, - "lat": 50.7214329, - "lon": -1.8529821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "RM has this as a business box; it isn't", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 1", - "ref:GB:uprn": "10015296616", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806924, - "lat": 50.7256227, - "lon": -1.8719463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 3", - "ref:GB:uprn": "10015369484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806926, - "lat": 50.7223280, - "lon": -1.8745003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH1 503", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806930, - "lat": 50.7281585, - "lon": -1.8563811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH1 99", - "ref:GB:uprn": "10015296764", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806936, - "lat": 50.7249289, - "lon": -1.8454818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH1 177", - "ref:GB:uprn": "10015277614", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806939, - "lat": 50.7210200, - "lon": -1.8589083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "By zebra crossing", - "fixme": "This is very confusing. There appears to have been a business box next to here.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 5", - "ref:GB:uprn": "10015327409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806950, - "lat": 50.7224605, - "lon": -1.8743438, - "tags": { - "amenity": "post_box", - "description": "Double aperture. Horseshoe Common roundabout./Old Christchurch Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH1 21;BH1 5021", - "ref:GB:uprn": "10015473918", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822806951, - "lat": 50.7201745, - "lon": -1.8787049, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "description": "Porch of WH Smith on the ground floor on the right hand side just inside the entrance .", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 822846818, - "lat": 52.9699317, - "lon": -1.3092290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DE7 1416;DE7 1346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 823076726, - "lat": 52.9738669, - "lon": -1.3112418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE7 1318D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 823231704, - "lat": 52.9753759, - "lon": -1.3092831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Allied Ironmongers Ltd, Falkirk", - "post_box:type": "wall", - "ref": "DE7 1303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 823521259, - "lat": 52.7586854, - "lon": -1.2064759, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 823585841, - "lat": 50.7663924, - "lon": -1.8840775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 296", - "ref:GB:uprn": "10015286462", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585842, - "lat": 50.7593589, - "lon": -1.8947121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 366", - "ref:GB:uprn": "10015422477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823585843, - "lat": 50.7648495, - "lon": -1.9018261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 294", - "ref:GB:uprn": "10015409403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823585844, - "lat": 50.7624584, - "lon": -1.8898332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 340", - "ref:GB:uprn": "10015313318", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 823585845, - "lat": 50.7554220, - "lon": -1.8940016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 289", - "ref:GB:uprn": "10015349584", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585846, - "lat": 50.7539540, - "lon": -1.8898444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 299", - "ref:GB:uprn": "10015389555", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585847, - "lat": 50.7528384, - "lon": -1.9048829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 142", - "ref:GB:uprn": "10015469191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585848, - "lat": 50.7718050, - "lon": -1.8974160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 49", - "ref:GB:uprn": "10015304026", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823585849, - "lat": 50.7671383, - "lon": -1.8901222, - "tags": { - "amenity": "post_box", - "description": "Outside former post office", - "fixme": "Need to find Ashridge Parade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 81", - "ref:GB:uprn": "10015337334" - } -}, -{ - "type": "node", - "id": 823585850, - "lat": 50.7601456, - "lon": -1.8869882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 315", - "ref:GB:uprn": "10015346115" - } -}, -{ - "type": "node", - "id": 823585851, - "lat": 50.7484909, - "lon": -1.8911721, - "tags": { - "amenity": "post_box", - "description": "Opposite boys' school entrance.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH10 156", - "ref:GB:uprn": "10015403006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823585853, - "lat": 50.7521387, - "lon": -1.8989932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 249", - "ref:GB:uprn": "10015756448" - } -}, -{ - "type": "node", - "id": 823585854, - "lat": 50.7514495, - "lon": -1.9047992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 322", - "ref:GB:uprn": "10015426122" - } -}, -{ - "type": "node", - "id": 823585855, - "lat": 50.7686204, - "lon": -1.8986011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 375", - "ref:GB:uprn": "10015807571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823585856, - "lat": 50.7487658, - "lon": -1.9084807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 261", - "ref:GB:uprn": "10015283423", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585857, - "lat": 50.7588025, - "lon": -1.9004652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 343", - "ref:GB:uprn": "10015287583", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 823585858, - "lat": 50.7716439, - "lon": -1.8881766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 283", - "ref:GB:uprn": "10015306300", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585859, - "lat": 50.7562824, - "lon": -1.8881245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 152", - "ref:GB:uprn": "10015377242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823585860, - "lat": 50.7636679, - "lon": -1.8946322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 80", - "ref:GB:uprn": "10015376567", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614212, - "lat": 50.7582727, - "lon": -1.9096980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH11 308", - "ref:GB:uprn": "10015399513" - } -}, -{ - "type": "node", - "id": 823614226, - "lat": 50.7546939, - "lon": -1.9121279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "BH11 285", - "ref:GB:uprn": "10015392653", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614230, - "lat": 50.7671378, - "lon": -1.9179268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 162", - "ref:GB:uprn": "10015309652", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614234, - "lat": 50.7693573, - "lon": -1.9170984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Outside no.1700 Wimborne Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 336", - "ref:GB:uprn": "10015369505", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 823614248, - "lat": 50.7703557, - "lon": -1.9265339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 262", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823614254, - "lat": 50.7720809, - "lon": -1.9335560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614258, - "lat": 50.7561015, - "lon": -1.9181630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 71", - "ref:GB:uprn": "10015300572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614270, - "lat": 50.7609480, - "lon": -1.9079300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH11 67", - "ref:GB:uprn": "10015359769", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614277, - "lat": 50.7592350, - "lon": -1.9185300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 139", - "ref:GB:uprn": "10015367077", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823614281, - "lat": 50.7570954, - "lon": -1.9221917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 111", - "ref:GB:uprn": "10015396207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614283, - "lat": 50.7496423, - "lon": -1.9162285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 44D", - "ref:GB:uprn": "10015290780", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823614294, - "lat": 50.7634160, - "lon": -1.9141960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 241", - "ref:GB:uprn": "10015323258" - } -}, -{ - "type": "node", - "id": 823614300, - "lat": 50.7576640, - "lon": -1.9280580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 301", - "ref:GB:uprn": "10015435982", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823614308, - "lat": 50.7650107, - "lon": -1.9086034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 374", - "ref:GB:uprn": "10015405943", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614333, - "lat": 50.7551480, - "lon": -1.9302216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "description": "By industrial slip road exit", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH11 405;BH11 7405", - "ref:GB:uprn": "10015330607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614339, - "lat": 50.7687404, - "lon": -1.9112694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 79", - "ref:GB:uprn": "10015293214", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 823614352, - "lat": 50.7569580, - "lon": -1.9359110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "description": "Right-hand side as you enter estate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH11 402", - "ref:GB:uprn": "10015339853", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614370, - "lat": 50.7691126, - "lon": -1.9042146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 373", - "ref:GB:uprn": "10015341078", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614377, - "lat": 50.7616704, - "lon": -1.9251636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823614392, - "lat": 50.7628897, - "lon": -1.9285750, - "tags": { - "amenity": "post_box", - "description": "Outside number 4 Hull Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823614398, - "lat": 50.7678247, - "lon": -1.9320835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "Outside St Barnabas' Church, just along from supermarket.Collection plate missing at time of visit", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823614403, - "lat": 50.7673738, - "lon": -1.9230388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH11 78", - "ref:GB:uprn": "10015450640", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823624220, - "lat": 51.5843410, - "lon": -0.3413354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 13:00", - "description": "Outside Headstone Road (ex?) Post Office at 119 Headstone Road
On shopping parade", - "post_box:type": "pillar", - "ref": "HA1 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823624246, - "lat": 51.5875170, - "lon": -0.3430576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside 78 Harrow View
On right, going up hill", - "post_box:type": "pillar", - "ref": "HA1 41", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 823624251, - "lat": 51.5898648, - "lon": -0.3392393, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "30m N and E of Marlborough First and Middle School/Marlborough Hill / Rusland Park Road", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA1 386D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823624265, - "lat": 51.5867812, - "lon": -0.3383530, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-02-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "note": "Pillar has additional box attached (stamp dispenser?)", - "post_box:type": "pillar", - "ref": "HA1 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823631245, - "lat": 51.6174960, - "lon": -0.2658910, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-31", - "post_box:type": "pillar", - "ref": "HA8 722" - } -}, -{ - "type": "node", - "id": 823631247, - "lat": 51.6164020, - "lon": -0.2605200, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-25", - "post_box:type": "pillar", - "ref": "HA8" - } -}, -{ - "type": "node", - "id": 823631259, - "lat": 51.6196750, - "lon": -0.2595770, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HA8 723" - } -}, -{ - "type": "node", - "id": 823634062, - "lat": 52.2041400, - "lon": -2.5726850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 07:15", - "post_box:type": "lamp", - "ref": "HR7 433" - } -}, -{ - "type": "node", - "id": 823670114, - "lat": 52.0355755, - "lon": -2.5092316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "description": "W arm of triangle
At left side of entrance to Village Hall, hidden by the phone box", - "post_box:type": "lamp", - "ref": "HR8 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670131, - "lat": 52.0802181, - "lon": -2.4028853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "HR8 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670142, - "lat": 52.0049130, - "lon": -2.3704060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:45", - "post_box:type": "lamp", - "ref": "HR8 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670148, - "lat": 52.0494876, - "lon": -2.4746231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In layby (NW-bound),
By abandoned phone box.
I think this is the Waller's Green box. update 09.01.2024 It is indeed Wallers Green.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR8 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+gps", - "source:date": "2015-04-09" - } -}, -{ - "type": "node", - "id": 823670174, - "lat": 52.0284230, - "lon": -2.4222510, - "tags": { - "amenity": "post_box", - "description": "Opposite 36 Biddulph Way", - "post_box:type": "lamp", - "ref": "HR8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670181, - "lat": 52.0665147, - "lon": -2.5330134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HR8 476", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 823670185, - "lat": 52.0995030, - "lon": -2.5281300, - "tags": { - "amenity": "post_box", - "description": "40m N of, and opposite, B+W house.
I think this is Moor Court, but the pictures don't match", - "post_box:type": "lamp", - "ref": "HR8" - } -}, -{ - "type": "node", - "id": 823670188, - "lat": 52.0932139, - "lon": -2.4737508, - "tags": { - "amenity": "post_box", - "description": "I think this might be the Stanley Hill Box.
On the left going uphill (W), in wall of an ex-Barn", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 823670216, - "lat": 52.1174850, - "lon": -2.4684290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:15", - "post_box:type": "lamp", - "ref": "HR8 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670219, - "lat": 52.0927160, - "lon": -2.4248270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "HR8 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670220, - "lat": 52.0728990, - "lon": -2.4796890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In middle of line of trees on NE side of road, 10m NW of wooden gate.
This appears to be only house on this road segment.", - "location": "Swinmoor Farm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR8 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+gps", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 823670225, - "lat": 52.0883972, - "lon": -2.4417209, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "HR8 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823670230, - "lat": 52.0361750, - "lon": -2.5225510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "HR8 317" - } -}, -{ - "type": "node", - "id": 823670240, - "lat": 52.0365070, - "lon": -2.4227683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "HR8 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 823670243, - "lat": 52.0895230, - "lon": -2.5105600, - "tags": { - "amenity": "post_box", - "description": "In end-wall of stone barn; the wall continues to surround the house.", - "post_box:type": "wall", - "ref": "HR8" - } -}, -{ - "type": "node", - "id": 823693851, - "lat": 52.3908428, - "lon": 0.2664626, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "note": "On railway station platform 1. Ely station has no ticket barriers so non-rail users can use this postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB7 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 823718413, - "lat": 51.0661183, - "lon": -0.8988308, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 823733562, - "lat": 52.6398079, - "lon": -2.9259871, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY5 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 823773785, - "lat": 52.5807214, - "lon": -1.9702603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS1", - "ref": "WS1 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 823774016, - "lat": 52.5791993, - "lon": -1.9692389, - "tags": { - "amenity": "post_box", - "postal_code": "WS5", - "ref": "WS5 61", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 823774040, - "lat": 52.5848350, - "lon": -1.9646233, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 151", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 823774315, - "lat": 50.7314517, - "lon": -1.1602708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-05", - "check_date:collection_times": "2021-03-05", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PO33 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/george-street-po33-1aa/0000PO3339" - } -}, -{ - "type": "node", - "id": 823774318, - "lat": 50.7245338, - "lon": -1.2362866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 89", - "ref:GB:uprn": "10015818727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/wootton-bridge-post-office-po33-4aa/0000PO3389" - } -}, -{ - "type": "node", - "id": 823774332, - "lat": 50.7162573, - "lon": -1.1253529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO33 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/gregory-avenue-po33-1aa/0000PO3337" - } -}, -{ - "type": "node", - "id": 823774337, - "lat": 50.7270473, - "lon": -1.1593731, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO33 59D", - "ref:GB:uprn": "10015438945", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/park-road-po33-1aa/0000PO3359" - } -}, -{ - "type": "node", - "id": 823774338, - "lat": 50.7279136, - "lon": -1.2315595, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/st-edmunds-walk-po33-4aa/000PO33264" - } -}, -{ - "type": "node", - "id": 823774340, - "lat": 50.7155114, - "lon": -1.1772221, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO33 81", - "ref:GB:uprn": "10015392858", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/upton-road-po33-1ha/0000PO3381" - } -}, -{ - "type": "node", - "id": 823774353, - "lat": 50.7294352, - "lon": -1.1577092, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-02-11", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO33 2", - "ref:GB:uprn": "10015283275", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/dover-street-po33-1aa/00000PO332" - } -}, -{ - "type": "node", - "id": 823849217, - "lat": 50.8169608, - "lon": -0.9789541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO11 44" - } -}, -{ - "type": "node", - "id": 823936809, - "lat": 51.2481557, - "lon": -2.2148448, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BA13 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824244220, - "lat": 51.5173007, - "lon": -0.1296735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1B 5D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824244222, - "lat": 51.5228101, - "lon": -0.1142723, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Handyside Derby & London", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1X 36D;WC1X 236D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824254549, - "lat": 51.5171380, - "lon": -0.1200297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "separate ref on each aperture", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2B 64;WC2B 264", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824254551, - "lat": 51.5077630, - "lon": -0.1231218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2N 76;WC2N 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 824254553, - "lat": 51.5125177, - "lon": -0.1213432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2E 63;WC2E 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279984, - "lat": 50.7181022, - "lon": -1.8831150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH2 87", - "ref:GB:uprn": "10015469142", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824279985, - "lat": 50.7226336, - "lon": -1.8774951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Large Victorian.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH2 12", - "ref:GB:uprn": "10015347330", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824279986, - "lat": 50.7169760, - "lon": -1.8784050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH2 8", - "ref:GB:uprn": "10015394407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279987, - "lat": 50.7316354, - "lon": -1.8746053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 116", - "ref:GB:uprn": "10015289964", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279988, - "lat": 50.7211171, - "lon": -1.8864673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 109", - "ref:GB:uprn": "10015340670", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279989, - "lat": 50.7199837, - "lon": -1.8891493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 7", - "ref:GB:uprn": "10015407711", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279990, - "lat": 50.7163907, - "lon": -1.8878009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 14", - "ref:GB:uprn": "10015466627", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279991, - "lat": 50.7272389, - "lon": -1.8757699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 22", - "ref:GB:uprn": "10015356531", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279992, - "lat": 50.7233091, - "lon": -1.8829111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 13", - "ref:GB:uprn": "10015466775", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279993, - "lat": 50.7287365, - "lon": -1.8793607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 150", - "ref:GB:uprn": "10015359926", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279994, - "lat": 50.7161592, - "lon": -1.8759877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH2 298", - "ref:GB:uprn": "10015379849", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 824279995, - "lat": 50.7203769, - "lon": -1.8810549, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 6", - "ref:GB:uprn": "10015452686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279996, - "lat": 50.7180309, - "lon": -1.8907466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 57", - "ref:GB:uprn": "10015273302", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279997, - "lat": 50.7189761, - "lon": -1.8850138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 66", - "ref:GB:uprn": "10015469313", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279998, - "lat": 50.7254566, - "lon": -1.8788058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH2 39", - "ref:GB:uprn": "10015373074", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824279999, - "lat": 50.7166561, - "lon": -1.8833066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH2 28", - "ref:GB:uprn": "10015279967", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824283828, - "lat": 50.7374721, - "lon": -1.8936617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 363", - "ref:GB:uprn": "10015406512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824283836, - "lat": 50.7347450, - "lon": -1.8880610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 266", - "ref:GB:uprn": "10015366485", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824283837, - "lat": 50.7373568, - "lon": -1.8905418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 331", - "ref:GB:uprn": "10015444062", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824283839, - "lat": 50.7341374, - "lon": -1.8852607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 214", - "ref:GB:uprn": "10015472638", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824283842, - "lat": 50.7347647, - "lon": -1.8784523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 52", - "ref:GB:uprn": "10015435858", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824408962, - "lat": 50.7454167, - "lon": -1.9508652, - "tags": { - "amenity": "post_box", - "description": "Outside Acorn Business Park.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH12 600" - } -}, -{ - "type": "node", - "id": 824408967, - "lat": 50.7405280, - "lon": -1.9034240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH12 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824408979, - "lat": 50.7492896, - "lon": -1.9221609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 284", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 824408982, - "lat": 50.7460744, - "lon": -1.9088701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824408984, - "lat": 50.7474093, - "lon": -1.9160251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824408994, - "lat": 50.7427560, - "lon": -1.8999910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH12 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824415643, - "lat": 50.7205350, - "lon": -1.8979740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 54", - "ref:GB:uprn": "10015316678" - } -}, -{ - "type": "node", - "id": 824415644, - "lat": 50.7222151, - "lon": -1.8986809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH4 504" - } -}, -{ - "type": "node", - "id": 824415645, - "lat": 50.7163202, - "lon": -1.9068212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 180", - "ref:GB:uprn": "10015326354" - } -}, -{ - "type": "node", - "id": 824415646, - "lat": 50.7229767, - "lon": -1.9029062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 42", - "ref:GB:uprn": "10015445936", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824415649, - "lat": 50.7134753, - "lon": -1.8957608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 185", - "ref:GB:uprn": "10015332766", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824415651, - "lat": 50.7271650, - "lon": -1.8988320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 37", - "ref:GB:uprn": "10015417435", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824415652, - "lat": 50.7329627, - "lon": -1.8981029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 310", - "ref:GB:uprn": "10015363226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824415653, - "lat": 50.7115435, - "lon": -1.9002732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Victorian anonymous", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 45", - "ref:GB:uprn": "10015370932", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 824415655, - "lat": 50.7252181, - "lon": -1.8996125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 47", - "ref:GB:uprn": "10015389702", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824415656, - "lat": 50.7153829, - "lon": -1.9041666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 127", - "ref:GB:uprn": "10015369598", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824415657, - "lat": 50.7164776, - "lon": -1.8945274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 101", - "ref:GB:uprn": "10015440124", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824415658, - "lat": 50.7219957, - "lon": -1.9025066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 5035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 824415659, - "lat": 50.7185274, - "lon": -1.9012489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 75", - "ref:GB:uprn": "10015363029", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824415660, - "lat": 50.7180265, - "lon": -1.9051181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 17", - "ref:GB:uprn": "10015428212", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824415661, - "lat": 50.7218968, - "lon": -1.8974474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 92", - "ref:GB:uprn": "10015374313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824415663, - "lat": 50.7159120, - "lon": -1.8981997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 120", - "ref:GB:uprn": "10015296169", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824415666, - "lat": 50.7141400, - "lon": -1.9012796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 122", - "ref:GB:uprn": "10015389310", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824415669, - "lat": 50.7188555, - "lon": -1.8979733, - "tags": { - "amenity": "post_box", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 65", - "ref:GB:uprn": "10015434138" - } -}, -{ - "type": "node", - "id": 824415671, - "lat": 50.7196364, - "lon": -1.9041350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH4 118", - "ref:GB:uprn": "10015386413", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824430455, - "lat": 50.7226845, - "lon": -1.8213484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "Need to find Ravenscourt Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 250", - "ref:GB:uprn": "10015356747", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824430458, - "lat": 50.7298070, - "lon": -1.8201841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 137", - "ref:GB:uprn": "10015312778", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824430468, - "lat": 50.7251866, - "lon": -1.8202294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 199", - "ref:GB:uprn": "10015466440", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824430470, - "lat": 50.7224367, - "lon": -1.8460550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 18", - "ref:GB:uprn": "10015402925", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824430472, - "lat": 50.7260878, - "lon": -1.8220614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 112", - "ref:GB:uprn": "10015629080", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824430473, - "lat": 50.7239999, - "lon": -1.8399286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 53", - "ref:GB:uprn": "10015386728", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 824430474, - "lat": 50.5611925, - "lon": -2.4453396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "On right as you go up the hill./Fortuneswell", - "post_box:type": "wall", - "ref": "DT5 32D", - "ref:GB:uprn": "10015308874", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824430486, - "lat": 50.7228910, - "lon": -1.8368031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 119", - "ref:GB:uprn": "10015363293", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824430487, - "lat": 50.7291605, - "lon": -1.8221731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 60", - "ref:GB:uprn": "10015406397", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824430488, - "lat": 50.7244254, - "lon": -1.8323753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 210", - "ref:GB:uprn": "10015450228", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824430489, - "lat": 50.7256465, - "lon": -1.8367544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 91", - "ref:GB:uprn": "10015465859", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824430490, - "lat": 50.7206353, - "lon": -1.8431725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 115", - "ref:GB:uprn": "10015419710", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451713, - "lat": 50.7233014, - "lon": -1.7935527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 190", - "ref:GB:uprn": "10015281344" - } -}, -{ - "type": "node", - "id": 824451726, - "lat": 50.7326304, - "lon": -1.8091819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 203", - "ref:GB:uprn": "10015273205", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451727, - "lat": 50.7386228, - "lon": -1.8175977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 306", - "ref:GB:uprn": "10015422739", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451728, - "lat": 50.7345990, - "lon": -1.8166827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 235", - "ref:GB:uprn": "10015369570", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451729, - "lat": 50.7222980, - "lon": -1.8026946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH6 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451730, - "lat": 50.7305541, - "lon": -1.8007654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 219", - "ref:GB:uprn": "10015399447", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451735, - "lat": 50.7260942, - "lon": -1.8134002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 215", - "ref:GB:uprn": "10015804441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451738, - "lat": 50.7373166, - "lon": -1.8075179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 275", - "ref:GB:uprn": "10015405983", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451740, - "lat": 50.7271084, - "lon": -1.7794367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH6 193", - "ref:GB:uprn": "10015475850", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451743, - "lat": 50.7304985, - "lon": -1.8103085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 94", - "ref:GB:uprn": "10015344587", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451747, - "lat": 50.7296305, - "lon": -1.8131117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 126", - "ref:GB:uprn": "10015323098", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451752, - "lat": 50.7249444, - "lon": -1.8090320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 114", - "ref:GB:uprn": "10015326308", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451753, - "lat": 50.7368162, - "lon": -1.8015137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 364", - "ref:GB:uprn": "10015459292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451755, - "lat": 50.7285930, - "lon": -1.8093935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 146", - "ref:GB:uprn": "10015326388", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451758, - "lat": 50.7263989, - "lon": -1.8167810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH6 132", - "ref:GB:uprn": "10015807112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451761, - "lat": 50.7362793, - "lon": -1.8122077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 267", - "ref:GB:uprn": "10015473173", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451767, - "lat": 50.7265300, - "lon": -1.7975102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 245", - "ref:GB:uprn": "10015356134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451770, - "lat": 50.7288199, - "lon": -1.8165248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside All Saints' Church. Victorian", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 173", - "ref:GB:uprn": "10015312778", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 824451772, - "lat": 50.7327743, - "lon": -1.8057491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 286", - "ref:GB:uprn": "10015807774", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451774, - "lat": 50.7211103, - "lon": -1.7974582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 187", - "ref:GB:uprn": "10015346885", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451776, - "lat": 50.7223494, - "lon": -1.8101775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 108", - "ref:GB:uprn": "10015293110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 824451778, - "lat": 50.7407107, - "lon": -1.8088657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 272", - "ref:GB:uprn": "10015475709", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451780, - "lat": 50.7242122, - "lon": -1.8040662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 62", - "ref:GB:uprn": "10015309622", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451781, - "lat": 50.7258832, - "lon": -1.8007204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 300", - "ref:GB:uprn": "10015403158", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451783, - "lat": 50.7265664, - "lon": -1.7853248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 328", - "ref:GB:uprn": "10015449372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451785, - "lat": 50.7396593, - "lon": -1.8061366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 170", - "ref:GB:uprn": "10015296301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824451795, - "lat": 50.7270952, - "lon": -1.7912559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 252", - "ref:GB:uprn": "10015382790", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451797, - "lat": 50.7249346, - "lon": -1.7960209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 189D", - "ref:GB:uprn": "10015336654", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451800, - "lat": 50.7217950, - "lon": -1.7942687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 194", - "ref:GB:uprn": "10015442374", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451803, - "lat": 50.7208656, - "lon": -1.7888537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 188", - "ref:GB:uprn": "10015833390", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 824451806, - "lat": 50.7247567, - "lon": -1.8130794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 161", - "ref:GB:uprn": "10015273948", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451807, - "lat": 50.7234150, - "lon": -1.8147180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 154", - "ref:GB:uprn": "10015459076", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451808, - "lat": 50.7218534, - "lon": -1.8165879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 218", - "ref:GB:uprn": "10015307150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451809, - "lat": 50.7287465, - "lon": -1.7985621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 257", - "ref:GB:uprn": "10015449793", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451810, - "lat": 50.7231225, - "lon": -1.7824888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 155", - "ref:GB:uprn": "10015462554" - } -}, -{ - "type": "node", - "id": 824451811, - "lat": 50.7282520, - "lon": -1.8028310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 232", - "ref:GB:uprn": "10015386274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824451812, - "lat": 50.7269782, - "lon": -1.8136792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 124", - "ref:GB:uprn": "10015403584", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 824451813, - "lat": 50.7333171, - "lon": -1.7971632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "moved from the other side of the road in 2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH6 280", - "ref:GB:uprn": "10015833439", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 824502272, - "lat": 52.4188153, - "lon": -1.7807022, - "tags": { - "amenity": "post_box", - "ref": "B91 586", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824544914, - "lat": 52.4237832, - "lon": -1.7713740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B91 777", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824561811, - "lat": 52.4240166, - "lon": -1.7649841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "B91 335", - "royal_cypher": "GVIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824561844, - "lat": 52.4287357, - "lon": -1.7686467, - "tags": { - "amenity": "post_box", - "ref": "B92 1176", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824576231, - "lat": 52.4292335, - "lon": -1.7638042, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 892", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824607672, - "lat": 52.4210968, - "lon": -1.7655722, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B91 719", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824615905, - "lat": 52.4162685, - "lon": -1.7660907, - "tags": { - "amenity": "post_box", - "ref": "B91 1070", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 824697882, - "lat": 52.4145960, - "lon": -1.8089339, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B91 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual survey; estimate" - } -}, -{ - "type": "node", - "id": 824796319, - "lat": 50.6813673, - "lon": -3.2430080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 824799613, - "lat": 50.8928058, - "lon": -1.3772057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is a bit in the bushes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 824828066, - "lat": 51.4450248, - "lon": -0.1893301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 12" - } -}, -{ - "type": "node", - "id": 824839888, - "lat": 53.5854008, - "lon": -2.4031844, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 825026959, - "lat": 50.7372067, - "lon": -1.2668169, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO32 28", - "ref:GB:uprn": "10015472292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/alverstone-road-po30-2qe/0000PO3228" - } -}, -{ - "type": "node", - "id": 825030990, - "lat": 50.6332650, - "lon": -1.2546083, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-10-29", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 242", - "ref:GB:uprn": "10015429290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/godshill-post-office-po38-3lb/000PO38242" - } -}, -{ - "type": "node", - "id": 825037496, - "lat": 50.5974748, - "lon": -1.2655101, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 246", - "ref:GB:uprn": "10015351063", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/kemming-road-po38-2aa/000PO38246" - } -}, -{ - "type": "node", - "id": 825037515, - "lat": 50.6435195, - "lon": -1.3960763, - "tags": { - "amenity": "post_box", - "check_date": "2012-01-08", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 84", - "ref:GB:uprn": "10015297529", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/brighstone-post-office-po30-4bd/0000PO3084" - } -}, -{ - "type": "node", - "id": 825037516, - "lat": 50.6146879, - "lon": -1.2231406, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-26", - "check_date:collection_times": "2021-03-26", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/wroxall-post-office-po38-3es/000PO38236" - } -}, -{ - "type": "node", - "id": 825107041, - "lat": 51.4444065, - "lon": -1.0181710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 58D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 825107202, - "lat": 51.4414882, - "lon": -1.0202657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "mapillary": "461604655139176", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG30 583D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-01-11" - } -}, -{ - "type": "node", - "id": 825111580, - "lat": 55.9493040, - "lon": -3.3103002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "EH12 341", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 825111600, - "lat": 55.9548140, - "lon": -3.3069384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "EH12 216", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 825189499, - "lat": 54.4846096, - "lon": -2.3533793, - "tags": { - "amenity": "post_box", - "ref": "CA17 303", - "source": "survey" - } -}, -{ - "type": "node", - "id": 825216835, - "lat": 51.4425122, - "lon": -1.0412542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG31 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 825217284, - "lat": 51.4396431, - "lon": -1.0500898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 825230900, - "lat": 52.6312962, - "lon": -2.9308053, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 758", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 825230904, - "lat": 52.6276527, - "lon": -2.9378274, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY5 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 825755148, - "lat": 51.5330050, - "lon": -0.4529970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "fixme": "mass-upload; needs manual review", - "post_box:type": "pillar", - "ref": "UB10 89" - } -}, -{ - "type": "node", - "id": 825802146, - "lat": 50.7282182, - "lon": -1.8335687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH7 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 825802163, - "lat": 50.7321041, - "lon": -1.8216705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 25", - "ref:GB:uprn": "10015376618", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 825802167, - "lat": 50.7403220, - "lon": -1.8156350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 329", - "ref:GB:uprn": "10015332884", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 825802174, - "lat": 50.7322009, - "lon": -1.8246665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 171", - "ref:GB:uprn": "10015280093", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 825802202, - "lat": 50.7303858, - "lon": -1.8266343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BH7 201", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 201D", - "ref:GB:uprn": "10015432157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 825802210, - "lat": 50.7352592, - "lon": -1.8225839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-10-03", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 228", - "ref:GB:uprn": "10015319296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 825802235, - "lat": 50.7295461, - "lon": -1.8324108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 69", - "ref:GB:uprn": "10015323248", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 825884532, - "lat": 51.0791526, - "lon": 1.1825546, - "tags": { - "amenity": "post_box", - "ref": "CT20 35" - } -}, -{ - "type": "node", - "id": 825884543, - "lat": 51.0825545, - "lon": 1.1400711, - "tags": { - "amenity": "post_box", - "ref": "CT20 197" - } -}, -{ - "type": "node", - "id": 825884579, - "lat": 51.0788641, - "lon": 1.1434756, - "tags": { - "amenity": "post_box", - "ref": "CT20 199" - } -}, -{ - "type": "node", - "id": 825884592, - "lat": 51.0827188, - "lon": 1.1356395, - "tags": { - "amenity": "post_box", - "ref": "CT20 55" - } -}, -{ - "type": "node", - "id": 825884626, - "lat": 51.0735516, - "lon": 1.1273168, - "tags": { - "amenity": "post_box", - "ref": "CT20 38" - } -}, -{ - "type": "node", - "id": 825884632, - "lat": 51.0737283, - "lon": 1.1446478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "CT20 90" - } -}, -{ - "type": "node", - "id": 825884730, - "lat": 51.0836815, - "lon": 1.1785911, - "tags": { - "amenity": "post_box", - "ref": "CT20 159" - } -}, -{ - "type": "node", - "id": 825884737, - "lat": 51.0682538, - "lon": 1.0830944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CT21 121" - } -}, -{ - "type": "node", - "id": 825884762, - "lat": 51.3587300, - "lon": 1.2542705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT7 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 825884798, - "lat": 51.0753960, - "lon": 1.1582825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT20 169D" - } -}, -{ - "type": "node", - "id": 826038918, - "lat": 51.0041450, - "lon": -1.5191980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 826113473, - "lat": 51.8548530, - "lon": -2.1210098, - "tags": { - "amenity": "post_box", - "ref": "GL51 149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 826134456, - "lat": 51.8509411, - "lon": -2.1267125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "GL51 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey and photo" - } -}, -{ - "type": "node", - "id": 826159168, - "lat": 51.7551182, - "lon": -4.9969433, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 826386236, - "lat": 52.6477975, - "lon": -1.2113205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30" - } -}, -{ - "type": "node", - "id": 826394519, - "lat": 54.5849315, - "lon": -2.4944166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA16 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 826537707, - "lat": 55.9875356, - "lon": -3.4087719, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-27", - "post_box:type": "lamp", - "ref": "EH30 354", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 826630547, - "lat": 51.4454388, - "lon": -0.3430381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 160" - } -}, -{ - "type": "node", - "id": 826632394, - "lat": 50.8903573, - "lon": -1.7956654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BH24", - "ref": "BH24 28" - } -}, -{ - "type": "node", - "id": 826645735, - "lat": 50.8728941, - "lon": -1.7916831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BH24", - "ref": "BH24 5" - } -}, -{ - "type": "node", - "id": 826648274, - "lat": 55.4159292, - "lon": -2.8128619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "650693933353836", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD9 65", - "source": "survey", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 826664925, - "lat": 55.4207752, - "lon": -2.7988485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1292722648132389", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD9 13", - "source": "survey", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 826703024, - "lat": 51.0622068, - "lon": -4.0029991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX32 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 826749075, - "lat": 55.4229629, - "lon": -2.7864529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD9 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 826755416, - "lat": 55.4280044, - "lon": -2.7851416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 826757747, - "lat": 50.7989810, - "lon": -1.0510382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO4 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 826810311, - "lat": 50.5854977, - "lon": -1.2519818, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-16", - "check_date:collection_times": "2021-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "810993262854773", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 249", - "ref:GB:uprn": "10015372658", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-02", - "website": "https://www.royalmail.com/services-near-you/postbox/woody-bank-po38-2aa/000PO38249" - } -}, -{ - "type": "node", - "id": 826810316, - "lat": 50.5833830, - "lon": -1.2615056, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-24", - "check_date:collection_times": "2024-03-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "man_made": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 257D", - "ref:GB:uprn": "10015317290", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 826810322, - "lat": 50.6074429, - "lon": -1.2696717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 220", - "website": "https://www.royalmail.com/services-near-you/postbox/southford-farm-po38-2pa/000PO38220" - } -}, -{ - "type": "node", - "id": 826810327, - "lat": 50.5961585, - "lon": -1.2062530, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-31", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 229D", - "ref:GB:uprn": "10015465731", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/grove-road-po38-1aa/000PO38229" - } -}, -{ - "type": "node", - "id": 826810330, - "lat": 50.5790450, - "lon": -1.2913409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "note": "This is a brand new EIIR lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09", - "website": "https://www.royalmail.com/services-near-you/postbox/niton-undercliffe-po38-1ya/000PO38219", - "wikimedia_commons": "File:Niton, postbox № PO38 219, St. Catherine’s Road - geograph.org.uk - 3897214.jpg" - } -}, -{ - "type": "node", - "id": 826810338, - "lat": 50.5949627, - "lon": -1.2108116, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PO38 203", - "ref:GB:uprn": "10015310682", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/bellevue-road-po38-1aa/000PO38203" - } -}, -{ - "type": "node", - "id": 826810339, - "lat": 50.5940568, - "lon": -1.2025937, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-03-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 226", - "ref:GB:uprn": "10015410131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/dudley-road-po38-1aa/000PO38226" - } -}, -{ - "type": "node", - "id": 826810340, - "lat": 50.5874216, - "lon": -1.2847324, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-16", - "check_date:collection_times": "2021-04-16", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/niton-post-office-po38-2ln/000PO38250" - } -}, -{ - "type": "node", - "id": 826810348, - "lat": 50.5854712, - "lon": -1.2483027, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 240", - "ref:GB:uprn": "10015372320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/st-lawrence-post-office-po38-1xx/000PO38240" - } -}, -{ - "type": "node", - "id": 826810350, - "lat": 50.5817953, - "lon": -1.2878782, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 258D", - "ref:GB:uprn": "10015319885", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/well-house-po38-1ya/000PO38258" - } -}, -{ - "type": "node", - "id": 826822232, - "lat": 51.4388786, - "lon": -1.0188061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 548D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 826836775, - "lat": 52.7866698, - "lon": -1.5558973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE11 1216" - } -}, -{ - "type": "node", - "id": 826836776, - "lat": 52.7879186, - "lon": -1.5716528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1237" - } -}, -{ - "type": "node", - "id": 826836777, - "lat": 52.7814315, - "lon": -1.5798886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE11 1074" - } -}, -{ - "type": "node", - "id": 826836778, - "lat": 52.7840818, - "lon": -1.5474649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1186" - } -}, -{ - "type": "node", - "id": 826836779, - "lat": 52.7817553, - "lon": -1.5712502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1245" - } -}, -{ - "type": "node", - "id": 826836780, - "lat": 52.7887046, - "lon": -1.5672718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1045" - } -}, -{ - "type": "node", - "id": 826836781, - "lat": 52.7845425, - "lon": -1.5718331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1123", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 826836782, - "lat": 52.7836287, - "lon": -1.5694401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1033", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 826836783, - "lat": 52.7824164, - "lon": -1.5847579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1085" - } -}, -{ - "type": "node", - "id": 826836784, - "lat": 52.7810464, - "lon": -1.5745923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE11 1250" - } -}, -{ - "type": "node", - "id": 826840633, - "lat": 52.7720627, - "lon": -1.5666189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 186" - } -}, -{ - "type": "node", - "id": 826840636, - "lat": 52.7829937, - "lon": -1.5558817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1239" - } -}, -{ - "type": "node", - "id": 826840637, - "lat": 52.7643922, - "lon": -1.5591694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1124" - } -}, -{ - "type": "node", - "id": 826840638, - "lat": 52.7796558, - "lon": -1.5506933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1134" - } -}, -{ - "type": "node", - "id": 826840646, - "lat": 52.7598864, - "lon": -1.5675131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE11 1032" - } -}, -{ - "type": "node", - "id": 826840648, - "lat": 52.7846243, - "lon": -1.5678274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1249" - } -}, -{ - "type": "node", - "id": 826840649, - "lat": 52.7754283, - "lon": -1.5513229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1248" - } -}, -{ - "type": "node", - "id": 826840650, - "lat": 52.7759376, - "lon": -1.5617850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1236" - } -}, -{ - "type": "node", - "id": 826840656, - "lat": 52.7837474, - "lon": -1.5622523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1181" - } -}, -{ - "type": "node", - "id": 826840659, - "lat": 52.7726396, - "lon": -1.5554018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1035" - } -}, -{ - "type": "node", - "id": 826845255, - "lat": 52.7667794, - "lon": -1.5791632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1057" - } -}, -{ - "type": "node", - "id": 826845259, - "lat": 52.7688976, - "lon": -1.5593436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1047" - } -}, -{ - "type": "node", - "id": 826845261, - "lat": 52.7578787, - "lon": -1.5770867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE11 1077" - } -}, -{ - "type": "node", - "id": 826845262, - "lat": 52.7672382, - "lon": -1.5909237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1160" - } -}, -{ - "type": "node", - "id": 826845264, - "lat": 52.7554506, - "lon": -1.5561584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1244" - } -}, -{ - "type": "node", - "id": 826845266, - "lat": 52.7716006, - "lon": -1.5659604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1103" - } -}, -{ - "type": "node", - "id": 826845269, - "lat": 52.7496937, - "lon": -1.5740288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1089" - } -}, -{ - "type": "node", - "id": 826845272, - "lat": 52.7680563, - "lon": -1.5720019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1090" - } -}, -{ - "type": "node", - "id": 826845279, - "lat": 52.7607319, - "lon": -1.5508499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1049" - } -}, -{ - "type": "node", - "id": 826845281, - "lat": 52.7540765, - "lon": -1.5836362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1119" - } -}, -{ - "type": "node", - "id": 826855033, - "lat": 52.7637094, - "lon": -1.5642965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1038" - } -}, -{ - "type": "node", - "id": 826855034, - "lat": 52.7654531, - "lon": -1.5354805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE11 1075" - } -}, -{ - "type": "node", - "id": 826855035, - "lat": 52.7587364, - "lon": -1.5150148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE11 1053", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 826855036, - "lat": 52.7668873, - "lon": -1.5189321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1203" - } -}, -{ - "type": "node", - "id": 826855038, - "lat": 52.7676123, - "lon": -1.5316912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "977402893051572", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE11 1191", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 826855046, - "lat": 52.7579490, - "lon": -1.5131539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE11 1189", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 826855047, - "lat": 52.7462176, - "lon": -1.5167259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1209" - } -}, -{ - "type": "node", - "id": 826855048, - "lat": 52.7648580, - "lon": -1.5689764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1217" - } -}, -{ - "type": "node", - "id": 826855049, - "lat": 52.7694620, - "lon": -1.5446325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1056" - } -}, -{ - "type": "node", - "id": 826871888, - "lat": 52.5346431, - "lon": 0.8482494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP24 3334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 826895331, - "lat": 52.7826485, - "lon": -1.5182531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE11 1054" - } -}, -{ - "type": "node", - "id": 826895336, - "lat": 52.8123530, - "lon": -1.6252303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1097" - } -}, -{ - "type": "node", - "id": 826895338, - "lat": 52.8156477, - "lon": -1.6284453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1000" - } -}, -{ - "type": "node", - "id": 826895339, - "lat": 52.8128212, - "lon": -1.6366783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "547781323118807", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1024", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 826895340, - "lat": 52.7952901, - "lon": -1.5794771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "369285418169832", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE15 1037", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 826895341, - "lat": 52.7791580, - "lon": -1.5648196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1386" - } -}, -{ - "type": "node", - "id": 826895345, - "lat": 52.7822482, - "lon": -1.5476870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "692182612183740", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE11 1373", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 826895347, - "lat": 52.7872768, - "lon": -1.5209880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "215780910878975", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE11 1148", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 826895348, - "lat": 52.8189509, - "lon": -1.6291288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1109" - } -}, -{ - "type": "node", - "id": 826895350, - "lat": 52.8182684, - "lon": -1.6322490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1005" - } -}, -{ - "type": "node", - "id": 826895352, - "lat": 52.8077494, - "lon": -1.6311644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "571845830616851", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1007", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 826895357, - "lat": 52.7804718, - "lon": -1.5399700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1222" - } -}, -{ - "type": "node", - "id": 826895359, - "lat": 52.7811381, - "lon": -1.6078973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE15 1128" - } -}, -{ - "type": "node", - "id": 826895362, - "lat": 52.8217760, - "lon": -1.6287904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1392" - } -}, -{ - "type": "node", - "id": 826895363, - "lat": 52.8156358, - "lon": -1.6284607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1381" - } -}, -{ - "type": "node", - "id": 826895364, - "lat": 52.8107810, - "lon": -1.6314536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1234" - } -}, -{ - "type": "node", - "id": 826895368, - "lat": 52.7713811, - "lon": -1.5322148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1093" - } -}, -{ - "type": "node", - "id": 826895369, - "lat": 52.8196139, - "lon": -1.6227327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1020" - } -}, -{ - "type": "node", - "id": 826903954, - "lat": 52.8033457, - "lon": -1.6293471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1028" - } -}, -{ - "type": "node", - "id": 826903956, - "lat": 52.8037734, - "lon": -1.6347752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1115" - } -}, -{ - "type": "node", - "id": 826903959, - "lat": 52.8092780, - "lon": -1.6434191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1017" - } -}, -{ - "type": "node", - "id": 826903960, - "lat": 52.8069673, - "lon": -1.6266803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "564433441653716", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1004", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 826903961, - "lat": 52.8025782, - "lon": -1.6394617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1009" - } -}, -{ - "type": "node", - "id": 826903963, - "lat": 52.8034593, - "lon": -1.6322099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "753840971918262", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1114", - "survey:date": "2020-11-27" - } -}, -{ - "type": "node", - "id": 826903967, - "lat": 52.8061308, - "lon": -1.6396956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "483772722740051", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1030", - "survey:date": "2020-11-27" - } -}, -{ - "type": "node", - "id": 826903969, - "lat": 52.8012164, - "lon": -1.6313068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1023" - } -}, -{ - "type": "node", - "id": 826910930, - "lat": 52.8012197, - "lon": -1.6313256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1065" - } -}, -{ - "type": "node", - "id": 826910932, - "lat": 52.8070125, - "lon": -1.6452286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1056211264907414", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1062", - "survey:date": "2020-11-27" - } -}, -{ - "type": "node", - "id": 826910937, - "lat": 52.7992752, - "lon": -1.6407778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1016" - } -}, -{ - "type": "node", - "id": 826910939, - "lat": 52.8050290, - "lon": -1.6492543, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1018" - } -}, -{ - "type": "node", - "id": 826910941, - "lat": 52.7963233, - "lon": -1.6388986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1027" - } -}, -{ - "type": "node", - "id": 826910942, - "lat": 52.8075263, - "lon": -1.6574555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1013" - } -}, -{ - "type": "node", - "id": 826910949, - "lat": 52.8107684, - "lon": -1.6481694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1092" - } -}, -{ - "type": "node", - "id": 826910951, - "lat": 52.7936922, - "lon": -1.6421915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1019" - } -}, -{ - "type": "node", - "id": 826910953, - "lat": 52.8082618, - "lon": -1.6483319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1006" - } -}, -{ - "type": "node", - "id": 826917969, - "lat": 52.7877374, - "lon": -1.6602193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE14 1195" - } -}, -{ - "type": "node", - "id": 826917971, - "lat": 52.7930417, - "lon": -1.6398603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1087" - } -}, -{ - "type": "node", - "id": 826917974, - "lat": 52.7928684, - "lon": -1.6497261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1384" - } -}, -{ - "type": "node", - "id": 826917976, - "lat": 52.7893312, - "lon": -1.6675821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE14 1228" - } -}, -{ - "type": "node", - "id": 826917977, - "lat": 52.7901487, - "lon": -1.6459583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE14 1002" - } -}, -{ - "type": "node", - "id": 826917979, - "lat": 52.7872746, - "lon": -1.6516755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 560" - } -}, -{ - "type": "node", - "id": 826917980, - "lat": 52.7936875, - "lon": -1.6589100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1229" - } -}, -{ - "type": "node", - "id": 826917982, - "lat": 52.7893709, - "lon": -1.6588450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1390" - } -}, -{ - "type": "node", - "id": 826917983, - "lat": 52.7945818, - "lon": -1.6631108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1198" - } -}, -{ - "type": "node", - "id": 827194715, - "lat": 51.7684824, - "lon": -0.3165466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 827194716, - "lat": 51.7689015, - "lon": -0.2949709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 827209349, - "lat": 51.3556052, - "lon": 1.4415419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CT10 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 827228157, - "lat": 51.3510306, - "lon": 1.3442257, - "tags": { - "amenity": "post_box", - "ref": "CT12 5" - } -}, -{ - "type": "node", - "id": 827232808, - "lat": 51.3278902, - "lon": 1.3698423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CT12 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827241178, - "lat": 51.2229378, - "lon": 1.4012867, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT14 28", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2022-12-19" - } -}, -{ - "type": "node", - "id": 827242535, - "lat": 51.2197944, - "lon": 1.3770562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Attached to fingerpost sign (no fingers)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "CT14 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 827243607, - "lat": 51.2158065, - "lon": 1.3904249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT14 13", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 827246962, - "lat": 51.2159665, - "lon": 1.3777059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT14 38", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 827247244, - "lat": 51.2241171, - "lon": 1.3935190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CT14 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 827247663, - "lat": 51.2210692, - "lon": 1.3869083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT14 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 827247706, - "lat": 50.7011783, - "lon": -1.2726861, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 40D", - "ref:GB:uprn": "10015472297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/staplers-road-po30-1ag/0000PO3040" - } -}, -{ - "type": "node", - "id": 827247708, - "lat": 50.6976239, - "lon": -1.2864872, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 112D", - "ref:GB:uprn": "10015459364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/robinhood-street-po30-1ae/000PO30112" - } -}, -{ - "type": "node", - "id": 827247710, - "lat": 50.6960932, - "lon": -1.2932229, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 50D", - "ref:GB:uprn": "10015313880", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/york-road-po30-1ae/0000PO3050" - } -}, -{ - "type": "node", - "id": 827247711, - "lat": 50.6771917, - "lon": -1.2454135, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 35", - "ref:GB:uprn": "10015351045", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/arreton-vicarage-po30-3aa/0000PO3035" - } -}, -{ - "type": "node", - "id": 827247713, - "lat": 50.6988107, - "lon": -1.3096838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 82", - "ref:GB:uprn": "10023711426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/hinton-road-po30-1ae/0000PO3082" - } -}, -{ - "type": "node", - "id": 827251333, - "lat": 51.2013463, - "lon": 1.3968302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT14 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 827252651, - "lat": 51.1888357, - "lon": 1.4026459, - "tags": { - "amenity": "post_box", - "ref": "CT14 63" - } -}, -{ - "type": "node", - "id": 827252908, - "lat": 50.5985584, - "lon": -1.2168932, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-31", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "mapillary": "421042366059028", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO38 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-29", - "website": "https://www.royalmail.com/services-near-you/postbox/newport-road-po38-1aa/000PO38255" - } -}, -{ - "type": "node", - "id": 827269468, - "lat": 50.7318442, - "lon": -1.9223402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 173", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827269470, - "lat": 50.7249567, - "lon": -1.9081013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 237", - "ref:GB:uprn": "10015299780", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827330532, - "lat": 50.8381160, - "lon": -0.1361020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Florence Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 294D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 827330535, - "lat": 50.8237795, - "lon": -0.1462277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "post_box:type": "meter", - "ref": "BN1 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 827330536, - "lat": 50.8237786, - "lon": -0.1462105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "BN1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 827332524, - "lat": 50.8415673, - "lon": -0.1413486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside shops", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 283D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 827334281, - "lat": 50.8274136, - "lon": -0.1668109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:00", - "name": "Wilbury Road", - "post_box:type": "pillar", - "ref": "BN3 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 827336388, - "lat": 50.8080356, - "lon": 0.2476367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "description": "Outside The Co-operative Food store (contains Post Office) on the shopping parade.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 803", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827343363, - "lat": 52.0614970, - "lon": -2.6880980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "HR1 737" - } -}, -{ - "type": "node", - "id": 827352072, - "lat": 51.5226667, - "lon": -0.1552266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 34D;NW1 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 34D and NW1 34" - } -}, -{ - "type": "node", - "id": 827362730, - "lat": 55.9569579, - "lon": -3.4695556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 827380902, - "lat": 50.7251428, - "lon": -1.8274695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Box was moved around the corner", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 227D", - "ref:GB:uprn": "10015286972", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 827510557, - "lat": 57.5917408, - "lon": -4.1150864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IV10 260", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827530448, - "lat": 52.4682769, - "lon": -2.1037812, - "tags": { - "amenity": "post_box", - "ref": "DY5 149", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 827582415, - "lat": 55.8272305, - "lon": -4.4499457, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 222" - } -}, -{ - "type": "node", - "id": 827602480, - "lat": 53.2944937, - "lon": -3.4663953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "18.0", - "note": "Set in brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL18 185D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 827645845, - "lat": 54.4526581, - "lon": -2.6058250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CA10 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 827777750, - "lat": 58.2162117, - "lon": -6.3839662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:45; Sa 12:45", - "indoor": "yes", - "note": "inside the Co-op, operated by co-op but emptied by Royal Mail.", - "operator": "Co-op", - "post_box:type": "indoor_box", - "ref": "HS1 3", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 827777759, - "lat": 58.2055262, - "lon": -6.3710978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HS1 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827777766, - "lat": 58.2079026, - "lon": -6.3838534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HS1 5", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827777783, - "lat": 58.2067817, - "lon": -6.3861518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HS1 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 827777797, - "lat": 58.2135788, - "lon": -6.3804635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HS1 7", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827777831, - "lat": 58.2178971, - "lon": -6.3857530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HS1 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827777866, - "lat": 58.2087433, - "lon": -6.3863269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 12:30", - "indoor": "yes", - "note": "inside the post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HS1 175", - "source": "survey" - } -}, -{ - "type": "node", - "id": 827781000, - "lat": 50.6912069, - "lon": -1.4538970, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO41 79D", - "ref:GB:uprn": "10024901340", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/wellow-top-road-po41-0uh/0000PO4179" - } -}, -{ - "type": "node", - "id": 827936912, - "lat": 52.4663541, - "lon": -2.1078283, - "tags": { - "amenity": "post_box", - "ref": "DY5 12", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 827983705, - "lat": 51.4062633, - "lon": -2.6264671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 828075279, - "lat": 50.7042632, - "lon": -1.5148982, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 121D", - "ref:GB:uprn": "10015323803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/west-hill-lane-po41-0se/000PO41121" - } -}, -{ - "type": "node", - "id": 828075282, - "lat": 50.7068021, - "lon": -1.4496214, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 70", - "ref:GB:uprn": "10015856857", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/cranmore-avenue-po41-0ab/0000PO4170" - } -}, -{ - "type": "node", - "id": 828075283, - "lat": 50.7091154, - "lon": -1.4383828, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-10", - "check_date:collection_times": "2022-05-10", - "check_date:ref": "2022-05-10", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO41 93D", - "ref:GB:uprn": "10015433431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/solent-road-po41-0xr/0000PO4193" - } -}, -{ - "type": "node", - "id": 828110127, - "lat": 52.7600881, - "lon": -1.6830293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE12 1231", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 828110131, - "lat": 52.7925420, - "lon": -1.6643587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1001" - } -}, -{ - "type": "node", - "id": 828110136, - "lat": 52.7227995, - "lon": -1.6132599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 828110140, - "lat": 52.7141333, - "lon": -1.6311228, - "tags": { - "amenity": "post_box", - "note": "royal cypher does appear to be just ER", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DE12 1118", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 828110149, - "lat": 52.7607867, - "lon": -1.6768664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1131" - } -}, -{ - "type": "node", - "id": 828110150, - "lat": 52.7070862, - "lon": -1.6866921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B77 403" - } -}, -{ - "type": "node", - "id": 828110154, - "lat": 52.7144099, - "lon": -1.5760708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE12 1167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828110158, - "lat": 52.7611961, - "lon": -1.6783893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 828110161, - "lat": 52.7341670, - "lon": -1.6935632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1197" - } -}, -{ - "type": "node", - "id": 828110167, - "lat": 52.7590251, - "lon": -1.6749793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1269" - } -}, -{ - "type": "node", - "id": 828118794, - "lat": 52.7354456, - "lon": -1.6358843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co., London, SE1", - "post_box:type": "lamp", - "ref": "DE12 1104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828118796, - "lat": 52.7441504, - "lon": -1.5836347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1059" - } -}, -{ - "type": "node", - "id": 828118799, - "lat": 52.7524993, - "lon": -1.6235414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE12 1042" - } -}, -{ - "type": "node", - "id": 828118801, - "lat": 52.7354616, - "lon": -1.6405956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE12 1138D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828118803, - "lat": 52.7457866, - "lon": -1.5904072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1122" - } -}, -{ - "type": "node", - "id": 828118806, - "lat": 52.7477656, - "lon": -1.6398071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE12 1143" - } -}, -{ - "type": "node", - "id": 828118808, - "lat": 52.7467735, - "lon": -1.5965552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1235" - } -}, -{ - "type": "node", - "id": 828118813, - "lat": 52.7446915, - "lon": -1.6351242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE12 1238", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 828118814, - "lat": 52.7423065, - "lon": -1.5718151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE12 1211" - } -}, -{ - "type": "node", - "id": 828118815, - "lat": 52.7530950, - "lon": -1.5987951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1205" - } -}, -{ - "type": "node", - "id": 828127553, - "lat": 52.9120211, - "lon": -1.4007194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE21 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828127556, - "lat": 52.9460293, - "lon": -1.4161957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828127558, - "lat": 52.7897860, - "lon": -1.6193509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "382541646549772", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE15 1100", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 828127561, - "lat": 52.9211826, - "lon": -1.4003268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE21 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828127565, - "lat": 52.7758842, - "lon": -1.6017226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE15 1225" - } -}, -{ - "type": "node", - "id": 828127568, - "lat": 52.9216279, - "lon": -1.4048943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DE21 743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828127569, - "lat": 52.9251211, - "lon": -1.4027223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE21 705D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828127570, - "lat": 52.9143619, - "lon": -1.3970992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DE21 656D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828135605, - "lat": 52.9276438, - "lon": -1.4229176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 704", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828135611, - "lat": 52.9217988, - "lon": -1.4433831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 493" - } -}, -{ - "type": "node", - "id": 828135612, - "lat": 52.9222489, - "lon": -1.4083479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE21 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828135613, - "lat": 52.9268091, - "lon": -1.4390759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 164" - } -}, -{ - "type": "node", - "id": 828135618, - "lat": 52.9249490, - "lon": -1.4291446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 536" - } -}, -{ - "type": "node", - "id": 828135619, - "lat": 52.9238669, - "lon": -1.4213360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 663" - } -}, -{ - "type": "node", - "id": 828135620, - "lat": 52.9284436, - "lon": -1.4344447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828135622, - "lat": 52.9204161, - "lon": -1.4044276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE21 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828135626, - "lat": 52.9285010, - "lon": -1.4273328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 698", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828135627, - "lat": 52.9195280, - "lon": -1.4086800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE21 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828138689, - "lat": 52.9341373, - "lon": -1.4507305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 580" - } -}, -{ - "type": "node", - "id": 828138691, - "lat": 52.9336906, - "lon": -1.4571296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 617" - } -}, -{ - "type": "node", - "id": 828138699, - "lat": 52.9331674, - "lon": -1.4319154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 485", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828138700, - "lat": 52.9229362, - "lon": -1.4615458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00", - "note": "Franked Mail only. Monday to Friday collection only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 1372" - } -}, -{ - "type": "node", - "id": 828138705, - "lat": 52.9338899, - "lon": -1.4375782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 582" - } -}, -{ - "type": "node", - "id": 828138707, - "lat": 52.9259416, - "lon": -1.4524071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 213D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828138710, - "lat": 52.9434107, - "lon": -1.4250665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE21 764" - } -}, -{ - "type": "node", - "id": 828138711, - "lat": 52.9300614, - "lon": -1.4501089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 497" - } -}, -{ - "type": "node", - "id": 828138716, - "lat": 52.9355514, - "lon": -1.4240512, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 606D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828138719, - "lat": 52.9229281, - "lon": -1.4615617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 744", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828145875, - "lat": 52.9373739, - "lon": -1.4333904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 670" - } -}, -{ - "type": "node", - "id": 828145876, - "lat": 52.9394109, - "lon": -1.4268399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 763" - } -}, -{ - "type": "node", - "id": 828145877, - "lat": 52.9414083, - "lon": -1.4668420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 686D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828145878, - "lat": 52.9377781, - "lon": -1.4565308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 1364" - } -}, -{ - "type": "node", - "id": 828145879, - "lat": 52.9385507, - "lon": -1.4412908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 665" - } -}, -{ - "type": "node", - "id": 828145880, - "lat": 52.9301670, - "lon": -1.4580419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 450" - } -}, -{ - "type": "node", - "id": 828145881, - "lat": 52.9450350, - "lon": -1.4630374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 739" - } -}, -{ - "type": "node", - "id": 828148041, - "lat": 50.6122300, - "lon": -1.2240300, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-08-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 260", - "ref:GB:uprn": "10015356132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/clarence-road-po38-3es/000PO38260" - } -}, -{ - "type": "node", - "id": 828148045, - "lat": 50.6122300, - "lon": -1.2224100, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-26", - "check_date:collection_times": "2021-03-26", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/stenbury-view-po38-3es/000PO38264" - } -}, -{ - "type": "node", - "id": 828148046, - "lat": 50.5874100, - "lon": -1.2396600, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 208", - "ref:GB:uprn": "10015435624", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/seven-sisters-po38-2aa/000PO38208" - } -}, -{ - "type": "node", - "id": 828152396, - "lat": 52.9437624, - "lon": -1.4574701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 357" - } -}, -{ - "type": "node", - "id": 828152400, - "lat": 52.9489332, - "lon": -1.4250892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE21 898" - } -}, -{ - "type": "node", - "id": 828152401, - "lat": 52.9515342, - "lon": -1.4412696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE21 661D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828152402, - "lat": 52.9394542, - "lon": -1.4508374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 673" - } -}, -{ - "type": "node", - "id": 828152403, - "lat": 52.9493633, - "lon": -1.4415824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "DE21 452D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828152406, - "lat": 52.9431593, - "lon": -1.4532282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 674" - } -}, -{ - "type": "node", - "id": 828152407, - "lat": 52.9431525, - "lon": -1.4346266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 769" - } -}, -{ - "type": "node", - "id": 828152409, - "lat": 52.9422922, - "lon": -1.4378704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 687" - } -}, -{ - "type": "node", - "id": 828152410, - "lat": 52.9451687, - "lon": -1.4458173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 731" - } -}, -{ - "type": "node", - "id": 828165185, - "lat": 52.9950731, - "lon": -1.3966658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "DE7 662D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828165186, - "lat": 52.9798490, - "lon": -1.4543544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE21 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828165187, - "lat": 52.9734607, - "lon": -1.4608427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Fdry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "DE21 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828165189, - "lat": 52.9537893, - "lon": -1.4518969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 557", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828165193, - "lat": 52.9962011, - "lon": -1.4383743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 295", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828170170, - "lat": 52.9702079, - "lon": -1.4161665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE7 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828170172, - "lat": 52.9678783, - "lon": -1.4273664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE7 216", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828170174, - "lat": 52.9760631, - "lon": -1.3818800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 315", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828170175, - "lat": 52.9802858, - "lon": -1.4222389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE7 490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828170177, - "lat": 52.9842896, - "lon": -1.4112441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "DE7 484D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828177079, - "lat": 52.9742558, - "lon": -1.3414814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 556D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828177081, - "lat": 52.9670305, - "lon": -1.3588259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 443", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828177082, - "lat": 52.9745006, - "lon": -1.3542217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE7 1347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828177083, - "lat": 52.9819541, - "lon": -1.3541926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828177084, - "lat": 52.9775785, - "lon": -1.3071543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "DE7 1360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828177085, - "lat": 52.9712891, - "lon": -1.3569512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE7 1322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828194311, - "lat": 52.9863775, - "lon": -1.3124041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE7 1319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828194314, - "lat": 52.9901523, - "lon": -1.3167671, - "tags": { - "alt_ref": "DE7 315D", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Plate shows ref DE7 315 (2016-02-27) but this also exists in Stanley Common. Have left old previously surveyed ref for now.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1324D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828194317, - "lat": 52.9954086, - "lon": -1.3097351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828194328, - "lat": 52.9875113, - "lon": -1.3097162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 1305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828194331, - "lat": 52.9845961, - "lon": -1.3083544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE7 1307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828194333, - "lat": 52.9931127, - "lon": -1.3068758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828211721, - "lat": 52.9819915, - "lon": -1.3211499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE7 1327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828211723, - "lat": 53.0100184, - "lon": -1.3498456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 1382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828211727, - "lat": 52.8716381, - "lon": -1.4878426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 572" - } -}, -{ - "type": "node", - "id": 828211731, - "lat": 52.9830636, - "lon": -1.3150635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE7 1314D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828211740, - "lat": 52.9873097, - "lon": -1.3210984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 1371D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828211741, - "lat": 52.8559059, - "lon": -1.5153732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 196" - } -}, -{ - "type": "node", - "id": 828211742, - "lat": 52.9991346, - "lon": -1.3319922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE7 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828215758, - "lat": 52.8771504, - "lon": -1.4939926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 725" - } -}, -{ - "type": "node", - "id": 828215762, - "lat": 52.8860880, - "lon": -1.4801573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 97" - } -}, -{ - "type": "node", - "id": 828215766, - "lat": 52.8804074, - "lon": -1.4899518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 88D" - } -}, -{ - "type": "node", - "id": 828215769, - "lat": 52.8926910, - "lon": -1.4710947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 348", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828215773, - "lat": 52.8847636, - "lon": -1.4890913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 584" - } -}, -{ - "type": "node", - "id": 828215781, - "lat": 52.8866450, - "lon": -1.4838614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 508" - } -}, -{ - "type": "node", - "id": 828216145, - "lat": 52.8925852, - "lon": -1.4419486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 502" - } -}, -{ - "type": "node", - "id": 828216151, - "lat": 52.8806846, - "lon": -1.4465022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 596" - } -}, -{ - "type": "node", - "id": 828216154, - "lat": 52.8852040, - "lon": -1.4414766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 460" - } -}, -{ - "type": "node", - "id": 828216156, - "lat": 52.8847424, - "lon": -1.4467817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 537" - } -}, -{ - "type": "node", - "id": 828216159, - "lat": 52.9009787, - "lon": -1.4589467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 206" - } -}, -{ - "type": "node", - "id": 828216165, - "lat": 52.8687409, - "lon": -1.4386259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 223" - } -}, -{ - "type": "node", - "id": 828216166, - "lat": 52.8944117, - "lon": -1.4494453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 689" - } -}, -{ - "type": "node", - "id": 828216167, - "lat": 52.8886918, - "lon": -1.4367788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 567" - } -}, -{ - "type": "node", - "id": 828216168, - "lat": 52.9039430, - "lon": -1.4616431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE24 19" - } -}, -{ - "type": "node", - "id": 828216169, - "lat": 52.8939584, - "lon": -1.4547108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 349" - } -}, -{ - "type": "node", - "id": 828216170, - "lat": 52.8930314, - "lon": -1.4297715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 176" - } -}, -{ - "type": "node", - "id": 828224644, - "lat": 50.6288800, - "lon": -1.2682500, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-21", - "check_date:collection_plate": "2022-01-21", - "check_date:collection_times": "2022-01-21", - "check_date:ref": "2022-01-21", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 251D", - "ref:GB:uprn": "10015330642", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "website": "https://www.royalmail.com/services-near-you/postbox/lower-elliotts-po38-2pa/000PO38251" - } -}, -{ - "type": "node", - "id": 828224647, - "lat": 50.6444600, - "lon": -1.2790100, - "tags": { - "amenity": "post_box", - "mapillary": "381098727007592", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 252", - "ref:GB:uprn": "10015277507", - "survey:date": "2021-08-29", - "website": "https://www.royalmail.com/services-near-you/postbox/chequers-po38-3hb/000PO38252" - } -}, -{ - "type": "node", - "id": 828224654, - "lat": 50.6200283, - "lon": -1.2727469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO38 247", - "ref:GB:uprn": "10015366250", - "website": "https://www.royalmail.com/services-near-you/postbox/roud-po38-2pa/000PO38247" - } -}, -{ - "type": "node", - "id": 828425329, - "lat": 53.1688451, - "lon": -3.1094227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 828426904, - "lat": 50.6990622, - "lon": -1.9245613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 129D", - "ref:GB:uprn": "10015465506", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 828426905, - "lat": 50.6968166, - "lon": -1.9315901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 240", - "ref:GB:uprn": "10015379743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828426906, - "lat": 50.6838953, - "lon": -1.9471469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 237", - "ref:GB:uprn": "10015269586", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828426907, - "lat": 50.6873603, - "lon": -1.9457200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 238", - "ref:GB:uprn": "10015343846", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828426908, - "lat": 50.7012711, - "lon": -1.9322262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 317", - "ref:GB:uprn": "10015320479", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828426909, - "lat": 50.6885187, - "lon": -1.9406140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 239", - "ref:GB:uprn": "10015387766" - } -}, -{ - "type": "node", - "id": 828426998, - "lat": 50.7302740, - "lon": -1.8555024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 41", - "ref:GB:uprn": "10015306755", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828427001, - "lat": 50.7268370, - "lon": -1.8637280, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BH8 10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH8 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828427201, - "lat": 50.7414404, - "lon": -1.8888501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 175", - "ref:GB:uprn": "10015286278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828427203, - "lat": 50.7411012, - "lon": -1.8833001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 77", - "ref:GB:uprn": "10015429688", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428384, - "lat": 50.8050480, - "lon": -2.6031580, - "tags": { - "amenity": "post_box", - "description": "In wall of row of thatched cottages. Victorian.", - "post_box:type": "wall", - "ref": "DT2 25", - "ref:GB:uprn": "10015295966", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828428385, - "lat": 50.6954540, - "lon": -2.4180650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "description": "Up private drive, first right over river.", - "fixme": "Seems to be a watercourse between road and pb. Need to find", - "post_box:type": "wall", - "ref": "DT2 39" - } -}, -{ - "type": "node", - "id": 828428386, - "lat": 50.6975020, - "lon": -2.3327060, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 189" - } -}, -{ - "type": "node", - "id": 828428387, - "lat": 50.7465384, - "lon": -2.3261482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 87", - "ref:GB:uprn": "10015474594", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428388, - "lat": 50.6798483, - "lon": -2.6614465, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 119", - "ref:GB:uprn": "10015404696", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428389, - "lat": 50.6959478, - "lon": -2.6600541, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DT2 82", - "ref:GB:uprn": "10015474203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428390, - "lat": 50.7474039, - "lon": -2.3184406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT2 174", - "ref:GB:uprn": "10015441269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428391, - "lat": 50.7186620, - "lon": -2.5962070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 139", - "ref:GB:uprn": "10015328593" - } -}, -{ - "type": "node", - "id": 828428392, - "lat": 50.8233668, - "lon": -2.6343770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "description": "Wall of barn. Victorian.", - "post_box:type": "wall", - "ref": "DT2 65", - "ref:GB:uprn": "10015285906", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828428393, - "lat": 50.7250154, - "lon": -2.4091842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00", - "description": "Entrance to Birkin House. Victorian", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT2 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828428394, - "lat": 50.7736616, - "lon": -2.5706937, - "tags": { - "amenity": "post_box", - "description": "In wall on southwest side. Victorian box", - "post_box:type": "wall", - "ref": "DT2 57", - "ref:GB:uprn": "10015464863", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828428395, - "lat": 50.6970020, - "lon": -2.3270850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 194" - } -}, -{ - "type": "node", - "id": 828428396, - "lat": 50.8671928, - "lon": -2.6059702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "DT2 97", - "ref:GB:uprn": "10015365569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428397, - "lat": 50.8701029, - "lon": -2.5967834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "DT2 30", - "ref:GB:uprn": "10015438701" - } -}, -{ - "type": "node", - "id": 828428398, - "lat": 50.7512280, - "lon": -2.2622390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "DT2 177", - "ref:GB:uprn": "10015368221" - } -}, -{ - "type": "node", - "id": 828428399, - "lat": 50.6919503, - "lon": -2.4399051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "description": "Victorian.", - "post_box:type": "wall", - "ref": "DT2 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828428400, - "lat": 50.6968229, - "lon": -2.6415145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Tiny box in wall by double bend as road goes through farmyard", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DT2 118", - "ref:GB:uprn": "10015398493", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828428401, - "lat": 50.7126527, - "lon": -2.5127550, - "tags": { - "amenity": "post_box", - "description": "Entrance to Morn Gate Holiday Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 199" - } -}, -{ - "type": "node", - "id": 828428402, - "lat": 50.8715142, - "lon": -2.6097301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "DT2 191" - } -}, -{ - "type": "node", - "id": 828428403, - "lat": 50.8547540, - "lon": -2.4355372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "post_box:type": "lamp", - "ref": "DT2 42", - "ref:GB:uprn": "10015313279" - } -}, -{ - "type": "node", - "id": 828428404, - "lat": 50.7482551, - "lon": -2.3465223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "Outside post office. Base wording upside down!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT2 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828428405, - "lat": 50.7736405, - "lon": -2.5989439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT2 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 828428406, - "lat": 50.7056470, - "lon": -2.3707290, - "tags": { - "amenity": "post_box", - "description": "In hedge", - "post_box:type": "wall", - "ref": "DT2 124" - } -}, -{ - "type": "node", - "id": 828430531, - "lat": 50.5638439, - "lon": -2.4449829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "DT5 120", - "ref:GB:uprn": "10015311828", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828430532, - "lat": 50.5422510, - "lon": -2.4307225, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-29", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "description": "Victorian.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT5 23", - "ref:GB:uprn": "10015468253", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-09-13" - } -}, -{ - "type": "node", - "id": 828430533, - "lat": 50.5587319, - "lon": -2.4413372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside Kingdom Hall of Jehovah's Witnesses.", - "name": "Chapel View", - "old_ref": "DT5 28", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT5 28D", - "ref:GB:uprn": "10015268656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430534, - "lat": 50.5310560, - "lon": -2.4462674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DT5 145D", - "ref:GB:uprn": "10015308634", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430535, - "lat": 50.5590271, - "lon": -2.4446884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "High Street Fortuneswell", - "old_ref": "DT5 36", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT5 36D", - "ref:GB:uprn": "10015464226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828430536, - "lat": 50.5176182, - "lon": -2.4550681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "DT5 90", - "ref:GB:uprn": "10015268869", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430537, - "lat": 50.5294690, - "lon": -2.4414970, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT5 22", - "ref:GB:uprn": "10015298694", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828430538, - "lat": 50.5599625, - "lon": -2.4431653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "description": "Opposite Portland post office.", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "DT5 118", - "ref:GB:uprn": "10015334440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430539, - "lat": 50.5387991, - "lon": -2.4445516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "DT5 31", - "ref:GB:uprn": "10015378313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430540, - "lat": 50.5426486, - "lon": -2.4444768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "colour": "gold", - "post_box:type": "pillar", - "ref": "DT5 113", - "ref:GB:uprn": "10015408299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430541, - "lat": 50.5458403, - "lon": -2.4404401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DT5 54D", - "ref:GB:uprn": "10015275583", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 828430542, - "lat": 50.5294032, - "lon": -2.4513864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DT5 151", - "ref:GB:uprn": "10015828334" - } -}, -{ - "type": "node", - "id": 828430543, - "lat": 50.5407019, - "lon": -2.4499886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT5 126D", - "ref:GB:uprn": "10015385251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430544, - "lat": 50.5623778, - "lon": -2.4491746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Wall of public car park.", - "post_box:type": "wall", - "ref": "DT5 21", - "ref:GB:uprn": "10015421361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828430545, - "lat": 50.5504523, - "lon": -2.4443802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "description": "Outside Delivery Office.", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DT5 152" - } -}, -{ - "type": "node", - "id": 828430546, - "lat": 50.5450071, - "lon": -2.4347435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "fixme": "Need to find Easton Post Office", - "note": "Moved to new PO, was a wall box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DT5 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828433167, - "lat": 50.7422016, - "lon": -2.7119277, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 116", - "ref:GB:uprn": "10015338868" - } -}, -{ - "type": "node", - "id": 828433168, - "lat": 50.7382449, - "lon": -2.6909783, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 97", - "ref:GB:uprn": "10015388647", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828433169, - "lat": 50.7334711, - "lon": -2.6957491, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 113", - "ref:GB:uprn": "10015325663" - } -}, -{ - "type": "node", - "id": 828433170, - "lat": 50.7846286, - "lon": -2.7864342, - "tags": { - "amenity": "post_box", - "description": "In wall opposite turning to Stoke Abbott. Victorian.", - "post_box:type": "wall", - "ref": "DT6 29", - "ref:GB:uprn": "10015367706", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828433171, - "lat": 50.7410801, - "lon": -2.8828418, - "tags": { - "amenity": "post_box", - "description": "Wall of house/garden on western side.", - "post_box:type": "wall", - "ref": "DT6 120", - "ref:GB:uprn": "10015338928", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828433172, - "lat": 50.7509015, - "lon": -2.8428869, - "tags": { - "amenity": "post_box", - "description": "Victorian, in wall with high hedge behind", - "post_box:type": "wall", - "ref": "DT6 23", - "ref:GB:uprn": "10015428176", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 828433173, - "lat": 50.7419842, - "lon": -2.9160331, - "tags": { - "amenity": "post_box", - "description": "Entrance to campsite", - "post_box:type": "lamp", - "ref": "DT6 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828433174, - "lat": 50.7540679, - "lon": -2.8532977, - "tags": { - "amenity": "post_box", - "description": "By pub sign of Five Bells.", - "post_box:type": "lamp", - "ref": "DT6 123", - "ref:GB:uprn": "10015345088" - } -}, -{ - "type": "node", - "id": 828433175, - "lat": 50.7552450, - "lon": -2.8603940, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 78", - "ref:GB:uprn": "10015338532" - } -}, -{ - "type": "node", - "id": 828433176, - "lat": 50.7452780, - "lon": -2.7190486, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT6 53", - "ref:GB:uprn": "10015341789", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828433177, - "lat": 50.8046093, - "lon": -2.8637570, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 68", - "ref:GB:uprn": "10015461864", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828433178, - "lat": 50.7328150, - "lon": -2.7923999, - "tags": { - "amenity": "post_box", - "check_date": "2010-07-22", - "description": "Wall of old London Inn, now Post Box House", - "post_box:type": "wall", - "ref": "DT6 44", - "ref:GB:uprn": "10015415093", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 828433179, - "lat": 50.7420780, - "lon": -2.8232264, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 828433180, - "lat": 50.7338686, - "lon": -2.7595079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "description": "Outside the Post Office ( also the LDO )", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DT6 2000;DT6 5000", - "ref:GB:uprn": "10015849297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828487036, - "lat": 52.4201990, - "lon": -0.8075221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828488002, - "lat": 53.8273082, - "lon": -1.5915879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 919", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828721353, - "lat": 51.0094916, - "lon": -1.4542915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO51 430D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828786247, - "lat": 52.5754287, - "lon": -2.9512800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY5 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 828804812, - "lat": 52.3683517, - "lon": -2.7163761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY8 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-30" - } -}, -{ - "type": "node", - "id": 828817129, - "lat": 52.1162313, - "lon": -0.1632099, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG19 236", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 828817209, - "lat": 52.1054340, - "lon": -0.1619683, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG19 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 829048043, - "lat": 56.3307733, - "lon": -6.3928103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "PA76 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 829070588, - "lat": 52.4170066, - "lon": -1.8224641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 802", - "royal_cypher": "yes", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 829457509, - "lat": 51.5281102, - "lon": -2.5702832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS34 421", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 829539091, - "lat": 53.4799830, - "lon": -0.2670481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN7 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 829539877, - "lat": 50.7532200, - "lon": -1.2868400, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 11", - "ref:GB:uprn": "10015469043", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/yarborough-road-po31-7aa/0000PO3211" - } -}, -{ - "type": "node", - "id": 829539888, - "lat": 50.7602100, - "lon": -1.2854700, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO32 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/cambridge-road-po31-7aa/00000PO329" - } -}, -{ - "type": "node", - "id": 829539895, - "lat": 50.7564900, - "lon": -1.2828900, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO32 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/sylvan-avenue-po31-7aa/000PO32357" - } -}, -{ - "type": "node", - "id": 829539900, - "lat": 50.7336800, - "lon": -1.2761800, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO32 36", - "ref:GB:uprn": "10015343921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/folly-po30-2la/0000PO3236" - } -}, -{ - "type": "node", - "id": 829539903, - "lat": 50.7486900, - "lon": -1.2792000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 31", - "ref:GB:uprn": "10015306317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/meadow-road-po32-6aa/0000PO3231" - } -}, -{ - "type": "node", - "id": 829539904, - "lat": 50.7553100, - "lon": -1.2883600, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO32 12D", - "ref:GB:uprn": "10015382919", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/osbourne-road-po31-7aa/0000PO3212" - } -}, -{ - "type": "node", - "id": 829578645, - "lat": 53.8316645, - "lon": -1.0603886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 518" - } -}, -{ - "type": "node", - "id": 829607837, - "lat": 50.7448886, - "lon": -1.3133606, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 8", - "ref:GB:uprn": "10015320694", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/pallance-road-post-office-po31-8je/00000PO318" - } -}, -{ - "type": "node", - "id": 829607853, - "lat": 50.7414919, - "lon": -1.3117588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 46", - "ref:GB:uprn": "10015399199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/nodes-estate-po31-8aa/0000PO3146" - } -}, -{ - "type": "node", - "id": 829607858, - "lat": 50.6398565, - "lon": -1.3995363, - "tags": { - "amenity": "post_box", - "mapillary": "3850381651754727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 116", - "ref:GB:uprn": "10015456004", - "survey:date": "2020-07-02", - "website": "https://www.royalmail.com/services-near-you/postbox/new-road-po30-4bd/000PO30116" - } -}, -{ - "type": "node", - "id": 829607872, - "lat": 50.7336208, - "lon": -1.3061776, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 42", - "ref:GB:uprn": "10015372767", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chawton-po31-8aa/0000PO3142" - } -}, -{ - "type": "node", - "id": 829947923, - "lat": 51.1985941, - "lon": 1.3473551, - "tags": { - "amenity": "post_box", - "ref": "CT15 137" - } -}, -{ - "type": "node", - "id": 829951517, - "lat": 51.1990526, - "lon": 1.3210250, - "tags": { - "amenity": "post_box", - "ref": "CT15 91" - } -}, -{ - "type": "node", - "id": 830038248, - "lat": 51.0681958, - "lon": -1.7971147, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 171", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 830249715, - "lat": 52.4204984, - "lon": -1.8204845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 830536369, - "lat": 53.4296368, - "lon": -1.3411594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S65 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 830553901, - "lat": 50.7035038, - "lon": -1.9425146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 15", - "ref:GB:uprn": "10015426155", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 830553902, - "lat": 50.7168430, - "lon": -1.9449661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 51", - "ref:GB:uprn": "10015302944" - } -}, -{ - "type": "node", - "id": 830553903, - "lat": 50.7163421, - "lon": -1.9279623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 167D", - "ref:GB:uprn": "10015320081", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 830553904, - "lat": 50.7161681, - "lon": -1.9370179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 69", - "ref:GB:uprn": "10015468985", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 830553906, - "lat": 50.7144550, - "lon": -1.9475760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 202", - "ref:GB:uprn": "10015366225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 830553912, - "lat": 50.7178298, - "lon": -1.9307291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 151", - "ref:GB:uprn": "10015400230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 830553913, - "lat": 50.7234135, - "lon": -1.9256124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 68", - "ref:GB:uprn": "10015473880", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 830553925, - "lat": 50.7135717, - "lon": -1.9517439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 152", - "ref:GB:uprn": "10015384590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 830553928, - "lat": 50.7208655, - "lon": -1.9322896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 56D", - "ref:GB:uprn": "10015455868", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 830553930, - "lat": 50.7109662, - "lon": -1.9361632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 141", - "ref:GB:uprn": "10015280642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 830553945, - "lat": 50.7235114, - "lon": -1.9323988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH14 59", - "ref:GB:uprn": "10015323777", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 830553951, - "lat": 50.7116492, - "lon": -1.9546316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 206", - "ref:GB:uprn": "10015426045", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 830667039, - "lat": 50.6965066, - "lon": -1.2985689, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 8D", - "ref:GB:uprn": "10015299921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/west-street-po30-1ae/00000PO308" - } -}, -{ - "type": "node", - "id": 830667040, - "lat": 50.6906571, - "lon": -1.2946410, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 45D", - "ref:GB:uprn": "10015422648", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/watergate-road-po30-1ae/0000PO3045" - } -}, -{ - "type": "node", - "id": 830982257, - "lat": 51.0242493, - "lon": -0.7259991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU27 77", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-13" - } -}, -{ - "type": "node", - "id": 830982258, - "lat": 51.0192065, - "lon": -0.6828598, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 830982265, - "lat": 51.0393948, - "lon": -0.7082487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU27 41", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "GU27 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 831257445, - "lat": 51.5533147, - "lon": -0.1613255, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NW3 38" - } -}, -{ - "type": "node", - "id": 831425939, - "lat": 51.5542280, - "lon": -0.1603049, - "tags": { - "amenity": "post_box", - "ref": "NW3 66" - } -}, -{ - "type": "node", - "id": 831451878, - "lat": 53.2383430, - "lon": -1.4434700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "77.7518311", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 1DW", - "ref": "S40 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 831456514, - "lat": 51.5496732, - "lon": -0.1564944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-12", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102353", - "wikimedia_commons": "Category:United Kingdom post box NW5 13D" - } -}, -{ - "type": "node", - "id": 831536130, - "lat": 52.2628856, - "lon": -0.8304110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 832374126, - "lat": 50.8590978, - "lon": -3.4041860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "colour": "red", - "location": "outdoor", - "name": "Trumps Barn", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX15 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 832492242, - "lat": 51.8821387, - "lon": -2.2214437, - "tags": { - "amenity": "post_box", - "ref": "GL2 412" - } -}, -{ - "type": "node", - "id": 832643823, - "lat": 50.7722698, - "lon": 0.2623200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 763" - } -}, -{ - "type": "node", - "id": 832643825, - "lat": 50.7771387, - "lon": 0.2568077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN21 780" - } -}, -{ - "type": "node", - "id": 832643828, - "lat": 50.7736696, - "lon": 0.2608664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN21 764" - } -}, -{ - "type": "node", - "id": 832643830, - "lat": 50.7750908, - "lon": 0.2624962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN21 765" - } -}, -{ - "type": "node", - "id": 832643836, - "lat": 50.7794918, - "lon": 0.2486205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 781" - } -}, -{ - "type": "node", - "id": 832643837, - "lat": 50.7811375, - "lon": 0.2517174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 782" - } -}, -{ - "type": "node", - "id": 832643838, - "lat": 50.7827322, - "lon": 0.2545614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 786" - } -}, -{ - "type": "node", - "id": 832643841, - "lat": 50.7847946, - "lon": 0.2532535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 783" - } -}, -{ - "type": "node", - "id": 832643844, - "lat": 50.7860936, - "lon": 0.2549379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 784" - } -}, -{ - "type": "node", - "id": 832651991, - "lat": 50.7710252, - "lon": 0.2603805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 795" - } -}, -{ - "type": "node", - "id": 832652003, - "lat": 50.7630652, - "lon": 0.2738150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 726" - } -}, -{ - "type": "node", - "id": 832652008, - "lat": 50.7677810, - "lon": 0.2723504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 727" - } -}, -{ - "type": "node", - "id": 832652012, - "lat": 50.7597791, - "lon": 0.2757713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 724" - } -}, -{ - "type": "node", - "id": 832652015, - "lat": 50.7588097, - "lon": 0.2814329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 723D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 832652018, - "lat": 50.7710208, - "lon": 0.2671215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 796" - } -}, -{ - "type": "node", - "id": 832652021, - "lat": 50.7649603, - "lon": 0.2876852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN21 738" - } -}, -{ - "type": "node", - "id": 832690647, - "lat": 50.9839557, - "lon": -0.9137228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU31 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 832690723, - "lat": 50.9886385, - "lon": -0.8590532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 832772454, - "lat": 52.5767889, - "lon": -1.9727100, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-19", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "wall", - "postal_code": "WS1", - "ref": "WS1 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 832805396, - "lat": 50.7356398, - "lon": -2.0570555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 832805405, - "lat": 50.7235608, - "lon": -2.0783259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "description": "In hedge just south of petrol station.", - "mapillary": "176656054515899", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 288", - "ref:GB:uprn": "10015345165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-11" - } -}, -{ - "type": "node", - "id": 832805409, - "lat": 50.7294820, - "lon": -2.0866050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "date": "08/09/2017", - "description": "Outside old post office", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 77", - "ref:GB:uprn": "10015271961", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 832805412, - "lat": 50.7162659, - "lon": -2.0718642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH16 290D;BH16 7290D", - "ref:GB:uprn": "10015351476", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 832805423, - "lat": 50.7520842, - "lon": -2.0580750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "description": "Opposite entrance to Race Farm", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 135D", - "ref:GB:uprn": "10015418158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 832805426, - "lat": 50.7410399, - "lon": -2.0613016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "post_box:type": "wall", - "ref": "BH16 180", - "ref:GB:uprn": "10015385244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 832805436, - "lat": 50.7206380, - "lon": -2.0853690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "description": "Opposite entrance to Sandford Holiday Park", - "post_box:type": "pillar", - "ref": "BH16 269", - "ref:GB:uprn": "10015357970", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 832805438, - "lat": 50.7381253, - "lon": -2.0270965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "BH16 36", - "ref:GB:uprn": "10015694620", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 832828393, - "lat": 52.5766031, - "lon": -1.9825821, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WS1", - "ref": "WS1 6", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 832923629, - "lat": 52.5732374, - "lon": -1.9747044, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 52", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 832923632, - "lat": 52.5681836, - "lon": -1.9782728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "postal_code": "WS1", - "ref": "WS1 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 832923703, - "lat": 52.5750977, - "lon": -1.9671741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "WS1", - "ref": "WS1 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 833216502, - "lat": 51.4689545, - "lon": -2.6028467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-12-26", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BS6", - "ref": "BS6 271D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 833216523, - "lat": 51.4632071, - "lon": -2.6129093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS8", - "ref": "BS8 1419D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833216535, - "lat": 51.4654023, - "lon": -2.6064450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BS6", - "ref": "BS6 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 833270362, - "lat": 51.5600137, - "lon": -0.2511714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 833388647, - "lat": 51.5346073, - "lon": -0.1890677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "W9 17" - } -}, -{ - "type": "node", - "id": 833483447, - "lat": 53.7824598, - "lon": -1.7340556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD4 57" - } -}, -{ - "type": "node", - "id": 833516915, - "lat": 51.6094648, - "lon": -3.6576185, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 833548548, - "lat": 52.2779017, - "lon": -0.8308285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 833586653, - "lat": 56.4934708, - "lon": -6.1378213, - "tags": { - "amenity": "post_box", - "ref": "PA73 159" - } -}, -{ - "type": "node", - "id": 833686319, - "lat": 51.0096604, - "lon": -1.3180087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "collection_times_checked": "2020-01-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO21 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 833712208, - "lat": 51.5426633, - "lon": -0.1956073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 833724904, - "lat": 50.7667624, - "lon": 0.2781603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 729", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 833724905, - "lat": 50.7659015, - "lon": 0.2813663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 742", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833724906, - "lat": 50.7664251, - "lon": 0.2843084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "name": "South Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 741", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833732992, - "lat": 50.7427691, - "lon": 0.2019038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN20 705", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 833732993, - "lat": 50.7404607, - "lon": 0.2518763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-05-25", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Beachy Head", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN20 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833732994, - "lat": 50.7628283, - "lon": 0.1989160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-03-25", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN20 704D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833732995, - "lat": 50.7607265, - "lon": 0.2140971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN20 707D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 833732996, - "lat": 50.7723056, - "lon": 0.2689023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN21 797D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 833737853, - "lat": 50.7619650, - "lon": 0.2095969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 701" - } -}, -{ - "type": "node", - "id": 833737854, - "lat": 50.7665770, - "lon": 0.2109629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 702" - } -}, -{ - "type": "node", - "id": 833737855, - "lat": 50.7660355, - "lon": 0.2135800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-03-25", - "old_ref": "BN20 700", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BN20 700D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833737857, - "lat": 50.8096428, - "lon": 0.2382511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 805" - } -}, -{ - "type": "node", - "id": 833737860, - "lat": 50.8060878, - "lon": 0.2429148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN20 804D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833737864, - "lat": 50.8036300, - "lon": 0.2499441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 802", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833737866, - "lat": 50.8108629, - "lon": 0.2436674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN20 806D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833737867, - "lat": 50.8137499, - "lon": 0.2469474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN20 807D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833739356, - "lat": 50.7731645, - "lon": 0.2496874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 792" - } -}, -{ - "type": "node", - "id": 833739357, - "lat": 50.7731747, - "lon": 0.2568636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 794" - } -}, -{ - "type": "node", - "id": 833739358, - "lat": 50.7751352, - "lon": 0.2537282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 793" - } -}, -{ - "type": "node", - "id": 833739359, - "lat": 50.7912819, - "lon": 0.2522451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 817" - } -}, -{ - "type": "node", - "id": 833739360, - "lat": 50.7930422, - "lon": 0.2481485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 816" - } -}, -{ - "type": "node", - "id": 833739361, - "lat": 50.7937872, - "lon": 0.2503657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 815" - } -}, -{ - "type": "node", - "id": 833739362, - "lat": 50.7983514, - "lon": 0.2514049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN20 801", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833739363, - "lat": 50.7947389, - "lon": 0.2547376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 800" - } -}, -{ - "type": "node", - "id": 833739364, - "lat": 50.7972955, - "lon": 0.2589837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 849D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833739365, - "lat": 50.7996280, - "lon": 0.2606097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 848D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833747833, - "lat": 50.7591982, - "lon": 0.2634929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 712D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833747834, - "lat": 50.7568997, - "lon": 0.2593173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 713" - } -}, -{ - "type": "node", - "id": 833747835, - "lat": 50.7707259, - "lon": 0.2521223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 791" - } -}, -{ - "type": "node", - "id": 833747836, - "lat": 50.7686889, - "lon": 0.2559490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 789" - } -}, -{ - "type": "node", - "id": 833747837, - "lat": 50.7697141, - "lon": 0.2555021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 790" - } -}, -{ - "type": "node", - "id": 833747838, - "lat": 50.7681961, - "lon": 0.2624263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 788" - } -}, -{ - "type": "node", - "id": 833747839, - "lat": 50.7612849, - "lon": 0.2677923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 711" - } -}, -{ - "type": "node", - "id": 833747840, - "lat": 50.7599250, - "lon": 0.2699197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 716" - } -}, -{ - "type": "node", - "id": 833747841, - "lat": 50.7618775, - "lon": 0.2772840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN20 725D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833747842, - "lat": 50.7653686, - "lon": 0.2763841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN21 730", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 833753128, - "lat": 50.7909522, - "lon": 0.2567579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 809D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833753129, - "lat": 50.7955055, - "lon": 0.2562012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 823" - } -}, -{ - "type": "node", - "id": 833753130, - "lat": 50.7525793, - "lon": 0.2683746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 718D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833753131, - "lat": 50.7545098, - "lon": 0.2644929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 714" - } -}, -{ - "type": "node", - "id": 833753136, - "lat": 50.7561614, - "lon": 0.2679422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 717" - } -}, -{ - "type": "node", - "id": 833753139, - "lat": 50.7564745, - "lon": 0.2728243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 720" - } -}, -{ - "type": "node", - "id": 833753140, - "lat": 50.7551587, - "lon": 0.2721604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 719D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 833753141, - "lat": 50.7562146, - "lon": 0.2756292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN20 721", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 833753142, - "lat": 50.7578973, - "lon": 0.2648361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 710" - } -}, -{ - "type": "node", - "id": 833753143, - "lat": 50.7576859, - "lon": 0.2676367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 715" - } -}, -{ - "type": "node", - "id": 833753144, - "lat": 50.7582746, - "lon": 0.2725132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN20 722" - } -}, -{ - "type": "node", - "id": 833753145, - "lat": 50.7759572, - "lon": 0.2667491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 769", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 833753146, - "lat": 50.7903878, - "lon": 0.2657036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 851D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 833753147, - "lat": 50.8061377, - "lon": 0.2491684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN20 808D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 833847797, - "lat": 51.0175908, - "lon": -3.8350781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 833849403, - "lat": 52.2756428, - "lon": -0.8273568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN3 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 834047927, - "lat": 50.6980742, - "lon": -1.2922557, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-19", - "check_date:collection_times": "2021-03-19", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "indoor": "yes", - "note": "located inside building just past entrance doors.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO30 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/morrisons-supermarket-po30-1ll/000PO30361" - } -}, -{ - "type": "node", - "id": 834251895, - "lat": 54.3777095, - "lon": -2.8257689, - "tags": { - "amenity": "post_box", - "ref": "LA8 23" - } -}, -{ - "type": "node", - "id": 834460599, - "lat": 52.5750733, - "lon": -0.2445338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "collection_times:covid19": "priority", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 834460624, - "lat": 52.6754581, - "lon": -0.3173818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "new ref is not a typo: it's the old ref with 1 added on the end.", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE6 1711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 834675081, - "lat": 50.6231035, - "lon": -1.2912655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2018-06-03", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "mapillary": "864651928294867", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO38 253", - "ref:GB:uprn": "10015462413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-24", - "website": "https://www.royalmail.com/services-near-you/postbox/appleford-po38-2pa/000PO38253" - } -}, -{ - "type": "node", - "id": 834675086, - "lat": 50.5968271, - "lon": -1.3173723, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-03", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "note": "This postbox is a brand new EIIR lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chale-village-po38-2ha/000PO38241" - } -}, -{ - "type": "node", - "id": 834675095, - "lat": 50.5885400, - "lon": -1.3121700, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-18", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO38 217", - "ref:GB:uprn": "10015331116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/blackgang-po38-2ha/000PO38217" - } -}, -{ - "type": "node", - "id": 834675104, - "lat": 50.6161036, - "lon": -1.3152863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO38 218", - "ref:GB:uprn": "10015466118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/chale-green-po38-2pa/000PO38218" - } -}, -{ - "type": "node", - "id": 834736018, - "lat": 50.6140755, - "lon": -1.3456531, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 216", - "ref:GB:uprn": "10015352878", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/services-near-you/postbox/atherfield-green-po38-2la/000PO38216" - } -}, -{ - "type": "node", - "id": 834736037, - "lat": 50.6408168, - "lon": -1.3541796, - "tags": { - "amenity": "post_box", - "mapillary": "223881945841504", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 108", - "ref:GB:uprn": "10015303759", - "survey:date": "2020-07-02", - "website": "https://www.royalmail.com/services-near-you/postbox/sandy-way-po30-4aa/000PO30108" - } -}, -{ - "type": "node", - "id": 835053971, - "lat": 50.6516654, - "lon": -1.4513544, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "note": "This postbox is a brand new EIIR lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 68", - "ref:GB:uprn": "10015353958", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/brook-post-office-po30-4es/0000PO3068" - } -}, -{ - "type": "node", - "id": 835294886, - "lat": 52.1511670, - "lon": 0.1358025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB22 342", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 835489422, - "lat": 51.5172022, - "lon": -2.6489614, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS10 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 835519174, - "lat": 52.6600406, - "lon": -2.8187116, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY5 518D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 835524312, - "lat": 51.5534336, - "lon": -0.0983191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N5 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 835538735, - "lat": 50.8135911, - "lon": -0.4006840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 835640114, - "lat": 50.7609942, - "lon": 0.2086022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN20 1167" - } -}, -{ - "type": "node", - "id": 835640118, - "lat": 50.8137950, - "lon": 0.2954696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN24 993" - } -}, -{ - "type": "node", - "id": 835640122, - "lat": 50.8210978, - "lon": 0.2894522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN24 973" - } -}, -{ - "type": "node", - "id": 835670301, - "lat": 56.2722312, - "lon": -4.9264032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "PA26 100", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 835758597, - "lat": 50.6191783, - "lon": -1.3667181, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 254", - "ref:GB:uprn": "10015341223", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/atherfield-camp-po30-4pg/000PO38254" - } -}, -{ - "type": "node", - "id": 835758651, - "lat": 50.7023372, - "lon": -1.2904218, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "check_date:collection_times": "2021-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 835758669, - "lat": 50.7247217, - "lon": -1.2790095, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/the-marina-po30-2la/000PO30355" - } -}, -{ - "type": "node", - "id": 835764887, - "lat": 51.9858718, - "lon": -0.2990146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "SG5 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 835891949, - "lat": 55.6765241, - "lon": -5.7410972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA41 45", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 836056154, - "lat": 52.2277398, - "lon": -0.2699328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 142", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 836057190, - "lat": 52.1366712, - "lon": -0.4685609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "Victorian Hex/Oct pillar", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "MK40 72", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 836141069, - "lat": 51.4840023, - "lon": -3.7025564, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 836243130, - "lat": 50.8210980, - "lon": -1.1690592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO13 75" - } -}, -{ - "type": "node", - "id": 836278235, - "lat": 52.2714462, - "lon": -0.8532345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 836403409, - "lat": 52.1099825, - "lon": -2.0749545, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR10 424D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 836419970, - "lat": 51.0132647, - "lon": -3.8360219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX36 256", - "source": "survey" - } -}, -{ - "type": "node", - "id": 836426605, - "lat": 55.8231352, - "lon": -4.4306957, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 219" - } -}, -{ - "type": "node", - "id": 836426905, - "lat": 55.8210938, - "lon": -4.4242407, - "tags": { - "amenity": "post_box", - "postal_code": "PA2", - "ref": "PA2 227" - } -}, -{ - "type": "node", - "id": 836427367, - "lat": 51.1330692, - "lon": 1.3097882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 836427370, - "lat": 51.1307022, - "lon": 1.3053786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT16 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 836427373, - "lat": 51.1363879, - "lon": 1.3031351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT16 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 836525032, - "lat": 51.7143362, - "lon": -3.7001955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 836869028, - "lat": 51.3842780, - "lon": -2.3888568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00" - } -}, -{ - "type": "node", - "id": 837265094, - "lat": 51.4108583, - "lon": -0.7191051, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 837271316, - "lat": 50.6952209, - "lon": -2.1151171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 291", - "ref:GB:uprn": "10015367987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 837271331, - "lat": 50.7541556, - "lon": -2.2269567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH20 101D", - "ref:GB:uprn": "10015279615", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 837271334, - "lat": 50.9416218, - "lon": -2.6418418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "fixme": "check ref and location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BA20 8" - } -}, -{ - "type": "node", - "id": 837271338, - "lat": 50.7101780, - "lon": -2.0941400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 89", - "ref:GB:uprn": "10015289149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 837271343, - "lat": 50.6182192, - "lon": -2.1192488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "wall", - "ref": "BH20 75", - "ref:GB:uprn": "10015268676", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 837271349, - "lat": 50.7633161, - "lon": -2.2354254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 99", - "ref:GB:uprn": "10015338582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 837271365, - "lat": 50.6526509, - "lon": -2.0980025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "post_box:type": "wall", - "ref": "BH20 92", - "ref:GB:uprn": "10015477812", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 837271369, - "lat": 50.6249920, - "lon": -2.0981310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "BH20 126", - "ref:GB:uprn": "10015424586" - } -}, -{ - "type": "node", - "id": 837271373, - "lat": 50.7064242, - "lon": -2.1010126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 196D", - "ref:GB:uprn": "10015368062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 837271380, - "lat": 50.7162630, - "lon": -2.0889150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "mapillary": "4145181948861866", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 223", - "ref:GB:uprn": "10015321946", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-11" - } -}, -{ - "type": "node", - "id": 837285245, - "lat": 51.5403764, - "lon": -2.5957260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS32 161", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 837306463, - "lat": 50.8078726, - "lon": 0.1510497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1022" - } -}, -{ - "type": "node", - "id": 837306473, - "lat": 50.8081096, - "lon": 0.1564515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN26 1023", - "royal_cypher": "EIIR", - "survey:date": "2022-09-19", - "wikimedia_commons": "File:Post Office, Alfriston - geograph.org.uk - 3819656.jpg" - } -}, -{ - "type": "node", - "id": 837447571, - "lat": 52.4191994, - "lon": -1.8133474, - "tags": { - "amenity": "post_box", - "ref": "B91 386", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 837565127, - "lat": 52.1133791, - "lon": -2.0928229, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 837721515, - "lat": 58.6479654, - "lon": -3.2758489, - "tags": { - "amenity": "post_box", - "ref": "KW14 22" - } -}, -{ - "type": "node", - "id": 837742260, - "lat": 58.6370869, - "lon": -3.2269603, - "tags": { - "amenity": "post_box", - "ref": "KW14 21" - } -}, -{ - "type": "node", - "id": 838056159, - "lat": 51.5258205, - "lon": -2.2761307, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL9 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838104385, - "lat": 50.7896618, - "lon": -1.0855551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838147826, - "lat": 52.0533532, - "lon": 0.7321758, - "tags": { - "amenity": "post_box", - "ref": "CO10 1136", - "source": "gps" - } -}, -{ - "type": "node", - "id": 838502286, - "lat": 51.4692395, - "lon": -2.5860959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS6 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838524939, - "lat": 51.1286112, - "lon": 1.2965739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT17 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838587556, - "lat": 51.1386150, - "lon": 1.2817022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT17 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 838587558, - "lat": 51.1418701, - "lon": 1.2787567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 838587559, - "lat": 51.1207006, - "lon": 1.3095639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 838587560, - "lat": 51.1290649, - "lon": 1.3033259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CT17 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838587561, - "lat": 51.1392370, - "lon": 1.2885106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 838587562, - "lat": 51.1448239, - "lon": 1.2777630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT17 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838591468, - "lat": 51.1249877, - "lon": 1.3038432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 838811602, - "lat": 54.2378381, - "lon": -6.1667416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT34 20" - } -}, -{ - "type": "node", - "id": 838825007, - "lat": 50.8160660, - "lon": 0.1774015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN26 1026" - } -}, -{ - "type": "node", - "id": 838884767, - "lat": 52.1136708, - "lon": -2.0787895, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR10 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 838950373, - "lat": 52.9224712, - "lon": -4.2346058, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 838958884, - "lat": 51.0699386, - "lon": 0.6848099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "Hovis box has been replaced with more modern box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN30 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 839120039, - "lat": 51.9565484, - "lon": -0.2734772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 839768162, - "lat": 54.2059387, - "lon": -2.8950315, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA11 131" - } -}, -{ - "type": "node", - "id": 840163977, - "lat": 50.6352955, - "lon": -1.3160180, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 15", - "ref:GB:uprn": "10015273875", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/billingham-po30-3ha/0000PO3015" - } -}, -{ - "type": "node", - "id": 840163980, - "lat": 50.6349929, - "lon": -1.3682840, - "tags": { - "amenity": "post_box", - "check_date": "2023-10-22", - "check_date:collection_times": "2023-10-22", - "check_date:ref": "2023-10-22", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 47D", - "ref:GB:uprn": "10015319763", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/yafford-po30-4aa/0000PO3047" - } -}, -{ - "type": "node", - "id": 840305449, - "lat": 52.9082561, - "lon": -1.4931264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 221", - "source": "survey" - } -}, -{ - "type": "node", - "id": 840328729, - "lat": 50.8259239, - "lon": 0.1627052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN26 1034" - } -}, -{ - "type": "node", - "id": 840328732, - "lat": 50.8176842, - "lon": 0.2395934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1012" - } -}, -{ - "type": "node", - "id": 840328741, - "lat": 50.8203199, - "lon": 0.2386951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1014" - } -}, -{ - "type": "node", - "id": 840328744, - "lat": 50.8197475, - "lon": 0.2429768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1004D" - } -}, -{ - "type": "node", - "id": 840328745, - "lat": 50.8173829, - "lon": 0.2472925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN26 1006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840328749, - "lat": 50.8222249, - "lon": 0.2605090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1001D" - } -}, -{ - "type": "node", - "id": 840328766, - "lat": 50.8232206, - "lon": 0.2388880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 996" - } -}, -{ - "type": "node", - "id": 840352338, - "lat": 50.8096411, - "lon": 0.2356899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN26 1010", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 840352344, - "lat": 50.8135869, - "lon": 0.2392613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1008" - } -}, -{ - "type": "node", - "id": 840352348, - "lat": 50.8154908, - "lon": 0.2374882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1011" - } -}, -{ - "type": "node", - "id": 840352361, - "lat": 50.8204979, - "lon": 0.2338449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN26 1013", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 840352366, - "lat": 50.8198002, - "lon": 0.2465319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1005" - } -}, -{ - "type": "node", - "id": 840352372, - "lat": 50.8256304, - "lon": 0.2408126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 997" - } -}, -{ - "type": "node", - "id": 840352375, - "lat": 50.8417317, - "lon": 0.2415818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1015" - } -}, -{ - "type": "node", - "id": 840352390, - "lat": 50.8245206, - "lon": 0.2508319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 999D" - } -}, -{ - "type": "node", - "id": 840352395, - "lat": 50.8229507, - "lon": 0.2560569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1000D" - } -}, -{ - "type": "node", - "id": 840376129, - "lat": 50.8198886, - "lon": 0.1924053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN26 1020", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 840376133, - "lat": 50.8109818, - "lon": 0.2323566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN26 1009D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 840376147, - "lat": 50.8212158, - "lon": 0.2252296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "BN26 1019", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 840376150, - "lat": 50.8140368, - "lon": 0.2434389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1007" - } -}, -{ - "type": "node", - "id": 840376152, - "lat": 50.8209946, - "lon": 0.2646145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1002D" - } -}, -{ - "type": "node", - "id": 840376156, - "lat": 50.8169779, - "lon": 0.2836994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN24 1152" - } -}, -{ - "type": "node", - "id": 840376159, - "lat": 50.8188486, - "lon": 0.2771456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN24 990" - } -}, -{ - "type": "node", - "id": 840376174, - "lat": 50.8166817, - "lon": 0.2897396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN24 1165" - } -}, -{ - "type": "node", - "id": 840376179, - "lat": 50.8165374, - "lon": 0.2920744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN24 992" - } -}, -{ - "type": "node", - "id": 840388298, - "lat": 50.8303710, - "lon": 0.1358482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BN26 1032" - } -}, -{ - "type": "node", - "id": 840388305, - "lat": 50.8395932, - "lon": 0.1659870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1029" - } -}, -{ - "type": "node", - "id": 840388308, - "lat": 50.8460057, - "lon": 0.1462903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN26 1030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840388324, - "lat": 50.8241433, - "lon": 0.1827064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN26 1021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840388329, - "lat": 50.8053078, - "lon": 0.2251251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN26 1018" - } -}, -{ - "type": "node", - "id": 840394533, - "lat": 50.7910611, - "lon": 0.2156193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN26 1017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840395661, - "lat": 52.4098882, - "lon": -1.8050816, - "tags": { - "amenity": "post_box", - "ref": "B91 986", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 840395685, - "lat": 52.4095622, - "lon": -1.8095184, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 840490386, - "lat": 54.1875202, - "lon": -2.9161922, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 840536257, - "lat": 54.1771524, - "lon": -2.9361478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA11 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840538590, - "lat": 52.1111476, - "lon": -1.8617285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "post_box:type": "lamp", - "ref": "WR11 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840568910, - "lat": 52.9885447, - "lon": -1.2838643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 840569140, - "lat": 52.9879240, - "lon": -1.2878432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 840590948, - "lat": 54.1776592, - "lon": -2.9418833, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 840612482, - "lat": 51.4521392, - "lon": -0.9910414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840624321, - "lat": 54.2563604, - "lon": -2.9483698, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 49" - } -}, -{ - "type": "node", - "id": 840713479, - "lat": 51.4631578, - "lon": -1.0390925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG31 151" - } -}, -{ - "type": "node", - "id": 840750928, - "lat": 52.9914072, - "lon": -1.2868515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 840820680, - "lat": 55.7670189, - "lon": -6.3601270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 07:15", - "description": "Directly opposite mini mart", - "post_box:type": "lamp", - "ref": "PA49 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 840826257, - "lat": 51.4650261, - "lon": -1.0320209, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 840862517, - "lat": 55.7101131, - "lon": -6.4164743, - "tags": { - "amenity": "post_box", - "description": "Nerabus. On the sea-side of the road at the top of a small rise.", - "ref": "PA48 13" - } -}, -{ - "type": "node", - "id": 840868787, - "lat": 55.7384614, - "lon": -6.3788973, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-14", - "collection_times": "Mo-Fr 12:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PA48 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 840955793, - "lat": 51.9224699, - "lon": -0.3726515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "pillar", - "ref": "LU2 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 840968667, - "lat": 51.9279390, - "lon": -0.3759839, - "tags": { - "amenity": "post_box", - "note": "No plate", - "post_box:type": "pillar", - "ref": "LU2 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 840991292, - "lat": 51.9334087, - "lon": -0.3805159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "pillar", - "ref": "LU2 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 841116083, - "lat": 51.4591630, - "lon": -2.6041053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 304", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 841469138, - "lat": 52.4821085, - "lon": -2.0720672, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to determine ref number when plate restored", - "note": "plate removed", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 841484389, - "lat": 52.4800556, - "lon": -2.0768499, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to determine ref number when plate restored", - "note": "plate removed", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 841498502, - "lat": 54.2485741, - "lon": -3.0009841, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 8" - } -}, -{ - "type": "node", - "id": 841498535, - "lat": 54.2448981, - "lon": -3.0113462, - "tags": { - "amenity": "post_box", - "ref": "LA12 50" - } -}, -{ - "type": "node", - "id": 841498680, - "lat": 54.2539901, - "lon": -3.0141611, - "tags": { - "amenity": "post_box", - "ref": "LA12 11" - } -}, -{ - "type": "node", - "id": 841498683, - "lat": 54.2602501, - "lon": -3.0314488, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 841513411, - "lat": 54.2501403, - "lon": -3.0453978, - "tags": { - "amenity": "post_box", - "ref": "LA12 41" - } -}, -{ - "type": "node", - "id": 841516813, - "lat": 54.2157501, - "lon": -2.9003389, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA11 143" - } -}, -{ - "type": "node", - "id": 841728692, - "lat": 50.8600948, - "lon": -1.7867283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BH24", - "ref": "BH24 2000" - } -}, -{ - "type": "node", - "id": 841849190, - "lat": 52.9913370, - "lon": -1.2824174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "seems to have moved from former PO site, new box?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 841910601, - "lat": 51.5947101, - "lon": -1.7963341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 109" - } -}, -{ - "type": "node", - "id": 841911075, - "lat": 51.5875733, - "lon": -1.8012501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 371" - } -}, -{ - "type": "node", - "id": 842040067, - "lat": 50.6649683, - "lon": -1.3091807, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-19", - "check_date:collection_times": "2022-09-19", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 14", - "ref:GB:uprn": "10015422476", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/gatcombe-po30-3ea/0000PO3014" - } -}, -{ - "type": "node", - "id": 842059092, - "lat": 54.9683144, - "lon": -1.5064454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE31 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 842193882, - "lat": 52.5736937, - "lon": -1.9791941, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 81", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 842196555, - "lat": 52.5737414, - "lon": -1.9883151, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 842255418, - "lat": 55.5137825, - "lon": -2.5891206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30, Sa 12:00", - "post_box:type": "lamp", - "ref": "TD8 165", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 842496708, - "lat": 50.6973751, - "lon": -1.4333190, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO30 28D", - "ref:GB:uprn": "10015450094", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/ningwood-po41-0tw/0000PO3028" - } -}, -{ - "type": "node", - "id": 842496720, - "lat": 50.7000800, - "lon": -1.4189600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15, Sa 10:15", - "mapillary": "824618399356647", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO30 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-28", - "website": "https://www.royalmail.com/services-near-you/postbox/warlands-lane-po41-0tw/000PO30124" - } -}, -{ - "type": "node", - "id": 842496739, - "lat": 50.7096629, - "lon": -1.3851316, - "tags": { - "amenity": "post_box", - "check_date": "2018-06-04", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO30 91", - "ref:GB:uprn": "10015436550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 842518849, - "lat": 50.7288664, - "lon": -1.3284891, - "tags": { - "amenity": "post_box", - "mapillary": "494231581907814", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PO30 27", - "ref:GB:uprn": "10015403913", - "survey:date": "2019-07-23", - "website": "https://www.royalmail.com/services-near-you/postbox/hillis-gate-po30-5ua/0000PO3027" - } -}, -{ - "type": "node", - "id": 842577526, - "lat": 52.2730195, - "lon": 1.6242851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "IP17 4602" - } -}, -{ - "type": "node", - "id": 842577659, - "lat": 52.2779126, - "lon": 1.6288228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP17 4643", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 842664884, - "lat": 51.0029323, - "lon": -2.3080026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP8 56", - "ref:GB:uprn": "10015318780", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 842803314, - "lat": 51.9603000, - "lon": -0.2784000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 842814095, - "lat": 51.9736000, - "lon": -0.2763000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SG5 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 842814100, - "lat": 51.9705000, - "lon": -0.2796000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SG5 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 842840413, - "lat": 53.6857937, - "lon": -1.8682303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HX4 233" - } -}, -{ - "type": "node", - "id": 842840414, - "lat": 53.6867146, - "lon": -1.8547091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 140" - } -}, -{ - "type": "node", - "id": 842840415, - "lat": 53.6847131, - "lon": -1.8556855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 246" - } -}, -{ - "type": "node", - "id": 842840416, - "lat": 53.6831769, - "lon": -1.8628153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 103" - } -}, -{ - "type": "node", - "id": 842840417, - "lat": 53.6890434, - "lon": -1.8596742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX4 50" - } -}, -{ - "type": "node", - "id": 842840418, - "lat": 53.6896056, - "lon": -1.8693115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 294" - } -}, -{ - "type": "node", - "id": 842982176, - "lat": 55.7814061, - "lon": -6.2494593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 07:15", - "description": "Directly in front of the shop", - "post_box:type": "pillar", - "ref": "PA44 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 843002597, - "lat": 55.8162965, - "lon": -6.3286775, - "tags": { - "amenity": "post_box", - "description": "At west end of Loch Gruinart House.", - "ref": "PA44 16" - } -}, -{ - "type": "node", - "id": 843152533, - "lat": 54.2042525, - "lon": -2.9057342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA11 150", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 843198762, - "lat": 54.2850203, - "lon": -2.9651323, - "tags": { - "amenity": "post_box", - "ref": "LA12 95" - } -}, -{ - "type": "node", - "id": 843242105, - "lat": 54.3121500, - "lon": -2.9662521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "7199020530144009", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LA12 39", - "survey:date": "2023-08-17" - } -}, -{ - "type": "node", - "id": 843327074, - "lat": 50.6482080, - "lon": -4.0907031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX20 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 843352663, - "lat": 50.6284136, - "lon": -4.1188236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "EX20 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 843360856, - "lat": 54.2858273, - "lon": -3.0946910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA12 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 843360863, - "lat": 54.2923903, - "lon": -3.0941629, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 25", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 843507317, - "lat": 51.4563302, - "lon": -2.6217601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "post_box:type": "pillar", - "ref": "BS8 1439", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 843512822, - "lat": 54.3687714, - "lon": -3.0631785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA21 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 843549226, - "lat": 54.9996482, - "lon": -1.5564557, - "tags": { - "amenity": "post_box", - "ref": "NE28 700" - } -}, -{ - "type": "node", - "id": 843623732, - "lat": 51.8249001, - "lon": -5.1073628, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 843938334, - "lat": 52.6429494, - "lon": -2.0577845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WV11 505", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 844179846, - "lat": 50.5107875, - "lon": -3.7292994, - "tags": { - "amenity": "post_box", - "fixme": "Box visible on 2009 Google Streetview (https://goo.gl/maps/GqKHZE5Z28LLXMNm7) but no longer visible in Nov 2021 (https://goo.gl/maps/fWfeJfRaNiwXnp9E7) or listed on Royal Mail list so suggest removing from OSM", - "ref": "TQ13 148" - } -}, -{ - "type": "node", - "id": 844203018, - "lat": 51.9443000, - "lon": -0.2647000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844215552, - "lat": 51.9450178, - "lon": -0.2539967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844295306, - "lat": 54.1094098, - "lon": -6.0436393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 844295315, - "lat": 54.0690129, - "lon": -5.9913069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 844295323, - "lat": 54.0670121, - "lon": -6.0254038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 844295340, - "lat": 54.0635084, - "lon": -6.0041025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 844462940, - "lat": 54.7223296, - "lon": -5.7909380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT38 362" - } -}, -{ - "type": "node", - "id": 844495037, - "lat": 55.8312260, - "lon": -4.2795733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "318110967868112", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 1388", - "royal_cypher": "scottish_crown", - "survey:date": "2023-06-24" - } -}, -{ - "type": "node", - "id": 844541434, - "lat": 54.3280294, - "lon": -3.0980702, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA21 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844541452, - "lat": 54.3425491, - "lon": -3.0966129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "ref": "LA21 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 844550368, - "lat": 51.1307459, - "lon": 1.3129879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 844550371, - "lat": 51.1492596, - "lon": 1.2980497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844550372, - "lat": 51.1377154, - "lon": 1.2956679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT16 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844550374, - "lat": 51.1338428, - "lon": 1.3070210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 71", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 844550376, - "lat": 51.1354198, - "lon": 1.3012221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 844550379, - "lat": 51.1447509, - "lon": 1.3039511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 844550382, - "lat": 51.1451775, - "lon": 1.2971898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT16 11", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 844550384, - "lat": 51.1281781, - "lon": 1.3144983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 844562112, - "lat": 54.4391520, - "lon": -3.0482621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "wall", - "ref": "LA22 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844562525, - "lat": 51.1552902, - "lon": 1.2746962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT16 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844567537, - "lat": 51.1124535, - "lon": 1.2900063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT17 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844567542, - "lat": 51.1136350, - "lon": 1.2946376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844570933, - "lat": 54.4409151, - "lon": -3.0560587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "post_box:type": "wall", - "ref": "LA22 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 844570938, - "lat": 54.4469697, - "lon": -3.0637375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "LA22 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 844650256, - "lat": 52.1073084, - "lon": -2.0771657, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "historic_operator": "Royal Mail", - "note": "ref insert missing", - "post_box:type": "lamp", - "ref": "WR10 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing;gps", - "source:ref": "conjecture and elimination" - } -}, -{ - "type": "node", - "id": 844760675, - "lat": 50.6476610, - "lon": -4.1012878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 206", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 845115818, - "lat": 54.7289508, - "lon": -1.5228219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "ele": "98.18", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH6 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 845134231, - "lat": 51.1487478, - "lon": -2.2854471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1138417070876801", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA12 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 845200075, - "lat": 50.7635512, - "lon": -1.3049419, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/ward-avenue-po31-7aa/0000PO3134" - } -}, -{ - "type": "node", - "id": 845200081, - "lat": 50.7400336, - "lon": -1.3245699, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 29", - "ref:GB:uprn": "10015419528", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/pallance-road-po31-8aa/0000PO3129" - } -}, -{ - "type": "node", - "id": 845200098, - "lat": 50.7550976, - "lon": -1.2976885, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 21D", - "ref:GB:uprn": "10015299833", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/newport-road-po31-7aa/0000PO3121" - } -}, -{ - "type": "node", - "id": 845200115, - "lat": 50.7597935, - "lon": -1.3108258, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2016-05-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/crossfield-avenue-po31-7aa/0000PO3122" - } -}, -{ - "type": "node", - "id": 845200134, - "lat": 50.7567098, - "lon": -1.3063030, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 18D", - "ref:GB:uprn": "10015822539", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/moor-green-road-po31-7aa/0000PO3118" - } -}, -{ - "type": "node", - "id": 845215469, - "lat": 50.7006025, - "lon": -1.5150112, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO41 25", - "ref:GB:uprn": "10015419022", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/savoy-po41-0se/0000PO4125" - } -}, -{ - "type": "node", - "id": 845244788, - "lat": 50.8445639, - "lon": -0.9451311, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "PO10 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 845340976, - "lat": 51.6549483, - "lon": -2.4581478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "203181798997668", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-23" - } -}, -{ - "type": "node", - "id": 845428190, - "lat": 52.2682159, - "lon": -0.8090825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN3 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 845437494, - "lat": 51.9485771, - "lon": -0.2669525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "fixme": "ref is from memory; need to resurvey", - "post_box:type": "pillar", - "ref": "SG4 50" - } -}, -{ - "type": "node", - "id": 845563382, - "lat": 54.3139446, - "lon": -2.7505265, - "tags": { - "amenity": "post_box", - "ref": "LA9 207" - } -}, -{ - "type": "node", - "id": 845688961, - "lat": 54.3109459, - "lon": -2.9441033, - "tags": { - "amenity": "post_box", - "ref": "LA23 102" - } -}, -{ - "type": "node", - "id": 845688963, - "lat": 54.3276208, - "lon": -2.9359135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA23 118", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 845688982, - "lat": 54.3401500, - "lon": -2.9525246, - "tags": { - "amenity": "post_box", - "ref": "LA22 112" - } -}, -{ - "type": "node", - "id": 845806983, - "lat": 51.7002748, - "lon": -0.3990841, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "observation from bus" - } -}, -{ - "type": "node", - "id": 845809494, - "lat": 51.6782518, - "lon": -0.3969025, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "observation from bus" - } -}, -{ - "type": "node", - "id": 845813746, - "lat": 51.6722663, - "lon": -0.3961044, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD24 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 845814150, - "lat": 51.6704937, - "lon": -0.3969099, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "observation from moving bus" - } -}, -{ - "type": "node", - "id": 845814164, - "lat": 55.7852058, - "lon": -6.2991633, - "tags": { - "amenity": "post_box", - "ref": "PA44 4", - "ref:GB:uprn": "10015310012" - } -}, -{ - "type": "node", - "id": 845814165, - "lat": 55.8191724, - "lon": -6.1593858, - "tags": { - "amenity": "post_box", - "ref": "PA45 20" - } -}, -{ - "type": "node", - "id": 845819257, - "lat": 51.6492859, - "lon": -0.4082730, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Observation from moving bus" - } -}, -{ - "type": "node", - "id": 845821370, - "lat": 51.6512821, - "lon": -0.4197826, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "Observation from moving bus" - } -}, -{ - "type": "node", - "id": 845824567, - "lat": 51.6524287, - "lon": -0.4328682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD3 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Observation from moving bus" - } -}, -{ - "type": "node", - "id": 845825561, - "lat": 51.6524852, - "lon": -0.4455879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "WD3 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Observation from moving bus" - } -}, -{ - "type": "node", - "id": 845827937, - "lat": 51.6530939, - "lon": -0.4373804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD3 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 845830435, - "lat": 51.6482748, - "lon": -0.4484975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "W of CoOp", - "post_box:type": "pillar", - "ref": "WD3 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 845839877, - "lat": 51.6467313, - "lon": -0.4557359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WD3 170D", - "royal_cypher": "EIIR", - "source": "Observation from moving bus wrt bus stop" - } -}, -{ - "type": "node", - "id": 845842209, - "lat": 51.6363638, - "lon": -0.4835647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "Outside CostCutters", - "post_box:type": "pillar", - "ref": "WD3 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 845866415, - "lat": 51.9092200, - "lon": -0.1043060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "SG2 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 845869337, - "lat": 51.9118859, - "lon": -0.0745747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "In perimeter wall of house on triangle junction", - "post_box:type": "wall", - "ref": "SG2 119", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 845939198, - "lat": 56.0076321, - "lon": -4.7258977, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 845940473, - "lat": 51.3774557, - "lon": -2.3568285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "on platform 1", - "level": "1", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "BA1", - "ref": "BA1 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 845973597, - "lat": 55.9237157, - "lon": -3.2040951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 148D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 845973608, - "lat": 55.9212569, - "lon": -3.2097385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Collection times updated 2018-06-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 130D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 846256514, - "lat": 51.3847307, - "lon": -0.2515565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 846283922, - "lat": 51.9850277, - "lon": -0.3050588, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "post_box:type": "wall", - "ref": "SG5 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS track" - } -}, -{ - "type": "node", - "id": 846300693, - "lat": 52.5647182, - "lon": 1.1039794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 846394526, - "lat": 55.9252399, - "lon": -3.2148893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 251", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 846394528, - "lat": 55.9245611, - "lon": -3.2242085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 256D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 846394556, - "lat": 55.9226159, - "lon": -3.2225114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH10 196", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 846436006, - "lat": 51.9378951, - "lon": 0.5194292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CM7 88" - } -}, -{ - "type": "node", - "id": 846479747, - "lat": 57.3391645, - "lon": -4.5033192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV3 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 846479757, - "lat": 57.3299041, - "lon": -4.4799964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV3 173", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 846479810, - "lat": 57.3361868, - "lon": -4.4802874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV3 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 846479814, - "lat": 57.3281982, - "lon": -4.4734961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 16:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV3 142", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 846869772, - "lat": 51.0661494, - "lon": -4.0209305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX32 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 846983631, - "lat": 50.8291839, - "lon": -0.3752797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1729", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 846983632, - "lat": 50.8276228, - "lon": -0.3743451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1673", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847060191, - "lat": 53.8390229, - "lon": -1.1402910, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847060192, - "lat": 53.8291091, - "lon": -1.1236193, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 69", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 847060193, - "lat": 53.8297630, - "lon": -1.1347193, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847171231, - "lat": 51.9469865, - "lon": -0.2489253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG4 17" - } -}, -{ - "type": "node", - "id": 847177795, - "lat": 51.9463420, - "lon": -0.2645920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG4 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "observation walking;survey" - } -}, -{ - "type": "node", - "id": 847184797, - "lat": 55.8180328, - "lon": -4.0749199, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 847312348, - "lat": 54.3859220, - "lon": -2.9157596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "wall", - "ref": "LA23 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 847358055, - "lat": 50.7415076, - "lon": -1.3003102, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 49", - "ref:GB:uprn": "10015274180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/medham-village-po31-8aa/0000PO3149" - } -}, -{ - "type": "node", - "id": 847358073, - "lat": 50.7091255, - "lon": -1.3570949, - "tags": { - "amenity": "post_box", - "check_date": "2010-08-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO30 139", - "ref:GB:uprn": "10015313997" - } -}, -{ - "type": "node", - "id": 847369242, - "lat": 52.5270709, - "lon": -1.4761426, - "tags": { - "amenity": "post_box", - "postal_code": "CV11", - "ref": "CV11 19", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 847393502, - "lat": 52.5239809, - "lon": -1.4810523, - "tags": { - "amenity": "post_box", - "postal_code": "CV11", - "ref": "CV11 35", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 847467330, - "lat": 53.7071157, - "lon": -1.8576230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX3 59" - } -}, -{ - "type": "node", - "id": 847468700, - "lat": 54.2350679, - "lon": -6.1643179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT34 145" - } -}, -{ - "type": "node", - "id": 847545404, - "lat": 51.1222359, - "lon": 0.9649998, - "tags": { - "amenity": "post_box", - "ref": "TN25 304" - } -}, -{ - "type": "node", - "id": 847562194, - "lat": 54.4318631, - "lon": -2.9638536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-11-12", - "check_date:collection_times": "2022-11-12", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA22 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847562196, - "lat": 54.3624622, - "lon": -2.9828662, - "tags": { - "amenity": "post_box", - "ref": "LA22 159" - } -}, -{ - "type": "node", - "id": 847569668, - "lat": 54.4467997, - "lon": -2.9810470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA22 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 847685607, - "lat": 53.1298060, - "lon": -1.1918373, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 847692674, - "lat": 51.4546831, - "lon": -2.5452488, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-31", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "ref": "BS4 449" - } -}, -{ - "type": "node", - "id": 847693269, - "lat": 50.6765887, - "lon": -1.5480331, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-02", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO39 44D", - "ref:GB:uprn": "10015462674", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/chine-cliff-po39-0aa/0000PO3944" - } -}, -{ - "type": "node", - "id": 847696620, - "lat": 52.1003664, - "lon": -1.8326433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30; Su off", - "post_box:type": "lamp", - "ref": "WR11 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847731953, - "lat": 52.5242910, - "lon": -1.4671204, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CV11 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey,bing" - } -}, -{ - "type": "node", - "id": 847732044, - "lat": 52.5242882, - "lon": -1.4671062, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CV11 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey,bing" - } -}, -{ - "type": "node", - "id": 847823182, - "lat": 52.4622898, - "lon": 1.7022959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847869346, - "lat": 52.5222012, - "lon": -1.4677622, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CV11 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 847875174, - "lat": 52.2051733, - "lon": 0.1186930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB2 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 847892937, - "lat": 52.8528898, - "lon": -4.1126158, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 847892970, - "lat": 52.8574161, - "lon": -4.1091462, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 847893006, - "lat": 52.8531423, - "lon": -4.1097355, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 847925719, - "lat": 55.0347833, - "lon": -1.5731160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE12 6YQ", - "ref": "NE12 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 847931254, - "lat": 51.8037290, - "lon": -0.0854713, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG14 29" - } -}, -{ - "type": "node", - "id": 848239200, - "lat": 51.5188579, - "lon": -0.1667239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "note": "The left aperture is blocked up. No stamped/franked mail labels, so presumably can take either.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "NW1 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 67D" - } -}, -{ - "type": "node", - "id": 848253134, - "lat": 51.5214948, - "lon": -0.1603867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 184D;NW1 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 184D and NW1 68D" - } -}, -{ - "type": "node", - "id": 848298162, - "lat": 52.5266676, - "lon": -1.4515372, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 848397876, - "lat": 53.9923405, - "lon": -1.0641370, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "18.8714600", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO32 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848402394, - "lat": 51.9170723, - "lon": 0.0235365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 95D" - } -}, -{ - "type": "node", - "id": 848414316, - "lat": 51.9269705, - "lon": 0.0238450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "description": "under the bus stop sign, eastern side of the main road", - "ref": "SG11 100" - } -}, -{ - "type": "node", - "id": 848427176, - "lat": 51.9417030, - "lon": 0.0400058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:10; Sa 08:30", - "fixme": "Check ref -- location is outside SG11 postal district", - "name": "Little Hormead", - "post_box:type": "lamp", - "ref": "SG11 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848495866, - "lat": 50.8380248, - "lon": -1.3871934, - "tags": { - "amenity": "post_box", - "ref": "SO45 52" - } -}, -{ - "type": "node", - "id": 848495867, - "lat": 50.8377740, - "lon": -1.3929976, - "tags": { - "amenity": "post_box", - "ref": "SO45 711D" - } -}, -{ - "type": "node", - "id": 848524968, - "lat": 54.2004054, - "lon": -2.9502654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA11 124", - "royal_cypher": "VR", - "source": "LK" - } -}, -{ - "type": "node", - "id": 848531167, - "lat": 54.2009893, - "lon": -2.9549461, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA11 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 848532431, - "lat": 52.4682366, - "lon": 1.7058304, - "tags": { - "amenity": "post_box", - "ref": "NR33 3341" - } -}, -{ - "type": "node", - "id": 848542545, - "lat": 52.4756175, - "lon": 1.7118602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848625063, - "lat": 51.4645222, - "lon": -0.0666277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 848642109, - "lat": 52.4654910, - "lon": 1.7090342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR33 3353" - } -}, -{ - "type": "node", - "id": 848681153, - "lat": 55.0333947, - "lon": -1.5576360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE12 6LR", - "ref": "NE12 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 848695778, - "lat": 55.8826055, - "lon": -4.2295899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "G21 311" - } -}, -{ - "type": "node", - "id": 848695779, - "lat": 51.3007859, - "lon": -0.7606790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mapillary": "701752481564372", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU14 112", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 848715948, - "lat": 52.4078307, - "lon": -1.8406719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B90 649", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 848725514, - "lat": 53.2568336, - "lon": -1.4335141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S41 36" - } -}, -{ - "type": "node", - "id": 848725517, - "lat": 53.2720401, - "lon": -1.4007088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 848725518, - "lat": 53.2561727, - "lon": -1.4274404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725520, - "lat": 53.2690689, - "lon": -1.4344840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "Position shown for S41 394", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S42 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725521, - "lat": 53.2705973, - "lon": -1.4232332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725523, - "lat": 53.2812914, - "lon": -1.4036635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725524, - "lat": 53.2775787, - "lon": -1.4023934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 848725525, - "lat": 53.2530744, - "lon": -1.4275789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 63D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 848725526, - "lat": 53.2600494, - "lon": -1.4311282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S41 224P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 848725527, - "lat": 53.2467585, - "lon": -1.4260304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 848725528, - "lat": 53.2687203, - "lon": -1.4267052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725529, - "lat": 53.2736157, - "lon": -1.4160766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 848725530, - "lat": 53.2746644, - "lon": -1.4064875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S43 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725531, - "lat": 53.2696025, - "lon": -1.4199723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725532, - "lat": 53.2676221, - "lon": -1.4186858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848725534, - "lat": 53.2429957, - "lon": -1.4271026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 848725535, - "lat": 53.2726125, - "lon": -1.4078072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848749694, - "lat": 55.5481424, - "lon": -2.8337076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD7 94D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 848856945, - "lat": 52.4046546, - "lon": -1.8786088, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests this should be B14 528", - "ref": "B14 258", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 848861504, - "lat": 52.4137532, - "lon": -1.8714318, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 316", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 848906969, - "lat": 51.9587440, - "lon": -0.2921116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG5 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848909597, - "lat": 52.4141242, - "lon": -1.8615914, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 835", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 848916152, - "lat": 51.9564334, - "lon": -0.2872424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG5 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848941633, - "lat": 51.9601000, - "lon": -0.2954462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SG5 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 848980510, - "lat": 52.9991525, - "lon": -1.3405841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DE75 538", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 849093153, - "lat": 50.7520989, - "lon": -1.3227605, - "tags": { - "amenity": "post_box", - "check_date": "2018-06-04", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO31 44D", - "ref:GB:uprn": "10015462696", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849093156, - "lat": 50.7554600, - "lon": -1.3214200, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 23D", - "ref:GB:uprn": "10015447254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/worsley-road-po31-7aa/0000PO3123" - } -}, -{ - "type": "node", - "id": 849093160, - "lat": 50.7671078, - "lon": -1.3126417, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO31 26D", - "ref:GB:uprn": "10015433460", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/services-near-you/postbox/esplanade-po31-7aa/0000PO3126" - } -}, -{ - "type": "node", - "id": 849093170, - "lat": 50.7549735, - "lon": -1.3145807, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 35D", - "ref:GB:uprn": "10015362930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/round-house-po31-7aa/0000PO3135" - } -}, -{ - "type": "node", - "id": 849093175, - "lat": 50.7564101, - "lon": -1.3000901, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO31 10D", - "ref:GB:uprn": "10015292945", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "website": "https://www.royalmail.com/services-near-you/postbox/bellevue-road-po31-7aa/0000PO3110" - } -}, -{ - "type": "node", - "id": 849105867, - "lat": 51.4578203, - "lon": -2.6086551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "post_box:type": "pillar", - "ref": "BS8 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849105869, - "lat": 51.4622671, - "lon": -2.6086277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849341657, - "lat": 51.8335462, - "lon": 0.0901931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "name": "The Convent", - "ref": "SG10 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 849352817, - "lat": 51.8462473, - "lon": 0.0961793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Green Tye", - "ref": "SG10 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849354828, - "lat": 52.0014000, - "lon": -0.3668001, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "SG5 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS waypoint" - } -}, -{ - "type": "node", - "id": 849362071, - "lat": 51.8509529, - "lon": 0.0856441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Dane Bridge", - "ref": "SG10 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849371418, - "lat": 51.8569999, - "lon": 0.0727266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "name": "Church End", - "ref": "SG10 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849383523, - "lat": 51.9438322, - "lon": -0.2864029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG5 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849436191, - "lat": 51.8536457, - "lon": 0.0717852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:type": "lamp", - "ref": "SG10 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849497157, - "lat": 51.8422438, - "lon": 0.0835729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Perry Green", - "ref": "SG10 15" - } -}, -{ - "type": "node", - "id": 849501836, - "lat": 51.8331175, - "lon": 0.0656078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "description": "box mounted in wall at entrance gate to Hadham Mill", - "name": "Hadham Mill", - "ref": "SG10 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 849542454, - "lat": 53.1396787, - "lon": -2.3360098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW11 275" - } -}, -{ - "type": "node", - "id": 849570344, - "lat": 51.5313230, - "lon": -0.1851981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 849592128, - "lat": 51.5431234, - "lon": -0.2130302, - "tags": { - "amenity": "post_box", - "ref": "NW6 43D" - } -}, -{ - "type": "node", - "id": 849598058, - "lat": 51.5393126, - "lon": -0.2154321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW6 5", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 849598059, - "lat": 51.5401536, - "lon": -0.2125369, - "tags": { - "amenity": "post_box", - "note": "Looks disused right now", - "ref": "NW6 40" - } -}, -{ - "type": "node", - "id": 849620512, - "lat": 51.5412727, - "lon": -0.2055394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW6 52" - } -}, -{ - "type": "node", - "id": 849843198, - "lat": 52.9363608, - "lon": -1.1713476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "note": "Faded royal cypher printed on the front", - "opening_hours": "Mo-Fr 11:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG7 13", - "ref:GB:uprn": "10015835743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 849920373, - "lat": 51.9085739, - "lon": 0.0928376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "name": "High Hall Farm", - "ref": "SG11 36" - } -}, -{ - "type": "node", - "id": 849939040, - "lat": 51.4958311, - "lon": -2.6423437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS9 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849959132, - "lat": 56.0315593, - "lon": -4.0446363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 849975267, - "lat": 54.0184092, - "lon": -1.0951910, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-03", - "post_box:type": "pillar", - "ref": "YO32 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 849986712, - "lat": 54.0008277, - "lon": -1.1344455, - "tags": { - "amenity": "post_box", - "ele": "18.6311035", - "post_box:type": "wall", - "ref": "YO30 484D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 850014847, - "lat": 51.8794876, - "lon": 0.0597125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 56D" - } -}, -{ - "type": "node", - "id": 850028150, - "lat": 51.8968290, - "lon": 0.0440677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "name": "Upp Hall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 8D" - } -}, -{ - "type": "node", - "id": 850046360, - "lat": 51.9913149, - "lon": -1.7016207, - "tags": { - "amenity": "post_box", - "fixme": "Is this still here following the construction of the residential building 'The Old Post Office'", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL56 178", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 850048069, - "lat": 53.9940931, - "lon": -1.0587289, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "7.8164063", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO32 481D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 850280278, - "lat": 51.9707734, - "lon": -0.2824560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "note": "This postbox recently moved from south to north of Cedar Ave. Now opposite the location of the closed down and converted post office.", - "post_box:type": "pillar", - "ref": "SG5 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:location": "local_knowledge" - } -}, -{ - "type": "node", - "id": 850370282, - "lat": 50.8550128, - "lon": -1.7874585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BH24 1AX", - "ref": "BH24 17", - "source": "OS OpenData StreetView;survey" - } -}, -{ - "type": "node", - "id": 850607276, - "lat": 51.9851350, - "lon": -0.3671251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG5 85" - } -}, -{ - "type": "node", - "id": 850725809, - "lat": 51.0933422, - "lon": -3.9977559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "EX32 82", - "source": "survey" - } -}, -{ - "type": "node", - "id": 850761540, - "lat": 50.6886365, - "lon": -1.5374744, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 88D", - "ref:GB:uprn": "10015349986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/colwell-bay-po39-0aa/0000PO4088" - } -}, -{ - "type": "node", - "id": 850761552, - "lat": 50.6948600, - "lon": -1.5308500, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2018-06-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO40 125D", - "ref:GB:uprn": "10015416309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/monks-lane-po39-0aa/000PO40125" - } -}, -{ - "type": "node", - "id": 850933461, - "lat": 54.3165389, - "lon": -6.1557516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT32 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 850997163, - "lat": 53.1928957, - "lon": -2.8854396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII wall post box Type A CH1 63 by W. T. Allen & Company on York Street, Chester.", - "manufacturer": "W.T. Allen & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "CH1 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on York Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 850997186, - "lat": 53.1879948, - "lon": -2.8920805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "EIIR Type A post box CH1 402 on Grosvenor Street, Chester. CH1 481 is just behind it.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Pillar box on Grosvenor Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 851080887, - "lat": 53.8251375, - "lon": -0.9605382, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO8 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 851080917, - "lat": 53.7946924, - "lon": -1.0273796, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 851080922, - "lat": 53.8386093, - "lon": -0.9960369, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO8 64", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 851080928, - "lat": 53.7972477, - "lon": -0.9907334, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 22" - } -}, -{ - "type": "node", - "id": 851203222, - "lat": 52.0187686, - "lon": -0.2281474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "pillar", - "ref": "SG5 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 851221726, - "lat": 54.3562945, - "lon": -6.2775598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT32 16" - } -}, -{ - "type": "node", - "id": 851221731, - "lat": 54.3490035, - "lon": -6.2707107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT32 75" - } -}, -{ - "type": "node", - "id": 851222387, - "lat": 52.0171119, - "lon": -0.2347351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG5 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 851230038, - "lat": 52.4626425, - "lon": -2.1052140, - "tags": { - "amenity": "post_box", - "ref": "DY9 619" - } -}, -{ - "type": "node", - "id": 851233690, - "lat": 52.0222182, - "lon": -0.2256432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "note": "in wall of The Crown PH. Not sure how to represent this", - "post_box:type": "wall", - "ref": "SG5 107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 851262588, - "lat": 52.0602695, - "lon": -1.8311137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30; Su off", - "post_box:type": "lamp", - "ref": "WR12 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 851378420, - "lat": 50.7896394, - "lon": -1.0716854, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "inscription": "POST OFFICE LETTER BOX. The letters which cointain COIN if posted as ordinary letters will be charged on delivery with a special registration fee of fourpence", - "note": "This has an unusual royal cypher", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "PO4 109D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 851383047, - "lat": 51.2749809, - "lon": 0.5586032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME14 321D" - } -}, -{ - "type": "node", - "id": 851507221, - "lat": 51.0851467, - "lon": -1.0004454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 851657772, - "lat": 53.7116178, - "lon": -1.7707906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 851797149, - "lat": 50.1685830, - "lon": -5.1042620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 851811818, - "lat": 50.1675630, - "lon": -5.1002050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR10 31D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 851874438, - "lat": 51.0068999, - "lon": -2.3373110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015401828" - } -}, -{ - "type": "node", - "id": 852019136, - "lat": 51.5310893, - "lon": -0.1350114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "colour": "red", - "note": "no ref's on the collection plates", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NW1 100;NW1 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 x Barnby st" - } -}, -{ - "type": "node", - "id": 852122448, - "lat": 51.5120695, - "lon": -0.1575742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2018-10-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1K 55;W1K 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 852577550, - "lat": 52.4609876, - "lon": -2.1029478, - "tags": { - "amenity": "post_box", - "ref": "DY9 28", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 852629674, - "lat": 51.0311866, - "lon": -0.5512730, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH14 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 852829903, - "lat": 55.8499032, - "lon": -4.2326893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "G40 1291" - } -}, -{ - "type": "node", - "id": 852931017, - "lat": 52.4230757, - "lon": 0.7626288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "IP24 3241", - "ref:GB:uprn": "10015322981", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 853082972, - "lat": 52.4802155, - "lon": -0.9010098, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 853489498, - "lat": 52.0140364, - "lon": -0.2357336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG5 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 853559519, - "lat": 52.0133810, - "lon": -0.2270054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "fixme": "check collection times", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG5 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 853594336, - "lat": 52.0125199, - "lon": -0.2204664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "wall", - "ref": "SG5 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 853721301, - "lat": 52.9313905, - "lon": 1.2977151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2732D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 853784068, - "lat": 50.8909985, - "lon": -0.3324777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN44 1555", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 853784097, - "lat": 50.8894904, - "lon": -0.3237858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "509086151400958", - "old_ref": "BN44 1556", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN44 1556D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 853784102, - "lat": 50.8838215, - "lon": -0.3261544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN44 1554", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 853887239, - "lat": 53.3437892, - "lon": -2.2044579, - "tags": { - "amenity": "post_box", - "ref": "SK9 700" - } -}, -{ - "type": "node", - "id": 853899457, - "lat": 53.7775853, - "lon": -1.7542146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 309" - } -}, -{ - "type": "node", - "id": 853899459, - "lat": 53.7797788, - "lon": -1.7541717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD5 161" - } -}, -{ - "type": "node", - "id": 853947999, - "lat": 51.9989749, - "lon": -0.2479386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "pillar", - "ref": "SG5 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 854080362, - "lat": 51.4549758, - "lon": -2.6223279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS8 431", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 854306986, - "lat": 52.4643479, - "lon": -2.0983860, - "tags": { - "amenity": "post_box", - "ref": "B63 35", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 854415914, - "lat": 51.5511269, - "lon": -0.2023350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 854455066, - "lat": 52.0034848, - "lon": -0.2466895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "SG5 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 854459076, - "lat": 51.9771400, - "lon": -0.2751584, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG5 129" - } -}, -{ - "type": "node", - "id": 854556607, - "lat": 50.7202495, - "lon": -3.5500341, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX4 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 855112944, - "lat": 57.2099811, - "lon": -6.2885263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "IV47 120", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 855131537, - "lat": 52.9662725, - "lon": -2.1810428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 855253043, - "lat": 52.0868677, - "lon": 0.7081952, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 855253046, - "lat": 52.0792287, - "lon": 0.7227805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 855253054, - "lat": 52.0780198, - "lon": 0.7174500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO10 1090", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 855253068, - "lat": 52.0762804, - "lon": 0.7205127, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 855268110, - "lat": 52.0868021, - "lon": 0.7209826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CO10 1010D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 855268113, - "lat": 52.0734551, - "lon": 0.7162188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CO10 1036D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 855268117, - "lat": 52.0642330, - "lon": 0.7107390, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 855268119, - "lat": 52.0675607, - "lon": 0.7131519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 855271092, - "lat": 52.0919240, - "lon": 0.7263966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1038D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 855301740, - "lat": 52.9332872, - "lon": 1.2902393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times changed since previous survey (and ref to a \"D\"-type).", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2724D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 855322371, - "lat": 52.9321106, - "lon": 1.2848845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "NR27 2727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 855335741, - "lat": 57.1548003, - "lon": -2.1380850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB25 157", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 855339568, - "lat": 52.9246783, - "lon": 1.2501580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR27 2742D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 855421192, - "lat": 52.9447598, - "lon": 1.2120780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2609", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 855421214, - "lat": 52.9415568, - "lon": 1.2095602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "note": "Unusual hexagonal pillar with decorated roof", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NR26 2627", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 856415106, - "lat": 51.3601958, - "lon": 1.3942166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CT10 4001;CT10 4002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 856878733, - "lat": 53.7800511, - "lon": -1.8144263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 856879987, - "lat": 53.7806343, - "lon": -1.8175591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 856895366, - "lat": 52.4805983, - "lon": -1.8133128, - "tags": { - "amenity": "post_box", - "ref": "B33 253", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 856902616, - "lat": 52.4737775, - "lon": -1.8117130, - "tags": { - "amenity": "post_box", - "ref": "B25 508", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 856915167, - "lat": 53.7825034, - "lon": -1.8037974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 857041421, - "lat": 52.0484743, - "lon": -1.8779629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00; Su off", - "post_box:type": "lamp", - "ref": "WR12 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857160022, - "lat": 50.7938926, - "lon": -2.0755973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH21 75", - "ref:GB:uprn": "10015858037", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857160035, - "lat": 50.7967381, - "lon": -2.0734290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-01-17", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 213D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 857160043, - "lat": 50.8010679, - "lon": -2.0730094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-01-17", - "post_box:type": "lamp", - "ref": "BH21 22D", - "ref:GB:uprn": "10015499568", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 857160044, - "lat": 50.7978250, - "lon": -2.0840814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "mapillary": "1057836571703501", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH21 65", - "ref:GB:uprn": "10015437381", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 857175543, - "lat": 50.4174374, - "lon": -5.0889489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR7 45D", - "source": "Visual" - } -}, -{ - "type": "node", - "id": 857188745, - "lat": 50.7834512, - "lon": -2.0240272, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH21 27", - "ref:GB:uprn": "10015298835" - } -}, -{ - "type": "node", - "id": 857188755, - "lat": 50.8001049, - "lon": -2.0196002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In small wall on N side of road", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH21 47D", - "ref:GB:uprn": "10015338919", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 857188759, - "lat": 50.7861297, - "lon": -2.0389447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "BH21 13", - "ref:GB:uprn": "10015401796", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857211386, - "lat": 51.9988029, - "lon": -0.2981550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG5 74", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 857394693, - "lat": 53.3443996, - "lon": -2.2087596, - "tags": { - "amenity": "post_box", - "ref": "SK9 422" - } -}, -{ - "type": "node", - "id": 857403758, - "lat": 51.1222358, - "lon": 1.2986682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CT17 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403763, - "lat": 51.1237994, - "lon": 1.2928826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT17 46", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 857403777, - "lat": 51.1180419, - "lon": 1.2888315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403791, - "lat": 51.1265482, - "lon": 1.3164368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CT16 8711;CT16 8722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403794, - "lat": 51.1240888, - "lon": 1.2997524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT17 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403798, - "lat": 51.1321496, - "lon": 1.3051536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT16 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403813, - "lat": 51.1233698, - "lon": 1.2962316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT17 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403829, - "lat": 51.1201663, - "lon": 1.2894860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857403855, - "lat": 51.1254360, - "lon": 1.2843996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT17 89", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 857529934, - "lat": 52.7971184, - "lon": -2.1364062, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 857727164, - "lat": 52.2744903, - "lon": -0.8152047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 857727168, - "lat": 52.2797944, - "lon": -0.8272639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 858011935, - "lat": 52.4797859, - "lon": -1.8241510, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B9 289", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 858031375, - "lat": 52.4710721, - "lon": -1.8300420, - "tags": { - "amenity": "post_box", - "ref": "B10 290", - "source": "survey" - } -}, -{ - "type": "node", - "id": 858046306, - "lat": 52.4150096, - "lon": -1.5342075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-01-23", - "old_ref": "CV6 11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 858090344, - "lat": 52.4666081, - "lon": -1.8279714, - "tags": { - "amenity": "post_box", - "ref": "B25 755", - "source": "survey" - } -}, -{ - "type": "node", - "id": 858189783, - "lat": 53.0026569, - "lon": -1.1270627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "post_box:type": "pillar", - "ref": "NG5 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 858308606, - "lat": 57.1396149, - "lon": -2.1240303, - "tags": { - "addr:postcode": "AB10 6TF", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron, Scotland", - "post_box:type": "pillar", - "ref": "AB10 65D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 858322502, - "lat": 51.1021189, - "lon": -0.6853450, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-17", - "old_ref": "GU27 144", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 858424300, - "lat": 52.5923390, - "lon": -1.8421550, - "tags": { - "addr:city": "Sutton Coldfield", - "addr:street": "Clarence Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B74 490" - } -}, -{ - "type": "node", - "id": 858577264, - "lat": 51.4620663, - "lon": -2.6216023, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS8 417D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 858577525, - "lat": 51.2249617, - "lon": 1.4021472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "lastcheck": "2022-12-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT14 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 858577530, - "lat": 51.2150684, - "lon": 1.4025792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT14 22", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 858577534, - "lat": 51.2019211, - "lon": 1.3578624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT14 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 858577541, - "lat": 51.1875786, - "lon": 1.3936612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 125", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 858577546, - "lat": 51.2098437, - "lon": 1.3393859, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-04", - "note": "Collection times plate damaged when surveyed 06/2023 and the fragment does not agree with times published by Royal Mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT14 9", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 858598120, - "lat": 51.4638248, - "lon": -2.6178309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "BS8 418D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 858614679, - "lat": 51.4657362, - "lon": -2.6193581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS8 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 858620606, - "lat": 53.3974105, - "lon": -2.1706946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45" - } -}, -{ - "type": "node", - "id": 858638654, - "lat": 51.4684793, - "lon": -2.6178091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 260D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 858644979, - "lat": 55.8587066, - "lon": -4.4296474, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PA3", - "ref": "PA3 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 858647316, - "lat": 53.7850109, - "lon": -1.8088818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 858675883, - "lat": 51.2236645, - "lon": 1.3968503, - "tags": { - "amenity": "post_box", - "ref": "CT14 33" - } -}, -{ - "type": "node", - "id": 858695832, - "lat": 50.9537258, - "lon": -1.2129777, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO32 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 858695843, - "lat": 50.9537072, - "lon": -1.2129885, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO32 770", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 858818757, - "lat": 50.7223018, - "lon": -3.4820971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1226309598163350", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX1 317", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 859143983, - "lat": 52.8568018, - "lon": -1.6864128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE13 1188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 859371195, - "lat": 51.4266752, - "lon": -0.7318355, - "tags": { - "amenity": "post_box", - "indoor": "yes" - } -}, -{ - "type": "node", - "id": 859499747, - "lat": 52.0322170, - "lon": -0.2314638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "SG5 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 859527076, - "lat": 53.1323090, - "lon": -4.1927323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 859528415, - "lat": 50.3459797, - "lon": -5.1511747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR6 65D", - "royal_cypher": "EIIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 859944096, - "lat": 51.4323491, - "lon": -2.1658882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860034189, - "lat": 54.8430679, - "lon": -4.2176717, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 860034202, - "lat": 54.8074716, - "lon": -4.9619410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "wall", - "ref": "DG9 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 860150236, - "lat": 50.7354685, - "lon": -1.9133965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 860164581, - "lat": 50.7319381, - "lon": -1.9113565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860314289, - "lat": 51.1982754, - "lon": -1.0404166, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG25 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860383408, - "lat": 51.6237777, - "lon": -3.5868268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860384965, - "lat": 52.4088096, - "lon": -1.5146729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 860384981, - "lat": 52.4022053, - "lon": -1.5141311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860384983, - "lat": 52.4045494, - "lon": -1.5143758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 860420822, - "lat": 52.2562360, - "lon": -0.8040955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860513170, - "lat": 51.1079080, - "lon": 0.8227340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN26 182" - } -}, -{ - "type": "node", - "id": 860567801, - "lat": 52.1647789, - "lon": -4.3354662, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 860567817, - "lat": 52.1184190, - "lon": -4.5629828, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 860701724, - "lat": 51.6752100, - "lon": -2.6207128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "collection_times_checked": "2015-07-28", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP16 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 860957280, - "lat": 55.0416671, - "lon": -1.8759749, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE18 0PN", - "ref": "NE18 121" - } -}, -{ - "type": "node", - "id": 861063703, - "lat": 52.0474288, - "lon": -1.9653741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR11 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 861093081, - "lat": 51.3408550, - "lon": -0.8188588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "GU46 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 861093083, - "lat": 51.3372716, - "lon": -0.8155554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "ref": "GU46 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 861100703, - "lat": 52.0458035, - "lon": -1.9651659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR11 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 861119138, - "lat": 51.3375077, - "lon": -0.8180201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "mapillary": "162985732847346", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU46 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 861123775, - "lat": 52.0442402, - "lon": -1.9739289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR11 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 861168225, - "lat": 51.4938338, - "lon": -0.6178842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 861228618, - "lat": 51.9973154, - "lon": 0.7100809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO10 1037", - "source": "gps", - "source:ref": "Dracos.co.uk" - } -}, -{ - "type": "node", - "id": 861350624, - "lat": 52.0731311, - "lon": 0.5736171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "gps" - } -}, -{ - "type": "node", - "id": 861365469, - "lat": 53.6778106, - "lon": -1.5342494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 184" - } -}, -{ - "type": "node", - "id": 861390396, - "lat": 51.5878100, - "lon": -4.0999339, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 861390399, - "lat": 51.5947021, - "lon": -4.0852182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 861620324, - "lat": 52.2541502, - "lon": -0.8074052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 861732641, - "lat": 53.0864192, - "lon": -2.2413629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "ref": "ST7 731", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 861737356, - "lat": 53.0917418, - "lon": -2.2279850, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 861738535, - "lat": 53.0905860, - "lon": -2.2207590, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 861798971, - "lat": 52.8115354, - "lon": -2.1443695, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 1610" - } -}, -{ - "type": "node", - "id": 861899835, - "lat": 55.4625620, - "lon": -4.6394440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA7 24" - } -}, -{ - "type": "node", - "id": 861900055, - "lat": 55.4631323, - "lon": -4.6373132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA7 7" - } -}, -{ - "type": "node", - "id": 862034280, - "lat": 57.1338457, - "lon": -2.0942286, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 9AL", - "addr:street": "Menzies Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 120" - } -}, -{ - "type": "node", - "id": 862034288, - "lat": 57.1323876, - "lon": -2.0849377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB11 131" - } -}, -{ - "type": "node", - "id": 862034296, - "lat": 57.1342325, - "lon": -2.0776269, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 9LB", - "addr:street": "Girdlestone Place", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB11 510" - } -}, -{ - "type": "node", - "id": 862034298, - "lat": 57.1360308, - "lon": -2.0928127, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 9AJ", - "addr:street": "Menzies Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 78", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862108157, - "lat": 51.4161791, - "lon": -0.8473716, - "tags": { - "amenity": "post_box", - "mapillary": "1070467837071940", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG41 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-12-21" - } -}, -{ - "type": "node", - "id": 862108332, - "lat": 51.4134626, - "lon": -0.8328692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 862109235, - "lat": 51.4231703, - "lon": -0.8646665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1022339838701753", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG41 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 862236735, - "lat": 52.7201504, - "lon": -0.7795558, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LE15 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862236738, - "lat": 52.7192947, - "lon": -0.7758650, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862236742, - "lat": 52.6708277, - "lon": -0.7353969, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE15 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862236746, - "lat": 52.6776641, - "lon": -0.7448090, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862310007, - "lat": 51.4930625, - "lon": -0.1564813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1W 95;SW1W 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862310019, - "lat": 51.4947683, - "lon": -0.1570932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 79" - } -}, -{ - "type": "node", - "id": 862310027, - "lat": 51.4954367, - "lon": -0.1535086, - "tags": { - "amenity": "post_box", - "last_collection": "6.30pm Sat 11.30pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "SW1", - "ref": "SW1 25" - } -}, -{ - "type": "node", - "id": 862310064, - "lat": 51.4988812, - "lon": -0.1550149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 81;SW1X 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862310075, - "lat": 51.4974829, - "lon": -0.1569922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 94;SW1X 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862398897, - "lat": 51.4959405, - "lon": -0.1694595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 26" - } -}, -{ - "type": "node", - "id": 862398922, - "lat": 51.4985631, - "lon": -0.1654375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW3 5" - } -}, -{ - "type": "node", - "id": 862398977, - "lat": 51.4988512, - "lon": -0.1653958, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd", - "post_box:type": "pillar", - "postal_code": "SW3", - "ref": "SW3 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 862464716, - "lat": 51.5006885, - "lon": -0.1850932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 8", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862464742, - "lat": 51.4940462, - "lon": -0.1644102, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "manufacturer": "McDowall, Steven & Co Ltd London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW3 34D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862464774, - "lat": 51.4906377, - "lon": -0.1667847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862464798, - "lat": 51.4947224, - "lon": -0.1790563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW7 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 862464809, - "lat": 51.4921639, - "lon": -0.1639001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SW3", - "ref": "SW3 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 862481692, - "lat": 51.4920810, - "lon": -0.2131855, - "tags": { - "amenity": "post_box", - "ref": "W14 35" - } -}, -{ - "type": "node", - "id": 862481700, - "lat": 51.4953991, - "lon": -0.1850586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_b", - "post_box:manufacturer": "McDowall, Steven and Co Ltd, London and Glasgow", - "post_box:type": "pillar", - "postal_code": "SW7", - "ref": "SW7 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 862795975, - "lat": 51.4175245, - "lon": -0.8246671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 862877600, - "lat": 53.7829849, - "lon": -1.8239273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 862922216, - "lat": 50.7174930, - "lon": -1.9167059, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-08", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 236", - "ref:GB:uprn": "10015319514", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 862922226, - "lat": 50.7135647, - "lon": -1.9169516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 26", - "ref:GB:uprn": "10015289751", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 862922258, - "lat": 50.7099742, - "lon": -1.9170589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 253D", - "ref:GB:uprn": "10015439027", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 862942452, - "lat": 51.8109343, - "lon": -0.1965590, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL7 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 862983726, - "lat": 51.7461646, - "lon": -0.4244961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual inspection, relative to extant ways" - } -}, -{ - "type": "node", - "id": 862995900, - "lat": 51.7480456, - "lon": -0.4316412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 863003446, - "lat": 51.8049861, - "lon": -0.1881403, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "AL7 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 863205898, - "lat": 52.4603597, - "lon": -2.0688544, - "tags": { - "amenity": "post_box", - "ref": "B63 168", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 863366209, - "lat": 52.2888559, - "lon": -0.8494430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN3 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 863547519, - "lat": 54.5944500, - "lon": -5.8357500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 863667866, - "lat": 52.9329770, - "lon": -1.1821602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 46D", - "ref:GB:uprn": "10015408762", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 863667958, - "lat": 52.9338339, - "lon": -1.1825088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 11:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG7 120" - } -}, -{ - "type": "node", - "id": 863806540, - "lat": 51.4171985, - "lon": -0.8389444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "RG40 107" - } -}, -{ - "type": "node", - "id": 863806563, - "lat": 51.4109832, - "lon": -0.8352188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "ref": "RG40 1" - } -}, -{ - "type": "node", - "id": 863809926, - "lat": 53.3474543, - "lon": -2.2191058, - "tags": { - "amenity": "post_box", - "ref": "SK9 724" - } -}, -{ - "type": "node", - "id": 863838745, - "lat": 51.5035003, - "lon": -0.1044692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 31;SE1 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 863884585, - "lat": 51.9965100, - "lon": -0.3560244, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "lamp", - "ref": "SG5 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 863931523, - "lat": 51.0833867, - "lon": -1.1344755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO24 209" - } -}, -{ - "type": "node", - "id": 863931564, - "lat": 51.0598219, - "lon": -1.1068712, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "last_checked": "2021-01-02", - "note": "This postbox is a bit set back from the road by the bushes.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 863931926, - "lat": 51.0846789, - "lon": -1.1009868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO24 126" - } -}, -{ - "type": "node", - "id": 863931961, - "lat": 51.0847435, - "lon": -1.1408614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 118", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 863932016, - "lat": 51.0982718, - "lon": -1.1072541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 863965893, - "lat": 51.0862372, - "lon": -1.2679590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1800441877106454", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-16" - } -}, -{ - "type": "node", - "id": 863980636, - "lat": 52.9354562, - "lon": -1.2018830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG7 204", - "ref:GB:uprn": "10015462552", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 864067144, - "lat": 55.9047571, - "lon": -3.2608601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH13 393", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 864135188, - "lat": 52.2124429, - "lon": -2.2759839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 246" - } -}, -{ - "type": "node", - "id": 864242412, - "lat": 51.8431724, - "lon": -3.9985045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA18 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 864570968, - "lat": 50.1522431, - "lon": -5.0700169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR11 102D", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 864587794, - "lat": 50.1039997, - "lon": -5.1161076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR11 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 864616502, - "lat": 50.1054688, - "lon": -5.2751762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 864616506, - "lat": 50.1026018, - "lon": -5.2755649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 864616509, - "lat": 50.1085806, - "lon": -5.3535110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 864616511, - "lat": 50.1573970, - "lon": -5.0976329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 864616534, - "lat": 50.1510958, - "lon": -5.0803432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 864621028, - "lat": 51.5942536, - "lon": -1.3380729, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 864626928, - "lat": 50.0378339, - "lon": -5.6723045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 864644654, - "lat": 53.4336926, - "lon": -2.2205132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "M20 632" - } -}, -{ - "type": "node", - "id": 864848269, - "lat": 55.8874928, - "lon": -4.2244286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "postal_code": "G21", - "ref": "G21 72" - } -}, -{ - "type": "node", - "id": 864885382, - "lat": 51.0677858, - "lon": -4.0830966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 20" - } -}, -{ - "type": "node", - "id": 865012650, - "lat": 51.0700983, - "lon": -4.0874206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 22" - } -}, -{ - "type": "node", - "id": 865207392, - "lat": 51.4229038, - "lon": -0.9262640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 865216710, - "lat": 56.0119456, - "lon": -3.7091514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 211D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 865263130, - "lat": 55.0545591, - "lon": -1.6762131, - "tags": { - "amenity": "post_box", - "postal_code": "NE13 7LG", - "ref": "NE13 346" - } -}, -{ - "type": "node", - "id": 865265619, - "lat": 55.5990211, - "lon": -4.4893159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "indoor": "yes", - "mail:first_class": "yes", - "mail:meter": "no", - "mail:second_class": "yes", - "mail:stamped": "yes", - "operator": "Royal Mail", - "ref": "KA1 206" - } -}, -{ - "type": "node", - "id": 865265624, - "lat": 55.5993164, - "lon": -4.4907366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:first_class": "no", - "mail:meter": "yes", - "mail:second_class": "no", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 16:30-18:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KA1 5000" - } -}, -{ - "type": "node", - "id": 865302378, - "lat": 53.7829116, - "lon": -0.9956043, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 8" - } -}, -{ - "type": "node", - "id": 865302382, - "lat": 53.7905088, - "lon": -0.9689366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 865438477, - "lat": 53.2964976, - "lon": -1.6348287, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S32 520" - } -}, -{ - "type": "node", - "id": 866228327, - "lat": 52.8140019, - "lon": -2.1487871, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 1605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 866383924, - "lat": 51.5757331, - "lon": -0.2234488, - "tags": { - "amenity": "post_box", - "ref": "NW4 48" - } -}, -{ - "type": "node", - "id": 866433572, - "lat": 53.2844150, - "lon": -2.9464340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH66 381" - } -}, -{ - "type": "node", - "id": 866691969, - "lat": 51.1419223, - "lon": 0.9154806, - "tags": { - "amenity": "post_box", - "ref": "TN24 93" - } -}, -{ - "type": "node", - "id": 866691995, - "lat": 51.1396076, - "lon": 0.9132888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN24 7" - } -}, -{ - "type": "node", - "id": 866724729, - "lat": 51.5328658, - "lon": -0.1838947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW8 13", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 866784061, - "lat": 51.5283512, - "lon": -0.1816001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 866874922, - "lat": 51.5305319, - "lon": -0.1769532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW8 7", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 866994001, - "lat": 51.5315052, - "lon": -0.1805656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 867021109, - "lat": 51.8090217, - "lon": -0.2043951, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL8 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 867071971, - "lat": 51.5361566, - "lon": -0.1820433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "NW8 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 867336364, - "lat": 51.5984046, - "lon": -1.7800971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 867434472, - "lat": 51.4496005, - "lon": -2.6132504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS8 374D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 867529701, - "lat": 53.3700703, - "lon": -3.0962279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "description": "QEII wall mounted lamp box CH49 303 near the main entrance of Arrowe Park Hospital. This replaced the Type K which stood nearby.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Arrowe Park Hospital.jpg" - } -}, -{ - "type": "node", - "id": 867653434, - "lat": 53.7611571, - "lon": -1.6799337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 224" - } -}, -{ - "type": "node", - "id": 867653437, - "lat": 53.7559633, - "lon": -1.7401201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 101" - } -}, -{ - "type": "node", - "id": 867653438, - "lat": 53.7598008, - "lon": -1.7401309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 221" - } -}, -{ - "type": "node", - "id": 867653439, - "lat": 53.7822926, - "lon": -1.7170805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 335" - } -}, -{ - "type": "node", - "id": 867653440, - "lat": 53.7812357, - "lon": -1.7165816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD4 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 867653442, - "lat": 53.7845617, - "lon": -1.7186416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 120" - } -}, -{ - "type": "node", - "id": 867653443, - "lat": 53.7781055, - "lon": -1.7235606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD4 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 867653444, - "lat": 53.7560016, - "lon": -1.7399812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 79" - } -}, -{ - "type": "node", - "id": 867653445, - "lat": 53.7864768, - "lon": -1.7262054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 73" - } -}, -{ - "type": "node", - "id": 867653446, - "lat": 53.7878044, - "lon": -1.7182493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD4 208" - } -}, -{ - "type": "node", - "id": 867653447, - "lat": 53.7901129, - "lon": -1.7070410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD4 313", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 868332666, - "lat": 53.0595555, - "lon": -0.8531849, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 868332667, - "lat": 53.0635788, - "lon": -0.8440440, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 868462214, - "lat": 50.7258979, - "lon": -3.5196090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "EX1 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 868515875, - "lat": 50.8082336, - "lon": -1.8730676, - "tags": { - "amenity": "post_box", - "ref": "BH22 194", - "ref:GB:uprn": "10015286575" - } -}, -{ - "type": "node", - "id": 868565273, - "lat": 53.1674007, - "lon": -3.1399858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH7 95D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 868622179, - "lat": 51.5386233, - "lon": -0.1858778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 868663067, - "lat": 51.6662070, - "lon": -1.0727598, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 868890621, - "lat": 52.0431058, - "lon": -1.9352964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "old_ref": "B055", - "post_box:type": "lamp", - "ref": "WR12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 869010100, - "lat": 53.2012185, - "lon": -2.8907601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 35D" - } -}, -{ - "type": "node", - "id": 869010275, - "lat": 53.2164452, - "lon": -2.8889883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 301D" - } -}, -{ - "type": "node", - "id": 869010529, - "lat": 53.2057924, - "lon": -2.8884621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH2 281D" - } -}, -{ - "type": "node", - "id": 869010583, - "lat": 53.1993387, - "lon": -2.8905952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 435" - } -}, -{ - "type": "node", - "id": 869181336, - "lat": 51.8502364, - "lon": -0.3031689, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "note": "Outside number 126", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG4 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 869272582, - "lat": 53.3489306, - "lon": -2.2229526, - "tags": { - "amenity": "post_box", - "ref": "SK9 681" - } -}, -{ - "type": "node", - "id": 869283756, - "lat": 51.5958326, - "lon": -1.8025530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 25" - } -}, -{ - "type": "node", - "id": 869284324, - "lat": 51.5899949, - "lon": -1.8071419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN25 152", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 869317507, - "lat": 51.5986028, - "lon": -1.7932032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 869363447, - "lat": 51.2400746, - "lon": -0.5805754, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-07-29", - "old_ref": "GU1 83", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU1 83D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 869542091, - "lat": 51.4246743, - "lon": -0.0614467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 869543816, - "lat": 51.3762450, - "lon": -0.8915279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 08:00", - "mapillary": "1835123403334047", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG40 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 870110416, - "lat": 51.5835131, - "lon": -1.7924873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 348" - } -}, -{ - "type": "node", - "id": 870220646, - "lat": 52.4615495, - "lon": -2.0818810, - "tags": { - "amenity": "post_box", - "ref": "B63 1140", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 870260142, - "lat": 52.4579564, - "lon": -2.0826680, - "tags": { - "amenity": "post_box", - "ref": "B63 42", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 870336616, - "lat": 52.4597939, - "lon": -2.0860267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B63 10", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 870357524, - "lat": 52.4592237, - "lon": -2.0924682, - "tags": { - "amenity": "post_box", - "ref": "B63 1141", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 870407338, - "lat": 51.4613302, - "lon": -0.3030197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW9 8;TW9 8001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 870733196, - "lat": 51.4211629, - "lon": -0.9434975, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG6 612" - } -}, -{ - "type": "node", - "id": 871000708, - "lat": 55.9651110, - "lon": -3.2694445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH4 327" - } -}, -{ - "type": "node", - "id": 871000717, - "lat": 55.9555428, - "lon": -3.2480205, - "tags": { - "amenity": "post_box", - "ref": "EH4 39" - } -}, -{ - "type": "node", - "id": 871000729, - "lat": 55.9574118, - "lon": -3.2495971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2404373419767722", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 324", - "source": "Bing;survey", - "survey:date": "2024-06-28" - } -}, -{ - "type": "node", - "id": 871000739, - "lat": 55.9566195, - "lon": -3.2377543, - "tags": { - "amenity": "post_box", - "ref": "EH4 246" - } -}, -{ - "type": "node", - "id": 871017432, - "lat": 55.8781158, - "lon": -4.2954209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "ref": "G12 80" - } -}, -{ - "type": "node", - "id": 871065572, - "lat": 55.8805834, - "lon": -4.2974864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G12 77", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 871067050, - "lat": 50.5852043, - "lon": -3.4591416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 871073638, - "lat": 50.5823698, - "lon": -3.4628447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 871076986, - "lat": 50.5817487, - "lon": -3.4736246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX7 600D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 871152485, - "lat": 54.1950397, - "lon": -6.1449165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT34 95" - } -}, -{ - "type": "node", - "id": 871355624, - "lat": 50.8732388, - "lon": -1.8844493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "BH31", - "ref": "BH31 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871606008, - "lat": 51.8902324, - "lon": -0.0563096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "name": "Haultwick", - "post_box:type": "lamp", - "ref": "SG11 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871610594, - "lat": 52.6703884, - "lon": -0.7278846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "post_box:type": "wall", - "ref": "LE15 101", - "source": "survey" - } -}, -{ - "type": "node", - "id": 871648052, - "lat": 51.8756315, - "lon": 0.1161250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Cradle End", - "ref": "SG11 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871664295, - "lat": 51.8715282, - "lon": 0.1070247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "name": "Bury Green", - "post_box:type": "lamp", - "ref": "SG11 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871673491, - "lat": 51.8728025, - "lon": 0.0525818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "colour": "red", - "name": "Bromley", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871721310, - "lat": 54.5902132, - "lon": -5.8643477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 871721312, - "lat": 54.5884109, - "lon": -5.8472873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 871752768, - "lat": 51.9360117, - "lon": -0.0238265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "name": "Aspenden", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG9 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 871776869, - "lat": 53.1430471, - "lon": -2.3628485, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 871778066, - "lat": 53.1446341, - "lon": -2.3648256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "ref": "CW11 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871816788, - "lat": 51.7843945, - "lon": 0.0476481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "name": "Briggins Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG12 62" - } -}, -{ - "type": "node", - "id": 871825617, - "lat": 51.7868560, - "lon": 0.0123673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "name": "Thele Avenue", - "ref": "SG12 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 871830855, - "lat": 51.8608611, - "lon": -0.0220690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "name": "Standon Green End", - "ref": "SG11 102" - } -}, -{ - "type": "node", - "id": 871835503, - "lat": 51.8081506, - "lon": -0.0343061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Myddleton Road", - "ref": "SG12 113" - } -}, -{ - "type": "node", - "id": 871839922, - "lat": 51.7902044, - "lon": 0.0101348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "name": "Chapelfields", - "ref": "SG12 31" - } -}, -{ - "type": "node", - "id": 872455176, - "lat": 52.5959709, - "lon": -1.0912330, - "tags": { - "amenity": "post_box", - "ele": "91.690674", - "ref": "LE2 26", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 872455189, - "lat": 52.5966569, - "lon": -1.0911479, - "tags": { - "amenity": "post_box", - "ele": "91.690674", - "note": "franked_mail only", - "ref": "LE2 840", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 872456309, - "lat": 53.7796333, - "lon": -1.8266906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 872533748, - "lat": 51.9725462, - "lon": -0.3301826, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "note": "Two-faced composite postbox. A pair of postboxes (different numbers) of different vintages on the \"inside\" and \"outside\" of a dedicated brick pillar !", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG5 1002", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 872533827, - "lat": 51.9703616, - "lon": -0.3339651, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "note": "CP7 lamp box embedded in an existing wall", - "post_box:type": "wall", - "ref": "SG5 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 872533858, - "lat": 51.9725608, - "lon": -0.3301841, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "note": "Two-faced composite postbox. A pair of postboxes (different numbers) of different vintages on the \"inside\" and \"outside\" of a dedicated brick pillar !", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG5 1001", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 872682094, - "lat": 50.8807971, - "lon": -1.0152326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PO7 355" - } -}, -{ - "type": "node", - "id": 872759309, - "lat": 51.5299848, - "lon": -0.0944761, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-23", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "N1 46;N1 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 873565278, - "lat": 51.9607345, - "lon": -0.3729954, - "tags": { - "amenity": "post_box", - "fixme": "I think this is the SG5 79 Pegsdon box.", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 873587521, - "lat": 51.8142077, - "lon": -0.1926536, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 283" - } -}, -{ - "type": "node", - "id": 873731634, - "lat": 57.1123511, - "lon": -2.1985974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 873742849, - "lat": 57.1169550, - "lon": -2.1790560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 873863349, - "lat": 51.5971113, - "lon": -1.7983308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN25 57", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 873892921, - "lat": 51.4960423, - "lon": -0.1275749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "information_plate_date": "2016-08-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW1P 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-11-20" - } -}, -{ - "type": "node", - "id": 874154343, - "lat": 52.3649567, - "lon": -0.2260375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 280" - } -}, -{ - "type": "node", - "id": 874154428, - "lat": 52.3569129, - "lon": -0.2140473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 15" - } -}, -{ - "type": "node", - "id": 874155479, - "lat": 52.3542719, - "lon": -0.2089590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 154" - } -}, -{ - "type": "node", - "id": 874155616, - "lat": 52.3640561, - "lon": -0.2290674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 78" - } -}, -{ - "type": "node", - "id": 874262825, - "lat": 53.7703061, - "lon": -1.8182707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 874264622, - "lat": 52.1061202, - "lon": 1.3345445, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP12 6390" - } -}, -{ - "type": "node", - "id": 874264624, - "lat": 52.1221552, - "lon": 1.5240413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "IP12 6282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874264626, - "lat": 52.1168588, - "lon": 1.4845690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP12 6242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874264630, - "lat": 52.1023008, - "lon": 1.3680277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874264650, - "lat": 52.1114464, - "lon": 1.5250020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP12 6360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874264660, - "lat": 52.0666255, - "lon": 1.2771984, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "IP5 1457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874319341, - "lat": 51.2719071, - "lon": 1.3322180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT13 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 874319361, - "lat": 51.2660128, - "lon": 1.3115882, - "tags": { - "amenity": "post_box", - "mapillary": "913142186080924", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CT13 115", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 874319453, - "lat": 51.2754823, - "lon": 1.3400540, - "tags": { - "amenity": "post_box", - "ref": "CT13 100" - } -}, -{ - "type": "node", - "id": 874319467, - "lat": 51.2689587, - "lon": 1.3027870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT13 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874343345, - "lat": 51.8844087, - "lon": 0.1009477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Church End", - "ref": "SG11 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 874351758, - "lat": 51.8857986, - "lon": 0.0157402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "name": "Stanelow Crescent", - "ref": "SG11 26" - } -}, -{ - "type": "node", - "id": 874356083, - "lat": 51.9313161, - "lon": 0.0811002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "Furneux Pelham Church", - "ref": "SG9 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874360266, - "lat": 55.1471385, - "lon": -1.6539301, - "tags": { - "amenity": "post_box", - "postal_code": "NE61 6NY", - "ref": "NE61 789" - } -}, -{ - "type": "node", - "id": 874360306, - "lat": 55.1519851, - "lon": -1.6520935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "NE61 6LN", - "ref": "NE61 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 874360354, - "lat": 55.1489812, - "lon": -1.6589259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "NE61 6LF", - "ref": "NE61 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 874362265, - "lat": 51.9457951, - "lon": -0.0149491, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "name": "Sunny Hill", - "ref": "SG9 99" - } -}, -{ - "type": "node", - "id": 874380826, - "lat": 51.9300542, - "lon": 0.0871355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "name": "Barleycroft End", - "ref": "SG9 78" - } -}, -{ - "type": "node", - "id": 874381324, - "lat": 54.0270323, - "lon": -1.6476516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HG3 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874385293, - "lat": 51.9517747, - "lon": 0.0983980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Washall Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG9 84" - } -}, -{ - "type": "node", - "id": 874388833, - "lat": 51.9532377, - "lon": -0.0576928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:00", - "name": "Throcking", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG9 51" - } -}, -{ - "type": "node", - "id": 874394951, - "lat": 51.9511085, - "lon": -0.0217512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "name": "Vicarage Road", - "ref": "SG9 140" - } -}, -{ - "type": "node", - "id": 874398792, - "lat": 51.9674947, - "lon": -0.0931146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:00", - "name": "Southern Green", - "ref": "SG9 125" - } -}, -{ - "type": "node", - "id": 874398794, - "lat": 51.9680169, - "lon": -0.1013544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "Rushden", - "post_box:type": "lamp", - "ref": "SG9 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874409374, - "lat": 51.9867658, - "lon": -0.0860652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "name": "Roe Green", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG9 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874415995, - "lat": 51.9798796, - "lon": -0.1088694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "name": "Redhill", - "post_box:type": "lamp", - "ref": "SG9 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 874428705, - "lat": 51.4924349, - "lon": -2.6408496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS9 278D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 874655506, - "lat": 53.7822205, - "lon": -1.0682050, - "tags": { - "amenity": "post_box", - "note": "Inside Morrison's supermarket", - "ref": "YO8 66" - } -}, -{ - "type": "node", - "id": 875700517, - "lat": 52.2864984, - "lon": -1.1494543, - "tags": { - "amenity": "post_box", - "ref": "NN11 15" - } -}, -{ - "type": "node", - "id": 875702915, - "lat": 52.2869710, - "lon": -1.1471298, - "tags": { - "amenity": "post_box", - "ref": "NN11 594" - } -}, -{ - "type": "node", - "id": 875757691, - "lat": 50.8855305, - "lon": -1.0198971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-05-19", - "old_ref": "PO7 318", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 875757700, - "lat": 50.8788075, - "lon": -1.0304640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2020-04-21", - "note": "I checked this postbox's details on Tuesday 21.04.2020 and all the details are the same.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875793942, - "lat": 50.9235868, - "lon": -1.1885510, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30, Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875880591, - "lat": 51.8111888, - "lon": -0.2277166, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AL6 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875889085, - "lat": 51.6470707, - "lon": -0.4841661, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WD3 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875891367, - "lat": 51.6422767, - "lon": -0.4772202, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WD3 142", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 875893304, - "lat": 51.6411855, - "lon": -0.4829851, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WD3 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 875894051, - "lat": 51.6452905, - "lon": -0.4857700, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WD3 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875895441, - "lat": 51.6493778, - "lon": -0.4932329, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "WD3 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875896991, - "lat": 51.6467311, - "lon": -0.4944251, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "WD3 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875898147, - "lat": 51.6368488, - "lon": -0.4830024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "WD3 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 875940900, - "lat": 50.7621201, - "lon": -1.9993578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 167", - "ref:GB:uprn": "10015473120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 876283030, - "lat": 52.2013702, - "lon": -0.8991121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 428", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 876386911, - "lat": 51.4335982, - "lon": -2.5002995, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 876386918, - "lat": 51.4355249, - "lon": -2.4956928, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 876461433, - "lat": 50.8940764, - "lon": -2.0409868, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 44", - "ref:GB:uprn": "10015432478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 876461435, - "lat": 50.8728536, - "lon": -2.0254863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:30", - "description": "In wall of outbuilding behind the long row of thatched cottages (old p.o.)./The Buildings/", - "post_box:type": "wall", - "ref": "BH21 9", - "ref:GB:uprn": "10015439821", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 876461441, - "lat": 50.8732530, - "lon": -2.0322560, - "tags": { - "amenity": "post_box", - "description": "West side of road.", - "fixme": "Notes say there is a T-jn here.", - "post_box:type": "lamp", - "ref": "BH21 138" - } -}, -{ - "type": "node", - "id": 876461445, - "lat": 50.8910046, - "lon": -2.0313948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "description": "East end of village, by Bakery entrance", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 160", - "ref:GB:uprn": "10015349632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 876461447, - "lat": 50.8769867, - "lon": -2.0107388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-01-17", - "description": "Wall on south side of lane.", - "post_box:type": "wall", - "ref": "BH21 33D", - "ref:GB:uprn": "10015774404", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 876465229, - "lat": 50.8771863, - "lon": -1.9774783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:30", - "description": "Set in wall of Horton Inn, by car park.", - "post_box:type": "wall", - "ref": "BH21 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 876465237, - "lat": 50.8904771, - "lon": -1.9661545, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 137", - "ref:GB:uprn": "10015424296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 876465246, - "lat": 50.8959649, - "lon": -2.0014559, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 122", - "ref:GB:uprn": "10015345681" - } -}, -{ - "type": "node", - "id": 876468311, - "lat": 50.9170967, - "lon": -1.9083486, - "tags": { - "amenity": "post_box", - "description": "Junction at Holwell, east side of triangle", - "post_box:type": "lamp", - "ref": "BH21 135", - "ref:GB:uprn": "10015341234" - } -}, -{ - "type": "node", - "id": 876468320, - "lat": 50.9172358, - "lon": -1.9435233, - "tags": { - "amenity": "post_box", - "note": "Roadside - not on footpath.", - "post_box:type": "lamp", - "ref": "BH21 112", - "ref:GB:uprn": "10015276425" - } -}, -{ - "type": "node", - "id": 876468321, - "lat": 50.9192907, - "lon": -1.9222563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "date": "2023-01-16", - "drive_through": "no", - "note": "Wall box - has \"W. T. Allen & Co.\" cast into it. Was at No. 3 Wimborne Street, but moved when post office moved from that address to Cranborne Stores", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH21 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 876468322, - "lat": 50.9210623, - "lon": -1.9760237, - "tags": { - "amenity": "post_box", - "description": "Outside Manor Farm.", - "post_box:type": "lamp", - "ref": "BH21 111", - "ref:GB:uprn": "10015426353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 876471337, - "lat": 50.7864847, - "lon": -1.9558075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH21 73", - "ref:GB:uprn": "10015283512" - } -}, -{ - "type": "node", - "id": 876471341, - "lat": 50.7810330, - "lon": -2.0020870, - "tags": { - "amenity": "post_box", - "description": "West of old railway bridge, next to old church.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH21 133", - "ref:GB:uprn": "10015364999" - } -}, -{ - "type": "node", - "id": 876475108, - "lat": 50.8104394, - "lon": -1.9747942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 124D", - "ref:GB:uprn": "10015466139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 876475111, - "lat": 50.7996410, - "lon": -1.9918940, - "tags": { - "amenity": "post_box", - "description": "In wall by small public car park at Pye Corner", - "post_box:type": "wall", - "ref": "BH21 6", - "ref:GB:uprn": "10015387472" - } -}, -{ - "type": "node", - "id": 876475114, - "lat": 50.8066940, - "lon": -1.9862080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH21 64", - "ref:GB:uprn": "10015392778", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 876932865, - "lat": 51.1177374, - "lon": 0.9592072, - "tags": { - "amenity": "post_box", - "ref": "TN25 47" - } -}, -{ - "type": "node", - "id": 877070499, - "lat": 51.8204918, - "lon": -0.2332953, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL6 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 877088558, - "lat": 51.5496450, - "lon": -0.1523503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NW5 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 25" - } -}, -{ - "type": "node", - "id": 877245177, - "lat": 51.6678905, - "lon": -1.0811758, - "tags": { - "amenity": "post_box", - "name": "Chalgrove post office" - } -}, -{ - "type": "node", - "id": 877676216, - "lat": 51.3984972, - "lon": 0.0099120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 877879671, - "lat": 51.5183801, - "lon": -0.1706908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off; Su off", - "opening_hours": "Mo-Fr 13:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W2 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 877879680, - "lat": 51.5183933, - "lon": -0.1706685, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 5;W2 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 877879696, - "lat": 51.5185648, - "lon": -0.1685154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "collection_times_checked": "2018-04-24", - "description": "Left aperture for first class and abroad; right aperture for second class.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 68;W2 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 878029949, - "lat": 51.5228142, - "lon": -0.1459597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "note": "the right collection plate is missing", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 236D;W1B 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 878097583, - "lat": 53.6971010, - "lon": -2.6671083, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-02", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR25 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 878108412, - "lat": 53.6986779, - "lon": -1.8729023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX3 121" - } -}, -{ - "type": "node", - "id": 878111777, - "lat": 53.6850518, - "lon": -1.6233393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 37", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 878460850, - "lat": 51.7432931, - "lon": -0.1224336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SG13 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 878460851, - "lat": 51.7512979, - "lon": -0.1557287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "post_box:type": "wall", - "ref": "AL9 174", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 878744818, - "lat": 52.3096775, - "lon": -1.9689145, - "tags": { - "amenity": "post_box", - "name": "lilly green lane", - "ref": "B97 208" - } -}, -{ - "type": "node", - "id": 878823797, - "lat": 56.4754717, - "lon": -2.9066314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD5 47D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 878856943, - "lat": 52.1167681, - "lon": -1.7417618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 878857559, - "lat": 52.0798738, - "lon": -1.6145373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 878858382, - "lat": 52.0910709, - "lon": -1.6903863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 878898108, - "lat": 56.4652782, - "lon": -2.8652107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD5 102D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 878898110, - "lat": 56.4828643, - "lon": -2.8901134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 878898112, - "lat": 56.4725897, - "lon": -2.8701453, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 878898115, - "lat": 56.4947106, - "lon": -2.8915922, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD5 150D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 878898122, - "lat": 56.4664022, - "lon": -2.8787156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 110D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 878898126, - "lat": 56.4667567, - "lon": -2.8698217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 878898127, - "lat": 56.4736563, - "lon": -2.8558760, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 878898128, - "lat": 56.4752310, - "lon": -2.8819342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD5 25D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 878898129, - "lat": 56.4700040, - "lon": -2.8784601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 878898131, - "lat": 56.4682457, - "lon": -2.8815608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 879293075, - "lat": 52.7975755, - "lon": -2.1222209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 879336595, - "lat": 53.7707888, - "lon": -1.6667793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD4 47", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 879544901, - "lat": 50.8892302, - "lon": -1.9221868, - "tags": { - "amenity": "post_box", - "description": "In layby", - "post_box:type": "lamp", - "ref": "BH21 153", - "ref:GB:uprn": "10015376526" - } -}, -{ - "type": "node", - "id": 879544905, - "lat": 50.9065966, - "lon": -1.9196039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "BH21 131", - "ref:GB:uprn": "10015407405" - } -}, -{ - "type": "node", - "id": 879544914, - "lat": 50.9021420, - "lon": -1.9111920, - "tags": { - "amenity": "post_box", - "fixme": "Not sure which side of road", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH21 115", - "ref:GB:uprn": "10015286967", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 879545104, - "lat": 52.0795098, - "lon": -0.2564364, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879545123, - "lat": 52.0827547, - "lon": -0.2639401, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 879545162, - "lat": 52.0809600, - "lon": -0.2481084, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG18 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879545167, - "lat": 52.0769000, - "lon": -0.2455589, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG18 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879547712, - "lat": 50.8807970, - "lon": -1.9158535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "fixme": "Need to add Church Hill and phone box", - "post_box:type": "lamp", - "ref": "BH21 55", - "ref:GB:uprn": "10015460239" - } -}, -{ - "type": "node", - "id": 879547723, - "lat": 50.8589728, - "lon": -1.8779673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BH21 97D", - "ref:GB:uprn": "10015376572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879547726, - "lat": 50.8808578, - "lon": -1.9289269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BH21 56D", - "ref:GB:uprn": "10024873020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879547730, - "lat": 50.8545727, - "lon": -1.8862975, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BH21 207", - "ref:GB:uprn": "10015353391" - } -}, -{ - "type": "node", - "id": 879547736, - "lat": 50.8567850, - "lon": -1.9158270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "fixme": "Need to add Clump Hill", - "post_box:type": "lamp", - "ref": "BH21 28" - } -}, -{ - "type": "node", - "id": 879556455, - "lat": 50.8035204, - "lon": -1.9330090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Seems to be an ex- post office here", - "post_box:type": "pillar", - "ref": "BH21 76D", - "ref:GB:uprn": "10015320408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879556460, - "lat": 50.7913080, - "lon": -1.9235592, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH21 8", - "ref:GB:uprn": "10015313704" - } -}, -{ - "type": "node", - "id": 879556462, - "lat": 50.7999154, - "lon": -1.9382125, - "tags": { - "amenity": "post_box", - "description": "Against large hedge", - "post_box:type": "lamp", - "ref": "BH21 35", - "ref:GB:uprn": "10015372749", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879560288, - "lat": 51.8057882, - "lon": -0.0229998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "name": "SG12 9WF – Ware Delivery Office", - "ref": "SG12 44" - } -}, -{ - "type": "node", - "id": 879597406, - "lat": 51.8209804, - "lon": -0.0478332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "name": "Gentlemens Field", - "post_box:type": "pillar", - "ref": "SG12 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879636257, - "lat": 51.8334141, - "lon": -0.0319458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Wadesmill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG12 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879655673, - "lat": 51.8842951, - "lon": -0.0686054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "name": "Green End", - "post_box:type": "lamp", - "ref": "SG12 25", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 879657863, - "lat": 51.8679557, - "lon": -0.0394098, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-06", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "name": "Potter's Green", - "ref": "SG12 20", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 879662828, - "lat": 51.8941240, - "lon": -0.0337895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "name": "Henworth Hall", - "ref": "SG11 38" - } -}, -{ - "type": "node", - "id": 879663619, - "lat": 51.8805266, - "lon": -0.0113076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "name": "Old Hall Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 14" - } -}, -{ - "type": "node", - "id": 879665322, - "lat": 51.8833700, - "lon": -0.0282381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-30", - "collection_times": "Mo-Fr 17:15, Sa 08:00", - "name": "Levens Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879666022, - "lat": 51.9019754, - "lon": -0.0251326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "post_box:type": "lamp", - "ref": "SG11 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 879666163, - "lat": 51.9135860, - "lon": -0.0135851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "name": "Coles Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG12 126" - } -}, -{ - "type": "node", - "id": 880347937, - "lat": 56.4830218, - "lon": -2.8114519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 880347943, - "lat": 56.4851663, - "lon": -2.8113661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 880347947, - "lat": 56.4796566, - "lon": -2.8290579, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 880347953, - "lat": 56.4878557, - "lon": -2.8174171, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 880347958, - "lat": 56.4819495, - "lon": -2.8178141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 880347963, - "lat": 56.4837553, - "lon": -2.8531676, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 112D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 880347965, - "lat": 56.4829685, - "lon": -2.8160331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2021-04-03", - "wikimedia_commons": "File:Postbox, Monifieth - geograph.org.uk - 1853972.jpg" - } -}, -{ - "type": "node", - "id": 880522865, - "lat": 50.5356630, - "lon": -3.7124100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 880713777, - "lat": 52.3553037, - "lon": -2.2889906, - "tags": { - "amenity": "post_box", - "name": "Calder Road" - } -}, -{ - "type": "node", - "id": 880844051, - "lat": 50.2115586, - "lon": -5.2978669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR14 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 880885468, - "lat": 55.0283732, - "lon": -1.4467590, - "tags": { - "amenity": "post_box", - "ref": "NE30 50", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 881116367, - "lat": 53.3546326, - "lon": -2.2171215, - "tags": { - "amenity": "post_box", - "ref": "SK9 716" - } -}, -{ - "type": "node", - "id": 881118386, - "lat": 52.5970937, - "lon": -1.1331352, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 881270214, - "lat": 55.9057886, - "lon": -3.2220852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH13 448" - } -}, -{ - "type": "node", - "id": 881448910, - "lat": 51.5574223, - "lon": -0.0061189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 881860009, - "lat": 51.9863079, - "lon": -0.1851326, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG7 254", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 882167374, - "lat": 51.6560985, - "lon": -1.2105012, - "tags": { - "amenity": "post_box", - "name": "Clifton Hampden", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 882294409, - "lat": 50.5653631, - "lon": -3.4802509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "gate_pillar", - "post_box:type": "wall", - "ref": "EX7 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 882322399, - "lat": 53.0415361, - "lon": -0.5863380, - "tags": { - "amenity": "post_box", - "ref": "NG32 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 882495092, - "lat": 50.8893357, - "lon": -3.2217438, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 882798144, - "lat": 51.7696828, - "lon": -2.0966490, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 882956238, - "lat": 52.0432468, - "lon": -1.8819054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "WR12 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883058235, - "lat": 51.8183306, - "lon": -0.0988606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "name": "Waterford", - "post_box:type": "lamp", - "ref": "SG14 43" - } -}, -{ - "type": "node", - "id": 883074989, - "lat": 51.8354793, - "lon": -0.1004475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "name": "Stapleford Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG14 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883084732, - "lat": 51.8705789, - "lon": -0.1468083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "name": "Hooks Cross", - "post_box:type": "lamp", - "ref": "SG14 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883084769, - "lat": 51.0847759, - "lon": -4.0608598, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883093905, - "lat": 51.8605370, - "lon": -0.1174698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "name": "High Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SG14 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883484019, - "lat": 52.0412838, - "lon": -0.1506258, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SG7 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883624723, - "lat": 51.8569233, - "lon": -0.1147581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "name": "Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SG14 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 883628132, - "lat": 51.7945161, - "lon": -0.0928900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "name": "Hertingfordbury Road", - "post_box:type": "pillar", - "ref": "SG14 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 884238542, - "lat": 55.9558356, - "lon": -2.8043541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 369" - } -}, -{ - "type": "node", - "id": 884238559, - "lat": 55.9539975, - "lon": -2.7980825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 190" - } -}, -{ - "type": "node", - "id": 884455998, - "lat": 52.4628678, - "lon": -1.8641627, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 16", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 884641781, - "lat": 52.6937972, - "lon": -0.3894258, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 885502768, - "lat": 52.9716200, - "lon": -2.1809770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 885575044, - "lat": 51.4252968, - "lon": -0.5267079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "TW20 339" - } -}, -{ - "type": "node", - "id": 885575045, - "lat": 51.4147065, - "lon": -0.5327703, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "ref": "TW20 371" - } -}, -{ - "type": "node", - "id": 885575046, - "lat": 51.4080051, - "lon": -0.5326600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW20 336" - } -}, -{ - "type": "node", - "id": 885575059, - "lat": 51.4253537, - "lon": -0.5313902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TW20 313" - } -}, -{ - "type": "node", - "id": 885575062, - "lat": 51.4146861, - "lon": -0.5328245, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "ref": "TW20 370" - } -}, -{ - "type": "node", - "id": 885575063, - "lat": 51.4234371, - "lon": -0.5352687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "TW20 340" - } -}, -{ - "type": "node", - "id": 885575073, - "lat": 51.4185987, - "lon": -0.5341784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TW20 331" - } -}, -{ - "type": "node", - "id": 885589673, - "lat": 52.0318961, - "lon": -0.2857142, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG16 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey without GPS. Interpolation from extant buildings/ways" - } -}, -{ - "type": "node", - "id": 885592711, - "lat": 52.0377402, - "lon": -0.2857200, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG16 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Non-GPS survey" - } -}, -{ - "type": "node", - "id": 885597871, - "lat": 51.4333467, - "lon": -0.5421470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TW20 308" - } -}, -{ - "type": "node", - "id": 885597872, - "lat": 51.4562644, - "lon": -0.5551742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW19 611" - } -}, -{ - "type": "node", - "id": 885597873, - "lat": 51.4320190, - "lon": -0.5433393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "TW20 312D" - } -}, -{ - "type": "node", - "id": 885597874, - "lat": 51.4284596, - "lon": -0.5368997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "177520394164617", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW20 311", - "survey:date": "2020-02-22" - } -}, -{ - "type": "node", - "id": 885597877, - "lat": 51.3926978, - "lon": -0.5185664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT16 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 885597878, - "lat": 51.3632026, - "lon": -0.5632027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KT16 86" - } -}, -{ - "type": "node", - "id": 885629582, - "lat": 53.6692975, - "lon": -1.8633140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HX4 270", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 885679651, - "lat": 51.0483271, - "lon": -2.3566721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 885836723, - "lat": 51.8570519, - "lon": -0.1105666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "name": "Watton at Stone | Post Office", - "post_box:type": "pillar", - "ref": "SG14 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 885836727, - "lat": 51.8557397, - "lon": -0.1085876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "name": "High Street | Watton at Stone", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG14 46" - } -}, -{ - "type": "node", - "id": 885872333, - "lat": 52.4690681, - "lon": -1.8888423, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B12", - "ref": "B12 1412", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 885889435, - "lat": 52.4657906, - "lon": -1.8920793, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B5 29", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 885933311, - "lat": 53.6886919, - "lon": -2.7126432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "114403414679955", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR25 450", - "survey:date": "2022-07-29" - } -}, -{ - "type": "node", - "id": 886011248, - "lat": 52.7958343, - "lon": -2.1177064, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 886011251, - "lat": 52.7925937, - "lon": -2.1193242, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 886054171, - "lat": 51.4806177, - "lon": -0.0091635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Has sign on side: \"Celebrating 50 years of Royal Mail Special Stamps\" 2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 886240686, - "lat": 51.3046351, - "lon": -0.7524275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "GU14 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 886240690, - "lat": 51.3057843, - "lon": -0.7595544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "GU14 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 886416804, - "lat": 50.3342996, - "lon": -4.7790294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL25 153", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 886416811, - "lat": 50.3356013, - "lon": -4.7620703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 27", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 886416818, - "lat": 50.3374075, - "lon": -4.7384652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL25 137", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 886416822, - "lat": 50.3737164, - "lon": -4.7756535, - "tags": { - "amenity": "post_box", - "ref": "PL26 205" - } -}, -{ - "type": "node", - "id": 886416825, - "lat": 50.3761344, - "lon": -4.7793465, - "tags": { - "amenity": "post_box", - "ref": "PL26 48" - } -}, -{ - "type": "node", - "id": 886416829, - "lat": 50.3902410, - "lon": -4.7837694, - "tags": { - "amenity": "post_box", - "ref": "PL26 121" - } -}, -{ - "type": "node", - "id": 886416843, - "lat": 50.3987809, - "lon": -4.7973485, - "tags": { - "amenity": "post_box", - "ref": "PL26 162" - } -}, -{ - "type": "node", - "id": 886416850, - "lat": 50.4023003, - "lon": -4.8157386, - "tags": { - "amenity": "post_box", - "ref": "PL26 36" - } -}, -{ - "type": "node", - "id": 886416851, - "lat": 50.4050920, - "lon": -4.8330724, - "tags": { - "amenity": "post_box", - "ref": "PL26 95" - } -}, -{ - "type": "node", - "id": 886545936, - "lat": 50.4061383, - "lon": -4.8392051, - "tags": { - "amenity": "post_box", - "ref": "PL26 193" - } -}, -{ - "type": "node", - "id": 886545939, - "lat": 50.4347158, - "lon": -4.9379129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 886545944, - "lat": 50.4344522, - "lon": -4.9407972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "mapillary": "1506270796810588", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR9 92", - "royal_cypher": "EIIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 886545983, - "lat": 50.5159674, - "lon": -4.8361079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1330625377489203", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL27 230" - } -}, -{ - "type": "node", - "id": 886545991, - "lat": 50.5162650, - "lon": -4.8382177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL27 37" - } -}, -{ - "type": "node", - "id": 886545999, - "lat": 50.6665285, - "lon": -4.7516139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL34 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 886546005, - "lat": 50.5815692, - "lon": -4.7903596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "mapillary": "1805284313014423", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL30 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-19" - } -}, -{ - "type": "node", - "id": 886582386, - "lat": 51.6024698, - "lon": 0.0231446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "IG8 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 886699081, - "lat": 50.5870350, - "lon": -4.8193265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL29 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 886699101, - "lat": 50.5907040, - "lon": -4.8254154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL29 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 886699125, - "lat": 50.5930389, - "lon": -4.8319456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL29 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 886699137, - "lat": 50.4710088, - "lon": -4.7191034, - "tags": { - "amenity": "post_box", - "mapillary": "1187305608451639", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL31 24", - "survey:date": "2021-07-06" - } -}, -{ - "type": "node", - "id": 886699146, - "lat": 50.4711500, - "lon": -4.7208300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL31 21;PL31 2100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 886699180, - "lat": 50.4700997, - "lon": -4.7187291, - "tags": { - "amenity": "post_box", - "mapillary": "559643598922334", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL31 229", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 886699188, - "lat": 50.4459129, - "lon": -4.6627931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "mapillary": "1181352033214915", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL30 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 886988414, - "lat": 55.9624380, - "lon": -3.9474535, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 886989968, - "lat": 52.7847012, - "lon": -2.1233216, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 887111585, - "lat": 52.8628815, - "lon": -1.4413379, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DE73 1393", - "source": "survey" - } -}, -{ - "type": "node", - "id": 887113591, - "lat": 53.6346039, - "lon": -1.7784023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 887114218, - "lat": 53.6402012, - "lon": -1.7818249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 888149528, - "lat": 56.5612666, - "lon": -3.6020392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH8 160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 888164585, - "lat": 57.0361307, - "lon": -4.8121167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH34 47", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 888164590, - "lat": 56.9779351, - "lon": -4.8832573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "391641633120976", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH34 86", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2022-09-04" - } -}, -{ - "type": "node", - "id": 888164594, - "lat": 56.9173501, - "lon": -4.9457476, - "tags": { - "amenity": "post_box", - "ref": "PH34 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 888442578, - "lat": 53.7860421, - "lon": -1.0123320, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO8 72" - } -}, -{ - "type": "node", - "id": 888519109, - "lat": 51.6760900, - "lon": -0.5989775, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-11", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "HP6 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 888533870, - "lat": 51.6856965, - "lon": -0.6147419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP6 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 888544343, - "lat": 52.6496896, - "lon": -1.2052813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "110589971455685", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-11-20" - } -}, -{ - "type": "node", - "id": 888544375, - "lat": 52.6462510, - "lon": -1.2026342, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 888549384, - "lat": 51.6736810, - "lon": -0.5920778, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "HP6 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 888554218, - "lat": 51.7207094, - "lon": -0.5984074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 888615387, - "lat": 51.5871682, - "lon": -0.5244206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB9 66" - } -}, -{ - "type": "node", - "id": 888902217, - "lat": 52.3308787, - "lon": 1.6753276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP18 5537", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 888970191, - "lat": 53.6035718, - "lon": -2.8422442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L40 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 889075790, - "lat": 52.3311355, - "lon": 1.6814951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP18 5536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 889232729, - "lat": 52.1381821, - "lon": -1.6085177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 889313146, - "lat": 53.6894717, - "lon": -2.7166891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PR25 48" - } -}, -{ - "type": "node", - "id": 889378175, - "lat": 51.0826568, - "lon": -1.0834922, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 889417722, - "lat": 52.7878151, - "lon": -2.1188596, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 889481498, - "lat": 51.4436548, - "lon": -1.7323423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 889511106, - "lat": 52.8559713, - "lon": -0.7981032, - "tags": { - "amenity": "post_box", - "ele": "99.1408691", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 889528295, - "lat": 52.8531555, - "lon": -0.7601103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG32 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 890049431, - "lat": 53.5640985, - "lon": -2.8916364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "L39 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 890053961, - "lat": 53.5667486, - "lon": -2.8864959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 890073099, - "lat": 53.5633640, - "lon": -2.8745750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L40 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 890263275, - "lat": 51.0669536, - "lon": 1.0809481, - "tags": { - "amenity": "post_box", - "ref": "CT21 136" - } -}, -{ - "type": "node", - "id": 890263284, - "lat": 51.0764302, - "lon": 1.1192954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT21 186" - } -}, -{ - "type": "node", - "id": 890263294, - "lat": 51.0692001, - "lon": 1.0801971, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CT21 116" - } -}, -{ - "type": "node", - "id": 890263296, - "lat": 51.0724211, - "lon": 1.1193975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "ref": "CT21 131" - } -}, -{ - "type": "node", - "id": 890479241, - "lat": 52.6619241, - "lon": 1.2680669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 890480079, - "lat": 51.1042653, - "lon": 0.8148694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN26 137" - } -}, -{ - "type": "node", - "id": 890489598, - "lat": 52.4650850, - "lon": -1.8863095, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 185", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 890719228, - "lat": 51.4500524, - "lon": -0.1738194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 6" - } -}, -{ - "type": "node", - "id": 890719231, - "lat": 51.4393062, - "lon": -0.1867344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 890719238, - "lat": 51.4422264, - "lon": -0.1827519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 26" - } -}, -{ - "type": "node", - "id": 890719259, - "lat": 51.4425890, - "lon": -0.1778972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 60" - } -}, -{ - "type": "node", - "id": 890719263, - "lat": 51.4409680, - "lon": -0.1870681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 890719264, - "lat": 51.4389965, - "lon": -0.1829552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 38" - } -}, -{ - "type": "node", - "id": 890729759, - "lat": 51.4426092, - "lon": -0.1960655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 22" - } -}, -{ - "type": "node", - "id": 890729761, - "lat": 51.4436199, - "lon": -0.2025498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 35", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 890729762, - "lat": 51.4420518, - "lon": -0.2040974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 41" - } -}, -{ - "type": "node", - "id": 890729767, - "lat": 51.4456509, - "lon": -0.2057001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 54" - } -}, -{ - "type": "node", - "id": 890729770, - "lat": 51.4454894, - "lon": -0.2008566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 890729772, - "lat": 51.4447547, - "lon": -0.1865967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 44" - } -}, -{ - "type": "node", - "id": 890729773, - "lat": 51.4403436, - "lon": -0.1943386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 890729777, - "lat": 51.4422678, - "lon": -0.1907388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 890729780, - "lat": 51.4428924, - "lon": -0.1976718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 14" - } -}, -{ - "type": "node", - "id": 890747085, - "lat": 51.4481852, - "lon": -0.2111546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 55" - } -}, -{ - "type": "node", - "id": 890747104, - "lat": 51.4515282, - "lon": -0.1965443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 890747110, - "lat": 51.4475146, - "lon": -0.2077996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 31" - } -}, -{ - "type": "node", - "id": 890747115, - "lat": 51.4500889, - "lon": -0.2145216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 57" - } -}, -{ - "type": "node", - "id": 890747120, - "lat": 51.4498602, - "lon": -0.1995074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 890747135, - "lat": 51.4497257, - "lon": -0.2087140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 36" - } -}, -{ - "type": "node", - "id": 890747140, - "lat": 51.4472281, - "lon": -0.2048404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 47" - } -}, -{ - "type": "node", - "id": 890747145, - "lat": 51.4528719, - "lon": -0.2016929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 20" - } -}, -{ - "type": "node", - "id": 890765386, - "lat": 51.4568819, - "lon": -0.1981611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 890765389, - "lat": 51.4586544, - "lon": -0.1952046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 890765391, - "lat": 51.4584075, - "lon": -0.1853145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 18", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 890765409, - "lat": 51.4608703, - "lon": -0.1877688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW18 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 890765412, - "lat": 51.4620677, - "lon": -0.1990986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "839898823622514", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 65", - "survey:date": "2021-07-11" - } -}, -{ - "type": "node", - "id": 890765415, - "lat": 51.4525645, - "lon": -0.1842819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 7" - } -}, -{ - "type": "node", - "id": 890765428, - "lat": 51.4582455, - "lon": -0.1787630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 52", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 890765433, - "lat": 51.4594567, - "lon": -0.1903942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 890765440, - "lat": 51.4506396, - "lon": -0.1813028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3463025037274479", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 2", - "survey:date": "2023-03-21" - } -}, -{ - "type": "node", - "id": 890765454, - "lat": 51.4529517, - "lon": -0.1765833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 890765458, - "lat": 51.4513681, - "lon": -0.1825352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 27" - } -}, -{ - "type": "node", - "id": 890765462, - "lat": 51.4580437, - "lon": -0.1749154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW18 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 890765466, - "lat": 51.4564963, - "lon": -0.1808328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 13", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 890803891, - "lat": 51.4661230, - "lon": -0.3014401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 890803936, - "lat": 51.4639876, - "lon": -0.3015842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW9 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 890921612, - "lat": 52.0082993, - "lon": -0.3024673, - "tags": { - "access:conditional": "Mo-Fr 16:45; Sa 12:15", - "amenity": "post_box", - "collection_plate": "CP1", - "post_box:type": "wall", - "ref": "SG16 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 891050298, - "lat": 52.3869515, - "lon": 0.1953021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 891050351, - "lat": 52.3856295, - "lon": 0.2139787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 891117820, - "lat": 54.7300442, - "lon": -1.5862025, - "tags": { - "amenity": "post_box", - "ele": "82.32", - "ref": "DH6 16" - } -}, -{ - "type": "node", - "id": 891118636, - "lat": 51.4884355, - "lon": -2.6253256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 1126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 891118642, - "lat": 51.4884214, - "lon": -2.6253367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "bs9 1126 to right same details", - "post_box:type": "pillar", - "ref": "BS9 1127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 891147805, - "lat": 53.6761326, - "lon": -1.9180490, - "tags": { - "amenity": "post_box", - "ref": "HX4 139" - } -}, -{ - "type": "node", - "id": 891147806, - "lat": 53.6759503, - "lon": -1.9290869, - "tags": { - "amenity": "post_box", - "ref": "HX4 286" - } -}, -{ - "type": "node", - "id": 891355232, - "lat": 52.6669659, - "lon": -0.2797253, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 891893552, - "lat": 54.0825145, - "lon": -1.2436767, - "tags": { - "amenity": "post_box", - "note": "is in window", - "post_box:type": "wall", - "ref": "YO61 225", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 892012434, - "lat": 51.3240440, - "lon": 0.4187598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 107" - } -}, -{ - "type": "node", - "id": 892477869, - "lat": 50.8703684, - "lon": -0.5219980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 892477887, - "lat": 50.8874436, - "lon": -0.5474926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "last_checked": "2022-05-28", - "note": "When I used this postbox on Saturday 28.05.2022 there is a sticker saying that Royal Mail plans to change the collection times.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BN18 1322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 892575167, - "lat": 53.3526133, - "lon": -2.2205590, - "tags": { - "amenity": "post_box", - "ref": "SK9 663" - } -}, -{ - "type": "node", - "id": 892720263, - "lat": 51.1348081, - "lon": 0.8579922, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN23 276", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN23 276D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 892720264, - "lat": 51.1358572, - "lon": 0.8628985, - "tags": { - "amenity": "post_box", - "ref": "TN23 227" - } -}, -{ - "type": "node", - "id": 892727352, - "lat": 51.5672286, - "lon": -0.0941659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 892734783, - "lat": 50.8374424, - "lon": -0.1403457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "name": "Beaconsfield Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 892736122, - "lat": 50.8394811, - "lon": -0.1392742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 282", - "ref:GB:uprn": "10015359854", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 892736461, - "lat": 50.8417263, - "lon": -0.1365934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 292D", - "ref:GB:uprn": "10015306381", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 892907786, - "lat": 51.5547085, - "lon": -2.5739095, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS32 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 893274173, - "lat": 53.3546242, - "lon": -2.2115102, - "tags": { - "amenity": "post_box", - "ref": "SK9 705" - } -}, -{ - "type": "node", - "id": 893402385, - "lat": 59.0335017, - "lon": -2.9089935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:45", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "KW17 124", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 893964373, - "lat": 52.6453951, - "lon": -1.7098473, - "tags": { - "amenity": "post_box", - "ref": "B79 420", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 894147099, - "lat": 52.6481658, - "lon": -1.7092410, - "tags": { - "amenity": "post_box", - "postal_code": "B79", - "ref": "B79 1234", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 894147180, - "lat": 52.6471788, - "lon": -1.7017915, - "tags": { - "amenity": "post_box", - "postal_code": "B79", - "ref": "B79 1371", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 894153418, - "lat": 51.1842854, - "lon": 1.3757576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 92", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 894153432, - "lat": 51.2008221, - "lon": 1.3886080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "image": "https://www.bing.com/maps?osid=b5c85ebe-435f-4532-afd5-6eddcea73a89&cp=51.200788~1.388722&lvl=19&dir=338.6433&pi=-9.1308&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT14 72", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 894153440, - "lat": 51.1857465, - "lon": 1.3976356, - "tags": { - "amenity": "post_box", - "ref": "CT14 85" - } -}, -{ - "type": "node", - "id": 894153444, - "lat": 51.1849527, - "lon": 1.3999991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT14 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894176465, - "lat": 52.6386500, - "lon": -1.7110286, - "tags": { - "amenity": "post_box", - "postal_code": "B79", - "ref": "B79 1411", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 894224372, - "lat": 51.1971356, - "lon": 1.2713558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894224377, - "lat": 51.1396377, - "lon": 1.3230996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894229895, - "lat": 51.1893560, - "lon": 1.2325377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CT15 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894240978, - "lat": 51.1245442, - "lon": 1.3115227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT17 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894260801, - "lat": 51.1155587, - "lon": 1.1846594, - "tags": { - "amenity": "post_box", - "ref": "CT18 148" - } -}, -{ - "type": "node", - "id": 894265088, - "lat": 53.8411673, - "lon": -3.0540393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894272424, - "lat": 53.8425986, - "lon": -3.0504495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 227", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 894281597, - "lat": 52.3243995, - "lon": 1.6794101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP18 5546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894281599, - "lat": 52.3261854, - "lon": 1.6793378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP18 5526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894281624, - "lat": 52.3275558, - "lon": 1.6767707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP18 5432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894403784, - "lat": 53.3403424, - "lon": -1.6897330, - "tags": { - "amenity": "post_box", - "ele": "148.4080811", - "post_box:type": "wall", - "ref": "S33 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894503876, - "lat": 51.5549257, - "lon": -0.2280613, - "tags": { - "amenity": "post_box", - "ref": "NW2 68" - } -}, -{ - "type": "node", - "id": 894503955, - "lat": 51.5566673, - "lon": -0.2237068, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NW2 41" - } -}, -{ - "type": "node", - "id": 894655733, - "lat": 51.5807008, - "lon": -1.7986195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 56" - } -}, -{ - "type": "node", - "id": 894655847, - "lat": 51.5797136, - "lon": -1.8053765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 161" - } -}, -{ - "type": "node", - "id": 894766622, - "lat": 51.9467569, - "lon": -0.0767144, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "Cross Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG9 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 894766806, - "lat": 51.9466126, - "lon": -0.0819014, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-22", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "name": "Cottered Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG9 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895451571, - "lat": 55.7847645, - "lon": -4.4265077, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 895489290, - "lat": 53.8497806, - "lon": -3.0520398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-03-07", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 895512056, - "lat": 55.8771450, - "lon": -4.2878625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G12 126;G12 126", - "ref:duplicates": "2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 895521584, - "lat": 52.0775780, - "lon": -0.2509938, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "SG18 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895549095, - "lat": 51.7059784, - "lon": -2.0360401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL7 33D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "local_knowledge;survey" - } -}, -{ - "type": "node", - "id": 895550921, - "lat": 52.0837800, - "lon": -0.2651002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "https://www.royalmail.com/services-near-you#" - } -}, -{ - "type": "node", - "id": 895600898, - "lat": 52.3676104, - "lon": 0.9958918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "inscription": "Property of Royal Mail / Security Marked And Traceable / 110024 / RM Security - 02072396655", - "label_date": "2022-02-10", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895600928, - "lat": 52.3729386, - "lon": 1.1011166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP22 7008" - } -}, -{ - "type": "node", - "id": 895600931, - "lat": 52.3728576, - "lon": 0.9270717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP22 7033", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895601005, - "lat": 52.3619736, - "lon": 0.9202818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:45", - "post_box:type": "lamp", - "ref": "IP22 7037", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895601041, - "lat": 52.3904161, - "lon": 0.9032878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:20; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP22 7027", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895601119, - "lat": 52.3761363, - "lon": 0.9167066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP22 7199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895857955, - "lat": 50.7793615, - "lon": -1.0769044, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895857957, - "lat": 50.7833952, - "lon": -1.0756203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO4 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895857958, - "lat": 50.7877322, - "lon": -1.0438023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 88", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 895857960, - "lat": 50.8248916, - "lon": -1.0525275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO3 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895857962, - "lat": 50.7807886, - "lon": -1.0796440, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895869107, - "lat": 52.3358684, - "lon": 0.8038185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "lamp", - "ref": "IP31 2107" - } -}, -{ - "type": "node", - "id": 895869109, - "lat": 52.3397315, - "lon": 0.8129373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "note": "Non-standard or old plate says \"This is Postbox No. v2017\", so guessing ref from knowledge of postal district. Collection times may be outdated.", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP31 2017", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 895869124, - "lat": 52.3369311, - "lon": 0.8069293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 8226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895870347, - "lat": 52.4152531, - "lon": 0.7566399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP24 3396D", - "ref:GB:uprn": "10015386327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 895907594, - "lat": 52.3149625, - "lon": 0.7831767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 896046060, - "lat": 52.1673913, - "lon": 0.8003648, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP30 2069" - } -}, -{ - "type": "node", - "id": 896046218, - "lat": 52.2410863, - "lon": 0.7439288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "730832565162995", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP32 2279", - "survey:date": "2023-03-25" - } -}, -{ - "type": "node", - "id": 896046351, - "lat": 52.1860471, - "lon": 0.7857022, - "tags": { - "amenity": "post_box", - "ref": "IP30 2021" - } -}, -{ - "type": "node", - "id": 896046456, - "lat": 52.1350772, - "lon": 0.8156393, - "tags": { - "amenity": "post_box", - "ref": "IP30 2259" - } -}, -{ - "type": "node", - "id": 896046525, - "lat": 52.1972470, - "lon": 0.7710225, - "tags": { - "amenity": "post_box", - "ref": "IP30 2152" - } -}, -{ - "type": "node", - "id": 896046589, - "lat": 52.2201330, - "lon": 0.7692538, - "tags": { - "amenity": "post_box", - "ref": "IP30 2029" - } -}, -{ - "type": "node", - "id": 896064945, - "lat": 51.5581896, - "lon": -2.5498484, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BS32 366", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 897142868, - "lat": 52.3137268, - "lon": 1.6532425, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP18 5535" - } -}, -{ - "type": "node", - "id": 897214668, - "lat": 51.7847645, - "lon": -0.2003285, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "AL7 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 897229590, - "lat": 52.0869432, - "lon": -0.2648234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG18 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 897237606, - "lat": 52.0868229, - "lon": -0.2593200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG18 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 897274366, - "lat": 52.0832800, - "lon": -0.2519694, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG18 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 897303954, - "lat": 52.0524577, - "lon": -0.2695936, - "tags": { - "amenity": "post_box", - "note": "Large lamp box. Need to scan to get ref", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 897565933, - "lat": 51.6526606, - "lon": -0.2186677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN5 9" - } -}, -{ - "type": "node", - "id": 897597755, - "lat": 51.2397291, - "lon": -2.9914584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 897606985, - "lat": 51.2979115, - "lon": -0.7536087, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_collection_times": "Mo-Fr 16:45; Sa 11:15", - "old_ref": "GU14 30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU14 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 897606990, - "lat": 51.3005939, - "lon": -0.7532949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "ref": "GU14 130" - } -}, -{ - "type": "node", - "id": 897624727, - "lat": 52.1307599, - "lon": 0.7149723, - "tags": { - "amenity": "post_box", - "ref": "IP29 8214" - } -}, -{ - "type": "node", - "id": 897725758, - "lat": 52.0610144, - "lon": 0.7495306, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 897725761, - "lat": 51.9970935, - "lon": 0.7473026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO8 357", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 897725843, - "lat": 52.0103880, - "lon": 0.7381095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1073D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 897725878, - "lat": 52.0702615, - "lon": 0.7014346, - "tags": { - "amenity": "post_box", - "ref": "CO10 1044" - } -}, -{ - "type": "node", - "id": 897747421, - "lat": 51.9715583, - "lon": 0.7701607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "CO8 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 897755498, - "lat": 51.9712098, - "lon": 0.7719115, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO8 311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 897983320, - "lat": 52.1645927, - "lon": -2.8903691, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 897983327, - "lat": 52.1595815, - "lon": -2.8747889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "HR4 689", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 898055088, - "lat": 58.0476643, - "lon": -5.2844742, - "tags": { - "amenity": "post_box", - "note": "plate says IV23 331; presumed wrong", - "ref": "IV26 331", - "source": "survey" - } -}, -{ - "type": "node", - "id": 898055092, - "lat": 58.0564296, - "lon": -5.3560748, - "tags": { - "amenity": "post_box", - "ref": "IV26 194", - "source": "survey" - } -}, -{ - "type": "node", - "id": 898081575, - "lat": 51.8348100, - "lon": -0.2259225, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "AL6 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 898109479, - "lat": 51.5746479, - "lon": -0.3959092, - "tags": { - "amenity": "post_box", - "ref": "HA4 426" - } -}, -{ - "type": "node", - "id": 898109482, - "lat": 51.5746043, - "lon": -0.3901118, - "tags": { - "amenity": "post_box", - "ref": "HA4 462" - } -}, -{ - "type": "node", - "id": 898109484, - "lat": 51.5714020, - "lon": -0.4024120, - "tags": { - "amenity": "post_box", - "ref": "HA4 425" - } -}, -{ - "type": "node", - "id": 898109508, - "lat": 51.5718133, - "lon": -0.3926446, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HA4 251" - } -}, -{ - "type": "node", - "id": 898166724, - "lat": 53.3306462, - "lon": -1.6619186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "169.7972412", - "post_box:type": "wall", - "ref": "S32 336", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source:type": "Geograph" - } -}, -{ - "type": "node", - "id": 898174206, - "lat": 53.2972511, - "lon": -1.7459183, - "tags": { - "amenity": "post_box", - "ele": "298.6129150", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SK17 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 898238438, - "lat": 53.3041781, - "lon": -1.7565094, - "tags": { - "amenity": "post_box", - "ele": "285.1546631", - "post_box:type": "lamp", - "ref": "SK17 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 898733436, - "lat": 51.9579077, - "lon": 0.7862992, - "tags": { - "amenity": "post_box", - "ref": "CO8 289" - } -}, -{ - "type": "node", - "id": 898766555, - "lat": 51.9046551, - "lon": 0.8866808, - "tags": { - "amenity": "post_box", - "ref": "CO4 356" - } -}, -{ - "type": "node", - "id": 898766573, - "lat": 51.9129054, - "lon": 0.8527309, - "tags": { - "amenity": "post_box", - "ref": "CO6 369" - } -}, -{ - "type": "node", - "id": 898766613, - "lat": 51.9139280, - "lon": 0.8558538, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 898766625, - "lat": 51.9231629, - "lon": 0.8036748, - "tags": { - "amenity": "post_box", - "ref": "CO6 199" - } -}, -{ - "type": "node", - "id": 898766679, - "lat": 51.9267733, - "lon": 0.8070549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 373" - } -}, -{ - "type": "node", - "id": 898875997, - "lat": 51.3705255, - "lon": 0.5202974, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 247D", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 898876012, - "lat": 51.3645372, - "lon": 0.5187898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 3D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 898876016, - "lat": 51.3738754, - "lon": 0.5211933, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 33D", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 898876028, - "lat": 51.3593117, - "lon": 0.5139216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME4 250D" - } -}, -{ - "type": "node", - "id": 899024936, - "lat": 55.8584888, - "lon": -4.2489699, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-22", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G1 10;G1 10A", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 899032929, - "lat": 51.8819505, - "lon": -0.4324190, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "LU1 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 899032933, - "lat": 51.8800200, - "lon": -0.4225020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "description": "Three apertures. One says \"locals\"", - "note": "Outside Luton Enquiry Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:design": "wall_box_triple_aperture", - "post_box:type": "wall", - "ref": "LU1 231", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 899032939, - "lat": 51.8810620, - "lon": -0.4279650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899036681, - "lat": 51.8802800, - "lon": -0.4155653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LU1 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 899036683, - "lat": 51.8810300, - "lon": -0.4180069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "fixme": "Position of Galaxy is wrong. Need to rescan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899036689, - "lat": 51.8785551, - "lon": -0.4151806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LU1 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 899060881, - "lat": 50.7964849, - "lon": -1.0765072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO1 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899061206, - "lat": 52.1062462, - "lon": -2.0535937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "wall", - "ref": "WR10 400", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 899273130, - "lat": 51.4617389, - "lon": -0.3045613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899273138, - "lat": 51.4602164, - "lon": -0.3051218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "level": "0", - "note": "inside shop WH Smiths", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW9 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899335455, - "lat": 52.0846605, - "lon": -1.9631753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR11 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899350795, - "lat": 53.2384296, - "lon": -1.3868509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "127.4996338", - "post_box:type": "lamp", - "ref": "S44 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899374958, - "lat": 51.5279571, - "lon": -0.1974172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899414536, - "lat": 51.5236625, - "lon": -0.1984186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899421564, - "lat": 51.2537723, - "lon": -0.1581029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 278D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 899434348, - "lat": 55.0460776, - "lon": -1.7142855, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899434359, - "lat": 55.0333628, - "lon": -1.7584956, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 899436671, - "lat": 51.5208623, - "lon": -0.1916921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 26D;W2 226D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 899436844, - "lat": 51.5210904, - "lon": -0.1882495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W2 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899520217, - "lat": 51.0406801, - "lon": 0.6433130, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN17 177" - } -}, -{ - "type": "node", - "id": 899520541, - "lat": 52.7816090, - "lon": -2.1052840, - "tags": { - "amenity": "post_box", - "ref": "ST17 181" - } -}, -{ - "type": "node", - "id": 899592384, - "lat": 50.8588555, - "lon": -2.0170751, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 16", - "ref:GB:uprn": "10015309902" - } -}, -{ - "type": "node", - "id": 899592393, - "lat": 50.8544155, - "lon": -1.9849782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "BH21 7HG", - "ref": "BH21 72", - "ref:GB:uprn": "10015432871", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 899592405, - "lat": 50.8417588, - "lon": -1.9414043, - "tags": { - "amenity": "post_box", - "check_date": "2010-09-06", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "description": "Small box in the wall of the cottage named Greenbanks", - "post_box:design": "hovis", - "post_box:type": "wall", - "ref": "BH21 41", - "ref:GB:uprn": "10015323674", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 899592431, - "lat": 50.8510211, - "lon": -1.9974837, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 30", - "ref:GB:uprn": "10015390100" - } -}, -{ - "type": "node", - "id": 899592492, - "lat": 50.8376365, - "lon": -1.9546230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 141", - "ref:GB:uprn": "10015283723", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592499, - "lat": 50.8335723, - "lon": -1.9614948, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 53", - "ref:GB:uprn": "10015476265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592524, - "lat": 50.8693471, - "lon": -1.9490646, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 143", - "ref:GB:uprn": "10015309464" - } -}, -{ - "type": "node", - "id": 899592531, - "lat": 50.8668056, - "lon": -1.9874549, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 74", - "ref:GB:uprn": "10015347899" - } -}, -{ - "type": "node", - "id": 899592538, - "lat": 50.8298047, - "lon": -2.0073505, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 155", - "ref:GB:uprn": "10015418615" - } -}, -{ - "type": "node", - "id": 899592565, - "lat": 50.8087133, - "lon": -2.0120326, - "tags": { - "amenity": "post_box", - "note": "There seems to be an old PO here.", - "post_box:type": "lamp", - "ref": "BH21 69", - "ref:GB:uprn": "10015393175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592573, - "lat": 50.8187702, - "lon": -1.9789230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH21 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592611, - "lat": 50.8384670, - "lon": -1.9743630, - "tags": { - "amenity": "post_box", - "description": "By entrance to Gaunts House.", - "post_box:type": "wall", - "ref": "BH21 40", - "ref:GB:uprn": "10015372718", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899592644, - "lat": 50.8336828, - "lon": -1.9953252, - "tags": { - "amenity": "post_box", - "description": "Victorian", - "fixme": "Identify church in whose wall ths lies. Determine which side of road. Determine royal_cypher", - "post_box:type": "wall", - "ref": "BH21 11", - "ref:GB:uprn": "10015427592" - } -}, -{ - "type": "node", - "id": 899592670, - "lat": 50.8511510, - "lon": -1.9669820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "description": "Half hidden in hedge, by brow of the hill.", - "post_box:type": "lamp", - "ref": "BH21 169", - "ref:GB:uprn": "10015300827" - } -}, -{ - "type": "node", - "id": 899592678, - "lat": 50.8461650, - "lon": -1.9692990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "BH21 14", - "ref:GB:uprn": "10015387386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592745, - "lat": 50.8535733, - "lon": -1.9567723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 20", - "ref:GB:uprn": "10015472134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 899592767, - "lat": 50.8632510, - "lon": -2.0118189, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 100", - "ref:GB:uprn": "10015478460" - } -}, -{ - "type": "node", - "id": 899592769, - "lat": 50.8601064, - "lon": -1.9639917, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 31", - "ref:GB:uprn": "10015273668", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592781, - "lat": 50.8446200, - "lon": -1.8648430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "pillar", - "ref": "BH21 123", - "ref:GB:uprn": "10015290376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592804, - "lat": 50.8222413, - "lon": -1.9857520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "description": "Layby on north side of Grange.", - "post_box:type": "lamp", - "ref": "BH21 18", - "ref:GB:uprn": "10015463390" - } -}, -{ - "type": "node", - "id": 899592809, - "lat": 50.8667157, - "lon": -1.9553838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "BH21 90", - "ref:GB:uprn": "10015830201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592865, - "lat": 50.8160719, - "lon": -1.9820404, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 132", - "ref:GB:uprn": "10015426412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899592881, - "lat": 50.8619031, - "lon": -1.9752161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "BH21 168", - "ref:GB:uprn": "10015440163" - } -}, -{ - "type": "node", - "id": 899622906, - "lat": 52.7798245, - "lon": -2.1122189, - "tags": { - "amenity": "post_box", - "ref": "ST17 25" - } -}, -{ - "type": "node", - "id": 899623003, - "lat": 52.7761420, - "lon": -2.1108907, - "tags": { - "amenity": "post_box", - "ref": "ST17 56" - } -}, -{ - "type": "node", - "id": 899702608, - "lat": 51.2490620, - "lon": -0.1796018, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P141-0729" - } -}, -{ - "type": "node", - "id": 899828851, - "lat": 51.3592415, - "lon": -0.3455511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899851512, - "lat": 51.2928329, - "lon": -0.3562186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "ref": "KT22 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899851525, - "lat": 51.2854753, - "lon": -0.3613194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "KT22 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 899852931, - "lat": 51.2819243, - "lon": -0.3684418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "KT23 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899855627, - "lat": 51.2769515, - "lon": -0.3864258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 3", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 899859977, - "lat": 51.2510354, - "lon": -0.4309426, - "tags": { - "amenity": "post_box", - "ref": "KT24 61" - } -}, -{ - "type": "node", - "id": 899874168, - "lat": 51.1804263, - "lon": -0.5231003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU5 209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:geometry": "GPS" - } -}, -{ - "type": "node", - "id": 899881477, - "lat": 51.1490459, - "lon": -0.5725129, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU8 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899888815, - "lat": 51.1559264, - "lon": -0.6129290, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU8 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 899888817, - "lat": 51.1474182, - "lon": -0.6179878, - "tags": { - "amenity": "post_box", - "ref": "GU8 91" - } -}, -{ - "type": "node", - "id": 899897256, - "lat": 51.0916425, - "lon": -0.6882956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU27 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 899902243, - "lat": 51.0889153, - "lon": -0.7088933, - "tags": { - "amenity": "post_box", - "collection_plate": "CP6", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "colour": "green", - "last_checked": "2020-09-10", - "note": "John Penfold, the designer of the penfold postbox, was born and is buried in Haslemere", - "note_1": "This collection plate CP6 is very rare.", - "note_2": "This postbox is of a hexagonal prism shape of pillar.", - "operator": "Royal Mail", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "GU27 167", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 899924115, - "lat": 50.8719854, - "lon": -0.7868772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO18 366", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 900294411, - "lat": 51.7117371, - "lon": -4.7045784, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 900294476, - "lat": 51.7099859, - "lon": -4.6997613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 900294480, - "lat": 51.7120415, - "lon": -4.7017005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 900303274, - "lat": 53.6927720, - "lon": -1.9183868, - "tags": { - "amenity": "post_box", - "ref": "HX6 249" - } -}, -{ - "type": "node", - "id": 900303276, - "lat": 53.7036683, - "lon": -1.9087288, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HX6 288" - } -}, -{ - "type": "node", - "id": 900303277, - "lat": 53.6999203, - "lon": -1.9014970, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HX6 268", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 900427711, - "lat": 52.4137964, - "lon": -1.8837840, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to find number when plate reappears", - "note": "collection times plate removed", - "post_box:type": "pillar", - "ref": "B14 818", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 900442288, - "lat": 52.4104391, - "lon": -1.8821469, - "tags": { - "amenity": "post_box", - "ref": "B14 880", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 900721487, - "lat": 51.8084678, - "lon": 0.7527609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO5 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 901001164, - "lat": 50.9459431, - "lon": -1.2227932, - "tags": { - "amenity": "post_box", - "note": "I went to this location on 26.01.2020 and this postbox is not present. ", - "ref": "SO32 341" - } -}, -{ - "type": "node", - "id": 901329049, - "lat": 52.2043482, - "lon": -0.8959475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 901329057, - "lat": 52.2162221, - "lon": -0.9348756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 901566302, - "lat": 51.8857500, - "lon": -0.4287994, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LU1 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 901700640, - "lat": 54.4337606, - "lon": -2.9633111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA22 133", - "source": "survey" - } -}, -{ - "type": "node", - "id": 902316362, - "lat": 55.7858105, - "lon": -4.8595152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "fixme": "Moved here from centre of junction, but cannot see it from space", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA30 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 902537176, - "lat": 51.2989864, - "lon": -0.7469858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1134859793823245", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-09-19" - } -}, -{ - "type": "node", - "id": 902537184, - "lat": 51.3036400, - "lon": -0.7483028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GU14 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 902635464, - "lat": 52.0858723, - "lon": -0.2628954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SG18 5", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 902639030, - "lat": 52.7873205, - "lon": -2.0873417, - "tags": { - "amenity": "post_box", - "name": "Chepstow Drive", - "post_box:type": "pillar", - "ref": "ST17 450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 902639034, - "lat": 52.7891243, - "lon": -2.0855929, - "tags": { - "amenity": "post_box", - "name": "Wildwood Drive", - "post_box:type": "pillar", - "ref": "ST17 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 902648880, - "lat": 52.4131541, - "lon": -1.7715457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B91", - "ref": "B91 343D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 903333873, - "lat": 51.0346357, - "lon": -1.7642955, - "tags": { - "amenity": "post_box", - "name": "Bodenham", - "ref": "SP5 197" - } -}, -{ - "type": "node", - "id": 903428319, - "lat": 51.7797600, - "lon": -0.0131053, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "SG12 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 903538616, - "lat": 51.4826531, - "lon": -2.6010856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS7", - "ref": "BS6 329", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 903571345, - "lat": 51.7934695, - "lon": -0.0144276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SG12 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 903931629, - "lat": 52.4670666, - "lon": -1.8755790, - "tags": { - "amenity": "post_box", - "ref": "B11 1072", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 903982850, - "lat": 52.4029818, - "lon": -1.9174037, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B38", - "ref": "B38 996", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 904069108, - "lat": 53.8089290, - "lon": -3.0544024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 904072701, - "lat": 54.3234766, - "lon": -2.7515128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "LA9 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 904100486, - "lat": 52.4054040, - "lon": -1.8989783, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to determin ref number when plate returned", - "note": "collection times plate absent", - "ref": "B14 363", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 904139969, - "lat": 52.3976100, - "lon": -1.8304318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 904139972, - "lat": 52.3994932, - "lon": -1.8394629, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 1324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 904282705, - "lat": 52.3872120, - "lon": -1.7933925, - "tags": { - "amenity": "post_box", - "postal_code": "B90", - "ref": "B90 1410", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 904282714, - "lat": 52.3879836, - "lon": -1.7977829, - "tags": { - "amenity": "post_box", - "ref": "B90 1362", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 904521458, - "lat": 52.0471100, - "lon": -0.0235458, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "Notes say Martin's, but now PO and WH Smith", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG8 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 904636402, - "lat": 53.7483550, - "lon": -1.6645781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD11 458" - } -}, -{ - "type": "node", - "id": 904636403, - "lat": 53.7541820, - "lon": -1.6695360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD11 459" - } -}, -{ - "type": "node", - "id": 904902878, - "lat": 52.0386976, - "lon": -1.8651897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "WR12 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 904934335, - "lat": 51.3483413, - "lon": 1.4262351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT10 123" - } -}, -{ - "type": "node", - "id": 904942697, - "lat": 54.4335291, - "lon": -2.9569435, - "tags": { - "amenity": "post_box", - "ref": "LA22 138" - } -}, -{ - "type": "node", - "id": 904997611, - "lat": 52.9736744, - "lon": -0.0214412, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 24" - } -}, -{ - "type": "node", - "id": 904997614, - "lat": 52.9709349, - "lon": -0.0198426, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 16" - } -}, -{ - "type": "node", - "id": 904997616, - "lat": 52.9704180, - "lon": -0.0135448, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 7" - } -}, -{ - "type": "node", - "id": 905025790, - "lat": 51.2478655, - "lon": 1.3049903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT13 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 905026816, - "lat": 51.2749570, - "lon": 1.3366907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "ref": "CT13 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 905027400, - "lat": 53.1490035, - "lon": -0.2173211, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 927", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 905027405, - "lat": 53.1519890, - "lon": -0.2186836, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 300" - } -}, -{ - "type": "node", - "id": 905027407, - "lat": 53.1499844, - "lon": -0.2118543, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 926", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 905027414, - "lat": 53.1544496, - "lon": -0.2028139, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 298", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 905027422, - "lat": 53.1415754, - "lon": -0.2155364, - "tags": { - "amenity": "post_box", - "postal_code": "LN10", - "ref": "LN10 322", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 905059998, - "lat": 51.1801697, - "lon": 1.4036851, - "tags": { - "amenity": "post_box", - "ref": "CT14 64" - } -}, -{ - "type": "node", - "id": 905066326, - "lat": 51.2150700, - "lon": 1.3636494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT14 133", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 905074339, - "lat": 51.2220280, - "lon": 1.3736094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CT14 82", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 905074573, - "lat": 51.1983505, - "lon": 1.3635415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "303971701416232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CT14 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-12" - } -}, -{ - "type": "node", - "id": 905074734, - "lat": 52.1037080, - "lon": -2.2417590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "description": "Blown up for a second time in 2010-12. Now (2011-01) replaced", - "post_box:type": "lamp", - "ref": "WR8 75" - } -}, -{ - "type": "node", - "id": 905076110, - "lat": 51.5743532, - "lon": -0.7629302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SL7 186" - } -}, -{ - "type": "node", - "id": 905082613, - "lat": 52.0784106, - "lon": -2.2603941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:45", - "hanleys_tag": "B", - "note": "Lamp box embedded into a house's (\"The Villa\") gatepost", - "post_box:type": "wall", - "ref": "WR8 112" - } -}, -{ - "type": "node", - "id": 905119307, - "lat": 51.2000249, - "lon": 1.3599284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT14 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 905143641, - "lat": 51.5395620, - "lon": -0.2003458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 905143642, - "lat": 51.5415114, - "lon": -0.1992302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW6 44" - } -}, -{ - "type": "node", - "id": 905143643, - "lat": 51.5397018, - "lon": -0.1955653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 905143645, - "lat": 51.5376587, - "lon": -0.1960078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 14D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 905213388, - "lat": 52.9806226, - "lon": -0.0163610, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 36" - } -}, -{ - "type": "node", - "id": 905213393, - "lat": 52.9857256, - "lon": -0.0118261, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 34" - } -}, -{ - "type": "node", - "id": 905213397, - "lat": 52.9924359, - "lon": -0.0210744, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 29" - } -}, -{ - "type": "node", - "id": 905213400, - "lat": 52.9888153, - "lon": -0.0069297, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 14" - } -}, -{ - "type": "node", - "id": 905213407, - "lat": 52.9910591, - "lon": -0.0345708, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 211" - } -}, -{ - "type": "node", - "id": 905213426, - "lat": 52.9698075, - "lon": -0.0564466, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 187" - } -}, -{ - "type": "node", - "id": 905213429, - "lat": 52.9697497, - "lon": -0.0264388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE21 6D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 905213434, - "lat": 52.9767920, - "lon": -0.0423497, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 213" - } -}, -{ - "type": "node", - "id": 905213450, - "lat": 52.9784289, - "lon": -0.0398380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "PE21", - "ref": "PE21 1" - } -}, -{ - "type": "node", - "id": 905213454, - "lat": 52.9769987, - "lon": -0.0246364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE21 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 905213461, - "lat": 52.9829996, - "lon": -0.0244135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "PE21", - "ref": "PE21 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 905213466, - "lat": 52.9512737, - "lon": -0.0408903, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "postal_code": "PE21", - "ref": "PE21 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "OS_OpenData_StreetView" - } -}, -{ - "type": "node", - "id": 905213468, - "lat": 52.9523201, - "lon": -0.0434011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "PE21", - "ref": "PE21 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 905213469, - "lat": 52.9578335, - "lon": -0.0389540, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 38" - } -}, -{ - "type": "node", - "id": 905353188, - "lat": 53.1576084, - "lon": -0.0681912, - "tags": { - "amenity": "post_box", - "ref": "PE22 112", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 905353199, - "lat": 53.1202166, - "lon": 0.0007995, - "tags": { - "amenity": "post_box", - "ref": "PE22 180" - } -}, -{ - "type": "node", - "id": 905353203, - "lat": 53.0929075, - "lon": 0.0656875, - "tags": { - "amenity": "post_box", - "ref": "PE22 109" - } -}, -{ - "type": "node", - "id": 905353207, - "lat": 53.0699003, - "lon": 0.0576838, - "tags": { - "amenity": "post_box", - "ref": "PE22 191" - } -}, -{ - "type": "node", - "id": 905353218, - "lat": 53.0371793, - "lon": -0.0396804, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 174" - } -}, -{ - "type": "node", - "id": 905353222, - "lat": 53.0827765, - "lon": -0.0447685, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 97", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 905353231, - "lat": 53.0709718, - "lon": -0.0435097, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 93", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 905353237, - "lat": 53.1239513, - "lon": -0.0498904, - "tags": { - "amenity": "post_box", - "ref": "PE22 104" - } -}, -{ - "type": "node", - "id": 905353248, - "lat": 53.0602749, - "lon": 0.0089642, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 157" - } -}, -{ - "type": "node", - "id": 905353250, - "lat": 53.0095915, - "lon": -0.1141707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE22 155" - } -}, -{ - "type": "node", - "id": 905353268, - "lat": 53.0348374, - "lon": -0.0312690, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 206" - } -}, -{ - "type": "node", - "id": 905353291, - "lat": 53.0355406, - "lon": 0.0216993, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 73" - } -}, -{ - "type": "node", - "id": 905353302, - "lat": 53.0247008, - "lon": 0.0145217, - "tags": { - "amenity": "post_box", - "ref": "PE22 202" - } -}, -{ - "type": "node", - "id": 905353309, - "lat": 53.0492091, - "lon": 0.0148114, - "tags": { - "amenity": "post_box", - "ref": "PE22 171" - } -}, -{ - "type": "node", - "id": 905477568, - "lat": 52.5284176, - "lon": -0.7495366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 905931949, - "lat": 51.7882800, - "lon": -0.0152484, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "SG12 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 906098780, - "lat": 55.0185647, - "lon": -1.4346673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE30 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 906564140, - "lat": 51.9021596, - "lon": 0.0828801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "name": "Church End", - "post_box:type": "wall", - "ref": "SG11 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 906725040, - "lat": 51.5973684, - "lon": -0.1516326, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 906766649, - "lat": 50.7254470, - "lon": -3.5375170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EX4 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 906982879, - "lat": 51.5999837, - "lon": -0.1536878, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 907044991, - "lat": 53.6443453, - "lon": -1.7699705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 907045560, - "lat": 53.6444152, - "lon": -1.7699549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 907149388, - "lat": 52.0916177, - "lon": -2.1905475, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR8 55" - } -}, -{ - "type": "node", - "id": 907149393, - "lat": 52.1044500, - "lon": -2.1842400, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR8 323" - } -}, -{ - "type": "node", - "id": 907149442, - "lat": 52.1256595, - "lon": -2.1713361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "name": "Pirton House Farm", - "note": "New plate damaged so ref not visible, damaged old plate visible", - "post_box:type": "wall", - "ref": "WR8 65", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 907157547, - "lat": 51.1270398, - "lon": -2.6171980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 907517560, - "lat": 50.9636073, - "lon": -1.3740784, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 907822871, - "lat": 51.2984971, - "lon": -0.3274765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 907927466, - "lat": 51.5390012, - "lon": -0.1559086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 36D" - } -}, -{ - "type": "node", - "id": 907927539, - "lat": 51.5384394, - "lon": -0.1492168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 54D" - } -}, -{ - "type": "node", - "id": 907937264, - "lat": 52.0837064, - "lon": -2.2747327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "description": "Outside Hanley Swan Post Office", - "post_box:type": "pillar", - "ref": "WR8 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 907949638, - "lat": 51.5428202, - "lon": -0.1718504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 908060847, - "lat": 52.0766726, - "lon": -2.2361961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "description": "In the wall at the entrance to what appears to be the Sixth Form House", - "hanleys_tag": "E", - "post_box:type": "lamp", - "ref": "WR8 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 908299874, - "lat": 52.0696812, - "lon": -2.2663836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "hanleys_tag": "C", - "note": "At the Brotheridge Green end of Gilvers Lane", - "post_box:type": "lamp", - "ref": "WR8 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 908379034, - "lat": 51.5354865, - "lon": -0.2157019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 65", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 908428190, - "lat": 51.4763914, - "lon": -0.0989867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 908478592, - "lat": 52.9779699, - "lon": -1.2955817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "DE7 1315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 908478650, - "lat": 52.9861836, - "lon": -1.3040064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE7 1340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 909298926, - "lat": 52.7783362, - "lon": -0.1570655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 909309155, - "lat": 51.5565212, - "lon": -0.1736557, - "tags": { - "amenity": "post_box", - "ref": "NW3 15" - } -}, -{ - "type": "node", - "id": 909316654, - "lat": 52.4737136, - "lon": 0.8301477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP24 3416D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 909421249, - "lat": 53.4174668, - "lon": -2.4225849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M31 694", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 909421251, - "lat": 53.4212462, - "lon": -2.4198584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "M31 80", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 909430400, - "lat": 55.8630940, - "lon": -4.2788047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 07:00", - "ref": "G3 568", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 909457180, - "lat": 51.5308972, - "lon": -0.2074031, - "tags": { - "FIXME": "Couldn't find this one", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "W10 2" - } -}, -{ - "type": "node", - "id": 909457516, - "lat": 51.5301947, - "lon": -0.2078518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "No front panel, but not marked 'closed' either.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 909513816, - "lat": 51.5291573, - "lon": -0.2114862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 4D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 909513918, - "lat": 51.5268036, - "lon": -0.2091918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 11", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 909530461, - "lat": 51.5287720, - "lon": -0.2054868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W10 10D" - } -}, -{ - "type": "node", - "id": 909530474, - "lat": 51.5291665, - "lon": -0.2042780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "ref": "W9 22" - } -}, -{ - "type": "node", - "id": 909530500, - "lat": 51.5244765, - "lon": -0.2006175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 909530528, - "lat": 51.5302419, - "lon": -0.1945372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 909613355, - "lat": 51.0097995, - "lon": -2.1874359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 17D", - "ref:GB:uprn": "10015401915", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 909621220, - "lat": 51.0055675, - "lon": -2.1593331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 909665107, - "lat": 53.6387224, - "lon": -1.7873502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 909700358, - "lat": 53.0332347, - "lon": -1.4130455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "116.2042236", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 737" - } -}, -{ - "type": "node", - "id": 909741331, - "lat": 53.0392159, - "lon": -1.4085800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "129.4222412", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 307" - } -}, -{ - "type": "node", - "id": 909741355, - "lat": 53.0432934, - "lon": -1.4075521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "137.5932617", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 255" - } -}, -{ - "type": "node", - "id": 910247231, - "lat": 56.2062631, - "lon": -3.1323956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "ref": "KY7 68", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 910421210, - "lat": 51.1497896, - "lon": 1.3834833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "CT15 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 910426873, - "lat": 51.9134935, - "lon": -0.6469307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 18", - "source": "survey", - "survey:date": "2011-02-18" - } -}, -{ - "type": "node", - "id": 910428550, - "lat": 51.2067075, - "lon": 1.2616540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 910431659, - "lat": 51.1543035, - "lon": 1.3714495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT15 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 910588869, - "lat": 52.1116417, - "lon": -2.0810350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "post_box:type": "wall", - "ref": "WR10 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 910618417, - "lat": 51.2263536, - "lon": -0.2013305, - "tags": { - "amenity": "post_box", - "ref": "RH2 117", - "source": "Photo P141-0897 on 2011-03-07" - } -}, -{ - "type": "node", - "id": 910728272, - "lat": 51.3574826, - "lon": -1.3879376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911020610, - "lat": 52.1822706, - "lon": 0.2179089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB21 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911023256, - "lat": 52.1830092, - "lon": 0.2221042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "note": "Right aperture ref is \"CB21 3177\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB21 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911051584, - "lat": 51.4859966, - "lon": -0.0582878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 911056940, - "lat": 52.0781947, - "lon": -2.2013127, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR8 166" - } -}, -{ - "type": "node", - "id": 911056971, - "lat": 52.0771512, - "lon": -2.1911932, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR8 207" - } -}, -{ - "type": "node", - "id": 911681872, - "lat": 50.9210471, - "lon": -1.5859660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911691839, - "lat": 50.9205232, - "lon": -1.5801241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO40 297", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 911696518, - "lat": 50.9228593, - "lon": -1.5633211, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "note": "This postbox is a lamp of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911706931, - "lat": 50.9257886, - "lon": -1.5557170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911712597, - "lat": 51.5940924, - "lon": -4.2860492, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-03", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "ref": "SA3 687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 911713665, - "lat": 51.5674432, - "lon": -1.0796469, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 911821361, - "lat": 51.1046520, - "lon": 1.2126316, - "tags": { - "amenity": "post_box", - "ref": "CT18 99" - } -}, -{ - "type": "node", - "id": 911842338, - "lat": 51.4623298, - "lon": -0.9752315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 911981212, - "lat": 55.8705652, - "lon": -3.0945275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH19 327", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 912022335, - "lat": 52.1086444, - "lon": -1.9875293, - "tags": { - "amenity": "post_box", - "note": "Revisited Jun 2015. Location and tags are correct.", - "post_box:type": "lamp", - "ref": "WR10 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 912386117, - "lat": 50.9518060, - "lon": -1.5377320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 912410813, - "lat": 53.6278652, - "lon": -1.7953510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 912410814, - "lat": 53.6143936, - "lon": -1.7999429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 912717235, - "lat": 51.5838111, - "lon": -1.8126218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 912717594, - "lat": 51.5857855, - "lon": -1.8079182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 343" - } -}, -{ - "type": "node", - "id": 912717901, - "lat": 51.5875049, - "lon": -1.7966184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN25 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 912717948, - "lat": 51.5824567, - "lon": -1.8052388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 284" - } -}, -{ - "type": "node", - "id": 913195774, - "lat": 51.1948477, - "lon": 1.4033990, - "tags": { - "amenity": "post_box", - "ref": "CT14 19" - } -}, -{ - "type": "node", - "id": 913214750, - "lat": 51.1891142, - "lon": 0.8929057, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox faces west (towards the A251) and it is difficuilt to see in the eastbound direction.", - "old_ref": "TN25 119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN25 119D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 913218005, - "lat": 51.8901353, - "lon": 0.2628160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "level": "1", - "note": "Approximate location, as GPS fix wasn't very good.", - "post_box:design": "indoor", - "post_box:location": "Arrivals", - "post_box:type": "pillar", - "ref": "CM24 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 913230739, - "lat": 51.2496840, - "lon": 0.4208902, - "tags": { - "amenity": "post_box", - "ref": "ME18 52" - } -}, -{ - "type": "node", - "id": 913232737, - "lat": 52.9109101, - "lon": -1.4910843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "918752826174990", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE23 105", - "source": "survey", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 913254057, - "lat": 51.1410846, - "lon": 0.3030838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN2 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 913277511, - "lat": 51.1352401, - "lon": 0.2635971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN1 275;TN1 2752", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 913289682, - "lat": 51.1489801, - "lon": 0.2791179, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TN2 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 913345431, - "lat": 56.8912660, - "lon": -4.8422650, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH31 109" - } -}, -{ - "type": "node", - "id": 913351183, - "lat": 51.8087353, - "lon": -2.7205961, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NP25 490D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 913515797, - "lat": 51.3022890, - "lon": -0.6530201, - "tags": { - "amenity": "post_box", - "note": "Edwardian \"Letters only\" Hovis postbox has been replaced with a more modern one", - "post_box:type": "lamp", - "ref": "GU24 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 913647683, - "lat": 51.5406777, - "lon": -0.2025435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NW6 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 913836694, - "lat": 54.8159571, - "lon": -1.5003002, - "tags": { - "amenity": "post_box", - "fixme": "Verify ref - relocated from former Post Office location, so may have changed", - "operator": "Royal Mail", - "ref": "DH4 131" - } -}, -{ - "type": "node", - "id": 913837578, - "lat": 54.8099271, - "lon": -1.5048137, - "tags": { - "amenity": "post_box", - "ref": "DH4 146" - } -}, -{ - "type": "node", - "id": 913893764, - "lat": 53.5249062, - "lon": -2.2412208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 913896452, - "lat": 53.5278400, - "lon": -2.2469500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 913914839, - "lat": 50.9461088, - "lon": -1.6186058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SO43 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 914045415, - "lat": 51.5358599, - "lon": -0.2013031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 64D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 914210811, - "lat": 53.3377302, - "lon": -2.7226146, - "tags": { - "amenity": "post_box", - "ref": "WA7 29" - } -}, -{ - "type": "node", - "id": 914232174, - "lat": 54.3820514, - "lon": -0.4893605, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO13 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 914232175, - "lat": 54.3916642, - "lon": -0.4990094, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 914232176, - "lat": 54.3974319, - "lon": -0.4928077, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO13 96", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 914247945, - "lat": 51.1275559, - "lon": 1.3188573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT16 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 914252653, - "lat": 51.1351734, - "lon": 1.2982171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 914267178, - "lat": 51.2996354, - "lon": 0.8888041, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Safety caution: the grass bank in front of this postbox is very uneven. This road is unlit at night and extra care must be taken in times of darkness.", - "old_ref": "ME13 43", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME13 43D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 914267179, - "lat": 51.2590153, - "lon": 0.7945398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME13 11D", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 914269800, - "lat": 51.2176974, - "lon": 0.5112266, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME17 141" - } -}, -{ - "type": "node", - "id": 914269802, - "lat": 51.2297696, - "lon": 0.5200770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 245" - } -}, -{ - "type": "node", - "id": 914403947, - "lat": 52.4758660, - "lon": -1.8708458, - "tags": { - "amenity": "post_box", - "ref": "B9 1415", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 914514511, - "lat": 52.4790821, - "lon": -1.8705115, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B9 244", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 914719839, - "lat": 51.5594958, - "lon": -0.1028273, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-25", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "787288279108551", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 914744391, - "lat": 50.9377878, - "lon": -1.6173388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 914744392, - "lat": 50.9607598, - "lon": -1.6316987, - "tags": { - "amenity": "post_box", - "mapillary": "1155315401651730", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP5 317", - "source": "Bing", - "survey:date": "2021-04-30" - } -}, -{ - "type": "node", - "id": 914744393, - "lat": 50.9733864, - "lon": -1.6134211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 914745453, - "lat": 50.9730992, - "lon": -1.5590447, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 914756086, - "lat": 50.7592970, - "lon": -3.2954673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX11 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 914798730, - "lat": 54.4304498, - "lon": -0.5322587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO22 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 914801019, - "lat": 54.4347641, - "lon": -0.5353902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO22 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 915082461, - "lat": 53.2687997, - "lon": -1.3263207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "68.1386719", - "post_box:type": "lamp", - "ref": "S43 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 915085171, - "lat": 53.2724701, - "lon": -1.3272895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 915316456, - "lat": 50.5818109, - "lon": -3.4837633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "EX7", - "ref": "EX7 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey;local knowledge;survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 915610421, - "lat": 52.4981978, - "lon": -1.8231539, - "tags": { - "amenity": "post_box", - "postal_code": "B8", - "ref": "B8 511", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 915770777, - "lat": 57.3380917, - "lon": -3.5379737, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2021-06-11", - "collection_times": "Mo-Fr 12:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "old_collection_plate": "WNS", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH26 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 915861022, - "lat": 52.7913437, - "lon": -2.1013197, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 915945412, - "lat": 52.5780622, - "lon": -0.2407047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 916036422, - "lat": 53.6362561, - "lon": -1.7830940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 916379851, - "lat": 50.7650600, - "lon": -3.2918768, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 916882469, - "lat": 52.4226938, - "lon": -1.8618777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "ref": "B13 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 916882562, - "lat": 52.4262960, - "lon": -1.8665323, - "tags": { - "amenity": "post_box", - "ref": "B13 1230", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 916894961, - "lat": 52.4289510, - "lon": -1.8698192, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 283", - "royal_cypher": "GVIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 916895098, - "lat": 52.4249223, - "lon": -1.8718622, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 787", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 917289133, - "lat": 52.7953262, - "lon": -2.0984425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "pillar", - "ref": "ST17 1703" - } -}, -{ - "type": "node", - "id": 917346342, - "lat": 51.5121348, - "lon": -3.2184633, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 917415043, - "lat": 52.7964771, - "lon": -2.0957593, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 1701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 917711797, - "lat": 50.4049227, - "lon": -4.6709855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL22 76" - } -}, -{ - "type": "node", - "id": 917991458, - "lat": 50.9799372, - "lon": -1.3904932, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918046400, - "lat": 52.5142266, - "lon": -1.7090986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B46", - "ref": "B46 1081", - "source": "survey" - } -}, -{ - "type": "node", - "id": 918049949, - "lat": 52.5152106, - "lon": -1.7159419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "B46", - "ref": "B46 969", - "source": "BING & survey" - } -}, -{ - "type": "node", - "id": 918156645, - "lat": 52.9285779, - "lon": -1.5028719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 589D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 918175646, - "lat": 52.2829556, - "lon": 0.4572998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB7 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918305828, - "lat": 52.4050051, - "lon": 0.7451271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP24 8149", - "ref:GB:uprn": "10015847439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918305870, - "lat": 52.4093445, - "lon": 0.7418927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP24 3366", - "ref:GB:uprn": "10015292941", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 918305928, - "lat": 52.4067477, - "lon": 0.7506329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP24 3246D", - "ref:GB:uprn": "10015293059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918305969, - "lat": 52.4115775, - "lon": 0.7423549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP24 3307D", - "ref:GB:uprn": "10015296560", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 918306249, - "lat": 52.4060275, - "lon": 0.7457198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP24 3306", - "ref:GB:uprn": "10015409500", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 918306616, - "lat": 52.4047627, - "lon": 0.7373369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP24 3390", - "ref:GB:uprn": "10015465775", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918306777, - "lat": 52.4280569, - "lon": 0.7533403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP24 3327", - "ref:GB:uprn": "10015362449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918306927, - "lat": 52.4255281, - "lon": 0.7416565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "IP24 3331", - "ref:GB:uprn": "10015455727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918306938, - "lat": 52.4076407, - "lon": 0.7333991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP24 3392", - "ref:GB:uprn": "10025125510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918307026, - "lat": 52.4187247, - "lon": 0.7341196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "note": "Was sealed for a couple of years from 2020, but back in use as of 2021-11.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP24 3242", - "ref:GB:uprn": "10015324021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918307028, - "lat": 52.4112820, - "lon": 0.7355900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP24 3417", - "ref:GB:uprn": "10015445915", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918307190, - "lat": 52.4240700, - "lon": 0.7537472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP24 3419", - "ref:GB:uprn": "10015359678", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918307611, - "lat": 52.4144185, - "lon": 0.7290633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP24 3400", - "ref:GB:uprn": "10015346279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918445493, - "lat": 52.5839036, - "lon": -1.9759797, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WS1 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 918445586, - "lat": 52.5860698, - "lon": -1.9717559, - "tags": { - "amenity": "post_box", - "postal_code": "WS1", - "ref": "WS1 53", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 918473865, - "lat": 52.7996730, - "lon": -2.1025914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "ST LEONARDS AVENUE", - "post_box:type": "pillar", - "ref": "ST17 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 918603236, - "lat": 51.4797881, - "lon": -2.6208133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS9 536D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 918603271, - "lat": 51.4805419, - "lon": -2.6178379, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS9 615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918744228, - "lat": 52.1208917, - "lon": -2.3167223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "fixme": "RM data says 1715/1130; box says 1700/0830", - "post_box:type": "lamp", - "ref": "WR14 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Waypoint, Long Exposure" - } -}, -{ - "type": "node", - "id": 918835200, - "lat": 51.0558971, - "lon": -2.6262987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 918912407, - "lat": 55.1863574, - "lon": -1.5545480, - "tags": { - "amenity": "post_box", - "postal_code": "NE63 9JF", - "ref": "NE63 189" - } -}, -{ - "type": "node", - "id": 918912539, - "lat": 55.1841924, - "lon": -1.5625988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE63 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 918912547, - "lat": 55.1743941, - "lon": -1.5862359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "NE63 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 918912632, - "lat": 55.1599320, - "lon": -1.6017561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE62 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 918920436, - "lat": 55.1630030, - "lon": -1.5981237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE62 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 918948899, - "lat": 51.5243307, - "lon": -0.1770037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 75D;W2 275D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 918998319, - "lat": 51.2173532, - "lon": 0.8254448, - "tags": { - "amenity": "post_box", - "ref": "TN27 333" - } -}, -{ - "type": "node", - "id": 918998438, - "lat": 51.2156860, - "lon": 0.8045403, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 919158270, - "lat": 55.1830421, - "lon": -1.5806541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE63 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 919158283, - "lat": 55.1800682, - "lon": -1.5845968, - "tags": { - "amenity": "post_box", - "postal_code": "NE63 8JB", - "ref": "NE63 121" - } -}, -{ - "type": "node", - "id": 919158334, - "lat": 50.8941717, - "lon": -1.6215949, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 164", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 919235897, - "lat": 50.8845923, - "lon": -0.9300008, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO9 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 919513617, - "lat": 51.4604575, - "lon": -0.3295510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 270D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 919598120, - "lat": 50.9752623, - "lon": -1.3988222, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 718", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 919615557, - "lat": 52.8061683, - "lon": -2.0899760, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 1648", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 919728567, - "lat": 51.4422237, - "lon": -2.8563559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 919728569, - "lat": 51.4437690, - "lon": -2.8593793, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS21 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 919729617, - "lat": 50.8958501, - "lon": -1.4047634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 775", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 919762712, - "lat": 54.6326128, - "lon": -2.7233000, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 919771209, - "lat": 53.2205259, - "lon": -1.4083983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "102.9860840", - "post_box:type": "pillar", - "ref": "S41 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 919783093, - "lat": 53.2205294, - "lon": -1.4188648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "80.6357422", - "post_box:type": "pillar", - "ref": "S41 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 919805006, - "lat": 54.6561441, - "lon": -2.8233121, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 919820466, - "lat": 54.6669077, - "lon": -2.8767957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 920054677, - "lat": 54.6573934, - "lon": -2.9300705, - "tags": { - "amenity": "post_box", - "ref": "CA11 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 920062955, - "lat": 54.7632934, - "lon": -3.0640933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA7 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 920068670, - "lat": 51.4066227, - "lon": -2.3101515, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 920086233, - "lat": 51.0035608, - "lon": -1.3928568, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO53 640D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 920427846, - "lat": 52.8102204, - "lon": -2.0900550, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 452", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 920521890, - "lat": 54.8101481, - "lon": -2.9800392, - "tags": { - "amenity": "post_box", - "fixme": "check ref - blurred photo", - "ref": "CA5 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 920534071, - "lat": 54.8290018, - "lon": -3.0309039, - "tags": { - "amenity": "post_box", - "ref": "CA5 311", - "source": "survey" - } -}, -{ - "type": "node", - "id": 920557151, - "lat": 54.8879339, - "lon": -2.9624266, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 85", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 921128032, - "lat": 51.8209829, - "lon": -0.9213469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 921128046, - "lat": 51.7847842, - "lon": -0.8335707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP17 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 921157532, - "lat": 59.3672397, - "lon": -2.4260796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 921446578, - "lat": 51.1848408, - "lon": 0.2989782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN11 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 921467339, - "lat": 51.1986655, - "lon": 0.2721692, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN9 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 921490461, - "lat": 53.1414359, - "lon": -4.1669203, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 921490462, - "lat": 53.1428795, - "lon": -4.1864857, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 921633756, - "lat": 51.2053384, - "lon": 0.2652437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "mapillary": "309465710627989", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN10 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 921633864, - "lat": 51.2129463, - "lon": 0.2500265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "mapillary": "792069908102546", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN11 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 921666964, - "lat": 51.2121165, - "lon": 0.2799215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN10 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 921682741, - "lat": 51.2112112, - "lon": 0.2735512, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN10 347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 922093915, - "lat": 57.3381070, - "lon": -4.5429719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV3 171", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 922093924, - "lat": 57.3343350, - "lon": -4.6965104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV63 148", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 922093943, - "lat": 57.3345520, - "lon": -4.6354549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV63 147", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 922255726, - "lat": 51.1646813, - "lon": 0.1091760, - "tags": { - "amenity": "post_box", - "ref": "TN8 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 922323445, - "lat": 52.8999969, - "lon": -0.9672280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG12 190", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 922720472, - "lat": 52.8115279, - "lon": -2.0899595, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 922793351, - "lat": 52.5745897, - "lon": -1.8137466, - "tags": { - "amenity": "post_box", - "postal_code": "B75", - "ref": "B75 584", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 922875374, - "lat": 50.9772778, - "lon": -1.3943745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 717", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 922977290, - "lat": 52.9673825, - "lon": -4.1614958, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 923899966, - "lat": 51.8202623, - "lon": -0.6627605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 923906883, - "lat": 51.0917003, - "lon": -4.0500469, - "tags": { - "amenity": "post_box", - "note": "On Level 2 (main entrance) near staircase.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 923910900, - "lat": 51.4079220, - "lon": 0.9029857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 54" - } -}, -{ - "type": "node", - "id": 923979159, - "lat": 53.8654123, - "lon": -2.9979698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY5 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 924087325, - "lat": 52.0909214, - "lon": -0.2656912, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 924087363, - "lat": 52.0900000, - "lon": -0.2674360, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 924183952, - "lat": 57.4767391, - "lon": -4.2297291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:25; Sa 10:45", - "indoor": "yes", - "note": "inside Tesco", - "operator": "Midi Post", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 924411767, - "lat": 55.9540756, - "lon": -3.4022661, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH29 78D", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 924623600, - "lat": 51.5672564, - "lon": -0.0727871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 46" - } -}, -{ - "type": "node", - "id": 924623601, - "lat": 51.5693323, - "lon": -0.0731050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 924623602, - "lat": 51.5654757, - "lon": -0.0667358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 3" - } -}, -{ - "type": "node", - "id": 924623603, - "lat": 51.5675048, - "lon": -0.0664209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 34" - } -}, -{ - "type": "node", - "id": 924623604, - "lat": 51.5640131, - "lon": -0.0694271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 2" - } -}, -{ - "type": "node", - "id": 924623605, - "lat": 51.5666789, - "lon": -0.0645238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N16 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 924623606, - "lat": 51.5751406, - "lon": -0.0679437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 32", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 924623607, - "lat": 51.5740813, - "lon": -0.0650727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 41", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 924623608, - "lat": 51.5706401, - "lon": -0.0724555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 11" - } -}, -{ - "type": "node", - "id": 924634679, - "lat": 52.8147648, - "lon": -2.0973396, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 425", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 924634904, - "lat": 52.8131026, - "lon": -2.1028787, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 924641753, - "lat": 51.5601412, - "lon": -0.0703667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 13" - } -}, -{ - "type": "node", - "id": 924641755, - "lat": 51.5527851, - "lon": -0.0697808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E8 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 924641758, - "lat": 51.5562448, - "lon": -0.0682786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 924641770, - "lat": 51.5511406, - "lon": -0.0749151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "ref not marked. query whether it's truly N16 27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 27" - } -}, -{ - "type": "node", - "id": 924656781, - "lat": 51.5519987, - "lon": -0.0806832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 924656782, - "lat": 51.5538601, - "lon": -0.0747338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 12", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 924660659, - "lat": 51.5692619, - "lon": -0.0795094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 22" - } -}, -{ - "type": "node", - "id": 924660660, - "lat": 51.5705631, - "lon": -0.0796246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 45" - } -}, -{ - "type": "node", - "id": 924660661, - "lat": 51.5642858, - "lon": -0.0927245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 924660662, - "lat": 51.5699834, - "lon": -0.0779182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 54" - } -}, -{ - "type": "node", - "id": 924660663, - "lat": 51.5656969, - "lon": -0.0850561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 23", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 924660664, - "lat": 51.5691078, - "lon": -0.0853314, - "tags": { - "amenity": "post_box", - "mapillary": "1418732875270349", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 28", - "survey:date": "2022-08-01" - } -}, -{ - "type": "node", - "id": 924660771, - "lat": 51.5615625, - "lon": -0.0819840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 33", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 924660772, - "lat": 51.5601809, - "lon": -0.0918851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 925079724, - "lat": 52.5015620, - "lon": -1.7077052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B46 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 925351315, - "lat": 52.9771368, - "lon": -1.9796349, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 925357117, - "lat": 51.0357916, - "lon": -3.9056985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX32 129" - } -}, -{ - "type": "node", - "id": 925361793, - "lat": 52.9983259, - "lon": -4.2979978, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 925366123, - "lat": 52.9482353, - "lon": -3.7203360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 925369483, - "lat": 52.8118068, - "lon": -3.3129466, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY10 83", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 925369485, - "lat": 52.9132885, - "lon": -3.5973082, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 925400782, - "lat": 51.0430035, - "lon": -3.9344076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 925522152, - "lat": 51.2724588, - "lon": -0.6228446, - "tags": { - "amenity": "post_box", - "ref": "GU3 293" - } -}, -{ - "type": "node", - "id": 925522212, - "lat": 51.2586231, - "lon": -0.6422478, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU3 170" - } -}, -{ - "type": "node", - "id": 925692854, - "lat": 51.0886246, - "lon": -1.0672641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO24 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 925692877, - "lat": 51.0711601, - "lon": -1.0766656, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO24 147", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 925692940, - "lat": 51.0698852, - "lon": -1.0492163, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "last_checked": "2021-09-04", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 925692944, - "lat": 51.0829313, - "lon": -1.0768298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 925940545, - "lat": 52.8157496, - "lon": -2.1110610, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 925959601, - "lat": 53.1592680, - "lon": -1.4021748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "119.33", - "post_box:type": "pillar", - "ref": "S45 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 926232479, - "lat": 53.8173429, - "lon": -2.9862419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 276", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 926584161, - "lat": 51.6519107, - "lon": -3.7911806, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 926584179, - "lat": 51.6546697, - "lon": -3.7832948, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 926668864, - "lat": 52.7120359, - "lon": -3.6899626, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY20 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 926671670, - "lat": 52.7184808, - "lon": -3.6910676, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 926689598, - "lat": 51.4964429, - "lon": -2.6619966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS11", - "ref": "BS11 551" - } -}, -{ - "type": "node", - "id": 926689617, - "lat": 51.4935942, - "lon": -2.6677084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BS11", - "ref": "BS11 472" - } -}, -{ - "type": "node", - "id": 926689658, - "lat": 51.4950406, - "lon": -2.6761383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS11", - "ref": "BS11 549D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 926778412, - "lat": 52.1836296, - "lon": -1.9230307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B49 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 926797681, - "lat": 51.2419960, - "lon": -0.6748081, - "tags": { - "amenity": "post_box", - "ref": "GU3 134" - } -}, -{ - "type": "node", - "id": 926797722, - "lat": 51.2574585, - "lon": -0.6581374, - "tags": { - "amenity": "post_box", - "ref": "GU3 46" - } -}, -{ - "type": "node", - "id": 927030663, - "lat": 51.4934285, - "lon": -2.6577845, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "BS11", - "ref": "BS11 120D" - } -}, -{ - "type": "node", - "id": 927031683, - "lat": 51.5019183, - "lon": -2.6549790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS11", - "ref": "BS11 482", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 927113249, - "lat": 51.6072134, - "lon": -0.2328689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 6", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 927113253, - "lat": 51.6177249, - "lon": -0.2242534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NW7 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 927113254, - "lat": 51.6134251, - "lon": -0.2446028, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 17" - } -}, -{ - "type": "node", - "id": 927113262, - "lat": 51.6085923, - "lon": -0.2098480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 927113266, - "lat": 51.6110444, - "lon": -0.2375439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 25" - } -}, -{ - "type": "node", - "id": 927113270, - "lat": 51.6015059, - "lon": -0.2089563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 35" - } -}, -{ - "type": "node", - "id": 927113275, - "lat": 51.6107415, - "lon": -0.2297362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 42" - } -}, -{ - "type": "node", - "id": 927113278, - "lat": 51.6089839, - "lon": -0.2227028, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 927113285, - "lat": 51.6128477, - "lon": -0.2565851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 44" - } -}, -{ - "type": "node", - "id": 927113294, - "lat": 51.6076129, - "lon": -0.2364640, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 26" - } -}, -{ - "type": "node", - "id": 927113302, - "lat": 51.6044776, - "lon": -0.2075199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 24", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 927113311, - "lat": 51.6023414, - "lon": -0.2354250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 32" - } -}, -{ - "type": "node", - "id": 927113318, - "lat": 51.6144785, - "lon": -0.2153868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 13" - } -}, -{ - "type": "node", - "id": 927113327, - "lat": 51.6157781, - "lon": -0.2258144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 927113332, - "lat": 51.6144242, - "lon": -0.2520296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 18" - } -}, -{ - "type": "node", - "id": 927113353, - "lat": 51.6145027, - "lon": -0.2478103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW7 48;NW7 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 927113364, - "lat": 51.6113287, - "lon": -0.2106406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 927113367, - "lat": 51.6049907, - "lon": -0.2337845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 39" - } -}, -{ - "type": "node", - "id": 927126952, - "lat": 51.6224323, - "lon": -0.2474097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 41" - } -}, -{ - "type": "node", - "id": 927126958, - "lat": 51.6245085, - "lon": -0.2494126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 19" - } -}, -{ - "type": "node", - "id": 927126962, - "lat": 51.6180703, - "lon": -0.2519590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 27" - } -}, -{ - "type": "node", - "id": 927126969, - "lat": 51.6160385, - "lon": -0.2502854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 16" - } -}, -{ - "type": "node", - "id": 927126985, - "lat": 51.6246893, - "lon": -0.2541406, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 46" - } -}, -{ - "type": "node", - "id": 927126988, - "lat": 51.6266749, - "lon": -0.2505693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 50" - } -}, -{ - "type": "node", - "id": 927126992, - "lat": 51.6123350, - "lon": -0.2641310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 927127020, - "lat": 51.6210472, - "lon": -0.2550580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 45" - } -}, -{ - "type": "node", - "id": 927137156, - "lat": 51.6348846, - "lon": -0.2366431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 927137162, - "lat": 51.6242652, - "lon": -0.2379889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 47" - } -}, -{ - "type": "node", - "id": 927137166, - "lat": 51.6212304, - "lon": -0.2425733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 2" - } -}, -{ - "type": "node", - "id": 927137201, - "lat": 51.6190757, - "lon": -0.2446945, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 31" - } -}, -{ - "type": "node", - "id": 927137209, - "lat": 51.6195251, - "lon": -0.2477476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 21" - } -}, -{ - "type": "node", - "id": 927232660, - "lat": 51.6219661, - "lon": -0.2342915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 12" - } -}, -{ - "type": "node", - "id": 927232661, - "lat": 51.6156024, - "lon": -0.2408212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 101" - } -}, -{ - "type": "node", - "id": 927232663, - "lat": 51.6156234, - "lon": -0.2408196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 10" - } -}, -{ - "type": "node", - "id": 927232680, - "lat": 51.5940822, - "lon": -0.2398776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 13" - } -}, -{ - "type": "node", - "id": 927232682, - "lat": 51.6172293, - "lon": -0.2374930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 7" - } -}, -{ - "type": "node", - "id": 927232684, - "lat": 51.6026226, - "lon": -0.2447768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW9 58" - } -}, -{ - "type": "node", - "id": 927232686, - "lat": 51.6184904, - "lon": -0.2359312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 11" - } -}, -{ - "type": "node", - "id": 927232694, - "lat": 51.6077788, - "lon": -0.2448666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW7 52", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 927287020, - "lat": 57.1331823, - "lon": -2.1219363, - "tags": { - "addr:postcode": "AB10 6HY", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB10 33D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 927313232, - "lat": 52.4167146, - "lon": 0.3469125, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CB7 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 927353902, - "lat": 51.0026343, - "lon": -2.2009259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP7 13", - "ref:GB:uprn": "10013287378" - } -}, -{ - "type": "node", - "id": 927353909, - "lat": 51.0056946, - "lon": -2.1973514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP7 46", - "ref:GB:uprn": "10015429520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 927353915, - "lat": 51.0046867, - "lon": -2.2023132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP7 43", - "ref:GB:uprn": "10015358616", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 927361738, - "lat": 51.1417400, - "lon": -2.7011600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA6 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 927381711, - "lat": 51.2796745, - "lon": -2.7736242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS27 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 928014775, - "lat": 50.5829577, - "lon": -3.5865265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 928014776, - "lat": 50.5849355, - "lon": -3.5656634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 928026956, - "lat": 53.3356645, - "lon": -1.9128544, - "tags": { - "amenity": "post_box", - "postal_code": "SK23", - "ref": "SK23 83", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 928026962, - "lat": 53.3392211, - "lon": -1.9249029, - "tags": { - "amenity": "post_box", - "postal_code": "SK23", - "ref": "SK23 35", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 928077344, - "lat": 53.5458995, - "lon": -1.4423179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S70 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 928091347, - "lat": 52.2086898, - "lon": -2.1760791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR4 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 928158862, - "lat": 51.4424670, - "lon": 0.5187432, - "tags": { - "amenity": "post_box", - "ref": "ME3 87" - } -}, -{ - "type": "node", - "id": 928372919, - "lat": 51.4211360, - "lon": -0.1335880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 928379704, - "lat": 52.6379627, - "lon": -1.6633235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B77 1426" - } -}, -{ - "type": "node", - "id": 928381997, - "lat": 52.6368710, - "lon": -1.6574790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B77 120" - } -}, -{ - "type": "node", - "id": 928587006, - "lat": 53.5947058, - "lon": -2.5821576, - "tags": { - "amenity": "post_box", - "ref": "BL6 290" - } -}, -{ - "type": "node", - "id": 928779373, - "lat": 51.4391531, - "lon": -0.9142838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "RG6 363", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 929098253, - "lat": 53.0349057, - "lon": -1.9484996, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929189694, - "lat": 51.4605400, - "lon": 0.5030118, - "tags": { - "amenity": "post_box", - "ele": "6.3743896484375", - "ref": "ME3 411" - } -}, -{ - "type": "node", - "id": 929242837, - "lat": 51.2208152, - "lon": -0.5385465, - "tags": { - "amenity": "post_box", - "ref": "GU4 220" - } -}, -{ - "type": "node", - "id": 929242865, - "lat": 51.2163177, - "lon": -0.5333705, - "tags": { - "amenity": "post_box", - "ref": "GU4 270" - } -}, -{ - "type": "node", - "id": 929242901, - "lat": 51.2320281, - "lon": -0.5403029, - "tags": { - "amenity": "post_box", - "ref": "GU4 128" - } -}, -{ - "type": "node", - "id": 929323032, - "lat": 51.4526350, - "lon": -0.3581509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 929323120, - "lat": 51.4515751, - "lon": -0.3578519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TW2 157;TW2 1571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929366556, - "lat": 51.0105673, - "lon": -1.5468541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929371661, - "lat": 51.0968613, - "lon": -1.5631582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO20 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 929403427, - "lat": 52.8195076, - "lon": -2.1069970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929422660, - "lat": 52.8164546, - "lon": -2.1138893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929446070, - "lat": 54.8929066, - "lon": -2.9311038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA1 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929765137, - "lat": 52.6958268, - "lon": -2.4818466, - "tags": { - "amenity": "post_box", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 929843661, - "lat": 51.1163509, - "lon": -1.5339679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 929962681, - "lat": 53.6554297, - "lon": -1.8049772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 930251993, - "lat": 53.2365544, - "lon": -1.4522130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 1YR", - "ref": "S40 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 930251996, - "lat": 53.2347081, - "lon": -1.4584107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3AH", - "ref": "S40 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 930251998, - "lat": 53.2432641, - "lon": -1.4568965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 4RA", - "ref": "S40 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 930252003, - "lat": 53.2335641, - "lon": -1.4492352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 2RE", - "ref": "S40 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 930252011, - "lat": 53.2322870, - "lon": -1.4542007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3DN", - "ref": "S40 51D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 930252018, - "lat": 53.2440926, - "lon": -1.4487772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S40 4EU", - "ref": "S40 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 930252032, - "lat": 53.2438388, - "lon": -1.4626847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 4QR", - "ref": "S40 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 930252034, - "lat": 53.2308421, - "lon": -1.4700075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3JY", - "ref": "S40 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 930252037, - "lat": 53.2420396, - "lon": -1.4463271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S40 4AZ", - "ref": "S40 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 930252048, - "lat": 53.2437879, - "lon": -1.4419408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 4HE", - "ref": "S40 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 930252052, - "lat": 53.2411194, - "lon": -1.4378459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 4TW", - "ref": "S40 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 930252065, - "lat": 53.2307729, - "lon": -1.4668481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 3AX", - "ref": "S40 73", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 930252068, - "lat": 53.2396344, - "lon": -1.4602198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 1JB", - "ref": "S40 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 930252069, - "lat": 53.2354652, - "lon": -1.4350938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "postal_code": "S40 1AA", - "ref": "S40 144", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 930252070, - "lat": 53.2488349, - "lon": -1.4513076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 4JX", - "ref": "S40 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 930252090, - "lat": 53.2395083, - "lon": -1.4404458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 4DR", - "ref": "S40 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 930252092, - "lat": 53.2316752, - "lon": -1.4524731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S41 158" - } -}, -{ - "type": "node", - "id": 930768730, - "lat": 51.2467557, - "lon": -0.5717686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU1 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 930934597, - "lat": 52.5753414, - "lon": 1.6956382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR31 3141", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 931673372, - "lat": 51.5411845, - "lon": -0.1532663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "the left aperture is blocked, the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 53D" - } -}, -{ - "type": "node", - "id": 931751032, - "lat": 52.4617748, - "lon": -1.8567943, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 931751868, - "lat": 53.6443288, - "lon": -2.6325743, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 79" - } -}, -{ - "type": "node", - "id": 931833518, - "lat": 51.0353715, - "lon": -0.6648898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 931901015, - "lat": 53.1447760, - "lon": -1.2111365, - "tags": { - "amenity": "post_box", - "ele": "128.7012939", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 931901026, - "lat": 53.1503388, - "lon": -1.2157446, - "tags": { - "amenity": "post_box", - "ele": "129.6625977" - } -}, -{ - "type": "node", - "id": 931901050, - "lat": 53.1300465, - "lon": -1.2545418, - "tags": { - "amenity": "post_box", - "ele": "156.0986328" - } -}, -{ - "type": "node", - "id": 931901054, - "lat": 53.1531151, - "lon": -1.2250411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00, Sa 11:00" - } -}, -{ - "type": "node", - "id": 931918828, - "lat": 53.1237830, - "lon": -1.2696307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "167", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG17 307D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 932285775, - "lat": 51.4583358, - "lon": -0.3483038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW7 272" - } -}, -{ - "type": "node", - "id": 932298415, - "lat": 52.4686995, - "lon": -1.8627840, - "tags": { - "amenity": "post_box", - "ref": "B10 1267", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 932337082, - "lat": 50.1271460, - "lon": -5.3653667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 87D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 932345529, - "lat": 51.7741270, - "lon": -0.5808168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 932348364, - "lat": 51.4526869, - "lon": -0.9056571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RG5 460;RG5 4600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 933103806, - "lat": 52.0412929, - "lon": -0.5571161, - "tags": { - "amenity": "post_box", - "name": "Lombard PB", - "operator": "Royal Mail", - "ref": "MK43 300" - } -}, -{ - "type": "node", - "id": 933182314, - "lat": 57.4671707, - "lon": -4.2123602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 40D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 933579621, - "lat": 51.0280468, - "lon": -1.2064712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 933743037, - "lat": 55.8862186, - "lon": -3.4928471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 934540040, - "lat": 55.8777576, - "lon": -4.3280124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G14 529D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 934540963, - "lat": 55.8792080, - "lon": -4.3346857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 934854517, - "lat": 50.9080940, - "lon": -3.4752990, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 935258820, - "lat": 51.6190922, - "lon": -0.0173847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 74" - } -}, -{ - "type": "node", - "id": 935258823, - "lat": 51.6330995, - "lon": -0.0080369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 33D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 935258827, - "lat": 51.6243832, - "lon": -0.0165877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 50" - } -}, -{ - "type": "node", - "id": 935258834, - "lat": 51.6172175, - "lon": -0.0263314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 49D" - } -}, -{ - "type": "node", - "id": 935258858, - "lat": 51.6327196, - "lon": -0.0053294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 935297584, - "lat": 51.6203040, - "lon": 0.0024099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 935297590, - "lat": 51.6126471, - "lon": -0.0304202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 51" - } -}, -{ - "type": "node", - "id": 935297615, - "lat": 51.6062629, - "lon": -0.0070392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 935297621, - "lat": 51.6167336, - "lon": 0.0096958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E4 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 935297629, - "lat": 51.6139629, - "lon": 0.0059091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 935297638, - "lat": 51.6067240, - "lon": -0.0110453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 935297656, - "lat": 51.6106160, - "lon": 0.0018785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 54" - } -}, -{ - "type": "node", - "id": 935297662, - "lat": 51.6083258, - "lon": -0.0000576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 935320150, - "lat": 51.6318515, - "lon": -0.0008160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 7D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 935320155, - "lat": 51.6254885, - "lon": -0.0024392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 5" - } -}, -{ - "type": "node", - "id": 935320169, - "lat": 51.6024583, - "lon": -0.0032636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 935320174, - "lat": 51.6294427, - "lon": -0.0039604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 29D" - } -}, -{ - "type": "node", - "id": 935320177, - "lat": 51.6128784, - "lon": -0.0113643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 935320181, - "lat": 51.6200519, - "lon": -0.0219332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 53D" - } -}, -{ - "type": "node", - "id": 935320199, - "lat": 51.6283344, - "lon": -0.0182903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 59D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 935320201, - "lat": 51.6435490, - "lon": 0.0112242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 935327948, - "lat": 51.6049736, - "lon": -0.0006427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 935327959, - "lat": 51.6210557, - "lon": 0.0100828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 1" - } -}, -{ - "type": "node", - "id": 935327961, - "lat": 51.6230276, - "lon": 0.0039286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 935327963, - "lat": 51.6222181, - "lon": 0.0002505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 46" - } -}, -{ - "type": "node", - "id": 935327967, - "lat": 51.6333075, - "lon": 0.0140618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "E4 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 935327981, - "lat": 51.6269030, - "lon": -0.0002563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 42" - } -}, -{ - "type": "node", - "id": 935356564, - "lat": 50.8727609, - "lon": -1.4010694, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SO45 745D" - } -}, -{ - "type": "node", - "id": 935514917, - "lat": 56.1117383, - "lon": -3.9444246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "FK8 148D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 935566864, - "lat": 52.1127940, - "lon": -2.2211381, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR8 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 935971677, - "lat": 52.9457622, - "lon": -1.0041132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG12 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 935971680, - "lat": 52.9476770, - "lon": -1.0010962, - "tags": { - "amenity": "post_box", - "ref": "NG12 169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 936008169, - "lat": 56.1084341, - "lon": -3.9496769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK8 202D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 936313531, - "lat": 52.0596169, - "lon": -0.3468231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "name": "Ireland", - "ref": "SG17 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 936396221, - "lat": 51.1291211, - "lon": -2.8099134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "111722548091393", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-04-17" - } -}, -{ - "type": "node", - "id": 936396223, - "lat": 51.1298077, - "lon": -2.8062233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 936396225, - "lat": 51.1326895, - "lon": -2.8074887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 936654324, - "lat": 51.4751405, - "lon": -2.5420221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS16 713" - } -}, -{ - "type": "node", - "id": 936710848, - "lat": 50.9732306, - "lon": -4.0062006, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 936977456, - "lat": 52.9375984, - "lon": -1.1341013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London and Falkirk", - "post_box:type": "pillar", - "ref": "NG2 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 936983684, - "lat": 52.2725171, - "lon": 0.5033281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 936983703, - "lat": 52.2911706, - "lon": 0.4960694, - "tags": { - "amenity": "post_box", - "ref": "CB8 94" - } -}, -{ - "type": "node", - "id": 936983763, - "lat": 52.2839132, - "lon": 0.4878542, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB8 93" - } -}, -{ - "type": "node", - "id": 937472345, - "lat": 53.6437809, - "lon": -1.7774135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 937609150, - "lat": 51.4120052, - "lon": 0.5308093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 127" - } -}, -{ - "type": "node", - "id": 937674446, - "lat": 50.6276224, - "lon": -3.6209765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 937701166, - "lat": 51.4043308, - "lon": 0.4914610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 436D" - } -}, -{ - "type": "node", - "id": 937741946, - "lat": 52.5838495, - "lon": 0.3425215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE38 360" - } -}, -{ - "type": "node", - "id": 937793512, - "lat": 53.2001493, - "lon": -1.8663224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK17 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 937863360, - "lat": 53.2039505, - "lon": -2.8941250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "name": "Liverpool Road In-Wall", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH2 54D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 937870020, - "lat": 53.2019832, - "lon": -2.8843483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH2 374D" - } -}, -{ - "type": "node", - "id": 937920767, - "lat": 55.0028239, - "lon": -3.0648050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG16 100", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 938333573, - "lat": 52.8129804, - "lon": -3.2509135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 938405198, - "lat": 53.8154116, - "lon": -1.4462534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 946", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938405199, - "lat": 53.8210020, - "lon": -1.4519784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 925", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 938485179, - "lat": 53.9012382, - "lon": -3.0390220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 938528595, - "lat": 53.8074443, - "lon": -1.4507016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS15 330;LS15 1330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938769396, - "lat": 54.9956904, - "lon": -7.3376924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Rathmore", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 938872803, - "lat": 50.8128528, - "lon": -1.0596176, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 136", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 938872809, - "lat": 50.7831608, - "lon": -1.0605778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938872813, - "lat": 50.7926012, - "lon": -1.0870124, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938872815, - "lat": 50.7820857, - "lon": -1.0737195, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 938872822, - "lat": 50.7876176, - "lon": -1.0528625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO4 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 938872824, - "lat": 50.7832531, - "lon": -1.0818381, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO5 70D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 938872827, - "lat": 50.7982900, - "lon": -1.0630243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938872829, - "lat": 50.8022873, - "lon": -1.0648993, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO3 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938872834, - "lat": 50.7927366, - "lon": -1.0654922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO4 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 938872839, - "lat": 50.7915571, - "lon": -1.0485260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO4 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 938872842, - "lat": 50.7905553, - "lon": -1.0639774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 938872846, - "lat": 50.8065314, - "lon": -1.0632041, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 938873757, - "lat": 52.1984075, - "lon": 0.3742546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "CB8 9 – Eagle Lane | Dullingham", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 938874290, - "lat": 51.9646420, - "lon": -0.0031449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "name": "Wyddial", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SG9 50" - } -}, -{ - "type": "node", - "id": 939075430, - "lat": 51.6317165, - "lon": -0.7526690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-08", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 939320616, - "lat": 50.4664531, - "lon": -3.5292694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 939493515, - "lat": 50.7135016, - "lon": -3.5501707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "806447806994070", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX4 331D", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 939741777, - "lat": 52.1959031, - "lon": -2.2261598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR1 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 939741783, - "lat": 52.1909335, - "lon": -2.2205307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 939741791, - "lat": 52.2087514, - "lon": -2.2298723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 204", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 939741813, - "lat": 52.2059917, - "lon": -2.2310432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR1 205" - } -}, -{ - "type": "node", - "id": 939741820, - "lat": 52.2060281, - "lon": -2.2271313, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Bizarrely, this postbox has WR2 (not WR1) 389 on its label. Having a postbox out-of-area is not unusual, but this one is so blatantly wrong, I've decided to go with the FOI list and give it its WR1 number.", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 939741845, - "lat": 52.2032907, - "lon": -2.2223586, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR1 121" - } -}, -{ - "type": "node", - "id": 939741869, - "lat": 52.2037002, - "lon": -2.2288106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR1 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 939850777, - "lat": 52.8061989, - "lon": -2.1118131, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 940157985, - "lat": 52.0874238, - "lon": -3.1481910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 940186426, - "lat": 54.9142625, - "lon": -2.0425053, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 940902429, - "lat": 53.1254577, - "lon": -1.2613006, - "tags": { - "amenity": "post_box", - "ele": "146.4854736", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 940925190, - "lat": 53.7698273, - "lon": -1.7322012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 4" - } -}, -{ - "type": "node", - "id": 940925596, - "lat": 53.7839356, - "lon": -1.7372879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD4 185", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 940925597, - "lat": 53.7877953, - "lon": -1.7408778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD4 186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 940925598, - "lat": 53.7881629, - "lon": -1.7448260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD4 113" - } -}, -{ - "type": "node", - "id": 940925906, - "lat": 53.7804512, - "lon": -1.7417220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD4 178" - } -}, -{ - "type": "node", - "id": 940961742, - "lat": 56.9729047, - "lon": -2.2307349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB39 649D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 941366772, - "lat": 53.9046802, - "lon": -3.0417595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY7 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 941381468, - "lat": 53.3714232, - "lon": -1.5013454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 941381469, - "lat": 53.3751933, - "lon": -1.4857916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 941386766, - "lat": 52.1242426, - "lon": -2.3208411, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "historic_operator": "Post Office", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "WR14 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Waypoint" - } -}, -{ - "type": "node", - "id": 942530601, - "lat": 54.8968722, - "lon": -2.9428428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA3 436", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 942537141, - "lat": 54.8946781, - "lon": -2.9358048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "historic": "memorial", - "memorial:type": "pillar box", - "name": "Carlisle Cross", - "note": "Replica pillar box of the first post box sited in mainland Britain in 1853, Botchergate, Carlisle", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "CA3 482", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 942627472, - "lat": 50.8501782, - "lon": -1.0134315, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO9 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 942678130, - "lat": 54.4738849, - "lon": -2.3491185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "image": "https://www.geograph.org.uk/photo/6828684", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA17 110" - } -}, -{ - "type": "node", - "id": 942714696, - "lat": 54.2774014, - "lon": -2.4542332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA10 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 942779697, - "lat": 55.1732228, - "lon": -1.5772746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NE63 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 942789054, - "lat": 50.7865398, - "lon": -1.0762658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO4 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 942789055, - "lat": 50.7813654, - "lon": -1.0847993, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 942789063, - "lat": 50.7935106, - "lon": -1.0958261, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO1 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 942789069, - "lat": 50.7888797, - "lon": -1.0967722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 942789080, - "lat": 50.7836782, - "lon": -1.0917359, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 942789088, - "lat": 50.7869130, - "lon": -1.0633716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO4 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 942801980, - "lat": 53.6667449, - "lon": -1.7732950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 942803285, - "lat": 53.6910937, - "lon": -2.5730918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PR6 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 942803345, - "lat": 53.6879856, - "lon": -2.5669443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PR6 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 942820565, - "lat": 51.5199566, - "lon": -0.1635478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 2;W1H 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 942859627, - "lat": 53.0712304, - "lon": -1.3183022, - "tags": { - "amenity": "post_box", - "ele": "112.1186523", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 942865100, - "lat": 53.0603477, - "lon": -1.3253278, - "tags": { - "amenity": "post_box", - "ele": "86.6439209" - } -}, -{ - "type": "node", - "id": 942865104, - "lat": 53.0637197, - "lon": -1.3289971, - "tags": { - "amenity": "post_box", - "ele": "106.5910645" - } -}, -{ - "type": "node", - "id": 942884862, - "lat": 53.3114327, - "lon": -1.1228999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "ele": "41.46", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S80 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 942971509, - "lat": 53.4021026, - "lon": -2.4534826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WA13 30" - } -}, -{ - "type": "node", - "id": 943039817, - "lat": 53.4143194, - "lon": -2.4291348, - "tags": { - "amenity": "post_box", - "ref": "M31 657" - } -}, -{ - "type": "node", - "id": 943129703, - "lat": 55.7307250, - "lon": -3.8118320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "check collection times - merged duplicate nodes, with different times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML8 26D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 943132720, - "lat": 55.7144881, - "lon": -3.8332162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "mapillary": "899422818237352", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2024-01-06" - } -}, -{ - "type": "node", - "id": 943235866, - "lat": 54.6189489, - "lon": -1.2840016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 943245933, - "lat": 50.5813219, - "lon": -3.9008764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PL20 769", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943258757, - "lat": 50.5580038, - "lon": -3.9658333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943266777, - "lat": 50.5392788, - "lon": -3.9007286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 496", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 943281255, - "lat": 50.8958932, - "lon": -1.4047540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "opening_hours": "Mo-Fr 13:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SO14 792", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 943312674, - "lat": 51.9696637, - "lon": -0.0281489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "name": "Chipping", - "note": "Behind bus stop, built into wall", - "post_box:type": "wall", - "ref": "SG9 37" - } -}, -{ - "type": "node", - "id": 943320998, - "lat": 51.9471239, - "lon": 0.0213877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "SG9 75" - } -}, -{ - "type": "node", - "id": 943330919, - "lat": 51.9491836, - "lon": 0.0387456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SG9 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 943361071, - "lat": 50.1625560, - "lon": -5.1228631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR10 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943374055, - "lat": 50.0588858, - "lon": -5.2762034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943390606, - "lat": 50.1540903, - "lon": -5.0981049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR11 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943402609, - "lat": 50.1897295, - "lon": -5.1972719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR3 105D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943411373, - "lat": 50.2558129, - "lon": -5.2899082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "next to bus stop shelter", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2020-10-28" - } -}, -{ - "type": "node", - "id": 943518534, - "lat": 50.1252621, - "lon": -5.0942740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943529649, - "lat": 50.1477497, - "lon": -5.0740371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943563621, - "lat": 50.1741594, - "lon": -5.0853870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 943619181, - "lat": 51.4639824, - "lon": -2.5933357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS6 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 943695175, - "lat": 51.1592189, - "lon": 1.2896732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 943855940, - "lat": 53.7366452, - "lon": -1.6681895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 210" - } -}, -{ - "type": "node", - "id": 943997683, - "lat": 51.4738613, - "lon": -2.5987642, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-25", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "BS6 339D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 944081473, - "lat": 52.1375316, - "lon": -3.1891842, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 944168522, - "lat": 50.8912040, - "lon": -0.3222361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN44 1569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 944168523, - "lat": 50.8900300, - "lon": -0.3141000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN44 1558", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 944168535, - "lat": 50.8956700, - "lon": -0.3271400, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN44 1559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 944168538, - "lat": 50.8940028, - "lon": -0.3242292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN44 1561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 944168541, - "lat": 50.8910800, - "lon": -0.3262500, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "BN44 1560", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN44 1560D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 944168544, - "lat": 50.8874200, - "lon": -0.3176600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "566775022171454", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN44 1557", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-02-13" - } -}, -{ - "type": "node", - "id": 944168557, - "lat": 50.8845656, - "lon": -0.3281661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "operator": "Royal Mail", - "ref": "BN44 1553", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 944168559, - "lat": 50.8851574, - "lon": -0.3353776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN44 1552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 944209189, - "lat": 51.9214478, - "lon": -0.6521890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LU7 28" - } -}, -{ - "type": "node", - "id": 944213555, - "lat": 51.9230536, - "lon": -0.6427342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 80" - } -}, -{ - "type": "node", - "id": 944296391, - "lat": 55.8675928, - "lon": -4.2792730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "888895791781934", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G3 52", - "royal_cypher": "VR", - "survey:date": "2021-11-13" - } -}, -{ - "type": "node", - "id": 944512392, - "lat": 50.4272442, - "lon": -3.6397632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 944674586, - "lat": 51.8980946, - "lon": 0.1717580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:20", - "name": "CM23 1HG – Hazel End | Bishops Stortford", - "post_box:type": "wall", - "ref": "CM23 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 944704102, - "lat": 53.6226709, - "lon": -1.7782892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 945002925, - "lat": 53.9246960, - "lon": -3.0088529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 945101894, - "lat": 51.0674291, - "lon": 0.5195251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN18 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 945102309, - "lat": 51.0829761, - "lon": 0.5093395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TN17 196", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 945129587, - "lat": 51.1136006, - "lon": 0.4721603, - "tags": { - "amenity": "post_box", - "colour": "red", - "fixme": "Postbox no longer there, checked as walked past. On Google Earth - can see September 2016, but not since June 2019.", - "ref": "TN17 249" - } -}, -{ - "type": "node", - "id": 945132142, - "lat": 51.1108921, - "lon": 0.4877176, - "tags": { - "amenity": "post_box", - "ref": "TN17 304" - } -}, -{ - "type": "node", - "id": 945134509, - "lat": 51.1150963, - "lon": 0.6424677, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN27 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 945134515, - "lat": 51.1151079, - "lon": 0.6285924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN27 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 945136930, - "lat": 51.1009449, - "lon": 0.6645800, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN27 172D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-06" - } -}, -{ - "type": "node", - "id": 945139017, - "lat": 51.1281368, - "lon": 0.4859698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 247", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 945149357, - "lat": 53.0629091, - "lon": -0.9657020, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 945212029, - "lat": 51.5918599, - "lon": -3.0597282, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 945360094, - "lat": 51.8143107, - "lon": -1.4567395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX29 303D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 945409182, - "lat": 53.3076617, - "lon": -1.1228115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "ele": "35.69", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS;survey" - } -}, -{ - "type": "node", - "id": 945441095, - "lat": 50.9962057, - "lon": -0.6372334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "wall", - "ref": "GU28 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 945508964, - "lat": 52.9512639, - "lon": -1.8396791, - "tags": { - "amenity": "post_box", - "ele": "82" - } -}, -{ - "type": "node", - "id": 945508976, - "lat": 52.9514931, - "lon": -1.8386704, - "tags": { - "amenity": "post_box", - "ele": "79.4340820" - } -}, -{ - "type": "node", - "id": 945658491, - "lat": 51.1388883, - "lon": 0.8960672, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN24 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 945712445, - "lat": 52.1191527, - "lon": -2.3194837, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "Time on RM PDF says 1730. Box says 1700", - "post_box:type": "lamp", - "ref": "WR14 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Waypoint, Long Exposure" - } -}, -{ - "type": "node", - "id": 945767235, - "lat": 51.6081188, - "lon": -0.1528328, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 945786737, - "lat": 50.9896980, - "lon": -0.6295728, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 945894428, - "lat": 52.1199711, - "lon": -2.3470674, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 945898410, - "lat": 50.9408946, - "lon": -1.4490114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 696", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 945907786, - "lat": 51.4871132, - "lon": -2.5196280, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 26D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 945922751, - "lat": 51.8214831, - "lon": -3.0199289, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 945924163, - "lat": 52.1219392, - "lon": -2.3281688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "description": "Has wrong-sized collection plate, more suitable to a lamp box, which RM data says it is.", - "post_box:type": "wall", - "ref": "WR14 74", - "royal_cypher": "no", - "source": "GPS Waypoint, long exposure" - } -}, -{ - "type": "node", - "id": 946042388, - "lat": 53.4316603, - "lon": -2.3940609, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M41 412" - } -}, -{ - "type": "node", - "id": 946042408, - "lat": 53.4313938, - "lon": -2.3849974, - "tags": { - "amenity": "post_box", - "ref": "M41 660" - } -}, -{ - "type": "node", - "id": 946073300, - "lat": 53.4186227, - "lon": -2.4263812, - "tags": { - "amenity": "post_box", - "ref": "M31 665" - } -}, -{ - "type": "node", - "id": 946073436, - "lat": 53.4002353, - "lon": -2.4379538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 70" - } -}, -{ - "type": "node", - "id": 946213489, - "lat": 52.4056127, - "lon": -0.0728060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 206" - } -}, -{ - "type": "node", - "id": 946213533, - "lat": 52.4091336, - "lon": -0.0740445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 28" - } -}, -{ - "type": "node", - "id": 946213568, - "lat": 52.4062591, - "lon": -0.0878679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 196" - } -}, -{ - "type": "node", - "id": 946213632, - "lat": 52.4033187, - "lon": -0.0820552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE28 60" - } -}, -{ - "type": "node", - "id": 946213637, - "lat": 52.3853679, - "lon": -0.0507496, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 946251870, - "lat": 53.4142625, - "lon": -2.4347154, - "tags": { - "amenity": "post_box", - "ref": "M31 760" - } -}, -{ - "type": "node", - "id": 946251972, - "lat": 53.4154540, - "lon": -2.4390110, - "tags": { - "amenity": "post_box", - "note": "collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 946252031, - "lat": 53.4164194, - "lon": -2.4347799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M31 668", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 946294236, - "lat": 52.8032052, - "lon": -2.1144663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "THE GREEN BAILEY STREET", - "post_box:type": "pillar", - "ref": "ST16 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 946304170, - "lat": 53.4187360, - "lon": -2.4367501, - "tags": { - "amenity": "post_box", - "note": "collection plate missing" - } -}, -{ - "type": "node", - "id": 946304209, - "lat": 53.4202412, - "lon": -2.4274388, - "tags": { - "amenity": "post_box", - "ref": "M31 452" - } -}, -{ - "type": "node", - "id": 946931532, - "lat": 53.7095212, - "lon": -1.8573321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX3 24" - } -}, -{ - "type": "node", - "id": 947871391, - "lat": 50.9349544, - "lon": -1.5766904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 947956368, - "lat": 51.2200583, - "lon": -0.5807855, - "tags": { - "amenity": "post_box", - "ref": "GU3 230" - } -}, -{ - "type": "node", - "id": 947963588, - "lat": 53.9222956, - "lon": -3.0265704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY7 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 948227857, - "lat": 50.9635291, - "lon": -1.5685430, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 541D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 948227875, - "lat": 50.9602340, - "lon": -1.5892345, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 948689029, - "lat": 51.0139328, - "lon": -1.3912988, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 948787130, - "lat": 53.6517727, - "lon": -1.7538194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 948792687, - "lat": 50.9735710, - "lon": -3.4246218, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX16 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 948852582, - "lat": 50.7802118, - "lon": -2.0194874, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH21 119", - "ref:GB:uprn": "10015301621", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 948926046, - "lat": 51.5298769, - "lon": -0.1454070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 37D" - } -}, -{ - "type": "node", - "id": 949650130, - "lat": 52.3512270, - "lon": -1.9742682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 949742320, - "lat": 52.1194666, - "lon": -0.2944873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "fixme": "check ref", - "name": "The Green", - "ref": "SG19 119" - } -}, -{ - "type": "node", - "id": 950122454, - "lat": 52.8773064, - "lon": -4.5543298, - "tags": { - "amenity": "post_box", - "name": "Garnfadryn Post Box" - } -}, -{ - "type": "node", - "id": 950307569, - "lat": 53.2487620, - "lon": -1.0929070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "ele": "38.097656", - "post_box:type": "lamp", - "ref": "S80 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 950742995, - "lat": 50.8969104, - "lon": -0.8607771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 122", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 951324651, - "lat": 52.4564564, - "lon": -2.0914114, - "tags": { - "amenity": "post_box", - "ref": "B63 106", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 951341601, - "lat": 52.4540596, - "lon": -2.0800898, - "tags": { - "amenity": "post_box", - "ref": "B63 1262", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 951360516, - "lat": 52.4537921, - "lon": -2.0851550, - "tags": { - "amenity": "post_box", - "ref": "B63 1139", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 951638945, - "lat": 52.1325712, - "lon": -2.3243364, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR14 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 951742972, - "lat": 53.2646065, - "lon": -1.4384214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S41 8ND", - "ref": "S41 417", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 951742976, - "lat": 53.2716893, - "lon": -1.4479309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S41 9QJ", - "ref": "S41 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951742987, - "lat": 53.2314429, - "lon": -1.4761824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3PB", - "ref": "S40 94D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 951742994, - "lat": 53.2753507, - "lon": -1.4587769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S41 9QB", - "ref": "S41 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 951743001, - "lat": 53.2451605, - "lon": -1.4695826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 4SL", - "ref": "S40 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743010, - "lat": 53.2248515, - "lon": -1.4731299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3NB", - "ref": "S40 236", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 951743030, - "lat": 53.2253370, - "lon": -1.4541009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S40 3EZ", - "ref": "S40 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743034, - "lat": 53.2191532, - "lon": -1.4947740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S42 7EW", - "ref": "S42 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743037, - "lat": 53.2683555, - "lon": -1.4431017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "postal_code": "S41 9RF", - "ref": "S41 374P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 951743061, - "lat": 53.2180838, - "lon": -1.4987299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S42 7ER", - "ref": "S42 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743068, - "lat": 53.2255947, - "lon": -1.4621359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S40 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743070, - "lat": 53.2772451, - "lon": -1.4393082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S41 9EQ", - "ref": "S41 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743084, - "lat": 53.2498383, - "lon": -1.4551929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S40 4UQ", - "ref": "S40 328D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743091, - "lat": 53.2360427, - "lon": -1.4651709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3QH", - "ref": "S40 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 951743093, - "lat": 53.2245636, - "lon": -1.4899735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "comment": "plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743103, - "lat": 53.2212066, - "lon": -1.4524843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S42 7LU", - "ref": "S42 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743110, - "lat": 53.2725941, - "lon": -1.4414833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S41 9ED", - "ref": "S41 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743114, - "lat": 53.2260428, - "lon": -1.4515441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "S40 3EE", - "ref": "S40 179D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 951743130, - "lat": 53.2230681, - "lon": -1.4672996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S42 7LS", - "ref": "S42 377", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 951743132, - "lat": 53.2478864, - "lon": -1.4662380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "S40 4PT", - "ref": "S40 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743135, - "lat": 53.2473823, - "lon": -1.4780628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "S40 4XE", - "ref": "S40 373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 951743149, - "lat": 53.2283861, - "lon": -1.4541314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "S40 3DD", - "ref": "S40 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952030354, - "lat": 51.0916004, - "lon": 0.4266982, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN17 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952082996, - "lat": 51.0889894, - "lon": 0.2015276, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TN3 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 952172704, - "lat": 52.7871052, - "lon": -2.2507882, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST20 2001" - } -}, -{ - "type": "node", - "id": 952302919, - "lat": 52.9544464, - "lon": -1.1599943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "ele": "62.370850", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG1 92", - "ref:GB:uprn": "10015341872", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 952302926, - "lat": 52.9543901, - "lon": -1.1599171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "ele": "62.130493", - "mail:franked": "only", - "opening_hours": "Mo-Fr 11:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG1 91", - "ref:GB:uprn": "10025647706", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 952302929, - "lat": 52.9532006, - "lon": -1.1574398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ele": "51.075317", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 2", - "ref:GB:uprn": "10015726578", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 952302933, - "lat": 52.9532083, - "lon": -1.1574722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ele": "50.835083", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 157", - "ref:GB:uprn": "10015461300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 952304370, - "lat": 52.9519594, - "lon": -1.1564552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "ele": "54.439941", - "post_box:design": "type_a", - "post_box:manufacturer": "W. T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG1 106", - "ref:GB:uprn": "10015365173", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 952375174, - "lat": 52.7856932, - "lon": -2.2548430, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST20 319" - } -}, -{ - "type": "node", - "id": 952703740, - "lat": 52.2099901, - "lon": -2.2246230, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952703811, - "lat": 52.2301858, - "lon": -2.2282556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:15", - "post_box:type": "wall", - "ref": "WR3 103", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 952703885, - "lat": 52.2260185, - "lon": -2.2320353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR3 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952703893, - "lat": 52.2042140, - "lon": -2.2119025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "wall", - "ref": "WR3 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704035, - "lat": 52.1983056, - "lon": -2.2132907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR3 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704071, - "lat": 52.2106651, - "lon": -2.2178104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR3 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704098, - "lat": 52.2213890, - "lon": -2.2284538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "fixme": "check box type", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR3 455", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 952704129, - "lat": 52.2237777, - "lon": -2.2349464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "WR3 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704149, - "lat": 52.2209486, - "lon": -2.2145639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "post_box:type": "lamp", - "ref": "WR3 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704190, - "lat": 52.2021124, - "lon": -2.2149151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "WR3 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704258, - "lat": 52.2181248, - "lon": -2.1955069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00", - "mail:meter": "yes", - "opening_hours": "Mo-Fr 09:45-19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WR3 518" - } -}, -{ - "type": "node", - "id": 952704297, - "lat": 52.2104391, - "lon": -2.2106153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "WR3 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704311, - "lat": 52.2047403, - "lon": -2.2179715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "WR3 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704375, - "lat": 52.2031496, - "lon": -2.2082471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR3 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952704407, - "lat": 52.2162779, - "lon": -2.2259066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "box type wrong on drycos list", - "post_box:type": "wall", - "ref": "WR3 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 952910378, - "lat": 52.0997000, - "lon": -0.2814039, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 954160339, - "lat": 52.2062833, - "lon": 1.5806236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP16 4694", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 954234757, - "lat": 53.2608250, - "lon": -1.9007330, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 954255247, - "lat": 53.7617276, - "lon": -3.0445873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 954255361, - "lat": 53.7590561, - "lon": -3.0391275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 954268617, - "lat": 53.2574750, - "lon": -1.8981658, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 954274602, - "lat": 53.2572910, - "lon": -1.8940100, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 954296894, - "lat": 53.2607650, - "lon": -1.9056450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "271793211523732", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 954625094, - "lat": 51.4761784, - "lon": -2.5953905, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS7 335" - } -}, -{ - "type": "node", - "id": 954735016, - "lat": 53.4297130, - "lon": -2.2437004, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 954772570, - "lat": 52.4137276, - "lon": 0.7503171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "note": "In courtyard through gate. Gate locked and box inaccessible when delivery office closed.", - "opening_hours": "24/7", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "IP24 8254P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 954772572, - "lat": 52.4136495, - "lon": 0.7503512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "note": "Two phsical boxes here, side by side.", - "note_2": "Although collection plate lists Sunday times, added sticker says no more Sunday collections.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP24 3249", - "ref:GB:uprn": "10011981035", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 954805503, - "lat": 53.7630474, - "lon": -3.0238464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "FY8 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 954850348, - "lat": 51.1362136, - "lon": -3.2508442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA4 10" - } -}, -{ - "type": "node", - "id": 954881132, - "lat": 52.7905118, - "lon": -1.9928543, - "tags": { - "amenity": "post_box", - "postal_code": "ST18", - "ref": "ST18 217" - } -}, -{ - "type": "node", - "id": 954881264, - "lat": 52.7872781, - "lon": -1.9813429, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "ST17", - "ref": "ST17 61" - } -}, -{ - "type": "node", - "id": 954881348, - "lat": 52.7948429, - "lon": -2.0004123, - "tags": { - "amenity": "post_box", - "postal_code": "ST18", - "ref": "ST18 1807" - } -}, -{ - "type": "node", - "id": 954881412, - "lat": 52.7315902, - "lon": -1.8922662, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 954881478, - "lat": 52.7935823, - "lon": -1.9916317, - "tags": { - "amenity": "post_box", - "postal_code": "ST18", - "ref": "ST18 67" - } -}, -{ - "type": "node", - "id": 955092009, - "lat": 51.9214652, - "lon": -0.6378023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LU7 79" - } -}, -{ - "type": "node", - "id": 955112870, - "lat": 57.0682842, - "lon": -4.8033264, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH35 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 955113711, - "lat": 56.8931743, - "lon": -4.9185347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_plate:date": "2023-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH34 73D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 955169883, - "lat": 56.7667771, - "lon": -3.8369604, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH18 17D", - "royal_cypher": "GR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 955174095, - "lat": 56.7451707, - "lon": -3.7791540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PH16 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 955174100, - "lat": 56.7215200, - "lon": -3.7702577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ref": "PH16 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 955179428, - "lat": 52.7837317, - "lon": -2.2552062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST20 87" - } -}, -{ - "type": "node", - "id": 955235487, - "lat": 52.2308513, - "lon": -2.1699760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR3 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955236049, - "lat": 52.2287548, - "lon": -2.2030894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR3 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955236085, - "lat": 52.2296269, - "lon": -2.1942477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955236104, - "lat": 52.2396062, - "lon": -2.1733216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:45", - "note": "Dycos has the wrong type for this box", - "post_box:type": "wall", - "ref": "WR3 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955236142, - "lat": 52.2331070, - "lon": -2.1919972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR3 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955236262, - "lat": 52.2238398, - "lon": -2.1818213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:45", - "post_box:type": "lamp", - "ref": "WR3 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955236848, - "lat": 52.2299114, - "lon": -2.1902510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR3 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955306507, - "lat": 53.4262711, - "lon": -2.3466718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "ref": "M33 326", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 955306524, - "lat": 53.4268236, - "lon": -2.3519011, - "tags": { - "amenity": "post_box", - "ref": "M33 290" - } -}, -{ - "type": "node", - "id": 955306585, - "lat": 53.4212508, - "lon": -2.3490920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "ref": "M33 666", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 955306595, - "lat": 53.4230925, - "lon": -2.3529342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "reference not visible", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "M33 737D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955306629, - "lat": 53.4296430, - "lon": -2.3494655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "ref": "M33 587", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 955680656, - "lat": 51.0946793, - "lon": 0.2137673, - "tags": { - "amenity": "post_box", - "ref": "TN3 281" - } -}, -{ - "type": "node", - "id": 955683695, - "lat": 51.1358946, - "lon": 0.1429844, - "tags": { - "amenity": "post_box", - "ref": "TN3 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 955684770, - "lat": 51.1344183, - "lon": 0.2180154, - "tags": { - "amenity": "post_box", - "ref": "TN3 340" - } -}, -{ - "type": "node", - "id": 955711770, - "lat": 51.1872062, - "lon": 0.5094049, - "tags": { - "amenity": "post_box", - "ref": "TN12 42" - } -}, -{ - "type": "node", - "id": 955715696, - "lat": 51.1836206, - "lon": 0.5211424, - "tags": { - "amenity": "post_box", - "ref": "TN12 179" - } -}, -{ - "type": "node", - "id": 955717205, - "lat": 51.1715392, - "lon": 0.4873688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 103" - } -}, -{ - "type": "node", - "id": 955731263, - "lat": 51.1597864, - "lon": 0.5149393, - "tags": { - "amenity": "post_box", - "ref": "TN12 31" - } -}, -{ - "type": "node", - "id": 956355173, - "lat": 51.5310965, - "lon": -0.1350574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "colour": "red", - "mailtypes": "franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "meter", - "ref": "NW1 83P", - "royal_cypher": "no", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 83P" - } -}, -{ - "type": "node", - "id": 956432411, - "lat": 52.4880192, - "lon": -0.2888247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE7 174", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 956476032, - "lat": 51.3299627, - "lon": 0.1347705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "colour": "red", - "mapillary": "7944066299000821", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN15 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 956508446, - "lat": 51.3248534, - "lon": 0.1418516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 95", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 956515788, - "lat": 53.0209932, - "lon": -1.3904625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE5 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956515789, - "lat": 52.8709743, - "lon": -1.4296418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 1388" - } -}, -{ - "type": "node", - "id": 956515799, - "lat": 52.8386301, - "lon": -1.4817862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 288" - } -}, -{ - "type": "node", - "id": 956515800, - "lat": 53.0244550, - "lon": -1.3828038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE5 479D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956515801, - "lat": 53.0260117, - "lon": -1.3717562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956515802, - "lat": 53.0298769, - "lon": -1.3747505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956515811, - "lat": 52.8660700, - "lon": -1.4340127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 666" - } -}, -{ - "type": "node", - "id": 956515813, - "lat": 53.0129903, - "lon": -1.4111982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE5 637", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956517704, - "lat": 53.0442453, - "lon": -1.3904627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 155" - } -}, -{ - "type": "node", - "id": 956517705, - "lat": 53.0397935, - "lon": -1.3866203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE5 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956517717, - "lat": 53.0630283, - "lon": -1.4012353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 157", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 956517723, - "lat": 53.0426957, - "lon": -1.3812313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE5 616", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 956517727, - "lat": 53.0475682, - "lon": -1.3861151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE5 446", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 956517728, - "lat": 53.0426687, - "lon": -1.3999404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 156" - } -}, -{ - "type": "node", - "id": 956517739, - "lat": 53.0485817, - "lon": -1.3966742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE5 600", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 956520415, - "lat": 53.0593632, - "lon": -1.4342302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE5 225" - } -}, -{ - "type": "node", - "id": 956520418, - "lat": 53.0430819, - "lon": -1.4137805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 723" - } -}, -{ - "type": "node", - "id": 956520419, - "lat": 53.0544115, - "lon": -1.4136346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 205" - } -}, -{ - "type": "node", - "id": 956520420, - "lat": 53.0463631, - "lon": -1.4134548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE5 525" - } -}, -{ - "type": "node", - "id": 956520421, - "lat": 53.0539452, - "lon": -1.3963922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE5 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956520425, - "lat": 53.0538243, - "lon": -1.4170859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 534" - } -}, -{ - "type": "node", - "id": 956520426, - "lat": 53.0517238, - "lon": -1.4173955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 503" - } -}, -{ - "type": "node", - "id": 956522617, - "lat": 53.0140777, - "lon": -1.4319374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 640" - } -}, -{ - "type": "node", - "id": 956522619, - "lat": 53.0346376, - "lon": -1.4273539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 273" - } -}, -{ - "type": "node", - "id": 956522620, - "lat": 53.0191031, - "lon": -1.4249427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE5 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956524508, - "lat": 52.9567714, - "lon": -1.5068644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE22 299" - } -}, -{ - "type": "node", - "id": 956524509, - "lat": 52.9581865, - "lon": -1.4761430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "242142664770380", - "note": "I presume that this has been moved from around the corner?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 585", - "source:location": "survey", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 956524510, - "lat": 52.9522133, - "lon": -1.5027589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 696", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 956524511, - "lat": 52.9576917, - "lon": -1.4942234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 568" - } -}, -{ - "type": "node", - "id": 956524512, - "lat": 52.9547979, - "lon": -1.4792318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "450621940129074", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DE22 228", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 956524513, - "lat": 52.9560055, - "lon": -1.4724046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 82" - } -}, -{ - "type": "node", - "id": 956524514, - "lat": 52.9536358, - "lon": -1.4953940, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 321" - } -}, -{ - "type": "node", - "id": 956524515, - "lat": 52.9497549, - "lon": -1.5065994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 620" - } -}, -{ - "type": "node", - "id": 956525101, - "lat": 52.9441082, - "lon": -1.4956896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 706" - } -}, -{ - "type": "node", - "id": 956525102, - "lat": 52.9317828, - "lon": -1.5267580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE22 478" - } -}, -{ - "type": "node", - "id": 956525103, - "lat": 52.9512508, - "lon": -1.5002340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE22 668" - } -}, -{ - "type": "node", - "id": 956525104, - "lat": 52.9480130, - "lon": -1.4975698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 470" - } -}, -{ - "type": "node", - "id": 956525105, - "lat": 52.9391703, - "lon": -1.5028813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "124255123363416", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 75", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 956525106, - "lat": 52.9359735, - "lon": -1.5372776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-13", - "mapillary": "385991432926144", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE22 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 956784633, - "lat": 53.7692347, - "lon": -3.0274423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 956840276, - "lat": 53.7613051, - "lon": -3.0361445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 178D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 956852435, - "lat": 52.0974195, - "lon": -3.2843310, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 956862611, - "lat": 53.7660657, - "lon": -3.0186303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 254D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 957079810, - "lat": 51.6415928, - "lon": 0.6037208, - "tags": { - "amenity": "post_box", - "ref": "CM3 219" - } -}, -{ - "type": "node", - "id": 957079814, - "lat": 51.6508278, - "lon": 0.6067578, - "tags": { - "amenity": "post_box", - "ref": "CM3 101" - } -}, -{ - "type": "node", - "id": 957079816, - "lat": 51.6453866, - "lon": 0.6106960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 957179938, - "lat": 53.6993635, - "lon": -1.8690228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX3 92" - } -}, -{ - "type": "node", - "id": 957179939, - "lat": 53.7032299, - "lon": -1.8560301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX3 104" - } -}, -{ - "type": "node", - "id": 957179942, - "lat": 53.7091293, - "lon": -1.8619948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "HX3 18" - } -}, -{ - "type": "node", - "id": 957267293, - "lat": 53.7536185, - "lon": -3.0344343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 106D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 957267367, - "lat": 53.7561792, - "lon": -3.0361453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 957267375, - "lat": 53.7522275, - "lon": -3.0318695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "FY8 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 957288722, - "lat": 52.9182516, - "lon": -1.4994562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 28" - } -}, -{ - "type": "node", - "id": 957288726, - "lat": 52.9176881, - "lon": -1.5021338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 1399" - } -}, -{ - "type": "node", - "id": 957288729, - "lat": 52.9279077, - "lon": -1.5292275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE22 570" - } -}, -{ - "type": "node", - "id": 957288730, - "lat": 52.9257048, - "lon": -1.5016085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 2D" - } -}, -{ - "type": "node", - "id": 957288734, - "lat": 52.9224593, - "lon": -1.5010770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 166" - } -}, -{ - "type": "node", - "id": 957288738, - "lat": 52.9271666, - "lon": -1.5127644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 473" - } -}, -{ - "type": "node", - "id": 957288740, - "lat": 52.8359490, - "lon": -1.5047668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 455" - } -}, -{ - "type": "node", - "id": 957293872, - "lat": 52.8833280, - "lon": -1.6395702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 779" - } -}, -{ - "type": "node", - "id": 957293873, - "lat": 52.8633689, - "lon": -1.6143314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE65 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957293874, - "lat": 52.8523171, - "lon": -1.6039689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 757" - } -}, -{ - "type": "node", - "id": 957293875, - "lat": 52.8720450, - "lon": -1.6253200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE65 708" - } -}, -{ - "type": "node", - "id": 957293876, - "lat": 52.8638355, - "lon": -1.6526323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 70" - } -}, -{ - "type": "node", - "id": 957293877, - "lat": 52.8498028, - "lon": -1.6042067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 292" - } -}, -{ - "type": "node", - "id": 957293878, - "lat": 52.9148557, - "lon": -1.5077443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "291443212802647", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 322", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 957293879, - "lat": 52.8537184, - "lon": -1.5802781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 353" - } -}, -{ - "type": "node", - "id": 957522948, - "lat": 52.9206976, - "lon": -1.4887445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE22 139" - } -}, -{ - "type": "node", - "id": 957522956, - "lat": 52.9192275, - "lon": -1.4908055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 957522957, - "lat": 52.8835954, - "lon": -1.7217086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE65 231" - } -}, -{ - "type": "node", - "id": 957522958, - "lat": 52.8656946, - "lon": -1.6871242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 680" - } -}, -{ - "type": "node", - "id": 957522959, - "lat": 52.8938721, - "lon": -1.7039632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 610" - } -}, -{ - "type": "node", - "id": 957522967, - "lat": 52.8995058, - "lon": -1.6941185, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE65 282" - } -}, -{ - "type": "node", - "id": 957522969, - "lat": 52.8690657, - "lon": -1.7143187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 270" - } -}, -{ - "type": "node", - "id": 957525777, - "lat": 53.6797568, - "lon": -1.7641244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957525917, - "lat": 53.6797759, - "lon": -1.7640547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 957536211, - "lat": 52.8949070, - "lon": -1.6241508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 513" - } -}, -{ - "type": "node", - "id": 957536220, - "lat": 52.8808237, - "lon": -1.6044697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 119" - } -}, -{ - "type": "node", - "id": 957536221, - "lat": 52.8803170, - "lon": -1.5983756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 699" - } -}, -{ - "type": "node", - "id": 957536222, - "lat": 52.8647430, - "lon": -1.4380534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 515D" - } -}, -{ - "type": "node", - "id": 957536223, - "lat": 52.8995200, - "lon": -1.6656306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE65 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957536228, - "lat": 52.8777040, - "lon": -1.6028157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 132" - } -}, -{ - "type": "node", - "id": 957536231, - "lat": 52.8890556, - "lon": -1.5728407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 43" - } -}, -{ - "type": "node", - "id": 957536234, - "lat": 52.8772816, - "lon": -1.5897880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 630" - } -}, -{ - "type": "node", - "id": 957563312, - "lat": 52.8535509, - "lon": -1.4714847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957563337, - "lat": 52.8320870, - "lon": -1.4389827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 747" - } -}, -{ - "type": "node", - "id": 957563344, - "lat": 52.8533309, - "lon": -1.4775822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE73 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 957563348, - "lat": 52.8731211, - "lon": -1.4402871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 51" - } -}, -{ - "type": "node", - "id": 957563368, - "lat": 52.8702721, - "lon": -1.4324715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957563373, - "lat": 52.8414665, - "lon": -1.4495733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 240" - } -}, -{ - "type": "node", - "id": 957574493, - "lat": 53.7054764, - "lon": -1.8578503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 957615023, - "lat": 52.8127286, - "lon": -1.4689624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957615031, - "lat": 52.8053403, - "lon": -1.4838390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "outside No.69 Ashby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "postal_code": "DE73 7JJ", - "ref": "DE73 13" - } -}, -{ - "type": "node", - "id": 957615034, - "lat": 52.7753465, - "lon": -1.4233579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE65 606" - } -}, -{ - "type": "node", - "id": 957615039, - "lat": 52.8291925, - "lon": -1.4274369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "DE73 768", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957615047, - "lat": 52.8114894, - "lon": -1.4792728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 276" - } -}, -{ - "type": "node", - "id": 957615050, - "lat": 52.8218029, - "lon": -1.4322790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 128" - } -}, -{ - "type": "node", - "id": 957615052, - "lat": 52.8152005, - "lon": -1.4324452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 641" - } -}, -{ - "type": "node", - "id": 957615059, - "lat": 52.8317387, - "lon": -1.4262276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 263" - } -}, -{ - "type": "node", - "id": 957615061, - "lat": 52.7705917, - "lon": -1.4281862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE65 603" - } -}, -{ - "type": "node", - "id": 957635224, - "lat": 52.8255097, - "lon": -1.4245119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE73 130" - } -}, -{ - "type": "node", - "id": 957635299, - "lat": 52.8239090, - "lon": -1.4337228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE73 127" - } -}, -{ - "type": "node", - "id": 957635303, - "lat": 52.8051131, - "lon": -1.3816379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE73 304", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 957635306, - "lat": 52.8030396, - "lon": -1.3964969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE73 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957635310, - "lat": 52.8192853, - "lon": -1.4010081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "wall", - "ref": "DE73 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957635327, - "lat": 52.8263976, - "lon": -1.4307504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE73 192" - } -}, -{ - "type": "node", - "id": 957635330, - "lat": 52.8042835, - "lon": -1.3893865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE74 559D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957635333, - "lat": 52.8016171, - "lon": -1.4012854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE74 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957642827, - "lat": 51.5515368, - "lon": -0.1714505, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 42" - } -}, -{ - "type": "node", - "id": 957644755, - "lat": 52.7428898, - "lon": -1.5508800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1161" - } -}, -{ - "type": "node", - "id": 957644758, - "lat": 52.7319735, - "lon": -1.5500839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE12 1204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957644762, - "lat": 52.7379067, - "lon": -1.5319550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1159", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 957644765, - "lat": 52.7332879, - "lon": -1.5694189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1210" - } -}, -{ - "type": "node", - "id": 957644783, - "lat": 52.7344857, - "lon": -1.5401562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1154" - } -}, -{ - "type": "node", - "id": 957644785, - "lat": 52.6999220, - "lon": -1.5801356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE12 1158" - } -}, -{ - "type": "node", - "id": 957644790, - "lat": 52.7403800, - "lon": -1.5263969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE12 1172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957659372, - "lat": 52.7246470, - "lon": -1.5267098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1164" - } -}, -{ - "type": "node", - "id": 957659373, - "lat": 52.6806867, - "lon": -1.4907935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE12 1147" - } -}, -{ - "type": "node", - "id": 957659377, - "lat": 52.7212523, - "lon": -1.5389305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1168" - } -}, -{ - "type": "node", - "id": 957659379, - "lat": 52.7135656, - "lon": -1.5260215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1171" - } -}, -{ - "type": "node", - "id": 957659389, - "lat": 52.6850443, - "lon": -1.4726913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1141" - } -}, -{ - "type": "node", - "id": 957659393, - "lat": 52.7151302, - "lon": -1.5579814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1157" - } -}, -{ - "type": "node", - "id": 957659397, - "lat": 52.7057091, - "lon": -1.5183981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1196" - } -}, -{ - "type": "node", - "id": 957659400, - "lat": 52.7131853, - "lon": -1.5184468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1218" - } -}, -{ - "type": "node", - "id": 957659408, - "lat": 52.7009846, - "lon": -1.5097235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1136" - } -}, -{ - "type": "node", - "id": 957659412, - "lat": 52.7293278, - "lon": -1.5411922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE12 1165" - } -}, -{ - "type": "node", - "id": 957667057, - "lat": 51.5493840, - "lon": -0.1693586, - "tags": { - "amenity": "post_box", - "ref": "NW3 17" - } -}, -{ - "type": "node", - "id": 957703969, - "lat": 52.8085586, - "lon": -1.6022749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1070" - } -}, -{ - "type": "node", - "id": 957703970, - "lat": 52.6869525, - "lon": -1.5350388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE12 1120" - } -}, -{ - "type": "node", - "id": 957703971, - "lat": 52.8018292, - "lon": -1.5964109, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "DE15 1185" - } -}, -{ - "type": "node", - "id": 957703972, - "lat": 52.8041103, - "lon": -1.5945713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1182" - } -}, -{ - "type": "node", - "id": 957703973, - "lat": 52.8127354, - "lon": -1.6069686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1246" - } -}, -{ - "type": "node", - "id": 957703974, - "lat": 52.6878099, - "lon": -1.5473815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE12 1146" - } -}, -{ - "type": "node", - "id": 957703975, - "lat": 52.8026790, - "lon": -1.5997200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE15 1173" - } -}, -{ - "type": "node", - "id": 957703976, - "lat": 52.6855437, - "lon": -1.5338860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE12 1169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957703977, - "lat": 52.8056823, - "lon": -1.5633493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE15 1214" - } -}, -{ - "type": "node", - "id": 957704266, - "lat": 51.4530978, - "lon": -2.5980068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "note": "moved as part of bus improvements", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BS1 411;BS1 406", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2014-02-27" - } -}, -{ - "type": "node", - "id": 957704329, - "lat": 52.7929641, - "lon": -1.6258428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1113" - } -}, -{ - "type": "node", - "id": 957704330, - "lat": 52.7978112, - "lon": -1.6220015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1014" - } -}, -{ - "type": "node", - "id": 957704331, - "lat": 52.7945441, - "lon": -1.6141911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1026" - } -}, -{ - "type": "node", - "id": 957704332, - "lat": 52.8051353, - "lon": -1.6098939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1063" - } -}, -{ - "type": "node", - "id": 957704333, - "lat": 52.7966614, - "lon": -1.6171419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1022" - } -}, -{ - "type": "node", - "id": 957704334, - "lat": 52.8066315, - "lon": -1.6129585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1082" - } -}, -{ - "type": "node", - "id": 957704336, - "lat": 52.8064867, - "lon": -1.6068889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1066" - } -}, -{ - "type": "node", - "id": 957704337, - "lat": 52.8015848, - "lon": -1.6212707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1067" - } -}, -{ - "type": "node", - "id": 957739303, - "lat": 51.4528810, - "lon": -2.6005306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "name": "BS1 2405D;BS1 2406D", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BS1 2405;BS1 2406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957768930, - "lat": 51.4541127, - "lon": -2.6021653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BS1 2404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957768942, - "lat": 51.4541207, - "lon": -2.6021782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BS1 2403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 957903921, - "lat": 53.7571641, - "lon": -3.0235981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 957903930, - "lat": 53.7559425, - "lon": -3.0273251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 263D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 957928642, - "lat": 53.4976468, - "lon": -2.3098224, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 958230830, - "lat": 54.9888122, - "lon": -1.5740761, - "tags": { - "amenity": "post_box", - "ref": "NE6 206" - } -}, -{ - "type": "node", - "id": 958277711, - "lat": 52.1319811, - "lon": -2.3035693, - "tags": { - "access": "permissive", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "indoor_pillar", - "post_box:manufacturer": "no", - "ref": "WR14 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958636775, - "lat": 55.9183291, - "lon": -3.3156084, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 574D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 958910887, - "lat": 53.0242476, - "lon": -1.7259155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 800" - } -}, -{ - "type": "node", - "id": 958910890, - "lat": 53.0180725, - "lon": -1.7320980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 803" - } -}, -{ - "type": "node", - "id": 958910892, - "lat": 53.0177599, - "lon": -1.7346572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 804" - } -}, -{ - "type": "node", - "id": 958910893, - "lat": 53.0167538, - "lon": -1.7343586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:45", - "name": "DE6 813", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958910894, - "lat": 53.0101637, - "lon": -1.7415959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "362623465515364", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE6 118", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 958910902, - "lat": 53.0282815, - "lon": -1.7550629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE6 866", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 958910904, - "lat": 53.0208822, - "lon": -1.7273270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 843" - } -}, -{ - "type": "node", - "id": 958910905, - "lat": 53.0157228, - "lon": -1.7370835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "DE6 816", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE6 816", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 958910906, - "lat": 53.0128227, - "lon": -1.7431513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "573890733968949", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE6 823", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 958910909, - "lat": 53.0158547, - "lon": -1.7319294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "544832593636899", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 831", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 958935479, - "lat": 53.0153686, - "lon": -1.7245425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 879" - } -}, -{ - "type": "node", - "id": 958935483, - "lat": 53.0137495, - "lon": -1.7242427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "3180071405652728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 857", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 958935485, - "lat": 53.0073787, - "lon": -1.7281645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 869" - } -}, -{ - "type": "node", - "id": 958935495, - "lat": 53.0099452, - "lon": -1.7218340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1010996852980462", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 859", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 958935498, - "lat": 53.0148259, - "lon": -1.7329895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 983" - } -}, -{ - "type": "node", - "id": 958935500, - "lat": 53.0124856, - "lon": -1.7312626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 887" - } -}, -{ - "type": "node", - "id": 958935502, - "lat": 53.0090607, - "lon": -1.7253716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 885" - } -}, -{ - "type": "node", - "id": 958935510, - "lat": 53.0059787, - "lon": -1.7243430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 873" - } -}, -{ - "type": "node", - "id": 958935514, - "lat": 53.0060285, - "lon": -1.7123159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 888" - } -}, -{ - "type": "node", - "id": 958962329, - "lat": 53.0147033, - "lon": -1.3595493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "covered": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE75 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958962337, - "lat": 53.0104027, - "lon": -1.3686205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 741", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958962340, - "lat": 53.0090078, - "lon": -1.3781616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 464D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958962342, - "lat": 53.0177572, - "lon": -1.3668407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 720D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 958962344, - "lat": 53.0096857, - "lon": -1.3673125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE75 787" - } -}, -{ - "type": "node", - "id": 958962345, - "lat": 53.0245338, - "lon": -1.3753142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE75 1344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958962347, - "lat": 53.0176301, - "lon": -1.3616102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE75 861D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 958979356, - "lat": 53.0052339, - "lon": -1.3455086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 1363D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958979358, - "lat": 53.0104555, - "lon": -1.3604878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE75 643D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958979363, - "lat": 53.0094094, - "lon": -1.3398159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 654D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958979366, - "lat": 53.0042338, - "lon": -1.3517186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 634", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 958979368, - "lat": 53.0131342, - "lon": -1.3547612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DE75 611;DE75 651", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958979373, - "lat": 53.0127143, - "lon": -1.3415267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE75 647D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 958982325, - "lat": 52.9298610, - "lon": -1.4829720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 959154937, - "lat": 51.3408403, - "lon": 0.7526441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 959174620, - "lat": 53.7520723, - "lon": -3.0369747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 959174624, - "lat": 53.7509917, - "lon": -3.0332164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "FY8 166D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 959429168, - "lat": 52.5477379, - "lon": -1.7889693, - "tags": { - "amenity": "post_box", - "ref": "B76 5", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 959448867, - "lat": 52.9656839, - "lon": -2.6807004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 660D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 959812479, - "lat": 52.7792041, - "lon": -2.2644751, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 960134685, - "lat": 50.7628009, - "lon": -2.0236156, - "tags": { - "amenity": "post_box", - "ref": "BH21 26", - "ref:GB:uprn": "10015391429" - } -}, -{ - "type": "node", - "id": 960330747, - "lat": 51.3522593, - "lon": 0.7161358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 960354805, - "lat": 53.7009304, - "lon": -1.8622068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "HX3 45" - } -}, -{ - "type": "node", - "id": 960354809, - "lat": 53.7125774, - "lon": -1.8669355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX1 116" - } -}, -{ - "type": "node", - "id": 960423162, - "lat": 51.3976687, - "lon": 0.5420644, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME4 100", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME4 100D", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 960658908, - "lat": 53.6341527, - "lon": -1.7730685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 960852139, - "lat": 52.7798463, - "lon": -2.2761926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "in bus layby, opposite 'Greenacres'", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ST20 414" - } -}, -{ - "type": "node", - "id": 960863229, - "lat": 54.1771850, - "lon": -6.3434780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 961224893, - "lat": 52.4519711, - "lon": -1.8849197, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 356D", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 961287988, - "lat": 53.7488878, - "lon": -3.0219542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 961288018, - "lat": 53.7457540, - "lon": -3.0189451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 961354714, - "lat": 53.7517117, - "lon": -3.0245966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 168D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963014115, - "lat": 53.7539558, - "lon": -3.0162736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963014426, - "lat": 53.7537763, - "lon": -3.0108482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 221D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963190380, - "lat": 53.7525027, - "lon": -3.0028371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963190382, - "lat": 53.7564780, - "lon": -3.0110918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963190431, - "lat": 53.7535233, - "lon": -2.9952284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963190482, - "lat": 53.7618387, - "lon": -3.0102598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963190534, - "lat": 53.7501666, - "lon": -3.0044552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963190579, - "lat": 53.7586267, - "lon": -3.0114734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 963552508, - "lat": 51.8418035, - "lon": -2.4724889, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 963619951, - "lat": 50.8822573, - "lon": -0.3291925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN44 1570", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 963780524, - "lat": 51.0578251, - "lon": -1.0708291, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "description": "This postbox is of a brand new EIIR lamp design.", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 963781103, - "lat": 51.0869224, - "lon": -1.0801406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 963912512, - "lat": 53.4225722, - "lon": -2.3406522, - "tags": { - "amenity": "post_box", - "ref": "M33 327" - } -}, -{ - "type": "node", - "id": 963912554, - "lat": 53.4216855, - "lon": -2.3362773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M33 387" - } -}, -{ - "type": "node", - "id": 963941194, - "lat": 53.4164132, - "lon": -2.3453210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M33 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 963941217, - "lat": 53.4144848, - "lon": -2.3512053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M33 754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 963941227, - "lat": 53.4139781, - "lon": -2.3385516, - "tags": { - "amenity": "post_box", - "ref": "M33 129" - } -}, -{ - "type": "node", - "id": 963941247, - "lat": 53.4192810, - "lon": -2.3321069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M33 127" - } -}, -{ - "type": "node", - "id": 964062043, - "lat": 52.1148768, - "lon": -2.3232986, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 117", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 964072121, - "lat": 53.3529112, - "lon": -3.1171475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QEII Type K post box CH61 239 at Irby Post Office, which is inside MacColl's.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH61 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Irby Post Office.jpg" - } -}, -{ - "type": "node", - "id": 964077267, - "lat": 53.3583514, - "lon": -3.1128975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box CH61 529 by Machan, Soctland next to No. 81 Coombe Road, Irby. Formerly located on Glenwood Drive.", - "manufacturer": "Machan, Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at 81 Coombe Road, Irby.jpg" - } -}, -{ - "type": "node", - "id": 964672699, - "lat": 52.6259684, - "lon": -1.6497210, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 964707099, - "lat": 53.3568566, - "lon": -2.0359178, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 964753618, - "lat": 53.7454604, - "lon": -3.0238831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 54D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 964753662, - "lat": 53.7431677, - "lon": -3.0146940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 173D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 964861270, - "lat": 53.6425370, - "lon": -1.7569035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 964862070, - "lat": 53.6390917, - "lon": -1.7605763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 965378661, - "lat": 52.4628205, - "lon": 0.9168583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR16 1651", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 965997306, - "lat": 53.7419210, - "lon": -2.9879028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 121D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 965997362, - "lat": 53.7451318, - "lon": -2.9949695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 122D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 966048271, - "lat": 51.3942671, - "lon": 0.1858387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR8 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 966181114, - "lat": 53.6839120, - "lon": -1.6886082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 174" - } -}, -{ - "type": "node", - "id": 966325485, - "lat": 51.6322204, - "lon": -0.1850454, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 966604493, - "lat": 53.7421477, - "lon": -3.0045652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 966604494, - "lat": 53.7412477, - "lon": -2.9928543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 118D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 966604532, - "lat": 53.7400604, - "lon": -2.9992377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 966609203, - "lat": 52.1111893, - "lon": -2.3295074, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "historic_operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WR14 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 966665981, - "lat": 55.8796154, - "lon": -4.3404470, - "tags": { - "addr:city": "Glasgow", - "addr:housenumber": "1", - "addr:street": "Lennox Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "G14 6460", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 966666021, - "lat": 55.8816795, - "lon": -4.3469916, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 966667068, - "lat": 55.8876820, - "lon": -4.4284094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 966791049, - "lat": 51.3781051, - "lon": 0.0960864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 509D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 966792767, - "lat": 54.5749618, - "lon": -5.5566839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 966842559, - "lat": 52.1211597, - "lon": -3.1902877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD2 111D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 966845839, - "lat": 51.4587547, - "lon": -2.6186778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 413D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 966856160, - "lat": 51.2822000, - "lon": -0.8258004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "GU51 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 966940247, - "lat": 51.4561704, - "lon": -2.6162132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 412D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 967023649, - "lat": 54.2636136, - "lon": -0.4162493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "YO12 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 967268177, - "lat": 52.9477032, - "lon": 0.4948734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 463D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 967457018, - "lat": 51.8003966, - "lon": -0.7897112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP21 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 967686988, - "lat": 52.5912800, - "lon": -0.1161349, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 967704317, - "lat": 53.5676609, - "lon": -2.0235549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OL3 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-19" - } -}, -{ - "type": "node", - "id": 967747245, - "lat": 53.8745375, - "lon": -3.0382674, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 967747291, - "lat": 53.8722843, - "lon": -3.0404607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 968164789, - "lat": 52.8181400, - "lon": -2.0266130, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ST18 182" - } -}, -{ - "type": "node", - "id": 968280952, - "lat": 51.9165753, - "lon": -1.0118514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX27 829", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 968280953, - "lat": 51.9241296, - "lon": -0.9284794, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "MK18 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 968280956, - "lat": 51.9151713, - "lon": -0.9349353, - "tags": { - "amenity": "post_box", - "fixme": "survey: position?", - "post_box:type": "lamp", - "ref": "MK18 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 968287417, - "lat": 51.8977183, - "lon": -0.8747363, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "MK18 92", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 968287418, - "lat": 51.8457216, - "lon": -0.9245070, - "tags": { - "addr:postcode": "HP18 0JD", - "amenity": "post_box", - "mapillary": "470829347545750", - "post_box:type": "pillar", - "ref": "HP18 203", - "source": "GPS", - "survey:date": "2020-07-17" - } -}, -{ - "type": "node", - "id": 968287420, - "lat": 51.8768389, - "lon": -0.8744411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP22 257", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 968287421, - "lat": 51.8847367, - "lon": -0.8602258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP22 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 968287422, - "lat": 51.8462434, - "lon": -0.9202395, - "tags": { - "addr:postcode": "HP18 0JB", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "220340126225429", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP18 205", - "source": "GPS", - "survey:date": "2020-07-17" - } -}, -{ - "type": "node", - "id": 968288344, - "lat": 51.0386542, - "lon": -1.5243855, - "tags": { - "amenity": "post_box", - "mapillary": "298187178510990", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO51 527", - "source": "GPS", - "survey:date": "2020-10-07" - } -}, -{ - "type": "node", - "id": 968289792, - "lat": 51.5950193, - "lon": 0.3544943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CM13 35", - "royal_cypher": "EIIR", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 968444175, - "lat": 53.3924961, - "lon": -2.2941931, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 968501385, - "lat": 51.1539258, - "lon": -0.3196732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH5 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 968596293, - "lat": 53.7391066, - "lon": -2.9895939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "FY8 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 968596299, - "lat": 53.7498874, - "lon": -2.9949514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 968682374, - "lat": 53.6901788, - "lon": -1.4769526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 254" - } -}, -{ - "type": "node", - "id": 968752996, - "lat": 52.1876624, - "lon": -2.2413440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 968823628, - "lat": 52.0654714, - "lon": -1.8149914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "341468777816276", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL55 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-05" - } -}, -{ - "type": "node", - "id": 968836505, - "lat": 52.9284488, - "lon": 0.4949272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE36 496" - } -}, -{ - "type": "node", - "id": 968919609, - "lat": 52.0694234, - "lon": -1.8188562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL55 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 968946466, - "lat": 52.8590410, - "lon": -0.4973894, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 968973333, - "lat": 53.5161453, - "lon": -1.1768139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 968973638, - "lat": 53.5201982, - "lon": -1.1667813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 969015735, - "lat": 52.1075096, - "lon": -2.3266295, - "tags": { - "amenity": "post_box", - "collection_plate": "hidden", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "description": "Fluted Victorian Pillar Box.", - "historic_operator": "Post Office", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "WR14 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 969026875, - "lat": 52.8371070, - "lon": -2.1782631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:45; Sa 07:00", - "ref": "ST18 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 969167139, - "lat": 52.8556078, - "lon": -2.2084140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 969250695, - "lat": 53.3866013, - "lon": -2.1404782, - "tags": { - "amenity": "post_box", - "ref": "SK2 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 969962320, - "lat": 53.7652626, - "lon": -3.0350663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 969988357, - "lat": 52.1084888, - "lon": -3.2173394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LD2 112D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 970192363, - "lat": 53.7908783, - "lon": -3.0280613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 97D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 970192367, - "lat": 53.7901386, - "lon": -3.0213618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 970677793, - "lat": 51.4770246, - "lon": -2.6038669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "BS6 316D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 970677825, - "lat": 51.4813078, - "lon": -2.6061658, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 970996425, - "lat": 51.5551125, - "lon": -0.0422712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 971082538, - "lat": 52.4598160, - "lon": -0.3030314, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE28 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 971972465, - "lat": 52.4199002, - "lon": -1.9767859, - "tags": { - "amenity": "post_box", - "note": "No information board on the box", - "ref": "B31 1090" - } -}, -{ - "type": "node", - "id": 972103253, - "lat": 51.0171572, - "lon": -4.2102751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX39 3" - } -}, -{ - "type": "node", - "id": 972387881, - "lat": 52.1170726, - "lon": -1.8070947, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CV37 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 972388012, - "lat": 52.1196049, - "lon": -1.8119813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV37 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 972493152, - "lat": 52.1191147, - "lon": -1.8233834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 972535672, - "lat": 51.5165270, - "lon": -0.1532105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 19D;W1U 219D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 972540213, - "lat": 53.7371040, - "lon": -2.9785688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 972540339, - "lat": 53.7370150, - "lon": -2.9686024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 972969172, - "lat": 53.6878853, - "lon": -1.4722252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 252" - } -}, -{ - "type": "node", - "id": 973044451, - "lat": 51.4452484, - "lon": -0.0577076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "15/01/21 - collection plate damaged, cannot confirm ref number", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044457, - "lat": 51.4489416, - "lon": -0.0363948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044459, - "lat": 51.4487995, - "lon": -0.0528452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044472, - "lat": 51.4446796, - "lon": -0.0371324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044475, - "lat": 51.4439728, - "lon": -0.0611260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "15/01/21 - collection plate damaged, cannot confirm ref number", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044477, - "lat": 51.4456022, - "lon": -0.0540172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044485, - "lat": 51.4480278, - "lon": -0.0410036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973044486, - "lat": 51.4476161, - "lon": -0.0578695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 973127847, - "lat": 53.2471930, - "lon": -1.4442913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "108.7540283", - "post_box:type": "pillar", - "ref": "S41 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 973489938, - "lat": 52.4570427, - "lon": -1.8941539, - "tags": { - "amenity": "post_box", - "ref": "B12 58", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 973501143, - "lat": 52.4956498, - "lon": -1.8860838, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B6 275", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 973618504, - "lat": 53.7580401, - "lon": -3.0183064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 973618505, - "lat": 53.7525966, - "lon": -3.0282466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "FY8 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 973634236, - "lat": 51.6062586, - "lon": -1.1335672, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 973832261, - "lat": 52.4766107, - "lon": -1.8920262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "One of only ~120 Edward VIII boxes erected before his abdication", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "B5 22D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "visual survey;estimate", - "wikidata": "Q108784483" - } -}, -{ - "type": "node", - "id": 973880711, - "lat": 51.6851825, - "lon": -1.2313102, - "tags": { - "amenity": "post_box", - "ele": "42.1832275" - } -}, -{ - "type": "node", - "id": 973895337, - "lat": 56.0226077, - "lon": -3.4061399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 73", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974131048, - "lat": 51.4423241, - "lon": -0.0422555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 974131053, - "lat": 51.4411996, - "lon": -0.0373726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 17D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974131066, - "lat": 51.4360201, - "lon": -0.0381655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974131068, - "lat": 51.4424671, - "lon": -0.0460307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974131069, - "lat": 51.4421420, - "lon": -0.0393810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 39", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 974131070, - "lat": 51.4383686, - "lon": -0.0364066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974131086, - "lat": 51.4402048, - "lon": -0.0507550, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974131087, - "lat": 51.4393846, - "lon": -0.0346897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138672, - "lat": 51.4379060, - "lon": -0.0472178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 42D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138676, - "lat": 51.4348808, - "lon": -0.0393152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138678, - "lat": 51.4356453, - "lon": -0.0651037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138681, - "lat": 51.4392092, - "lon": -0.0536723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138688, - "lat": 51.4331405, - "lon": -0.0459844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138692, - "lat": 51.4371274, - "lon": -0.0583773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 22D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138694, - "lat": 51.4397099, - "lon": -0.0489555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 11D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138695, - "lat": 51.4353412, - "lon": -0.0436628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974138699, - "lat": 51.4359726, - "lon": -0.0552189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974159540, - "lat": 51.5484798, - "lon": -0.9180714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG9 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974160568, - "lat": 51.5390865, - "lon": -0.9011982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG9 47", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 974160709, - "lat": 51.5350770, - "lon": -0.9006841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG9 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974168754, - "lat": 51.5412403, - "lon": -0.9051547, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 974193131, - "lat": 51.1998592, - "lon": -0.1428729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 974213382, - "lat": 52.4765458, - "lon": -0.2500881, - "tags": { - "amenity": "post_box", - "ref": "PE7 47" - } -}, -{ - "type": "node", - "id": 974255071, - "lat": 52.2054676, - "lon": 1.5980773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP16 4636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 974256602, - "lat": 51.8680584, - "lon": -2.2202079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 974259729, - "lat": 51.5044379, - "lon": -1.9650106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 346" - } -}, -{ - "type": "node", - "id": 974267705, - "lat": 51.4813145, - "lon": -0.0662572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 44D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974267706, - "lat": 51.4768988, - "lon": -0.0582512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974267707, - "lat": 51.4810246, - "lon": -0.0607604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 974267709, - "lat": 51.4825455, - "lon": -0.0633024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "collection plate does say SE15 11, although RM website implies number should be SE15 54 https://www.royalmail.com/services-near-you/postbox/654-old-kent-road-se15-1ru/0000SE1554 SE15 11 is here https://www.royalmail.com/services-near-you/postbox/nunhead-", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974267710, - "lat": 51.4814610, - "lon": -0.0714807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974267711, - "lat": 51.4416761, - "lon": -0.0653871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "on 03/10/21 the ref was SE22 26D - but SE22 26 is further up the hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974271296, - "lat": 51.4819048, - "lon": -0.0774133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974271297, - "lat": 51.4732798, - "lon": -0.0703778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974271298, - "lat": 51.4729456, - "lon": -0.0551594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974271299, - "lat": 51.4738607, - "lon": -0.0733392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974271301, - "lat": 51.4740400, - "lon": -0.0678786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE15 7;SE15 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273170, - "lat": 51.4683478, - "lon": -0.0594928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273171, - "lat": 51.4656605, - "lon": -0.0745750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 20", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273172, - "lat": 51.4655771, - "lon": -0.0579330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 4", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273173, - "lat": 51.4664225, - "lon": -0.0614066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 17D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273174, - "lat": 51.4703913, - "lon": -0.0550597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 23D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273175, - "lat": 51.4650488, - "lon": -0.0639732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974273176, - "lat": 51.4686881, - "lon": -0.0555549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 36D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 974274198, - "lat": 51.4632351, - "lon": -0.0482990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 39", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974274200, - "lat": 51.4593656, - "lon": -0.0575960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE15 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974274201, - "lat": 51.4611911, - "lon": -0.0468282, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "Missing collection plate on 06/06/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974274202, - "lat": 51.4663787, - "lon": -0.0516929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Surveyed on 6th Jun 2021 - collection plate showed SE15 11 which is confirmed by https://www.royalmail.com/services-near-you so removed FIXME", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974274203, - "lat": 51.4613746, - "lon": -0.0597648, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "Collection Plate almost entirely missing, only ref number visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974274204, - "lat": 51.4685511, - "lon": -0.0527958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 974274205, - "lat": 51.4628181, - "lon": -0.0585656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE15 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 974503155, - "lat": 53.6290934, - "lon": -1.7892663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 974503231, - "lat": 53.6313987, - "lon": -1.7899873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 974675255, - "lat": 52.8591527, - "lon": -2.2576390, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST21 76" - } -}, -{ - "type": "node", - "id": 974750589, - "lat": 51.9293389, - "lon": 0.7168244, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 974760707, - "lat": 53.9098170, - "lon": -3.0277896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY7 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 974991470, - "lat": 51.7840676, - "lon": -2.1892659, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 975470698, - "lat": 50.7835260, - "lon": -1.0860091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 975470699, - "lat": 50.7888377, - "lon": -1.0596485, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 975470703, - "lat": 50.8052671, - "lon": -1.0823705, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 72D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 975470705, - "lat": 50.7792251, - "lon": -1.0806914, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 975470711, - "lat": 50.7937445, - "lon": -1.0528633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "PO4 246", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 975470714, - "lat": 50.7843610, - "lon": -1.0634305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 975513691, - "lat": 55.1766348, - "lon": -1.5386478, - "tags": { - "amenity": "post_box", - "postal_code": "NE63 9TE", - "ref": "NE63 66" - } -}, -{ - "type": "node", - "id": 975513724, - "lat": 55.1737539, - "lon": -1.5418319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE63 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 975869314, - "lat": 52.5045331, - "lon": -1.7762516, - "tags": { - "amenity": "post_box", - "ref": "B36 458" - } -}, -{ - "type": "node", - "id": 975883135, - "lat": 52.4583930, - "lon": -0.2714070, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE7 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 976078817, - "lat": 52.1993693, - "lon": -2.2387149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 20" - } -}, -{ - "type": "node", - "id": 976084198, - "lat": 50.8210200, - "lon": -4.0723696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "post box has been relocated from further up Bridge Street, collection times from paper label.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX20 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 976349334, - "lat": 53.0879829, - "lon": -2.9694900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 976459266, - "lat": 56.0038871, - "lon": -4.9644168, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA23 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 976504847, - "lat": 55.8155233, - "lon": -4.2781943, - "tags": { - "amenity": "post_box", - "postal_code": "G43", - "ref": "G43 430" - } -}, -{ - "type": "node", - "id": 976504868, - "lat": 55.8122782, - "lon": -4.2791484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "236917444540276", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "G43", - "ref": "G43 394", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-05-07" - } -}, -{ - "type": "node", - "id": 976535706, - "lat": 51.3934242, - "lon": 0.0717019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 378" - } -}, -{ - "type": "node", - "id": 976538090, - "lat": 50.8161835, - "lon": -4.0782201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX20 549D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 976543040, - "lat": 51.4127448, - "lon": 0.3814134, - "tags": { - "amenity": "post_box", - "name": "Apsledene Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 12D" - } -}, -{ - "type": "node", - "id": 976945421, - "lat": 52.9784875, - "lon": -0.0273117, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "PE21", - "ref": "PE21 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 976945429, - "lat": 52.9757996, - "lon": -0.0170803, - "tags": { - "amenity": "post_box", - "postal_code": "PE21", - "ref": "PE21 49" - } -}, -{ - "type": "node", - "id": 977510247, - "lat": 51.5447783, - "lon": -0.2345180, - "tags": { - "amenity": "post_box", - "postal_code": "NW10 2BP" - } -}, -{ - "type": "node", - "id": 977605047, - "lat": 52.8558655, - "lon": -2.2530639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "728293565384452", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST21 426", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 977661520, - "lat": 52.8598145, - "lon": -2.2466641, - "tags": { - "amenity": "post_box", - "ref": "ST21 104" - } -}, -{ - "type": "node", - "id": 977661527, - "lat": 52.8552593, - "lon": -2.2462020, - "tags": { - "amenity": "post_box", - "ref": "ST21 93" - } -}, -{ - "type": "node", - "id": 977823201, - "lat": 52.1892964, - "lon": -2.2203754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP6D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "WR1 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 977823205, - "lat": 52.2037215, - "lon": -2.2265215, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR1 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 978011749, - "lat": 51.6071517, - "lon": -0.1431026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 978485657, - "lat": 51.3562749, - "lon": -0.6083629, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 978917032, - "lat": 51.0077655, - "lon": -4.2377894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX39 185" - } -}, -{ - "type": "node", - "id": 978997302, - "lat": 51.0171286, - "lon": -4.2071718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX39 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979224802, - "lat": 50.9327169, - "lon": -0.3225681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN44 1565" - } -}, -{ - "type": "node", - "id": 979224872, - "lat": 50.9083782, - "lon": -0.3304259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "BN44 1562" - } -}, -{ - "type": "node", - "id": 979224875, - "lat": 50.9419790, - "lon": -0.3144986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979278981, - "lat": 56.7057689, - "lon": -3.7379459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH16 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 979437410, - "lat": 53.8975689, - "lon": -3.0362898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538022, - "lat": 52.1930617, - "lon": -2.2538693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "WR2 251", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 979538035, - "lat": 52.1810190, - "lon": -2.2437072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "WR2 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538102, - "lat": 52.2281134, - "lon": -2.2573165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR2 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538116, - "lat": 52.1899651, - "lon": -2.2324029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538181, - "lat": 52.2388463, - "lon": -2.2933726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR2 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538205, - "lat": 52.1739123, - "lon": -2.2407082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "WR2 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538258, - "lat": 52.1938141, - "lon": -2.2419266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 453", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 979538268, - "lat": 52.2129198, - "lon": -2.2498787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 979538336, - "lat": 52.1869657, - "lon": -2.2544935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538342, - "lat": 52.1743026, - "lon": -2.2348376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "none", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR2 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538346, - "lat": 52.1929369, - "lon": -2.2351141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538402, - "lat": 52.2070989, - "lon": -2.2440024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538478, - "lat": 52.1855807, - "lon": -2.2315661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR2 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 979538483, - "lat": 52.2426584, - "lon": -2.2506186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR2 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538495, - "lat": 52.1798066, - "lon": -2.2622577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538537, - "lat": 52.1816178, - "lon": -2.2649290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR2 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979538551, - "lat": 52.1959200, - "lon": -2.2584476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "wall", - "ref": "WR2 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979677501, - "lat": 52.8214923, - "lon": -0.6688484, - "tags": { - "amenity": "post_box", - "ele": "111.8782959", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 979838412, - "lat": 53.4087767, - "lon": -2.3392226, - "tags": { - "amenity": "post_box", - "ref": "M33 708" - } -}, -{ - "type": "node", - "id": 979838471, - "lat": 53.4128966, - "lon": -2.3343029, - "tags": { - "amenity": "post_box", - "ref": "M33 476" - } -}, -{ - "type": "node", - "id": 979838519, - "lat": 53.4109800, - "lon": -2.3401175, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M33 614" - } -}, -{ - "type": "node", - "id": 979881898, - "lat": 53.4112393, - "lon": -2.3453825, - "tags": { - "amenity": "post_box", - "ref": "M33 296" - } -}, -{ - "type": "node", - "id": 979882075, - "lat": 53.4085124, - "lon": -2.3450958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "post_box:type": "pillar", - "ref": "M33 344", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 979903364, - "lat": 51.5355437, - "lon": -2.5489922, - "tags": { - "amenity": "post_box", - "fixme": "collection_times", - "note": "indoors", - "post_box:type": "pillar", - "ref": "BS32 660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 979961142, - "lat": 51.4027699, - "lon": -0.0630840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "collection plate too damaged to confirm ref 8-Oct-2022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 979961144, - "lat": 51.4157076, - "lon": -0.0473908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 979961145, - "lat": 51.4174270, - "lon": -0.0578949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 979961147, - "lat": 51.4151206, - "lon": -0.0540662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 979961148, - "lat": 51.4028823, - "lon": -0.0588212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 980103606, - "lat": 54.0422533, - "lon": -2.7948157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA1 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 980245771, - "lat": 53.9096018, - "lon": -3.0322909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY7 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 980276892, - "lat": 52.1709410, - "lon": -3.2321329, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 980276907, - "lat": 52.1612043, - "lon": -3.2815912, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LD1 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 981274738, - "lat": 53.6671776, - "lon": -1.6193868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 59" - } -}, -{ - "type": "node", - "id": 981363609, - "lat": 51.7354582, - "lon": 0.4814531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 981363650, - "lat": 51.7341594, - "lon": 0.4795466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM2 9007;CM2 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 981382064, - "lat": 53.8549614, - "lon": -3.0136534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 981447872, - "lat": 51.4252466, - "lon": -0.0796986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981447926, - "lat": 51.4184520, - "lon": -0.0739826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 25", - "ref:GB:uprn": "10015420587", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981447933, - "lat": 51.4146579, - "lon": -0.0583422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981447940, - "lat": 51.4184981, - "lon": -0.0619650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981447963, - "lat": 51.4143853, - "lon": -0.0616632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981447970, - "lat": 51.4228761, - "lon": -0.0787112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "note": "colleciton plate shows SE19 30 on 29/05/22 but RMNY confirms ref https://www.royalmail.com/services-near-you/postbox/farquhar-road-jasper-road-se19-1pb/0000SE1929", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459424, - "lat": 51.4191790, - "lon": -0.0829328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459437, - "lat": 51.4221348, - "lon": -0.1059187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459442, - "lat": 51.4255899, - "lon": -0.0823312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459447, - "lat": 51.4227567, - "lon": -0.0941904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SE19 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459451, - "lat": 51.4270554, - "lon": -0.0770552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459469, - "lat": 51.4243146, - "lon": -0.0836704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459478, - "lat": 51.4198039, - "lon": -0.0880279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459479, - "lat": 51.4215155, - "lon": -0.0806370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 47D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981459482, - "lat": 51.4275493, - "lon": -0.0826236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491730, - "lat": 51.4156458, - "lon": -0.0946773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491734, - "lat": 51.4131547, - "lon": -0.0900393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491738, - "lat": 51.4162455, - "lon": -0.0860257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491746, - "lat": 51.4195694, - "lon": -0.0945534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 50", - "ref:GB:uprn": "10015407229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491751, - "lat": 51.4195749, - "lon": -0.1010044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491754, - "lat": 51.4171941, - "lon": -0.1000967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491758, - "lat": 51.4188687, - "lon": -0.1040135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981491774, - "lat": 51.4126474, - "lon": -0.0950120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545380, - "lat": 51.4099139, - "lon": -0.0870781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545385, - "lat": 51.4137564, - "lon": -0.0740358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 13", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545400, - "lat": 51.4092779, - "lon": -0.0920039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545405, - "lat": 51.4176927, - "lon": -0.0774115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 23", - "ref:GB:uprn": "10015276800", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545409, - "lat": 51.4150339, - "lon": -0.0783256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545410, - "lat": 51.4064234, - "lon": -0.0897439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545412, - "lat": 51.4130658, - "lon": -0.0843323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545422, - "lat": 51.4091291, - "lon": -0.0891142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981545424, - "lat": 51.4159651, - "lon": -0.0775243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "drive_through": "no", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SE19 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q26482059" - } -}, -{ - "type": "node", - "id": 981556797, - "lat": 51.4096144, - "lon": -0.0812573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981556803, - "lat": 51.3917155, - "lon": -0.0614527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981556816, - "lat": 51.4022500, - "lon": -0.0735236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "bubbleid": "1188977485", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981556819, - "lat": 51.3974681, - "lon": -0.0661992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981556823, - "lat": 51.4060220, - "lon": -0.0786847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981556827, - "lat": 51.4132977, - "lon": -0.0774755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE19 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570738, - "lat": 51.3909441, - "lon": -0.0655232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE25 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570773, - "lat": 51.3881068, - "lon": -0.0649648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570788, - "lat": 51.3916394, - "lon": -0.0718992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570817, - "lat": 51.3909669, - "lon": -0.0694991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570825, - "lat": 51.3951269, - "lon": -0.0745478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570837, - "lat": 51.3888252, - "lon": -0.0685709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570852, - "lat": 51.3956485, - "lon": -0.0681762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "collection plate very damaged ref hard to confirm 8-Oct-2022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570884, - "lat": 51.3869890, - "lon": -0.0705650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30", - "drive_through": "no", - "note": "plate too damaged to read collection times 8-Oct-2022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981570893, - "lat": 51.3971410, - "lon": -0.0708986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981581695, - "lat": 52.8552467, - "lon": -2.2568575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST21 334" - } -}, -{ - "type": "node", - "id": 981596910, - "lat": 51.3944665, - "lon": -0.0904978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE25 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981596918, - "lat": 51.3973837, - "lon": -0.0750123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SE25 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981596925, - "lat": 51.4007677, - "lon": -0.0768046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981596933, - "lat": 51.4017781, - "lon": -0.0803039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981596966, - "lat": 51.3990935, - "lon": -0.0828486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SE25 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981596970, - "lat": 51.3967444, - "lon": -0.0902327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981596974, - "lat": 51.3971150, - "lon": -0.0873617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 2D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981601795, - "lat": 51.4017529, - "lon": -0.0843047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981601796, - "lat": 51.3984214, - "lon": -0.0902674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981687257, - "lat": 51.9103897, - "lon": -0.6403912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 981687619, - "lat": 52.9294936, - "lon": -0.7701329, - "tags": { - "amenity": "post_box", - "ele": "41.7025146" - } -}, -{ - "type": "node", - "id": 981749043, - "lat": 52.8594811, - "lon": -2.2515759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "ST21 318" - } -}, -{ - "type": "node", - "id": 981777685, - "lat": 51.5466700, - "lon": -2.5544443, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BS32 4012", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 981779162, - "lat": 52.8511818, - "lon": -2.1501273, - "tags": { - "amenity": "post_box", - "ref": "ST18 419" - } -}, -{ - "type": "node", - "id": 982319988, - "lat": 51.4008060, - "lon": -0.7578960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 982344385, - "lat": 51.4555551, - "lon": -0.2372379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 982344405, - "lat": 50.8093957, - "lon": -4.3528115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "mapillary": "630702627981354", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX22 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-08" - } -}, -{ - "type": "node", - "id": 982352650, - "lat": 50.8102442, - "lon": -4.3526725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX22 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 982757448, - "lat": 52.4691665, - "lon": -1.8336132, - "tags": { - "amenity": "post_box", - "ref": "B10 453", - "source": "survey" - } -}, -{ - "type": "node", - "id": 983028976, - "lat": 53.7937188, - "lon": -1.7534567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 85", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 983028977, - "lat": 53.7920968, - "lon": -1.7510146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/6391714", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 983028979, - "lat": 53.7914599, - "lon": -1.7498077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD1 6" - } -}, -{ - "type": "node", - "id": 983028981, - "lat": 53.7933382, - "lon": -1.7512536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BD1 319" - } -}, -{ - "type": "node", - "id": 983028983, - "lat": 53.8039435, - "lon": -1.7537785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983028985, - "lat": 53.7959863, - "lon": -1.7549495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983123386, - "lat": 51.4052126, - "lon": 0.5407930, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME4 433", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME4 433D", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 983319703, - "lat": 53.8029009, - "lon": -1.4447612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 948", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983327148, - "lat": 51.2849459, - "lon": -0.8312421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU51 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983372705, - "lat": 51.0529319, - "lon": -3.8070121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 983380711, - "lat": 53.7136595, - "lon": -1.6280990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 95", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 983383687, - "lat": 50.7852894, - "lon": -0.7158088, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO21 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983411614, - "lat": 53.8047141, - "lon": -1.5609414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983506644, - "lat": 52.8257967, - "lon": -2.2988467, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST20 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983539934, - "lat": 52.8297277, - "lon": -2.1508022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST18 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 983686140, - "lat": 53.6392491, - "lon": -1.7799854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 983807327, - "lat": 51.4957861, - "lon": -0.1412285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 90;SW1P 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 984242086, - "lat": 53.7123577, - "lon": -1.6512306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 114", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 984247283, - "lat": 51.6312720, - "lon": -2.8272107, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 984513271, - "lat": 53.3896935, - "lon": -1.5312564, - "tags": { - "amenity": "post_box", - "ref": "S6 292" - } -}, -{ - "type": "node", - "id": 984513272, - "lat": 53.3937719, - "lon": -1.5215465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S6 645", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 984615215, - "lat": 52.9217403, - "lon": -1.4733782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "37", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 507D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 984681378, - "lat": 51.2948897, - "lon": -0.8233250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU51 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 984852284, - "lat": 53.4120169, - "lon": -2.3600810, - "tags": { - "amenity": "post_box", - "ref": "M33 759" - } -}, -{ - "type": "node", - "id": 985075159, - "lat": 55.8181923, - "lon": -4.2675110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "G43", - "ref": "G43 485", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 985075200, - "lat": 55.8244467, - "lon": -4.2688502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "G42", - "ref": "G42 420", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 985075228, - "lat": 55.8233423, - "lon": -4.2698474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "G42", - "ref": "G42 896", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 985161277, - "lat": 53.8533483, - "lon": -3.0053290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 986322829, - "lat": 51.1396468, - "lon": 1.1374002, - "tags": { - "amenity": "post_box", - "ref": "CT18 22" - } -}, -{ - "type": "node", - "id": 986717544, - "lat": 51.4678369, - "lon": -2.5998538, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986777509, - "lat": 53.7237651, - "lon": -1.6350550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986780788, - "lat": 52.9269552, - "lon": -1.4860836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 607D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 986817943, - "lat": 53.2748687, - "lon": -1.2628724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S43 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817951, - "lat": 53.2727291, - "lon": -1.2565157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817953, - "lat": 53.2763791, - "lon": -1.3198121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817954, - "lat": 53.2760338, - "lon": -1.3246372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 249D" - } -}, -{ - "type": "node", - "id": 986817955, - "lat": 53.2888727, - "lon": -1.2917151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817956, - "lat": 53.2812830, - "lon": -1.2713832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817958, - "lat": 53.2792681, - "lon": -1.2643212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 986817959, - "lat": 53.2864164, - "lon": -1.2798892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 986817960, - "lat": 53.2828998, - "lon": -1.2941138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817961, - "lat": 53.2774731, - "lon": -1.3108076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817965, - "lat": 53.2728586, - "lon": -1.2684135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817966, - "lat": 53.2693029, - "lon": -1.3433853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 986817967, - "lat": 53.2688143, - "lon": -1.2584875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 390D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817968, - "lat": 53.2863348, - "lon": -1.2854975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817969, - "lat": 53.2903935, - "lon": -1.2972178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817972, - "lat": 53.2785005, - "lon": -1.2486334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S43 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817974, - "lat": 53.2832692, - "lon": -1.2861644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817975, - "lat": 53.2765431, - "lon": -1.2488013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986817976, - "lat": 53.2902396, - "lon": -1.2888675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S43 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834761, - "lat": 53.2275915, - "lon": -1.4053897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834766, - "lat": 53.2467286, - "lon": -1.4159264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834768, - "lat": 53.2252106, - "lon": -1.4083594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834773, - "lat": 53.1956557, - "lon": -1.3322469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S44 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834775, - "lat": 53.2359641, - "lon": -1.4182535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 424D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834788, - "lat": 53.1796147, - "lon": -1.2846882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "comment": "collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S44 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 986834790, - "lat": 53.2275650, - "lon": -1.4173977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834794, - "lat": 53.1850914, - "lon": -1.3699027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S42 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 986834800, - "lat": 53.1670061, - "lon": -1.3102397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S44 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834801, - "lat": 53.1991366, - "lon": -1.3959165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S42 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 986834812, - "lat": 53.2228220, - "lon": -1.4126309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 986875060, - "lat": 53.7140720, - "lon": -1.4960106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 278", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 986875070, - "lat": 53.7108112, - "lon": -1.4780129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 249", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 986904932, - "lat": 53.8544667, - "lon": -2.9985580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 987082309, - "lat": 53.6487859, - "lon": -1.8080482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 987492563, - "lat": 53.7998480, - "lon": -3.0036922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987591688, - "lat": 52.4583243, - "lon": -2.1538535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 987591691, - "lat": 52.4541492, - "lon": -2.1477498, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 987735035, - "lat": 52.2258764, - "lon": -0.5439681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK44 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 987779077, - "lat": 53.4926699, - "lon": -2.0792814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5831825936913054", - "name": "costcutter", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2023-03-05" - } -}, -{ - "type": "node", - "id": 987779588, - "lat": 53.4902826, - "lon": -2.0788523, - "tags": { - "amenity": "post_box", - "name": "heys road" - } -}, -{ - "type": "node", - "id": 987816893, - "lat": 53.1942668, - "lon": -1.4323155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816918, - "lat": 53.1485313, - "lon": -1.4696664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S45 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816920, - "lat": 53.1980271, - "lon": -1.4325131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816934, - "lat": 53.2196385, - "lon": -1.4382793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S40 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816936, - "lat": 53.1672623, - "lon": -1.4695327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S45 95D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 987816941, - "lat": 53.1627816, - "lon": -1.5046324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 987816944, - "lat": 53.2015341, - "lon": -1.4434122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816950, - "lat": 53.2067296, - "lon": -1.4445240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S42 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816966, - "lat": 53.1975699, - "lon": -1.4455589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987816986, - "lat": 53.1825991, - "lon": -1.5187440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S45 235", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 987835991, - "lat": 53.2247552, - "lon": -1.3029178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836002, - "lat": 53.2296995, - "lon": -1.2918150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S44 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836009, - "lat": 53.2277913, - "lon": -1.2854625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836019, - "lat": 53.2126183, - "lon": -1.2673156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836028, - "lat": 53.2378324, - "lon": -1.3389109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S44 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836071, - "lat": 53.2263944, - "lon": -1.2813066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S44 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836086, - "lat": 53.2224520, - "lon": -1.2841733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836102, - "lat": 53.2569197, - "lon": -1.2805349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S44 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836107, - "lat": 53.2256112, - "lon": -1.2952060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836126, - "lat": 53.2197519, - "lon": -1.2841910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836147, - "lat": 53.2349683, - "lon": -1.3039217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836155, - "lat": 53.2334388, - "lon": -1.2912362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S44 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836165, - "lat": 53.2287119, - "lon": -1.2807226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836183, - "lat": 53.2309383, - "lon": -1.2856676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836186, - "lat": 53.2401281, - "lon": -1.3890228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 987836190, - "lat": 53.2289981, - "lon": -1.3055314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S44 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 987836196, - "lat": 53.2506855, - "lon": -1.3012421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S44 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 988066825, - "lat": 55.9487939, - "lon": -3.3631374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "by domestic luggage reclaim", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "EH12 2821", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 988093348, - "lat": 54.7493111, - "lon": -2.0131579, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 988174633, - "lat": 52.8445052, - "lon": -2.3679604, - "tags": { - "amenity": "post_box", - "ref": "ST20 2003" - } -}, -{ - "type": "node", - "id": 988174721, - "lat": 52.8326674, - "lon": -2.3219625, - "tags": { - "amenity": "post_box", - "ref": "ST20 292" - } -}, -{ - "type": "node", - "id": 988258889, - "lat": 53.4341818, - "lon": -2.2792556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 988258891, - "lat": 53.4359459, - "lon": -2.2758760, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 988284019, - "lat": 52.8033776, - "lon": -0.6219989, - "tags": { - "amenity": "post_box", - "ele": "99.8619385", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 988304483, - "lat": 52.8073875, - "lon": -0.6208215, - "tags": { - "amenity": "post_box", - "ele": "96.2570801" - } -}, -{ - "type": "node", - "id": 988304513, - "lat": 52.8104979, - "lon": -0.6317305, - "tags": { - "amenity": "post_box", - "ele": "105.8701172", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 988604289, - "lat": 52.6673203, - "lon": -1.9618438, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WS11", - "ref": "WS11 277", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 988604307, - "lat": 52.6704134, - "lon": -1.9736246, - "tags": { - "amenity": "post_box", - "postal_code": "WS11", - "ref": "WS11 233" - } -}, -{ - "type": "node", - "id": 988620533, - "lat": 53.7887615, - "lon": -3.0483910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 988620882, - "lat": 52.0928202, - "lon": -2.3284636, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 988655619, - "lat": 52.0916947, - "lon": -2.3331387, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "In gatepost of number 10, on W side of road", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 136", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 988658704, - "lat": 52.0960954, - "lon": -2.3403123, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "historic_operator": "Post Office", - "post_box:apertures": "1", - "post_box:manufacturer": "?? Allen & Co. London", - "post_box:type": "wall", - "ref": "WR14 127", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 988674342, - "lat": 53.6321558, - "lon": -1.7669710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "HD5 346D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 988674443, - "lat": 53.6367013, - "lon": -1.7537787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 988961970, - "lat": 53.8184617, - "lon": -3.0443582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 177D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 989060116, - "lat": 52.4448268, - "lon": -2.1463302, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 989067308, - "lat": 53.8442568, - "lon": -1.5093007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Postbox is a double pillar, (http://i.imgur.com/zn6Ad.jpg)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS8 516;LS8 1516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 989067452, - "lat": 53.8424685, - "lon": -1.5043786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 989068409, - "lat": 50.8085643, - "lon": -0.3887034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1609D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-12-02" - } -}, -{ - "type": "node", - "id": 989068410, - "lat": 50.8115075, - "lon": -0.3932015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1623D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 989115897, - "lat": 55.1700801, - "lon": -1.5600907, - "tags": { - "amenity": "post_box", - "postal_code": "NE63 0SZ", - "ref": "NE63 28" - } -}, -{ - "type": "node", - "id": 989116594, - "lat": 55.1742600, - "lon": -1.5568019, - "tags": { - "amenity": "post_box", - "postal_code": "NE63 9RB", - "ref": "NE63 120" - } -}, -{ - "type": "node", - "id": 989116710, - "lat": 55.1763934, - "lon": -1.5519499, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE63 9NA", - "ref": "NE63 194" - } -}, -{ - "type": "node", - "id": 989116884, - "lat": 55.1722918, - "lon": -1.5501261, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "NE63 9QP", - "ref": "NE63 163", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 989117219, - "lat": 55.1762890, - "lon": -1.5631186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE63 0NA", - "ref": "NE63 52" - } -}, -{ - "type": "node", - "id": 989164553, - "lat": 54.4890080, - "lon": -1.1412267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "TS9 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 990217152, - "lat": 51.1331831, - "lon": 0.2676854, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TN1 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 990226438, - "lat": 52.9585233, - "lon": -1.2331898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "ele": "65.975708", - "mail:franked": "only", - "note": "franked mail only", - "opening_hours": "Mo-Fr 11:45-18:30", - "post_box:type": "meter", - "ref": "NG8 14", - "ref:GB:uprn": "10015857888", - "royal_cypher": "no", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 990257925, - "lat": 52.9558047, - "lon": -1.2344965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 258", - "ref:GB:uprn": "10015325190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 990281594, - "lat": 56.3274661, - "lon": -3.3540577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH2 91D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 990283312, - "lat": 56.3274041, - "lon": -3.3924122, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH2 170D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 990291873, - "lat": 56.3485083, - "lon": -3.4064239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "SCP8", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH2 144", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 990303246, - "lat": 52.7689900, - "lon": -2.3786921, - "tags": { - "amenity": "post_box", - "fixme": "Check ref: nodes 528511601 and 990303246 both have the same value", - "ref": "TF10 213" - } -}, -{ - "type": "node", - "id": 990446566, - "lat": 52.9140373, - "lon": -1.5467687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 730" - } -}, -{ - "type": "node", - "id": 990446570, - "lat": 51.5706556, - "lon": -1.2939708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX11 898" - } -}, -{ - "type": "node", - "id": 990446582, - "lat": 52.9085431, - "lon": -1.5532340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 735" - } -}, -{ - "type": "node", - "id": 990446588, - "lat": 51.5866666, - "lon": -1.2605611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "OX11 1075" - } -}, -{ - "type": "node", - "id": 990446591, - "lat": 52.9208621, - "lon": -1.5422957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 1387" - } -}, -{ - "type": "node", - "id": 990446594, - "lat": 52.8983711, - "lon": -1.5544639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 799" - } -}, -{ - "type": "node", - "id": 990446604, - "lat": 51.5787624, - "lon": -1.2605067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "OX11 1074" - } -}, -{ - "type": "node", - "id": 990446609, - "lat": 52.9181576, - "lon": -1.5424522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 235" - } -}, -{ - "type": "node", - "id": 990502120, - "lat": 51.5542412, - "lon": -0.1286803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N7 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 990507670, - "lat": 52.9095454, - "lon": -1.5416404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 504" - } -}, -{ - "type": "node", - "id": 990507674, - "lat": 52.9169697, - "lon": -1.5364049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 608" - } -}, -{ - "type": "node", - "id": 990507675, - "lat": 52.8828216, - "lon": -1.4524057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE24 742" - } -}, -{ - "type": "node", - "id": 990507679, - "lat": 52.8958282, - "lon": -1.4667178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 226D" - } -}, -{ - "type": "node", - "id": 990507681, - "lat": 52.9075521, - "lon": -1.5444906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 794" - } -}, -{ - "type": "node", - "id": 990507683, - "lat": 52.9102284, - "lon": -1.5219399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 494" - } -}, -{ - "type": "node", - "id": 990507685, - "lat": 52.9133399, - "lon": -1.5324921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 672" - } -}, -{ - "type": "node", - "id": 990507692, - "lat": 52.9142883, - "lon": -1.5373254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 671" - } -}, -{ - "type": "node", - "id": 990507695, - "lat": 52.9074313, - "lon": -1.5378333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 459" - } -}, -{ - "type": "node", - "id": 990513200, - "lat": 52.8893840, - "lon": -1.4257956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 506D" - } -}, -{ - "type": "node", - "id": 990513204, - "lat": 52.8810701, - "lon": -1.4437163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 120" - } -}, -{ - "type": "node", - "id": 990513205, - "lat": 52.8860297, - "lon": -1.4270221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 990513207, - "lat": 52.9217886, - "lon": -1.4781456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DE1 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 990513209, - "lat": 52.8967846, - "lon": -1.4280924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 253" - } -}, -{ - "type": "node", - "id": 990513210, - "lat": 52.9218071, - "lon": -1.4781546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Modern post boxes with 'Royal Mail' inscription", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DE1 798D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 990531753, - "lat": 51.5481941, - "lon": -0.1332841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 5D" - } -}, -{ - "type": "node", - "id": 991157331, - "lat": 52.1366927, - "lon": -2.3284633, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 991522333, - "lat": 53.8885251, - "lon": -3.0451835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 991522377, - "lat": 53.8885257, - "lon": -3.0406076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 220", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 991522400, - "lat": 53.8856714, - "lon": -3.0438366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 992044208, - "lat": 50.8298465, - "lon": -1.3522120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 545D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 992044343, - "lat": 50.7997899, - "lon": -1.3935218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 992099553, - "lat": 53.6920115, - "lon": -1.8362706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 136" - } -}, -{ - "type": "node", - "id": 992463068, - "lat": 52.1215028, - "lon": -2.3378073, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "description": "Lamp Box situated \"on\" someone's garden wall, with no post visible !", - "historic_operator": "Post Office", - "post_box:apertures": "1", - "post_box:manufacturer": "Carron Company Stirlingshire", - "post_box:plate_code": "CP7", - "post_box:type": "lamp", - "ref": "WR14 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 992476574, - "lat": 51.3393737, - "lon": 0.1435573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 992486483, - "lat": 51.3316890, - "lon": 0.1897059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN14 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 992582017, - "lat": 51.4350392, - "lon": 0.1259539, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 992591349, - "lat": 51.4320696, - "lon": 0.1270394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 992591375, - "lat": 51.4295122, - "lon": 0.1185244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA14 339" - } -}, -{ - "type": "node", - "id": 992591378, - "lat": 51.4328232, - "lon": 0.1225502, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 992612847, - "lat": 52.0998595, - "lon": -2.3478722, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "description": "In wall surrounding bungalow", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 992620461, - "lat": 51.6641713, - "lon": -0.6955181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP15 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 992621837, - "lat": 51.6586603, - "lon": -0.7099420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP15 182" - } -}, -{ - "type": "node", - "id": 992623743, - "lat": 51.6645865, - "lon": -0.7040932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP15 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 992623857, - "lat": 51.6680937, - "lon": -0.6910019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP15 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 992623907, - "lat": 51.6679844, - "lon": -0.6988213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP15 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 993116353, - "lat": 53.8788166, - "lon": -1.8815095, - "tags": { - "amenity": "post_box", - "ref": "BD20 139" - } -}, -{ - "type": "node", - "id": 993116390, - "lat": 53.8817519, - "lon": -1.8893195, - "tags": { - "amenity": "post_box", - "ref": "BD20 99" - } -}, -{ - "type": "node", - "id": 993199622, - "lat": 57.1677465, - "lon": -3.6970728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH22 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 993474223, - "lat": 52.1151602, - "lon": -2.3270393, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR14 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 993727951, - "lat": 53.8083293, - "lon": -3.0183191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 993834215, - "lat": 53.8709786, - "lon": -1.8989453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD21 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 994472603, - "lat": 52.1208209, - "lon": -2.3338414, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7-R(N)", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Royal Mail", - "note": "Has plate saying WR14 12, but the real WR14 12 is a few 100m North !", - "post_box:type": "lamp", - "ref": "WR14 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 994497084, - "lat": 52.4532048, - "lon": -2.1410481, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DY8 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 994536295, - "lat": 54.3754252, - "lon": -3.0535173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA21 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 994704170, - "lat": 51.5505643, - "lon": -1.7996972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN1 3" - } -}, -{ - "type": "node", - "id": 994706915, - "lat": 52.4487078, - "lon": -2.1370754, - "tags": { - "amenity": "post_box", - "postal_code": "DY8", - "ref": "DY8 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 994720394, - "lat": 52.4491018, - "lon": -2.1408255, - "tags": { - "amenity": "post_box", - "ref": "DY8 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 994750482, - "lat": 52.3431436, - "lon": 1.5023765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 994759813, - "lat": 53.8064764, - "lon": -3.0538536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 994759832, - "lat": 53.8038265, - "lon": -3.0518672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 994866639, - "lat": 52.4710314, - "lon": 0.8631140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "IP24 3309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 994898396, - "lat": 52.4469700, - "lon": 0.8760385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "NR16 1653", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 995065734, - "lat": 51.5504503, - "lon": -0.1599264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW3 32", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 995085396, - "lat": 51.5487028, - "lon": -0.1587406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NW3 45" - } -}, -{ - "type": "node", - "id": 995317921, - "lat": 52.2824555, - "lon": -1.5554819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 995929842, - "lat": 54.6763312, - "lon": -5.9705188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 996232341, - "lat": 52.5152815, - "lon": 0.6806374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP26 3395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 996342962, - "lat": 55.1735295, - "lon": -1.5639211, - "tags": { - "amenity": "post_box", - "ref": "NE63 204" - } -}, -{ - "type": "node", - "id": 996343124, - "lat": 55.1688040, - "lon": -1.5648271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE63 0TQ", - "ref": "NE63 192" - } -}, -{ - "type": "node", - "id": 996469625, - "lat": 52.2812497, - "lon": -1.5644851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 996556202, - "lat": 51.4857843, - "lon": -0.2011186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 997574441, - "lat": 52.0725101, - "lon": -2.3334150, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "description": "On W side of road, opposite Abbey College", - "historic_operator": "Post Office", - "note": "Anonymous box: doesn't even have a Crown !", - "post_box:type": "wall", - "ref": "WR14 130", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 997574934, - "lat": 53.9168295, - "lon": -3.0151466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 997581326, - "lat": 52.0841727, - "lon": -2.3330002, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 997613808, - "lat": 52.0705366, - "lon": -2.3331306, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR14 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 997652275, - "lat": 53.9154695, - "lon": -3.0256438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 997697492, - "lat": 51.4205124, - "lon": 0.7686705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 46D" - } -}, -{ - "type": "node", - "id": 997711908, - "lat": 51.4172188, - "lon": 0.7613510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 51D" - } -}, -{ - "type": "node", - "id": 997785396, - "lat": 51.2093662, - "lon": -2.6447104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA5 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-08-21" - } -}, -{ - "type": "node", - "id": 997858357, - "lat": 51.2818481, - "lon": -2.7671402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS27 92D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 998018585, - "lat": 51.7983190, - "lon": -0.0826653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG14 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 998102943, - "lat": 51.7163057, - "lon": 0.4748829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 422" - } -}, -{ - "type": "node", - "id": 998579721, - "lat": 53.4176141, - "lon": -2.3576009, - "tags": { - "amenity": "post_box", - "ref": "M33 757" - } -}, -{ - "type": "node", - "id": 998664810, - "lat": 52.1564202, - "lon": -0.3524183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 998824345, - "lat": 52.1943761, - "lon": -2.2105047, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR4 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 998824351, - "lat": 52.1944000, - "lon": -2.2104900, - "tags": { - "amenity": "post_box", - "collection_plate": "uncoded", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 10:15-18:30", - "post_box:type": "meter", - "ref": "WR4 517", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 998952021, - "lat": 53.7954017, - "lon": -1.7626711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD1 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 998952022, - "lat": 53.7962857, - "lon": -1.7670431, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD1 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 998952024, - "lat": 53.7945660, - "lon": -1.7520026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BD1 244", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 998952025, - "lat": 53.7951038, - "lon": -1.7575521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 998952026, - "lat": 53.7933500, - "lon": -1.7454915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BD1 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 998952027, - "lat": 53.7961733, - "lon": -1.7453360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD1 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 998952028, - "lat": 53.7937255, - "lon": -1.7556598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 999116206, - "lat": 52.1461936, - "lon": -2.3265834, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "description": "North of PFP", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 999163768, - "lat": 52.1270292, - "lon": -2.3367650, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "historic_operator": "Post Office", - "post_box:apertures": "1", - "post_box:manufacturer": "Carron Company Stirlingshire", - "post_box:type": "lamp", - "ref": "WR14 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 999417244, - "lat": 52.3235174, - "lon": -1.9390954, - "tags": { - "amenity": "post_box", - "ref": "B98 15" - } -}, -{ - "type": "node", - "id": 999512044, - "lat": 52.1024507, - "lon": -2.3038297, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR14 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey;bing" - } -}, -{ - "type": "node", - "id": 999684000, - "lat": 52.1168089, - "lon": -2.3465444, - "tags": { - "amenity": "post_box", - "old_ref": "M083 West Malvern Road", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR14 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 999684004, - "lat": 52.1117244, - "lon": -2.3460052, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "historic_operator": "Royal Mail", - "note": "RM Says this is a wall box", - "post_box:type": "pillar", - "ref": "WR14 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 999772549, - "lat": 51.0799435, - "lon": 1.1816335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT20 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 999855880, - "lat": 57.5833247, - "lon": -6.1578472, - "tags": { - "amenity": "post_box", - "ref": "IV51 69", - "source": "survey" - } -}, -{ - "type": "node", - "id": 999855901, - "lat": 57.6312429, - "lon": -6.2180650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 999855904, - "lat": 57.6391483, - "lon": -6.2417521, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-31", - "ref": "IV51 72", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 999855908, - "lat": 57.6502112, - "lon": -6.2440588, - "tags": { - "amenity": "post_box", - "ref": "IV51 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 999855930, - "lat": 57.6625951, - "lon": -6.2584193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1318569515467976", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 61", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 999855934, - "lat": 57.6838689, - "lon": -6.3016541, - "tags": { - "amenity": "post_box", - "ref": "IV51 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 999855940, - "lat": 57.6309131, - "lon": -6.2391269, - "tags": { - "amenity": "post_box", - "ref": "IV51 68", - "source": "survey" - } -}, -{ - "type": "node", - "id": 999855965, - "lat": 57.6250203, - "lon": -6.2038548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 999855969, - "lat": 57.4223862, - "lon": -6.1892051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1061903591727010", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 66", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 999855975, - "lat": 57.4139603, - "lon": -6.1893203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 999856000, - "lat": 57.4120717, - "lon": -6.1926972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IV51 14", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 999856006, - "lat": 57.3133275, - "lon": -6.1114487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 13:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV48 107", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 999856007, - "lat": 57.2766430, - "lon": -6.0041820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "750148546512532", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV49 130", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 999856013, - "lat": 57.2685947, - "lon": -5.9700461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "331146529788479", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV49 31", - "source": "survey", - "survey:date": "2023-08-08" - } -}, -{ - "type": "node", - "id": 1000256348, - "lat": 54.7711650, - "lon": -1.5666885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH1 110" - } -}, -{ - "type": "node", - "id": 1000835498, - "lat": 53.6855882, - "lon": -1.4981149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 7" - } -}, -{ - "type": "node", - "id": 1001026738, - "lat": 52.0955359, - "lon": -2.3339997, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-R(N) CP2-R(N) CP14-R(N)", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "description": "In dedicated pillar, next to ST Water Building", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR14 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1001055516, - "lat": 52.0092264, - "lon": -0.6332867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1001067329, - "lat": 52.1060626, - "lon": -2.3453965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "description": "Lamp box embedded in high point of wall", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "WR14 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1001102133, - "lat": 50.8746392, - "lon": 0.0036989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN7 451" - } -}, -{ - "type": "node", - "id": 1002015290, - "lat": 53.8431058, - "lon": -3.0142668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1002015348, - "lat": 53.8443479, - "lon": -3.0017145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY6 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1002015440, - "lat": 53.8382759, - "lon": -3.0172090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1002434161, - "lat": 51.0941174, - "lon": -4.1043179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX31 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1002492423, - "lat": 52.6064940, - "lon": -0.6146397, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE15 97D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1002588383, - "lat": 53.9303873, - "lon": -1.8233765, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "LS29 842", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1003184081, - "lat": 51.5447795, - "lon": -0.2174298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW6 17D" - } -}, -{ - "type": "node", - "id": 1003184446, - "lat": 51.5397072, - "lon": -0.2247311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW10 100" - } -}, -{ - "type": "node", - "id": 1003212605, - "lat": 51.5422186, - "lon": -0.2341555, - "tags": { - "amenity": "post_box", - "ref": "NW10 4" - } -}, -{ - "type": "node", - "id": 1003658524, - "lat": 55.5468502, - "lon": -2.0167556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "image": "https://www.geograph.org.uk/photo/6954865", - "post_box:priority": "yes", - "post_box:type": "pillar", - "ref": "NE71 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "sample_collection": "covid19", - "source": "Wooler Post Office" - } -}, -{ - "type": "node", - "id": 1003946814, - "lat": 53.8310793, - "lon": -2.9940968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY6 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1005262279, - "lat": 51.5394986, - "lon": -0.2363599, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1005341372, - "lat": 53.8399897, - "lon": -2.9910406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1005341378, - "lat": 53.8403458, - "lon": -2.9964673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 288D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1005341379, - "lat": 53.8427433, - "lon": -2.9812489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1005387648, - "lat": 52.2468015, - "lon": -0.9113804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN5 261", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1005873677, - "lat": 51.4431437, - "lon": 0.3669332, - "tags": { - "amenity": "post_box", - "note": "inside shop", - "ref": "DA11 6" - } -}, -{ - "type": "node", - "id": 1008221190, - "lat": 50.7029104, - "lon": -4.0640527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1008860332, - "lat": 51.5381547, - "lon": -0.2407954, - "tags": { - "amenity": "post_box", - "ref": "NW10 92" - } -}, -{ - "type": "node", - "id": 1010694456, - "lat": 50.3799763, - "lon": -4.1275064, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL4 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1010762191, - "lat": 50.3346268, - "lon": -5.0655467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1010802619, - "lat": 51.5370348, - "lon": -0.2487050, - "tags": { - "amenity": "post_box", - "ref": "NW10 82" - } -}, -{ - "type": "node", - "id": 1010826626, - "lat": 52.2562444, - "lon": -0.4252822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 1010841634, - "lat": 51.5564454, - "lon": -0.1464591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 26D" - } -}, -{ - "type": "node", - "id": 1010841817, - "lat": 51.5541676, - "lon": -0.1510139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW5 35D" - } -}, -{ - "type": "node", - "id": 1011027052, - "lat": 52.2690760, - "lon": -0.9103749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "127487646263599", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NN2 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-11" - } -}, -{ - "type": "node", - "id": 1011178699, - "lat": 52.2662390, - "lon": -0.9058496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "275671704320900", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN2 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-08-11" - } -}, -{ - "type": "node", - "id": 1011450860, - "lat": 52.1430722, - "lon": 1.4462607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP12 6334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1011458038, - "lat": 51.2839175, - "lon": 0.5352731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME14 220D" - } -}, -{ - "type": "node", - "id": 1011595867, - "lat": 51.5157953, - "lon": -0.1873160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 28D;W2 228D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1011596104, - "lat": 51.5120790, - "lon": -0.1852947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W2 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1011636338, - "lat": 51.5111318, - "lon": -0.1797549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "note": "Left-hand aperture labelled \"Stamped Mail\", right-hand labelled \"Second Class\".", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 33;W2 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1011636449, - "lat": 51.5118432, - "lon": -0.1749307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company Stirlingshire", - "post_box:type": "pillar", - "ref": "W2 31;W2 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1011636653, - "lat": 51.5147115, - "lon": -0.1697622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 27" - } -}, -{ - "type": "node", - "id": 1011676056, - "lat": 51.5101537, - "lon": -0.1893077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 40D;W2 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1011740407, - "lat": 51.5103622, - "lon": -0.1916555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 42;W2 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1011740746, - "lat": 51.5074388, - "lon": -0.1932843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "W8 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1011740765, - "lat": 51.5052714, - "lon": -0.1928655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1011806786, - "lat": 51.5027022, - "lon": -0.1947742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W8 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1011806788, - "lat": 51.5026645, - "lon": -0.1964427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1011806999, - "lat": 51.5069326, - "lon": -0.1993698, - "tags": { - "amenity": "post_box", - "ref": "W8 6" - } -}, -{ - "type": "node", - "id": 1011807038, - "lat": 51.5084480, - "lon": -0.2013040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1012089929, - "lat": 51.0521821, - "lon": 1.0376452, - "tags": { - "amenity": "post_box", - "ref": "CT21 163" - } -}, -{ - "type": "node", - "id": 1012135786, - "lat": 52.0602835, - "lon": -2.3067229, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1012168874, - "lat": 53.8449188, - "lon": -2.9858496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 144D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1012185818, - "lat": 52.0400626, - "lon": -2.3145376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "historic_operator": "(none)", - "post_box:type": "wall", - "ref": "WR13 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 1012197006, - "lat": 52.0134145, - "lon": -2.3291744, - "tags": { - "amenity": "post_box", - "fixme": "Need to do a proper site visit", - "fixme2": "ref is by conjecture.", - "post_box:type": "wall", - "ref": "WR13 121" - } -}, -{ - "type": "node", - "id": 1012223059, - "lat": 52.1618618, - "lon": -2.3462949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "fixme": "Number is by conjecture; need to reconcile road and PB. PB is on N side of road", - "post_box:type": "wall", - "ref": "WR13 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1012245462, - "lat": 51.9448409, - "lon": -3.4053160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1012333106, - "lat": 52.0895797, - "lon": -0.2582472, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1012333143, - "lat": 52.0875267, - "lon": -0.2552957, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1012333152, - "lat": 52.0921068, - "lon": -0.2554752, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1012333160, - "lat": 52.0927146, - "lon": -0.2523183, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1012458821, - "lat": 52.0742062, - "lon": -0.2400402, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 1012865464, - "lat": 52.3702864, - "lon": 0.2436825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1012876079, - "lat": 52.6820061, - "lon": 0.4133481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE33 347" - } -}, -{ - "type": "node", - "id": 1012877329, - "lat": 52.9597799, - "lon": 0.5893984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE36 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1012883945, - "lat": 53.4320590, - "lon": -2.3394063, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "M33 641" - } -}, -{ - "type": "node", - "id": 1012884854, - "lat": 52.9659329, - "lon": 0.6741582, - "tags": { - "amenity": "post_box", - "ref": "PE31 156" - } -}, -{ - "type": "node", - "id": 1012885215, - "lat": 52.9657157, - "lon": 0.6662871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1012885773, - "lat": 52.9532294, - "lon": 0.5095372, - "tags": { - "amenity": "post_box", - "ref": "PE36 506" - } -}, -{ - "type": "node", - "id": 1012887836, - "lat": 52.9530034, - "lon": 0.5026903, - "tags": { - "amenity": "post_box", - "ref": "PE36 107" - } -}, -{ - "type": "node", - "id": 1012889009, - "lat": 52.9441585, - "lon": 0.4918562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE36 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1012898503, - "lat": 53.4316249, - "lon": -2.3234729, - "tags": { - "amenity": "post_box", - "ref": "M33 131" - } -}, -{ - "type": "node", - "id": 1012898536, - "lat": 53.4312962, - "lon": -2.3306886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "M33 389", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M33 389D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1012922985, - "lat": 52.1374437, - "lon": -0.3783903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK44 87D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 1013235370, - "lat": 53.6824150, - "lon": -1.5006167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF1 273;WF1 1273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1013235372, - "lat": 53.6841634, - "lon": -1.5015112, - "tags": { - "amenity": "post_box", - "note": "building work in area", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1013235374, - "lat": 53.6844658, - "lon": -1.4994184, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF1 2003;WF1 2002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1013235375, - "lat": 53.6822803, - "lon": -1.5004616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1013308010, - "lat": 51.3104705, - "lon": 0.6540214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME9 75" - } -}, -{ - "type": "node", - "id": 1013315577, - "lat": 51.3070024, - "lon": 0.6073781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME14 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1013318156, - "lat": 53.8519651, - "lon": -2.9864348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 143D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1013318181, - "lat": 53.8486777, - "lon": -2.9910620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1013318182, - "lat": 53.8546553, - "lon": -2.9834797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1013527370, - "lat": 52.0661100, - "lon": -2.3240012, - "tags": { - "amenity": "post_box", - "collection_plate": "uncoded", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "In wall of Spar shop", - "note": "Has neither Crown nor Royal Cypher", - "old_ref": "M120 Upper Welland P.O.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "WR14 120", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1013552127, - "lat": 52.0819773, - "lon": -2.3703677, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "description": "Wall box in dedicated pillar in someone's drive.", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR13 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1013798599, - "lat": 53.4284646, - "lon": -2.3329783, - "tags": { - "amenity": "post_box", - "ref": "M33 328" - } -}, -{ - "type": "node", - "id": 1013850066, - "lat": 53.8229909, - "lon": -3.0553148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1014002245, - "lat": 53.7916790, - "lon": -1.5628751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1014441411, - "lat": 52.1305762, - "lon": -2.3846123, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "description": "In surrounding wall of house", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR13 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1014492526, - "lat": 51.3801384, - "lon": -2.3275644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BA2 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1014536896, - "lat": 51.9784213, - "lon": 0.5848612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO9 6", - "source": "gps" - } -}, -{ - "type": "node", - "id": 1014537276, - "lat": 51.9823500, - "lon": 0.5891214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO9 53", - "royal_cypher": "EIIR", - "source": "gps" - } -}, -{ - "type": "node", - "id": 1014688738, - "lat": 50.9247416, - "lon": -1.3713940, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1014704244, - "lat": 52.1198031, - "lon": -2.4003307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR13 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1015025450, - "lat": 51.3816087, - "lon": -0.2469079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 319", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1015090735, - "lat": 53.6828628, - "lon": -1.4978139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 224", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1015200429, - "lat": 51.5003674, - "lon": -2.5474533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 1015654626, - "lat": 52.1344072, - "lon": -2.4023504, - "tags": { - "amenity": "post_box", - "description": "In low wall surrounding barn", - "fixme": "Need to scan in daylight", - "fixme2": "ref is conjectural", - "post_box:type": "wall", - "ref": "WR13 92" - } -}, -{ - "type": "node", - "id": 1015830291, - "lat": 52.1093605, - "lon": -2.3844037, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:39; Sa 07:00", - "historic_operator": "Post Office", - "note": "Yes, the M-F time is really shewn as \"4.39pm\" !", - "post_box:type": "lamp", - "ref": "WR13 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 1015871484, - "lat": 52.1354845, - "lon": -2.3704481, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1015937235, - "lat": 51.6305591, - "lon": -2.6916165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1015945690, - "lat": 51.6297247, - "lon": -2.6957591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1018490412, - "lat": 50.4581918, - "lon": -4.4598392, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1018535780, - "lat": 50.4560487, - "lon": -4.4619832, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1018597045, - "lat": 53.5901321, - "lon": -2.3849256, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1020072504, - "lat": 52.0840397, - "lon": -2.3538688, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR13 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1020289508, - "lat": 54.3595606, - "lon": -2.7418020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 108" - } -}, -{ - "type": "node", - "id": 1020530913, - "lat": 52.0383772, - "lon": -1.8563781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR12 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1021028126, - "lat": 57.1051235, - "lon": -2.6231401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-03-20", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB31 490", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1021294745, - "lat": 52.2000544, - "lon": -2.1781439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR4 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1021294806, - "lat": 52.1965903, - "lon": -2.1742839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "WR4 522", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1021294851, - "lat": 52.2035904, - "lon": -2.1765480, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "WR4 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1021294890, - "lat": 52.1994831, - "lon": -2.1799142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "WR4 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1021371555, - "lat": 55.6243714, - "lon": -4.4879805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1022247140, - "lat": 53.8842189, - "lon": -3.0052116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1022697940, - "lat": 51.3534740, - "lon": 0.5351820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME5 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1022750698, - "lat": 51.5298460, - "lon": -0.7394891, - "tags": { - "amenity": "post_box", - "ele": "41.221924", - "post_box:type": "lamp", - "ref": "SL6 140", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1022768648, - "lat": 51.3925100, - "lon": 0.4674789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 80D" - } -}, -{ - "type": "node", - "id": 1022769663, - "lat": 51.5280200, - "lon": -0.7522580, - "tags": { - "amenity": "post_box", - "ele": "51.796387", - "ref": "SL6 167", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1023015690, - "lat": 51.3517930, - "lon": 0.5707785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME7 104" - } -}, -{ - "type": "node", - "id": 1023081694, - "lat": 51.3872251, - "lon": 0.5518304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 45D" - } -}, -{ - "type": "node", - "id": 1023093960, - "lat": 51.3893550, - "lon": 0.5633457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 272" - } -}, -{ - "type": "node", - "id": 1023120457, - "lat": 51.3658158, - "lon": 0.5975827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 220" - } -}, -{ - "type": "node", - "id": 1023143684, - "lat": 51.3945292, - "lon": 0.5546876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 232" - } -}, -{ - "type": "node", - "id": 1023201843, - "lat": 51.3650187, - "lon": 0.5641516, - "tags": { - "amenity": "post_box", - "ref": "ME7 46" - } -}, -{ - "type": "node", - "id": 1023201871, - "lat": 51.3815305, - "lon": 0.5603824, - "tags": { - "amenity": "post_box", - "ref": "ME7 203" - } -}, -{ - "type": "node", - "id": 1023201936, - "lat": 51.3905651, - "lon": 0.5605642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1023201947, - "lat": 51.3760951, - "lon": 0.5660963, - "tags": { - "amenity": "post_box", - "ref": "ME7 261" - } -}, -{ - "type": "node", - "id": 1023675698, - "lat": 51.3755060, - "lon": -1.4838646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1023682257, - "lat": 51.3863707, - "lon": 0.5468769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 240", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1023772792, - "lat": 51.4536665, - "lon": -2.5930103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS1 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1023795097, - "lat": 51.4880968, - "lon": -0.2100836, - "tags": { - "amenity": "post_box", - "fixme": "Check exact position.", - "ref": "W14 22" - } -}, -{ - "type": "node", - "id": 1023795287, - "lat": 51.4824251, - "lon": -0.2141327, - "tags": { - "amenity": "post_box", - "ref": "SW6 3" - } -}, -{ - "type": "node", - "id": 1023970098, - "lat": 53.1746525, - "lon": -2.2122589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1024579414, - "lat": 51.3292980, - "lon": 0.5621089, - "tags": { - "amenity": "post_box", - "mapillary": "229197265819687", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME7 1", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 1024579416, - "lat": 51.3268586, - "lon": 0.5709888, - "tags": { - "amenity": "post_box", - "ref": "ME7 84" - } -}, -{ - "type": "node", - "id": 1024579428, - "lat": 51.3311561, - "lon": 0.5763661, - "tags": { - "amenity": "post_box", - "ref": "ME7 106" - } -}, -{ - "type": "node", - "id": 1024579435, - "lat": 51.3858724, - "lon": 0.5512289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME7 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1024794732, - "lat": 53.8852830, - "lon": -3.0134312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1026100133, - "lat": 51.4509615, - "lon": -0.0059457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1026415936, - "lat": 51.6490391, - "lon": 0.6089140, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1026487138, - "lat": 50.8722047, - "lon": 0.0046209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1026886671, - "lat": 53.7018579, - "lon": -1.7814860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1027080728, - "lat": 52.2769411, - "lon": -0.9044425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1027323278, - "lat": 50.8741208, - "lon": 0.2496492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 918D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1027324231, - "lat": 53.7764199, - "lon": -1.5175363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1027324233, - "lat": 53.7392158, - "lon": -1.4915869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF3 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1027324240, - "lat": 53.7460844, - "lon": -1.4807063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 806" - } -}, -{ - "type": "node", - "id": 1027324249, - "lat": 53.7842490, - "lon": -1.5290450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS10 29" - } -}, -{ - "type": "node", - "id": 1027324274, - "lat": 53.7842475, - "lon": -1.5290122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1028095448, - "lat": 52.0596355, - "lon": -2.2161461, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WR8 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1028119304, - "lat": 52.9142363, - "lon": -4.1628907, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1028298135, - "lat": 53.7507711, - "lon": -2.4126713, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1028298357, - "lat": 53.7502111, - "lon": -2.4064982, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1028628384, - "lat": 52.4388952, - "lon": -2.1402695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1028634473, - "lat": 50.3786928, - "lon": -4.1756024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1394267384354243", - "post_box:type": "pillar", - "ref": "PL2 180D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 1028828970, - "lat": 53.7889790, - "lon": -1.7867695, - "tags": { - "amenity": "post_box", - "ele": "215.0", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1028828971, - "lat": 53.7915627, - "lon": -1.7774122, - "tags": { - "amenity": "post_box", - "ele": "195.0", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1028847261, - "lat": 53.6326758, - "lon": -1.5197656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF4 218" - } -}, -{ - "type": "node", - "id": 1028847345, - "lat": 53.6613125, - "lon": -1.4838332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF2 144", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1028919756, - "lat": 53.7841296, - "lon": -1.8020674, - "tags": { - "amenity": "post_box", - "ele": "237.0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD7 389" - } -}, -{ - "type": "node", - "id": 1029497464, - "lat": 55.9617112, - "lon": -3.2842794, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH4 485D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1029549666, - "lat": 51.0674021, - "lon": -1.3196687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1030098464, - "lat": 53.3693211, - "lon": -4.3672157, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1030098586, - "lat": 50.8019633, - "lon": -1.2036446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "PO13 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1030110227, - "lat": 57.0505220, - "lon": -2.5017815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB31 540", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1030484134, - "lat": 52.3634297, - "lon": -0.8900643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1030722492, - "lat": 52.2526224, - "lon": 0.0207873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "note": "Left aperture has ref CB23 2122", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CB23 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1031024335, - "lat": 51.5526792, - "lon": -0.0527519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "815243669104392", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1031170401, - "lat": 54.9458601, - "lon": -1.6809976, - "tags": { - "amenity": "post_box", - "ref": "NE16 636" - } -}, -{ - "type": "node", - "id": 1031170418, - "lat": 54.9452808, - "lon": -1.6829341, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE16 78" - } -}, -{ - "type": "node", - "id": 1031170513, - "lat": 54.9454532, - "lon": -1.6647557, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1032065255, - "lat": 51.0655603, - "lon": -1.3265743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1032428798, - "lat": 57.0517151, - "lon": -2.4974180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB31 375", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1032446265, - "lat": 53.1726935, - "lon": -2.2081879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1032964262, - "lat": 53.8321462, - "lon": -3.0540118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1033479764, - "lat": 52.0588445, - "lon": -2.2123060, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR8 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1033501540, - "lat": 52.0558199, - "lon": -2.2132874, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR8 498D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1033572690, - "lat": 50.9230093, - "lon": -1.4014248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 110D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1033675472, - "lat": 51.0498884, - "lon": -0.6586084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 1033685572, - "lat": 52.1444823, - "lon": -2.3471108, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR13 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1033701561, - "lat": 52.1058180, - "lon": -2.3978806, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "historic_operator": "Royal Mail", - "note": "Reference number comes from marker pen markings put on unplated box by RM.", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "WR13 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1033714711, - "lat": 52.0523990, - "lon": -2.3162385, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 15:45; Sa 07:30", - "historic_operator": "(none)", - "post_box:type": "lamp", - "ref": "WR13 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1033733403, - "lat": 51.4723147, - "lon": -3.1895210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1034452840, - "lat": 53.3227143, - "lon": -1.1702868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "42.9041748", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S81 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1035563936, - "lat": 55.9488809, - "lon": -3.2005224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Has restriction plate inside aperture to only allow letters/postcards", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EH1 585", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1035577056, - "lat": 53.1743166, - "lon": -2.1910680, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-11", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "ref": "CW12 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1035709926, - "lat": 53.6889859, - "lon": -1.5054233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1035709948, - "lat": 53.7118775, - "lon": -1.4951979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 256", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 1035770855, - "lat": 53.6796487, - "lon": -1.5000786, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF1 20" - } -}, -{ - "type": "node", - "id": 1035770861, - "lat": 53.6796634, - "lon": -1.5000728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 2001" - } -}, -{ - "type": "node", - "id": 1035834226, - "lat": 51.1101703, - "lon": 1.1538965, - "tags": { - "amenity": "post_box", - "fixme": "Validate reference by survey", - "ref": "CT18 95" - } -}, -{ - "type": "node", - "id": 1035889951, - "lat": 52.0801872, - "lon": -2.2373007, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR8 267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1035919938, - "lat": 53.6513347, - "lon": -3.0003761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PR9 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1035945561, - "lat": 51.0596935, - "lon": -1.3142704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "name": "Cathedral Close", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1036176387, - "lat": 52.9273218, - "lon": -2.1116026, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1036176790, - "lat": 50.7911857, - "lon": -1.1638172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO12 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1036436219, - "lat": 53.2249860, - "lon": -1.8343114, - "tags": { - "amenity": "post_box", - "ele": "333", - "post_box:type": "lamp", - "ref": "SK17 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1036444655, - "lat": 51.5050073, - "lon": -2.6427558, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 539D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1036564926, - "lat": 53.2244097, - "lon": -1.8418444, - "tags": { - "amenity": "post_box", - "ele": "332.4992676" - } -}, -{ - "type": "node", - "id": 1036614853, - "lat": 50.9089847, - "lon": -0.7710909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1036629355, - "lat": 51.4886483, - "lon": -3.1584257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1036629359, - "lat": 51.4828778, - "lon": -3.1647093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside and Co. Ltd", - "post_box:type": "pillar", - "ref": "CF24 167D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1036962038, - "lat": 51.3303269, - "lon": 0.7248988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ME10 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1036962041, - "lat": 51.3293930, - "lon": 0.7338024, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME10 107", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME10 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 1036962048, - "lat": 51.3563236, - "lon": 0.7316848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "note": "As at Tuesday 15th August 2023 there is a Royal Mail sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 1036962052, - "lat": 51.3392076, - "lon": 0.7591595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "old_ref": "ME10 106", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-11-01" - } -}, -{ - "type": "node", - "id": 1036962054, - "lat": 51.3433151, - "lon": 0.7171333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME10 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 1037280835, - "lat": 52.4027057, - "lon": -1.8081037, - "tags": { - "amenity": "post_box", - "note": "sealed on date of survey, 10 Dec 2010", - "ref": "B91 561" - } -}, -{ - "type": "node", - "id": 1037295887, - "lat": 52.0390830, - "lon": -3.2447206, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1037295897, - "lat": 52.0455002, - "lon": -3.2729934, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LD3 417", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1037295926, - "lat": 52.0933949, - "lon": -3.3242334, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1037295927, - "lat": 52.0906259, - "lon": -3.3141491, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1037326540, - "lat": 51.2239016, - "lon": 0.3381213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN11 285" - } -}, -{ - "type": "node", - "id": 1037329614, - "lat": 51.2125624, - "lon": 0.3857318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN12 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1037482853, - "lat": 52.3128056, - "lon": -0.6966980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1037611311, - "lat": 52.4015423, - "lon": -1.8000889, - "tags": { - "amenity": "post_box", - "ref": "B91 712" - } -}, -{ - "type": "node", - "id": 1037631775, - "lat": 56.8918488, - "lon": -4.9213748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-03-25", - "collection_plate": "CP7", - "collection_plate:date": "2018-06-05", - "collection_times": "Mo-Fr 15:00; Sa 15:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH34 98", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1037631776, - "lat": 56.9130810, - "lon": -4.9963381, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH34 104", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1037866742, - "lat": 53.9018321, - "lon": -1.9895366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1037979146, - "lat": 54.1278855, - "lon": -3.2149233, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA14 74" - } -}, -{ - "type": "node", - "id": 1037979178, - "lat": 53.8659598, - "lon": -0.4942302, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 1038084930, - "lat": 50.9111126, - "lon": -1.4257165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO15 20D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1038145600, - "lat": 52.8104718, - "lon": -2.1400240, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST16 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1038218594, - "lat": 53.6880279, - "lon": -1.6908294, - "tags": { - "amenity": "post_box", - "note": "Might not be here", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 165" - } -}, -{ - "type": "node", - "id": 1038234615, - "lat": 53.6753009, - "lon": -1.6781511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 163" - } -}, -{ - "type": "node", - "id": 1038350532, - "lat": 53.6966381, - "lon": -1.7000111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 134" - } -}, -{ - "type": "node", - "id": 1038546950, - "lat": 52.7935126, - "lon": -2.0878905, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1038708644, - "lat": 51.5380799, - "lon": 0.6926132, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1038799893, - "lat": 53.8331323, - "lon": -1.7769693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD18 924", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1038815866, - "lat": 51.4810304, - "lon": -3.1922887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 203D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1038903450, - "lat": 51.9028737, - "lon": 0.9238853, - "tags": { - "amenity": "post_box", - "source": "OS_opendata_streetview" - } -}, -{ - "type": "node", - "id": 1038903469, - "lat": 51.8944181, - "lon": 0.9267261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1039012491, - "lat": 51.7076240, - "lon": -0.7146502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP16 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 1039061081, - "lat": 53.6716938, - "lon": -1.4823593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1039061086, - "lat": 53.6702218, - "lon": -1.4771775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1039061089, - "lat": 53.6383474, - "lon": -1.4978627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 160" - } -}, -{ - "type": "node", - "id": 1039061092, - "lat": 53.6479229, - "lon": -1.4607951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF2 490" - } -}, -{ - "type": "node", - "id": 1039170892, - "lat": 51.9303516, - "lon": -4.9003413, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1039172569, - "lat": 51.3677714, - "lon": 0.5025356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME1 344" - } -}, -{ - "type": "node", - "id": 1039172574, - "lat": 51.3656396, - "lon": 0.5136155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME1 297" - } -}, -{ - "type": "node", - "id": 1039228731, - "lat": 52.4036241, - "lon": -0.7428932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1039463396, - "lat": 54.0016786, - "lon": -0.4354388, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1039742736, - "lat": 53.8780417, - "lon": -3.0056630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1039923150, - "lat": 51.4859984, - "lon": -3.1614276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 140", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1039933955, - "lat": 53.1699666, - "lon": -2.1947418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1040045471, - "lat": 57.1330284, - "lon": -2.1550584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1040143125, - "lat": 51.5551775, - "lon": -0.3960742, - "tags": { - "amenity": "post_box", - "ref": "HA4 430" - } -}, -{ - "type": "node", - "id": 1040143128, - "lat": 51.5684939, - "lon": -0.4201905, - "tags": { - "amenity": "post_box", - "ref": "HA4 313" - } -}, -{ - "type": "node", - "id": 1040143129, - "lat": 51.5635356, - "lon": -0.3835423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "ref": "HA4 448" - } -}, -{ - "type": "node", - "id": 1040143130, - "lat": 51.5543416, - "lon": -0.4034786, - "tags": { - "amenity": "post_box", - "ref": "HA4 243" - } -}, -{ - "type": "node", - "id": 1040143133, - "lat": 51.5656035, - "lon": -0.4143794, - "tags": { - "amenity": "post_box", - "ref": "HA4 91" - } -}, -{ - "type": "node", - "id": 1040143135, - "lat": 51.5655019, - "lon": -0.3858600, - "tags": { - "amenity": "post_box", - "mapillary": "818220492454760", - "post_box:type": "pillar", - "ref": "HA4 294", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 1040717555, - "lat": 51.6644606, - "lon": 0.7582506, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 1040742734, - "lat": 53.4897009, - "lon": -2.0929882, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1040928114, - "lat": 53.6606996, - "lon": -1.4881375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF2 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1040968554, - "lat": 53.6746918, - "lon": -1.4942887, - "tags": { - "amenity": "post_box", - "note": "Franked mail and parcels", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF2 1018", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1041070855, - "lat": 51.8566306, - "lon": 0.4329456, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1041192560, - "lat": 51.6667733, - "lon": -0.0837149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EN2 2", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1041779083, - "lat": 51.4862167, - "lon": -0.3342590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 283", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1041855591, - "lat": 51.7011922, - "lon": -0.7048266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP16 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1041873919, - "lat": 51.6516179, - "lon": 0.0763552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IG10 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1041935326, - "lat": 52.3626093, - "lon": -4.0584404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 27" - } -}, -{ - "type": "node", - "id": 1041964288, - "lat": 50.8391924, - "lon": -0.9823404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1042477939, - "lat": 51.0732726, - "lon": -0.3021953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1043105740, - "lat": 52.7904423, - "lon": -2.0828908, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST17 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1043105774, - "lat": 52.7921454, - "lon": -2.0732704, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 438" - } -}, -{ - "type": "node", - "id": 1043341289, - "lat": 53.7115129, - "lon": -1.5294957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 37" - } -}, -{ - "type": "node", - "id": 1043341313, - "lat": 53.7062453, - "lon": -1.5392228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 189" - } -}, -{ - "type": "node", - "id": 1043341352, - "lat": 53.7233915, - "lon": -1.5184632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF3 70" - } -}, -{ - "type": "node", - "id": 1043341358, - "lat": 53.7011256, - "lon": -1.5177363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF1 203" - } -}, -{ - "type": "node", - "id": 1043341372, - "lat": 53.6973869, - "lon": -1.5236654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 162" - } -}, -{ - "type": "node", - "id": 1043483776, - "lat": 51.4735657, - "lon": -2.5491055, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1175" - } -}, -{ - "type": "node", - "id": 1044235627, - "lat": 53.4944311, - "lon": -2.0811834, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1044235964, - "lat": 53.4845880, - "lon": -2.0956673, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1044662854, - "lat": 51.9763457, - "lon": 0.0195046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "name": "Cave Gate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG9 58" - } -}, -{ - "type": "node", - "id": 1044667554, - "lat": 51.3456392, - "lon": 0.6431706, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME9 103", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ME9 103D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 1044667555, - "lat": 51.3596382, - "lon": 0.6277129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME8 78" - } -}, -{ - "type": "node", - "id": 1044929434, - "lat": 51.3642773, - "lon": -0.2987810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1045073663, - "lat": 51.0479421, - "lon": -1.3474830, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1046061867, - "lat": 52.7587334, - "lon": -1.2099084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "ref": "LE11 171", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1048956911, - "lat": 57.1064522, - "lon": -2.6210351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-03", - "collection_times": "Mo-Sa 11:45; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB31 358", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1049363473, - "lat": 51.4702251, - "lon": -3.1691566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF10 180", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1049886352, - "lat": 51.3897910, - "lon": 0.5039869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1049896287, - "lat": 52.8189503, - "lon": 1.3769476, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "20230220", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR28 2804D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1049896305, - "lat": 52.8163103, - "lon": 1.3733182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2827", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1050015870, - "lat": 53.6967165, - "lon": -1.5372963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 241" - } -}, -{ - "type": "node", - "id": 1050015919, - "lat": 53.6885445, - "lon": -1.5288554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 20" - } -}, -{ - "type": "node", - "id": 1050015922, - "lat": 53.6909060, - "lon": -1.5340632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 174", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1050015945, - "lat": 53.6950553, - "lon": -1.5303517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 219" - } -}, -{ - "type": "node", - "id": 1050139904, - "lat": 51.4819047, - "lon": -3.1771138, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CF10 13;CF10 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "image" - } -}, -{ - "type": "node", - "id": 1050224857, - "lat": 51.5792177, - "lon": -0.4206229, - "tags": { - "amenity": "post_box", - "ref": "HA4 387" - } -}, -{ - "type": "node", - "id": 1050224858, - "lat": 51.5822043, - "lon": -0.4127610, - "tags": { - "amenity": "post_box", - "ref": "HA4 384" - } -}, -{ - "type": "node", - "id": 1051364915, - "lat": 53.6598218, - "lon": -1.5565528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1051364929, - "lat": 53.6607283, - "lon": -1.5551551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1051364933, - "lat": 53.6723715, - "lon": -1.5221498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 230" - } -}, -{ - "type": "node", - "id": 1051566427, - "lat": 54.9739328, - "lon": -2.6719502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA8 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1051566558, - "lat": 54.9499200, - "lon": -2.7135462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "ref": "CA8 425" - } -}, -{ - "type": "node", - "id": 1052128250, - "lat": 52.2016528, - "lon": -2.1864484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1052171404, - "lat": 52.2054457, - "lon": -2.1933119, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR4 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1052171413, - "lat": 52.2018147, - "lon": -2.2009838, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "historic_operator": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1052171419, - "lat": 52.1967137, - "lon": -2.1979336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "note": "Collection Plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1052275665, - "lat": 51.5336761, - "lon": -0.7363180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "49.393066", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1052544407, - "lat": 52.8862979, - "lon": -3.2537839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL20 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1052550646, - "lat": 52.8955075, - "lon": -3.2239417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL20 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1052565092, - "lat": 52.9252080, - "lon": -3.1899309, - "tags": { - "amenity": "post_box", - "name": "Coed-Y-Glyn, Glyn Ceiriog Post Box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1052569596, - "lat": 52.9148556, - "lon": -3.1979329, - "tags": { - "amenity": "post_box", - "name": "Pandy Post Box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1052606778, - "lat": 52.9247075, - "lon": -3.1547727, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1052720899, - "lat": 53.8647009, - "lon": -1.1901310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO23 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1052995943, - "lat": 55.9988787, - "lon": -3.7825408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 4", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1052995969, - "lat": 55.9992597, - "lon": -3.7847846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1052995978, - "lat": 56.0040847, - "lon": -3.7899292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 239", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1054720012, - "lat": 52.2135175, - "lon": -2.1845240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1054748739, - "lat": 52.1984997, - "lon": -2.2014642, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WR4 57", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1054759903, - "lat": 52.2098349, - "lon": -2.1870317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR4 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1054764975, - "lat": 52.2124528, - "lon": -2.1913414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR4 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1054787930, - "lat": 52.2092951, - "lon": -2.1955126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 176", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1054791823, - "lat": 52.2071075, - "lon": -2.1832883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1054982195, - "lat": 50.8443764, - "lon": -0.9837740, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "PO9 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1055328786, - "lat": 53.6456248, - "lon": -1.7803868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD1 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photgraph" - } -}, -{ - "type": "node", - "id": 1055540562, - "lat": 52.2771391, - "lon": -3.0609436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1057777584, - "lat": 52.3749377, - "lon": -1.5109472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "postal_code": "CV3", - "ref": "CV3 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1057777657, - "lat": 52.3753939, - "lon": -1.5195186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV3", - "ref": "CV3 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-06-17" - } -}, -{ - "type": "node", - "id": 1057777718, - "lat": 52.3805759, - "lon": -1.5253239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "postal_code": "CV3", - "ref": "CV3 258", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1059007318, - "lat": 52.4490055, - "lon": 0.0477071, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1059048712, - "lat": 50.8640595, - "lon": -3.4583523, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1059167166, - "lat": 51.3588550, - "lon": -0.2950830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 261", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1059727621, - "lat": 53.6806867, - "lon": -1.5332247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 196" - } -}, -{ - "type": "node", - "id": 1059727624, - "lat": 53.6854784, - "lon": -1.5055678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF1 74" - } -}, -{ - "type": "node", - "id": 1059727625, - "lat": 53.6750986, - "lon": -1.5265791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 225" - } -}, -{ - "type": "node", - "id": 1059727636, - "lat": 53.6729666, - "lon": -1.5321406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF2 169" - } -}, -{ - "type": "node", - "id": 1059727642, - "lat": 53.6859999, - "lon": -1.5140770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1059727646, - "lat": 53.6845982, - "lon": -1.5188553, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF2 34" - } -}, -{ - "type": "node", - "id": 1061456484, - "lat": 53.2624059, - "lon": -2.5783431, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1061627490, - "lat": 53.4076686, - "lon": -1.2339879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S66 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1061957914, - "lat": 53.7806035, - "lon": -2.8728546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR4 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1062258148, - "lat": 54.4842310, - "lon": -1.1222774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1062377347, - "lat": 52.8601980, - "lon": 1.3947700, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1064249602, - "lat": 51.3849008, - "lon": -2.3529363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BA2 146D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q26675038" - } -}, -{ - "type": "node", - "id": 1064464696, - "lat": 51.5461579, - "lon": -2.5516638, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS32 631D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1064726953, - "lat": 51.5291754, - "lon": -2.5592184, - "tags": { - "amenity": "post_box", - "note": "ref really does end in D", - "post_box:type": "pillar", - "ref": "BS34 591D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1065224141, - "lat": 51.4172097, - "lon": -2.2082681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 312D" - } -}, -{ - "type": "node", - "id": 1065663167, - "lat": 51.3698791, - "lon": -0.2497899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT19 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1065848780, - "lat": 52.3870387, - "lon": 0.6755529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "note": "In outside wall of Post Office building", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP24 3233", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1066051994, - "lat": 53.1642847, - "lon": -2.1952803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1066052401, - "lat": 53.1665824, - "lon": -2.1987387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "CW12 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1066096226, - "lat": 52.8232492, - "lon": 1.3904455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2836D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1066096229, - "lat": 52.8273900, - "lon": 1.3929704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00; Su off", - "name": "Hamlet Close", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR28 2808D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1066096242, - "lat": 52.8178299, - "lon": 1.3841355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR28 2842D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1066625207, - "lat": 52.8467417, - "lon": 1.4889091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1067049722, - "lat": 51.1200494, - "lon": -1.4968575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "366660362150750", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO20 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 1067085994, - "lat": 51.1143223, - "lon": -1.4953652, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO20 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1067592463, - "lat": 54.4899685, - "lon": -1.1149094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TS9 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1067592469, - "lat": 54.4873107, - "lon": -1.1302145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TS9 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1067667623, - "lat": 51.8655950, - "lon": -2.4847850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00" - } -}, -{ - "type": "node", - "id": 1067854333, - "lat": 52.2078832, - "lon": -2.1807632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR4 450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1067989261, - "lat": 53.1631256, - "lon": -2.1950705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 31" - } -}, -{ - "type": "node", - "id": 1068535091, - "lat": 51.0081553, - "lon": -1.4870020, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO51 396", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1068581308, - "lat": 51.0267949, - "lon": -1.5080367, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1069291422, - "lat": 56.3301928, - "lon": -2.8151294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 371", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1069391795, - "lat": 52.2967602, - "lon": -0.6245263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN10 1059" - } -}, -{ - "type": "node", - "id": 1069391805, - "lat": 52.2947314, - "lon": -0.6190658, - "tags": { - "amenity": "post_box", - "ref": "NN10 59" - } -}, -{ - "type": "node", - "id": 1069399242, - "lat": 52.2907918, - "lon": -0.5989588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN10 90" - } -}, -{ - "type": "node", - "id": 1069435795, - "lat": 53.3718751, - "lon": -2.5468971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 139", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1069762029, - "lat": 53.3061161, - "lon": -2.5795724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 214", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1069791504, - "lat": 52.2911170, - "lon": -1.9525629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B97 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1069956931, - "lat": 51.6832983, - "lon": -0.7099291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HP16 70" - } -}, -{ - "type": "node", - "id": 1070127521, - "lat": 51.0804425, - "lon": -1.3385076, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1070284943, - "lat": 51.3810283, - "lon": -0.2828901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KT6 419P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1070533213, - "lat": 50.8414765, - "lon": -1.1245226, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 1070551975, - "lat": 53.6808210, - "lon": -1.5706638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 102" - } -}, -{ - "type": "node", - "id": 1070551977, - "lat": 53.6858892, - "lon": -1.5710870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 83" - } -}, -{ - "type": "node", - "id": 1070551987, - "lat": 53.6917843, - "lon": -1.5849458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF5 192" - } -}, -{ - "type": "node", - "id": 1070551988, - "lat": 53.6847043, - "lon": -1.5828907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 65", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1070863774, - "lat": 52.4623785, - "lon": 1.2705162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1071392715, - "lat": 53.7213631, - "lon": -1.5413327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF3 137", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1071428786, - "lat": 51.1479768, - "lon": -2.7147866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BA6 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1071429631, - "lat": 52.7844964, - "lon": -2.0792544, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1071429658, - "lat": 52.7852781, - "lon": -2.0746775, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1071599615, - "lat": 50.5127526, - "lon": -3.5228513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-12" - } -}, -{ - "type": "node", - "id": 1071719813, - "lat": 57.0618509, - "lon": -2.4711857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "AB31 251", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1073026603, - "lat": 50.8516702, - "lon": -0.9844807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1073026638, - "lat": 50.8514316, - "lon": -0.9821993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "description": "PO9 1551 for Stamped mail; PO9 1552 for Franked mail.", - "last_checked": "2020-02-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO9 1551;PO9 1552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1073079354, - "lat": 52.3029350, - "lon": 0.7193605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "ref": "IP31 2165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1073108409, - "lat": 52.2459467, - "lon": 0.7123212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP33 8237;IP33 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1073108427, - "lat": 52.2439957, - "lon": 0.7094656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "IP33 8223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1073419352, - "lat": 50.2637299, - "lon": -5.0562172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1073847562, - "lat": 52.8477763, - "lon": -2.0659741, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ST18 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1073847595, - "lat": 52.8328889, - "lon": -2.0844891, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST18 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1073848213, - "lat": 52.8697048, - "lon": -2.0914995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "note": "Cast iron box, inset into wall, no sign of any cypher, POST OFFICE only.", - "post_box:type": "wall", - "ref": "ST18 226", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1073857975, - "lat": 53.6827440, - "lon": -1.4946289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF1 79;WF1 1079" - } -}, -{ - "type": "node", - "id": 1074216785, - "lat": 50.8427950, - "lon": -0.9844032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 100D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1074240004, - "lat": 51.0065003, - "lon": -2.4475955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1075133169, - "lat": 50.8704040, - "lon": -0.9778727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1075318855, - "lat": 55.8273046, - "lon": -4.2592763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1075432492, - "lat": 52.0368191, - "lon": -1.8696563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR12 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1075461928, - "lat": 53.6532847, - "lon": -1.8167857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1075461950, - "lat": 53.6514654, - "lon": -1.8066047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1075461971, - "lat": 53.6516422, - "lon": -1.8020631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1075461973, - "lat": 53.6501134, - "lon": -1.7959750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1075462012, - "lat": 53.6668985, - "lon": -1.8323565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1075462020, - "lat": 53.6625604, - "lon": -1.8307189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1075462041, - "lat": 53.6583329, - "lon": -1.8215118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1075547030, - "lat": 54.8088776, - "lon": -1.4374797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH5 116" - } -}, -{ - "type": "node", - "id": 1077045582, - "lat": 52.3180298, - "lon": 0.0128615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB24 447D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1077045585, - "lat": 52.3166423, - "lon": 0.0166483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB24 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1077072172, - "lat": 53.9951593, - "lon": -0.4309132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO25 375", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1077116124, - "lat": 53.0460783, - "lon": -4.2572748, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1077505892, - "lat": 51.5940607, - "lon": -1.8244999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 467" - } -}, -{ - "type": "node", - "id": 1077506524, - "lat": 51.5891850, - "lon": -1.8255374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 96" - } -}, -{ - "type": "node", - "id": 1077575886, - "lat": 52.8421394, - "lon": 1.4659801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "collection_times:lastcheck": "2018-08-17", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1077630891, - "lat": 51.7249211, - "lon": -0.7423763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HP16 93" - } -}, -{ - "type": "node", - "id": 1078671513, - "lat": 51.7058555, - "lon": -0.7775483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP16 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1078671583, - "lat": 51.7141096, - "lon": -0.7519293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP16 113" - } -}, -{ - "type": "node", - "id": 1078859940, - "lat": 52.3990130, - "lon": 0.8252851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:40; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP24 3222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1079137929, - "lat": 52.1485600, - "lon": -1.8478113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B50 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1079262405, - "lat": 51.0201516, - "lon": -0.2193933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1079450978, - "lat": 52.8153510, - "lon": 1.3897463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2832D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1079569435, - "lat": 52.8009170, - "lon": -2.0812464, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST17 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1079637164, - "lat": 52.7965219, - "lon": -2.0772803, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1079640246, - "lat": 53.6886916, - "lon": -1.8847273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX4 123" - } -}, -{ - "type": "node", - "id": 1079640419, - "lat": 53.6843818, - "lon": -1.8876954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX4 216" - } -}, -{ - "type": "node", - "id": 1079782136, - "lat": 57.0557219, - "lon": -2.4775735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB31 441", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1079825878, - "lat": 52.4189334, - "lon": 0.8601002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP24 3428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-29" - } -}, -{ - "type": "node", - "id": 1079904372, - "lat": 52.3946450, - "lon": 0.8886428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7132D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1080384632, - "lat": 53.6672153, - "lon": -1.5514771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 220", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1080384640, - "lat": 53.6637009, - "lon": -1.5532754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 195" - } -}, -{ - "type": "node", - "id": 1080384658, - "lat": 53.6750487, - "lon": -1.5617711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 22" - } -}, -{ - "type": "node", - "id": 1080384664, - "lat": 53.6866312, - "lon": -1.6022316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 18" - } -}, -{ - "type": "node", - "id": 1080384669, - "lat": 53.6704888, - "lon": -1.5747058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 24" - } -}, -{ - "type": "node", - "id": 1080384680, - "lat": 53.6646445, - "lon": -1.5477318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 194" - } -}, -{ - "type": "node", - "id": 1080388938, - "lat": 52.1241131, - "lon": -1.4449268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX15 1160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 1080389124, - "lat": 52.1348145, - "lon": -1.4322067, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "OX17 1108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1080446207, - "lat": 52.5547019, - "lon": -2.1767540, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1080785079, - "lat": 51.3445146, - "lon": -1.9936814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1080794598, - "lat": 51.3395770, - "lon": -1.9881782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1080807918, - "lat": 57.0542062, - "lon": -2.4900822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 445", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1080817729, - "lat": 53.1575703, - "lon": -2.1852420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1080905637, - "lat": 55.9113755, - "lon": -4.0889740, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1080905834, - "lat": 55.9198396, - "lon": -4.0802596, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1080919912, - "lat": 54.3100524, - "lon": -1.8299972, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5526267", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DL8 104" - } -}, -{ - "type": "node", - "id": 1080976566, - "lat": 51.5261327, - "lon": -0.2106335, - "tags": { - "amenity": "post_box", - "ref": "W10 1" - } -}, -{ - "type": "node", - "id": 1081047873, - "lat": 51.5904094, - "lon": 0.0143768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1081047876, - "lat": 51.5897603, - "lon": 0.0194223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1081149156, - "lat": 51.5283410, - "lon": -0.1727654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1081174236, - "lat": 52.7175709, - "lon": -2.1150844, - "tags": { - "amenity": "post_box", - "ref": "ST19 387" - } -}, -{ - "type": "node", - "id": 1081258262, - "lat": 53.6676344, - "lon": -1.4774693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1081258287, - "lat": 53.6460969, - "lon": -1.4941454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF2 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1081258290, - "lat": 53.6645140, - "lon": -1.4813228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF1 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1081349441, - "lat": 57.1476618, - "lon": -2.1067017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1081349444, - "lat": 57.1414684, - "lon": -2.0801366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1081749580, - "lat": 51.5221675, - "lon": -0.2078992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "1", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W10 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1081749599, - "lat": 51.5209409, - "lon": -0.2095802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "W10 25" - } -}, -{ - "type": "node", - "id": 1081749620, - "lat": 51.5220121, - "lon": -0.2126034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W10 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27081012" - } -}, -{ - "type": "node", - "id": 1081852632, - "lat": 51.5285510, - "lon": -0.2160804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "W10 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1082169048, - "lat": 52.7189847, - "lon": -2.1043038, - "tags": { - "amenity": "post_box", - "ref": "ST19 260" - } -}, -{ - "type": "node", - "id": 1082941019, - "lat": 52.9980250, - "lon": -1.1440621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ele": "72.704834", - "post_box:type": "pillar", - "ref": "NG5 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1082941020, - "lat": 52.9959275, - "lon": -1.1488249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "58.044800", - "post_box:type": "pillar", - "ref": "NG5 409D", - "ref:GB:uprn": "10015395381", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1082941022, - "lat": 52.9957651, - "lon": -1.1431165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "64.533691", - "post_box:type": "pillar", - "ref": "NG5 199D", - "ref:GB:uprn": "10015374946", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1083357959, - "lat": 53.7919614, - "lon": -2.8869015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR4 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1083372137, - "lat": 51.4725835, - "lon": -2.2300705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SN14 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1083440794, - "lat": 52.9966509, - "lon": -1.1520656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1083811620, - "lat": 51.4592079, - "lon": -2.6207855, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS8 414", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1084612062, - "lat": 51.4654076, - "lon": -3.1925231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 999", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1085326237, - "lat": 51.4268031, - "lon": 0.7576606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 58" - } -}, -{ - "type": "node", - "id": 1085334062, - "lat": 53.7853195, - "lon": -2.8914955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1085497897, - "lat": 54.5810599, - "lon": -0.9818323, - "tags": { - "amenity": "post_box", - "name": "Corner Rifts Avenue & Marske Road", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1086040614, - "lat": 52.9649260, - "lon": -1.8564243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST14 1406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1086070572, - "lat": 52.2153744, - "lon": -0.0688845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB23 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/monkfield-lane-cb23-6el/000CB23550" - } -}, -{ - "type": "node", - "id": 1086983489, - "lat": 51.4763885, - "lon": -3.2032110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1086987185, - "lat": 55.7580746, - "lon": -4.0726762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1086989668, - "lat": 51.6143709, - "lon": -3.9442902, - "tags": { - "amenity": "post_box", - "ref": "SA1 21" - } -}, -{ - "type": "node", - "id": 1087424261, - "lat": 54.2120051, - "lon": -5.8895608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT33 56" - } -}, -{ - "type": "node", - "id": 1087424696, - "lat": 54.2764243, - "lon": -6.0394299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT31 16" - } -}, -{ - "type": "node", - "id": 1087556590, - "lat": 54.2322391, - "lon": -6.0912209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Check location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT34 117" - } -}, -{ - "type": "node", - "id": 1087556638, - "lat": 54.2332300, - "lon": -6.0452137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT34 13" - } -}, -{ - "type": "node", - "id": 1087556678, - "lat": 54.3394060, - "lon": -6.2018810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1088204999, - "lat": 51.4016996, - "lon": -0.0036389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1088205002, - "lat": 51.4036403, - "lon": -0.0102685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1088273115, - "lat": 52.7298909, - "lon": -2.1146226, - "tags": { - "amenity": "post_box", - "ref": "ST19 308" - } -}, -{ - "type": "node", - "id": 1088304546, - "lat": 51.0463818, - "lon": 0.1879726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1088308998, - "lat": 51.0478349, - "lon": 0.1880604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1088312078, - "lat": 51.0594390, - "lon": 0.1622566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1091333165, - "lat": 51.4682594, - "lon": -0.1750061, - "tags": { - "amenity": "post_box", - "ref": "SW11 70" - } -}, -{ - "type": "node", - "id": 1091490313, - "lat": 51.1970955, - "lon": -0.6047433, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU7 46", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1091603435, - "lat": 51.0820602, - "lon": -1.1726323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO24 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1091822486, - "lat": 51.0867730, - "lon": -1.3037066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1092029273, - "lat": 57.1422659, - "lon": -2.1405248, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 4EY", - "addr:street": "Bayview Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB15 100", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1092151768, - "lat": 57.1415387, - "lon": -2.1447530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "note": "Not standard lamp type; has a top that slopes up to the back", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB15 645", - "royal_cypher": "no", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 1092249622, - "lat": 57.1356831, - "lon": -2.1366454, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB15 155", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1092249634, - "lat": 57.1335744, - "lon": -2.1313748, - "tags": { - "addr:postcode": "AB10 6NR", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 112D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1092764439, - "lat": 51.4317370, - "lon": -0.8079520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1092766697, - "lat": 51.0617664, - "lon": -1.2548875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO21 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 1092824294, - "lat": 57.1453823, - "lon": -2.1156613, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB10 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1093485863, - "lat": 51.5072173, - "lon": -3.5606305, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1093705389, - "lat": 53.8052177, - "lon": -2.9355774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1093874471, - "lat": 52.6895483, - "lon": -1.9823448, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1093900735, - "lat": 53.7781786, - "lon": -2.9092626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 297D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1094451098, - "lat": 51.4317601, - "lon": 0.4002636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 82", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1094508693, - "lat": 51.1802426, - "lon": 0.9545699, - "tags": { - "amenity": "post_box", - "ref": "TN25 62", - "source": "photo" - } -}, -{ - "type": "node", - "id": 1094522433, - "lat": 51.1222764, - "lon": 0.2630608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1094523001, - "lat": 51.1294282, - "lon": 0.2640699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 69", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1094525592, - "lat": 52.0880794, - "lon": -1.8992427, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR11 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1094701804, - "lat": 52.9860228, - "lon": -1.2268555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG16 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1094826171, - "lat": 52.9502954, - "lon": -1.2387151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG8 142D", - "ref:GB:uprn": "10015351915", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1095025542, - "lat": 51.2871929, - "lon": -2.8167823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1095208090, - "lat": 52.7272928, - "lon": -2.1087654, - "tags": { - "amenity": "post_box", - "ref": "ST19 152" - } -}, -{ - "type": "node", - "id": 1095385532, - "lat": 51.3094517, - "lon": -0.5612678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1095404090, - "lat": 51.0874198, - "lon": -1.1596722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SO24 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 1095528747, - "lat": 51.4731946, - "lon": -3.1787135, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1307052526382178", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 196", - "royal_cypher": "EIIR", - "source": "survey;Bing", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 1095557312, - "lat": 52.7254597, - "lon": -2.1141532, - "tags": { - "amenity": "post_box", - "ref": "ST19 1901" - } -}, -{ - "type": "node", - "id": 1095593516, - "lat": 51.0907540, - "lon": -1.1652858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SO24 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 1095673619, - "lat": 51.7495594, - "lon": -0.4735909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 1095697079, - "lat": 51.0879751, - "lon": -1.1970805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1095725643, - "lat": 51.0839778, - "lon": -1.1268954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "mapillary": "301663651929316", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO24 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-16" - } -}, -{ - "type": "node", - "id": 1095848877, - "lat": 51.0875936, - "lon": -1.0937352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1206174106483024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SO24 239D", - "royal_cypher": "EIIR", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 1096302351, - "lat": 51.6443472, - "lon": -0.7736458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 1096385895, - "lat": 51.1525833, - "lon": -1.3343986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1096385972, - "lat": 51.1575411, - "lon": -1.3314515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SO21 245D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey_point": "2022-08-29" - } -}, -{ - "type": "node", - "id": 1096878535, - "lat": 53.6838905, - "lon": -1.6823855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 218" - } -}, -{ - "type": "node", - "id": 1097180095, - "lat": 55.9608134, - "lon": -3.2464361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "511326053569757", - "note": "Can't read ref on box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "EH4 2LX", - "ref": "EH4 377", - "source": "Bing;survey", - "source:postal_code": "dracos", - "source:ref": "dracos", - "survey:date": "2020-07-24" - } -}, -{ - "type": "node", - "id": 1097231700, - "lat": 57.1532631, - "lon": -2.2203729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1097246811, - "lat": 52.7212361, - "lon": -2.1154782, - "tags": { - "amenity": "post_box", - "ref": "ST19 259" - } -}, -{ - "type": "node", - "id": 1097857195, - "lat": 53.7314325, - "lon": -1.5040326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF3 238", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1098186606, - "lat": 57.0050676, - "lon": -5.8293803, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-22", - "collection_times": "Mo-Fr 15:30; Sa 11:45; Su off", - "post_box:type": "pillar", - "ref": "PH41 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1098312171, - "lat": 55.4733196, - "lon": -1.9241432, - "tags": { - "amenity": "post_box", - "ref": "NE66 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1098312206, - "lat": 55.4520031, - "lon": -1.9106226, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1098312395, - "lat": 55.4407720, - "lon": -1.9030068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE66 99" - } -}, -{ - "type": "node", - "id": 1098341680, - "lat": 52.9919399, - "lon": -1.1455429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ele": "46.268921", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 378", - "ref:GB:uprn": "10015405059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1098585003, - "lat": 52.7242776, - "lon": -2.1088393, - "tags": { - "amenity": "post_box", - "ref": "ST19 330" - } -}, -{ - "type": "node", - "id": 1098585418, - "lat": 52.7219259, - "lon": -2.1110397, - "tags": { - "amenity": "post_box", - "ref": "ST19 410" - } -}, -{ - "type": "node", - "id": 1098697880, - "lat": 57.1349737, - "lon": -2.1268596, - "tags": { - "addr:postcode": "AB10 6LX", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 98D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1098732735, - "lat": 56.8866992, - "lon": -3.4150246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 575", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1098745950, - "lat": 54.1637703, - "lon": -1.8603213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HG3 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1099568758, - "lat": 52.1292250, - "lon": -0.5165755, - "tags": { - "amenity": "post_box", - "ref": "MK40 339" - } -}, -{ - "type": "node", - "id": 1099591173, - "lat": 51.4023406, - "lon": 0.4801328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 238", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1099596071, - "lat": 51.4003905, - "lon": 0.4803086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME2 338" - } -}, -{ - "type": "node", - "id": 1099751081, - "lat": 52.5382767, - "lon": -0.2727028, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1099756971, - "lat": 52.5405393, - "lon": -0.2676254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1099808512, - "lat": 52.9944756, - "lon": -1.1434418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 276", - "ref:GB:uprn": "10015330119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS;Bing" - } -}, -{ - "type": "node", - "id": 1099808514, - "lat": 52.9912753, - "lon": -1.1506596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 284D", - "ref:GB:uprn": "10015448475", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100445737, - "lat": 54.1051263, - "lon": -1.7806711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "wall", - "ref": "HG3 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100453385, - "lat": 54.0794668, - "lon": -1.7391919, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100469350, - "lat": 54.1347042, - "lon": -1.5395353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100469354, - "lat": 54.1337547, - "lon": -1.5310720, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG4 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1100477940, - "lat": 54.1358956, - "lon": -1.4822186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100643929, - "lat": 51.5665027, - "lon": -0.3761289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "HA2 268" - } -}, -{ - "type": "node", - "id": 1100643963, - "lat": 51.5771473, - "lon": -0.3773450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "post_box:type": "pillar", - "ref": "HA5 394", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1100660008, - "lat": 53.2741205, - "lon": -3.0005554, - "tags": { - "amenity": "post_box", - "name": "Gordale" - } -}, -{ - "type": "node", - "id": 1100679834, - "lat": 54.1098486, - "lon": -1.4060509, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO51 100", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100699341, - "lat": 54.0963673, - "lon": -1.3964372, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO51 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100705253, - "lat": 53.9749516, - "lon": -1.3692296, - "tags": { - "amenity": "post_box", - "ref": "LS22 457", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1100793595, - "lat": 56.1214576, - "lon": -3.8099319, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1100823619, - "lat": 51.0584258, - "lon": -1.3068161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 71D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1100943905, - "lat": 52.1251743, - "lon": -2.1765980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "WR8 276", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1101601608, - "lat": 51.3549467, - "lon": 0.7383419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "note": "As at Tuesday 15th August 2023 there is a Royal Mail postbox sticker notice saying from Monday 18th September 2023 collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1101930818, - "lat": 51.3976289, - "lon": 0.4761745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME2 246", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102032082, - "lat": 52.8422710, - "lon": 1.5010775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:00", - "ref": "NR12 1230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1102075513, - "lat": 51.4470308, - "lon": -0.3750588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 113" - } -}, -{ - "type": "node", - "id": 1102080210, - "lat": 51.0971567, - "lon": 0.0345144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH18 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1102163580, - "lat": 51.4474173, - "lon": -0.3824611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW4 73" - } -}, -{ - "type": "node", - "id": 1102164595, - "lat": 51.4507133, - "lon": -0.3787868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "mapillary": "1439004326447155", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW4 37", - "survey:date": "2020-10-18" - } -}, -{ - "type": "node", - "id": 1102317507, - "lat": 53.0466232, - "lon": -0.7744839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NG24 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102359117, - "lat": 53.4151880, - "lon": -2.2982377, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1102386276, - "lat": 53.0555698, - "lon": -0.7718105, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-27", - "ref": "NG24 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102391535, - "lat": 52.6659372, - "lon": -0.5177665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE9 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102402775, - "lat": 52.6580864, - "lon": -0.5004877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE9 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102408839, - "lat": 52.6553164, - "lon": -0.4914631, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102408841, - "lat": 52.6531572, - "lon": -0.4851152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE9 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102414518, - "lat": 52.6343438, - "lon": -0.4095244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE9 56", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102490817, - "lat": 52.0076169, - "lon": -0.5288654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 1102497686, - "lat": 52.9351701, - "lon": -0.6667265, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1102851963, - "lat": 53.5167997, - "lon": -0.1014906, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/28yhYVcm/DN37-145-D.jpg", - "location": "High Street, outside No.43", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN37 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1103097838, - "lat": 50.8035653, - "lon": -3.1772138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX14 596D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1103097855, - "lat": 50.7999215, - "lon": -3.1879212, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1103133908, - "lat": 51.2400844, - "lon": -0.5758288, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU1 62", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1103177702, - "lat": 51.2831573, - "lon": -0.7699945, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-12", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "GU14 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1103268329, - "lat": 53.7891243, - "lon": -2.8790089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1103275884, - "lat": 51.4808233, - "lon": -0.1136157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW9 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1103416310, - "lat": 51.4444101, - "lon": -0.3856569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW13 423" - } -}, -{ - "type": "node", - "id": 1103436185, - "lat": 50.9510251, - "lon": 0.9068661, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TN29 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1103436277, - "lat": 50.9563925, - "lon": 0.9157734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1394306724668822", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN29 107", - "survey:date": "2023-04-30" - } -}, -{ - "type": "node", - "id": 1103553196, - "lat": 52.7161201, - "lon": -2.1070205, - "tags": { - "amenity": "post_box", - "ref": "ST19 1902" - } -}, -{ - "type": "node", - "id": 1103711752, - "lat": 57.3662331, - "lon": -2.0870192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB41 292", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1104162476, - "lat": 52.1270360, - "lon": -2.1390012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR8 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1104162542, - "lat": 52.0870013, - "lon": -2.1217652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR8 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1104162824, - "lat": 52.0918809, - "lon": -2.1184779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR8 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1104163207, - "lat": 52.1051601, - "lon": -2.1279186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR8 550D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1104163564, - "lat": 52.0873440, - "lon": -2.1162799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "WR8 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1104506066, - "lat": 53.3927731, - "lon": -2.2636793, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1104506188, - "lat": 53.2553460, - "lon": -1.4638365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S41 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506189, - "lat": 53.2602828, - "lon": -1.4525287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506191, - "lat": 53.2549439, - "lon": -1.4413023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506195, - "lat": 53.2519160, - "lon": -1.4236894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S41 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506201, - "lat": 53.2574753, - "lon": -1.4853715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506203, - "lat": 53.2528189, - "lon": -1.4519051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 290D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1104506208, - "lat": 53.1999671, - "lon": -1.3711516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506214, - "lat": 53.2625062, - "lon": -1.4444874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 286D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1104506224, - "lat": 53.2538195, - "lon": -1.4641018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506226, - "lat": 53.2587062, - "lon": -1.4735172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506229, - "lat": 53.2117882, - "lon": -1.3635084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "comment": "Plate shows S44 256.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S42 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506231, - "lat": 53.2512431, - "lon": -1.4464958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 121D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1104506235, - "lat": 53.2591712, - "lon": -1.4448714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "comment": "no plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104506244, - "lat": 53.2566820, - "lon": -1.4772135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S42 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104507500, - "lat": 53.2509589, - "lon": -1.4399923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S41 163D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1104507502, - "lat": 53.2463925, - "lon": -1.4363256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S41 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104632028, - "lat": 52.5266059, - "lon": -1.3655331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1104632096, - "lat": 52.5214510, - "lon": -1.3659050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 17" - } -}, -{ - "type": "node", - "id": 1104857939, - "lat": 52.1113282, - "lon": -2.3516517, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "historic_operator": "Royal Mail", - "note": "This box replaces the old WR14 57, which was some 50m up the hill on the right; the old one got nicked.", - "post_box:type": "lamp", - "ref": "WR14 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1104917689, - "lat": 52.9882884, - "lon": -1.2069716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 11:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG8 41P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1104917733, - "lat": 52.9866422, - "lon": -1.2164524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1104920640, - "lat": 53.4095386, - "lon": -2.2924526, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1105029961, - "lat": 52.9740202, - "lon": -1.2159285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 286", - "ref:GB:uprn": "10015288640", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1105489991, - "lat": 52.9499527, - "lon": -1.1926503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 230", - "ref:GB:uprn": "10015468375", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1105618947, - "lat": 51.6884504, - "lon": -0.6973315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP16 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 1106135455, - "lat": 51.6766438, - "lon": -0.7246565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP15 170" - } -}, -{ - "type": "node", - "id": 1106137673, - "lat": 51.7024655, - "lon": -0.7187411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP16 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 1106144173, - "lat": 51.7157168, - "lon": -0.6965599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 07:00", - "operator": "Royal Mail", - "ref": "HP16 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1106289499, - "lat": 52.7707210, - "lon": -2.1076947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST17 380", - "source": "drive-by survey (not the ref)" - } -}, -{ - "type": "node", - "id": 1106397146, - "lat": 52.3411601, - "lon": -0.1841068, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1106414005, - "lat": 52.8151320, - "lon": 1.3811207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR28 2809D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1106486800, - "lat": 52.9904926, - "lon": -1.2541564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1106706715, - "lat": 50.9955344, - "lon": -0.0826802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1106734094, - "lat": 52.7577532, - "lon": -2.0943509, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST17 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1106734116, - "lat": 52.7625780, - "lon": -2.0968538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST17 1704", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1106734311, - "lat": 52.7570547, - "lon": -2.0640580, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST17 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1106956155, - "lat": 52.9976580, - "lon": -1.2575497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1106972695, - "lat": 52.0844872, - "lon": -2.1708506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "post_box:type": "lamp", - "ref": "WR8 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1106973212, - "lat": 52.0769985, - "lon": -2.1782281, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR8 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1107378860, - "lat": 51.6533371, - "lon": -0.2797854, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-18", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "ref": "WD6 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1107379076, - "lat": 51.6546237, - "lon": -0.2783757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WD6 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1107379077, - "lat": 51.6550971, - "lon": -0.2774005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "drive_through": "no", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WD6 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1107444284, - "lat": 51.6417103, - "lon": -0.2902661, - "tags": { - "amenity": "post_box", - "ref": "WD6 162" - } -}, -{ - "type": "node", - "id": 1107444402, - "lat": 51.6432374, - "lon": -0.2992884, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-25", - "ref": "WD6 100" - } -}, -{ - "type": "node", - "id": 1107492196, - "lat": 53.7814972, - "lon": -2.8658895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PR4 432D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1107492209, - "lat": 53.7798944, - "lon": -2.8696956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1107500350, - "lat": 51.4048500, - "lon": -0.8465570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "RG41 211" - } -}, -{ - "type": "node", - "id": 1107525083, - "lat": 51.7460603, - "lon": -0.9645895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX9 709", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1107620095, - "lat": 50.4714176, - "lon": -3.5958579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ3 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1107705771, - "lat": 51.0869328, - "lon": 0.6157637, - "tags": { - "amenity": "post_box", - "source": "Bing; local_knowledge" - } -}, -{ - "type": "node", - "id": 1107741995, - "lat": 51.0280796, - "lon": -3.1502596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1107742306, - "lat": 51.0293509, - "lon": -3.1402267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "colour": "red", - "direction": "SW", - "drive_through": "no", - "name": "Burnshill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 555" - } -}, -{ - "type": "node", - "id": 1107994933, - "lat": 52.5867288, - "lon": -2.1762654, - "tags": { - "amenity": "post_box", - "name": "Spar Compton Post Office" - } -}, -{ - "type": "node", - "id": 1108010868, - "lat": 52.5600249, - "lon": -2.1544260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "look like they forgot to bury the base of this pillar box", - "post_box:type": "pillar", - "ref": "WV4 167", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1108121120, - "lat": 57.0363361, - "lon": -5.6811650, - "tags": { - "amenity": "post_box", - "collection_times": "15 minutes prior to departure of the ferry.", - "note": "Collection times are subject to variation aligned to ferry timetables. We do not colect from this letter box on Sundays or Bank Holidays.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH41 118", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1108164514, - "lat": 51.6713541, - "lon": -0.6311822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HP7 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1108345740, - "lat": 52.0536016, - "lon": -2.1444031, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR8 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Walking Survey; Bing" - } -}, -{ - "type": "node", - "id": 1108345900, - "lat": 52.0637271, - "lon": -2.1422905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR8 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1108861903, - "lat": 51.0585795, - "lon": -3.2116388, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "location": "outdoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 475", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1108876328, - "lat": 54.0766230, - "lon": -2.8590744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA4 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1108955032, - "lat": 50.7471805, - "lon": -1.5550774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 14" - } -}, -{ - "type": "node", - "id": 1108958596, - "lat": 57.0489314, - "lon": -2.8688613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Glen Tanar Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 397", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1109087056, - "lat": 51.7390755, - "lon": -0.8178948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 1109102494, - "lat": 51.7764999, - "lon": -0.8186913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP17 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 1109102590, - "lat": 51.8014214, - "lon": -0.8595258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HP17 181" - } -}, -{ - "type": "node", - "id": 1109102599, - "lat": 51.8043874, - "lon": -0.8648890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 1109129713, - "lat": 52.0571263, - "lon": -2.2991793, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WR13 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1109138916, - "lat": 52.8029591, - "lon": -2.0343114, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST18 196", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1109141910, - "lat": 52.1522545, - "lon": -0.6820854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK46 403", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1109141920, - "lat": 52.1523678, - "lon": -0.6803259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK46 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 1109283187, - "lat": 55.5627127, - "lon": -3.6185360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML12 45D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1109283194, - "lat": 55.5936849, - "lon": -3.5530199, - "tags": { - "amenity": "post_box", - "ref": "ML12 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1109299366, - "lat": 50.7485177, - "lon": -1.5587714, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "mapillary": "953973312114124", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 176", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1109454307, - "lat": 52.8016292, - "lon": -2.0062466, - "tags": { - "amenity": "post_box", - "ref": "ST18 320" - } -}, -{ - "type": "node", - "id": 1109588395, - "lat": 51.8862275, - "lon": -5.0343714, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1109603218, - "lat": 52.8026473, - "lon": -2.0009631, - "tags": { - "amenity": "post_box", - "ref": "ST18 1806" - } -}, -{ - "type": "node", - "id": 1109603300, - "lat": 52.8045796, - "lon": -2.0025304, - "tags": { - "amenity": "post_box", - "ref": "ST18 1803" - } -}, -{ - "type": "node", - "id": 1109985389, - "lat": 53.7106240, - "lon": -1.8955414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1109985392, - "lat": 53.7098535, - "lon": -1.9062563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1110235600, - "lat": 52.8282320, - "lon": -3.1419880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "note": "Small lamp box embedded into wall.", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY10 75", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1110357671, - "lat": 51.5312975, - "lon": -3.6381496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00, Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF32 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1110357672, - "lat": 51.5318110, - "lon": -3.6511358, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-19", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1110406798, - "lat": 52.0864738, - "lon": -2.3418490, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1110454807, - "lat": 52.7845601, - "lon": -1.9750043, - "tags": { - "amenity": "post_box", - "ref": "ST17 285" - } -}, -{ - "type": "node", - "id": 1110532026, - "lat": 52.9913605, - "lon": -1.1654048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "63.091797", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 53D", - "ref:GB:uprn": "10015444898", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1110532043, - "lat": 52.9936984, - "lon": -1.1579818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "62.370850", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 403D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1110661711, - "lat": 52.8412788, - "lon": -2.0365442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1405598603166731", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "ST18 192", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 1110708484, - "lat": 51.2086243, - "lon": -1.5199384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1110730454, - "lat": 51.0732341, - "lon": 1.0807058, - "tags": { - "amenity": "post_box", - "ref": "CT21 132" - } -}, -{ - "type": "node", - "id": 1110774176, - "lat": 52.0592365, - "lon": -2.3744291, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR13 68" - } -}, -{ - "type": "node", - "id": 1110793986, - "lat": 51.4381354, - "lon": 0.3673267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA11 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1110816925, - "lat": 52.0690109, - "lon": -2.3570090, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "post_box:type": "wall", - "ref": "WR13 72", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1110987528, - "lat": 50.8606032, - "lon": 0.5861234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 1111367494, - "lat": 52.0910018, - "lon": -2.3602410, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "historic_operator": "none", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "WR13 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1111400642, - "lat": 53.8347770, - "lon": -2.8204336, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1111412161, - "lat": 50.8404060, - "lon": 0.4620234, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Terminus Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "description": "Outside closed sub-post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 17", - "ref:GB:uprn": "10015290725", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Collington Mansions TN3917.jpg" - } -}, -{ - "type": "node", - "id": 1111434790, - "lat": 52.0180250, - "lon": -2.2908610, - "tags": { - "amenity": "post_box", - "collection_plate": "none", - "fixme": "Need to get PB, Court, road all GPS correct.", - "fixme2": "Need to visit to see if it's been nicked", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR13 108", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1111534229, - "lat": 52.1056069, - "lon": -2.3786963, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "fixme": "ref is conjectural; CP shows number of another box (WR13 76) !", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111537146, - "lat": 51.4312517, - "lon": -0.9707846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00, Sa 13:30", - "ref": "RG2 629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111556672, - "lat": 52.9238897, - "lon": 1.3032068, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NR27 2709D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111556675, - "lat": 52.9284578, - "lon": 1.3030817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2704", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 1111582605, - "lat": 51.9990660, - "lon": -2.3447300, - "tags": { - "amenity": "post_box", - "fixme": "Have to go there; ref is by conjecture. Need to get GPS pos of roads.", - "post_box:type": "lamp", - "ref": "WR13 129" - } -}, -{ - "type": "node", - "id": 1111712444, - "lat": 52.1246830, - "lon": -2.4062360, - "tags": { - "amenity": "post_box", - "fixme": "ref is by conjecture. Need to get better GPS position of road.", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR13 96" - } -}, -{ - "type": "node", - "id": 1111736102, - "lat": 53.0746547, - "lon": -0.8095403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG24 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111743130, - "lat": 53.0717618, - "lon": -0.8131162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG24 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111743359, - "lat": 50.4315772, - "lon": -4.0962984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111754448, - "lat": 53.0622696, - "lon": -0.8169413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1111891747, - "lat": 53.7986971, - "lon": -1.4416597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1111967743, - "lat": 52.0075128, - "lon": -2.3118624, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR13 118D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1112196126, - "lat": 52.9523806, - "lon": -1.8580904, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1112467240, - "lat": 52.0643094, - "lon": -2.1941601, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR8 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1112467431, - "lat": 52.0616955, - "lon": -2.1656804, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR8 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey;bing" - } -}, -{ - "type": "node", - "id": 1112467642, - "lat": 52.0643596, - "lon": -2.2017481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR8 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1112467693, - "lat": 52.0556375, - "lon": -2.1819312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR8 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1112467709, - "lat": 52.0627196, - "lon": -2.2139349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR8 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1112475537, - "lat": 51.4853715, - "lon": -3.2052351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF5 258", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1112877569, - "lat": 50.8651501, - "lon": -1.4266286, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SO45 707D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1112877571, - "lat": 50.8698080, - "lon": -1.4191333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO45 163" - } -}, -{ - "type": "node", - "id": 1112877572, - "lat": 50.8641202, - "lon": -1.4199165, - "tags": { - "amenity": "post_box", - "ref": "SO45 590D" - } -}, -{ - "type": "node", - "id": 1112920208, - "lat": 50.8577628, - "lon": -1.4186986, - "tags": { - "amenity": "post_box", - "ref": "SO45 669D" - } -}, -{ - "type": "node", - "id": 1112952714, - "lat": 55.4691018, - "lon": -4.6102110, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 99" - } -}, -{ - "type": "node", - "id": 1112987476, - "lat": 50.8534865, - "lon": -1.4147078, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "post_box:type": "pillar", - "ref": "SO45 216" - } -}, -{ - "type": "node", - "id": 1113004143, - "lat": 50.8609617, - "lon": -1.4256614, - "tags": { - "amenity": "post_box", - "ref": "SO45 594D" - } -}, -{ - "type": "node", - "id": 1113004146, - "lat": 50.8695158, - "lon": -1.4101368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "note": "Box displays old-style \"collection plate\" with reference HY492", - "post_box:type": "lamp", - "ref": "SO45 492" - } -}, -{ - "type": "node", - "id": 1113470851, - "lat": 52.5646896, - "lon": -1.8224339, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B72", - "ref": "B72 1349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1113471229, - "lat": 52.5646941, - "lon": -1.8224289, - "tags": { - "amenity": "post_box", - "note": "Box has no reference number", - "post_box:type": "pillar", - "ref": "B72 1348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1113471327, - "lat": 52.5646821, - "lon": -1.8224408, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "postal_code": "B72", - "ref": "B72 9019", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1113652177, - "lat": 50.8633795, - "lon": -1.4326438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "note": "Located near exit. Position within store may vary: was moved between visits!", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SO45 788", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1113785890, - "lat": 51.4938045, - "lon": -3.2193407, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-15", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 261", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1114020092, - "lat": 52.0508724, - "lon": -2.2280443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "wall", - "ref": "WR8 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1114020192, - "lat": 52.0420999, - "lon": -2.2187005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR8 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1114020201, - "lat": 52.0307070, - "lon": -2.2083542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR8 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1114020225, - "lat": 52.0326244, - "lon": -2.2284980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR8 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1114020295, - "lat": 52.0467006, - "lon": -2.2579115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR8 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1114020342, - "lat": 52.0633381, - "lon": -2.2756864, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "historic_operator": "Royal Mail", - "manufacturer": "Machan Scotland", - "note": "Plate on box shows WR8 9; previous label showed WR8 315.", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR8 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source:ref": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1114106628, - "lat": 52.0831694, - "lon": -2.2601990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR8 186", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1114106724, - "lat": 52.0823690, - "lon": -2.2874514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR8 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1114106816, - "lat": 52.0946656, - "lon": -2.2748780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR8 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1114671435, - "lat": 53.4301700, - "lon": -1.2772680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 204D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1114671437, - "lat": 53.4247932, - "lon": -1.2795792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1114776404, - "lat": 52.3027187, - "lon": -3.5052009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LD6 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1115390323, - "lat": 51.5070038, - "lon": -0.1433225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa off", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W1 123", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1115390368, - "lat": 51.5081173, - "lon": -0.1434512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1J 73D;W1J 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1115714478, - "lat": 52.0176335, - "lon": -2.3191479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Suppose I'd better go back and check it hasn't been nicked since last survey", - "fixme2": "Not convinced of geometry of surrounding roads. Also need to get better GPS fix on this PB.", - "mapillary": "817820642166394", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR13 110", - "survey:date": "2020-10-15" - } -}, -{ - "type": "node", - "id": 1115848532, - "lat": 55.4820590, - "lon": -4.6191336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "KA8 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1115848853, - "lat": 55.4846663, - "lon": -4.6176598, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA9 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1116093278, - "lat": 53.4210620, - "lon": -1.3315560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116224896, - "lat": 51.5203794, - "lon": -0.1493499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 26;W1G 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1116224987, - "lat": 51.5137445, - "lon": -0.1894964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 30D;W2 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116225092, - "lat": 51.5162091, - "lon": -0.2027069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "W11 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikidata": "Q26355637" - } -}, -{ - "type": "node", - "id": 1116225113, - "lat": 51.5199344, - "lon": -0.1515869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-11-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 100D;W1G 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1116225158, - "lat": 51.5138631, - "lon": -0.1850087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 44D;W2 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1116251798, - "lat": 54.0460431, - "lon": -1.6182018, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1116296918, - "lat": 51.5139759, - "lon": -0.1746611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London and Falkirk", - "post_box:type": "pillar", - "ref": "W2 49D;W2 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116296940, - "lat": 51.5132884, - "lon": -0.1761835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 66;W2 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1116296942, - "lat": 51.5238242, - "lon": -0.2062096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 20", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1116378485, - "lat": 57.1339164, - "lon": -2.1156622, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 64D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1116395057, - "lat": 51.2089710, - "lon": -1.5064571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1116395058, - "lat": 51.2066937, - "lon": -1.4872732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1116395068, - "lat": 51.2072497, - "lon": -1.4939687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1116567595, - "lat": 57.1333038, - "lon": -2.1471639, - "tags": { - "addr:postcode": "AB15 7YJ", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1116577621, - "lat": 52.2542823, - "lon": 0.7158816, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP32 2292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116584085, - "lat": 52.2448666, - "lon": 0.7132032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "IP33 2005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116659947, - "lat": 53.8258382, - "lon": -3.0386876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1116659952, - "lat": 53.8260439, - "lon": -3.0324334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "note": "Cannot verify collection times - plate is missing. Other local postboxes have very different collection times so it's likely this one does too.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1116747446, - "lat": 55.4630382, - "lon": -4.6302943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KA7 9" - } -}, -{ - "type": "node", - "id": 1116784730, - "lat": 52.0688859, - "lon": -2.3645939, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116795574, - "lat": 52.9844565, - "lon": -2.3730294, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1116874154, - "lat": 52.0073318, - "lon": -2.3025024, - "tags": { - "amenity": "post_box", - "fixme": "Looks disused. Have to go back and check really in use.", - "fixme2": "ref number is conjectural", - "post_box:type": "wall", - "ref": "WR13 119" - } -}, -{ - "type": "node", - "id": 1116896655, - "lat": 52.3272562, - "lon": -2.5672830, - "tags": { - "amenity": "post_box", - "description": "in Barn Wall", - "fixme": "Very approx position", - "post_box:type": "wall", - "ref": "WR15 73", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1116937454, - "lat": 52.1812428, - "lon": 0.9176618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP14 8069", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1116970857, - "lat": 51.9020879, - "lon": 0.1985988, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1117233234, - "lat": 50.7406557, - "lon": -3.4695506, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX4 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1117233553, - "lat": 50.7397562, - "lon": -3.4785162, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX4 417D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1117297884, - "lat": 51.3588604, - "lon": 0.6010923, - "tags": { - "amenity": "post_box", - "ref": "ME8 370" - } -}, -{ - "type": "node", - "id": 1117582821, - "lat": 51.5133118, - "lon": -0.2822645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1117582981, - "lat": 51.5137381, - "lon": -0.2778721, - "tags": { - "amenity": "post_box", - "note": "plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1117676517, - "lat": 51.5009517, - "lon": -0.2338241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1117676561, - "lat": 51.5094066, - "lon": -0.2391320, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W12 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1117702946, - "lat": 52.1334139, - "lon": -0.5168546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 1117710885, - "lat": 51.3720343, - "lon": -1.0030050, - "tags": { - "amenity": "post_box", - "mapillary": "380977753184429", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-11-02" - } -}, -{ - "type": "node", - "id": 1117957386, - "lat": 57.5951824, - "lon": -4.4383228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV15 6D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1118417935, - "lat": 56.0422411, - "lon": -3.4175793, - "tags": { - "amenity": "post_box", - "ref": "KY11 24" - } -}, -{ - "type": "node", - "id": 1118474822, - "lat": 51.0010542, - "lon": -0.0890763, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH16 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1118474842, - "lat": 51.0031809, - "lon": -0.0917576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1118480501, - "lat": 51.0058803, - "lon": -0.1047922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1118551428, - "lat": 52.0673733, - "lon": 1.1322734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "IP1 1082", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1118713741, - "lat": 51.3212394, - "lon": -2.2094058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "name": "Wicker Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1118713766, - "lat": 51.3207499, - "lon": -2.2072922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "name": "Fore Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1118743933, - "lat": 52.1512920, - "lon": -2.3900712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "WR6 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1119456366, - "lat": 52.7627028, - "lon": -3.4539860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY10 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1119515894, - "lat": 51.9044200, - "lon": 0.0960285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "name": "Clapgate", - "post_box:design": "converted_bag_box", - "post_box:type": "lamp", - "ref": "SG11 65", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1119776054, - "lat": 52.8699172, - "lon": -0.9952010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG12 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1119798283, - "lat": 58.4738911, - "lon": -6.2144085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HS2 143" - } -}, -{ - "type": "node", - "id": 1119831413, - "lat": 52.8730992, - "lon": -0.9885139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG12 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1120007905, - "lat": 53.5915999, - "lon": -2.7701573, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1120008006, - "lat": 53.5874673, - "lon": -2.7689032, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1120049844, - "lat": 51.6268018, - "lon": -0.8370441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 1120079419, - "lat": 53.4208728, - "lon": -1.3496441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "S60 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1120210859, - "lat": 51.4710964, - "lon": -3.2613487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1120396181, - "lat": 51.4780272, - "lon": -3.2709527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CF5 443", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1120467414, - "lat": 51.2383760, - "lon": -0.2106511, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1121246014, - "lat": 51.3326845, - "lon": -0.2703808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1121911644, - "lat": 52.6343197, - "lon": -1.1355920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1122076675, - "lat": 53.6874383, - "lon": -1.4952104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF1 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1122366493, - "lat": 52.1015770, - "lon": -1.4273486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "205653121400190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX15 1072", - "survey:date": "2021-04-07" - } -}, -{ - "type": "node", - "id": 1122393073, - "lat": 55.6735531, - "lon": -3.7739339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML11 4" - } -}, -{ - "type": "node", - "id": 1122500921, - "lat": 51.5158003, - "lon": -0.4739194, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1122532949, - "lat": 52.0826368, - "lon": -1.4591567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX15 1067", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1122563471, - "lat": 51.3435790, - "lon": -2.9573438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1122884032, - "lat": 53.2376042, - "lon": -1.4300029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-02", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "ele": "99.86", - "manufacturer:wikidata": "Q120765006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "S40 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box S40 42D" - } -}, -{ - "type": "node", - "id": 1123026056, - "lat": 50.9900529, - "lon": -3.4853342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX16 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1123372196, - "lat": 52.5537860, - "lon": -1.1459457, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1123389530, - "lat": 52.0931025, - "lon": -0.2508947, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1123562448, - "lat": 52.7724111, - "lon": -2.7811612, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-18", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY4 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1123562449, - "lat": 52.7736365, - "lon": -2.7813730, - "tags": { - "amenity": "post_box", - "ref": "SY4 610" - } -}, -{ - "type": "node", - "id": 1123562451, - "lat": 52.7703806, - "lon": -2.7797885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1123712022, - "lat": 51.1332850, - "lon": -2.9444635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1123866474, - "lat": 56.0001206, - "lon": -4.5652107, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1123937335, - "lat": 51.2402063, - "lon": -0.1662825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "name": "Redhill Railway Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P141-0694;survey" - } -}, -{ - "type": "node", - "id": 1123949777, - "lat": 51.3802942, - "lon": -0.4071110, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1124618118, - "lat": 51.3763568, - "lon": 0.6363664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME8 438D" - } -}, -{ - "type": "node", - "id": 1124644010, - "lat": 50.8536131, - "lon": 0.4956089, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Pebsham Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 38", - "ref:GB:uprn": "10015456344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Pebsham Lane TN4038.jpg" - } -}, -{ - "type": "node", - "id": 1124818619, - "lat": 51.2235156, - "lon": -1.4999665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1125039214, - "lat": 53.3342192, - "lon": -1.8881049, - "tags": { - "amenity": "post_box", - "ele": "304.8614502" - } -}, -{ - "type": "node", - "id": 1125542544, - "lat": 52.1493515, - "lon": -0.5315184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 288" - } -}, -{ - "type": "node", - "id": 1125627220, - "lat": 55.4378109, - "lon": -4.6457266, - "tags": { - "amenity": "post_box", - "ref": "KA7 30" - } -}, -{ - "type": "node", - "id": 1126034438, - "lat": 51.4158845, - "lon": -0.8798479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "colour": "red", - "mapillary": "3070957839792421", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG41 98", - "survey:date": "2021-07-05" - } -}, -{ - "type": "node", - "id": 1126197370, - "lat": 53.3931552, - "lon": -3.0270962, - "tags": { - "amenity": "post_box", - "description": "QEII type K post box CH41 32 on Conway Street, Birkenhead.", - "name": "Conway Street/Watson Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH41 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Conway Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 1126197371, - "lat": 53.3898682, - "lon": -3.0259000, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH41 83 formerly outside the Garrick Snug, now next to TK Maxx in the Grange Road Shopping Precinct, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at the Garrick Snug, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 1126220832, - "lat": 53.3903174, - "lon": -3.0194191, - "tags": { - "amenity": "post_box", - "description": "Double (Type C) QE II post box in Grange Road East outside the former Argyle Street Post Office, CH41 42 and CH41 421.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CH41", - "ref": "CH41 42;CH41 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Type C post box CH41 42 & 421 at Post Office House.jpg" - } -}, -{ - "type": "node", - "id": 1126331659, - "lat": 51.2379112, - "lon": -0.2039850, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 142", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1126402506, - "lat": 53.7053365, - "lon": -1.8731932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1126402515, - "lat": 53.7087896, - "lon": -1.8734802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1126445119, - "lat": 52.0227025, - "lon": 1.1907451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1126512978, - "lat": 53.3913172, - "lon": -2.1613516, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1126512979, - "lat": 53.3929615, - "lon": -2.1662010, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1126802938, - "lat": 53.3775424, - "lon": -1.9326256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "ele": "211.6143799", - "post_box:type": "lamp", - "ref": "SK22 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1126943196, - "lat": 52.4121145, - "lon": -2.1074706, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DY9 1180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1127094697, - "lat": 53.3825495, - "lon": -1.9526165, - "tags": { - "amenity": "post_box", - "ele": "175.0845947" - } -}, -{ - "type": "node", - "id": 1127216842, - "lat": 51.4979779, - "lon": -0.2225500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "W6 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1127800681, - "lat": 55.1817597, - "lon": -1.5527433, - "tags": { - "amenity": "post_box", - "postal_code": "NE63 9LL", - "ref": "NE63 770" - } -}, -{ - "type": "node", - "id": 1127812692, - "lat": 57.0870323, - "lon": -2.7130492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB34 294", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1127849200, - "lat": 52.3239465, - "lon": -2.2297781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY11 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1127920143, - "lat": 57.0780760, - "lon": -2.7722095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB34 258", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1127921232, - "lat": 52.3347627, - "lon": -2.2192532, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 08:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "DY10 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1127939340, - "lat": 51.4014847, - "lon": -0.9206458, - "tags": { - "amenity": "post_box", - "mapillary": "454414286438294", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-03-27" - } -}, -{ - "type": "node", - "id": 1127977464, - "lat": 52.3344428, - "lon": -2.2276396, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "DY11 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1128156012, - "lat": 51.3425127, - "lon": -2.2480438, - "tags": { - "amenity": "post_box", - "mapillary": "117606550888441", - "post_box:mounting": "building", - "post_box:type": "wall", - "source": "OS OpenData StreetView", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 1128156501, - "lat": 50.9941930, - "lon": -1.0296986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "last_checked": "2020-02-07", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU32 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1128156629, - "lat": 50.9383684, - "lon": -1.3800678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 304", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1128156872, - "lat": 50.8604709, - "lon": -1.0294169, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2020-03-31", - "note": "I passed this postbox on 31.03.2020 and checked the details and they are all the same.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO7 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "OS OpenData StreetView" - } -}, -{ - "type": "node", - "id": 1128312155, - "lat": 57.0733415, - "lon": -2.7913696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 372", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1128550518, - "lat": 52.7884119, - "lon": -2.0636282, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 388", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1128550530, - "lat": 52.7870957, - "lon": -2.0682595, - "tags": { - "amenity": "post_box", - "ref": "ST17 186" - } -}, -{ - "type": "node", - "id": 1128550815, - "lat": 52.7828585, - "lon": -2.0669840, - "tags": { - "amenity": "post_box", - "ref": "ST17 396" - } -}, -{ - "type": "node", - "id": 1128586681, - "lat": 52.7697097, - "lon": -2.0579315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ST17 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1128658322, - "lat": 51.4879557, - "lon": -0.2263914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1128859095, - "lat": 57.0712319, - "lon": -2.7976919, - "tags": { - "addr:city": "Aboyne", - "addr:country": "GB", - "addr:postcode": "AB34 5HW", - "addr:street": "Mortlich Gardens", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB34 560", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1128908234, - "lat": 53.3975905, - "lon": -1.9851845, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 1129216510, - "lat": 50.8698000, - "lon": -1.2564001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "last_checked": "2021-04-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO15 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1129226615, - "lat": 50.8760362, - "lon": -1.2681047, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1129622637, - "lat": 50.8830621, - "lon": -1.2703691, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1129631546, - "lat": 50.8609620, - "lon": -1.2597638, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "last_checked": "2021-03-09", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO14 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1129639263, - "lat": 50.8546187, - "lon": -1.2558828, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-08", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "PO14 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1129691757, - "lat": 58.4800212, - "lon": -6.2276244, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1130206606, - "lat": 50.8440846, - "lon": -0.1436862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 284", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1130492587, - "lat": 51.4557931, - "lon": -2.6108597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "wall", - "ref": "BS8 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1130492631, - "lat": 51.4544902, - "lon": -2.6132044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "BS8 397", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1130786914, - "lat": 53.2307742, - "lon": -0.5309945, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN2 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1130846082, - "lat": 53.4705901, - "lon": -2.6516627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 37", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1131370351, - "lat": 53.4438531, - "lon": -2.2316587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "377173150302546", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-08-12" - } -}, -{ - "type": "node", - "id": 1131477673, - "lat": 51.5982466, - "lon": -3.3363679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF37 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1131494611, - "lat": 51.3097996, - "lon": -2.9555411, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1131584709, - "lat": 55.9468361, - "lon": -3.1365546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 381D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1131594850, - "lat": 52.4518137, - "lon": -2.1577032, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1132130015, - "lat": 51.3726906, - "lon": 0.6291179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME8 54" - } -}, -{ - "type": "node", - "id": 1132295904, - "lat": 54.5276781, - "lon": -1.0793697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "pillar", - "ref": "TS14 396", - "source": "local_knowledge;dracos" - } -}, -{ - "type": "node", - "id": 1132295945, - "lat": 54.5248361, - "lon": -1.0583618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "TS14 315" - } -}, -{ - "type": "node", - "id": 1132334189, - "lat": 51.0813644, - "lon": 1.1230598, - "tags": { - "amenity": "post_box", - "ref": "CT21 16" - } -}, -{ - "type": "node", - "id": 1132447348, - "lat": 52.1712968, - "lon": -2.3063582, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-04", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR6 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1132721173, - "lat": 52.7629713, - "lon": 1.3785749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1132721235, - "lat": 55.9854167, - "lon": -3.7064343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "FK2 31" - } -}, -{ - "type": "node", - "id": 1132783437, - "lat": 51.4496070, - "lon": -2.4695908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1132945226, - "lat": 50.2831121, - "lon": -3.7773436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ7 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-03-02" - } -}, -{ - "type": "node", - "id": 1132955175, - "lat": 50.2774762, - "lon": -3.7722980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1133060856, - "lat": 55.6611405, - "lon": -3.7327522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML11 16" - } -}, -{ - "type": "node", - "id": 1133629912, - "lat": 52.4388351, - "lon": -0.2849051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE28 177" - } -}, -{ - "type": "node", - "id": 1133757166, - "lat": 52.5560458, - "lon": -1.2418964, - "tags": { - "amenity": "post_box", - "ref": "LE9 485" - } -}, -{ - "type": "node", - "id": 1133757244, - "lat": 52.5531401, - "lon": -1.2457465, - "tags": { - "amenity": "post_box", - "ref": "LE9 770" - } -}, -{ - "type": "node", - "id": 1133757249, - "lat": 52.5569661, - "lon": -1.2464381, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1133757410, - "lat": 52.5595496, - "lon": -1.2457572, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LE9 429", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1133841140, - "lat": 53.9182529, - "lon": -2.9659042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1133841177, - "lat": 53.9236908, - "lon": -2.9689677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "FY6 433D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1133841178, - "lat": 53.9175874, - "lon": -2.9579593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 23D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1133871840, - "lat": 51.7306651, - "lon": 0.6817324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM9 246", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1133872154, - "lat": 52.2102163, - "lon": -2.4048833, - "tags": { - "amenity": "post_box", - "fixme": "ref is by conjecture", - "post_box:type": "wall", - "ref": "WR6 82" - } -}, -{ - "type": "node", - "id": 1133952936, - "lat": 52.1567143, - "lon": -2.3895569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR6 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1133970213, - "lat": 52.2326360, - "lon": -2.3367277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR6 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1134001218, - "lat": 51.3638924, - "lon": 0.7392474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1134006276, - "lat": 52.8252610, - "lon": -2.1351468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST16 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1134008982, - "lat": 51.3739119, - "lon": 0.6672285, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME9 66", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME9 66D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-09" - } -}, -{ - "type": "node", - "id": 1134235734, - "lat": 50.8717430, - "lon": -1.2681591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "last_checked": "2021-03-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1134241033, - "lat": 50.8727909, - "lon": -1.2680761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1134285971, - "lat": 52.7850771, - "lon": -2.1083833, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1134286068, - "lat": 52.7891371, - "lon": -2.1093455, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST17 421", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1134487537, - "lat": 50.3624434, - "lon": -3.8232007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 742", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1134489194, - "lat": 51.2250219, - "lon": -1.3328516, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG28 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1134612470, - "lat": 51.6015664, - "lon": -1.8254165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 73" - } -}, -{ - "type": "node", - "id": 1134985051, - "lat": 51.2320117, - "lon": -1.3413098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG28 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1135339916, - "lat": 50.8514884, - "lon": 0.5016739, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Long Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 89", - "ref:GB:uprn": "10015317127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Long Avenue TN4089.jpg" - } -}, -{ - "type": "node", - "id": 1135573432, - "lat": 52.2636061, - "lon": -2.3953842, - "tags": { - "amenity": "post_box", - "fixme": "ref is conjectural", - "post_box:type": "wall", - "ref": "WR6 71" - } -}, -{ - "type": "node", - "id": 1135644028, - "lat": 52.2682001, - "lon": -2.3807271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "post_box:type": "lamp", - "ref": "WR6 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1135998273, - "lat": 54.9954037, - "lon": -1.5311721, - "tags": { - "amenity": "post_box", - "ref": "NE28 65", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 1137208016, - "lat": 51.8976631, - "lon": -2.0999578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137208612, - "lat": 51.5724745, - "lon": -3.2196486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "4658032077554713", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1137213663, - "lat": 53.9264056, - "lon": -3.0081946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137498370, - "lat": 53.8294591, - "lon": -3.0141379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 279D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1137498384, - "lat": 53.8315669, - "lon": -3.0084883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY3 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137505481, - "lat": 55.1644041, - "lon": -1.5792910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE62 5TU", - "ref": "NE62 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137506369, - "lat": 55.1623620, - "lon": -1.5881996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE62 5JX", - "ref": "NE62 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137562474, - "lat": 55.1632873, - "lon": -1.5738959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "NE62 5UY", - "ref": "NE62 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1137562525, - "lat": 55.1646860, - "lon": -1.5819437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "NE62 5BD", - "ref": "NE62 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137578591, - "lat": 53.2161897, - "lon": -3.7930530, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1137662107, - "lat": 51.2395561, - "lon": -0.1777999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "RH1 5", - "royal_cypher": "GVIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1137701059, - "lat": 52.1143248, - "lon": -1.9064044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "post_box:type": "lamp", - "ref": "WR11 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1137736797, - "lat": 51.2408491, - "lon": -0.1919282, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH2 132", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1137977189, - "lat": 51.1663829, - "lon": -0.1542148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH6 249" - } -}, -{ - "type": "node", - "id": 1137977401, - "lat": 51.1608400, - "lon": -0.1515170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH6 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1138042149, - "lat": 56.4602463, - "lon": -2.9703015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "two adjacent pillar boxes 8 and 18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1138052772, - "lat": 56.4574658, - "lon": -2.9755240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1138058783, - "lat": 56.4564574, - "lon": -2.9816855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 12D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1138065448, - "lat": 56.4542763, - "lon": -2.9849115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "DD1 77", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1138083114, - "lat": 50.5611718, - "lon": -3.5997553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "ref": "TQ12 121D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1138171580, - "lat": 50.5533355, - "lon": -3.6027616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 201D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1138171668, - "lat": 50.5503342, - "lon": -3.5973173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ12 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1138185290, - "lat": 50.5537270, - "lon": -3.5970797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1138803579, - "lat": 53.8198017, - "lon": -3.0483004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1138876520, - "lat": 52.3130226, - "lon": -2.2054074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR9 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1138915712, - "lat": 53.8203936, - "lon": -3.0530815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 167", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1138915748, - "lat": 52.2934957, - "lon": -2.2054117, - "tags": { - "amenity": "post_box", - "ref": "WR9 362", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1138915804, - "lat": 52.2617555, - "lon": -2.1672473, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR9 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1138937503, - "lat": 52.2468621, - "lon": -2.1966682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR9 374" - } -}, -{ - "type": "node", - "id": 1138984606, - "lat": 50.7279950, - "lon": -1.8630971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH8 400;BH8 5400", - "ref:GB:uprn": "10015364506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1139208337, - "lat": 52.3245720, - "lon": -0.6181684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 42", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1139236110, - "lat": 53.6912515, - "lon": -1.6289773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 20" - } -}, -{ - "type": "node", - "id": 1139264934, - "lat": 51.6230190, - "lon": -0.0657272, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1139311553, - "lat": 52.3223305, - "lon": -0.6204107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "name": "Wellingborough Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN9 54" - } -}, -{ - "type": "node", - "id": 1139407716, - "lat": 51.5028381, - "lon": -0.4409001, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1139429390, - "lat": 52.4363778, - "lon": 0.8806989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1629D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1139429524, - "lat": 52.4163805, - "lon": 0.8371925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:type": "wall", - "ref": "IP24 3340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1139456293, - "lat": 51.0932742, - "lon": -1.2646563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1139461368, - "lat": 50.8757179, - "lon": 0.0091440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 458" - } -}, -{ - "type": "node", - "id": 1139606809, - "lat": 53.4710755, - "lon": -2.6482947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA11 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1139770534, - "lat": 53.2962249, - "lon": -2.1359360, - "tags": { - "amenity": "post_box", - "ref": "SK10 88" - } -}, -{ - "type": "node", - "id": 1139913555, - "lat": 52.0509974, - "lon": -0.7790489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1140118192, - "lat": 52.0818659, - "lon": -2.1344869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR8 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1140728216, - "lat": 51.6299836, - "lon": -0.7465779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times:old": "Mo-Fr 17:45; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "old_ref": "HP13 23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-12-29" - } -}, -{ - "type": "node", - "id": 1140809972, - "lat": 51.7068686, - "lon": -2.8957959, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1141076420, - "lat": 50.8635557, - "lon": -1.2741371, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SO31 783", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1141077402, - "lat": 50.8635506, - "lon": -1.2741519, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SO31 721", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1141364645, - "lat": 52.6276107, - "lon": 0.8977194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP25 3346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142001907, - "lat": 53.1218338, - "lon": -4.1275382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1142049193, - "lat": 50.8329631, - "lon": -1.3910001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SO45 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142156078, - "lat": 51.5360158, - "lon": -0.2056101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1142177702, - "lat": 52.8439222, - "lon": -1.9972074, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST18 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1142208323, - "lat": 53.7941085, - "lon": -3.0351247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 185D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1142352336, - "lat": 51.4343093, - "lon": -0.1178563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW16 99" - } -}, -{ - "type": "node", - "id": 1142413364, - "lat": 51.1448473, - "lon": -2.9509717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142446551, - "lat": 50.9122468, - "lon": -1.0789188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142478762, - "lat": 55.9254039, - "lon": -4.5961039, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1142502286, - "lat": 50.8723785, - "lon": -1.2407297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "PO15 159" - } -}, -{ - "type": "node", - "id": 1142618041, - "lat": 52.7880149, - "lon": -2.0426543, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST17 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142618227, - "lat": 52.7729887, - "lon": -2.0479480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "collection plate missing 7/10/15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST17 196", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1142677830, - "lat": 50.8684320, - "lon": -1.2578380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 774D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142713091, - "lat": 50.8669150, - "lon": -1.2699930, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1142732343, - "lat": 50.8692890, - "lon": -1.2535039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "description": "This postbox is not easily visible in the eastbound direction because it is set back a few feet from the road.", - "last_checked": "2021-03-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1142756074, - "lat": 52.4200925, - "lon": -2.9270681, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1142851761, - "lat": 50.8679770, - "lon": -1.2510253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "description": "This postbox is a Parcel Postbox for Parcels & Franked mail.", - "last_checked": "2021-03-15", - "old_ref": "PO15 152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PO15 152P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1142982277, - "lat": 55.8057401, - "lon": -4.1025299, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1142986736, - "lat": 55.8006926, - "lon": -4.1048829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1076974199850066", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-06-09" - } -}, -{ - "type": "node", - "id": 1143013273, - "lat": 55.7854376, - "lon": -4.1026519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1143026029, - "lat": 55.8503994, - "lon": -4.1327285, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1143183844, - "lat": 50.8772726, - "lon": -1.2473151, - "tags": { - "amenity": "post_box", - "ref": "PO15 181" - } -}, -{ - "type": "node", - "id": 1143186113, - "lat": 50.8772796, - "lon": -1.2473199, - "tags": { - "amenity": "post_box", - "ref": "PO15 154" - } -}, -{ - "type": "node", - "id": 1143196475, - "lat": 50.8819585, - "lon": -1.2499460, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO15 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1143222350, - "lat": 50.8542588, - "lon": -1.2413892, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1143488510, - "lat": 50.9854018, - "lon": 0.9678963, - "tags": { - "amenity": "post_box", - "ref": "TN28 144" - } -}, -{ - "type": "node", - "id": 1143606094, - "lat": 51.2418609, - "lon": -0.1679550, - "tags": { - "amenity": "post_box", - "fixme": "check ref: nodes 479800313 and 1143606094 both have the same value", - "ref": "RH1 23", - "source": "Photo P140 0328" - } -}, -{ - "type": "node", - "id": 1143638747, - "lat": 51.0540063, - "lon": -0.2001624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH17 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1143924845, - "lat": 51.0869395, - "lon": -4.0620015, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX31 183", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1143936220, - "lat": 51.0889037, - "lon": -4.0653535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1143958327, - "lat": 52.8271251, - "lon": 1.3901981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2806", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1144055342, - "lat": 51.6316347, - "lon": -0.4995088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WD3 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1144067156, - "lat": 53.6827883, - "lon": -1.4869329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF1 3" - } -}, -{ - "type": "node", - "id": 1144088475, - "lat": 52.4863674, - "lon": -1.9016256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B3 1136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1145360607, - "lat": 56.1155811, - "lon": -3.9379915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "FK8 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1145393777, - "lat": 53.7683414, - "lon": -1.4173690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS26 759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1145491818, - "lat": 51.2258651, - "lon": -0.1945512, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH2 285", - "source": "GPX P140 0580 - 2011-02-10" - } -}, -{ - "type": "node", - "id": 1145491820, - "lat": 51.2310598, - "lon": -0.1903374, - "tags": { - "amenity": "post_box", - "ref": "RH2 72", - "source": "GPX P140 0566 - 2011-02-10" - } -}, -{ - "type": "node", - "id": 1145492647, - "lat": 53.3547692, - "lon": -1.4314078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "S12 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1145523169, - "lat": 52.0328499, - "lon": -2.3010963, - "tags": { - "amenity": "post_box", - "fixme": "ref is conjectural. Also check box hasn't been nicked.", - "post_box:type": "wall", - "ref": "WR13 70" - } -}, -{ - "type": "node", - "id": 1145542126, - "lat": 51.8300779, - "lon": -1.2988339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "Wall type but in a brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX5 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2013-01-03" - } -}, -{ - "type": "node", - "id": 1145567403, - "lat": 54.5298390, - "lon": -1.0987981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "TS14 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1145587059, - "lat": 54.9997409, - "lon": -1.5807170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "fixme": "Check ref with ground survey - 273 or 237?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 237D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Local Knowledge", - "survey:date": "2024-01-02" - } -}, -{ - "type": "node", - "id": 1146882490, - "lat": 52.0248264, - "lon": -2.3101764, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "WR13 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1147056018, - "lat": 52.1235448, - "lon": -2.3878653, - "tags": { - "amenity": "post_box", - "fixme": "ref is by conjecture.", - "post_box:type": "pillar", - "ref": "WR13 104", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1147183531, - "lat": 51.6441880, - "lon": 0.0619160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1147185578, - "lat": 51.6482640, - "lon": 0.0711940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1147280541, - "lat": 52.0425687, - "lon": -2.3249404, - "tags": { - "amenity": "post_box", - "historic_operator": "Royal Mail", - "note": "No collection plate", - "note2": "Looks like it's been nicked and then replaced. Why on Earth do RM replace a nicked box in THE SAME PLACE ?", - "post_box:type": "lamp", - "ref": "WR13 90" - } -}, -{ - "type": "node", - "id": 1147374224, - "lat": 56.1187350, - "lon": -3.9459045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 4D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1147909082, - "lat": 51.6363100, - "lon": -0.4991339, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WD3 223" - } -}, -{ - "type": "node", - "id": 1148153317, - "lat": 56.1124738, - "lon": -3.9560723, - "tags": { - "amenity": "post_box", - "postal_code": "FK7", - "ref": "FK7 12" - } -}, -{ - "type": "node", - "id": 1148154439, - "lat": 50.8555843, - "lon": -1.2680439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 757", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1148163299, - "lat": 50.8604320, - "lon": -1.2079631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1148173174, - "lat": 50.8494739, - "lon": -1.2342024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1148179649, - "lat": 50.8476263, - "lon": -1.2345310, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1148192375, - "lat": 50.8236130, - "lon": -1.1913943, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1148193918, - "lat": 57.6810791, - "lon": -4.0327653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV11 177D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1148193926, - "lat": 57.6811436, - "lon": -4.0352356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV11 176", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1148195191, - "lat": 50.8460259, - "lon": -1.2016270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1148213129, - "lat": 50.8523615, - "lon": -1.1931881, - "tags": { - "amenity": "post_box", - "ref": "PO14 4" - } -}, -{ - "type": "node", - "id": 1148256647, - "lat": 50.8542688, - "lon": -1.2016192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO15 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1148260219, - "lat": 50.8589643, - "lon": -1.2042435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 99D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1148830045, - "lat": 51.9309632, - "lon": 0.1010334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "name": "East End", - "ref": "SG9 52" - } -}, -{ - "type": "node", - "id": 1149033268, - "lat": 50.8325790, - "lon": -0.7843409, - "tags": { - "amenity": "post_box", - "ref": "PO19 224" - } -}, -{ - "type": "node", - "id": 1149155099, - "lat": 50.8764088, - "lon": -1.2885009, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO31 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149159324, - "lat": 50.8748030, - "lon": -1.2793270, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 677D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149248351, - "lat": 51.2453711, - "lon": -0.1895679, - "tags": { - "amenity": "post_box", - "ref": "RH2 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1149312082, - "lat": 53.9242366, - "lon": -0.8016302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "post_box:type": "meter", - "ref": "YO42 2006P" - } -}, -{ - "type": "node", - "id": 1149312098, - "lat": 53.9242163, - "lon": -0.8015497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "note": "aparently no Saturday collection", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO42 554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149389534, - "lat": 51.3376521, - "lon": 0.5476383, - "tags": { - "amenity": "post_box", - "ref": "ME5 435" - } -}, -{ - "type": "node", - "id": 1149390182, - "lat": 51.3395748, - "lon": 0.5632870, - "tags": { - "amenity": "post_box", - "ref": "ME7 398" - } -}, -{ - "type": "node", - "id": 1149417583, - "lat": 51.4888163, - "lon": -3.1315546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF24 251" - } -}, -{ - "type": "node", - "id": 1149616272, - "lat": 51.5646469, - "lon": -1.7765634, - "tags": { - "amenity": "post_box", - "name": "Broad Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 119" - } -}, -{ - "type": "node", - "id": 1149619246, - "lat": 51.5650461, - "lon": -1.7801845, - "tags": { - "amenity": "post_box", - "name": "Alfred Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1149687942, - "lat": 51.7653194, - "lon": -1.6052689, - "tags": { - "amenity": "post_box", - "ref": "OX18 860", - "source": "photograph;Bing" - } -}, -{ - "type": "node", - "id": 1149689131, - "lat": 51.7603438, - "lon": -1.5997779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX18 706" - } -}, -{ - "type": "node", - "id": 1149731300, - "lat": 50.8838380, - "lon": -1.2894076, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149743026, - "lat": 52.9994187, - "lon": -1.2411570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1149743554, - "lat": 53.0032762, - "lon": -1.2629656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 170", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1149743568, - "lat": 53.0014802, - "lon": -1.2509128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1149743585, - "lat": 53.0016101, - "lon": -1.2663158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 43", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1149760519, - "lat": 50.8361438, - "lon": -0.7752175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "ref": "PO19 3902", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149765602, - "lat": 50.8361396, - "lon": -0.7752190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "ref": "PO19 3901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149767541, - "lat": 50.8345784, - "lon": -0.7795356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-03-28", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "note": "one slot normal mail, one slot meter", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO19 1671;PO19 1672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1149802806, - "lat": 51.4595633, - "lon": -0.1818853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "SW18 16" - } -}, -{ - "type": "node", - "id": 1149823831, - "lat": 53.0000610, - "lon": -1.2705008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1149963416, - "lat": 51.7717768, - "lon": -1.5997785, - "tags": { - "amenity": "post_box", - "ref": "OX18 849", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1149991729, - "lat": 51.5686593, - "lon": -0.1367224, - "tags": { - "amenity": "post_box", - "ref": "N19 13D" - } -}, -{ - "type": "node", - "id": 1150092104, - "lat": 51.7707680, - "lon": -1.5904432, - "tags": { - "amenity": "post_box", - "ref": "OX18 955", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1150834952, - "lat": 51.9905755, - "lon": 0.0915814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "name": "Langley Lower Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1150851115, - "lat": 50.7964898, - "lon": -3.1861016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EX14 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151052047, - "lat": 53.7254279, - "lon": -1.4960104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 16", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 1151052135, - "lat": 53.8078559, - "lon": -1.5589361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS2 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151052186, - "lat": 53.7431271, - "lon": -1.5073426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF3 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151052214, - "lat": 53.7977932, - "lon": -1.5400942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS2 152;LS2 1152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151060900, - "lat": 57.6632062, - "lon": -4.3371260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV16 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1151067693, - "lat": 50.7975613, - "lon": -3.1783500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX14 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151105326, - "lat": 50.7342078, - "lon": -1.9317226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH12 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151111368, - "lat": 50.7932024, - "lon": -3.1874936, - "tags": { - "amenity": "post_box", - "ref": "EX14 597" - } -}, -{ - "type": "node", - "id": 1151250715, - "lat": 55.8808700, - "lon": -3.0712978, - "tags": { - "amenity": "post_box", - "ref": "EH22 155" - } -}, -{ - "type": "node", - "id": 1151320439, - "lat": 51.9331922, - "lon": -0.6571871, - "tags": { - "amenity": "post_box", - "ref": "LU7 11" - } -}, -{ - "type": "node", - "id": 1151320471, - "lat": 51.9431249, - "lon": -0.6555741, - "tags": { - "amenity": "post_box", - "ref": "LU7 58" - } -}, -{ - "type": "node", - "id": 1151341729, - "lat": 50.7927364, - "lon": -3.2168852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX14 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1151492846, - "lat": 50.8153403, - "lon": -3.1933562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "name": "Combe Raleigh", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX14 4TQ", - "ref": "EX14 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1152726587, - "lat": 51.0696192, - "lon": -1.6085462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SP5 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1153012641, - "lat": 50.8948308, - "lon": -1.3197726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1153021429, - "lat": 52.1528695, - "lon": -2.4238939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR6 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1153283086, - "lat": 51.9241892, - "lon": -0.6605948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU7 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1153283095, - "lat": 51.9298849, - "lon": -0.6617342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LU7 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1153463170, - "lat": 56.1160131, - "lon": -3.9354950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1153515507, - "lat": 57.4613791, - "lon": -4.2186516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 107", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1154161654, - "lat": 51.5712789, - "lon": -0.2194612, - "tags": { - "amenity": "post_box", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1154171433, - "lat": 51.4009257, - "lon": -3.2722186, - "tags": { - "amenity": "post_box", - "mapillary": "939928109952850", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 5", - "source": "survey", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 1154569836, - "lat": 53.8661469, - "lon": -2.9886133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1154569839, - "lat": 53.8727144, - "lon": -2.9934720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1154600350, - "lat": 52.8159189, - "lon": 1.3768091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR28 2811D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1154684156, - "lat": 51.0823973, - "lon": -1.3336527, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1154936976, - "lat": 52.8158356, - "lon": 1.3395756, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1155087635, - "lat": 50.8606925, - "lon": -1.2749937, - "tags": { - "amenity": "post_box", - "ref": "SO31 235" - } -}, -{ - "type": "node", - "id": 1155661992, - "lat": 50.8364214, - "lon": -0.1427278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1156125978, - "lat": 50.9852943, - "lon": 0.9326862, - "tags": { - "amenity": "post_box", - "ref": "TN28 67" - } -}, -{ - "type": "node", - "id": 1156670945, - "lat": 51.0815494, - "lon": -4.0596995, - "tags": { - "amenity": "post_box", - "location": "indoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX31 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1157069862, - "lat": 53.3652292, - "lon": -3.0659836, - "tags": { - "amenity": "post_box", - "description": "QEII business box CH43 405 outside Prenton Delivery Office, Birkenhead.", - "name": "Prenton Delivery Office (1)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH43 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Franked Mail Only post box outside Prenton Delivery Office, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 1157677865, - "lat": 52.8306880, - "lon": 1.3938655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2807D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1157717833, - "lat": 51.6411040, - "lon": -0.4913877, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WD3 256" - } -}, -{ - "type": "node", - "id": 1158077748, - "lat": 52.9695558, - "lon": -1.1735616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 105", - "ref:GB:uprn": "10015362395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1158104451, - "lat": 52.9630338, - "lon": -1.1681972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG7 69", - "ref:GB:uprn": "10015341707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1158300718, - "lat": 52.9554410, - "lon": -1.1598532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG1 111", - "ref:GB:uprn": "10015715457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1158675183, - "lat": 51.3836133, - "lon": -0.8578364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1158951462, - "lat": 53.8103427, - "lon": -3.0395862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 181", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1158951464, - "lat": 53.8065898, - "lon": -3.0407106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1158951477, - "lat": 53.8088373, - "lon": -3.0456372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1159565165, - "lat": 51.9153234, - "lon": -0.6644152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LU7 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1159928978, - "lat": 50.9176079, - "lon": -1.3756393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;local_knowledge" - } -}, -{ - "type": "node", - "id": 1160245345, - "lat": 52.2183537, - "lon": -1.8575138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "821840908754280", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "B49 153", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 1160352769, - "lat": 52.2191376, - "lon": -1.8634322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B49 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1160947816, - "lat": 53.8291389, - "lon": -3.0303491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1161026097, - "lat": 51.4696754, - "lon": -0.2437834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1161147846, - "lat": 53.2550426, - "lon": -1.4006149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "106.1103516", - "post_box:type": "lamp", - "ref": "S43 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1161413642, - "lat": 53.3304732, - "lon": -0.8225549, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1161495756, - "lat": 52.0349301, - "lon": -0.7062532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 513", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1161655248, - "lat": 52.2156456, - "lon": -1.8743485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1161782860, - "lat": 51.4657051, - "lon": -1.0198836, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-14", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "ref": "RG30 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1161999930, - "lat": 51.3415854, - "lon": -0.4952572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1162093217, - "lat": 53.6438738, - "lon": -2.0965044, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1162109812, - "lat": 53.8321631, - "lon": -1.6444958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "LS18 355D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1162138395, - "lat": 51.0491591, - "lon": 0.5009362, - "tags": { - "amenity": "post_box", - "ref": "TN18 270" - } -}, -{ - "type": "node", - "id": 1162168388, - "lat": 52.0415623, - "lon": -1.8532989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "note": "Hard to spot. In its own brick bunker, facing away from road.", - "post_box:type": "wall", - "ref": "WR12 176", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1162301391, - "lat": 51.0498333, - "lon": 0.4728692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN18 275" - } -}, -{ - "type": "node", - "id": 1163038034, - "lat": 53.8460746, - "lon": -3.0358043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 236", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1163130610, - "lat": 53.8616889, - "lon": -3.0388867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-19", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1163130663, - "lat": 53.8592129, - "lon": -3.0366739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-01-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1163794027, - "lat": 50.8625610, - "lon": -1.2912151, - "tags": { - "amenity": "post_box", - "ref": "SO31 184" - } -}, -{ - "type": "node", - "id": 1163918941, - "lat": 51.7954389, - "lon": 0.6992056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM8 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1163944025, - "lat": 51.7833778, - "lon": 0.6885365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM8 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1163958254, - "lat": 54.1523099, - "lon": -2.4610276, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA6 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1163970363, - "lat": 51.7750110, - "lon": 0.5906887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1163988596, - "lat": 51.7626721, - "lon": 0.5431112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1163988644, - "lat": 51.7717202, - "lon": 0.5737776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1164105367, - "lat": 51.7401116, - "lon": 0.4896724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM2 359", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1164105412, - "lat": 51.7429494, - "lon": 0.4955373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1164321345, - "lat": 51.4061132, - "lon": -3.2646163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1164510673, - "lat": 52.7516455, - "lon": -0.6476748, - "tags": { - "amenity": "post_box", - "ele": "118.6074219", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1164896451, - "lat": 51.4957810, - "lon": -0.0599394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE16 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1165646731, - "lat": 52.8238785, - "lon": 1.3965944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2837D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1166378358, - "lat": 51.5217686, - "lon": -0.5621350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL3 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1166974179, - "lat": 55.0080957, - "lon": -3.0826266, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG16 106", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1167275405, - "lat": 51.3936950, - "lon": -3.2862878, - "tags": { - "amenity": "post_box", - "mapillary": "1980730818775433", - "post_box:type": "pillar", - "ref": "CF62 11", - "source": "survey", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 1167275529, - "lat": 51.4037235, - "lon": -3.2769083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 16D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1167281184, - "lat": 51.4052479, - "lon": -3.2695359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF63 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1168304956, - "lat": 51.5877523, - "lon": -3.6341657, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1168576626, - "lat": 54.0048091, - "lon": -2.2177501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "BD23 132D" - } -}, -{ - "type": "node", - "id": 1168636222, - "lat": 52.8908933, - "lon": -2.2017521, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST15 251", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1168755938, - "lat": 52.8911927, - "lon": -2.1992180, - "tags": { - "amenity": "post_box", - "ref": "ST15 403" - } -}, -{ - "type": "node", - "id": 1168885365, - "lat": 52.7168898, - "lon": -0.8295777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE14 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1168994165, - "lat": 51.4889243, - "lon": -3.2038801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 208", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1169172173, - "lat": 53.7232404, - "lon": -1.8127199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1169638923, - "lat": 53.7638168, - "lon": -2.7091979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-01-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1169658038, - "lat": 50.9110236, - "lon": -1.4024989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing;local_knowledge" - } -}, -{ - "type": "node", - "id": 1169840895, - "lat": 53.7654551, - "lon": -2.6559008, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1170218538, - "lat": 52.0506113, - "lon": 1.1448409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP2 1047", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1170218902, - "lat": 52.0504158, - "lon": 1.1414965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP2 1114", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1170776061, - "lat": 51.6334747, - "lon": -0.4939444, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WD3 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1170931899, - "lat": 52.8145293, - "lon": 1.3944363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2841", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1170960049, - "lat": 52.8734369, - "lon": -2.2462885, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST21 401", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1171288577, - "lat": 51.6457610, - "lon": 0.0812697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1171893039, - "lat": 52.4439545, - "lon": -1.8348424, - "tags": { - "amenity": "post_box", - "note": "EviiR pillar replaced by new Romec type during 2020 following damage to door", - "post_box:type": "pillar", - "ref": "B27 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1172086644, - "lat": 53.8561330, - "lon": -2.8641747, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1172123033, - "lat": 50.9714286, - "lon": 0.9577384, - "tags": { - "amenity": "post_box", - "ref": "TN28 307" - } -}, -{ - "type": "node", - "id": 1172308206, - "lat": 50.4568352, - "lon": -3.5146660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1172355919, - "lat": 50.4603981, - "lon": -3.4922455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 181D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1172358187, - "lat": 51.7325313, - "lon": 0.6701909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM9 254" - } -}, -{ - "type": "node", - "id": 1172381374, - "lat": 51.7340715, - "lon": 0.6786451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM9 1182", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1172404966, - "lat": 51.7199817, - "lon": 0.6640344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1172474807, - "lat": 50.5140192, - "lon": -3.5398653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1172619826, - "lat": 51.7313538, - "lon": 0.6748364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM9 248;CM9 2248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1172623619, - "lat": 51.7286397, - "lon": 0.6701767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM9 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1172625594, - "lat": 51.7265254, - "lon": 0.6663416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM9 249" - } -}, -{ - "type": "node", - "id": 1172631004, - "lat": 51.7258087, - "lon": 0.6828836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM9 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1172655719, - "lat": 51.7224174, - "lon": 0.6778934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "CM9 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1172818650, - "lat": 51.4888264, - "lon": -3.1839567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF10 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1172819210, - "lat": 51.4916414, - "lon": -3.1869676, - "tags": { - "amenity": "post_box", - "mapillary": "1025270704877059", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 30", - "source": "survey", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 1172962423, - "lat": 52.4474207, - "lon": -2.1467722, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1173053681, - "lat": 50.7358270, - "lon": -3.5225318, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1173200661, - "lat": 55.7665990, - "lon": -5.3471883, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA29 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1174408293, - "lat": 53.7828607, - "lon": -1.0636597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO8 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1174497471, - "lat": 50.8482582, - "lon": -1.2462310, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1174514019, - "lat": 50.8502480, - "lon": -1.2205550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1174534458, - "lat": 50.8497601, - "lon": -1.1932930, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO14 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1174880464, - "lat": 50.8470742, - "lon": -1.1177664, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 270D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1174889189, - "lat": 50.8470662, - "lon": -1.1039416, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO6 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1174926615, - "lat": 51.5798097, - "lon": -0.4049597, - "tags": { - "amenity": "post_box", - "ref": "HA4 493" - } -}, -{ - "type": "node", - "id": 1175032147, - "lat": 50.8489140, - "lon": -1.2553160, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO14 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1175211735, - "lat": 50.9697018, - "lon": -1.3553350, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1175960752, - "lat": 53.1444309, - "lon": -1.3096994, - "tags": { - "amenity": "post_box", - "ele": "186", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG17 336", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1176057092, - "lat": 51.5837158, - "lon": -0.4002416, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1176913460, - "lat": 51.0626414, - "lon": -1.3118009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "fixme": "Can somebody please confirm the reference code.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1176927997, - "lat": 52.2013829, - "lon": 1.0220940, - "tags": { - "amenity": "post_box", - "ref": "IP14 8020" - } -}, -{ - "type": "node", - "id": 1177322010, - "lat": 51.5611353, - "lon": -0.0833118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N16 42" - } -}, -{ - "type": "node", - "id": 1177354910, - "lat": 52.3799312, - "lon": 0.7471708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP24 3202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1177355390, - "lat": 52.3795289, - "lon": 0.7342038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP24 3325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1177355512, - "lat": 52.3788806, - "lon": 0.7556882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP24 3389D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1177398045, - "lat": 52.3794847, - "lon": 0.7862977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP24 3280", - "ref:GB:uprn": "10015309560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1177415438, - "lat": 51.2439436, - "lon": -0.1990505, - "tags": { - "amenity": "post_box", - "ref": "RH2 114", - "source": "P140-0930", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1177579548, - "lat": 53.8035397, - "lon": -3.0341569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1177579873, - "lat": 53.8019678, - "lon": -3.0311154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 243", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1177757619, - "lat": 51.5179431, - "lon": 0.0230445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177757621, - "lat": 51.5173944, - "lon": 0.0119199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E16 1D;E16 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177757623, - "lat": 51.5159931, - "lon": 0.0088003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "mapillary": "827979978941109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E16 37;E16 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177757630, - "lat": 51.5109567, - "lon": 0.0255783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177784977, - "lat": 51.5090319, - "lon": 0.0604753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 27D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177784980, - "lat": 51.5033644, - "lon": 0.0497320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "airport_pillar", - "post_box:type": "pillar", - "ref": "E16 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177784987, - "lat": 51.5043765, - "lon": 0.0200155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "3070448636579599", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E16 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177784992, - "lat": 51.5129611, - "lon": 0.0606980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E6 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177785007, - "lat": 51.5024361, - "lon": 0.0330564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177790908, - "lat": 51.5129118, - "lon": 0.0679733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1177961297, - "lat": 51.4751054, - "lon": 0.0133870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE3 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1178010889, - "lat": 51.4768005, - "lon": 0.0192214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1178025865, - "lat": 51.2175693, - "lon": -0.1714400, - "tags": { - "amenity": "post_box", - "ref": "RH1 37", - "source": "photo P140-0906", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 1178067693, - "lat": 55.7560486, - "lon": -5.3949228, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA29 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1178080254, - "lat": 52.4128009, - "lon": 0.8425892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:40; Sa 07:25", - "post_box:type": "lamp", - "ref": "IP24 3226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1178553642, - "lat": 51.1865265, - "lon": -0.6188094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "note": "This postbox is on the station on the southbound platform.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU7 1EU", - "ref": "GU7 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1178983088, - "lat": 52.0362899, - "lon": -2.3113168, - "tags": { - "amenity": "post_box", - "description": "This appears to be The Old Post Office in Castlemorton", - "fixme2": "ref is by conjecture;the postcode on the FOI list is wrong;it points to the wrong PO.", - "post_box:type": "wall", - "ref": "WR13 84" - } -}, -{ - "type": "node", - "id": 1179001777, - "lat": 56.1038406, - "lon": -3.9493970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK7 95D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1179098422, - "lat": 55.9905527, - "lon": -3.7075689, - "tags": { - "amenity": "post_box", - "ref": "FK2 104" - } -}, -{ - "type": "node", - "id": 1179514500, - "lat": 50.4615288, - "lon": -3.5300717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1179585912, - "lat": 57.1459379, - "lon": -2.1443058, - "tags": { - "addr:postcode": "AB15 6BR", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd", - "post_box:type": "pillar", - "ref": "AB15 113D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1179585920, - "lat": 57.1497358, - "lon": -2.1177588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 70", - "royal_cypher": "scottish_crown", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1179758138, - "lat": 57.4703993, - "lon": -4.1891810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 14:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 133", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1179758180, - "lat": 57.4741510, - "lon": -4.1935934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "description": "just inside Raigmore Hospital main entrance", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1179758398, - "lat": 57.4704925, - "lon": -4.1949219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1179771776, - "lat": 57.1525920, - "lon": -2.1269482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 79D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1179789269, - "lat": 56.0831022, - "lon": -5.5528008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PA31 21" - } -}, -{ - "type": "node", - "id": 1179821089, - "lat": 51.2257461, - "lon": -2.3255401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1179821091, - "lat": 51.2252421, - "lon": -2.3366366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1179821094, - "lat": 51.2251615, - "lon": -2.3318248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1179833829, - "lat": 51.2340735, - "lon": -2.3333960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1179960021, - "lat": 51.4857803, - "lon": -3.1702156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 16D", - "source": "survey", - "survey:date": "2020-12-15" - } -}, -{ - "type": "node", - "id": 1180404270, - "lat": 50.8061122, - "lon": -1.9733845, - "tags": { - "amenity": "post_box", - "ref": "BH21 32" - } -}, -{ - "type": "node", - "id": 1180413550, - "lat": 50.8099843, - "lon": -1.9630675, - "tags": { - "amenity": "post_box", - "location": "Inside Co-Op", - "name": "Colehill Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH21 68", - "ref:GB:uprn": "10015329852" - } -}, -{ - "type": "node", - "id": 1180591339, - "lat": 53.7860562, - "lon": -1.5730021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 494", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1180945936, - "lat": 50.8291982, - "lon": -0.2060730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1180945941, - "lat": 50.8322304, - "lon": -0.2013021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 333", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1180952710, - "lat": 50.8288554, - "lon": -0.2010681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "BN3 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1181353182, - "lat": 51.0491819, - "lon": -1.1243185, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "last_checked": "2021-01-02", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1181653934, - "lat": 55.7919526, - "lon": -4.8701093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KA30 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1181791844, - "lat": 53.6012054, - "lon": -0.8721426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1182599235, - "lat": 53.2900235, - "lon": -3.8526818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1182746690, - "lat": 53.7962113, - "lon": -3.0502083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1183143688, - "lat": 57.1505878, - "lon": -2.1124316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "fixme": "This may no longer be in use as there are no collection times displayed. Still the same on 20210716", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 1183254977, - "lat": 53.8016320, - "lon": -3.0463207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1183254995, - "lat": 53.7999420, - "lon": -3.0432900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1183494970, - "lat": 51.4844910, - "lon": -3.2084093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF5 257", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1184334853, - "lat": 50.8276234, - "lon": -1.0522629, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO3 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1184477491, - "lat": 53.8220786, - "lon": -3.0469626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 26D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1184477607, - "lat": 52.7788855, - "lon": 1.5432558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1184487954, - "lat": 52.8208495, - "lon": 1.3793815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2816D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1184494957, - "lat": 52.8211846, - "lon": 1.3875811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR28 2833", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1184515369, - "lat": 52.5595263, - "lon": -1.8300411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "B73", - "ref": "B73 227", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1185088555, - "lat": 55.6579964, - "lon": -4.8092753, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1185099270, - "lat": 55.6539245, - "lon": -4.8109482, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA21 135D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1185334491, - "lat": 55.8628738, - "lon": -4.2451628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G4 177", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1185338171, - "lat": 51.4162340, - "lon": -0.7337110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1185339342, - "lat": 51.4149430, - "lon": -0.7364270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG12 205", - "source": "survey;Esri World Imagery (Clarity) Beta;Mapillary Images" - } -}, -{ - "type": "node", - "id": 1185626797, - "lat": 53.8029956, - "lon": -2.9986038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1185780694, - "lat": 51.0281299, - "lon": 0.9981931, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1186080168, - "lat": 51.7160752, - "lon": 0.6907276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1186403707, - "lat": 51.0494428, - "lon": -1.1404860, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "last_checked": "2021-01-02", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1187252231, - "lat": 51.4792212, - "lon": 0.0367201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "plates bolted on side", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1187277012, - "lat": 51.5420835, - "lon": -0.1386979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture is blocked, LH collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 33D" - } -}, -{ - "type": "node", - "id": 1187652909, - "lat": 55.9117294, - "lon": -4.1436005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1187863222, - "lat": 53.3139338, - "lon": -1.5412751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S17 534D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1188215792, - "lat": 52.7209378, - "lon": -2.2846270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF11 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1188215839, - "lat": 52.7087338, - "lon": -2.2841771, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF11 192" - } -}, -{ - "type": "node", - "id": 1188934284, - "lat": 53.7968856, - "lon": -3.0370266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 226D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1189181074, - "lat": 51.9268539, - "lon": -0.6493970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LU7 16" - } -}, -{ - "type": "node", - "id": 1189181076, - "lat": 51.9197888, - "lon": -0.6387723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "LU7 82" - } -}, -{ - "type": "node", - "id": 1189181081, - "lat": 51.9222351, - "lon": -0.6575551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU7 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1189316578, - "lat": 52.8793187, - "lon": 1.3515065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "name": "High Street Post Office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1189395102, - "lat": 50.7912421, - "lon": -3.9406064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 113D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1189479901, - "lat": 50.7550543, - "lon": -3.8782189, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1189541050, - "lat": 50.8666851, - "lon": -3.9003026, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1189541094, - "lat": 50.8144273, - "lon": -3.9353816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1189645905, - "lat": 52.3049632, - "lon": 0.6633993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP28 2037", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1189834072, - "lat": 52.7356487, - "lon": 1.3617253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1189859053, - "lat": 55.2123482, - "lon": -1.5371596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "NE61 5SZ", - "ref": "NE61 46" - } -}, -{ - "type": "node", - "id": 1189917858, - "lat": 51.7550006, - "lon": -1.5985444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX18 892" - } -}, -{ - "type": "node", - "id": 1189919859, - "lat": 51.7517005, - "lon": -1.6029675, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX18 413" - } -}, -{ - "type": "node", - "id": 1189920559, - "lat": 51.7607364, - "lon": -1.5885513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1189920770, - "lat": 51.7577470, - "lon": -1.5928255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX18 941" - } -}, -{ - "type": "node", - "id": 1189953256, - "lat": 52.7283827, - "lon": 1.3701173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "31/03/2023", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR12 1240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1190079538, - "lat": 56.0365400, - "lon": -3.4263826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 107D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1190214830, - "lat": 52.9092043, - "lon": -1.1898542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG11 406", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1190298320, - "lat": 53.0512686, - "lon": -1.4614956, - "tags": { - "amenity": "post_box", - "ele": "96.0167236", - "post_box:type": "lamp", - "ref": "DE56 425" - } -}, -{ - "type": "node", - "id": 1190632052, - "lat": 52.6783709, - "lon": -0.3046251, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1190761866, - "lat": 56.0390811, - "lon": -3.4201773, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY11 86" - } -}, -{ - "type": "node", - "id": 1191067319, - "lat": 52.3043143, - "lon": 0.7169686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "IP31 2287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1191222294, - "lat": 52.8997791, - "lon": -1.1914624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Plate mssing (April 14;April 15)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 221", - "ref:GB:uprn": "10015373447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1191285341, - "lat": 52.0472885, - "lon": -2.4097190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR8 323", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1191414064, - "lat": 50.8319054, - "lon": -0.1389040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1191480996, - "lat": 50.9619850, - "lon": -1.1378275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO32 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1191764030, - "lat": 51.4790451, - "lon": -3.1960912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1191781024, - "lat": 50.9348876, - "lon": -2.9582685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1191790894, - "lat": 50.4651330, - "lon": -3.5273010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ1 18;TQ1 1800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1192382272, - "lat": 51.9839733, - "lon": -0.0275919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "name": "Buckland (former Post Office)", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG9 88" - } -}, -{ - "type": "node", - "id": 1192384577, - "lat": 51.1404531, - "lon": 1.0355297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN25 162" - } -}, -{ - "type": "node", - "id": 1192411491, - "lat": 52.3227042, - "lon": 0.6034567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP28 2154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1192639226, - "lat": 50.8437729, - "lon": -0.1553468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 115", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1192687320, - "lat": 51.1927350, - "lon": -0.1970570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH2 136", - "source": "Photo P141-0894 on 2011-03-07" - } -}, -{ - "type": "node", - "id": 1192695068, - "lat": 51.1613259, - "lon": -0.1774637, - "tags": { - "amenity": "post_box", - "fixme": "Check ref -- box number partly illegible", - "level": "1", - "note": "Close to lift P8 1st Floor", - "ref": "RH6 266", - "source": "Photo P141-0883 on 2011-03-07" - } -}, -{ - "type": "node", - "id": 1192931102, - "lat": 52.7679554, - "lon": 1.4546987, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1193250111, - "lat": 50.9873949, - "lon": -1.0155451, - "tags": { - "amenity": "post_box", - "ref": "GU32 134" - } -}, -{ - "type": "node", - "id": 1193261955, - "lat": 52.5059594, - "lon": -1.4356925, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1193541415, - "lat": 51.3807502, - "lon": 0.5463471, - "tags": { - "amenity": "post_box", - "ref": "ME7 19", - "source": "photo" - } -}, -{ - "type": "node", - "id": 1193561522, - "lat": 52.9176108, - "lon": -2.2216904, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "ST15 247" - } -}, -{ - "type": "node", - "id": 1194241474, - "lat": 51.6174681, - "lon": 0.6129053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SS5 243" - } -}, -{ - "type": "node", - "id": 1194241952, - "lat": 51.6228461, - "lon": 0.6130958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SS5 313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1194242372, - "lat": 51.6281800, - "lon": 0.6141357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SS5 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1194256900, - "lat": 50.8940620, - "lon": -1.3583458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 190", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1194533532, - "lat": 52.7778898, - "lon": 1.3590826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR10 1050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1194790666, - "lat": 53.2585612, - "lon": -1.4058033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "95", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1195237181, - "lat": 52.9691286, - "lon": -2.1682656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1195823100, - "lat": 50.9058661, - "lon": -1.3737216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "local_knowledge;Bing" - } -}, -{ - "type": "node", - "id": 1195983892, - "lat": 52.2547719, - "lon": 0.0190313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "note": "in-store box, only available when store open", - "ref": "CB23 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1196853581, - "lat": 51.1268012, - "lon": 0.8292021, - "tags": { - "amenity": "post_box", - "source": "photo" - } -}, -{ - "type": "node", - "id": 1196935494, - "lat": 51.2423776, - "lon": -0.1743447, - "tags": { - "amenity": "post_box", - "ref": "RH1 27", - "source": "Photo P141-0746" - } -}, -{ - "type": "node", - "id": 1196935505, - "lat": 51.2337644, - "lon": -0.1984689, - "tags": { - "amenity": "post_box", - "ref": "RH2 129", - "source": "Photo P141-0759" - } -}, -{ - "type": "node", - "id": 1196935516, - "lat": 51.2348225, - "lon": -0.1945922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RH2 138", - "source": "Photo P141-0754" - } -}, -{ - "type": "node", - "id": 1196935532, - "lat": 51.2486447, - "lon": -0.1727953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 293", - "source": "Photo P141-0720" - } -}, -{ - "type": "node", - "id": 1196969465, - "lat": 52.7476633, - "lon": 1.3368814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR12 1234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1196979444, - "lat": 51.2469596, - "lon": -0.1763532, - "tags": { - "amenity": "post_box", - "ref": "RH1 303", - "source": "Photo P142-0174" - } -}, -{ - "type": "node", - "id": 1196985071, - "lat": 51.2390800, - "lon": -0.1279750, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1196985077, - "lat": 51.2407891, - "lon": -0.1004270, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH1 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "Photo P143-0471" - } -}, -{ - "type": "node", - "id": 1196985085, - "lat": 51.2405233, - "lon": -0.1058080, - "tags": { - "amenity": "post_box", - "ref": "RH1 263", - "source:ref": "Photo P143-0498" - } -}, -{ - "type": "node", - "id": 1197035095, - "lat": 51.6924990, - "lon": -0.4082940, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1197080472, - "lat": 50.7314472, - "lon": -1.8701287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 86", - "ref:GB:uprn": "10015294586", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1197192811, - "lat": 52.7619423, - "lon": 1.3422847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1197297428, - "lat": 52.1659083, - "lon": -1.3935269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1197298740, - "lat": 52.1434621, - "lon": -1.3680437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX17 1049", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1197571549, - "lat": 50.8933798, - "lon": -0.9659211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO9 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1197571551, - "lat": 50.9092410, - "lon": -0.9519436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO8 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1197571553, - "lat": 50.8933041, - "lon": -0.9546681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO9 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1197599207, - "lat": 51.7673474, - "lon": -1.5918030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1197599213, - "lat": 51.7674458, - "lon": -1.5981725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1197651890, - "lat": 50.8949231, - "lon": -1.1610036, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO17 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1197651924, - "lat": 50.9005779, - "lon": -1.1564029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO17 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1197651933, - "lat": 50.9062557, - "lon": -1.1015741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not shown", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "listed_status": "Grade II", - "manufacturer": "Cochrane & Co", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "national_standard", - "post_box:type": "pillar", - "ref": "PO7 97", - "royal_cypher": "no", - "start_date": "1859", - "wikidata": "Q26451322" - } -}, -{ - "type": "node", - "id": 1197652518, - "lat": 51.2644677, - "lon": -0.0636528, - "tags": { - "amenity": "post_box", - "ref": "RH9 279", - "source": "Photo P142-0062" - } -}, -{ - "type": "node", - "id": 1198298753, - "lat": 52.8218837, - "lon": 1.3847244, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR28 2834D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198420366, - "lat": 50.8525519, - "lon": -1.1867926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198462293, - "lat": 51.0848298, - "lon": -3.9367951, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1198471017, - "lat": 50.8540071, - "lon": -1.1769531, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "note": "hanging and coming out from the wall", - "ref": "PO16 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198530867, - "lat": 51.5481150, - "lon": -3.5654885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF32 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198538853, - "lat": 50.8563792, - "lon": -1.1791885, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PO16 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1198571201, - "lat": 50.8529781, - "lon": -1.1918440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO16 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1198581019, - "lat": 50.8527077, - "lon": -1.1881552, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "PO16 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198652315, - "lat": 51.1341230, - "lon": 0.8479509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN23 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198732501, - "lat": 51.2481429, - "lon": -0.2668127, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH3 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-0035" - } -}, -{ - "type": "node", - "id": 1198732504, - "lat": 51.3021250, - "lon": -0.3298997, - "tags": { - "amenity": "post_box", - "ref": "KT22 13", - "source": "Photo P142-0024" - } -}, -{ - "type": "node", - "id": 1198752101, - "lat": 51.1718116, - "lon": -3.9376956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "963384841522411", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX31 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-13" - } -}, -{ - "type": "node", - "id": 1198752105, - "lat": 51.1666994, - "lon": -3.9595112, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX31 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198752109, - "lat": 51.1865079, - "lon": -3.9237543, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1198757865, - "lat": 51.1596263, - "lon": -3.9795825, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1198770346, - "lat": 51.1157339, - "lon": -4.0140566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1987228478284495", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-05-13" - } -}, -{ - "type": "node", - "id": 1198827579, - "lat": 50.9815258, - "lon": -4.3277151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "EX39 104D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1198847507, - "lat": 50.8811976, - "lon": -1.2576348, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "last_checked": "2021-03-16", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO15 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1198856075, - "lat": 50.9912075, - "lon": -4.4722221, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1198867284, - "lat": 50.8842991, - "lon": -1.2590846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PO15 147D" - } -}, -{ - "type": "node", - "id": 1198871421, - "lat": 50.8824464, - "lon": -1.2605266, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PO15 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1198967675, - "lat": 50.8858897, - "lon": -1.2622765, - "tags": { - "amenity": "post_box", - "ref": "PO15 148" - } -}, -{ - "type": "node", - "id": 1198972529, - "lat": 51.2962201, - "lon": -0.3336308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT22 600", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1199437429, - "lat": 51.2475526, - "lon": -0.1865965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "RH2 198", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH2 198D", - "royal_cypher": "EIIR", - "source": "Photo P141-0966", - "source_1": "survey", - "survey:date": "2024-02-03", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 1199468664, - "lat": 51.2532948, - "lon": -0.2798399, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT20 116", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Photo P141-0920", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1199468677, - "lat": 51.2508347, - "lon": -0.2865419, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KT20 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 1199468702, - "lat": 51.2634545, - "lon": -0.2641520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 1199478253, - "lat": 55.9086168, - "lon": -4.1502579, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1199498283, - "lat": 51.2453121, - "lon": -0.2592701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "703225244498901", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH3 344", - "source": "Photo P141-0962", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 1199498284, - "lat": 51.2713042, - "lon": -0.3202183, - "tags": { - "amenity": "post_box", - "ref": "RH5 46", - "source": "Photo P141-0951" - } -}, -{ - "type": "node", - "id": 1199498285, - "lat": 51.2874343, - "lon": -0.3425154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1200346553, - "lat": 51.0449084, - "lon": -1.3252513, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 63D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1200450139, - "lat": 52.1639444, - "lon": -2.3080140, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 08:15", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR6 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1200459536, - "lat": 52.1715285, - "lon": -2.2933401, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "historic_operator": "Post Office", - "mapillary": "1098831944183190", - "operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR6 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-05" - } -}, -{ - "type": "node", - "id": 1200543009, - "lat": 53.3111935, - "lon": -3.5195512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 17:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1200606171, - "lat": 50.9247059, - "lon": -1.3811082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 255D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "local_knowledge;Bing" - } -}, -{ - "type": "node", - "id": 1200606172, - "lat": 50.8951634, - "lon": -1.3761798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 217D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing;local_knowledge" - } -}, -{ - "type": "node", - "id": 1200650829, - "lat": 52.2020773, - "lon": -4.2997641, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1201011449, - "lat": 51.2376195, - "lon": -0.1730040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RH1 4", - "source": "Photo P122-0355 confirms Dracos number" - } -}, -{ - "type": "node", - "id": 1201011463, - "lat": 51.1659030, - "lon": -0.1829104, - "tags": { - "amenity": "post_box", - "mapillary": "3916358778453943", - "note": "This postbox is in the RH6 district so I have amended the number.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-208", - "survey:date": "2020-03-07" - } -}, -{ - "type": "node", - "id": 1201348249, - "lat": 51.4573142, - "lon": -0.9111628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG5 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1201350492, - "lat": 56.0386147, - "lon": -3.4099507, - "tags": { - "amenity": "post_box", - "ref": "KY11 28" - } -}, -{ - "type": "node", - "id": 1201566525, - "lat": 56.3957475, - "lon": -3.4482584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1201571114, - "lat": 56.3918370, - "lon": -3.4381744, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 5D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1201599032, - "lat": 52.9823392, - "lon": -1.4018580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE7 1345", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1201628681, - "lat": 50.9841359, - "lon": -0.6111709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU28 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1201645123, - "lat": 51.6036740, - "lon": 0.6680259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SS5 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1201761556, - "lat": 52.9051982, - "lon": -1.1375481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "NG11 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1202127098, - "lat": 55.8347278, - "lon": -3.9831471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:00", - "ref": "ML1 5", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1202427860, - "lat": 52.8189173, - "lon": -0.5469445, - "tags": { - "amenity": "post_box", - "ele": "63.0917969", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1202476989, - "lat": 52.8130424, - "lon": -0.5166874, - "tags": { - "amenity": "post_box", - "source": "View from W" - } -}, -{ - "type": "node", - "id": 1202485461, - "lat": 52.8113029, - "lon": -0.5171058, - "tags": { - "amenity": "post_box", - "ele": "65.2547607" - } -}, -{ - "type": "node", - "id": 1203038750, - "lat": 50.8383608, - "lon": -0.1472192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1203506606, - "lat": 50.8613437, - "lon": -1.1816137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1203699987, - "lat": 51.4369291, - "lon": -2.5154767, - "tags": { - "amenity": "post_box", - "fixme": "needs ref", - "mapillary": "2833264250320087", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 1203713770, - "lat": 51.2241071, - "lon": -0.1870058, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to see if plaque fixed", - "note": "Box number missing on box 2011-03-15 - Plaque broken", - "operator": "Royal Mail", - "ref": "RH1 67", - "source": "Photo P142-0380" - } -}, -{ - "type": "node", - "id": 1203718553, - "lat": 50.8788396, - "lon": -4.4804127, - "tags": { - "amenity": "post_box", - "mapillary": "377857875055308", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 10" - } -}, -{ - "type": "node", - "id": 1203740530, - "lat": 50.8283154, - "lon": -4.5203275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX23 57D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1203753840, - "lat": 51.6481793, - "lon": -0.2249986, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1203774539, - "lat": 51.2257014, - "lon": -0.3647213, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1203824177, - "lat": 52.2649536, - "lon": -1.7193707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203824180, - "lat": 52.2674861, - "lon": -1.7229629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV37 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203824183, - "lat": 52.1942935, - "lon": -1.7090701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203824187, - "lat": 52.1930511, - "lon": -1.7068039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "collection_times_checked": "2017-08-09", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV37 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1203824188, - "lat": 52.1930483, - "lon": -1.7068447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "collection_times_checked": "2017-08-09", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV37 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1203824190, - "lat": 52.2432034, - "lon": -1.7350050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203824196, - "lat": 52.2208666, - "lon": -1.7624519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV37 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203824198, - "lat": 52.2285760, - "lon": -1.7064646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 87", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203824200, - "lat": 52.2153781, - "lon": -1.7257360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CV37 10" - } -}, -{ - "type": "node", - "id": 1203835290, - "lat": 52.2191627, - "lon": -1.5025745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 17", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1203835295, - "lat": 52.2167906, - "lon": -1.6609227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203835303, - "lat": 52.2134147, - "lon": -1.6855490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CV37 94" - } -}, -{ - "type": "node", - "id": 1203835306, - "lat": 52.2586245, - "lon": -1.6970118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203835310, - "lat": 52.1578470, - "lon": -1.6946600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV37 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203835313, - "lat": 52.1861057, - "lon": -1.6995591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1203835320, - "lat": 52.1731019, - "lon": -1.7129281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1203835323, - "lat": 52.2392651, - "lon": -1.6804927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1204144753, - "lat": 51.2374238, - "lon": -0.2056415, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-0368;drive-by survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1204172201, - "lat": 51.2303948, - "lon": -0.1667346, - "tags": { - "amenity": "post_box", - "ref": "RH1 290", - "source": "Photo P142-0341" - } -}, -{ - "type": "node", - "id": 1204172203, - "lat": 51.2294478, - "lon": -0.1619862, - "tags": { - "amenity": "post_box", - "ref": "RH1 112", - "source": "Photo P142-0339" - } -}, -{ - "type": "node", - "id": 1204172236, - "lat": 51.2237012, - "lon": -0.1659238, - "tags": { - "amenity": "post_box", - "ref": "RH1 364", - "source": "Photo P142-0328" - } -}, -{ - "type": "node", - "id": 1204172258, - "lat": 51.2375653, - "lon": -0.1760938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RH1 25", - "source": "Photo P142-0359" - } -}, -{ - "type": "node", - "id": 1204172287, - "lat": 51.2373428, - "lon": -0.1927157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH2 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P143-0443;survey" - } -}, -{ - "type": "node", - "id": 1204242814, - "lat": 51.3072832, - "lon": -0.3318745, - "tags": { - "amenity": "post_box", - "ref": "KT22 93", - "source": "Picture P142-0285" - } -}, -{ - "type": "node", - "id": 1204253299, - "lat": 51.2956997, - "lon": -0.3261792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1204402329, - "lat": 52.8384989, - "lon": 1.3936730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1204419334, - "lat": 53.3787241, - "lon": -1.4702227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "S1 521", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1204583021, - "lat": 52.0095658, - "lon": -0.0245316, - "tags": { - "amenity": "post_box", - "ref": "SG8 369" - } -}, -{ - "type": "node", - "id": 1204874601, - "lat": 51.5496268, - "lon": -0.2361313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1204886532, - "lat": 55.9217502, - "lon": -4.1501440, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1204906379, - "lat": 56.0147626, - "lon": -3.7043190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "FK3 186D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1204994821, - "lat": 52.0096448, - "lon": 0.0261407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "letters_only": "yes", - "name": "Cokenach", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SG8 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1205517844, - "lat": 53.8884007, - "lon": -2.9559766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "FY6 157D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1205544755, - "lat": 50.8355215, - "lon": -0.1417877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 21D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1205544756, - "lat": 50.8318930, - "lon": -0.1388931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 374P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1205550693, - "lat": 53.9267115, - "lon": -2.9106863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1205550705, - "lat": 53.9282288, - "lon": -2.8958133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1205566077, - "lat": 51.7668373, - "lon": -1.4817300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX29 294D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1205567178, - "lat": 51.7716492, - "lon": -1.4901678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1205591670, - "lat": 52.1935444, - "lon": -2.3144140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR6 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1205602416, - "lat": 52.2156707, - "lon": -2.1803442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 15:00", - "historic_operator": "Royal Mail", - "note": "Yes, this box really does have a Saturday collection of 1500: it's right outside the Mail Center", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WR4 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1205610094, - "lat": 52.9810669, - "lon": -1.1463900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1205659601, - "lat": 53.4821360, - "lon": -1.6023335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S36 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1205779341, - "lat": 54.1591836, - "lon": -3.1215424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:00", - "post_box:type": "lamp", - "ref": "LA12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1206080267, - "lat": 52.3859907, - "lon": 1.6713343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1206488119, - "lat": 57.1388673, - "lon": -2.1004145, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 6SS", - "addr:street": "Millburn Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 46", - "royal_cypher": "no", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 1206579451, - "lat": 57.1405403, - "lon": -2.1039801, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 6JZ", - "addr:street": "Springbank Terrace", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1206635527, - "lat": 51.4893350, - "lon": 0.1138345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1207087499, - "lat": 53.8563750, - "lon": -2.8816103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR3 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207088468, - "lat": 51.4896903, - "lon": 0.1210398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE2 1;SE2 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1207112539, - "lat": 51.4910702, - "lon": 0.1418081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DA17 420D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1207214673, - "lat": 53.8811658, - "lon": -2.7820930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1207250559, - "lat": 52.3045909, - "lon": -2.4190649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR6 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207346824, - "lat": 52.2375288, - "lon": -2.3627537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR6 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207385149, - "lat": 52.2767065, - "lon": 0.8686613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207475108, - "lat": 53.8442769, - "lon": -0.5024155, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1207720936, - "lat": 50.8063203, - "lon": -1.0561823, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 251", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1207720947, - "lat": 50.7980988, - "lon": -1.0563182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO4 228", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1207736751, - "lat": 50.8084858, - "lon": -1.0586509, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1207736753, - "lat": 50.8083592, - "lon": -1.0553164, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1207878368, - "lat": 50.8097306, - "lon": -1.0651159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 87", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1207878373, - "lat": 50.8150056, - "lon": -1.0644964, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207878375, - "lat": 50.8083017, - "lon": -1.0753915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207878389, - "lat": 50.8119033, - "lon": -1.0743534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207878391, - "lat": 50.8138498, - "lon": -1.0716176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207878394, - "lat": 50.8089418, - "lon": -1.0773540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "I have upgraded the tag.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1207960168, - "lat": 51.4635061, - "lon": -3.1733836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 173D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1207960418, - "lat": 51.4620314, - "lon": -3.1694575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF10 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1208569316, - "lat": 53.8818994, - "lon": -2.7667495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1208720643, - "lat": 50.8491762, - "lon": -1.2414032, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1208764204, - "lat": 50.8524117, - "lon": -1.1983468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO14 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1208798705, - "lat": 50.8572041, - "lon": -1.2072620, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO15 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1208904304, - "lat": 50.9192549, - "lon": -1.3952532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1208946895, - "lat": 50.8430200, - "lon": -1.1911360, - "tags": { - "amenity": "post_box", - "ref": "PO14 146" - } -}, -{ - "type": "node", - "id": 1208957464, - "lat": 50.8440164, - "lon": -1.1960292, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-08", - "old_ref": "PO14 90", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO14 90D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1209295668, - "lat": 50.7859311, - "lon": -1.0863343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO5 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1209510673, - "lat": 50.9051138, - "lon": -0.4050726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH20 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1209510762, - "lat": 50.9036031, - "lon": -0.4074583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 80" - } -}, -{ - "type": "node", - "id": 1209543374, - "lat": 51.4661670, - "lon": 0.0202890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1209651711, - "lat": 50.6970797, - "lon": -3.8449203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1209652010, - "lat": 50.6918164, - "lon": -3.8249396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1209718366, - "lat": 50.6126046, - "lon": -3.6943648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1209832558, - "lat": 50.2930328, - "lon": -3.6605650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TQ7 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1209832583, - "lat": 50.2924234, - "lon": -3.6551263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 76D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1210353552, - "lat": 50.8643323, - "lon": -1.1915366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO16 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1210379468, - "lat": 55.1812361, - "lon": -1.6542930, - "tags": { - "amenity": "post_box", - "postal_code": "NE61 6RN", - "ref": "NE61 205" - } -}, -{ - "type": "node", - "id": 1210404480, - "lat": 50.8529710, - "lon": -1.2178620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO15 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1210408426, - "lat": 50.8567230, - "lon": -1.2178080, - "tags": { - "amenity": "post_box", - "ref": "PO15 164" - } -}, -{ - "type": "node", - "id": 1210424367, - "lat": 50.8588500, - "lon": -1.1845490, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PO16 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1210430302, - "lat": 50.8599810, - "lon": -1.1890440, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO16 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1210449147, - "lat": 50.8544610, - "lon": -1.1860401, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PO16 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1210464372, - "lat": 50.8493611, - "lon": -1.1788090, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO16 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1210481630, - "lat": 50.8431081, - "lon": -1.1781650, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "PO16 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1210485270, - "lat": 50.8402976, - "lon": -1.1815574, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO16 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1210506694, - "lat": 50.7315672, - "lon": -2.9389007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT7 84D", - "ref:GB:uprn": "10015378775", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1210554402, - "lat": 53.6879905, - "lon": -1.8192460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX5 264" - } -}, -{ - "type": "node", - "id": 1210554439, - "lat": 53.6804103, - "lon": -1.8287517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "HX5 157" - } -}, -{ - "type": "node", - "id": 1210554767, - "lat": 53.6876793, - "lon": -1.8388797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX5 125" - } -}, -{ - "type": "node", - "id": 1210554827, - "lat": 53.6815889, - "lon": -1.8304951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX5 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1210595650, - "lat": 50.9172879, - "lon": 0.6134163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN35 229" - } -}, -{ - "type": "node", - "id": 1210695594, - "lat": 51.0818644, - "lon": 0.8440618, - "tags": { - "amenity": "post_box", - "source": "photo" - } -}, -{ - "type": "node", - "id": 1210843395, - "lat": 52.1419036, - "lon": -1.8746353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1211033940, - "lat": 52.1558436, - "lon": -4.3517213, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1211155882, - "lat": 53.1428519, - "lon": -1.2707403, - "tags": { - "amenity": "post_box", - "ele": "152" - } -}, -{ - "type": "node", - "id": 1211194863, - "lat": 51.2380542, - "lon": -0.2891835, - "tags": { - "amenity": "post_box", - "ref": "RH3 264", - "source": "Photo P142-0254" - } -}, -{ - "type": "node", - "id": 1211194936, - "lat": 51.2414565, - "lon": -0.2923645, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH3 18", - "source": "Photo P142-0259" - } -}, -{ - "type": "node", - "id": 1211215364, - "lat": 51.2393307, - "lon": -0.2231718, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH2 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P142-0215" - } -}, -{ - "type": "node", - "id": 1211219328, - "lat": 53.1176022, - "lon": -1.2678182, - "tags": { - "amenity": "post_box", - "ele": "163.0681152" - } -}, -{ - "type": "node", - "id": 1211333388, - "lat": 51.3729427, - "lon": -0.6916494, - "tags": { - "amenity": "post_box", - "mapillary": "2011659259017282", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "P143-0414", - "survey:date": "2022-06-29", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 1211688756, - "lat": 56.0620881, - "lon": -3.4457799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY11 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1211699660, - "lat": 52.4576955, - "lon": 0.6715565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "IP27 3225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1211719611, - "lat": 51.1266126, - "lon": -0.0106747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "name": "101 London Road Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RH19 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1211723278, - "lat": 51.4866316, - "lon": -3.2125046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 256D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1212034787, - "lat": 52.3168336, - "lon": -2.4064210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "wall", - "ref": "WR6 113", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1212098017, - "lat": 51.4489423, - "lon": -0.3239904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1212131128, - "lat": 53.7671592, - "lon": -0.6372277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1212131176, - "lat": 53.7951224, - "lon": -0.6420813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "image": "https://www.geograph.org.uk/photo/7023826", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1212393055, - "lat": 50.3200103, - "lon": -3.6122793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "mapillary": "930614157550763", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;local knowledge", - "source:position": "Mapillary 2020-08-24", - "survey:date": "2022-05-23", - "wikimedia_commons": "File:Blackpool Cottages.jpg" - } -}, -{ - "type": "node", - "id": 1212434262, - "lat": 50.3518730, - "lon": -3.5931747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ6 214D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1212596819, - "lat": 51.4820571, - "lon": -3.2058384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF5 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1212959078, - "lat": 51.4851520, - "lon": -0.1791548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW10 21", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1213086489, - "lat": 50.7984505, - "lon": -1.0769754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1213086491, - "lat": 50.8114974, - "lon": -1.0694826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 110", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1213231184, - "lat": 50.9793831, - "lon": -1.3726577, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 391D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1213568470, - "lat": 50.8659335, - "lon": -1.2800084, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 490D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1213568585, - "lat": 50.8647720, - "lon": -1.2908560, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO31 627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1213742075, - "lat": 50.4289930, - "lon": -3.5984399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1213862195, - "lat": 57.2824282, - "lon": -2.3734164, - "tags": { - "addr:city": "Inverurie", - "addr:country": "GB", - "addr:postcode": "AB51 3QA", - "addr:street": "High Street", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1213950477, - "lat": 51.1568639, - "lon": -0.3652507, - "tags": { - "amenity": "post_box", - "ref": "RH4 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo P143-0627" - } -}, -{ - "type": "node", - "id": 1213950521, - "lat": 51.1426113, - "lon": -0.3652463, - "tags": { - "amenity": "post_box", - "ref": "RH5 32", - "source": "Photo P143-0633" - } -}, -{ - "type": "node", - "id": 1213950555, - "lat": 51.1461507, - "lon": -0.3627759, - "tags": { - "amenity": "post_box", - "ref": "RH5 28", - "source": "P143-0636 rechecked" - } -}, -{ - "type": "node", - "id": 1213979667, - "lat": 51.0918082, - "lon": -0.3858050, - "tags": { - "amenity": "post_box", - "ref": "RH12 9", - "source": "Photo P143-0548" - } -}, -{ - "type": "node", - "id": 1213979674, - "lat": 51.0892233, - "lon": -0.3889631, - "tags": { - "amenity": "post_box", - "ref": "RH13 29" - } -}, -{ - "type": "node", - "id": 1214037862, - "lat": 51.0871961, - "lon": -0.4517482, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH12 45", - "source": "Photo P143-0554" - } -}, -{ - "type": "node", - "id": 1214057986, - "lat": 51.1077833, - "lon": -0.4312951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1214165653, - "lat": 51.1670338, - "lon": -0.6246283, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU7 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1214165861, - "lat": 51.1632581, - "lon": -0.6370661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU8 40", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "GU8 40D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1214168720, - "lat": 51.4785213, - "lon": -0.8864723, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1214169390, - "lat": 51.4552142, - "lon": -0.8849208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1214181326, - "lat": 51.1559649, - "lon": -0.4358136, - "tags": { - "amenity": "post_box", - "ref": "GU6 148" - } -}, -{ - "type": "node", - "id": 1214181352, - "lat": 51.1560808, - "lon": -0.4430042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU6 90", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1214181365, - "lat": 51.1500860, - "lon": -0.4396868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU6 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1214181386, - "lat": 51.1474499, - "lon": -0.4448408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU6 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1214204955, - "lat": 51.2030495, - "lon": -0.3294446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH5 8", - "source": "Only seen when checking photo P143-0662" - } -}, -{ - "type": "node", - "id": 1214204992, - "lat": 51.2134736, - "lon": -0.3283981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "North Holmwood P O", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH5 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Photo P143-0665" - } -}, -{ - "type": "node", - "id": 1214239696, - "lat": 52.2136191, - "lon": -0.8860481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NN4 211", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1214429438, - "lat": 51.4582713, - "lon": -0.1177457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW2 43" - } -}, -{ - "type": "node", - "id": 1214681183, - "lat": 50.8249284, - "lon": -1.0730597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO2 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1214681191, - "lat": 50.8191175, - "lon": -1.0783808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1214687912, - "lat": 53.4407282, - "lon": -1.4964018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S35 166", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1214740739, - "lat": 51.4926329, - "lon": -0.1104143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1215065539, - "lat": 50.8310888, - "lon": -4.5455183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX23 6;EX23 600", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1215357009, - "lat": 50.9567431, - "lon": -1.2500446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1215358983, - "lat": 51.4623523, - "lon": -3.1855505, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CF11 187", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1215359093, - "lat": 51.4649201, - "lon": -3.1834565, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF11 188", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1215360546, - "lat": 51.4648086, - "lon": -3.1781202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF11 186", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1215482015, - "lat": 50.7258979, - "lon": -2.9484930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "DT7 146D", - "ref:GB:uprn": "10015305537", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1215503599, - "lat": 51.2086692, - "lon": -0.2683945, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH2 141", - "source": "Photo P143-0523" - } -}, -{ - "type": "node", - "id": 1215574223, - "lat": 51.1795948, - "lon": -0.3176097, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH5 359", - "source": "Photo P143-0653" - } -}, -{ - "type": "node", - "id": 1215770174, - "lat": 50.8421399, - "lon": -0.7818265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1215770233, - "lat": 51.4670474, - "lon": -3.1854186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF11 189", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1215781454, - "lat": 55.7921535, - "lon": -4.2890963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "ref": "G76 1013" - } -}, -{ - "type": "node", - "id": 1216126187, - "lat": 50.8310950, - "lon": -1.2184950, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO14 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1216143995, - "lat": 50.8247860, - "lon": -1.2090211, - "tags": { - "amenity": "post_box", - "ref": "PO14 121" - } -}, -{ - "type": "node", - "id": 1216153396, - "lat": 50.8156290, - "lon": -1.2243211, - "tags": { - "amenity": "post_box", - "ref": "PO14 27" - } -}, -{ - "type": "node", - "id": 1216160836, - "lat": 50.8160841, - "lon": -1.2289439, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO14 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1216567622, - "lat": 51.4778885, - "lon": -3.1881434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "name": "Clare Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1216794973, - "lat": 50.8292960, - "lon": -1.2223591, - "tags": { - "amenity": "post_box", - "ref": "PO14 66" - } -}, -{ - "type": "node", - "id": 1216927074, - "lat": 51.4737052, - "lon": 0.6539600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 259D" - } -}, -{ - "type": "node", - "id": 1217283023, - "lat": 53.8965978, - "lon": -2.7710885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR3 172", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1217324054, - "lat": 53.7040271, - "lon": -1.2490166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF11 133", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1217582029, - "lat": 53.8994814, - "lon": -2.7757850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR3 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1217582049, - "lat": 53.8993683, - "lon": -2.7837953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1217681224, - "lat": 51.2430474, - "lon": -0.0868949, - "tags": { - "amenity": "post_box", - "ref": "RH1 81", - "source": "Photo P143-0476" - } -}, -{ - "type": "node", - "id": 1217681235, - "lat": 51.2322379, - "lon": -0.1642926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 254" - } -}, -{ - "type": "node", - "id": 1217681249, - "lat": 51.2296993, - "lon": -0.1690998, - "tags": { - "amenity": "post_box", - "ref": "RH1 57", - "source": "Photo P143-0456" - } -}, -{ - "type": "node", - "id": 1217732787, - "lat": 51.2483835, - "lon": -0.0669727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH9 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1217745372, - "lat": 53.9700378, - "lon": -0.2890941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "YO25 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1217796928, - "lat": 51.5426971, - "lon": -0.1134586, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1218127128, - "lat": 51.2317146, - "lon": -0.1953623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RH2 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Photo P144-0006" - } -}, -{ - "type": "node", - "id": 1218127129, - "lat": 51.2321237, - "lon": -0.1980833, - "tags": { - "amenity": "post_box", - "ref": "RH2 113", - "source": "Photo P144-0010" - } -}, -{ - "type": "node", - "id": 1218218504, - "lat": 51.2883712, - "lon": -0.2269959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "P143-0935" - } -}, -{ - "type": "node", - "id": 1218650853, - "lat": 51.7434408, - "lon": -2.2406607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1218751057, - "lat": 53.9009725, - "lon": -2.7805511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1219152762, - "lat": 50.6368926, - "lon": -3.4038434, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1219195177, - "lat": 55.9260496, - "lon": -3.1387272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH16 340", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1219239978, - "lat": 53.7128532, - "lon": -0.6964227, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1219240117, - "lat": 53.7212061, - "lon": -0.8405692, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1219412275, - "lat": 50.1005718, - "lon": -5.2757611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "note": "double aperture postbox: Royal Mail also list TR13 1140 which must be the second aperture of this box but both are marked TR13 114", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TR13 114;TR13 1140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 1219412550, - "lat": 50.1003263, - "lon": -5.2776552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 1219412892, - "lat": 50.0866174, - "lon": -5.3016640, - "tags": { - "amenity": "post_box", - "note": "Door currently missing. Perhaps this box is now disused?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR13 37" - } -}, -{ - "type": "node", - "id": 1219544168, - "lat": 50.8945186, - "lon": -1.5178652, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 480D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1219545376, - "lat": 50.8923398, - "lon": -1.5226150, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1219648580, - "lat": 52.8689539, - "lon": -1.3567722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE72 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1219801897, - "lat": 51.4432797, - "lon": -2.5947474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "post_box:type": "pillar", - "ref": "BS3 1052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1219837427, - "lat": 51.3491485, - "lon": 0.4467594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME2 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1219899086, - "lat": 52.8680894, - "lon": -1.3428939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE72 729", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1219899527, - "lat": 52.8706371, - "lon": -1.3402317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE72 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1219920556, - "lat": 50.8567437, - "lon": -0.1689155, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS & photo from P+R bus - P141-0531" - } -}, -{ - "type": "node", - "id": 1219920562, - "lat": 50.8539942, - "lon": -0.1609287, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7 but with the new collection times it should be CP7D.", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "As at 21.02.2019 the postbox notice read that from 31.12.2018 the collections are 9am Mon-Fri and 7am Sat. But the postbox number was obscured but it would now be BN1 316D. And as at 21.02.2019 the postbox notice has not been updated.", - "old_ref": "BN1 316", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN1 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS & photo from P+R bus - P141-0530" - } -}, -{ - "type": "node", - "id": 1219920564, - "lat": 50.8421503, - "lon": -0.1587280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS & photo from P+R bus - P141-0535/678;survey" - } -}, -{ - "type": "node", - "id": 1219920569, - "lat": 50.8509537, - "lon": -0.1644839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "175605834465607", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-10-09" - } -}, -{ - "type": "node", - "id": 1219939992, - "lat": 51.8793518, - "lon": -2.2104628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL2 830" - } -}, -{ - "type": "node", - "id": 1219954079, - "lat": 50.8382029, - "lon": -0.1546512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS & photo from P+R bus - P141-0537/675" - } -}, -{ - "type": "node", - "id": 1220000581, - "lat": 50.8302791, - "lon": -0.1472802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 144", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS & photo from P+R bus - P141-0665" - } -}, -{ - "type": "node", - "id": 1220000586, - "lat": 50.8313077, - "lon": -0.1482271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN3 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1220000590, - "lat": 50.8333032, - "lon": -0.1497689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS & photo from P+R bus - P141-0669" - } -}, -{ - "type": "node", - "id": 1220015950, - "lat": 50.8465633, - "lon": -0.1603194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 324", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS & photo from P+R bus - P141-0679" - } -}, -{ - "type": "node", - "id": 1220015953, - "lat": 50.8553398, - "lon": -0.1703515, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN3 246", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 246D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS & photo from P+R bus - P141-0684" - } -}, -{ - "type": "node", - "id": 1220019459, - "lat": 50.8573447, - "lon": -0.1566975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 315", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS & photo from P+R bus - P141-0690;survey" - } -}, -{ - "type": "node", - "id": 1220019460, - "lat": 50.8582494, - "lon": -0.1697086, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS & photo from P+R bus - P141-0685" - } -}, -{ - "type": "node", - "id": 1220022589, - "lat": 52.8639796, - "lon": -1.3391358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE72 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1220029140, - "lat": 50.8208475, - "lon": -0.1397669, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "P141-0568" - } -}, -{ - "type": "node", - "id": 1221170367, - "lat": 52.8333486, - "lon": -3.0997986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY10 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 1221353893, - "lat": 51.4441113, - "lon": 0.0276780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1221362135, - "lat": 51.4509481, - "lon": 0.0178004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1221377860, - "lat": 51.6010317, - "lon": -1.8006452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 106" - } -}, -{ - "type": "node", - "id": 1221378146, - "lat": 51.6068513, - "lon": -1.7990695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 110" - } -}, -{ - "type": "node", - "id": 1221392831, - "lat": 53.9124484, - "lon": -2.7764823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR3 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1221392868, - "lat": 53.9053874, - "lon": -2.7785232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1221428621, - "lat": 55.0116854, - "lon": -1.6744544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE3 39" - } -}, -{ - "type": "node", - "id": 1221579377, - "lat": 50.8636110, - "lon": -1.1807290, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "post_box:type": "pillar", - "ref": "PO16 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1221589806, - "lat": 50.8612200, - "lon": -1.1948700, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1221683670, - "lat": 56.0645854, - "lon": -3.4533710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1221944474, - "lat": 51.5934344, - "lon": -1.4366926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1221947235, - "lat": 56.0407421, - "lon": -3.4236206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 148", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1221947248, - "lat": 56.0354356, - "lon": -3.4154446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1221947272, - "lat": 56.0421490, - "lon": -3.4291720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 74D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1221947287, - "lat": 56.0291130, - "lon": -3.4372509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1221947294, - "lat": 56.0296817, - "lon": -3.4284009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 167D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1221981200, - "lat": 52.8475866, - "lon": -1.3081938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE74 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1221987474, - "lat": 56.0854947, - "lon": -4.6368955, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1222137850, - "lat": 56.0407040, - "lon": -4.3737388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G63 1055D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1222137860, - "lat": 56.0454400, - "lon": -4.3719981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "G63 604", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1222137874, - "lat": 56.0409392, - "lon": -4.3820723, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1222308790, - "lat": 51.9437822, - "lon": 1.0088270, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1222315858, - "lat": 53.9680656, - "lon": -1.8833023, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1222347234, - "lat": 51.5614401, - "lon": -0.1509275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "ref": "N6 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1222408349, - "lat": 51.9186318, - "lon": -0.6825596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU7 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222436842, - "lat": 51.2400701, - "lon": -0.2094891, - "tags": { - "amenity": "post_box", - "ref": "RH2 119", - "source": "Photo P144-0071" - } -}, -{ - "type": "node", - "id": 1222476035, - "lat": 52.8478044, - "lon": -1.3251563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co, London SE1", - "post_box:type": "lamp", - "ref": "DE74 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222794149, - "lat": 57.8672079, - "lon": -5.0944374, - "tags": { - "amenity": "post_box", - "ref": "IV23 198", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222794150, - "lat": 57.9325105, - "lon": -5.1961495, - "tags": { - "amenity": "post_box", - "ref": "IV26 200", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222794151, - "lat": 57.9036853, - "lon": -5.1631046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "ref": "IV26 334", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222794152, - "lat": 57.8985701, - "lon": -5.1622070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "IV26 202", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222794153, - "lat": 57.8490054, - "lon": -5.0782521, - "tags": { - "amenity": "post_box", - "ref": "IV23 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222794154, - "lat": 57.7786395, - "lon": -5.0359154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IV23 199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1222828642, - "lat": 57.4703376, - "lon": -6.4365159, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1222999322, - "lat": 52.8433347, - "lon": -1.3324287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE74 81D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1223299356, - "lat": 51.2390990, - "lon": -0.1703253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "name": "Cromwell Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Photo P144-0136" - } -}, -{ - "type": "node", - "id": 1223624165, - "lat": 56.3909100, - "lon": -4.1131500, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH6 61" - } -}, -{ - "type": "node", - "id": 1223624168, - "lat": 56.3919600, - "lon": -4.1073300, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH6 27" - } -}, -{ - "type": "node", - "id": 1223662880, - "lat": 52.0125779, - "lon": -0.0490402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "name": "Hay Green", - "ref": "SG8 449" - } -}, -{ - "type": "node", - "id": 1223664313, - "lat": 53.4122973, - "lon": -2.2052059, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1223751314, - "lat": 53.4171289, - "lon": -2.2024961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK4 303D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1223765352, - "lat": 52.8490389, - "lon": -1.3384492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mail:franked": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DE74 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1223765666, - "lat": 52.8490364, - "lon": -1.3384147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DE74 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1223776101, - "lat": 50.9190920, - "lon": 0.3981666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN33 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1223792262, - "lat": 50.9093815, - "lon": 0.3831768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "ref": "TN33 234" - } -}, -{ - "type": "node", - "id": 1223804235, - "lat": 51.5909885, - "lon": 0.6025440, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS6 226", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1223804636, - "lat": 51.3898970, - "lon": -0.7469260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1223826243, - "lat": 51.9412092, - "lon": -3.3696734, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1223826244, - "lat": 52.0222499, - "lon": -3.1893598, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 347", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1223826248, - "lat": 51.9493399, - "lon": -3.3911663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LD3 311D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1223826250, - "lat": 52.0319887, - "lon": -3.1712744, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 348", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1223875885, - "lat": 57.1058091, - "lon": -2.0832153, - "tags": { - "addr:postcode": "AB12 3NH", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 528D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1224058535, - "lat": 50.7923179, - "lon": -1.0581609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1224148740, - "lat": 50.8474001, - "lon": -1.0314456, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 190", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1224149537, - "lat": 50.8479812, - "lon": -1.0244093, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1224283514, - "lat": 50.8778230, - "lon": 0.3714216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 951" - } -}, -{ - "type": "node", - "id": 1224385625, - "lat": 50.8446396, - "lon": -1.0303886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO6 348", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-09-12" - } -}, -{ - "type": "node", - "id": 1224710162, - "lat": 51.5228445, - "lon": -0.1743548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 13D;W2 213D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1224888480, - "lat": 53.4291016, - "lon": -2.9828782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L5 115 by Carron Company on Stanley Road, Kirkdale, outside the Police Station.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stanley Road, Kirkdale.jpg" - } -}, -{ - "type": "node", - "id": 1225104104, - "lat": 50.8027733, - "lon": -1.0818047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1225104113, - "lat": 50.7998220, - "lon": -1.0824645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1225129298, - "lat": 52.2903841, - "lon": -0.6171710, - "tags": { - "amenity": "post_box", - "ref": "NN10 95" - } -}, -{ - "type": "node", - "id": 1225245584, - "lat": 51.7998004, - "lon": -4.0501544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 394", - "post_box:type": "wall", - "ref": "SA14 394D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1225435607, - "lat": 51.5440168, - "lon": 0.5622556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1225683096, - "lat": 50.8327515, - "lon": -1.2125019, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO14 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1225908655, - "lat": 52.3100417, - "lon": -0.5500323, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN9 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1225932348, - "lat": 52.2907184, - "lon": -0.5167604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1225984257, - "lat": 55.2211629, - "lon": -1.5685423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:type": "pillar", - "ref": "NE61 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1225984674, - "lat": 55.2269962, - "lon": -1.5594374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "NE61 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1226602086, - "lat": 50.6878889, - "lon": -3.2375574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX10 79D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1226817216, - "lat": 51.4333623, - "lon": -3.2091904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "name": "Murch Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF64 342D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1226818741, - "lat": 51.4341627, - "lon": -3.2194057, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1226827570, - "lat": 53.0093930, - "lon": -1.1996609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 326", - "ref:GB:uprn": "10015298627", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1226893369, - "lat": 52.0423041, - "lon": -1.8726187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR12 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1227021973, - "lat": 52.0298043, - "lon": -1.8620517, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR12 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1227317034, - "lat": 53.1166843, - "lon": -1.4488009, - "tags": { - "amenity": "post_box", - "ele": "166.0000000", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE55 664" - } -}, -{ - "type": "node", - "id": 1227342684, - "lat": 57.1011162, - "lon": -2.0887445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB12 547", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1227354816, - "lat": 51.4573355, - "lon": -2.4899154, - "tags": { - "amenity": "post_box", - "fixme": "need ref" - } -}, -{ - "type": "node", - "id": 1227753278, - "lat": 51.5314080, - "lon": -0.0479335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E2 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1227973950, - "lat": 52.0225933, - "lon": 1.1389549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1192052367886240", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP9 1015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-30" - } -}, -{ - "type": "node", - "id": 1228153067, - "lat": 51.7239325, - "lon": 0.6703421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM9 432" - } -}, -{ - "type": "node", - "id": 1229511219, - "lat": 52.3230990, - "lon": -2.0483556, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B60 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1229535454, - "lat": 52.3273337, - "lon": -2.0506186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B60 917", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1229541169, - "lat": 52.3314654, - "lon": -2.0565627, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "B60 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1229560265, - "lat": 50.9217664, - "lon": -1.4010422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SO14 141", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 141D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "local_knowledge;Bing" - } -}, -{ - "type": "node", - "id": 1229846599, - "lat": 52.0183784, - "lon": -2.3052115, - "tags": { - "amenity": "post_box", - "fixme": "Need to go again. GPS position seems wrong side of wall !", - "fixme2": "ref is conjectural", - "post_box:type": "wall", - "ref": "WR13 111" - } -}, -{ - "type": "node", - "id": 1230363548, - "lat": 53.8158130, - "lon": -2.8419247, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1230527089, - "lat": 51.6523166, - "lon": -0.2841769, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-25", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "ref": "WD6 97", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1230539783, - "lat": 51.6492748, - "lon": -0.2955753, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-20", - "ref": "WD6 175", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1230568957, - "lat": 54.3872818, - "lon": -3.4621100, - "tags": { - "amenity": "post_box", - "ref": "CA19 41" - } -}, -{ - "type": "node", - "id": 1230985566, - "lat": 51.2669217, - "lon": 0.0759834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "501215667696530", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN16 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-31" - } -}, -{ - "type": "node", - "id": 1230985581, - "lat": 51.2645350, - "lon": 0.0664507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN16 173D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1230985582, - "lat": 51.2622699, - "lon": 0.1218520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1230985584, - "lat": 51.2570067, - "lon": 0.0239349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH8 87" - } -}, -{ - "type": "node", - "id": 1231119194, - "lat": 52.2929491, - "lon": -0.6088736, - "tags": { - "amenity": "post_box", - "ref": "NN10 38" - } -}, -{ - "type": "node", - "id": 1231573414, - "lat": 53.7716382, - "lon": -0.3670250, - "tags": { - "amenity": "post_box", - "operator": "University of Hull" - } -}, -{ - "type": "node", - "id": 1232283191, - "lat": 51.4607686, - "lon": -2.5419137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS5 1217", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1232442520, - "lat": 53.2000820, - "lon": -0.5835260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1232586679, - "lat": 51.5303476, - "lon": -0.1836507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W9 11", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 1232595033, - "lat": 50.8789870, - "lon": -1.2414171, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO15 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1232720562, - "lat": 52.3336738, - "lon": -2.0621337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "ref is conjectural; can only be partlyon box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B61 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1232753968, - "lat": 54.5933978, - "lon": -5.6912403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1232753978, - "lat": 54.5955672, - "lon": -5.7082884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1232753981, - "lat": 54.5986826, - "lon": -5.6999173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1232753984, - "lat": 54.5973918, - "lon": -5.6955536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1232753988, - "lat": 54.5946161, - "lon": -5.7021730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1232955157, - "lat": 53.2148082, - "lon": -0.6047179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1232970856, - "lat": 52.8441728, - "lon": -1.3376589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE74 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233405152, - "lat": 51.4507921, - "lon": -0.8983415, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG5 478D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233441899, - "lat": 53.8452206, - "lon": -1.8246082, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1233488521, - "lat": 53.2207892, - "lon": -0.6019365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LN6 520" - } -}, -{ - "type": "node", - "id": 1233561877, - "lat": 51.0380040, - "lon": -4.2255460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1233563148, - "lat": 51.0109170, - "lon": -4.2270260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1233631049, - "lat": 52.9905995, - "lon": -1.9837345, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1233644702, - "lat": 52.3329269, - "lon": -2.0593303, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "B60 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1233710961, - "lat": 51.4855327, - "lon": -3.1744387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CF10 60;CF10 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233710973, - "lat": 51.4900180, - "lon": -3.1779174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "fixme": "check for Sa collection time", - "post_box:type": "pillar", - "ref": "CF24 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1233711007, - "lat": 51.4843650, - "lon": -3.1738726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233711017, - "lat": 51.4854952, - "lon": -3.1761673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CF10 71D;CF10 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233711060, - "lat": 51.4881491, - "lon": -3.1762786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "collection times plate missing", - "post_box:type": "pillar", - "ref": "CF24 53D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1233760192, - "lat": 51.5266382, - "lon": -0.1791171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 33", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 1233780863, - "lat": 51.7702608, - "lon": -3.0801418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233781686, - "lat": 51.7708964, - "lon": -3.0779477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1233858358, - "lat": 55.9597347, - "lon": -3.3006455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 524", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1234138329, - "lat": 51.3074487, - "lon": -0.2180230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "P144-0443;survey" - } -}, -{ - "type": "node", - "id": 1234138340, - "lat": 51.2467510, - "lon": -0.2101394, - "tags": { - "amenity": "post_box", - "ref": "RH2 173", - "source": "P144-0410", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 1234261035, - "lat": 57.1040530, - "lon": -2.0881918, - "tags": { - "addr:postcode": "AB12 3WD", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 527" - } -}, -{ - "type": "node", - "id": 1234660445, - "lat": 51.4834258, - "lon": -3.1753929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1234758509, - "lat": 53.8485933, - "lon": -3.0255288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY2 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1234819837, - "lat": 51.5190188, - "lon": -0.1487649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-11-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 33D;W1G 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1234819842, - "lat": 51.5194276, - "lon": -0.1462311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-11-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W1G 31D;W1G 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1234890166, - "lat": 52.1526885, - "lon": -1.8605347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B50 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1235033028, - "lat": 51.6364263, - "lon": -0.6929487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 1235332691, - "lat": 51.5448872, - "lon": -0.2016060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ele": "38.578369", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1235334491, - "lat": 53.2594720, - "lon": -2.1777030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK11 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1235341081, - "lat": 50.8429000, - "lon": -1.7796550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH24 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1235356259, - "lat": 51.5261682, - "lon": -0.0675306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E2 25;E2 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1235356260, - "lat": 51.5265407, - "lon": -0.0724258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E2 19D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1235356262, - "lat": 51.5348078, - "lon": -0.0630554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1235356263, - "lat": 51.5276530, - "lon": -0.0525085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1235356264, - "lat": 51.5418115, - "lon": -0.0760934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1235761693, - "lat": 51.5308762, - "lon": -0.1815463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "37.136353", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 9D", - "royal_cypher": "no", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1235766261, - "lat": 51.5212017, - "lon": -0.1456375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 35D;W1B 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box W1B 35D and W1B 235D" - } -}, -{ - "type": "node", - "id": 1236243613, - "lat": 50.9064723, - "lon": -3.4858458, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1236325269, - "lat": 52.3222824, - "lon": -0.2188460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 22" - } -}, -{ - "type": "node", - "id": 1236574316, - "lat": 51.7252506, - "lon": 0.6755247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CM9 396" - } -}, -{ - "type": "node", - "id": 1236724421, - "lat": 51.4822023, - "lon": -3.1749188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "inscription": "One of the first castings of the 1980 'K' pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF10 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1236724453, - "lat": 51.4894115, - "lon": -3.1817412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "mapillary": "525736828761194", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 1237042634, - "lat": 51.4363235, - "lon": -2.6068253, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS3 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1237110716, - "lat": 54.5927872, - "lon": -5.7108380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "location": "Outside ASDA entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1237110720, - "lat": 54.5988459, - "lon": -5.7098254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1237287545, - "lat": 52.9807405, - "lon": -1.9863554, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1237346287, - "lat": 54.9955976, - "lon": -1.5868974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1237748411, - "lat": 51.8973230, - "lon": -2.0995100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "wall", - "ref": "GL51 120", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1237758850, - "lat": 51.7207354, - "lon": -0.4513044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1237758859, - "lat": 51.7120978, - "lon": -0.4576836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1237758872, - "lat": 51.7148406, - "lon": -0.4507673, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1237848384, - "lat": 55.0401612, - "lon": -1.4423881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "phone_box", - "ref": "NE26 412", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1237860003, - "lat": 52.1465411, - "lon": -2.1410981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR7 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1237860378, - "lat": 52.1417636, - "lon": -2.1386216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR7 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1237887202, - "lat": 52.5750735, - "lon": -0.3954373, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE8 70" - } -}, -{ - "type": "node", - "id": 1237887247, - "lat": 52.5664689, - "lon": -0.4033131, - "tags": { - "amenity": "post_box", - "ref": "PE8 251" - } -}, -{ - "type": "node", - "id": 1237887334, - "lat": 52.5771708, - "lon": -0.4129515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE8 245" - } -}, -{ - "type": "node", - "id": 1238278000, - "lat": 52.2671812, - "lon": -2.1509316, - "tags": { - "alt_ref": "WR9 4910", - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "historic_operator": "Royal Mail", - "note": "Royal Mail gives ref for right hand apperture as 'WR9 4910' but both plates are the same and are 'WR9 491'", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WR9 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1238331986, - "lat": 52.2688093, - "lon": -2.1442711, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1238366038, - "lat": 52.2708934, - "lon": -2.1424173, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR9 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1238522830, - "lat": 51.5497869, - "lon": -0.1324242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "manufacturer:wikidata": "Q120765026", - "mapillary": "770836870285957", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 31D" - } -}, -{ - "type": "node", - "id": 1238722590, - "lat": 57.6484329, - "lon": -3.3167993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "note": "no plate on RH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IV30 124", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1238722604, - "lat": 57.6479782, - "lon": -3.3123212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV30 135", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1238722608, - "lat": 57.6617980, - "lon": -3.3081196, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1238732887, - "lat": 51.9969200, - "lon": -2.1552025, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1238916878, - "lat": 50.6185576, - "lon": -3.5024941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1239072423, - "lat": 52.1941325, - "lon": -4.3071963, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1239072455, - "lat": 52.1949734, - "lon": -4.3052763, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1239176341, - "lat": 50.8960058, - "lon": -1.3797917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1239294763, - "lat": 51.5250737, - "lon": 0.0620529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239294764, - "lat": 51.5246826, - "lon": 0.0392709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239294765, - "lat": 51.5221844, - "lon": 0.0517192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299936, - "lat": 51.5321713, - "lon": 0.0488376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3356897264574378", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299937, - "lat": 51.5310296, - "lon": 0.0586747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299938, - "lat": 51.5283584, - "lon": 0.0566249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299939, - "lat": 51.5366790, - "lon": 0.0521772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E6 25P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299940, - "lat": 51.5392258, - "lon": 0.0570166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "E6 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299941, - "lat": 51.5321744, - "lon": 0.0633315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239299942, - "lat": 51.5367011, - "lon": 0.0521704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E6 16;E6 1016", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303597, - "lat": 51.5761058, - "lon": 0.0247434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Box has a disused stamp vending machine attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303599, - "lat": 51.5809223, - "lon": 0.0286727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303600, - "lat": 51.5271685, - "lon": 0.0457649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303601, - "lat": 51.5145684, - "lon": 0.0575966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E6 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303602, - "lat": 51.5781753, - "lon": 0.0261378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E11 28;E11 1028", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303603, - "lat": 51.5266209, - "lon": 0.0525759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303604, - "lat": 51.5305504, - "lon": 0.0392327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239303605, - "lat": 51.5249674, - "lon": 0.0456943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309949, - "lat": 51.5706036, - "lon": 0.0148473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "E11 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309952, - "lat": 51.5744138, - "lon": 0.0228778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309953, - "lat": 51.5757248, - "lon": 0.0350621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 44", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309954, - "lat": 51.5666940, - "lon": 0.0135292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309963, - "lat": 51.5712109, - "lon": 0.0298923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309964, - "lat": 51.5769068, - "lon": 0.0305668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239309965, - "lat": 51.5828095, - "lon": 0.0353270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239312205, - "lat": 52.9167755, - "lon": -1.4141464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE21 677", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239312617, - "lat": 51.5608841, - "lon": 0.0085750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 42D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239312618, - "lat": 51.5633535, - "lon": 0.0240715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239312619, - "lat": 51.5576893, - "lon": 0.0174316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1239631726, - "lat": 52.6446231, - "lon": 1.2848656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 14:45", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1239721904, - "lat": 52.1435922, - "lon": -0.4797405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 1239782800, - "lat": 52.1328494, - "lon": -4.5418564, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1239969763, - "lat": 52.1142033, - "lon": -2.0073505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "historic_operator": "Royal Mail", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR10 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1240029922, - "lat": 53.9120446, - "lon": -0.3011839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "wall", - "ref": "YO25 354", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1240068199, - "lat": 53.9087742, - "lon": -0.3034614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1240143536, - "lat": 53.0056284, - "lon": -1.2525013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1240143636, - "lat": 53.0095725, - "lon": -1.2555023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co., London", - "post_box:type": "wall", - "ref": "NG16 119D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1240175652, - "lat": 51.8276890, - "lon": -2.1088682, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL3 160" - } -}, -{ - "type": "node", - "id": 1240223481, - "lat": 52.1589620, - "lon": -4.4655068, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1240224880, - "lat": 53.0231111, - "lon": -1.2781719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1240245151, - "lat": 53.0049173, - "lon": -1.2810825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 08:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG16 2000", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1240317393, - "lat": 52.2128214, - "lon": -4.3649808, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1240317484, - "lat": 52.2023152, - "lon": -4.3654080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "wall", - "ref": "SA45 205" - } -}, -{ - "type": "node", - "id": 1240331780, - "lat": 52.2136549, - "lon": -4.3583232, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1240382759, - "lat": 52.0084630, - "lon": -2.1183848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "GL20 8D" - } -}, -{ - "type": "node", - "id": 1240420443, - "lat": 53.0233379, - "lon": -1.3059375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1240590867, - "lat": 52.2562348, - "lon": -2.1855288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "old_ref": "D.351 Salwarpe", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR9 351", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source:old_ref": "collection plate", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 1241009323, - "lat": 51.0170106, - "lon": -1.4687669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO51 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1241101284, - "lat": 54.7582299, - "lon": -2.8190044, - "tags": { - "amenity": "post_box", - "ref": "CA11 208", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1241101361, - "lat": 54.7548023, - "lon": -2.8290988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA11 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1241101372, - "lat": 54.8378174, - "lon": -2.9121171, - "tags": { - "amenity": "post_box", - "ref": "CA4 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1241112274, - "lat": 53.0016846, - "lon": -2.3397120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1241124064, - "lat": 55.2229297, - "lon": -2.9804371, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG13 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1241221995, - "lat": 51.5843249, - "lon": -2.9920403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1241388321, - "lat": 50.9320645, - "lon": -1.3948847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO17 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1241635410, - "lat": 52.7138339, - "lon": -2.1880857, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1241639338, - "lat": 52.1839163, - "lon": -2.4109050, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR6 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1241976759, - "lat": 52.4276205, - "lon": -1.9063619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "post_box:type": "pillar", - "postal_code": "B14", - "ref": "B14 125", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1242056194, - "lat": 51.4860955, - "lon": -3.1661681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "mapillary": "1290504341385428", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 153", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 1242270470, - "lat": 55.8038223, - "lon": -3.8976746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1242507453, - "lat": 51.0425323, - "lon": -0.8919545, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU33 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1242983112, - "lat": 51.3128743, - "lon": -0.8147099, - "tags": { - "amenity": "post_box", - "mapillary": "393860375751111", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-04-29" - } -}, -{ - "type": "node", - "id": 1243002277, - "lat": 51.2914176, - "lon": -2.4469297, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1243103215, - "lat": 51.3979027, - "lon": -3.2876381, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CF62 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243214539, - "lat": 51.7412204, - "lon": -2.1133996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "GL6 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1243226434, - "lat": 51.7527305, - "lon": -2.1394467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "ref": "GL5 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1243453555, - "lat": 54.6776694, - "lon": -1.5130913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "DL17 38" - } -}, -{ - "type": "node", - "id": 1243472762, - "lat": 55.5961008, - "lon": -3.4061864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML12 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243472763, - "lat": 55.5233057, - "lon": -3.4091850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 10:45", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "ML12 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243477728, - "lat": 54.1614977, - "lon": -2.5044812, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 70", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243477733, - "lat": 54.6690135, - "lon": -2.7591669, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CA11 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243480274, - "lat": 54.8090504, - "lon": -2.8333057, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 155", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243480275, - "lat": 55.2409981, - "lon": -3.3988781, - "tags": { - "amenity": "post_box", - "ref": "DG10 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243740198, - "lat": 51.7389904, - "lon": -0.7526297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1243827119, - "lat": 53.0413864, - "lon": -1.8831215, - "tags": { - "amenity": "post_box", - "ele": "249.0000000" - } -}, -{ - "type": "node", - "id": 1243894634, - "lat": 51.5433658, - "lon": 0.0109566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243894643, - "lat": 51.5497753, - "lon": 0.0099251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243894652, - "lat": 51.5395880, - "lon": 0.0109803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1243894657, - "lat": 51.5413161, - "lon": 0.0146695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "548088862978078", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1244199696, - "lat": 50.7959830, - "lon": -1.0590929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1244212825, - "lat": 51.4703465, - "lon": -3.2470250, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1244415877, - "lat": 53.7257263, - "lon": -2.7906042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "797072344534839", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-01-05" - } -}, -{ - "type": "node", - "id": 1245032940, - "lat": 51.3926700, - "lon": -0.7441370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1245251818, - "lat": 57.1492012, - "lon": -2.1237179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1245517867, - "lat": 51.4758319, - "lon": -0.2893449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW9 63", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1245523830, - "lat": 50.5066905, - "lon": -3.6142143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1245530953, - "lat": 55.9463444, - "lon": -3.3068560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH12 236D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1245660520, - "lat": 51.2083722, - "lon": -1.4857800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1245928952, - "lat": 52.9254445, - "lon": -1.1594757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS;survey" - } -}, -{ - "type": "node", - "id": 1246001311, - "lat": 51.2115949, - "lon": -1.4921996, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 129", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1246222732, - "lat": 51.5401148, - "lon": -0.1718175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW8 19" - } -}, -{ - "type": "node", - "id": 1246222734, - "lat": 51.5407390, - "lon": -0.1790547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW8 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1246222735, - "lat": 51.5315274, - "lon": -0.1681645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1246222741, - "lat": 51.5385135, - "lon": -0.1786727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW8 11" - } -}, -{ - "type": "node", - "id": 1246227567, - "lat": 51.5351436, - "lon": -0.1819561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1246227572, - "lat": 51.5352350, - "lon": -0.1781014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1246227585, - "lat": 51.5266717, - "lon": -0.1757908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "702318981026641", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 10D", - "survey:date": "2022-05-31" - } -}, -{ - "type": "node", - "id": 1246227586, - "lat": 51.5387770, - "lon": -0.1773930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW8 25" - } -}, -{ - "type": "node", - "id": 1246227587, - "lat": 51.5335023, - "lon": -0.1789621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1246227599, - "lat": 51.5283430, - "lon": -0.1787926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 32D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1246231901, - "lat": 51.5304072, - "lon": -0.1739091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NW8 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1246231902, - "lat": 51.5285335, - "lon": -0.1752840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1246231904, - "lat": 51.5310287, - "lon": -0.1718724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "fixme": "postbox is currently not in use - collision with lorry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "NW8 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge", - "wikidata": "Q26639898" - } -}, -{ - "type": "node", - "id": 1246233308, - "lat": 52.1951444, - "lon": -4.3095943, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1246634424, - "lat": 50.2626192, - "lon": -5.1088610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TR3 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1247150247, - "lat": 51.8264389, - "lon": -0.5221794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "ref": "LU6 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1247476058, - "lat": 50.4631877, - "lon": -3.5165392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1247746349, - "lat": 54.6610423, - "lon": -1.6596594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 174" - } -}, -{ - "type": "node", - "id": 1247746350, - "lat": 54.7035602, - "lon": -1.5398266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "DL17 176" - } -}, -{ - "type": "node", - "id": 1247746351, - "lat": 54.6842198, - "lon": -1.5720092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "DL17 219" - } -}, -{ - "type": "node", - "id": 1248433890, - "lat": 53.0216253, - "lon": -1.9650732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1248511140, - "lat": 52.3569584, - "lon": 0.7987982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "IP24 3343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1248536785, - "lat": 52.3508908, - "lon": 0.8004949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP24 3358", - "ref:GB:uprn": "10015432623", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1248612341, - "lat": 52.4103037, - "lon": -4.0853877, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY23 015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1248612442, - "lat": 52.4121684, - "lon": -4.0853423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY23 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1248612520, - "lat": 52.3695860, - "lon": -4.0867126, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY23 008" - } -}, -{ - "type": "node", - "id": 1248685926, - "lat": 54.6836815, - "lon": -1.5456787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL17 310" - } -}, -{ - "type": "node", - "id": 1248734620, - "lat": 53.0472507, - "lon": -1.3155086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG16 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1248734685, - "lat": 53.0507230, - "lon": -1.3145702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "lamp", - "ref": "NG16 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1248773268, - "lat": 53.0418995, - "lon": -1.3149069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG16 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1248773321, - "lat": 53.0410658, - "lon": -1.3105570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1248839445, - "lat": 51.6926866, - "lon": -2.3583490, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1248839468, - "lat": 51.6538438, - "lon": -2.3719016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL12 348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1249030474, - "lat": 52.1704877, - "lon": -2.1154553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "post_box:type": "wall", - "ref": "WR7 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1249081160, - "lat": 53.0418899, - "lon": -1.3036495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1249127679, - "lat": 51.6055539, - "lon": -3.3333395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF37 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1249127751, - "lat": 51.6094249, - "lon": -3.3298536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1249231124, - "lat": 53.0345557, - "lon": -1.3154746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 108D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1249271539, - "lat": 53.0192865, - "lon": -1.2957413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1249673979, - "lat": 52.3336395, - "lon": 0.7795015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "IP31 2251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1249741367, - "lat": 52.2497457, - "lon": -2.1650890, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1249745761, - "lat": 54.9992135, - "lon": -1.6307696, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 230D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1249757795, - "lat": 51.6084774, - "lon": -3.3359119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF37 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1249846049, - "lat": 57.6336180, - "lon": -3.3175031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250003315, - "lat": 53.0186283, - "lon": -1.9687277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "location": "Hillcrest Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1250003458, - "lat": 53.0116154, - "lon": -1.9729495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "location": "Shawe Park Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1250222672, - "lat": 57.1771701, - "lon": -3.8194660, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 15:30; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH22 16", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250277064, - "lat": 55.9900854, - "lon": -3.3879857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EH30 356D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1250277088, - "lat": 55.9901447, - "lon": -3.3862112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH30 158D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250296112, - "lat": 55.9909223, - "lon": -3.3995033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH30 161D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250296495, - "lat": 55.9932808, - "lon": -3.4225650, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH30 242D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250296526, - "lat": 55.9867952, - "lon": -3.4129579, - "tags": { - "amenity": "post_box", - "ref": "EH30 340", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250299270, - "lat": 51.6030074, - "lon": -3.3414777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CF37 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250303596, - "lat": 52.8162962, - "lon": 1.3979628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR28 2839D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1250315793, - "lat": 51.9450915, - "lon": 0.7347516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CO6 155", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250352664, - "lat": 52.8131093, - "lon": 1.3008547, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1250446263, - "lat": 56.0601684, - "lon": -3.3971932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 208D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1250462914, - "lat": 56.4077099, - "lon": -3.4480232, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 181", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1250473841, - "lat": 53.0069054, - "lon": -2.3197760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1250599042, - "lat": 52.1802836, - "lon": -2.1145697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "post_box:type": "wall", - "ref": "WR7 135", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1250842875, - "lat": 52.3210862, - "lon": 0.8091689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2014", - "ref:GB:uprn": "10015435738", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1251201836, - "lat": 55.9230639, - "lon": -3.3784722, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH52 27D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1251226118, - "lat": 51.6025419, - "lon": -3.3310700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF37 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1251226122, - "lat": 51.5998982, - "lon": -3.3274457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF37 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1251271827, - "lat": 53.0183950, - "lon": -1.9827750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "location": "high street kingsley", - "mapillary": "215346940589697", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 1251358335, - "lat": 56.5025702, - "lon": -2.7257138, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 119D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1251392438, - "lat": 52.3820534, - "lon": -1.8998800, - "tags": { - "amenity": "post_box", - "ref": "B38 71", - "source": "visual survey; estimate" - } -}, -{ - "type": "node", - "id": 1251743040, - "lat": 53.8095821, - "lon": -1.6520643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1251790334, - "lat": 52.1887261, - "lon": -2.1123633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "post_box:type": "lamp", - "ref": "WR7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1251808330, - "lat": 53.3592617, - "lon": -2.9958441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "description": "QEII Type A post box CH62 219 at Beaconsfield Road, New Ferry.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Beaconsfield Road, New Ferry.jpg" - } -}, -{ - "type": "node", - "id": 1252485301, - "lat": 52.2553295, - "lon": -2.1456123, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "(none)", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR9 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1252526772, - "lat": 52.2610565, - "lon": -2.1412894, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1252552508, - "lat": 52.2573473, - "lon": -2.1561787, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR9 377", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1252557747, - "lat": 53.1816486, - "lon": -4.0873873, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL57 239" - } -}, -{ - "type": "node", - "id": 1252605715, - "lat": 51.3248958, - "lon": 0.5050286, - "tags": { - "amenity": "post_box", - "ref": "ME20 233" - } -}, -{ - "type": "node", - "id": 1252661470, - "lat": 51.5967996, - "lon": -3.3213760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF37 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1252901082, - "lat": 51.5936289, - "lon": -3.3247927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF37 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1252955267, - "lat": 52.5431685, - "lon": -3.9374387, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1253065302, - "lat": 53.2776747, - "lon": -3.5901743, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1253065304, - "lat": 53.2757934, - "lon": -3.5852070, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 1253118978, - "lat": 53.9971006, - "lon": -1.1334044, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 569D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1253177250, - "lat": 53.7807593, - "lon": -1.5738505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS12 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1253177251, - "lat": 53.7827152, - "lon": -1.5760095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 945", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 1253249015, - "lat": 52.1886298, - "lon": -2.0847315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR7 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1253912556, - "lat": 54.9862706, - "lon": -1.6751113, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1253912675, - "lat": 54.9834026, - "lon": -1.6680805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1254051149, - "lat": 52.2649326, - "lon": -2.1583682, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1254066050, - "lat": 52.2620341, - "lon": -2.1599678, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1254072591, - "lat": 52.2539751, - "lon": -2.1571476, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR9 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1254080199, - "lat": 52.2553899, - "lon": -2.1382793, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR9 214", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1254097592, - "lat": 50.4354435, - "lon": -3.5648904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ4 121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 1254098461, - "lat": 50.3510360, - "lon": -3.5783427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-12-24", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "TQ6 1580;TQ6 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1254098917, - "lat": 52.8058671, - "lon": 1.5061311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1254098918, - "lat": 52.7865336, - "lon": 1.5092143, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1254682482, - "lat": 51.7111838, - "lon": -1.9501101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 151D" - } -}, -{ - "type": "node", - "id": 1254682483, - "lat": 51.7150632, - "lon": -1.9564733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 121" - } -}, -{ - "type": "node", - "id": 1254718528, - "lat": 51.5067663, - "lon": -0.7012326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1254719360, - "lat": 51.5682888, - "lon": -0.0154168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 5D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1254719361, - "lat": 51.5590099, - "lon": -0.0072775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1254719362, - "lat": 51.5562121, - "lon": -0.0079704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1254719363, - "lat": 51.5660176, - "lon": -0.0103188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "301194031591356", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1255210821, - "lat": 52.1155274, - "lon": -2.0770492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Ref confirmed as correct from info plate in Sep 2015", - "post_box:type": "lamp", - "ref": "WR10 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1255223317, - "lat": 50.5296981, - "lon": -3.6001323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1255299744, - "lat": 52.1030512, - "lon": -2.0027797, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR10 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1255302561, - "lat": 52.9521203, - "lon": -0.9527661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG13 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1255305086, - "lat": 52.9540804, - "lon": -0.9514016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "wall", - "ref": "NG13 293", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1255310879, - "lat": 52.8356784, - "lon": -0.6317504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1255547876, - "lat": 54.6870066, - "lon": -1.5642993, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "DL17 159" - } -}, -{ - "type": "node", - "id": 1255650912, - "lat": 52.8976502, - "lon": -1.4217897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE24 178D" - } -}, -{ - "type": "node", - "id": 1255679117, - "lat": 50.9263769, - "lon": -1.4357965, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-22", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 378D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1255804153, - "lat": 57.2647475, - "lon": -3.6577919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "PH25 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1255817922, - "lat": 54.6772747, - "lon": -1.4892750, - "tags": { - "amenity": "post_box", - "ref": "DL17 178" - } -}, -{ - "type": "node", - "id": 1255897021, - "lat": 52.8611226, - "lon": -1.3851436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE72 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1256174340, - "lat": 52.8580990, - "lon": -1.3917439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "DE72 703D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1256186749, - "lat": 53.4266461, - "lon": -2.3303393, - "tags": { - "amenity": "post_box", - "ref": "M33 380" - } -}, -{ - "type": "node", - "id": 1256186817, - "lat": 53.4296072, - "lon": -2.3419872, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M33 124" - } -}, -{ - "type": "node", - "id": 1256186838, - "lat": 53.4219248, - "lon": -2.3294966, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M33 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1256186841, - "lat": 53.4259009, - "lon": -2.3357792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M33 130", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1256609479, - "lat": 51.0233307, - "lon": -1.2897658, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "collection_times_checked": "2020-01-12", - "old_ref": "SO21 170D", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1256817881, - "lat": 54.6834435, - "lon": -1.5415399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL17 83" - } -}, -{ - "type": "node", - "id": 1256817883, - "lat": 54.6805945, - "lon": -1.5246422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "DL17 162" - } -}, -{ - "type": "node", - "id": 1256881429, - "lat": 51.9932428, - "lon": 0.0389088, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "name": "Bell Lane", - "ref": "SG8 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1256885071, - "lat": 51.9924740, - "lon": 0.0547044, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "name": "Upper Green", - "ref": "SG8 339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1256899075, - "lat": 52.0013695, - "lon": 0.0153463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "name": "High Street, Barkway", - "post_box:type": "pillar", - "ref": "SG8 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1256900539, - "lat": 51.9950876, - "lon": 0.0138750, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "mapillary": "1821005001389767", - "name": "South End, Barkway", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-30" - } -}, -{ - "type": "node", - "id": 1256920354, - "lat": 52.0414101, - "lon": 0.0852507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "name": "High Close, Heydon", - "ref": "SG8 728" - } -}, -{ - "type": "node", - "id": 1256950450, - "lat": 52.6627435, - "lon": -3.8592378, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1256990788, - "lat": 52.7653047, - "lon": -3.8227026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1256990804, - "lat": 52.7588527, - "lon": -3.8204467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL40 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1256990870, - "lat": 52.7528530, - "lon": -3.8236881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1257150262, - "lat": 51.2832790, - "lon": -0.1384550, - "tags": { - "amenity": "post_box", - "ref": "RH1 359" - } -}, -{ - "type": "node", - "id": 1257220754, - "lat": 52.8478096, - "lon": -1.4031662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE72 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1257314318, - "lat": 52.8223228, - "lon": -1.3701402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE74 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1257672242, - "lat": 52.4031039, - "lon": -4.0439196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SY23 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1257676245, - "lat": 52.4475064, - "lon": -4.0625891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 89" - } -}, -{ - "type": "node", - "id": 1257676246, - "lat": 52.4499389, - "lon": -4.0213904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY24 072", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1257676247, - "lat": 52.4356887, - "lon": -4.0589520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 011" - } -}, -{ - "type": "node", - "id": 1257676248, - "lat": 52.4326863, - "lon": -4.0759465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 96" - } -}, -{ - "type": "node", - "id": 1257676249, - "lat": 52.4106890, - "lon": -4.0546283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 233" - } -}, -{ - "type": "node", - "id": 1257676250, - "lat": 52.4359700, - "lon": -4.0794226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 194" - } -}, -{ - "type": "node", - "id": 1257676251, - "lat": 52.4464340, - "lon": -4.0249738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 121" - } -}, -{ - "type": "node", - "id": 1257676252, - "lat": 52.4202363, - "lon": -4.0629606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 082" - } -}, -{ - "type": "node", - "id": 1257891161, - "lat": 55.5122577, - "lon": -2.5695572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30, Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "TD8 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1257926840, - "lat": 55.4187680, - "lon": -3.1610095, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD7 120", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 1258018043, - "lat": 52.9817838, - "lon": -2.0298738, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1258294383, - "lat": 52.0908235, - "lon": -1.9826383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR11 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1258433089, - "lat": 51.3085299, - "lon": 0.4450196, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ME20 133" - } -}, -{ - "type": "node", - "id": 1258592997, - "lat": 53.6476676, - "lon": -1.8001322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1258612249, - "lat": 51.3041347, - "lon": 0.4367838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME20 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1258657761, - "lat": 52.9804593, - "lon": -3.4289604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1258657779, - "lat": 52.9752789, - "lon": -3.4410897, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1258657790, - "lat": 52.9341189, - "lon": -3.5406656, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1258673031, - "lat": 52.6707621, - "lon": -1.7975612, - "tags": { - "amenity": "post_box", - "source": "visual survey; estimate" - } -}, -{ - "type": "node", - "id": 1259247059, - "lat": 52.4162152, - "lon": -4.0798813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY23 26", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1259247062, - "lat": 52.4165258, - "lon": -4.0843311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY23 45" - } -}, -{ - "type": "node", - "id": 1259247072, - "lat": 52.4141490, - "lon": -4.0818601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SY23 33;SY23 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259247077, - "lat": 52.4123934, - "lon": -4.0882982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 006" - } -}, -{ - "type": "node", - "id": 1259247081, - "lat": 52.4163428, - "lon": -4.0856018, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 022", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1259247085, - "lat": 52.4142865, - "lon": -4.0779398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 056" - } -}, -{ - "type": "node", - "id": 1259247087, - "lat": 52.4191467, - "lon": -4.0794005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 225" - } -}, -{ - "type": "node", - "id": 1259247088, - "lat": 52.4146054, - "lon": -4.0863743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 014" - } -}, -{ - "type": "node", - "id": 1259247089, - "lat": 52.4123052, - "lon": -4.0814444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY23 099", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1259288098, - "lat": 51.4690598, - "lon": -2.5842126, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS6 281D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1259310419, - "lat": 52.2786790, - "lon": -2.1585446, - "tags": { - "amenity": "post_box", - "collection_plate": "(uncoded)", - "collection_times": "Mo-Fr 18:30; Sa off", - "historic_operator": "(none)", - "note": "This meter box is very dirty, rusty, and unkempt. It still seems to be in use, though", - "opening_hours": "Mo-Fr 08:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WR9 519", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1259333079, - "lat": 52.2597481, - "lon": -2.1724960, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259338441, - "lat": 52.2751382, - "lon": -2.1542495, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "Post Office", - "note": "Very small box for a PDO.", - "post_box:type": "lamp", - "ref": "WR9 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259346331, - "lat": 52.2732736, - "lon": -2.1570965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "historic_operator": "(none)", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WR9 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259352024, - "lat": 52.2698527, - "lon": -2.1533644, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259433634, - "lat": 51.2731990, - "lon": -0.1516300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259440478, - "lat": 51.2650841, - "lon": -0.1516630, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH1 189", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1259445219, - "lat": 51.2635120, - "lon": -0.1520650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 310" - } -}, -{ - "type": "node", - "id": 1259590181, - "lat": 53.7816075, - "lon": -2.7420763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 457" - } -}, -{ - "type": "node", - "id": 1259624624, - "lat": 51.5980609, - "lon": -4.0024552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA3 72", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259633158, - "lat": 54.3720277, - "lon": -6.5510047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT61 88" - } -}, -{ - "type": "node", - "id": 1259814541, - "lat": 50.9001598, - "lon": -1.3943974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8ND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 782D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259814543, - "lat": 50.9019351, - "lon": -1.4109748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 667D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259832025, - "lat": 53.0178407, - "lon": -1.3152125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259832771, - "lat": 53.0176566, - "lon": -1.3085183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG16 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259833222, - "lat": 53.0198170, - "lon": -1.3187762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG16 340", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259896394, - "lat": 55.9604714, - "lon": -3.2953897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 489", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259906234, - "lat": 56.3559141, - "lon": -3.3474988, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-05-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 213D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1259906238, - "lat": 56.3652450, - "lon": -3.3643368, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH2 140D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1259945739, - "lat": 52.2892660, - "lon": -0.5971305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1259956452, - "lat": 51.3230841, - "lon": 0.4394827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME6 356" - } -}, -{ - "type": "node", - "id": 1259984629, - "lat": 53.0256796, - "lon": -1.3312991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG16 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1259988652, - "lat": 54.6618006, - "lon": -1.6504721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "fixme": "Believe this postbox is further north, survey postbox to north ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 9" - } -}, -{ - "type": "node", - "id": 1259993473, - "lat": 51.3361845, - "lon": 0.4428859, - "tags": { - "amenity": "post_box", - "ref": "ME6 130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1260013959, - "lat": 53.1134579, - "lon": -3.3160550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL15 13D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1260024088, - "lat": 53.0163844, - "lon": -1.3284726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1260033126, - "lat": 52.8133252, - "lon": -2.1252647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 1606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1260033141, - "lat": 52.8130699, - "lon": -2.1139555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST16 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1260086222, - "lat": 53.2388509, - "lon": -1.7979498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1260086232, - "lat": 53.2447577, - "lon": -1.8094950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1260222299, - "lat": 50.2860778, - "lon": -4.8133183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "fixme": "Resurvey to get exact position. Still can't quite place it!", - "image": "https://archive.org/details/heligan-2021-09-15/DSCN6583.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co Ltd Derby", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL26 229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1260255476, - "lat": 51.4368318, - "lon": -0.9089885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "note sure of the type - its built into a brick pillar.", - "operator": "Royal Mail", - "ref": "RG6 488D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1260271694, - "lat": 53.0203459, - "lon": -1.3296347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG16 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1260273371, - "lat": 52.1928277, - "lon": -2.0310771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WR7 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1260603994, - "lat": 50.9459763, - "lon": -1.2814228, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "collection_times_checked": "2020-01-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO32 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1260604533, - "lat": 50.9352810, - "lon": -1.2622722, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO32 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1260633354, - "lat": 52.2842742, - "lon": -2.1673044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "reference is conjectural", - "post_box:type": "meter", - "ref": "WR9 524" - } -}, -{ - "type": "node", - "id": 1260636370, - "lat": 52.2852191, - "lon": -2.1662370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR9 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1260686022, - "lat": 52.3256307, - "lon": -2.1587372, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural", - "post_box:type": "lamp", - "ref": "WR9 438" - } -}, -{ - "type": "node", - "id": 1260696539, - "lat": 52.2897709, - "lon": -2.1133277, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural", - "post_box:type": "lamp", - "ref": "WR9 167" - } -}, -{ - "type": "node", - "id": 1260702912, - "lat": 51.5749847, - "lon": -4.0153537, - "tags": { - "amenity": "post_box", - "fixme": "Approx location based on knowledge" - } -}, -{ - "type": "node", - "id": 1260741934, - "lat": 51.5777380, - "lon": -4.0180068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "post_box:type": "lamp", - "ref": "SA3 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1261090754, - "lat": 52.7415329, - "lon": -1.4652891, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1261187901, - "lat": 52.7531426, - "lon": -1.4521828, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1261328852, - "lat": 52.4241858, - "lon": -3.9850213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 193" - } -}, -{ - "type": "node", - "id": 1261379619, - "lat": 51.8840275, - "lon": 0.1077939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "name": "Hadham Hall", - "ref": "SG11 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1261428292, - "lat": 52.7407493, - "lon": -1.4622907, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1261468318, - "lat": 52.1908695, - "lon": -2.0708296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR7 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1261468558, - "lat": 52.1965490, - "lon": -2.0502282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR7 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1262002720, - "lat": 52.2776983, - "lon": -2.1677898, - "tags": { - "amenity": "post_box", - "note": "ref is by conjecture", - "post_box:type": "lamp", - "ref": "WR9 360" - } -}, -{ - "type": "node", - "id": 1262006814, - "lat": 51.4381650, - "lon": 0.2712570, - "tags": { - "amenity": "post_box", - "ref": "DA9 427" - } -}, -{ - "type": "node", - "id": 1262094293, - "lat": 50.3382186, - "lon": -4.5539927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "ref": "PL13 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1262094294, - "lat": 50.3397989, - "lon": -4.7598252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL25 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 1262320475, - "lat": 52.1887941, - "lon": -2.0887709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR7 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1262553882, - "lat": 52.7655933, - "lon": -1.2138683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1262598722, - "lat": 52.7802174, - "lon": -1.3953383, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1262638649, - "lat": 52.2115825, - "lon": -1.9790462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "ref": "WR7 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1262639097, - "lat": 52.2173574, - "lon": -1.9794607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "WR7 494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1262639142, - "lat": 52.2145396, - "lon": -1.9831681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "WR7 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1263122435, - "lat": 52.4086894, - "lon": -3.8529936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1263122441, - "lat": 52.4109496, - "lon": -3.8392489, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 169" - } -}, -{ - "type": "node", - "id": 1263230184, - "lat": 52.9475556, - "lon": -1.1469418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG1 160", - "ref:GB:uprn": "10015703959", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1263617077, - "lat": 50.8218559, - "lon": -0.1300734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1263645292, - "lat": 50.8434396, - "lon": -0.1515235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1263645293, - "lat": 50.8439747, - "lon": -0.1462836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 285D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1263669310, - "lat": 50.8368731, - "lon": -0.1334309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1263720251, - "lat": 50.3380107, - "lon": -4.6807816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL24 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1264198115, - "lat": 51.7717331, - "lon": -1.5753329, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 1264366612, - "lat": 51.4489677, - "lon": 0.0444491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264366615, - "lat": 51.4667177, - "lon": 0.0526117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1264366616, - "lat": 51.4599388, - "lon": 0.0494508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1264366619, - "lat": 51.4507271, - "lon": 0.0586823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1264366620, - "lat": 51.4601233, - "lon": 0.0519066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264366621, - "lat": 51.4511987, - "lon": 0.0522894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264389194, - "lat": 51.4253343, - "lon": 0.0431493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1264389195, - "lat": 51.4369637, - "lon": 0.0585664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264389196, - "lat": 51.4384892, - "lon": 0.0460256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE9 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264389199, - "lat": 51.4370467, - "lon": 0.0498184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264389201, - "lat": 51.4312536, - "lon": 0.0707605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE9 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264389204, - "lat": 51.4412741, - "lon": 0.0472564, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "No collection plate on 05/04/2021 - unable to confirm times and ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400458, - "lat": 51.4273221, - "lon": 0.0344334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400459, - "lat": 51.4315556, - "lon": 0.0259377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "note": "ref illegible on collection plate on 25/4/21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE12 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400460, - "lat": 51.4425175, - "lon": 0.0186290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400461, - "lat": 51.4471366, - "lon": 0.0266235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400462, - "lat": 51.4316559, - "lon": 0.0304046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1264400463, - "lat": 51.4421475, - "lon": 0.0232842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400464, - "lat": 51.4295694, - "lon": 0.0322077, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "Missing collection plate on 21/03/2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400465, - "lat": 51.4396345, - "lon": 0.0266070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400466, - "lat": 51.4459430, - "lon": 0.0174096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1264400467, - "lat": 51.4304206, - "lon": 0.0211145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400468, - "lat": 51.4385095, - "lon": 0.0170488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400469, - "lat": 51.4460191, - "lon": 0.0083895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400470, - "lat": 51.4436933, - "lon": 0.0149586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264400572, - "lat": 51.4575685, - "lon": 0.0266701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264454510, - "lat": 51.0602228, - "lon": -2.1209001, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP3 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1264696215, - "lat": 51.5166704, - "lon": -0.1459846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:franked": "no", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 28;W1G 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264696242, - "lat": 51.5161670, - "lon": -0.1437403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W1G 117P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264696247, - "lat": 51.5161435, - "lon": -0.1457210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:franked": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W1G 118P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264806953, - "lat": 52.9620245, - "lon": -1.1511356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG1 58", - "ref:GB:uprn": "10015444036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;photographic_survey" - } -}, -{ - "type": "node", - "id": 1264873509, - "lat": 51.5163183, - "lon": -0.1440244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W1G 27;W1G 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264926816, - "lat": 53.5569673, - "lon": -0.0265095, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/pXddwpyw/DN35-80D.jpg", - "location": "Cambridge Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1264990311, - "lat": 53.4213796, - "lon": -2.3085309, - "tags": { - "amenity": "post_box", - "ref": "M33 134" - } -}, -{ - "type": "node", - "id": 1264990313, - "lat": 53.4177305, - "lon": -2.3192051, - "tags": { - "amenity": "post_box", - "ref": "M33 262" - } -}, -{ - "type": "node", - "id": 1264990357, - "lat": 53.4217850, - "lon": -2.3161889, - "tags": { - "amenity": "post_box", - "ref": "M33 137" - } -}, -{ - "type": "node", - "id": 1264990395, - "lat": 53.4197817, - "lon": -2.3231170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M33 271" - } -}, -{ - "type": "node", - "id": 1265955483, - "lat": 53.0110388, - "lon": -1.3345016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "post_box:type": "wall", - "ref": "DE75 642", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1266049026, - "lat": 53.4105248, - "lon": -2.3074500, - "tags": { - "amenity": "post_box", - "ref": "M33 13" - } -}, -{ - "type": "node", - "id": 1266049096, - "lat": 53.4124982, - "lon": -2.3204146, - "tags": { - "amenity": "post_box", - "ref": "M33 11" - } -}, -{ - "type": "node", - "id": 1266049164, - "lat": 53.4105635, - "lon": -2.3135194, - "tags": { - "amenity": "post_box", - "ref": "M33 686" - } -}, -{ - "type": "node", - "id": 1266049167, - "lat": 53.4134804, - "lon": -2.3083923, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M33 528" - } -}, -{ - "type": "node", - "id": 1266619598, - "lat": 51.5750392, - "lon": -0.0960125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1267276317, - "lat": 51.3741313, - "lon": 0.5494157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1267327917, - "lat": 54.6892137, - "lon": -1.5564250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL17 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1267409862, - "lat": 52.9572467, - "lon": -1.1451089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG1 102D", - "ref:GB:uprn": "10015427528", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1267543353, - "lat": 50.9621453, - "lon": -0.5056334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH20 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1268200276, - "lat": 53.4174948, - "lon": -2.2877660, - "tags": { - "amenity": "post_box", - "ref": "M33 99" - } -}, -{ - "type": "node", - "id": 1268268679, - "lat": 53.2816776, - "lon": -3.5938597, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1268268991, - "lat": 53.2795377, - "lon": -3.5854236, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1268443577, - "lat": 51.4548447, - "lon": 0.7146736, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1268449202, - "lat": 51.4668258, - "lon": 0.6416150, - "tags": { - "amenity": "post_box", - "note": "ref obscured", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1268490576, - "lat": 53.8140912, - "lon": -3.0445994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1268592791, - "lat": 53.8067267, - "lon": -3.0341832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1268682080, - "lat": 51.4835812, - "lon": -0.1749798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW3 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1268812663, - "lat": 53.0116272, - "lon": -1.6692908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "ele": "170.0000000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE6 829" - } -}, -{ - "type": "node", - "id": 1268970035, - "lat": 51.5506737, - "lon": -0.1457850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "colour": "red", - "manufacturer:wikidata": "Q125385728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW5 181;NW5 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW5 181 and NW5 18" - } -}, -{ - "type": "node", - "id": 1269214890, - "lat": 51.7120761, - "lon": -0.5554491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP3 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 1269292473, - "lat": 50.9071616, - "lon": -1.4054535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 148D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1269541962, - "lat": 51.2155990, - "lon": -0.2389123, - "tags": { - "amenity": "post_box", - "ref": "RH2 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1269749361, - "lat": 52.2137374, - "lon": -0.7793397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270101415, - "lat": 51.0774850, - "lon": -1.1155826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270106127, - "lat": 54.5223113, - "lon": -1.5572614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "name": "Victoria Road Box Vets", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DL1 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1270124637, - "lat": 51.4878853, - "lon": -0.1777818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW10 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270157901, - "lat": 53.7204126, - "lon": -1.4609408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF3 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270192927, - "lat": 51.4594737, - "lon": -0.1128460, - "tags": { - "amenity": "post_box", - "description": "1869 Penfold", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW2 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27082235" - } -}, -{ - "type": "node", - "id": 1270221923, - "lat": 52.9629334, - "lon": -1.1456059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 506D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1270238504, - "lat": 51.9930911, - "lon": -1.5824263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CV36 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1270253722, - "lat": 52.0095554, - "lon": -1.5430497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV36 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1270296207, - "lat": 52.0617317, - "lon": -1.4857640, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX15 1081", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1270332526, - "lat": 52.9634926, - "lon": -1.0779581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG4 448", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1270362883, - "lat": 57.2646544, - "lon": -3.6439589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "post_box:type": "lamp", - "ref": "PH25 18", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1270448484, - "lat": 52.2652223, - "lon": -2.1474817, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270456146, - "lat": 52.2658156, - "lon": -2.1387289, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR9 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270471540, - "lat": 52.2702587, - "lon": -2.1470136, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270516788, - "lat": 51.8512631, - "lon": -1.4298092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX29 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270517011, - "lat": 51.8507508, - "lon": -1.4317690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX29 724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270517424, - "lat": 51.8523453, - "lon": -1.4329571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "OX29 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270528916, - "lat": 50.9510094, - "lon": 0.7333184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN31 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270528921, - "lat": 50.9517596, - "lon": 0.7313901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN31 9991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270528922, - "lat": 50.9495025, - "lon": 0.7280404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN31 33" - } -}, -{ - "type": "node", - "id": 1270571214, - "lat": 50.9312061, - "lon": -1.0813761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1270594566, - "lat": 52.4345949, - "lon": -4.0094717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 113" - } -}, -{ - "type": "node", - "id": 1270938704, - "lat": 50.9821658, - "lon": 0.7301974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1270939139, - "lat": 50.9761408, - "lon": 0.7270424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1271072730, - "lat": 51.8722258, - "lon": -1.4841390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX7 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1271117471, - "lat": 50.8217358, - "lon": -0.1502857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1271117472, - "lat": 50.8247337, - "lon": -0.1508447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271117473, - "lat": 50.8258493, - "lon": -0.1606161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "note": "On OSM this postbox was described as ref BN1 5 but when I used it on 21.05.2019 the ref of this postbox is BN3 5.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1271117474, - "lat": 50.8212040, - "lon": -0.1468930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1271117475, - "lat": 50.8222757, - "lon": -0.1536454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1271119225, - "lat": 50.8247930, - "lon": -0.1529364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "national_standard", - "post_box:type": "pillar", - "ref": "BN1 3", - "royal_cypher": "no", - "wikidata": "Q26661695" - } -}, -{ - "type": "node", - "id": 1271155623, - "lat": 50.1512970, - "lon": -5.0642346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR11 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1271155624, - "lat": 50.1537134, - "lon": -5.0679664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR11 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1271183882, - "lat": 53.7086761, - "lon": -1.9109976, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271183997, - "lat": 53.6876098, - "lon": -1.9357701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX6 47" - } -}, -{ - "type": "node", - "id": 1271184306, - "lat": 53.6760602, - "lon": -1.9396218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX6 297" - } -}, -{ - "type": "node", - "id": 1271184308, - "lat": 53.6813830, - "lon": -1.9353731, - "tags": { - "amenity": "post_box", - "ref": "HX6 168" - } -}, -{ - "type": "node", - "id": 1271190043, - "lat": 50.8259557, - "lon": -0.1359555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BN1 16" - } -}, -{ - "type": "node", - "id": 1271190044, - "lat": 50.8246002, - "lon": -0.1355486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "note": "this is the correct position, even though Royal Mail data disagrees. When I used this postbox on 27.08.2017 it is numbered BN2 26 so must have been renumbered from BN1 26.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271195046, - "lat": 50.8329607, - "lon": -0.1347807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271215585, - "lat": 50.8224819, - "lon": -0.1415435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "note": "RH plate blank", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BN1 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1271215588, - "lat": 50.8200235, - "lon": -0.1380232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-11-17", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 365D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1271231290, - "lat": 50.9613924, - "lon": -1.3696588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;local_knowledge" - } -}, -{ - "type": "node", - "id": 1271399173, - "lat": 51.4839599, - "lon": -0.1766727, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "manufacturer": "Machan Eng Scotland 1996", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW3 173;SW3 73", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1271490922, - "lat": 52.2692626, - "lon": -2.0795986, - "tags": { - "amenity": "post_box", - "note": "This appears to be the Hanbury Hall box", - "note2": "Have to go and check this one's still present !", - "post_box:type": "lamp", - "ref": "WR9 456" - } -}, -{ - "type": "node", - "id": 1271599638, - "lat": 51.5888717, - "lon": -0.1391150, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271599639, - "lat": 51.5905387, - "lon": -0.1433572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:45", - "mapillary": "5467628766601039", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 1271599641, - "lat": 51.5782129, - "lon": -0.1472015, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "mapillary": "373256424778415", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 1271599642, - "lat": 51.5841370, - "lon": -0.1422863, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1271599643, - "lat": 51.5864319, - "lon": -0.1410351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1271599644, - "lat": 51.5866406, - "lon": -0.1366821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271599646, - "lat": 51.5904585, - "lon": -0.1392525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271599648, - "lat": 51.5859857, - "lon": -0.1471491, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1271602610, - "lat": 51.6052560, - "lon": -0.1489592, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271602614, - "lat": 51.6040635, - "lon": -0.1461468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271602617, - "lat": 51.6036301, - "lon": -0.1504402, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-31", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271602618, - "lat": 51.5909339, - "lon": -0.1480202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1271602619, - "lat": 51.5996794, - "lon": -0.1475282, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-07", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1271602621, - "lat": 51.5974404, - "lon": -0.1559192, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271607543, - "lat": 51.5960660, - "lon": -0.1362943, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271607544, - "lat": 51.6000672, - "lon": -0.1446790, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271607553, - "lat": 51.5952168, - "lon": -0.1323221, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1271607555, - "lat": 51.5984976, - "lon": -0.1384647, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N10 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1271624675, - "lat": 50.8426420, - "lon": -0.2730990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1524D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271838646, - "lat": 51.6512777, - "lon": -4.0402145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA4 471D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1271973031, - "lat": 50.8434076, - "lon": -0.9925448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PO9 1631;PO9 1632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1272034278, - "lat": 52.2825333, - "lon": -2.2294724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR9 370", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1272056752, - "lat": 52.3251571, - "lon": -2.1370322, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural and may have been nicked by now. Need to look again.", - "post_box:type": "lamp", - "ref": "WR9 464" - } -}, -{ - "type": "node", - "id": 1272310668, - "lat": 51.2796443, - "lon": -0.3750551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT23 35;KT23 3501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1272340751, - "lat": 51.6668931, - "lon": -0.4175983, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1272379969, - "lat": 50.5335450, - "lon": -3.6019613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ12 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1272380832, - "lat": 55.9888425, - "lon": -3.6982736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "FK2 32" - } -}, -{ - "type": "node", - "id": 1272527785, - "lat": 53.0127065, - "lon": -0.9096396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG23 102" - } -}, -{ - "type": "node", - "id": 1272527817, - "lat": 53.0188811, - "lon": -0.8877525, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NG23 99", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1272542188, - "lat": 53.4229370, - "lon": -2.2969554, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M33 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1272590339, - "lat": 51.5713342, - "lon": -0.0056639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1272590340, - "lat": 51.5712748, - "lon": 0.0003344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1272590341, - "lat": 51.5710607, - "lon": -0.0085109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E10 11;E10 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1272590342, - "lat": 51.5731638, - "lon": -0.0006725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1272590343, - "lat": 51.5697381, - "lon": 0.0080731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1272590344, - "lat": 51.5710431, - "lon": -0.0085081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "mapillary": "467920427618270", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E10 25P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1272592590, - "lat": 52.2300378, - "lon": -1.9659165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "B96 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1272895337, - "lat": 50.8268696, - "lon": -1.0475558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO3 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1272909836, - "lat": 50.5937989, - "lon": -3.5845445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1273504250, - "lat": 56.5361129, - "lon": -5.7768037, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "PA34 1111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1273549936, - "lat": 52.2514327, - "lon": -2.1370547, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR9 401" - } -}, -{ - "type": "node", - "id": 1273649338, - "lat": 51.5780365, - "lon": 0.6227021, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1273649359, - "lat": 51.5768166, - "lon": 0.6287669, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1273697866, - "lat": 50.3267823, - "lon": -4.6321312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL23 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1273698167, - "lat": 50.3292512, - "lon": -4.6348690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL23 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-23" - } -}, -{ - "type": "node", - "id": 1273698205, - "lat": 50.3279356, - "lon": -4.6365091, - "tags": { - "amenity": "post_box", - "ref": "PL23 161" - } -}, -{ - "type": "node", - "id": 1274103407, - "lat": 50.8207010, - "lon": -0.1329278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1274103411, - "lat": 50.8189934, - "lon": -0.1296849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BN2 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1274103414, - "lat": 50.8286508, - "lon": -0.1440713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 142D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1274106509, - "lat": 50.8239813, - "lon": -0.1388535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1274290348, - "lat": 50.7812810, - "lon": -1.0760805, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 161D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1274316475, - "lat": 50.8215100, - "lon": -0.1380189, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-23", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1274482934, - "lat": 50.8350046, - "lon": -0.1707472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1274547431, - "lat": 50.7868700, - "lon": -3.5244571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1274563103, - "lat": 53.3617388, - "lon": 0.0026291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1274638017, - "lat": 52.6231163, - "lon": -1.6975387, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1274641916, - "lat": 53.3606843, - "lon": 0.0102579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan, Scotland", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1274827716, - "lat": 52.6175256, - "lon": -1.7222933, - "tags": { - "amenity": "post_box", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1274827779, - "lat": 52.6157725, - "lon": -1.7073618, - "tags": { - "amenity": "post_box", - "postal_code": "B78", - "ref": "B78 1257", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1275485271, - "lat": 52.6413523, - "lon": -1.7247907, - "tags": { - "amenity": "post_box", - "postal_code": "B79", - "ref": "B79 1327", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1275485381, - "lat": 52.6383529, - "lon": -1.7195120, - "tags": { - "amenity": "post_box", - "postal_code": "B79", - "ref": "B79 1423", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1275616130, - "lat": 51.4851797, - "lon": -0.1820967, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-25", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW10 11;SW10 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1275729130, - "lat": 52.3087396, - "lon": -2.1493600, - "tags": { - "amenity": "post_box", - "note": "Needs manual revisiting.", - "post_box:type": "wall", - "ref": "WR9 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1275739671, - "lat": 51.4897290, - "lon": -0.1733386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 36", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1275775960, - "lat": 51.5718277, - "lon": 0.6646485, - "tags": { - "amenity": "post_box", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 1275781134, - "lat": 55.8641059, - "lon": -4.2853023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "ref": "G3 834" - } -}, -{ - "type": "node", - "id": 1275961577, - "lat": 50.8407692, - "lon": -0.1652553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN3 241", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 241D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1275961630, - "lat": 50.8345764, - "lon": -0.1735808, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-02-04", - "old_ref": "BN3 98", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 98D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1276142462, - "lat": 51.5014031, - "lon": -0.8695462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG10 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276142484, - "lat": 51.5198435, - "lon": -0.8727346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "operator": "Royal Mail", - "ref": "RG10 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276210996, - "lat": 52.2695441, - "lon": -2.1610894, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR9 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276244952, - "lat": 52.6150738, - "lon": -1.6877387, - "tags": { - "amenity": "post_box", - "fixme": "location approx", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B77 164", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1276271465, - "lat": 53.7784084, - "lon": -1.5286639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "LS10 390;LS10 1390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276271466, - "lat": 53.7794751, - "lon": -1.5299504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 1000" - } -}, -{ - "type": "node", - "id": 1276286773, - "lat": 52.8209236, - "lon": -1.8798811, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WS15 400" - } -}, -{ - "type": "node", - "id": 1276400748, - "lat": 53.6876985, - "lon": -1.6558169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF13 7" - } -}, -{ - "type": "node", - "id": 1276544038, - "lat": 51.5547450, - "lon": -0.1204108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 13" - } -}, -{ - "type": "node", - "id": 1276544039, - "lat": 51.5613600, - "lon": -0.1129141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276544047, - "lat": 51.5506504, - "lon": -0.1313083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "mapillary": "3216170661945990", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW5 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 32D" - } -}, -{ - "type": "node", - "id": 1276544048, - "lat": 51.5622018, - "lon": -0.1102014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1276544051, - "lat": 51.5554324, - "lon": -0.1321623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "fixme": "Check ref: nodes 306568707 and 1276544051 both have the same value", - "mapillary": "2194033377414258", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 16", - "royal_cypher": "no", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 1276544059, - "lat": 51.5526031, - "lon": -0.1330528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q125385728", - "mapillary": "253098003265534", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 4D" - } -}, -{ - "type": "node", - "id": 1276544060, - "lat": 51.5494214, - "lon": -0.1298233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "154351093366633", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 36", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-01-25" - } -}, -{ - "type": "node", - "id": 1276544061, - "lat": 51.5589179, - "lon": -0.1096949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 4" - } -}, -{ - "type": "node", - "id": 1276544070, - "lat": 51.5634150, - "lon": -0.1118618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 6" - } -}, -{ - "type": "node", - "id": 1276623033, - "lat": 51.1384658, - "lon": 0.2610110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN4 76D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1276623035, - "lat": 51.1421836, - "lon": 0.2568959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276836681, - "lat": 53.7865409, - "lon": -3.0580415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY4 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276836725, - "lat": 53.7835077, - "lon": -3.0559417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY4 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276836727, - "lat": 53.7798930, - "lon": -3.0573926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY4 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276848886, - "lat": 51.4937495, - "lon": -0.1608602, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd London & Falkirk", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 93D;SW1X 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1276870327, - "lat": 53.7791049, - "lon": -3.0459679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1276870339, - "lat": 53.7822727, - "lon": -3.0467209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1276913445, - "lat": 52.6427693, - "lon": -1.6865273, - "tags": { - "amenity": "post_box", - "ref": "B79 1277" - } -}, -{ - "type": "node", - "id": 1277065531, - "lat": 51.1355240, - "lon": 0.2607133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN4 80D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1277108551, - "lat": 51.4845416, - "lon": -0.1865709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "indoor": "no", - "note": "Check position.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 9", - "royal_cypher": "EIIR", - "source": "survey; Bing" - } -}, -{ - "type": "node", - "id": 1277252747, - "lat": 52.6426281, - "lon": -1.6936663, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1277252816, - "lat": 52.6476242, - "lon": -1.6880841, - "tags": { - "amenity": "post_box", - "ref": "B79 1220" - } -}, -{ - "type": "node", - "id": 1277500782, - "lat": 51.5832800, - "lon": -2.3250935, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL9 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1277539721, - "lat": 54.6897432, - "lon": -1.5576488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DL17 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1277587465, - "lat": 55.8828150, - "lon": -4.3029314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "ref": "G12 671" - } -}, -{ - "type": "node", - "id": 1277591812, - "lat": 55.8832841, - "lon": -4.2964826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "ref": "G12 411" - } -}, -{ - "type": "node", - "id": 1278028073, - "lat": 50.7944642, - "lon": -1.0902130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 305", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1278076819, - "lat": 51.4821682, - "lon": -3.1485813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:manufacturer": "A. Handyside and Co. Ltd", - "post_box:type": "pillar", - "ref": "CF24 161", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1278233957, - "lat": 51.4938477, - "lon": -0.1292039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-03-29", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "SW1P 55;SW1P 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1278277668, - "lat": 52.6364285, - "lon": -1.6938659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B79 1208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1278422190, - "lat": 52.6329727, - "lon": -1.6989860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B79 1388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1278552703, - "lat": 50.1827750, - "lon": -5.5930618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR26 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1278559448, - "lat": 52.6339309, - "lon": -1.7005715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "mail:meter": "yes", - "mail:stamped": "no", - "note": "Franked mail only post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B79 9021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1278747932, - "lat": 53.4553849, - "lon": -2.2925175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M32 218" - } -}, -{ - "type": "node", - "id": 1278748076, - "lat": 53.4458292, - "lon": -2.3044941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "Postbox M32 149 - Metrolink Station (In Wall), Edge Lane / Chester Road, M32 8HW", - "mapillary": "179701514034175", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "M32 149", - "survey:date": "2020-09-27" - } -}, -{ - "type": "node", - "id": 1278748128, - "lat": 53.4525164, - "lon": -2.2956149, - "tags": { - "amenity": "post_box", - "ref": "M32 408" - } -}, -{ - "type": "node", - "id": 1278748223, - "lat": 53.4531251, - "lon": -2.2872850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "M32 74" - } -}, -{ - "type": "node", - "id": 1279096803, - "lat": 52.2713347, - "lon": -2.1675194, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural; need to visit again", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WR9 507" - } -}, -{ - "type": "node", - "id": 1279114343, - "lat": 52.2753664, - "lon": -2.1645590, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural; need to visit again", - "post_box:type": "pillar", - "ref": "WR9 499" - } -}, -{ - "type": "node", - "id": 1279357410, - "lat": 51.2952371, - "lon": -0.3297044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT22 75;KT22 7501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "P174-0152" - } -}, -{ - "type": "node", - "id": 1279457978, - "lat": 52.6330829, - "lon": -1.6938352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "Ref unreadable", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B78 1216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1279458059, - "lat": 52.6338842, - "lon": -1.6940799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B79 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1279458128, - "lat": 52.6338685, - "lon": -1.6941046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B79 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1279630537, - "lat": 54.6887463, - "lon": -1.5520901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL17 177" - } -}, -{ - "type": "node", - "id": 1279638094, - "lat": 57.1143427, - "lon": -2.1886339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1279777432, - "lat": 53.4494572, - "lon": -2.2966093, - "tags": { - "amenity": "post_box", - "ref": "M32 496" - } -}, -{ - "type": "node", - "id": 1279868547, - "lat": 53.4560712, - "lon": -2.3017279, - "tags": { - "amenity": "post_box", - "ref": "M32 405" - } -}, -{ - "type": "node", - "id": 1279868580, - "lat": 53.4561705, - "lon": -2.2970777, - "tags": { - "amenity": "post_box", - "ref": "M32 152" - } -}, -{ - "type": "node", - "id": 1279869963, - "lat": 53.4595241, - "lon": -2.2958406, - "tags": { - "amenity": "post_box", - "ref": "M32 519" - } -}, -{ - "type": "node", - "id": 1279869965, - "lat": 53.4612430, - "lon": -2.2889968, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M32 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1280134379, - "lat": 53.9495840, - "lon": -1.3149441, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LS22 461", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1280272349, - "lat": 51.4926056, - "lon": -0.1339477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-03-29", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 70;SW1P 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1280395400, - "lat": 50.8169775, - "lon": -0.1189318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-02-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 38", - "survey:date": "2022-01-04", - "wikimedia_commons": "File:Marine Parade - Paston Place. BN2 - geograph.org.uk - 2996022.jpg" - } -}, -{ - "type": "node", - "id": 1280395403, - "lat": 50.8166455, - "lon": -0.1123248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1280395406, - "lat": 50.8198643, - "lon": -0.1301636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1280395421, - "lat": 50.8177207, - "lon": -0.1227846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1280395424, - "lat": 50.8164080, - "lon": -0.1155063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1280560556, - "lat": 56.4016436, - "lon": -3.4707133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 215D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1280568850, - "lat": 56.3978589, - "lon": -3.4772875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 50D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1280722333, - "lat": 55.9445793, - "lon": -3.0987358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "138119561674025", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH15 502", - "survey:date": "2021-01-23" - } -}, -{ - "type": "node", - "id": 1280848277, - "lat": 51.5822164, - "lon": -0.1199177, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N8 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1280848278, - "lat": 51.5866767, - "lon": -0.1169828, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N8 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "support": "ground" - } -}, -{ - "type": "node", - "id": 1280848279, - "lat": 51.5845472, - "lon": -0.1002201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N8 31" - } -}, -{ - "type": "node", - "id": 1280848287, - "lat": 51.5910765, - "lon": -0.1084194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 4" - } -}, -{ - "type": "node", - "id": 1280848288, - "lat": 51.5872671, - "lon": -0.1205621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1280848292, - "lat": 51.5891568, - "lon": -0.1087517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 36" - } -}, -{ - "type": "node", - "id": 1280848298, - "lat": 51.5811119, - "lon": -0.1257740, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N8 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1280848301, - "lat": 51.5773406, - "lon": -0.1152535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1280848306, - "lat": 51.5760245, - "lon": -0.1290505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1280848310, - "lat": 51.5818953, - "lon": -0.1285112, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1280848312, - "lat": 51.5765538, - "lon": -0.1125681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 6" - } -}, -{ - "type": "node", - "id": 1280848315, - "lat": 51.5797156, - "lon": -0.1321227, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 15", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1281001929, - "lat": 53.3676578, - "lon": -2.5720337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Bridge Lane shops", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1281216395, - "lat": 50.7891977, - "lon": -1.0737468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 81", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1281216397, - "lat": 50.7902676, - "lon": -1.0784867, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO5 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1281216398, - "lat": 50.7868137, - "lon": -1.0849972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO5 98D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1281334007, - "lat": 50.9223665, - "lon": -3.3271096, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1281680770, - "lat": 51.1129776, - "lon": 0.1416481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "ref": "TN7 174" - } -}, -{ - "type": "node", - "id": 1281828952, - "lat": 51.0221094, - "lon": 0.1018748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "ref": "TN22 46" - } -}, -{ - "type": "node", - "id": 1281857625, - "lat": 50.8254113, - "lon": -0.1480628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1281857626, - "lat": 50.8252155, - "lon": -0.1546896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1282626901, - "lat": 53.4817704, - "lon": -1.5896097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "post_box:type": "pillar", - "ref": "S36 582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1283317285, - "lat": 51.5750045, - "lon": -0.1351855, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-17", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1283317291, - "lat": 51.5782571, - "lon": -0.1414074, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-10", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283317295, - "lat": 51.5752906, - "lon": -0.1443076, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1283317301, - "lat": 51.5729563, - "lon": -0.1334687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283317314, - "lat": 51.5711224, - "lon": -0.1413118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 12", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1283317323, - "lat": 51.5741634, - "lon": -0.1459901, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-21", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1283317327, - "lat": 51.5729885, - "lon": -0.1366241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1283317333, - "lat": 51.5732584, - "lon": -0.1432242, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-21", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1283317343, - "lat": 51.5727246, - "lon": -0.1402922, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-11", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "mapillary": "563642991842408", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 1283345410, - "lat": 51.5716010, - "lon": -0.1512414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "N6 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:United Kingdom post box N6 2D" - } -}, -{ - "type": "node", - "id": 1283345419, - "lat": 51.5763727, - "lon": -0.1584882, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-17", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1283345434, - "lat": 51.5821935, - "lon": -0.1576386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N2 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283345438, - "lat": 51.5791273, - "lon": -0.1560727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283345441, - "lat": 51.5682541, - "lon": -0.1575801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283345445, - "lat": 51.5730460, - "lon": -0.1615064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283345456, - "lat": 51.5840700, - "lon": -0.1572578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283345461, - "lat": 51.5780285, - "lon": -0.1481071, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-19", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1283345463, - "lat": 51.5751323, - "lon": -0.1628115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1283345468, - "lat": 51.5859422, - "lon": -0.1537261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1283345481, - "lat": 51.5718495, - "lon": -0.1489774, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N6 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1283357649, - "lat": 51.0747186, - "lon": -0.7993141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "last_checked": "2020-08-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU30 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1283415230, - "lat": 50.9990414, - "lon": -0.7854424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-04-30", - "note": "Collection plate formerly CP7 but it is now CP7D.", - "old_ref": "GU29 34", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU29 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1283415247, - "lat": 53.4911839, - "lon": -1.5760851, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-07-19", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S35 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1283418599, - "lat": 52.0748734, - "lon": -0.6279494, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-14", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "MK43 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1283954703, - "lat": 50.8535940, - "lon": -1.1583920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "ref": "PO16 113" - } -}, -{ - "type": "node", - "id": 1284965444, - "lat": 52.8389174, - "lon": -1.3378745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE74 726", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1284965589, - "lat": 52.8401882, - "lon": -1.3383119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal cypher as written on box is ER not EVIIR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "DE74 185D", - "royal_cypher": "ER", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1284965679, - "lat": 52.8378896, - "lon": -1.3443821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W T Allen & Co, London, SE1", - "post_box:type": "wall", - "ref": "DE74 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1285029025, - "lat": 52.1423347, - "lon": -0.4338162, - "tags": { - "amenity": "post_box", - "ref": "MK41 307" - } -}, -{ - "type": "node", - "id": 1285062172, - "lat": 52.8566683, - "lon": 1.0385477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1285225888, - "lat": 52.8413960, - "lon": -1.3485606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE74 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1285470911, - "lat": 52.9696187, - "lon": -1.8512816, - "tags": { - "amenity": "post_box", - "ele": "89.0000000", - "post_box:type": "lamp", - "ref": "ST14 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1285969329, - "lat": 52.0577142, - "lon": -4.3422601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "513651646336437", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 1285981604, - "lat": 52.2849858, - "lon": -4.1821966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "746323963290431", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY23 189", - "source:position": "Mapillary 2022-08-14", - "survey:date": "2022-08-14" - } -}, -{ - "type": "node", - "id": 1285981606, - "lat": 52.3159862, - "lon": -4.0564597, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1285981607, - "lat": 52.2857701, - "lon": -4.1134516, - "tags": { - "amenity": "post_box", - "ref": "SY23 55" - } -}, -{ - "type": "node", - "id": 1285981608, - "lat": 52.3057297, - "lon": -4.1442647, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY23 148" - } -}, -{ - "type": "node", - "id": 1285981611, - "lat": 52.2771158, - "lon": -4.1825936, - "tags": { - "amenity": "post_box", - "ref": "SY23 227" - } -}, -{ - "type": "node", - "id": 1285981613, - "lat": 52.2800877, - "lon": -4.1014285, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY23 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1285981618, - "lat": 52.2868694, - "lon": -4.1282306, - "tags": { - "amenity": "post_box", - "ref": "SY23 136" - } -}, -{ - "type": "node", - "id": 1285981622, - "lat": 52.3018729, - "lon": -4.1331980, - "tags": { - "amenity": "post_box", - "ref": "SY23 138" - } -}, -{ - "type": "node", - "id": 1286148542, - "lat": 50.3762887, - "lon": -4.1708957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL1 166D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-08-06" - } -}, -{ - "type": "node", - "id": 1286251112, - "lat": 53.7093471, - "lon": -1.5973897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 27" - } -}, -{ - "type": "node", - "id": 1286468294, - "lat": 51.4830551, - "lon": -0.2003438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1286721292, - "lat": 51.8261301, - "lon": 0.4296736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CM3 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286721378, - "lat": 51.8337203, - "lon": 0.4122983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM6 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286728470, - "lat": 51.8531335, - "lon": 0.3866030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM6 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286739150, - "lat": 53.0227763, - "lon": -1.3375284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286739418, - "lat": 53.0199631, - "lon": -1.3330679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. Ltd, London", - "post_box:type": "wall", - "ref": "NG16 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286786141, - "lat": 51.7332048, - "lon": 0.4775331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CM2 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286897116, - "lat": 51.2661149, - "lon": 0.0686739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN16 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1286897194, - "lat": 51.2560654, - "lon": 0.0159674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH8 48" - } -}, -{ - "type": "node", - "id": 1286897401, - "lat": 51.2607656, - "lon": 0.0350188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH8 269" - } -}, -{ - "type": "node", - "id": 1286947829, - "lat": 52.2434096, - "lon": 0.1106117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "CB24 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge;survey" - } -}, -{ - "type": "node", - "id": 1286969978, - "lat": 53.0218105, - "lon": -1.3429813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG16 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1286976315, - "lat": 51.1784378, - "lon": -3.4041291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "note": "Collection plate worn, no reference visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1286976316, - "lat": 51.1802143, - "lon": -3.3226767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1286976319, - "lat": 51.1728934, - "lon": -3.4179075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286976320, - "lat": 51.1795167, - "lon": -3.3280103, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA23 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1286976321, - "lat": 51.1827569, - "lon": -3.3853639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286976322, - "lat": 51.1228428, - "lon": -3.0266819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1286976327, - "lat": 51.1782491, - "lon": -3.3063449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286976328, - "lat": 51.0662131, - "lon": -3.1859419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "name": "Darby Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286976330, - "lat": 51.1160149, - "lon": -3.0614575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1286984847, - "lat": 51.1228876, - "lon": -3.1130653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286984848, - "lat": 51.1482727, - "lon": -3.2726575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1286984849, - "lat": 51.1303090, - "lon": -3.1244130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1286984852, - "lat": 51.1233790, - "lon": -3.1506737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 140", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1287557409, - "lat": 56.0929362, - "lon": -3.9266103, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1287685006, - "lat": 51.5749896, - "lon": -0.1097470, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "N4 24", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1288028661, - "lat": 52.0097639, - "lon": -0.4258202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 1288038449, - "lat": 52.0631233, - "lon": -0.5482136, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-07", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK43 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1288038457, - "lat": 52.0767617, - "lon": -0.5989929, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-30", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1289024961, - "lat": 51.4767366, - "lon": -3.1518322, - "tags": { - "amenity": "post_box", - "note": "Franked mail only post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CF24 200" - } -}, -{ - "type": "node", - "id": 1289286934, - "lat": 52.0562926, - "lon": -0.5447642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK43 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 1289389718, - "lat": 52.2571593, - "lon": -2.1674840, - "tags": { - "amenity": "post_box", - "note": "reference is conjectural", - "post_box:type": "lamp", - "ref": "WR9 85" - } -}, -{ - "type": "node", - "id": 1289411637, - "lat": 52.2208604, - "lon": -2.1021130, - "tags": { - "amenity": "post_box", - "note": "reference is conjectural", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WR9 364" - } -}, -{ - "type": "node", - "id": 1289450289, - "lat": 51.4758568, - "lon": -0.2431211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1289450292, - "lat": 51.4792000, - "lon": -0.2375238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW13 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1289450295, - "lat": 51.4853163, - "lon": -0.2335350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1289450298, - "lat": 51.4776875, - "lon": -0.2457310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289450312, - "lat": 51.4849102, - "lon": -0.2406990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289450315, - "lat": 51.4851079, - "lon": -0.2429777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289450318, - "lat": 51.4724932, - "lon": -0.2420455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1289450322, - "lat": 51.4718172, - "lon": -0.2370469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1289450326, - "lat": 51.4793103, - "lon": -0.2392290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289450330, - "lat": 51.4665346, - "lon": -0.2529974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289450333, - "lat": 51.4871588, - "lon": -0.2314235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1289450341, - "lat": 51.4830469, - "lon": -0.2411014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1289450346, - "lat": 51.4800659, - "lon": -0.2476241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289450350, - "lat": 51.4667063, - "lon": -0.2358394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW13 8", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1289450354, - "lat": 51.4830919, - "lon": -0.2358447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1289450360, - "lat": 51.4792325, - "lon": -0.2437076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1289587751, - "lat": 51.4964384, - "lon": -0.1938428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "W8 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1290411553, - "lat": 52.2556221, - "lon": -2.1602361, - "tags": { - "amenity": "post_box", - "note": "Need to go back and verify ref", - "post_box:type": "lamp", - "ref": "WR9 466" - } -}, -{ - "type": "node", - "id": 1290614440, - "lat": 51.5820554, - "lon": -0.3585857, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm; Sat 12.45pm", - "ref": "HA2 344" - } -}, -{ - "type": "node", - "id": 1290636455, - "lat": 51.5882402, - "lon": -0.3754317, - "tags": { - "amenity": "post_box", - "last_collection": "5.00pm; Sat 12.45", - "ref": "HA5 300" - } -}, -{ - "type": "node", - "id": 1290677637, - "lat": 51.5979739, - "lon": -0.3913984, - "tags": { - "amenity": "post_box", - "last_collection": "5.15pm; Sat 1pm", - "ref": "HA5 315" - } -}, -{ - "type": "node", - "id": 1290741436, - "lat": 52.2973185, - "lon": -2.1086533, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural", - "post_box:type": "wall", - "ref": "WR9 324" - } -}, -{ - "type": "node", - "id": 1290750193, - "lat": 51.6391205, - "lon": -0.4769463, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm; Sat 12 noon", - "post_box:type": "pillar", - "ref": "WD3 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1290806894, - "lat": 51.6690516, - "lon": -0.5556868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "HP6 109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP6 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1290822941, - "lat": 51.0700508, - "lon": -1.3139266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 58D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1290899323, - "lat": 51.4930763, - "lon": -0.1877804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW5 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27085369" - } -}, -{ - "type": "node", - "id": 1291094341, - "lat": 51.5915046, - "lon": -0.3812462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA5 111" - } -}, -{ - "type": "node", - "id": 1291515493, - "lat": 51.4804662, - "lon": -3.1480911, - "tags": { - "amenity": "post_box", - "note": "Plate with ref, collection times etc is missing", - "operator": "Royal Mail", - "post_box:manufacturer": "A. Handyside and Co. Ltd", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1291853081, - "lat": 52.0970733, - "lon": -0.5275145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "MK43 330", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1291919877, - "lat": 58.4440034, - "lon": -4.9919925, - "tags": { - "amenity": "post_box", - "ref": "IV27 295", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1291988794, - "lat": 52.7901552, - "lon": -2.1208150, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1292047951, - "lat": 52.8010610, - "lon": -2.1273031, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1292155167, - "lat": 52.5709531, - "lon": -1.4059915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1292200966, - "lat": 51.5026262, - "lon": -0.0259335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1292200968, - "lat": 51.4945134, - "lon": -0.0247886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1292200971, - "lat": 51.5077241, - "lon": -0.0222015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1292200976, - "lat": 51.4979813, - "lon": -0.0254581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1292200990, - "lat": 51.5044701, - "lon": -0.0142601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 58;E14 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1292917089, - "lat": 51.4885133, - "lon": -0.1812389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:design": "type_b", - "post_box:manufacturer": "McDowall, Steven and Co Ltd, London and Glasgow", - "post_box:type": "pillar", - "ref": "SW10 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1292993304, - "lat": 51.5374371, - "lon": -0.2297249, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1292993305, - "lat": 51.5410991, - "lon": -0.2264808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW10 78" - } -}, -{ - "type": "node", - "id": 1293095957, - "lat": 58.5686553, - "lon": -4.7457895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV27 325", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1293101886, - "lat": 58.4240167, - "lon": -4.9895333, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IV27 269", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1293114061, - "lat": 58.4575616, - "lon": -5.0446350, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV27 324", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1293114120, - "lat": 58.4477393, - "lon": -5.0003799, - "tags": { - "amenity": "post_box", - "ref": "IV27 265", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1293230901, - "lat": 50.7722197, - "lon": -3.0853201, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1293231666, - "lat": 50.7819212, - "lon": -3.0703427, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1293248999, - "lat": 58.9809719, - "lon": -2.9610665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW15 26", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1293388415, - "lat": 52.0804370, - "lon": -0.5537088, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-09", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "note": "GVIR brick pillar has been replaced with a Elizabethan lamp box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 168", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1293777454, - "lat": 52.8024062, - "lon": -2.1226408, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1293777455, - "lat": 52.7917414, - "lon": -2.1290271, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1293777456, - "lat": 52.7945782, - "lon": -2.1321009, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1293896679, - "lat": 53.4628211, - "lon": -2.3169621, - "tags": { - "amenity": "post_box", - "ref": "M17 670" - } -}, -{ - "type": "node", - "id": 1293897143, - "lat": 53.4654815, - "lon": -2.3240660, - "tags": { - "amenity": "post_box", - "ref": "M5 701" - } -}, -{ - "type": "node", - "id": 1293933604, - "lat": 53.4646511, - "lon": -2.3100140, - "tags": { - "amenity": "post_box", - "ref": "M17 141" - } -}, -{ - "type": "node", - "id": 1294625555, - "lat": 58.9846628, - "lon": -2.9586038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW15 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1294643464, - "lat": 59.0957284, - "lon": -3.0721967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 71", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1294683810, - "lat": 59.1141455, - "lon": -3.1110162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "KW17 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1295105305, - "lat": 52.1388980, - "lon": -0.4472913, - "tags": { - "amenity": "post_box", - "ref": "MK40 287", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1295105387, - "lat": 52.1266531, - "lon": -0.4710817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 1295105410, - "lat": 52.1389832, - "lon": -0.4652903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1295137997, - "lat": 51.5641425, - "lon": 0.6492257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1295374760, - "lat": 52.8441027, - "lon": -1.3451159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "DE74 727D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1295456086, - "lat": 51.4486448, - "lon": -0.6656190, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1295461565, - "lat": 51.6190110, - "lon": -0.1805910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1295862741, - "lat": 50.9549654, - "lon": -0.7217887, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1295894552, - "lat": 50.8764607, - "lon": -0.7865264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1296140171, - "lat": 53.4006577, - "lon": -3.1125350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "QEII Type C double aperture box CH46 233 by Lion Foundry of Kirkintilloch outside Moreton Post Office, Merseyside.", - "manufacturer": "Lion Foundry of Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH46 233;CH46 9233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post boxes in CH46 postcode area" - } -}, -{ - "type": "node", - "id": 1296347903, - "lat": 51.5003108, - "lon": 0.1204684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347908, - "lat": 51.4961572, - "lon": 0.1193943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347909, - "lat": 51.4965154, - "lon": 0.1083404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347913, - "lat": 51.4946081, - "lon": 0.1056632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347917, - "lat": 51.4974301, - "lon": 0.1151699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347919, - "lat": 51.4872014, - "lon": 0.1098033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347923, - "lat": 51.4912389, - "lon": 0.1041280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347929, - "lat": 51.4922370, - "lon": 0.1167350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296347930, - "lat": 51.4933113, - "lon": 0.1099759, - "tags": { - "addr:city": "London", - "addr:housenumber": "172", - "addr:postcode": "SE2 9PT", - "addr:street": "Eynsham Drive", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296348521, - "lat": 52.8558380, - "lon": 1.0657743, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1296365457, - "lat": 52.8413672, - "lon": -1.3397194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DE74 477", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296583596, - "lat": 54.0625160, - "lon": -2.2823967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD24 125" - } -}, -{ - "type": "node", - "id": 1296653332, - "lat": 52.8425265, - "lon": -1.3376562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE74 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296712524, - "lat": 52.3652915, - "lon": -0.3662217, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE28 157" - } -}, -{ - "type": "node", - "id": 1296712571, - "lat": 52.3755124, - "lon": -0.3140018, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE28 33" - } -}, -{ - "type": "node", - "id": 1296847330, - "lat": 51.4789763, - "lon": 0.1042755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847331, - "lat": 51.4834741, - "lon": 0.1016646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847332, - "lat": 51.4846901, - "lon": 0.1099498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847333, - "lat": 51.4881634, - "lon": 0.1175573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847335, - "lat": 51.4964090, - "lon": 0.1226752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847336, - "lat": 51.4863505, - "lon": 0.1139120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847337, - "lat": 51.4813775, - "lon": 0.1254168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847338, - "lat": 51.4798323, - "lon": 0.1313634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847339, - "lat": 51.4785881, - "lon": 0.1179964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1296847340, - "lat": 51.4765060, - "lon": 0.1080419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297043580, - "lat": 51.5956826, - "lon": -1.7886220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1297060057, - "lat": 52.2588976, - "lon": -2.1617165, - "tags": { - "amenity": "post_box", - "note": "ref is conjectural", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR9 295" - } -}, -{ - "type": "node", - "id": 1297089327, - "lat": 52.2561672, - "lon": -2.1242730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "note": "This is not WR9 459", - "post_box:type": "lamp", - "ref": "WR9 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1297125154, - "lat": 52.2558461, - "lon": -2.1495781, - "tags": { - "amenity": "post_box", - "note": "reference is conjectural", - "post_box:type": "lamp", - "ref": "WR9 502" - } -}, -{ - "type": "node", - "id": 1297126613, - "lat": 51.5008433, - "lon": -3.1875578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1297236454, - "lat": 54.0762168, - "lon": -2.7180143, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "post_box:type": "pillar", - "ref": "LA2 102", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Local knowledge." - } -}, -{ - "type": "node", - "id": 1297370614, - "lat": 52.4967524, - "lon": 0.9849476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 19:30", - "fixme": "has this post box been replaced?", - "note": "Small box with \"letters only\" above slot", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR17 1703", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1297370626, - "lat": 52.5115560, - "lon": 1.0029633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1736", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1297449886, - "lat": 50.8597731, - "lon": -0.1255708, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN1 75" - } -}, -{ - "type": "node", - "id": 1297449888, - "lat": 50.8365403, - "lon": -0.1498378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1297449889, - "lat": 50.8288061, - "lon": -0.1412866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1297449895, - "lat": 50.8261285, - "lon": -0.1517789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-05-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN1 49", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1297449898, - "lat": 50.8591154, - "lon": -0.1315182, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN1 76" - } -}, -{ - "type": "node", - "id": 1297490746, - "lat": 53.4055511, - "lon": -2.3643120, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-03", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "ref": "WA14 127" - } -}, -{ - "type": "node", - "id": 1297498050, - "lat": 52.2697419, - "lon": -2.2043948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "old_ref": "D.381 Hadley", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:old_ref": "collection plate", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 1297669011, - "lat": 51.4991796, - "lon": 0.1241021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297669021, - "lat": 51.4816265, - "lon": 0.1335694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE2 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297669022, - "lat": 51.4958555, - "lon": 0.1276988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE2 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297832757, - "lat": 51.4888236, - "lon": 0.0472682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1297832759, - "lat": 51.4852499, - "lon": 0.0288014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297832762, - "lat": 51.4866994, - "lon": 0.0320083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1297832765, - "lat": 51.4868629, - "lon": 0.0470965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Sealed on 28/5/21 possibly due to roadworks, will check again at a later date before marking as disused", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1297832769, - "lat": 51.4842772, - "lon": 0.0279788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 12", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297832771, - "lat": 51.4840226, - "lon": 0.0400406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297832776, - "lat": 51.4929189, - "lon": 0.0451238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "SE18 18P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297832783, - "lat": 51.4923469, - "lon": 0.0471727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297843488, - "lat": 51.4934165, - "lon": 0.0536949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1297843489, - "lat": 51.4807377, - "lon": 0.0608339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE18 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297843497, - "lat": 51.4917348, - "lon": 0.0435402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297843499, - "lat": 51.4921684, - "lon": 0.0768446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Missing left collection plate, right collection plate had slipped down so cannot confirm refs but RM site confirms 2 refs at this location https://www.royalmail.com/services-near-you/postbox/skeffington-street-tom-cribb-rd-l-se18-6sr/0000SE1881 https://ww", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE18 81;SE18 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297845771, - "lat": 51.4742794, - "lon": 0.0654328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1297845772, - "lat": 51.4740240, - "lon": 0.0398110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297845773, - "lat": 51.4769067, - "lon": 0.0669925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1297845775, - "lat": 51.4796237, - "lon": 0.0302015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1297868989, - "lat": 52.2686680, - "lon": -2.1700487, - "tags": { - "amenity": "post_box", - "note": "Not on Dracos list", - "old_ref": "D.187 Manor Oaks", - "post_box:type": "lamp", - "ref": "WR9 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:old_ref": "collection plate", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1298220167, - "lat": 52.9037992, - "lon": -0.9933124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG12 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1298344035, - "lat": 52.9653175, - "lon": -1.1494190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG3 156", - "ref:GB:uprn": "10015388826", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1298483647, - "lat": 51.3828982, - "lon": 0.5111083, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ME1 140", - "source": "survey", - "survey:date": "2020-06-28", - "wikimedia_commons": "File:Rochester 23-28 New Road 5990.jpg" - } -}, -{ - "type": "node", - "id": 1298644350, - "lat": 52.0817956, - "lon": -0.5447144, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-12", - "ref": "MK43 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1298656651, - "lat": 50.7935598, - "lon": -3.2085686, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1298662945, - "lat": 50.7992509, - "lon": -3.2329186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "name": "Deer Park", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX14 3EP", - "ref": "EX14 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1298729990, - "lat": 51.5012360, - "lon": -0.1298260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "note": "LH aperture blocked up", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1H 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1298802097, - "lat": 51.2935925, - "lon": -0.7993222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU14 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1298863064, - "lat": 55.8275839, - "lon": -4.4628257, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1299373039, - "lat": 50.8460275, - "lon": -1.1282143, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1299425253, - "lat": 52.9689481, - "lon": -1.1447991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG3 38", - "ref:GB:uprn": "10015282230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1299425278, - "lat": 52.9692711, - "lon": -1.1523416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG3 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1299442380, - "lat": 52.9671206, - "lon": -1.1434983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 19D", - "ref:GB:uprn": "10015836759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1299473490, - "lat": 53.1399694, - "lon": -1.4449484, - "tags": { - "amenity": "post_box", - "ele": "124.0000000", - "ref": "DE55 234" - } -}, -{ - "type": "node", - "id": 1299804907, - "lat": 51.1642950, - "lon": -1.4481854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1299830086, - "lat": 52.8644487, - "lon": 0.9616260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1299977203, - "lat": 52.1037455, - "lon": -0.5292118, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-30", - "operator": "Royal Mail", - "ref": "MK43 55", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1300020400, - "lat": 51.7580295, - "lon": 0.1328540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1300219365, - "lat": 52.3704212, - "lon": -0.4484972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE28 80", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1300254745, - "lat": 52.9729780, - "lon": -1.1435626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG3 203D", - "ref:GB:uprn": "10015441579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1300266914, - "lat": 51.5135024, - "lon": -0.0279750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 1;E14 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300266915, - "lat": 51.5028884, - "lon": -0.0082846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300266928, - "lat": 51.5095357, - "lon": -0.0035927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E14 56;E14 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300266931, - "lat": 51.5095357, - "lon": -0.0035850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E14 55P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300266937, - "lat": 51.5108157, - "lon": -0.0302103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E14 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300266941, - "lat": 51.5068105, - "lon": -0.0067913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300337342, - "lat": 53.4034807, - "lon": -1.5095251, - "tags": { - "amenity": "post_box", - "ref": "S6 374" - } -}, -{ - "type": "node", - "id": 1300428452, - "lat": 51.4553852, - "lon": -0.9105532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG5 522", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1300516787, - "lat": 55.4582492, - "lon": -4.6283334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "ref": "KA7 23" - } -}, -{ - "type": "node", - "id": 1300520121, - "lat": 55.4563581, - "lon": -4.6296493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "ref": "KA7 10" - } -}, -{ - "type": "node", - "id": 1300556005, - "lat": 52.0325658, - "lon": -2.3206928, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "WR13 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 1300624967, - "lat": 52.2309879, - "lon": -0.2421124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1301123672, - "lat": 53.5421379, - "lon": -0.0923374, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/GtpD0tCW/DN33-184-D.jpg", - "location": "Scartho Road, Conyers Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1301123689, - "lat": 53.5461263, - "lon": -0.0913980, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/4d6MzT1m/DN33-144-D.jpg", - "location": "Scartho Road, Cemetery Gates", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1301127843, - "lat": 53.8588899, - "lon": -1.9116020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD21 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1301251389, - "lat": 53.0992790, - "lon": -1.2699503, - "tags": { - "amenity": "post_box", - "ele": "161.0000000" - } -}, -{ - "type": "node", - "id": 1301297956, - "lat": 53.0943389, - "lon": -1.2719969, - "tags": { - "amenity": "post_box", - "ele": "125.0000000", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1301330719, - "lat": 50.7894462, - "lon": -1.0685052, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO4 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1301773277, - "lat": 52.9505781, - "lon": -1.0348728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG12 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1302172192, - "lat": 53.0256600, - "lon": -0.8679527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG23 213", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1302468626, - "lat": 56.0167482, - "lon": -5.7837335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA60 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1302474560, - "lat": 55.9396109, - "lon": -5.8539667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA60 6" - } -}, -{ - "type": "node", - "id": 1302475135, - "lat": 55.8336857, - "lon": -5.9508400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA60 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1302570250, - "lat": 50.7248639, - "lon": -2.0136641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH15 283D", - "ref:GB:uprn": "10015349394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1303437770, - "lat": 53.7102338, - "lon": -1.6924215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 151" - } -}, -{ - "type": "node", - "id": 1303524535, - "lat": 53.3672903, - "lon": -0.0031356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1303679163, - "lat": 53.8156104, - "lon": -1.5320878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 588", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1303703692, - "lat": 52.1349306, - "lon": -0.4581123, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "MK40 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1303808816, - "lat": 52.8205829, - "lon": 1.3470326, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1303943605, - "lat": 53.6992694, - "lon": -1.6133928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1304028706, - "lat": 53.3700145, - "lon": -0.0081223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1304041964, - "lat": 52.2922398, - "lon": -2.1146776, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "historic_operator": "Post Office", - "note": "Need to go back and get correct position.", - "note2": "Seems to have been moved to here recently (2011-05). Called Wychbold (old) Post Office", - "post_box:type": "lamp", - "ref": "WR9 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1304041965, - "lat": 52.2891774, - "lon": -2.1189757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "historic_operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WR9 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1304081057, - "lat": 52.2838431, - "lon": -2.1255642, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1304100865, - "lat": 53.3743000, - "lon": -0.0071572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1304148907, - "lat": 52.3344624, - "lon": -2.1588639, - "tags": { - "amenity": "post_box", - "note": "need to go back and check ref", - "post_box:type": "lamp", - "ref": "WR9 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1304552263, - "lat": 53.4231495, - "lon": -0.0347242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN11 53" - } -}, -{ - "type": "node", - "id": 1304618603, - "lat": 50.6145379, - "lon": -3.4016656, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1304814359, - "lat": 53.6993848, - "lon": -1.7218486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 262" - } -}, -{ - "type": "node", - "id": 1304905930, - "lat": 51.4095536, - "lon": 0.5058955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME2 359", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1304940663, - "lat": 51.9553455, - "lon": -1.9623742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "wall", - "ref": "GL54 283", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1304940856, - "lat": 51.9542815, - "lon": -1.9648160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 303", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1305117988, - "lat": 53.7014664, - "lon": -1.7820074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1305340388, - "lat": 53.0905429, - "lon": -1.3187201, - "tags": { - "amenity": "post_box", - "ele": "95.0000000" - } -}, -{ - "type": "node", - "id": 1305340389, - "lat": 53.0870894, - "lon": -1.3220802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:15", - "ele": "90" - } -}, -{ - "type": "node", - "id": 1305666913, - "lat": 53.5104693, - "lon": -0.0629533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-01-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/m2JWq1sp/DN36-218-D.jpg", - "location": "Louth Road, Clay Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1305692121, - "lat": 53.5316674, - "lon": -0.0857016, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Y0VfMhX0/DN33-103-D.jpg", - "location": "Louth Road, Southfield Avenue", - "note": "This is a particularly hard box to locate. It is hidden behind a bus-shelter and shielded from view by a privet hedge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1305702296, - "lat": 51.3629085, - "lon": 0.6107148, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME8 221", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 1305990429, - "lat": 52.2491347, - "lon": -2.2191499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "old_ref": "D.378 Chatley", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:old_ref": "collection plate", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 1306007106, - "lat": 53.7095489, - "lon": -1.6721836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF16 125" - } -}, -{ - "type": "node", - "id": 1306007133, - "lat": 53.7080824, - "lon": -1.6774046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF16 156", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1306007135, - "lat": 53.7059265, - "lon": -1.6823038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF16 153" - } -}, -{ - "type": "node", - "id": 1306202754, - "lat": 51.3547921, - "lon": -0.1842384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SM2 85", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1306216924, - "lat": 52.9461326, - "lon": -1.2376148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 489", - "ref:GB:uprn": "10015446010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1306236861, - "lat": 52.9306196, - "lon": -1.4751534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE1 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1306236873, - "lat": 52.9164314, - "lon": -1.4333586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE21 767", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1306236886, - "lat": 52.9261046, - "lon": -1.4717721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1306252415, - "lat": 52.2308342, - "lon": -2.0628488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR9 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1306253093, - "lat": 52.2018997, - "lon": -2.0286659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR7 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1306259910, - "lat": 52.8985151, - "lon": -1.4364605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 355" - } -}, -{ - "type": "node", - "id": 1306259911, - "lat": 52.9027870, - "lon": -1.4780300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1306259913, - "lat": 52.8922485, - "lon": -1.4233248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 199" - } -}, -{ - "type": "node", - "id": 1306259914, - "lat": 52.9008562, - "lon": -1.4418558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE24 237" - } -}, -{ - "type": "node", - "id": 1306259915, - "lat": 52.9042468, - "lon": -1.4667648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 1380" - } -}, -{ - "type": "node", - "id": 1306267169, - "lat": 52.7896867, - "lon": -1.6257096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1098" - } -}, -{ - "type": "node", - "id": 1306267170, - "lat": 52.9307215, - "lon": -1.8171201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE6 350" - } -}, -{ - "type": "node", - "id": 1306267171, - "lat": 52.7920644, - "lon": -1.6232943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1068" - } -}, -{ - "type": "node", - "id": 1306267172, - "lat": 52.8982419, - "lon": -1.5353497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE23 135" - } -}, -{ - "type": "node", - "id": 1306267173, - "lat": 52.8941590, - "lon": -1.4856594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE23 522" - } -}, -{ - "type": "node", - "id": 1306267174, - "lat": 52.7863710, - "lon": -1.6256533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1012" - } -}, -{ - "type": "node", - "id": 1306267175, - "lat": 52.7844450, - "lon": -1.6304486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1178" - } -}, -{ - "type": "node", - "id": 1306267176, - "lat": 52.7871001, - "lon": -1.6333062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1041" - } -}, -{ - "type": "node", - "id": 1306271228, - "lat": 52.7816331, - "lon": -1.6282393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1212" - } -}, -{ - "type": "node", - "id": 1306271229, - "lat": 52.7788450, - "lon": -1.5573071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1034" - } -}, -{ - "type": "node", - "id": 1306271230, - "lat": 52.7828288, - "lon": -1.6238698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1243" - } -}, -{ - "type": "node", - "id": 1306271231, - "lat": 52.7736083, - "lon": -1.5578290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1253", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1306564885, - "lat": 51.5822033, - "lon": -0.3517092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1306565557, - "lat": 51.5831309, - "lon": -0.3545050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 46" - } -}, -{ - "type": "node", - "id": 1306593759, - "lat": 50.6833979, - "lon": -3.2521921, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1306593761, - "lat": 50.6857771, - "lon": -3.2520312, - "tags": { - "amenity": "post_box", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1306935450, - "lat": 51.5587167, - "lon": -3.3330710, - "tags": { - "amenity": "post_box", - "description": "Llantrisant Road Llantwit Fardre", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1307036614, - "lat": 53.1309979, - "lon": -1.5605654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "180194607598236", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE4 903", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 1307036617, - "lat": 53.0504064, - "lon": -1.4077003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DE5 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1307036618, - "lat": 53.0947324, - "lon": -1.5177289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE4 952" - } -}, -{ - "type": "node", - "id": 1307036619, - "lat": 52.9141899, - "lon": -1.4679534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE1 753" - } -}, -{ - "type": "node", - "id": 1307036623, - "lat": 53.0169269, - "lon": -1.7318359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE6 801" - } -}, -{ - "type": "node", - "id": 1307036625, - "lat": 53.1219348, - "lon": -1.5659376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE4 990D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1307038051, - "lat": 52.7760351, - "lon": -1.5261481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1108" - } -}, -{ - "type": "node", - "id": 1307038052, - "lat": 52.7593658, - "lon": -1.5861497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DE11 1031" - } -}, -{ - "type": "node", - "id": 1307038053, - "lat": 52.7674731, - "lon": -1.5078335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE11 1155" - } -}, -{ - "type": "node", - "id": 1307138871, - "lat": 55.8052216, - "lon": -3.3106222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "EH26 125", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1307138874, - "lat": 54.3215878, - "lon": -2.5580653, - "tags": { - "amenity": "post_box", - "ref": "LA10 64", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1307146651, - "lat": 57.0705172, - "lon": -4.7904932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "605022787700156", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH35 89", - "source": "survey", - "survey:date": "2022-09-04" - } -}, -{ - "type": "node", - "id": 1307169639, - "lat": 50.4419647, - "lon": -4.7038585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1307171005, - "lat": 56.3856250, - "lon": -3.4319428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Falkirk", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 14D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1307211898, - "lat": 50.3894814, - "lon": -4.7473618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL30 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1307249526, - "lat": 52.4114254, - "lon": -0.4409496, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN14 54" - } -}, -{ - "type": "node", - "id": 1307320040, - "lat": 53.4567933, - "lon": -2.2628945, - "tags": { - "amenity": "post_box", - "ref": "M16 357" - } -}, -{ - "type": "node", - "id": 1307356775, - "lat": 53.9971161, - "lon": -0.9986971, - "tags": { - "amenity": "post_box", - "ele": "10.0000000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO32 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1307358655, - "lat": 54.0019794, - "lon": -0.9920747, - "tags": { - "amenity": "post_box", - "ele": "11.0000000", - "post_box:type": "lamp", - "ref": "YO32 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1307358659, - "lat": 54.0123569, - "lon": -0.9896935, - "tags": { - "amenity": "post_box", - "ele": "9.0000000", - "post_box:type": "lamp", - "ref": "YO32 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1307638563, - "lat": 51.7583978, - "lon": -0.7323125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP22 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1307683855, - "lat": 53.8561711, - "lon": -1.5199030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 445" - } -}, -{ - "type": "node", - "id": 1308080691, - "lat": 52.3529228, - "lon": 0.9388587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP22 7153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1308161023, - "lat": 53.6277185, - "lon": -1.7753622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1308277081, - "lat": 52.0994159, - "lon": -2.3705600, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR13 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1308349451, - "lat": 51.5944762, - "lon": 0.0151592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308349452, - "lat": 51.5877631, - "lon": 0.0280014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308349453, - "lat": 51.5894537, - "lon": 0.0248108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308349455, - "lat": 51.5919245, - "lon": 0.0264484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E18 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308349457, - "lat": 51.5945797, - "lon": 0.0310546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308349458, - "lat": 51.5931878, - "lon": 0.0174283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308352748, - "lat": 52.2259392, - "lon": -2.0812052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR9 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1308364480, - "lat": 52.1737873, - "lon": -2.3820307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1308364485, - "lat": 52.1667723, - "lon": -2.3651416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR6 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1308364493, - "lat": 52.1594790, - "lon": -2.4056994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR6 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1308708785, - "lat": 52.1893815, - "lon": -2.5076315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR7 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1308887692, - "lat": 51.5764726, - "lon": -3.2270895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF83 200", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1308952259, - "lat": 51.5838822, - "lon": -3.2286446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1309428595, - "lat": 50.8202104, - "lon": -1.0811056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1309490420, - "lat": 52.1488525, - "lon": -0.4393287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-27", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 1309601736, - "lat": 53.2340471, - "lon": -0.5338835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 10:45", - "name": "Minster Yard, Petergate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN2 115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1309628877, - "lat": 52.5057858, - "lon": -1.8625483, - "tags": { - "amenity": "post_box", - "postal_code": "B7", - "ref": "B7 76", - "source": "BING & observation" - } -}, -{ - "type": "node", - "id": 1309768315, - "lat": 51.4474009, - "lon": -0.8878632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG5 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1309962627, - "lat": 51.4792785, - "lon": -3.2031213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 219D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1309966065, - "lat": 51.4809116, - "lon": -3.2130857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1309966066, - "lat": 51.4792119, - "lon": -3.2064049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 220D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q29502779" - } -}, -{ - "type": "node", - "id": 1309966067, - "lat": 51.4824720, - "lon": -3.2110662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 222", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1309966849, - "lat": 51.4865107, - "lon": -3.2252681, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1309969462, - "lat": 51.4734194, - "lon": -3.2565987, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1310907796, - "lat": 51.6679246, - "lon": -2.7004543, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1311104269, - "lat": 52.2907446, - "lon": -2.1045774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:collection_times": "Survey" - } -}, -{ - "type": "node", - "id": 1311353123, - "lat": 51.5477755, - "lon": -0.1517946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102353", - "wikimedia_commons": "Category:United Kingdom post box NW5 20D" - } -}, -{ - "type": "node", - "id": 1311353124, - "lat": 51.5465815, - "lon": -0.1401711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:United Kingdom post box NW5 6D" - } -}, -{ - "type": "node", - "id": 1311353126, - "lat": 51.5563644, - "lon": -0.1380512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "502213544312586", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-02" - } -}, -{ - "type": "node", - "id": 1311353127, - "lat": 51.5465319, - "lon": -0.1516513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:United Kingdom post box NW5 23D" - } -}, -{ - "type": "node", - "id": 1311353128, - "lat": 51.5548605, - "lon": -0.1361796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 11D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 11D" - } -}, -{ - "type": "node", - "id": 1311353129, - "lat": 51.5594585, - "lon": -0.1469670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 2D", - "royal_cypher": "no", - "wikimedia_commons": "Category:United Kingdom post box NW5 2D" - } -}, -{ - "type": "node", - "id": 1311353131, - "lat": 51.5471096, - "lon": -0.1379182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:United Kingdom post box NW5 10D" - } -}, -{ - "type": "node", - "id": 1311353132, - "lat": 51.5586067, - "lon": -0.1397685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW5 27D" - } -}, -{ - "type": "node", - "id": 1311507951, - "lat": 51.6538959, - "lon": -0.4889313, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12 noon", - "post_box:type": "pillar", - "ref": "WD3 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 1311523408, - "lat": 51.6670935, - "lon": -0.5635901, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "HP7 40", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 1311716965, - "lat": 51.4963875, - "lon": -0.2069485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W14 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1311716966, - "lat": 51.4945223, - "lon": -0.2072250, - "tags": { - "amenity": "post_box", - "post_box:apertures": "1", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "W14 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1311738972, - "lat": 51.4932935, - "lon": -0.2112253, - "tags": { - "amenity": "post_box", - "ref": "W14 39" - } -}, -{ - "type": "node", - "id": 1311738973, - "lat": 51.4902475, - "lon": -0.2132939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W14 43", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1311741462, - "lat": 53.0781348, - "lon": -0.1397339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "name": "New York P.O., Sandy Bank Road", - "ref": "LN4 225" - } -}, -{ - "type": "node", - "id": 1311799305, - "lat": 57.3733566, - "lon": -6.1448623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "name": "Camustianaviag", - "ref": "IV51 10" - } -}, -{ - "type": "node", - "id": 1311801596, - "lat": 57.3379318, - "lon": -6.1141457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "name": "Gedintailor", - "ref": "IV51 8" - } -}, -{ - "type": "node", - "id": 1311820026, - "lat": 50.8361641, - "lon": -1.1897200, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO14 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1311822554, - "lat": 57.3239890, - "lon": -6.1103768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "name": "Pienachorran", - "note": "EIIR in Scotland!", - "post_box:type": "lamp", - "ref": "IV51 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1311823288, - "lat": 57.3567807, - "lon": -6.1377089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "name": "Ollach", - "ref": "IV51 9" - } -}, -{ - "type": "node", - "id": 1311824088, - "lat": 57.3934767, - "lon": -6.1892822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "name": "Penifiler Post Office", - "post_box:type": "lamp", - "ref": "IV51 11" - } -}, -{ - "type": "node", - "id": 1311911366, - "lat": 57.4052774, - "lon": -6.4974404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV55 53", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1311912894, - "lat": 57.3838311, - "lon": -6.5151145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "name": "Harlosh", - "post_box:type": "lamp", - "ref": "IV55 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1311914270, - "lat": 57.3916983, - "lon": -6.5117855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "name": "Altvaid", - "post_box:type": "lamp", - "ref": "IV55 51" - } -}, -{ - "type": "node", - "id": 1311915512, - "lat": 57.4028704, - "lon": -6.5213620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "name": "Vatten", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "IV55 44" - } -}, -{ - "type": "node", - "id": 1311917655, - "lat": 57.5983316, - "lon": -7.1588529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1311930246, - "lat": 57.0843681, - "lon": -7.3058536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS8 82", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1311933125, - "lat": 57.1029542, - "lon": -7.3379809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 07:00", - "old_ref": "U61", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS8 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1311939531, - "lat": 58.2044145, - "lon": -6.9243582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "old_ref": "LH159", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 159", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1311942925, - "lat": 58.1904868, - "lon": -6.9365692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "name": "Carishader", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 158", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1311944872, - "lat": 58.1980404, - "lon": -6.8102639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:45; Sa 08:45", - "name": "Crulivig", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 91", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1311947865, - "lat": 58.2566217, - "lon": -6.1641799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "name": "Portnaguran Pier", - "post_box:type": "lamp", - "ref": "HS2 34" - } -}, -{ - "type": "node", - "id": 1312019045, - "lat": 51.2818459, - "lon": -0.8188405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "282350420068711", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU51 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-18" - } -}, -{ - "type": "node", - "id": 1312114533, - "lat": 52.4141808, - "lon": -0.3763561, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE28 180" - } -}, -{ - "type": "node", - "id": 1312177914, - "lat": 52.4333080, - "lon": -0.3587262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE28 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1312212451, - "lat": 52.3767421, - "lon": 1.1091430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP22 7402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1312212452, - "lat": 52.3749777, - "lon": 1.1088791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP22 7001", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1312262954, - "lat": 52.3860448, - "lon": 1.0499373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP22 7085", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1312262956, - "lat": 52.3806604, - "lon": 1.0844891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP22 7049", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1312262968, - "lat": 52.3928500, - "lon": 1.0002066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:55; Sa 11:45", - "post_box:type": "lamp", - "ref": "IP22 7055", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1312285445, - "lat": 52.6749734, - "lon": 1.3278193, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1312358648, - "lat": 52.4375665, - "lon": -0.3554175, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE28 179" - } -}, -{ - "type": "node", - "id": 1312364650, - "lat": 55.8652941, - "lon": -4.2628737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G2 55;G2 5500", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1312395169, - "lat": 52.2580790, - "lon": -0.8836560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1312406119, - "lat": 51.5102856, - "lon": -0.3139657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W13 13" - } -}, -{ - "type": "node", - "id": 1312679004, - "lat": 51.5983032, - "lon": -0.3934717, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1312736690, - "lat": 51.6036766, - "lon": -0.4129495, - "tags": { - "amenity": "post_box", - "last_collection": "6.00pm Sat 12.00pm", - "postal_code": "HA6", - "ref": "HA6 130" - } -}, -{ - "type": "node", - "id": 1312736780, - "lat": 51.6295829, - "lon": -0.4338483, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HA6 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1312746960, - "lat": 52.8240230, - "lon": 1.1955167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR11 1131D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1312848698, - "lat": 51.1549682, - "lon": 0.2560067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1312893918, - "lat": 51.6617460, - "lon": -3.0042784, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1312895620, - "lat": 51.6636318, - "lon": -3.0062021, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1312899684, - "lat": 51.6641085, - "lon": -3.0034308, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1312900685, - "lat": 51.6602619, - "lon": -3.0084948, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1312900978, - "lat": 51.6636084, - "lon": -3.0102374, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1312909440, - "lat": 57.5849594, - "lon": -3.8683961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "IV12 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1312940872, - "lat": 57.5880705, - "lon": -3.8678520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV12 11D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1312955406, - "lat": 57.5757160, - "lon": -3.8927000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV12 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1312970330, - "lat": 51.5790753, - "lon": -3.2183634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "277067770970726", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF83 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 1313053442, - "lat": 51.5798315, - "lon": -3.2241063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF83 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1313085877, - "lat": 50.9570430, - "lon": -0.4975608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1313085883, - "lat": 50.9597201, - "lon": -0.5087625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "This postbox has moved so I have moved the icon to the correct location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313184947, - "lat": 54.9070196, - "lon": -1.5325572, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE37 157;NE37 1157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313185889, - "lat": 52.4485557, - "lon": 0.6411688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP27 8207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313189938, - "lat": 50.4118712, - "lon": -3.7380407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1313268590, - "lat": 52.2040906, - "lon": -2.1024317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:45", - "post_box:type": "lamp", - "ref": "WR7 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313268661, - "lat": 52.1922937, - "lon": -2.1385164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "note": "Disused Victorian box in wall behind new box", - "post_box:type": "lamp", - "ref": "WR7 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313271319, - "lat": 50.7927621, - "lon": -1.0703832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO4 100", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1313298820, - "lat": 51.5496379, - "lon": -0.1869328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW6 37" - } -}, -{ - "type": "node", - "id": 1313301944, - "lat": 53.3792559, - "lon": -2.4884063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 378" - } -}, -{ - "type": "node", - "id": 1313310889, - "lat": 51.5189721, - "lon": -0.2108280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W10 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;Bing", - "wikidata": "Q27081018" - } -}, -{ - "type": "node", - "id": 1313310899, - "lat": 51.5170847, - "lon": -0.2096746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "W10 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313349744, - "lat": 51.6513900, - "lon": -3.0046165, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1313357075, - "lat": 53.7563643, - "lon": -2.8572620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1313366959, - "lat": 53.3542252, - "lon": -2.1569374, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1313473857, - "lat": 51.6783493, - "lon": -3.1784892, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1313517092, - "lat": 52.4027165, - "lon": -0.3315017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 121" - } -}, -{ - "type": "node", - "id": 1313536782, - "lat": 53.4548572, - "lon": -2.2747619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1418531011839688", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M16 156", - "survey:date": "2020-09-14" - } -}, -{ - "type": "node", - "id": 1313548450, - "lat": 52.2485178, - "lon": -2.1230486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "post_box:type": "wall", - "ref": "WR9 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313548458, - "lat": 52.2487372, - "lon": -2.0657656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR9 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313548462, - "lat": 52.2439922, - "lon": -2.1279751, - "tags": { - "amenity": "post_box", - "note": "This appears to be the Hazdor Village Hall box but is outside Oddingley Village Hall", - "ref": "WR9 459" - } -}, -{ - "type": "node", - "id": 1313548466, - "lat": 52.2146228, - "lon": -2.0848210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR9 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313548475, - "lat": 52.2370264, - "lon": -2.1070573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR9 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1313561916, - "lat": 51.4937440, - "lon": -0.4585690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1313624980, - "lat": 54.6350440, - "lon": -3.5381082, - "tags": { - "amenity": "post_box", - "ref": "CA14 30" - } -}, -{ - "type": "node", - "id": 1313828860, - "lat": 51.6343501, - "lon": -0.4560177, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm Sat 12 noon", - "post_box:type": "lamp", - "ref": "WD3 233" - } -}, -{ - "type": "node", - "id": 1313872932, - "lat": 51.3382016, - "lon": -2.2065822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1313964430, - "lat": 57.1516552, - "lon": -2.1467778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 22D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1313964434, - "lat": 57.1492667, - "lon": -2.1442199, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 5LE", - "addr:street": "Woodhill Terrace", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1313976428, - "lat": 51.6072309, - "lon": -0.5564917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL9 129" - } -}, -{ - "type": "node", - "id": 1313991344, - "lat": 57.1881786, - "lon": -2.0999296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB23 908", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1314004448, - "lat": 51.5421742, - "lon": -0.1893937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "NW6 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1314205182, - "lat": 52.4322063, - "lon": -2.1371845, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1314254191, - "lat": 53.6019183, - "lon": -1.8455562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 192D" - } -}, -{ - "type": "node", - "id": 1314370026, - "lat": 52.9141087, - "lon": 1.3200546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2021-10-12", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR27 2713D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1314408457, - "lat": 52.5485595, - "lon": -0.3287359, - "tags": { - "amenity": "post_box", - "ref": "PE7 220" - } -}, -{ - "type": "node", - "id": 1314478530, - "lat": 55.5252539, - "lon": -3.0427106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD7 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1314520011, - "lat": 57.5818415, - "lon": -3.8788137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV12 27D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1314539287, - "lat": 52.0649737, - "lon": -2.1575590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WR8 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1314573707, - "lat": 53.3908804, - "lon": -2.3440788, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1314583474, - "lat": 51.4308527, - "lon": -0.1187905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 52" - } -}, -{ - "type": "node", - "id": 1314870564, - "lat": 55.1741515, - "lon": -3.3438602, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG11 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1314870566, - "lat": 55.1613969, - "lon": -3.3507130, - "tags": { - "amenity": "post_box", - "ref": "DG11 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1315019496, - "lat": 52.1491125, - "lon": -2.3690276, - "tags": { - "amenity": "post_box", - "note": "ref is conjecture. Have to go and check some tw*t hasn't nicked it.", - "ref": "WR13 73" - } -}, -{ - "type": "node", - "id": 1315092422, - "lat": 54.0459259, - "lon": -2.7926247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1315310815, - "lat": 54.1737198, - "lon": -2.5312694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 16:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 191", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1315484033, - "lat": 54.2247260, - "lon": -7.3441639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "Ballagh Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1315582283, - "lat": 50.6462078, - "lon": -3.6356935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX6 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1315619597, - "lat": 51.6211481, - "lon": -0.1854158, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 13" - } -}, -{ - "type": "node", - "id": 1315619609, - "lat": 51.6072024, - "lon": -0.1783182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 15" - } -}, -{ - "type": "node", - "id": 1315619615, - "lat": 51.6162755, - "lon": -0.1965214, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1315619618, - "lat": 51.6223885, - "lon": -0.1766162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 1" - } -}, -{ - "type": "node", - "id": 1315619621, - "lat": 51.6085605, - "lon": -0.1713535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 34" - } -}, -{ - "type": "node", - "id": 1315619631, - "lat": 51.6212926, - "lon": -0.1765833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 37" - } -}, -{ - "type": "node", - "id": 1315619634, - "lat": 51.6125962, - "lon": -0.1812343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 6" - } -}, -{ - "type": "node", - "id": 1315619637, - "lat": 51.6230803, - "lon": -0.1820743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 21" - } -}, -{ - "type": "node", - "id": 1315619642, - "lat": 51.6099819, - "lon": -0.1808542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 14D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1315619654, - "lat": 51.6152202, - "lon": -0.1623928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1315619659, - "lat": 51.6152560, - "lon": -0.1911017, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 29", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1315619661, - "lat": 51.6082911, - "lon": -0.1781159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 16" - } -}, -{ - "type": "node", - "id": 1315619675, - "lat": 51.6202320, - "lon": -0.1723949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 23" - } -}, -{ - "type": "node", - "id": 1315619677, - "lat": 51.6115788, - "lon": -0.1757289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1315619680, - "lat": 51.6096477, - "lon": -0.1622027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1315619683, - "lat": 51.6126531, - "lon": -0.1594881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "N12 24;N12 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1315619697, - "lat": 51.6140285, - "lon": -0.1844838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 5D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1315619701, - "lat": 51.6189348, - "lon": -0.1765706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N12 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1315619705, - "lat": 51.6118594, - "lon": -0.1721553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 27D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1315619708, - "lat": 51.6077724, - "lon": -0.1667197, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1315619720, - "lat": 51.6060124, - "lon": -0.1602800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1315619723, - "lat": 51.6084957, - "lon": -0.1752288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1315619726, - "lat": 51.6157517, - "lon": -0.1702084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 2" - } -}, -{ - "type": "node", - "id": 1315619729, - "lat": 51.6137620, - "lon": -0.1760721, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1315619739, - "lat": 51.6021836, - "lon": -0.1741553, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1315989493, - "lat": 54.2307945, - "lon": -7.2815367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 12:15", - "name": "The Mill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT92 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1316152942, - "lat": 52.0662475, - "lon": 1.1387495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1316343311, - "lat": 55.0418239, - "lon": -2.9601496, - "tags": { - "amenity": "post_box", - "ref": "CA6 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1316352754, - "lat": 52.9549142, - "lon": -1.1506024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 15:00", - "note": "double postbox outside post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NG1 4930;NG1 4931", - "ref:GB:uprn": "10015473707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1316474724, - "lat": 50.8060628, - "lon": -1.0734569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1316504592, - "lat": 52.9369404, - "lon": 1.2276814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Britons Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2619D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1316504594, - "lat": 52.9338850, - "lon": 1.2238083, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1316571229, - "lat": 51.1517779, - "lon": 0.1002915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN8 216", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1316645476, - "lat": 51.5964033, - "lon": -0.0420629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E17 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1316645480, - "lat": 51.5771999, - "lon": -0.0264318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E17 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1316876616, - "lat": 55.2007930, - "lon": -3.0828423, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG13 71", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1317161663, - "lat": 51.6829314, - "lon": -0.3219731, - "tags": { - "amenity": "post_box", - "ref": "WD7 149" - } -}, -{ - "type": "node", - "id": 1317161665, - "lat": 51.6807549, - "lon": -0.3195648, - "tags": { - "amenity": "post_box", - "ref": "WD7 110" - } -}, -{ - "type": "node", - "id": 1317161666, - "lat": 51.6830384, - "lon": -0.3171407, - "tags": { - "amenity": "post_box", - "ref": "WD7 136" - } -}, -{ - "type": "node", - "id": 1317161667, - "lat": 51.6779602, - "lon": -0.3234628, - "tags": { - "amenity": "post_box", - "ref": "WD7 74" - } -}, -{ - "type": "node", - "id": 1317168549, - "lat": 51.3176049, - "lon": -0.6231556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1317288597, - "lat": 53.6435272, - "lon": -2.6373182, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 1317485570, - "lat": 50.9196262, - "lon": -1.2755194, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 1317489117, - "lat": 50.9030640, - "lon": -1.2511445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "post_box:type": "lamp", - "ref": "SO30 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1317491751, - "lat": 52.5390571, - "lon": -2.8078431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY6 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1317491760, - "lat": 52.5383176, - "lon": -2.8045342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "both apertures have same ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SY6 525;SY6 525", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1317628373, - "lat": 52.4427741, - "lon": 0.6143003, - "tags": { - "addr:city": "Brandon", - "addr:postcode": "IP27 0LP", - "addr:street": "London Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "name": "West End", - "post_box:type": "wall", - "ref": "IP27 3324", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1317813836, - "lat": 52.1355372, - "lon": -0.4487091, - "tags": { - "amenity": "post_box", - "ref": "MK40 81", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1317845046, - "lat": 51.3928329, - "lon": -0.6288355, - "tags": { - "amenity": "post_box", - "colour": "gold", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "P150-0797" - } -}, -{ - "type": "node", - "id": 1317914737, - "lat": 51.6208169, - "lon": -0.0940843, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 32" - } -}, -{ - "type": "node", - "id": 1317914742, - "lat": 51.6111497, - "lon": -0.1015160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 10" - } -}, -{ - "type": "node", - "id": 1317914754, - "lat": 51.6186521, - "lon": -0.0895947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 28" - } -}, -{ - "type": "node", - "id": 1317914758, - "lat": 51.6158853, - "lon": -0.1318120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 21" - } -}, -{ - "type": "node", - "id": 1317914759, - "lat": 51.6226929, - "lon": -0.1111968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 3" - } -}, -{ - "type": "node", - "id": 1317914760, - "lat": 51.6175318, - "lon": -0.1048276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 18" - } -}, -{ - "type": "node", - "id": 1317914776, - "lat": 51.6220059, - "lon": -0.0985982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 21" - } -}, -{ - "type": "node", - "id": 1317914778, - "lat": 51.6188159, - "lon": -0.0958830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 25" - } -}, -{ - "type": "node", - "id": 1317914779, - "lat": 51.6096086, - "lon": -0.1053850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 22" - } -}, -{ - "type": "node", - "id": 1317914781, - "lat": 51.6156396, - "lon": -0.1195198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 33" - } -}, -{ - "type": "node", - "id": 1317914797, - "lat": 51.6260145, - "lon": -0.1096214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 15" - } -}, -{ - "type": "node", - "id": 1317914798, - "lat": 51.6230797, - "lon": -0.0948873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 49" - } -}, -{ - "type": "node", - "id": 1317914800, - "lat": 51.6203826, - "lon": -0.1022865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 12" - } -}, -{ - "type": "node", - "id": 1317914804, - "lat": 51.6138114, - "lon": -0.0949845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N13 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1317914816, - "lat": 51.6193533, - "lon": -0.1135952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 30" - } -}, -{ - "type": "node", - "id": 1317914828, - "lat": 51.6168607, - "lon": -0.1152434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 17" - } -}, -{ - "type": "node", - "id": 1317914832, - "lat": 51.6237347, - "lon": -0.1079188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 16" - } -}, -{ - "type": "node", - "id": 1317914839, - "lat": 51.6227670, - "lon": -0.0862377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 26" - } -}, -{ - "type": "node", - "id": 1317914845, - "lat": 51.6198672, - "lon": -0.1159019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 1" - } -}, -{ - "type": "node", - "id": 1317914849, - "lat": 51.6162048, - "lon": -0.1095993, - "tags": { - "amenity": "post_box", - "mapillary": "380363867574028", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N13 7", - "royal_cypher": "EVIIR", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 1317914857, - "lat": 51.6205856, - "lon": -0.0864445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 35" - } -}, -{ - "type": "node", - "id": 1317914860, - "lat": 51.6249281, - "lon": -0.1148117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 11" - } -}, -{ - "type": "node", - "id": 1317914864, - "lat": 51.6178789, - "lon": -0.1097756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 13", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1318963193, - "lat": 50.4130966, - "lon": -5.0916983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR7 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1318975622, - "lat": 52.4461287, - "lon": 0.6200532, - "tags": { - "addr:city": "Brandon", - "addr:postcode": "IP27 0EL", - "addr:street": "London Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:40; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP27 3204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1319895107, - "lat": 50.8485000, - "lon": -1.1315700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1319917135, - "lat": 56.0579577, - "lon": -3.6262500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY12 128", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1319943504, - "lat": 55.8545097, - "lon": -4.1037876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "A later collection is made at 7.30pm from the Postbox at Glasgow Mail Centre, 20 Turner Road, Springburn, G21", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "G69 139", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1320003109, - "lat": 50.8910001, - "lon": -1.2643088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO31 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1320122820, - "lat": 54.2541236, - "lon": -7.4448286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Main Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1320178717, - "lat": 51.2573764, - "lon": -0.5411523, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-05", - "old_ref": "GU4 278", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU4 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "P151-0276 on 2011-06-07", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 1320361873, - "lat": 55.8692042, - "lon": -4.2698192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "mapillary": "221218633426723", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G3 447", - "survey:date": "2021-09-18" - } -}, -{ - "type": "node", - "id": 1320370628, - "lat": 55.6514569, - "lon": -3.1909285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "colour": "gold", - "note": "Commemorates 2012 Olympic gold medal by Scott Brash", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH45 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1320378789, - "lat": 51.4931489, - "lon": -0.2233882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1320378792, - "lat": 51.4932447, - "lon": -0.2242809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "W6 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1320583963, - "lat": 50.4323485, - "lon": -3.8441097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ10 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1320814837, - "lat": 56.6962077, - "lon": -6.1198887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "117617227328624", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-09-11" - } -}, -{ - "type": "node", - "id": 1320831376, - "lat": 54.1446685, - "lon": -2.4799675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA6 157D" - } -}, -{ - "type": "node", - "id": 1320893996, - "lat": 51.2579265, - "lon": -0.4598618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1320894085, - "lat": 51.2410378, - "lon": -0.3630041, - "tags": { - "amenity": "post_box", - "fixme": "resurvey to find ref value", - "operator": "Royal Mail", - "ref": "RH5 57", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 1321056029, - "lat": 53.4588304, - "lon": -2.2665899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "M16 94" - } -}, -{ - "type": "node", - "id": 1321073460, - "lat": 53.1954731, - "lon": -1.1469203, - "tags": { - "amenity": "post_box", - "ele": "67.0000000", - "ref": "NG20 200" - } -}, -{ - "type": "node", - "id": 1321089207, - "lat": 53.1914426, - "lon": -1.1659181, - "tags": { - "amenity": "post_box", - "ele": "61.0000000", - "ref": "NG20 73" - } -}, -{ - "type": "node", - "id": 1322510792, - "lat": 50.3591217, - "lon": -4.6892312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1322976404, - "lat": 53.4635959, - "lon": -2.2683122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "note": "ref not visible", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "M16 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1322994790, - "lat": 53.4617619, - "lon": -2.2637401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M16 114", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1323431855, - "lat": 53.6212282, - "lon": -1.7913777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1323565113, - "lat": 52.4423614, - "lon": 0.6050007, - "tags": { - "addr:city": "Brandon", - "addr:street": "Crown Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:35; Sa 11:00", - "name": "Town Street", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "IP27 3239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1323565125, - "lat": 52.4390399, - "lon": 0.6089659, - "tags": { - "addr:city": "Brandon", - "addr:postcode": "IP27 0ND", - "addr:street": "Highbury Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "IP27 3430", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1324015820, - "lat": 51.2130123, - "lon": -0.7985275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "4221569954571074", - "post_box:type": "pillar", - "ref": "GU9 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "P150-0977", - "survey:date": "2021-03-27" - } -}, -{ - "type": "node", - "id": 1324180194, - "lat": 54.5797554, - "lon": -1.5567314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1324401397, - "lat": 53.3808003, - "lon": -1.4757360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S1 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1324410362, - "lat": 51.4641539, - "lon": -0.2736908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1324410363, - "lat": 51.4666623, - "lon": -0.2641779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1324410364, - "lat": 51.4649355, - "lon": -0.2587038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1324410365, - "lat": 51.4599841, - "lon": -0.2730379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1324410366, - "lat": 51.4643735, - "lon": -0.2759676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1324410367, - "lat": 51.4679159, - "lon": -0.2668780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-05", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1324410369, - "lat": 51.4628724, - "lon": -0.2677228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1324410370, - "lat": 51.4600359, - "lon": -0.2677842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1324410372, - "lat": 51.4642684, - "lon": -0.2696531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SW14 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1324410373, - "lat": 51.4664355, - "lon": -0.2667567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1324619122, - "lat": 50.2279678, - "lon": -3.7825161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_gate_column", - "post_box:type": "wall", - "ref": "TQ8 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1324619140, - "lat": 50.2303436, - "lon": -3.7803905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-08-20" - } -}, -{ - "type": "node", - "id": 1324641337, - "lat": 50.2314887, - "lon": -3.7804602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-20" - } -}, -{ - "type": "node", - "id": 1324677856, - "lat": 51.4156721, - "lon": 0.4597058, - "tags": { - "amenity": "post_box", - "ref": "ME3 208", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1324726945, - "lat": 52.4747371, - "lon": -1.8030735, - "tags": { - "amenity": "post_box", - "ref": "B33 156", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1325211419, - "lat": 55.1150945, - "lon": -1.8951679, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-22", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1325211459, - "lat": 55.1436079, - "lon": -1.9913273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE19 404", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1325250076, - "lat": 55.2761983, - "lon": -2.2683837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE19 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1325559741, - "lat": 50.7850419, - "lon": -1.0567566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1325604905, - "lat": 51.5360557, - "lon": 0.7138745, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1325739118, - "lat": 51.4885135, - "lon": -0.1869737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW10 17" - } -}, -{ - "type": "node", - "id": 1325739130, - "lat": 51.4808888, - "lon": -0.1839531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 15", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1325739159, - "lat": 51.4874325, - "lon": -0.1891557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "railings", - "post_box:type": "wall", - "ref": "SW10 25", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1325739168, - "lat": 51.4763135, - "lon": -0.1835087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW10 23" - } -}, -{ - "type": "node", - "id": 1325739174, - "lat": 51.4828179, - "lon": -0.1771198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 2", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1325739177, - "lat": 51.4820244, - "lon": -0.1839911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SW10 12", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1325739180, - "lat": 51.4882688, - "lon": -0.1833220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1325739183, - "lat": 51.4863442, - "lon": -0.1849159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW10 13" - } -}, -{ - "type": "node", - "id": 1325739211, - "lat": 51.4864078, - "lon": -0.1902336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "sticky label suggests this might now be a collection on delivery box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1325739212, - "lat": 51.4733887, - "lon": -0.1836241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW6 24" - } -}, -{ - "type": "node", - "id": 1325739214, - "lat": 51.4827605, - "lon": -0.1800460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW10 16" - } -}, -{ - "type": "node", - "id": 1325801888, - "lat": 50.8537260, - "lon": -1.1735970, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO16 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1326173133, - "lat": 52.6863980, - "lon": 1.1981110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR8 807", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1326211177, - "lat": 55.4567098, - "lon": -2.5574683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD8 88", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1326211575, - "lat": 55.4825650, - "lon": -2.5491416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TD8 77D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1326218037, - "lat": 51.4905204, - "lon": -0.1807250, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven Co Ltd London & Falkirk", - "post_box:type": "pillar", - "ref": "SW7 32D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1326247862, - "lat": 51.5456509, - "lon": -0.0613435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E8 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1326358657, - "lat": 50.2805676, - "lon": -5.2048210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1326661803, - "lat": 52.1377405, - "lon": -0.4644017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "MK40 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1326661805, - "lat": 52.1383382, - "lon": -0.4620381, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-23", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "mail:meter": "yes", - "mail:stamped": "no", - "note": "Franked mail only", - "ref": "MK40 84", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1326664858, - "lat": 52.1629394, - "lon": -0.6253635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK43 846", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1326691348, - "lat": 51.2410839, - "lon": -0.1112801, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH1 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1326691372, - "lat": 51.2521390, - "lon": -0.0170911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1326729988, - "lat": 52.0143154, - "lon": -0.6282552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK17 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1326937535, - "lat": 51.2573303, - "lon": -0.0014345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1326937598, - "lat": 51.2546858, - "lon": -0.0110155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1326937644, - "lat": 51.2580642, - "lon": -0.0039603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 106", - "source": "P151-0609" - } -}, -{ - "type": "node", - "id": 1327178538, - "lat": 55.4286552, - "lon": -2.7436505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD9 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "local knowledge", - "survey:date": "2022-08-20" - } -}, -{ - "type": "node", - "id": 1327234070, - "lat": 51.4993445, - "lon": -0.1597121, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Carron company Stirlingshire", - "post_box:apertures": "2", - "ref": "SW1X 27D;SW1X 127D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1327755337, - "lat": 57.5788070, - "lon": -3.8714071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV12 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1327958424, - "lat": 52.7138825, - "lon": -2.2161319, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1327958426, - "lat": 52.7035940, - "lon": -2.2381344, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1327964522, - "lat": 51.4555642, - "lon": -0.1580672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 64" - } -}, -{ - "type": "node", - "id": 1327964530, - "lat": 51.4748607, - "lon": -0.1753142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SW11 24" - } -}, -{ - "type": "node", - "id": 1327964534, - "lat": 51.4562951, - "lon": -0.1691490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 46", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1327964538, - "lat": 51.4769333, - "lon": -0.1743556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 3" - } -}, -{ - "type": "node", - "id": 1327964552, - "lat": 51.4590980, - "lon": -0.1643158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1327964556, - "lat": 51.4748489, - "lon": -0.1754403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW11 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1327964559, - "lat": 51.4534615, - "lon": -0.1803533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW18 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1328048067, - "lat": 53.7012928, - "lon": -1.8534092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HX3 64" - } -}, -{ - "type": "node", - "id": 1328453024, - "lat": 51.6043228, - "lon": 0.6614605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1328548562, - "lat": 50.7529884, - "lon": -1.8056315, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 45", - "ref:GB:uprn": "10015412623" - } -}, -{ - "type": "node", - "id": 1328748726, - "lat": 50.2321294, - "lon": -3.7779493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00, Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-20" - } -}, -{ - "type": "node", - "id": 1328807816, - "lat": 51.0547865, - "lon": 0.4037783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 216", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1328834535, - "lat": 50.9854429, - "lon": 0.4503461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1328835697, - "lat": 52.6979331, - "lon": 1.3407608, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1328877456, - "lat": 51.2221005, - "lon": -0.2068561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH2 322" - } -}, -{ - "type": "node", - "id": 1330188506, - "lat": 50.4310396, - "lon": -3.6952358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1330188507, - "lat": 50.4317522, - "lon": -3.7048803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1330411998, - "lat": 52.3359502, - "lon": -1.3144583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV23 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1330898504, - "lat": 51.5771133, - "lon": -0.0045110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331048838, - "lat": 52.2817172, - "lon": -4.1773364, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1331149598, - "lat": 53.0602704, - "lon": -1.8811441, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1331297729, - "lat": 53.6743355, - "lon": -1.6844689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 215" - } -}, -{ - "type": "node", - "id": 1331532996, - "lat": 51.6806301, - "lon": -3.1649423, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1331591976, - "lat": 51.4737316, - "lon": 0.0276065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331591977, - "lat": 51.4793361, - "lon": 0.0250311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331591978, - "lat": 51.4810278, - "lon": 0.0097032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331591979, - "lat": 51.4724682, - "lon": 0.0202481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE3 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331591980, - "lat": 51.4746629, - "lon": 0.0343577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331601815, - "lat": 51.4688706, - "lon": 0.0338678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331601823, - "lat": 51.4652078, - "lon": 0.0331988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1331601824, - "lat": 51.4712369, - "lon": 0.0378598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1331601827, - "lat": 51.4710926, - "lon": 0.0446543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331601829, - "lat": 51.4652658, - "lon": 0.0282948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331601836, - "lat": 51.4682840, - "lon": 0.0449574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Type D combines stamp dispenser 26/02/21 collection plate has SE3 43 which is incorrect", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "SE3 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1331609230, - "lat": 51.4551614, - "lon": 0.0164009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1331609231, - "lat": 51.4559689, - "lon": 0.0223939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331609232, - "lat": 51.4566735, - "lon": 0.0116684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331621198, - "lat": 51.4405867, - "lon": -0.0158317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331621199, - "lat": 51.4283829, - "lon": -0.0132041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331621205, - "lat": 51.4325212, - "lon": -0.0170585, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "note": "Huge Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1331621210, - "lat": 51.4275937, - "lon": -0.0197768, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "No collection plate 15/10/21 to confirm ref or collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331621211, - "lat": 51.4251707, - "lon": -0.0149531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1331621215, - "lat": 51.4393982, - "lon": -0.0112576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1331621217, - "lat": 51.4296946, - "lon": -0.0172835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332018743, - "lat": 50.9908183, - "lon": 0.4902340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1332193491, - "lat": 51.3550146, - "lon": 1.3593206, - "tags": { - "amenity": "post_box", - "ref": "CT9 20" - } -}, -{ - "type": "node", - "id": 1332198184, - "lat": 52.5866840, - "lon": -2.1245019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1332435960, - "lat": 52.5861089, - "lon": -2.1283363, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1332436063, - "lat": 52.5858134, - "lon": -2.1276398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "photographic_survey;Bing" - } -}, -{ - "type": "node", - "id": 1332449272, - "lat": 57.0992504, - "lon": -2.2606421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB14 582", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1332536238, - "lat": 50.9310416, - "lon": 0.4117481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1332536242, - "lat": 50.9129242, - "lon": 0.4338815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1332536244, - "lat": 50.9010690, - "lon": 0.5159956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1332743164, - "lat": 51.4297323, - "lon": -0.0247511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332743172, - "lat": 51.4325097, - "lon": -0.0267499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332743176, - "lat": 51.4339528, - "lon": -0.0361393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 42D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332743184, - "lat": 51.4421021, - "lon": -0.0223005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332743190, - "lat": 51.4373833, - "lon": -0.0249172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332743202, - "lat": 51.4398486, - "lon": -0.0200528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "28/2/21 Missing CP", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1332743211, - "lat": 51.4377606, - "lon": -0.0334990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332743214, - "lat": 51.4272453, - "lon": -0.0296011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "box was at meadowview road in 2021, moved in 2022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 64", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332756972, - "lat": 51.4739500, - "lon": -0.0179438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE10 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332756973, - "lat": 51.4730370, - "lon": -0.0147025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332756974, - "lat": 51.4887051, - "lon": 0.0081099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332756975, - "lat": 51.4748917, - "lon": -0.0064618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE10 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332756976, - "lat": 51.4749216, - "lon": -0.0035385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE10 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332756977, - "lat": 51.4719706, - "lon": -0.0085855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332761230, - "lat": 51.4506592, - "lon": -0.0298453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1332761231, - "lat": 51.4631199, - "lon": -0.0248325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1332761232, - "lat": 51.4605235, - "lon": -0.0413476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1332761233, - "lat": 51.4519989, - "lon": -0.0344514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1332761234, - "lat": 51.4618797, - "lon": -0.0292439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1332770805, - "lat": 56.9706707, - "lon": -2.2261099, - "tags": { - "addr:city": "Stonehaven", - "addr:country": "GB", - "addr:postcode": "AB39 2BG", - "addr:street": "Hunter Drive", - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "AB39 298D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1332784021, - "lat": 50.7912958, - "lon": -1.1082949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1332797477, - "lat": 56.9677523, - "lon": -2.2194271, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB39 367D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1332805651, - "lat": 57.0702635, - "lon": -4.8108075, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PH35 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1332824935, - "lat": 50.2608750, - "lon": -5.2924000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "ele": "8.296997", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR16 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1332827648, - "lat": 51.0863574, - "lon": -1.2720282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO21 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1332837808, - "lat": 50.2049518, - "lon": -5.1212878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "ele": "59.967407", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1332837810, - "lat": 50.2178825, - "lon": -5.0933042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "ele": "50.114136", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1332931149, - "lat": 53.2325970, - "lon": -1.4312136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "75.0000000", - "post_box:type": "wall", - "ref": "S40 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1332934558, - "lat": 53.2385451, - "lon": -1.4367268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S40 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1333392490, - "lat": 52.5857938, - "lon": -2.1322419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1333559968, - "lat": 51.2099708, - "lon": 0.6449475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME17 122" - } -}, -{ - "type": "node", - "id": 1333591850, - "lat": 51.2143499, - "lon": 0.6120949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 76D" - } -}, -{ - "type": "node", - "id": 1333751912, - "lat": 52.6777402, - "lon": 1.4894059, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_plate:date": "2020-02-14", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR13 1365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-26" - } -}, -{ - "type": "node", - "id": 1333887663, - "lat": 53.6879667, - "lon": -1.8750267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX4 17" - } -}, -{ - "type": "node", - "id": 1333887666, - "lat": 53.6880499, - "lon": -1.8658963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX4 211" - } -}, -{ - "type": "node", - "id": 1334019239, - "lat": 50.2612114, - "lon": -5.0744288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1334019240, - "lat": 50.2629434, - "lon": -5.0851613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 196D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1334030719, - "lat": 50.1884012, - "lon": -5.0773593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "ele": "11.901855", - "name": "Lemon Arms", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1334036662, - "lat": 50.0747786, - "lon": -5.6926409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "drive_through": "no", - "ele": "95.536011", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 1334038692, - "lat": 53.6747116, - "lon": -1.8611353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX4 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1334038693, - "lat": 53.6855015, - "lon": -1.9036061, - "tags": { - "amenity": "post_box", - "ref": "HX4 115" - } -}, -{ - "type": "node", - "id": 1334086706, - "lat": 51.7053120, - "lon": 0.1357037, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1334102827, - "lat": 51.2139278, - "lon": -1.8703052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1334102828, - "lat": 51.1504820, - "lon": -1.8109676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1334333135, - "lat": 51.0015266, - "lon": 0.6066618, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1334378528, - "lat": 51.9019159, - "lon": -1.6917606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 227", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1334469096, - "lat": 50.9161775, - "lon": 0.5587284, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN33 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1334469098, - "lat": 50.9242217, - "lon": 0.4885715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "TN33 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1334476183, - "lat": 51.4984201, - "lon": -0.1301862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 98D;SW1P 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1334531825, - "lat": 51.8844876, - "lon": -1.6827175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX7 514", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1334612123, - "lat": 51.9314394, - "lon": -1.6649906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL56 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1334613762, - "lat": 51.9293712, - "lon": -1.6737961, - "tags": { - "amenity": "post_box", - "source": "visual survey;estimate" - } -}, -{ - "type": "node", - "id": 1334615634, - "lat": 51.9285679, - "lon": -1.6789434, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL56 188", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1334622731, - "lat": 51.9286831, - "lon": -1.7186759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL54 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1334648442, - "lat": 52.2481897, - "lon": -4.1786680, - "tags": { - "amenity": "post_box", - "ref": "SY23 168" - } -}, -{ - "type": "node", - "id": 1334673599, - "lat": 52.0728284, - "lon": -0.5453724, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-09", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1334794449, - "lat": 52.0664179, - "lon": -0.6128696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-12", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK43 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1334794457, - "lat": 52.0730018, - "lon": -0.6022253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-12", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK43 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1334805211, - "lat": 53.6859885, - "lon": -1.8402782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 129" - } -}, -{ - "type": "node", - "id": 1334805219, - "lat": 53.6840220, - "lon": -1.8393663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 312" - } -}, -{ - "type": "node", - "id": 1334805227, - "lat": 53.6842683, - "lon": -1.8356464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HX5 227", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1334805229, - "lat": 53.6817996, - "lon": -1.8484911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 120" - } -}, -{ - "type": "node", - "id": 1335055808, - "lat": 51.5733738, - "lon": 0.0089781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335055811, - "lat": 51.5716286, - "lon": 0.0103827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335055812, - "lat": 51.5618711, - "lon": -0.0000083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 20", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335055813, - "lat": 51.5727722, - "lon": 0.0063928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 15", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335055814, - "lat": 51.5764642, - "lon": 0.0225595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335055815, - "lat": 51.5693750, - "lon": -0.0035085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335735775, - "lat": 56.9658582, - "lon": -2.2229278, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB39 316D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1335793953, - "lat": 53.3718213, - "lon": -1.9980257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1335891871, - "lat": 51.0045300, - "lon": 0.3947970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1335911546, - "lat": 52.0944179, - "lon": -0.5338597, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-23", - "ref": "MK43 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1335915336, - "lat": 53.4116788, - "lon": -2.5579225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA2 172", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1335933641, - "lat": 52.7354523, - "lon": 1.4262173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1335956639, - "lat": 51.7495971, - "lon": -1.1247563, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX33 821", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1335982928, - "lat": 51.5356900, - "lon": 0.1455094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "fixme": "check ref; RM9 135D spotted on junction of Heathway and Downing Road, just southeast of here", - "ref": "RM9 135" - } -}, -{ - "type": "node", - "id": 1335983911, - "lat": 53.4138546, - "lon": -2.5487781, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 265", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1336158053, - "lat": 53.4181456, - "lon": -2.5164878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA3 310", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1336842800, - "lat": 50.8231362, - "lon": -1.0607981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1336842807, - "lat": 50.8168711, - "lon": -1.0627383, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO3 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1336852144, - "lat": 50.9092523, - "lon": -1.4228970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO15 67" - } -}, -{ - "type": "node", - "id": 1337148934, - "lat": 52.8512226, - "lon": 1.4771335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "collection_times:lastcheck": "2018-08-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR12 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1337494623, - "lat": 51.5382889, - "lon": 0.0418338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 37D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1337498357, - "lat": 56.9646271, - "lon": -2.2174742, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "AB39 319D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1337623542, - "lat": 51.5474847, - "lon": 0.0252042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E7 20;E7 1020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1337638408, - "lat": 51.5452962, - "lon": 0.0317641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1337645052, - "lat": 52.2010831, - "lon": -2.0158604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:type": "wall", - "ref": "WR7 32" - } -}, -{ - "type": "node", - "id": 1337729652, - "lat": 53.1450682, - "lon": -1.6656035, - "tags": { - "amenity": "post_box", - "ele": "264.0000000", - "post_box:type": "lamp", - "ref": "DE4 984D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1338062312, - "lat": 50.8463459, - "lon": -0.9274762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1338200176, - "lat": 52.8750985, - "lon": 1.3286290, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1338342559, - "lat": 53.6235349, - "lon": -1.7876429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1338553247, - "lat": 53.6683953, - "lon": -1.9522017, - "tags": { - "amenity": "post_box", - "ref": "HX6 21" - } -}, -{ - "type": "node", - "id": 1338553249, - "lat": 53.6671081, - "lon": -1.9615519, - "tags": { - "amenity": "post_box", - "ref": "HX6 15" - } -}, -{ - "type": "node", - "id": 1338553307, - "lat": 53.6678836, - "lon": -1.9486022, - "tags": { - "amenity": "post_box", - "ref": "HX6 43" - } -}, -{ - "type": "node", - "id": 1338766741, - "lat": 53.7000722, - "lon": -1.6616942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1338929710, - "lat": 53.2622540, - "lon": -4.5248444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1339002570, - "lat": 51.5503130, - "lon": 0.0465196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1339065271, - "lat": 51.5522285, - "lon": 0.0522062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "743497343014400", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1339078991, - "lat": 51.5413044, - "lon": 0.0507048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1339095217, - "lat": 51.7887293, - "lon": -1.2800416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-07-31", - "old_ref": "OX2 613", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX2 613D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1339095348, - "lat": 51.7922566, - "lon": -1.2783393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX2 699", - "source": "gps_survey;photograph" - } -}, -{ - "type": "node", - "id": 1339118282, - "lat": 52.6363504, - "lon": -2.4512809, - "tags": { - "amenity": "post_box", - "ref": "TF7 179" - } -}, -{ - "type": "node", - "id": 1339118292, - "lat": 52.6371700, - "lon": -2.4455440, - "tags": { - "amenity": "post_box", - "ref": "TF7 78" - } -}, -{ - "type": "node", - "id": 1339709197, - "lat": 53.6914364, - "lon": -1.8446514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 243" - } -}, -{ - "type": "node", - "id": 1340030688, - "lat": 54.2514652, - "lon": -7.4421827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1340411615, - "lat": 51.4791831, - "lon": 0.0859360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1340411617, - "lat": 51.4917172, - "lon": 0.1225976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1340411623, - "lat": 51.4775470, - "lon": 0.0415831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1340411632, - "lat": 51.4857854, - "lon": 0.0838239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "McDowall Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "SE18 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1340411636, - "lat": 51.4842189, - "lon": 0.0854590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 41", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1340519957, - "lat": 50.8495383, - "lon": -1.1260225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1340629540, - "lat": 51.0077397, - "lon": -0.6782826, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1340629601, - "lat": 50.9992032, - "lon": -0.6789570, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU28 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1341192958, - "lat": 50.9883310, - "lon": -1.5042929, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 531", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1341467377, - "lat": 58.0607211, - "lon": -5.0262988, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV27 326", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1341494177, - "lat": 57.1951580, - "lon": -3.8290099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH22 17", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1341494178, - "lat": 57.1407081, - "lon": -3.9126687, - "tags": { - "amenity": "post_box", - "ref": "PH21 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1341494242, - "lat": 57.0909868, - "lon": -4.0087267, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH21 40", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1341568152, - "lat": 54.8121373, - "lon": -2.4383414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "image": "https://www.geograph.org.uk/photo/5513609", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA9 257", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1341652755, - "lat": 55.8037322, - "lon": -4.0692397, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1341706763, - "lat": 53.4658523, - "lon": -2.2658609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1342065858, - "lat": 52.4413833, - "lon": -4.0343464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1342133405, - "lat": 51.5428375, - "lon": -0.1422802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "RH aperture blocked up, RH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 6242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 6242D" - } -}, -{ - "type": "node", - "id": 1342256301, - "lat": 52.4036002, - "lon": -4.0725489, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 185" - } -}, -{ - "type": "node", - "id": 1342256302, - "lat": 52.4082310, - "lon": -4.0798338, - "tags": { - "amenity": "post_box", - "ref": "SY23 229" - } -}, -{ - "type": "node", - "id": 1342256303, - "lat": 52.4093894, - "lon": -4.0837713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 66" - } -}, -{ - "type": "node", - "id": 1342256304, - "lat": 52.4014249, - "lon": -4.0675893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 224" - } -}, -{ - "type": "node", - "id": 1342256305, - "lat": 52.4037900, - "lon": -4.0762074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 102" - } -}, -{ - "type": "node", - "id": 1342256306, - "lat": 52.3911279, - "lon": -4.0699305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY23 137" - } -}, -{ - "type": "node", - "id": 1342256308, - "lat": 52.4009363, - "lon": -4.0722788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 120" - } -}, -{ - "type": "node", - "id": 1342258847, - "lat": 52.4375556, - "lon": -3.9986165, - "tags": { - "amenity": "post_box", - "ref": "SY23 144" - } -}, -{ - "type": "node", - "id": 1342258848, - "lat": 52.4148147, - "lon": -4.0839160, - "tags": { - "amenity": "post_box", - "ref": "SY23 200" - } -}, -{ - "type": "node", - "id": 1342262323, - "lat": 52.4852955, - "lon": -3.9796492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY24 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1342262324, - "lat": 52.4854691, - "lon": -3.9823680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY24 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1342262325, - "lat": 52.4762085, - "lon": -4.0564001, - "tags": { - "amenity": "post_box", - "ref": "SY24 211" - } -}, -{ - "type": "node", - "id": 1342262326, - "lat": 52.4809974, - "lon": -4.0508525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SY24 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1342262328, - "lat": 52.4904928, - "lon": -3.9819753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY24 201" - } -}, -{ - "type": "node", - "id": 1342608271, - "lat": 50.7939466, - "lon": -1.0843088, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1342617277, - "lat": 54.7503614, - "lon": -1.4296136, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 1342955668, - "lat": 56.0049406, - "lon": -3.7100434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 230D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1343011922, - "lat": 50.9507152, - "lon": 0.6022150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN31 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1343026599, - "lat": 50.9470767, - "lon": 0.7156992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN31 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1343095949, - "lat": 50.8186417, - "lon": -1.4782901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 198D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1343311753, - "lat": 53.0180851, - "lon": -1.3581339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE75 645", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1343327674, - "lat": 51.5390548, - "lon": -0.1895175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1343845618, - "lat": 52.3022804, - "lon": -0.5959519, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NN10 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1343847022, - "lat": 52.2967240, - "lon": -0.6000210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1343923235, - "lat": 51.5843195, - "lon": -0.0213255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E17 15;E17 1715", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1343934185, - "lat": 50.3938931, - "lon": -3.5052166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 1344299395, - "lat": 50.9846958, - "lon": 0.6358657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1344614699, - "lat": 52.1366967, - "lon": -0.4830085, - "tags": { - "addr:street": "Hurst Grove", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 38D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 1344667547, - "lat": 52.1337306, - "lon": -0.4849258, - "tags": { - "addr:street": "Iddesleigh Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 1344716683, - "lat": 56.1887820, - "lon": -3.9572460, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1345127367, - "lat": 55.8591722, - "lon": -4.2647057, - "tags": { - "amenity": "post_box", - "ref": "G2 925" - } -}, -{ - "type": "node", - "id": 1345219962, - "lat": 51.4457419, - "lon": -0.9656181, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-17", - "collection_times": "Mo-Fr 05:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "RG2 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1345286195, - "lat": 52.2598307, - "lon": -0.5326169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 1345318523, - "lat": 51.4931788, - "lon": -0.2184733, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "W6 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1345540013, - "lat": 54.5615086, - "lon": -1.2047873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 280" - } -}, -{ - "type": "node", - "id": 1345540014, - "lat": 54.5661592, - "lon": -1.2019401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 264" - } -}, -{ - "type": "node", - "id": 1345540016, - "lat": 54.5598663, - "lon": -1.2030921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1345547090, - "lat": 54.5653173, - "lon": -1.1826443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 196" - } -}, -{ - "type": "node", - "id": 1345573473, - "lat": 52.3126992, - "lon": 0.0566445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "note": "Right-hand aperture ref is CB24 5455", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB4 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1345733981, - "lat": 58.4747173, - "lon": -4.4165859, - "tags": { - "amenity": "post_box", - "fixme": "check ref", - "ref": "IV27 328", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1345889409, - "lat": 51.9414787, - "lon": -1.5431431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX7 900D" - } -}, -{ - "type": "node", - "id": 1346170621, - "lat": 54.5507188, - "lon": -1.1805416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS3 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1346361121, - "lat": 51.7484913, - "lon": -1.4063474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "OX29 648", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1346637958, - "lat": 50.7877108, - "lon": -1.1454080, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO12 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1347050554, - "lat": 52.7506241, - "lon": -0.4166844, - "tags": { - "amenity": "post_box", - "ele": "27" - } -}, -{ - "type": "node", - "id": 1347060534, - "lat": 52.7830147, - "lon": -0.4271449, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1347264660, - "lat": 54.5689783, - "lon": -1.2118006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 15" - } -}, -{ - "type": "node", - "id": 1347264664, - "lat": 54.5650693, - "lon": -1.2077883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 188" - } -}, -{ - "type": "node", - "id": 1347645764, - "lat": 53.7425232, - "lon": -2.9677458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 1347669179, - "lat": 53.7419806, - "lon": -2.9741668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "FY8 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 1347756502, - "lat": 51.8533167, - "lon": -3.9569189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "note": "Ref was obscured by a sticker", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1347819052, - "lat": 54.5704850, - "lon": -1.2329244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS1 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1348014971, - "lat": 53.5739441, - "lon": -1.7499340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 220D" - } -}, -{ - "type": "node", - "id": 1348079688, - "lat": 53.7416044, - "lon": -2.9831030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "FY8 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1348744127, - "lat": 53.1368801, - "lon": -1.5201086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 985" - } -}, -{ - "type": "node", - "id": 1348744128, - "lat": 53.1032092, - "lon": -1.5259545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 972" - } -}, -{ - "type": "node", - "id": 1348744129, - "lat": 52.8291467, - "lon": -1.5405374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE65 262" - } -}, -{ - "type": "node", - "id": 1348744130, - "lat": 52.7996330, - "lon": -1.6470896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1102" - } -}, -{ - "type": "node", - "id": 1348744131, - "lat": 52.8003001, - "lon": -1.6353502, - "tags": { - "amenity": "post_box", - "note": "Inside ASDA Post Office", - "operator": "Royal Mail", - "ref": "DE14 1256" - } -}, -{ - "type": "node", - "id": 1348744132, - "lat": 52.8004142, - "lon": -1.6356645, - "tags": { - "amenity": "post_box", - "note": "Outside ASDA", - "operator": "Royal Mail", - "ref": "DE14 1255" - } -}, -{ - "type": "node", - "id": 1348744133, - "lat": 52.7952445, - "lon": -1.6487304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE14 1008" - } -}, -{ - "type": "node", - "id": 1348744134, - "lat": 52.8143339, - "lon": -1.3334507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE74 733", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1349039316, - "lat": 53.7516730, - "lon": -2.9861027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1349100870, - "lat": 51.5473252, - "lon": -0.2345569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW10 1" - } -}, -{ - "type": "node", - "id": 1349545957, - "lat": 54.5639046, - "lon": -0.9653538, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1349678885, - "lat": 56.5168365, - "lon": -4.7646177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PA36 55D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1349689789, - "lat": 56.6805315, - "lon": -5.1122283, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PH49 119", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1349694204, - "lat": 56.6774326, - "lon": -5.1305682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 12:15", - "post_box:type": "lamp", - "ref": "PH49 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1349694205, - "lat": 56.6740856, - "lon": -5.1348967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "wall", - "ref": "PH49 117", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1349765532, - "lat": 51.6110521, - "lon": -0.1313762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 24" - } -}, -{ - "type": "node", - "id": 1349765534, - "lat": 51.6044017, - "lon": -0.1249578, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1349765537, - "lat": 51.6187352, - "lon": -0.1446144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1349765540, - "lat": 51.6148971, - "lon": -0.1553462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1349765543, - "lat": 51.6070412, - "lon": -0.1236548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 5" - } -}, -{ - "type": "node", - "id": 1349765546, - "lat": 51.6130974, - "lon": -0.1575345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1349765547, - "lat": 51.6197332, - "lon": -0.1429136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 30" - } -}, -{ - "type": "node", - "id": 1349765552, - "lat": 51.6078648, - "lon": -0.1312495, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1349765555, - "lat": 51.6160466, - "lon": -0.1426489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1349765558, - "lat": 51.6036211, - "lon": -0.1322316, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1349765559, - "lat": 51.6144357, - "lon": -0.1378586, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 20" - } -}, -{ - "type": "node", - "id": 1349765560, - "lat": 51.6153515, - "lon": -0.1455294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1349765561, - "lat": 51.6059157, - "lon": -0.1275363, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 4D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1349765562, - "lat": 51.6194766, - "lon": -0.1381438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 12" - } -}, -{ - "type": "node", - "id": 1349765571, - "lat": 51.6116225, - "lon": -0.1474734, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1349765572, - "lat": 51.6089154, - "lon": -0.1274113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N11 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1349765573, - "lat": 51.6147752, - "lon": -0.1487247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1350076712, - "lat": 51.2847124, - "lon": 0.4947615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME16 137D" - } -}, -{ - "type": "node", - "id": 1350171635, - "lat": 53.7541853, - "lon": -2.9899641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "FY8 274D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1350425285, - "lat": 51.1104036, - "lon": 0.4552518, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1350474444, - "lat": 56.6296266, - "lon": -3.6397036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 09:15", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH9 30", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1350500442, - "lat": 51.1559862, - "lon": 0.4175293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN12 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1350589746, - "lat": 54.2842573, - "lon": -7.5484085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1350723688, - "lat": 54.3277926, - "lon": -7.2960041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BT75 1" - } -}, -{ - "type": "node", - "id": 1350735405, - "lat": 54.2110553, - "lon": -7.2488406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "Drumady", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1350810552, - "lat": 51.5855187, - "lon": -1.7842548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN25 354" - } -}, -{ - "type": "node", - "id": 1350811078, - "lat": 51.5913417, - "lon": -1.7769752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1350811403, - "lat": 51.5951351, - "lon": -1.7819630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 305" - } -}, -{ - "type": "node", - "id": 1351015160, - "lat": 58.5701457, - "lon": -4.7634052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1013431507095968", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV27 337", - "source": "GPS Survey", - "survey:date": "2024-07-10" - } -}, -{ - "type": "node", - "id": 1351090458, - "lat": 51.0663874, - "lon": 0.5821202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN17 330", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1351225488, - "lat": 51.1439553, - "lon": 0.3804804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1351232250, - "lat": 51.5844163, - "lon": 0.6227747, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 1351361594, - "lat": 53.0628775, - "lon": -1.3490362, - "tags": { - "amenity": "post_box", - "ele": "74.0000000", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1351765143, - "lat": 52.6367203, - "lon": -2.4386523, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1351840956, - "lat": 55.8181546, - "lon": -4.2061167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "G73 445" - } -}, -{ - "type": "node", - "id": 1351893113, - "lat": 53.1258461, - "lon": -1.8737357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "wall", - "ref": "SK17 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1351937343, - "lat": 53.2343914, - "lon": -1.1613038, - "tags": { - "amenity": "post_box", - "ele": "53.0000000", - "ref": "NG20 166" - } -}, -{ - "type": "node", - "id": 1351959991, - "lat": 51.5916473, - "lon": 0.0321858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 1D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1351959994, - "lat": 51.5965136, - "lon": 0.0368859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1351959997, - "lat": 51.5988750, - "lon": 0.0167456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1351960006, - "lat": 51.5979911, - "lon": 0.0308109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1351960007, - "lat": 51.5951154, - "lon": 0.0251074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E18 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1351984422, - "lat": 55.7775740, - "lon": -3.9069310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1352020661, - "lat": 51.9972205, - "lon": -1.4351162, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1352020688, - "lat": 51.9944919, - "lon": -1.4825210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX15 1182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1352020813, - "lat": 52.0317788, - "lon": -1.4124421, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1352020829, - "lat": 51.9953547, - "lon": -1.4860464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX15 1002D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1352418850, - "lat": 56.1572038, - "lon": -3.7317933, - "tags": { - "amenity": "post_box", - "ref": "FK13 143" - } -}, -{ - "type": "node", - "id": 1352418872, - "lat": 56.1527810, - "lon": -3.7398991, - "tags": { - "amenity": "post_box", - "location": "Murray Square", - "ref": "FK13 41" - } -}, -{ - "type": "node", - "id": 1352673280, - "lat": 55.7516091, - "lon": -5.0268325, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "PA20", - "ref": "PA20 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1352673298, - "lat": 55.7502963, - "lon": -5.0235564, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "PA20", - "ref": "PA20 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1352681356, - "lat": 53.7229503, - "lon": -0.4363156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00" - } -}, -{ - "type": "node", - "id": 1352765183, - "lat": 52.3133802, - "lon": -0.5930071, - "tags": { - "amenity": "post_box", - "ref": "NN10 37" - } -}, -{ - "type": "node", - "id": 1352773072, - "lat": 52.3503399, - "lon": -0.5434299, - "tags": { - "amenity": "post_box", - "ref": "NN9 146" - } -}, -{ - "type": "node", - "id": 1352781861, - "lat": 52.3241140, - "lon": -0.4799353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:16; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN9 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1352791172, - "lat": 52.3084079, - "lon": -0.4842078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1352813914, - "lat": 52.2966792, - "lon": -0.4662853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1352864344, - "lat": 52.0255119, - "lon": -1.5774868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 112D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1352864388, - "lat": 52.0337305, - "lon": -1.5637826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1352991388, - "lat": 54.2286674, - "lon": -2.1995647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "BD23 143" - } -}, -{ - "type": "node", - "id": 1353015236, - "lat": 51.5328285, - "lon": 0.1567815, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1353059661, - "lat": 52.6669638, - "lon": -2.3730152, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TF11 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1353837265, - "lat": 51.4287621, - "lon": -1.1515231, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1354138290, - "lat": 51.2326957, - "lon": 0.5140456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 34" - } -}, -{ - "type": "node", - "id": 1354157083, - "lat": 52.0704565, - "lon": -0.5413398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-29" - } -}, -{ - "type": "node", - "id": 1354652512, - "lat": 52.2115046, - "lon": -2.1413094, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing;gps" - } -}, -{ - "type": "node", - "id": 1354703428, - "lat": 52.0691096, - "lon": -0.6080432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-30", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK43 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1355333776, - "lat": 51.8076281, - "lon": -1.1395279, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "collection_times": "Mo-Fr 16:00, Sa 09:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "OX33 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1355367182, - "lat": 54.9215572, - "lon": -1.5686988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE9 59" - } -}, -{ - "type": "node", - "id": 1355379011, - "lat": 54.9177214, - "lon": -1.5671856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE9 49" - } -}, -{ - "type": "node", - "id": 1355380453, - "lat": 54.9208107, - "lon": -1.5764983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE9 111" - } -}, -{ - "type": "node", - "id": 1355382832, - "lat": 54.9250172, - "lon": -1.5749050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 20", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1355726996, - "lat": 51.5898170, - "lon": -1.7650793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 288" - } -}, -{ - "type": "node", - "id": 1355727487, - "lat": 51.5932525, - "lon": -1.7738473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 340", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1355727555, - "lat": 51.5943157, - "lon": -1.7653437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 52" - } -}, -{ - "type": "node", - "id": 1356116659, - "lat": 51.6692804, - "lon": -3.0136979, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1356416270, - "lat": 51.5182260, - "lon": -0.1961821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 56D;W2 256D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1356464798, - "lat": 52.6407850, - "lon": -2.4421146, - "tags": { - "amenity": "post_box", - "ref": "TF7 245" - } -}, -{ - "type": "node", - "id": 1356536875, - "lat": 51.5339773, - "lon": 0.7142572, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1356666183, - "lat": 54.3697621, - "lon": -3.0755719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "note": "Looks like a replacement for the wall box which can still be seen on Streetview", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA21 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1356729673, - "lat": 53.4616104, - "lon": -2.2579859, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M16 428", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1356802216, - "lat": 53.6611494, - "lon": -1.9531899, - "tags": { - "amenity": "post_box", - "ref": "HX6 292" - } -}, -{ - "type": "node", - "id": 1356937199, - "lat": 53.7078864, - "lon": -1.6759122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WF16 1" - } -}, -{ - "type": "node", - "id": 1356949008, - "lat": 51.1901924, - "lon": -2.4822330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "884466755757048", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1357164530, - "lat": 53.4665760, - "lon": -2.2648701, - "tags": { - "amenity": "post_box", - "ref": "M16 460" - } -}, -{ - "type": "node", - "id": 1357721426, - "lat": 50.8425163, - "lon": -1.1871311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "post_box:apertures": "2", - "post_box:type": "meter", - "ref": "PO14 1412", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1358051627, - "lat": 50.9849091, - "lon": -0.8925578, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358101252, - "lat": 50.8617680, - "lon": -2.1671340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref:GB:uprn": "10015451438" - } -}, -{ - "type": "node", - "id": 1358101254, - "lat": 50.8556293, - "lon": -2.0407882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 88", - "ref:GB:uprn": "10015422957", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358101256, - "lat": 50.8774293, - "lon": -2.2012565, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref:GB:uprn": "10015437359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358101258, - "lat": 50.8401928, - "lon": -2.0988678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 62D", - "ref:GB:uprn": "10015856134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358105479, - "lat": 50.9006166, - "lon": -2.2504543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT11 93D", - "ref:GB:uprn": "10015365764", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1358105481, - "lat": 50.9164339, - "lon": -2.2311107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 127D", - "ref:GB:uprn": "10015444040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358105482, - "lat": 50.8964319, - "lon": -2.2444495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT11 92D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1358122441, - "lat": 50.9877121, - "lon": -2.1677553, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015287796" - } -}, -{ - "type": "node", - "id": 1358122442, - "lat": 51.0027556, - "lon": -2.1931266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015391963" - } -}, -{ - "type": "node", - "id": 1358122444, - "lat": 50.9963290, - "lon": -2.2353864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015442101" - } -}, -{ - "type": "node", - "id": 1358122447, - "lat": 50.9819763, - "lon": -2.1841356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP7 27", - "ref:GB:uprn": "10015392840", - "website": "https://www.royalmail.com/services-near-you/postbox/cann-hill-sp7-0da/00000SP727" - } -}, -{ - "type": "node", - "id": 1358122449, - "lat": 51.0013134, - "lon": -2.2030632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 21D", - "ref:GB:uprn": "10013297974", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1358122451, - "lat": 50.9570761, - "lon": -2.2118647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 37D", - "ref:GB:uprn": "10024733217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358123673, - "lat": 50.9020801, - "lon": -2.0217313, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BH21 106", - "ref:GB:uprn": "10015307029", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1358238273, - "lat": 52.6591326, - "lon": -2.5210153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TF6 126" - } -}, -{ - "type": "node", - "id": 1358286712, - "lat": 55.8886885, - "lon": -3.4334727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH53 59D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1358408420, - "lat": 57.2899936, - "lon": -6.1749713, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-07", - "collection_times": "Mo-Fr 14:00; Sa 13:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV47 124", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1359368201, - "lat": 52.2904952, - "lon": -0.6132630, - "tags": { - "amenity": "post_box", - "ref": "NN10 92" - } -}, -{ - "type": "node", - "id": 1359562166, - "lat": 52.2366131, - "lon": -4.0943450, - "tags": { - "amenity": "post_box", - "ref": "SY23 91" - } -}, -{ - "type": "node", - "id": 1359562177, - "lat": 52.2555579, - "lon": -4.1353721, - "tags": { - "amenity": "post_box", - "fixme": "Check precise location", - "ref": "SY23 156" - } -}, -{ - "type": "node", - "id": 1359562181, - "lat": 52.3037245, - "lon": -4.1526884, - "tags": { - "amenity": "post_box", - "ref": "SY23 50" - } -}, -{ - "type": "node", - "id": 1359562182, - "lat": 52.2302788, - "lon": -4.1944236, - "tags": { - "amenity": "post_box", - "ref": "SY23 218" - } -}, -{ - "type": "node", - "id": 1359562183, - "lat": 52.2651652, - "lon": -4.1314775, - "tags": { - "amenity": "post_box", - "ref": "SY23 25" - } -}, -{ - "type": "node", - "id": 1359562191, - "lat": 52.3270013, - "lon": -4.1241390, - "tags": { - "amenity": "post_box", - "ref": "SY23 47" - } -}, -{ - "type": "node", - "id": 1359562197, - "lat": 52.2509079, - "lon": -4.0901393, - "tags": { - "amenity": "post_box", - "ref": "SY23 151" - } -}, -{ - "type": "node", - "id": 1359562200, - "lat": 52.2533512, - "lon": -4.0992374, - "tags": { - "amenity": "post_box", - "ref": "SY23 217" - } -}, -{ - "type": "node", - "id": 1359569490, - "lat": 52.3897529, - "lon": -4.0696687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY23 222" - } -}, -{ - "type": "node", - "id": 1359594151, - "lat": 52.4336331, - "lon": -3.9438999, - "tags": { - "amenity": "post_box", - "ref": "SY23 158" - } -}, -{ - "type": "node", - "id": 1359594154, - "lat": 52.4083869, - "lon": -4.0597338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 44" - } -}, -{ - "type": "node", - "id": 1359594155, - "lat": 52.4361939, - "lon": -3.9233488, - "tags": { - "amenity": "post_box", - "ref": "SY23 75" - } -}, -{ - "type": "node", - "id": 1359594156, - "lat": 52.4051896, - "lon": -4.0510005, - "tags": { - "amenity": "post_box", - "ref": "SY23 7" - } -}, -{ - "type": "node", - "id": 1359594171, - "lat": 52.4354875, - "lon": -3.9539582, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1359594173, - "lat": 52.4277347, - "lon": -3.9468589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 20" - } -}, -{ - "type": "node", - "id": 1359935200, - "lat": 51.5301409, - "lon": 0.1599684, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1360204678, - "lat": 52.3234815, - "lon": -2.0305626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B60 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1360296150, - "lat": 51.4909717, - "lon": -0.1774262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW7 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1360320437, - "lat": 54.4304741, - "lon": -2.9710101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "LA22 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1360376360, - "lat": 54.3529705, - "lon": -2.9395674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "post_box:type": "wall", - "ref": "LA22 117", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1360412075, - "lat": 53.0599236, - "lon": -2.9713269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LL13 318" - } -}, -{ - "type": "node", - "id": 1360456721, - "lat": 51.8829066, - "lon": 1.0440858, - "tags": { - "amenity": "post_box", - "ref": "CO7 72" - } -}, -{ - "type": "node", - "id": 1361047757, - "lat": 51.4068231, - "lon": -0.1262823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 67" - } -}, -{ - "type": "node", - "id": 1361047758, - "lat": 51.4014383, - "lon": -0.1262590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 74" - } -}, -{ - "type": "node", - "id": 1361047759, - "lat": 51.4074168, - "lon": -0.1368375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 79" - } -}, -{ - "type": "node", - "id": 1361047762, - "lat": 51.4056812, - "lon": -0.1253142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 58" - } -}, -{ - "type": "node", - "id": 1361047774, - "lat": 51.4117530, - "lon": -0.1258317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 80" - } -}, -{ - "type": "node", - "id": 1361047776, - "lat": 51.4069174, - "lon": -0.1298952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 7" - } -}, -{ - "type": "node", - "id": 1361047778, - "lat": 51.4130863, - "lon": -0.1339320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 81" - } -}, -{ - "type": "node", - "id": 1361047785, - "lat": 51.4020131, - "lon": -0.1228636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 62" - } -}, -{ - "type": "node", - "id": 1361050575, - "lat": 51.4147150, - "lon": -0.1403052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 76" - } -}, -{ - "type": "node", - "id": 1361050576, - "lat": 51.4367786, - "lon": -0.1361665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 98" - } -}, -{ - "type": "node", - "id": 1361050577, - "lat": 51.4205153, - "lon": -0.1327013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 43" - } -}, -{ - "type": "node", - "id": 1361050578, - "lat": 51.4175275, - "lon": -0.1404077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 100" - } -}, -{ - "type": "node", - "id": 1361050579, - "lat": 51.4187361, - "lon": -0.1344907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 32" - } -}, -{ - "type": "node", - "id": 1361050580, - "lat": 51.4178860, - "lon": -0.1303411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 22" - } -}, -{ - "type": "node", - "id": 1361052718, - "lat": 51.4321333, - "lon": -0.1318122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 59" - } -}, -{ - "type": "node", - "id": 1361052719, - "lat": 51.4235974, - "lon": -0.1146946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1361052720, - "lat": 51.4051032, - "lon": -0.1199635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 45" - } -}, -{ - "type": "node", - "id": 1361052721, - "lat": 51.4025129, - "lon": -0.1191520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 91D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1361052723, - "lat": 51.4113008, - "lon": -0.1232209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 83" - } -}, -{ - "type": "node", - "id": 1361052729, - "lat": 51.4211925, - "lon": -0.1104225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 72" - } -}, -{ - "type": "node", - "id": 1361052730, - "lat": 51.4147358, - "lon": -0.1232176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 92" - } -}, -{ - "type": "node", - "id": 1361052731, - "lat": 51.4279717, - "lon": -0.1146285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "fixme": "Check ref -- nodes 1361047771 and 1361052731 both have the same value", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1361057807, - "lat": 53.6803752, - "lon": -1.7530838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1361058877, - "lat": 51.7119300, - "lon": -1.3604400, - "tags": { - "amenity": "post_box", - "ref": "OX13 1053" - } -}, -{ - "type": "node", - "id": 1361058879, - "lat": 51.7142000, - "lon": -1.3590600, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX13 1224" - } -}, -{ - "type": "node", - "id": 1361074925, - "lat": 52.8989830, - "lon": -1.5419482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE23 693" - } -}, -{ - "type": "node", - "id": 1361544159, - "lat": 52.2891341, - "lon": -0.6066980, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN10 102", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1361558303, - "lat": 51.9061075, - "lon": 0.9859042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "postal_code": "CO7 7SP", - "ref": "CO7 410" - } -}, -{ - "type": "node", - "id": 1361558308, - "lat": 51.9071925, - "lon": 0.9663788, - "tags": { - "amenity": "post_box", - "postal_code": "CO7 7SA", - "ref": "CO7 276" - } -}, -{ - "type": "node", - "id": 1361558311, - "lat": 51.9073852, - "lon": 1.0057043, - "tags": { - "amenity": "post_box", - "mapillary": "175654327853096", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 106", - "survey:date": "2021-06-08" - } -}, -{ - "type": "node", - "id": 1361558312, - "lat": 51.9125229, - "lon": 0.9976359, - "tags": { - "amenity": "post_box", - "mapillary": "546813236489715", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7TE", - "ref": "CO7 230", - "survey:date": "2021-05-15" - } -}, -{ - "type": "node", - "id": 1361558321, - "lat": 51.9183478, - "lon": 0.9675545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "910708730249597", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7PN", - "ref": "CO7 213", - "survey:date": "2023-03-22" - } -}, -{ - "type": "node", - "id": 1361648941, - "lat": 51.3941883, - "lon": 0.4981322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 181", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1361670127, - "lat": 51.8886639, - "lon": 1.0387371, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO7 365" - } -}, -{ - "type": "node", - "id": 1361778569, - "lat": 55.8643401, - "lon": -4.2826200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-08-04", - "collection_times": "Mo-Fr 19:00; Sa 12:45", - "mapillary": "282450527032818", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G3 711", - "royal_cypher": "scottish_crown", - "survey:date": "2021-07-03" - } -}, -{ - "type": "node", - "id": 1362010981, - "lat": 50.8484154, - "lon": -1.0614293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 266D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1362010988, - "lat": 50.8434994, - "lon": -1.0675132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1362131839, - "lat": 50.8444287, - "lon": -0.6192795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1362141035, - "lat": 52.1420018, - "lon": -0.4702086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 1362176960, - "lat": 51.4014106, - "lon": -0.0921707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE25 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362176961, - "lat": 51.4034845, - "lon": -0.0865471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362179182, - "lat": 51.4436387, - "lon": -0.0974613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE21 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362179183, - "lat": 51.4329996, - "lon": -0.0911604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "not very upright!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362179184, - "lat": 51.4365345, - "lon": -0.0874336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SE21 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362179185, - "lat": 51.4312886, - "lon": -0.0831290, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SE21 27" - } -}, -{ - "type": "node", - "id": 1362183584, - "lat": 51.4473832, - "lon": -0.0724015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362183585, - "lat": 51.4522312, - "lon": -0.0758756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362183586, - "lat": 51.4514928, - "lon": -0.0711174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362183587, - "lat": 51.4540195, - "lon": -0.0723272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362183589, - "lat": 51.4481725, - "lon": -0.0653213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362183590, - "lat": 51.4510049, - "lon": -0.0809983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362183591, - "lat": 51.4484414, - "lon": -0.0773651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1362197418, - "lat": 51.5293479, - "lon": 0.1562326, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1362320454, - "lat": 50.8946813, - "lon": -3.2981438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX15 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1362378061, - "lat": 50.8172511, - "lon": -1.1535525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO12 367" - } -}, -{ - "type": "node", - "id": 1362378067, - "lat": 50.8312889, - "lon": -1.1710298, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO13 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1362428963, - "lat": 52.3947490, - "lon": -3.9414486, - "tags": { - "amenity": "post_box", - "ref": "SY23 178" - } -}, -{ - "type": "node", - "id": 1362428968, - "lat": 52.4031762, - "lon": -3.9715108, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1362428980, - "lat": 52.4130856, - "lon": -3.9361511, - "tags": { - "amenity": "post_box", - "ref": "SY23 228" - } -}, -{ - "type": "node", - "id": 1362428981, - "lat": 52.3915605, - "lon": -3.9310738, - "tags": { - "amenity": "post_box", - "ref": "SY23 105" - } -}, -{ - "type": "node", - "id": 1362428982, - "lat": 52.3912160, - "lon": -3.8596291, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1362840979, - "lat": 52.4365443, - "lon": 0.6009873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP27 3363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1363062430, - "lat": 52.4045164, - "lon": -4.0677827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY23 103" - } -}, -{ - "type": "node", - "id": 1363062433, - "lat": 52.3960489, - "lon": -4.0301987, - "tags": { - "amenity": "post_box", - "ref": "SY23 117" - } -}, -{ - "type": "node", - "id": 1363105041, - "lat": 51.5591071, - "lon": -1.7868359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1363105826, - "lat": 51.5589666, - "lon": -1.7853540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1363162421, - "lat": 53.1680267, - "lon": -1.1807157, - "tags": { - "amenity": "post_box", - "ele": "77.0000000" - } -}, -{ - "type": "node", - "id": 1363162422, - "lat": 53.1726395, - "lon": -1.1770987, - "tags": { - "amenity": "post_box", - "ele": "71.0000000" - } -}, -{ - "type": "node", - "id": 1363162423, - "lat": 53.1706636, - "lon": -1.1726154, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1363163413, - "lat": 53.1597243, - "lon": -1.1934320, - "tags": { - "amenity": "post_box", - "ele": "100.0000000" - } -}, -{ - "type": "node", - "id": 1363169436, - "lat": 53.1600122, - "lon": -1.1881722, - "tags": { - "amenity": "post_box", - "ele": "98.0000000" - } -}, -{ - "type": "node", - "id": 1363407989, - "lat": 53.6827360, - "lon": -1.7486403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1363580779, - "lat": 50.7372462, - "lon": -2.5778360, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1363759035, - "lat": 53.6797455, - "lon": -1.6853461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF14 180" - } -}, -{ - "type": "node", - "id": 1363871958, - "lat": 53.9291904, - "lon": -1.1596744, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO23 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1364184113, - "lat": 50.6128897, - "lon": -3.4606172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00", - "note": "This is a red pillar box that looks like a Royal Mail box but is privately operated. The sign indicates collections only M-F and has no reference number.", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1364206713, - "lat": 55.8594978, - "lon": -4.2867436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "no ref visible on postbox's info plate", - "ref": "G3 276D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1364298727, - "lat": 50.5989208, - "lon": -4.5093113, - "tags": { - "amenity": "post_box", - "ref": "PL15 25" - } -}, -{ - "type": "node", - "id": 1364332934, - "lat": 51.5448076, - "lon": -0.1832923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NW6 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1364333458, - "lat": 51.5465895, - "lon": -0.1805820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NW6 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1364338393, - "lat": 52.6514713, - "lon": -2.4687308, - "tags": { - "amenity": "post_box", - "ref": "TF4 296" - } -}, -{ - "type": "node", - "id": 1364459088, - "lat": 52.9912160, - "lon": -1.4073689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:30", - "ele": "97.0000000", - "post_box:type": "lamp", - "ref": "DE7 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1364635969, - "lat": 50.6028774, - "lon": -4.5108282, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PL15 75" - } -}, -{ - "type": "node", - "id": 1364642787, - "lat": 50.4442295, - "lon": -4.7643704, - "tags": { - "amenity": "post_box", - "mapillary": "3745206579026364", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL30 94" - } -}, -{ - "type": "node", - "id": 1364644213, - "lat": 53.8469154, - "lon": -2.9940864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY6 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1364646249, - "lat": 50.5975499, - "lon": -4.5169367, - "tags": { - "amenity": "post_box", - "ref": "PL15 57" - } -}, -{ - "type": "node", - "id": 1364854719, - "lat": 52.3310471, - "lon": -3.9321313, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY23 67" - } -}, -{ - "type": "node", - "id": 1364854725, - "lat": 52.3462218, - "lon": -3.9605262, - "tags": { - "amenity": "post_box", - "ref": "SY23 53" - } -}, -{ - "type": "node", - "id": 1364854729, - "lat": 52.3376613, - "lon": -3.9215591, - "tags": { - "amenity": "post_box", - "ref": "SY23 162" - } -}, -{ - "type": "node", - "id": 1364854734, - "lat": 52.3356912, - "lon": -3.9593996, - "tags": { - "amenity": "post_box", - "ref": "SY23 157" - } -}, -{ - "type": "node", - "id": 1364854738, - "lat": 52.3398639, - "lon": -3.9582517, - "tags": { - "amenity": "post_box", - "ref": "SY23 111" - } -}, -{ - "type": "node", - "id": 1364910739, - "lat": 51.5595806, - "lon": -1.7927253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1365008690, - "lat": 54.3439543, - "lon": -7.6366083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT74 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1365266374, - "lat": 51.0320412, - "lon": -3.1092687, - "tags": { - "amenity": "post_box", - "mapillary": "313130923877809", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 234", - "survey:date": "2020-03-19" - } -}, -{ - "type": "node", - "id": 1365296660, - "lat": 50.8862572, - "lon": -1.0132127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "I have upgraded the postbox tag.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO7 353" - } -}, -{ - "type": "node", - "id": 1365297371, - "lat": 50.8868393, - "lon": -1.0087603, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1365298499, - "lat": 50.8800434, - "lon": -1.0211092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "last_checked": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1366053850, - "lat": 52.5252187, - "lon": -0.3942634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 192", - "source": "GPS waypoint" - } -}, -{ - "type": "node", - "id": 1366096168, - "lat": 52.5312301, - "lon": -0.3984720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE8 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS waypoint" - } -}, -{ - "type": "node", - "id": 1366230608, - "lat": 57.4678862, - "lon": -4.2184517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 30", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1366230624, - "lat": 57.4749755, - "lon": -4.2183771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 117", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1366434302, - "lat": 50.8300098, - "lon": -4.5435252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX23 101D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1366525276, - "lat": 53.9558077, - "lon": -0.4349633, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1366564010, - "lat": 55.9475557, - "lon": -4.0337536, - "tags": { - "amenity": "post_box", - "ref": "G68 367" - } -}, -{ - "type": "node", - "id": 1366655715, - "lat": 52.4627141, - "lon": -1.9110825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "B15 8", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1366814366, - "lat": 50.7457490, - "lon": -2.2196653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 325", - "ref:GB:uprn": "10015401925" - } -}, -{ - "type": "node", - "id": 1366814370, - "lat": 50.6326168, - "lon": -2.0529600, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 125D", - "ref:GB:uprn": "10015367986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1366814380, - "lat": 50.6867970, - "lon": -2.1051090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 265D", - "ref:GB:uprn": "10015444442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1366814384, - "lat": 50.7014526, - "lon": -2.2420187, - "tags": { - "amenity": "post_box", - "fixme": "check ref", - "operator": "Royal Mail", - "ref": "BH20 287", - "ref:GB:uprn": "10015305376" - } -}, -{ - "type": "node", - "id": 1366816819, - "lat": 54.5348814, - "lon": -1.5785160, - "tags": { - "amenity": "post_box", - "ref": "DL3 130" - } -}, -{ - "type": "node", - "id": 1366862049, - "lat": 52.1160847, - "lon": -0.6111517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 236", - "royal_cypher": "EIIR", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1367388595, - "lat": 54.1100998, - "lon": -1.4493724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HG4 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1367391233, - "lat": 54.1423486, - "lon": -1.5197044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 27" - } -}, -{ - "type": "node", - "id": 1367719075, - "lat": 51.8977277, - "lon": 0.9541002, - "tags": { - "amenity": "post_box", - "mapillary": "337442114390572", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7SE", - "ref": "CO7 119", - "survey:date": "2020-09-08" - } -}, -{ - "type": "node", - "id": 1367719082, - "lat": 51.9020788, - "lon": 0.9401963, - "tags": { - "amenity": "post_box", - "postal_code": "CO4 3JB", - "ref": "CO4 426" - } -}, -{ - "type": "node", - "id": 1367719090, - "lat": 51.9095971, - "lon": 0.9476586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "postal_code": "CO7 7PP", - "ref": "CO7 108" - } -}, -{ - "type": "node", - "id": 1367719134, - "lat": 51.9188259, - "lon": 0.9331741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3478200002404759", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 7QT", - "ref": "CO7 10", - "survey:date": "2023-03-25" - } -}, -{ - "type": "node", - "id": 1367719155, - "lat": 51.9243373, - "lon": 0.9392136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CO7 7QL", - "ref": "CO7 272" - } -}, -{ - "type": "node", - "id": 1367858980, - "lat": 51.8424070, - "lon": 1.0735061, - "tags": { - "amenity": "post_box", - "mapillary": "380980849881460", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CO7 8NH", - "ref": "CO7 80", - "survey:date": "2021-04-10" - } -}, -{ - "type": "node", - "id": 1368160241, - "lat": 50.8668332, - "lon": -0.6304821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1368160244, - "lat": 50.8463038, - "lon": -0.6279186, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1368160246, - "lat": 50.8647754, - "lon": -0.6314755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1334", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1368816781, - "lat": 53.2378806, - "lon": -0.5325968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LN2 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1368902935, - "lat": 51.2729433, - "lon": 0.5323375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 382D" - } -}, -{ - "type": "node", - "id": 1369045663, - "lat": 52.4435161, - "lon": 0.6216609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1369148513, - "lat": 52.8184375, - "lon": -1.2476816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1369171634, - "lat": 50.5822294, - "lon": -3.6774776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1369506277, - "lat": 50.6459414, - "lon": -4.6318919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL32 107" - } -}, -{ - "type": "node", - "id": 1369512397, - "lat": 50.6895350, - "lon": -4.6930479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL35 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-10-29" - } -}, -{ - "type": "node", - "id": 1369644077, - "lat": 50.5950366, - "lon": -3.6682569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1370098213, - "lat": 53.8465837, - "lon": -0.4174055, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1370367394, - "lat": 53.7994725, - "lon": -1.5395719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "normal", - "collection_plate:date": "2018-10-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "check royal_cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS2 692D;LS2 1692D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-24" - } -}, -{ - "type": "node", - "id": 1370367395, - "lat": 53.8084832, - "lon": -1.5333340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1370367397, - "lat": 53.8106189, - "lon": -1.5259687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1370367398, - "lat": 53.8130835, - "lon": -1.5208181, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 267" - } -}, -{ - "type": "node", - "id": 1370524428, - "lat": 52.3917585, - "lon": -0.2741567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 115" - } -}, -{ - "type": "node", - "id": 1370643967, - "lat": 53.9742693, - "lon": -1.0852804, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO30 383", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1370797201, - "lat": 52.5099036, - "lon": -0.3229190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE7 42", - "source": "GPS waypoint" - } -}, -{ - "type": "node", - "id": 1371207985, - "lat": 50.6953938, - "lon": -3.7254454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1371392450, - "lat": 55.6440695, - "lon": -5.3829299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 159", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1371446432, - "lat": 50.5998468, - "lon": -4.3076215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1371453974, - "lat": 50.5361178, - "lon": -4.1415797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL19 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1371479906, - "lat": 50.3332801, - "lon": -4.7929946, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1371514530, - "lat": 52.1329764, - "lon": -2.4937131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "WR6 274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1371522811, - "lat": 52.1205852, - "lon": -2.4951130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "note": "ref not shown on plate", - "post_box:type": "wall", - "ref": "WR6 116", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 1371534320, - "lat": 51.4776298, - "lon": -2.6081937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS6 1317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1371990687, - "lat": 53.6982981, - "lon": -2.4599637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1371990688, - "lat": 53.6991850, - "lon": -2.4621802, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1372380367, - "lat": 51.6047238, - "lon": -0.1827740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N3 19D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1372565677, - "lat": 52.9328454, - "lon": 1.2047367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR26 2622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1372569195, - "lat": 52.9028731, - "lon": 1.2913352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:55; Su off", - "name": "Roughton Mill", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1372571434, - "lat": 51.7599123, - "lon": -0.0099307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "EN11 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1373188060, - "lat": 51.4584685, - "lon": -1.2669633, - "tags": { - "amenity": "post_box", - "ref": "RG18 108" - } -}, -{ - "type": "node", - "id": 1373188134, - "lat": 51.4564340, - "lon": -1.2627766, - "tags": { - "amenity": "post_box", - "ref": "RG18 269" - } -}, -{ - "type": "node", - "id": 1373793306, - "lat": 52.7021018, - "lon": -1.9511916, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1373992294, - "lat": 52.2830397, - "lon": -1.6230318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV35 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1374010453, - "lat": 52.2785322, - "lon": 0.0480375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB24 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1374127381, - "lat": 50.8065861, - "lon": -1.8791237, - "tags": { - "amenity": "post_box", - "ref": "BH22 181", - "ref:GB:uprn": "10015446328" - } -}, -{ - "type": "node", - "id": 1374127385, - "lat": 50.8086584, - "lon": -1.8782714, - "tags": { - "amenity": "post_box", - "ref": "BH22 96", - "ref:GB:uprn": "10015392957" - } -}, -{ - "type": "node", - "id": 1374172452, - "lat": 52.4794465, - "lon": -4.0516032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 202" - } -}, -{ - "type": "node", - "id": 1374549231, - "lat": 51.5232400, - "lon": -0.1866141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "post_box:type": "pillar", - "ref": "W9 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1374874312, - "lat": 50.8047104, - "lon": -0.5375450, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN17 1498" - } -}, -{ - "type": "node", - "id": 1374874321, - "lat": 50.8041447, - "lon": -0.5346130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN17 1464", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1374889487, - "lat": 50.5514615, - "lon": -2.4287789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT5 52D", - "ref:GB:uprn": "10015295560", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 1375129354, - "lat": 53.9515219, - "lon": -1.3976682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LS22 632", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375129359, - "lat": 53.9472720, - "lon": -1.3938461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS22 459", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375137929, - "lat": 50.8184925, - "lon": -0.7309776, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-17", - "old_ref": "PO20 38", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO20 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375162577, - "lat": 51.4821029, - "lon": -0.1870879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "sticky label suggests this is now a collection on delivery box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW10 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375168681, - "lat": 50.7707868, - "lon": -0.7442414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375168808, - "lat": 50.7758739, - "lon": -0.7330130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375168810, - "lat": 50.7812216, - "lon": -0.7358484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PO21 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375178393, - "lat": 53.9546247, - "lon": -0.7355368, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO42 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1375178395, - "lat": 53.9846207, - "lon": -0.6007236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "post_box:type": "lamp", - "ref": "YO25 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1375252101, - "lat": 53.6680071, - "lon": -1.7700634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1375252112, - "lat": 53.6682367, - "lon": -1.7633365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1375252150, - "lat": 53.6719563, - "lon": -1.7471151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1375526506, - "lat": 50.8012707, - "lon": -0.7306508, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375527726, - "lat": 50.8397662, - "lon": -0.7820831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1375761333, - "lat": 51.0316667, - "lon": -3.1008167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 105" - } -}, -{ - "type": "node", - "id": 1376098840, - "lat": 56.5580199, - "lon": -3.5758074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH8 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1376131001, - "lat": 52.8151952, - "lon": -2.2156846, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST18 98", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1376139432, - "lat": 52.8441927, - "lon": -2.2570954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1557628591319068", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ST21 2100", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 1376194457, - "lat": 50.7246777, - "lon": -1.9284821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 244D", - "ref:GB:uprn": "10015379392", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1376194491, - "lat": 50.7259908, - "lon": -1.9327895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 169D", - "ref:GB:uprn": "10015329572", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1376228749, - "lat": 51.6895152, - "lon": -0.7065846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP16 134" - } -}, -{ - "type": "node", - "id": 1376228771, - "lat": 51.6936962, - "lon": -0.6980588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "HP16 84" - } -}, -{ - "type": "node", - "id": 1376259794, - "lat": 55.9083035, - "lon": -4.3482640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1376300828, - "lat": 52.8658550, - "lon": -2.1914193, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "ST15 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1376543593, - "lat": 51.6434557, - "lon": -2.6721547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP16 400D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-11-03", - "wikimedia_commons": "File:Queen Elizabeth II postbox, Church Road, Chepstow - geograph.org.uk - 5667365.jpg" - } -}, -{ - "type": "node", - "id": 1376544770, - "lat": 51.6450950, - "lon": -2.6717870, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NP16 403D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1376869901, - "lat": 51.6575542, - "lon": -0.2013135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EN5 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377207789, - "lat": 57.5803363, - "lon": -5.0729458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV22 264", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1377490772, - "lat": 52.2036441, - "lon": -3.0287268, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1377490783, - "lat": 52.2018828, - "lon": -3.0359916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR5 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-04" - } -}, -{ - "type": "node", - "id": 1377778420, - "lat": 52.6479809, - "lon": -2.0830271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1377857377, - "lat": 52.8291332, - "lon": 1.3839937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR28 2802", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377859908, - "lat": 52.8239206, - "lon": 1.3862156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2803D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377864829, - "lat": 52.8294774, - "lon": 1.3890803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2866", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377876554, - "lat": 52.8253874, - "lon": 1.3727104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377887990, - "lat": 52.8270442, - "lon": 1.3750456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2814D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377893382, - "lat": 52.8200525, - "lon": 1.3942291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2838D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377900649, - "lat": 52.8211418, - "lon": 1.3977818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2843D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377900650, - "lat": 52.8206032, - "lon": 1.4018188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2867", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377905469, - "lat": 52.8133646, - "lon": 1.4127691, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1377911698, - "lat": 52.8143235, - "lon": 1.4708893, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1378043662, - "lat": 53.9546238, - "lon": -1.5588733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1378081149, - "lat": 55.6617007, - "lon": -5.1557540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1378081295, - "lat": 55.7043189, - "lon": -5.2813059, - "tags": { - "amenity": "post_box", - "ref": "KA27 110", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1378575154, - "lat": 55.8874401, - "lon": -3.4200292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "wall", - "ref": "EH27 57", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1378908692, - "lat": 51.5603794, - "lon": 0.6568236, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1378919816, - "lat": 53.6837327, - "lon": -1.8518263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 102" - } -}, -{ - "type": "node", - "id": 1378992133, - "lat": 51.0126616, - "lon": -0.3929034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1378992149, - "lat": 51.0403493, - "lon": -0.4067838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH13 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1378992158, - "lat": 51.0503780, - "lon": -0.3975948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1378992175, - "lat": 51.0575461, - "lon": -0.3899787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "RH12 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1379010263, - "lat": 53.8329759, - "lon": -1.5926312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1379022811, - "lat": 54.0523280, - "lon": -2.8919213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 136", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1379022851, - "lat": 54.0586376, - "lon": -2.8901930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 56D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1379022863, - "lat": 54.0612622, - "lon": -2.8894112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1379104136, - "lat": 53.8815110, - "lon": -1.6088893, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS16 711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1379347029, - "lat": 50.9490960, - "lon": -2.9461270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1379363069, - "lat": 53.9279917, - "lon": -1.8349392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 824", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1379440063, - "lat": 50.9726549, - "lon": -1.6038656, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1379864593, - "lat": 55.1146922, - "lon": -2.1346940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE48 142", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1379864649, - "lat": 55.1597797, - "lon": -2.1430302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE48 172", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1380646577, - "lat": 54.0657450, - "lon": -2.2828802, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD24 113" - } -}, -{ - "type": "node", - "id": 1380833732, - "lat": 54.3116599, - "lon": -2.2199070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1380898499, - "lat": 54.3035914, - "lon": -2.1946914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL8 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-25" - } -}, -{ - "type": "node", - "id": 1380902065, - "lat": 52.8910948, - "lon": 1.2895161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:25; Su off", - "name": "Roughton Grove", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1167", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1380918238, - "lat": 51.7020273, - "lon": -0.6706987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP16 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1380919934, - "lat": 54.9503802, - "lon": -1.6086789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE8 63" - } -}, -{ - "type": "node", - "id": 1381617402, - "lat": 52.0518700, - "lon": -2.7108399, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HR1 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1381617411, - "lat": 52.0563899, - "lon": -2.7145318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "fixme": "Need to get ref again; plate has slipped down.", - "historic_operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HR1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1381617414, - "lat": 52.0575363, - "lon": -2.7129500, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "HR1 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1381617417, - "lat": 52.0584496, - "lon": -2.7107442, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "HR1 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1381617419, - "lat": 52.0603596, - "lon": -2.6973787, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "HR1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1381785868, - "lat": 51.5886440, - "lon": -1.7553457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 405" - } -}, -{ - "type": "node", - "id": 1382047716, - "lat": 53.6891357, - "lon": -1.8092325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX5 131" - } -}, -{ - "type": "node", - "id": 1382047719, - "lat": 53.6883671, - "lon": -1.8264300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HX5 111", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1382047721, - "lat": 53.6909919, - "lon": -1.8303150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 156" - } -}, -{ - "type": "node", - "id": 1382047736, - "lat": 53.6837033, - "lon": -1.8273928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX5 124" - } -}, -{ - "type": "node", - "id": 1382047738, - "lat": 53.6832119, - "lon": -1.8140554, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX5 133" - } -}, -{ - "type": "node", - "id": 1382082858, - "lat": 54.3028686, - "lon": -2.1896192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DL8 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-25" - } -}, -{ - "type": "node", - "id": 1382334891, - "lat": 51.1201284, - "lon": -3.0378594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1382344355, - "lat": 51.7408999, - "lon": -2.4026618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "GL2 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1382344356, - "lat": 51.6410251, - "lon": -2.4994551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1382344357, - "lat": 51.6426706, - "lon": -2.5459191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 175", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1382680754, - "lat": 52.1044046, - "lon": -0.6839461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 1383083243, - "lat": 54.1791095, - "lon": -1.2726969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "wall", - "ref": "YO7 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1383274721, - "lat": 51.4409008, - "lon": -0.9470800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG6 575D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1383341254, - "lat": 54.9720794, - "lon": -2.9500817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA6 124", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1383356543, - "lat": 55.0753824, - "lon": -3.0069192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG14 73", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1383358441, - "lat": 55.1489050, - "lon": -2.9965055, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG13 59", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1383526028, - "lat": 53.8473076, - "lon": -1.6293363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 215", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1383645629, - "lat": 52.2007788, - "lon": 0.1935991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB1 503D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-12-17" - } -}, -{ - "type": "node", - "id": 1383645630, - "lat": 52.2020349, - "lon": 0.1898051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB1 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-12-18" - } -}, -{ - "type": "node", - "id": 1383927865, - "lat": 51.6803933, - "lon": -0.5924239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HP6 55" - } -}, -{ - "type": "node", - "id": 1383927907, - "lat": 51.6214674, - "lon": -0.5526892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL9 261" - } -}, -{ - "type": "node", - "id": 1384057115, - "lat": 52.4669861, - "lon": -1.9550963, - "tags": { - "amenity": "post_box", - "ref": "B17 525", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1384362457, - "lat": 52.1956063, - "lon": 0.1992049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB1 504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1384409845, - "lat": 53.0614329, - "lon": -1.3509075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG16 329", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1384710457, - "lat": 53.2931807, - "lon": -1.4038840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ele": "158.0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S21 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1384752135, - "lat": 52.9084285, - "lon": -2.0791362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST15 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1384877697, - "lat": 51.5835890, - "lon": -0.2277670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW4 15D" - } -}, -{ - "type": "node", - "id": 1384995646, - "lat": 51.8773272, - "lon": 0.6854542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 229", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1385197990, - "lat": 52.9390704, - "lon": -2.0718437, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST11 559" - } -}, -{ - "type": "node", - "id": 1385245686, - "lat": 52.9359771, - "lon": -2.0744152, - "tags": { - "amenity": "post_box", - "ref": "ST11 286" - } -}, -{ - "type": "node", - "id": 1385269727, - "lat": 52.0806719, - "lon": -3.7936156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1385294337, - "lat": 52.9307426, - "lon": -2.0789086, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "ST15 164" - } -}, -{ - "type": "node", - "id": 1385304760, - "lat": 51.4313910, - "lon": -0.9069342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG6 620" - } -}, -{ - "type": "node", - "id": 1385343243, - "lat": 53.3805177, - "lon": -2.1999519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK8 196" - } -}, -{ - "type": "node", - "id": 1385343444, - "lat": 52.0868164, - "lon": -3.8003313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA20 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1386173816, - "lat": 52.9113744, - "lon": 1.3531956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR27 2719D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2019-09-18" - } -}, -{ - "type": "node", - "id": 1386187208, - "lat": 52.9074129, - "lon": 1.3581604, - "tags": { - "amenity": "post_box", - "note": "Behind wall", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1386298398, - "lat": 52.8986071, - "lon": 1.3805703, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1386336246, - "lat": 52.8975133, - "lon": 1.3892418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-18" - } -}, -{ - "type": "node", - "id": 1386339610, - "lat": 52.8901782, - "lon": 1.4075788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-18" - } -}, -{ - "type": "node", - "id": 1386596270, - "lat": 52.7705226, - "lon": 1.3347270, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1386646580, - "lat": 54.3067108, - "lon": -2.1024443, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1386698218, - "lat": 52.5439678, - "lon": -0.3387769, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1386839587, - "lat": 51.6714239, - "lon": -0.3919765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD24 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1386971810, - "lat": 52.6294595, - "lon": -2.4417174, - "tags": { - "amenity": "post_box", - "ref": "TF7 322" - } -}, -{ - "type": "node", - "id": 1387154975, - "lat": 51.8698471, - "lon": -4.9410820, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1387341180, - "lat": 51.9614416, - "lon": 0.9713173, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1387547394, - "lat": 52.7587573, - "lon": -2.1100060, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST18 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1388390907, - "lat": 50.8035487, - "lon": -1.0734421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO1 245D" - } -}, -{ - "type": "node", - "id": 1388473673, - "lat": 53.6746612, - "lon": -1.9024223, - "tags": { - "amenity": "post_box", - "ref": "HX4 53" - } -}, -{ - "type": "node", - "id": 1388908578, - "lat": 52.8620969, - "lon": -2.2938204, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST21 92", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1388996041, - "lat": 55.8149531, - "lon": -4.2278419, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1388997894, - "lat": 51.6452527, - "lon": -0.6528871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP7 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 1388997969, - "lat": 51.6466718, - "lon": -0.6316102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP7 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1389006988, - "lat": 52.1789464, - "lon": 0.2234005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB21 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1389024967, - "lat": 50.8020260, - "lon": -1.0938339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1389028885, - "lat": 50.7921238, - "lon": -1.0958574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-21", - "check_date:collection_times": "2022-06-21", - "check_date:ref": "2022-06-21", - "collection_times": "Mo-Fr 18:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PO1 1321;PO1 1322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1389029218, - "lat": 50.7920780, - "lon": -1.0958360, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-21", - "check_date:collection_times": "2022-06-21", - "check_date:ref": "2022-06-21", - "collection_times": "Mo-Fr 18:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PO1 378P" - } -}, -{ - "type": "node", - "id": 1389039363, - "lat": 50.8158097, - "lon": -1.0704939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1389223941, - "lat": 54.2621171, - "lon": -0.8584179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO62 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1389239287, - "lat": 51.4355466, - "lon": -1.0807037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1389239399, - "lat": 51.4367273, - "lon": -1.0796296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG7 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1389369259, - "lat": 51.4366877, - "lon": -1.1048265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1389369708, - "lat": 51.4227344, - "lon": -1.1272130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1389369731, - "lat": 51.4275813, - "lon": -1.1873360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1389370921, - "lat": 51.4443563, - "lon": -1.0992640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1389370960, - "lat": 51.4402845, - "lon": -1.1286759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1389925498, - "lat": 55.6762741, - "lon": -4.0656638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ML10 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1389927039, - "lat": 51.0058938, - "lon": -1.5004865, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1389933710, - "lat": 52.7587543, - "lon": 1.3263749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1389940663, - "lat": 51.0301856, - "lon": -1.5225527, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1390195082, - "lat": 54.2882915, - "lon": -6.0872343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1390251404, - "lat": 52.5329161, - "lon": -1.4657468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV10 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1390342929, - "lat": 51.0760836, - "lon": -0.7241414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU27 22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU27 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-08-13" - } -}, -{ - "type": "node", - "id": 1390772821, - "lat": 53.7333494, - "lon": -2.7493877, - "tags": { - "amenity": "post_box", - "ref": "PR4 15" - } -}, -{ - "type": "node", - "id": 1391447627, - "lat": 52.2784422, - "lon": -2.1342782, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "description": "Hidden under tree, next to telegraph post.", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR9 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1391504144, - "lat": 50.8048943, - "lon": 0.2785660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1391504709, - "lat": 51.0844379, - "lon": -0.7328138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU27 127D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wikimedia_commons": "File:Post_box_GU27_127D,_Sturt_Road,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 1391504711, - "lat": 51.0852671, - "lon": -0.7528223, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 129", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post_Box_GU27_129,_Hammer_Lane,_Linchmere,_Haslemere,_West_Sussex.jpg" - } -}, -{ - "type": "node", - "id": 1391504753, - "lat": 51.0853788, - "lon": -0.7232840, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-20", - "old_ref": "GU27 147", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1391518185, - "lat": 50.7969286, - "lon": 0.2770139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 827", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1392040425, - "lat": 51.5203601, - "lon": -0.1228938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1B 7D;WC1B 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1392347764, - "lat": 53.1547747, - "lon": -1.8710868, - "tags": { - "amenity": "post_box", - "ele": "251.0000000", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1393055096, - "lat": 53.0494397, - "lon": -1.2975722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "ele": "137.0000000", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG16 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1393135312, - "lat": 53.0529222, - "lon": -1.2944472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "134.0000000", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG16 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1393144218, - "lat": 53.0549628, - "lon": -1.2900264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "137.0000000", - "post_box:type": "wall", - "ref": "NG16 167D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1393295014, - "lat": 50.9623300, - "lon": -1.4241353, - "tags": { - "amenity": "post_box", - "note": "position slightly approximate", - "ref": "SO16 731" - } -}, -{ - "type": "node", - "id": 1393374342, - "lat": 53.1733541, - "lon": -2.9344466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CH4 314D" - } -}, -{ - "type": "node", - "id": 1393821174, - "lat": 54.1775238, - "lon": -7.5016202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1393878225, - "lat": 52.3555644, - "lon": -1.7739630, - "tags": { - "amenity": "post_box", - "ref": "B94 79", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1394136791, - "lat": 51.4283088, - "lon": -0.9137138, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1394203610, - "lat": 56.4023240, - "lon": -4.9706821, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA33 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1394267602, - "lat": 50.3675719, - "lon": -4.1362912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL1 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-09-02" - } -}, -{ - "type": "node", - "id": 1394735909, - "lat": 51.7480895, - "lon": -0.9788471, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1394735919, - "lat": 51.7464072, - "lon": -0.9766664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX9 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1394735922, - "lat": 51.7465019, - "lon": -0.9733606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1394760540, - "lat": 52.9105598, - "lon": -0.6359248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1394760541, - "lat": 52.9019503, - "lon": -0.6322548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1394760542, - "lat": 52.9086616, - "lon": -0.6323453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG32 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1394760543, - "lat": 52.9198717, - "lon": -0.6201631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1395358055, - "lat": 52.1226742, - "lon": -2.0099019, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1395360781, - "lat": 52.1323172, - "lon": -2.0067517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR11 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing", - "source:ref": "dracos;Royal Mail" - } -}, -{ - "type": "node", - "id": 1395826279, - "lat": 52.7492404, - "lon": 1.3815303, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1395920961, - "lat": 53.8296410, - "lon": -1.9867229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD22 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1396905538, - "lat": 51.5852582, - "lon": -1.7684952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 157" - } -}, -{ - "type": "node", - "id": 1396905614, - "lat": 51.5857803, - "lon": -1.7608615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 303" - } -}, -{ - "type": "node", - "id": 1397300498, - "lat": 54.3642319, - "lon": -3.0511092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:45", - "post_box:type": "wall", - "ref": "LA22 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1397369747, - "lat": 51.5802734, - "lon": 0.6159726, - "tags": { - "amenity": "post_box", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 1398505456, - "lat": 52.6193420, - "lon": -1.1946213, - "tags": { - "amenity": "post_box", - "ref": "LE3 913" - } -}, -{ - "type": "node", - "id": 1398779553, - "lat": 52.2029252, - "lon": 0.2554404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1398840719, - "lat": 52.1153269, - "lon": -1.9660546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR11 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1399135270, - "lat": 54.3557645, - "lon": -3.4082614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CA18 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1399647775, - "lat": 50.8226981, - "lon": -1.5718430, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO42 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1399666138, - "lat": 54.1181610, - "lon": -2.5110960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LA2 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1399702950, - "lat": 54.1215664, - "lon": -2.5077117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "LA2 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1399755583, - "lat": 51.3841362, - "lon": 0.1155131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 490", - "ref:GB:uprn": "10015465849", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1399796140, - "lat": 54.0049184, - "lon": -2.2230272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD23 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1399798192, - "lat": 52.1063571, - "lon": -1.3340155, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1399804864, - "lat": 52.1136057, - "lon": -1.3195658, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-12", - "ele": "95.0000000", - "post_box:type": "wall", - "ref": "OX17 1080D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1399862748, - "lat": 51.6030157, - "lon": 0.3423764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM13 80", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1399950550, - "lat": 54.2842246, - "lon": -1.4376054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL7 117" - } -}, -{ - "type": "node", - "id": 1399997399, - "lat": 54.1668237, - "lon": -2.8185537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 54", - "source": "GPS, photo and recent walk" - } -}, -{ - "type": "node", - "id": 1400037342, - "lat": 50.7370587, - "lon": -1.9661680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 58", - "ref:GB:uprn": "10015300100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1400088943, - "lat": 53.7072540, - "lon": -1.9113192, - "tags": { - "amenity": "post_box", - "ref": "HX6 193" - } -}, -{ - "type": "node", - "id": 1400088945, - "lat": 53.7062760, - "lon": -1.9144199, - "tags": { - "amenity": "post_box", - "ref": "HX6 221" - } -}, -{ - "type": "node", - "id": 1400115472, - "lat": 51.1293850, - "lon": 0.2742286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN2 98" - } -}, -{ - "type": "node", - "id": 1400115484, - "lat": 51.1311736, - "lon": 0.2773786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN2 1" - } -}, -{ - "type": "node", - "id": 1400160956, - "lat": 52.1265331, - "lon": -0.4200697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK44 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 1400442154, - "lat": 53.9841749, - "lon": -2.1037264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 90" - } -}, -{ - "type": "node", - "id": 1400889390, - "lat": 50.3816347, - "lon": -4.1760232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "326499386112020", - "post_box:type": "pillar", - "ref": "PL2 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 1400960030, - "lat": 56.6986559, - "lon": -3.7238712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 52D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1400961511, - "lat": 56.7060455, - "lon": -3.7309457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH16 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1400968444, - "lat": 54.3261520, - "lon": -1.4451318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL7 58", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1401062214, - "lat": 54.7685525, - "lon": -1.5788356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH7 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1401063587, - "lat": 51.7545995, - "lon": -1.2490416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "postal_code": "OX1", - "ref": "OX1 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1401124213, - "lat": 52.1540308, - "lon": 0.1476809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB22 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1401124214, - "lat": 52.1542194, - "lon": 0.1416919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB22 335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1401124215, - "lat": 52.1600895, - "lon": 0.1566116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 15:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB22 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1402217890, - "lat": 51.3455679, - "lon": -2.2572193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BA15 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1402311765, - "lat": 55.5930578, - "lon": -2.6448313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD6 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1402484396, - "lat": 52.1658250, - "lon": -1.8595478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B50 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1402503922, - "lat": 52.1286855, - "lon": -0.4727759, - "tags": { - "amenity": "post_box", - "note": "inside hospital to the left of main entrance", - "ref": "MK42 350", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1402600322, - "lat": 53.7069265, - "lon": -1.6545654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1402600324, - "lat": 53.7304139, - "lon": -1.6644854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1403139857, - "lat": 51.4650544, - "lon": -0.8816599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1403164009, - "lat": 56.6227512, - "lon": -6.0713942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PA75 102", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1403287596, - "lat": 51.3648973, - "lon": -2.3890134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 92" - } -}, -{ - "type": "node", - "id": 1403456387, - "lat": 52.8679538, - "lon": 1.1922713, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1403579523, - "lat": 52.0638470, - "lon": -0.8093630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "location": "In store next to Costa", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1404348596, - "lat": 54.5760112, - "lon": -1.2450758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1404736520, - "lat": 51.4412985, - "lon": -2.5821044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1405002774, - "lat": 50.3942326, - "lon": -3.5103896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 403D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 1405417509, - "lat": 51.5767869, - "lon": 0.6081249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1405913527, - "lat": 51.5626763, - "lon": -0.1359368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 33D" - } -}, -{ - "type": "node", - "id": 1406178557, - "lat": 54.3764525, - "lon": -2.9889712, - "tags": { - "amenity": "post_box", - "ref": "LA22 150" - } -}, -{ - "type": "node", - "id": 1406227116, - "lat": 53.7241124, - "lon": -1.8607597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HX1 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1406227117, - "lat": 53.7207765, - "lon": -1.8601696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "HX1 27" - } -}, -{ - "type": "node", - "id": 1406227118, - "lat": 53.7246171, - "lon": -1.8636136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HX1 101" - } -}, -{ - "type": "node", - "id": 1406227119, - "lat": 53.7209737, - "lon": -1.8539654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HX1 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1406227120, - "lat": 53.7176664, - "lon": -1.8577782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 19:00", - "operator": "Royal Mail", - "ref": "HX1 80" - } -}, -{ - "type": "node", - "id": 1406227121, - "lat": 53.7212915, - "lon": -1.8582243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HX1 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1406227122, - "lat": 53.7230968, - "lon": -1.8589895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HX1 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1406227123, - "lat": 53.7193036, - "lon": -1.8564950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX1 4" - } -}, -{ - "type": "node", - "id": 1406862492, - "lat": 55.8801093, - "lon": -4.3094165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "G12 576" - } -}, -{ - "type": "node", - "id": 1407194593, - "lat": 52.4418199, - "lon": 0.6271210, - "tags": { - "addr:city": "Brandon", - "addr:postcode": "IP27 0EH", - "addr:street": "Rought Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:25; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP27 3411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1407194611, - "lat": 52.4463202, - "lon": 0.6302829, - "tags": { - "addr:city": "Brandon", - "addr:postcode": "IP27 0DB", - "addr:street": "Thetford Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:05; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP27 3406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1407217647, - "lat": 52.1467456, - "lon": -0.4699823, - "tags": { - "amenity": "post_box", - "ref": "MK41 82", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1407239398, - "lat": 51.3208540, - "lon": -2.8351286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Local_knowledge" - } -}, -{ - "type": "node", - "id": 1407240702, - "lat": 51.3187427, - "lon": -2.8312247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Local_knowledge" - } -}, -{ - "type": "node", - "id": 1407251048, - "lat": 51.3135251, - "lon": -2.8319738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1407302584, - "lat": 53.2867731, - "lon": 0.2322318, - "tags": { - "amenity": "post_box", - "source": "OS_OpenData_StreetView" - } -}, -{ - "type": "node", - "id": 1407317872, - "lat": 55.8803809, - "lon": -4.3011794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15", - "ref": "G12 338" - } -}, -{ - "type": "node", - "id": 1407387254, - "lat": 50.9749355, - "lon": -0.8783999, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU31 150", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1407387255, - "lat": 50.9081001, - "lon": -0.9206831, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "PO9 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1407389896, - "lat": 50.8961013, - "lon": -0.9623958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 47" - } -}, -{ - "type": "node", - "id": 1407391927, - "lat": 50.8621755, - "lon": -0.9707393, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO9 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1407485813, - "lat": 51.8170111, - "lon": -1.4901546, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 1407537409, - "lat": 52.7853226, - "lon": -2.1673113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST18 114" - } -}, -{ - "type": "node", - "id": 1407968687, - "lat": 51.5200962, - "lon": 0.2026043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1408483751, - "lat": 51.9497737, - "lon": -0.5324167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1409147334, - "lat": 52.3217417, - "lon": -1.4462437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV33 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1410307412, - "lat": 51.0925927, - "lon": -3.0152673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1410307415, - "lat": 51.0949623, - "lon": -3.0117224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1410343438, - "lat": 53.1047627, - "lon": -0.7813007, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1410557771, - "lat": 55.9463377, - "lon": -3.1199234, - "tags": { - "amenity": "post_box", - "ref": "EH15 501" - } -}, -{ - "type": "node", - "id": 1410874659, - "lat": 54.3598369, - "lon": -1.4270289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL6 19" - } -}, -{ - "type": "node", - "id": 1411122978, - "lat": 54.3504537, - "lon": -1.4408413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL6 50", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1411122979, - "lat": 54.3504689, - "lon": -1.4407778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mail:franked": "yes", - "mail:unfranked": "no", - "note": "Franked Mail Only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL6 51", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1411125339, - "lat": 54.3470572, - "lon": -1.4478431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "760168694648212", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DL6 247", - "survey:date": "2020-01-08" - } -}, -{ - "type": "node", - "id": 1411163665, - "lat": 51.0853721, - "lon": -2.9490394, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1411382070, - "lat": 52.2632853, - "lon": -1.5454944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1411634661, - "lat": 50.8142639, - "lon": -1.3399174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1411904593, - "lat": 54.3455760, - "lon": -1.4318227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL6 93" - } -}, -{ - "type": "node", - "id": 1411906197, - "lat": 54.3318060, - "lon": -1.4263400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL6 52", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1411911591, - "lat": 54.3331471, - "lon": -1.4336698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL7 16", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1412622550, - "lat": 52.1515703, - "lon": -0.4115139, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "MK41 250" - } -}, -{ - "type": "node", - "id": 1412644550, - "lat": 53.5351634, - "lon": -2.5243621, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1413091767, - "lat": 53.1453605, - "lon": -1.2864870, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1413092081, - "lat": 53.1475089, - "lon": -1.2917804, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1413588991, - "lat": 53.8487947, - "lon": -1.6751843, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS19 60" - } -}, -{ - "type": "node", - "id": 1414428065, - "lat": 53.7135941, - "lon": -2.0992999, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1414428717, - "lat": 53.7108260, - "lon": -2.1020340, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1414591706, - "lat": 54.3407979, - "lon": -1.4274448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL6 178" - } -}, -{ - "type": "node", - "id": 1414689885, - "lat": 50.4474426, - "lon": -4.4702235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL14 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 1415108011, - "lat": 52.1910427, - "lon": 0.2626793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-25" - } -}, -{ - "type": "node", - "id": 1415388091, - "lat": 53.6141021, - "lon": -2.1076101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OL16 206D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1415388104, - "lat": 53.6103816, - "lon": -2.1069768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OL16 225D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1415388114, - "lat": 53.6113224, - "lon": -2.1133315, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1415388118, - "lat": 53.6123940, - "lon": -2.1024576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OL16 208D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1416337004, - "lat": 51.7424287, - "lon": -0.7139494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HP16 141" - } -}, -{ - "type": "node", - "id": 1416392254, - "lat": 52.8330801, - "lon": -1.2202242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1416427938, - "lat": 52.2010792, - "lon": -4.1932502, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1416446572, - "lat": 53.6906668, - "lon": -1.6297600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF13 15;WF13 1015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1416503756, - "lat": 52.1841330, - "lon": -4.1574210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1416526909, - "lat": 51.5895395, - "lon": 0.6011890, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS6 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1416611562, - "lat": 51.4445951, - "lon": -2.5847246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref difficult to read could be: BS3 1190", - "post_box:type": "pillar", - "ref": "BS3 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1416683926, - "lat": 52.8508109, - "lon": -1.1887770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG11 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1416692576, - "lat": 54.3372737, - "lon": -1.5653888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1417299869, - "lat": 51.5948171, - "lon": -1.4292068, - "tags": { - "amenity": "post_box", - "source": "Bing + Survey" - } -}, -{ - "type": "node", - "id": 1417300938, - "lat": 51.5918694, - "lon": -1.4322806, - "tags": { - "amenity": "post_box", - "source": "Bing + local_knowledge" - } -}, -{ - "type": "node", - "id": 1417365704, - "lat": 52.7156631, - "lon": 1.6928614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "wall", - "ref": "NR29 2940", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1417421936, - "lat": 51.2787696, - "lon": 0.4484132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1417815116, - "lat": 51.4967693, - "lon": -0.9305613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG9 23" - } -}, -{ - "type": "node", - "id": 1417838137, - "lat": 52.7184981, - "lon": 1.6640133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR29 2923", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1417838196, - "lat": 52.7215631, - "lon": 1.6541033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR29 2935", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1417994946, - "lat": 54.3138885, - "lon": -1.4482101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL7 21" - } -}, -{ - "type": "node", - "id": 1418005511, - "lat": 51.1585673, - "lon": 0.2560501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 261D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1418103476, - "lat": 51.1502625, - "lon": 0.2757946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1418556908, - "lat": 52.2017579, - "lon": -2.3387278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR6 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1418763441, - "lat": 52.2021231, - "lon": -2.3911972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR6 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1418764247, - "lat": 52.2058888, - "lon": -2.3769196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "wall", - "ref": "WR6 87", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1418990084, - "lat": 51.5198516, - "lon": -0.1013731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "mail:meter": "yes", - "mail:stamped": "yes", - "note": "LH marked Stamped, RH marked Meter", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1M 112;EC1M 1121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1419014522, - "lat": 54.2085251, - "lon": -1.3590972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO7 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1419014728, - "lat": 51.5035299, - "lon": -0.1917494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "W8 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1419097222, - "lat": 54.2232253, - "lon": -1.3491272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO7 73" - } -}, -{ - "type": "node", - "id": 1419871357, - "lat": 50.8445680, - "lon": -0.1537225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN1 114" - } -}, -{ - "type": "node", - "id": 1419874654, - "lat": 52.7084451, - "lon": 1.6338234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR29 2934D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1419874700, - "lat": 52.7033860, - "lon": 1.6338691, - "tags": { - "amenity": "post_box", - "note": "This box used to be across the street outside the old post office", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR29 2950", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1419897715, - "lat": 51.1353821, - "lon": 0.2296710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TN4 1131;TN4 1132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1420456402, - "lat": 51.4984712, - "lon": -0.2010158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "listed_status": "Grade II", - "note": "Old hexagonal pillar box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W8 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1420488220, - "lat": 51.6630023, - "lon": -1.1394217, - "tags": { - "amenity": "post_box", - "ref": "OX10 512" - } -}, -{ - "type": "node", - "id": 1420894330, - "lat": 52.0608944, - "lon": -0.8102622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1422732905, - "lat": 52.3476454, - "lon": 0.7416376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP24 3204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1422745641, - "lat": 52.3864280, - "lon": 0.8980358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "In wall of private house, away from road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7114D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1422874445, - "lat": 50.6991564, - "lon": -3.5322959, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX2 204D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1422928372, - "lat": 53.4225667, - "lon": -2.2323296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1423254937, - "lat": 51.5729020, - "lon": -0.0933199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 47", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1423254938, - "lat": 51.5652962, - "lon": -0.1141262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 2" - } -}, -{ - "type": "node", - "id": 1423254939, - "lat": 51.5685125, - "lon": -0.1067966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 22" - } -}, -{ - "type": "node", - "id": 1423254940, - "lat": 51.5641812, - "lon": -0.1083243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 14" - } -}, -{ - "type": "node", - "id": 1423254941, - "lat": 51.5707658, - "lon": -0.1165112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 46" - } -}, -{ - "type": "node", - "id": 1423254942, - "lat": 51.5642317, - "lon": -0.1008766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1423254943, - "lat": 51.5766919, - "lon": -0.1091162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 30" - } -}, -{ - "type": "node", - "id": 1423254944, - "lat": 51.5739049, - "lon": -0.1124406, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 8", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1423254945, - "lat": 51.5797413, - "lon": -0.0959510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 34", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1423254946, - "lat": 51.5614242, - "lon": -0.0993045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1423254947, - "lat": 51.5726458, - "lon": -0.1199845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 18" - } -}, -{ - "type": "node", - "id": 1423254948, - "lat": 51.5717398, - "lon": -0.1073590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 11" - } -}, -{ - "type": "node", - "id": 1423254949, - "lat": 51.5749502, - "lon": -0.1182284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1423280377, - "lat": 52.7435753, - "lon": -1.1692425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE12 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1423280391, - "lat": 52.7454865, - "lon": -1.1659971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 98" - } -}, -{ - "type": "node", - "id": 1423462068, - "lat": 52.2225074, - "lon": -2.3700518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR6 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1423499875, - "lat": 51.4714700, - "lon": -0.6312630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL4 39" - } -}, -{ - "type": "node", - "id": 1424100680, - "lat": 52.2022693, - "lon": 1.5829729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP16 4690D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1424141196, - "lat": 54.3642021, - "lon": -1.3380411, - "tags": { - "amenity": "post_box", - "ref": "DL6 41" - } -}, -{ - "type": "node", - "id": 1424398735, - "lat": 53.6549550, - "lon": -1.3994811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 161" - } -}, -{ - "type": "node", - "id": 1424405599, - "lat": 56.3369892, - "lon": -3.0072801, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1425087010, - "lat": 51.7686203, - "lon": -2.5575081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "collection_times_checked": "2015-07-28", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL15 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1425089635, - "lat": 51.7541348, - "lon": -2.5514192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1425096394, - "lat": 50.9502660, - "lon": -1.4052558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1425147513, - "lat": 51.4105962, - "lon": -0.0308651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BR3 181D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1425196136, - "lat": 51.2771820, - "lon": -0.4353308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT24 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1425675845, - "lat": 52.2241089, - "lon": -2.3609516, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR6 504", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1426067094, - "lat": 51.1293054, - "lon": -3.0200218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1426301370, - "lat": 52.2064230, - "lon": -4.2135570, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1426557107, - "lat": 55.4272762, - "lon": -2.7779674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD9 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1426557108, - "lat": 55.4299634, - "lon": -2.7673510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "838197603436401", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD9 15", - "source": "survey", - "survey:date": "2020-05-07" - } -}, -{ - "type": "node", - "id": 1426557109, - "lat": 55.4423460, - "lon": -2.7400266, - "tags": { - "amenity": "post_box", - "ref": "TD9 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1426557110, - "lat": 55.4571161, - "lon": -2.6849642, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TD9 70", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1426557111, - "lat": 55.8447193, - "lon": -2.9261215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH37 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1426778097, - "lat": 50.9574319, - "lon": -0.1126624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH15 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1426852638, - "lat": 54.3422380, - "lon": -1.3925628, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1426871483, - "lat": 50.6190947, - "lon": -3.4221277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1426881176, - "lat": 53.1855243, - "lon": -3.0574349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1427470658, - "lat": 51.4455447, - "lon": -0.9478539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1427479369, - "lat": 51.1267740, - "lon": -3.0153700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1427648438, - "lat": 53.8445309, - "lon": -1.5179738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;local knowledge" - } -}, -{ - "type": "node", - "id": 1427648439, - "lat": 53.8467832, - "lon": -1.5251482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 867", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1427698590, - "lat": 53.8451479, - "lon": -1.5434593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 269", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1427698599, - "lat": 53.8425551, - "lon": -1.5412683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 801", - "royal_cypher": "GR", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1427769139, - "lat": 54.3403698, - "lon": -1.4193530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DL6 101D" - } -}, -{ - "type": "node", - "id": 1427913739, - "lat": 56.1123250, - "lon": -3.1667004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1428121327, - "lat": 51.6997072, - "lon": -0.7366864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "196", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP16 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 1428165848, - "lat": 53.8415096, - "lon": -1.5475429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1428428002, - "lat": 50.9991896, - "lon": -0.9304429, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1428428013, - "lat": 51.0016759, - "lon": -0.9304324, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1428448630, - "lat": 51.0029610, - "lon": -0.9144447, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU31 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1428534319, - "lat": 53.8390141, - "lon": -1.5437443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 165", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1428534322, - "lat": 53.8442799, - "lon": -1.5246791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "LS17 664", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1428534324, - "lat": 53.8456743, - "lon": -1.5499442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1428534331, - "lat": 53.8518605, - "lon": -1.5409296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 694", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1428534333, - "lat": 53.8519127, - "lon": -1.5473718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 907", - "source": "visual inspection" - } -}, -{ - "type": "node", - "id": 1429304332, - "lat": 51.5607212, - "lon": -2.4054668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 08:30", - "mapillary": "2016576831843557", - "note": "This box installed July 2015 (replaced older box)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS37 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-30" - } -}, -{ - "type": "node", - "id": 1429397296, - "lat": 51.7640664, - "lon": -4.2116696, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1429425170, - "lat": 55.8212006, - "lon": -4.0783352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "G71 270", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1429860625, - "lat": 51.5218115, - "lon": -0.9119428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG9 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1430323189, - "lat": 52.1880330, - "lon": 0.3068311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB8 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1430535914, - "lat": 50.4543380, - "lon": -4.4678080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00", - "fixme": "Saturday collection time needed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1430554782, - "lat": 53.9158492, - "lon": -2.1867008, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1430585275, - "lat": 53.6488433, - "lon": -1.3801771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 32" - } -}, -{ - "type": "node", - "id": 1430607600, - "lat": 53.6413660, - "lon": -1.3516347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1430613421, - "lat": 50.9342644, - "lon": -1.9173319, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 114", - "ref:GB:uprn": "10015479470" - } -}, -{ - "type": "node", - "id": 1430613438, - "lat": 50.9606822, - "lon": -1.8096342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP6 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1430613445, - "lat": 50.9208014, - "lon": -1.9244793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-01-17", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 129D", - "ref:GB:uprn": "10015383362", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1431133798, - "lat": 53.3086143, - "lon": -1.5100372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ele": "225.0000000", - "post_box:type": "wall", - "ref": "S18 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1431269909, - "lat": 50.7593011, - "lon": -1.5256570, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 152" - } -}, -{ - "type": "node", - "id": 1431276031, - "lat": 50.4525458, - "lon": -4.4711961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1431439239, - "lat": 52.2982911, - "lon": -2.2977979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR6 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1431772712, - "lat": 54.3893897, - "lon": -1.1410188, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TS9 179" - } -}, -{ - "type": "node", - "id": 1431772717, - "lat": 54.3948219, - "lon": -1.1358836, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TS9 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1431772738, - "lat": 54.4147779, - "lon": -1.1286342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TS9 104", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1431776451, - "lat": 53.2202398, - "lon": -0.5449697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LN5 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1431781502, - "lat": 53.2242176, - "lon": -0.5448530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1432189358, - "lat": 52.5827605, - "lon": -4.0996587, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL36 24", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1433103080, - "lat": 57.4526820, - "lon": -4.2144158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mail:meter": "yes", - "mail:stamped": "no", - "opening_hours": "24/7", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IV2 357P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1433103088, - "lat": 57.4826449, - "lon": -4.1970010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 119", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1433118942, - "lat": 52.9616073, - "lon": -2.1779274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1433770653, - "lat": 52.1754330, - "lon": 0.1432025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "indoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB2 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1433964994, - "lat": 50.8459247, - "lon": -0.9206313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO10 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1433964995, - "lat": 50.8613136, - "lon": -0.8817366, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "PO18 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1433968307, - "lat": 50.8327629, - "lon": -0.7695029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1434100374, - "lat": 55.9795624, - "lon": -3.3002398, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH4 487D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1434641906, - "lat": 53.4532045, - "lon": -2.2672067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M16 99" - } -}, -{ - "type": "node", - "id": 1434744271, - "lat": 51.5405645, - "lon": -0.9621394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG9 45" - } -}, -{ - "type": "node", - "id": 1435449343, - "lat": 55.4729387, - "lon": -1.5938981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE66 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1436022665, - "lat": 53.3965506, - "lon": -2.9635224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Victorian post box L8 308 on Upper Parliament Street near Sandon Street, lacking royal cypher. By Handyside", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 308", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box on Upper Parliament Street near Sandon Street.jpg" - } -}, -{ - "type": "node", - "id": 1436088168, - "lat": 53.4830463, - "lon": -2.2383480, - "tags": { - "amenity": "post_box", - "ref": "M4 6" - } -}, -{ - "type": "node", - "id": 1436306847, - "lat": 51.2167018, - "lon": 0.3816609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN12 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1436310011, - "lat": 51.7249457, - "lon": -3.0074631, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1436756091, - "lat": 52.2716432, - "lon": -1.8992115, - "tags": { - "amenity": "post_box", - "ref": "B80 104" - } -}, -{ - "type": "node", - "id": 1436756101, - "lat": 52.2699320, - "lon": -1.9068026, - "tags": { - "amenity": "post_box", - "ref": "B80 45", - "source": "local knowledge (estimated position)" - } -}, -{ - "type": "node", - "id": 1437447316, - "lat": 53.5192368, - "lon": -2.5980820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 169", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1437476436, - "lat": 53.9115757, - "lon": -0.1631933, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1437506193, - "lat": 53.9114993, - "lon": -0.1686694, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1437610554, - "lat": 52.1053410, - "lon": -4.1027430, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1437614495, - "lat": 51.8633610, - "lon": -2.2144207, - "tags": { - "addr:street": "Eastern Ave", - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL4 395" - } -}, -{ - "type": "node", - "id": 1437625076, - "lat": 51.4389249, - "lon": -0.4190569, - "tags": { - "amenity": "post_box", - "mapillary": "504972984288775", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2019-11-29" - } -}, -{ - "type": "node", - "id": 1437637570, - "lat": 52.9234687, - "lon": -1.4838594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DE1 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photographic_survey" - } -}, -{ - "type": "node", - "id": 1437669691, - "lat": 51.2115467, - "lon": 0.2934752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN10 171" - } -}, -{ - "type": "node", - "id": 1437809454, - "lat": 53.5135505, - "lon": -2.5955707, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1438264192, - "lat": 53.9361965, - "lon": -1.6593850, - "tags": { - "amenity": "post_box", - "ref": "LS21 827", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1438414153, - "lat": 52.0713265, - "lon": -1.7999477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45; Su off", - "post_box:type": "lamp", - "ref": "GL55 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1438891437, - "lat": 51.8010927, - "lon": -0.4079043, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1438891440, - "lat": 51.7975021, - "lon": -0.3942758, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1439093120, - "lat": 55.2258323, - "lon": -1.6795307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1439503716, - "lat": 51.5465892, - "lon": -0.9467592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG9 88" - } -}, -{ - "type": "node", - "id": 1439536258, - "lat": 50.5940676, - "lon": -3.9121638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 746", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1439626007, - "lat": 51.5763272, - "lon": -0.9786205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG9 37" - } -}, -{ - "type": "node", - "id": 1440327875, - "lat": 52.9846851, - "lon": -1.9786429, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1440419313, - "lat": 53.6988025, - "lon": -2.3162145, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1442058827, - "lat": 51.2160409, - "lon": 0.2813580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "colour": "Red", - "ref": "TN10 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1443722134, - "lat": 52.6537629, - "lon": 1.7153622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1444494955, - "lat": 52.1424676, - "lon": -0.4249767, - "tags": { - "amenity": "post_box", - "ref": "MK41 66", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1444610563, - "lat": 52.8015581, - "lon": 0.5653882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1444841324, - "lat": 52.9517583, - "lon": 1.0432212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR25 2540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1445768158, - "lat": 56.1337036, - "lon": -3.9300005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "FK9 31", - "post_box:type": "pillar", - "ref": "FK9 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1445769587, - "lat": 52.4644996, - "lon": 0.6148160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1445838170, - "lat": 51.6420769, - "lon": 0.0544486, - "tags": { - "amenity": "post_box", - "ref": "IG10 10" - } -}, -{ - "type": "node", - "id": 1445858827, - "lat": 51.5286428, - "lon": -0.0707392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E2 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1445884956, - "lat": 51.1441848, - "lon": -1.8050354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1445884962, - "lat": 51.1711152, - "lon": -1.7884538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1445884978, - "lat": 51.1408056, - "lon": -1.8059014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1445884985, - "lat": 51.1612828, - "lon": -1.8049874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1446514767, - "lat": 53.1208919, - "lon": -1.2473286, - "tags": { - "amenity": "post_box", - "ele": "145.0000000", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1446517642, - "lat": 52.0834930, - "lon": -1.7440420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45; Su off", - "ref": "GL55 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1446520424, - "lat": 53.1188310, - "lon": -1.2397334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1446630969, - "lat": 51.1265898, - "lon": -3.0044143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "TA6 801", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1446886887, - "lat": 51.6727802, - "lon": -0.9653330, - "tags": { - "amenity": "post_box", - "ref": "OX49 482" - } -}, -{ - "type": "node", - "id": 1447469648, - "lat": 51.1277813, - "lon": -3.0078264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1447469656, - "lat": 51.1281035, - "lon": -3.0104853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 902", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1447469667, - "lat": 51.1282563, - "lon": -3.0051053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "double-aperture box but both referenced as TA6 812", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TA6 812", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1447469859, - "lat": 51.1311876, - "lon": -3.0139831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1447906942, - "lat": 50.8148107, - "lon": -1.0438756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "PO3 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1447918165, - "lat": 50.9163513, - "lon": 0.4703409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "TN33 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1448111317, - "lat": 54.0978469, - "lon": -2.7951796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA5 137", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1448236868, - "lat": 52.0748438, - "lon": -0.5950968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "MK43 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing", - "survey:date": "2014-02-04" - } -}, -{ - "type": "node", - "id": 1448382628, - "lat": 54.9659310, - "lon": -1.5746025, - "tags": { - "amenity": "post_box", - "ref": "NE6 61" - } -}, -{ - "type": "node", - "id": 1448385560, - "lat": 51.2098728, - "lon": -1.4966887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1448438950, - "lat": 50.8412009, - "lon": -1.1365727, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO16 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1448438963, - "lat": 50.8472865, - "lon": -1.1214809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1448438980, - "lat": 50.8399568, - "lon": -1.1329776, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO16 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1448438982, - "lat": 50.8426951, - "lon": -1.0949761, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1448443151, - "lat": 54.8481212, - "lon": -1.7839086, - "tags": { - "amenity": "post_box", - "ref": "DH8 170" - } -}, -{ - "type": "node", - "id": 1448453652, - "lat": 52.9492544, - "lon": 0.9320778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR23 2315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1448453659, - "lat": 52.9504357, - "lon": 0.8590169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR23 2309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1448915414, - "lat": 52.7830429, - "lon": -1.2361888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "LE11 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1448919618, - "lat": 52.7790613, - "lon": -1.2394021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE11 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1449002592, - "lat": 51.5910744, - "lon": -0.9593382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG9 38" - } -}, -{ - "type": "node", - "id": 1449299352, - "lat": 50.5400323, - "lon": -3.5087789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1449346251, - "lat": 51.8499475, - "lon": 0.7165530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1449351694, - "lat": 55.8234614, - "lon": -3.7158234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1449357194, - "lat": 55.8256291, - "lon": -3.7044202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH47 53D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1449365704, - "lat": 55.8283800, - "lon": -3.7013281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 54D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1449372068, - "lat": 55.8291425, - "lon": -3.6951226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH47 52D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1449377534, - "lat": 55.8302676, - "lon": -3.7034848, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH47 57D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1449553128, - "lat": 52.9734753, - "lon": -0.0394687, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE21 42", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1449553131, - "lat": 52.9724949, - "lon": -0.0366551, - "tags": { - "amenity": "post_box", - "ref": "PE21 57" - } -}, -{ - "type": "node", - "id": 1449553134, - "lat": 52.9570013, - "lon": -0.0471960, - "tags": { - "amenity": "post_box", - "ref": "PE21 55" - } -}, -{ - "type": "node", - "id": 1449553135, - "lat": 52.9697958, - "lon": -0.0028230, - "tags": { - "amenity": "post_box", - "ref": "PE21 47" - } -}, -{ - "type": "node", - "id": 1449553137, - "lat": 52.9800180, - "lon": -0.0053404, - "tags": { - "amenity": "post_box", - "ref": "PE21 45" - } -}, -{ - "type": "node", - "id": 1449553138, - "lat": 52.9669058, - "lon": -0.0044901, - "tags": { - "amenity": "post_box", - "ref": "PE21 10" - } -}, -{ - "type": "node", - "id": 1449553139, - "lat": 52.9746181, - "lon": -0.0300421, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PE21 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1449553140, - "lat": 52.9520818, - "lon": -0.0376931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE21 182" - } -}, -{ - "type": "node", - "id": 1449553143, - "lat": 52.9780396, - "lon": -0.0128572, - "tags": { - "amenity": "post_box", - "ref": "PE21 19" - } -}, -{ - "type": "node", - "id": 1449553145, - "lat": 52.9658784, - "lon": -0.0264829, - "tags": { - "amenity": "post_box", - "ref": "PE21 30" - } -}, -{ - "type": "node", - "id": 1449553150, - "lat": 52.9748547, - "lon": -0.0071252, - "tags": { - "amenity": "post_box", - "ref": "PE21 39" - } -}, -{ - "type": "node", - "id": 1449553152, - "lat": 52.9673599, - "lon": -0.0329174, - "tags": { - "amenity": "post_box", - "ref": "PE21 27" - } -}, -{ - "type": "node", - "id": 1449553154, - "lat": 52.9637791, - "lon": -0.0312759, - "tags": { - "amenity": "post_box", - "ref": "PE21 22" - } -}, -{ - "type": "node", - "id": 1449553155, - "lat": 52.9861841, - "lon": -0.0457289, - "tags": { - "amenity": "post_box", - "ref": "PE21 50" - } -}, -{ - "type": "node", - "id": 1449553156, - "lat": 52.9745179, - "lon": 0.0143404, - "tags": { - "amenity": "post_box", - "ref": "PE21 58" - } -}, -{ - "type": "node", - "id": 1449553157, - "lat": 52.9689970, - "lon": -0.0638781, - "tags": { - "amenity": "post_box", - "ref": "PE21 113" - } -}, -{ - "type": "node", - "id": 1449553159, - "lat": 52.9739147, - "lon": -0.0251201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PE21 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1449553161, - "lat": 52.9679171, - "lon": 0.0020854, - "tags": { - "amenity": "post_box", - "ref": "PE21 209" - } -}, -{ - "type": "node", - "id": 1449553164, - "lat": 52.9828027, - "lon": -0.0421777, - "tags": { - "amenity": "post_box", - "ref": "PE21 17" - } -}, -{ - "type": "node", - "id": 1449553166, - "lat": 52.9731127, - "lon": -0.0009669, - "tags": { - "amenity": "post_box", - "ref": "PE21 208" - } -}, -{ - "type": "node", - "id": 1449553173, - "lat": 52.9769163, - "lon": 0.0104365, - "tags": { - "amenity": "post_box", - "ref": "PE21 43" - } -}, -{ - "type": "node", - "id": 1449553174, - "lat": 52.9656159, - "lon": -0.0035097, - "tags": { - "amenity": "post_box", - "ref": "PE21 18" - } -}, -{ - "type": "node", - "id": 1449553175, - "lat": 52.9744929, - "lon": -0.0510798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE21 33" - } -}, -{ - "type": "node", - "id": 1449553177, - "lat": 52.9714628, - "lon": -0.0508759, - "tags": { - "amenity": "post_box", - "ref": "PE21 210" - } -}, -{ - "type": "node", - "id": 1449565517, - "lat": 52.4648529, - "lon": -1.9194814, - "tags": { - "amenity": "post_box", - "ref": "B15 96", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1449617183, - "lat": 52.9849732, - "lon": -0.0312316, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PE21 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1449617184, - "lat": 52.9841648, - "lon": -0.0056125, - "tags": { - "amenity": "post_box", - "ref": "PE21 60" - } -}, -{ - "type": "node", - "id": 1449617185, - "lat": 52.9852582, - "lon": -0.0183248, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE21 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1449617187, - "lat": 52.9883760, - "lon": -0.0178421, - "tags": { - "amenity": "post_box", - "ref": "PE21 56" - } -}, -{ - "type": "node", - "id": 1449617188, - "lat": 52.9772645, - "lon": -0.0485787, - "tags": { - "amenity": "post_box", - "ref": "PE21 12" - } -}, -{ - "type": "node", - "id": 1449617189, - "lat": 52.9857716, - "lon": -0.0256687, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "PE21 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1449813355, - "lat": 53.4205899, - "lon": -2.1814333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 159" - } -}, -{ - "type": "node", - "id": 1449842097, - "lat": 53.4186783, - "lon": -2.1718127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1449856580, - "lat": 53.4159561, - "lon": -2.1694580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1449880592, - "lat": 50.4949096, - "lon": -4.1305886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 404", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1450124273, - "lat": 50.4738798, - "lon": -4.1314641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 419D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 1450478746, - "lat": 51.3835832, - "lon": -2.8228884, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1450686114, - "lat": 52.1199846, - "lon": -2.2425930, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "description": "\"Clevelode River\"", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR13 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1450859184, - "lat": 52.2530133, - "lon": -0.9517021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1450979507, - "lat": 51.4160562, - "lon": -1.5149694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RG17 300;RG17 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1450991451, - "lat": 52.3286189, - "lon": 0.7321464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP31 2054", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1451280326, - "lat": 52.3390747, - "lon": -2.3492092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "DY12 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1452262454, - "lat": 52.9568750, - "lon": 0.8570373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR23 2311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-16" - } -}, -{ - "type": "node", - "id": 1452663863, - "lat": 54.6370401, - "lon": -1.3498254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1453041236, - "lat": 53.2154094, - "lon": -2.0260168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "ele": "265.0000000", - "post_box:type": "lamp", - "ref": "SK11 173" - } -}, -{ - "type": "node", - "id": 1453449388, - "lat": 50.8488956, - "lon": -1.7879826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 69" - } -}, -{ - "type": "node", - "id": 1453659394, - "lat": 52.3660634, - "lon": 0.8724502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP31 2108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1453659399, - "lat": 52.3644745, - "lon": 0.8705478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP31 2227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1453892531, - "lat": 52.9490039, - "lon": -0.0391334, - "tags": { - "amenity": "post_box", - "ref": "PE21 31" - } -}, -{ - "type": "node", - "id": 1453892532, - "lat": 52.9865232, - "lon": 0.0079501, - "tags": { - "amenity": "post_box", - "ref": "PE21 52" - } -}, -{ - "type": "node", - "id": 1453892533, - "lat": 52.9615358, - "lon": 0.0283242, - "tags": { - "amenity": "post_box", - "ref": "PE21 144" - } -}, -{ - "type": "node", - "id": 1454071431, - "lat": 51.0760915, - "lon": 0.3556007, - "tags": { - "amenity": "post_box", - "mapillary": "467431631895197", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN5 178", - "survey:date": "2022-08-02" - } -}, -{ - "type": "node", - "id": 1454220264, - "lat": 50.8342494, - "lon": -0.3452048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1454230988, - "lat": 50.8190571, - "lon": -0.3343667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-29", - "old_ref": "BN15 1391", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1391D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1454230993, - "lat": 50.8212670, - "lon": -0.3376983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-29", - "old_ref": "BN15 1390", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1390D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1454713710, - "lat": 53.0151715, - "lon": 0.1176777, - "tags": { - "amenity": "post_box", - "ref": "PE22 196" - } -}, -{ - "type": "node", - "id": 1454713711, - "lat": 52.9448391, - "lon": 0.0601875, - "tags": { - "amenity": "post_box", - "ref": "PE22 194" - } -}, -{ - "type": "node", - "id": 1454713712, - "lat": 53.0058775, - "lon": 0.0998506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE22 89" - } -}, -{ - "type": "node", - "id": 1454713713, - "lat": 52.9913476, - "lon": 0.0600145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE22 78" - } -}, -{ - "type": "node", - "id": 1454713714, - "lat": 52.9611884, - "lon": 0.0787028, - "tags": { - "amenity": "post_box", - "ref": "PE22 153" - } -}, -{ - "type": "node", - "id": 1454713715, - "lat": 52.9979812, - "lon": 0.0811556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE22 142", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1454713716, - "lat": 53.0090077, - "lon": 0.0013653, - "tags": { - "amenity": "post_box", - "ref": "PE22 103" - } -}, -{ - "type": "node", - "id": 1454713717, - "lat": 53.0066942, - "lon": 0.0843636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE22 190" - } -}, -{ - "type": "node", - "id": 1454713718, - "lat": 53.0128565, - "lon": 0.0877002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE22 154" - } -}, -{ - "type": "node", - "id": 1454713719, - "lat": 52.9847696, - "lon": 0.0665604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE22 184", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1454713720, - "lat": 52.9743755, - "lon": 0.0493509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE22 164" - } -}, -{ - "type": "node", - "id": 1454713721, - "lat": 52.9873216, - "lon": -0.1088588, - "tags": { - "amenity": "post_box", - "ref": "PE22 173" - } -}, -{ - "type": "node", - "id": 1454713722, - "lat": 52.9855479, - "lon": 0.0391979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE22 116" - } -}, -{ - "type": "node", - "id": 1454764030, - "lat": 52.9503500, - "lon": -1.1647410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside and Co. Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "NG7 32", - "ref:GB:uprn": "10015424982", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1455371344, - "lat": 50.4971977, - "lon": -4.0773758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:15; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 492", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1455371353, - "lat": 50.4962630, - "lon": -4.0615213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 473D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1455407956, - "lat": 50.5102457, - "lon": -4.0974728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "note": "Lamp type box but attached to wall by door of shop. Old wall box (painted black) is on the front of the neighbouring former post office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL20 667", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1455453587, - "lat": 52.3637324, - "lon": -2.3143633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "DY12 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1455803686, - "lat": 50.7053027, - "lon": -3.2886097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1455814116, - "lat": 51.2318729, - "lon": -2.3218355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1455816153, - "lat": 51.4953270, - "lon": -0.4300480, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1456042965, - "lat": 53.7896474, - "lon": -2.8487672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 07:30", - "post_box:type": "wall", - "ref": "PR4 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1456044690, - "lat": 53.2078865, - "lon": -1.9534750, - "tags": { - "amenity": "post_box", - "ele": "453.0000000" - } -}, -{ - "type": "node", - "id": 1456309371, - "lat": 52.2786068, - "lon": -0.2153006, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE19 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1456335660, - "lat": 52.0992890, - "lon": -3.1299770, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1457191160, - "lat": 50.5405594, - "lon": -4.1418967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1457191195, - "lat": 50.5394262, - "lon": -4.1378152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1457322477, - "lat": 52.2870863, - "lon": -0.2137512, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE19 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1457568412, - "lat": 51.8144140, - "lon": -2.2666053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 220" - } -}, -{ - "type": "node", - "id": 1457699127, - "lat": 52.2437573, - "lon": 0.1639071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB24 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1457699128, - "lat": 52.2262625, - "lon": 0.1698873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB5 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1457699129, - "lat": 52.2395228, - "lon": 0.1581161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB4 438D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1457699130, - "lat": 52.2386993, - "lon": 0.1543021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "This postbox is inside Tesco", - "opening_hours": "Mo 06:00-24:00; Tu-Sa 00:00-24:00; Su 10:00-16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB24 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1457699131, - "lat": 52.2385154, - "lon": 0.1849261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB25 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1457699132, - "lat": 52.2468122, - "lon": 0.1614871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CB24 435" - } -}, -{ - "type": "node", - "id": 1457740733, - "lat": 53.7648782, - "lon": -2.9720317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1458135218, - "lat": 52.3979163, - "lon": -1.5777300, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 246D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1458156279, - "lat": 52.2908409, - "lon": -0.2518232, - "tags": { - "amenity": "post_box", - "ref": "PE19 58" - } -}, -{ - "type": "node", - "id": 1458156280, - "lat": 52.2913426, - "lon": -0.2309889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE19 46" - } -}, -{ - "type": "node", - "id": 1458156282, - "lat": 52.2931697, - "lon": -0.2545544, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE19 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1458696259, - "lat": 50.8362121, - "lon": 0.4304369, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Withyham Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 26", - "ref:GB:uprn": "10015445927", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Withyham Road TN3926.jpg" - } -}, -{ - "type": "node", - "id": 1459163001, - "lat": 51.4262243, - "lon": -0.3563947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW12 233" - } -}, -{ - "type": "node", - "id": 1459320220, - "lat": 52.6620518, - "lon": -2.2056973, - "tags": { - "amenity": "post_box", - "postal_code": "WV8", - "ref": "WV8 121", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1459761104, - "lat": 53.7477751, - "lon": -2.9016659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1459772351, - "lat": 53.7750086, - "lon": -1.5874706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS12 46" - } -}, -{ - "type": "node", - "id": 1459834436, - "lat": 52.3416954, - "lon": -2.0940832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "B61 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1459835391, - "lat": 52.3562221, - "lon": -2.1019418, - "tags": { - "amenity": "post_box", - "ref": "B61 76", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1460340795, - "lat": 52.5440143, - "lon": -2.4887563, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1460354785, - "lat": 52.9314591, - "lon": 0.9836406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "NR25 2525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1460376274, - "lat": 52.2933131, - "lon": -0.2474880, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE19 31" - } -}, -{ - "type": "node", - "id": 1460376360, - "lat": 52.3216824, - "lon": -0.2237240, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE28 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1460570018, - "lat": 52.3956633, - "lon": -1.5142391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "CV3", - "ref": "CV3 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1460570020, - "lat": 52.3788972, - "lon": -1.5167968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "postal_code": "CV3", - "ref": "CV3 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1461221136, - "lat": 50.7410702, - "lon": -2.0321386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1461428512, - "lat": 51.6465858, - "lon": -0.1962787, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1461558278, - "lat": 52.6046111, - "lon": -1.8448834, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 163", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1461893336, - "lat": 54.2916719, - "lon": -3.3930644, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA19 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1461903136, - "lat": 51.1294548, - "lon": -3.0063188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1462153480, - "lat": 52.3165477, - "lon": -2.4697382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR15 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gsurvey" - } -}, -{ - "type": "node", - "id": 1462156472, - "lat": 52.3081258, - "lon": -2.5995924, - "tags": { - "amenity": "post_box", - "fixme": "Need to check this box is still there and really is the given number.", - "post_box:type": "lamp", - "ref": "WR15 63" - } -}, -{ - "type": "node", - "id": 1462165258, - "lat": 52.2500065, - "lon": -2.5968909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:45", - "post_box:type": "lamp", - "ref": "WR15 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1462175219, - "lat": 50.9173387, - "lon": -3.3596226, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-04", - "collection_times": "Mo-Fr 11:45; Sa 10:45", - "post_box:type": "pillar", - "ref": "EX16 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1462177707, - "lat": 52.2612907, - "lon": -2.5924701, - "tags": { - "amenity": "post_box", - "fixme": "Need to check this box is still there and really is the given number.", - "post_box:type": "lamp", - "ref": "WR15 114" - } -}, -{ - "type": "node", - "id": 1462363605, - "lat": 52.2811108, - "lon": -2.5533220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR15 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1462430201, - "lat": 52.3164576, - "lon": -2.5903036, - "tags": { - "amenity": "post_box", - "fixme": "Need to check this box is still there and really is the given number.", - "post_box:type": "lamp", - "ref": "WR15 162" - } -}, -{ - "type": "node", - "id": 1462437650, - "lat": 50.8757842, - "lon": -1.8834408, - "tags": { - "amenity": "post_box", - "ref": "BH31 193", - "ref:GB:uprn": "10015469264" - } -}, -{ - "type": "node", - "id": 1462571393, - "lat": 51.4483884, - "lon": -2.5142142, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS15 1015", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1463032233, - "lat": 54.2040271, - "lon": -1.2726690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "YO7 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1463042160, - "lat": 51.4018387, - "lon": 0.4756838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 170", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1463209671, - "lat": 50.6907918, - "lon": -3.6708677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX6 203D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1463219008, - "lat": 50.6909163, - "lon": -3.6895733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "EX6 274D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1463235587, - "lat": 50.6681466, - "lon": -3.8550848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 205D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1463242329, - "lat": 50.5762499, - "lon": -3.8121618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1463242339, - "lat": 50.6026225, - "lon": -3.8054884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:45; Su off", - "drive_through": "no", - "note": "Old GR lamp box replaced by a Romec lamp box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1463251290, - "lat": 50.6130910, - "lon": -3.7588536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1463808839, - "lat": 53.0896339, - "lon": 0.0069335, - "tags": { - "amenity": "post_box", - "ref": "PE22 201" - } -}, -{ - "type": "node", - "id": 1463808866, - "lat": 53.1093791, - "lon": 0.0103614, - "tags": { - "amenity": "post_box", - "ref": "PE22 160" - } -}, -{ - "type": "node", - "id": 1463808870, - "lat": 53.0091731, - "lon": -0.0637991, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1463808875, - "lat": 53.1149779, - "lon": -0.0944004, - "tags": { - "amenity": "post_box", - "ref": "PE22 205" - } -}, -{ - "type": "node", - "id": 1463808900, - "lat": 53.0799194, - "lon": 0.0064212, - "tags": { - "amenity": "post_box", - "ref": "PE22 156" - } -}, -{ - "type": "node", - "id": 1463808901, - "lat": 53.1326643, - "lon": -0.0601555, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 114" - } -}, -{ - "type": "node", - "id": 1463808903, - "lat": 53.1304534, - "lon": -0.0924450, - "tags": { - "amenity": "post_box", - "ref": "PE22 81" - } -}, -{ - "type": "node", - "id": 1463808928, - "lat": 53.1021434, - "lon": -0.1012105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE22 176", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1463808931, - "lat": 53.0907469, - "lon": 0.0918630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "PE22 158" - } -}, -{ - "type": "node", - "id": 1463808936, - "lat": 53.1567768, - "lon": -0.0957965, - "tags": { - "amenity": "post_box", - "ref": "PE22 143", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1463808941, - "lat": 53.0372280, - "lon": -0.0001744, - "tags": { - "amenity": "post_box", - "ref": "PE22 183" - } -}, -{ - "type": "node", - "id": 1463808966, - "lat": 53.0220645, - "lon": -0.1080106, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE22 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1463808982, - "lat": 53.0935013, - "lon": -0.0170991, - "tags": { - "amenity": "post_box", - "ref": "PE22 105" - } -}, -{ - "type": "node", - "id": 1463809004, - "lat": 53.0226879, - "lon": -0.0270206, - "tags": { - "amenity": "post_box", - "ref": "PE22 214" - } -}, -{ - "type": "node", - "id": 1463809008, - "lat": 53.0565659, - "lon": -0.0418720, - "tags": { - "amenity": "post_box", - "ref": "PE22 188" - } -}, -{ - "type": "node", - "id": 1463809013, - "lat": 53.1578078, - "lon": -0.0232534, - "tags": { - "amenity": "post_box", - "ref": "PE22 111" - } -}, -{ - "type": "node", - "id": 1463809016, - "lat": 53.1225517, - "lon": -0.1507709, - "tags": { - "amenity": "post_box", - "ref": "PE22 115" - } -}, -{ - "type": "node", - "id": 1463845653, - "lat": 52.2889845, - "lon": -2.6130569, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR15 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1463847407, - "lat": 52.2968342, - "lon": -2.6008516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR15 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1463859584, - "lat": 53.3198513, - "lon": -0.9498901, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1463859587, - "lat": 53.3205691, - "lon": -0.9417898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1463987251, - "lat": 52.3101457, - "lon": -2.5958076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR15 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1464039072, - "lat": 52.3252038, - "lon": -2.4550427, - "tags": { - "amenity": "post_box", - "fixme": "Need to visit again, to make sure ref is right.", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR15 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1464108086, - "lat": 50.8300756, - "lon": -1.8468832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BH24 65", - "ref:GB:uprn": "10015293205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1464121774, - "lat": 50.8286778, - "lon": -1.8389849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH24 45", - "ref:GB:uprn": "10015391214", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1464142055, - "lat": 50.8413420, - "lon": -1.8391675, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BH24 31", - "ref:GB:uprn": "10015333750", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1464144251, - "lat": 50.8350646, - "lon": -1.8246353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 3", - "ref:GB:uprn": "10015287336", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1464379392, - "lat": 50.5935082, - "lon": -3.6654156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 12:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1464473872, - "lat": 50.5974191, - "lon": -3.7032076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 08:00; Su off", - "drive_through": "no", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "TQ13 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1464928303, - "lat": 52.3111106, - "lon": -2.4895434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR15 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1465008997, - "lat": 53.0608886, - "lon": 0.1258936, - "tags": { - "amenity": "post_box", - "ref": "PE22 139" - } -}, -{ - "type": "node", - "id": 1465008998, - "lat": 53.0379771, - "lon": 0.1217629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE22 147" - } -}, -{ - "type": "node", - "id": 1465009000, - "lat": 53.0204597, - "lon": 0.1280233, - "tags": { - "amenity": "post_box", - "ref": "PE22 193" - } -}, -{ - "type": "node", - "id": 1465009001, - "lat": 53.0740672, - "lon": 0.2084934, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE22 161", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1465009002, - "lat": 53.0948544, - "lon": 0.1471258, - "tags": { - "amenity": "post_box", - "ref": "PE22 181" - } -}, -{ - "type": "node", - "id": 1465009004, - "lat": 53.0556330, - "lon": 0.1277356, - "tags": { - "amenity": "post_box", - "ref": "PE22 197" - } -}, -{ - "type": "node", - "id": 1465009005, - "lat": 53.0790228, - "lon": 0.2000811, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE22 126", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1465009006, - "lat": 53.0319579, - "lon": 0.1143245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE22 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1465655591, - "lat": 52.8237524, - "lon": 1.3782132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Cromer Road", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR28 2812D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1465754914, - "lat": 51.9281172, - "lon": -1.7488998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "inscription": "To commemorate the Golden Jubilee of Queen Elizabeth II 1952-2002", - "note": "The last collection time per the plate is Mo-Fr 16:30; Sa 09:15, but there is a sticker noting that these will be updated as of 29/04/2019", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL54 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1465773937, - "lat": 51.9392714, - "lon": -1.7446848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL54 295D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1466283409, - "lat": 53.2026654, - "lon": -1.1589228, - "tags": { - "amenity": "post_box", - "ele": "54.0000000", - "ref": "NG20 191" - } -}, -{ - "type": "node", - "id": 1466716845, - "lat": 51.3183894, - "lon": -2.7255269, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1466741897, - "lat": 52.3026298, - "lon": -2.5912510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "post_box:type": "lamp", - "ref": "WR15 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1467037087, - "lat": 53.2005207, - "lon": -1.2287993, - "tags": { - "amenity": "post_box", - "ele": "111", - "fixme": "check post box number is correct", - "note": "take over from key krd_mapper_check of way https://www.openstreetmap.org/way/278339260/history", - "ref": "NG20 117" - } -}, -{ - "type": "node", - "id": 1467296615, - "lat": 58.2717459, - "lon": -4.0488595, - "tags": { - "amenity": "post_box", - "fixme": "ref", - "source": "Personal knowledge" - } -}, -{ - "type": "node", - "id": 1467299976, - "lat": 50.8215112, - "lon": -1.0531132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PO3 376" - } -}, -{ - "type": "node", - "id": 1467316986, - "lat": 58.2589032, - "lon": -3.9411888, - "tags": { - "amenity": "post_box", - "source": "Personal knowledge" - } -}, -{ - "type": "node", - "id": 1467403931, - "lat": 52.1952577, - "lon": 0.2666838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB21 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1467561007, - "lat": 50.8490746, - "lon": 0.4368368, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "The Byeway", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 75", - "ref:GB:uprn": "10015344338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB The Byeway TN3975.jpg" - } -}, -{ - "type": "node", - "id": 1468243748, - "lat": 53.3606233, - "lon": -3.1700073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:amenity": "survey", - "wikimedia_commons": "File:Post box at Melloncroft Drive, Caldy.jpg" - } -}, -{ - "type": "node", - "id": 1468302297, - "lat": 51.0885653, - "lon": -0.7267965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 98D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post Box GU27 98D Saint Christopher's Green, Haslemere, Surrey.jpg" - } -}, -{ - "type": "node", - "id": 1468335637, - "lat": 51.0882631, - "lon": -0.7198139, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1469041302, - "lat": 51.1848438, - "lon": 0.2787463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN9 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1469076965, - "lat": 53.7710015, - "lon": -2.8325775, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1469076969, - "lat": 53.7711240, - "lon": -2.8410472, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1469160950, - "lat": 53.6480707, - "lon": -1.8118305, - "tags": { - "amenity": "post_box", - "last_collection": "5.30 Sat 12.30pm", - "operator": "Royal Mail", - "ref": "HD1 314" - } -}, -{ - "type": "node", - "id": 1469208957, - "lat": 55.5011973, - "lon": -4.6151311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "KA9 29D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1469502611, - "lat": 57.1546300, - "lon": -2.0995090, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-14", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 1470628682, - "lat": 53.9240505, - "lon": -1.0798966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO19 446D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1470641702, - "lat": 51.8144711, - "lon": -1.2125661, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX3 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1470662520, - "lat": 53.4092828, - "lon": -4.4566602, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1470690334, - "lat": 52.2578456, - "lon": -2.5152171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR15 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1470780417, - "lat": 52.2903715, - "lon": -2.5665071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "location": "Haws Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR15 136" - } -}, -{ - "type": "node", - "id": 1470848070, - "lat": 53.0768416, - "lon": -2.5161315, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 295", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1470913816, - "lat": 51.4027996, - "lon": -0.2070433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM4 261", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1471037155, - "lat": 51.5376882, - "lon": -0.0448655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1471283672, - "lat": 55.8313515, - "lon": -4.0784815, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1471812038, - "lat": 52.2993820, - "lon": -2.5986207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR15 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1471815061, - "lat": 52.2979093, - "lon": -2.5303084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WR15 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1472096901, - "lat": 52.3288833, - "lon": -2.4839309, - "tags": { - "amenity": "post_box", - "fixme": "Haven't been back to check this one.", - "post_box:type": "lamp", - "ref": "WR15 105" - } -}, -{ - "type": "node", - "id": 1472122365, - "lat": 52.6182616, - "lon": -2.4481594, - "tags": { - "amenity": "post_box", - "ref": "TF8 87" - } -}, -{ - "type": "node", - "id": 1472443388, - "lat": 50.5658071, - "lon": -4.1217295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL19 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1472499366, - "lat": 50.5987254, - "lon": -4.1223237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Postbox was present in 2011 (https://goo.gl/maps/VF8AKAK3qmnsC84A8) but was removed by Aug 2021 (https://goo.gl/maps/A5ChyLc59xuMSqmM8) and not relocated in vicinity. Also not in Royal Mail list Jan 2022 so suggest removing from OSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL19 89" - } -}, -{ - "type": "node", - "id": 1472508987, - "lat": 50.5945859, - "lon": -4.1170870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL19 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1473028153, - "lat": 52.7723230, - "lon": -1.9498176, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1473087394, - "lat": 52.2653368, - "lon": -2.5433118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR15 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1473189306, - "lat": 52.3123049, - "lon": -2.4503907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR15 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1473288470, - "lat": 53.0669488, - "lon": -2.5220285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CW5 184", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1473373721, - "lat": 50.6124997, - "lon": -4.1469874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL19 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1473425198, - "lat": 50.5918837, - "lon": -4.2519684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1473450967, - "lat": 52.2749205, - "lon": -3.8394644, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1474504722, - "lat": 55.8624822, - "lon": -4.2582306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G2 694;G2 694A", - "royal_cypher": "scottish_crown", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 1474884410, - "lat": 52.3145361, - "lon": -2.5941333, - "tags": { - "amenity": "post_box", - "fixme": "Check is still there and ref is correct", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "WR15 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1474902380, - "lat": 53.4149213, - "lon": -2.2362829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1474914545, - "lat": 50.9839664, - "lon": -0.9594358, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1474952095, - "lat": 50.9465643, - "lon": -1.0083586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1474991633, - "lat": 52.3172227, - "lon": -2.5992755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR15 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1475002820, - "lat": 51.5164325, - "lon": -0.1758993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "collection_times_checked": "2017-09-15", - "note": "very thin aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "W2 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1476440914, - "lat": 51.2355911, - "lon": 0.1696588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN14 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1476456972, - "lat": 51.2368914, - "lon": 0.1914413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN14 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1476507764, - "lat": 53.6540968, - "lon": -1.8244049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1476529822, - "lat": 52.1305110, - "lon": -4.0299610, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1476535488, - "lat": 54.0632558, - "lon": -0.3820886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1476556142, - "lat": 53.1043755, - "lon": -2.4514107, - "tags": { - "amenity": "post_box", - "is_in": "Crewe, Cheshire, England, United Kingdom", - "post_box:type": "pillar", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 1477156167, - "lat": 51.5677669, - "lon": -1.2952280, - "tags": { - "amenity": "post_box", - "ref": "OX11 1042", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1477556006, - "lat": 50.9260793, - "lon": -1.3730394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1477558468, - "lat": 50.9285687, - "lon": -1.3708269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 346D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1477742060, - "lat": 52.6089548, - "lon": -2.0466078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1477858745, - "lat": 50.9196011, - "lon": -1.3730160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 453", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1477877197, - "lat": 52.9002364, - "lon": 1.0893380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2519D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1477948597, - "lat": 53.4098072, - "lon": -2.3210661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M33 605", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1477948599, - "lat": 53.4140228, - "lon": -2.3246855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M33 501", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1477948600, - "lat": 53.4166191, - "lon": -2.3245698, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1478085067, - "lat": 53.6612138, - "lon": -1.9178186, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "HX4 66" - } -}, -{ - "type": "node", - "id": 1478085083, - "lat": 53.6439724, - "lon": -1.9333488, - "tags": { - "amenity": "post_box", - "ref": "HX4 255", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1478091621, - "lat": 52.5832476, - "lon": -2.0574474, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1478091622, - "lat": 52.5843922, - "lon": -2.0557240, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1478178244, - "lat": 51.7696897, - "lon": -1.0740313, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-04", - "collection_times": "Mo-Fr 15:00, Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "HP18 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1478178245, - "lat": 51.7697054, - "lon": -1.0688892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "HP18 210", - "source": "gps_survey;Bing", - "source:ref": "photograph" - } -}, -{ - "type": "node", - "id": 1478194782, - "lat": 50.9899626, - "lon": -0.8267086, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU31 90", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1478222703, - "lat": 50.6843579, - "lon": -4.1056753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1478288136, - "lat": 51.7596714, - "lon": -1.0549186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "HP18 214", - "source": "gps_survey;Bing" - } -}, -{ - "type": "node", - "id": 1478288192, - "lat": 51.7604991, - "lon": -1.0605593, - "tags": { - "amenity": "post_box", - "ref": "HP18 213" - } -}, -{ - "type": "node", - "id": 1478288376, - "lat": 51.7628038, - "lon": -1.0608137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "HP18 212", - "source": "gps_survey;Bing", - "source:ref": "photograph" - } -}, -{ - "type": "node", - "id": 1478313095, - "lat": 50.9694248, - "lon": -0.7447335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "wall", - "ref": "GU29 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1478333423, - "lat": 52.3357330, - "lon": -2.1531558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR9 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1478343458, - "lat": 51.1660399, - "lon": -0.2818378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1479075917, - "lat": 51.4344338, - "lon": 0.0886846, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1479282414, - "lat": 54.5567515, - "lon": -1.3518164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS18 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Local Knowledge" - } -}, -{ - "type": "node", - "id": 1479299920, - "lat": 54.5561140, - "lon": -1.3427658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 1479451180, - "lat": 51.3770209, - "lon": -2.3292324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA2 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1479531929, - "lat": 51.4842012, - "lon": -2.5899196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS7 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480209919, - "lat": 50.9772904, - "lon": -0.9502390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU31 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480209921, - "lat": 50.9789091, - "lon": -0.9499078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU31 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480508843, - "lat": 50.8335191, - "lon": -0.5474205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP6", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN17 1430", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1480539589, - "lat": 51.0827361, - "lon": -0.5759369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480539946, - "lat": 51.0871993, - "lon": -0.6060754, - "tags": { - "amenity": "post_box", - "ref": "GU8 59" - } -}, -{ - "type": "node", - "id": 1480540274, - "lat": 51.0885145, - "lon": -0.5823091, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU8 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480541782, - "lat": 51.0994398, - "lon": -0.6143105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480541946, - "lat": 51.1009765, - "lon": -0.5762901, - "tags": { - "amenity": "post_box", - "ref": "GU8 83" - } -}, -{ - "type": "node", - "id": 1480542112, - "lat": 51.1033109, - "lon": -0.5570852, - "tags": { - "amenity": "post_box", - "ref": "GU8 57" - } -}, -{ - "type": "node", - "id": 1480542234, - "lat": 51.1061294, - "lon": -0.6194758, - "tags": { - "amenity": "post_box", - "ref": "GU8 97" - } -}, -{ - "type": "node", - "id": 1480542316, - "lat": 51.1082442, - "lon": -0.5699367, - "tags": { - "amenity": "post_box", - "ref": "GU8 88" - } -}, -{ - "type": "node", - "id": 1480542569, - "lat": 51.1125659, - "lon": -0.5643881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1480542714, - "lat": 51.1184679, - "lon": -0.6230669, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1481019520, - "lat": 51.0878773, - "lon": -0.7299646, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1481138464, - "lat": 51.8569889, - "lon": -2.2218874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL4 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1481618129, - "lat": 50.7058518, - "lon": -4.1765934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1481632609, - "lat": 50.8178350, - "lon": -4.1543810, - "tags": { - "amenity": "post_box", - "mapillary": "1010775349838846", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX21 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1482160164, - "lat": 51.7843041, - "lon": -0.1961360, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 286" - } -}, -{ - "type": "node", - "id": 1482201872, - "lat": 51.4508942, - "lon": -0.1552123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Street survey" - } -}, -{ - "type": "node", - "id": 1482294838, - "lat": 50.7274463, - "lon": -3.5544640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EX4 526D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1482476982, - "lat": 52.4021320, - "lon": -2.0643527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B62 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1482509996, - "lat": 54.2265944, - "lon": -1.6442126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1482512323, - "lat": 54.2591590, - "lon": -1.6666620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1482538278, - "lat": 52.2369615, - "lon": -2.3587544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "WR6 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1482775639, - "lat": 52.5466260, - "lon": 0.0851276, - "tags": { - "amenity": "post_box", - "ref": "PE15 185" - } -}, -{ - "type": "node", - "id": 1482792209, - "lat": 51.1309882, - "lon": -2.9978480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1483374303, - "lat": 51.6440501, - "lon": -0.1866521, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1483510140, - "lat": 52.2911434, - "lon": -2.4805880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR15 82D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1483586715, - "lat": 53.6425607, - "lon": -3.0149752, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR8 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1483890858, - "lat": 51.4376276, - "lon": -0.1190417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW2 8" - } -}, -{ - "type": "node", - "id": 1483958484, - "lat": 52.3266338, - "lon": -2.6006093, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WR15 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dracos;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1483978776, - "lat": 52.3081490, - "lon": -2.5841179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR15 86D", - "source": "survey", - "survey:date": "2020-12-19" - } -}, -{ - "type": "node", - "id": 1484006406, - "lat": 50.7859370, - "lon": -1.1004357, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1484041372, - "lat": 50.7853509, - "lon": -1.0932724, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484081289, - "lat": 52.5838695, - "lon": -4.0889756, - "tags": { - "amenity": "post_box", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "LL36 115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1484086093, - "lat": 53.7137599, - "lon": -1.7442270, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD6 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484157336, - "lat": 51.0026379, - "lon": -0.1072591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484623061, - "lat": 51.0868542, - "lon": -0.7465454, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2020-09-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484782407, - "lat": 52.5854901, - "lon": -4.0928565, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484861728, - "lat": 52.7115361, - "lon": 1.4095449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR12 1260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484879803, - "lat": 51.4544339, - "lon": -0.2201229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1484887485, - "lat": 51.4551476, - "lon": -0.3196956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1484903594, - "lat": 51.4607447, - "lon": -0.2165702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1484920592, - "lat": 51.4676438, - "lon": -0.2207309, - "tags": { - "addr:housenumber": "70", - "addr:street": "Lower Richmond Road", - "addr:suburb": "Putney", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW15 28", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1484969368, - "lat": 51.5551361, - "lon": -0.3287226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 75" - } -}, -{ - "type": "node", - "id": 1484969380, - "lat": 51.5516632, - "lon": -0.3191674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 76" - } -}, -{ - "type": "node", - "id": 1484969383, - "lat": 51.5417582, - "lon": -0.3122899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 120" - } -}, -{ - "type": "node", - "id": 1484969387, - "lat": 51.5401196, - "lon": -0.3157496, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 119" - } -}, -{ - "type": "node", - "id": 1484969389, - "lat": 51.5396285, - "lon": -0.3107119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 103" - } -}, -{ - "type": "node", - "id": 1484969390, - "lat": 51.5523100, - "lon": -0.3354931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 83" - } -}, -{ - "type": "node", - "id": 1485007711, - "lat": 52.9520735, - "lon": 0.8475062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR23 2308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1485021459, - "lat": 52.3144141, - "lon": -2.5565906, - "tags": { - "amenity": "post_box", - "fixme": "Ref is by conjecture. Need to get off bus and look properly.", - "post_box:type": "lamp", - "ref": "WR15 67" - } -}, -{ - "type": "node", - "id": 1485149740, - "lat": 51.5418794, - "lon": -0.3521857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 95" - } -}, -{ - "type": "node", - "id": 1485149748, - "lat": 51.5354295, - "lon": -0.3633435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 222" - } -}, -{ - "type": "node", - "id": 1485149751, - "lat": 51.5391264, - "lon": -0.3447878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 132" - } -}, -{ - "type": "node", - "id": 1485149754, - "lat": 51.5420366, - "lon": -0.3393135, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-15", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "UB6 41;UB6 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1485149755, - "lat": 51.5322897, - "lon": -0.3598180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 224" - } -}, -{ - "type": "node", - "id": 1485149759, - "lat": 51.5489221, - "lon": -0.3398167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 99" - } -}, -{ - "type": "node", - "id": 1485149761, - "lat": 51.5303253, - "lon": -0.3639708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 32" - } -}, -{ - "type": "node", - "id": 1485149764, - "lat": 51.5324820, - "lon": -0.3678021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 123" - } -}, -{ - "type": "node", - "id": 1485149770, - "lat": 51.5404746, - "lon": -0.3588192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 158" - } -}, -{ - "type": "node", - "id": 1485185436, - "lat": 51.5327919, - "lon": -0.3485306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 46" - } -}, -{ - "type": "node", - "id": 1485185439, - "lat": 51.5348489, - "lon": -0.3499198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 13D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1485185440, - "lat": 51.5250735, - "lon": -0.3599530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 50" - } -}, -{ - "type": "node", - "id": 1485185441, - "lat": 51.5284067, - "lon": -0.3562287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 163" - } -}, -{ - "type": "node", - "id": 1485185446, - "lat": 51.5318850, - "lon": -0.3528436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 136" - } -}, -{ - "type": "node", - "id": 1485185460, - "lat": 51.5282600, - "lon": -0.3643881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 98" - } -}, -{ - "type": "node", - "id": 1485185461, - "lat": 51.5334884, - "lon": -0.3496421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1485185464, - "lat": 51.5288737, - "lon": -0.3468590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 92" - } -}, -{ - "type": "node", - "id": 1485185467, - "lat": 51.5347817, - "lon": -0.3466194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB6 148" - } -}, -{ - "type": "node", - "id": 1485192018, - "lat": 51.5073228, - "lon": -0.3538122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 84" - } -}, -{ - "type": "node", - "id": 1485192019, - "lat": 51.4919781, - "lon": -0.3702786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB2 81" - } -}, -{ - "type": "node", - "id": 1485192020, - "lat": 51.4947803, - "lon": -0.3710279, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB2 15" - } -}, -{ - "type": "node", - "id": 1485192021, - "lat": 51.4983139, - "lon": -0.3664084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 23" - } -}, -{ - "type": "node", - "id": 1485192022, - "lat": 51.5194048, - "lon": -0.3600160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 97D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1485192024, - "lat": 51.4918398, - "lon": -0.3743591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 125" - } -}, -{ - "type": "node", - "id": 1485197115, - "lat": 52.5590100, - "lon": -0.0575070, - "tags": { - "amenity": "post_box", - "ref": "PE7 168" - } -}, -{ - "type": "node", - "id": 1485197140, - "lat": 52.5598404, - "lon": -0.0689493, - "tags": { - "amenity": "post_box", - "ref": "PE7 72" - } -}, -{ - "type": "node", - "id": 1485204423, - "lat": 51.4992794, - "lon": -0.3999167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 220" - } -}, -{ - "type": "node", - "id": 1485204424, - "lat": 51.4968912, - "lon": -0.3840378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 9" - } -}, -{ - "type": "node", - "id": 1485204427, - "lat": 51.5004490, - "lon": -0.3871397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB2 14" - } -}, -{ - "type": "node", - "id": 1485204430, - "lat": 51.4944582, - "lon": -0.3934738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 191" - } -}, -{ - "type": "node", - "id": 1485204432, - "lat": 51.4996766, - "lon": -0.3901625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 45" - } -}, -{ - "type": "node", - "id": 1485204435, - "lat": 51.4987387, - "lon": -0.4074061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 170" - } -}, -{ - "type": "node", - "id": 1485211288, - "lat": 51.1275134, - "lon": -3.0211709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1485228548, - "lat": 51.5021828, - "lon": -0.3837713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 6" - } -}, -{ - "type": "node", - "id": 1485228552, - "lat": 51.4997376, - "lon": -0.3785906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 17" - } -}, -{ - "type": "node", - "id": 1485228555, - "lat": 51.5018737, - "lon": -0.3945780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 22" - } -}, -{ - "type": "node", - "id": 1485228557, - "lat": 51.5021822, - "lon": -0.3875235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 25" - } -}, -{ - "type": "node", - "id": 1485228560, - "lat": 51.5019801, - "lon": -0.3719750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 199" - } -}, -{ - "type": "node", - "id": 1485228564, - "lat": 51.4999097, - "lon": -0.3980077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 68" - } -}, -{ - "type": "node", - "id": 1485228573, - "lat": 51.5014388, - "lon": -0.3772874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 28" - } -}, -{ - "type": "node", - "id": 1485228574, - "lat": 51.4985537, - "lon": -0.3777612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB2 3" - } -}, -{ - "type": "node", - "id": 1485545397, - "lat": 52.3120737, - "lon": -2.5938660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "wall", - "ref": "WR15 10", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1485700542, - "lat": 51.9192535, - "lon": -1.2866458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX25 730D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1485700637, - "lat": 51.9197345, - "lon": -1.2923963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX25 562", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1485704730, - "lat": 50.7992705, - "lon": -1.0888423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-21", - "check_date:collection_times": "2022-06-21", - "check_date:ref": "2022-06-21", - "collection_times": "Mo-Fr 18:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO1 9992", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1486055644, - "lat": 51.4368947, - "lon": -0.1051672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1486075474, - "lat": 51.4346879, - "lon": -0.1139940, - "tags": { - "amenity": "post_box", - "ref": "SW16 27" - } -}, -{ - "type": "node", - "id": 1486078061, - "lat": 52.8934803, - "lon": 0.8734615, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NR22 2205", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1486280499, - "lat": 50.9513540, - "lon": -0.6900738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1486280692, - "lat": 50.9665327, - "lon": -0.6746114, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GU28 120", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1486359097, - "lat": 52.5614715, - "lon": -0.0743688, - "tags": { - "amenity": "post_box", - "note": "PO Box ref unreadable", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1486398452, - "lat": 52.6647995, - "lon": 0.7169034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE37 338D", - "royal_cypher": "EIIR", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 1486947517, - "lat": 51.9105156, - "lon": -4.7914458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1486947520, - "lat": 51.9225605, - "lon": -4.7662746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1487650405, - "lat": 51.4329368, - "lon": -0.1038670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "sticker over ref on 13 Mar 2022 but RM site confirms", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE27 1;SE27 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1488408600, - "lat": 52.9774587, - "lon": -1.9914622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1488718693, - "lat": 51.5676319, - "lon": -0.3517178, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12.15pm", - "ref": "HA2 511" - } -}, -{ - "type": "node", - "id": 1488807479, - "lat": 53.0234323, - "lon": -0.4232140, - "tags": { - "amenity": "post_box", - "ele": "21.0000000" - } -}, -{ - "type": "node", - "id": 1488833739, - "lat": 53.0289366, - "lon": -0.4229458, - "tags": { - "amenity": "post_box", - "ele": "20.0000000" - } -}, -{ - "type": "node", - "id": 1488963731, - "lat": 52.4724911, - "lon": -1.5053005, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 0EN", - "ref": "CV12 567" - } -}, -{ - "type": "node", - "id": 1489117962, - "lat": 52.2076731, - "lon": 0.1195145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CB2 1", - "ref": "CB2 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1489183614, - "lat": 52.4802343, - "lon": -1.4898697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV12 563D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1489195689, - "lat": 53.0369974, - "lon": -0.4621215, - "tags": { - "amenity": "post_box", - "ele": "36.0000000", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1489197803, - "lat": 52.4774936, - "lon": -1.4957415, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 0PP", - "ref": "CV12 579" - } -}, -{ - "type": "node", - "id": 1489197807, - "lat": 52.4684144, - "lon": -1.5060572, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 0HS", - "ref": "CV12 568" - } -}, -{ - "type": "node", - "id": 1489197809, - "lat": 52.4747065, - "lon": -1.5155040, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 0LZ", - "ref": "CV12 580" - } -}, -{ - "type": "node", - "id": 1489197810, - "lat": 52.4739239, - "lon": -1.4928661, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "CV12 0AN", - "ref": "CV12 564" - } -}, -{ - "type": "node", - "id": 1489201037, - "lat": 52.4882953, - "lon": -1.4733012, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 8AP", - "ref": "CV12 575" - } -}, -{ - "type": "node", - "id": 1489212370, - "lat": 52.4841987, - "lon": -1.4807491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV12 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1489215230, - "lat": 52.4795912, - "lon": -1.4705083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "note": "2 apertures side by side in a metal panel on wall but with different refs", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV12 552", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1489215231, - "lat": 52.4795978, - "lon": -1.4705075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "note": "2 apertures side by side in a metal panel on wall but with different refs", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV12 551", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1489216210, - "lat": 52.4748127, - "lon": -1.4760862, - "tags": { - "amenity": "post_box", - "postal_code": "CV12 8NT", - "ref": "CV12 554" - } -}, -{ - "type": "node", - "id": 1489383961, - "lat": 51.0883779, - "lon": -0.7301470, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "last_checked": "2020-08-20", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1489529725, - "lat": 51.4937893, - "lon": 0.0822776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1489668793, - "lat": 51.6413000, - "lon": -0.6417060, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "HP7 121", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "observation", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1490007769, - "lat": 52.5573810, - "lon": -0.0929208, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE7 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1490275818, - "lat": 51.0860764, - "lon": -0.7149082, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-22", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU27 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1490559802, - "lat": 53.9980137, - "lon": -0.3085372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "wall", - "ref": "YO25 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1490559903, - "lat": 54.0198574, - "lon": -0.2846717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "YO25 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1490576688, - "lat": 50.8334165, - "lon": -1.0714409, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1490932704, - "lat": 52.1842805, - "lon": -0.9468650, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "NN7 3DS", - "ref": "NN7 331" - } -}, -{ - "type": "node", - "id": 1491704639, - "lat": 52.1561921, - "lon": -1.8928066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR11 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1491745825, - "lat": 52.8882192, - "lon": -2.0435679, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST18 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1491924126, - "lat": 56.5002033, - "lon": -3.5227259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 32D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1492002114, - "lat": 53.3685005, - "lon": -2.1241107, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "source": "Local knowledge" - } -}, -{ - "type": "node", - "id": 1492037035, - "lat": 53.4579818, - "lon": -2.2389073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M14 627D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Local knowledge" - } -}, -{ - "type": "node", - "id": 1492042796, - "lat": 51.1268386, - "lon": -2.9987101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 59D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1492042797, - "lat": 51.1280380, - "lon": -2.9941198, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1492042798, - "lat": 51.1298604, - "lon": -2.9967434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Ref really does end in \"D\" not \"0\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 901D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1492057685, - "lat": 53.3677226, - "lon": -2.1133084, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "Local knowledge" - } -}, -{ - "type": "node", - "id": 1492278864, - "lat": 52.1511075, - "lon": -1.9002643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1492397872, - "lat": 55.2324729, - "lon": -3.8140089, - "tags": { - "amenity": "post_box", - "ref": "DG3 138" - } -}, -{ - "type": "node", - "id": 1492507352, - "lat": 53.7610223, - "lon": -0.0472145, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1493047137, - "lat": 51.5176281, - "lon": -0.2849620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1493208368, - "lat": 52.4374716, - "lon": -0.2779182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE28 181" - } -}, -{ - "type": "node", - "id": 1493270316, - "lat": 55.8845249, - "lon": -4.2878369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "G20 515" - } -}, -{ - "type": "node", - "id": 1493422661, - "lat": 55.9350897, - "lon": -4.1542093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "ref": "G66 160" - } -}, -{ - "type": "node", - "id": 1493435206, - "lat": 51.9216358, - "lon": -4.7178295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1493435207, - "lat": 51.9202528, - "lon": -4.7433856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1493501257, - "lat": 52.3046958, - "lon": -2.6070744, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR15 161", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1493573670, - "lat": 52.2794614, - "lon": -0.9756473, - "tags": { - "amenity": "post_box", - "ref": "NN7 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1493573755, - "lat": 52.2894758, - "lon": -0.9336479, - "tags": { - "amenity": "post_box", - "ref": "NN6 154" - } -}, -{ - "type": "node", - "id": 1493630404, - "lat": 53.0782787, - "lon": -1.2593303, - "tags": { - "amenity": "post_box", - "ele": "173.0000000" - } -}, -{ - "type": "node", - "id": 1493733324, - "lat": 52.1731208, - "lon": -2.3714335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR6 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1493733432, - "lat": 52.1846789, - "lon": -2.3817477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "post_box:type": "lamp", - "ref": "WR6 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1493733434, - "lat": 52.2506485, - "lon": -2.3609507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1493733643, - "lat": 52.2904426, - "lon": -2.3905268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1493733837, - "lat": 52.3079535, - "lon": -2.3640322, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-27", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "note": "old style collection plate", - "old_ref": "R209 Abberley Old Village", - "post_box:type": "wall", - "ref": "WR6 209D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1493806186, - "lat": 53.3717270, - "lon": -2.1131764, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1493817548, - "lat": 53.3785484, - "lon": -2.1179484, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1493828303, - "lat": 53.3828758, - "lon": -2.1255868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK7 262D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1494329637, - "lat": 51.8940826, - "lon": -4.8166342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1494335533, - "lat": 52.2531261, - "lon": -2.5889873, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR15 15", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1495251413, - "lat": 51.9608205, - "lon": -1.4250303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "wall", - "ref": "OX7 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1495263678, - "lat": 50.7069017, - "lon": -3.3089495, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1495304414, - "lat": 52.4760804, - "lon": -1.8366466, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B9 7244", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1495625618, - "lat": 50.8826494, - "lon": -1.8786231, - "tags": { - "amenity": "post_box", - "ref": "BH31 171", - "ref:GB:uprn": "10015413173" - } -}, -{ - "type": "node", - "id": 1495649101, - "lat": 52.2526458, - "lon": -2.5250918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR15 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "observation;bing" - } -}, -{ - "type": "node", - "id": 1495664795, - "lat": 52.3059694, - "lon": -2.5957401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR15 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "observation;bing" - } -}, -{ - "type": "node", - "id": 1495861093, - "lat": 55.0777021, - "lon": -3.6762520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "DG2 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1495982046, - "lat": 52.1750121, - "lon": -2.3681552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1496203759, - "lat": 51.1546569, - "lon": -0.6878463, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU8 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1496485273, - "lat": 51.4730738, - "lon": -3.1701654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1496485279, - "lat": 51.4737974, - "lon": -3.1652372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1496654703, - "lat": 50.7177375, - "lon": -3.7669735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "http://edwardbetts.com/postboxes/EX6.html;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1496723639, - "lat": 51.2996801, - "lon": -0.3368181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "yes", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KT22 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1496723648, - "lat": 51.3002984, - "lon": -0.3391700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1496806586, - "lat": 53.3476614, - "lon": -2.1066908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1496806627, - "lat": 53.3481145, - "lon": -2.1154509, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1496840912, - "lat": 53.4742831, - "lon": -2.2346735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Collections changing to 09:00 / 07:00 from 8th December", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "M1 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1497173340, - "lat": 52.9831194, - "lon": -2.0047520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1497202798, - "lat": 51.0089371, - "lon": 0.2224176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1497270104, - "lat": 55.9953762, - "lon": -3.7486530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "ref": "FK2 58" - } -}, -{ - "type": "node", - "id": 1497777302, - "lat": 52.9564529, - "lon": 0.8523239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR23 2329D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1498608961, - "lat": 53.5391992, - "lon": -2.5236539, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1498611845, - "lat": 53.5444701, - "lon": -2.5211346, - "tags": { - "amenity": "post_box", - "ref": "BL5 270" - } -}, -{ - "type": "node", - "id": 1498926170, - "lat": 50.8689528, - "lon": -1.8515786, - "tags": { - "amenity": "post_box", - "ref": "BH31 198", - "ref:GB:uprn": "10015320234" - } -}, -{ - "type": "node", - "id": 1499857080, - "lat": 56.6478382, - "lon": -3.6789232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 12:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "PH9", - "ref": "PH9 34", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1500081470, - "lat": 55.9766607, - "lon": -3.7356707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 38", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1500081476, - "lat": 55.9782464, - "lon": -3.7137326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1500301864, - "lat": 51.4827894, - "lon": -0.6937734, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 12" - } -}, -{ - "type": "node", - "id": 1500390463, - "lat": 52.3005354, - "lon": 0.6937480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1501184699, - "lat": 53.7535541, - "lon": -2.8713049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1501574768, - "lat": 51.8001210, - "lon": 0.0481513, - "tags": { - "amenity": "post_box", - "last_collection": "4:30pm weekdays", - "operator": "Post Office", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1502056694, - "lat": 52.5857955, - "lon": -4.0877613, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 126" - } -}, -{ - "type": "node", - "id": 1502309007, - "lat": 51.0739649, - "lon": -0.9299434, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1502371679, - "lat": 50.9354517, - "lon": -1.0004644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 2072", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1502371680, - "lat": 50.9354390, - "lon": -1.0004639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 2071", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1502694732, - "lat": 50.8751161, - "lon": 0.5300851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "ref": "TN38 1081", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1502732125, - "lat": 51.9394789, - "lon": -1.3100271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "wall", - "ref": "OX25 91", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1502732254, - "lat": 51.9576413, - "lon": -1.3058285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:type": "wall", - "ref": "OX25 229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1502794791, - "lat": 51.9273977, - "lon": -1.3092590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "pillar", - "ref": "OX25 646" - } -}, -{ - "type": "node", - "id": 1502794797, - "lat": 51.9288296, - "lon": -1.3155959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "note": "For some reason the lamp box is almost on the floor", - "post_box:type": "lamp", - "ref": "OX25 801" - } -}, -{ - "type": "node", - "id": 1502794809, - "lat": 51.9306276, - "lon": -1.3113609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "OX25 109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1504084505, - "lat": 51.0669770, - "lon": -4.0870676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1504273047, - "lat": 52.3934881, - "lon": -0.7316080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 7", - "royal_cypher": "no", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1504364816, - "lat": 52.3315849, - "lon": -2.5520120, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR15 121", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1504517667, - "lat": 55.1176499, - "lon": -1.9464051, - "tags": { - "amenity": "post_box", - "ref": "NE19 465" - } -}, -{ - "type": "node", - "id": 1504529046, - "lat": 54.9967467, - "lon": -3.0576282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DG16 108" - } -}, -{ - "type": "node", - "id": 1504576913, - "lat": 51.1199631, - "lon": -0.2019514, - "tags": { - "amenity": "post_box", - "ref": "RH11 70" - } -}, -{ - "type": "node", - "id": 1505050778, - "lat": 52.2355890, - "lon": 1.5702094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP16 4651", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1505075301, - "lat": 52.2380773, - "lon": 1.5906744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "wall", - "ref": "IP16 4613", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1505107601, - "lat": 51.6751133, - "lon": -0.8245232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP14 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 1505189615, - "lat": 52.3158867, - "lon": -2.5693830, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR15 102", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1505197560, - "lat": 52.2559437, - "lon": -2.6125484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:15", - "post_box:type": "lamp", - "ref": "WR15 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1505210812, - "lat": 56.5377807, - "lon": -3.2404760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH13 125", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1505227041, - "lat": 51.4306755, - "lon": -0.9752248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1505239147, - "lat": 51.9688820, - "lon": -0.4269933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK45 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1505270374, - "lat": 52.4764303, - "lon": -1.8303392, - "tags": { - "amenity": "post_box", - "ref": "B9 413", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1505645773, - "lat": 55.8653060, - "lon": -4.2683274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "G2 706", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1505750511, - "lat": 53.1961641, - "lon": -1.9045225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:30", - "post_box:type": "wall", - "ref": "SK17 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1506175184, - "lat": 50.9997631, - "lon": -0.8493471, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1506195255, - "lat": 51.0167823, - "lon": -0.9461200, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1506263077, - "lat": 50.7337413, - "lon": -3.9101476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1506268989, - "lat": 57.6737589, - "lon": -3.1091849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IV32 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1506421748, - "lat": 50.8644878, - "lon": 0.1592046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN27 896", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1506771203, - "lat": 52.2982583, - "lon": -0.0733061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE28 92" - } -}, -{ - "type": "node", - "id": 1507177426, - "lat": 53.0989600, - "lon": -0.5276216, - "tags": { - "amenity": "post_box", - "ele": "57.0000000" - } -}, -{ - "type": "node", - "id": 1507307071, - "lat": 50.7306208, - "lon": -3.9251897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "note": "Box mounted on rounded pedestal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1507322481, - "lat": 52.3128334, - "lon": -2.5441623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "WR15 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1507495638, - "lat": 51.5014685, - "lon": -1.0627802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG8 426" - } -}, -{ - "type": "node", - "id": 1507534865, - "lat": 52.0523029, - "lon": -1.5539744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1507534866, - "lat": 52.0590746, - "lon": -1.5581621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX15 1019D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 1507557925, - "lat": 50.7811306, - "lon": -1.0832946, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO5 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1507914735, - "lat": 51.6399468, - "lon": -0.0854159, - "tags": { - "amenity": "post_box", - "ref": "N21 1" - } -}, -{ - "type": "node", - "id": 1508460746, - "lat": 53.8372398, - "lon": -2.9435004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 164D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1508543507, - "lat": 51.9697179, - "lon": -4.8759985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1508682027, - "lat": 50.7632925, - "lon": -3.6743066, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1508789472, - "lat": 50.8278179, - "lon": -0.1733735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 172", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1509288830, - "lat": 51.1305505, - "lon": 0.1735497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1509685853, - "lat": 51.7364151, - "lon": -1.6564022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1510003435, - "lat": 50.8244822, - "lon": -0.1568334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "This postbox is set back from the main line of the pavement. And this postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN3 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1510018084, - "lat": 50.8232439, - "lon": -0.1588134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1510057213, - "lat": 51.3073261, - "lon": -0.2707289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1510193594, - "lat": 51.6853541, - "lon": 0.4722306, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1510440125, - "lat": 55.8524476, - "lon": -4.2351389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "7425931817436225", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G40 341", - "survey:date": "2023-10-15" - } -}, -{ - "type": "node", - "id": 1510630529, - "lat": 50.8198881, - "lon": -0.1346413, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BN2 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1510636875, - "lat": 52.6099574, - "lon": -4.0555457, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL36 90", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1511479438, - "lat": 51.6378142, - "lon": -0.6207506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "HP7 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1511486942, - "lat": 51.6587608, - "lon": -0.6514633, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HP7 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1511835564, - "lat": 51.2759397, - "lon": -2.6553659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS40 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1511901407, - "lat": 51.6625546, - "lon": -0.6784752, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP7 19", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1512034265, - "lat": 52.2476720, - "lon": -0.9037829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1512092125, - "lat": 51.2346145, - "lon": -0.2287976, - "tags": { - "amenity": "post_box", - "ref": "RH2 148" - } -}, -{ - "type": "node", - "id": 1512149042, - "lat": 50.8093198, - "lon": -1.0861178, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO2 373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1512609730, - "lat": 50.7835650, - "lon": -1.0723348, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1512652446, - "lat": 50.8909638, - "lon": -0.9591970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1512825225, - "lat": 53.3182735, - "lon": -1.5045370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S17 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1513076848, - "lat": 52.1927434, - "lon": 1.5753902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4685", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1514667502, - "lat": 52.5877825, - "lon": -4.0843099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL36 35", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1515175258, - "lat": 50.7913573, - "lon": -1.0832560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1515227831, - "lat": 51.0717439, - "lon": 0.1881957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1515978089, - "lat": 51.7545141, - "lon": -2.2514517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge;survey" - } -}, -{ - "type": "node", - "id": 1516044537, - "lat": 52.5305922, - "lon": -2.2112939, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1516049337, - "lat": 52.5325860, - "lon": -2.1982637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1516267123, - "lat": 51.2277840, - "lon": -0.1712605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "name": "Earlswood Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1516309645, - "lat": 50.8924834, - "lon": 0.5381154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN38 90D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 1516415372, - "lat": 50.7943546, - "lon": -3.9424850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1518671900, - "lat": 50.8381355, - "lon": -1.8063866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 49", - "ref:GB:uprn": "10015368089" - } -}, -{ - "type": "node", - "id": 1518724819, - "lat": 51.2603060, - "lon": -0.1473965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 196D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1518799450, - "lat": 52.5842855, - "lon": -4.0825239, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL36 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1519598896, - "lat": 51.6703805, - "lon": -1.3793706, - "tags": { - "amenity": "post_box", - "ref": "OX13 9147" - } -}, -{ - "type": "node", - "id": 1519638042, - "lat": 51.3217188, - "lon": -0.1984555, - "tags": { - "amenity": "post_box", - "ref": "SM7 208", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1519736450, - "lat": 52.8472582, - "lon": -1.2334906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "NG11 82", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1519797919, - "lat": 53.6462532, - "lon": -1.7948412, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "HD1 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2021-09-12" - } -}, -{ - "type": "node", - "id": 1519798572, - "lat": 52.8309436, - "lon": -1.1877996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "LE12 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1519798626, - "lat": 52.8650817, - "lon": -1.1318783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NG11 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1519909829, - "lat": 51.7643386, - "lon": -1.2111484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "OX3 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1520361990, - "lat": 52.5811845, - "lon": -4.0768823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL36 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1520493699, - "lat": 53.8569499, - "lon": -1.6911520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS19 526" - } -}, -{ - "type": "node", - "id": 1520966419, - "lat": 52.7954752, - "lon": -2.1433933, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1520966504, - "lat": 52.8012207, - "lon": -2.1634176, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST18 91" - } -}, -{ - "type": "node", - "id": 1520966643, - "lat": 52.8088001, - "lon": -2.1603835, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST18 95", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1521116109, - "lat": 51.2352198, - "lon": -0.1756197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RH1 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1521305097, - "lat": 55.0758761, - "lon": -4.1398821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG7 35", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1521641355, - "lat": 52.8251885, - "lon": -2.1290447, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST16 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1521879264, - "lat": 54.0775328, - "lon": -1.0109437, - "tags": { - "amenity": "post_box", - "note": "no longer being used", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1523630487, - "lat": 51.2811720, - "lon": -0.6450020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU24 52", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1523655493, - "lat": 51.8759118, - "lon": -4.7701936, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1524145577, - "lat": 54.0891669, - "lon": -1.0002251, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO60 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1525219544, - "lat": 55.8604626, - "lon": -4.2354097, - "tags": { - "amenity": "post_box", - "ref": "G4 110" - } -}, -{ - "type": "node", - "id": 1525219568, - "lat": 55.8656299, - "lon": -4.2295117, - "tags": { - "amenity": "post_box", - "ref": "G31 554" - } -}, -{ - "type": "node", - "id": 1525228623, - "lat": 51.6599174, - "lon": -0.5473318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP8 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 1526586272, - "lat": 52.5643652, - "lon": -1.8279546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B73", - "ref": "B73 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1526644079, - "lat": 51.6462514, - "lon": -0.1804670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1526644083, - "lat": 51.6436017, - "lon": -0.1757906, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1526664167, - "lat": 51.6447899, - "lon": -0.1574187, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1526664174, - "lat": 51.6451527, - "lon": -0.1503322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN4 83" - } -}, -{ - "type": "node", - "id": 1526664177, - "lat": 51.6422951, - "lon": -0.1631561, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1526672087, - "lat": 52.8908727, - "lon": -3.6091176, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1526949803, - "lat": 50.7824191, - "lon": -1.0693717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 122", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1527492919, - "lat": 49.9871439, - "lon": -5.1800147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1528124299, - "lat": 52.3108168, - "lon": -2.6570962, - "tags": { - "amenity": "post_box", - "fixme": "Check ref -- I think Little Hereford should have an SY8 postcode.", - "post_box:type": "lamp", - "ref": "WR15 147", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1528648729, - "lat": 52.5249731, - "lon": 1.1123983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR18 1842", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1528706405, - "lat": 52.5262416, - "lon": 1.1694006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR16 1615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1528778498, - "lat": 51.8552066, - "lon": -2.2310347, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL1 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing + local knowledge" - } -}, -{ - "type": "node", - "id": 1528847786, - "lat": 54.9191277, - "lon": -3.9774541, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1528867708, - "lat": 54.8653046, - "lon": -4.4456818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DG8 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1529256445, - "lat": 52.5227864, - "lon": 1.2080653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:14", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR15 1530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1529256450, - "lat": 52.5343167, - "lon": 1.1594097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR16 1600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1529256467, - "lat": 52.5285944, - "lon": 1.2251298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR15 1521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1529256468, - "lat": 52.5420421, - "lon": 1.1796355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR16 1602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1529256480, - "lat": 52.5374132, - "lon": 1.1914734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR16 1625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1529817006, - "lat": 52.5328418, - "lon": 0.9739040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR17 1720", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1529893696, - "lat": 51.7568340, - "lon": -1.0365758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-24" - } -}, -{ - "type": "node", - "id": 1530100920, - "lat": 52.7418357, - "lon": -1.8755000, - "tags": { - "amenity": "post_box", - "ref": "WS15 312" - } -}, -{ - "type": "node", - "id": 1530100980, - "lat": 52.7425595, - "lon": -1.8667493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WS15 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1530101335, - "lat": 52.7495190, - "lon": -1.8806640, - "tags": { - "amenity": "post_box", - "ref": "WS15 257" - } -}, -{ - "type": "node", - "id": 1530709332, - "lat": 52.5321208, - "lon": 0.9348753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR17 1730", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1530755216, - "lat": 52.5388125, - "lon": 0.9329267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1727D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1530755505, - "lat": 52.5440193, - "lon": 0.9757898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "NR17 1714", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1530755600, - "lat": 52.5404494, - "lon": 0.9215373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1530842266, - "lat": 51.5789134, - "lon": -1.7840520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 301" - } -}, -{ - "type": "node", - "id": 1530842873, - "lat": 51.5800167, - "lon": -1.7900873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1530967364, - "lat": 51.1557072, - "lon": -0.1626355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Location near Departures", - "post_box:type": "pillar", - "ref": "RH6 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1530967377, - "lat": 51.1566157, - "lon": -0.1622122, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "indoor": "yes", - "note": "Location near Arrivals", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH6 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1531280153, - "lat": 51.9354812, - "lon": -4.8214156, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1531280157, - "lat": 51.9680948, - "lon": -4.8815471, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1531389523, - "lat": 50.7890421, - "lon": -1.0393605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO4 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1531452635, - "lat": 52.7759624, - "lon": -1.1988754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "mapillary": "772401370307754", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 174", - "survey:date": "2020-09-18" - } -}, -{ - "type": "node", - "id": 1531499406, - "lat": 55.7745499, - "lon": -4.2025683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G74 815", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1531776785, - "lat": 53.4806042, - "lon": -2.1272519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1532717552, - "lat": 53.0012725, - "lon": -2.2701587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "ST5 509", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1532717555, - "lat": 53.0019230, - "lon": -2.2775777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "ST5 602", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1532717558, - "lat": 53.0052802, - "lon": -2.2690536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ST5 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1533310439, - "lat": 51.6976651, - "lon": -0.1977736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1533595752, - "lat": 53.9564088, - "lon": -1.0817183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO1 121D;YO1 9121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1534021006, - "lat": 51.8474013, - "lon": -2.3502227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 57" - } -}, -{ - "type": "node", - "id": 1534062133, - "lat": 53.2233454, - "lon": -1.4280627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S40 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1534316700, - "lat": 53.2907997, - "lon": -0.2940847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1534383946, - "lat": 51.4724042, - "lon": -0.2833890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing", - "source:ref": "ground survey 04.12.2011" - } -}, -{ - "type": "node", - "id": 1534383963, - "lat": 51.4680355, - "lon": -0.2831616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "ref": "TW9 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing", - "source:ref": "ground survey 04.12.2011" - } -}, -{ - "type": "node", - "id": 1534777053, - "lat": 50.0261296, - "lon": -5.0975615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR12 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1534826981, - "lat": 53.6431581, - "lon": -1.8107955, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm, Sat 12 noon", - "operator": "Royal Mail", - "ref": "HD1 100" - } -}, -{ - "type": "node", - "id": 1534941215, - "lat": 51.0958614, - "lon": 1.1218070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CT18 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1535236402, - "lat": 50.9594552, - "lon": -3.0497648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1535397480, - "lat": 52.2847380, - "lon": -2.4851780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR6 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1535840463, - "lat": 54.8084507, - "lon": -6.2206454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location", - "name": "Kells", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1535970709, - "lat": 53.6422805, - "lon": -1.8021207, - "tags": { - "amenity": "post_box", - "last_collection": "5.30 Sat 12.45pm", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD1 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1536538592, - "lat": 54.2472160, - "lon": -1.0586956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1538051375, - "lat": 53.7803558, - "lon": -3.0186618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1538822703, - "lat": 50.8191719, - "lon": -3.3040153, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1538876560, - "lat": 51.4890454, - "lon": -0.2069173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "W14 6" - } -}, -{ - "type": "node", - "id": 1539332503, - "lat": 52.3068889, - "lon": -1.9416940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B97 4039", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1539626570, - "lat": 53.9579176, - "lon": -0.5761785, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1539675161, - "lat": 50.9553818, - "lon": -0.4850381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "description": "This lamp postbox is tucked away in the bushes and is easy to miss. This postbox is next to the property named Sunnyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 377", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1539764423, - "lat": 55.8654139, - "lon": -4.2214989, - "tags": { - "amenity": "post_box", - "ref": "G31 107" - } -}, -{ - "type": "node", - "id": 1539866704, - "lat": 54.6966719, - "lon": -1.1844648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "post_box:type": "pillar", - "ref": "TS24 102D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1539877378, - "lat": 54.6956295, - "lon": -1.1784620, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 1539882005, - "lat": 54.6939119, - "lon": -1.1802752, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 1540806093, - "lat": 50.8506836, - "lon": -1.1324793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1540917463, - "lat": 50.4600255, - "lon": -4.4523762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "source": "gps_waypoint" - } -}, -{ - "type": "node", - "id": 1541148603, - "lat": 55.3913465, - "lon": -1.6405456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE66 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1541290343, - "lat": 52.8083478, - "lon": -1.2958503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "LE12 37D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1541435162, - "lat": 52.8167688, - "lon": -1.3281444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DE74 308D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1541447932, - "lat": 53.5422366, - "lon": -0.7491135, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1541500753, - "lat": 50.7108570, - "lon": -3.0738034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1541581398, - "lat": 52.7694948, - "lon": -2.2178337, - "tags": { - "amenity": "post_box", - "ref": "ST18 368" - } -}, -{ - "type": "node", - "id": 1542755949, - "lat": 52.3116679, - "lon": -1.9377212, - "tags": { - "amenity": "post_box", - "ref": "B97 40" - } -}, -{ - "type": "node", - "id": 1542976237, - "lat": 52.2332276, - "lon": -2.5559488, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "memory" - } -}, -{ - "type": "node", - "id": 1543003816, - "lat": 50.5940109, - "lon": -4.8282403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL29 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1543245812, - "lat": 52.8999036, - "lon": 1.2212870, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1543245986, - "lat": 50.7684842, - "lon": 0.2750524, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BN21 728D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1543287011, - "lat": 52.2598184, - "lon": -0.9186135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1544132242, - "lat": 52.9836926, - "lon": -1.1227919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 1544674795, - "lat": 53.0555310, - "lon": -2.1083095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "colour": "gold", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1544677512, - "lat": 53.0764385, - "lon": -2.1371292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1544677869, - "lat": 51.2909943, - "lon": -0.2426315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1544680265, - "lat": 53.0481250, - "lon": -2.2426460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1544734793, - "lat": 52.7502710, - "lon": -0.5001756, - "tags": { - "amenity": "post_box", - "location": "High Street", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1544735557, - "lat": 52.7499072, - "lon": -0.4973536, - "tags": { - "amenity": "post_box", - "location": "Station Road", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1544736104, - "lat": 52.7434873, - "lon": -0.4923946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG33 26D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1544831731, - "lat": 50.9610919, - "lon": -0.6245279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is in the front wall of this property facing the A285.", - "old_ref": "GU28 108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "GU28 108D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1545003952, - "lat": 54.4843045, - "lon": -0.6369286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO21 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1545127419, - "lat": 51.0626277, - "lon": -1.3152657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1545211170, - "lat": 51.7288619, - "lon": -0.8267535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 1545695176, - "lat": 51.4295702, - "lon": -0.1238206, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW16 5" - } -}, -{ - "type": "node", - "id": 1546030153, - "lat": 53.0086310, - "lon": -2.1009506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1546280656, - "lat": 53.4073248, - "lon": -3.0205988, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 54, actually on Wheatland Lane but Bridle Road is in the background", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bridle Road.jpg" - } -}, -{ - "type": "node", - "id": 1547125487, - "lat": 55.9106369, - "lon": -3.2236918, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2021-03-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH13 520D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1547157043, - "lat": 52.7996865, - "lon": 1.5427473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1547708317, - "lat": 53.4879021, - "lon": -2.6388439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WN4 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1547970809, - "lat": 56.8551063, - "lon": -5.1899823, - "tags": { - "amenity": "post_box", - "ref": "PH33 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1547970857, - "lat": 56.8598538, - "lon": -5.3236643, - "tags": { - "amenity": "post_box", - "ref": "PH33 27", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548013161, - "lat": 56.8362082, - "lon": -5.1492361, - "tags": { - "amenity": "post_box", - "ref": "PH33 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548023275, - "lat": 56.7238714, - "lon": -5.2462766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "830948944516984", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH33 40", - "source": "survey", - "survey:date": "2021-06-15" - } -}, -{ - "type": "node", - "id": 1548030055, - "lat": 56.6940169, - "lon": -5.1794579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PH49 66", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548052967, - "lat": 56.7130183, - "lon": -4.9673751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH50 115", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548054116, - "lat": 56.5861547, - "lon": -5.3705839, - "tags": { - "amenity": "post_box", - "ref": "PA38 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548054125, - "lat": 56.5526235, - "lon": -5.3226664, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA38 41", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548054169, - "lat": 56.5216676, - "lon": -5.3183636, - "tags": { - "amenity": "post_box", - "ref": "PA37 161", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1548565810, - "lat": 51.5584564, - "lon": -1.8149188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1548935162, - "lat": 53.9910559, - "lon": -0.4624807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1548935170, - "lat": 53.9916256, - "lon": -0.4700499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1548935358, - "lat": 53.9962131, - "lon": -0.4593999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO25 387D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1548935488, - "lat": 53.9992597, - "lon": -0.4593161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO25 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1548935490, - "lat": 53.9992780, - "lon": -0.4593106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "post_box:type": "meter", - "ref": "YO25 2024P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1549086979, - "lat": 52.8624931, - "lon": 1.2444901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR11 1125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1550111281, - "lat": 55.5885963, - "lon": -2.2313516, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1550139235, - "lat": 55.5665106, - "lon": -2.1362138, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE71 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1550351522, - "lat": 53.4039499, - "lon": -1.3760685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S60 34;S60 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1550351535, - "lat": 53.3997455, - "lon": -1.3609393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S60 185", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1550446919, - "lat": 52.1878859, - "lon": 1.5775489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1550589660, - "lat": 51.4617841, - "lon": -0.2892763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "old_ref": "TW9 2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1551089123, - "lat": 51.1789801, - "lon": -0.2770830, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH5 29", - "source": "P170-0144" - } -}, -{ - "type": "node", - "id": 1551112099, - "lat": 51.7832511, - "lon": -1.4852103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX28 299", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1551179554, - "lat": 52.1873675, - "lon": 1.5279347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4654", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1551819270, - "lat": 55.5608851, - "lon": -2.0699239, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-17", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE71 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1551821872, - "lat": 55.5555955, - "lon": -2.0431952, - "tags": { - "amenity": "post_box", - "ref": "NE71 75" - } -}, -{ - "type": "node", - "id": 1551881853, - "lat": 51.0713908, - "lon": -0.8023456, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "old_ref": "GU30 25", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "GU30 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1551881962, - "lat": 51.0768231, - "lon": -0.8026909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "last_checked": "2020-08-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU30 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1551882113, - "lat": 51.0798247, - "lon": -0.8260991, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GU30 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1551937093, - "lat": 54.9675054, - "lon": -5.0155003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG9 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1551954961, - "lat": 51.0791629, - "lon": -0.8084550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1552484148, - "lat": 54.8963061, - "lon": -2.9356367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 19:00; Sa 14:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "CA3 74;CA3 1074", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1552560411, - "lat": 50.9274953, - "lon": -0.8968731, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1552560427, - "lat": 50.9290777, - "lon": -0.9001138, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO18 172", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1552560480, - "lat": 50.9362370, - "lon": -0.9053294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR design.", - "note_1": "From 26th August 2019 the last collection times became 9am Mon-Fri and 7am Sat.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO18 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1554108085, - "lat": 57.3664338, - "lon": -2.0843630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB41 545", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1554199613, - "lat": 52.1991461, - "lon": 1.4985588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1554342286, - "lat": 52.4296135, - "lon": 1.2301747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP21 7045", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1555777173, - "lat": 53.5502799, - "lon": -2.0944593, - "tags": { - "amenity": "post_box", - "source": "Local Knowledge" - } -}, -{ - "type": "node", - "id": 1555823774, - "lat": 53.5483395, - "lon": -2.0979127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-11-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "OL1 6D", - "royal_cypher": "GR", - "source": "local knowledge; survey" - } -}, -{ - "type": "node", - "id": 1556159289, - "lat": 50.9061036, - "lon": -1.3967036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1556336232, - "lat": 52.2077897, - "lon": 1.5683285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP16 4661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1556355075, - "lat": 52.2034510, - "lon": 1.5741981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP16 4642D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1556390887, - "lat": 52.1818447, - "lon": 1.6151545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1556446780, - "lat": 52.2963284, - "lon": -1.9696319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B97 81", - "source": "Survey/Dracos" - } -}, -{ - "type": "node", - "id": 1557010648, - "lat": 51.7418153, - "lon": -1.2315790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "OX4 459", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1557029250, - "lat": 50.7991074, - "lon": -1.0710437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO1 102", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1557170441, - "lat": 51.6764384, - "lon": 0.1023864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1557447125, - "lat": 56.1130567, - "lon": -3.9450366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "FK8 2D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1558372676, - "lat": 51.5237250, - "lon": -0.0641449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Handyside and Co Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "E2 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1558429851, - "lat": 51.4938209, - "lon": -0.2095117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "McDowall, Steven and Co Ltd, London and Falkirk", - "post_box:type": "pillar", - "ref": "W14 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1558568040, - "lat": 55.8630900, - "lon": -4.3121434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "G51 396", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1558622570, - "lat": 50.8276512, - "lon": -1.0662282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO3 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1559470927, - "lat": 57.0801045, - "lon": -4.0514930, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP8-LC", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH21 47", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1559720131, - "lat": 51.9762886, - "lon": -0.7697568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK17 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1559870444, - "lat": 51.5259464, - "lon": -2.5443458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS32 677", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1560693840, - "lat": 54.5828554, - "lon": -0.9739347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TS12 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1560693876, - "lat": 54.5840289, - "lon": -0.9733725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "TS12 474D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1560698876, - "lat": 54.5334606, - "lon": -0.7501158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "TS13 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1560698879, - "lat": 54.5339573, - "lon": -0.7554021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TS13 514D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1560710032, - "lat": 53.7127404, - "lon": -1.8763236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1560806939, - "lat": 51.6642240, - "lon": 0.4596777, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1561483053, - "lat": 55.9219197, - "lon": -4.1541635, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1561526318, - "lat": 52.1604443, - "lon": 1.5837914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP15 4663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1561526339, - "lat": 52.1642176, - "lon": 1.5920946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP15 4670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1561548031, - "lat": 54.4924421, - "lon": -1.0993683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TS9 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1561973816, - "lat": 52.7548200, - "lon": -1.0868940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1562032372, - "lat": 52.9317796, - "lon": 1.2933171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2726D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 1562496448, - "lat": 50.8320424, - "lon": -0.1301138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-04-02", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN2 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1562503393, - "lat": 51.1961742, - "lon": -0.5561939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU5 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1562528753, - "lat": 52.8374538, - "lon": -1.1786394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Ref needs confirming - perspex in front of plate badly scratched", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LE12 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1562528968, - "lat": 52.8424358, - "lon": -1.1802354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "LE12 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1562564327, - "lat": 54.6407181, - "lon": -1.2374808, - "tags": { - "amenity": "post_box", - "fixme": "ref?" - } -}, -{ - "type": "node", - "id": 1562564508, - "lat": 54.6439261, - "lon": -1.2400958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TS25 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1562627115, - "lat": 54.9463888, - "lon": -1.9166184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE43 202" - } -}, -{ - "type": "node", - "id": 1562627550, - "lat": 54.9500752, - "lon": -1.9257560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 94" - } -}, -{ - "type": "node", - "id": 1562630970, - "lat": 52.9048921, - "lon": 1.3120311, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1562948379, - "lat": 50.4553451, - "lon": -4.4717378, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 1562997863, - "lat": 52.5328868, - "lon": -1.8339553, - "tags": { - "amenity": "post_box", - "postal_code": "B23", - "ref": "B23 92", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1563538669, - "lat": 55.3830573, - "lon": -3.9927432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG4 172", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1563869829, - "lat": 51.7440513, - "lon": 0.3121594, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1563881294, - "lat": 51.7465706, - "lon": 0.3262597, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1563934742, - "lat": 51.7304366, - "lon": 0.7085608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1563934747, - "lat": 51.7381891, - "lon": 0.6987734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1563970995, - "lat": 51.7174670, - "lon": 0.5983596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1563971013, - "lat": 51.7170997, - "lon": 0.5793178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1564354151, - "lat": 52.8620914, - "lon": 0.6385236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 113" - } -}, -{ - "type": "node", - "id": 1564388074, - "lat": 51.1016380, - "lon": -3.0897489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1564388145, - "lat": 51.1323069, - "lon": -3.0899257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1564460892, - "lat": 51.0820521, - "lon": -3.1090017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1564806415, - "lat": 52.3392892, - "lon": -1.9534222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B48 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1565015495, - "lat": 52.5793046, - "lon": 1.7065490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3136", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1565621360, - "lat": 54.9403848, - "lon": -1.9129390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 189", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1565669051, - "lat": 52.1519930, - "lon": 1.6012446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP15 4693", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1565801116, - "lat": 52.4823580, - "lon": -0.4659866, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE8 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1565835456, - "lat": 53.7523786, - "lon": -2.8925104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 376" - } -}, -{ - "type": "node", - "id": 1567015223, - "lat": 51.5982732, - "lon": -0.1876424, - "tags": { - "amenity": "post_box", - "note": "One of the 'anonymous' pillar boxes, with no royal cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Handyside and Co. Ltd", - "post_box:type": "pillar", - "royal_cypher": "no", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1567269343, - "lat": 55.8703539, - "lon": -4.2163888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G21 307" - } -}, -{ - "type": "node", - "id": 1567318947, - "lat": 52.5307049, - "lon": -1.3607862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE10 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1567600754, - "lat": 51.6468815, - "lon": -0.1761015, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1567864226, - "lat": 53.9540433, - "lon": -1.1188995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO24 408", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1567905215, - "lat": 53.9273591, - "lon": -1.7996352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 852", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1567905538, - "lat": 53.9264588, - "lon": -1.8090175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 844", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1568013438, - "lat": 51.5383074, - "lon": -0.1333766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "listed_status": "Grade II", - "note": "hexagonal shape; (temporary) not in operation?", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NW1 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27082051", - "wikimedia_commons": "Category:Penfold pillar box on St Pancras Way, London" - } -}, -{ - "type": "node", - "id": 1568136298, - "lat": 53.2035649, - "lon": -2.3522433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "ref": "CW4 57" - } -}, -{ - "type": "node", - "id": 1568172771, - "lat": 53.6136613, - "lon": -1.6338167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1568931992, - "lat": 52.7019736, - "lon": 1.6262032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR29 2936D" - } -}, -{ - "type": "node", - "id": 1569054238, - "lat": 51.7357964, - "lon": 0.5774192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1569580117, - "lat": 52.9643667, - "lon": -1.1255545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 185D", - "ref:GB:uprn": "10015479736", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 1569580532, - "lat": 52.9774175, - "lon": -1.1230196, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/E1hPfvKXlgHuSBAXfmSeSg", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 181D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 1570752878, - "lat": 52.4753654, - "lon": 1.1770121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "NR15 1536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1570941454, - "lat": 52.4998979, - "lon": 1.1887817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR16 1609", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1571016285, - "lat": 52.9906562, - "lon": -3.9289099, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1571509191, - "lat": 56.9688247, - "lon": -5.8224779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-22", - "collection_times": "Mo-Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH41 78", - "royal_cypher": "scottish_crown", - "survey:date": "2022-03-11", - "wikimedia_commons": "File:Morar, postbox № PH41 78 - geograph.org.uk - 3298396.jpg" - } -}, -{ - "type": "node", - "id": 1571526537, - "lat": 52.1720979, - "lon": 1.5008270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP17 4695", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1571574291, - "lat": 56.6961588, - "lon": -5.5679303, - "tags": { - "amenity": "post_box", - "ref": "PH36 107" - } -}, -{ - "type": "node", - "id": 1571644758, - "lat": 51.6699104, - "lon": 0.5076116, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1571720681, - "lat": 51.7148329, - "lon": 0.5352122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1571751517, - "lat": 55.8669377, - "lon": -4.1240845, - "tags": { - "amenity": "post_box", - "note": "No Ref Plate" - } -}, -{ - "type": "node", - "id": 1571754529, - "lat": 50.7597916, - "lon": -2.0050047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 84D", - "ref:GB:uprn": "10015455712", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1571789325, - "lat": 51.7391509, - "lon": 0.6837720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM9 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1571835788, - "lat": 51.7315356, - "lon": 0.6776928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CM9 182;CM9 1182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1571840636, - "lat": 56.4954764, - "lon": -3.0009686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 135D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1571840652, - "lat": 56.4967807, - "lon": -3.0099223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DD3 286D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1571998367, - "lat": 53.6621669, - "lon": -1.8242061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1571998383, - "lat": 53.6721531, - "lon": -1.8266523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1571998390, - "lat": 53.6519665, - "lon": -1.8135488, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1572072096, - "lat": 51.6816723, - "lon": 0.5576872, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1572554016, - "lat": 52.7666746, - "lon": -0.9363650, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1572574153, - "lat": 52.7657658, - "lon": -0.9255959, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1572685651, - "lat": 52.7538031, - "lon": -0.8789144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE14 52", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 1572747339, - "lat": 51.9798524, - "lon": -1.9227782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL54 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1572886489, - "lat": 53.7506513, - "lon": -1.5618903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1572886512, - "lat": 53.7509292, - "lon": -1.5373535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "check to see if the post box has move or been removed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 628", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1572886517, - "lat": 53.7530529, - "lon": -1.5263202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 903" - } -}, -{ - "type": "node", - "id": 1572886521, - "lat": 53.7531286, - "lon": -1.5356570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1572886531, - "lat": 53.7546087, - "lon": -1.5211248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 880" - } -}, -{ - "type": "node", - "id": 1572886536, - "lat": 53.7657635, - "lon": -1.5296293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS10 836" - } -}, -{ - "type": "node", - "id": 1572948716, - "lat": 57.3382732, - "lon": -2.6080653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "AB52 17", - "royal_cypher": "scottish_crown", - "source": "GPS, survey" - } -}, -{ - "type": "node", - "id": 1573110471, - "lat": 53.7244687, - "lon": -1.4795078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1573186002, - "lat": 52.2158537, - "lon": 1.4922450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP17 4431" - } -}, -{ - "type": "node", - "id": 1573468821, - "lat": 53.3982107, - "lon": -2.5327395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1573988394, - "lat": 53.6552295, - "lon": -1.4878878, - "tags": { - "amenity": "post_box", - "note:royal_cypher": "looks like GR or E2R", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF2 18", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 1573988401, - "lat": 53.6642253, - "lon": -1.4909153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1573988417, - "lat": 53.6691142, - "lon": -1.5372474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 88" - } -}, -{ - "type": "node", - "id": 1574129576, - "lat": 51.4980660, - "lon": -3.5755742, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1574552014, - "lat": 57.1268793, - "lon": -3.9286898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PH21 41", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1574731021, - "lat": 52.6442575, - "lon": -3.9562160, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1574742831, - "lat": 51.4811177, - "lon": -0.6056865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "colour": "red", - "natural": "tree", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL4 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1574758851, - "lat": 52.4116642, - "lon": -0.1215937, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 12" - } -}, -{ - "type": "node", - "id": 1574758949, - "lat": 52.4123455, - "lon": -0.1251127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 293" - } -}, -{ - "type": "node", - "id": 1574840826, - "lat": 53.3984764, - "lon": -2.5154335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA1 174", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1574840827, - "lat": 53.3988983, - "lon": -2.5240800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA1 314", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1574840828, - "lat": 53.4017188, - "lon": -2.5313552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 235", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 1575290416, - "lat": 52.1996105, - "lon": 1.4857258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1575528927, - "lat": 52.6180343, - "lon": 0.5841366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "PE37 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1575638832, - "lat": 52.6159825, - "lon": 0.6012526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "location": "In front wall of private house", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE37 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1575678676, - "lat": 53.3979714, - "lon": -2.5507126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA1 133", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1575694868, - "lat": 52.5876371, - "lon": 0.5916250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE33 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1575694900, - "lat": 52.5883243, - "lon": 0.6009719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE33 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1575709296, - "lat": 52.5838782, - "lon": 0.5746087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE33 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1575881379, - "lat": 51.2461539, - "lon": -0.7641520, - "tags": { - "amenity": "post_box", - "check_date": "2023-09-24" - } -}, -{ - "type": "node", - "id": 1575884655, - "lat": 51.4389157, - "lon": 0.0669235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1576504450, - "lat": 57.1461946, - "lon": -4.6813995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "note": "has the latest collection in the area", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH32 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1576748794, - "lat": 50.7565848, - "lon": -2.0093677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 173", - "ref:GB:uprn": "10015378355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1576748800, - "lat": 50.7587244, - "lon": -2.0150918, - "tags": { - "amenity": "post_box", - "ref": "BH18 118", - "ref:GB:uprn": "10015404946" - } -}, -{ - "type": "node", - "id": 1577411791, - "lat": 54.4648594, - "lon": -3.0197518, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA22 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1577722365, - "lat": 51.4408425, - "lon": -0.9026121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG5 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1578208072, - "lat": 51.1007006, - "lon": 0.1351131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN7 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1578216167, - "lat": 51.4515062, - "lon": -0.0646339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "note": "Large Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 33D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1579467839, - "lat": 52.4267360, - "lon": -1.8805029, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 950", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1579471248, - "lat": 52.4271918, - "lon": -1.8876004, - "tags": { - "amenity": "post_box", - "ref": "B13 552", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1579479915, - "lat": 52.4258669, - "lon": -1.8923637, - "tags": { - "amenity": "post_box", - "ref": "B14 323", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1579541272, - "lat": 51.1471772, - "lon": 0.2839095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1580648742, - "lat": 52.4225587, - "lon": -1.8860807, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 476D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1580668177, - "lat": 52.4792419, - "lon": -1.9002064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B2 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1580880361, - "lat": 53.5302967, - "lon": -2.1956218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "4128111747249109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-02-28" - } -}, -{ - "type": "node", - "id": 1580905050, - "lat": 53.7700210, - "lon": -1.4116396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 847", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1580990100, - "lat": 52.1531550, - "lon": -0.7014003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK46 24" - } -}, -{ - "type": "node", - "id": 1581000105, - "lat": 55.8901750, - "lon": -4.3322330, - "tags": { - "amenity": "post_box", - "ref": "G13 229" - } -}, -{ - "type": "node", - "id": 1581102214, - "lat": 50.9761440, - "lon": -3.1460900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1581329574, - "lat": 53.3761010, - "lon": -2.1949170, - "tags": { - "amenity": "post_box", - "ref": "SK8 42" - } -}, -{ - "type": "node", - "id": 1581445215, - "lat": 52.2953571, - "lon": -2.5176896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR15 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1581543575, - "lat": 52.8287601, - "lon": -0.8419930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE14 42" - } -}, -{ - "type": "node", - "id": 1581736592, - "lat": 50.4519911, - "lon": -4.4655465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL14 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1581772163, - "lat": 51.1952027, - "lon": -0.4397572, - "tags": { - "amenity": "post_box", - "ref": "GU5 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1581772178, - "lat": 51.2003112, - "lon": -0.3872474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH5 44D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1582707927, - "lat": 51.5647494, - "lon": -1.7537215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1582707930, - "lat": 51.5551310, - "lon": -1.7471199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 325" - } -}, -{ - "type": "node", - "id": 1582819982, - "lat": 55.8195877, - "lon": -4.0086552, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1582881298, - "lat": 51.3575016, - "lon": 1.0307193, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "128185776072093", - "old_ref": "CT5 180", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT5", - "ref": "CT5 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-05-02", - "survey_date": "2023-07-06" - } -}, -{ - "type": "node", - "id": 1583027689, - "lat": 54.3040417, - "lon": -2.1991051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DL8 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-25" - } -}, -{ - "type": "node", - "id": 1583064612, - "lat": 51.2195452, - "lon": -0.4469345, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU5 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1583087892, - "lat": 51.7758291, - "lon": -1.0029868, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-10", - "ref": "HP18 217" - } -}, -{ - "type": "node", - "id": 1583159545, - "lat": 51.6551207, - "lon": 0.0785773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1583159621, - "lat": 51.6561094, - "lon": 0.0763603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1583203826, - "lat": 52.2048053, - "lon": 0.1377363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CB1 2", - "ref": "CB1 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1583215299, - "lat": 51.4454143, - "lon": -0.1244900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1583218489, - "lat": 51.7717601, - "lon": -0.9959442, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-03", - "post_box:type": "pillar", - "ref": "HP18 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1583296695, - "lat": 54.9688288, - "lon": -1.6067557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:letter_size": "C4", - "post_box:type": "pillar", - "ref": "NE1 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1583342664, - "lat": 54.4234253, - "lon": -2.9773290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "wall", - "ref": "LA22 144", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1583389087, - "lat": 50.8750552, - "lon": -2.1576060, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015472117" - } -}, -{ - "type": "node", - "id": 1583434000, - "lat": 53.3958545, - "lon": -1.5267972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S6 755D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1583563826, - "lat": 52.4837540, - "lon": -1.9063295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B3 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1583691563, - "lat": 51.1638690, - "lon": -0.8941999, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1583740912, - "lat": 52.1519688, - "lon": 1.3632377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "IP13 6312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1583776094, - "lat": 52.9731295, - "lon": -2.6937931, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 644D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Visual Inspection" - } -}, -{ - "type": "node", - "id": 1583927757, - "lat": 55.8576506, - "lon": -4.2596751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G1 5", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1584203755, - "lat": 53.3149572, - "lon": -1.7042195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "post_box:type": "wall", - "ref": "S32 207", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1584721366, - "lat": 52.4383525, - "lon": -1.8481293, - "tags": { - "amenity": "post_box", - "ref": "B28 187", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1584932982, - "lat": 53.3582338, - "lon": -1.4907449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S7", - "ref": "S7 550", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1584961736, - "lat": 51.4407438, - "lon": -0.9075731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG5 554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1585064711, - "lat": 54.3802149, - "lon": -2.9041858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-05-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA23 95D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1585149730, - "lat": 54.4258577, - "lon": -2.9616390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "LA22 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1585446991, - "lat": 52.4169166, - "lon": -1.9306092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1585446995, - "lat": 52.4208518, - "lon": -1.9309503, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B30 316", - "royal_cypher": "EVIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1585447005, - "lat": 52.4216217, - "lon": -1.9010713, - "tags": { - "amenity": "post_box", - "ref": "B14 1245", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1585739990, - "lat": 51.5029850, - "lon": -0.2174059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside and Co. Ltd", - "post_box:type": "pillar", - "ref": "W14 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1585750293, - "lat": 51.5786689, - "lon": -1.7767044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1585751248, - "lat": 51.5842248, - "lon": -1.7753443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "mapillary": "463670594861323", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 58", - "survey:date": "2020-01-14" - } -}, -{ - "type": "node", - "id": 1585813369, - "lat": 53.3875105, - "lon": -1.4978803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S10 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1585877071, - "lat": 50.8643868, - "lon": -2.1562784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT11 28", - "ref:GB:uprn": "10015349214", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1586103951, - "lat": 50.8831920, - "lon": -2.1353658, - "tags": { - "amenity": "post_box", - "mapillary": "830878501117433", - "name": "Pimperne Postoffice", - "post_box:type": "pillar", - "survey:date": "2021-04-26" - } -}, -{ - "type": "node", - "id": 1586195265, - "lat": 51.4562515, - "lon": -0.0504672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1586234046, - "lat": 50.4578861, - "lon": -4.4658514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1586282041, - "lat": 51.9653769, - "lon": 1.0650350, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO11 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1586356644, - "lat": 50.7562308, - "lon": -1.8027137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Town Common PO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 94" - } -}, -{ - "type": "node", - "id": 1586377609, - "lat": 52.0950190, - "lon": -1.9422234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "post_box:type": "lamp", - "postal_code": "WR11", - "ref": "WR11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1586377705, - "lat": 52.1086876, - "lon": -1.9441889, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "WR11 4NS", - "ref": "WR11 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1586383191, - "lat": 55.9415452, - "lon": -4.1536750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "G66 1499", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1586603903, - "lat": 52.4840877, - "lon": -1.9150090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B1 1391", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1586603907, - "lat": 52.4844048, - "lon": -1.9114725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B1 1227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1586758623, - "lat": 51.8714618, - "lon": 0.9181380, - "tags": { - "addr:postcode": "CO2 8AZ", - "amenity": "post_box", - "ref": "CO2 468" - } -}, -{ - "type": "node", - "id": 1587135249, - "lat": 52.1041160, - "lon": -1.9439290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "WR11 4LP", - "ref": "WR11 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1587135254, - "lat": 52.1013067, - "lon": -1.9425111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "postal_code": "WR11 4NE", - "ref": "WR11 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1587135259, - "lat": 52.1016424, - "lon": -1.9516251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "note": "Checked & it really is in this daft location, just inside store.", - "post_box:type": "indoor_box", - "postal_code": "WR11 4XF", - "ref": "WR11 108", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1587135266, - "lat": 52.0991232, - "lon": -1.9454923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR11 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1587262070, - "lat": 51.3610663, - "lon": 1.0291281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT5 266D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-07-06" - } -}, -{ - "type": "node", - "id": 1587308052, - "lat": 53.3856840, - "lon": -1.4789416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "postal_code": "S3", - "ref": "S3 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1587496838, - "lat": 54.5904310, - "lon": -6.7629891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1587509956, - "lat": 52.0485207, - "lon": -1.8557550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "post_box:type": "lamp", - "postal_code": "WR12 7EP", - "ref": "WR12 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1587521571, - "lat": 51.8656105, - "lon": 0.1418415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM23 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1587541097, - "lat": 55.8621575, - "lon": -4.2519375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "G1 1207", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1587553656, - "lat": 51.8585409, - "lon": 0.1448649, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1588256322, - "lat": 51.4476926, - "lon": -0.1008897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1588510811, - "lat": 51.7639014, - "lon": -1.1848427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "[r-m 2021-06-28] Royal Cypher was covered when I saw it. [AC 2023-11-11]: the crochet post box topper is still there (crown and cushion). A little dingy now. I didn't want to touch it, but it's probably EIIR given the pillar box design.", - "post_box:type": "lamp", - "ref": "OX3 594D", - "royal_cypher": "EIIR", - "source:royal_cypher": "assumed from pillar box's age" - } -}, -{ - "type": "node", - "id": 1588789630, - "lat": 51.7999475, - "lon": -0.1011308, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-02", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG14 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1588863520, - "lat": 50.9438914, - "lon": -2.5135604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1588957028, - "lat": 50.8200521, - "lon": -2.3415356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DT2 171", - "ref:GB:uprn": "10015330185" - } -}, -{ - "type": "node", - "id": 1588969528, - "lat": 53.6997379, - "lon": -1.7038325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1589522868, - "lat": 54.9571995, - "lon": -1.5710374, - "tags": { - "amenity": "post_box", - "ref": "NE10 16" - } -}, -{ - "type": "node", - "id": 1589640716, - "lat": 51.5094330, - "lon": -3.2049252, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1589646586, - "lat": 51.9727764, - "lon": 0.1554272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 91", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1589707453, - "lat": 51.3526347, - "lon": -0.8138762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU47 70" - } -}, -{ - "type": "node", - "id": 1590049160, - "lat": 50.7093758, - "lon": -2.7212746, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref:GB:uprn": "10015468200" - } -}, -{ - "type": "node", - "id": 1590152534, - "lat": 50.8457656, - "lon": -0.9397551, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "PO10 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1590152537, - "lat": 50.8462142, - "lon": -0.9482284, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO10 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1590681254, - "lat": 51.5236156, - "lon": -0.0987339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC1V 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1590725806, - "lat": 51.5205893, - "lon": -0.0975722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC1A 124P", - "royal_cypher": "no", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1590726092, - "lat": 51.5205744, - "lon": -0.0975726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1A 123;EC1A 1231", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1590971493, - "lat": 52.1149180, - "lon": -1.7980204, - "tags": { - "amenity": "post_box", - "ref": "CV37 6" - } -}, -{ - "type": "node", - "id": 1590988098, - "lat": 51.5693933, - "lon": -1.7812396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 7" - } -}, -{ - "type": "node", - "id": 1590989572, - "lat": 51.5759384, - "lon": -1.7705745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 611" - } -}, -{ - "type": "node", - "id": 1591176813, - "lat": 52.6730780, - "lon": -1.7627848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "WS14 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1591234345, - "lat": 53.9933104, - "lon": -1.2913520, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "YO26 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1591320858, - "lat": 53.9569914, - "lon": -1.0804448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa-Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO1 567", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1591320860, - "lat": 53.9619388, - "lon": -1.0909523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO30 449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1591359023, - "lat": 52.8835881, - "lon": -1.2846731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG10 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 1591394980, - "lat": 51.7748433, - "lon": -0.9936419, - "tags": { - "amenity": "post_box", - "ref": "HP18 219" - } -}, -{ - "type": "node", - "id": 1591395100, - "lat": 51.7767006, - "lon": -0.9983917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP18 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 1591440328, - "lat": 52.3937638, - "lon": -2.3272200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "DY12 195", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1591466080, - "lat": 51.4957270, - "lon": -0.2095039, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W14 34", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1593912736, - "lat": 55.8200825, - "lon": -4.0144683, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1594004518, - "lat": 51.4799689, - "lon": -2.5995720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 331D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1594004521, - "lat": 51.4861433, - "lon": -2.6105243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "note": "Two separate boxes joined together", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "BS9 1011;BS9 1012", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1594004526, - "lat": 51.4869248, - "lon": -2.6121617, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS9 299", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1594024408, - "lat": 50.6181353, - "lon": -2.4546634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 33D", - "ref:GB:uprn": "10015305686", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 1594031369, - "lat": 50.6125932, - "lon": -2.4537328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "DT4 14", - "ref:GB:uprn": "10015447968", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1594041297, - "lat": 50.6164709, - "lon": -2.4519683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Belvidere", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "DT4 7SL", - "ref": "DT4 1D", - "ref:GB:uprn": "10015279018", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 1594041300, - "lat": 50.6142073, - "lon": -2.4563586, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-15", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "DT4 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1594093761, - "lat": 51.6692655, - "lon": 0.3825540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM4 31", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1594104963, - "lat": 51.6665539, - "lon": 0.3774242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1594119039, - "lat": 51.4519969, - "lon": -2.6258412, - "tags": { - "amenity": "post_box", - "disused": "yes", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1594124925, - "lat": 51.4768722, - "lon": -2.6319068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 380D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1594408526, - "lat": 50.6098109, - "lon": -2.4529036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "name": "Bond Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 15", - "ref:GB:uprn": "10015512636", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1594578153, - "lat": 51.8656318, - "lon": -2.2353394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1594678445, - "lat": 51.5102697, - "lon": -0.6422728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1594716745, - "lat": 50.9377719, - "lon": -0.9919534, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO8 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1594740195, - "lat": 51.3576766, - "lon": -0.3039945, - "tags": { - "amenity": "post_box", - "ref": "KT9 346" - } -}, -{ - "type": "node", - "id": 1594871274, - "lat": 55.1761574, - "lon": -6.7205050, - "tags": { - "addr:city": "Portstewart", - "addr:postcode": "BT55 7LQ", - "addr:street": "Prospect Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT55 130" - } -}, -{ - "type": "node", - "id": 1595005412, - "lat": 51.5337746, - "lon": 0.1480504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "note": "ref seems to be duplicate of box on Arnold Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-01-20" - } -}, -{ - "type": "node", - "id": 1595257309, - "lat": 50.6207511, - "lon": -2.4522706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Westerhall", - "old_ref": "DT4 17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 17D", - "ref:GB:uprn": "10015418410", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1595257313, - "lat": 50.6165996, - "lon": -2.4568953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 300D", - "ref:GB:uprn": "10015827149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 1595257338, - "lat": 50.6194579, - "lon": -2.4555313, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT4 49", - "ref:GB:uprn": "10015512648", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1595257390, - "lat": 50.6178217, - "lon": -2.4515810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 11D", - "ref:GB:uprn": "10015295555", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 1595266713, - "lat": 56.0574857, - "lon": -2.7290028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH39 165D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1595266724, - "lat": 56.0555858, - "lon": -2.7242627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH39 20D", - "royal_cypher": "scottish_crown", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1595274715, - "lat": 56.0551070, - "lon": -2.7147629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH39 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1595329403, - "lat": 50.6279497, - "lon": -2.4531584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 122D", - "ref:GB:uprn": "10015292273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 1595329423, - "lat": 50.6232834, - "lon": -2.4472855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DT4 43D", - "ref:GB:uprn": "10015395352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1595329473, - "lat": 50.6235454, - "lon": -2.4522849, - "tags": { - "amenity": "post_box", - "ref": "DT4 94", - "ref:GB:uprn": "10015388562" - } -}, -{ - "type": "node", - "id": 1595329522, - "lat": 50.6236160, - "lon": -2.4556760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "name": "Dorchester Road PO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 1595412967, - "lat": 53.7160370, - "lon": -1.5934507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1595531234, - "lat": 52.9436563, - "lon": -1.1867036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "indoor": "yes", - "level": "1", - "level:ref": "B", - "post_box:type": "indoor_pillar", - "ref": "NG7 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1595555215, - "lat": 50.9542922, - "lon": -2.0050102, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1595567945, - "lat": 50.8018554, - "lon": -1.8918460, - "tags": { - "amenity": "post_box", - "ref": "BH22 203", - "ref:GB:uprn": "10015300326" - } -}, -{ - "type": "node", - "id": 1595606150, - "lat": 50.0164614, - "lon": -5.2525721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 71D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1595998506, - "lat": 51.5402435, - "lon": 0.7573743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SS1 200", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1596093379, - "lat": 54.3411921, - "lon": -1.4352341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL7 5", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1596390818, - "lat": 50.1641104, - "lon": -5.1984475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1596398428, - "lat": 53.1389865, - "lon": -0.9386673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG22 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1596505756, - "lat": 53.0427746, - "lon": -1.2122085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1596506512, - "lat": 53.0383840, - "lon": -1.2162768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG15 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1596644986, - "lat": 50.8864577, - "lon": -1.0345103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1596866185, - "lat": 50.6499890, - "lon": -2.4588611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 85D", - "ref:GB:uprn": "10015308624", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 1596866188, - "lat": 50.6447707, - "lon": -2.4543939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 86D", - "ref:GB:uprn": "10015397383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 1597506100, - "lat": 52.2576779, - "lon": -1.6183172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1597652184, - "lat": 53.2062850, - "lon": -3.0236810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1597745490, - "lat": 55.5885458, - "lon": -2.3376953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1598181248, - "lat": 51.5144037, - "lon": 0.4288150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS17 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-01-14" - } -}, -{ - "type": "node", - "id": 1598225194, - "lat": 53.1675037, - "lon": -1.1983662, - "tags": { - "amenity": "post_box", - "ele": "88.0000000" - } -}, -{ - "type": "node", - "id": 1598358993, - "lat": 53.1741911, - "lon": -1.1921519, - "tags": { - "amenity": "post_box", - "ele": "66.0000000" - } -}, -{ - "type": "node", - "id": 1598361518, - "lat": 53.1661819, - "lon": -1.1935704, - "tags": { - "amenity": "post_box", - "ele": "73.0000000" - } -}, -{ - "type": "node", - "id": 1598372333, - "lat": 50.4307279, - "lon": -3.6915529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1598786042, - "lat": 51.0294657, - "lon": -3.0945554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 417" - } -}, -{ - "type": "node", - "id": 1598904760, - "lat": 51.4093490, - "lon": -0.7612704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "170505475973019", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG12 160D", - "survey:date": "2023-05-20" - } -}, -{ - "type": "node", - "id": 1598954381, - "lat": 50.7784958, - "lon": -3.2614149, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1599192652, - "lat": 50.7581264, - "lon": -2.0115206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 146", - "ref:GB:uprn": "10015396054", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1599282830, - "lat": 50.6312678, - "lon": -2.4549847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 148D", - "ref:GB:uprn": "10015411996", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 1599320041, - "lat": 51.6353231, - "lon": -0.1499931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 127D" - } -}, -{ - "type": "node", - "id": 1599434131, - "lat": 51.2840210, - "lon": -0.2417752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT20 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1599891956, - "lat": 52.9089471, - "lon": -2.4881627, - "tags": { - "amenity": "post_box", - "note": "instore" - } -}, -{ - "type": "node", - "id": 1600132120, - "lat": 55.8019872, - "lon": -3.9147514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML1 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1600175916, - "lat": 51.4598393, - "lon": -0.9126366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG5 484D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1600478992, - "lat": 53.4799613, - "lon": -2.2445253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "blue", - "drive_through": "no", - "inscription": "This postbox has been specially decorated to celebrate the ICC Men's Cricket World Cup 2019 and the quintessentially British game of cricket", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M2 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1600541447, - "lat": 53.8205172, - "lon": -1.5208864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 243" - } -}, -{ - "type": "node", - "id": 1600541451, - "lat": 53.8224050, - "lon": -1.5264347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS7 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1600628268, - "lat": 54.4626982, - "lon": -6.0738356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1600632190, - "lat": 51.7463608, - "lon": -2.2165839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "no", - "name": "Lansdown", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1600641789, - "lat": 51.7452653, - "lon": -2.2158912, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-09", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "name": "High Street", - "old_ref": "STD 047", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GL5 47;GL5 1047", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1601133435, - "lat": 51.5686917, - "lon": -1.8460603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 410" - } -}, -{ - "type": "node", - "id": 1601229723, - "lat": 55.8879527, - "lon": -4.3043513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "G12 258" - } -}, -{ - "type": "node", - "id": 1601229929, - "lat": 55.8904872, - "lon": -4.3118718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "G12 803" - } -}, -{ - "type": "node", - "id": 1601246878, - "lat": 53.8240754, - "lon": -1.5082631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 265" - } -}, -{ - "type": "node", - "id": 1601247018, - "lat": 53.8325571, - "lon": -1.5097185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS8 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1601305138, - "lat": 55.8851498, - "lon": -4.3031028, - "tags": { - "amenity": "post_box", - "note": "no ref plate", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1601429526, - "lat": 55.8604630, - "lon": -4.2404735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G1 538;G1 5380", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1601523464, - "lat": 52.9637127, - "lon": -3.1642198, - "tags": { - "amenity": "post_box", - "ref": "LL20 41", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1601523511, - "lat": 52.9688838, - "lon": -3.1698321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL20 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1601588790, - "lat": 51.7954777, - "lon": 0.2130178, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1601601726, - "lat": 51.7174819, - "lon": 0.5748680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1601663987, - "lat": 53.7270214, - "lon": -2.7817929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR4 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1601705658, - "lat": 51.7854087, - "lon": 0.2094168, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1601764983, - "lat": 51.3280138, - "lon": -0.5651109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 95", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1602154060, - "lat": 50.9033981, - "lon": -1.4067193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "indoor": "yes", - "level": "2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 794", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1602166119, - "lat": 52.5149201, - "lon": -1.9774563, - "tags": { - "amenity": "post_box", - "ref": "B70 87", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1602279449, - "lat": 52.8491797, - "lon": 1.4097369, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1603361579, - "lat": 52.5253502, - "lon": -1.9833152, - "tags": { - "amenity": "post_box", - "ref": "B71 33", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1603400716, - "lat": 55.9014793, - "lon": -3.2048032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 371", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1604101472, - "lat": 51.2470124, - "lon": -2.2244545, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1604300675, - "lat": 50.6336417, - "lon": -2.4315196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "DT3 82", - "ref:GB:uprn": "10015328997", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1604315909, - "lat": 50.6339925, - "lon": -2.4416122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 1604658116, - "lat": 50.6470579, - "lon": -2.4306913, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT3 142D", - "ref:GB:uprn": "10015408780", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1604658178, - "lat": 50.6467152, - "lon": -2.4187661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 302D", - "ref:GB:uprn": "10015824051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1604658197, - "lat": 50.6437652, - "lon": -2.4303184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "DT3 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1604664699, - "lat": 51.4532032, - "lon": -0.0301285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1604714241, - "lat": 51.3214836, - "lon": -0.6208570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1604716075, - "lat": 51.3481504, - "lon": -0.6024622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU24 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1604842372, - "lat": 57.3406240, - "lon": -2.6163738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB52 16", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing, survey" - } -}, -{ - "type": "node", - "id": 1604916349, - "lat": 51.2993474, - "lon": -0.7204724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GU16 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1605485689, - "lat": 51.4900171, - "lon": -0.2065358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W14 30", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1605614902, - "lat": 51.5182417, - "lon": -0.6073574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 148" - } -}, -{ - "type": "node", - "id": 1606334280, - "lat": 51.3140050, - "lon": -0.6133657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1606374220, - "lat": 54.7278246, - "lon": -1.7562870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1606525108, - "lat": 53.8228396, - "lon": -1.4183266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS15 798" - } -}, -{ - "type": "node", - "id": 1606525119, - "lat": 53.8299177, - "lon": -1.4304022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 739", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1606525122, - "lat": 53.8239542, - "lon": -1.4271917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 53" - } -}, -{ - "type": "node", - "id": 1606528113, - "lat": 53.8330678, - "lon": -1.4270333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS15 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1606853311, - "lat": 50.2042918, - "lon": -5.1464153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1607409518, - "lat": 54.3436231, - "lon": -6.2475041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT32 6" - } -}, -{ - "type": "node", - "id": 1607570195, - "lat": 51.8154840, - "lon": 0.5334668, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CM3 146" - } -}, -{ - "type": "node", - "id": 1607656016, - "lat": 50.8508552, - "lon": -1.0668884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO6 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1607674706, - "lat": 50.8460000, - "lon": -1.1792493, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO16 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1607674712, - "lat": 50.8506670, - "lon": -1.1705985, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PO16 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1607963343, - "lat": 51.6118134, - "lon": 0.5700140, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1608005436, - "lat": 50.6925460, - "lon": -2.4530722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 34D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-12-24" - } -}, -{ - "type": "node", - "id": 1608967403, - "lat": 52.0889083, - "lon": -1.6492139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CV36", - "ref": "CV36 114", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609038019, - "lat": 52.0913083, - "lon": -1.6267881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV36", - "ref": "CV36 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609045087, - "lat": 55.8689646, - "lon": -4.2584371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G4 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1609046009, - "lat": 55.0234607, - "lon": -1.4563997, - "tags": { - "amenity": "post_box", - "ref": "NE29 7" - } -}, -{ - "type": "node", - "id": 1609180691, - "lat": 53.7322216, - "lon": -1.6681073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1609227324, - "lat": 55.8747149, - "lon": -4.3116735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G11 274", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1609227343, - "lat": 55.8766573, - "lon": -4.3128871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G12 425", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1609229733, - "lat": 51.7733152, - "lon": 0.2868754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM5 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1609233426, - "lat": 51.7786070, - "lon": 0.2772928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM5 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1609253378, - "lat": 51.7976105, - "lon": 0.2652676, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1609320662, - "lat": 52.0592499, - "lon": -1.6299192, - "tags": { - "amenity": "post_box", - "postal_code": "CV36", - "ref": "CV36 121", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1609320808, - "lat": 52.0644297, - "lon": -1.6294473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609370121, - "lat": 52.9384534, - "lon": -1.2098052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG9 693D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609379856, - "lat": 51.4941212, - "lon": -0.2134703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "A. Handyside and Co. Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "W14 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1609414173, - "lat": 52.0667341, - "lon": -1.6231151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609479177, - "lat": 52.9429990, - "lon": -1.2210282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 299", - "ref:GB:uprn": "10015350287", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609479206, - "lat": 52.9435080, - "lon": -1.2269849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 478D", - "ref:GB:uprn": "10015366016", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609479397, - "lat": 52.9462554, - "lon": -1.2319136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG8 428", - "ref:GB:uprn": "10015398462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609492365, - "lat": 52.0587396, - "lon": -1.6241463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CV36", - "ref": "CV36 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1609512054, - "lat": 52.7306278, - "lon": -1.1055517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1609545545, - "lat": 52.0546948, - "lon": -1.6234168, - "tags": { - "amenity": "post_box", - "postal_code": "CV36", - "ref": "CV36 122" - } -}, -{ - "type": "node", - "id": 1610084514, - "lat": 50.7982617, - "lon": -3.1879770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "post_box:type": "wall", - "ref": "EX14 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1610243347, - "lat": 51.4937105, - "lon": -0.1984634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "SW5 9D", - "royal_cypher": "no", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1610319613, - "lat": 52.6586122, - "lon": -2.1351701, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1610803404, - "lat": 51.3362712, - "lon": 0.7583090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1610845333, - "lat": 51.9811024, - "lon": -1.3213605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX15 581", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1610845373, - "lat": 51.9821743, - "lon": -1.2893100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "OX15 174", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611017768, - "lat": 52.1917262, - "lon": -1.7068484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-24", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "collection_times_checked": "2016-03-12", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611100613, - "lat": 51.8140130, - "lon": -0.1863030, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL7 321" - } -}, -{ - "type": "node", - "id": 1611106279, - "lat": 53.1476304, - "lon": -1.5659602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1611398713, - "lat": 52.5430591, - "lon": -2.0161670, - "tags": { - "amenity": "post_box", - "ref": "B70 56", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1611657823, - "lat": 52.0629668, - "lon": -1.6247999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "note": "no plate on LH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CV36 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611737559, - "lat": 51.8845942, - "lon": 0.7854856, - "tags": { - "amenity": "post_box", - "ref": "CO6 293" - } -}, -{ - "type": "node", - "id": 1611779488, - "lat": 52.0395625, - "lon": -1.6166710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611782547, - "lat": 52.0426709, - "lon": -1.6231109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611812839, - "lat": 52.0490415, - "lon": -1.6136252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "old_ref": "32 Willington", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 132", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611872013, - "lat": 51.3080365, - "lon": -0.7679734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00" - } -}, -{ - "type": "node", - "id": 1611921984, - "lat": 52.0866443, - "lon": -2.0994810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WR10 461", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1611929028, - "lat": 51.4978322, - "lon": -0.2197161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co, Derby & London", - "ref": "W14 15", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1612492731, - "lat": 51.4612281, - "lon": -0.9061139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG5 582" - } -}, -{ - "type": "node", - "id": 1612872425, - "lat": 51.3740633, - "lon": 1.3068682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT7", - "ref": "CT7 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1613102586, - "lat": 51.3127942, - "lon": -0.6281649, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-26", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1613120796, - "lat": 51.7546596, - "lon": -0.5595857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "note": "From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1613744678, - "lat": 51.1377654, - "lon": -2.9981913, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "This is a parcel post box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel" - } -}, -{ - "type": "node", - "id": 1614317742, - "lat": 51.4251139, - "lon": -0.5662849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Visual Confirmation", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1615440841, - "lat": 51.1229151, - "lon": 1.3156433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1615516822, - "lat": 51.1539971, - "lon": 1.2987741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "name": "Tesco", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "CT16 2", - "ref": "CT16 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1615516987, - "lat": 51.1581677, - "lon": 1.2840037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT16 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1615572235, - "lat": 52.3345937, - "lon": -2.2213055, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "DY11 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1615777583, - "lat": 55.1425118, - "lon": -6.6672510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1615832313, - "lat": 51.4802780, - "lon": -1.0809516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1615987363, - "lat": 50.7945219, - "lon": -2.9847935, - "tags": { - "amenity": "post_box", - "mapillary": "3172326629682949", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 1616157614, - "lat": 53.1581345, - "lon": -1.1959604, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1616499229, - "lat": 51.2486781, - "lon": 1.1994225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT3 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616499676, - "lat": 51.2594717, - "lon": 1.1414040, - "tags": { - "amenity": "post_box", - "postal_code": "CT4", - "ref": "CT4 222", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616508838, - "lat": 51.2851875, - "lon": 1.2860641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT3 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1616508920, - "lat": 51.2917009, - "lon": 1.2840315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CT3 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616508977, - "lat": 51.2955787, - "lon": 1.2853704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT3 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616509052, - "lat": 51.3023864, - "lon": 1.2823578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT3 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616509059, - "lat": 51.3027189, - "lon": 1.2926316, - "tags": { - "amenity": "post_box", - "ref": "CT3 179", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616614794, - "lat": 51.2367668, - "lon": 1.2495008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "243410654287835", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CT3 128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 1616615571, - "lat": 51.2780480, - "lon": 1.2672668, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "lastcheck": "2023-03-06", - "mapillary": "339798770944229", - "old_ref": "CT3 126", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 1616615687, - "lat": 51.2793815, - "lon": 1.2760019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT3 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616615729, - "lat": 51.2799262, - "lon": 1.2783882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616615842, - "lat": 51.2810921, - "lon": 1.2730663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 305", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616669253, - "lat": 51.3735501, - "lon": 1.3687049, - "tags": { - "amenity": "post_box", - "ref": "CT9 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616669279, - "lat": 51.3794739, - "lon": 1.3837713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CT9 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1616669281, - "lat": 51.3799096, - "lon": 1.3883283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT9 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616677487, - "lat": 55.9052704, - "lon": -3.2299197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH13 596", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1616677499, - "lat": 55.9073936, - "lon": -3.2270867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 313D", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1616677507, - "lat": 55.9162895, - "lon": -3.2861525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 593", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1616677509, - "lat": 55.9167735, - "lon": -3.2461744, - "tags": { - "amenity": "post_box", - "ref": "EH14 254" - } -}, -{ - "type": "node", - "id": 1616679648, - "lat": 53.0024670, - "lon": -2.2708220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "fixme": "Resurvey and check ref. Not sure if box is till here as currently in a building site.", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1616830993, - "lat": 51.1232802, - "lon": -2.7480144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA16 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1616833244, - "lat": 51.2340615, - "lon": 1.2667757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CT3 131", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616833289, - "lat": 51.2440504, - "lon": 1.2598649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT3 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616833389, - "lat": 51.2581131, - "lon": 1.2237262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "883721409192866", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 139", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 1616833391, - "lat": 51.2608546, - "lon": 1.2648095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CT3 138", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1616867932, - "lat": 52.0511137, - "lon": -1.5437297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX15 1124", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1617762085, - "lat": 51.1282193, - "lon": -2.7456973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1617777662, - "lat": 55.9095444, - "lon": -3.2331471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 415" - } -}, -{ - "type": "node", - "id": 1617858861, - "lat": 51.2762293, - "lon": 1.2894736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1198635090550161", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 1617859705, - "lat": 51.2784036, - "lon": 1.2820166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "319522426557736", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 1617859732, - "lat": 51.2786485, - "lon": 1.2910925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1617859816, - "lat": 51.2808189, - "lon": 1.2981275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "postal_code": "CT3", - "ref": "CT3 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1617873241, - "lat": 53.7120448, - "lon": -1.7133352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1617933369, - "lat": 54.0137336, - "lon": -0.4356614, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO25 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1617953320, - "lat": 52.8981803, - "lon": -2.1262631, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1617953321, - "lat": 52.8938719, - "lon": -2.1230327, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1618598178, - "lat": 51.3097370, - "lon": 0.2179617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1618598180, - "lat": 51.3078483, - "lon": 0.2091564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1618950269, - "lat": 56.0565343, - "lon": -2.7333833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "EH39 353D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1619103773, - "lat": 52.5256789, - "lon": -1.9871070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "ref": "B71 46", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikidata": "Q113686796" - } -}, -{ - "type": "node", - "id": 1619139414, - "lat": 51.0901232, - "lon": -2.2680552, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BA12 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1619165077, - "lat": 57.6634923, - "lon": -2.5841169, - "tags": { - "amenity": "post_box", - "ref": "AB45 55" - } -}, -{ - "type": "node", - "id": 1619178604, - "lat": 55.3977187, - "lon": -1.6909876, - "tags": { - "amenity": "post_box", - "ref": "NE66 804" - } -}, -{ - "type": "node", - "id": 1619509331, - "lat": 51.4553560, - "lon": -0.9862682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG1 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1619518646, - "lat": 50.7289796, - "lon": -1.9085082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH12 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1619980622, - "lat": 50.7205846, - "lon": -1.8762110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH1 76;BH1 5076", - "ref:GB:uprn": "10015449582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1620218634, - "lat": 51.2658755, - "lon": 0.2739546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN15 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1620520931, - "lat": 53.3190653, - "lon": -1.3988322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ele": "12", - "post_box:type": "wall", - "ref": "S12 353", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1620535589, - "lat": 53.6914988, - "lon": -1.0259898, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DN14 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1620641434, - "lat": 53.8023510, - "lon": -2.7048174, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1621373287, - "lat": 51.3805325, - "lon": 1.4043276, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-26", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CT9", - "ref": "CT9 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1621599845, - "lat": 51.0035523, - "lon": -0.9417461, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1624152278, - "lat": 50.9859832, - "lon": -3.1890416, - "tags": { - "amenity": "post_box", - "mapillary": "254039616475264", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-03-26" - } -}, -{ - "type": "node", - "id": 1624230312, - "lat": 51.3122247, - "lon": 0.2050061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1624230408, - "lat": 51.3130274, - "lon": 0.1885608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN14 270D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2019-04-13" - } -}, -{ - "type": "node", - "id": 1624230451, - "lat": 51.3179113, - "lon": 0.1939983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN14 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1624230479, - "lat": 51.3057317, - "lon": 0.2291830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN15 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1624230488, - "lat": 51.2965289, - "lon": 0.1925285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "colour": "Red", - "ref": "TN14 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1625485305, - "lat": 51.7648156, - "lon": -0.4953296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 1625971196, - "lat": 50.8703551, - "lon": 0.0112538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN7 430D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1626803343, - "lat": 51.4498818, - "lon": -0.0703985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 19D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1626825783, - "lat": 55.9211096, - "lon": -3.2429362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH14 608" - } -}, -{ - "type": "node", - "id": 1626975524, - "lat": 51.3835086, - "lon": 1.3952771, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT9 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1627144340, - "lat": 51.2178339, - "lon": -0.9293396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "wall", - "ref": "RG29 165", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1627148284, - "lat": 53.0640521, - "lon": -2.5198175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW5 181D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1627621673, - "lat": 50.8190996, - "lon": -1.0686237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1628192558, - "lat": 55.5148638, - "lon": -2.4959616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD8 93", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1628275657, - "lat": 51.6196987, - "lon": 0.3376346, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1628293718, - "lat": 51.6120958, - "lon": 0.3273913, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1628313465, - "lat": 51.6292359, - "lon": 0.3341343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1628483452, - "lat": 55.5281695, - "lon": -2.4623883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "phone_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1628735368, - "lat": 55.8272749, - "lon": -4.2337152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "fixme": "ref not visible", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1628736287, - "lat": 55.8173064, - "lon": -4.2523249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "operator": "Royal Mail", - "ref": "G44 316", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1628736294, - "lat": 55.8188697, - "lon": -4.2438601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "ref": "G44 995" - } -}, -{ - "type": "node", - "id": 1628736299, - "lat": 55.8194236, - "lon": -4.2375488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "ref": "G44 822" - } -}, -{ - "type": "node", - "id": 1628736307, - "lat": 55.8205399, - "lon": -4.2336747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G44 823" - } -}, -{ - "type": "node", - "id": 1628736314, - "lat": 55.8235871, - "lon": -4.2492252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G44 112" - } -}, -{ - "type": "node", - "id": 1628736319, - "lat": 55.8236910, - "lon": -4.2536469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "ref": "G44 495" - } -}, -{ - "type": "node", - "id": 1628736328, - "lat": 55.8244937, - "lon": -4.2568269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G44 806", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1628736336, - "lat": 55.8430557, - "lon": -4.2424413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G5 111" - } -}, -{ - "type": "node", - "id": 1628892608, - "lat": 53.9554022, - "lon": -0.9718984, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO19 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1629053628, - "lat": 53.2839259, - "lon": -1.2016113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "89", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1629358838, - "lat": 50.8668075, - "lon": -0.1353396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 66" - } -}, -{ - "type": "node", - "id": 1629358843, - "lat": 50.8674155, - "lon": -0.1438171, - "tags": { - "amenity": "post_box", - "ref": "BN1 64" - } -}, -{ - "type": "node", - "id": 1629358849, - "lat": 50.8638912, - "lon": -0.1457059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "last_checked": "2022-05-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1629358854, - "lat": 50.8692744, - "lon": -0.1323991, - "tags": { - "amenity": "post_box", - "ref": "BN1 65" - } -}, -{ - "type": "node", - "id": 1629495543, - "lat": 52.1164113, - "lon": -0.4688425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK42 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 1629672097, - "lat": 50.8627835, - "lon": -0.1523852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 311" - } -}, -{ - "type": "node", - "id": 1630022670, - "lat": 55.0740668, - "lon": -2.1014424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "ref": "NE48 118" - } -}, -{ - "type": "node", - "id": 1630202754, - "lat": 52.9727826, - "lon": -1.2083450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 252", - "ref:GB:uprn": "10015403145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1630226530, - "lat": 51.3670066, - "lon": -0.4450496, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT13 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1630450116, - "lat": 51.3647270, - "lon": -0.4595389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1630556670, - "lat": 53.6472317, - "lon": -1.5385750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 164" - } -}, -{ - "type": "node", - "id": 1630610276, - "lat": 55.9778271, - "lon": -3.2436779, - "tags": { - "amenity": "post_box", - "ref": "EH5 62" - } -}, -{ - "type": "node", - "id": 1630623189, - "lat": 55.9344753, - "lon": -3.1226949, - "tags": { - "amenity": "post_box", - "ref": "EH16 993" - } -}, -{ - "type": "node", - "id": 1630633137, - "lat": 53.6707543, - "lon": -1.6230990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1631142838, - "lat": 54.5026029, - "lon": -1.2181201, - "tags": { - "amenity": "post_box", - "fixme": "Check ref (was \"TSs8 126\")", - "operator": "Royal Mail", - "ref": "TS8 126" - } -}, -{ - "type": "node", - "id": 1631183377, - "lat": 51.3626358, - "lon": -0.4351494, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT13 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1631324947, - "lat": 51.1482821, - "lon": -0.9621783, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "last_checked": "2021-08-08", - "note": "This postbox was marked on OSM as GU34 103 but when I used it on Sunday 08.08.2021 this postbox is actually numbered GU34 101.", - "note_1": "This postbox is the latest collection point in the area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU34 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1631324954, - "lat": 51.1482937, - "lon": -0.9621229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "description": "This postbox is for Parcels and Franked Mail.", - "last_checked": "2021-08-08", - "old_ref": "GU34 59", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "GU34 59P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1631324956, - "lat": 51.1497846, - "lon": -0.9651850, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-08", - "old_ref": "GU34 72", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1631368839, - "lat": 52.4783856, - "lon": 1.2086304, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1631746090, - "lat": 51.3732693, - "lon": -0.4575622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT13 151", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1631815368, - "lat": 50.7316788, - "lon": -3.5585451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 607" - } -}, -{ - "type": "node", - "id": 1631839523, - "lat": 51.3717778, - "lon": -0.4461766, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT13 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1631937066, - "lat": 51.3676200, - "lon": -0.4530145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1631998721, - "lat": 51.3706747, - "lon": -0.4514221, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "McDowall, Steven & Co, London & Glasgow", - "post_box:type": "pillar", - "ref": "KT13 11D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1632817880, - "lat": 51.3915339, - "lon": 1.3863147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1633180392, - "lat": 52.4395383, - "lon": -2.1222053, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1633205028, - "lat": 52.4247891, - "lon": -2.1240877, - "tags": { - "amenity": "post_box", - "ref": "DY9 80", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1633758377, - "lat": 50.7854753, - "lon": -1.0884002, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 1082", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1633758383, - "lat": 50.7833166, - "lon": -1.0887854, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-17", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1634074620, - "lat": 52.4278384, - "lon": -2.2509066, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634074638, - "lat": 52.4305634, - "lon": -2.2493755, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634077483, - "lat": 51.3798334, - "lon": -0.4558582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT13 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1634090558, - "lat": 52.4276208, - "lon": -2.3082115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "DY12 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634312475, - "lat": 52.2026143, - "lon": -1.7174639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37 0AA", - "ref": "CV37 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634317841, - "lat": 56.0581336, - "lon": -2.7227732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-08", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "colour": "gray", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "EH39 208", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1634328182, - "lat": 56.0533583, - "lon": -2.7190937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH39 328D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1634331255, - "lat": 56.0570906, - "lon": -2.7217410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH39 173D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1634338943, - "lat": 52.2038381, - "lon": -1.7115845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37 5DF", - "ref": "CV37 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634339099, - "lat": 56.0546281, - "lon": -2.7312063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "EH39 331D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1634360227, - "lat": 52.2051425, - "lon": -1.7084463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CV37", - "ref": "CV37 22" - } -}, -{ - "type": "node", - "id": 1634403566, - "lat": 56.0268542, - "lon": -2.8072764, - "tags": { - "amenity": "post_box", - "ref": "EH39 129" - } -}, -{ - "type": "node", - "id": 1634407614, - "lat": 56.0260459, - "lon": -2.7832089, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH39 363", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1634422231, - "lat": 56.0548156, - "lon": -2.7495960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "EH39 366D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1634439485, - "lat": 52.1986676, - "lon": -1.7094970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CV37 6SN", - "ref": "CV37 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634439490, - "lat": 52.2024491, - "lon": -1.7150325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "note": "located inside Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV37 0AP", - "ref": "CV37 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634439583, - "lat": 52.2042146, - "lon": -1.7056823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "CV37 6TQ", - "ref": "CV37 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634439596, - "lat": 52.1974581, - "lon": -1.7050453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "CV37 6XR", - "ref": "CV37 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634439637, - "lat": 52.1984984, - "lon": -1.7146618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "CV37 0BT", - "ref": "CV37 108", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1634442311, - "lat": 56.0316826, - "lon": -2.7375556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH39 90" - } -}, -{ - "type": "node", - "id": 1634482971, - "lat": 55.9874361, - "lon": -2.6566519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "EH40 220", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1634486816, - "lat": 55.9845783, - "lon": -2.6608762, - "tags": { - "amenity": "post_box", - "ref": "EH40 362" - } -}, -{ - "type": "node", - "id": 1634506215, - "lat": 55.9926073, - "lon": -2.6528156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH40 331", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1634526430, - "lat": 55.9867832, - "lon": -2.7473330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH39 54" - } -}, -{ - "type": "node", - "id": 1634539825, - "lat": 53.7128963, - "lon": -1.8797405, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1634606752, - "lat": 51.4145883, - "lon": -0.8545544, - "tags": { - "amenity": "post_box", - "opening_hours": "24/7", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1634640032, - "lat": 53.4775980, - "lon": -2.3669635, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1634663838, - "lat": 53.7881751, - "lon": -1.8940014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD13 442D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1634663850, - "lat": 53.8003354, - "lon": -1.8994342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1634698762, - "lat": 53.8269517, - "lon": -1.9238173, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1634701012, - "lat": 55.9236578, - "lon": -3.2367354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "769441230430422", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 208", - "survey:date": "2020-04-21" - } -}, -{ - "type": "node", - "id": 1634949829, - "lat": 51.5815548, - "lon": -0.1741615, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N2 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1635115922, - "lat": 55.6798865, - "lon": -2.5646699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD3 128", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1635255123, - "lat": 53.3592729, - "lon": -2.0304518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1635408610, - "lat": 50.8655206, - "lon": -0.1409210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 67" - } -}, -{ - "type": "node", - "id": 1635610034, - "lat": 51.1866903, - "lon": -0.6093510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GU7 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1635610036, - "lat": 51.1856736, - "lon": -0.6126935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GU7 3701;GU7 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1635637325, - "lat": 55.9890150, - "lon": -2.6591906, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH40 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1635888603, - "lat": 53.4300085, - "lon": -2.5166936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1635888608, - "lat": 53.4299803, - "lon": -2.5167745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA3 366" - } -}, -{ - "type": "node", - "id": 1636480041, - "lat": 53.4522925, - "lon": -2.5122365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1636652023, - "lat": 52.6275878, - "lon": -2.1272249, - "tags": { - "amenity": "post_box", - "ref": "WV10 62" - } -}, -{ - "type": "node", - "id": 1636652032, - "lat": 52.6295412, - "lon": -2.1255938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "WV10 496" - } -}, -{ - "type": "node", - "id": 1636904372, - "lat": 55.7461210, - "lon": -4.2114862, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1636917921, - "lat": 50.8452995, - "lon": -1.0368221, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-28", - "old_ref": "PO6 225", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 225D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1636934393, - "lat": 50.8534362, - "lon": -1.0475247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO6 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1636944818, - "lat": 51.3686514, - "lon": -0.4465257, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KT13 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1637877313, - "lat": 55.9604009, - "lon": -2.6058864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH42 209", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1638000576, - "lat": 55.9495393, - "lon": -2.8666991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH33 310", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1638028969, - "lat": 55.9425355, - "lon": -2.9443248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH33 316", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1638055045, - "lat": 52.0239536, - "lon": -1.8863842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR12 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1638056084, - "lat": 52.9149109, - "lon": -1.1637727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 388", - "ref:GB:uprn": "10015467343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1638056176, - "lat": 52.9163891, - "lon": -1.1592128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 137D", - "ref:GB:uprn": "10015438084", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1638310941, - "lat": 52.8952543, - "lon": -1.1554223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 301", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1638452784, - "lat": 52.5860897, - "lon": -2.1478989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV3 13", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1638484374, - "lat": 54.6585637, - "lon": -5.7280128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1638841107, - "lat": 56.0514340, - "lon": -2.7297396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH39 333D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1638897747, - "lat": 56.0551351, - "lon": -2.6961225, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH39 88D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1638899206, - "lat": 56.0523230, - "lon": -2.7130432, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH39 164D", - "royal_cypher": "scottish_crown", - "support": "wall_mounted" - } -}, -{ - "type": "node", - "id": 1639069668, - "lat": 51.3723435, - "lon": -0.1675604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM5 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1639279688, - "lat": 55.9431174, - "lon": -4.2137124, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1639327808, - "lat": 53.5231646, - "lon": -2.2635405, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1639331349, - "lat": 53.5208253, - "lon": -2.2610326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1639354747, - "lat": 52.1227542, - "lon": -2.3370773, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "description": "Lamp box embedded in right gatepost of Saint Nicholas House", - "note": "This is the real WR14 12, another box a few 100m S has that on its plate, but is really WR14 39", - "post_box:manufacturer": "Machan Scotland", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WR14 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1639354754, - "lat": 52.1249313, - "lon": -2.3315351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WR14", - "ref": "WR14 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1639354788, - "lat": 52.1273291, - "lon": -2.3312248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "description": "RM says is a K-Type; it isn't", - "historic_operator": "Royal Mail", - "note": "Has old-style plate and full list of collection times. Truncated to be compatible with things like dracos. Mo-Fr 09:00,11:30,17:30; Sa 09:00,11:30", - "note2": "Manufacturer name is round the back, against a wall, so can't be read easily.", - "old_ref": "M052 Albert Park Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan Eng", - "post_box:plate_code": "no", - "post_box:type": "pillar", - "postal_code": "WR14", - "ref": "WR14 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps; survey; bing" - } -}, -{ - "type": "node", - "id": 1639386561, - "lat": 53.7747700, - "lon": -1.5629295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 540", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1639414932, - "lat": 51.3907272, - "lon": 1.4025915, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT9 63D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1639414952, - "lat": 51.3908472, - "lon": 1.3975028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT9 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1639416262, - "lat": 51.3917143, - "lon": 1.3924051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CT9", - "ref": "CT9 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1639430446, - "lat": 52.9392330, - "lon": -1.1835341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 113", - "ref:GB:uprn": "10015842303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1639436245, - "lat": 53.7648472, - "lon": -1.5030969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 15:15", - "fixme": "royal cypher?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "bin", - "ref": "LS10 1999;LS10 2999;LS10 3999" - } -}, -{ - "type": "node", - "id": 1639436258, - "lat": 53.7839027, - "lon": -1.5331588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS10 13" - } -}, -{ - "type": "node", - "id": 1639485235, - "lat": 51.3619354, - "lon": -0.4576236, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1639585728, - "lat": 51.3340970, - "lon": -0.7949066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "GU17 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1639679636, - "lat": 51.3661634, - "lon": -0.1721058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 67", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1639691376, - "lat": 56.0393455, - "lon": -2.8230726, - "tags": { - "amenity": "post_box", - "ref": "EH31 345" - } -}, -{ - "type": "node", - "id": 1639695513, - "lat": 50.4185742, - "lon": -3.9180692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 09:30; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL21 487", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1639697574, - "lat": 56.0350201, - "lon": -2.8227755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH31 95", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1639709654, - "lat": 56.0342482, - "lon": -2.8388290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH31 134" - } -}, -{ - "type": "node", - "id": 1639850270, - "lat": 51.8217583, - "lon": -1.0534090, - "tags": { - "amenity": "post_box", - "ref": "HP18 153", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1639878279, - "lat": 51.8207857, - "lon": -1.0519236, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HP18 154" - } -}, -{ - "type": "node", - "id": 1639878401, - "lat": 51.8220074, - "lon": -1.0496794, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HP18 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1639995326, - "lat": 51.8194612, - "lon": -1.0470615, - "tags": { - "amenity": "post_box", - "ref": "HP18 156" - } -}, -{ - "type": "node", - "id": 1640201424, - "lat": 53.0229901, - "lon": -2.1780443, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-26", - "collection_times": "Mo-Fr 15:30; Sa 12:15", - "colour": "green", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "national_standard", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1640355972, - "lat": 51.4984233, - "lon": -3.1782298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1640714199, - "lat": 51.3892117, - "lon": 1.4205821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "CT9", - "ref": "CT9 1", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1640714341, - "lat": 51.3912597, - "lon": 1.4084859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT9 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1641114531, - "lat": 53.0903752, - "lon": -1.4863279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 930", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1641425313, - "lat": 51.8694583, - "lon": 0.9633537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO7 404", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1641429903, - "lat": 51.8666631, - "lon": 0.9624949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO7 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1641440676, - "lat": 51.8618899, - "lon": 0.9657726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing; GPS" - } -}, -{ - "type": "node", - "id": 1641441266, - "lat": 51.8624337, - "lon": 0.9613920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1641446912, - "lat": 51.8663279, - "lon": 0.9561764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1641451429, - "lat": 51.8564585, - "lon": 0.9564056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1641454685, - "lat": 51.8545595, - "lon": 0.9598764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CO7 121D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1641457884, - "lat": 51.8593146, - "lon": 0.9688271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 1641458881, - "lat": 51.8606379, - "lon": 0.9731273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO7 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; GPS" - } -}, -{ - "type": "node", - "id": 1641562831, - "lat": 53.6452205, - "lon": -0.3556817, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1641628207, - "lat": 55.9714696, - "lon": -2.9532119, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2019-02-11", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH32 151", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1641628214, - "lat": 55.9704781, - "lon": -2.9582970, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH32 148D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1641699754, - "lat": 51.4969146, - "lon": -3.1725322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1641703632, - "lat": 51.4958910, - "lon": -3.1648411, - "tags": { - "amenity": "post_box", - "mapillary": "833061687330528", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "local_knowledge", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 1641712081, - "lat": 51.4943052, - "lon": -3.1819353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1641727310, - "lat": 51.2458970, - "lon": 0.3290124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "colour": "red", - "ref": "TN11 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1641727332, - "lat": 51.2522762, - "lon": 0.3355187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "colour": "red", - "ref": "TN11 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1641907291, - "lat": 51.4405952, - "lon": 0.7690289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME12 18D" - } -}, -{ - "type": "node", - "id": 1641996201, - "lat": 53.4375512, - "lon": -2.5559127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 159", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1642042009, - "lat": 50.6997978, - "lon": -3.2493732, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1642202867, - "lat": 53.0318014, - "lon": -2.2176560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1642345826, - "lat": 50.6235440, - "lon": -3.4109847, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1642562736, - "lat": 53.2751085, - "lon": -1.1877731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "S80 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1642579198, - "lat": 53.2818818, - "lon": -1.2027312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S80 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1643046113, - "lat": 51.4967987, - "lon": -0.2122407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W14 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1643046246, - "lat": 51.5015020, - "lon": -0.2174696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside and Co. Ltd", - "post_box:type": "pillar", - "ref": "W14 13", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1643052294, - "lat": 51.1443917, - "lon": -0.7848933, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1643518221, - "lat": 53.0079709, - "lon": -2.1808013, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "This postbox is on Platform 1 on Stoke-on-Trent railway station.", - "last_checked": "2020-01-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST4 181", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1643573431, - "lat": 54.6656840, - "lon": -2.7578144, - "tags": { - "amenity": "post_box", - "location": "Brunswick Square", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA11 5" - } -}, -{ - "type": "node", - "id": 1643576886, - "lat": 54.6656877, - "lon": -2.7554396, - "tags": { - "amenity": "post_box", - "location": "Brunswick Road", - "post_box:type": "pillar", - "ref": "CA11 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1643690822, - "lat": 51.4864438, - "lon": -0.2026850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "W14 12", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1643698071, - "lat": 51.8418300, - "lon": 0.7101428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO5 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1643698179, - "lat": 51.8367024, - "lon": 0.7002347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO5 140", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1643706043, - "lat": 51.8288608, - "lon": 0.7269885, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1644023577, - "lat": 50.9602321, - "lon": -1.3562823, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1644151924, - "lat": 54.6593362, - "lon": -2.7536882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA11 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1644181997, - "lat": 50.4196275, - "lon": -5.0432678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR7 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1644193561, - "lat": 53.1673237, - "lon": -1.1743545, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1644213444, - "lat": 52.2124701, - "lon": -2.5283869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR7 616", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1644756983, - "lat": 57.5618256, - "lon": -2.6234101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "AB54 39", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1644852227, - "lat": 51.4501734, - "lon": -0.9112488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG5 510D" - } -}, -{ - "type": "node", - "id": 1644911139, - "lat": 55.6772504, - "lon": -4.5112661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:00", - "mapillary": "206210244655035", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA3 202", - "survey:date": "2021-03-29" - } -}, -{ - "type": "node", - "id": 1645030163, - "lat": 50.6500954, - "lon": -2.3314705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 114", - "ref:GB:uprn": "10015474474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1645296500, - "lat": 51.2080859, - "lon": -0.7876330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 57D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1645298047, - "lat": 51.2047323, - "lon": -0.7711780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU9 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1645304286, - "lat": 51.8007401, - "lon": 0.6413900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM8 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1645304556, - "lat": 51.7990929, - "lon": 0.6390581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1645470861, - "lat": 56.4542641, - "lon": -2.9756691, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-04", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "inside", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1645473388, - "lat": 51.2118018, - "lon": -3.5875826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1645524998, - "lat": 56.0540872, - "lon": -2.7088538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH39 163D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1645818876, - "lat": 50.6356450, - "lon": -2.3752901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 27", - "ref:GB:uprn": "10015315352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1645872027, - "lat": 51.6084454, - "lon": -0.4975865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB9 99", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1645872944, - "lat": 51.1993534, - "lon": 0.2809920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN9 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1646076491, - "lat": 52.1888302, - "lon": -2.5198637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HR7 995", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1646669303, - "lat": 52.4639297, - "lon": -1.2063179, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1646690080, - "lat": 50.9288623, - "lon": -0.0596016, - "tags": { - "amenity": "post_box", - "ref": "BN7 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1646959779, - "lat": 56.0436855, - "lon": -2.7856440, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-07", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "colour": "red", - "post_box:type": "wall", - "ref": "EH39 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1646960527, - "lat": 56.0448234, - "lon": -2.7816730, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH39 347" - } -}, -{ - "type": "node", - "id": 1646966221, - "lat": 56.0475521, - "lon": -2.7759157, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH39 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1647238500, - "lat": 51.3508204, - "lon": -0.6028264, - "tags": { - "amenity": "post_box", - "ref": "GU24 188", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1647249612, - "lat": 50.9700145, - "lon": -3.0951506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1647283838, - "lat": 51.3564741, - "lon": -0.2062811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1647283840, - "lat": 51.3595603, - "lon": -0.1833986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "ref": "SM2 73", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1647283842, - "lat": 51.3598158, - "lon": -0.1913562, - "tags": { - "amenity": "post_box", - "ref": "SM1 10" - } -}, -{ - "type": "node", - "id": 1647363816, - "lat": 50.6484031, - "lon": -2.4541932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-05", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DT3 51;DT3 7051", - "ref:GB:uprn": "10015351779", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1647402076, - "lat": 51.3761845, - "lon": -0.4929957, - "tags": { - "amenity": "post_box", - "ref": "KT15 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1647486745, - "lat": 50.9676743, - "lon": -3.1109231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "245667290689145", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-05-13", - "survey:date": "2020-05-13" - } -}, -{ - "type": "node", - "id": 1647511183, - "lat": 52.9190188, - "lon": -1.1650282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 2440D", - "ref:GB:uprn": "10015340103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1648339132, - "lat": 55.9275504, - "lon": -2.4179828, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-20", - "manufacturer": "Carron Company Stirlingshire", - "note": "the collection_plate is missing", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1648351142, - "lat": 55.9946900, - "lon": -2.5539852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3153382658296566", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 252", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 1648361269, - "lat": 56.0251771, - "lon": -2.6516488, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 223" - } -}, -{ - "type": "node", - "id": 1648689412, - "lat": 53.8598177, - "lon": -1.6039627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS16 666", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1648822874, - "lat": 51.1231850, - "lon": -2.7529570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1648944460, - "lat": 52.4469357, - "lon": 0.6371047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "IP27 3341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1649026927, - "lat": 52.9763212, - "lon": -1.1990323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 280D", - "ref:GB:uprn": "10015369851", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1649044499, - "lat": 50.8437711, - "lon": -1.1375951, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1649123624, - "lat": 50.8540857, - "lon": -1.1191274, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1649129459, - "lat": 50.8518169, - "lon": -1.1180953, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1649162786, - "lat": 50.8502067, - "lon": -1.1210940, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO16 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1649177997, - "lat": 50.8393858, - "lon": -1.1278198, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1649214346, - "lat": 52.9735025, - "lon": -1.1663522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "latest_survey_date": "2015-04-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 85", - "ref:GB:uprn": "10015452282", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1649214547, - "lat": 52.9766474, - "lon": -1.1732304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 34D", - "ref:GB:uprn": "10015318638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1649340635, - "lat": 54.1541323, - "lon": -2.4666771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 09:00", - "post_box:type": "pillar", - "ref": "LA6 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1649748082, - "lat": 55.9117752, - "lon": -4.2333515, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1649748087, - "lat": 55.9142494, - "lon": -4.2278103, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1649757182, - "lat": 55.9158610, - "lon": -4.2143628, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1649795635, - "lat": 52.9718620, - "lon": -1.1609740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1650228037, - "lat": 51.8940415, - "lon": -2.0498640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 107" - } -}, -{ - "type": "node", - "id": 1650276404, - "lat": 53.1296770, - "lon": -0.6387029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1650665787, - "lat": 54.5745008, - "lon": -1.5535889, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1650665788, - "lat": 54.5613796, - "lon": -1.5490646, - "tags": { - "amenity": "post_box", - "ref": "DL1 239", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1650680701, - "lat": 56.0341913, - "lon": -2.8346347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:00", - "post_box:type": "wall", - "ref": "EH31 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1650703432, - "lat": 51.3710070, - "lon": -0.4624004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1650793678, - "lat": 52.3816957, - "lon": -0.0419438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 150", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1650803996, - "lat": 56.0055340, - "lon": -2.7864460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "EH39 76", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1651039241, - "lat": 51.4468197, - "lon": -2.5910333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS1 1380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1651039289, - "lat": 51.4500614, - "lon": -2.5967996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-27", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "BS1 378D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1651054399, - "lat": 51.4454142, - "lon": -2.5990677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:type": "wall", - "ref": "BS3 66", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1651061059, - "lat": 51.4462172, - "lon": -2.6060024, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1651412528, - "lat": 57.1464480, - "lon": -2.0915535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 55D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1651416862, - "lat": 57.1466950, - "lon": -2.0877516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:15-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB11 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1651416863, - "lat": 57.1467001, - "lon": -2.0877314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1651495242, - "lat": 53.8027192, - "lon": -1.7655691, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BD8 71", - "source": "OS_OpenData_StreetView" - } -}, -{ - "type": "node", - "id": 1651792128, - "lat": 52.0538440, - "lon": -2.7132856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR1 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1651962828, - "lat": 56.0095809, - "lon": -3.7108349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 222", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1652699314, - "lat": 53.1640696, - "lon": -0.4185784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1653015220, - "lat": 51.1428198, - "lon": 0.3208370, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1653015229, - "lat": 51.1515873, - "lon": 0.3283846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1653017643, - "lat": 51.1441761, - "lon": 0.3147122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 217", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1653189867, - "lat": 51.1962497, - "lon": -0.7898859, - "tags": { - "amenity": "post_box", - "postal_code": "GU10", - "ref": "GU10 66" - } -}, -{ - "type": "node", - "id": 1653326986, - "lat": 51.1956093, - "lon": -0.7952873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "drive_through": "no", - "mapillary": "1451961738519579", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "GU10", - "ref": "GU10 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 1653502977, - "lat": 52.0650913, - "lon": -2.6980281, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1653750516, - "lat": 52.0199739, - "lon": -2.4096377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "HR8 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1654175157, - "lat": 53.8519836, - "lon": -1.6914082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 63" - } -}, -{ - "type": "node", - "id": 1654251581, - "lat": 51.2702664, - "lon": 0.2546919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN15 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1654318724, - "lat": 52.1867644, - "lon": -2.4744330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 08:00", - "mail:2nd_class": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR7 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1654320590, - "lat": 52.1847899, - "lon": -2.4832663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR7 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1654439198, - "lat": 52.3134727, - "lon": -2.2332215, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DY13 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1654470933, - "lat": 52.2951245, - "lon": -2.2271553, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DY13 79", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1654476578, - "lat": 52.3044038, - "lon": -2.2299137, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "DY13 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1654493682, - "lat": 52.3855949, - "lon": -2.2451966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DY10 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1655082737, - "lat": 51.2952265, - "lon": -0.3297040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KT22 379P", - "royal_cypher": "no", - "source": "P174-0151" - } -}, -{ - "type": "node", - "id": 1655340771, - "lat": 51.1335345, - "lon": 0.8906884, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1655428812, - "lat": 53.9742348, - "lon": -2.7386212, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA2 169" - } -}, -{ - "type": "node", - "id": 1656027216, - "lat": 51.4678147, - "lon": -2.5612252, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1656244727, - "lat": 50.6322761, - "lon": -3.7246456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1656384053, - "lat": 51.2017576, - "lon": -0.7899593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "yes", - "drive_through": "no", - "material": "brick", - "old_ref": "GU9 65", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1656423375, - "lat": 51.2037273, - "lon": -0.7782112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "GU9", - "ref": "GU9 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1656430390, - "lat": 51.3737498, - "lon": -0.6231304, - "tags": { - "amenity": "post_box", - "ref": "GU24 115" - } -}, -{ - "type": "node", - "id": 1656626301, - "lat": 51.1266988, - "lon": 0.2622365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN1 37" - } -}, -{ - "type": "node", - "id": 1656745015, - "lat": 51.5221936, - "lon": -0.1119564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Handyside, Derby and London", - "post_box:type": "pillar", - "ref": "EC1N 109;EC1N 1091", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1656794730, - "lat": 52.8031996, - "lon": 1.2248650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "collection_times:lastcheck": "2018-08-17", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR11 1118", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1656952927, - "lat": 51.9807214, - "lon": -2.3612721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "GL19 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1657344061, - "lat": 52.9988027, - "lon": -2.1646458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:05; Sa 12:15", - "ref": "ST4 186" - } -}, -{ - "type": "node", - "id": 1657344064, - "lat": 52.9998521, - "lon": -2.1675798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "odbl": "clean", - "ref": "ST4 214" - } -}, -{ - "type": "node", - "id": 1657354199, - "lat": 51.3525515, - "lon": -1.9932169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1657576542, - "lat": 50.9042896, - "lon": -1.4171588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 714D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1657760414, - "lat": 53.9089081, - "lon": -1.7537239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 868", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1657760415, - "lat": 53.9130696, - "lon": -1.7504436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 861", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1657761043, - "lat": 55.9249901, - "lon": -3.2459436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 400D" - } -}, -{ - "type": "node", - "id": 1657761054, - "lat": 55.9325861, - "lon": -3.2362182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "EH14 240", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1657801618, - "lat": 51.1762939, - "lon": -0.1151642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH6 273" - } -}, -{ - "type": "node", - "id": 1657871498, - "lat": 51.4351685, - "lon": -0.1277875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW16 16" - } -}, -{ - "type": "node", - "id": 1657961669, - "lat": 53.8157167, - "lon": -1.9680656, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1658057526, - "lat": 55.6702941, - "lon": -3.7616938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "ML11 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1658107833, - "lat": 55.6666880, - "lon": -3.7752531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "ref": "ML11 81" - } -}, -{ - "type": "node", - "id": 1658264637, - "lat": 51.4605911, - "lon": -0.3224804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 92", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1658831165, - "lat": 52.9893198, - "lon": -0.7511295, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1658895533, - "lat": 52.9730033, - "lon": -2.1573053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "date": "4/3/12", - "ref": "ST3 606" - } -}, -{ - "type": "node", - "id": 1658895686, - "lat": 52.9744970, - "lon": -2.1515762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "date": "4/3/12", - "ref": "ST3 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1659204159, - "lat": 55.8895395, - "lon": -4.3810415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "ref": "G14 709" - } -}, -{ - "type": "node", - "id": 1659453050, - "lat": 53.8522927, - "lon": -1.8407723, - "tags": { - "amenity": "post_box", - "ref": "BD16 973" - } -}, -{ - "type": "node", - "id": 1659760666, - "lat": 55.6733934, - "lon": -3.8001382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "ref": "ML11 92" - } -}, -{ - "type": "node", - "id": 1660494022, - "lat": 53.4217626, - "lon": -2.5147226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1660666220, - "lat": 52.3880298, - "lon": -1.5555497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1660746013, - "lat": 51.5439156, - "lon": -0.2005810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW6 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1660746019, - "lat": 51.5442550, - "lon": -0.2020023, - "tags": { - "amenity": "post_box", - "note": "ref unknown - no card on this box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1660759486, - "lat": 50.8759094, - "lon": 0.0059538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 457", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1660830218, - "lat": 52.1416825, - "lon": -1.9217701, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WR11 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1660867143, - "lat": 52.1265182, - "lon": -2.3164963, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "postal_code": "WR14", - "ref": "WR14 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1661007040, - "lat": 52.1352246, - "lon": -2.3133646, - "tags": { - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "In wall of The New Inn", - "post_box:type": "wall", - "postal_code": "WR14", - "ref": "WR14 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1661045155, - "lat": 52.1379180, - "lon": -1.9185703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WR11 38", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1661051150, - "lat": 54.4365691, - "lon": -6.3007637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1661079391, - "lat": 54.5883207, - "lon": -6.2131120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1661170069, - "lat": 56.0380013, - "lon": -2.8332052, - "tags": { - "amenity": "post_box", - "ref": "EH31 60" - } -}, -{ - "type": "node", - "id": 1661180524, - "lat": 56.0369206, - "lon": -2.8244436, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH31 59" - } -}, -{ - "type": "node", - "id": 1661341578, - "lat": 50.7971146, - "lon": 0.2682074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 844D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1661410761, - "lat": 50.8864074, - "lon": 0.3376417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 949D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1661421952, - "lat": 50.8887921, - "lon": 0.3201834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 959D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1661431523, - "lat": 55.9278483, - "lon": -3.2300129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "318598566345882", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 142", - "survey:date": "2020-04-21" - } -}, -{ - "type": "node", - "id": 1661489013, - "lat": 55.0265905, - "lon": -3.1452528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "405927508461928", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 24", - "source": "survey", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 1662090127, - "lat": 53.9477667, - "lon": -1.0297390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note:ref": "yes, the ref does end with a capital \"D\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO10 605D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1662100084, - "lat": 55.1556386, - "lon": -3.4056936, - "tags": { - "amenity": "post_box", - "ref": "DG11 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1662101074, - "lat": 55.2151163, - "lon": -3.4155530, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG11 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1662401802, - "lat": 52.4570267, - "lon": -2.1227121, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1662823479, - "lat": 54.6651587, - "lon": -2.7512779, - "tags": { - "amenity": "post_box", - "ref": "CA11 323" - } -}, -{ - "type": "node", - "id": 1663169467, - "lat": 55.9116078, - "lon": -3.2144040, - "tags": { - "amenity": "post_box", - "ref": "EH10 382", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1663169470, - "lat": 55.9137416, - "lon": -3.2215209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection time updated 2018-04-18", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "EH10 28D", - "royal_cypher": "GR", - "source": "Bing;survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1663169475, - "lat": 55.9166267, - "lon": -3.2282523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 549D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1663169481, - "lat": 55.9177270, - "lon": -3.2099968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "194722085714957", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 379", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-05-24" - } -}, -{ - "type": "node", - "id": 1663418794, - "lat": 53.2179584, - "lon": -1.4655869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1663653559, - "lat": 55.1794779, - "lon": -2.8139245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "287548163266587", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-11-11" - } -}, -{ - "type": "node", - "id": 1663668899, - "lat": 55.4370091, - "lon": -3.1154903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD7 136", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1664025739, - "lat": 56.0493440, - "lon": -2.7026588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH39 348D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1664157895, - "lat": 51.4048660, - "lon": -0.2627701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1664501041, - "lat": 52.6862229, - "lon": 1.1155386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR9 957", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1664582602, - "lat": 54.6017373, - "lon": -3.1590521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1664703797, - "lat": 55.9749390, - "lon": -2.8960395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 349", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1664709431, - "lat": 55.9748613, - "lon": -2.8936242, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH32 265D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1664730054, - "lat": 55.9709190, - "lon": -2.9406585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH32 343" - } -}, -{ - "type": "node", - "id": 1664769282, - "lat": 55.9664898, - "lon": -2.9207257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 367" - } -}, -{ - "type": "node", - "id": 1664814162, - "lat": 55.8099395, - "lon": -3.2012512, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH26 121", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1664975456, - "lat": 53.9847822, - "lon": -2.1057767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1665021489, - "lat": 51.6613130, - "lon": -3.8037130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1665243172, - "lat": 52.2011830, - "lon": -1.4863107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV35 36", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1665536967, - "lat": 52.6801470, - "lon": -1.8054233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Personal" - } -}, -{ - "type": "node", - "id": 1665791115, - "lat": 55.9587854, - "lon": -2.9865187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH32 373", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1665799926, - "lat": 55.9937441, - "lon": -2.8293335, - "tags": { - "amenity": "post_box", - "ref": "EH32 2" - } -}, -{ - "type": "node", - "id": 1665802023, - "lat": 55.9743585, - "lon": -2.8999144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH32 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1665812281, - "lat": 55.9790642, - "lon": -2.8910030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1665823374, - "lat": 55.9783729, - "lon": -2.8958695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1665918436, - "lat": 55.9542983, - "lon": -2.9701430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1491336801307167", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH32 212", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 1665931784, - "lat": 55.9573456, - "lon": -2.9695306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 16", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1665946641, - "lat": 55.9577171, - "lon": -2.9742940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 240" - } -}, -{ - "type": "node", - "id": 1665968810, - "lat": 55.9564230, - "lon": -2.9905172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH32 147" - } -}, -{ - "type": "node", - "id": 1665973271, - "lat": 55.9585257, - "lon": -2.9781792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH32 247D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1665975595, - "lat": 55.9569139, - "lon": -2.9839781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 128" - } -}, -{ - "type": "node", - "id": 1666010620, - "lat": 55.9786866, - "lon": -2.8990924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1666040351, - "lat": 55.9661353, - "lon": -2.9520764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 370" - } -}, -{ - "type": "node", - "id": 1666052450, - "lat": 52.5403176, - "lon": -2.0880767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1666052641, - "lat": 52.5377335, - "lon": -2.0925587, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1666074828, - "lat": 53.7945553, - "lon": -1.2511393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 833D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1666074829, - "lat": 53.7968914, - "lon": -1.2519023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1666112468, - "lat": 54.4749234, - "lon": -6.1605348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1666157615, - "lat": 51.7232249, - "lon": -0.1791570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 207", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1666177398, - "lat": 55.9039997, - "lon": -3.2889019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH14 569D" - } -}, -{ - "type": "node", - "id": 1666177460, - "lat": 55.9058760, - "lon": -3.2543343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH13 391", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1666177464, - "lat": 55.9058985, - "lon": -3.2437992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "294535936628089", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 460", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 1666271415, - "lat": 55.9566651, - "lon": -3.4114271, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH29 367D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1666300429, - "lat": 55.9725789, - "lon": -2.9053164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 258", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1666322569, - "lat": 56.0080160, - "lon": -2.8650097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1344855039452969", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EH32 37", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 1666334782, - "lat": 55.9723070, - "lon": -2.9308901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH32 9" - } -}, -{ - "type": "node", - "id": 1666417588, - "lat": 50.8249628, - "lon": -1.1803794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 20" - } -}, -{ - "type": "node", - "id": 1666417612, - "lat": 50.8324087, - "lon": -1.1792784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1666423641, - "lat": 50.2073871, - "lon": -5.1249766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR3 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1666477728, - "lat": 53.8608255, - "lon": -1.9114213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD21 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1666650001, - "lat": 52.5488879, - "lon": -1.8448007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "B73", - "ref": "B73 630", - "royal_cypher": "GR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1666669068, - "lat": 52.4382837, - "lon": -1.4505011, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1666968905, - "lat": 53.9279650, - "lon": -3.0110072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 1D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1667321430, - "lat": 50.7386474, - "lon": -1.8772441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 222", - "ref:GB:uprn": "10015463243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1667350141, - "lat": 52.1960424, - "lon": -4.1533104, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1667377446, - "lat": 54.4323541, - "lon": -2.8422351, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA8 104", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1667520593, - "lat": 52.7346568, - "lon": 1.0668039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR9 960", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1667612578, - "lat": 55.9915708, - "lon": -2.5140190, - "tags": { - "amenity": "post_box", - "ref": "EH42 376" - } -}, -{ - "type": "node", - "id": 1667662152, - "lat": 52.4006958, - "lon": -1.5849919, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV4 347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1667709801, - "lat": 52.1132704, - "lon": -2.3303334, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:apertures": "1", - "post_box:manufacturer": "WT Allen & Co. London", - "post_box:type": "wall", - "postal_code": "WR14", - "ref": "WR14 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS;survey;bing" - } -}, -{ - "type": "node", - "id": 1667709812, - "lat": 52.1218708, - "lon": -2.3333544, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Post Office", - "post_box:apertures": "1", - "post_box:manufacturer": "no", - "post_box:type": "lamp", - "ref": "WR14 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1667709977, - "lat": 52.1376472, - "lon": -2.3320984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "WR14", - "ref": "WR14 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1667709996, - "lat": 52.1551707, - "lon": -2.3238577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "fixme": "Need to see whether this is marked RM or PO.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "WR13", - "ref": "WR13 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1667718573, - "lat": 55.9461182, - "lon": -2.9455082, - "tags": { - "amenity": "post_box", - "ref": "EH33 323" - } -}, -{ - "type": "node", - "id": 1667745280, - "lat": 55.9441897, - "lon": -2.9532330, - "tags": { - "amenity": "post_box", - "ref": "EH33 302" - } -}, -{ - "type": "node", - "id": 1667763540, - "lat": 55.9373157, - "lon": -2.9613547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH33 235", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1667773784, - "lat": 55.9295581, - "lon": -2.9204190, - "tags": { - "amenity": "post_box", - "ref": "EH33 324" - } -}, -{ - "type": "node", - "id": 1667792818, - "lat": 55.9396562, - "lon": -2.9411215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH33 359" - } -}, -{ - "type": "node", - "id": 1667800888, - "lat": 55.9404062, - "lon": -2.9075482, - "tags": { - "amenity": "post_box", - "ref": "EH33 348" - } -}, -{ - "type": "node", - "id": 1667804065, - "lat": 52.1246261, - "lon": -2.3254612, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "WR14", - "ref": "WR14 49", - "source": "GPS Waypoint" - } -}, -{ - "type": "node", - "id": 1667804194, - "lat": 52.1288246, - "lon": -2.3129475, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "WR14", - "ref": "WR14 78", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1667804295, - "lat": 52.1301200, - "lon": -2.3334247, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "WR14 134", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1667804326, - "lat": 52.1314042, - "lon": -2.3083545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "historic_operator": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "WR14", - "ref": "WR14 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Waypoint;survey;bing" - } -}, -{ - "type": "node", - "id": 1667814769, - "lat": 55.9418164, - "lon": -2.9076033, - "tags": { - "amenity": "post_box", - "ref": "EH33 325" - } -}, -{ - "type": "node", - "id": 1667844502, - "lat": 55.9113992, - "lon": -2.8879239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH33 221" - } -}, -{ - "type": "node", - "id": 1667849360, - "lat": 55.9098645, - "lon": -2.8955578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH33 300", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1667862064, - "lat": 55.8571661, - "lon": -4.2460790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G1 371", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1667874228, - "lat": 53.7746640, - "lon": -1.8605487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1667899270, - "lat": 52.4004161, - "lon": -1.5951832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1667998123, - "lat": 52.4057779, - "lon": -1.5126044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "description": "Left aperture for stamped mail; Right aperture for franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV1 13;CV1 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1667998158, - "lat": 52.4092577, - "lon": -1.5138599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV1 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1667998169, - "lat": 52.4092417, - "lon": -1.5138276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CV1 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1668152187, - "lat": 54.9272399, - "lon": -1.9252099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 106" - } -}, -{ - "type": "node", - "id": 1668234874, - "lat": 52.5188149, - "lon": -0.2530555, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1668241209, - "lat": 52.5215192, - "lon": -0.2569085, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1668246711, - "lat": 52.5166109, - "lon": -0.2627906, - "tags": { - "amenity": "post_box", - "mapillary": "316706429890481", - "post_box:type": "pillar", - "survey:date": "2020-02-14" - } -}, -{ - "type": "node", - "id": 1668417862, - "lat": 52.4699625, - "lon": 0.9607263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NR16 1648D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1668503208, - "lat": 53.4252809, - "lon": -3.0403902, - "tags": { - "amenity": "post_box", - "description": "QE II pole mounted post box CH45 265 on Strathcona Road, Wallasey, near junction with Withens Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CH45 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Strathcona Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 1668503209, - "lat": 53.4240310, - "lon": -3.0474737, - "tags": { - "amenity": "post_box", - "description": "Victorian postbox CH45 266 by Handyside on Seaview Road near to Thirlmere Drive.", - "manufacturer": "Andrew Handyside & Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 266", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box near Thirlmere Drive.jpg" - } -}, -{ - "type": "node", - "id": 1668503210, - "lat": 53.4282373, - "lon": -3.0393799, - "tags": { - "amenity": "post_box", - "description": "Victorian wall mounted post box CH45 218 on Zig Zag Road near junction of Penkett Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH45 218", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Zig Zag Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 1668838236, - "lat": 50.4518323, - "lon": -4.4552702, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1668865728, - "lat": 51.2418553, - "lon": -2.5129959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1668928256, - "lat": 55.8518680, - "lon": -4.3419411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "operator": "Royal Mail", - "ref": "G52 1111" - } -}, -{ - "type": "node", - "id": 1668977530, - "lat": 52.0120368, - "lon": -1.3225199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX17 1027", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1668978103, - "lat": 52.0171213, - "lon": -1.3096219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX17 1123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1668978281, - "lat": 52.0177528, - "lon": -1.3014691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX17 1133", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1668986669, - "lat": 55.9050603, - "lon": -2.7519930, - "tags": { - "amenity": "post_box", - "ref": "EH41 330" - } -}, -{ - "type": "node", - "id": 1668991280, - "lat": 55.9033763, - "lon": -2.7461726, - "tags": { - "amenity": "post_box", - "name": "Gifford Post Office", - "ref": "EH41 329" - } -}, -{ - "type": "node", - "id": 1668993266, - "lat": 55.8187729, - "lon": -4.2981858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G43 900", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1669012842, - "lat": 55.9532018, - "lon": -2.7850399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 297" - } -}, -{ - "type": "node", - "id": 1669263859, - "lat": 53.4207385, - "lon": -3.0455555, - "tags": { - "amenity": "post_box", - "description": "QE II double aperture type C post box CH45 430 and CH45 9430 on Seaview Road opposite Silverlea Avenue- Royal Mail call this \"Capitol\" although the cinema hasn't been called that for years.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CH45", - "ref": "CH45 430;CH45 9430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Seaview Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 1669263865, - "lat": 53.4303791, - "lon": -3.0541708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II post box CH45 184 at the junction of Hoseside Road, Grove Road and Rockland Road.", - "old_post_box:type": "pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH45 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Hoseside Road.jpg" - } -}, -{ - "type": "node", - "id": 1669263869, - "lat": 53.4277765, - "lon": -3.0522141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "QE II post box CH45 302 on Seaview Road, Wallasey, near to Malpas Road. Royal Mail have this as being at Malpas Road Post Office, but it has obviously long gone.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Malpas Road.jpg" - } -}, -{ - "type": "node", - "id": 1669327750, - "lat": 52.0238877, - "lon": 0.1671492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB11 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1669334178, - "lat": 53.7070767, - "lon": -1.6898622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 144" - } -}, -{ - "type": "node", - "id": 1669438964, - "lat": 53.4325515, - "lon": -3.0705688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "QE II post box CH45 254 by Carron Company at junction of Mockbeggar Drive and Harrison Drive, Wallasey Village. Royal Mail have this as King's Parade, but that is more towards the Mersey estuary", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Harrison Drive, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 1669446155, - "lat": 55.0795973, - "lon": -2.1349204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "name": "Barrasford Park", - "operator": "Royal Mail", - "ref": "NE48 176" - } -}, -{ - "type": "node", - "id": 1669452574, - "lat": 55.0734940, - "lon": -2.0739520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1669499822, - "lat": 52.4192502, - "lon": -2.4156529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "DY12 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1669575751, - "lat": 52.4268900, - "lon": -1.4416140, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1669585482, - "lat": 52.4298306, - "lon": -1.4466672, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1669641010, - "lat": 55.3282475, - "lon": -2.7366494, - "tags": { - "amenity": "post_box", - "ref": "TD9 154", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1669988473, - "lat": 52.0156385, - "lon": -1.3142223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX17 1036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1670116898, - "lat": 55.9407257, - "lon": -2.9518798, - "tags": { - "amenity": "post_box", - "ref": "EH33 322" - } -}, -{ - "type": "node", - "id": 1670119534, - "lat": 55.9408168, - "lon": -2.9478340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "371634614269444", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH33 326", - "source": "Bing;survey", - "survey:date": "2020-07-17" - } -}, -{ - "type": "node", - "id": 1670131632, - "lat": 55.9129623, - "lon": -2.9399866, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH33 320", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1670138842, - "lat": 50.7121539, - "lon": -3.5467824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX2 221" - } -}, -{ - "type": "node", - "id": 1670157273, - "lat": 55.9097439, - "lon": -2.9446931, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH33 290D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1670228603, - "lat": 50.7124051, - "lon": -3.5376497, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1670235139, - "lat": 51.4795448, - "lon": -2.5948029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1670550521, - "lat": 54.3276713, - "lon": -2.7284707, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 173" - } -}, -{ - "type": "node", - "id": 1670550522, - "lat": 54.3156128, - "lon": -2.7568915, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 19" - } -}, -{ - "type": "node", - "id": 1670696165, - "lat": 51.6417748, - "lon": -2.0129732, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1670696240, - "lat": 51.6634808, - "lon": -2.1126342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1670698431, - "lat": 52.4386586, - "lon": 0.9323494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR16 1635", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1670722476, - "lat": 52.9563509, - "lon": -1.1351444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "image": "https://www.mapillary.com/map/im/PYYu5Sd7F6wK45xrdzAZIg", - "mail:franked": "only", - "opening_hours": "Mo-Fr 11:00-18:30", - "post_box:type": "meter", - "ref": "NG3 5", - "ref:GB:uprn": "10015840121", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1670752067, - "lat": 52.1083855, - "lon": -2.3120243, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "historic_operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:manufacturer": "Machan", - "post_box:type": "pillar", - "ref": "WR14 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1670752105, - "lat": 52.1267683, - "lon": -2.3240032, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "WR14 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Waypoint" - } -}, -{ - "type": "node", - "id": 1670845992, - "lat": 50.8518371, - "lon": -0.7856670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP14D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO19 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1670856451, - "lat": 55.9253640, - "lon": -2.8792049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH33 234", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1670888226, - "lat": 55.9127200, - "lon": -2.9461715, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH33 275D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1670904854, - "lat": 53.4012782, - "lon": -2.0480129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SK6 148" - } -}, -{ - "type": "node", - "id": 1670905991, - "lat": 53.4032400, - "lon": -2.0510566, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1670963295, - "lat": 53.7124871, - "lon": -1.7217943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 146" - } -}, -{ - "type": "node", - "id": 1670963319, - "lat": 53.7149397, - "lon": -1.7258620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1671085216, - "lat": 52.2096708, - "lon": -4.1946265, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1671282054, - "lat": 52.4207466, - "lon": -1.5156199, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1671341974, - "lat": 52.3008636, - "lon": -1.5416488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1671551239, - "lat": 51.1964911, - "lon": 0.2078547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN11 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1671610436, - "lat": 56.0530640, - "lon": -2.6991727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-10", - "collection_times": "Mo-Fr 14:45; Sa 11:30", - "colour": "red", - "drive_through": "no", - "indoor": "yes", - "note": "Postbox only accessible during store opening hours", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH39 188", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1671940931, - "lat": 51.3073864, - "lon": -0.2991592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT21 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1671942149, - "lat": 51.3093686, - "lon": -0.3084685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT21 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1671961601, - "lat": 50.4215452, - "lon": -5.0554156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1671963650, - "lat": 50.4147021, - "lon": -5.0723538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 67D" - } -}, -{ - "type": "node", - "id": 1672239974, - "lat": 55.9155269, - "lon": -3.2133148, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times updated 2018-04-30. Edward VII era box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 239D", - "royal_cypher": "EVIIR", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1672239977, - "lat": 55.9172588, - "lon": -3.2246527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "EH10 243D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1672241951, - "lat": 55.9548051, - "lon": -2.9786302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH32 152", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1672316829, - "lat": 55.9413557, - "lon": -2.9598687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "EH33 327" - } -}, -{ - "type": "node", - "id": 1672763507, - "lat": 51.1932321, - "lon": -0.1012532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1672763848, - "lat": 51.2295897, - "lon": -0.1311269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1672815754, - "lat": 51.0877484, - "lon": -3.0272886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "fixme": "resurvey to see if box number can be found", - "image": "http://www.flickr.com/photos/30208304@N03/6977588993", - "note": "Although a box number (for ref=* key) mis not apparent on the image of the collection plate, it's probably hiding under the frame at the bottom", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1672825438, - "lat": 51.0437205, - "lon": -3.0910158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1672825439, - "lat": 51.0394757, - "lon": -3.0922470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672848528, - "lat": 53.3945138, - "lon": -2.1479929, - "tags": { - "addr:city": "Stockport", - "addr:housenumber": "133", - "addr:street": "Buxton Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK2 30" - } -}, -{ - "type": "node", - "id": 1672855398, - "lat": 51.6742520, - "lon": -3.8096700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1672856513, - "lat": 53.4052132, - "lon": -2.1589208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SK1 6", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK1 6D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1672857243, - "lat": 51.0214046, - "lon": -2.8155547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TA10 245", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1672875705, - "lat": 50.8362743, - "lon": -3.0741249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1672875707, - "lat": 51.0170843, - "lon": -2.9748754, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 432D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672875712, - "lat": 50.8249701, - "lon": -3.0257932, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1672875713, - "lat": 51.0043001, - "lon": -2.9722557, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 122D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1672875715, - "lat": 51.0208838, - "lon": -3.0194336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1672875719, - "lat": 50.8584682, - "lon": -3.1158390, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX14 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672875720, - "lat": 50.9138165, - "lon": -3.0226538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA20 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672875721, - "lat": 51.0020475, - "lon": -3.0244725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672875724, - "lat": 51.0090794, - "lon": -3.0251479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1672875727, - "lat": 50.8798406, - "lon": -3.1291687, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX14 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672875728, - "lat": 50.9533151, - "lon": -2.9247006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1672875729, - "lat": 50.9075520, - "lon": -3.1208055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1672875731, - "lat": 50.8726759, - "lon": -3.1320340, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX14 485" - } -}, -{ - "type": "node", - "id": 1672875733, - "lat": 50.9900509, - "lon": -3.0769155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1672875734, - "lat": 50.9710692, - "lon": -2.9234418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1672875735, - "lat": 50.9951366, - "lon": -3.0519449, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA3 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1672875737, - "lat": 50.9332617, - "lon": -3.0105446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA20 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1673021849, - "lat": 51.1620758, - "lon": 0.3242314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1673287885, - "lat": 53.2848854, - "lon": -3.0500116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH64 4760", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1673386316, - "lat": 52.4342620, - "lon": 0.9354315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "NR16 1649", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1673386381, - "lat": 52.4358353, - "lon": 0.9380336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "NR16 1657", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1673422710, - "lat": 52.4364287, - "lon": 0.8859637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "lamp", - "ref": "NR16 1654", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1673544727, - "lat": 52.5320044, - "lon": -1.8304502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "A faded sticker has been placed over the box number. The old number looks like 502 and the new 282 but both could be incorrect", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B24", - "ref": "B24 282", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1673573992, - "lat": 55.9456830, - "lon": -2.9620165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH33 318" - } -}, -{ - "type": "node", - "id": 1673578315, - "lat": 55.9220028, - "lon": -2.9672312, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH33 193" - } -}, -{ - "type": "node", - "id": 1673658832, - "lat": 53.8402772, - "lon": -1.7812969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1673672363, - "lat": 51.2495935, - "lon": 0.1749101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "colour": "Red", - "ref": "TN14 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1673688992, - "lat": 55.9422729, - "lon": -3.0215169, - "tags": { - "amenity": "post_box", - "ref": "EH21 274" - } -}, -{ - "type": "node", - "id": 1673701969, - "lat": 53.6183546, - "lon": -1.7087748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 462D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1673707027, - "lat": 51.3615340, - "lon": -0.0789758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing, local knowledge;survey" - } -}, -{ - "type": "node", - "id": 1673713836, - "lat": 51.5834708, - "lon": -2.8330451, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1673906658, - "lat": 50.9991975, - "lon": -1.3961256, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO53 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1674025079, - "lat": 51.5242834, - "lon": -0.1822782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "W9 13", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1674336675, - "lat": 50.8523345, - "lon": 0.4578503, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Glenleigh Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 72", - "ref:GB:uprn": "10015423387", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Glenleigh Ave TN3972.jpg" - } -}, -{ - "type": "node", - "id": 1674393725, - "lat": 51.3062215, - "lon": -0.2645699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1674434586, - "lat": 51.2788603, - "lon": -0.2740028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT18 102", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1674474973, - "lat": 51.5779364, - "lon": -2.8505790, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1674488235, - "lat": 51.5220674, - "lon": -0.1821136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W9 2" - } -}, -{ - "type": "node", - "id": 1674565859, - "lat": 53.4305582, - "lon": -1.3378226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S65 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1674837589, - "lat": 55.8334567, - "lon": -3.0891886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH23 207", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1674992793, - "lat": 52.6225070, - "lon": -1.1549587, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1674992796, - "lat": 52.6250416, - "lon": -1.1526997, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1675479055, - "lat": 53.6207172, - "lon": -2.1324938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OL16 47D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1675613373, - "lat": 50.9105785, - "lon": -3.4482080, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1675743182, - "lat": 55.9134923, - "lon": -3.2440172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "573757220263817", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 343", - "survey:date": "2020-08-03" - } -}, -{ - "type": "node", - "id": 1675743185, - "lat": 55.9234034, - "lon": -3.2439546, - "tags": { - "amenity": "post_box", - "ref": "EH14 361" - } -}, -{ - "type": "node", - "id": 1675773651, - "lat": 55.9002782, - "lon": -3.2302877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 627D" - } -}, -{ - "type": "node", - "id": 1675773661, - "lat": 55.9015515, - "lon": -3.2210483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH10 616", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1675773664, - "lat": 55.9021821, - "lon": -3.2131404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH10 427", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1675837007, - "lat": 52.3708415, - "lon": -1.4925757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1676024306, - "lat": 50.9725505, - "lon": 0.0122454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 502" - } -}, -{ - "type": "node", - "id": 1676055387, - "lat": 51.3690302, - "lon": -0.2659898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1676056907, - "lat": 52.1226897, - "lon": -2.5890906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HR1 273" - } -}, -{ - "type": "node", - "id": 1676258702, - "lat": 52.0839802, - "lon": -2.6580784, - "tags": { - "amenity": "post_box", - "fixme": "Box moved from nearby. Ref needs checking.", - "operator": "Royal Mail", - "ref": "HR1 57" - } -}, -{ - "type": "node", - "id": 1676258736, - "lat": 52.0960021, - "lon": -2.6533927, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1676720438, - "lat": 51.0561376, - "lon": -1.7983265, - "tags": { - "amenity": "post_box", - "ref": "SP2 163" - } -}, -{ - "type": "node", - "id": 1677053607, - "lat": 55.9011973, - "lon": -3.4068302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "846487150260952", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EH27 58", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 1677096244, - "lat": 55.8989362, - "lon": -3.4418386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH27 66D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1677100958, - "lat": 55.8892291, - "lon": -3.4188771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH27 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1677108074, - "lat": 52.1969571, - "lon": -1.7013404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1677153705, - "lat": 55.9126848, - "lon": -3.2283598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH13 617", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1677210002, - "lat": 52.1182919, - "lon": -2.6026402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR1 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1677210082, - "lat": 52.1840947, - "lon": -2.5171543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR7 994", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1677210087, - "lat": 52.1871212, - "lon": -2.5132724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR7 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1677703130, - "lat": 53.0877600, - "lon": -1.4821921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 924" - } -}, -{ - "type": "node", - "id": 1678301711, - "lat": 50.7139701, - "lon": -3.5391370, - "tags": { - "amenity": "post_box", - "ref": "EX2 238" - } -}, -{ - "type": "node", - "id": 1678305266, - "lat": 53.8410690, - "lon": -1.7885591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1678321474, - "lat": 50.7212460, - "lon": -3.5388259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "436463028267293", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX4 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-29" - } -}, -{ - "type": "node", - "id": 1678387800, - "lat": 51.8618987, - "lon": 0.9600518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO7 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1678488342, - "lat": 50.1609515, - "lon": -5.2131071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 1678645978, - "lat": 51.6069959, - "lon": -0.1542155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "name": "Tesco - Colney Hatch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N12 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1678720811, - "lat": 56.1971365, - "lon": -3.9531167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK15 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1679011792, - "lat": 50.4165542, - "lon": -5.0707862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR7 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1679593671, - "lat": 50.7083736, - "lon": -3.4289183, - "tags": { - "amenity": "post_box", - "mapillary": "139588694857728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-29" - } -}, -{ - "type": "node", - "id": 1679617528, - "lat": 50.7080884, - "lon": -3.4479575, - "tags": { - "amenity": "post_box", - "ref": "EX5 507D" - } -}, -{ - "type": "node", - "id": 1680052363, - "lat": 52.1134104, - "lon": -4.0885435, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680056518, - "lat": 52.0442989, - "lon": -2.0050612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "WR11 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1680143016, - "lat": 55.0499573, - "lon": -1.7359187, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-24", - "postal_code": "NE20 9EQ", - "ref": "NE20 702", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1680143696, - "lat": 55.0533561, - "lon": -1.7676296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1174373039980242", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "NE20 0DD", - "ref": "NE20 229", - "survey:date": "2022-04-27" - } -}, -{ - "type": "node", - "id": 1680143819, - "lat": 55.0716104, - "lon": -1.8166311, - "tags": { - "amenity": "post_box", - "postal_code": "NE20 0EB", - "ref": "NE20 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680271964, - "lat": 52.9534371, - "lon": -1.1700637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 168", - "ref:GB:uprn": "10015416182", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680519537, - "lat": 52.9817653, - "lon": -1.1527700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 173", - "ref:GB:uprn": "10015301931", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680519640, - "lat": 52.9827914, - "lon": -1.1634285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG5 263", - "ref:GB:uprn": "10015477876", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680519743, - "lat": 52.9859073, - "lon": -1.1594099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "latest_survey_date": "2015-04-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG5 268", - "ref:GB:uprn": "10015398595", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680519937, - "lat": 52.9873871, - "lon": -1.1460266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 211", - "ref:GB:uprn": "10015355634", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680637659, - "lat": 53.6195985, - "lon": -1.7169864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 89D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680643194, - "lat": 53.6180631, - "lon": -1.7106264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680680504, - "lat": 51.0480034, - "lon": -1.5831637, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1680685215, - "lat": 53.6131586, - "lon": -1.6942509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680892588, - "lat": 54.7299715, - "lon": -2.5989282, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 252", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1680920181, - "lat": 51.7125180, - "lon": -0.8757514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP27 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 1680920256, - "lat": 51.6943800, - "lon": -0.8934112, - "tags": { - "amenity": "post_box", - "ref": "OX39 591" - } -}, -{ - "type": "node", - "id": 1680928249, - "lat": 54.7467370, - "lon": -2.6072714, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 184", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1681404488, - "lat": 53.5975325, - "lon": -1.8528387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 311D" - } -}, -{ - "type": "node", - "id": 1681555582, - "lat": 52.1807428, - "lon": -1.9838148, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR11 103", - "source": "observation;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1681563765, - "lat": 52.1081254, - "lon": -1.6214134, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1681569379, - "lat": 51.5098235, - "lon": -0.2034959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "W11 16" - } -}, -{ - "type": "node", - "id": 1681574652, - "lat": 52.0968039, - "lon": -1.5863232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 126", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1681679296, - "lat": 53.6176550, - "lon": -1.6966151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1681884574, - "lat": 53.8386922, - "lon": -1.7739378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1682038072, - "lat": 55.5995876, - "lon": -2.7268033, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TD6 85" - } -}, -{ - "type": "node", - "id": 1682078797, - "lat": 54.8954520, - "lon": -2.4997163, - "tags": { - "amenity": "post_box", - "ref": "CA8 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1682078850, - "lat": 54.9294298, - "lon": -2.4881314, - "tags": { - "amenity": "post_box", - "ref": "NE49 132", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1682158672, - "lat": 55.9288040, - "lon": -2.6606282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH41 306", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1682179259, - "lat": 54.2145103, - "lon": -5.8873155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1682228502, - "lat": 55.9527597, - "lon": -2.7626390, - "tags": { - "amenity": "post_box", - "ref": "EH41 332" - } -}, -{ - "type": "node", - "id": 1682228521, - "lat": 55.9560280, - "lon": -2.7747653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 301" - } -}, -{ - "type": "node", - "id": 1682413896, - "lat": 52.1140284, - "lon": -1.5890307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "CV37 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1682907872, - "lat": 51.1616973, - "lon": 0.2650175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1683004916, - "lat": 52.0931264, - "lon": -1.6883218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1683019203, - "lat": 55.9590378, - "lon": -2.7763192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 298" - } -}, -{ - "type": "node", - "id": 1683067026, - "lat": 50.8885738, - "lon": 0.5009844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1683087193, - "lat": 51.0273687, - "lon": 0.6598800, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1683276693, - "lat": 55.5985461, - "lon": -2.7203046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "name": "Melrose Delivery Office", - "operator": "Royal Mail", - "ref": "TD6 56", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1683293611, - "lat": 55.6063361, - "lon": -2.7304977, - "tags": { - "amenity": "post_box", - "name": "Gattonside", - "ref": "TD6 69" - } -}, -{ - "type": "node", - "id": 1683312562, - "lat": 55.5973123, - "lon": -2.7198323, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TD6 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1683351498, - "lat": 55.5709521, - "lon": -2.6457859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD6 82", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1683582143, - "lat": 50.9879107, - "lon": -0.6345397, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1683598586, - "lat": 50.9922915, - "lon": -0.6093262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I have moved this icon to the correct location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 1683718621, - "lat": 50.7852406, - "lon": -1.0835264, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO5 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1683726601, - "lat": 50.8112693, - "lon": 0.0081204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-03-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN10 647D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1683726657, - "lat": 50.8137870, - "lon": -0.0065537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN7 571", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN7 571D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 1683726832, - "lat": 50.8524674, - "lon": -0.0098887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 574D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1683726891, - "lat": 50.8568614, - "lon": -0.0224159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN7 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1684511816, - "lat": 51.5137416, - "lon": -0.0923586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC4N 402D;EC4N 4021D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1684560891, - "lat": 52.0226675, - "lon": -1.9764188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR11 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1684697342, - "lat": 53.4232463, - "lon": -2.5286101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1684702949, - "lat": 53.4830514, - "lon": -2.5567950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1684709941, - "lat": 51.5152857, - "lon": -0.0932938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2V 228;EC2V 2281", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1684713278, - "lat": 51.9902457, - "lon": -1.9318910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL54 132", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1684799653, - "lat": 52.1059685, - "lon": -2.8401327, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR4 68" - } -}, -{ - "type": "node", - "id": 1684872409, - "lat": 51.5705295, - "lon": -1.7877158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 113" - } -}, -{ - "type": "node", - "id": 1684872522, - "lat": 51.5751488, - "lon": -1.7939479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 237", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1685217741, - "lat": 53.9245373, - "lon": -1.8264620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS29 810", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1685217742, - "lat": 53.9240432, - "lon": -1.8398452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS29 813", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1685251574, - "lat": 51.8875774, - "lon": -2.0803059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1685253283, - "lat": 50.8570203, - "lon": -1.0428624, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-27", - "old_ref": "PO7 273", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 273D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1685253285, - "lat": 50.8509363, - "lon": -1.0605435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO6 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1685253287, - "lat": 50.8625003, - "lon": -1.0418163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1685253290, - "lat": 50.8561958, - "lon": -1.0493425, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-27", - "old_ref": "PO7 235", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 235D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1685253291, - "lat": 50.8612031, - "lon": -1.0383067, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-31", - "old_ref": "PO7 139", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1685383208, - "lat": 51.6794166, - "lon": -4.1568737, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1685835189, - "lat": 51.2445717, - "lon": -0.1720310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH1 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1685901578, - "lat": 52.1554938, - "lon": -1.9524117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR11 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1685961002, - "lat": 53.4674773, - "lon": -2.2488627, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1686021513, - "lat": 52.3995956, - "lon": -1.5302549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "CV5", - "ref": "CV5 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1686261143, - "lat": 55.8561267, - "lon": -4.2559217, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G1 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1686365895, - "lat": 50.3483602, - "lon": -3.5729072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ6 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1686463495, - "lat": 51.5187130, - "lon": -0.0929812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "level": "2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EC2Y 2031", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1686463496, - "lat": 51.5187193, - "lon": -0.0930103, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-15", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "level": "2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EC2Y 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1686475101, - "lat": 53.6805003, - "lon": -1.7409934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1686475238, - "lat": 53.7037060, - "lon": -1.6566427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF13 26" - } -}, -{ - "type": "node", - "id": 1687032096, - "lat": 51.5570675, - "lon": -0.1749767, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NW3 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1687071862, - "lat": 52.6479311, - "lon": 0.9418953, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1687130208, - "lat": 51.5302425, - "lon": -2.5978992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "opening_hours": "Mo 08:00-00:00; Tu-Fr 00:00-00:00; Sa 00:00-22:00; Su 10:00-16:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS34 669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1687373065, - "lat": 52.6793409, - "lon": 0.9589014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2002D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1687394678, - "lat": 53.3726826, - "lon": -2.1835595, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SK8 41", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 1687402065, - "lat": 52.0283651, - "lon": -1.5684792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1687467344, - "lat": 52.4021953, - "lon": -1.5182127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1687590758, - "lat": 55.5686686, - "lon": -2.6491730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:00, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD6 81", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1687603801, - "lat": 53.2281457, - "lon": -4.1344734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1687625884, - "lat": 55.5709259, - "lon": -2.6401278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "TD6 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1687641073, - "lat": 55.5998626, - "lon": -2.6964187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD6 77" - } -}, -{ - "type": "node", - "id": 1687653975, - "lat": 55.5979808, - "lon": -2.7141404, - "tags": { - "amenity": "post_box", - "ref": "TD6 59" - } -}, -{ - "type": "node", - "id": 1687665535, - "lat": 55.5953786, - "lon": -2.7205569, - "tags": { - "amenity": "post_box", - "ref": "TD6 64", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1687671209, - "lat": 54.6029036, - "lon": -3.1655707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1576137909794410", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CA12 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-08-16" - } -}, -{ - "type": "node", - "id": 1687672955, - "lat": 55.5931553, - "lon": -2.7242717, - "tags": { - "amenity": "post_box", - "ref": "TD6 68" - } -}, -{ - "type": "node", - "id": 1687728488, - "lat": 51.5258095, - "lon": -0.1870179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "W9 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1687826462, - "lat": 50.9461247, - "lon": -1.1319526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-01-10", - "old_ref": "SO32 24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO32 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1687839017, - "lat": 53.6785440, - "lon": -1.7767628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1687839109, - "lat": 53.6822855, - "lon": -1.7988707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1688849350, - "lat": 52.1311408, - "lon": -2.3145638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "WR14", - "ref": "WR14 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1688887893, - "lat": 52.8558898, - "lon": -2.1334797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1688950244, - "lat": 52.0524861, - "lon": 0.6825352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "gps survey and Bing" - } -}, -{ - "type": "node", - "id": 1688988140, - "lat": 52.8180919, - "lon": -2.1279011, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST16 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1688992801, - "lat": 52.8300642, - "lon": -2.1096939, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 1600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1690137627, - "lat": 55.5283914, - "lon": -2.3573488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1311856769208893", - "name": "Linton Mill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD5 17", - "survey:date": "2020-08-06" - } -}, -{ - "type": "node", - "id": 1690146256, - "lat": 55.6203193, - "lon": -2.5593690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD5 101", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1690172264, - "lat": 55.5994157, - "lon": -2.4320335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD5 117" - } -}, -{ - "type": "node", - "id": 1690288284, - "lat": 53.1738169, - "lon": -2.8119877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 407D" - } -}, -{ - "type": "node", - "id": 1690443067, - "lat": 52.1293805, - "lon": -2.3179670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "postal_code": "WR14", - "ref": "WR14 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Waypoint" - } -}, -{ - "type": "node", - "id": 1690468012, - "lat": 52.0257560, - "lon": -1.9452892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR12 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1690709569, - "lat": 52.4711043, - "lon": 0.6112024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "IP27 3304", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1690709875, - "lat": 52.4690212, - "lon": 0.6102200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 10:30", - "post_box:type": "pillar", - "ref": "IP27 8206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1690768984, - "lat": 50.7928933, - "lon": -0.9958189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1690768990, - "lat": 50.7920108, - "lon": -1.0038803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO11 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1690769066, - "lat": 50.7951177, - "lon": -1.0237823, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "PO11 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1690800863, - "lat": 55.8048347, - "lon": -4.2146676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "ref": "G45 594" - } -}, -{ - "type": "node", - "id": 1690800878, - "lat": 55.8426987, - "lon": -4.2630452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G41 405" - } -}, -{ - "type": "node", - "id": 1690800882, - "lat": 55.8475828, - "lon": -4.2028183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G40 89" - } -}, -{ - "type": "node", - "id": 1690800891, - "lat": 55.8503755, - "lon": -4.2567750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "note": "Sat collection time partly obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G5 38" - } -}, -{ - "type": "node", - "id": 1690824179, - "lat": 55.8488619, - "lon": -4.2508655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "ref": "G5 202" - } -}, -{ - "type": "node", - "id": 1691235907, - "lat": 52.9542928, - "lon": -1.0859687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG4 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1691255627, - "lat": 52.9618609, - "lon": -1.1090087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 275D", - "ref:GB:uprn": "10015275898", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1691255701, - "lat": 52.9631603, - "lon": -1.1060642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 534D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1691255832, - "lat": 52.9645087, - "lon": -1.1136769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 202D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 1691284130, - "lat": 52.9656769, - "lon": -1.1208184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "image": "https://www.mapillary.com/map/im/BhAodLzlTT09oWxndGiJtA", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 26", - "ref:GB:uprn": "10015345351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 1691284153, - "lat": 52.9662657, - "lon": -1.1191015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "image": "https://www.mapillary.com/map/im/Veaqd_ghsmkON9kz1tKYHg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 484", - "ref:GB:uprn": "10015308724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 1691646924, - "lat": 52.4872475, - "lon": 0.6785451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "post_box:type": "wall", - "ref": "IP26 3303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1691652375, - "lat": 52.7710948, - "lon": -1.2049016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing: survey" - } -}, -{ - "type": "node", - "id": 1691656242, - "lat": 52.5019039, - "lon": 0.6854331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "note": "Collection plate on box says \"This is postbox no. 3409\". ref a guess based on likely postcode area.", - "post_box:type": "lamp", - "ref": "IP26 3409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1691662112, - "lat": 52.4956437, - "lon": 0.7050689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP26 3237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1691823177, - "lat": 52.5719613, - "lon": 1.3241493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR14 1461D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1691828172, - "lat": 52.6203798, - "lon": 1.3886319, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1691984114, - "lat": 51.9035049, - "lon": -5.0551831, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1692179099, - "lat": 54.0152720, - "lon": -1.4615456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1692257447, - "lat": 50.8004713, - "lon": -1.0444790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1692289662, - "lat": 56.6054584, - "lon": -3.6415072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 151", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1693181049, - "lat": 52.1401693, - "lon": -2.0664003, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR10 261D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1693260510, - "lat": 52.1333775, - "lon": -2.0721825, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "historic_operator": "Royal Mail", - "note": "Post Office is demolished (2012-07). Need to keep an eye on this PB lest it gets (re)moved.", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WR10 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;survey;gps" - } -}, -{ - "type": "node", - "id": 1693269840, - "lat": 52.1533076, - "lon": -2.0932144, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;survey;gps" - } -}, -{ - "type": "node", - "id": 1693352600, - "lat": 51.8253473, - "lon": -2.3479956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL2 72", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1693920714, - "lat": 50.8397102, - "lon": -1.0490354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Stroudley Avenue, Drayton", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1693946897, - "lat": 50.8461906, - "lon": -1.0665034, - "tags": { - "amenity": "post_box", - "collection_plate": "Not shown", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 3501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1693946899, - "lat": 50.8435223, - "lon": -1.0675092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1693946901, - "lat": 50.8462024, - "lon": -1.0665034, - "tags": { - "amenity": "post_box", - "collection_plate": "Not shown", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PO6 3502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1693951704, - "lat": 50.8119716, - "lon": -1.0876857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2016-08-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO2 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1694486351, - "lat": 52.0581611, - "lon": -2.0098517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR10 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1694570093, - "lat": 51.7826420, - "lon": -2.1266566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL6 82", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1694666341, - "lat": 52.0994537, - "lon": -2.0741166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR10 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1694704794, - "lat": 51.8222231, - "lon": 0.5666326, - "tags": { - "amenity": "post_box", - "note": "built into wall", - "post_box:type": "wall", - "ref": "CM3 144", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1694705726, - "lat": 51.7978033, - "lon": -0.2114099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "AL8 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1694717579, - "lat": 55.9270825, - "lon": -4.3866124, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1694798611, - "lat": 53.4356763, - "lon": -2.0677683, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1694834291, - "lat": 51.0288141, - "lon": 0.0562388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN22 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1695018274, - "lat": 51.4587418, - "lon": -0.2986248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TW10 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Bing and ground survey 25.03.2012" - } -}, -{ - "type": "node", - "id": 1695287586, - "lat": 52.1884320, - "lon": -2.5142884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR7 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1695407254, - "lat": 50.9618084, - "lon": -2.1249611, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP5 333", - "ref:GB:uprn": "10015306432", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1696077830, - "lat": 52.0964079, - "lon": -2.0878849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR10 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1696231365, - "lat": 53.8293620, - "lon": -1.6420884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 412", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1696307386, - "lat": 52.3615621, - "lon": -1.2428113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 219D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1696528282, - "lat": 50.7904327, - "lon": -1.0552779, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1696760961, - "lat": 51.6804770, - "lon": -4.1615106, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1696760969, - "lat": 51.6806932, - "lon": -4.1663815, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1696760985, - "lat": 51.6765586, - "lon": -4.1444786, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1696761053, - "lat": 51.6767823, - "lon": -4.1685344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA15 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1697399874, - "lat": 50.8569870, - "lon": 0.4747867, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Ingrams Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 56", - "ref:GB:uprn": "10015476359", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB Ingrams Avenue TN3956.jpg" - } -}, -{ - "type": "node", - "id": 1697515574, - "lat": 51.8192537, - "lon": -1.9498240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1697547064, - "lat": 51.5238235, - "lon": -0.0149951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 35D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1697839303, - "lat": 52.3660301, - "lon": -1.8043250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1697839877, - "lat": 52.3693419, - "lon": -1.7662018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 769D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1697865552, - "lat": 52.3544528, - "lon": -1.8342970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1698003932, - "lat": 51.3681113, - "lon": -2.1432095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1698117704, - "lat": 51.0190264, - "lon": -0.4489968, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH14 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1698147866, - "lat": 53.3153053, - "lon": -0.9479034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DN22 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1698148592, - "lat": 51.0143394, - "lon": -0.4575604, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "RH14 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1698196085, - "lat": 53.3154301, - "lon": -1.2814228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "S26 950", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1698273186, - "lat": 52.4445439, - "lon": -2.3694288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WV16 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1698588982, - "lat": 52.4486601, - "lon": -2.3822312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "mail:meter": "yes", - "post_box:type": "pillar", - "ref": "WV16 43" - } -}, -{ - "type": "node", - "id": 1698617803, - "lat": 55.8772720, - "lon": -3.4969344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 37", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1698739384, - "lat": 52.9603665, - "lon": -2.3043362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1699325324, - "lat": 55.8782973, - "lon": -2.7275726, - "tags": { - "amenity": "post_box", - "ref": "EH41 308" - } -}, -{ - "type": "node", - "id": 1699382580, - "lat": 55.8617726, - "lon": -4.2190209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "G31", - "ref": "G31 315", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1699400835, - "lat": 55.9557892, - "lon": -2.7884315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH41 295D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1699412814, - "lat": 55.9586797, - "lon": -2.7912076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 289" - } -}, -{ - "type": "node", - "id": 1699420765, - "lat": 55.9575340, - "lon": -2.7849258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH41 288D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1699429639, - "lat": 55.9581962, - "lon": -2.7797760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 287" - } -}, -{ - "type": "node", - "id": 1699441669, - "lat": 55.9592532, - "lon": -2.7952899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 292" - } -}, -{ - "type": "node", - "id": 1699460078, - "lat": 55.9456111, - "lon": -2.8076351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 307" - } -}, -{ - "type": "node", - "id": 1699496435, - "lat": 55.9531904, - "lon": -2.7743830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 294" - } -}, -{ - "type": "node", - "id": 1699533115, - "lat": 55.9599344, - "lon": -2.7715443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 303" - } -}, -{ - "type": "node", - "id": 1699548996, - "lat": 55.9512221, - "lon": -2.7935750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 339" - } -}, -{ - "type": "node", - "id": 1699574160, - "lat": 55.9290438, - "lon": -2.8273037, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-10-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH41 311D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1699579362, - "lat": 55.9534305, - "lon": -3.1157695, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH15 509", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1699579369, - "lat": 55.9536402, - "lon": -3.1153979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH15 643", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1699609420, - "lat": 55.9591421, - "lon": -2.9833189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH32 243" - } -}, -{ - "type": "node", - "id": 1699611613, - "lat": 55.9591240, - "lon": -2.6409591, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH41 315" - } -}, -{ - "type": "node", - "id": 1699821700, - "lat": 52.6362337, - "lon": -1.1615482, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1699885227, - "lat": 50.9381553, - "lon": -1.1763549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1699987342, - "lat": 54.8631669, - "lon": -3.8684277, - "tags": { - "amenity": "post_box", - "ref": "DG7 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1700005924, - "lat": 54.9393737, - "lon": -3.9292280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DG7 3", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1700010852, - "lat": 54.9410834, - "lon": -3.9295619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DG7 12", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1700015437, - "lat": 51.7048023, - "lon": -4.0692872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "SA14 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1700037206, - "lat": 54.8654513, - "lon": -3.7961216, - "tags": { - "amenity": "post_box", - "ref": "DG5 37", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1700041530, - "lat": 50.7298740, - "lon": -3.4877195, - "tags": { - "amenity": "post_box", - "ref": "EX1 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1700250168, - "lat": 50.6723554, - "lon": -2.1618780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 134D", - "ref:GB:uprn": "10015275326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1700264881, - "lat": 51.1155158, - "lon": -0.1899234, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1700703062, - "lat": 52.3844847, - "lon": -2.2507153, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "DY11 625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;memory" - } -}, -{ - "type": "node", - "id": 1700828423, - "lat": 51.7361947, - "lon": 0.4694081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1701001036, - "lat": 52.3675876, - "lon": -2.3979320, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "historic_operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DY14 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1701028310, - "lat": 52.1144392, - "lon": -2.0853097, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1701073692, - "lat": 53.2262446, - "lon": -4.1693848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1701349570, - "lat": 51.3584021, - "lon": -0.1889082, - "tags": { - "amenity": "post_box", - "ref": "SM2 98" - } -}, -{ - "type": "node", - "id": 1701355627, - "lat": 53.4032520, - "lon": -2.1530709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK1 80" - } -}, -{ - "type": "node", - "id": 1701493806, - "lat": 51.4117990, - "lon": -2.2003280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1701616745, - "lat": 53.5500136, - "lon": -1.8386481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "HD9 63D" - } -}, -{ - "type": "node", - "id": 1701678855, - "lat": 51.8541857, - "lon": -2.4789513, - "tags": { - "amenity": "post_box", - "ref": "GL17 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1701823180, - "lat": 53.7961851, - "lon": -1.5645314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 13:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS12 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1701823181, - "lat": 53.7961777, - "lon": -1.5645179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LS12 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1702323313, - "lat": 51.0213996, - "lon": 0.2682126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN20 124D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1702323329, - "lat": 51.0264655, - "lon": 0.2763711, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1702414496, - "lat": 52.7024307, - "lon": 0.9799697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2039D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1702414824, - "lat": 52.7183044, - "lon": 0.9808087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2043" - } -}, -{ - "type": "node", - "id": 1702431419, - "lat": 53.5632329, - "lon": -1.8285161, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1702433197, - "lat": 53.5822332, - "lon": -1.7175120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1702523629, - "lat": 51.4564776, - "lon": -2.6064278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 1391D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1702528973, - "lat": 51.6287715, - "lon": -0.4085151, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1702622744, - "lat": 53.0893375, - "lon": -2.2448679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "ST7 770", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1702755448, - "lat": 51.6730420, - "lon": -4.1590202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1702815336, - "lat": 53.0716109, - "lon": -2.2166008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "ST6 478" - } -}, -{ - "type": "node", - "id": 1702926919, - "lat": 53.0720379, - "lon": -2.1939447, - "tags": { - "addr:city": "Great Chell", - "addr:housenumber": "28", - "addr:postcode": "ST6 6SH", - "addr:street": "Biddulph Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "ref": "ST6 645" - } -}, -{ - "type": "node", - "id": 1703315013, - "lat": 53.4292523, - "lon": -2.3079907, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1703339968, - "lat": 50.8567740, - "lon": -1.2833113, - "tags": { - "amenity": "post_box", - "ref": "SO31 612" - } -}, -{ - "type": "node", - "id": 1703342296, - "lat": 50.8731896, - "lon": -1.2865023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO31 760" - } -}, -{ - "type": "node", - "id": 1703352597, - "lat": 50.8334079, - "lon": -1.2851193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 575", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1703357772, - "lat": 50.8860999, - "lon": -1.3034253, - "tags": { - "amenity": "post_box", - "ref": "SO31 151" - } -}, -{ - "type": "node", - "id": 1703365343, - "lat": 50.8812793, - "lon": -1.3192117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey_2016-08-22" - } -}, -{ - "type": "node", - "id": 1703366073, - "lat": 53.3475907, - "lon": -1.9347233, - "tags": { - "amenity": "post_box", - "ref": "SK23 80" - } -}, -{ - "type": "node", - "id": 1703369749, - "lat": 50.8911755, - "lon": -1.3216851, - "tags": { - "amenity": "post_box", - "ref": "SO31 715" - } -}, -{ - "type": "node", - "id": 1703377420, - "lat": 50.8872855, - "lon": -1.3201242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 769D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1703379428, - "lat": 50.8944972, - "lon": -1.3170969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 422D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1703382868, - "lat": 50.8901336, - "lon": -1.3092203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-02-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO31 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1703391198, - "lat": 50.8483489, - "lon": -1.2964826, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO31 119" - } -}, -{ - "type": "node", - "id": 1704134976, - "lat": 51.8387148, - "lon": -1.3039598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "wall", - "ref": "OX5 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1704206931, - "lat": 51.7893566, - "lon": -0.1805661, - "tags": { - "amenity": "post_box", - "ref": "AL7 263" - } -}, -{ - "type": "node", - "id": 1704563400, - "lat": 52.5166667, - "lon": -2.3876206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "WV15 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1704612567, - "lat": 53.2849278, - "lon": -3.8110297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "391636749589596", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL31 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1704612659, - "lat": 53.2864456, - "lon": -3.8185686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1704612737, - "lat": 53.2939114, - "lon": -3.8298423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL31 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1704612781, - "lat": 53.3007485, - "lon": -3.8356836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LL31 131D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1704719786, - "lat": 51.7775898, - "lon": -3.7586477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA9 582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1704853964, - "lat": 52.2206261, - "lon": -2.4923330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:45", - "operator": "Royal Mail", - "ref": "HR7 414" - } -}, -{ - "type": "node", - "id": 1705077570, - "lat": 50.9537900, - "lon": -1.1740760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1705374639, - "lat": 55.7449238, - "lon": -4.2058100, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1705454716, - "lat": 52.7287861, - "lon": 1.3578290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NR12 1224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1705639635, - "lat": 51.1342267, - "lon": 1.2923698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CT17 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1705818349, - "lat": 57.7191581, - "lon": -3.2990993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IV31 32D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1705887948, - "lat": 54.8344277, - "lon": -4.0508328, - "tags": { - "amenity": "post_box", - "ref": "DG6 55" - } -}, -{ - "type": "node", - "id": 1705914380, - "lat": 54.8373514, - "lon": -4.0504075, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG6 1" - } -}, -{ - "type": "node", - "id": 1705930401, - "lat": 54.8089305, - "lon": -3.9468767, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG6 72", - "royal_cypher": "scottish_crown", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1705942368, - "lat": 55.8417121, - "lon": -4.2406193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "ref": "G5 1420" - } -}, -{ - "type": "node", - "id": 1705951964, - "lat": 54.8152275, - "lon": -4.0453725, - "tags": { - "amenity": "post_box", - "ref": "DG6 83", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1705986098, - "lat": 54.8351141, - "lon": -4.0537251, - "tags": { - "amenity": "post_box", - "ref": "DG6 50", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1706116467, - "lat": 51.8468379, - "lon": 0.9567632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO5 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing; survey; gps", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 1706121092, - "lat": 51.8368138, - "lon": 0.9256282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "note": "in pillar of bricks", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CO5 142", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 1706122704, - "lat": 51.3290111, - "lon": -2.8690418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1007160083694855", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 1706164302, - "lat": 52.2866912, - "lon": -0.6024131, - "tags": { - "amenity": "post_box", - "ref": "NN10 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1706229032, - "lat": 53.3159298, - "lon": -3.8380563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LL30 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706229033, - "lat": 53.3164590, - "lon": -3.8370798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "LL30 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706278076, - "lat": 50.7868197, - "lon": 0.0517392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN9 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706278158, - "lat": 50.8384916, - "lon": -0.0786423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706309308, - "lat": 53.2781871, - "lon": -3.8314973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706384270, - "lat": 52.3991893, - "lon": -2.3645552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:20; Sa 09:00", - "post_box:type": "wall", - "ref": "DY12 87", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1706384284, - "lat": 52.4435259, - "lon": -2.3895188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "wall", - "ref": "WV16 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706384373, - "lat": 52.4451998, - "lon": -2.3803620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WV16 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706384779, - "lat": 52.4523658, - "lon": -2.3848945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "WV16 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706385465, - "lat": 52.4570593, - "lon": -2.3544322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "WV15 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706413923, - "lat": 54.7681907, - "lon": -2.3980053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CA9 254", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-29" - } -}, -{ - "type": "node", - "id": 1706681438, - "lat": 52.4884832, - "lon": 0.7939407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "IP24 3355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706682920, - "lat": 52.4734726, - "lon": 0.9085316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "NR16 1631", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1706694324, - "lat": 52.4538019, - "lon": 0.9099257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR16 1652", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1706723283, - "lat": 55.9540377, - "lon": -2.7691464, - "tags": { - "amenity": "post_box", - "ref": "EH41 293" - } -}, -{ - "type": "node", - "id": 1706760065, - "lat": 55.9029273, - "lon": -2.7428472, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-10-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH41 201D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1706766542, - "lat": 55.9552871, - "lon": -2.7780377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 296", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1706923590, - "lat": 51.5731269, - "lon": -1.8014026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 126" - } -}, -{ - "type": "node", - "id": 1706924212, - "lat": 51.5760078, - "lon": -1.7999805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 40" - } -}, -{ - "type": "node", - "id": 1707014944, - "lat": 51.3070596, - "lon": -0.7734533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1707300755, - "lat": 55.8296842, - "lon": -4.2808798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 796D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1707300759, - "lat": 55.8626507, - "lon": -4.2799411, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1707415917, - "lat": 50.6769851, - "lon": -3.8353031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1707486578, - "lat": 51.7299132, - "lon": 0.6175968, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1707520131, - "lat": 53.2416505, - "lon": -3.8473759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1707536047, - "lat": 51.9208830, - "lon": 0.7623873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1707572759, - "lat": 51.9131740, - "lon": 0.7490808, - "tags": { - "amenity": "post_box", - "note": "approximate position from knowledge", - "operator": "Royal Mail", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 1707572781, - "lat": 51.9193284, - "lon": 0.7763491, - "tags": { - "amenity": "post_box", - "note": "position is approximate from knowledge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 1707572783, - "lat": 51.9436759, - "lon": 0.7534335, - "tags": { - "amenity": "post_box", - "note": "Probable \"Upper Wakes Colne Green\" box, approximate location", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 1707661633, - "lat": 51.3378081, - "lon": 0.5410564, - "tags": { - "amenity": "post_box", - "ref": "ME5 395", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1707663824, - "lat": 53.2617475, - "lon": -3.8386768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1707690058, - "lat": 51.3422825, - "lon": 0.5397609, - "tags": { - "amenity": "post_box", - "ref": "ME5 75", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1707815935, - "lat": 51.3650201, - "lon": -2.6174617, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1708064214, - "lat": 51.2372926, - "lon": 0.4652189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 78" - } -}, -{ - "type": "node", - "id": 1708321882, - "lat": 51.6608228, - "lon": 0.3719547, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1708340732, - "lat": 51.4425239, - "lon": -0.9170169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG5 593", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1708363197, - "lat": 54.8635685, - "lon": -4.9934546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG9 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1708363198, - "lat": 54.6918386, - "lon": -4.9122369, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1708629763, - "lat": 51.6817072, - "lon": -4.1580123, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1708741511, - "lat": 50.8546301, - "lon": -0.6461575, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN18 1337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1708805998, - "lat": 53.4856733, - "lon": -1.6093336, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S36 589" - } -}, -{ - "type": "node", - "id": 1708854181, - "lat": 50.8608071, - "lon": -0.6265663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1333D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1708910799, - "lat": 51.9243711, - "lon": 0.7450470, - "tags": { - "amenity": "post_box", - "note": "\"Old rectory\" post box?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 1708991308, - "lat": 51.9226530, - "lon": 0.7556064, - "tags": { - "amenity": "post_box", - "note": "\"post office\" post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "knowledge" - } -}, -{ - "type": "node", - "id": 1709018922, - "lat": 53.4653878, - "lon": -1.3249961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S62 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1709332009, - "lat": 54.5295622, - "lon": -1.5787282, - "tags": { - "amenity": "post_box", - "ref": "DL3 10" - } -}, -{ - "type": "node", - "id": 1709332010, - "lat": 54.5384112, - "lon": -1.5766777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL3 145" - } -}, -{ - "type": "node", - "id": 1709332059, - "lat": 54.6539667, - "lon": -1.5765449, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1709619922, - "lat": 52.0636216, - "lon": -2.9304710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 08:30", - "operator": "Royal Mail", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1709774259, - "lat": 53.7025864, - "lon": -2.4798337, - "tags": { - "amenity": "post_box", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1709843965, - "lat": 53.2839240, - "lon": -3.5925293, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1710068277, - "lat": 52.1134810, - "lon": -4.0781580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1710069951, - "lat": 52.2219535, - "lon": -2.5241444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR7 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1710155599, - "lat": 52.6707387, - "lon": 1.0865555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2013", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1710286081, - "lat": 54.6616807, - "lon": -2.7462788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CA11 302", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1710475275, - "lat": 50.8736190, - "lon": -1.2940389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 497D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1710477240, - "lat": 50.8474828, - "lon": -1.0351918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1710478616, - "lat": 50.8813413, - "lon": -1.3108964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1710480480, - "lat": 50.8990780, - "lon": -1.3172792, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO31 648D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1710485802, - "lat": 50.8882712, - "lon": -1.3271060, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO31 140" - } -}, -{ - "type": "node", - "id": 1710490915, - "lat": 50.8853153, - "lon": -1.3231963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1710708134, - "lat": 51.8401398, - "lon": -1.1843025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "185858140076844", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-11-24" - } -}, -{ - "type": "node", - "id": 1711109359, - "lat": 51.8907044, - "lon": -1.1327762, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "ref": "Perigrine Way box1" - } -}, -{ - "type": "node", - "id": 1711224788, - "lat": 51.5535052, - "lon": -3.3592402, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1711242697, - "lat": 51.5473001, - "lon": -3.3622449, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "fixme": "Is it still here?" - } -}, -{ - "type": "node", - "id": 1711402317, - "lat": 52.7101188, - "lon": 1.5355805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR29 2970", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1711418424, - "lat": 52.7023472, - "lon": 1.5150311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR29 2948", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1711816069, - "lat": 53.3048547, - "lon": -4.1409703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1711821155, - "lat": 51.5583241, - "lon": -3.3591686, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1712789551, - "lat": 50.7327142, - "lon": -2.6685292, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref:GB:uprn": "10015374694" - } -}, -{ - "type": "node", - "id": 1712790875, - "lat": 50.7414958, - "lon": -2.7029014, - "tags": { - "amenity": "post_box", - "description": "In wall on north side. Victorian Box", - "post_box:type": "wall", - "ref": "DT6 9", - "ref:GB:uprn": "10015308999", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1712836352, - "lat": 53.0760672, - "lon": -0.8074768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG24 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1712848191, - "lat": 54.0099813, - "lon": -2.7852438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ref": "LA1 227", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1713090389, - "lat": 51.6198176, - "lon": -3.9460694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-18", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA1 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1713122484, - "lat": 50.7356386, - "lon": -3.2748108, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1713327463, - "lat": 50.8180980, - "lon": -1.0648109, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 147", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1713327470, - "lat": 50.8221606, - "lon": -1.0652428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1713332178, - "lat": 51.0798148, - "lon": -1.8977263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP2 413D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1713332265, - "lat": 51.0776421, - "lon": -1.9003799, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1713351658, - "lat": 51.3588923, - "lon": -2.3315597, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1714346550, - "lat": 52.7079497, - "lon": 1.4449920, - "tags": { - "amenity": "post_box", - "note": "brick pillar is pointy", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1714384068, - "lat": 52.7264002, - "lon": 1.2913759, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1714384071, - "lat": 52.7288845, - "lon": 1.3509106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "NR12 1292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1714623785, - "lat": 52.4180845, - "lon": -3.9296988, - "tags": { - "amenity": "post_box", - "ref": "SY23 40" - } -}, -{ - "type": "node", - "id": 1714884651, - "lat": 55.8731337, - "lon": -4.2694112, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1715074548, - "lat": 51.5013660, - "lon": -0.2221518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;photographic_survey" - } -}, -{ - "type": "node", - "id": 1715108876, - "lat": 51.4016948, - "lon": 0.5338835, - "tags": { - "amenity": "post_box", - "ref": "ME4 452", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1715337388, - "lat": 51.5386372, - "lon": 0.7005602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1715337408, - "lat": 51.5357828, - "lon": 0.6982394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1715853440, - "lat": 52.7198699, - "lon": 1.2755620, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1716116432, - "lat": 54.6929766, - "lon": -1.6155686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL16 170" - } -}, -{ - "type": "node", - "id": 1716179911, - "lat": 55.8363166, - "lon": -4.2634392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "note": "may have made error on ref number - damaged and diffiuclt to read", - "ref": "G42 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1716292031, - "lat": 54.5407426, - "lon": -1.9246808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL12 77" - } -}, -{ - "type": "node", - "id": 1716292063, - "lat": 54.5416621, - "lon": -1.9208161, - "tags": { - "amenity": "post_box", - "last_collection": "5.30pm Sat 11.00am", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "DL12", - "ref": "DL12 101" - } -}, -{ - "type": "node", - "id": 1716292183, - "lat": 54.5439108, - "lon": -1.9171051, - "tags": { - "amenity": "post_box", - "ref": "DL12 153" - } -}, -{ - "type": "node", - "id": 1716292241, - "lat": 54.5449025, - "lon": -1.9249960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1716359844, - "lat": 51.5225708, - "lon": -1.1367095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG8 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1716375758, - "lat": 51.4561822, - "lon": -0.9760410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 95D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1716379613, - "lat": 51.4534507, - "lon": -0.9719531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "level": "1", - "ref": "RG1 634", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1716421411, - "lat": 54.5806228, - "lon": -1.8033248, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1716421776, - "lat": 54.6999770, - "lon": -1.6535929, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5892215", - "ref": "DL16 130" - } -}, -{ - "type": "node", - "id": 1716448178, - "lat": 51.0215998, - "lon": -3.1309614, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 449" - } -}, -{ - "type": "node", - "id": 1716502687, - "lat": 50.9495046, - "lon": -1.1878844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 461D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1716518069, - "lat": 52.4453752, - "lon": 0.6413367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP27 3408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1716518109, - "lat": 52.4434233, - "lon": 0.6393623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP27 3429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1716530025, - "lat": 55.8652355, - "lon": -4.2520822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "G2 1527", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1717530469, - "lat": 52.6794735, - "lon": 0.9528414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2001D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1717628884, - "lat": 52.8106453, - "lon": 1.2288532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "lamp", - "ref": "NR11 1117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1717745715, - "lat": 53.5726410, - "lon": -1.6574659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD8 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1717746034, - "lat": 53.5808398, - "lon": -1.7882351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1717746054, - "lat": 53.5846349, - "lon": -1.7786485, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD9 260", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1717746608, - "lat": 54.4339062, - "lon": -1.4641251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1717746661, - "lat": 54.5123521, - "lon": -1.5744917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL3 186" - } -}, -{ - "type": "node", - "id": 1717912388, - "lat": 55.8377038, - "lon": -2.8678655, - "tags": { - "amenity": "post_box", - "ref": "EH37 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1717997425, - "lat": 50.7140592, - "lon": -2.6350425, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 92", - "ref:GB:uprn": "10015448144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1718080080, - "lat": 51.4579342, - "lon": -1.0416800, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG30 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1718139123, - "lat": 55.8548002, - "lon": -2.8655117, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH36 229", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1718150045, - "lat": 53.5817127, - "lon": -1.7363007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing/local survey" - } -}, -{ - "type": "node", - "id": 1718406503, - "lat": 53.6434505, - "lon": -1.8182241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1718446039, - "lat": 51.5068237, - "lon": -0.2071113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 3", - "royal_cypher": "EVIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1718448303, - "lat": 50.9823275, - "lon": -0.6109004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "lastcheck": "2022-08-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1718450714, - "lat": 53.2807546, - "lon": -3.8304478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "fixme": "check ref (ref not visible)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "LL32 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1718483379, - "lat": 53.2751460, - "lon": -3.8349039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL32 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1718603412, - "lat": 52.2756812, - "lon": -1.6313425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1718645667, - "lat": 51.6710255, - "lon": 0.7189021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CM3 315" - } -}, -{ - "type": "node", - "id": 1718703642, - "lat": 51.8413781, - "lon": -4.2389343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "SA32 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1719246823, - "lat": 53.0078595, - "lon": -1.9044004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1719393318, - "lat": 56.0742680, - "lon": -4.3779274, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1719591215, - "lat": 55.6233751, - "lon": -3.0117616, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "EH43 46D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1719695756, - "lat": 51.5215459, - "lon": -1.1329249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG8 63D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1719734198, - "lat": 53.2300939, - "lon": -3.8582460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 14" - } -}, -{ - "type": "node", - "id": 1720699528, - "lat": 50.6302681, - "lon": -3.3954873, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1720704327, - "lat": 50.6295914, - "lon": -3.3914452, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1720838402, - "lat": 51.5582570, - "lon": -3.3508109, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1720865706, - "lat": 55.9289312, - "lon": -3.2488983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 279D" - } -}, -{ - "type": "node", - "id": 1721574091, - "lat": 52.7789679, - "lon": 0.9892344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2064D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1721679009, - "lat": 51.5141355, - "lon": -0.0939118, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2V 218;EC2V 2181", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1721679016, - "lat": 51.5141476, - "lon": -0.0939897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Parcels and Franked Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC2 217", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1721806016, - "lat": 52.7162029, - "lon": 0.9043396, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1722050032, - "lat": 52.1252288, - "lon": 1.4091015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6395D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1722109035, - "lat": 53.3790808, - "lon": -3.1279522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier CH49 559 by Carron Company at Abingdon Road on Pump Lane, Greasby.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Abingdon Road, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 1722109044, - "lat": 53.3807405, - "lon": -3.1530162, - "tags": { - "amenity": "post_box", - "description": "Disused, taken out of service on 24th May 2016 and sealed. RM have this as at Larton, but that is a farm some distance away. It's actually on Saughall Massie Road.", - "name": "CH48 101", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH48 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Saughall Massie Road" - } -}, -{ - "type": "node", - "id": 1722345458, - "lat": 55.8907435, - "lon": -4.0367080, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1722364278, - "lat": 51.1245148, - "lon": -2.9947331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1722611613, - "lat": 51.7625640, - "lon": -0.2291565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL10 328" - } -}, -{ - "type": "node", - "id": 1723057209, - "lat": 50.5309000, - "lon": -3.6048672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ12 268;TQ12 2680", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1723105296, - "lat": 50.5274652, - "lon": -3.5879034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1723105302, - "lat": 50.5302562, - "lon": -3.5831368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1723140153, - "lat": 50.8561285, - "lon": 0.5455153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1723140154, - "lat": 50.8540275, - "lon": 0.5380457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1723140163, - "lat": 50.8660959, - "lon": 0.5540697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "ref": "TN38 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1723140166, - "lat": 50.8582709, - "lon": 0.5456738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1723140186, - "lat": 50.8613946, - "lon": 0.5500652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 167" - } -}, -{ - "type": "node", - "id": 1723140204, - "lat": 50.8523053, - "lon": 0.5419298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "TN38 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1723140208, - "lat": 50.8636168, - "lon": 0.5515003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 123" - } -}, -{ - "type": "node", - "id": 1723168337, - "lat": 52.1159320, - "lon": 1.3826727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "wall", - "ref": "IP12 6277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1723286281, - "lat": 50.4549698, - "lon": -3.5564888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1723301419, - "lat": 50.5243104, - "lon": -3.5305407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 259", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery;local knowledge", - "survey:date": "2022-11-12" - } -}, -{ - "type": "node", - "id": 1723340830, - "lat": 51.5209452, - "lon": -0.0919798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "EC1Y 127D;EC1Y 1271D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1723784680, - "lat": 51.5591956, - "lon": -1.7751677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1724553852, - "lat": 53.2281375, - "lon": -3.8182193, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL28 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1724608129, - "lat": 50.8681958, - "lon": 0.5484497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TN38 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1724758490, - "lat": 53.2623191, - "lon": -1.9127283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1725229234, - "lat": 53.7881659, - "lon": -1.5894827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1725269322, - "lat": 53.2647850, - "lon": -3.7993841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1725355805, - "lat": 55.3157429, - "lon": -5.6402728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA28 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1725538879, - "lat": 53.3214772, - "lon": -3.8249115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1725564303, - "lat": 50.8635927, - "lon": 0.5588072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1725620544, - "lat": 55.5158846, - "lon": -2.7435798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD6 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1725675529, - "lat": 55.5665986, - "lon": -2.7083887, - "tags": { - "amenity": "post_box", - "ref": "TD6 58" - } -}, -{ - "type": "node", - "id": 1725682077, - "lat": 55.5491403, - "lon": -2.5895970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "196596062886750", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD6 76", - "survey:date": "2023-05-18" - } -}, -{ - "type": "node", - "id": 1725697799, - "lat": 55.5771103, - "lon": -2.6787605, - "tags": { - "amenity": "post_box", - "ref": "TD6 140" - } -}, -{ - "type": "node", - "id": 1725713668, - "lat": 50.8465595, - "lon": -1.0405928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO6 189", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 189D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1725713728, - "lat": 55.5786387, - "lon": -2.6733694, - "tags": { - "amenity": "post_box", - "ref": "TD6 84" - } -}, -{ - "type": "node", - "id": 1725718561, - "lat": 55.5748753, - "lon": -2.6751825, - "tags": { - "amenity": "post_box", - "ref": "TD6 156" - } -}, -{ - "type": "node", - "id": 1725737678, - "lat": 55.5181463, - "lon": -2.7376561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD6 88", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1726132631, - "lat": 51.7153409, - "lon": 0.8257444, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1726187355, - "lat": 50.8947635, - "lon": 0.5642613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN37 202D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1726274828, - "lat": 55.7624746, - "lon": -2.9747753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH38 68" - } -}, -{ - "type": "node", - "id": 1726279503, - "lat": 55.7649354, - "lon": -2.9686440, - "tags": { - "amenity": "post_box", - "ref": "EH38 70" - } -}, -{ - "type": "node", - "id": 1726299329, - "lat": 55.5866821, - "lon": -3.1173546, - "tags": { - "amenity": "post_box", - "ref": "EH44 43" - } -}, -{ - "type": "node", - "id": 1726305167, - "lat": 55.5914234, - "lon": -3.0779905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH44 48" - } -}, -{ - "type": "node", - "id": 1726324967, - "lat": 55.6242208, - "lon": -3.0202540, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://commons.wikimedia.org/wiki/File:Houses_on_Peebles_Road,_Walkerburn_-_geograph.org.uk_-_5475429.jpg", - "manufacturer": "W.T.Allen & Co. London", - "mapillary": "142870011158116", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH44 44D", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1726348429, - "lat": 53.5845987, - "lon": -1.7735870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HD9 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1726410203, - "lat": 51.1180704, - "lon": -1.0410922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "post_box:type": "lamp", - "ref": "GU34 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1726410319, - "lat": 51.1295254, - "lon": -1.0649372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "GU34 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1726410405, - "lat": 51.1390271, - "lon": -1.0286422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 24" - } -}, -{ - "type": "node", - "id": 1726410420, - "lat": 51.1402511, - "lon": -1.0374186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "wall", - "ref": "GU34 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1726907070, - "lat": 55.9409919, - "lon": -2.7077802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "481468229848810", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH41 309", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 1726928541, - "lat": 52.4154032, - "lon": -1.0627529, - "tags": { - "amenity": "post_box", - "postal_code": "NN6 6HJ", - "ref": "NN6 474", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1727045292, - "lat": 53.7174024, - "lon": -1.4602167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF3 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1727089474, - "lat": 51.6939047, - "lon": -0.7385654, - "tags": { - "amenity": "post_box", - "ref": "HP16 173" - } -}, -{ - "type": "node", - "id": 1727089544, - "lat": 51.6954412, - "lon": -0.7375831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP16 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 1727193510, - "lat": 51.6840891, - "lon": -4.1240972, - "tags": { - "amenity": "post_box", - "note": "Royal Mail 2013 dataset has 425 Brynsierfel and 426 Heol Elfed with transposed locations", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1727227688, - "lat": 53.2098230, - "lon": -1.2215972, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NG20 53" - } -}, -{ - "type": "node", - "id": 1727287842, - "lat": 51.7042732, - "lon": 0.6980832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1727478444, - "lat": 52.1304581, - "lon": -2.0736345, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 1727494560, - "lat": 52.1062042, - "lon": -2.0600985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR10 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 1727521431, - "lat": 51.7643739, - "lon": -0.5763662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1727992462, - "lat": 53.0265728, - "lon": -2.1749229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST1 117D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1728024349, - "lat": 52.9943480, - "lon": -2.1459777, - "tags": { - "addr:city": "Stoke-on-Trent", - "addr:housenumber": "321", - "addr:postcode": "ST4 3NA", - "addr:street": "King Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "ST4 114" - } -}, -{ - "type": "node", - "id": 1728170061, - "lat": 50.9184507, - "lon": -1.2344964, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 1728217945, - "lat": 53.6143652, - "lon": -1.7106300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 442D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1728275871, - "lat": 50.8043059, - "lon": -1.0519221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO3 242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1728329340, - "lat": 56.3150611, - "lon": -3.0074619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 286", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1728531587, - "lat": 51.6773539, - "lon": -4.0446553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 506D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1728952850, - "lat": 50.6090298, - "lon": -3.4460968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX6 69", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1729033866, - "lat": 51.6898309, - "lon": 0.7909161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1729033879, - "lat": 51.7034235, - "lon": 0.8446332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1729155160, - "lat": 52.5418096, - "lon": -2.1920504, - "tags": { - "amenity": "post_box", - "ref": "WV5 257", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1729183704, - "lat": 50.7952875, - "lon": -1.0721523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO4 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1729268847, - "lat": 52.1300561, - "lon": 1.4152067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "ref": "IP12 8168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1729294983, - "lat": 55.4676837, - "lon": -3.6517143, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ML12 149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729294997, - "lat": 55.4640317, - "lon": -3.6477809, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ML12 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729428527, - "lat": 50.9144917, - "lon": -1.2527147, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 258D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 1729439213, - "lat": 50.9146491, - "lon": -1.2070016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "post_box:type": "wall", - "ref": "SO32 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1729631262, - "lat": 51.4855018, - "lon": 0.0060037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE10 4;SE10 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1729642625, - "lat": 53.8420469, - "lon": -1.9241101, - "tags": { - "amenity": "post_box", - "ref": "BD21 84", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729642630, - "lat": 53.8363037, - "lon": -1.9311608, - "tags": { - "amenity": "post_box", - "ref": "BD22 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729642635, - "lat": 53.8351506, - "lon": -1.9385243, - "tags": { - "amenity": "post_box", - "ref": "BD22 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729642642, - "lat": 53.8313113, - "lon": -1.9485382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD22 117", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729642686, - "lat": 54.8559181, - "lon": -2.8750403, - "tags": { - "amenity": "post_box", - "ref": "CA4 350", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729654615, - "lat": 55.3851324, - "lon": -2.8638740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD9 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1729664241, - "lat": 52.6222764, - "lon": -2.2107631, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WV8 197", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1729816999, - "lat": 53.2232020, - "lon": -1.2143188, - "tags": { - "amenity": "post_box", - "ref": "NG20 199" - } -}, -{ - "type": "node", - "id": 1730304034, - "lat": 55.4161053, - "lon": -2.7967434, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1731446414, - "lat": 52.1405549, - "lon": -0.2948599, - "tags": { - "amenity": "post_box", - "ref": "SG19 152", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 1731497755, - "lat": 51.7705317, - "lon": -2.1171410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1731497759, - "lat": 51.8535441, - "lon": -2.2474797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL1 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1731713345, - "lat": 51.6998674, - "lon": 0.8794902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM0 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1731924825, - "lat": 53.0588866, - "lon": -2.5187025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 185" - } -}, -{ - "type": "node", - "id": 1732025326, - "lat": 53.0604691, - "lon": -2.5056628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 302" - } -}, -{ - "type": "node", - "id": 1732025331, - "lat": 53.0582059, - "lon": -2.5097585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 303" - } -}, -{ - "type": "node", - "id": 1732027207, - "lat": 53.0658317, - "lon": -2.5214208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CW5 186D", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1732032194, - "lat": 53.0649098, - "lon": -2.5190256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "CW5 297" - } -}, -{ - "type": "node", - "id": 1732079941, - "lat": 53.0661658, - "lon": -2.5206625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW5 180", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1732189101, - "lat": 50.9169110, - "lon": -1.1985644, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO32 500D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1732191705, - "lat": 50.9264981, - "lon": -1.2012818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO32 271", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1732197509, - "lat": 50.9479383, - "lon": -1.2052057, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO32 254", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1732203649, - "lat": 50.9722509, - "lon": -1.2549855, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO32 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1732205724, - "lat": 50.9429302, - "lon": -1.2640659, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "collection_times_checked": "2020-01-26", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO32 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1732211953, - "lat": 50.9403464, - "lon": -1.2532803, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-01-26", - "old_ref": "SO32 308", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO32 308D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1732218093, - "lat": 50.9478767, - "lon": -1.2744005, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-01-26", - "old_ref": "SO32 116", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1732233189, - "lat": 50.9561188, - "lon": -1.2239204, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "collection_times_checked": "2020-01-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO32 231", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1732358052, - "lat": 50.8743915, - "lon": -1.3283130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1732363528, - "lat": 50.8678808, - "lon": -1.3275165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 474D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1732365654, - "lat": 50.8596616, - "lon": -1.3226365, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO31 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1732382590, - "lat": 51.2024729, - "lon": -0.5425100, - "tags": { - "amenity": "post_box", - "fixme": "Check that new box still has ref GU5 229", - "post_box:type": "lamp", - "ref": "GU5 229" - } -}, -{ - "type": "node", - "id": 1732398030, - "lat": 51.1286998, - "lon": -2.9920646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 1732420196, - "lat": 53.7490725, - "lon": -2.8968789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1732433017, - "lat": 50.8412107, - "lon": -1.2266321, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "PO14 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1732436663, - "lat": 50.8258149, - "lon": -1.2212406, - "tags": { - "amenity": "post_box", - "ref": "PO14 123" - } -}, -{ - "type": "node", - "id": 1732634154, - "lat": 51.6959818, - "lon": 0.8824524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM0 239" - } -}, -{ - "type": "node", - "id": 1732649868, - "lat": 52.1296072, - "lon": -0.4520763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 1732878311, - "lat": 51.6623641, - "lon": 0.4483241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM4 465" - } -}, -{ - "type": "node", - "id": 1732905378, - "lat": 51.6849378, - "lon": 0.3695685, - "tags": { - "amenity": "post_box", - "ref": "CM4 188" - } -}, -{ - "type": "node", - "id": 1732905381, - "lat": 51.6858177, - "lon": 0.3566241, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CM4 73", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1733014446, - "lat": 53.0682564, - "lon": -2.5217420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "CW5 999" - } -}, -{ - "type": "node", - "id": 1733114353, - "lat": 51.4895731, - "lon": -3.7122540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "298858359377605", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 1733114438, - "lat": 51.4936197, - "lon": -3.7096943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-08-24", - "wikimedia_commons": "File:Queen Elizabeth II postbox on a Nottage corner, Porthcawl - geograph.org.uk - 5319894.jpg" - } -}, -{ - "type": "node", - "id": 1733117188, - "lat": 51.1861950, - "lon": 0.1123216, - "tags": { - "amenity": "post_box", - "ref": "TN8 8D" - } -}, -{ - "type": "node", - "id": 1733451964, - "lat": 50.8223537, - "lon": -1.2099704, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO14 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1733455517, - "lat": 50.8082771, - "lon": -1.2112926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:15", - "post_box:type": "lamp", - "ref": "PO13 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1733463593, - "lat": 50.8014458, - "lon": -1.2017580, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-16", - "ref": "PO13 105" - } -}, -{ - "type": "node", - "id": 1733483814, - "lat": 50.7987097, - "lon": -1.2000039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO13 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1733484069, - "lat": 51.5722586, - "lon": -1.7664988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN2 134" - } -}, -{ - "type": "node", - "id": 1733487808, - "lat": 50.8041110, - "lon": -1.2004351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PO13 21", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1733910940, - "lat": 51.6930654, - "lon": 0.2949386, - "tags": { - "amenity": "post_box", - "ref": "CM4 131" - } -}, -{ - "type": "node", - "id": 1733963585, - "lat": 51.6654337, - "lon": 0.8364973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1733971348, - "lat": 52.5704331, - "lon": 1.1245566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR18 1813D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1734025318, - "lat": 51.4726972, - "lon": -0.9686182, - "tags": { - "amenity": "post_box", - "check_date": "2020-12-27", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1734102084, - "lat": 53.3274080, - "lon": -3.8308230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "LL30 9D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1734161225, - "lat": 53.3241797, - "lon": -3.8267704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "LL30 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1734351901, - "lat": 51.5682488, - "lon": 0.6760612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1734351906, - "lat": 51.5717774, - "lon": 0.6650294, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1734356928, - "lat": 51.5658500, - "lon": 0.6902370, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1734356944, - "lat": 51.5664750, - "lon": 0.6982035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1734390387, - "lat": 51.6795726, - "lon": 0.5603505, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CM3 122", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1734459534, - "lat": 51.5397910, - "lon": 0.7139933, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1734511052, - "lat": 51.5626626, - "lon": 0.6660553, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1734511060, - "lat": 51.5565051, - "lon": 0.6790252, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1735004818, - "lat": 51.6609787, - "lon": 0.8354270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM0 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1735004843, - "lat": 51.6627293, - "lon": 0.8309124, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1735004855, - "lat": 51.6632899, - "lon": 0.8189368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM0 228" - } -}, -{ - "type": "node", - "id": 1735015362, - "lat": 51.7414051, - "lon": -1.1165260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:15", - "ref": "OX33 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1735094630, - "lat": 52.0727344, - "lon": -2.1068908, - "tags": { - "amenity": "post_box", - "fixme": "Missing a collection plate.", - "post_box:type": "lamp", - "ref": "WR10 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source:ref": "conjecture;foi_list" - } -}, -{ - "type": "node", - "id": 1735138137, - "lat": 51.0551346, - "lon": -1.3059931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1735141647, - "lat": 51.0626233, - "lon": -1.3037478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 77D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikidata": "Q113701252" - } -}, -{ - "type": "node", - "id": 1735142228, - "lat": 51.0649789, - "lon": -1.2977841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SO23 280", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1735151903, - "lat": 51.0573289, - "lon": -1.3042162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO23 1" - } -}, -{ - "type": "node", - "id": 1735156365, - "lat": 51.0560199, - "lon": -1.3047816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO23 318" - } -}, -{ - "type": "node", - "id": 1735170502, - "lat": 50.9948077, - "lon": -1.3115177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2022-04-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1735176334, - "lat": 50.9514108, - "lon": -1.2951049, - "tags": { - "amenity": "post_box", - "ref": "SO50 274" - } -}, -{ - "type": "node", - "id": 1735186594, - "lat": 50.9690204, - "lon": -1.2994822, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 657D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1735331410, - "lat": 53.1330449, - "lon": -0.8865088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1735334205, - "lat": 51.4306453, - "lon": -0.1306739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "SW16 48" - } -}, -{ - "type": "node", - "id": 1735651849, - "lat": 52.7106813, - "lon": 1.4135615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR12 1267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1735867996, - "lat": 51.9578830, - "lon": -2.4188898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:10; Sa 09:20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL18 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1736125027, - "lat": 54.5501250, - "lon": -1.1983191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 283" - } -}, -{ - "type": "node", - "id": 1736126874, - "lat": 54.5500176, - "lon": -1.1908398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS3 63" - } -}, -{ - "type": "node", - "id": 1736145499, - "lat": 54.5820861, - "lon": -1.1767558, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1736164498, - "lat": 51.6412824, - "lon": 0.8128505, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1736470885, - "lat": 53.0607566, - "lon": -2.5241179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 191" - } -}, -{ - "type": "node", - "id": 1736505104, - "lat": 53.2458451, - "lon": -1.3900314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S43 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1736617694, - "lat": 51.4182939, - "lon": -2.4971401, - "tags": { - "amenity": "post_box", - "ref": "BS31 267" - } -}, -{ - "type": "node", - "id": 1736631747, - "lat": 51.1881084, - "lon": -0.0762071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "687649449636216", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH9 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-28" - } -}, -{ - "type": "node", - "id": 1736770960, - "lat": 51.5169307, - "lon": -0.0731026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 42;E1 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1737226331, - "lat": 55.6035239, - "lon": -2.4325433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1737428805, - "lat": 51.6300748, - "lon": 0.8152604, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1737556006, - "lat": 55.5404765, - "lon": -2.6609673, - "tags": { - "amenity": "post_box", - "ref": "TD6 71" - } -}, -{ - "type": "node", - "id": 1737672828, - "lat": 50.8624842, - "lon": -1.3251780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1737672830, - "lat": 50.8601664, - "lon": -1.3307007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO31 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1737691119, - "lat": 50.8583772, - "lon": -1.3262562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 784", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1737691120, - "lat": 50.8560474, - "lon": -1.3183544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 772D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1737693573, - "lat": 50.8224371, - "lon": -1.0570947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO3 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1737697940, - "lat": 50.8590197, - "lon": -1.3149262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 10:45", - "note": "painted gold to celebrate Dani King winning gold in Women's team pursuit Cycling track in 2012 olympics", - "olympics:2012": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1737699102, - "lat": 50.8659920, - "lon": -1.3161957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:15", - "post_box:type": "pillar", - "ref": "SO31 313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1738262368, - "lat": 50.8118529, - "lon": -3.1930766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "name": "Torswood", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX14 4TG", - "ref": "EX14 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1738397205, - "lat": 53.0678618, - "lon": -2.5278230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CW5 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738405954, - "lat": 53.0704952, - "lon": -2.5279840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "CW5 299", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738405957, - "lat": 53.0712687, - "lon": -2.5229361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 187", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738413476, - "lat": 53.0669980, - "lon": -2.5037824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "CW5 194", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738413477, - "lat": 53.0709706, - "lon": -2.5078728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "ref": "CW5 193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738413478, - "lat": 53.0714444, - "lon": -2.5160911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 182", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738413479, - "lat": 53.0733508, - "lon": -2.5181590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 188", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738418332, - "lat": 53.0666821, - "lon": -2.5138514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 183", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738418334, - "lat": 53.0642548, - "lon": -2.5067865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "CW5 189", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1738614286, - "lat": 51.3742094, - "lon": -0.9960985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1738616678, - "lat": 51.3705329, - "lon": -0.6420739, - "tags": { - "amenity": "post_box", - "ref": "GU20 123" - } -}, -{ - "type": "node", - "id": 1738619771, - "lat": 51.3675170, - "lon": -0.6493068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU20 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1738675974, - "lat": 57.4545788, - "lon": -4.2320941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1739008875, - "lat": 51.1444774, - "lon": 0.2719617, - "tags": { - "amenity": "post_box", - "ref": "TN1 83" - } -}, -{ - "type": "node", - "id": 1739080407, - "lat": 51.1392235, - "lon": 0.2659225, - "tags": { - "amenity": "post_box", - "note": "No identification plate. Presumably vandalised.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1739181602, - "lat": 51.5319149, - "lon": -0.0928624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "each aperture has it's own ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 48;N1 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1739202155, - "lat": 55.8995746, - "lon": -3.1983038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH10 559D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1739202156, - "lat": 55.8997878, - "lon": -3.1726886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH17 220", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1739202157, - "lat": 55.9038407, - "lon": -3.2175830, - "tags": { - "amenity": "post_box", - "ref": "EH10 600", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1739202158, - "lat": 55.9041615, - "lon": -3.2071222, - "tags": { - "amenity": "post_box", - "ref": "EH10 372" - } -}, -{ - "type": "node", - "id": 1739202159, - "lat": 55.9069563, - "lon": -3.1343889, - "tags": { - "amenity": "post_box", - "ref": "EH17 440", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1739202161, - "lat": 55.9249983, - "lon": -3.2408003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "668758198649252", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 424", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 1739202162, - "lat": 55.9265173, - "lon": -3.2463462, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "post_box:type": "wooden_box", - "ref": "EH14 348", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1739261945, - "lat": 52.5161424, - "lon": 1.0137735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR17 1735", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1739342593, - "lat": 53.2878999, - "lon": -3.5986363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1739342782, - "lat": 53.0771915, - "lon": -2.5198954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 291", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1739602149, - "lat": 51.5978549, - "lon": -1.8062032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1739693758, - "lat": 51.6561855, - "lon": -1.7512738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1740247627, - "lat": 52.4207658, - "lon": -1.7386400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "note": "a VR postbox in a modern wall", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B91 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1740247638, - "lat": 52.4210277, - "lon": -1.7373789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B91 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1740433426, - "lat": 55.5385709, - "lon": -2.7499830, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1740752018, - "lat": 52.4297354, - "lon": -1.6990650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B91 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1740780865, - "lat": 55.9291816, - "lon": -3.2432849, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EH14 350", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1740780866, - "lat": 55.9313588, - "lon": -3.2521866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1234664753774289", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 129", - "royal_cypher": "scottish_crown", - "survey:date": "2022-06-02" - } -}, -{ - "type": "node", - "id": 1741329946, - "lat": 56.4896783, - "lon": -6.8787715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA77 114", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1741330014, - "lat": 56.5164396, - "lon": -6.9418103, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA77 128", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1741330020, - "lat": 56.5190500, - "lon": -6.8870037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA77 108", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1741559684, - "lat": 50.6929072, - "lon": -2.6687885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref:GB:uprn": "10015288529", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1741559743, - "lat": 50.6946503, - "lon": -2.6564608, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 126", - "ref:GB:uprn": "10015477571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1741693464, - "lat": 55.8572575, - "lon": -4.1801988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "ref": "G32 1174" - } -}, -{ - "type": "node", - "id": 1741765488, - "lat": 53.1232000, - "lon": -1.1326318, - "tags": { - "amenity": "post_box", - "ref": "NG21 108" - } -}, -{ - "type": "node", - "id": 1741783244, - "lat": 53.1024569, - "lon": -1.1198225, - "tags": { - "amenity": "post_box", - "ref": "NG21 219" - } -}, -{ - "type": "node", - "id": 1741783253, - "lat": 53.1019837, - "lon": -1.1164392, - "tags": { - "amenity": "post_box", - "ref": "NG21 102" - } -}, -{ - "type": "node", - "id": 1741933608, - "lat": 53.0764008, - "lon": -2.5115267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 259", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1741942042, - "lat": 51.4826303, - "lon": -2.6159498, - "tags": { - "addr:street": "Henleaze Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS9 252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1741942051, - "lat": 51.4851867, - "lon": -2.6152841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS9 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1742092054, - "lat": 52.1481155, - "lon": 0.0908194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB22 363D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1742704118, - "lat": 57.3993746, - "lon": -2.3615307, - "tags": { - "addr:city": "St Katherines", - "addr:country": "GB", - "addr:postcode": "AB51 8SN", - "addr:street": "Crichneyled Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1742777690, - "lat": 52.1372238, - "lon": -2.1068390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "historic_operator": "Royal Mail", - "note": "Modern ref derived from Postman's Round List", - "old_ref": "P497 Drakes Broughton P.O.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "WR10 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1742811318, - "lat": 51.0755615, - "lon": -4.0633632, - "tags": { - "amenity": "post_box", - "ref": "EX31 123" - } -}, -{ - "type": "node", - "id": 1743119765, - "lat": 57.4114184, - "lon": -2.4635912, - "tags": { - "addr:city": "Rothienorman", - "addr:country": "GB", - "addr:postcode": "AB51 8UD", - "addr:street": "Main Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB51 301", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1743133022, - "lat": 50.8729655, - "lon": -4.4927549, - "tags": { - "amenity": "post_box", - "ref": "EX23 178" - } -}, -{ - "type": "node", - "id": 1743133030, - "lat": 50.8757941, - "lon": -4.4838401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 60", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1743156450, - "lat": 52.1388354, - "lon": 0.0818224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB22 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1743183997, - "lat": 53.0508876, - "lon": -2.5024080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 231", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1743202341, - "lat": 53.0581004, - "lon": -2.4969818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 244", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1743202342, - "lat": 53.0438349, - "lon": -2.4816153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "ref": "CW5 229", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1743202346, - "lat": 53.0509247, - "lon": -2.4923121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "ref": "CW5 228", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1743340618, - "lat": 55.8739380, - "lon": -4.2085502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G21 793", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1743495674, - "lat": 55.8470205, - "lon": -4.1133503, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1743495964, - "lat": 55.8477343, - "lon": -4.1093324, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1743505788, - "lat": 55.8679608, - "lon": -4.1205587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G34 1475", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1743506130, - "lat": 55.8876339, - "lon": -4.2180886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "G21 1145" - } -}, -{ - "type": "node", - "id": 1743562831, - "lat": 51.0811162, - "lon": -4.0535863, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1743601190, - "lat": 53.8013108, - "lon": -1.5331474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "direction": "340", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1743646478, - "lat": 51.1128140, - "lon": -3.9592399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX31 87D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1743646680, - "lat": 51.1218717, - "lon": -3.9409981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EX31 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1743646805, - "lat": 51.1232998, - "lon": -3.9332893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX32 247D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1743709366, - "lat": 51.3327165, - "lon": -1.2849730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG20 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1743728093, - "lat": 51.4435844, - "lon": -2.6038931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "wall", - "ref": "BS3 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1743751482, - "lat": 51.2160873, - "lon": -3.7313455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX35 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1744296869, - "lat": 51.6278361, - "lon": 0.8188253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1744427896, - "lat": 52.2178858, - "lon": -2.1405023, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR9 348", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1744519125, - "lat": 51.9315584, - "lon": -2.4067315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:40; Sa 09:30", - "post_box:type": "pillar", - "ref": "GL18 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744519144, - "lat": 51.9333180, - "lon": -2.4078538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "GL18 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744524717, - "lat": 52.8062465, - "lon": -1.2502846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1744524731, - "lat": 52.8136462, - "lon": -1.2444946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LE12 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1744602211, - "lat": 51.9960118, - "lon": -2.4347638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "post_box:type": "lamp", - "ref": "GL18 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744625331, - "lat": 51.3824996, - "lon": -0.8601273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1744639883, - "lat": 51.3599863, - "lon": -1.8427071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "drive_through": "no", - "mapillary": "618220102747832", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 1744639889, - "lat": 51.3691485, - "lon": -1.9329543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "drive_through": "no", - "mapillary": "261549772962902", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN10 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-18" - } -}, -{ - "type": "node", - "id": 1744674886, - "lat": 51.4760492, - "lon": -2.1016699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "324748202868524", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 1744674888, - "lat": 51.4986514, - "lon": -2.1442663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 80", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1744674899, - "lat": 51.5579593, - "lon": -2.1655575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN16 202", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1744685382, - "lat": 51.5613258, - "lon": -1.9502995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744685383, - "lat": 51.5845178, - "lon": -2.0133622, - "tags": { - "amenity": "post_box", - "fixme": "This postbox is not visible on mapillary images but is still available according to royal mail website. Needs checking", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN16 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744685386, - "lat": 51.5888110, - "lon": -2.0568603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN16 203" - } -}, -{ - "type": "node", - "id": 1744685394, - "lat": 51.5894625, - "lon": -2.0460163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744708254, - "lat": 54.7910423, - "lon": -1.6944744, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/4985262", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 99", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 1744719761, - "lat": 52.3630955, - "lon": -3.0803346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1744727242, - "lat": 51.3498512, - "lon": -1.7972234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744729491, - "lat": 51.7274147, - "lon": 0.4467395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744729533, - "lat": 51.7405159, - "lon": 0.4499397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1744729569, - "lat": 51.7390792, - "lon": 0.4612399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1744773457, - "lat": 51.9064113, - "lon": -2.4372821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:55; Sa 09:45", - "post_box:type": "lamp", - "ref": "GL18 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744773651, - "lat": 51.9171860, - "lon": -2.4235956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL18 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744773998, - "lat": 51.9292167, - "lon": -2.4109162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "post_box:type": "lamp", - "ref": "GL18 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744816263, - "lat": 51.8009322, - "lon": -4.1622653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "SA15 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744844332, - "lat": 51.8635248, - "lon": -4.3159611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA31 474D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744844336, - "lat": 51.8604947, - "lon": -4.3086979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SA31 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1744847488, - "lat": 51.8668561, - "lon": -4.3240639, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1745246074, - "lat": 57.3376052, - "lon": -2.3166389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB51 369", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1745255124, - "lat": 54.2912663, - "lon": -1.9096984, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5415749", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "DL8 168", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1745598220, - "lat": 57.1443021, - "lon": -2.1071884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "AB10 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1745745427, - "lat": 53.0624791, - "lon": -2.5311583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "ref": "CW5 238", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1745755014, - "lat": 52.4481857, - "lon": -1.8951318, - "tags": { - "amenity": "post_box", - "ref": "B13 190", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1745866351, - "lat": 53.7657790, - "lon": -2.6643549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "mapillary": "502904954088671", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR1 124", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1745887285, - "lat": 55.0088585, - "lon": -1.5782439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "fixme": "Check refs - oval dual slot box so likely to have two ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-01-02" - } -}, -{ - "type": "node", - "id": 1746176237, - "lat": 51.2074805, - "lon": -3.0441210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1746772976, - "lat": 51.6341379, - "lon": 0.8179812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM0 283" - } -}, -{ - "type": "node", - "id": 1746843330, - "lat": 50.4135576, - "lon": -5.0843456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR7 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1746843334, - "lat": 50.4142883, - "lon": -5.0857085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR7 90D", - "royal_cypher": "GVIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 1747065089, - "lat": 56.1197064, - "lon": -3.9374616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "mapillary": "780364484255422", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK8 1111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1747065090, - "lat": 56.1197149, - "lon": -3.9374744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "mapillary": "780364484255422", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK8 1112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1747065091, - "lat": 56.1198541, - "lon": -3.9351274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "indoor": "yes", - "note": "in the station, on platform 2", - "operator": "Royal Mail", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "FK8 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1747065110, - "lat": 56.1237286, - "lon": -3.9264181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1747065113, - "lat": 56.1245272, - "lon": -3.9375945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "indoor": "yes", - "note": "inside Tesco main entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK8 81", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1747137417, - "lat": 51.1836367, - "lon": -3.0782652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 25" - } -}, -{ - "type": "node", - "id": 1747342732, - "lat": 53.9878376, - "lon": -1.0988444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 544", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1747342850, - "lat": 53.9878550, - "lon": -1.0988551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "YO30 2008", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1747487875, - "lat": 51.8510751, - "lon": -4.3057657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SA31 18;SA31 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1747586644, - "lat": 55.7775909, - "lon": -4.2577762, - "tags": { - "amenity": "post_box", - "ref": "G76 8" - } -}, -{ - "type": "node", - "id": 1747746930, - "lat": 54.2739367, - "lon": -6.1261586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT32 20" - } -}, -{ - "type": "node", - "id": 1747829881, - "lat": 55.5369233, - "lon": -2.7165949, - "tags": { - "amenity": "post_box", - "ref": "TD6 60" - } -}, -{ - "type": "node", - "id": 1747850281, - "lat": 55.6002904, - "lon": -2.7448944, - "tags": { - "amenity": "post_box", - "ref": "TD6 63" - } -}, -{ - "type": "node", - "id": 1748459972, - "lat": 51.5447891, - "lon": -0.0795620, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1748705395, - "lat": 51.6411183, - "lon": -3.9589616, - "tags": { - "amenity": "post_box", - "old_ref": "SA5 220", - "post_box:type": "lamp", - "ref": "SA5 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1748705400, - "lat": 51.6371395, - "lon": -3.9606476, - "tags": { - "amenity": "post_box", - "ref": "SA5 197" - } -}, -{ - "type": "node", - "id": 1748705401, - "lat": 51.6366742, - "lon": -3.9658002, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-20", - "ref": "SA5 196" - } -}, -{ - "type": "node", - "id": 1748780197, - "lat": 56.0028319, - "lon": -2.5166334, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH42 312", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1748787232, - "lat": 55.9983230, - "lon": -2.5086322, - "tags": { - "amenity": "post_box", - "ref": "EH42 203" - } -}, -{ - "type": "node", - "id": 1748797170, - "lat": 55.9948520, - "lon": -2.5118882, - "tags": { - "amenity": "post_box", - "ref": "EH42 286" - } -}, -{ - "type": "node", - "id": 1748809465, - "lat": 55.9999984, - "lon": -2.5248004, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-01-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 231D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1748814986, - "lat": 55.9983915, - "lon": -2.5309855, - "tags": { - "amenity": "post_box", - "ref": "EH42 210" - } -}, -{ - "type": "node", - "id": 1748818753, - "lat": 50.5812910, - "lon": -3.4693817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX7 1;EX7 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 1748848515, - "lat": 56.0008230, - "lon": -2.5313985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "870064214740377", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EH42 224", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 1748867679, - "lat": 55.9988620, - "lon": -2.5390019, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH42 202", - "royal_cypher": "scottish_crown", - "support": "wall_mounted", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 1748873186, - "lat": 56.0045807, - "lon": -2.5143819, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH42 313", - "royal_cypher": "scottish_crown", - "support": "wall_mounted" - } -}, -{ - "type": "node", - "id": 1748875398, - "lat": 56.0040718, - "lon": -2.5210959, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH42 206", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "support": "ground" - } -}, -{ - "type": "node", - "id": 1748928448, - "lat": 50.3942451, - "lon": -3.5163758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ5 415;TQ5 4150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 1748928449, - "lat": 50.3947370, - "lon": -3.5127428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 1749024560, - "lat": 53.9791259, - "lon": -1.1518671, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO26 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1749533628, - "lat": 55.9714774, - "lon": -2.5248456, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 215", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1749543512, - "lat": 55.9323936, - "lon": -2.3623376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-01-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD13 284D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1749637759, - "lat": 50.7867883, - "lon": -1.0945086, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1749637760, - "lat": 50.7992485, - "lon": -1.0888478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-21", - "check_date:collection_times": "2022-06-21", - "check_date:ref": "2022-06-21", - "collection_times": "Mo-Fr 18:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO1 9991", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1749637761, - "lat": 50.7967343, - "lon": -1.0817050, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO5 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1749637763, - "lat": 50.7992875, - "lon": -1.0888397, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-21", - "check_date:collection_times": "2022-06-21", - "check_date:ref": "2017-02-23", - "collection_times:signed": "no", - "drive_through": "no", - "note": "Franked Mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall_meter", - "ref": "PO1 9993", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1749759115, - "lat": 52.2450586, - "lon": -2.1434613, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR9 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1749890167, - "lat": 51.6375702, - "lon": 0.8052942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1749890219, - "lat": 51.6429466, - "lon": 0.7983704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1749931997, - "lat": 51.8127619, - "lon": -1.2763211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "Wall type in brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX5 785", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-03-09" - } -}, -{ - "type": "node", - "id": 1749932001, - "lat": 51.8160384, - "lon": -1.2714381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "OX5 5941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-06" - } -}, -{ - "type": "node", - "id": 1749952620, - "lat": 52.2377014, - "lon": -2.1445239, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1749979106, - "lat": 52.2331368, - "lon": -2.1346562, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR9 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1749980512, - "lat": 51.8213067, - "lon": -1.2832110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "Wall type in brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX5 765", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-01-09" - } -}, -{ - "type": "node", - "id": 1749980681, - "lat": 51.8289540, - "lon": -1.2924100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-03-11", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX5 759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1750192932, - "lat": 50.8328906, - "lon": -0.1827403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "ref": "BN3 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1750872396, - "lat": 55.9618788, - "lon": -2.4070887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH42 291" - } -}, -{ - "type": "node", - "id": 1750918788, - "lat": 55.9684803, - "lon": -2.4270036, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-01-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 249D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1750920863, - "lat": 50.8519945, - "lon": -1.0583983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO6 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1750924839, - "lat": 50.9334073, - "lon": -1.0127134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO8 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1750929652, - "lat": 51.1347415, - "lon": -1.0349415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "post_box:type": "lamp", - "ref": "GU34 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1750934518, - "lat": 51.4511117, - "lon": -2.6056681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BS1 375D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1750948363, - "lat": 51.6341783, - "lon": 0.8072635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1751122020, - "lat": 51.5851565, - "lon": 0.0086112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 56D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1751131983, - "lat": 50.8304320, - "lon": -4.5139143, - "tags": { - "amenity": "post_box", - "ref": "EX23 100" - } -}, -{ - "type": "node", - "id": 1751132093, - "lat": 50.8422390, - "lon": -4.5101021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey (not the ref)" - } -}, -{ - "type": "node", - "id": 1751145334, - "lat": 55.9879620, - "lon": -2.4941265, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH42 233", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1751175635, - "lat": 54.5995276, - "lon": -3.1326173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1751223299, - "lat": 52.2557719, - "lon": -0.9196973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1751223300, - "lat": 52.2566544, - "lon": -0.9239514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 213", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1751231855, - "lat": 52.2492196, - "lon": -0.9497739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Royal Mail have corrected ref displayed on box from NN3 270 to NN5 270 so node updated", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1751231857, - "lat": 52.2556882, - "lon": -0.9570870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1751231859, - "lat": 52.2567481, - "lon": -0.9523689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1751243803, - "lat": 52.2516654, - "lon": -0.9380486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 163" - } -}, -{ - "type": "node", - "id": 1751243804, - "lat": 52.2555667, - "lon": -0.9457224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1751259718, - "lat": 52.2513190, - "lon": -0.9657827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 423" - } -}, -{ - "type": "node", - "id": 1751259719, - "lat": 52.2542319, - "lon": -0.9629288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN5 446" - } -}, -{ - "type": "node", - "id": 1751776399, - "lat": 51.4833219, - "lon": -2.6130178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS9 224D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1752181945, - "lat": 57.3964006, - "lon": -2.3096234, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1752323905, - "lat": 51.8047447, - "lon": 0.6340252, - "tags": { - "amenity": "post_box", - "ref": "CM8 344" - } -}, -{ - "type": "node", - "id": 1752323984, - "lat": 51.8323677, - "lon": 0.5383425, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CM3 288", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1752324048, - "lat": 51.8478302, - "lon": 0.5235194, - "tags": { - "amenity": "post_box", - "ref": "CM77 11" - } -}, -{ - "type": "node", - "id": 1752640387, - "lat": 51.4092127, - "lon": -0.8311765, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1752952223, - "lat": 52.3516599, - "lon": -0.8474688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN6 132" - } -}, -{ - "type": "node", - "id": 1752952228, - "lat": 52.3470101, - "lon": -0.8397480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 814" - } -}, -{ - "type": "node", - "id": 1752952233, - "lat": 52.3197378, - "lon": -0.8389487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN6 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1752952237, - "lat": 52.3427637, - "lon": -0.8289226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 80" - } -}, -{ - "type": "node", - "id": 1753753700, - "lat": 55.8389372, - "lon": -2.2360348, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "TD14 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1753801546, - "lat": 55.6067697, - "lon": -2.4313292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1753963575, - "lat": 52.1109980, - "lon": -0.9286978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 361" - } -}, -{ - "type": "node", - "id": 1754011827, - "lat": 55.4123862, - "lon": -1.7034189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3153862228171941", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NE66 30D", - "royal_cypher": "EIIR", - "survey:date": "2024-05-30" - } -}, -{ - "type": "node", - "id": 1754011828, - "lat": 55.4111331, - "lon": -1.7009517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP9D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "5109582009111248", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "NE66 7D", - "royal_cypher": "VR", - "survey:date": "2024-05-31" - } -}, -{ - "type": "node", - "id": 1754011829, - "lat": 55.4135921, - "lon": -1.7061708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE66 14D", - "royal_cypher": "EIIR", - "source": "survry" - } -}, -{ - "type": "node", - "id": 1754201029, - "lat": 52.2440452, - "lon": -0.9581155, - "tags": { - "amenity": "post_box", - "ref": "NN5 491" - } -}, -{ - "type": "node", - "id": 1754212019, - "lat": 52.2031867, - "lon": -0.8766627, - "tags": { - "amenity": "post_box", - "ref": "NN4 586" - } -}, -{ - "type": "node", - "id": 1754213207, - "lat": 52.1709986, - "lon": -0.8567915, - "tags": { - "amenity": "post_box", - "ref": "NN7 141" - } -}, -{ - "type": "node", - "id": 1754215369, - "lat": 52.1819557, - "lon": -0.8642698, - "tags": { - "amenity": "post_box", - "ref": "NN7 3" - } -}, -{ - "type": "node", - "id": 1754278557, - "lat": 51.8976959, - "lon": -2.3829213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "post_box:type": "wall", - "ref": "GL19 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1754293750, - "lat": 52.7253465, - "lon": -1.3969378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE67 364" - } -}, -{ - "type": "node", - "id": 1754675409, - "lat": 52.2144683, - "lon": -2.0523958, - "tags": { - "amenity": "post_box", - "fixme": "Need to go back and get full data, and to check it's still there.", - "post_box:type": "lamp", - "ref": "WR7 391", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1754679270, - "lat": 52.1754465, - "lon": -2.1332590, - "tags": { - "amenity": "post_box", - "fixme": "PO looks abandoned from photog records; need to revisit.", - "ref": "WR7 296", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1754699775, - "lat": 51.5304530, - "lon": -0.1008371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "A. Handyside and Co Ltd", - "post_box:type": "pillar", - "ref": "EC1V 120;EC1V 1201", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1754754795, - "lat": 55.4080413, - "lon": -1.6994023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "ref": "NE66 16", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1754754796, - "lat": 55.4066288, - "lon": -1.7067778, - "tags": { - "amenity": "post_box", - "ref": "NE66 125" - } -}, -{ - "type": "node", - "id": 1755071492, - "lat": 50.8530387, - "lon": -0.5722305, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1755105228, - "lat": 55.8621192, - "lon": -3.5192111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 99", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1755133018, - "lat": 55.0497802, - "lon": -1.7424374, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1755133020, - "lat": 55.0501561, - "lon": -1.7451573, - "tags": { - "amenity": "post_box", - "postal_code": "NE20 9XF", - "ref": "NE20 253" - } -}, -{ - "type": "node", - "id": 1755195502, - "lat": 52.2423093, - "lon": -0.9141401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1755195507, - "lat": 52.2445902, - "lon": -0.9156786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 247", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1755195510, - "lat": 52.2460186, - "lon": -0.8828576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1755195514, - "lat": 52.2526379, - "lon": -0.9121257, - "tags": { - "amenity": "post_box", - "ref": "NN5 600" - } -}, -{ - "type": "node", - "id": 1755195518, - "lat": 52.2583655, - "lon": -0.9419752, - "tags": { - "amenity": "post_box", - "ref": "NN5 544" - } -}, -{ - "type": "node", - "id": 1755195522, - "lat": 52.2583948, - "lon": -0.9420201, - "tags": { - "amenity": "post_box", - "ref": "NN5 415" - } -}, -{ - "type": "node", - "id": 1755274120, - "lat": 51.9539401, - "lon": -2.4442349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 09:30", - "post_box:type": "wall", - "ref": "GL18 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1755275321, - "lat": 53.2931633, - "lon": -1.3288350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 795", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1755334774, - "lat": 51.1873433, - "lon": -3.0844801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1755374244, - "lat": 51.7194801, - "lon": -4.7049818, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1755898166, - "lat": 53.3639160, - "lon": -1.4927409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S7 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1755902761, - "lat": 51.0535546, - "lon": -3.1937090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA4 691D" - } -}, -{ - "type": "node", - "id": 1755966031, - "lat": 52.2225281, - "lon": -1.9596908, - "tags": { - "amenity": "post_box", - "fixme": "Could be the Dormston Box; need to go and check it is still there.", - "post_box:type": "lamp", - "ref": "WR7 330", - "source": "memory;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1755970084, - "lat": 52.2131763, - "lon": -2.0246468, - "tags": { - "amenity": "post_box", - "fixme": "Need to go back and see if is still there.", - "post_box:type": "lamp", - "ref": "WR7 163", - "source": "memory;bing", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1756240378, - "lat": 51.7427420, - "lon": 0.6963924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1756320232, - "lat": 55.9032257, - "lon": -3.1929929, - "tags": { - "amenity": "post_box", - "ref": "EH10 632" - } -}, -{ - "type": "node", - "id": 1756320233, - "lat": 55.9042257, - "lon": -3.1978022, - "tags": { - "amenity": "post_box", - "ref": "EH10 277" - } -}, -{ - "type": "node", - "id": 1756320239, - "lat": 55.9071385, - "lon": -3.2051046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH10 284", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1756320255, - "lat": 55.9090257, - "lon": -3.2065112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH10 262", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1756324750, - "lat": 55.9587881, - "lon": -2.4493296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 319", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1756625208, - "lat": 53.0423320, - "lon": -2.5191871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 226", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1756625217, - "lat": 53.0318536, - "lon": -2.5180284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 225", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1756642395, - "lat": 53.0370103, - "lon": -2.4524269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "CW5 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1756648757, - "lat": 53.0454909, - "lon": -2.4521158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "wall", - "ref": "CW5 241", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1756653428, - "lat": 53.0488238, - "lon": -2.4629895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 242", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1757495219, - "lat": 51.4925079, - "lon": 0.2717489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1757518140, - "lat": 52.1939333, - "lon": -0.8472900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 478" - } -}, -{ - "type": "node", - "id": 1757518150, - "lat": 52.2008658, - "lon": -0.8853271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 275" - } -}, -{ - "type": "node", - "id": 1757518159, - "lat": 52.2039973, - "lon": -0.8896353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 305" - } -}, -{ - "type": "node", - "id": 1757630182, - "lat": 52.8744728, - "lon": -1.0830613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG12 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1757659741, - "lat": 51.8846896, - "lon": -0.8653037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "note": "\"With effect from 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturdays.\"", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP22 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1757698923, - "lat": 52.3068897, - "lon": -1.9417142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "fixme": "RM 2013 data suggests B97 39.", - "note": "ref not visible 29/06/18", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B97 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1757706718, - "lat": 51.5843197, - "lon": 0.2097098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1757711600, - "lat": 51.5901440, - "lon": 0.2114191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1757711607, - "lat": 51.5890290, - "lon": 0.2188320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1757714715, - "lat": 51.5842425, - "lon": 0.2203709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1757762391, - "lat": 51.5842941, - "lon": 0.2267921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM11 316" - } -}, -{ - "type": "node", - "id": 1757768234, - "lat": 51.5782480, - "lon": 0.2360740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM11 415" - } -}, -{ - "type": "node", - "id": 1757773417, - "lat": 51.5798700, - "lon": 0.2338982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM11 242" - } -}, -{ - "type": "node", - "id": 1757778423, - "lat": 52.2791610, - "lon": -1.5915268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1758190644, - "lat": 54.5215429, - "lon": -2.9299559, - "tags": { - "amenity": "post_box", - "ref": "CA11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1758316066, - "lat": 55.9850248, - "lon": -2.5619529, - "tags": { - "amenity": "post_box", - "ref": "EH42 228" - } -}, -{ - "type": "node", - "id": 1758393787, - "lat": 51.4383675, - "lon": -0.9019091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "176334061394037", - "note": "maker: derby casters limiter derby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG6 314D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 1758575512, - "lat": 52.1519205, - "lon": -0.4232171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Reference not visible: information plate insert set too low in its holder. Should be MK41 411 according to Royal Mail list.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK41 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 1758586937, - "lat": 51.7440104, - "lon": 0.6936079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1758636830, - "lat": 52.1125804, - "lon": -0.8251615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK19 234" - } -}, -{ - "type": "node", - "id": 1758636836, - "lat": 52.1135531, - "lon": -0.8027493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK19 121" - } -}, -{ - "type": "node", - "id": 1758636838, - "lat": 52.1148261, - "lon": -0.8276519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK19 484" - } -}, -{ - "type": "node", - "id": 1758636842, - "lat": 52.1148588, - "lon": -0.8287263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK19 130" - } -}, -{ - "type": "node", - "id": 1758636845, - "lat": 52.1162662, - "lon": -0.8253548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK19 351" - } -}, -{ - "type": "node", - "id": 1758636848, - "lat": 52.1186432, - "lon": -0.8327879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK19 288" - } -}, -{ - "type": "node", - "id": 1758636852, - "lat": 52.1234730, - "lon": -0.8400965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK19 113" - } -}, -{ - "type": "node", - "id": 1758636856, - "lat": 52.1468551, - "lon": -0.8527859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NN7 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1758636863, - "lat": 52.1495740, - "lon": -0.8478286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 271" - } -}, -{ - "type": "node", - "id": 1758636864, - "lat": 52.1983453, - "lon": -0.8816877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 359" - } -}, -{ - "type": "node", - "id": 1758636869, - "lat": 52.2333709, - "lon": -0.9377108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 550", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1758659095, - "lat": 51.7488477, - "lon": 0.6945652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1758736009, - "lat": 53.3061430, - "lon": -4.2078089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL75 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1758802104, - "lat": 52.1627762, - "lon": -0.4101792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK41 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 1758802426, - "lat": 52.1588395, - "lon": -0.3916466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 1759004942, - "lat": 51.8119697, - "lon": -2.7156656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "hexagonal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "NP25 555D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1759051169, - "lat": 51.5213733, - "lon": -0.0332080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1759098697, - "lat": 50.8552881, - "lon": -4.0641958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1759533814, - "lat": 55.0024519, - "lon": -1.4998722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE28 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1759957323, - "lat": 55.8685648, - "lon": -2.9709470, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH37 53" - } -}, -{ - "type": "node", - "id": 1759966402, - "lat": 55.8657579, - "lon": -2.9651373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH37 21", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1759980324, - "lat": 51.5675291, - "lon": -1.8371970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1759986170, - "lat": 51.8665982, - "lon": -2.3753886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "mapillary": "485865257725223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 1759986172, - "lat": 51.8720832, - "lon": -2.4039194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "check ref as only seen from bus", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 290", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1759986178, - "lat": 51.9123087, - "lon": -2.4090170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 08:00", - "mail:first_class": "yes", - "post_box:type": "lamp", - "ref": "GL18 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1759986184, - "lat": 51.9767928, - "lon": -2.4313434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:20; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL18 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1759992858, - "lat": 55.8821840, - "lon": -2.9595513, - "tags": { - "amenity": "post_box", - "ref": "EH37 250" - } -}, -{ - "type": "node", - "id": 1760006315, - "lat": 55.8776966, - "lon": -2.9858216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH37 52", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1760016997, - "lat": 55.8687979, - "lon": -2.9778728, - "tags": { - "amenity": "post_box", - "ref": "EH37 49" - } -}, -{ - "type": "node", - "id": 1760028638, - "lat": 55.8442250, - "lon": -2.9130292, - "tags": { - "amenity": "post_box", - "ref": "EH37 17" - } -}, -{ - "type": "node", - "id": 1760081764, - "lat": 55.8387288, - "lon": -2.8987536, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH37 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1760119572, - "lat": 52.0124853, - "lon": -0.6201254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK17 17" - } -}, -{ - "type": "node", - "id": 1760119579, - "lat": 52.0138473, - "lon": -0.5807834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 301" - } -}, -{ - "type": "node", - "id": 1760119584, - "lat": 52.0148289, - "lon": -0.5777381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 394" - } -}, -{ - "type": "node", - "id": 1760119587, - "lat": 52.0160672, - "lon": -0.6096427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 392" - } -}, -{ - "type": "node", - "id": 1760119591, - "lat": 52.0264831, - "lon": -0.5942923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 391" - } -}, -{ - "type": "node", - "id": 1760119594, - "lat": 52.0341059, - "lon": -0.5977074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 390" - } -}, -{ - "type": "node", - "id": 1760155625, - "lat": 52.0628277, - "lon": -0.6067926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK43 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1760155633, - "lat": 52.0682380, - "lon": -0.6104360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:25; Sa 09:25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK43 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1760155658, - "lat": 52.0898553, - "lon": -0.5987222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 383", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1760155660, - "lat": 52.1437723, - "lon": -0.5372883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 145" - } -}, -{ - "type": "node", - "id": 1760155662, - "lat": 52.1442364, - "lon": -0.5317746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 417" - } -}, -{ - "type": "node", - "id": 1760155663, - "lat": 52.1446675, - "lon": -0.5275568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 62" - } -}, -{ - "type": "node", - "id": 1760155665, - "lat": 52.1495623, - "lon": -0.5416093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 280" - } -}, -{ - "type": "node", - "id": 1760421443, - "lat": 51.8521845, - "lon": -2.3315866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL2 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1760430622, - "lat": 52.1091877, - "lon": -0.5386533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 61" - } -}, -{ - "type": "node", - "id": 1760430623, - "lat": 52.1135825, - "lon": -0.5090467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1760430624, - "lat": 52.1190546, - "lon": -0.5212514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 45" - } -}, -{ - "type": "node", - "id": 1760435917, - "lat": 52.1299414, - "lon": -0.5674726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK43 253", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1760435921, - "lat": 52.1315534, - "lon": -0.5626917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1760435924, - "lat": 52.1458848, - "lon": -0.5332629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 395" - } -}, -{ - "type": "node", - "id": 1760435928, - "lat": 52.1522843, - "lon": -0.5271388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 05:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 121" - } -}, -{ - "type": "node", - "id": 1760435929, - "lat": 52.1597340, - "lon": -0.5984122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 840" - } -}, -{ - "type": "node", - "id": 1760435930, - "lat": 52.1603069, - "lon": -0.6261668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 463" - } -}, -{ - "type": "node", - "id": 1760435931, - "lat": 52.1624604, - "lon": -0.6225780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK43 852", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1760444783, - "lat": 52.1684731, - "lon": -0.5260866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 370" - } -}, -{ - "type": "node", - "id": 1760444784, - "lat": 52.1685791, - "lon": -0.5543779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "MK43 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1760444785, - "lat": 52.1873634, - "lon": -0.5320052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 335" - } -}, -{ - "type": "node", - "id": 1760444786, - "lat": 52.1892108, - "lon": -0.5520316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "MK43 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1760444787, - "lat": 52.2063879, - "lon": -0.5307042, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK43 49" - } -}, -{ - "type": "node", - "id": 1760444788, - "lat": 52.2082589, - "lon": -0.5500262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 405" - } -}, -{ - "type": "node", - "id": 1760444793, - "lat": 52.2092319, - "lon": -0.5892373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 78" - } -}, -{ - "type": "node", - "id": 1760444794, - "lat": 52.2121397, - "lon": -0.5827529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 172" - } -}, -{ - "type": "node", - "id": 1760449208, - "lat": 52.0688717, - "lon": -0.5065136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 355" - } -}, -{ - "type": "node", - "id": 1760449209, - "lat": 52.0702207, - "lon": -0.5139786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK43 76" - } -}, -{ - "type": "node", - "id": 1760449210, - "lat": 52.1535029, - "lon": -0.6497686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 851" - } -}, -{ - "type": "node", - "id": 1760449211, - "lat": 52.1540495, - "lon": -0.6557408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK43 843" - } -}, -{ - "type": "node", - "id": 1760449212, - "lat": 52.1864274, - "lon": -0.6057899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 59" - } -}, -{ - "type": "node", - "id": 1760449213, - "lat": 52.1901733, - "lon": -0.6072649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 357" - } -}, -{ - "type": "node", - "id": 1760449214, - "lat": 52.2030763, - "lon": -0.6030843, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "MK43 75" - } -}, -{ - "type": "node", - "id": 1760510194, - "lat": 51.4750940, - "lon": -2.6797393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "pillar", - "ref": "BS20 288", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1760514660, - "lat": 51.3653871, - "lon": -0.4358485, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT13 7D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1760522509, - "lat": 51.9229607, - "lon": -1.4075774, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1760522586, - "lat": 51.9282258, - "lon": -1.3743562, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1760524450, - "lat": 51.4398853, - "lon": -2.5592058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS4 113", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1760524487, - "lat": 51.4364760, - "lon": -2.5563668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1760542905, - "lat": 51.8723722, - "lon": -1.2767523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1760570311, - "lat": 51.8027139, - "lon": -0.8498172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 1760803514, - "lat": 52.6295482, - "lon": 0.4941675, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 342" - } -}, -{ - "type": "node", - "id": 1760875167, - "lat": 53.2632959, - "lon": -2.5090287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW9 137", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1760896748, - "lat": 50.8895639, - "lon": -3.4170529, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1761069493, - "lat": 54.5342256, - "lon": -2.9334361, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 62" - } -}, -{ - "type": "node", - "id": 1761069600, - "lat": 54.5367254, - "lon": -2.9434251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "617810909213438", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "CA11 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2021-09-14" - } -}, -{ - "type": "node", - "id": 1761370157, - "lat": 55.0501479, - "lon": -1.7528525, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE20 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1761370321, - "lat": 55.0536170, - "lon": -1.7479963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "NE20 9QD", - "ref": "NE20 107", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1761370340, - "lat": 55.0536848, - "lon": -1.7427508, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1761423832, - "lat": 50.8498655, - "lon": -1.0274154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 7", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1761423847, - "lat": 50.8578169, - "lon": -1.0501395, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-27", - "old_ref": "PO7 379", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1761423853, - "lat": 50.8597822, - "lon": -1.0481467, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "last_checked": "2020-04-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1761423898, - "lat": 50.8611471, - "lon": -1.0324527, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-31", - "old_ref": "PO7 326", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1761423911, - "lat": 50.8656900, - "lon": -1.0383748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1761636218, - "lat": 51.1858584, - "lon": -3.0903134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 10:30", - "drive_through": "no", - "mapillary": "964515754364613", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 270D", - "source:position": "survey", - "survey:date": "2023-12-24" - } -}, -{ - "type": "node", - "id": 1762353592, - "lat": 55.8446837, - "lon": -2.8714507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH37 73" - } -}, -{ - "type": "node", - "id": 1762367975, - "lat": 55.8664971, - "lon": -2.8438260, - "tags": { - "amenity": "post_box", - "ref": "EH37 241" - } -}, -{ - "type": "node", - "id": 1762373892, - "lat": 55.8751985, - "lon": -2.8307479, - "tags": { - "amenity": "post_box", - "ref": "EH37 156" - } -}, -{ - "type": "node", - "id": 1762412201, - "lat": 52.1431475, - "lon": -0.8567505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 209" - } -}, -{ - "type": "node", - "id": 1762412202, - "lat": 52.1585911, - "lon": -0.8934056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 197" - } -}, -{ - "type": "node", - "id": 1762458655, - "lat": 55.8471480, - "lon": -2.9811071, - "tags": { - "amenity": "post_box", - "ref": "EH37 50" - } -}, -{ - "type": "node", - "id": 1762468865, - "lat": 55.8750642, - "lon": -3.0016029, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH37 51" - } -}, -{ - "type": "node", - "id": 1762517044, - "lat": 53.0678169, - "lon": -2.5718856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "ref": "CW5 211", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1762520231, - "lat": 53.8505745, - "lon": -1.8361391, - "tags": { - "amenity": "post_box", - "ref": "BD16 602", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1762520801, - "lat": 53.0771055, - "lon": -2.5743720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW5 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1762524209, - "lat": 53.0931882, - "lon": -2.5684094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 202", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1763375075, - "lat": 57.8372747, - "lon": -5.0953359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1763496030, - "lat": 52.1566935, - "lon": -0.8869344, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 179" - } -}, -{ - "type": "node", - "id": 1763496039, - "lat": 52.1580550, - "lon": -0.9020069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 291" - } -}, -{ - "type": "node", - "id": 1763496042, - "lat": 52.1804153, - "lon": -0.9366993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN7 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1763562468, - "lat": 52.1793529, - "lon": -0.8246607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 121" - } -}, -{ - "type": "node", - "id": 1763644948, - "lat": 51.5063842, - "lon": -2.5821689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "BS34 369D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1763644951, - "lat": 51.5073304, - "lon": -2.5763567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS34 255D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1763765198, - "lat": 50.4312399, - "lon": -3.6851938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "TQ9 1", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1764309594, - "lat": 53.0794898, - "lon": -2.5258209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "mapillary": "487306382475094", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CW5 200", - "source": "survey", - "survey:date": "2020-04-14" - } -}, -{ - "type": "node", - "id": 1764359840, - "lat": 54.8124477, - "lon": -4.1338209, - "tags": { - "amenity": "post_box", - "ref": "DG6 75" - } -}, -{ - "type": "node", - "id": 1764377911, - "lat": 54.8329089, - "lon": -4.0547345, - "tags": { - "amenity": "post_box", - "ref": "DG6 70" - } -}, -{ - "type": "node", - "id": 1764393788, - "lat": 54.8473364, - "lon": -4.0407489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DG6 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1764397480, - "lat": 54.8409430, - "lon": -4.0441726, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DG6 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1764405647, - "lat": 54.8629478, - "lon": -4.0324793, - "tags": { - "amenity": "post_box", - "ref": "DG6 42" - } -}, -{ - "type": "node", - "id": 1764482089, - "lat": 52.1422238, - "lon": -0.8827280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 89" - } -}, -{ - "type": "node", - "id": 1764482090, - "lat": 52.1582282, - "lon": -0.8971526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 166" - } -}, -{ - "type": "node", - "id": 1764482091, - "lat": 52.1846106, - "lon": -0.9744215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1764482092, - "lat": 52.2300602, - "lon": -0.9791840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1765151238, - "lat": 51.4897607, - "lon": -1.3838557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1765408424, - "lat": 52.2351404, - "lon": -0.9134354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 538" - } -}, -{ - "type": "node", - "id": 1765408425, - "lat": 52.2351802, - "lon": -0.9134075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1765408427, - "lat": 52.2400616, - "lon": -0.9276487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 208", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1765408428, - "lat": 52.2400677, - "lon": -0.9275930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 540", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1765509194, - "lat": 55.9050673, - "lon": -2.9950608, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH22 14" - } -}, -{ - "type": "node", - "id": 1765975077, - "lat": 53.1139179, - "lon": -2.6533741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW6 301", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1766025096, - "lat": 55.8874442, - "lon": -3.0333201, - "tags": { - "amenity": "post_box", - "ref": "EH22 239" - } -}, -{ - "type": "node", - "id": 1766033891, - "lat": 55.9381724, - "lon": -2.9458311, - "tags": { - "amenity": "post_box", - "ref": "EH33 346" - } -}, -{ - "type": "node", - "id": 1766047911, - "lat": 55.9472457, - "lon": -2.9553532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH33 321" - } -}, -{ - "type": "node", - "id": 1766090713, - "lat": 52.2711590, - "lon": -0.9785171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 123" - } -}, -{ - "type": "node", - "id": 1766090716, - "lat": 52.2741539, - "lon": -0.9661583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN7 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1766090719, - "lat": 52.2857566, - "lon": -0.9462865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 31" - } -}, -{ - "type": "node", - "id": 1766412407, - "lat": 55.8857823, - "lon": -3.0809763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 40D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1766413272, - "lat": 50.4314794, - "lon": -3.6717021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "TQ9 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1766448901, - "lat": 51.7430816, - "lon": 0.6805960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM9 223", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1766469764, - "lat": 50.4812856, - "lon": -3.5298705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TQ1 178D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 1766526044, - "lat": 52.6281111, - "lon": -1.1261291, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-24", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "LE1 810", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1766530766, - "lat": 50.5055876, - "lon": -3.5255532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ1 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1767389640, - "lat": 55.4046001, - "lon": -1.6991492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE66 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1767717950, - "lat": 52.6257349, - "lon": -1.1639103, - "tags": { - "amenity": "post_box", - "ref": "LE3 555" - } -}, -{ - "type": "node", - "id": 1767830203, - "lat": 53.0514411, - "lon": -2.5669467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "wall", - "ref": "CW5 212", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1767846152, - "lat": 53.0250160, - "lon": -2.6057824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "CW5 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1767846157, - "lat": 53.0136830, - "lon": -2.6159400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "ref": "CW5 254", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1767862207, - "lat": 53.0186800, - "lon": -2.5825087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW5 218", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1767879886, - "lat": 53.0277407, - "lon": -2.5589243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 222", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1767899508, - "lat": 51.5397531, - "lon": -1.3204619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "RG20 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1768054852, - "lat": 52.7149730, - "lon": -2.4276870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1768100158, - "lat": 51.5887573, - "lon": -1.4192912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "operator": "Royal Mail", - "ref": "OX12 1112" - } -}, -{ - "type": "node", - "id": 1768110913, - "lat": 51.5702810, - "lon": 0.2335060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1768116683, - "lat": 51.5760210, - "lon": 0.2321160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1768361391, - "lat": 52.4528026, - "lon": 0.9811837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1655", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1768605946, - "lat": 52.4349136, - "lon": 0.9965910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR16 1640", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1768818446, - "lat": 55.8429319, - "lon": -5.9473438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA60 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1768843680, - "lat": 51.5624791, - "lon": 0.2198765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RM11 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1768850341, - "lat": 51.5703859, - "lon": 0.2240135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "name": "Parkstone Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RM11 50" - } -}, -{ - "type": "node", - "id": 1768937550, - "lat": 52.7247380, - "lon": -1.1092039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 49", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1768997775, - "lat": 54.9705364, - "lon": -1.6157123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1769019892, - "lat": 51.3972107, - "lon": -2.1615139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "drive_through": "no", - "mapillary": "1184835772031328", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN12 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Local_knowledge", - "survey:date": "2020-01-25" - } -}, -{ - "type": "node", - "id": 1769327391, - "lat": 52.2965786, - "lon": -2.2541548, - "tags": { - "amenity": "post_box", - "fixme": "Have to go and check is still there and get rest of data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 361", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1769359501, - "lat": 51.3651933, - "lon": -0.8405505, - "tags": { - "amenity": "post_box", - "mapillary": "469286304130579", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-10-17" - } -}, -{ - "type": "node", - "id": 1769372916, - "lat": 51.3746534, - "lon": -0.8010028, - "tags": { - "amenity": "post_box", - "mapillary": "192829809361297", - "post_box:type": "pillar", - "survey:date": "2019-09-08" - } -}, -{ - "type": "node", - "id": 1769462831, - "lat": 54.0542523, - "lon": -1.7006171, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1769838710, - "lat": 55.6027686, - "lon": -2.4214450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1769948935, - "lat": 50.9381123, - "lon": -1.0043296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1769948938, - "lat": 50.9441462, - "lon": -1.0099914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 176D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1770044973, - "lat": 52.2933848, - "lon": -1.5811116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1770050600, - "lat": 54.6521262, - "lon": -5.6325153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 796D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1770526149, - "lat": 52.2984242, - "lon": -0.0681626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 200" - } -}, -{ - "type": "node", - "id": 1770587664, - "lat": 51.7493389, - "lon": -1.4015261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX29 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1770648760, - "lat": 53.4959956, - "lon": -2.2580068, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1770771871, - "lat": 51.1313384, - "lon": -2.9826732, - "tags": { - "amenity": "post_box", - "mapillary": "475633620378737", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-02-04" - } -}, -{ - "type": "node", - "id": 1770855563, - "lat": 51.2209415, - "lon": -0.0294751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RH8 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1771338858, - "lat": 52.0850565, - "lon": -3.1488910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "459870399441542", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR3 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 1771473115, - "lat": 50.5557721, - "lon": -3.4933398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TQ14 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1771660709, - "lat": 55.7213759, - "lon": -2.7529994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TD2 54", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1771667145, - "lat": 55.7880708, - "lon": -2.7982349, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TD2 124", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1771671702, - "lat": 55.7724119, - "lon": -2.8035871, - "tags": { - "amenity": "post_box", - "ref": "TD2 21" - } -}, -{ - "type": "node", - "id": 1771706967, - "lat": 55.7050302, - "lon": -2.5903085, - "tags": { - "amenity": "post_box", - "ref": "TD3 40" - } -}, -{ - "type": "node", - "id": 1771715318, - "lat": 55.6472295, - "lon": -2.5597173, - "tags": { - "amenity": "post_box", - "ref": "TD3 44" - } -}, -{ - "type": "node", - "id": 1771740508, - "lat": 55.0375181, - "lon": -1.7764673, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1771748314, - "lat": 55.0330813, - "lon": -1.7733962, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1772814190, - "lat": 55.6823112, - "lon": -2.5446472, - "tags": { - "amenity": "post_box", - "ref": "TD3 47" - } -}, -{ - "type": "node", - "id": 1772833579, - "lat": 55.6579447, - "lon": -2.6350844, - "tags": { - "amenity": "post_box", - "ref": "TD4 36" - } -}, -{ - "type": "node", - "id": 1772836700, - "lat": 55.6382643, - "lon": -2.6777270, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-06", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "ref": "TD4 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1772839638, - "lat": 55.6383400, - "lon": -2.6799720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD4 38", - "royal_cypher": "scottish_crown", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1772841513, - "lat": 55.6393634, - "lon": -2.6696348, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TD4 33", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1772851268, - "lat": 55.6133966, - "lon": -2.6641822, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TD4 37", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1772875628, - "lat": 55.6804633, - "lon": -2.6618552, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TD4 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1772892413, - "lat": 55.6727969, - "lon": -2.6941198, - "tags": { - "amenity": "post_box", - "ref": "TD4 32" - } -}, -{ - "type": "node", - "id": 1772937316, - "lat": 50.8534724, - "lon": 0.0533235, - "tags": { - "amenity": "post_box", - "ref": "BN8 557", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773042836, - "lat": 51.8406741, - "lon": -1.4010265, - "tags": { - "amenity": "post_box", - "fixme": "Survey", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1773053758, - "lat": 55.8415324, - "lon": -6.1269540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA46 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1773053819, - "lat": 55.8479546, - "lon": -6.1056712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "PA46 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1773119292, - "lat": 55.7567508, - "lon": -6.2879342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00, Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA43 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1773127343, - "lat": 50.8491023, - "lon": -0.9570859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773127348, - "lat": 50.8506509, - "lon": -0.9402014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1773127350, - "lat": 50.8615949, - "lon": -0.9241738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773127355, - "lat": 50.8514773, - "lon": -0.9534582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773127361, - "lat": 50.8505027, - "lon": -0.9472328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1773127366, - "lat": 50.8646143, - "lon": -0.9254184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773401359, - "lat": 52.7345037, - "lon": -0.4408075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE10 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773452276, - "lat": 52.7373766, - "lon": -0.4434897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE10 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773453349, - "lat": 53.9994385, - "lon": -1.4987721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773453358, - "lat": 54.0012233, - "lon": -1.5006713, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1773568508, - "lat": 55.6294563, - "lon": -6.1881046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:00", - "operator": "Royal Mail", - "ref": "PA42 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1773568552, - "lat": 55.6306262, - "lon": -6.1511116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA42 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1773568643, - "lat": 55.6353481, - "lon": -6.1276089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "ref": "PA42 2" - } -}, -{ - "type": "node", - "id": 1773568658, - "lat": 55.6412235, - "lon": -6.1088681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "ref": "PA42 11" - } -}, -{ - "type": "node", - "id": 1773678500, - "lat": 55.9385137, - "lon": -2.3540474, - "tags": { - "amenity": "post_box", - "ref": "TD13 314" - } -}, -{ - "type": "node", - "id": 1773689010, - "lat": 55.9467442, - "lon": -2.3816642, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-01-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD13 317D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1773694562, - "lat": 52.1273519, - "lon": -0.7751337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK16 263" - } -}, -{ - "type": "node", - "id": 1773694939, - "lat": 52.1525552, - "lon": -0.8070816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "MK16 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1773695275, - "lat": 52.1828704, - "lon": -0.8045320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 35" - } -}, -{ - "type": "node", - "id": 1773695278, - "lat": 52.1871852, - "lon": -0.8197239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN7 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1773695293, - "lat": 52.1894751, - "lon": -0.8286092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 398" - } -}, -{ - "type": "node", - "id": 1773695907, - "lat": 52.2083542, - "lon": -0.8895510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 601" - } -}, -{ - "type": "node", - "id": 1773695908, - "lat": 52.2084514, - "lon": -0.8790636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 205" - } -}, -{ - "type": "node", - "id": 1773695909, - "lat": 52.2135848, - "lon": -0.8804687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 149" - } -}, -{ - "type": "node", - "id": 1773696579, - "lat": 52.2165026, - "lon": -0.8989038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 279" - } -}, -{ - "type": "node", - "id": 1773696580, - "lat": 52.2192746, - "lon": -0.9022230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 245" - } -}, -{ - "type": "node", - "id": 1773696581, - "lat": 52.2213086, - "lon": -0.8973540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 442" - } -}, -{ - "type": "node", - "id": 1773848828, - "lat": 53.2903680, - "lon": -3.8380808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL32 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1773881902, - "lat": 53.5105608, - "lon": -2.2527015, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1773938417, - "lat": 51.9898341, - "lon": 0.6033469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO9 62" - } -}, -{ - "type": "node", - "id": 1773964592, - "lat": 53.5168591, - "lon": -2.2520738, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1773970570, - "lat": 52.6064847, - "lon": 0.4404099, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE33 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1774431140, - "lat": 55.6334613, - "lon": -6.1937716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PA42 12" - } -}, -{ - "type": "node", - "id": 1774444522, - "lat": 55.7571756, - "lon": -6.2827331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA43 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1774450988, - "lat": 55.7574407, - "lon": -6.2860018, - "tags": { - "amenity": "post_box", - "ref": "PA43 6" - } -}, -{ - "type": "node", - "id": 1774460482, - "lat": 51.2935073, - "lon": -0.7564894, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1774543874, - "lat": 52.2784852, - "lon": -1.0246856, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 129" - } -}, -{ - "type": "node", - "id": 1774544012, - "lat": 52.2698628, - "lon": -0.9852516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN7 79" - } -}, -{ - "type": "node", - "id": 1775115896, - "lat": 52.6050296, - "lon": 0.4068642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE33 290" - } -}, -{ - "type": "node", - "id": 1775116015, - "lat": 52.6200761, - "lon": 0.4644961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 287" - } -}, -{ - "type": "node", - "id": 1775116030, - "lat": 52.6250017, - "lon": 0.4790760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE33 218" - } -}, -{ - "type": "node", - "id": 1775116033, - "lat": 52.6290288, - "lon": 0.4864860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 161" - } -}, -{ - "type": "node", - "id": 1775265156, - "lat": 51.2924214, - "lon": -0.7698427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU14 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1775437219, - "lat": 51.4584555, - "lon": -2.6070100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 305D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1775501532, - "lat": 51.4517750, - "lon": -2.6021348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "BS1 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1775501533, - "lat": 51.4531746, - "lon": -2.6101145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS8 401", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1775569091, - "lat": 55.8645105, - "lon": -3.0725266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "EH22 46" - } -}, -{ - "type": "node", - "id": 1775572607, - "lat": 53.3842991, - "lon": -3.0904671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type B post box CH49 481 by Carron Company on Grafton Drive, Upton.", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 481", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Grafton Drive, Upton.jpg" - } -}, -{ - "type": "node", - "id": 1775891398, - "lat": 52.5218066, - "lon": 1.5080156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR14 1400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1775939084, - "lat": 54.8726906, - "lon": -3.7656136, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG5 43", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1775997089, - "lat": 52.2636773, - "lon": -0.8815502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 102" - } -}, -{ - "type": "node", - "id": 1776090631, - "lat": 53.6393957, - "lon": -2.3267412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "843923294304032", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-06-24" - } -}, -{ - "type": "node", - "id": 1776104492, - "lat": 53.6358983, - "lon": -2.3314722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "799692651940369", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-06-24" - } -}, -{ - "type": "node", - "id": 1776117884, - "lat": 54.8901462, - "lon": -3.8070735, - "tags": { - "amenity": "post_box", - "ref": "DG5 34" - } -}, -{ - "type": "node", - "id": 1776124773, - "lat": 54.9333685, - "lon": -3.8159095, - "tags": { - "amenity": "post_box", - "ref": "DG5 53" - } -}, -{ - "type": "node", - "id": 1776128592, - "lat": 54.8648769, - "lon": -3.7866179, - "tags": { - "amenity": "post_box", - "ref": "DG5 10" - } -}, -{ - "type": "node", - "id": 1776136289, - "lat": 54.9262799, - "lon": -3.8189476, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG5 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776137421, - "lat": 54.9327951, - "lon": -3.8224291, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DG5 19", - "royal_cypher": "scottish_crown", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776147277, - "lat": 54.9373609, - "lon": -3.8210076, - "tags": { - "amenity": "post_box", - "ref": "DG5 67", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776153300, - "lat": 54.9302092, - "lon": -3.8199320, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG5 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776154112, - "lat": 55.8919093, - "lon": -4.2327654, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-19", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "G21 511" - } -}, -{ - "type": "node", - "id": 1776154189, - "lat": 55.8929445, - "lon": -4.2479505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G22 1144" - } -}, -{ - "type": "node", - "id": 1776154242, - "lat": 55.8941520, - "lon": -4.2438529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G22 1173", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1776154247, - "lat": 55.8943360, - "lon": -4.2349502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G21 1158" - } -}, -{ - "type": "node", - "id": 1776156519, - "lat": 54.9372454, - "lon": -3.8284614, - "tags": { - "amenity": "post_box", - "ref": "DG5 15", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776158636, - "lat": 54.9294171, - "lon": -3.8220697, - "tags": { - "amenity": "post_box", - "ref": "DG5 89", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776162394, - "lat": 54.9299102, - "lon": -3.8186928, - "tags": { - "amenity": "post_box", - "ref": "DG5 60", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776176514, - "lat": 54.8807429, - "lon": -3.7918110, - "tags": { - "amenity": "post_box", - "ref": "DG5 56", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776188688, - "lat": 54.8689908, - "lon": -3.7446409, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG5 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776199006, - "lat": 54.9026805, - "lon": -3.7415752, - "tags": { - "amenity": "post_box", - "ref": "DG5 8", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776205167, - "lat": 54.8800861, - "lon": -3.7311419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG5 44", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1776213793, - "lat": 54.8813370, - "lon": -3.8117638, - "tags": { - "amenity": "post_box", - "ref": "DG5 58", - "source": "Flickr", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 1776219267, - "lat": 54.8756873, - "lon": -3.8134792, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG5 74", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776220338, - "lat": 55.8766761, - "lon": -4.2476934, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-19", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "G21 240" - } -}, -{ - "type": "node", - "id": 1776220354, - "lat": 55.8791752, - "lon": -4.2399110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "mapillary": "482362517069233", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G21 398", - "survey:date": "2022-07-09" - } -}, -{ - "type": "node", - "id": 1776221226, - "lat": 52.2401144, - "lon": -0.9444431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 285", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1776221227, - "lat": 52.2437105, - "lon": -0.9457813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1776224899, - "lat": 54.8919520, - "lon": -3.8399700, - "tags": { - "amenity": "post_box", - "ref": "DG7 41" - } -}, -{ - "type": "node", - "id": 1776225510, - "lat": 52.2421483, - "lon": -0.9318423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 238", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1776225512, - "lat": 52.2448484, - "lon": -0.9287125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 288" - } -}, -{ - "type": "node", - "id": 1776225513, - "lat": 52.2492100, - "lon": -0.9283412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 71" - } -}, -{ - "type": "node", - "id": 1776244612, - "lat": 55.8665887, - "lon": -4.2450163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "G4 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1776244647, - "lat": 55.8685888, - "lon": -4.2429698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G4 980" - } -}, -{ - "type": "node", - "id": 1776244648, - "lat": 55.8686012, - "lon": -4.2429802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1776251863, - "lat": 55.2122185, - "lon": -4.2621032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG7 86", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1776259937, - "lat": 54.9157492, - "lon": -3.7169146, - "tags": { - "amenity": "post_box", - "ref": "DG5 7", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1776361840, - "lat": 54.3041460, - "lon": -0.7529903, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO18 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1776400172, - "lat": 53.2335577, - "lon": -4.0146637, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1776581762, - "lat": 52.5253785, - "lon": -1.3809125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LE10 59", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1776581763, - "lat": 52.5254378, - "lon": -1.3809064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:20; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE10 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1776581765, - "lat": 52.5287490, - "lon": -1.3738091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 48" - } -}, -{ - "type": "node", - "id": 1776581770, - "lat": 52.5333623, - "lon": -1.3708819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE10 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1776581774, - "lat": 52.5355640, - "lon": -1.3730567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 70" - } -}, -{ - "type": "node", - "id": 1776581778, - "lat": 52.5360524, - "lon": -1.3717250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 15" - } -}, -{ - "type": "node", - "id": 1776586270, - "lat": 52.5356784, - "lon": -1.3812796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 11" - } -}, -{ - "type": "node", - "id": 1776586271, - "lat": 52.5358150, - "lon": -1.3886469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 43" - } -}, -{ - "type": "node", - "id": 1776586272, - "lat": 52.5384469, - "lon": -1.3967819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 54" - } -}, -{ - "type": "node", - "id": 1776586273, - "lat": 52.5389146, - "lon": -1.3917414, - "tags": { - "addr:street": "Trent Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LE10 49" - } -}, -{ - "type": "node", - "id": 1776586274, - "lat": 52.5397300, - "lon": -1.4070259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LE10 60P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1776586275, - "lat": 52.5435916, - "lon": -1.3987015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 63" - } -}, -{ - "type": "node", - "id": 1776586276, - "lat": 52.5436654, - "lon": -1.3883368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 52" - } -}, -{ - "type": "node", - "id": 1776586277, - "lat": 52.5447253, - "lon": -1.3832133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 2" - } -}, -{ - "type": "node", - "id": 1776586278, - "lat": 52.5450659, - "lon": -1.3968492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 65" - } -}, -{ - "type": "node", - "id": 1776600643, - "lat": 52.5289704, - "lon": -1.3485515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE10 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1776600644, - "lat": 52.5365449, - "lon": -1.3455439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LE10 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1776600645, - "lat": 52.5423095, - "lon": -1.3731090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 30" - } -}, -{ - "type": "node", - "id": 1776600646, - "lat": 52.5430885, - "lon": -1.3550560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 45" - } -}, -{ - "type": "node", - "id": 1776600647, - "lat": 52.5444291, - "lon": -1.3681216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 24" - } -}, -{ - "type": "node", - "id": 1776600648, - "lat": 52.5444668, - "lon": -1.3735426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 13" - } -}, -{ - "type": "node", - "id": 1776600649, - "lat": 52.5449904, - "lon": -1.3631627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1776600650, - "lat": 52.5487515, - "lon": -1.3768821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 28" - } -}, -{ - "type": "node", - "id": 1776600651, - "lat": 52.5494457, - "lon": -1.3836792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 32" - } -}, -{ - "type": "node", - "id": 1776600652, - "lat": 52.5511591, - "lon": -1.3895469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 7" - } -}, -{ - "type": "node", - "id": 1776600653, - "lat": 52.5513691, - "lon": -1.3635712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 86" - } -}, -{ - "type": "node", - "id": 1776600654, - "lat": 52.5515762, - "lon": -1.3768192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 39" - } -}, -{ - "type": "node", - "id": 1776600655, - "lat": 52.5531226, - "lon": -1.3613112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 36" - } -}, -{ - "type": "node", - "id": 1776600656, - "lat": 52.5541730, - "lon": -1.3825170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 61" - } -}, -{ - "type": "node", - "id": 1776600657, - "lat": 52.5563173, - "lon": -1.3651089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 46" - } -}, -{ - "type": "node", - "id": 1776600658, - "lat": 52.5564614, - "lon": -1.3773281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LE10 51" - } -}, -{ - "type": "node", - "id": 1776601482, - "lat": 58.1367923, - "lon": -5.2604095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1776604721, - "lat": 58.1254980, - "lon": -5.2646734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1776789199, - "lat": 52.7055092, - "lon": -1.9927530, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1777082698, - "lat": 52.3830577, - "lon": -1.3407990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1777082699, - "lat": 52.4869948, - "lon": -1.3690648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "298531331824086", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE10 41", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 1777082700, - "lat": 52.4920511, - "lon": -1.3344089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 16" - } -}, -{ - "type": "node", - "id": 1777082701, - "lat": 52.4944295, - "lon": -1.3666138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 33" - } -}, -{ - "type": "node", - "id": 1777082702, - "lat": 52.5043604, - "lon": -1.3160482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 37" - } -}, -{ - "type": "node", - "id": 1777082703, - "lat": 52.5131979, - "lon": -1.3017760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 12" - } -}, -{ - "type": "node", - "id": 1777082704, - "lat": 52.5215454, - "lon": -1.2947435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE10 9" - } -}, -{ - "type": "node", - "id": 1777082705, - "lat": 52.5225846, - "lon": -1.2896910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "595048571898279", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "LE10 31", - "survey:date": "2020-09-07" - } -}, -{ - "type": "node", - "id": 1777082706, - "lat": 52.5261085, - "lon": -1.3525987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE10 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1777082707, - "lat": 52.5307973, - "lon": -1.3193487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE10 8" - } -}, -{ - "type": "node", - "id": 1777082708, - "lat": 52.5334038, - "lon": -1.3510769, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-27", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE10 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1777101290, - "lat": 52.2039524, - "lon": -0.8852588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 112" - } -}, -{ - "type": "node", - "id": 1777101291, - "lat": 52.2152818, - "lon": -0.9117201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 447" - } -}, -{ - "type": "node", - "id": 1777133077, - "lat": 55.3675705, - "lon": -3.9231377, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DG4 152", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1777146034, - "lat": 55.3803041, - "lon": -3.9997435, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG4 181", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1777151387, - "lat": 55.3822724, - "lon": -3.9964414, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG4 176" - } -}, -{ - "type": "node", - "id": 1777152309, - "lat": 55.3787726, - "lon": -3.9906257, - "tags": { - "amenity": "post_box", - "ref": "DG4 182" - } -}, -{ - "type": "node", - "id": 1777152811, - "lat": 55.3815945, - "lon": -3.9881317, - "tags": { - "amenity": "post_box", - "ref": "DG4 161" - } -}, -{ - "type": "node", - "id": 1777158189, - "lat": 55.3868068, - "lon": -3.9982170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2239960236193505", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG4 171", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 1777159834, - "lat": 55.3875351, - "lon": -4.0042171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "834088944378607", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG4 160", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 1777173098, - "lat": 55.3770853, - "lon": -3.9325217, - "tags": { - "amenity": "post_box", - "ref": "DG4 156" - } -}, -{ - "type": "node", - "id": 1777173984, - "lat": 51.5955048, - "lon": 0.0909162, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1777176090, - "lat": 55.3539659, - "lon": -3.8881874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "774823117720718", - "name": "Eliock Bridge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG4 163", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 1777188064, - "lat": 55.3652573, - "lon": -3.9190864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "317716210408270", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG4 162", - "survey:date": "2021-07-13" - } -}, -{ - "type": "node", - "id": 1777190663, - "lat": 55.3665790, - "lon": -3.9277580, - "tags": { - "amenity": "post_box", - "ref": "DG4 49" - } -}, -{ - "type": "node", - "id": 1777192890, - "lat": 55.3653823, - "lon": -3.9350590, - "tags": { - "amenity": "post_box", - "ref": "DG4 157" - } -}, -{ - "type": "node", - "id": 1777325792, - "lat": 53.2594100, - "lon": -3.9782000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL33 344", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1777422812, - "lat": 52.6430721, - "lon": 0.4550407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE33 409", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1777422877, - "lat": 52.6526559, - "lon": 0.4451879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE33 231" - } -}, -{ - "type": "node", - "id": 1777422883, - "lat": 52.6532103, - "lon": 0.4745667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE33 288" - } -}, -{ - "type": "node", - "id": 1777461572, - "lat": 52.8319462, - "lon": 1.1849273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR11 1145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1777913724, - "lat": 55.5987684, - "lon": -2.4290621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1777982468, - "lat": 52.2735793, - "lon": 0.6896197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 8164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1777982510, - "lat": 52.2767206, - "lon": 0.6939032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP28 8261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1778106005, - "lat": 51.0724780, - "lon": 1.0831170, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CT21 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1778166245, - "lat": 53.0681939, - "lon": -2.5217219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "opening_hours": "Mo-Fr 13:00-17:30", - "post_box:type": "meter", - "ref": "CW5 998", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1778184222, - "lat": 51.3944525, - "lon": -0.2504929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1778286269, - "lat": 56.1849470, - "lon": -4.2838331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK8 182" - } -}, -{ - "type": "node", - "id": 1778369618, - "lat": 55.9012736, - "lon": -3.2593388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH13 540" - } -}, -{ - "type": "node", - "id": 1778369626, - "lat": 55.9028410, - "lon": -3.2686478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH13 413D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1778369627, - "lat": 55.9055753, - "lon": -3.2559394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH13 392D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 1778369628, - "lat": 55.9071891, - "lon": -3.2570124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "mapillary": "1016159063030098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 394", - "royal_cypher": "scottish_crown", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 1778369629, - "lat": 55.9083820, - "lon": -3.2527773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH13 389D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1778462334, - "lat": 50.5530360, - "lon": -3.4932640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "note": "Collection plate is currently missing (25 June 2021)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1778935467, - "lat": 50.7597167, - "lon": -2.0845390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 17D", - "ref:GB:uprn": "10015441161", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1779196583, - "lat": 52.7779104, - "lon": 1.1662513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR10 1024", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779196633, - "lat": 52.8014084, - "lon": 1.1918298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "post_box:type": "lamp", - "ref": "NR11 1115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779228692, - "lat": 52.5232953, - "lon": -1.5186062, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1779456337, - "lat": 52.7304635, - "lon": -0.4157625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE10 206", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1779513586, - "lat": 50.9697027, - "lon": 0.2500774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "wall", - "ref": "TN21 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1779513592, - "lat": 50.9703163, - "lon": 0.2506696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN21 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1779544339, - "lat": 52.5531908, - "lon": -0.4336176, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1779584975, - "lat": 52.9185255, - "lon": 1.1799356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "NR25 2512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779585053, - "lat": 52.9115354, - "lon": 1.1781013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR25 2511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779594154, - "lat": 52.1750437, - "lon": -0.9319097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779595050, - "lat": 52.1701031, - "lon": -0.8811676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN7 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1779596919, - "lat": 52.9315223, - "lon": 1.1903261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-04-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR26 2610D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779608004, - "lat": 52.1931261, - "lon": -0.9032589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN4 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1779674960, - "lat": 52.2080383, - "lon": -0.9120922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1779674972, - "lat": 52.2120099, - "lon": -0.9243499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780114305, - "lat": 52.9414553, - "lon": 1.2043810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR26 2613D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1780114308, - "lat": 52.9378774, - "lon": 1.1985525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR26 2614D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780188370, - "lat": 57.5869097, - "lon": -6.3768016, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-11", - "collection_times": "Mo-Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV51 80", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1780408197, - "lat": 50.1645985, - "lon": -5.1199306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR10 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1780492714, - "lat": 51.4871059, - "lon": -3.7141996, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "covered": "no", - "indoor": "no", - "mapillary": "281363251158328", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 1780519500, - "lat": 58.3518625, - "lon": -5.1516853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "IV27 307", - "royal_cypher": "scottish_crown", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1780620939, - "lat": 52.1427387, - "lon": -0.4990175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 1780653942, - "lat": 55.4161226, - "lon": -1.7100940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE66 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1780671841, - "lat": 52.1705794, - "lon": -0.8999974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 109", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1780677212, - "lat": 52.2048212, - "lon": -0.9014525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780680781, - "lat": 52.2070334, - "lon": -0.9049549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780694178, - "lat": 52.2213235, - "lon": -0.9264463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780728722, - "lat": 53.3223767, - "lon": -3.8488700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "wall", - "ref": "LL30 116", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1780766824, - "lat": 53.4999924, - "lon": -1.4329841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S74 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1780766827, - "lat": 53.5013325, - "lon": -1.4388018, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2018-01-02", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S74 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1780766829, - "lat": 53.5005428, - "lon": -1.4384879, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2018-01-02", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S74 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1780766832, - "lat": 53.5039090, - "lon": -1.4366963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S74 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780769982, - "lat": 53.5033251, - "lon": -1.4445176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S74 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1780907456, - "lat": 54.4270380, - "lon": -3.0093140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 09:00", - "operator": "Royal Mail", - "ref": "LA22 200", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1781014960, - "lat": 52.6270717, - "lon": -1.1090229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "LE5 213" - } -}, -{ - "type": "node", - "id": 1781332945, - "lat": 54.8833448, - "lon": -4.0572165, - "tags": { - "amenity": "post_box", - "ref": "DG6 9" - } -}, -{ - "type": "node", - "id": 1781343348, - "lat": 54.8664496, - "lon": -4.0826745, - "tags": { - "amenity": "post_box", - "ref": "DG6 32" - } -}, -{ - "type": "node", - "id": 1781346478, - "lat": 54.8455789, - "lon": -4.0379470, - "tags": { - "amenity": "post_box", - "ref": "DG6 17" - } -}, -{ - "type": "node", - "id": 1781361026, - "lat": 54.8415024, - "lon": -4.0624623, - "tags": { - "amenity": "post_box", - "ref": "DG6 64" - } -}, -{ - "type": "node", - "id": 1781401877, - "lat": 54.8424703, - "lon": -4.0541474, - "tags": { - "amenity": "post_box", - "ref": "DG6 48" - } -}, -{ - "type": "node", - "id": 1781425337, - "lat": 50.8526852, - "lon": 0.4369680, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Peartree Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 57", - "ref:GB:uprn": "10015470598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Peartree Lane TN3957.jpg" - } -}, -{ - "type": "node", - "id": 1781425339, - "lat": 50.8573587, - "lon": 0.4291206, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Whydown Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 33", - "ref:GB:uprn": "10015313120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Whydown Road TN3933.jpg" - } -}, -{ - "type": "node", - "id": 1781425340, - "lat": 50.8591810, - "lon": 0.3543165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN27 953", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1781425343, - "lat": 50.8939629, - "lon": 0.3098713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "wall", - "ref": "BN27 961", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1781425344, - "lat": 50.9073789, - "lon": 0.3015931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:type": "lamp", - "ref": "BN27 939", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781425346, - "lat": 50.9150810, - "lon": 0.3043511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 938", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781425347, - "lat": 50.9227475, - "lon": 0.2840738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781425361, - "lat": 50.9256125, - "lon": 0.2598770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "wall", - "ref": "TN21 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1781425362, - "lat": 50.9260020, - "lon": 0.2790080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "wall", - "ref": "TN21 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1781427448, - "lat": 54.8481028, - "lon": -4.1274980, - "tags": { - "amenity": "post_box", - "ref": "DG6 20" - } -}, -{ - "type": "node", - "id": 1781486440, - "lat": 50.9888922, - "lon": -0.7504101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU29 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1781574487, - "lat": 55.8798403, - "lon": -4.2103820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "G21 165" - } -}, -{ - "type": "node", - "id": 1781610579, - "lat": 55.8738945, - "lon": -4.2128790, - "tags": { - "amenity": "post_box", - "note": "ref plate missing", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1781655381, - "lat": 55.8648153, - "lon": -4.2121352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G31 774" - } -}, -{ - "type": "node", - "id": 1781674869, - "lat": 52.2246518, - "lon": -0.9168100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781674870, - "lat": 52.2271745, - "lon": -0.9282468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 563", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781674872, - "lat": 52.2280613, - "lon": -0.9216027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781674873, - "lat": 52.2291265, - "lon": -0.9268320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781675550, - "lat": 52.2184745, - "lon": -0.9326314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781676863, - "lat": 52.2221284, - "lon": -0.8404030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NN4 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781685321, - "lat": 52.2208111, - "lon": -0.8626373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "franked_mail_only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN4 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781685326, - "lat": 52.2208153, - "lon": -0.8626554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN4 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781690439, - "lat": 52.2230914, - "lon": -0.9019439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1781690440, - "lat": 52.2250123, - "lon": -0.9057271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1781690441, - "lat": 52.2255964, - "lon": -0.8968399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781690443, - "lat": 52.2271538, - "lon": -0.8993900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 274", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1781692703, - "lat": 52.2206632, - "lon": -0.9111517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "check for new location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781693599, - "lat": 52.2088336, - "lon": -0.9435238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NN4 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781694463, - "lat": 52.2149277, - "lon": -0.9166405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781743545, - "lat": 54.8321512, - "lon": -4.0489279, - "tags": { - "amenity": "post_box", - "ref": "DG6 13" - } -}, -{ - "type": "node", - "id": 1781884363, - "lat": 53.3229886, - "lon": -3.8406600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL30 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781960030, - "lat": 51.0091732, - "lon": -1.5233795, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 533D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1781960033, - "lat": 51.0100946, - "lon": -1.5397071, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 540D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1782021235, - "lat": 54.7125330, - "lon": -3.5043007, - "tags": { - "amenity": "post_box", - "ref": "CA15 146" - } -}, -{ - "type": "node", - "id": 1782463124, - "lat": 55.6388023, - "lon": -2.4571871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD5 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1782467610, - "lat": 55.6504620, - "lon": -2.4653247, - "tags": { - "amenity": "post_box", - "ref": "TD5 16" - } -}, -{ - "type": "node", - "id": 1782471038, - "lat": 55.6284801, - "lon": -2.4188438, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD5 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1782486576, - "lat": 53.3285237, - "lon": -3.8420565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL30 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1782677525, - "lat": 51.6278862, - "lon": -0.4476979, - "tags": { - "amenity": "post_box", - "note": "At reception desk", - "ref": "WD3 266" - } -}, -{ - "type": "node", - "id": 1782730769, - "lat": 54.0597169, - "lon": -1.0949837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO61 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1782730773, - "lat": 54.0597404, - "lon": -1.0949972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:type": "meter", - "ref": "YO61 2012" - } -}, -{ - "type": "node", - "id": 1782741614, - "lat": 51.4725860, - "lon": -0.1914137, - "tags": { - "amenity": "post_box", - "ref": "SW6 48" - } -}, -{ - "type": "node", - "id": 1782754915, - "lat": 52.7947720, - "lon": 0.4695591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE31 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1782790200, - "lat": 52.3071344, - "lon": -1.0233201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1782790201, - "lat": 52.3262138, - "lon": -1.0203239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1782794520, - "lat": 53.0857607, - "lon": -2.5339065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "ref": "CW5 198", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1782979619, - "lat": 51.5366231, - "lon": 0.7652573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS1 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1782979634, - "lat": 51.5383774, - "lon": 0.7509538, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1782979644, - "lat": 51.5355168, - "lon": 0.7321489, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1783002112, - "lat": 51.5458498, - "lon": 0.6774197, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1783002126, - "lat": 51.5455790, - "lon": 0.6815168, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1783159789, - "lat": 51.0506583, - "lon": -0.8148981, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU30 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1783172611, - "lat": 51.7545065, - "lon": -0.6678567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "note": "Victorian wall box replced with modern lamp box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP23 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1783370863, - "lat": 54.0157810, - "lon": -0.3894161, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783379752, - "lat": 54.0209421, - "lon": -0.3920406, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783396071, - "lat": 52.5633610, - "lon": 0.6083023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783396100, - "lat": 52.5227816, - "lon": 0.6215751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:20; Sa 10:45", - "post_box:type": "lamp", - "ref": "IP26 3353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783417407, - "lat": 52.5375007, - "lon": 0.5852167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP26 3311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783417452, - "lat": 52.5632269, - "lon": 0.5319510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE33 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783417474, - "lat": 52.5701668, - "lon": 0.5149420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE33 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783433035, - "lat": 52.6750704, - "lon": 0.4339976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783447838, - "lat": 52.6958230, - "lon": 0.4197536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1783447863, - "lat": 52.6860962, - "lon": 0.4219008, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1783450524, - "lat": 52.7253512, - "lon": 0.4135357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1783450527, - "lat": 52.7306673, - "lon": 0.4160508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783512147, - "lat": 51.7923236, - "lon": -0.6784637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1783525709, - "lat": 53.9652440, - "lon": -1.0809334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 17:45", - "note": "this is a private postal collection box", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1783585487, - "lat": 51.4294505, - "lon": -0.0601374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1783585490, - "lat": 51.4266924, - "lon": -0.0662209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1783650132, - "lat": 52.7111086, - "lon": 0.4155084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1783762622, - "lat": 52.1941829, - "lon": -0.9280821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1783972842, - "lat": 51.4349422, - "lon": -0.9140306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "RG6 560" - } -}, -{ - "type": "node", - "id": 1784519158, - "lat": 55.8977787, - "lon": -2.1305346, - "tags": { - "amenity": "post_box", - "ref": "TD14 28" - } -}, -{ - "type": "node", - "id": 1784532235, - "lat": 55.8426909, - "lon": -2.1236763, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD14 45", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1784567125, - "lat": 51.6005166, - "lon": -0.3479670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1784612658, - "lat": 53.5592913, - "lon": -2.8744372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1784809686, - "lat": 52.1481584, - "lon": -2.0539412, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 365", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1784811437, - "lat": 50.1671578, - "lon": -5.1129553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR10 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1784934015, - "lat": 55.8902416, - "lon": -2.2241548, - "tags": { - "amenity": "post_box", - "ref": "TD14 23" - } -}, -{ - "type": "node", - "id": 1784951835, - "lat": 55.8518491, - "lon": -2.2027983, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD14 18" - } -}, -{ - "type": "node", - "id": 1784959018, - "lat": 55.8521337, - "lon": -2.1897145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD14 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1784959153, - "lat": 52.1890086, - "lon": -0.8876980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1784959154, - "lat": 52.1907958, - "lon": -0.8810091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 1205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1784980723, - "lat": 55.8677053, - "lon": -2.0899577, - "tags": { - "amenity": "post_box", - "ref": "TD14 44" - } -}, -{ - "type": "node", - "id": 1784984241, - "lat": 52.2181722, - "lon": -0.8752923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN4 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1785061914, - "lat": 52.1313024, - "lon": -2.0256381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:type": "lamp", - "ref": "WR10 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1785120191, - "lat": 53.8575767, - "lon": -1.8224010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD16 613D" - } -}, -{ - "type": "node", - "id": 1785722088, - "lat": 52.7759904, - "lon": 0.5280681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE32 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1785786914, - "lat": 53.2561261, - "lon": 0.1420825, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1785842362, - "lat": 51.8180219, - "lon": 0.1103340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1785844118, - "lat": 51.8082548, - "lon": 0.1224426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM21 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1785845997, - "lat": 51.8071710, - "lon": 0.1363894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 123", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1785873994, - "lat": 52.0792790, - "lon": -2.0663068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR10 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1785936879, - "lat": 52.7746129, - "lon": 0.5227945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "post_box:type": "lamp", - "ref": "PE32 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1785993132, - "lat": 53.4526546, - "lon": -2.0856576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK14 14" - } -}, -{ - "type": "node", - "id": 1786108314, - "lat": 52.0889023, - "lon": -2.0208087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "lamp", - "ref": "WR10 477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1786263823, - "lat": 55.8724958, - "lon": -2.0997578, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TD14 48", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1786269630, - "lat": 55.8728585, - "lon": -2.0907456, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TD14 43", - "royal_cypher": "no", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1786274122, - "lat": 55.8713602, - "lon": -2.0920018, - "tags": { - "amenity": "post_box", - "ref": "TD14 39" - } -}, -{ - "type": "node", - "id": 1786282666, - "lat": 55.8659386, - "lon": -2.0941859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD14 150" - } -}, -{ - "type": "node", - "id": 1786304437, - "lat": 55.8430728, - "lon": -2.1285572, - "tags": { - "amenity": "post_box", - "ref": "TD14 159" - } -}, -{ - "type": "node", - "id": 1786390323, - "lat": 52.3315205, - "lon": -2.0401389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B60 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1786406090, - "lat": 55.8840069, - "lon": -2.1531883, - "tags": { - "amenity": "post_box", - "ref": "TD14 152" - } -}, -{ - "type": "node", - "id": 1786411127, - "lat": 55.8869235, - "lon": -2.1568387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TD14 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1786421272, - "lat": 55.8919690, - "lon": -2.1367554, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD14 32", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1786486564, - "lat": 51.5802142, - "lon": -1.7431013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 193" - } -}, -{ - "type": "node", - "id": 1786487872, - "lat": 51.5853408, - "lon": -1.7453354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 409" - } -}, -{ - "type": "node", - "id": 1787273016, - "lat": 52.3068525, - "lon": -1.9417393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "note": "Franked Mail Only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "B97 9027", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1787309817, - "lat": 52.2879721, - "lon": -1.9363766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "B97 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1787748652, - "lat": 52.2275185, - "lon": -0.9846397, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1787823019, - "lat": 54.3683681, - "lon": -1.3094657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL6 182" - } -}, -{ - "type": "node", - "id": 1787835669, - "lat": 52.9606717, - "lon": -1.1436943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NG3 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1787929840, - "lat": 52.2959926, - "lon": -1.9387875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1787929852, - "lat": 52.2988915, - "lon": -1.9397168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B98 131", - "source": "Bing/Dracos" - } -}, -{ - "type": "node", - "id": 1787981066, - "lat": 52.3062514, - "lon": -1.9396501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "note": "2 adjacent boxed but they have the same ref!", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B98 4172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1787981109, - "lat": 52.3062557, - "lon": -1.9396310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "note": "2 adjacent boxes but they have the same ref!", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B98 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1788347395, - "lat": 51.6428425, - "lon": -0.7907572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "mapillary": "222704082627070", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HP12 43", - "survey:date": "2020-05-16" - } -}, -{ - "type": "node", - "id": 1788882849, - "lat": 52.2589397, - "lon": -1.0741381, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 470", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1788891990, - "lat": 52.1809326, - "lon": -1.0262378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1789120559, - "lat": 51.3909440, - "lon": -0.2528226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1789126193, - "lat": 51.3919858, - "lon": -0.2450110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1789132630, - "lat": 51.6172620, - "lon": 0.5270020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1789893051, - "lat": 55.8573247, - "lon": -2.2283249, - "tags": { - "amenity": "post_box", - "ref": "TD14 4" - } -}, -{ - "type": "node", - "id": 1789908878, - "lat": 55.8386368, - "lon": -2.0635915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1789937479, - "lat": 53.2071164, - "lon": -3.8463085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1789946303, - "lat": 55.8678076, - "lon": -2.2546108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD14 22" - } -}, -{ - "type": "node", - "id": 1789969254, - "lat": 55.8890616, - "lon": -2.1508718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "495503034924759", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD14 160", - "royal_cypher": "no", - "survey:date": "2020-12-01" - } -}, -{ - "type": "node", - "id": 1790325343, - "lat": 52.9166420, - "lon": -1.0856696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NG12 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1790406151, - "lat": 53.2808588, - "lon": -3.8273929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co, London & Glasgow", - "post_box:type": "pillar", - "ref": "LL32 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1790640556, - "lat": 51.7250311, - "lon": -0.6812516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP16 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 1790640557, - "lat": 51.7282191, - "lon": -0.6836920, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-05", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "Confirm if still present: shown in photo taken 19 November 2017 but reported \"Post box at former Post Office; now closed.\" on 29 November 2017. (This is not the location of the former PO, which closed 2004.)", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP16 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1790673762, - "lat": 51.8136202, - "lon": 0.1575031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1790711107, - "lat": 52.4067778, - "lon": -1.5002579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1790711114, - "lat": 52.4101739, - "lon": -1.5080981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1791942289, - "lat": 52.5815954, - "lon": 1.2293967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "fixme": "Mo-Fr collection time uncertain, due to broken plate.", - "post_box:type": "wall", - "ref": "NR14 1459", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1791942488, - "lat": 52.5717631, - "lon": 1.2120018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "NR14 1456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1791978685, - "lat": 52.5236617, - "lon": 1.1420739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "lamp", - "ref": "NR16 1607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1791978689, - "lat": 52.5349100, - "lon": 1.1453392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "lamp", - "ref": "NR16 1606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792005804, - "lat": 55.8346111, - "lon": -4.2255683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mapillary": "536184400807470", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G73 1304", - "survey:date": "2021-07-03" - } -}, -{ - "type": "node", - "id": 1792048051, - "lat": 52.5052307, - "lon": 1.1024453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR16 1613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792048066, - "lat": 52.4973915, - "lon": 1.0634850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "NR17 1723", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792048223, - "lat": 52.4945401, - "lon": 1.1065556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792098461, - "lat": 52.4547858, - "lon": -0.6054368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN14 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792098465, - "lat": 52.4610023, - "lon": -0.6113539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "NN14 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792220261, - "lat": 52.5293231, - "lon": 0.3122612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "PE38 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792270220, - "lat": 52.4817174, - "lon": 1.0384105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "wall", - "ref": "NR17 1725", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1792270292, - "lat": 52.4820017, - "lon": 1.0213502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR17 1726", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1792279873, - "lat": 55.8435797, - "lon": -4.2266571, - "tags": { - "amenity": "post_box", - "note": "no plate", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1792372164, - "lat": 52.4688189, - "lon": 0.9911644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "lamp", - "ref": "NR16 1643", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1792414202, - "lat": 51.8170978, - "lon": 0.1399737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1792414214, - "lat": 51.8122083, - "lon": 0.1438488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM21 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1792532899, - "lat": 52.2476064, - "lon": -1.8284444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B50 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1792864786, - "lat": 51.0538382, - "lon": -1.7733036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1792975022, - "lat": 54.4833875, - "lon": -1.5471951, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL2 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1793340319, - "lat": 53.0710901, - "lon": -2.4873142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 248", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1793349803, - "lat": 53.0778991, - "lon": -2.4984710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 249", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1793478818, - "lat": 51.8087713, - "lon": 0.1455365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 1209", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1793702873, - "lat": 52.6262093, - "lon": 0.4063179, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE34 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1793832623, - "lat": 52.2576389, - "lon": 0.7089929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP32 2111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1794370088, - "lat": 52.0846544, - "lon": -2.0507811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "wall", - "ref": "WR10 320", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1794654630, - "lat": 51.8094136, - "lon": 0.1625122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1794659558, - "lat": 51.8083647, - "lon": 0.1616821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1794663863, - "lat": 51.8121581, - "lon": 0.1590777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM21 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1794668164, - "lat": 51.8188097, - "lon": 0.1514737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM21 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1794720603, - "lat": 56.5288712, - "lon": -6.2091013, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA74 141", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1794735424, - "lat": 56.6230823, - "lon": -6.0646456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PA75 101", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1794776012, - "lat": 56.6260424, - "lon": -6.0685444, - "tags": { - "amenity": "post_box", - "ref": "PA75 169" - } -}, -{ - "type": "node", - "id": 1794783709, - "lat": 56.6189520, - "lon": -6.0737747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PA75 151", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1794801940, - "lat": 50.5982139, - "lon": -4.2945122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1794810732, - "lat": 56.5900197, - "lon": -6.1875610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA75 150", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1794826316, - "lat": 56.5909044, - "lon": -6.2255204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PA75 112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1794849503, - "lat": 56.5838427, - "lon": -6.2715712, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA75 157", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1794866338, - "lat": 56.4807359, - "lon": -6.1533227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA73 1", - "royal_cypher": "scottish_crown", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1794888073, - "lat": 56.5186989, - "lon": -5.9434373, - "tags": { - "amenity": "post_box", - "ref": "PA72 152" - } -}, -{ - "type": "node", - "id": 1794895055, - "lat": 56.5172003, - "lon": -5.9449597, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA72 142", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1794924725, - "lat": 56.4774496, - "lon": -5.9878762, - "tags": { - "amenity": "post_box", - "ref": "PA72 118" - } -}, -{ - "type": "node", - "id": 1794991084, - "lat": 51.3476459, - "lon": -2.0862167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1794995207, - "lat": 51.3501998, - "lon": -2.0749619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Spout Lane Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1795546147, - "lat": 56.0049422, - "lon": -3.7867264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK2 41D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1796315081, - "lat": 56.5309191, - "lon": -5.9743124, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA72 123", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1796321856, - "lat": 53.2935679, - "lon": -3.8192663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1796321881, - "lat": 53.3141140, - "lon": -3.8107210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1796496677, - "lat": 57.2145746, - "lon": -4.6176316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 15:30", - "old_ref": "IV3 146", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV63 146", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1796684421, - "lat": 51.7557488, - "lon": -0.3327803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 75", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1796743673, - "lat": 56.4945783, - "lon": -5.9863342, - "tags": { - "amenity": "post_box", - "ref": "PA71 158" - } -}, -{ - "type": "node", - "id": 1796756530, - "lat": 56.3827259, - "lon": -5.9962450, - "tags": { - "amenity": "post_box", - "ref": "PA70 119" - } -}, -{ - "type": "node", - "id": 1796778944, - "lat": 56.3279781, - "lon": -6.1999032, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA70 122", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1796964075, - "lat": 50.5464701, - "lon": -3.5145905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ14 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1796964363, - "lat": 50.5529775, - "lon": -3.5085492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1797058960, - "lat": 51.3418039, - "lon": -2.1078015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1797159575, - "lat": 56.3184411, - "lon": -6.2198974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 06:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA67 159", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797176411, - "lat": 56.3244106, - "lon": -6.3002362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA67 125", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797186018, - "lat": 56.3914007, - "lon": -5.9771019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 07:00", - "fixme": "check ref -- location outside PA67 postal district", - "ref": "PA67 131", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797213659, - "lat": 56.2944420, - "lon": -6.2331482, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA67 170", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797235036, - "lat": 56.3251395, - "lon": -6.3391669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA67 126", - "royal_cypher": "scottish_crown", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 1797245290, - "lat": 56.3250788, - "lon": -6.3663626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 08:00", - "post_box:type": "pillar", - "ref": "PA66 120", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797479103, - "lat": 56.4710813, - "lon": -5.7074493, - "tags": { - "amenity": "post_box", - "ref": "PA65 145" - } -}, -{ - "type": "node", - "id": 1797509084, - "lat": 56.4371459, - "lon": -5.6869561, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA64 143", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797522975, - "lat": 56.3561414, - "lon": -5.8735842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "ref": "PA62 161", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1797544314, - "lat": 56.4538714, - "lon": -5.6907846, - "tags": { - "amenity": "post_box", - "ref": "PA65 105" - } -}, -{ - "type": "node", - "id": 1797552686, - "lat": 56.3665040, - "lon": -5.7982640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PA65 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1797605080, - "lat": 52.1255194, - "lon": -2.0516722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR10 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1797657754, - "lat": 50.5478103, - "lon": -3.4991692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ14 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1797657771, - "lat": 50.5479774, - "lon": -3.5062288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1797919998, - "lat": 52.0708884, - "lon": -2.0231116, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "historic_operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR10 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1798146630, - "lat": 54.3294937, - "lon": -1.4511652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL7 184" - } -}, -{ - "type": "node", - "id": 1798592125, - "lat": 56.3815887, - "lon": -6.0578243, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA69 149", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1798610074, - "lat": 56.4333574, - "lon": -6.1343410, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA68 147", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1798632231, - "lat": 56.4917210, - "lon": -6.8349190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA77 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1798662230, - "lat": 56.5161656, - "lon": -6.8143104, - "tags": { - "amenity": "post_box", - "ref": "PA77 137" - } -}, -{ - "type": "node", - "id": 1798667512, - "lat": 56.5266346, - "lon": -6.7926126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA77 138", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1798672143, - "lat": 56.5411491, - "lon": -6.7453954, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA77 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1798840407, - "lat": 51.1174499, - "lon": -0.1720080, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1798851121, - "lat": 51.1209409, - "lon": -0.1807356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Needs survey for royal cypher (probably eiir)", - "old_ref": "RH10 78", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 78D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1799234129, - "lat": 51.4015473, - "lon": -1.0029519, - "tags": { - "amenity": "post_box", - "postal_code": "RG7", - "ref": "RG7 221" - } -}, -{ - "type": "node", - "id": 1799244593, - "lat": 56.4892763, - "lon": -6.9412591, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA77 109", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1799247796, - "lat": 51.1197678, - "lon": -0.1869902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1799268651, - "lat": 56.4838816, - "lon": -6.9013421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA77 107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1799275012, - "lat": 56.4829235, - "lon": -6.9650277, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA77 134", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1799288494, - "lat": 56.4576355, - "lon": -6.9382900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:00", - "post_box:type": "lamp", - "ref": "PA77 136", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1799301592, - "lat": 56.4679128, - "lon": -6.8969881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA77 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1799305829, - "lat": 56.4600611, - "lon": -6.8929268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA77 135", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1799332458, - "lat": 56.4484310, - "lon": -6.8952248, - "tags": { - "amenity": "post_box", - "ref": "PA77 171" - } -}, -{ - "type": "node", - "id": 1799645039, - "lat": 51.0228804, - "lon": -3.1762575, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1799660567, - "lat": 51.0294834, - "lon": -3.1967831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1799670690, - "lat": 53.3173631, - "lon": -3.7739713, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL30 119" - } -}, -{ - "type": "node", - "id": 1799851872, - "lat": 55.8969416, - "lon": -3.5353944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 38", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1799957180, - "lat": 51.2401357, - "lon": -0.0346139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1799957188, - "lat": 51.2493645, - "lon": -0.1061586, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH1 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1800478461, - "lat": 56.5211234, - "lon": -6.8593575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA77 140", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1800498386, - "lat": 56.5315186, - "lon": -6.7761563, - "tags": { - "amenity": "post_box", - "ref": "PA77 144" - } -}, -{ - "type": "node", - "id": 1800537087, - "lat": 55.8021669, - "lon": -6.0096893, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA60 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1800549257, - "lat": 55.8764417, - "lon": -5.9100036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15", - "post_box:type": "lamp", - "ref": "PA60 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1800734493, - "lat": 52.4646162, - "lon": 0.9085861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "NR16 1645", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1800835337, - "lat": 52.2946070, - "lon": -1.5862294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-25", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "CV34 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1800903342, - "lat": 51.6723791, - "lon": -0.1729654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN4 107", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1800919962, - "lat": 51.6714958, - "lon": -0.1611647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 37" - } -}, -{ - "type": "node", - "id": 1800937022, - "lat": 51.6147312, - "lon": 0.5228685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1800953488, - "lat": 53.7482259, - "lon": -2.6627117, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-25", - "check_date:collection_times": "2020-02-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "Church Brow, Knot House", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "PR5 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1800981474, - "lat": 55.8479309, - "lon": -4.4379209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PA3 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1800981487, - "lat": 55.8456695, - "lon": -4.4396635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PA3 340" - } -}, -{ - "type": "node", - "id": 1801565081, - "lat": 50.9883415, - "lon": -0.7381123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "GU29 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1801590442, - "lat": 51.5832766, - "lon": -1.7486698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 141" - } -}, -{ - "type": "node", - "id": 1801654989, - "lat": 50.3883775, - "lon": -3.5111361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-05-14" - } -}, -{ - "type": "node", - "id": 1801789113, - "lat": 56.2044191, - "lon": -3.4209640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY13 155", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1801843541, - "lat": 54.0397438, - "lon": -1.2427364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO30 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1801855282, - "lat": 56.5231808, - "lon": -6.9134181, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA77 133", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1801870294, - "lat": 56.5136812, - "lon": -6.9025122, - "tags": { - "amenity": "post_box", - "ref": "PA77 153" - } -}, -{ - "type": "node", - "id": 1802036405, - "lat": 52.0902047, - "lon": -2.0490278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Ref and times corrected from info plate Sept 2015", - "post_box:type": "lamp", - "ref": "WR10 498D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 1802097078, - "lat": 51.1040884, - "lon": -2.9844009, - "tags": { - "amenity": "post_box", - "mapillary": "152119796879584", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TA7 14", - "survey:date": "2020-07-10" - } -}, -{ - "type": "node", - "id": 1802097081, - "lat": 51.1159111, - "lon": -2.9965453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1802223306, - "lat": 53.1671356, - "lon": -1.0564522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 227", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1802460346, - "lat": 54.2938635, - "lon": -1.4493672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL7 92" - } -}, -{ - "type": "node", - "id": 1802574486, - "lat": 52.1275903, - "lon": -2.0674486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "note": "Ref confirmed as correct from info plate Sep 2015", - "post_box:type": "pillar", - "ref": "WR10 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1803645441, - "lat": 57.6516789, - "lon": -6.3975913, - "tags": { - "amenity": "post_box", - "ref": "IV51 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1803673705, - "lat": 56.6827370, - "lon": -6.4866731, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "stone_pillar", - "post_box:type": "lamp", - "ref": "PA78 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1803681606, - "lat": 56.5980997, - "lon": -6.6163862, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA78 113", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1804039493, - "lat": 52.1257352, - "lon": -2.0382418, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1804281057, - "lat": 50.8257208, - "lon": -1.0694193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO2 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1804377540, - "lat": 51.1491371, - "lon": -0.3280622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH5 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1804443854, - "lat": 54.2482056, - "lon": -1.5298775, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1804443880, - "lat": 54.2131740, - "lon": -1.5520224, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL8 153", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1804443886, - "lat": 54.2193997, - "lon": -1.5754753, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6647959", - "post_box:type": "lamp", - "ref": "DL8 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1804443916, - "lat": 54.2846546, - "lon": -1.5983132, - "tags": { - "amenity": "post_box", - "ref": "DL8 94", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1804447146, - "lat": 54.4251489, - "lon": -1.6666561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL10 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1804447191, - "lat": 54.4181197, - "lon": -1.6940023, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1804451723, - "lat": 54.4078875, - "lon": -1.7257813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "698354711691421", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DL10 8", - "source": "survey", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 1804540545, - "lat": 51.6126616, - "lon": 0.5206966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS12 466;SS12 1466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1804874317, - "lat": 55.9072378, - "lon": -3.2671520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 395" - } -}, -{ - "type": "node", - "id": 1804874322, - "lat": 55.9091112, - "lon": -3.2602407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH13 396" - } -}, -{ - "type": "node", - "id": 1804874325, - "lat": 55.9103171, - "lon": -3.2684065, - "tags": { - "amenity": "post_box", - "ref": "EH13 406" - } -}, -{ - "type": "node", - "id": 1804874346, - "lat": 55.9116143, - "lon": -3.2626993, - "tags": { - "amenity": "post_box", - "ref": "EH13 431" - } -}, -{ - "type": "node", - "id": 1805149350, - "lat": 53.4312062, - "lon": -2.5946047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 222", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1805287257, - "lat": 56.0953845, - "lon": -3.1652724, - "tags": { - "amenity": "post_box", - "ref": "KY1 47" - } -}, -{ - "type": "node", - "id": 1805914015, - "lat": 51.3776004, - "lon": 0.0802691, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1806688717, - "lat": 52.0692881, - "lon": -2.0269993, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "historic_operator": "(none)", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR10 257", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps;bing", - "source:collection_times": "survey" - } -}, -{ - "type": "node", - "id": 1806688808, - "lat": 52.0722774, - "lon": -2.0264745, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1807301465, - "lat": 52.3026821, - "lon": -1.0801774, - "tags": { - "amenity": "post_box", - "note": "Box installed here to replace wall box on High Street. Original box reference retained.", - "operator": "Royal Mail", - "ref": "NN6 519", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1807301466, - "lat": 52.3039004, - "lon": -1.0710713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807301467, - "lat": 52.3044759, - "lon": -1.0673289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807301468, - "lat": 52.3053886, - "lon": -1.0894757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807323388, - "lat": 52.2774437, - "lon": -1.0689157, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807325070, - "lat": 52.2746254, - "lon": -1.0959236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "NN11 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807332174, - "lat": 52.2831112, - "lon": -1.1052783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN6 499", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1807376628, - "lat": 50.8024596, - "lon": -1.0877533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807376634, - "lat": 50.8011577, - "lon": -1.0878444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1807386014, - "lat": 54.5965244, - "lon": -1.2933908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1807713467, - "lat": 51.7209622, - "lon": 0.4622547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1808049603, - "lat": 52.6038334, - "lon": -1.6185803, - "tags": { - "amenity": "post_box", - "ref": "B78 146" - } -}, -{ - "type": "node", - "id": 1808049642, - "lat": 52.6016196, - "lon": -1.6145943, - "tags": { - "amenity": "post_box", - "ref": "B78 397" - } -}, -{ - "type": "node", - "id": 1808090950, - "lat": 52.6232201, - "lon": -1.6119273, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B78 1368" - } -}, -{ - "type": "node", - "id": 1808091016, - "lat": 52.6194880, - "lon": -1.6149370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B78 426", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1808532123, - "lat": 55.9037691, - "lon": -3.2258375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH13 465D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1808545343, - "lat": 55.9004883, - "lon": -3.2534925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH13 605" - } -}, -{ - "type": "node", - "id": 1808627876, - "lat": 53.5500668, - "lon": -1.4853277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1808637037, - "lat": 52.7197924, - "lon": -1.7625340, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1808646562, - "lat": 52.6701522, - "lon": -1.7446588, - "tags": { - "amenity": "post_box", - "ref": "WS14 34" - } -}, -{ - "type": "node", - "id": 1808692711, - "lat": 51.8585515, - "lon": -1.5965428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "lamp", - "ref": "OX7 895", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1808692897, - "lat": 51.8618808, - "lon": -1.5916621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "lamp", - "ref": "OX7 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1808693141, - "lat": 51.8658723, - "lon": -1.5658472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "post_box:type": "wall", - "ref": "OX7 446", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1808725168, - "lat": 51.8727762, - "lon": -1.4825884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX7 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1808834219, - "lat": 52.5269357, - "lon": 0.3939530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE38 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1808842862, - "lat": 52.2939777, - "lon": -0.8512865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN3 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1808858231, - "lat": 52.4856802, - "lon": 0.5128634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "note": "Collection plate damaged, so half of ref mssing. Going to guess it is the one nearby on the royal mail list.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1808858348, - "lat": 52.4865965, - "lon": 0.5196761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1808873600, - "lat": 52.2769637, - "lon": -0.8587426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 151", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1808928206, - "lat": 52.4632376, - "lon": 0.5516271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "post_box:type": "wall", - "ref": "IP26 3371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1809126529, - "lat": 52.3005339, - "lon": -1.6388194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1809230023, - "lat": 53.2993657, - "lon": -3.5558297, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1809230055, - "lat": 53.3025908, - "lon": -3.5394671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1809297089, - "lat": 50.4313990, - "lon": -3.8381275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ10 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1809559703, - "lat": 51.5187369, - "lon": -0.7224957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 75" - } -}, -{ - "type": "node", - "id": 1809807903, - "lat": 54.6767075, - "lon": -1.5977390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL16 209" - } -}, -{ - "type": "node", - "id": 1809835792, - "lat": 51.7417317, - "lon": -0.3012058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1809877166, - "lat": 52.0809336, - "lon": -2.0288177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "lamp", - "ref": "WR10 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 1809923856, - "lat": 51.7475695, - "lon": -0.3024546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AL1 854P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1810017680, - "lat": 51.1480601, - "lon": -2.9649057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1810112463, - "lat": 51.6148944, - "lon": 0.5195727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "name": "Station Approach", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS11 300" - } -}, -{ - "type": "node", - "id": 1810279114, - "lat": 51.0805806, - "lon": -1.0894110, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-04", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "SO24 219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1810634890, - "lat": 56.6877339, - "lon": -5.1839764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "PH49 116", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1810646452, - "lat": 54.1824897, - "lon": -1.0184294, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO62 328", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1810647735, - "lat": 56.4552590, - "lon": -5.2427145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA37 154" - } -}, -{ - "type": "node", - "id": 1810647750, - "lat": 56.4513769, - "lon": -5.2321115, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA37 72", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1810966006, - "lat": 56.4718389, - "lon": -5.3636924, - "tags": { - "amenity": "post_box", - "ref": "PA37 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1810979468, - "lat": 56.4915886, - "lon": -5.4035588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "ID plate not present", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1810979469, - "lat": 56.4986770, - "lon": -5.4155151, - "tags": { - "amenity": "post_box", - "ref": "PA37 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1810979542, - "lat": 56.5107770, - "lon": -5.4045278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "ref": "PA37 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1811410748, - "lat": 53.5473289, - "lon": -2.1787665, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1811657031, - "lat": 56.4595102, - "lon": -5.3684418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PA37 69", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1811657123, - "lat": 56.4590568, - "lon": -5.3958116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "PA37 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1811932607, - "lat": 54.7881026, - "lon": -2.3414571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA9 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1812486663, - "lat": 52.0904667, - "lon": -2.1015033, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 303", - "source": "memory", - "source:ref": "conjecture" - } -}, -{ - "type": "node", - "id": 1812560562, - "lat": 54.5725183, - "lon": -1.3237348, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1812564573, - "lat": 52.4236103, - "lon": -1.7936272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B91 411", - "royal_cypher": "EIIR", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1812794127, - "lat": 52.0905375, - "lon": -2.0582469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "note": "Ref confirmed by info plate Sept 2015", - "post_box:type": "lamp", - "ref": "WR10 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory" - } -}, -{ - "type": "node", - "id": 1812865014, - "lat": 53.3155854, - "lon": -3.4986886, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1813042680, - "lat": 53.3274494, - "lon": -3.4791622, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1813111161, - "lat": 54.8023876, - "lon": -2.2197126, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6302632", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "NE47 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1813111263, - "lat": 54.8111926, - "lon": -2.2324204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "image": "https://www.geograph.org.uk/photo/721444", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE47 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1813131648, - "lat": 51.4005524, - "lon": -1.1361894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "RG7", - "ref": "RG7 248", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1813215118, - "lat": 56.3606432, - "lon": -2.8906629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "mapillary": "697682294755423", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 351", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1813511255, - "lat": 50.4889123, - "lon": -3.6646591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1813528788, - "lat": 52.1218358, - "lon": -2.0254180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR10 465D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "memory" - } -}, -{ - "type": "node", - "id": 1813649669, - "lat": 50.8159964, - "lon": -1.0848808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 152", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1813649671, - "lat": 50.8193302, - "lon": -1.0844225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1813649678, - "lat": 50.8217993, - "lon": -1.0849663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 120", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1813649697, - "lat": 50.8076873, - "lon": -1.0827688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1814336482, - "lat": 55.9671880, - "lon": -3.2831070, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 328D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1814336484, - "lat": 55.9818420, - "lon": -3.3735437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH30 237D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1814654800, - "lat": 55.8289600, - "lon": -3.2327094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH26 140D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1814899556, - "lat": 51.9000203, - "lon": -2.0701333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1815029225, - "lat": 50.4891597, - "lon": -3.7321065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1815071838, - "lat": 51.9015129, - "lon": -2.0729853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 98", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1815284210, - "lat": 53.3278578, - "lon": -3.4659641, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1815284308, - "lat": 53.3313450, - "lon": -3.4398261, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1815304828, - "lat": 50.5581696, - "lon": -3.5136074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 1815317775, - "lat": 52.8725920, - "lon": -3.1412700, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1816014632, - "lat": 53.9824756, - "lon": -1.1422219, - "tags": { - "amenity": "post_box", - "check_date": "2024-04-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO26 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1816038182, - "lat": 51.5152811, - "lon": -0.1116404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "Both apertures are open, but the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2A 254D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box WC2A 254D" - } -}, -{ - "type": "node", - "id": 1816097384, - "lat": 53.3382399, - "lon": -3.3298420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 29" - } -}, -{ - "type": "node", - "id": 1816705219, - "lat": 52.1238908, - "lon": -2.0318618, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR10 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1816988769, - "lat": 53.5703094, - "lon": -1.7873882, - "tags": { - "amenity": "post_box", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD9 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-09-22" - } -}, -{ - "type": "node", - "id": 1817305289, - "lat": 51.4062311, - "lon": -0.8178970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG40 16", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1817420621, - "lat": 53.8617023, - "lon": -2.8229622, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1817420713, - "lat": 53.8675778, - "lon": -2.8152081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1817720784, - "lat": 51.4165554, - "lon": -0.5030573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TW18 519D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1817746628, - "lat": 51.4395272, - "lon": -0.5757322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "TW20 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1817746630, - "lat": 51.4554219, - "lon": -0.5946525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "SL4 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1817770099, - "lat": 51.4646988, - "lon": -0.5877166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "post_box:type": "wall", - "ref": "SL4 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1817770101, - "lat": 51.4871633, - "lon": -0.5823188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SL3 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1817770104, - "lat": 51.4874531, - "lon": -0.6088470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "SL4 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26506375" - } -}, -{ - "type": "node", - "id": 1817817880, - "lat": 51.4768333, - "lon": -0.6200574, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1817832333, - "lat": 51.4421402, - "lon": -0.6281498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL4 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1817854353, - "lat": 51.3869988, - "lon": -0.4912004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT16 207", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1818582798, - "lat": 54.5940082, - "lon": -5.8247993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1818590123, - "lat": 54.6037942, - "lon": -5.7014003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1818808442, - "lat": 52.5165967, - "lon": -1.8144787, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B24", - "ref": "B24 882", - "royal_cypher": "EIIR", - "source": "BING & survey" - } -}, -{ - "type": "node", - "id": 1819228669, - "lat": 55.4359388, - "lon": -2.7214015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD9 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1819233325, - "lat": 51.8097384, - "lon": -1.2793413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2020-07-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX5 635", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1819240238, - "lat": 55.4166053, - "lon": -2.7289665, - "tags": { - "amenity": "post_box", - "ref": "TD9 16" - } -}, -{ - "type": "node", - "id": 1819294310, - "lat": 50.8218194, - "lon": -1.0675010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1819294313, - "lat": 50.8169332, - "lon": -1.0732329, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO2 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1819294335, - "lat": 50.8201995, - "lon": -1.0726126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1819382496, - "lat": 54.8675562, - "lon": -2.8543170, - "tags": { - "amenity": "post_box", - "ref": "CA4 280", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1819487899, - "lat": 50.7965246, - "lon": -1.0850342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO5 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1819544276, - "lat": 52.6252672, - "lon": -1.2126749, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1819544277, - "lat": 52.6229487, - "lon": -1.2132114, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1819801297, - "lat": 54.9078410, - "lon": -2.9259968, - "tags": { - "amenity": "post_box", - "ref": "CA3 343", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1819801300, - "lat": 54.9039815, - "lon": -2.9372245, - "tags": { - "amenity": "post_box", - "ref": "CA3 75", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1820454576, - "lat": 56.2748951, - "lon": -3.0789431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 327D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1820633249, - "lat": 54.9271388, - "lon": -2.9107892, - "tags": { - "amenity": "post_box", - "ref": "CA6 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1820636504, - "lat": 54.9380470, - "lon": -2.9447654, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1820667293, - "lat": 54.8891040, - "lon": -2.9270983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Site of first post box in mainland Britain", - "post_box:type": "wall", - "ref": "CA1 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1820717218, - "lat": 50.8025539, - "lon": -1.0613906, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1820717220, - "lat": 50.8020446, - "lon": -1.0552026, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO3 243", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1820719920, - "lat": 51.4904365, - "lon": -0.9666495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG4 514D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1820838857, - "lat": 57.3685512, - "lon": -6.4469698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "3316195262011606", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV55 54", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 1821078398, - "lat": 52.6121515, - "lon": -2.3484626, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "visual survey;estimate" - } -}, -{ - "type": "node", - "id": 1821603002, - "lat": 51.2500477, - "lon": -1.0652008, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG25 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1821890001, - "lat": 50.8224708, - "lon": -1.0748418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1822205663, - "lat": 54.7697827, - "lon": -1.7040183, - "tags": { - "amenity": "post_box", - "ref": "DH7 191", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1822206080, - "lat": 54.7719701, - "lon": -1.7088828, - "tags": { - "amenity": "post_box", - "ref": "DH7 277", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1822206274, - "lat": 54.7728628, - "lon": -1.7000466, - "tags": { - "amenity": "post_box", - "ref": "DH7 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1822645205, - "lat": 51.7848730, - "lon": -2.6720869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NP25 529", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1822768138, - "lat": 51.9350438, - "lon": -3.0824067, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1822974786, - "lat": 56.1734763, - "lon": -3.0368295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY8 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1823012309, - "lat": 56.1770923, - "lon": -3.0339569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1823091533, - "lat": 56.1852990, - "lon": -3.0312138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 232", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1823172054, - "lat": 57.2086221, - "lon": -2.2900729, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1823326060, - "lat": 51.4499767, - "lon": -1.0035653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-08-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG30 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1823914080, - "lat": 50.8645699, - "lon": 0.5434000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN38 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1824151667, - "lat": 52.2800792, - "lon": -2.2423393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR9 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1824253895, - "lat": 54.6062307, - "lon": -5.7067629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1824712756, - "lat": 50.8285395, - "lon": -1.0710251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1824770597, - "lat": 55.8207257, - "lon": -4.1229743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "material": "metal", - "operator": "Royal Mail", - "ref": "G72 712", - "support": "pole" - } -}, -{ - "type": "node", - "id": 1824827546, - "lat": 57.7120477, - "lon": -5.6808955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "7039397529472161", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV21 257", - "source": "survey", - "survey:date": "2023-08-11" - } -}, -{ - "type": "node", - "id": 1825169111, - "lat": 51.0424540, - "lon": -0.8577027, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "last_checked": "2020-09-24", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU33 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1825169127, - "lat": 51.0508364, - "lon": -0.7882679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "GU30 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1825238649, - "lat": 53.6071200, - "lon": -2.1626430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1826012811, - "lat": 53.7822687, - "lon": -3.0345111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1826589671, - "lat": 52.4967509, - "lon": 0.8751939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP24 3238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1826599031, - "lat": 52.0664417, - "lon": -2.0804237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "WR10 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1826599592, - "lat": 52.0807992, - "lon": -2.0962559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR10 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1826689774, - "lat": 52.5001349, - "lon": 0.9222801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "in hedge", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "NR17 1705D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1826689805, - "lat": 52.5027570, - "lon": 0.8994330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "NR17 1708D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1826852354, - "lat": 51.4377485, - "lon": -0.9186566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG6 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Kenton_Road_2019-11-30_12.33.50.jpg" - } -}, -{ - "type": "node", - "id": 1826911444, - "lat": 52.4714640, - "lon": 0.9703327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "NR16 1641", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1826911466, - "lat": 52.4824291, - "lon": 0.9735477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR16 1642", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1826944955, - "lat": 52.4764064, - "lon": 0.9309964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "NR16 1646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1826945050, - "lat": 52.4902381, - "lon": 0.9427180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR16 1644", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1826980240, - "lat": 52.9856449, - "lon": -4.1893548, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827054978, - "lat": 50.8355346, - "lon": -1.7485858, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827054980, - "lat": 50.8359841, - "lon": -1.7603448, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827054987, - "lat": 50.8440653, - "lon": -1.8052842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 2", - "ref:GB:uprn": "10015573019" - } -}, -{ - "type": "node", - "id": 1827055009, - "lat": 50.8585752, - "lon": -1.7589893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH24 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1827055010, - "lat": 50.8611628, - "lon": -1.7460298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH24 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1827055011, - "lat": 50.8615759, - "lon": -1.7700914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 61" - } -}, -{ - "type": "node", - "id": 1827055012, - "lat": 50.8715137, - "lon": -1.7735760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH24 26" - } -}, -{ - "type": "node", - "id": 1827375549, - "lat": 52.6946611, - "lon": 0.5445125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1827415239, - "lat": 51.1539323, - "lon": 0.5521259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827415283, - "lat": 51.1570691, - "lon": 0.5522491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN12 343D" - } -}, -{ - "type": "node", - "id": 1827415311, - "lat": 51.1583324, - "lon": 0.5491837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827415429, - "lat": 51.1646148, - "lon": 0.5465538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827447384, - "lat": 52.5654246, - "lon": 0.7631525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3217", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1827495819, - "lat": 52.8550183, - "lon": -3.0535748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1827530436, - "lat": 55.0067632, - "lon": -1.6044750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827767942, - "lat": 53.1713074, - "lon": -2.2219075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW12 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1827808808, - "lat": 55.9297111, - "lon": -3.5067228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1827845894, - "lat": 56.5316167, - "lon": -3.4695301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 151", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1827845897, - "lat": 56.4529455, - "lon": -3.4688820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 138", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1827913793, - "lat": 56.1861288, - "lon": -3.0342075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 237D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1828526741, - "lat": 53.4202464, - "lon": -2.1874979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK4 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1828597153, - "lat": 50.8533899, - "lon": -3.5050371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX16 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1828651250, - "lat": 52.7673730, - "lon": 0.7446481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 501" - } -}, -{ - "type": "node", - "id": 1828936897, - "lat": 55.9410185, - "lon": -4.7962419, - "tags": { - "amenity": "post_box", - "ref": "PA16 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1829059667, - "lat": 55.9425985, - "lon": -4.7433582, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1829169875, - "lat": 54.9679280, - "lon": -1.6153659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "NE1 724", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1829193353, - "lat": 52.2964241, - "lon": -1.9451570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1829280083, - "lat": 52.9954834, - "lon": -0.5843185, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1829284471, - "lat": 52.9893655, - "lon": -0.5544872, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1829388195, - "lat": 50.8554181, - "lon": 0.5605592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1829746203, - "lat": 52.6274667, - "lon": 0.7527901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE37 384D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1829822158, - "lat": 50.9384128, - "lon": -1.2036595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SO32 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1829837773, - "lat": 52.1438884, - "lon": -2.0949937, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;bing" - } -}, -{ - "type": "node", - "id": 1829894378, - "lat": 53.0757101, - "lon": -3.0291897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1829906982, - "lat": 55.7903403, - "lon": -6.2264454, - "tags": { - "amenity": "post_box", - "ref": "PA44 3" - } -}, -{ - "type": "node", - "id": 1829928264, - "lat": 55.8524609, - "lon": -6.1120587, - "tags": { - "amenity": "post_box", - "ref": "PA46 22" - } -}, -{ - "type": "node", - "id": 1830274111, - "lat": 52.0291583, - "lon": -2.1475675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL20 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1830274157, - "lat": 52.0315329, - "lon": -2.1497075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:10; Sa 10:15", - "post_box:type": "lamp", - "ref": "GL20 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1830274205, - "lat": 52.0385682, - "lon": -2.1458435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 10:15", - "post_box:type": "lamp", - "ref": "GL20 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1830331886, - "lat": 53.0180254, - "lon": -0.6013715, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1830496635, - "lat": 51.4543812, - "lon": -2.5825332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-12", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS2 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-12-01" - } -}, -{ - "type": "node", - "id": 1830537651, - "lat": 54.8352622, - "lon": -1.4833689, - "tags": { - "amenity": "post_box", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1830563658, - "lat": 54.3222147, - "lon": -1.5006076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DL7 7" - } -}, -{ - "type": "node", - "id": 1830676008, - "lat": 57.1512568, - "lon": -2.1025296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "collection_times:signed": "no", - "note": "no royal cypher? just crown?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 29", - "royal_cypher": "scottish_crown", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 1830709923, - "lat": 57.1495417, - "lon": -2.1008214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "no royal cypher? just crown?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AB25 601", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1830793330, - "lat": 54.3245517, - "lon": -1.4891788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DL7 71", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1830915859, - "lat": 50.8846879, - "lon": 0.5750469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN34 190D", - "royal_cypher": "GVIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 1831030385, - "lat": 51.5990348, - "lon": -0.1235452, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "ref:signed": "no", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1831070010, - "lat": 50.8345240, - "lon": 0.0123065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1831070012, - "lat": 50.8376675, - "lon": 0.0153074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 568", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1831227879, - "lat": 56.1477911, - "lon": -3.2743030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 399D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1831346867, - "lat": 57.1600083, - "lon": -2.1059268, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB24 3NH", - "addr:street": "Sunnybank Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 108", - "royal_cypher": "scottish_crown", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 1831353813, - "lat": 51.5328550, - "lon": 0.7979421, - "tags": { - "amenity": "post_box", - "ref": "SS3 81" - } -}, -{ - "type": "node", - "id": 1831365832, - "lat": 50.8450786, - "lon": -1.0698431, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1831365856, - "lat": 50.8457785, - "lon": -1.0765780, - "tags": { - "amenity": "post_box", - "collection_plate": "Not shown", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1831391895, - "lat": 52.8259926, - "lon": -4.6219303, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1831399643, - "lat": 51.5383958, - "lon": 0.8000501, - "tags": { - "amenity": "post_box", - "ref": "SS3 306" - } -}, -{ - "type": "node", - "id": 1831415482, - "lat": 51.5405186, - "lon": 0.7828305, - "tags": { - "amenity": "post_box", - "ref": "SS3 416" - } -}, -{ - "type": "node", - "id": 1831540349, - "lat": 51.5561917, - "lon": 0.6897534, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1831573602, - "lat": 50.8492654, - "lon": -1.0774624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1831589524, - "lat": 50.8514212, - "lon": -1.0735224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO6 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1831910027, - "lat": 56.0702914, - "lon": -6.1879694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA61 23", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1831956158, - "lat": 53.7655995, - "lon": -1.8587275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1832001391, - "lat": 51.8812164, - "lon": 0.9940170, - "tags": { - "amenity": "post_box", - "ref": "CO7 303" - } -}, -{ - "type": "node", - "id": 1832009235, - "lat": 54.3375938, - "lon": -1.4320572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL6 193", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1832020550, - "lat": 51.9350871, - "lon": 0.9790494, - "tags": { - "amenity": "post_box", - "ref": "CO7 265" - } -}, -{ - "type": "node", - "id": 1832463538, - "lat": 50.7247968, - "lon": -3.4846604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832470644, - "lat": 52.9357063, - "lon": 0.4848141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832581282, - "lat": 51.6485302, - "lon": 0.6815312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "name": "North Fambridge Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CM3 193" - } -}, -{ - "type": "node", - "id": 1832585078, - "lat": 51.6318616, - "lon": 0.8154991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1832586599, - "lat": 50.9331830, - "lon": -0.3951251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH20 388D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1832591808, - "lat": 51.0438701, - "lon": -0.8796056, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832710222, - "lat": 57.1670930, - "lon": -2.1020505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1832823543, - "lat": 54.8515512, - "lon": -1.8316559, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH8 213" - } -}, -{ - "type": "node", - "id": 1832956906, - "lat": 52.2638462, - "lon": -0.9091323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832956910, - "lat": 52.2640139, - "lon": -0.8926543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN2 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1832956927, - "lat": 52.2650564, - "lon": -0.8997043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832956930, - "lat": 52.2684796, - "lon": -0.9137469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832956931, - "lat": 52.2701111, - "lon": -0.8965425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1832956932, - "lat": 52.2705582, - "lon": -0.8914912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 100", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1832956933, - "lat": 52.2736450, - "lon": -0.8876760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832956936, - "lat": 52.2736977, - "lon": -0.9203250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832956962, - "lat": 52.2741541, - "lon": -0.8927831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "131324205846082", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN2 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-11" - } -}, -{ - "type": "node", - "id": 1832956969, - "lat": 52.2742124, - "lon": -0.9095012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1832956975, - "lat": 52.2760478, - "lon": -0.9144859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1833429730, - "lat": 55.8886942, - "lon": -4.3435341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:30", - "operator": "Royal Mail", - "ref": "G13 1100" - } -}, -{ - "type": "node", - "id": 1833466419, - "lat": 52.7471827, - "lon": -2.1510482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST19 142" - } -}, -{ - "type": "node", - "id": 1833532002, - "lat": 52.1539547, - "lon": -2.0883609, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "historic_operator": "Post Office", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WR10 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey;bing" - } -}, -{ - "type": "node", - "id": 1833907590, - "lat": 51.5718065, - "lon": -1.7414390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1833907594, - "lat": 51.5718937, - "lon": -1.7464742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 328" - } -}, -{ - "type": "node", - "id": 1833907696, - "lat": 51.5736561, - "lon": -1.7388049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 294" - } -}, -{ - "type": "node", - "id": 1834509872, - "lat": 52.0329591, - "lon": -2.1591839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "GL20 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1834613068, - "lat": 52.8638968, - "lon": -4.5216929, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1834750462, - "lat": 53.7169221, - "lon": -1.6983919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 208" - } -}, -{ - "type": "node", - "id": 1835241618, - "lat": 52.7357634, - "lon": -2.1268743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ST18 391" - } -}, -{ - "type": "node", - "id": 1835351503, - "lat": 50.7233497, - "lon": -3.9095355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 179D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1835351977, - "lat": 50.7217018, - "lon": -3.8966928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "fixme": "Present in Sep 2011 Google Streetview (https://goo.gl/maps/vz2VTh6EJmydEsVXA) but gone in Dec 2021 (https://goo.gl/maps/oJqMXrTn3xfMojKC9) and no longer listed in Royal Mail list so suggest removing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX20 158" - } -}, -{ - "type": "node", - "id": 1835353327, - "lat": 50.7119827, - "lon": -3.8942189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EX20 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1835356613, - "lat": 50.6907862, - "lon": -3.8797778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1835367549, - "lat": 53.6798429, - "lon": -1.6555677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 60" - } -}, -{ - "type": "node", - "id": 1835547048, - "lat": 55.8759139, - "lon": -4.2831793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "G12 876D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1835659393, - "lat": 55.9109278, - "lon": -4.5045235, - "tags": { - "amenity": "post_box", - "ref": "PA7 252" - } -}, -{ - "type": "node", - "id": 1835667823, - "lat": 55.9098837, - "lon": -4.5098625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA7 37" - } -}, -{ - "type": "node", - "id": 1835672658, - "lat": 55.9024338, - "lon": -4.4991712, - "tags": { - "amenity": "post_box", - "ref": "PA7 193" - } -}, -{ - "type": "node", - "id": 1835690237, - "lat": 55.9083589, - "lon": -4.4978766, - "tags": { - "amenity": "post_box", - "ref": "PA7 172" - } -}, -{ - "type": "node", - "id": 1835709856, - "lat": 55.8586095, - "lon": -4.5336600, - "tags": { - "amenity": "post_box", - "ref": "PA6 254" - } -}, -{ - "type": "node", - "id": 1835818777, - "lat": 52.6825224, - "lon": -1.8284913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "ref": "WS13 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1835818780, - "lat": 52.6838740, - "lon": -1.8270691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WS13 30" - } -}, -{ - "type": "node", - "id": 1836454682, - "lat": 52.8596941, - "lon": -3.0537238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY11 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1836539968, - "lat": 52.9396182, - "lon": 0.4896205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE36 4970;PE36 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1836582736, - "lat": 52.9105279, - "lon": 0.7547117, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1836678731, - "lat": 52.8610265, - "lon": -3.0527949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1837127649, - "lat": 51.1361028, - "lon": -1.8228230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837138654, - "lat": 51.1684549, - "lon": -1.7758314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1837138655, - "lat": 51.1723562, - "lon": -1.7983904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 359", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1837144966, - "lat": 51.1247051, - "lon": -1.7233532, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837154392, - "lat": 51.0983174, - "lon": -1.6818901, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837161903, - "lat": 51.0948415, - "lon": -1.7786918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 459D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837161904, - "lat": 51.0948305, - "lon": -1.7687491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837312166, - "lat": 52.9390424, - "lon": 0.4870347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE36 335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837469379, - "lat": 51.3483311, - "lon": -0.4794771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1837628430, - "lat": 50.5079779, - "lon": -3.7173840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 111", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1837671074, - "lat": 50.5630362, - "lon": -3.7422827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TQ13 68", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1837725580, - "lat": 52.0727134, - "lon": -2.0147523, - "tags": { - "amenity": "post_box", - "collection_plate": "(uncoded)", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "historic_operator": "Post Office", - "note": "Check in a few months (currently 2012-07) to see if Rm have updated collection plate.", - "post_box:type": "wall", - "ref": "WR10 231", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1837906317, - "lat": 53.6051702, - "lon": -2.3956003, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1837946493, - "lat": 55.9498294, - "lon": -4.7682577, - "tags": { - "amenity": "post_box", - "ref": "PA16 24" - } -}, -{ - "type": "node", - "id": 1837953026, - "lat": 55.9477704, - "lon": -4.7686387, - "tags": { - "amenity": "post_box", - "ref": "PA16 12" - } -}, -{ - "type": "node", - "id": 1837958380, - "lat": 55.9529742, - "lon": -4.7754837, - "tags": { - "amenity": "post_box", - "ref": "PA16 4" - } -}, -{ - "type": "node", - "id": 1837964547, - "lat": 55.9085650, - "lon": -4.8631954, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA16 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1837968950, - "lat": 52.5784612, - "lon": -3.0918479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY15 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1837972120, - "lat": 55.9014306, - "lon": -4.8696407, - "tags": { - "amenity": "post_box", - "ref": "PA16 89" - } -}, -{ - "type": "node", - "id": 1837999533, - "lat": 55.9605176, - "lon": -4.7803245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA19 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1837999534, - "lat": 55.9584156, - "lon": -4.7727419, - "tags": { - "amenity": "post_box", - "ref": "PA16 7" - } -}, -{ - "type": "node", - "id": 1838012644, - "lat": 55.9552946, - "lon": -4.7791965, - "tags": { - "amenity": "post_box", - "ref": "PA16 99" - } -}, -{ - "type": "node", - "id": 1838258882, - "lat": 52.6131371, - "lon": -1.1938455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE19 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1838259775, - "lat": 51.0804463, - "lon": -1.7801042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP1 430", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1838259786, - "lat": 51.0867099, - "lon": -1.7941144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 391", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1838271254, - "lat": 51.9973950, - "lon": -1.9993846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:10", - "post_box:type": "wall", - "ref": "GL20 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1838466126, - "lat": 50.8425824, - "lon": 0.4512738, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Walton Park", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 66", - "ref:GB:uprn": "10015433273", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Cranston Rise TN3966.jpg" - } -}, -{ - "type": "node", - "id": 1838466128, - "lat": 50.8435052, - "lon": 0.4609028, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Eastwood Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 63", - "ref:GB:uprn": "10015452657", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Eastwood Road TN3963.jpg" - } -}, -{ - "type": "node", - "id": 1838676567, - "lat": 50.9674367, - "lon": -1.3904069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1839037963, - "lat": 55.9451424, - "lon": -4.7868151, - "tags": { - "amenity": "post_box", - "ref": "PA16 83" - } -}, -{ - "type": "node", - "id": 1839158240, - "lat": 53.4990038, - "lon": -2.2553132, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1839158241, - "lat": 53.5143376, - "lon": -2.2678594, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1839217767, - "lat": 53.0701794, - "lon": -3.0250810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1839880690, - "lat": 52.7999292, - "lon": 0.6517150, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1840264799, - "lat": 55.1517877, - "lon": -3.0050174, - "tags": { - "amenity": "post_box", - "ref": "DG13 58" - } -}, -{ - "type": "node", - "id": 1840270842, - "lat": 55.1509919, - "lon": -2.9987807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "446565747470432", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG13 3", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 1840330243, - "lat": 55.3083641, - "lon": -3.2029965, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DG13 68" - } -}, -{ - "type": "node", - "id": 1840344551, - "lat": 55.3022129, - "lon": -3.1997912, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG13 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1840366104, - "lat": 55.3207795, - "lon": -3.2039379, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG13 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1840386403, - "lat": 55.2740500, - "lon": -3.1821253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG13 91" - } -}, -{ - "type": "node", - "id": 1841188917, - "lat": 55.2598725, - "lon": -3.1664566, - "tags": { - "amenity": "post_box", - "ref": "DG13 61" - } -}, -{ - "type": "node", - "id": 1841302204, - "lat": 52.2371443, - "lon": -0.8830906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302205, - "lat": 52.2377290, - "lon": -0.8879759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN1 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302206, - "lat": 52.2382539, - "lon": -0.8781483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302207, - "lat": 52.2394979, - "lon": -0.8816625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302208, - "lat": 52.2404883, - "lon": -0.8876229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN1 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302209, - "lat": 52.2409404, - "lon": -0.8842908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302211, - "lat": 52.2416780, - "lon": -0.8796359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302212, - "lat": 52.2425519, - "lon": -0.8852659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1841302213, - "lat": 52.2426895, - "lon": -0.8739476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 567", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302214, - "lat": 52.2428557, - "lon": -0.8893564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302215, - "lat": 52.2433505, - "lon": -0.8801897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN1 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1841302216, - "lat": 52.2437157, - "lon": -0.8723885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN1 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302217, - "lat": 52.2450109, - "lon": -0.8800771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN1 82", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1841302218, - "lat": 52.2452721, - "lon": -0.8931590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302219, - "lat": 52.2455316, - "lon": -0.8739953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302220, - "lat": 52.2457093, - "lon": -0.8867706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302221, - "lat": 52.2479150, - "lon": -0.8689725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302222, - "lat": 52.2486247, - "lon": -0.8754660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1841302223, - "lat": 52.2489589, - "lon": -0.8808411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302224, - "lat": 52.2497168, - "lon": -0.8741804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302225, - "lat": 52.2512393, - "lon": -0.8794992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302226, - "lat": 52.2512819, - "lon": -0.8728107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1841302227, - "lat": 52.2532376, - "lon": -0.8768852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841302228, - "lat": 52.2532962, - "lon": -0.8719542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841306282, - "lat": 52.2641602, - "lon": -0.8882628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841309171, - "lat": 52.2847334, - "lon": -0.8959897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841373131, - "lat": 55.8204550, - "lon": -3.8078951, - "tags": { - "amenity": "post_box", - "ref": "ML7 100" - } -}, -{ - "type": "node", - "id": 1841373144, - "lat": 55.8192350, - "lon": -3.8033946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML7 88", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1841373198, - "lat": 55.8252781, - "lon": -3.7993043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML7 153D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1841655958, - "lat": 52.0977613, - "lon": -2.0085913, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "WR10 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1841700985, - "lat": 55.8187698, - "lon": -3.7901471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "ML7 103" - } -}, -{ - "type": "node", - "id": 1841819205, - "lat": 53.0295796, - "lon": -2.1604402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "Local Knowledge" - } -}, -{ - "type": "node", - "id": 1842412529, - "lat": 55.1537016, - "lon": -3.0103004, - "tags": { - "amenity": "post_box", - "ref": "DG13 85" - } -}, -{ - "type": "node", - "id": 1842430192, - "lat": 52.7058642, - "lon": 0.6330445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE32 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1842498210, - "lat": 55.0866158, - "lon": -2.9264104, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG14 64" - } -}, -{ - "type": "node", - "id": 1842519568, - "lat": 55.0970038, - "lon": -2.8943715, - "tags": { - "amenity": "post_box", - "ref": "DG14 81" - } -}, -{ - "type": "node", - "id": 1842530479, - "lat": 55.1031851, - "lon": -2.9497905, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG14 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1842553510, - "lat": 53.0357686, - "lon": -2.1543741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1842581131, - "lat": 55.0515544, - "lon": -3.0769153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG14 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1842971171, - "lat": 56.4298218, - "lon": -5.2387920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA35 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1842984598, - "lat": 56.4282399, - "lon": -5.2391188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PA35 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1842989631, - "lat": 56.4262868, - "lon": -5.2273685, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA35 78" - } -}, -{ - "type": "node", - "id": 1843008324, - "lat": 56.4344128, - "lon": -5.2347285, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA35 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1843027910, - "lat": 56.4410011, - "lon": -5.2524177, - "tags": { - "amenity": "post_box", - "ref": "PA35 50" - } -}, -{ - "type": "node", - "id": 1843154737, - "lat": 56.3568000, - "lon": -5.1759518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA35 162", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1843169920, - "lat": 56.3510599, - "lon": -5.1766575, - "tags": { - "amenity": "post_box", - "ref": "PA35 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1843174692, - "lat": 55.9569948, - "lon": -3.2539939, - "tags": { - "amenity": "post_box", - "ref": "EH4 210" - } -}, -{ - "type": "node", - "id": 1843190595, - "lat": 56.2634637, - "lon": -5.2809579, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA35 90" - } -}, -{ - "type": "node", - "id": 1843193706, - "lat": 52.2472920, - "lon": -0.8785234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1843210765, - "lat": 56.3091723, - "lon": -5.2366933, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA35 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1843308009, - "lat": 52.8586052, - "lon": -3.0466984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "pillar", - "ref": "SY11 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1843309347, - "lat": 50.6195432, - "lon": -3.4147877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1843334843, - "lat": 51.4697938, - "lon": -0.9066863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG4 357", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1843653430, - "lat": 52.8577452, - "lon": -3.0510022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SY11 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1843739326, - "lat": 52.7056346, - "lon": -3.0351429, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1844222703, - "lat": 50.6477875, - "lon": -3.4309320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX8 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-09-01", - "wikimedia_commons": "File:The Swan Inn, Lympstone - geograph.org.uk - 2556303.jpg" - } -}, -{ - "type": "node", - "id": 1844409720, - "lat": 54.9943293, - "lon": -3.0672344, - "tags": { - "amenity": "post_box", - "ref": "DG16 99", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1844421221, - "lat": 55.0049297, - "lon": -3.0626155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG16 101D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1844431576, - "lat": 54.9956021, - "lon": -3.0710778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "639411231421431", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG16 104", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 1844435294, - "lat": 54.9935634, - "lon": -3.0610249, - "tags": { - "amenity": "post_box", - "ref": "DG16 107" - } -}, -{ - "type": "node", - "id": 1844446555, - "lat": 55.9682857, - "lon": -3.2739342, - "tags": { - "amenity": "post_box", - "ref": "EH4 411" - } -}, -{ - "type": "node", - "id": 1844449857, - "lat": 54.9915558, - "lon": -3.1080781, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG16 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1844464829, - "lat": 54.9975546, - "lon": -3.0634738, - "tags": { - "amenity": "post_box", - "ref": "DG16 154" - } -}, -{ - "type": "node", - "id": 1845332844, - "lat": 52.2963272, - "lon": 1.3383788, - "tags": { - "amenity": "post_box", - "ref": "IP13 6232" - } -}, -{ - "type": "node", - "id": 1845336366, - "lat": 52.2838779, - "lon": 1.3048366, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP13 6240" - } -}, -{ - "type": "node", - "id": 1845887046, - "lat": 56.1545228, - "lon": -4.9094697, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA24 2" - } -}, -{ - "type": "node", - "id": 1845897054, - "lat": 56.1084391, - "lon": -4.9064871, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA24 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1845957316, - "lat": 56.1702822, - "lon": -4.9006725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30, Sa 09:30", - "post_box:type": "pillar", - "ref": "PA27 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1846007188, - "lat": 53.6404268, - "lon": -1.5843300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 91" - } -}, -{ - "type": "node", - "id": 1846007193, - "lat": 53.6442659, - "lon": -1.5792401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 127" - } -}, -{ - "type": "node", - "id": 1846007239, - "lat": 53.6489050, - "lon": -1.5752733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 124" - } -}, -{ - "type": "node", - "id": 1847134919, - "lat": 50.4955122, - "lon": -3.7082640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1847232521, - "lat": 53.7356276, - "lon": -1.7159226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD19 723", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1847232556, - "lat": 53.7399571, - "lon": -1.7157938, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD19 704", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1847232558, - "lat": 53.7265531, - "lon": -1.7176526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD19 713" - } -}, -{ - "type": "node", - "id": 1847232564, - "lat": 53.7267515, - "lon": -1.7245084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD19 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1847232568, - "lat": 53.7298617, - "lon": -1.7400786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD19 724" - } -}, -{ - "type": "node", - "id": 1847232571, - "lat": 53.7292063, - "lon": -1.7494717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD19 718", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1847232574, - "lat": 53.7026857, - "lon": -1.7698136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HD6 272" - } -}, -{ - "type": "node", - "id": 1847232578, - "lat": 53.7038638, - "lon": -1.7813873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD6 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1847242306, - "lat": 52.2694310, - "lon": -0.9005288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1847256067, - "lat": 52.2622006, - "lon": -0.8245845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1847630378, - "lat": 50.9382366, - "lon": -0.6530671, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1847630412, - "lat": 50.9475479, - "lon": -0.6814414, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1847630437, - "lat": 50.9529606, - "lon": -0.6761267, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU28 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1848297796, - "lat": 51.4866689, - "lon": -0.2242783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W6 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1848393793, - "lat": 53.8764511, - "lon": -2.8893983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR3 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1848648698, - "lat": 50.9254958, - "lon": -1.0031221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO8 272" - } -}, -{ - "type": "node", - "id": 1848862221, - "lat": 52.1333318, - "lon": -0.7782332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK16 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1848954492, - "lat": 50.9846346, - "lon": -0.6069971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU28 1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU28 1D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 1849557843, - "lat": 52.4948014, - "lon": -1.7050547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "note": "Cypher is GR but the building in which it is mounted is considerably newer", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B46 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1849563773, - "lat": 52.4980146, - "lon": -1.7060706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "in front wall of delivery office", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B46 235", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1849720589, - "lat": 52.5127223, - "lon": -1.7137545, - "tags": { - "amenity": "post_box", - "postal_code": "B46", - "ref": "B46 9014", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1849792659, - "lat": 52.5082702, - "lon": -1.7079524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "post_box:type": "pillar", - "ref": "B46 667", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1849871377, - "lat": 52.5005583, - "lon": -1.7120326, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "B46 1177", - "royal_cypher": "EIIR", - "source": "survey;estimate" - } -}, -{ - "type": "node", - "id": 1849911294, - "lat": 52.4627154, - "lon": 0.5442387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP26 3214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1849955348, - "lat": 52.7873678, - "lon": -4.0966047, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1850450323, - "lat": 53.7285308, - "lon": -1.7290046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD19 721" - } -}, -{ - "type": "node", - "id": 1850450338, - "lat": 53.7301836, - "lon": -1.7181169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD19 702" - } -}, -{ - "type": "node", - "id": 1850457729, - "lat": 50.8520476, - "lon": -1.1018249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1850576008, - "lat": 54.8746092, - "lon": -3.5982561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG2 104", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1851239151, - "lat": 53.5815030, - "lon": -2.4463009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1851241119, - "lat": 55.0079486, - "lon": -3.7260782, - "tags": { - "amenity": "post_box", - "ref": "DG2 93" - } -}, -{ - "type": "node", - "id": 1851247586, - "lat": 54.9820316, - "lon": -3.7735426, - "tags": { - "amenity": "post_box", - "ref": "DG2 164" - } -}, -{ - "type": "node", - "id": 1851254652, - "lat": 55.0682741, - "lon": -3.6195456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG2 11" - } -}, -{ - "type": "node", - "id": 1851267080, - "lat": 53.5671217, - "lon": -2.4646180, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1851357182, - "lat": 55.1419912, - "lon": -3.6945536, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG2 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1851357880, - "lat": 52.7010310, - "lon": 0.3541435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE34 444" - } -}, -{ - "type": "node", - "id": 1851364721, - "lat": 55.1370675, - "lon": -3.7536686, - "tags": { - "amenity": "post_box", - "ref": "DG2 149" - } -}, -{ - "type": "node", - "id": 1851424208, - "lat": 55.0802985, - "lon": -3.6256439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DG2 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851431125, - "lat": 55.0818140, - "lon": -3.6221318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG2 165D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1851431873, - "lat": 50.3392676, - "lon": -3.6327417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "hedge", - "post_box:type": "wall", - "ref": "TQ6 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1851440778, - "lat": 55.0710297, - "lon": -3.6208882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DG2 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851482396, - "lat": 55.0359454, - "lon": -3.8300822, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG2 53", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1851496486, - "lat": 54.9799695, - "lon": -3.6220491, - "tags": { - "amenity": "post_box", - "ref": "DG2 109" - } -}, -{ - "type": "node", - "id": 1851661277, - "lat": 52.7196471, - "lon": -0.6292169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "ref": "LE15 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1851698031, - "lat": 52.2327879, - "lon": -0.8806474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851698033, - "lat": 52.2333367, - "lon": -0.8949754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698035, - "lat": 52.2349493, - "lon": -0.8974287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN1 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698039, - "lat": 52.2357179, - "lon": -0.8900671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN1 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1851698044, - "lat": 52.2367093, - "lon": -0.8930485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698047, - "lat": 52.2367309, - "lon": -0.9018178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698051, - "lat": 52.2372608, - "lon": -0.8940318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NN1 998", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698058, - "lat": 52.2373598, - "lon": -0.8971027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NN1 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698059, - "lat": 52.2385986, - "lon": -0.8964060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN1 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851698062, - "lat": 52.2390270, - "lon": -0.8908685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NN1 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698064, - "lat": 52.2390836, - "lon": -0.8906114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN1 549P" - } -}, -{ - "type": "node", - "id": 1851698065, - "lat": 52.2392903, - "lon": -0.8951282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851698066, - "lat": 52.2396312, - "lon": -0.9023405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851698067, - "lat": 52.2428694, - "lon": -0.8977025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851737825, - "lat": 52.2470040, - "lon": -0.9003456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851737829, - "lat": 52.2470583, - "lon": -0.8975848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851737834, - "lat": 52.2507907, - "lon": -0.8888047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851737836, - "lat": 52.2539481, - "lon": -0.8854620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN2 70", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1851737837, - "lat": 52.2556037, - "lon": -0.9005333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851737848, - "lat": 52.2559178, - "lon": -0.8908005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 188", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1851737852, - "lat": 52.2567569, - "lon": -0.8744436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851737857, - "lat": 52.2571430, - "lon": -0.8786751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1851737861, - "lat": 52.2589800, - "lon": -0.8723683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851740285, - "lat": 52.2371343, - "lon": -0.8611846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1851742401, - "lat": 52.3855870, - "lon": -0.9044248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN6 159", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1852014074, - "lat": 51.4662080, - "lon": -2.5979410, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 239D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1852014232, - "lat": 51.4760739, - "lon": -2.6098964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:45", - "post_box:type": "pillar", - "ref": "BS6 309", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1852053756, - "lat": 51.4553902, - "lon": -2.5939953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "pillar", - "ref": "BS1 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1852580558, - "lat": 53.7124940, - "lon": -1.7872310, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD6 280" - } -}, -{ - "type": "node", - "id": 1852620930, - "lat": 55.0808916, - "lon": -3.6349078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG2 196D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1852657834, - "lat": 55.1006500, - "lon": -3.6473294, - "tags": { - "amenity": "post_box", - "ref": "DG2 32", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1852682156, - "lat": 55.1428307, - "lon": -3.7820065, - "tags": { - "amenity": "post_box", - "ref": "DG2 209" - } -}, -{ - "type": "node", - "id": 1852712764, - "lat": 55.1511975, - "lon": -3.6693196, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DG2 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1852723944, - "lat": 55.1467526, - "lon": -3.6592125, - "tags": { - "amenity": "post_box", - "ref": "DG2 144" - } -}, -{ - "type": "node", - "id": 1852738441, - "lat": 55.0979239, - "lon": -3.6601786, - "tags": { - "amenity": "post_box", - "ref": "DG2 34" - } -}, -{ - "type": "node", - "id": 1852750810, - "lat": 55.0858901, - "lon": -3.6334048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG2 208D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1852774328, - "lat": 55.1039440, - "lon": -3.7597401, - "tags": { - "amenity": "post_box", - "ref": "DG2 146" - } -}, -{ - "type": "node", - "id": 1852776337, - "lat": 51.8199052, - "lon": -1.2955031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX5 929", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-22" - } -}, -{ - "type": "node", - "id": 1852855326, - "lat": 55.0941749, - "lon": -3.6480524, - "tags": { - "amenity": "post_box", - "ref": "DG2 111" - } -}, -{ - "type": "node", - "id": 1852857570, - "lat": 52.6895903, - "lon": -0.6293322, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1852907566, - "lat": 55.0455912, - "lon": -3.7257709, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG2 66", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1852952568, - "lat": 54.9033925, - "lon": -3.6153280, - "tags": { - "amenity": "post_box", - "ref": "DG2 110" - } -}, -{ - "type": "node", - "id": 1852969855, - "lat": 54.8967230, - "lon": -3.6761695, - "tags": { - "amenity": "post_box", - "ref": "DG2 122" - } -}, -{ - "type": "node", - "id": 1852991302, - "lat": 55.0602943, - "lon": -3.6190678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "ref": "DG2 177", - "royal_cypher": "scottish_crown", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1853015950, - "lat": 55.0735745, - "lon": -3.6201001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DG2 19D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1853032944, - "lat": 55.0705807, - "lon": -3.6303534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG2 191", - "royal_cypher": "scottish_crown", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1853050276, - "lat": 55.0695135, - "lon": -3.6243192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG2 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1853083374, - "lat": 55.8695045, - "lon": -4.2298179, - "tags": { - "amenity": "post_box", - "note": "no plate", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1853101339, - "lat": 55.0628399, - "lon": -3.6211998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "DG2 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1853146668, - "lat": 55.0663560, - "lon": -3.6267547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG2 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1853153976, - "lat": 54.9428043, - "lon": -3.5941425, - "tags": { - "amenity": "post_box", - "ref": "DG2 33" - } -}, -{ - "type": "node", - "id": 1853154816, - "lat": 50.7895297, - "lon": 0.0090990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 627D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1853162163, - "lat": 55.0381585, - "lon": -3.6199615, - "tags": { - "amenity": "post_box", - "ref": "DG2 38" - } -}, -{ - "type": "node", - "id": 1853181749, - "lat": 54.8942856, - "lon": -3.6439202, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG2 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1853196023, - "lat": 55.0271262, - "lon": -3.6976996, - "tags": { - "amenity": "post_box", - "ref": "DG2 48" - } -}, -{ - "type": "node", - "id": 1853205451, - "lat": 55.0817043, - "lon": -3.6447437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG2 47D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1853282315, - "lat": 52.2198858, - "lon": -0.9392887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 587", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1853290035, - "lat": 52.2492941, - "lon": -0.9200332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN5 148", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1853323439, - "lat": 55.0647376, - "lon": -3.7701580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "DG2 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1853330627, - "lat": 55.0635735, - "lon": -3.6269796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG2 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1853344977, - "lat": 55.0850494, - "lon": -3.6391288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DG2 184", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1853378848, - "lat": 55.1473580, - "lon": -3.7225326, - "tags": { - "amenity": "post_box", - "ref": "DG2 126" - } -}, -{ - "type": "node", - "id": 1853594324, - "lat": 51.8154429, - "lon": 0.2020771, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1853643899, - "lat": 52.1430672, - "lon": 0.0934953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB22 358", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1854689592, - "lat": 50.7306557, - "lon": -1.5884741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-01", - "mapillary": "156457706711562", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 120", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1854995263, - "lat": 54.7007850, - "lon": -1.5996521, - "tags": { - "amenity": "post_box", - "ref": "DL16 64" - } -}, -{ - "type": "node", - "id": 1855024139, - "lat": 51.4936451, - "lon": -2.5211879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "BS16 607D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1855673892, - "lat": 52.5723659, - "lon": 0.5196036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE33 299D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1856293041, - "lat": 52.9377452, - "lon": 0.4871527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE36 45D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1857200533, - "lat": 53.3820089, - "lon": -2.3504839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA14 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1857373246, - "lat": 51.1070451, - "lon": -1.0585824, - "tags": { - "amenity": "post_box", - "mapillary": "1133343370473287", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 62", - "survey:date": "2020-09-09" - } -}, -{ - "type": "node", - "id": 1857373701, - "lat": 51.1118059, - "lon": -1.0432640, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU34 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857374380, - "lat": 51.1093562, - "lon": -1.0513999, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-08", - "old_ref": "GU34 48", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU34 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857563484, - "lat": 55.0552140, - "lon": -3.6405056, - "tags": { - "amenity": "post_box", - "ref": "DG2 195" - } -}, -{ - "type": "node", - "id": 1857651349, - "lat": 55.5762647, - "lon": -2.6713764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00, Sa 11:00", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857833340, - "lat": 54.9140549, - "lon": -2.9414607, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA3 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857865058, - "lat": 54.2628606, - "lon": -2.5756860, - "tags": { - "amenity": "post_box", - "ref": "LA6 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857865059, - "lat": 54.2618381, - "lon": -2.5997241, - "tags": { - "amenity": "post_box", - "ref": "LA6 163", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857891228, - "lat": 54.4341304, - "lon": -2.5914891, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857903617, - "lat": 54.6963062, - "lon": -2.6699582, - "tags": { - "amenity": "post_box", - "ref": "CA10 221", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857929135, - "lat": 54.8912868, - "lon": -2.7146566, - "tags": { - "amenity": "post_box", - "ref": "CA8 191", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857929147, - "lat": 54.9437031, - "lon": -2.7408896, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857929175, - "lat": 54.9438093, - "lon": -2.7349442, - "tags": { - "amenity": "post_box", - "note": "double-check ref - photo blurred", - "ref": "CA8 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857955427, - "lat": 54.9965075, - "lon": -2.8170298, - "tags": { - "amenity": "post_box", - "ref": "CA6 356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1857955663, - "lat": 55.0386071, - "lon": -2.8267693, - "tags": { - "amenity": "post_box", - "ref": "CA6 375", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1858016071, - "lat": 50.8691826, - "lon": -0.7748055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1858192521, - "lat": 55.3418218, - "lon": -2.9338062, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "TD9 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1858192522, - "lat": 55.4307493, - "lon": -2.7840109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1006623173245037", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD9 33", - "source": "survey", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 1858192523, - "lat": 55.5509701, - "lon": -2.8418426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1098605477686172", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD7 96", - "source": "survey", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 1858296230, - "lat": 51.0864791, - "lon": -1.8092043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1858547714, - "lat": 55.1670433, - "lon": -3.8118952, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG2 192", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1858999493, - "lat": 52.0817629, - "lon": -0.2042314, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG18 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1858999507, - "lat": 52.0828862, - "lon": -0.1962297, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG18 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1859051883, - "lat": 50.9943546, - "lon": -4.4531743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1859087047, - "lat": 52.7238045, - "lon": -1.7932831, - "tags": { - "amenity": "post_box", - "board_type": "history", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "information": "board", - "name": "CaRT canal information", - "post_box:type": "wall", - "postal_code": "DE13", - "ref": "DE13 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "tourism": "information" - } -}, -{ - "type": "node", - "id": 1859532641, - "lat": 53.8955374, - "lon": -1.4530816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1859532642, - "lat": 53.8982953, - "lon": -1.4493960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 764", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1859547837, - "lat": 53.8934760, - "lon": -1.4517532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 15:10", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 718", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1859974407, - "lat": 51.4185908, - "lon": -1.7180937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1860574947, - "lat": 51.4528041, - "lon": -0.8800510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "970696240906531", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG5 297", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 1860691577, - "lat": 55.8751946, - "lon": -4.2263465, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-09", - "collection_times": "Mo-Fr 19:30; Sa 13:30", - "operator": "Royal Mail", - "ref": "G21 2000", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1860768626, - "lat": 55.8829841, - "lon": -4.2216268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "ref": "G21 755" - } -}, -{ - "type": "node", - "id": 1860772730, - "lat": 57.1107760, - "lon": -2.0926821, - "tags": { - "amenity": "post_box", - "note": "3 boxes together, unable to see box no on one", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB12 1111", - "source": "survey", - "stamped": "yes" - } -}, -{ - "type": "node", - "id": 1860976500, - "lat": 57.1107722, - "lon": -2.0926848, - "tags": { - "amenity": "post_box", - "franked": "yes", - "note": "3 boxes together, unable to see box no on one", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB12 1112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1860976504, - "lat": 57.1107791, - "lon": -2.0926798, - "tags": { - "amenity": "post_box", - "franked": "yes", - "note": "3 boxes together, unable to see box no on one", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1861420177, - "lat": 52.2451444, - "lon": -0.8523925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1861420181, - "lat": 52.2491351, - "lon": -0.8524988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1861420185, - "lat": 52.2514512, - "lon": -0.8494622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1861420189, - "lat": 52.2517361, - "lon": -0.8449172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1861420199, - "lat": 52.2523387, - "lon": -0.8650169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1861420200, - "lat": 52.2536013, - "lon": -0.8393832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1861420201, - "lat": 52.2555434, - "lon": -0.8593994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1861420205, - "lat": 52.2558376, - "lon": -0.8706222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 173", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1861420209, - "lat": 52.2565832, - "lon": -0.8478323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1861420213, - "lat": 52.2573014, - "lon": -0.8442002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1861420217, - "lat": 52.2586082, - "lon": -0.8647271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1861420225, - "lat": 52.2617294, - "lon": -0.8652342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 252", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1861569236, - "lat": 55.2417345, - "lon": -3.7659908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG3 43" - } -}, -{ - "type": "node", - "id": 1861596865, - "lat": 55.2127424, - "lon": -3.7355982, - "tags": { - "amenity": "post_box", - "ref": "DG3 134" - } -}, -{ - "type": "node", - "id": 1861624294, - "lat": 55.1972639, - "lon": -3.9204819, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "DG3 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1861634706, - "lat": 55.2639135, - "lon": -3.7800003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1142636603085846", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG3 133", - "survey:date": "2023-03-02" - } -}, -{ - "type": "node", - "id": 1861655345, - "lat": 55.3189017, - "lon": -3.7608628, - "tags": { - "amenity": "post_box", - "ref": "DG3 136" - } -}, -{ - "type": "node", - "id": 1861661942, - "lat": 55.3148967, - "lon": -3.7444476, - "tags": { - "amenity": "post_box", - "ref": "DG3 169" - } -}, -{ - "type": "node", - "id": 1861708732, - "lat": 55.2819155, - "lon": -3.8084643, - "tags": { - "amenity": "post_box", - "ref": "DG3 135", - "source": "Flickr" - } -}, -{ - "type": "node", - "id": 1861752476, - "lat": 52.6637016, - "lon": -2.3020436, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF11 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1861753247, - "lat": 51.3187652, - "lon": -0.3062457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 186", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 1861753248, - "lat": 51.3263102, - "lon": -0.2926285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 195D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1861753250, - "lat": 51.3281284, - "lon": -0.2886530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1862733172, - "lat": 53.7100220, - "lon": -1.7811590, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD6 337" - } -}, -{ - "type": "node", - "id": 1862738120, - "lat": 55.2547053, - "lon": -3.7450533, - "tags": { - "amenity": "post_box", - "ref": "DG3 85" - } -}, -{ - "type": "node", - "id": 1862743686, - "lat": 55.2280762, - "lon": -3.7333321, - "tags": { - "amenity": "post_box", - "ref": "DG3 131" - } -}, -{ - "type": "node", - "id": 1862773181, - "lat": 52.6376467, - "lon": -2.4007309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TF11 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1862773585, - "lat": 52.6710368, - "lon": -2.3011793, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF11 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1862780528, - "lat": 55.2401387, - "lon": -3.7923985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "242917028072855", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG3 130", - "survey:date": "2023-03-02" - } -}, -{ - "type": "node", - "id": 1862784434, - "lat": 55.1937906, - "lon": -3.8722439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG3 108" - } -}, -{ - "type": "node", - "id": 1862810075, - "lat": 55.2166972, - "lon": -3.8776630, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG3 141", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1862816726, - "lat": 55.2185728, - "lon": -3.7944612, - "tags": { - "amenity": "post_box", - "ref": "DG3 137" - } -}, -{ - "type": "node", - "id": 1862826716, - "lat": 55.2498993, - "lon": -3.7285473, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG3 168" - } -}, -{ - "type": "node", - "id": 1863085698, - "lat": 53.5505144, - "lon": -2.1827612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1863244015, - "lat": 55.9386815, - "lon": -4.3111407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G62 618D" - } -}, -{ - "type": "node", - "id": 1863400890, - "lat": 53.8178319, - "lon": -1.5310922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS7 179", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1863400894, - "lat": 53.8300037, - "lon": -1.5382432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 343" - } -}, -{ - "type": "node", - "id": 1863411706, - "lat": 51.9718111, - "lon": -1.9883454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "historic_operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1863571421, - "lat": 52.5979719, - "lon": -2.9418667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY5 73" - } -}, -{ - "type": "node", - "id": 1863693053, - "lat": 50.8718090, - "lon": -2.3658152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1863714751, - "lat": 50.9450800, - "lon": -2.5169378, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT9 18D", - "ref:GB:uprn": "10015282422", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1863714772, - "lat": 50.9486357, - "lon": -2.5161721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "colour": "gold", - "olympics:2012": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DT9 2000;DT9 2001", - "ref:GB:uprn": "10015467304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1863717085, - "lat": 50.9387121, - "lon": -2.5578814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 9", - "ref:GB:uprn": "10015409131", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1863722058, - "lat": 50.8936594, - "lon": -2.5719014, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1863722059, - "lat": 50.8953889, - "lon": -2.5773200, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1863722060, - "lat": 50.8956884, - "lon": -2.5817235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1863724650, - "lat": 50.8791741, - "lon": -2.4842469, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT9 7", - "ref:GB:uprn": "10015406306", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1863725276, - "lat": 50.8736991, - "lon": -2.4614452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 46", - "ref:GB:uprn": "10015432626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1863726944, - "lat": 53.5621254, - "lon": -1.5103999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1863727575, - "lat": 50.8500206, - "lon": -2.4620455, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT2 148", - "ref:GB:uprn": "10015329956", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-14", - "wikimedia_commons": "File:Cosmore, postbox № DT2 148 - geograph.org.uk - 1876005.jpg" - } -}, -{ - "type": "node", - "id": 1864213177, - "lat": 52.7602875, - "lon": 1.1085954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "NR10 1036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1864254267, - "lat": 52.8566099, - "lon": 1.2416622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "NR11 1144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1864302504, - "lat": 52.8857877, - "lon": 1.2456696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:40", - "note": "Collection plate syas \"This is Postbox number 1178\" So ref an interpolation.", - "post_box:type": "wall", - "ref": "NR11 1178", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1864647572, - "lat": 52.9175031, - "lon": 1.2911000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR27 2734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1864650688, - "lat": 52.9303745, - "lon": 1.2957434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-04-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2731D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1864650689, - "lat": 52.9312188, - "lon": 1.2886780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2728D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 1864728857, - "lat": 52.6119686, - "lon": 1.7258875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3010D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1864728908, - "lat": 52.6125933, - "lon": 1.7246507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR30 3000" - } -}, -{ - "type": "node", - "id": 1864813425, - "lat": 54.6180021, - "lon": -3.0550353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1864901060, - "lat": 54.6202798, - "lon": -3.0809489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "The last collection times on the box are 3:30 Mo-Fri and 8:30 Sa, but there is a sticker on the box saying from 10 Jan 2022 collections will be 09:00 Mon-Fri and 07:00 Sa.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 54D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1865088087, - "lat": 51.2980421, - "lon": -0.4964217, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU23 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1865088901, - "lat": 50.5298616, - "lon": -3.5992750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-06" - } -}, -{ - "type": "node", - "id": 1865569969, - "lat": 51.4110036, - "lon": -0.2092277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW19 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1865789193, - "lat": 54.2547304, - "lon": -1.3992094, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests this should be YO7 67", - "operator": "Royal Mail", - "ref": "YO7 65", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1865898706, - "lat": 54.2811289, - "lon": -1.4299417, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1866079529, - "lat": 54.0808253, - "lon": -2.2738998, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD24 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866085825, - "lat": 54.0653208, - "lon": -2.2779750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD24 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866168272, - "lat": 52.0417799, - "lon": -4.3075543, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1866319445, - "lat": 54.3226586, - "lon": -2.3293182, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA10 55", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866331119, - "lat": 54.3014363, - "lon": -2.3892554, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA10 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866331143, - "lat": 54.3061204, - "lon": -2.4155444, - "tags": { - "amenity": "post_box", - "ref": "LA10 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866338470, - "lat": 50.9010516, - "lon": -0.1746011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN45 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1866341240, - "lat": 54.3110059, - "lon": -2.4411785, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA10 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866341359, - "lat": 54.3204967, - "lon": -2.5081225, - "tags": { - "amenity": "post_box", - "ref": "LA10 82", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866342488, - "lat": 54.3233181, - "lon": -2.5211034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA10 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1866353774, - "lat": 51.9515905, - "lon": -1.9720363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic_operator": "Post Office", - "post_box:type": "pillar", - "ref": "GL54 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1866353782, - "lat": 51.9544139, - "lon": -1.9687757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mail:first_class": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 174D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1867218641, - "lat": 53.3766500, - "lon": -3.0441972, - "tags": { - "amenity": "post_box", - "description": "EIIR type B post box CH43 38 on Storeton Road near Croft Edge. Listed as at Salem View by RM.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Croft Edge, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 1867699807, - "lat": 54.4495448, - "lon": -2.6096802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 08:15", - "mapillary": "157171983022385", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA10 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-12-15" - } -}, -{ - "type": "node", - "id": 1867758790, - "lat": 54.5435994, - "lon": -2.9498605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "CA11 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1867842346, - "lat": 54.5861570, - "lon": -2.9404228, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "CA11 237", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1867842407, - "lat": 54.5931721, - "lon": -2.9392033, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1867926233, - "lat": 52.9941506, - "lon": -2.2902732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ST5 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1868036798, - "lat": 51.5035539, - "lon": -0.8601383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG10 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1868144456, - "lat": 50.3347165, - "lon": -4.7745951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "PL25 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1868488517, - "lat": 53.6894317, - "lon": -1.6187340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 47" - } -}, -{ - "type": "node", - "id": 1868490080, - "lat": 53.2310173, - "lon": -0.5495788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1868647621, - "lat": 51.2028122, - "lon": -1.4961859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1868873072, - "lat": 53.4317172, - "lon": -2.1362479, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1868928167, - "lat": 53.7228739, - "lon": -1.7224441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BD19 701", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1868928185, - "lat": 53.7205576, - "lon": -1.7333972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BD19 706" - } -}, -{ - "type": "node", - "id": 1868942212, - "lat": 53.7209947, - "lon": -1.7474484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD19 716", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1868950503, - "lat": 53.7587284, - "lon": -2.3724420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1868954371, - "lat": 51.1565147, - "lon": -1.0516736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "colour": "gold", - "name": "Bentworth Gold Post Box", - "note": "This is a gold post box. See http://en.wikipedia.org/wiki/2012_Summer_Olympics_and_Paralympics_gold_post_boxes", - "olympic_gold": "Peter Charles", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU34 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1869075372, - "lat": 50.8406346, - "lon": -1.0970932, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1869086651, - "lat": 50.8472238, - "lon": -1.1100661, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1869098789, - "lat": 51.8294616, - "lon": -1.5855004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX18 424D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1869153631, - "lat": 51.1206321, - "lon": -0.1744900, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;Bing" - } -}, -{ - "type": "node", - "id": 1869153649, - "lat": 51.1242240, - "lon": -0.1696583, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;Bing" - } -}, -{ - "type": "node", - "id": 1869246557, - "lat": 52.5735087, - "lon": 1.2469435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR14 1451D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1869304610, - "lat": 51.9907936, - "lon": -2.0263115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "historic_operator": "Post Office", - "post_box:type": "wall", - "ref": "GL20 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1870221408, - "lat": 55.9241832, - "lon": -4.4029860, - "tags": { - "amenity": "post_box", - "ref": "G81 268" - } -}, -{ - "type": "node", - "id": 1870314012, - "lat": 52.1395720, - "lon": -2.5036157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR6 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870314018, - "lat": 52.1517015, - "lon": -2.5118951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "HR7 598", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870418072, - "lat": 51.4570926, - "lon": -0.8834677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG5 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870468946, - "lat": 51.7384589, - "lon": -0.2938950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL4 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870469352, - "lat": 51.7333997, - "lon": -0.3075368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL1 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1870470153, - "lat": 51.7357685, - "lon": -0.3132389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870472686, - "lat": 51.7363229, - "lon": -0.3297365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL1 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870473787, - "lat": 51.7385509, - "lon": -0.3332002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870477051, - "lat": 51.7450222, - "lon": -0.3402773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870478558, - "lat": 51.7440840, - "lon": -0.3453066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-26", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL1 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870478777, - "lat": 51.7402208, - "lon": -0.3480802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL1 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870480206, - "lat": 51.7368061, - "lon": -0.3372234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1870482983, - "lat": 51.7519398, - "lon": -0.3480015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL3 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870484904, - "lat": 51.7547814, - "lon": -0.3446186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870490125, - "lat": 51.7585724, - "lon": -0.3481077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL3 386D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870493685, - "lat": 51.7429378, - "lon": -0.3227663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1870494821, - "lat": 51.7413693, - "lon": -0.3103323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870497599, - "lat": 51.7462191, - "lon": -0.3080273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 107D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870501469, - "lat": 51.7488998, - "lon": -0.2983397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 392D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870502749, - "lat": 51.7479056, - "lon": -0.2857508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870503676, - "lat": 51.7513164, - "lon": -0.2858233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870504994, - "lat": 51.7647684, - "lon": -0.2926790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870508082, - "lat": 51.7673114, - "lon": -0.3136952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 205", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1870508834, - "lat": 51.7702693, - "lon": -0.3036202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870510138, - "lat": 51.7656081, - "lon": -0.2992376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870511421, - "lat": 51.7617882, - "lon": -0.2979634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870511863, - "lat": 51.7787594, - "lon": -0.2992008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AL4 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870512184, - "lat": 51.7810053, - "lon": -0.3053891, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL4 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870512758, - "lat": 51.7833760, - "lon": -0.3028296, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL4 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870513801, - "lat": 51.8103930, - "lon": -0.2555386, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL4 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870515484, - "lat": 51.8076569, - "lon": -0.2942607, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AL4 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1870516575, - "lat": 51.8072159, - "lon": -0.2971167, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL4 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870517911, - "lat": 51.8058375, - "lon": -0.2903914, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL4 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870519968, - "lat": 51.8274292, - "lon": -0.2940069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "AL4 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1870520493, - "lat": 51.8327780, - "lon": -0.2978971, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL4 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870520817, - "lat": 51.8388701, - "lon": -0.3026417, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AL4 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1870521683, - "lat": 51.8327739, - "lon": -0.3062222, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL4 336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870522395, - "lat": 51.8199830, - "lon": -0.3208674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL4 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870528984, - "lat": 51.7985133, - "lon": -0.3563195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL5 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870530001, - "lat": 51.8034001, - "lon": -0.3479284, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870531796, - "lat": 51.8174747, - "lon": -0.3382433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 211D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1870533433, - "lat": 51.8117710, - "lon": -0.3460193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870534311, - "lat": 51.8098479, - "lon": -0.3397642, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 91D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1870535373, - "lat": 51.8153455, - "lon": -0.3471256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1870536542, - "lat": 51.8214467, - "lon": -0.3477362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1870537511, - "lat": 51.8243749, - "lon": -0.3507573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 67D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1870573368, - "lat": 53.9409508, - "lon": -1.1141761, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO24 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871030405, - "lat": 50.7752921, - "lon": 0.1181162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-25" - } -}, -{ - "type": "node", - "id": 1871126027, - "lat": 53.6781126, - "lon": -1.5814829, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-05", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF5 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871216975, - "lat": 52.2472743, - "lon": -0.8363645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871216997, - "lat": 52.2509403, - "lon": -0.8225160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871216998, - "lat": 52.2519920, - "lon": -0.8306194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871216999, - "lat": 52.2567041, - "lon": -0.8342320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NN3 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871217004, - "lat": 52.2568388, - "lon": -0.8122936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871217010, - "lat": 52.2611492, - "lon": -0.8387102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871217016, - "lat": 52.2615281, - "lon": -0.8143163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871217025, - "lat": 52.2662194, - "lon": -0.8212349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871217054, - "lat": 52.2689541, - "lon": -0.8406376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871217058, - "lat": 52.2704893, - "lon": -0.8174306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871244584, - "lat": 51.9621956, - "lon": -2.3155044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "179540408418784", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 1871244593, - "lat": 51.9734950, - "lon": -2.3422559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Approximate location", - "mapillary": "1383764595534034", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 1871257307, - "lat": 51.0422143, - "lon": 0.7408558, - "tags": { - "amenity": "post_box", - "colour": "red", - "ref": "TN30 204", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1871494806, - "lat": 55.2134109, - "lon": -3.7265552, - "tags": { - "amenity": "post_box", - "ref": "DG3 142" - } -}, -{ - "type": "node", - "id": 1871533490, - "lat": 51.4904533, - "lon": -0.2376605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co. Ltd", - "post_box:type": "pillar", - "ref": "W6 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871655567, - "lat": 52.1502998, - "lon": -1.1570151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN11 163", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871658648, - "lat": 52.8858052, - "lon": 0.7653256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871742057, - "lat": 51.7165022, - "lon": -0.3612664, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871742284, - "lat": 51.7090803, - "lon": -0.3637129, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AL2 390D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871742428, - "lat": 51.7086770, - "lon": -0.3753105, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AL2 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871742767, - "lat": 51.7118216, - "lon": -0.3724366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AL2 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871743618, - "lat": 51.7064762, - "lon": -0.3807483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871743884, - "lat": 51.6907826, - "lon": -0.3707908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AL2 5D" - } -}, -{ - "type": "node", - "id": 1871744632, - "lat": 51.7046819, - "lon": -0.3627090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AL2 257D" - } -}, -{ - "type": "node", - "id": 1871747518, - "lat": 51.7023843, - "lon": -0.3498145, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "AL2 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871748226, - "lat": 51.7062310, - "lon": -0.3574585, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-09", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AL2 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871749218, - "lat": 51.7167771, - "lon": -0.3519168, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871749451, - "lat": 51.7224672, - "lon": -0.3469117, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871749620, - "lat": 51.7172663, - "lon": -0.3468098, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "AL2 195D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1871751448, - "lat": 51.7216445, - "lon": -0.3378571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871751642, - "lat": 51.7190041, - "lon": -0.3358348, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871752415, - "lat": 51.7133178, - "lon": -0.3333405, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871753521, - "lat": 51.7274903, - "lon": -0.3410265, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871763617, - "lat": 51.7264875, - "lon": -0.3548370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 164D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871766957, - "lat": 51.7664573, - "lon": -0.3302528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL3 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871767625, - "lat": 51.7672974, - "lon": -0.3350135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871767922, - "lat": 51.7676868, - "lon": -0.3433150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 225D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1871768173, - "lat": 51.7734011, - "lon": -0.3428329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL3 490D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871768727, - "lat": 51.7603284, - "lon": -0.3489163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871768900, - "lat": 51.7636826, - "lon": -0.3421946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871769369, - "lat": 51.7605179, - "lon": -0.3362842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871769613, - "lat": 51.7570014, - "lon": -0.3343586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871771380, - "lat": 51.7582922, - "lon": -0.3248814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1871771383, - "lat": 51.7546500, - "lon": -0.3272986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1871773064, - "lat": 51.7453046, - "lon": -0.3295684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1871919269, - "lat": 50.7244649, - "lon": -2.9334472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT7 79D", - "ref:GB:uprn": "10015292174", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1871933044, - "lat": 50.3376675, - "lon": -4.8002615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1871943549, - "lat": 55.9655507, - "lon": -3.7508761, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1871947802, - "lat": 55.9671467, - "lon": -3.7540041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "FK1 193D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1871972501, - "lat": 53.7308628, - "lon": -1.6188174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 625D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1872364787, - "lat": 55.2502321, - "lon": -3.7482129, - "tags": { - "amenity": "post_box", - "ref": "DG3 129" - } -}, -{ - "type": "node", - "id": 1872367439, - "lat": 55.2431086, - "lon": -3.7615596, - "tags": { - "amenity": "post_box", - "ref": "DG3 127" - } -}, -{ - "type": "node", - "id": 1872369134, - "lat": 55.2020108, - "lon": -3.7166111, - "tags": { - "amenity": "post_box", - "ref": "DG3 139" - } -}, -{ - "type": "node", - "id": 1872379013, - "lat": 54.9868374, - "lon": -3.2621571, - "tags": { - "amenity": "post_box", - "ref": "DG12 42" - } -}, -{ - "type": "node", - "id": 1872383227, - "lat": 54.9909462, - "lon": -3.2522866, - "tags": { - "amenity": "post_box", - "ref": "DG12 68" - } -}, -{ - "type": "node", - "id": 1872386116, - "lat": 54.9871734, - "lon": -3.2572674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DG12 69", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1872409662, - "lat": 54.9822017, - "lon": -3.2518601, - "tags": { - "amenity": "post_box", - "ref": "DG12 70" - } -}, -{ - "type": "node", - "id": 1872413477, - "lat": 54.9872231, - "lon": -3.2640287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1872432867, - "lat": 54.9855058, - "lon": -3.3467452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG12 81", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1872452143, - "lat": 54.9827715, - "lon": -3.2681851, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 201", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1872459488, - "lat": 54.9855284, - "lon": -3.3385194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "807413987370227", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DG12 87", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 1872476394, - "lat": 54.9739287, - "lon": -3.1248546, - "tags": { - "amenity": "post_box", - "ref": "DG12 95" - } -}, -{ - "type": "node", - "id": 1872478054, - "lat": 54.9863533, - "lon": -3.1759882, - "tags": { - "amenity": "post_box", - "ref": "DG12 155" - } -}, -{ - "type": "node", - "id": 1872480725, - "lat": 54.9836784, - "lon": -3.1746525, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 98" - } -}, -{ - "type": "node", - "id": 1872484495, - "lat": 54.9908314, - "lon": -3.2560844, - "tags": { - "amenity": "post_box", - "ref": "DG12 173" - } -}, -{ - "type": "node", - "id": 1872489989, - "lat": 54.9934658, - "lon": -3.2572538, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 174", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1872497864, - "lat": 54.9939008, - "lon": -3.2529184, - "tags": { - "amenity": "post_box", - "ref": "DG12 175" - } -}, -{ - "type": "node", - "id": 1872508347, - "lat": 54.9889583, - "lon": -3.2539430, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 180" - } -}, -{ - "type": "node", - "id": 1872510824, - "lat": 54.9887367, - "lon": -3.2485625, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 187" - } -}, -{ - "type": "node", - "id": 1872514535, - "lat": 54.9817434, - "lon": -3.2586368, - "tags": { - "amenity": "post_box", - "ref": "DG12 202" - } -}, -{ - "type": "node", - "id": 1872532705, - "lat": 51.9375188, - "lon": -2.2955269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1872532707, - "lat": 51.9576774, - "lon": -2.3044369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL19 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1872536859, - "lat": 54.9923317, - "lon": -3.2475601, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 188" - } -}, -{ - "type": "node", - "id": 1872541615, - "lat": 55.0222307, - "lon": -3.2765709, - "tags": { - "amenity": "post_box", - "ref": "DG12 79" - } -}, -{ - "type": "node", - "id": 1872568914, - "lat": 54.9898668, - "lon": -3.2428127, - "tags": { - "amenity": "post_box", - "ref": "DG12 82" - } -}, -{ - "type": "node", - "id": 1872601824, - "lat": 55.0216306, - "lon": -3.2097890, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG12 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1872740740, - "lat": 52.9600004, - "lon": 0.8160484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR23 2305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1872766527, - "lat": 54.9916151, - "lon": -3.2437292, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG12 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1872783628, - "lat": 54.9778308, - "lon": -3.2615811, - "tags": { - "amenity": "post_box", - "ref": "DG12 71" - } -}, -{ - "type": "node", - "id": 1872809844, - "lat": 52.9631432, - "lon": 0.7457590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:type": "wall", - "ref": "PE31 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1872819843, - "lat": 54.9919710, - "lon": -3.2604172, - "tags": { - "amenity": "post_box", - "ref": "DG12 67" - } -}, -{ - "type": "node", - "id": 1873044324, - "lat": 52.6428985, - "lon": 0.6899790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE37 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1873066763, - "lat": 52.7686404, - "lon": 0.7535846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 383" - } -}, -{ - "type": "node", - "id": 1873095360, - "lat": 52.2359915, - "lon": -0.8830515, - "tags": { - "amenity": "post_box", - "ref": "NN1 146" - } -}, -{ - "type": "node", - "id": 1873143675, - "lat": 52.8224836, - "lon": 0.8335336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1873143676, - "lat": 52.8113189, - "lon": 0.8156361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1873143678, - "lat": 52.7941178, - "lon": 0.7993645, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1873143693, - "lat": 52.8267372, - "lon": 0.8363470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1873155804, - "lat": 52.8891790, - "lon": 0.7611758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1873165928, - "lat": 52.9003808, - "lon": 0.7559370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR21 2174" - } -}, -{ - "type": "node", - "id": 1873319583, - "lat": 56.4191775, - "lon": -4.4549837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "503578101078235", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK20 162", - "survey:date": "2020-07-20" - } -}, -{ - "type": "node", - "id": 1873478468, - "lat": 52.0193777, - "lon": -1.8934057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "wall", - "ref": "WR12 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1873679373, - "lat": 51.4208875, - "lon": -0.9690719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "RG2 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1873679374, - "lat": 51.4212384, - "lon": -0.9703648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "RG2 23", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1874150723, - "lat": 51.5863911, - "lon": -0.7709674, - "tags": { - "amenity": "post_box", - "ref": "SL7 131" - } -}, -{ - "type": "node", - "id": 1874803016, - "lat": 56.1044626, - "lon": -3.7402128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5388394891276469", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK10 8", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 1874818201, - "lat": 51.0123677, - "lon": -1.6797767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP5 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1874856307, - "lat": 52.5433718, - "lon": 0.5841516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1875039624, - "lat": 56.0196633, - "lon": -3.7423835, - "tags": { - "amenity": "post_box", - "ref": "FK3 122", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1875074601, - "lat": 53.8122004, - "lon": -1.9028808, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1875097875, - "lat": 53.9381902, - "lon": -1.1198290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 463", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1876512661, - "lat": 53.0724694, - "lon": -1.2891096, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1876568045, - "lat": 53.8679650, - "lon": -1.9021189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD23 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1877257294, - "lat": 53.0986470, - "lon": -3.0320400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1877267226, - "lat": 52.8642252, - "lon": -2.3249848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ST21 390" - } -}, -{ - "type": "node", - "id": 1877349405, - "lat": 50.3384481, - "lon": -4.7951901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "371061502398155", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 86", - "royal_cypher": "GR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 1878217778, - "lat": 53.6706008, - "lon": -1.7538686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1878571566, - "lat": 51.4926288, - "lon": -2.6083521, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS9 635D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1879004261, - "lat": 52.2631403, - "lon": -2.5085054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR15 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1879090897, - "lat": 53.7565873, - "lon": -2.8665529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1879406505, - "lat": 53.7002523, - "lon": -1.7731478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HD6 276" - } -}, -{ - "type": "node", - "id": 1879406511, - "lat": 53.7002570, - "lon": -1.7731987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HD6 211" - } -}, -{ - "type": "node", - "id": 1879717233, - "lat": 54.7873759, - "lon": -4.1287402, - "tags": { - "amenity": "post_box", - "ref": "DG6 63" - } -}, -{ - "type": "node", - "id": 1879967885, - "lat": 51.3486394, - "lon": -0.0924238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 165", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1879999338, - "lat": 53.6778833, - "lon": -1.7474293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1880103313, - "lat": 53.5487239, - "lon": -1.6622955, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_plate:date": "2023-05-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "S36 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-15" - } -}, -{ - "type": "node", - "id": 1880103331, - "lat": 53.5522651, - "lon": -1.6694987, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_plate:date": "2023-05-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S36 735D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-15" - } -}, -{ - "type": "node", - "id": 1880176507, - "lat": 53.1403812, - "lon": -1.0339825, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1880742979, - "lat": 55.6992672, - "lon": -5.2774774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1880765207, - "lat": 55.7040384, - "lon": -5.2917227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 45", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1880767366, - "lat": 52.4115827, - "lon": -1.3683240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1880773127, - "lat": 53.1831195, - "lon": -0.9985355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1880773582, - "lat": 55.7070481, - "lon": -5.2992005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KA27 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1880785857, - "lat": 53.1888005, - "lon": -0.9983142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG22 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1880871284, - "lat": 52.1935363, - "lon": -0.5182093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK44 415", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 1880904727, - "lat": 52.2059951, - "lon": -0.4658456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 1881670782, - "lat": 51.4468914, - "lon": -2.5875885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BS1 381", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1881732157, - "lat": 53.1204229, - "lon": -0.5300806, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1881747334, - "lat": 54.0842958, - "lon": -2.2802948, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD24 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1881761493, - "lat": 53.1341712, - "lon": -0.5416058, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1881813478, - "lat": 53.1065957, - "lon": -0.5247185, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1882028780, - "lat": 51.4286480, - "lon": -2.2004625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1882043883, - "lat": 51.3796899, - "lon": -2.1470591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1882043893, - "lat": 51.3904291, - "lon": -2.1620011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1882290073, - "lat": 51.7487356, - "lon": -0.9778748, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1882343339, - "lat": 55.8733291, - "lon": -4.2302115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "G21 137", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1882500999, - "lat": 54.2354966, - "lon": -0.7220180, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO18 76", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1882543019, - "lat": 53.8777741, - "lon": -2.7615520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1882549167, - "lat": 51.7965797, - "lon": -0.1935225, - "tags": { - "amenity": "post_box", - "ref": "AL7 191" - } -}, -{ - "type": "node", - "id": 1882643969, - "lat": 55.8840384, - "lon": -4.1652665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "ref": "G33 855" - } -}, -{ - "type": "node", - "id": 1882703270, - "lat": 55.8934560, - "lon": -4.1795172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 1222" - } -}, -{ - "type": "node", - "id": 1882716187, - "lat": 55.5269625, - "lon": -5.1342080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1100744404574393", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA27 108", - "survey:date": "2024-03-11" - } -}, -{ - "type": "node", - "id": 1882731365, - "lat": 55.4955141, - "lon": -5.0937503, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA27 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1882738621, - "lat": 50.8489427, - "lon": -0.1923816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 125" - } -}, -{ - "type": "node", - "id": 1882741117, - "lat": 55.5000416, - "lon": -5.0945286, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA27 801" - } -}, -{ - "type": "node", - "id": 1882762840, - "lat": 55.5417248, - "lon": -5.1145857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 12:15", - "post_box:type": "wall", - "ref": "KA27 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1882763453, - "lat": 50.8480045, - "lon": -0.1993058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 133" - } -}, -{ - "type": "node", - "id": 1882770133, - "lat": 55.5736712, - "lon": -5.1383020, - "tags": { - "amenity": "post_box", - "ref": "KA27 18" - } -}, -{ - "type": "node", - "id": 1882808726, - "lat": 55.6958007, - "lon": -5.3262563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA27 75", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1882856898, - "lat": 55.4417618, - "lon": -5.1146131, - "tags": { - "amenity": "post_box", - "ref": "KA27 10" - } -}, -{ - "type": "node", - "id": 1883200571, - "lat": 53.9780765, - "lon": -1.0655666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO31 572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1883484487, - "lat": 54.8294599, - "lon": -3.1723921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "ref": "CA7 203" - } -}, -{ - "type": "node", - "id": 1883487683, - "lat": 52.9329002, - "lon": 0.5425265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "07/11/2022", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1883614128, - "lat": 51.7954960, - "lon": -0.1887122, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1883955068, - "lat": 52.9519852, - "lon": 1.0863293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR25 2535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1884073209, - "lat": 51.5669020, - "lon": 0.6541839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SS9 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1884431011, - "lat": 51.1362375, - "lon": -3.1608914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1884491443, - "lat": 51.2956168, - "lon": -0.1102987, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "The Fox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 228", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1884491749, - "lat": 51.3230589, - "lon": -0.1241468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1884491754, - "lat": 51.3280420, - "lon": -0.1239691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 320", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1884960717, - "lat": 50.8477560, - "lon": -0.9447452, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO10 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1885007787, - "lat": 52.2921006, - "lon": -1.7802263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "both apertures have a separate ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "B95 245;B95 2450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1885100905, - "lat": 51.4538439, - "lon": -2.6251318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS8 430D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1885571002, - "lat": 51.4534201, - "lon": -2.6046340, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BS1 2401;BS1 2402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1885617362, - "lat": 51.1397279, - "lon": -3.1652128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1885659424, - "lat": 55.3318976, - "lon": -3.4439246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG10 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1885659498, - "lat": 51.8210035, - "lon": -4.8053475, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1885661066, - "lat": 55.3352828, - "lon": -3.4412897, - "tags": { - "amenity": "post_box", - "ref": "DG10 40" - } -}, -{ - "type": "node", - "id": 1885663895, - "lat": 55.3356848, - "lon": -3.4339304, - "tags": { - "amenity": "post_box", - "ref": "DG10 34" - } -}, -{ - "type": "node", - "id": 1885671400, - "lat": 55.3333766, - "lon": -3.4405393, - "tags": { - "amenity": "post_box", - "ref": "DG10 35" - } -}, -{ - "type": "node", - "id": 1885684765, - "lat": 55.3321591, - "lon": -3.4378142, - "tags": { - "amenity": "post_box", - "ref": "DG10 37" - } -}, -{ - "type": "node", - "id": 1885686674, - "lat": 55.3308790, - "lon": -3.4336783, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DG10 33" - } -}, -{ - "type": "node", - "id": 1885710160, - "lat": 51.4523665, - "lon": -2.5596763, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS5 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1885710172, - "lat": 51.4538815, - "lon": -2.5362486, - "tags": { - "amenity": "post_box", - "mapillary": "1585821244921402", - "post_box:type": "pillar", - "ref": "BS5 214", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 1885783027, - "lat": 53.9413818, - "lon": -1.1057741, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO24 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1885807824, - "lat": 51.4370671, - "lon": -2.5443645, - "tags": { - "amenity": "post_box", - "ref": "BS4 81" - } -}, -{ - "type": "node", - "id": 1885813567, - "lat": 55.3387497, - "lon": -3.4486332, - "tags": { - "amenity": "post_box", - "ref": "DG10 31" - } -}, -{ - "type": "node", - "id": 1886071979, - "lat": 52.8894716, - "lon": -1.8626751, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1886208410, - "lat": 55.5688772, - "lon": -2.4780709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD5 33" - } -}, -{ - "type": "node", - "id": 1886535537, - "lat": 51.3557954, - "lon": -2.6308696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS40 308D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1886535539, - "lat": 51.3527853, - "lon": -2.6331079, - "tags": { - "amenity": "post_box", - "mapillary": "630640618135209", - "post_box:type": "pillar", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1886675883, - "lat": 56.4815550, - "lon": -2.8763213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD5 119", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1886852149, - "lat": 52.5784900, - "lon": -2.1597830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "ref": "WV3 243", - "source": "survey", - "survey:date": "2012-09-06" - } -}, -{ - "type": "node", - "id": 1886852155, - "lat": 52.5747094, - "lon": -2.1469994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "WV3 200", - "source": "survey", - "survey:date": "2012-09-03" - } -}, -{ - "type": "node", - "id": 1886852156, - "lat": 52.5702216, - "lon": -2.1627372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "ref": "WV3 271", - "source": "survey", - "survey:date": "2012-08-29" - } -}, -{ - "type": "node", - "id": 1886852157, - "lat": 52.5720768, - "lon": -2.1589674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "ref": "WV3 292", - "source": "survey", - "survey:date": "2012-08-29" - } -}, -{ - "type": "node", - "id": 1886852158, - "lat": 52.5722258, - "lon": -2.1454305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "mapillary": "1086694472133779", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV3 163", - "source": "survey", - "survey:date": "2022-01-01" - } -}, -{ - "type": "node", - "id": 1886852165, - "lat": 52.5812691, - "lon": -2.1505450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "ref": "WV3 436", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1886865065, - "lat": 51.8205937, - "lon": -4.7954929, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1886897855, - "lat": 55.3270669, - "lon": -3.4310491, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG10 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1887546571, - "lat": 50.8603668, - "lon": -1.0087873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-23", - "old_collection_plate": "CP1", - "old_ref": "PO9 73", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1887550272, - "lat": 50.8629521, - "lon": -1.0071391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-23", - "old_collection_plate": "CP1", - "old_ref": "PO9 51", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 51D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1887905383, - "lat": 52.2926894, - "lon": -1.5358405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "drive_through": "no", - "note": "Both apertures have same ref. One is for stamped mail and the other for franked mail.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV32 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1888073681, - "lat": 51.4176281, - "lon": -2.7947560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS48 95", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1888339822, - "lat": 51.9410013, - "lon": -2.0231524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL52 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1888573472, - "lat": 51.9724390, - "lon": -2.0020803, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "GL54 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1888745070, - "lat": 51.4759204, - "lon": -1.4444109, - "tags": { - "amenity": "post_box", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1889037204, - "lat": 52.5721194, - "lon": -2.1659828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "post_box:type": "lamp", - "ref": "WV3 283", - "source": "survey", - "survey:date": "2012-08-29" - } -}, -{ - "type": "node", - "id": 1889037207, - "lat": 52.5706598, - "lon": -2.1702537, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-26", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "ref": "WV3 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1889170313, - "lat": 51.9678135, - "lon": -1.9643927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "GL54 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1889172172, - "lat": 52.8718337, - "lon": -1.8889483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST14 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1889172976, - "lat": 50.8319972, - "lon": -0.7816506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1889222264, - "lat": 50.9909683, - "lon": -0.8485727, - "tags": { - "amenity": "post_box", - "ref": "GU31 143" - } -}, -{ - "type": "node", - "id": 1889227079, - "lat": 50.9905755, - "lon": -0.8192040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "post_box:type": "lamp", - "ref": "GU31 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1889229576, - "lat": 51.0366579, - "lon": -0.8066712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1889229592, - "lat": 51.0414075, - "lon": -0.8112822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-02-06", - "old_ref": "GU30 45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1889579471, - "lat": 51.8091325, - "lon": -4.8082065, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1889666447, - "lat": 51.5050833, - "lon": -3.5717869, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1889756777, - "lat": 52.7575865, - "lon": 1.1750753, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1890258600, - "lat": 51.7880683, - "lon": -0.1969971, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 229", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1890258610, - "lat": 51.7915731, - "lon": -0.1946460, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 219" - } -}, -{ - "type": "node", - "id": 1890573792, - "lat": 59.1291643, - "lon": -3.3156692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW17 108", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1890723075, - "lat": 51.9589565, - "lon": -1.9684668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "historic_operator": "Post Office", - "post_box:type": "lamp", - "ref": "GL54 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1890842307, - "lat": 51.5652310, - "lon": 0.6712693, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1890842650, - "lat": 51.5363137, - "lon": -3.3866223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1891424888, - "lat": 50.3781704, - "lon": -4.1697410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL1 164D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1891953105, - "lat": 51.7863957, - "lon": -0.1872128, - "tags": { - "amenity": "post_box", - "ref": "AL7 262" - } -}, -{ - "type": "node", - "id": 1891953126, - "lat": 51.7905886, - "lon": -0.1867165, - "tags": { - "amenity": "post_box", - "ref": "AL7 233" - } -}, -{ - "type": "node", - "id": 1892036644, - "lat": 58.9625923, - "lon": -3.3154055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "post_box:type": "lamp", - "ref": "KW16 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1892469625, - "lat": 53.2633173, - "lon": -1.2144886, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "pillar", - "ref": "S80 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1892919876, - "lat": 50.9722296, - "lon": -0.4617494, - "tags": { - "amenity": "post_box", - "ref": "RH20 50" - } -}, -{ - "type": "node", - "id": 1892934280, - "lat": 55.8992071, - "lon": -3.2100722, - "tags": { - "amenity": "post_box", - "ref": "EH10 321" - } -}, -{ - "type": "node", - "id": 1892993430, - "lat": 55.9077558, - "lon": -3.1994418, - "tags": { - "amenity": "post_box", - "ref": "EH10 566" - } -}, -{ - "type": "node", - "id": 1893309026, - "lat": 52.2605693, - "lon": -0.8699458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893309033, - "lat": 52.2650268, - "lon": -0.8662801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1893309041, - "lat": 52.2675177, - "lon": -0.8742471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893309051, - "lat": 52.2695100, - "lon": -0.8688551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385436, - "lat": 52.2713018, - "lon": -0.8105506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385437, - "lat": 52.2752450, - "lon": -0.8636319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385438, - "lat": 52.2778852, - "lon": -0.8361167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385439, - "lat": 52.2780572, - "lon": -0.8399221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385440, - "lat": 52.2780595, - "lon": -0.8399361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 543", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385441, - "lat": 52.2785824, - "lon": -0.8464203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385442, - "lat": 52.2797672, - "lon": -0.8536657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385443, - "lat": 52.2827759, - "lon": -0.8549993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385444, - "lat": 52.2850685, - "lon": -0.8418197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385446, - "lat": 52.2882944, - "lon": -0.8530473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN3 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385450, - "lat": 52.2886676, - "lon": -0.8389902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN3 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1893385454, - "lat": 52.2893776, - "lon": -0.8592605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1893496153, - "lat": 52.5903181, - "lon": -2.1503033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "WV6 137", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1893496159, - "lat": 52.5887957, - "lon": -2.1473235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV1 51", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1893496167, - "lat": 52.5763383, - "lon": -2.1664556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "WV3 348", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1893496170, - "lat": 52.5865164, - "lon": -2.1601967, - "tags": { - "amenity": "post_box", - "note": "collection times were missing.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV3 50", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1893814864, - "lat": 52.6230091, - "lon": -3.9969048, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 5", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1893898541, - "lat": 52.5985904, - "lon": -4.0663088, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1894219941, - "lat": 55.2539855, - "lon": -3.4360037, - "tags": { - "amenity": "post_box", - "ref": "DG10 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1894598649, - "lat": 52.4688410, - "lon": -1.9996864, - "tags": { - "amenity": "post_box", - "ref": "B68 307", - "source": "local_knowldge" - } -}, -{ - "type": "node", - "id": 1894728596, - "lat": 55.9086202, - "lon": -3.1287014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH17 308", - "royal_cypher": "scottish_crown", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1894742294, - "lat": 55.9136157, - "lon": -3.1341811, - "tags": { - "amenity": "post_box", - "ref": "EH17 447" - } -}, -{ - "type": "node", - "id": 1894776453, - "lat": 55.9113461, - "lon": -3.1498036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH17 336" - } -}, -{ - "type": "node", - "id": 1894795635, - "lat": 55.9170436, - "lon": -3.1387945, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-06", - "check_date:collection_times": "2023-07-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH17 442", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1894844393, - "lat": 55.9181170, - "lon": -3.1368412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH17 78D" - } -}, -{ - "type": "node", - "id": 1894895544, - "lat": 55.8932343, - "lon": -3.1625354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "ref": "EH17 151" - } -}, -{ - "type": "node", - "id": 1894930687, - "lat": 55.9011214, - "lon": -3.1566881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH17 611", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1894973075, - "lat": 55.9048937, - "lon": -3.1387531, - "tags": { - "amenity": "post_box", - "ref": "EH17 554" - } -}, -{ - "type": "node", - "id": 1895050702, - "lat": 52.2452278, - "lon": -0.8133057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN3 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895050703, - "lat": 52.2485520, - "lon": -0.8097461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895050708, - "lat": 52.2485546, - "lon": -0.8097039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895050712, - "lat": 52.2581447, - "lon": -0.8112231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895050717, - "lat": 52.2606022, - "lon": -0.8045250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895056292, - "lat": 52.2420099, - "lon": -0.8374505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895074348, - "lat": 52.2573373, - "lon": -0.8361849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NN3 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895074700, - "lat": 55.9745618, - "lon": -4.2197971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "operator": "Royal Mail", - "ref": "G66 1056" - } -}, -{ - "type": "node", - "id": 1895082450, - "lat": 52.2670609, - "lon": -0.8586681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895082451, - "lat": 52.2765381, - "lon": -0.8722870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895082452, - "lat": 52.2765700, - "lon": -0.8722926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895082453, - "lat": 52.2782837, - "lon": -0.8796134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895082454, - "lat": 52.2792688, - "lon": -0.8690434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895082455, - "lat": 52.2793107, - "lon": -0.8690583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895085990, - "lat": 52.2649244, - "lon": -0.7523873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NN6 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895311485, - "lat": 55.8708267, - "lon": -3.1784236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "EH25 74" - } -}, -{ - "type": "node", - "id": 1895313821, - "lat": 52.5996112, - "lon": -4.0447636, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 120" - } -}, -{ - "type": "node", - "id": 1895319865, - "lat": 55.8684835, - "lon": -3.1813982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH25 187", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1895394957, - "lat": 51.7919625, - "lon": -0.2014117, - "tags": { - "amenity": "post_box", - "ref": "AL7 232" - } -}, -{ - "type": "node", - "id": 1895596882, - "lat": 51.1947497, - "lon": 0.0569219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "post_box:type": "lamp", - "ref": "TN8 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895597049, - "lat": 51.2365950, - "lon": 0.0644620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30; Su off", - "colour": "Red", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN8 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1895597149, - "lat": 51.2555090, - "lon": 0.0891313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 168", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1896006076, - "lat": 55.8835815, - "lon": -3.1150912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "note": "these are the collection times from the 30 Jan 2017, the old collection times were Mo-Fr 17:15 and Sa 11:15", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EH18 131", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1896019348, - "lat": 55.8805205, - "lon": -3.1106342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EH18 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1896035130, - "lat": 55.8708785, - "lon": -3.1136231, - "tags": { - "amenity": "post_box", - "ref": "EH18 281" - } -}, -{ - "type": "node", - "id": 1896041645, - "lat": 55.8800851, - "lon": -3.0935315, - "tags": { - "amenity": "post_box", - "ref": "EH19 26" - } -}, -{ - "type": "node", - "id": 1896047469, - "lat": 55.8746640, - "lon": -3.1127751, - "tags": { - "amenity": "post_box", - "ref": "EH19 283" - } -}, -{ - "type": "node", - "id": 1896109474, - "lat": 55.9116157, - "lon": -2.8812500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH34 107", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896131291, - "lat": 55.5549367, - "lon": -2.8365626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "123949167124580", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD7 106", - "source": "survey", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 1896141507, - "lat": 54.3198729, - "lon": -2.4917962, - "tags": { - "amenity": "post_box", - "ref": "LA10 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896152671, - "lat": 55.8674646, - "lon": -3.1158457, - "tags": { - "amenity": "post_box", - "ref": "EH19 162" - } -}, -{ - "type": "node", - "id": 1896163674, - "lat": 55.8623481, - "lon": -3.0910337, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2019-06-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH19 7D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896170325, - "lat": 54.3282399, - "lon": -2.3174668, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA10 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896170329, - "lat": 54.3358766, - "lon": -2.3199141, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA10 180", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896170362, - "lat": 54.4093559, - "lon": -2.3363131, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA17 94", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896170490, - "lat": 54.4757248, - "lon": -2.3486839, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1896174353, - "lat": 55.8718112, - "lon": -3.1072052, - "tags": { - "amenity": "post_box", - "ref": "EH19 282" - } -}, -{ - "type": "node", - "id": 1896196838, - "lat": 53.1917483, - "lon": -4.4646712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL63 201" - } -}, -{ - "type": "node", - "id": 1896213522, - "lat": 55.8797067, - "lon": -3.1070126, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EH19 225", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1896251467, - "lat": 55.8807127, - "lon": -3.0972882, - "tags": { - "amenity": "post_box", - "ref": "EH19 338" - } -}, -{ - "type": "node", - "id": 1896426183, - "lat": 53.3675005, - "lon": -2.1991909, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1896426828, - "lat": 53.3706426, - "lon": -2.1878942, - "tags": { - "amenity": "post_box", - "ref": "SK8 182" - } -}, -{ - "type": "node", - "id": 1896935800, - "lat": 52.4622539, - "lon": -2.0045406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B32 766", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1897038687, - "lat": 51.4795556, - "lon": -2.6126056, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 312" - } -}, -{ - "type": "node", - "id": 1897083257, - "lat": 52.5771318, - "lon": -2.1560728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "185263930459563", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV3 58", - "source": "survey", - "survey:date": "2022-01-01" - } -}, -{ - "type": "node", - "id": 1897083261, - "lat": 52.5851045, - "lon": -2.1379840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "WV3 479", - "source": "survey", - "survey:date": "2012-09-02" - } -}, -{ - "type": "node", - "id": 1897083282, - "lat": 52.5832482, - "lon": -2.1293640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "ref": "WV1 16", - "source": "survey", - "survey:date": "2012-09-02" - } -}, -{ - "type": "node", - "id": 1897083288, - "lat": 52.5842623, - "lon": -2.1300849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "WV1 324", - "source": "survey", - "survey:date": "2012-09-02" - } -}, -{ - "type": "node", - "id": 1897083295, - "lat": 52.5863805, - "lon": -2.1692914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WV3 67D", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1897083301, - "lat": 52.5811613, - "lon": -2.1415681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "wall", - "ref": "WV3 138", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1897083307, - "lat": 52.5807710, - "lon": -2.1719361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "ref": "WV3 31", - "source": "survey", - "survey:date": "2012-08-31" - } -}, -{ - "type": "node", - "id": 1897083321, - "lat": 52.5852371, - "lon": -2.1330789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "WV1 65", - "source": "survey", - "survey:date": "2012-09-02" - } -}, -{ - "type": "node", - "id": 1897351397, - "lat": 55.9182412, - "lon": -4.2144537, - "tags": { - "amenity": "post_box", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1897458361, - "lat": 51.5358268, - "lon": 0.7099760, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1898785154, - "lat": 51.6070046, - "lon": -0.5522271, - "tags": { - "amenity": "post_box", - "ref": "SL9 182" - } -}, -{ - "type": "node", - "id": 1898785156, - "lat": 51.5890289, - "lon": -0.5549174, - "tags": { - "amenity": "post_box", - "ref": "SL9 116" - } -}, -{ - "type": "node", - "id": 1899046097, - "lat": 52.6919375, - "lon": -3.4943035, - "tags": { - "amenity": "post_box", - "ref": "SY21 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1899046098, - "lat": 52.7304731, - "lon": -3.7170930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY20 16D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1899078294, - "lat": 52.6697049, - "lon": -3.3955764, - "tags": { - "amenity": "post_box", - "ref": "SY21 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1899087369, - "lat": 52.6516541, - "lon": -3.3227330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SY21 3", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1899159483, - "lat": 51.5509127, - "lon": 0.6793968, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1899159492, - "lat": 51.5498507, - "lon": 0.6949841, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1899159526, - "lat": 51.5507275, - "lon": 0.6852334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1899165220, - "lat": 51.5588053, - "lon": 0.6479215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00" - } -}, -{ - "type": "node", - "id": 1899165592, - "lat": 52.5688601, - "lon": -2.1454480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:type": "lamp", - "ref": "WV3 9", - "source": "survey", - "survey:date": "2012-09-03" - } -}, -{ - "type": "node", - "id": 1899165593, - "lat": 52.5666690, - "lon": -2.1519886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 13:15", - "ref": "WV4 278", - "source": "survey", - "survey:date": "2012-09-03" - } -}, -{ - "type": "node", - "id": 1899165594, - "lat": 52.5734627, - "lon": -2.1497720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "WV3 270", - "source": "survey", - "survey:date": "2012-09-03" - } -}, -{ - "type": "node", - "id": 1899165596, - "lat": 52.5692402, - "lon": -2.1583038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date": "2021-03-22", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV4 340", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1899200352, - "lat": 52.5617223, - "lon": -2.1679213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "ref": "WV4 310", - "source": "survey", - "survey:date": "2012-09-04" - } -}, -{ - "type": "node", - "id": 1899200356, - "lat": 52.5660430, - "lon": -2.1749661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "ref": "WV4 396", - "source": "survey", - "survey:date": "2012-09-04" - } -}, -{ - "type": "node", - "id": 1899200357, - "lat": 52.5596433, - "lon": -2.1740153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "ref": "WV4 377", - "source": "survey", - "survey:date": "2012-09-04" - } -}, -{ - "type": "node", - "id": 1901950246, - "lat": 52.6063631, - "lon": 1.7248936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR30 3005;NR30 3057", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1902231875, - "lat": 57.5815701, - "lon": -4.1309423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV10 145", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1902311044, - "lat": 57.6563192, - "lon": -4.1743640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 37", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1902312898, - "lat": 50.9161224, - "lon": -1.0031182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1903113802, - "lat": 51.4406820, - "lon": 0.4686000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "ref": "ME3 142" - } -}, -{ - "type": "node", - "id": 1903198880, - "lat": 53.9541573, - "lon": -1.1290545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "post_box:type": "pillar", - "ref": "YO24 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1903198911, - "lat": 53.9528535, - "lon": -1.1334064, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO24 152", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1903228988, - "lat": 53.9564769, - "lon": -1.1203440, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-12", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO26 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1903228996, - "lat": 53.9558440, - "lon": -1.1247294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO24 440", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1903272058, - "lat": 53.9529884, - "lon": -1.1260250, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO24 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1903681818, - "lat": 50.8106937, - "lon": -3.6867296, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1904440892, - "lat": 52.5753568, - "lon": -2.1719023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "WV3 365", - "source": "survey", - "survey:date": "2012-09-06" - } -}, -{ - "type": "node", - "id": 1904440898, - "lat": 52.5828095, - "lon": -2.1562396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "post_box:type": "wall", - "ref": "WV3 265", - "source": "survey", - "survey:date": "2012-09-06" - } -}, -{ - "type": "node", - "id": 1904440905, - "lat": 52.5848840, - "lon": -2.1282001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "indoor": "yes", - "ref": "WV1 499", - "source": "survey", - "survey:date": "2012-09-05" - } -}, -{ - "type": "node", - "id": 1904533486, - "lat": 55.0668551, - "lon": -3.6047891, - "tags": { - "amenity": "post_box", - "ref": "DG1 3" - } -}, -{ - "type": "node", - "id": 1904536441, - "lat": 55.0646026, - "lon": -3.5840175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DG1 10;DG1 101", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1904539597, - "lat": 55.0033601, - "lon": -3.5725382, - "tags": { - "amenity": "post_box", - "ref": "DG1 57" - } -}, -{ - "type": "node", - "id": 1904584935, - "lat": 55.0892586, - "lon": -3.5153245, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG1 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1904609801, - "lat": 55.1865462, - "lon": -3.5976174, - "tags": { - "amenity": "post_box", - "ref": "DG1 112" - } -}, -{ - "type": "node", - "id": 1904620013, - "lat": 55.0764775, - "lon": -3.6074376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Cipher seems to have fallen off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG1 2D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1904634303, - "lat": 55.1336531, - "lon": -3.6253119, - "tags": { - "amenity": "post_box", - "ref": "DG1 55" - } -}, -{ - "type": "node", - "id": 1904642202, - "lat": 55.1154791, - "lon": -3.6082798, - "tags": { - "amenity": "post_box", - "ref": "DG1 59" - } -}, -{ - "type": "node", - "id": 1904713166, - "lat": 55.0684306, - "lon": -3.6014885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "DG1 206", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1904745140, - "lat": 55.1007989, - "lon": -3.5804439, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG1 198", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1904749979, - "lat": 55.0701292, - "lon": -3.5238117, - "tags": { - "amenity": "post_box", - "ref": "DG1 52" - } -}, -{ - "type": "node", - "id": 1904881300, - "lat": 53.9633439, - "lon": -1.1174526, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO26 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1904881305, - "lat": 53.9665722, - "lon": -1.1261477, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO26 394", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1905010387, - "lat": 56.7129285, - "lon": -3.7261285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "name": "Moulin Square", - "ref": "PH16 18" - } -}, -{ - "type": "node", - "id": 1905156008, - "lat": 54.9849810, - "lon": -2.0767627, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1905235967, - "lat": 51.1594245, - "lon": -1.0913448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "SO24 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1905376261, - "lat": 55.0494153, - "lon": -3.5985131, - "tags": { - "amenity": "post_box", - "ref": "DG1 44" - } -}, -{ - "type": "node", - "id": 1905678088, - "lat": 55.9345771, - "lon": -3.1419751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 384", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1905681472, - "lat": 55.9313626, - "lon": -3.1313053, - "tags": { - "amenity": "post_box", - "ref": "EH16 619" - } -}, -{ - "type": "node", - "id": 1905704741, - "lat": 55.9210238, - "lon": -3.1598869, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-15", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 638", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1905711636, - "lat": 52.2635269, - "lon": -0.8060932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN3 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1905716769, - "lat": 55.9220059, - "lon": -3.1538048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "471164253959120", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 458", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 1905718062, - "lat": 52.2389296, - "lon": -0.9112405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 221", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1905718063, - "lat": 52.2394411, - "lon": -0.9153395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1905718064, - "lat": 52.2427374, - "lon": -0.9180469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN5 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1905721805, - "lat": 55.9212142, - "lon": -3.1463375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH16 387", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1905726945, - "lat": 55.9174822, - "lon": -3.1582168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 475" - } -}, -{ - "type": "node", - "id": 1905882560, - "lat": 53.6851308, - "lon": -1.6077822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1906562925, - "lat": 55.9281906, - "lon": -3.1742270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH16 162", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906569052, - "lat": 55.9191327, - "lon": -3.1562193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "584207500301737", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 464", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 1906572073, - "lat": 55.9306331, - "lon": -3.1627430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH16 138", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1906584271, - "lat": 55.9172217, - "lon": -3.1644150, - "tags": { - "amenity": "post_box", - "check_date:ref": "2024-06-30", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "note": "EH16 330D is the correct ref for this post_box, the other 330D on Priestfield Road should be 300D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH16 330D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1906591114, - "lat": 55.9125742, - "lon": -3.1589296, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 331", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906597996, - "lat": 55.9143551, - "lon": -3.1647838, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH16 374", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1906603645, - "lat": 55.9205387, - "lon": -3.1634751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "856092604976035", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH16 606", - "royal_cypher": "scottish_crown", - "survey:date": "2020-03-15" - } -}, -{ - "type": "node", - "id": 1906606578, - "lat": 55.9159327, - "lon": -3.1674277, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-19", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH16 334", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906607085, - "lat": 55.9050708, - "lon": -3.1661761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH16 307D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1906608799, - "lat": 55.9048681, - "lon": -3.1749754, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-07", - "check_date:collection_times": "2023-09-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH16 612", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906611366, - "lat": 55.9038460, - "lon": -3.1591564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 527D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906614662, - "lat": 55.9008537, - "lon": -3.1635233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH16 339", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906620417, - "lat": 55.9118079, - "lon": -3.1688573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH16 333D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1906649792, - "lat": 55.0023208, - "lon": -3.4203145, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG1 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906677779, - "lat": 55.0515166, - "lon": -3.4654188, - "tags": { - "amenity": "post_box", - "ref": "DG1 117" - } -}, -{ - "type": "node", - "id": 1906723866, - "lat": 55.0400268, - "lon": -3.4624082, - "tags": { - "amenity": "post_box", - "ref": "DG1 120" - } -}, -{ - "type": "node", - "id": 1906727621, - "lat": 55.0757418, - "lon": -3.5983928, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG1 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906729970, - "lat": 55.0900986, - "lon": -3.5903300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1302055753964323", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG1 167", - "survey:date": "2022-09-03" - } -}, -{ - "type": "node", - "id": 1906750892, - "lat": 55.0993505, - "lon": -3.5843541, - "tags": { - "amenity": "post_box", - "ref": "DG1 179" - } -}, -{ - "type": "node", - "id": 1906760226, - "lat": 55.0865741, - "lon": -3.5939671, - "tags": { - "amenity": "post_box", - "ref": "DG1 210" - } -}, -{ - "type": "node", - "id": 1906765721, - "lat": 55.0797330, - "lon": -3.6004259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG1 9D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1906769746, - "lat": 55.0951116, - "lon": -3.5752131, - "tags": { - "amenity": "post_box", - "ref": "DG1 205" - } -}, -{ - "type": "node", - "id": 1906783459, - "lat": 55.0696979, - "lon": -3.6146952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15", - "ref": "DG1 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1906796679, - "lat": 55.0663606, - "lon": -3.5980119, - "tags": { - "amenity": "post_box", - "ref": "DG1 6" - } -}, -{ - "type": "node", - "id": 1906800362, - "lat": 55.0663360, - "lon": -3.5927333, - "tags": { - "amenity": "post_box", - "ref": "DG1 8" - } -}, -{ - "type": "node", - "id": 1906907394, - "lat": 51.5614802, - "lon": -1.8758743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 20D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1906970309, - "lat": 55.0733378, - "lon": -3.5922974, - "tags": { - "amenity": "post_box", - "ref": "DG1 13" - } -}, -{ - "type": "node", - "id": 1907007240, - "lat": 55.0694753, - "lon": -3.5872913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG1 18" - } -}, -{ - "type": "node", - "id": 1907031705, - "lat": 52.5259103, - "lon": -1.4637940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV11 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-06-19" - } -}, -{ - "type": "node", - "id": 1907038022, - "lat": 55.0980409, - "lon": -3.5679390, - "tags": { - "amenity": "post_box", - "ref": "DG1 200" - } -}, -{ - "type": "node", - "id": 1907055884, - "lat": 55.0907965, - "lon": -3.5617270, - "tags": { - "amenity": "post_box", - "ref": "DG1 211" - } -}, -{ - "type": "node", - "id": 1907066199, - "lat": 55.0724556, - "lon": -3.5994818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG1 26" - } -}, -{ - "type": "node", - "id": 1907104120, - "lat": 55.0685572, - "lon": -3.5763827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "401055435528032", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG1 56", - "survey:date": "2022-09-03" - } -}, -{ - "type": "node", - "id": 1907417550, - "lat": 54.9955818, - "lon": -1.8045752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1907457665, - "lat": 53.0081409, - "lon": -2.2959975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "ST5 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1907462240, - "lat": 53.0120284, - "lon": -2.2911771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "ST5 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1907473305, - "lat": 57.1516439, - "lon": -2.0938912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB24 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 1907704945, - "lat": 52.1133655, - "lon": -4.0817561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1908599379, - "lat": 51.7878775, - "lon": -1.4836176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX28 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1908899854, - "lat": 51.9198866, - "lon": 0.8922334, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-10", - "ref": "CO4 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1908950688, - "lat": 56.1961190, - "lon": -3.1911453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 135", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1908957413, - "lat": 56.1135318, - "lon": -3.1683660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY2 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1908957415, - "lat": 56.1120975, - "lon": -3.1715461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KY2 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1909004379, - "lat": 52.6101893, - "lon": -1.6294326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B78 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1909113262, - "lat": 53.0031830, - "lon": -2.1825565, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1909132759, - "lat": 53.0097209, - "lon": -2.2309835, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1909132763, - "lat": 53.0106888, - "lon": -2.2388038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1909294997, - "lat": 50.9072307, - "lon": -1.4130631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 494D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 1909330411, - "lat": 53.8130835, - "lon": -1.5885931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS4 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing; survey" - } -}, -{ - "type": "node", - "id": 1909565997, - "lat": 52.9690652, - "lon": -2.1910475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST4 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1909569827, - "lat": 55.1232744, - "lon": -3.3585518, - "tags": { - "amenity": "post_box", - "ref": "DG11 44" - } -}, -{ - "type": "node", - "id": 1909571541, - "lat": 55.1254184, - "lon": -3.3578759, - "tags": { - "amenity": "post_box", - "ref": "DG11 5" - } -}, -{ - "type": "node", - "id": 1909606121, - "lat": 54.5545849, - "lon": -1.2401329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1909758127, - "lat": 52.8580057, - "lon": -3.0561740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SY11 174D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1909980223, - "lat": 52.4777406, - "lon": -3.9404532, - "tags": { - "amenity": "post_box", - "ref": "SY24 83" - } -}, -{ - "type": "node", - "id": 1909980224, - "lat": 52.4573160, - "lon": -3.9399885, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SY24 135" - } -}, -{ - "type": "node", - "id": 1910441194, - "lat": 54.9702932, - "lon": -2.1512120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1910719971, - "lat": 51.4425735, - "lon": -2.5713030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS4 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1910764073, - "lat": 51.4421990, - "lon": -2.5625756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS4 114D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1911450607, - "lat": 53.1179820, - "lon": -2.4577445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW1 271D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1911573198, - "lat": 55.8210523, - "lon": -4.4593144, - "tags": { - "amenity": "post_box", - "ref": "PA2 32" - } -}, -{ - "type": "node", - "id": 1911767353, - "lat": 51.0222854, - "lon": -1.3273449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO21 89", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1911879433, - "lat": 55.0331145, - "lon": -3.4057795, - "tags": { - "amenity": "post_box", - "ref": "DG1 124" - } -}, -{ - "type": "node", - "id": 1912102183, - "lat": 55.0293170, - "lon": -3.4548316, - "tags": { - "amenity": "post_box", - "ref": "DG1 119" - } -}, -{ - "type": "node", - "id": 1912112993, - "lat": 55.0210146, - "lon": -3.4464899, - "tags": { - "amenity": "post_box", - "ref": "DG1 125" - } -}, -{ - "type": "node", - "id": 1912239079, - "lat": 51.4261606, - "lon": -2.5434664, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 107" - } -}, -{ - "type": "node", - "id": 1912239097, - "lat": 51.4296232, - "lon": -2.5475406, - "tags": { - "amenity": "post_box", - "ref": "BS4 11" - } -}, -{ - "type": "node", - "id": 1912239142, - "lat": 51.4337326, - "lon": -2.5474613, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1912279858, - "lat": 51.4063883, - "lon": -2.5585604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS14 187", - "royal_cypher": "GVIR", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1912704878, - "lat": 56.1163915, - "lon": -3.9412972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "wall", - "ref": "FK8 3D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1912762889, - "lat": 51.9131091, - "lon": -0.4305754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1912764517, - "lat": 54.9267123, - "lon": -2.4996916, - "tags": { - "amenity": "post_box", - "ref": "NE49 105" - } -}, -{ - "type": "node", - "id": 1912835099, - "lat": 52.1066296, - "lon": -4.0706630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1913086048, - "lat": 52.0645300, - "lon": 1.1253812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 8165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1913419989, - "lat": 51.4166245, - "lon": -2.6172824, - "tags": { - "amenity": "post_box", - "ref": "BS13 1080" - } -}, -{ - "type": "node", - "id": 1913419992, - "lat": 51.4308356, - "lon": -2.6049134, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1913427593, - "lat": 51.4335603, - "lon": -2.6034806, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 1030", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1913427595, - "lat": 51.4355131, - "lon": -2.5998199, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1913429901, - "lat": 51.4688481, - "lon": -2.6193726, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 257D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1914160989, - "lat": 56.0659061, - "lon": -3.4596700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914164542, - "lat": 56.0785286, - "lon": -3.4552821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY12 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914185836, - "lat": 56.0803782, - "lon": -3.4379999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 383", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914196306, - "lat": 52.6527800, - "lon": -0.4773651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914196948, - "lat": 52.6501410, - "lon": -0.4727088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE9 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1914206754, - "lat": 56.0784731, - "lon": -3.4827697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY12 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1914235114, - "lat": 56.0589659, - "lon": -3.6079748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY12 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1914241790, - "lat": 56.0614332, - "lon": -3.5980401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1914243923, - "lat": 56.0699217, - "lon": -3.4573321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914262112, - "lat": 56.0737690, - "lon": -3.4477189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914276729, - "lat": 56.0879410, - "lon": -3.4390857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 94", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1914713785, - "lat": 54.2066447, - "lon": -0.2943544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO14 182", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1914713823, - "lat": 54.2062401, - "lon": -0.2897261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO14 58", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1915045727, - "lat": 56.0720221, - "lon": -3.4610373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "information": "Second class", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 66", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915045731, - "lat": 56.0720211, - "lon": -3.4610483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "information": "First class & international", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 66", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915045733, - "lat": 56.0720140, - "lon": -3.4610627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KY12 437P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915056163, - "lat": 56.0684770, - "lon": -3.4544541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY12 5D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey", - "wikidata": "Q17816627" - } -}, -{ - "type": "node", - "id": 1915058285, - "lat": 56.0681583, - "lon": -3.4618331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915059390, - "lat": 56.0677669, - "lon": -3.4582149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 11D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915063981, - "lat": 56.0711013, - "lon": -3.4638925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915068605, - "lat": 56.0680660, - "lon": -3.4496737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 109", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915068613, - "lat": 56.0680878, - "lon": -3.4496079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KY12 434P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915110599, - "lat": 55.6867649, - "lon": -4.8630350, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KA23 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915114726, - "lat": 55.6894978, - "lon": -4.8600289, - "tags": { - "amenity": "post_box", - "ref": "KA23 184" - } -}, -{ - "type": "node", - "id": 1915115438, - "lat": 55.6911337, - "lon": -4.8638806, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA23 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1915117765, - "lat": 55.6940574, - "lon": -4.8598766, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA23 152", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915123221, - "lat": 55.6952666, - "lon": -4.8562427, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA23 33", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915125819, - "lat": 55.6944551, - "lon": -4.8567566, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KA23 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915132179, - "lat": 55.6981205, - "lon": -4.8528739, - "tags": { - "amenity": "post_box", - "ref": "KA23 98" - } -}, -{ - "type": "node", - "id": 1915134976, - "lat": 55.6918470, - "lon": -4.8494501, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KA23 146", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915138109, - "lat": 55.6914925, - "lon": -4.8509548, - "tags": { - "amenity": "post_box", - "ref": "KA23 34" - } -}, -{ - "type": "node", - "id": 1915147520, - "lat": 55.6960372, - "lon": -4.8610600, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA23 104" - } -}, -{ - "type": "node", - "id": 1915149873, - "lat": 55.6892387, - "lon": -4.8670092, - "tags": { - "amenity": "post_box", - "ref": "KA23 57" - } -}, -{ - "type": "node", - "id": 1915151660, - "lat": 55.6907279, - "lon": -4.8653623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "992291975523679", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KA23 96", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 1915155545, - "lat": 55.6994186, - "lon": -4.9037635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "877623622966042", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KA23 55", - "survey:date": "2021-02-22" - } -}, -{ - "type": "node", - "id": 1915159158, - "lat": 59.0153036, - "lon": -3.3036605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW16 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915159936, - "lat": 59.0281483, - "lon": -3.3169914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW16 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915164019, - "lat": 59.0709003, - "lon": -3.3218954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "KW16 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915165135, - "lat": 59.0494782, - "lon": -3.2810316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:type": "wall", - "ref": "KW16 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915165943, - "lat": 55.6831504, - "lon": -4.8599186, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA23 106D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1915175559, - "lat": 58.9118627, - "lon": -3.3207147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:45", - "note": "Reference different to standard postbox", - "old_ref": "K059 Garson, Hoy", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915182146, - "lat": 58.8753995, - "lon": -3.3866180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15", - "old_ref": "K064 Rackwick, Hoy", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1915182842, - "lat": 53.0153707, - "lon": -1.1870971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG6 389", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915730853, - "lat": 55.7053611, - "lon": -3.4259978, - "tags": { - "amenity": "post_box", - "ref": "EH46 25" - } -}, -{ - "type": "node", - "id": 1915758921, - "lat": 55.7023936, - "lon": -3.4302625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH46 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915816891, - "lat": 55.7152988, - "lon": -3.4179565, - "tags": { - "amenity": "post_box", - "ref": "EH46 28" - } -}, -{ - "type": "node", - "id": 1915825316, - "lat": 55.6847799, - "lon": -3.3985265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH46 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1915848830, - "lat": 55.7483781, - "lon": -3.2895619, - "tags": { - "amenity": "post_box", - "ref": "EH46 39" - } -}, -{ - "type": "node", - "id": 1915888396, - "lat": 55.6934258, - "lon": -3.3823911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH46 27", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915902991, - "lat": 55.7072101, - "lon": -3.3541629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH46 36", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1915919563, - "lat": 55.7512636, - "lon": -3.3555026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3007877506203388", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH46 22", - "survey:date": "2020-07-19" - } -}, -{ - "type": "node", - "id": 1915941315, - "lat": 55.7537414, - "lon": -3.3571079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1952209531656140", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH46 60", - "royal_cypher": "scottish_crown", - "survey:date": "2020-07-19" - } -}, -{ - "type": "node", - "id": 1915950396, - "lat": 55.7535995, - "lon": -3.3536533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "EH46 21" - } -}, -{ - "type": "node", - "id": 1915995322, - "lat": 55.7437267, - "lon": -3.3452445, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH46 52D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1916819819, - "lat": 55.7904445, - "lon": -3.3395991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH26 166", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1916835236, - "lat": 55.8284409, - "lon": -3.2726093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "EH26 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1916857542, - "lat": 55.8642387, - "lon": -3.2133045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 08:30", - "mapillary": "1033805403872183", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EH26 182", - "royal_cypher": "scottish_crown", - "survey:date": "2021-09-16" - } -}, -{ - "type": "node", - "id": 1916900583, - "lat": 55.0640595, - "lon": -3.5928441, - "tags": { - "amenity": "post_box", - "ref": "DG1 197" - } -}, -{ - "type": "node", - "id": 1916910141, - "lat": 55.0594826, - "lon": -3.5796755, - "tags": { - "amenity": "post_box", - "ref": "DG1 201" - } -}, -{ - "type": "node", - "id": 1916913939, - "lat": 55.0549169, - "lon": -3.6047649, - "tags": { - "amenity": "post_box", - "ref": "DG1 35" - } -}, -{ - "type": "node", - "id": 1916919290, - "lat": 55.0518471, - "lon": -3.5925608, - "tags": { - "amenity": "post_box", - "ref": "DG1 46" - } -}, -{ - "type": "node", - "id": 1916951940, - "lat": 55.0454244, - "lon": -3.6027207, - "tags": { - "amenity": "post_box", - "ref": "DG1 76" - } -}, -{ - "type": "node", - "id": 1916962641, - "lat": 55.0626863, - "lon": -3.5188326, - "tags": { - "amenity": "post_box", - "ref": "DG1 106" - } -}, -{ - "type": "node", - "id": 1916970042, - "lat": 55.0948726, - "lon": -3.5643338, - "tags": { - "amenity": "post_box", - "ref": "DG1 212" - } -}, -{ - "type": "node", - "id": 1916980811, - "lat": 55.0572079, - "lon": -3.5096527, - "tags": { - "amenity": "post_box", - "ref": "DG1 49" - } -}, -{ - "type": "node", - "id": 1917379474, - "lat": 55.9466919, - "lon": -3.0803489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "629987911876239", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 503", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 1917388614, - "lat": 55.9335071, - "lon": -3.1095689, - "tags": { - "amenity": "post_box", - "ref": "EH15 58" - } -}, -{ - "type": "node", - "id": 1917401930, - "lat": 55.9403442, - "lon": -3.1200544, - "tags": { - "amenity": "post_box", - "ref": "EH15 497" - } -}, -{ - "type": "node", - "id": 1917409476, - "lat": 55.9339947, - "lon": -3.1167714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 510D" - } -}, -{ - "type": "node", - "id": 1917436748, - "lat": 55.9435970, - "lon": -3.1175392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH15 508", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 1917533414, - "lat": 51.4840719, - "lon": -0.1647308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW3 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1917628312, - "lat": 55.9395934, - "lon": -3.0954571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EH15 362D" - } -}, -{ - "type": "node", - "id": 1917632176, - "lat": 55.9493926, - "lon": -3.1052747, - "tags": { - "amenity": "post_box", - "ref": "EH15 494" - } -}, -{ - "type": "node", - "id": 1917653205, - "lat": 53.9363189, - "lon": -1.1233149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO24 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1917663283, - "lat": 55.9486727, - "lon": -3.0938476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "mapillary": "1329642580900313", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 137", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 1917950952, - "lat": 51.1103157, - "lon": -1.2771718, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1917950957, - "lat": 51.1300964, - "lon": -1.2608729, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1917983198, - "lat": 51.1686122, - "lon": -3.4952498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1917994819, - "lat": 51.1789722, - "lon": -3.5068575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1917994820, - "lat": 51.1797599, - "lon": -3.5208195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1918012656, - "lat": 51.2045619, - "lon": -3.5768603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1918026527, - "lat": 51.1341414, - "lon": -3.6545537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1918614725, - "lat": 55.9327440, - "lon": -3.2706734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH11 562D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1918665295, - "lat": 52.4705722, - "lon": -1.9432009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B15 17" - } -}, -{ - "type": "node", - "id": 1918733294, - "lat": 51.2664368, - "lon": -2.1992333, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "name": "Westbury Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA13 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1918946932, - "lat": 52.1156010, - "lon": -4.0801000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1918947737, - "lat": 52.1152800, - "lon": -4.0776160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1919040648, - "lat": 55.9768016, - "lon": -3.5277644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 19D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1919114493, - "lat": 55.9792322, - "lon": -3.5090708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH49 20" - } -}, -{ - "type": "node", - "id": 1919194764, - "lat": 53.9792918, - "lon": -1.1315485, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO26 571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1919194832, - "lat": 53.9793058, - "lon": -1.1315232, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO26 2019" - } -}, -{ - "type": "node", - "id": 1919211793, - "lat": 60.1508209, - "lon": -1.1446643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 15:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ZE1 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1919808891, - "lat": 50.9094892, - "lon": 0.4965770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN33 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1919811232, - "lat": 52.3947389, - "lon": -4.0115068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 51" - } -}, -{ - "type": "node", - "id": 1920021962, - "lat": 50.8271419, - "lon": -1.1755604, - "tags": { - "amenity": "post_box", - "ref": "PO13 74" - } -}, -{ - "type": "node", - "id": 1920316421, - "lat": 50.4699357, - "lon": -3.5327478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TQ1 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1920316463, - "lat": 50.4731082, - "lon": -3.5365699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1920316508, - "lat": 50.4750862, - "lon": -3.5437065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1920490667, - "lat": 55.9193783, - "lon": -3.2909805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "203991941400081", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH11 491", - "survey:date": "2020-11-26" - } -}, -{ - "type": "node", - "id": 1920549907, - "lat": 55.9292344, - "lon": -3.2698484, - "tags": { - "amenity": "post_box", - "ref": "EH11 525" - } -}, -{ - "type": "node", - "id": 1920553339, - "lat": 55.9258300, - "lon": -3.2715401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH11 410D", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1920576210, - "lat": 55.9196010, - "lon": -3.2952230, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-11", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "EH11 461", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 1921542617, - "lat": 52.4787620, - "lon": -4.0490118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "SY24 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1921542618, - "lat": 52.5183462, - "lon": -4.0406701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 188" - } -}, -{ - "type": "node", - "id": 1921542619, - "lat": 52.5124505, - "lon": -4.0524182, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 77" - } -}, -{ - "type": "node", - "id": 1921545218, - "lat": 52.4921981, - "lon": -4.0513560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY24 153" - } -}, -{ - "type": "node", - "id": 1921552922, - "lat": 52.4856030, - "lon": -4.0508947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY24 78" - } -}, -{ - "type": "node", - "id": 1922044005, - "lat": 52.5905982, - "lon": -2.1343808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "mapillary": "317955770219888", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV1 160", - "source": "survey", - "survey:date": "2022-01-03" - } -}, -{ - "type": "node", - "id": 1922044036, - "lat": 52.5921967, - "lon": -2.1291076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "ref": "WV1 606", - "source": "survey", - "survey:date": "2012-09-18" - } -}, -{ - "type": "node", - "id": 1922088240, - "lat": 52.5956818, - "lon": -2.1436479, - "tags": { - "amenity": "post_box", - "source": "bing" - } -}, -{ - "type": "node", - "id": 1922484479, - "lat": 52.4576907, - "lon": -4.0140317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 221" - } -}, -{ - "type": "node", - "id": 1922484486, - "lat": 52.4571366, - "lon": -4.0084688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 87" - } -}, -{ - "type": "node", - "id": 1922484498, - "lat": 52.4898912, - "lon": -3.9957980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "SY24 139", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1922484510, - "lat": 52.4730987, - "lon": -4.0269546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY24 76" - } -}, -{ - "type": "node", - "id": 1922499744, - "lat": 52.4570427, - "lon": -4.0201927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY24 125" - } -}, -{ - "type": "node", - "id": 1922509047, - "lat": 52.4624743, - "lon": -4.0241770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY24 140" - } -}, -{ - "type": "node", - "id": 1922525878, - "lat": 52.4793836, - "lon": -4.0441207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 190" - } -}, -{ - "type": "node", - "id": 1922525881, - "lat": 52.4690368, - "lon": -4.0112234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY24 205" - } -}, -{ - "type": "node", - "id": 1922735292, - "lat": 51.9807776, - "lon": -2.0656661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL52 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1922735613, - "lat": 51.9889944, - "lon": -2.1343235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "post_box:type": "wall", - "ref": "GL20 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1922735655, - "lat": 51.9894226, - "lon": -2.1124783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "GL20 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1923419450, - "lat": 52.1562067, - "lon": -0.7063946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 1923420440, - "lat": 52.1552050, - "lon": -0.7139558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK46 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 1923422033, - "lat": 52.1510602, - "lon": -0.7083972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 1923425920, - "lat": 52.1610726, - "lon": -0.7107431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK46 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 1923627208, - "lat": 52.9406950, - "lon": -4.0610800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1923688397, - "lat": 52.6295461, - "lon": -1.1287089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "LE1 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1923723567, - "lat": 51.6519208, - "lon": -0.6280843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP7 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 1923738380, - "lat": 51.6102041, - "lon": -3.9972349, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1923741459, - "lat": 51.6129583, - "lon": -3.9919321, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1923961697, - "lat": 56.3600176, - "lon": -4.3103960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "post_box:type": "wall", - "ref": "FK19 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1923973117, - "lat": 56.3851713, - "lon": -4.2878389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "FK19 195" - } -}, -{ - "type": "node", - "id": 1923978501, - "lat": 56.3852648, - "lon": -4.2794393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK19 69" - } -}, -{ - "type": "node", - "id": 1924009451, - "lat": 56.2422354, - "lon": -4.2083719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "FK17 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1924017110, - "lat": 56.2449810, - "lon": -4.2176724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK17 113", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1924156028, - "lat": 51.6740964, - "lon": -1.2786039, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1016", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1924318073, - "lat": 51.9913760, - "lon": -2.1593331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "post_box:type": "pillar", - "ref": "GL20 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1924325136, - "lat": 51.9478007, - "lon": 0.9506207, - "tags": { - "amenity": "post_box", - "ref": "CO4 162" - } -}, -{ - "type": "node", - "id": 1924404942, - "lat": 51.6293875, - "lon": 0.3239392, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1924877451, - "lat": 51.8222534, - "lon": -0.3696970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1925237672, - "lat": 51.4843211, - "lon": -0.1204895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1925443959, - "lat": 53.9980155, - "lon": -0.4421278, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1925656991, - "lat": 56.1498399, - "lon": -3.8578455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK11 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1925669218, - "lat": 56.1514116, - "lon": -3.8522423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK11 316", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1925679897, - "lat": 56.1501703, - "lon": -3.8494289, - "tags": { - "amenity": "post_box", - "ref": "FK11 54" - } -}, -{ - "type": "node", - "id": 1925683341, - "lat": 56.1472030, - "lon": -3.8437212, - "tags": { - "amenity": "post_box", - "ref": "FK11 56" - } -}, -{ - "type": "node", - "id": 1925752434, - "lat": 52.0488719, - "lon": 1.1560197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1006", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1925796689, - "lat": 52.5784368, - "lon": 1.7277652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR31 3100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1925813792, - "lat": 52.4384958, - "lon": -3.9898318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SY23 74" - } -}, -{ - "type": "node", - "id": 1925924144, - "lat": 60.1370158, - "lon": -1.2756937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE2 25" - } -}, -{ - "type": "node", - "id": 1926147669, - "lat": 51.9793343, - "lon": -2.1181190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL20 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1926796261, - "lat": 56.1533712, - "lon": -3.7887279, - "tags": { - "amenity": "post_box", - "ref": "FK12 54" - } -}, -{ - "type": "node", - "id": 1926802871, - "lat": 56.1528461, - "lon": -3.7947093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "237859781664750", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK12 146", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 1926803318, - "lat": 50.8420455, - "lon": 0.4682429, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Windsor Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 19", - "ref:GB:uprn": "10015473154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Windsor Road TN3919.jpg" - } -}, -{ - "type": "node", - "id": 1926806446, - "lat": 56.1554238, - "lon": -3.7978903, - "tags": { - "amenity": "post_box", - "ref": "FK12 51" - } -}, -{ - "type": "node", - "id": 1926809272, - "lat": 56.1530779, - "lon": -3.8010380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK12 164", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1926823133, - "lat": 56.1528414, - "lon": -3.8056104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1637036253165722", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "FK12 145", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 1926826630, - "lat": 56.1519391, - "lon": -3.8139655, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "FK12 191", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1926833047, - "lat": 56.1538124, - "lon": -3.8147353, - "tags": { - "amenity": "post_box", - "ref": "FK12 53" - } -}, -{ - "type": "node", - "id": 1926881060, - "lat": 56.1546309, - "lon": -3.7374186, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "FK13 186" - } -}, -{ - "type": "node", - "id": 1926885626, - "lat": 56.1424237, - "lon": -3.7390026, - "tags": { - "amenity": "post_box", - "ref": "FK13 58" - } -}, -{ - "type": "node", - "id": 1926890700, - "lat": 56.1557213, - "lon": -3.7424943, - "tags": { - "amenity": "post_box", - "ref": "FK13 168" - } -}, -{ - "type": "node", - "id": 1926909126, - "lat": 56.1534232, - "lon": -3.7444290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "279716597393039", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK13 166", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 1926947455, - "lat": 56.1424030, - "lon": -3.7356100, - "tags": { - "amenity": "post_box", - "ref": "FK13 174" - } -}, -{ - "type": "node", - "id": 1926994875, - "lat": 56.1556428, - "lon": -3.7491830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 09:00", - "ref": "FK13 139", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1927005232, - "lat": 56.1475333, - "lon": -3.7399727, - "tags": { - "amenity": "post_box", - "ref": "FK13 137" - } -}, -{ - "type": "node", - "id": 1927148088, - "lat": 56.4640954, - "lon": -4.3226597, - "tags": { - "amenity": "post_box", - "ref": "FK21 195" - } -}, -{ - "type": "node", - "id": 1927166572, - "lat": 56.4636908, - "lon": -4.3202461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK21 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1927186467, - "lat": 53.9869011, - "lon": -1.0476795, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO32 2014" - } -}, -{ - "type": "node", - "id": 1927186813, - "lat": 53.9869277, - "lon": -1.0477179, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO32 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1927198565, - "lat": 56.2443252, - "lon": -4.2098841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 19:00", - "ref": "FK17 16" - } -}, -{ - "type": "node", - "id": 1927203316, - "lat": 56.2406754, - "lon": -4.2027416, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "FK17 120" - } -}, -{ - "type": "node", - "id": 1927213703, - "lat": 56.2415091, - "lon": -4.2177566, - "tags": { - "amenity": "post_box", - "ref": "FK17 42" - } -}, -{ - "type": "node", - "id": 1927223637, - "lat": 56.2126833, - "lon": -4.1399359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "FK17 117" - } -}, -{ - "type": "node", - "id": 1927235515, - "lat": 56.2350813, - "lon": -4.1813518, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "FK17 15" - } -}, -{ - "type": "node", - "id": 1927246497, - "lat": 56.2391486, - "lon": -4.1968509, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "FK17 1" - } -}, -{ - "type": "node", - "id": 1927258979, - "lat": 56.2448734, - "lon": -4.2250215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "412830141066495", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "FK17 17", - "survey:date": "2022-09-05" - } -}, -{ - "type": "node", - "id": 1927271708, - "lat": 56.2377673, - "lon": -4.2131184, - "tags": { - "amenity": "post_box", - "ref": "FK17 19" - } -}, -{ - "type": "node", - "id": 1927272202, - "lat": 50.7691601, - "lon": 0.2933053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 757", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1927272204, - "lat": 50.7673870, - "lon": 0.2887481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 759", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1927501271, - "lat": 53.6621716, - "lon": -1.7939260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1927668309, - "lat": 55.1529740, - "lon": -1.6887443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE61 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1927668315, - "lat": 55.1562084, - "lon": -1.6903506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 160", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1928507607, - "lat": 55.9458448, - "lon": -3.1271923, - "tags": { - "amenity": "post_box", - "ref": "EH15 634" - } -}, -{ - "type": "node", - "id": 1928509087, - "lat": 55.9500048, - "lon": -3.1190132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH15 516", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1928510089, - "lat": 55.9548739, - "lon": -3.1106696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH15 495" - } -}, -{ - "type": "node", - "id": 1928511413, - "lat": 55.9578813, - "lon": -3.1227240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH15 515" - } -}, -{ - "type": "node", - "id": 1928524808, - "lat": 55.9533567, - "lon": -3.1069943, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EH15 514", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1928529559, - "lat": 55.9516575, - "lon": -3.1026616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1797929957081075", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH15 513", - "royal_cypher": "scottish_crown", - "survey:date": "2020-07-18" - } -}, -{ - "type": "node", - "id": 1928537899, - "lat": 55.9516954, - "lon": -3.1125854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "wall", - "ref": "EH15 512", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1928879415, - "lat": 52.2682333, - "lon": 0.7701360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "wall", - "ref": "IP31 2128", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1929170519, - "lat": 56.2595141, - "lon": -2.6278605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KY10 262", - "royal_cypher": "obscured" - } -}, -{ - "type": "node", - "id": 1929196925, - "lat": 55.8898638, - "lon": -4.2103519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G21 1136" - } -}, -{ - "type": "node", - "id": 1929379150, - "lat": 53.9772925, - "lon": -1.1090424, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-25", - "note:ref": "ref definitely ends in a D", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1929439232, - "lat": 55.8910531, - "lon": -4.2041795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1929440532, - "lat": 55.8976671, - "lon": -4.2103681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G64 201" - } -}, -{ - "type": "node", - "id": 1929440628, - "lat": 55.8978007, - "lon": -4.2169733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G64 348", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1929443149, - "lat": 52.2419837, - "lon": 0.6341923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP29 2043", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1929584108, - "lat": 51.4255429, - "lon": -1.7004665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1929584225, - "lat": 51.4267638, - "lon": -1.6924709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1930169263, - "lat": 56.1666652, - "lon": -5.0815914, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA27 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1930172899, - "lat": 56.1673925, - "lon": -5.0676520, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA27 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1930392826, - "lat": 56.1738016, - "lon": -5.0830773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 09:30", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PA27 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1930524284, - "lat": 51.7376071, - "lon": -1.2521608, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX1 134", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 1930579996, - "lat": 55.8730213, - "lon": -4.2659033, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1930899137, - "lat": 50.4669347, - "lon": -3.5059878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 1930899265, - "lat": 50.4108361, - "lon": -5.0748013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR7 76D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1930994346, - "lat": 55.8508418, - "lon": -3.1363918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH24 245", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1931027572, - "lat": 55.9554956, - "lon": -2.7817127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH41 1" - } -}, -{ - "type": "node", - "id": 1931058298, - "lat": 51.4993526, - "lon": -0.1854525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "wall", - "ref": "W8 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1931256005, - "lat": 51.4967965, - "lon": -0.2051508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "953205116167401", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W14 10", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 1931256038, - "lat": 51.4974538, - "lon": -0.2032744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1931997835, - "lat": 53.9989129, - "lon": -1.1305999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO30 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1932224866, - "lat": 52.2416935, - "lon": 0.5847398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "drive_through": "no", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP29 2109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1932224956, - "lat": 52.2691780, - "lon": 0.6298101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP28 8260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1932245818, - "lat": 52.2976798, - "lon": 0.6567447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1932254540, - "lat": 54.1837525, - "lon": -6.3322628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1932443537, - "lat": 50.5215564, - "lon": -3.5995531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1932443541, - "lat": 50.5251071, - "lon": -3.6028733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1932721266, - "lat": 56.1207543, - "lon": -3.9420516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "FK8 14D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1932775746, - "lat": 53.0239235, - "lon": -2.2171673, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1932895360, - "lat": 50.8327542, - "lon": -0.2212100, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN41 670D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1933047385, - "lat": 53.9639372, - "lon": -0.9818683, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO19 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1933586009, - "lat": 51.5157083, - "lon": -0.1663231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W2 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1933844395, - "lat": 56.4189365, - "lon": -3.4002944, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 127D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 1933870091, - "lat": 51.5191935, - "lon": -0.1426040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "collection_times_checked": "2022-06-20", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W1W 38;W1W 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1933872167, - "lat": 53.3612440, - "lon": -1.5126270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 1060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1934097740, - "lat": 53.6989792, - "lon": -1.7513010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HD6 279" - } -}, -{ - "type": "node", - "id": 1934097741, - "lat": 53.7047081, - "lon": -1.7626521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HD6 283" - } -}, -{ - "type": "node", - "id": 1934097742, - "lat": 53.7097695, - "lon": -1.7254230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "WF15 149" - } -}, -{ - "type": "node", - "id": 1934097777, - "lat": 53.7162779, - "lon": -1.7185190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "WF15 148" - } -}, -{ - "type": "node", - "id": 1934457580, - "lat": 52.4955700, - "lon": -0.6870209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 50" - } -}, -{ - "type": "node", - "id": 1935303083, - "lat": 52.6883403, - "lon": -1.9979385, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1935319983, - "lat": 50.9759127, - "lon": -3.1468576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "name": "Taunton Deane Services Westbound", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 581", - "source": "survey", - "survey:date": "2012-09-20" - } -}, -{ - "type": "node", - "id": 1935554138, - "lat": 55.6098217, - "lon": -4.2813252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "KA17 50", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1935564272, - "lat": 55.6071553, - "lon": -4.2919736, - "tags": { - "amenity": "post_box", - "ref": "KA17 136" - } -}, -{ - "type": "node", - "id": 1935568994, - "lat": 55.6135431, - "lon": -4.2752929, - "tags": { - "amenity": "post_box", - "ref": "KA17 113" - } -}, -{ - "type": "node", - "id": 1935586066, - "lat": 55.6107574, - "lon": -4.2744429, - "tags": { - "amenity": "post_box", - "ref": "KA17 61" - } -}, -{ - "type": "node", - "id": 1935602871, - "lat": 55.6095162, - "lon": -4.2859027, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA17 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1935616903, - "lat": 52.5629259, - "lon": -2.1528382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "ref": "WV4 303", - "source": "survey", - "survey:date": "2012-09-27" - } -}, -{ - "type": "node", - "id": 1935616908, - "lat": 52.5633286, - "lon": -2.1601955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "WV4 321", - "source": "survey", - "survey:date": "2012-09-27" - } -}, -{ - "type": "node", - "id": 1936085640, - "lat": 51.6847568, - "lon": -4.1781360, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1936768092, - "lat": 50.9502845, - "lon": -2.6641267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA21 148D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1936808812, - "lat": 53.3128922, - "lon": 0.2808413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN12 873", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1936823481, - "lat": 53.5590439, - "lon": -0.0270067, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/hjC6pmsd/DN35-79D.jpg", - "location": "Alexandra Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1936823486, - "lat": 53.5605731, - "lon": -0.0313520, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-22", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "image": "https://i.postimg.cc/Jz9p9b2C/DN35-299.jpg", - "location": "High Street", - "note": "at the time of my survey there was no info plate on one side of the box (type_c) assuming this is DN35 125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN35 125;DN35 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1936823490, - "lat": 53.5618539, - "lon": -0.0290941, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/0N1fsZkJ/DN36-27D.jpg", - "location": "Directly outside Cleethorpes Railway Station close to the North Promenade", - "note": "No collection plate at date of survey (26/9/2012), ditto 2023-11-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1936892705, - "lat": 53.5625209, - "lon": -1.4624950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1937033226, - "lat": 60.1531366, - "lon": -1.1414760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE1 121" - } -}, -{ - "type": "node", - "id": 1937141753, - "lat": 55.6067484, - "lon": -4.3315665, - "tags": { - "amenity": "post_box", - "ref": "KA16 34" - } -}, -{ - "type": "node", - "id": 1937204887, - "lat": 51.1023707, - "lon": -1.7568852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1937591690, - "lat": 55.0796127, - "lon": -2.3258499, - "tags": { - "amenity": "post_box", - "ref": "NE48 150" - } -}, -{ - "type": "node", - "id": 1937626367, - "lat": 56.0478837, - "lon": -3.5282396, - "tags": { - "amenity": "post_box", - "ref": "KY12 103" - } -}, -{ - "type": "node", - "id": 1937629411, - "lat": 56.0579346, - "lon": -3.5686163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY12 161", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1937631183, - "lat": 56.0604893, - "lon": -3.5880997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 164", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1937637302, - "lat": 52.5703011, - "lon": 1.1285369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1858D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1937639079, - "lat": 52.5736854, - "lon": 1.1263221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR18 1857D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1937645484, - "lat": 55.6058078, - "lon": -4.3441314, - "tags": { - "amenity": "post_box", - "ref": "KA16 110" - } -}, -{ - "type": "node", - "id": 1937647305, - "lat": 55.6067759, - "lon": -4.3272952, - "tags": { - "amenity": "post_box", - "ref": "KA16 51" - } -}, -{ - "type": "node", - "id": 1937661601, - "lat": 55.6060854, - "lon": -4.3377071, - "tags": { - "amenity": "post_box", - "ref": "KA16 82" - } -}, -{ - "type": "node", - "id": 1937664247, - "lat": 55.6079777, - "lon": -4.3188216, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KA16 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1937674137, - "lat": 55.6087125, - "lon": -4.3307414, - "tags": { - "amenity": "post_box", - "ref": "KA16 166" - } -}, -{ - "type": "node", - "id": 1937701268, - "lat": 56.2295515, - "lon": -4.3619968, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "FK17 89" - } -}, -{ - "type": "node", - "id": 1937708517, - "lat": 56.2338463, - "lon": -4.4290255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "FK17 175", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1937716884, - "lat": 56.2477462, - "lon": -4.2460523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1443637176176216", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA17 40", - "survey:date": "2023-05-25" - } -}, -{ - "type": "node", - "id": 1937722099, - "lat": 56.2271792, - "lon": -4.4134085, - "tags": { - "amenity": "post_box", - "fixme": "This post box may have been removed, please confirm if it still exists on the ground?", - "ref": "FK17 121" - } -}, -{ - "type": "node", - "id": 1937846446, - "lat": 51.7884833, - "lon": -0.1731671, - "tags": { - "amenity": "post_box", - "ref": "AL7 277" - } -}, -{ - "type": "node", - "id": 1937846447, - "lat": 51.7900021, - "lon": -0.2036440, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1937846448, - "lat": 51.7903340, - "lon": -0.2058598, - "tags": { - "amenity": "post_box", - "ref": "AL7 1" - } -}, -{ - "type": "node", - "id": 1937846449, - "lat": 51.7915456, - "lon": -0.1750781, - "tags": { - "amenity": "post_box", - "ref": "AL7 251" - } -}, -{ - "type": "node", - "id": 1937846450, - "lat": 51.7916968, - "lon": -0.1806948, - "tags": { - "amenity": "post_box", - "ref": "AL7 326" - } -}, -{ - "type": "node", - "id": 1937846451, - "lat": 51.7935937, - "lon": -0.1793626, - "tags": { - "amenity": "post_box", - "ref": "AL7 261" - } -}, -{ - "type": "node", - "id": 1937846452, - "lat": 51.7936699, - "lon": -0.1945354, - "tags": { - "amenity": "post_box", - "ref": "AL7 237" - } -}, -{ - "type": "node", - "id": 1937846454, - "lat": 51.7945949, - "lon": -0.2026712, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1937846455, - "lat": 51.7986160, - "lon": -0.1872766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL7 238", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1937846456, - "lat": 51.8000761, - "lon": -0.1933634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "post-box has no plate, so ref taken from Royal Mail FOI response", - "post_box:type": "pillar", - "ref": "AL7 236" - } -}, -{ - "type": "node", - "id": 1937907369, - "lat": 51.3950014, - "lon": -0.2441924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1938116821, - "lat": 53.5601689, - "lon": -2.8935130, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1938327170, - "lat": 55.8928685, - "lon": -4.1390894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "name": "Franked mail", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1938327698, - "lat": 55.8928817, - "lon": -4.1390423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "ref": "G33 463" - } -}, -{ - "type": "node", - "id": 1938328505, - "lat": 55.8957385, - "lon": -4.1371745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 1258" - } -}, -{ - "type": "node", - "id": 1938534238, - "lat": 56.1511137, - "lon": -3.9310464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "FK9 82", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "FK9 82D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1938693224, - "lat": 53.8465365, - "lon": -1.6337709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1939492675, - "lat": 55.8877439, - "lon": -4.1381053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 1115" - } -}, -{ - "type": "node", - "id": 1939510174, - "lat": 51.7853563, - "lon": -0.1805298, - "tags": { - "amenity": "post_box", - "ref": "AL7 282" - } -}, -{ - "type": "node", - "id": 1939510180, - "lat": 51.7956767, - "lon": -0.1687748, - "tags": { - "amenity": "post_box", - "ref": "AL7 190" - } -}, -{ - "type": "node", - "id": 1939510195, - "lat": 51.8041153, - "lon": -0.1771579, - "tags": { - "amenity": "post_box", - "ref": "AL7 309" - } -}, -{ - "type": "node", - "id": 1939510198, - "lat": 51.8041487, - "lon": -0.1742620, - "tags": { - "amenity": "post_box", - "ref": "AL7 312" - } -}, -{ - "type": "node", - "id": 1939906004, - "lat": 51.7836362, - "lon": -0.1904520, - "tags": { - "amenity": "post_box", - "ref": "AL7 265" - } -}, -{ - "type": "node", - "id": 1939906006, - "lat": 51.7966473, - "lon": -0.1982587, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AL7 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1939961252, - "lat": 55.8890438, - "lon": -4.1309508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 778" - } -}, -{ - "type": "node", - "id": 1939961458, - "lat": 55.8975227, - "lon": -4.1147349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "ref": "G69 1504" - } -}, -{ - "type": "node", - "id": 1940001500, - "lat": 55.8858334, - "lon": -4.1591678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "ref": "G33 781" - } -}, -{ - "type": "node", - "id": 1940001512, - "lat": 55.8874917, - "lon": -4.1544563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "ref": "G33 785" - } -}, -{ - "type": "node", - "id": 1940001538, - "lat": 55.8915397, - "lon": -4.1447987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "ref": "G33 804" - } -}, -{ - "type": "node", - "id": 1940001590, - "lat": 55.8932364, - "lon": -4.1491945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 159" - } -}, -{ - "type": "node", - "id": 1940354148, - "lat": 55.8728633, - "lon": -4.1650346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "G33 1239" - } -}, -{ - "type": "node", - "id": 1940354309, - "lat": 55.8749779, - "lon": -4.1580069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G33 1471" - } -}, -{ - "type": "node", - "id": 1940367264, - "lat": 57.7202118, - "lon": -3.2811413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV31 107D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1941096690, - "lat": 50.9854226, - "lon": -1.7231388, - "tags": { - "amenity": "post_box", - "ref": "SP5 140" - } -}, -{ - "type": "node", - "id": 1941132871, - "lat": 52.1476687, - "lon": -2.4423654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "name": "Acton Green Postbox", - "post_box:type": "wall", - "ref": "WR6 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1941186973, - "lat": 50.8353961, - "lon": -0.2757138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1941187029, - "lat": 50.8613644, - "lon": -0.3080464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1413", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1941187051, - "lat": 50.8805032, - "lon": -0.3005890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN44 1545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1941230985, - "lat": 51.5101256, - "lon": -0.2655427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1941832588, - "lat": 54.6086433, - "lon": -3.1417595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1941833640, - "lat": 54.6831319, - "lon": -3.2194363, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA12 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1941968304, - "lat": 51.5086490, - "lon": -2.5173133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "513566940700523", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS16 655", - "survey:date": "2022-07-03" - } -}, -{ - "type": "node", - "id": 1942097318, - "lat": 57.1460836, - "lon": -2.0999480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB11 166", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing; survey" - } -}, -{ - "type": "node", - "id": 1942462013, - "lat": 54.9512360, - "lon": -2.0738345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "NE46 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1942462017, - "lat": 54.9647346, - "lon": -2.0927219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE46 104", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1942683437, - "lat": 52.6057392, - "lon": -4.0560221, - "tags": { - "amenity": "post_box", - "ref": "LL36 94", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1942728996, - "lat": 54.5135926, - "lon": -3.1673264, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA12 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1942764995, - "lat": 51.0794031, - "lon": 0.9318593, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN25 158", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN25 158D", - "royal_cypher": "yes", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 1942765872, - "lat": 51.5355545, - "lon": 0.1019333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IG11 31D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1942769427, - "lat": 51.5357071, - "lon": 0.0947265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "information sheet gone due to vandalism", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1942775081, - "lat": 51.0221402, - "lon": 0.8367579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN29 71" - } -}, -{ - "type": "node", - "id": 1942853790, - "lat": 50.7512780, - "lon": -3.2693760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "mapillary": "2244399669046619", - "operator": "Royal Mail", - "post_box:type": "pillar", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 1942854826, - "lat": 50.7522600, - "lon": -3.2726541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX11 51D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1943173065, - "lat": 54.5975838, - "lon": -3.1275632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "colour": "red", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1943358264, - "lat": 55.8783415, - "lon": -4.1927265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "G33 1063" - } -}, -{ - "type": "node", - "id": 1943449685, - "lat": 50.8794474, - "lon": -0.2968747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN44 1546D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1944831661, - "lat": 50.7215891, - "lon": -1.9425772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 31D", - "ref:GB:uprn": "10015429485", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1944947875, - "lat": 51.9787425, - "lon": -1.8756345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "GL54 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1944947973, - "lat": 52.0016669, - "lon": -1.8603778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "WR12 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1945945186, - "lat": 52.2608537, - "lon": -1.6091875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1946552067, - "lat": 55.6958162, - "lon": -4.8534453, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA23 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1946752312, - "lat": 51.9947467, - "lon": -1.8240951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "wall", - "ref": "GL56 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1947408893, - "lat": 50.8378438, - "lon": -0.7815977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 371", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1947586625, - "lat": 53.3924101, - "lon": -1.4998026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S6 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1948321393, - "lat": 53.3100597, - "lon": -2.2554506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "ref": "SK9 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1948386198, - "lat": 54.2378878, - "lon": -0.7598904, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO18 2011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1948386200, - "lat": 54.2379253, - "lon": -0.7598849, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO18 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1948704037, - "lat": 50.9713371, - "lon": -0.2141735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1948974920, - "lat": 51.4291999, - "lon": -0.1302261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1948984933, - "lat": 55.4126506, - "lon": -1.6965089, - "tags": { - "amenity": "post_box", - "ref": "NE66 187" - } -}, -{ - "type": "node", - "id": 1949314183, - "lat": 51.9544766, - "lon": 1.3408793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1330", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1949323716, - "lat": 51.8320030, - "lon": -0.1769366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL6 156" - } -}, -{ - "type": "node", - "id": 1949323718, - "lat": 51.8330225, - "lon": -0.1681950, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL6 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1949373233, - "lat": 52.1736726, - "lon": 0.3946327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1949704675, - "lat": 51.4674282, - "lon": -2.6180646, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS8 259", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1949906317, - "lat": 52.3004875, - "lon": -1.5753122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1950897793, - "lat": 51.5148034, - "lon": -0.1140344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-23", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2A 56D;WC2A 256D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box WC2A 56D and WC2A 256D" - } -}, -{ - "type": "node", - "id": 1950920414, - "lat": 51.5184945, - "lon": -0.1077707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1N 140;EC1N 1401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1951419212, - "lat": 55.8627050, - "lon": -4.1611297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G33 1195" - } -}, -{ - "type": "node", - "id": 1951419420, - "lat": 55.8660628, - "lon": -4.1590514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G33 1194", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1951419446, - "lat": 55.8663154, - "lon": -4.1634904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G33 1263" - } -}, -{ - "type": "node", - "id": 1951419503, - "lat": 55.8669876, - "lon": -4.1768616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 642" - } -}, -{ - "type": "node", - "id": 1951419796, - "lat": 55.8702072, - "lon": -4.1731108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "G33 1209" - } -}, -{ - "type": "node", - "id": 1951471237, - "lat": 51.5876972, - "lon": -0.0573776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N17 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1951494907, - "lat": 51.0864188, - "lon": -1.2414879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1951584708, - "lat": 51.5121042, - "lon": -0.3405871, - "tags": { - "amenity": "post_box", - "note": "Collection once a day", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "W7 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1952133798, - "lat": 50.8603657, - "lon": 0.4618708, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Mayo Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Grey pouch box attached to pedestal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 65", - "ref:GB:uprn": "10015472755", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Mayo Lane TN3965.jpg" - } -}, -{ - "type": "node", - "id": 1952264095, - "lat": 53.5412943, - "lon": -1.0590649, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1955143922, - "lat": 51.6109194, - "lon": -0.7013406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "HP10 139" - } -}, -{ - "type": "node", - "id": 1955332949, - "lat": 54.5809195, - "lon": -3.1821167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA12 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1955815489, - "lat": 51.9699577, - "lon": -1.9292322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:type": "wall", - "ref": "GL54 111", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1956029189, - "lat": 53.9693295, - "lon": -1.1491872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO26 591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1956029190, - "lat": 53.9693280, - "lon": -1.1492461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "description": "Franked mail only", - "post_box:type": "meter", - "ref": "YO26 2023", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 1956304077, - "lat": 50.7623282, - "lon": -0.8593865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1956779493, - "lat": 53.4827660, - "lon": -2.3370999, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1956919238, - "lat": 54.8412813, - "lon": -1.3343303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1957238470, - "lat": 55.9067240, - "lon": -2.8958464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH33 181" - } -}, -{ - "type": "node", - "id": 1957261793, - "lat": 54.9815510, - "lon": -1.5978945, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 159", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1957342452, - "lat": 55.7786660, - "lon": -2.3455563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD11 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1957345085, - "lat": 52.3943715, - "lon": -1.6522899, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "CV7 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1957605083, - "lat": 52.6043342, - "lon": -2.0594562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV11 420", - "source": "survey", - "survey:date": "2012-10-03" - } -}, -{ - "type": "node", - "id": 1957605088, - "lat": 52.5738550, - "lon": -2.1779240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "ref": "WV3 419", - "source": "survey", - "survey:date": "2012-10-03" - } -}, -{ - "type": "node", - "id": 1958808290, - "lat": 54.8374485, - "lon": -1.3351013, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1959808597, - "lat": 53.9937890, - "lon": -1.0043557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO32 523", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1960266270, - "lat": 52.9744857, - "lon": -3.2685534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL21 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1960266375, - "lat": 52.9783830, - "lon": -3.2658986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL21 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 1960318047, - "lat": 57.1198411, - "lon": -2.1786880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1960335369, - "lat": 53.0863908, - "lon": -2.9637451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1960335371, - "lat": 53.0876151, - "lon": -2.9762227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1960757008, - "lat": 52.5743034, - "lon": -1.8310957, - "tags": { - "amenity": "post_box", - "postal_code": "B74", - "ref": "B74 292", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1961588879, - "lat": 50.8617303, - "lon": -0.6580986, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN18 1336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1961939128, - "lat": 52.0619901, - "lon": -1.3338289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "OX16 1012", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q26299068" - } -}, -{ - "type": "node", - "id": 1962459046, - "lat": 50.5576832, - "lon": -4.0534037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "PL20 708", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1963148698, - "lat": 51.3109877, - "lon": -0.5675850, - "tags": { - "amenity": "post_box", - "check_date": "2019-04-23", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1963178883, - "lat": 51.0801498, - "lon": 0.6905524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1963416455, - "lat": 51.3134061, - "lon": -0.5630906, - "tags": { - "amenity": "post_box", - "check_date": "2019-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 73D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1963480610, - "lat": 54.7856598, - "lon": -1.3468933, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SR8 207", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1963480612, - "lat": 54.7881112, - "lon": -1.3246573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SR8 124", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1963565386, - "lat": 54.8704061, - "lon": -1.6418949, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DH9 378", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1963681062, - "lat": 54.8354782, - "lon": -1.6321435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH7 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1963681082, - "lat": 54.8441424, - "lon": -1.6555313, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH7 2" - } -}, -{ - "type": "node", - "id": 1963681233, - "lat": 54.8759323, - "lon": -1.6485836, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DH9 456D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1964062730, - "lat": 53.9315181, - "lon": -1.6224819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS21 545" - } -}, -{ - "type": "node", - "id": 1964063142, - "lat": 53.9187911, - "lon": -1.6477588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 548" - } -}, -{ - "type": "node", - "id": 1964163860, - "lat": 52.5122177, - "lon": 0.6534304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP26 3220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1964665023, - "lat": 51.3685108, - "lon": 0.4994162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 28" - } -}, -{ - "type": "node", - "id": 1965323616, - "lat": 51.5643877, - "lon": -1.7331280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 345" - } -}, -{ - "type": "node", - "id": 1965324521, - "lat": 51.5675823, - "lon": -1.7284467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 346" - } -}, -{ - "type": "node", - "id": 1965324705, - "lat": 51.5691993, - "lon": -1.7332499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 347" - } -}, -{ - "type": "node", - "id": 1965372873, - "lat": 50.7981461, - "lon": -1.4215241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1965450076, - "lat": 50.7749978, - "lon": -1.4823029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO41 96" - } -}, -{ - "type": "node", - "id": 1965450146, - "lat": 50.7856348, - "lon": -1.6010792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 73" - } -}, -{ - "type": "node", - "id": 1965450156, - "lat": 50.7842460, - "lon": -1.5495701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1965450217, - "lat": 50.7832268, - "lon": -1.5587003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 4" - } -}, -{ - "type": "node", - "id": 1965450221, - "lat": 50.7671220, - "lon": -1.5032510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 7" - } -}, -{ - "type": "node", - "id": 1965450224, - "lat": 50.7811760, - "lon": -1.4249661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1965450276, - "lat": 50.7892771, - "lon": -1.6117276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 154" - } -}, -{ - "type": "node", - "id": 1965732604, - "lat": 50.9095526, - "lon": -1.4791450, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1965732631, - "lat": 50.9273835, - "lon": -1.5004471, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1965732636, - "lat": 50.9220848, - "lon": -1.4940742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO40 372", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1965768848, - "lat": 53.5986549, - "lon": -2.1615239, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1965769682, - "lat": 53.5941405, - "lon": -2.1568139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1965770255, - "lat": 53.5966715, - "lon": -2.1471687, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1965771255, - "lat": 53.6010392, - "lon": -2.1456184, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1965773912, - "lat": 53.6050436, - "lon": -2.1402593, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1965802687, - "lat": 53.5794639, - "lon": -2.0999869, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1965802949, - "lat": 53.5841454, - "lon": -2.1129598, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1965836780, - "lat": 50.8704072, - "lon": -1.5677545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1965836785, - "lat": 50.8741293, - "lon": -1.5667111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1965836788, - "lat": 50.9142439, - "lon": -1.5184045, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 719D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1965836793, - "lat": 50.9213358, - "lon": -1.5038696, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1965836813, - "lat": 50.8659959, - "lon": -1.5503818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1965905899, - "lat": 52.0632141, - "lon": 0.5394615, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1965905900, - "lat": 52.0628381, - "lon": 0.5311950, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1967270490, - "lat": 53.2208573, - "lon": -2.5155947, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CW9 120" - } -}, -{ - "type": "node", - "id": 1967347799, - "lat": 50.8532508, - "lon": -1.3994604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 09:00", - "ref": "SO45 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1967347813, - "lat": 50.8671744, - "lon": -1.3993316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "wall", - "ref": "SO45 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1967347839, - "lat": 50.8492358, - "lon": -1.3952600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "SO45 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1967942878, - "lat": 50.8925082, - "lon": 0.6791546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1968363926, - "lat": 52.2347761, - "lon": -0.7142958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1968800862, - "lat": 54.9691734, - "lon": -1.8682430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE42 382D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1969035850, - "lat": 50.8685847, - "lon": -1.4052468, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SO45 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1969036007, - "lat": 50.8653464, - "lon": -1.4048820, - "tags": { - "amenity": "post_box", - "ref": "SO45 609D" - } -}, -{ - "type": "node", - "id": 1970791974, - "lat": 51.9216247, - "lon": -1.8647770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL54 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1972023763, - "lat": 55.9406464, - "lon": -3.2837782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH12 312D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1972444196, - "lat": 53.1058681, - "lon": -0.1739991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45" - } -}, -{ - "type": "node", - "id": 1972650331, - "lat": 51.5282538, - "lon": -0.0916241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "each aperture has it's own ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1V 139;EC1V 1391", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1973260531, - "lat": 55.8922325, - "lon": -3.4811752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH53 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1973748320, - "lat": 50.7420501, - "lon": -3.5011784, - "tags": { - "amenity": "post_box", - "ref": "EX4 557" - } -}, -{ - "type": "node", - "id": 1973987175, - "lat": 53.4920191, - "lon": -2.2974273, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1974288344, - "lat": 53.8830476, - "lon": -1.4461255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 104" - } -}, -{ - "type": "node", - "id": 1974470652, - "lat": 51.1611880, - "lon": -3.2102511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2662861227337539", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA5 178D", - "royal_cypher": "EIIR", - "survey:date": "2020-07-31" - } -}, -{ - "type": "node", - "id": 1974471097, - "lat": 51.1654500, - "lon": -3.2060721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1975093313, - "lat": 53.6521272, - "lon": -0.6127365, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1975594650, - "lat": 55.7767304, - "lon": -2.3403445, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1975756077, - "lat": 55.9034556, - "lon": -4.4013913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G81 1433", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1975821879, - "lat": 51.4588289, - "lon": -2.6151209, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 423D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1975865558, - "lat": 55.9292888, - "lon": -4.3979244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 1975870378, - "lat": 50.8621059, - "lon": -1.3290763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 240", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1976788290, - "lat": 51.8870280, - "lon": -1.7632178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "wall", - "ref": "GL54 230", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1976788291, - "lat": 51.9066799, - "lon": -1.7761098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL54 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1976788294, - "lat": 51.9093635, - "lon": -1.8371363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL54 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1976788300, - "lat": 51.9098077, - "lon": -1.8290401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "GL54 211", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1976788305, - "lat": 51.9160114, - "lon": -1.7802739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "GL54 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1976788314, - "lat": 51.9184272, - "lon": -1.8564082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1976788318, - "lat": 51.9471965, - "lon": -1.9454504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "wall", - "ref": "GL54 52", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 1976788324, - "lat": 51.9984772, - "lon": -2.0178928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "GL20 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977058715, - "lat": 50.8757799, - "lon": -1.4669502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977058726, - "lat": 50.8708342, - "lon": -1.4582947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977058804, - "lat": 50.8813580, - "lon": -1.4899072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977058842, - "lat": 50.8983454, - "lon": -1.5396515, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 479D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977160746, - "lat": 50.9144624, - "lon": -1.5656448, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977160765, - "lat": 50.9089796, - "lon": -1.5542883, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977207548, - "lat": 50.8224860, - "lon": -0.1415608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "BN1 371P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1977725293, - "lat": 50.7577280, - "lon": -1.5439496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO41 174;SO41 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977725303, - "lat": 50.7585203, - "lon": -1.5363859, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977725306, - "lat": 50.7607967, - "lon": -1.5371732, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO41 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977725366, - "lat": 50.7521945, - "lon": -1.5522082, - "tags": { - "amenity": "post_box", - "mapillary": "486620122777098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 42", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1977736596, - "lat": 50.7538015, - "lon": -1.5784643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 167" - } -}, -{ - "type": "node", - "id": 1977784353, - "lat": 50.7575753, - "lon": -1.6389159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH25 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977784500, - "lat": 50.7471916, - "lon": -1.5898422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 103" - } -}, -{ - "type": "node", - "id": 1977784509, - "lat": 50.7472917, - "lon": -1.6521526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 4" - } -}, -{ - "type": "node", - "id": 1977784540, - "lat": 50.7524978, - "lon": -1.6546491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "covered": "no", - "mapillary": "1129992387809045", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH25 3", - "survey:date": "2023-10-19" - } -}, -{ - "type": "node", - "id": 1977784591, - "lat": 50.7452262, - "lon": -1.5952590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 79" - } -}, -{ - "type": "node", - "id": 1977784602, - "lat": 50.7561432, - "lon": -1.6454015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 199" - } -}, -{ - "type": "node", - "id": 1977784616, - "lat": 50.7604309, - "lon": -1.6214601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO41 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977820546, - "lat": 50.7465755, - "lon": -1.6597782, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 185" - } -}, -{ - "type": "node", - "id": 1977820624, - "lat": 50.7472493, - "lon": -1.6650058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH25 5" - } -}, -{ - "type": "node", - "id": 1977919733, - "lat": 52.1170262, - "lon": -3.0317359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "769092933997145", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-10-15" - } -}, -{ - "type": "node", - "id": 1977973670, - "lat": 50.7591719, - "lon": -1.6686804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH25 192", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1977973710, - "lat": 50.7739005, - "lon": -1.6603253, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH25 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1977973796, - "lat": 50.7505603, - "lon": -1.6599096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 182" - } -}, -{ - "type": "node", - "id": 1977973833, - "lat": 50.7539322, - "lon": -1.6555859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH25 121" - } -}, -{ - "type": "node", - "id": 1977973848, - "lat": 50.7586884, - "lon": -1.6621707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 132" - } -}, -{ - "type": "node", - "id": 1977974008, - "lat": 50.7551230, - "lon": -1.6562155, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH25 122" - } -}, -{ - "type": "node", - "id": 1978008821, - "lat": 50.7791426, - "lon": 0.1232636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1072D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1978060847, - "lat": 50.7794416, - "lon": -1.6592417, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 79" - } -}, -{ - "type": "node", - "id": 1978060848, - "lat": 50.7839849, - "lon": -1.6534133, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH25 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1978060906, - "lat": 50.8325905, - "lon": -1.4677172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 136" - } -}, -{ - "type": "node", - "id": 1978119369, - "lat": 50.7173729, - "lon": -3.4924662, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1978141419, - "lat": 52.2271058, - "lon": -2.7488743, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1978150688, - "lat": 51.4777052, - "lon": -2.8015453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "BS20 1116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1978484001, - "lat": 53.9717729, - "lon": -1.0881722, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-11", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO30 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1978723881, - "lat": 50.8451496, - "lon": -1.0853964, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO6 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1979134935, - "lat": 53.5477410, - "lon": -2.5086059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BL5 275" - } -}, -{ - "type": "node", - "id": 1979441476, - "lat": 51.3877400, - "lon": -1.3344798, - "tags": { - "amenity": "post_box", - "mapillary": "249400656976711", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2019-07-01" - } -}, -{ - "type": "node", - "id": 1979474334, - "lat": 52.5777516, - "lon": -1.8041668, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "postal_code": "B75", - "ref": "B75 978", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey and BING" - } -}, -{ - "type": "node", - "id": 1979627079, - "lat": 51.1193206, - "lon": -0.1673575, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is easy to miss. It is in a wall at the eastern side of F&J Supplies facing east, and this postbox is not visible if travelling west along this road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH10 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing;gps" - } -}, -{ - "type": "node", - "id": 1981034757, - "lat": 54.4605926, - "lon": -5.8310296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1981034759, - "lat": 54.4601467, - "lon": -5.8355518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT24 21" - } -}, -{ - "type": "node", - "id": 1981174464, - "lat": 51.0856107, - "lon": 0.6852312, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1981992033, - "lat": 51.5006256, - "lon": -2.5927528, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS10 661D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1982572624, - "lat": 51.0715680, - "lon": 0.6938091, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN30 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-05-29" - } -}, -{ - "type": "node", - "id": 1982593236, - "lat": 51.0735249, - "lon": 0.6914900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1982613294, - "lat": 51.0681420, - "lon": 0.6866630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "note": "As of Monday 22nd May 2023 tbe last collection will be made no earlier than 09:00 Mo-Fr and 07:00 on Sa.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN30 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1982635412, - "lat": 51.0402296, - "lon": 0.6991868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN30 259", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1982635581, - "lat": 51.0584576, - "lon": 0.6926378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "ref": "TN30 254", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1982765012, - "lat": 52.9826839, - "lon": -1.4941082, - "tags": { - "amenity": "post_box", - "ref": "DE56 700" - } -}, -{ - "type": "node", - "id": 1982837481, - "lat": 51.6119775, - "lon": -0.0738405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N18 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1983284413, - "lat": 51.3776450, - "lon": -0.4659481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT13 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1983333750, - "lat": 51.1137838, - "lon": -0.1761690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1983501537, - "lat": 51.1075802, - "lon": -0.1686363, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984185650, - "lat": 52.1900961, - "lon": -2.4503267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR6 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984352019, - "lat": 54.8443220, - "lon": -1.3378661, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1984415512, - "lat": 50.3972180, - "lon": -3.5008761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "note": "Replaces wall box with same reference at 50.396687, -3.502288 which is now blocked, out-of-use.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TQ5 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1984556003, - "lat": 51.1265262, - "lon": 0.6471190, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1984556046, - "lat": 51.1388760, - "lon": 0.6408376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN27 195D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-06" - } -}, -{ - "type": "node", - "id": 1984556055, - "lat": 51.1554833, - "lon": 0.6353088, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN27 58D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-06" - } -}, -{ - "type": "node", - "id": 1984611769, - "lat": 51.0603116, - "lon": 0.6538312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN17 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984614313, - "lat": 51.0375775, - "lon": 0.6141783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1984646099, - "lat": 51.0155305, - "lon": 0.6145180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN18 273" - } -}, -{ - "type": "node", - "id": 1984669004, - "lat": 51.1124523, - "lon": -0.1871469, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1984669010, - "lat": 51.1124535, - "lon": -0.1871202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH10 112P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1984669021, - "lat": 51.1134150, - "lon": -0.1904483, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1984669022, - "lat": 51.1134249, - "lon": -0.1904239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "Possibly the moved RH10 44 box from the High Street?", - "opening_hours": "Mo-Fr 12:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH11 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984669025, - "lat": 51.1167270, - "lon": -0.1878226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RH10 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984687672, - "lat": 51.0068485, - "lon": 0.6137762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1984698834, - "lat": 51.0224999, - "lon": 0.5859122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN18 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984698850, - "lat": 51.0246762, - "lon": 0.5721923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN18 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1984708918, - "lat": 52.4622845, - "lon": -2.6707010, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1985072243, - "lat": 50.9973363, - "lon": 0.3840891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN19 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1985711469, - "lat": 55.5251845, - "lon": -2.5175882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD8 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1985834618, - "lat": 53.6765600, - "lon": -1.7337123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1986195892, - "lat": 50.9302691, - "lon": -0.4343929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1986197840, - "lat": 51.4786066, - "lon": -2.6286946, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS9 581", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1986230378, - "lat": 51.4751316, - "lon": -2.6388907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "BS9 525", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1986253801, - "lat": 51.2530832, - "lon": -1.0938028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "RG21", - "ref": "RG21 293" - } -}, -{ - "type": "node", - "id": 1986278383, - "lat": 51.4582005, - "lon": -2.6120978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS8 424D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1986380837, - "lat": 52.7279849, - "lon": -2.4751231, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1987197243, - "lat": 51.0550600, - "lon": 0.6179885, - "tags": { - "amenity": "post_box", - "colour": "red", - "ref": "TN17 209", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 1987197321, - "lat": 51.0689596, - "lon": 0.6153367, - "tags": { - "amenity": "post_box", - "colour": "red", - "ref": "TN17 178", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1987198034, - "lat": 51.0992677, - "lon": 0.6269223, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1987261791, - "lat": 51.5618092, - "lon": -1.7270803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 357" - } -}, -{ - "type": "node", - "id": 1987262640, - "lat": 51.5656097, - "lon": -1.7254378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 369" - } -}, -{ - "type": "node", - "id": 1987279806, - "lat": 50.3440278, - "lon": -4.1716076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:15; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "PL10 830", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 1987333964, - "lat": 52.3563901, - "lon": -0.8947181, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1987362671, - "lat": 51.1709948, - "lon": 0.7447747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN27 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1987378034, - "lat": 54.2825242, - "lon": -2.9728193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "324998189011325", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LA12 3", - "survey:date": "2020-08-06" - } -}, -{ - "type": "node", - "id": 1987384352, - "lat": 51.1937824, - "lon": 0.7038053, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1987431047, - "lat": 51.1779874, - "lon": 0.7271837, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1987544939, - "lat": 50.9142667, - "lon": -0.4385129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1987722202, - "lat": 52.7205654, - "lon": -2.4390852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 1988118683, - "lat": 50.8084996, - "lon": -1.3755754, - "tags": { - "amenity": "post_box", - "ref": "SO45 245D" - } -}, -{ - "type": "node", - "id": 1988156612, - "lat": 50.8213457, - "lon": -1.3688389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO45 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1988156685, - "lat": 50.8268067, - "lon": -1.3510129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1988296153, - "lat": 50.7358268, - "lon": -1.7640800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 16", - "ref:GB:uprn": "10015330013", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1988489409, - "lat": 50.7285448, - "lon": -1.7528220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 36", - "ref:GB:uprn": "10015303908" - } -}, -{ - "type": "node", - "id": 1988640562, - "lat": 50.7314480, - "lon": -1.7329898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 71", - "ref:GB:uprn": "10015292852" - } -}, -{ - "type": "node", - "id": 1988640600, - "lat": 50.7279193, - "lon": -1.7418841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "BH23 5D", - "ref:GB:uprn": "10015329484", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 1988790443, - "lat": 50.7350775, - "lon": -1.7340519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 35", - "ref:GB:uprn": "10015473307" - } -}, -{ - "type": "node", - "id": 1988790704, - "lat": 50.7336125, - "lon": -1.7424391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 102", - "ref:GB:uprn": "10015426044" - } -}, -{ - "type": "node", - "id": 1988790974, - "lat": 50.7363660, - "lon": -1.7569781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 10", - "ref:GB:uprn": "10015277579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1988957329, - "lat": 50.3835842, - "lon": -3.5243943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "342636214225959", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2021-08-24", - "survey:date": "2021-08-24" - } -}, -{ - "type": "node", - "id": 1988957360, - "lat": 50.3848896, - "lon": -3.5308303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1988957430, - "lat": 50.3881381, - "lon": -3.5231191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 363D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1988957431, - "lat": 50.3905076, - "lon": -3.5059083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 244D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-05-14" - } -}, -{ - "type": "node", - "id": 1988957439, - "lat": 50.3930814, - "lon": -3.5207635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 62D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 1988963055, - "lat": 50.3901037, - "lon": -3.5204571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Box moved recently (2019-2020) 50m to south east to this location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "TQ5 399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1989002932, - "lat": 50.7489363, - "lon": -1.7216467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 93", - "ref:GB:uprn": "10015386459" - } -}, -{ - "type": "node", - "id": 1989002965, - "lat": 50.7438736, - "lon": -1.7184468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 72", - "ref:GB:uprn": "10015357350" - } -}, -{ - "type": "node", - "id": 1989003053, - "lat": 50.7396278, - "lon": -1.7259104, - "tags": { - "amenity": "post_box", - "mapillary": "103311268846190", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 87", - "ref:GB:uprn": "10015353087", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1989003149, - "lat": 50.7401615, - "lon": -1.7164888, - "tags": { - "amenity": "post_box", - "mapillary": "441208727440984", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH23 34", - "ref:GB:uprn": "10015363131", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 1989025494, - "lat": 50.7492503, - "lon": -1.7165076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 85", - "ref:GB:uprn": "10015453457" - } -}, -{ - "type": "node", - "id": 1989025583, - "lat": 50.7418419, - "lon": -1.7114034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 22", - "ref:GB:uprn": "10015363966" - } -}, -{ - "type": "node", - "id": 1989025761, - "lat": 50.7460348, - "lon": -1.7114056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection plate incorrectly shows BH21 67", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH23 67D", - "ref:GB:uprn": "10015356517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1989025769, - "lat": 50.7490212, - "lon": -1.7120471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 9", - "ref:GB:uprn": "10015427013" - } -}, -{ - "type": "node", - "id": 1989094107, - "lat": 52.7245830, - "lon": -2.3940978, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1989108022, - "lat": 52.7239136, - "lon": -2.3493963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "914768129889563", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 1989511279, - "lat": 50.7388240, - "lon": -1.6948458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 88", - "ref:GB:uprn": "10015432941" - } -}, -{ - "type": "node", - "id": 1989511305, - "lat": 50.7438210, - "lon": -1.6905674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 18", - "ref:GB:uprn": "10015396351" - } -}, -{ - "type": "node", - "id": 1989634415, - "lat": 50.7439381, - "lon": -1.6517541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 195" - } -}, -{ - "type": "node", - "id": 1989634449, - "lat": 50.7380805, - "lon": -1.6760301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 119" - } -}, -{ - "type": "node", - "id": 1989634659, - "lat": 50.7387255, - "lon": -1.6531267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH25 94" - } -}, -{ - "type": "node", - "id": 1989692612, - "lat": 50.7807738, - "lon": -1.6039861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 33" - } -}, -{ - "type": "node", - "id": 1990271827, - "lat": 51.1177123, - "lon": -0.1645153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1990321938, - "lat": 51.4671086, - "lon": -2.5647687, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS5 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1990900488, - "lat": 52.4501128, - "lon": -0.1077063, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 1990916860, - "lat": 52.0217156, - "lon": -1.3741362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "ref": "OX15 1153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991087881, - "lat": 51.5482139, - "lon": -0.0889789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "N1 86;N1 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1991099037, - "lat": 55.7796499, - "lon": -4.3382355, - "tags": { - "amenity": "post_box", - "name": "G776LL" - } -}, -{ - "type": "node", - "id": 1991104805, - "lat": 50.7236111, - "lon": -2.0154808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 8D", - "ref:GB:uprn": "10015361790", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1991221597, - "lat": 57.8580276, - "lon": -5.4924359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "924403068616796", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV22 201", - "source": "survey", - "survey:date": "2023-08-11" - } -}, -{ - "type": "node", - "id": 1991221598, - "lat": 57.8943626, - "lon": -5.3879171, - "tags": { - "amenity": "post_box", - "ref": "IV22 206", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221599, - "lat": 57.8774241, - "lon": -5.3472168, - "tags": { - "amenity": "post_box", - "ref": "IV22 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221600, - "lat": 57.8660567, - "lon": -5.3314775, - "tags": { - "amenity": "post_box", - "ref": "IV22 193", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221603, - "lat": 57.8201433, - "lon": -5.1781619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV22 207", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221617, - "lat": 58.4564866, - "lon": -5.0516150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "IV27 322", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221619, - "lat": 58.5636796, - "lon": -4.7242107, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV27 289", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221621, - "lat": 58.4950745, - "lon": -4.7202899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV27 78", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1991221654, - "lat": 57.7320184, - "lon": -4.2775566, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1992324696, - "lat": 54.9695606, - "lon": -2.1081735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1992324701, - "lat": 54.9698259, - "lon": -2.1025208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Battle Hill", - "old_ref": "NE46 180", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1992324714, - "lat": 54.9715061, - "lon": -2.1124200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1992324760, - "lat": 54.9739520, - "lon": -2.1191437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "NE46 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1992952061, - "lat": 55.9162825, - "lon": -3.2606117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 1992994047, - "lat": 51.2564409, - "lon": -1.4957867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1993029234, - "lat": 51.2276770, - "lon": -1.5500642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1993029287, - "lat": 51.2381034, - "lon": -1.5570715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 1993029301, - "lat": 51.2550707, - "lon": -1.5776507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1993056373, - "lat": 51.2731023, - "lon": -1.5687472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1993098525, - "lat": 51.3205718, - "lon": -1.4410574, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP11 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1993731426, - "lat": 51.1391173, - "lon": -0.1239004, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1994230965, - "lat": 53.9653255, - "lon": -1.2876565, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO26 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1994230980, - "lat": 53.9648174, - "lon": -1.2799800, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 1994231050, - "lat": 53.9657373, - "lon": -1.3127137, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1995559288, - "lat": 52.2297170, - "lon": -0.9811345, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-19", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1995559289, - "lat": 52.2354069, - "lon": -0.9739401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 233", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 1995629973, - "lat": 53.4055353, - "lon": -2.1659214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1995782967, - "lat": 52.2882175, - "lon": -1.9492756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1997319579, - "lat": 55.8807112, - "lon": -4.2753044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "ref": "G20 303D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 1997319826, - "lat": 55.9120569, - "lon": -4.3081550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 1997380105, - "lat": 53.0140062, - "lon": -1.3119652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG16 9D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1997717430, - "lat": 55.8642924, - "lon": -4.1905265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "ref": "G33 808" - } -}, -{ - "type": "node", - "id": 1997738856, - "lat": 54.3305927, - "lon": -2.7231908, - "tags": { - "amenity": "post_box", - "ref": "LA9 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1997742631, - "lat": 55.8606007, - "lon": -4.2003498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "ref": "G33 882" - } -}, -{ - "type": "node", - "id": 1997781191, - "lat": 55.8598759, - "lon": -4.1894659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G33 939" - } -}, -{ - "type": "node", - "id": 1997789482, - "lat": 52.1927151, - "lon": -2.5087361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR7 996", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1997820150, - "lat": 50.3416350, - "lon": -4.7593331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 1997941460, - "lat": 53.6806151, - "lon": -1.9433448, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 1997948451, - "lat": 51.9627360, - "lon": -2.3039295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "wall", - "ref": "GL19 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1997949087, - "lat": 50.7167191, - "lon": -3.4640398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:30", - "name": "Exeter Services", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX2 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 1998046622, - "lat": 51.4922533, - "lon": -2.6122361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 33D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 1998943217, - "lat": 50.3909040, - "lon": -3.5283343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 1998943219, - "lat": 50.3968645, - "lon": -3.5266930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1998943220, - "lat": 50.3986449, - "lon": -3.5169518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ5 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1998943221, - "lat": 50.3996768, - "lon": -3.5211919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ5 276D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 1999002930, - "lat": 51.1315496, - "lon": 0.8853892, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1999200111, - "lat": 51.1095784, - "lon": 0.7306312, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 1999619975, - "lat": 51.0591908, - "lon": 0.8103579, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN26 98", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN26 98D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 1999646173, - "lat": 54.6274923, - "lon": -2.5804094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA10 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1999646175, - "lat": 54.6373876, - "lon": -2.6035528, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 59", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 1999715855, - "lat": 51.1807557, - "lon": 0.7793457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "TN27 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2000579394, - "lat": 51.6997640, - "lon": -0.7419526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP16 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 2000610828, - "lat": 52.0855601, - "lon": -0.9909068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2000613991, - "lat": 52.0156088, - "lon": -0.9057889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK17 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2000613992, - "lat": 52.0279523, - "lon": -0.9391546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK18 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2000613993, - "lat": 52.0540238, - "lon": -0.9772325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 2000613994, - "lat": 52.0577178, - "lon": -0.9628480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 2001680377, - "lat": 52.2681719, - "lon": 0.7015199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP32 2248", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2001830800, - "lat": 51.8892791, - "lon": -2.2689604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:45", - "post_box:type": "wall", - "ref": "GL2 240", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2001891593, - "lat": 51.5176753, - "lon": -2.5467858, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-29", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS34 1049", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2002455048, - "lat": 51.4410518, - "lon": -0.0918739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE21 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2003118807, - "lat": 52.5874712, - "lon": -0.6944640, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2003221915, - "lat": 51.1176913, - "lon": -0.1643433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "location confirmed by survey; NB Dracos erroneously has this box outside Three Bridges station", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH10 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2003479767, - "lat": 55.8623208, - "lon": -4.1917913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G32 464" - } -}, -{ - "type": "node", - "id": 2004109980, - "lat": 54.8631918, - "lon": -2.7711042, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 159" - } -}, -{ - "type": "node", - "id": 2004479247, - "lat": 51.7635917, - "lon": -0.2402372, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q638098", - "check_date": "2021-10-27", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AL10 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2004735695, - "lat": 53.5010736, - "lon": -2.4560511, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2004735697, - "lat": 53.5021977, - "lon": -2.4488789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2004752798, - "lat": 54.5028576, - "lon": -0.6709479, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "YO21 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2004793816, - "lat": 54.2854010, - "lon": -0.3932204, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2006152957, - "lat": 55.9460585, - "lon": -3.1892450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH1 67", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2006239253, - "lat": 51.7243694, - "lon": -1.3886629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX29 450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2006441769, - "lat": 51.0903004, - "lon": -0.6445594, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2006718657, - "lat": 55.8714840, - "lon": -4.2537821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G4 4" - } -}, -{ - "type": "node", - "id": 2006881150, - "lat": 55.8825370, - "lon": -4.2728269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "postal_code": "G20 7", - "ref": "G20 879", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2006964136, - "lat": 52.6919065, - "lon": 0.9359501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NR19 1943" - } -}, -{ - "type": "node", - "id": 2008062638, - "lat": 52.2477838, - "lon": -1.3189815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2008091323, - "lat": 55.2384381, - "lon": -3.7668390, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG3 132" - } -}, -{ - "type": "node", - "id": 2008792077, - "lat": 54.3865127, - "lon": -2.7289864, - "tags": { - "amenity": "post_box", - "ref": "LA8 130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2008833568, - "lat": 55.8875174, - "lon": -4.2738291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G20 809" - } -}, -{ - "type": "node", - "id": 2008929216, - "lat": 53.6846731, - "lon": -1.6318099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 56" - } -}, -{ - "type": "node", - "id": 2008964791, - "lat": 55.8888859, - "lon": -4.2659734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "G20 385" - } -}, -{ - "type": "node", - "id": 2009043106, - "lat": 52.9945582, - "lon": -1.2392210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2009043126, - "lat": 52.9950065, - "lon": -1.2340256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 203", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2009043374, - "lat": 52.9971617, - "lon": -1.2446233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2009134929, - "lat": 53.7039208, - "lon": -1.6290962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 116" - } -}, -{ - "type": "node", - "id": 2009337872, - "lat": 50.8201191, - "lon": -4.4661032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2009498002, - "lat": 51.8675265, - "lon": -2.2502690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2009614614, - "lat": 51.3092380, - "lon": -0.5746860, - "tags": { - "amenity": "post_box", - "check_date": "2017-07-26", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2009792058, - "lat": 53.2664434, - "lon": -1.5046362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S18 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2010335141, - "lat": 50.9688235, - "lon": -1.6356849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP5 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2010354532, - "lat": 50.8743678, - "lon": -1.5934258, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2010583645, - "lat": 52.9554527, - "lon": 0.0654001, - "tags": { - "amenity": "post_box", - "ref": "PE22 148" - } -}, -{ - "type": "node", - "id": 2010583650, - "lat": 52.9638252, - "lon": 0.0243436, - "tags": { - "amenity": "post_box", - "ref": "PE21 59" - } -}, -{ - "type": "node", - "id": 2010583656, - "lat": 53.1321488, - "lon": -0.0851078, - "tags": { - "amenity": "post_box", - "ref": "PE22 170" - } -}, -{ - "type": "node", - "id": 2010583667, - "lat": 52.9646346, - "lon": -0.0223186, - "tags": { - "amenity": "post_box", - "ref": "PE21 8" - } -}, -{ - "type": "node", - "id": 2010583672, - "lat": 52.9607394, - "lon": 0.0541349, - "tags": { - "amenity": "post_box", - "ref": "PE22 86" - } -}, -{ - "type": "node", - "id": 2010583677, - "lat": 53.0394648, - "lon": 0.1352931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE22 70", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2010604390, - "lat": 52.9429408, - "lon": -0.0801284, - "tags": { - "amenity": "post_box", - "ref": "PE20 106" - } -}, -{ - "type": "node", - "id": 2010604391, - "lat": 52.9325886, - "lon": -0.0388170, - "tags": { - "amenity": "post_box", - "ref": "PE20 140" - } -}, -{ - "type": "node", - "id": 2010604392, - "lat": 52.9590346, - "lon": -0.1765590, - "tags": { - "amenity": "post_box", - "ref": "PE20 74" - } -}, -{ - "type": "node", - "id": 2010604393, - "lat": 52.8913913, - "lon": -0.0844170, - "tags": { - "amenity": "post_box", - "ref": "PE20 87" - } -}, -{ - "type": "node", - "id": 2011329066, - "lat": 51.0950330, - "lon": -0.5362530, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2011361604, - "lat": 51.1082094, - "lon": -0.5155863, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU6 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2011361613, - "lat": 51.1131469, - "lon": -0.5221635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU6 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2011361653, - "lat": 51.1164001, - "lon": -0.5633672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU8 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2011361852, - "lat": 51.1235106, - "lon": -0.5625334, - "tags": { - "amenity": "post_box", - "ref": "GU8 69" - } -}, -{ - "type": "node", - "id": 2011361957, - "lat": 51.1260962, - "lon": -0.5330532, - "tags": { - "amenity": "post_box", - "ref": "GU6 69" - } -}, -{ - "type": "node", - "id": 2011589390, - "lat": 52.5835949, - "lon": 1.6987148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2011614240, - "lat": 51.4867866, - "lon": -3.4738789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF71 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2011838764, - "lat": 54.0717258, - "lon": -1.2195057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO61 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2012214480, - "lat": 50.9088437, - "lon": -3.4989881, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2012243512, - "lat": 56.1384146, - "lon": -3.9231640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK9 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2012638116, - "lat": 51.0809452, - "lon": 0.5928501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 194", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2012789802, - "lat": 51.0732386, - "lon": 0.7383840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "note": "ref not visible", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2012893556, - "lat": 53.7182438, - "lon": -1.6381508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 99" - } -}, -{ - "type": "node", - "id": 2012977497, - "lat": 52.6487495, - "lon": 0.7765605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE37 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2013520329, - "lat": 51.5131107, - "lon": -0.0435837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 47;E1 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2013999194, - "lat": 51.3228376, - "lon": -0.1380247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 186", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2014304927, - "lat": 53.7991494, - "lon": -1.5040600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2014304930, - "lat": 53.8015296, - "lon": -1.4880928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 657", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2015276532, - "lat": 51.1132350, - "lon": -0.7324889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "GU26 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; sas" - } -}, -{ - "type": "node", - "id": 2015664075, - "lat": 52.5102523, - "lon": -1.9402162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B21 130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2015683028, - "lat": 52.6248021, - "lon": -2.9870098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2015871554, - "lat": 51.8814415, - "lon": -2.4304458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL17 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2015871720, - "lat": 51.8904011, - "lon": -2.4235873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "post_box:type": "wall", - "ref": "GL17 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2015871791, - "lat": 51.8939735, - "lon": -2.3971242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "wall", - "ref": "GL19 128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2017683873, - "lat": 51.5746282, - "lon": -1.1488188, - "tags": { - "amenity": "post_box", - "fixme": "Survey for ref" - } -}, -{ - "type": "node", - "id": 2017683924, - "lat": 51.5751687, - "lon": -1.1532334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2018607485, - "lat": 53.7416158, - "lon": -1.6623990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 219" - } -}, -{ - "type": "node", - "id": 2018716411, - "lat": 51.4784480, - "lon": -2.6138765, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2018970234, - "lat": 51.4632257, - "lon": -2.6035009, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS6 235", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2018985030, - "lat": 52.5309984, - "lon": -1.7836573, - "tags": { - "amenity": "post_box", - "postal_code": "B76", - "ref": "B76 1292D", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2019492963, - "lat": 55.8308054, - "lon": -4.5370182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2019595292, - "lat": 51.8993107, - "lon": -2.0661518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 2020025287, - "lat": 53.0277244, - "lon": -1.2346581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG15 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2020025314, - "lat": 53.0307269, - "lon": -1.2272330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2020041040, - "lat": 53.7343908, - "lon": -1.6642709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 190" - } -}, -{ - "type": "node", - "id": 2020251113, - "lat": 51.9323557, - "lon": -2.4693675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "HR9 628", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020251353, - "lat": 51.9590196, - "lon": -2.4731264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL18 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020251360, - "lat": 51.9595088, - "lon": -2.4882864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL18 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020251394, - "lat": 51.9645022, - "lon": -2.4797183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "wall", - "ref": "GL18 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020251400, - "lat": 51.9736457, - "lon": -2.4562945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "post_box:type": "lamp", - "ref": "GL18 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020268316, - "lat": 53.7322081, - "lon": -1.6609070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020422272, - "lat": 51.0922759, - "lon": -1.0541099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2020445995, - "lat": 51.0290950, - "lon": -0.9388136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2021-07-24", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU32 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020445996, - "lat": 51.0498363, - "lon": -0.9188533, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2020460029, - "lat": 51.0757262, - "lon": -0.8873942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 99" - } -}, -{ - "type": "node", - "id": 2020515979, - "lat": 50.8613624, - "lon": -0.0258255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 578", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2020969918, - "lat": 50.7405201, - "lon": -2.0411434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH16 2", - "ref:GB:uprn": "10015364806", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2021321466, - "lat": 50.8221695, - "lon": -1.5823535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO42 60" - } -}, -{ - "type": "node", - "id": 2021362961, - "lat": 50.9245796, - "lon": -1.6626456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2021362967, - "lat": 50.8771005, - "lon": -1.5978112, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SO43 62", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO43 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2021679100, - "lat": 51.1211693, - "lon": -0.7496917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox used to be a GR wall and is now of a brand new EIIR lamp design.", - "old_ref": "GU26 154", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU26 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;sas", - "source_1": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 2021831663, - "lat": 51.2137475, - "lon": -0.9124559, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-17", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "post_box:type": "wall", - "ref": "RG29 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2021835661, - "lat": 56.0076968, - "lon": -3.7811430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2021835708, - "lat": 56.0114474, - "lon": -3.7822195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK2 43D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2022088167, - "lat": 56.5505429, - "lon": -3.6331036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH8 191", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2022088177, - "lat": 56.5411261, - "lon": -3.6620277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:30", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 155", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2022094185, - "lat": 56.5254008, - "lon": -3.7578082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 161", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2022127674, - "lat": 56.6188859, - "lon": -3.9452753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH15 28", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2022191653, - "lat": 56.7074764, - "lon": -4.0203369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 101", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2022223836, - "lat": 51.5801021, - "lon": -0.3351058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "drive_through": "no", - "note": "Either this is another one very close to the first or it's moved. There's one outside Tesco on the other side of the road. Confirmed in https://www.openstreetmap.org/note/2753753 that this ID is in this location, or within 5m of it.", - "note2": "There are 2 collection plates with different No.s on this type of box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HA1 100;HA1 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2022238144, - "lat": 51.5707417, - "lon": -0.3396404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "HA1 80D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 2022276600, - "lat": 53.0935040, - "lon": -2.2561990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2022279649, - "lat": 53.0850202, - "lon": -2.2535065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2022554093, - "lat": 53.9343890, - "lon": -1.1182599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2023120316, - "lat": 51.1709334, - "lon": -0.9800685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 74D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2024538292, - "lat": 51.3877450, - "lon": -1.3398979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2024538293, - "lat": 51.3902515, - "lon": -1.3335287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG14 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2026210982, - "lat": 53.7356801, - "lon": -1.4636087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 101" - } -}, -{ - "type": "node", - "id": 2026432824, - "lat": 51.4065555, - "lon": -1.3237968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RG14 301D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2026700724, - "lat": 51.5762451, - "lon": -0.7657229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL7 203", - "source": "local knowledge;Bing" - } -}, -{ - "type": "node", - "id": 2027081066, - "lat": 55.8546287, - "lon": -4.1336485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G33 1203" - } -}, -{ - "type": "node", - "id": 2027081069, - "lat": 55.8547464, - "lon": -4.1251507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "G69 959" - } -}, -{ - "type": "node", - "id": 2027081220, - "lat": 55.8578807, - "lon": -4.1351143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G33 1202", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2027086394, - "lat": 51.2376756, - "lon": -0.3251100, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH4 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 2027846863, - "lat": 52.2905937, - "lon": 0.1268464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CB24 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2028027024, - "lat": 54.8970867, - "lon": -2.2546169, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2030040214, - "lat": 53.3035834, - "lon": -2.3721073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA16 19", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2030041664, - "lat": 53.3021013, - "lon": -2.3756791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "indoor": "yes", - "ref": "WA16 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2030187256, - "lat": 51.3468334, - "lon": 0.6991088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 2030523181, - "lat": 53.7984562, - "lon": -1.5337299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "check royal_cypher", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 430D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2030792666, - "lat": 52.5676411, - "lon": -1.2018390, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2030991040, - "lat": 53.0178983, - "lon": -2.9286559, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2031006029, - "lat": 53.0245504, - "lon": -2.9646015, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2031059268, - "lat": 54.4865425, - "lon": -0.6161288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO21 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2032118454, - "lat": 52.3115898, - "lon": -1.0404439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2032144757, - "lat": 52.3410347, - "lon": -1.0742887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN6 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2032144761, - "lat": 52.3410512, - "lon": -1.0776681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 467", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2032144767, - "lat": 52.3430739, - "lon": -1.0693896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN6 1202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2032248960, - "lat": 51.8010054, - "lon": -0.2109979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "AL8 185", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2032410064, - "lat": 51.1503092, - "lon": -1.2676546, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SO21 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2032714671, - "lat": 51.0126228, - "lon": -0.9464987, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2032777276, - "lat": 53.6833152, - "lon": -1.6421590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2035020187, - "lat": 53.6046225, - "lon": -2.4355588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "BL1 55" - } -}, -{ - "type": "node", - "id": 2035024448, - "lat": 53.5999321, - "lon": -2.4570755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2035085106, - "lat": 52.5596010, - "lon": -1.8259401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "B72 651", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2035094151, - "lat": 51.4057610, - "lon": -2.5915271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS13 72" - } -}, -{ - "type": "node", - "id": 2035257993, - "lat": 53.6523679, - "lon": -1.5850666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2035694064, - "lat": 51.0995727, - "lon": -3.1381619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2035694486, - "lat": 51.1040807, - "lon": -3.1308301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2036156514, - "lat": 54.0249674, - "lon": -2.0605989, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2037267771, - "lat": 53.7893395, - "lon": -1.5331395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2037267779, - "lat": 53.7893536, - "lon": -1.5331655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS10 1058", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2038435802, - "lat": 51.3881869, - "lon": -1.3309901, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2038794139, - "lat": 53.5910399, - "lon": -1.2939612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF9 178" - } -}, -{ - "type": "node", - "id": 2038905235, - "lat": 50.9164791, - "lon": -0.1686540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 392", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2039723358, - "lat": 53.8226950, - "lon": -3.0317954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2039811952, - "lat": 54.4837955, - "lon": -1.7478700, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2040122100, - "lat": 53.8184442, - "lon": -3.0330868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2040433297, - "lat": 54.5570677, - "lon": -5.9025307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2041088113, - "lat": 51.5769221, - "lon": -1.8356359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN5 97" - } -}, -{ - "type": "node", - "id": 2041094954, - "lat": 51.1162885, - "lon": -0.1644066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2041097755, - "lat": 51.5700240, - "lon": -1.8315719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2041957799, - "lat": 54.5118678, - "lon": -1.6153508, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2041985585, - "lat": 54.9091120, - "lon": -2.7043865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA8 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2042058396, - "lat": 55.1439443, - "lon": -6.6537882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2042537919, - "lat": 52.4424185, - "lon": 1.0048815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "NR16 1636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2042537932, - "lat": 52.4495994, - "lon": 1.0367245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR16 1628D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2043070541, - "lat": 51.2820457, - "lon": -0.9625498, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG27 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2043081329, - "lat": 54.3389711, - "lon": -1.6601475, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2043106935, - "lat": 54.3810861, - "lon": -1.6771321, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2043568902, - "lat": 51.2203556, - "lon": -0.9684180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2043582283, - "lat": 51.7248999, - "lon": 0.4801864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 485D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2044425401, - "lat": 51.2797107, - "lon": -0.0900268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 351", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2044855386, - "lat": 51.2936154, - "lon": -0.1538981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR5 363", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2045107994, - "lat": 51.4657863, - "lon": -2.6000212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "BS6 238", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2045107998, - "lat": 51.4659604, - "lon": -2.5881826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 308D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2045253671, - "lat": 51.4585020, - "lon": -2.5787571, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 186", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2045602854, - "lat": 54.5161262, - "lon": -1.6618963, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2045631230, - "lat": 54.4296785, - "lon": -1.6386687, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2045784534, - "lat": 52.4522688, - "lon": 1.0368443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "wall", - "ref": "NR16 1630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2045784538, - "lat": 52.4142164, - "lon": 1.0445241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2045784545, - "lat": 52.4324373, - "lon": 1.0042694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR16 1637D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2046338525, - "lat": 52.4498992, - "lon": -1.8810183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "B13 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2047023953, - "lat": 50.7502589, - "lon": -1.5397624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 19" - } -}, -{ - "type": "node", - "id": 2047023963, - "lat": 50.7536750, - "lon": -1.5460923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 82" - } -}, -{ - "type": "node", - "id": 2047123376, - "lat": 51.8127920, - "lon": 0.4247091, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2047232954, - "lat": 50.7824458, - "lon": -1.5384347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 150" - } -}, -{ - "type": "node", - "id": 2047232964, - "lat": 50.7824086, - "lon": -1.5207485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 126" - } -}, -{ - "type": "node", - "id": 2047233012, - "lat": 50.7242209, - "lon": -1.5813246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 65" - } -}, -{ - "type": "node", - "id": 2047233017, - "lat": 50.7835727, - "lon": -1.5295699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 102" - } -}, -{ - "type": "node", - "id": 2047233068, - "lat": 50.7244195, - "lon": -1.5947235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 64" - } -}, -{ - "type": "node", - "id": 2047233077, - "lat": 50.7729666, - "lon": -1.5512101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2047233225, - "lat": 50.7712924, - "lon": -1.5576849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 163" - } -}, -{ - "type": "node", - "id": 2047233236, - "lat": 50.7628815, - "lon": -1.6048006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 104" - } -}, -{ - "type": "node", - "id": 2047233314, - "lat": 50.7784188, - "lon": -1.5836849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO41 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2047233359, - "lat": 50.7944917, - "lon": -1.4791364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 46", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2047312368, - "lat": 50.9634851, - "lon": -1.1286549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "collection_times_checked": "2020-01-12", - "old_ref": "HE155", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO32 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2048128117, - "lat": 51.4074417, - "lon": -1.3127712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG14 260D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2048231755, - "lat": 54.1002698, - "lon": -1.0615024, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2048275203, - "lat": 51.3910308, - "lon": -1.3290455, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2048349206, - "lat": 54.0379050, - "lon": -0.9050900, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2048623153, - "lat": 54.2623623, - "lon": -2.3483797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA10 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2048623220, - "lat": 54.2775223, - "lon": -2.3710962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA10 69", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2048666643, - "lat": 54.5782883, - "lon": -5.9189137, - "tags": { - "addr:postcode": "BT7 2FZ", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT7 121" - } -}, -{ - "type": "node", - "id": 2049104967, - "lat": 51.1171494, - "lon": -3.1074804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2049932861, - "lat": 52.0809379, - "lon": -0.7890001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK19 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2050122498, - "lat": 53.7611847, - "lon": -1.2320074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS25 682", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2050314985, - "lat": 55.7850275, - "lon": -4.1056146, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2051407232, - "lat": 53.7099744, - "lon": -1.6232372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2053082140, - "lat": 51.1688244, - "lon": -0.1611329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH6 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2053082162, - "lat": 51.1699561, - "lon": -0.1616091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH6 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2053541208, - "lat": 53.0045538, - "lon": -1.1424572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2053541473, - "lat": 53.0029928, - "lon": -1.1389954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 413D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2054004201, - "lat": 51.4815265, - "lon": -0.0978521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 38D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2054442346, - "lat": 53.1809029, - "lon": -3.0552170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2055169195, - "lat": 50.7243971, - "lon": -3.4971002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2055932436, - "lat": 51.5107015, - "lon": -0.0396664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "E14 52D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2056853503, - "lat": 53.0376888, - "lon": -1.0817049, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2056939221, - "lat": 51.4776346, - "lon": -2.5900858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2058476707, - "lat": 55.9003066, - "lon": -4.2911135, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2058560849, - "lat": 55.8279925, - "lon": -4.2209514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "G73 1454" - } -}, -{ - "type": "node", - "id": 2058561699, - "lat": 55.8320900, - "lon": -4.2052728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G73 507", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2058587081, - "lat": 55.8971005, - "lon": -4.3001119, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2058587623, - "lat": 55.9040086, - "lon": -4.3093387, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2058592715, - "lat": 50.9966404, - "lon": -1.2955482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2058667777, - "lat": 50.8282013, - "lon": -1.3854354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 682D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2059150309, - "lat": 53.0096605, - "lon": -1.1254705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG5 419D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2059150313, - "lat": 53.0128581, - "lon": -1.1178231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 460D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2059155673, - "lat": 51.6836240, - "lon": 0.4345155, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2059586588, - "lat": 50.8298735, - "lon": -1.1827163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO13 83" - } -}, -{ - "type": "node", - "id": 2059610554, - "lat": 51.2270179, - "lon": -0.7661689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "GU9 97" - } -}, -{ - "type": "node", - "id": 2059732747, - "lat": 51.7980675, - "lon": -4.7424080, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikidata": "Q29485690" - } -}, -{ - "type": "node", - "id": 2060272175, - "lat": 51.5209767, - "lon": -0.0180156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061956941, - "lat": 56.0797019, - "lon": -3.7208760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "FK10 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061956944, - "lat": 56.1074236, - "lon": -3.7453169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "649579386338402", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK10 27", - "source": "survey", - "survey:date": "2022-09-06" - } -}, -{ - "type": "node", - "id": 2061976329, - "lat": 57.8374009, - "lon": -5.0952842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "ref": "IV 216", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976330, - "lat": 57.8453652, - "lon": -5.1034030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IV 217", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976331, - "lat": 57.8673808, - "lon": -5.1264582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00", - "post_box:type": "pillar", - "ref": "IV 218", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976332, - "lat": 57.9637461, - "lon": -4.7245402, - "tags": { - "amenity": "post_box", - "fixme": "ref illegible", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976333, - "lat": 57.9479322, - "lon": -4.5090945, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IV 299", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976335, - "lat": 57.9460621, - "lon": -4.4521969, - "tags": { - "amenity": "post_box", - "ref": "IV 292", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976337, - "lat": 57.8779178, - "lon": -4.2344678, - "tags": { - "amenity": "post_box", - "ref": "IV24 267", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976338, - "lat": 57.8754317, - "lon": -4.1777788, - "tags": { - "amenity": "post_box", - "ref": "IV 296", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976339, - "lat": 57.8772927, - "lon": -4.1301343, - "tags": { - "amenity": "post_box", - "ref": "IV 294", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976340, - "lat": 57.8780010, - "lon": -4.1130271, - "tags": { - "amenity": "post_box", - "ref": "IV25 329", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976341, - "lat": 57.8141162, - "lon": -4.0599109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "IV19", - "ref": "IV19 1D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2061976345, - "lat": 57.7458522, - "lon": -4.0748586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV18 2", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2062389149, - "lat": 51.3327433, - "lon": 0.7061446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2063761950, - "lat": 55.8153238, - "lon": -4.2578259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 13:15", - "operator": "Royal Mail", - "ref": "G44 203", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; dracos" - } -}, -{ - "type": "node", - "id": 2068170403, - "lat": 51.3959097, - "lon": -0.3810232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 371D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2068182016, - "lat": 51.3780678, - "lon": -0.3897164, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2068228175, - "lat": 51.3861250, - "lon": -0.3829028, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2068231139, - "lat": 53.7436391, - "lon": -1.6419527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF17 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2068675096, - "lat": 53.7461763, - "lon": -1.6183988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 2" - } -}, -{ - "type": "node", - "id": 2069699504, - "lat": 51.1221628, - "lon": -0.7624636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:type": "wall", - "ref": "GU26 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2069792008, - "lat": 52.3898979, - "lon": -0.9556543, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2069797231, - "lat": 52.3819657, - "lon": -1.0392495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN6 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2070039544, - "lat": 55.8038185, - "lon": -4.3904299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "G78 715" - } -}, -{ - "type": "node", - "id": 2070134765, - "lat": 52.8311815, - "lon": -1.1814003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "LE12 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2070390370, - "lat": 51.6526947, - "lon": 0.3733714, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2070590819, - "lat": 52.3859220, - "lon": -2.8994625, - "tags": { - "addr:postcode": "SY7 0QA", - "addr:street": "Broadward", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2070753556, - "lat": 53.6924683, - "lon": -1.6293206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 41" - } -}, -{ - "type": "node", - "id": 2070753557, - "lat": 53.6933918, - "lon": -1.6299005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 46" - } -}, -{ - "type": "node", - "id": 2070814283, - "lat": 52.8316330, - "lon": -1.1474245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2070864268, - "lat": 51.5988024, - "lon": -0.2260803, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-10" - } -}, -{ - "type": "node", - "id": 2072024649, - "lat": 51.5267568, - "lon": -2.6051604, - "tags": { - "amenity": "post_box", - "ref": "BS10 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2072036595, - "lat": 51.4898920, - "lon": -2.6169857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS9 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2072248094, - "lat": 52.0143073, - "lon": -0.7813769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2072358369, - "lat": 53.1739770, - "lon": -0.8695858, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2073089333, - "lat": 51.3772680, - "lon": -1.3437090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2073418054, - "lat": 53.0064485, - "lon": -1.1079813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Local" - } -}, -{ - "type": "node", - "id": 2073435184, - "lat": 53.0097059, - "lon": -1.1105065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Local" - } -}, -{ - "type": "node", - "id": 2073435185, - "lat": 53.0062988, - "lon": -1.1156881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 421", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Local" - } -}, -{ - "type": "node", - "id": 2073435186, - "lat": 53.0030443, - "lon": -1.1131655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 369D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Local" - } -}, -{ - "type": "node", - "id": 2073635188, - "lat": 53.6702455, - "lon": -1.7863953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2073635206, - "lat": 53.6712069, - "lon": -1.7848017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2073991155, - "lat": 53.1476106, - "lon": -0.8476973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG23 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2073991167, - "lat": 53.1457991, - "lon": -0.8507845, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2074376575, - "lat": 51.1765308, - "lon": 0.7883831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN27 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2074608827, - "lat": 52.9997454, - "lon": -1.1219552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Local" - } -}, -{ - "type": "node", - "id": 2074612353, - "lat": 54.0390197, - "lon": -2.7998105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA1 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2074770152, - "lat": 51.3749115, - "lon": -1.3481591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2074834748, - "lat": 52.5326270, - "lon": -0.2752133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2075197016, - "lat": 55.8311829, - "lon": -4.3391659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "ref": "G53 1101" - } -}, -{ - "type": "node", - "id": 2075392917, - "lat": 51.5362880, - "lon": -0.1915276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2076269380, - "lat": 52.9952653, - "lon": -1.1110493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG5 488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2076269382, - "lat": 53.0016602, - "lon": -1.1166177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG5 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2076529638, - "lat": 54.0433278, - "lon": -2.8176463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "LA1 240", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2076960163, - "lat": 51.1098796, - "lon": -3.0109976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA5 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2076969067, - "lat": 51.1263986, - "lon": -2.9870873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2076969068, - "lat": 51.1245713, - "lon": -3.0218331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 909", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2076969069, - "lat": 51.1247297, - "lon": -3.0029532, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 711" - } -}, -{ - "type": "node", - "id": 2076969070, - "lat": 51.1260143, - "lon": -3.0110636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2076969071, - "lat": 51.1300724, - "lon": -2.9737034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2076969072, - "lat": 51.1266215, - "lon": -3.0258566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2076969073, - "lat": 51.1247605, - "lon": -3.0356542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 629D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2076972836, - "lat": 51.1049164, - "lon": -2.9961241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2077243531, - "lat": 51.8830638, - "lon": 0.5329780, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2077592309, - "lat": 52.0602085, - "lon": -0.8309465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2078089368, - "lat": 52.8100951, - "lon": -1.8875378, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2079596239, - "lat": 50.8184940, - "lon": -2.4065724, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2080417346, - "lat": 53.8066100, - "lon": -1.5800906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS4 227" - } -}, -{ - "type": "node", - "id": 2080435456, - "lat": 53.6495027, - "lon": -1.4977581, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_plate:date": "2019-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF2 1273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-01-03" - } -}, -{ - "type": "node", - "id": 2080452067, - "lat": 51.3918266, - "lon": 0.0098646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2081217488, - "lat": 52.0566673, - "lon": 1.1622102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP4 1363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2081541268, - "lat": 50.7471479, - "lon": -3.5349264, - "tags": { - "amenity": "post_box", - "ref": "EX4 145" - } -}, -{ - "type": "node", - "id": 2083389276, - "lat": 52.7671942, - "lon": -0.3893162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "location": "The Villas", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE10 219", - "source": "http://dracos.co.uk/made/nearest-postbox/" - } -}, -{ - "type": "node", - "id": 2083441389, - "lat": 52.8703523, - "lon": -1.0896979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "wall", - "ref": "NG12 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2083441505, - "lat": 52.8716019, - "lon": -1.0937261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG12 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2083475181, - "lat": 52.8718064, - "lon": -1.0786895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG12 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2083475207, - "lat": 52.8758185, - "lon": -1.0778022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "NG12 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2083625245, - "lat": 51.8631566, - "lon": -0.7384141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "HP22 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2083632052, - "lat": 51.8659256, - "lon": -0.7426875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "ref": "HP22 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2084556561, - "lat": 51.5490890, - "lon": -0.0922001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N5 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2085537423, - "lat": 53.7811005, - "lon": -1.5908716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS12 24" - } -}, -{ - "type": "node", - "id": 2086309982, - "lat": 53.7391431, - "lon": -1.5978305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 45" - } -}, -{ - "type": "node", - "id": 2086309988, - "lat": 53.7409349, - "lon": -1.6096441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 358" - } -}, -{ - "type": "node", - "id": 2086309993, - "lat": 53.7461654, - "lon": -1.6184524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LS27 11" - } -}, -{ - "type": "node", - "id": 2087460639, - "lat": 52.5632673, - "lon": -2.6954999, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2088454784, - "lat": 53.1883852, - "lon": -4.2224575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL61 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2088578201, - "lat": 50.6663673, - "lon": -3.6749274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2090265599, - "lat": 53.6326961, - "lon": -1.7472334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2090265611, - "lat": 53.6336627, - "lon": -1.7425128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2090265746, - "lat": 53.6392984, - "lon": -1.7400219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2090304566, - "lat": 52.4724295, - "lon": 1.0730272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1650", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090350771, - "lat": 50.9168371, - "lon": -1.5117316, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 725", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090405966, - "lat": 50.9783513, - "lon": -1.5292906, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090405967, - "lat": 50.9658681, - "lon": -1.5242400, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090405973, - "lat": 50.9973561, - "lon": -1.5472453, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO51 513", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2090407704, - "lat": 50.9731486, - "lon": -1.4457320, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO52 400D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090407705, - "lat": 50.9796863, - "lon": -1.4509143, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO51 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090428246, - "lat": 50.9301310, - "lon": -1.4385091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2090428258, - "lat": 50.9224368, - "lon": -1.4479747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 277" - } -}, -{ - "type": "node", - "id": 2090428270, - "lat": 50.9339606, - "lon": -1.4416661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "485265772815653", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 425", - "survey:date": "2020-09-26" - } -}, -{ - "type": "node", - "id": 2090428273, - "lat": 50.9243727, - "lon": -1.4633223, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090726968, - "lat": 53.4590429, - "lon": -2.5285802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090752846, - "lat": 53.7313485, - "lon": -1.5734538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Previously a wall box at Tingley PO - was moved when PO was closed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF3 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090916304, - "lat": 50.9289824, - "lon": -1.5716927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2090916534, - "lat": 50.9744707, - "lon": -1.5845338, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 543", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2090953890, - "lat": 53.9462632, - "lon": -1.8946906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 848" - } -}, -{ - "type": "node", - "id": 2090953891, - "lat": 53.9450477, - "lon": -1.8988373, - "tags": { - "amenity": "post_box", - "ref": "LS29 845", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2091092283, - "lat": 55.8933563, - "lon": -4.2610104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "ref": "G22 702" - } -}, -{ - "type": "node", - "id": 2091129478, - "lat": 50.9854645, - "lon": -1.5018386, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2091129571, - "lat": 50.9886792, - "lon": -1.4823550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2091129577, - "lat": 50.9889720, - "lon": -1.4977410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 763", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2091168771, - "lat": 55.8957821, - "lon": -4.2648126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "G22 294" - } -}, -{ - "type": "node", - "id": 2091191483, - "lat": 53.1924310, - "lon": -4.3857094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL62 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2091191490, - "lat": 53.1927802, - "lon": -4.4124150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL62 115" - } -}, -{ - "type": "node", - "id": 2091196161, - "lat": 50.9346396, - "lon": -1.4180650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 333", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2091196165, - "lat": 50.9525022, - "lon": -1.4127248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO16 595D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2091196176, - "lat": 50.9196911, - "lon": -1.4422103, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 467D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2091264131, - "lat": 55.8966368, - "lon": -4.2406127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G22 1172" - } -}, -{ - "type": "node", - "id": 2091429589, - "lat": 52.3943699, - "lon": -2.8749307, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2091431957, - "lat": 52.3931295, - "lon": -2.8945434, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2091431962, - "lat": 52.3915992, - "lon": -2.9100629, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2091449736, - "lat": 52.3830528, - "lon": -2.8852811, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2091456147, - "lat": 51.9941957, - "lon": -2.4190766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "post_box:type": "lamp", - "ref": "GL18 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2091650758, - "lat": 54.8935723, - "lon": -2.9334034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CA3 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2092085905, - "lat": 53.2599185, - "lon": -2.6789284, - "tags": { - "amenity": "post_box", - "ref": "WA6 49" - } -}, -{ - "type": "node", - "id": 2092086271, - "lat": 53.2637582, - "lon": -2.6773517, - "tags": { - "amenity": "post_box", - "ref": "WA6 297" - } -}, -{ - "type": "node", - "id": 2092091886, - "lat": 52.3749758, - "lon": -2.9266564, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2092091913, - "lat": 52.4028742, - "lon": -2.8869027, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2092091944, - "lat": 52.3677925, - "lon": -2.9290475, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2092095166, - "lat": 53.1913005, - "lon": -0.5567140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LN5 631" - } -}, -{ - "type": "node", - "id": 2092346283, - "lat": 54.9711338, - "lon": -1.6000180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mailtypes": "franked", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE1 504" - } -}, -{ - "type": "node", - "id": 2092510466, - "lat": 50.7190626, - "lon": -3.3006991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 2092691580, - "lat": 51.1230869, - "lon": -3.0177029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2092733250, - "lat": 51.7257014, - "lon": -0.8247282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 2092914735, - "lat": 53.4268909, - "lon": -2.5245693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA3 376", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2093116994, - "lat": 51.8246220, - "lon": -1.2978459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX5 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-01-03" - } -}, -{ - "type": "node", - "id": 2093370157, - "lat": 50.8384547, - "lon": -2.6060785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1501764677241159", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT2 143", - "ref:GB:uprn": "10015383882", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 2093547136, - "lat": 51.6390866, - "lon": -2.3545655, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-20", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "GL12 200", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2093849469, - "lat": 53.1929083, - "lon": -0.5548467, - "tags": { - "amenity": "post_box", - "ref": "LN5 552" - } -}, -{ - "type": "node", - "id": 2094196645, - "lat": 51.4825879, - "lon": -2.5391699, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2095379333, - "lat": 53.3770512, - "lon": -3.1742185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH48 434 by Andrew Handyside & Co set into the wall of a house on Broxton Avenue at junction with Lang Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH48 434", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Broxton Avenue, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 2095507147, - "lat": 51.0007232, - "lon": -1.3792875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO53 610D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2096092472, - "lat": 50.7802732, - "lon": 0.0879614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1046D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2096426023, - "lat": 55.8302468, - "lon": -4.1585038, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2096640381, - "lat": 55.3480308, - "lon": -1.6121662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "NE65 115", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 2096643739, - "lat": 56.0178766, - "lon": -3.7944916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2096927779, - "lat": 51.3244506, - "lon": -2.2002161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2097043219, - "lat": 50.6706720, - "lon": -2.1046820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH20 200", - "ref:GB:uprn": "10015311900", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2097043348, - "lat": 50.6756050, - "lon": -2.1094661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 78", - "ref:GB:uprn": "10015317746", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2097048175, - "lat": 51.5143978, - "lon": -0.9759874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2097128691, - "lat": 50.7382702, - "lon": -1.7844632, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH23 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2097128798, - "lat": 50.7363630, - "lon": -1.7844980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 20", - "ref:GB:uprn": "10015329894", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2097229134, - "lat": 50.7219555, - "lon": -1.8285860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH5 260", - "ref:GB:uprn": "10015373501", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2097248099, - "lat": 50.7271978, - "lon": -1.8500429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 27", - "ref:GB:uprn": "10015276409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2098001681, - "lat": 50.7223342, - "lon": -1.8665230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH1 123;BH1 5123", - "ref:GB:uprn": "10015377752", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2098013035, - "lat": 51.3323814, - "lon": -0.4709636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT14 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2098014426, - "lat": 51.3343020, - "lon": -0.4734795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT14 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-11-20" - } -}, -{ - "type": "node", - "id": 2098015749, - "lat": 51.3379484, - "lon": -0.4721948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 46", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2098194972, - "lat": 53.1876706, - "lon": -0.5560315, - "tags": { - "amenity": "post_box", - "ref": "LN5 154" - } -}, -{ - "type": "node", - "id": 2098659277, - "lat": 52.9019076, - "lon": -1.0982267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG12 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2098705596, - "lat": 52.9102392, - "lon": -1.0840791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG12 186D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2098731115, - "lat": 50.7497738, - "lon": -3.3982503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "mapillary": "1163795391130591", - "name": "Jack-In-The- Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "postal_code": "EX5 2DZ", - "ref": "EX5 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-06-19", - "survey:date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 2098787590, - "lat": 50.7459232, - "lon": -3.4303901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "colour": "red", - "name": "Broadclyst Station", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX5 3AS", - "ref": "EX5 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2098794353, - "lat": 50.4579505, - "lon": -3.7303349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2098803183, - "lat": 53.7994193, - "lon": -1.5506676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "mail:first_class": "yes", - "mail:second_class": "yes", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS1 14;LS1 1014", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2098803185, - "lat": 53.8015922, - "lon": -1.5561181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS2 26", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2098803186, - "lat": 53.8024948, - "lon": -1.5439065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2099513021, - "lat": 53.6350371, - "lon": -1.7495869, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2100234209, - "lat": 51.7909702, - "lon": -1.3467430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX29 743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-01-07" - } -}, -{ - "type": "node", - "id": 2100587047, - "lat": 50.7179650, - "lon": -3.5287495, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2100686145, - "lat": 51.5590947, - "lon": -0.1783705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-13", - "collection_plate": "CP9D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Bernd P. Walker Eagle Foundry. Birmingham.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NW3 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2101706816, - "lat": 52.6878476, - "lon": 1.3169942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR10 1011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2101707309, - "lat": 52.6850543, - "lon": 1.3207734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR10 1012" - } -}, -{ - "type": "node", - "id": 2101708236, - "lat": 52.6875582, - "lon": 1.3279564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR10 1015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2101739380, - "lat": 50.9672650, - "lon": -2.3122512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT10 22", - "ref:GB:uprn": "10015272928", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2101739382, - "lat": 50.9652244, - "lon": -2.3199760, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015312617" - } -}, -{ - "type": "node", - "id": 2102024328, - "lat": 51.3350106, - "lon": -0.4790777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT14 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2102028746, - "lat": 51.3390810, - "lon": -0.4781687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2102597102, - "lat": 51.3759513, - "lon": -0.4543578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT13 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2102975763, - "lat": 51.4130740, - "lon": -1.3241230, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 2103004324, - "lat": 51.4094891, - "lon": -1.3235329, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 2103013087, - "lat": 51.4051757, - "lon": -1.3194841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "RG14 285D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2103066857, - "lat": 51.3578967, - "lon": -0.2682175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2103358335, - "lat": 50.4909478, - "lon": -3.6292382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "ref": "TQ12 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2103614928, - "lat": 50.7054677, - "lon": -2.1037041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "BH20", - "ref": "BH20 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2104253358, - "lat": 51.4747978, - "lon": -0.0350386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE14 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104709474, - "lat": 56.8805908, - "lon": -5.6635979, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH38 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104709481, - "lat": 56.8280199, - "lon": -5.8162690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH38 103", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104709494, - "lat": 56.7629082, - "lon": -5.7473418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "mapillary": "304149948139918", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH36 80", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2021-09-09" - } -}, -{ - "type": "node", - "id": 2104709498, - "lat": 56.7591871, - "lon": -5.7885938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "285215289890276", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH36 84", - "source": "survey", - "survey:date": "2021-09-09" - } -}, -{ - "type": "node", - "id": 2104709501, - "lat": 56.7540596, - "lon": -5.8009761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1176855892780176", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH36 52", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2021-06-15" - } -}, -{ - "type": "node", - "id": 2104709508, - "lat": 56.7470226, - "lon": -5.8010376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH36 92", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2104709516, - "lat": 56.6924000, - "lon": -5.5946137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "mapillary": "1703112729889435", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH36 49", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2021-09-13" - } -}, -{ - "type": "node", - "id": 2104709521, - "lat": 56.6184479, - "lon": -5.4841186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH33 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104730377, - "lat": 56.7406965, - "lon": -5.7852094, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PH36 94", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104740203, - "lat": 56.7846536, - "lon": -5.7465812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "name": "Kinlochmoidart", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH38 103", - "royal_cypher": "scottish_crown", - "source": "survey;streetlevel imagery", - "url": "https://www.royalmail.com/services-near-you/postbox/kinlochmoidart-ph38-4nd/0000PH3891" - } -}, -{ - "type": "node", - "id": 2104740204, - "lat": 56.8424464, - "lon": -5.7553326, - "tags": { - "amenity": "post_box", - "ref": "PH38 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104740205, - "lat": 56.8560723, - "lon": -5.2405211, - "tags": { - "amenity": "post_box", - "ref": "PH33 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2104758482, - "lat": 53.1998049, - "lon": -0.5519765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN5 481" - } -}, -{ - "type": "node", - "id": 2104803229, - "lat": 53.7399071, - "lon": -1.3843775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2105728258, - "lat": 52.0436872, - "lon": -0.8502522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 2106295317, - "lat": 51.0524112, - "lon": -1.2778803, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "last_checked": "2020-08-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2106475491, - "lat": 53.7659923, - "lon": -0.9710454, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2106493315, - "lat": 54.0259813, - "lon": -1.4003471, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2106532956, - "lat": 50.9150582, - "lon": -1.1681060, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "PO17 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2107178561, - "lat": 53.1977529, - "lon": -0.5515228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN5 276", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2107621404, - "lat": 51.6200973, - "lon": -4.0001958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 2107706249, - "lat": 51.3022377, - "lon": 0.5429323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME14 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2108786691, - "lat": 51.1533996, - "lon": -2.4111541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2109058177, - "lat": 54.0478426, - "lon": -2.8172508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2109080490, - "lat": 53.6374867, - "lon": -1.7372669, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2109089651, - "lat": 51.0339879, - "lon": -2.2728739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP8 52", - "ref:GB:uprn": "10015375276", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2109131397, - "lat": 53.7080189, - "lon": -1.6111506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2109976493, - "lat": 51.1672594, - "lon": 0.0101242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH7 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2111208589, - "lat": 51.1408212, - "lon": 0.0693749, - "tags": { - "amenity": "post_box", - "ref": "TN8 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2111208777, - "lat": 51.1624388, - "lon": 0.0826787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2111659996, - "lat": 54.0399806, - "lon": -1.4680264, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2112124493, - "lat": 51.4087611, - "lon": -1.3299877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 22:30", - "drive_through": "no", - "mapillary": "139498194780344", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-07-01" - } -}, -{ - "type": "node", - "id": 2112316990, - "lat": 51.5693791, - "lon": -0.7616932, - "tags": { - "amenity": "post_box", - "ref": "SL7 122" - } -}, -{ - "type": "node", - "id": 2112569122, - "lat": 51.4684873, - "lon": -0.2873665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TW9 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2113458641, - "lat": 51.4759317, - "lon": -0.2850731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW9 71D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2114825863, - "lat": 54.1204220, - "lon": -2.5231638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "ref": "LA2 131D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2115087386, - "lat": 50.9186339, - "lon": -1.4212439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 213D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2115087389, - "lat": 50.9171723, - "lon": -1.4270421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 315", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2116402619, - "lat": 50.6161398, - "lon": -3.7254819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2116545894, - "lat": 51.5442827, - "lon": -0.1890220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW6 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2116595405, - "lat": 50.6197565, - "lon": -3.7136649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TQ13 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 2116628660, - "lat": 53.6124563, - "lon": -2.1355495, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2116645232, - "lat": 53.6004952, - "lon": -2.1583966, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2116682930, - "lat": 53.6163825, - "lon": -2.1579875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:30-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "OL16 304", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2116846871, - "lat": 54.0651558, - "lon": -1.5376872, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HG3 179", - "survey:date": "23/10/2021" - } -}, -{ - "type": "node", - "id": 2116886862, - "lat": 54.0352225, - "lon": -1.4926328, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2117057255, - "lat": 53.6076102, - "lon": -2.1076070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL16 201D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2117725843, - "lat": 50.4316041, - "lon": -3.5576777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 2117821915, - "lat": 53.2276405, - "lon": -0.5408668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "LN5 39;LN5 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 2118273879, - "lat": 53.7857621, - "lon": -1.5128853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2118273881, - "lat": 53.7857891, - "lon": -1.5130853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS9 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2118293686, - "lat": 52.9796573, - "lon": -2.9843754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2118296549, - "lat": 52.9795346, - "lon": -2.9630212, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2118299410, - "lat": 52.9670976, - "lon": -2.9629649, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2118310867, - "lat": 53.8040425, - "lon": -1.5282815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2118353402, - "lat": 55.8799872, - "lon": -3.5075327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 26D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2118876690, - "lat": 50.7604905, - "lon": -1.9949591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 172", - "ref:GB:uprn": "10015356092", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2119075194, - "lat": 51.7264678, - "lon": 0.4527987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2119141197, - "lat": 53.5158905, - "lon": -1.3137058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "collection times from 2012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S63 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2119235123, - "lat": 53.8059220, - "lon": -1.5330346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 80", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2119235128, - "lat": 53.8059269, - "lon": -1.5332054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS7 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2119235132, - "lat": 53.8062099, - "lon": -1.5425665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "box re/move with new houses", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 73" - } -}, -{ - "type": "node", - "id": 2119235137, - "lat": 53.8079625, - "lon": -1.5408021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2119287343, - "lat": 53.8063874, - "lon": -1.5506939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-03-04", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2119525074, - "lat": 51.5148707, - "lon": -0.3194574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "post_box:type": "pillar", - "ref": "W13 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2119692804, - "lat": 53.2033982, - "lon": -0.5523608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN5 147" - } -}, -{ - "type": "node", - "id": 2119768690, - "lat": 53.2077323, - "lon": -0.5500449, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN5 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2119779769, - "lat": 53.7646909, - "lon": -1.5522310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS11 421" - } -}, -{ - "type": "node", - "id": 2119779770, - "lat": 53.7730622, - "lon": -1.5353113, - "tags": { - "amenity": "post_box", - "note": "George VI pillar box has been replaced with Elizabethan one", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS10 749", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2119783381, - "lat": 53.2112658, - "lon": -0.5480394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN5 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2119795032, - "lat": 53.2150533, - "lon": -0.5463409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN5 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2119799468, - "lat": 53.2180317, - "lon": -0.5455394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LN5 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2119813720, - "lat": 53.2275604, - "lon": -0.5397187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2120482840, - "lat": 53.2343197, - "lon": -0.5385069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "colour": "gold", - "commemorates": "Sophie Wells, Gold Medal Winner, London 2012 Olympic Games Equestrian: Team, Open/", - "note": "Painted gold due to Olympics 2012 medal winner", - "operator": "Royal Mail", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "LN2 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2120630102, - "lat": 51.3714446, - "lon": -0.4969671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2121194324, - "lat": 51.5965800, - "lon": -0.1384680, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N10 13D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2121596714, - "lat": 55.8404734, - "lon": -4.1354893, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2121644418, - "lat": 50.8084295, - "lon": -1.5727836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 131" - } -}, -{ - "type": "node", - "id": 2121644446, - "lat": 50.8016106, - "lon": -1.5723648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 34" - } -}, -{ - "type": "node", - "id": 2121644464, - "lat": 50.7953128, - "lon": -1.5636314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 80" - } -}, -{ - "type": "node", - "id": 2121644498, - "lat": 50.7741545, - "lon": -1.5232796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2121659372, - "lat": 52.4619781, - "lon": -2.0100288, - "tags": { - "amenity": "post_box", - "ref": "B32 226" - } -}, -{ - "type": "node", - "id": 2121881740, - "lat": 53.4432893, - "lon": -2.3182218, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2122740350, - "lat": 52.0779392, - "lon": -0.2437012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2123195339, - "lat": 51.5194956, - "lon": -0.1614195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "2 apertures labelled \"stamped\" and Franked\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 3D;W1H 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2124516090, - "lat": 53.9627791, - "lon": -1.0705663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 08:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "postal_code": "YO31 7XY", - "ref": "YO31 2007", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2124610747, - "lat": 51.0608218, - "lon": -3.1154610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "colour": "red", - "name": "Kingston St. Mary Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TA2 8JL", - "ref": "TA2 287" - } -}, -{ - "type": "node", - "id": 2125229835, - "lat": 51.3973800, - "lon": -1.3213520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG14 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2125700915, - "lat": 50.7372517, - "lon": -2.0338714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 199D", - "ref:GB:uprn": "10015418329", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2126817495, - "lat": 52.5671119, - "lon": -4.0269210, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2126817568, - "lat": 52.5751946, - "lon": -4.0715522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LL36 53", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2128149281, - "lat": 53.7877324, - "lon": -1.5060679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 988D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2128149282, - "lat": 53.7939371, - "lon": -1.5297565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 387", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2128149283, - "lat": 53.7949693, - "lon": -1.4984504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS9 88" - } -}, -{ - "type": "node", - "id": 2128149284, - "lat": 53.7985838, - "lon": -1.4981738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 698" - } -}, -{ - "type": "node", - "id": 2128149285, - "lat": 53.8040259, - "lon": -1.5185814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS9 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2128227810, - "lat": 53.1573096, - "lon": -0.8945872, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2128339652, - "lat": 50.6937522, - "lon": -3.2399640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2128339653, - "lat": 50.6963925, - "lon": -3.2474218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2128341776, - "lat": 53.3812385, - "lon": -2.7260424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 32", - "royal_cypher": "yes", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 2128394610, - "lat": 54.5721794, - "lon": -1.3597218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2128888916, - "lat": 51.7130416, - "lon": 0.6137213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2129460789, - "lat": 51.0242819, - "lon": -0.8886132, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "last_checked": "2020-09-24", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU31 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2129460838, - "lat": 51.0193208, - "lon": -0.8962387, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "last_checked": "2020-09-24", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2129757586, - "lat": 53.7916311, - "lon": -1.5768099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 32" - } -}, -{ - "type": "node", - "id": 2129757590, - "lat": 53.7948028, - "lon": -1.6266476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS12 787" - } -}, -{ - "type": "node", - "id": 2129757591, - "lat": 53.7994493, - "lon": -1.5866693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS12 433" - } -}, -{ - "type": "node", - "id": 2130469164, - "lat": 50.9362138, - "lon": -1.4200196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2130472045, - "lat": 50.9382455, - "lon": -1.4296313, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2130595094, - "lat": 50.8350953, - "lon": -1.7698232, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2130595111, - "lat": 50.8464365, - "lon": -1.7792218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2130595127, - "lat": 50.8553263, - "lon": -1.7697430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH24 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2130595152, - "lat": 50.8427320, - "lon": -1.7870085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH24 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2130595194, - "lat": 50.8443122, - "lon": -1.7720981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH24 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2130595202, - "lat": 50.8452923, - "lon": -1.7876306, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 25" - } -}, -{ - "type": "node", - "id": 2130595222, - "lat": 50.8361567, - "lon": -1.7829959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 20" - } -}, -{ - "type": "node", - "id": 2130631610, - "lat": 50.7928341, - "lon": -1.7452654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 30" - } -}, -{ - "type": "node", - "id": 2131058176, - "lat": 53.2945348, - "lon": -4.1384172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2131106252, - "lat": 53.1241630, - "lon": -3.0404720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2131125972, - "lat": 55.9010105, - "lon": -3.5669242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "mapillary": "951647558915479", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 6", - "royal_cypher": "scottish_crown", - "source:position": "Mapillary 2018-05-28", - "survey:date": "2021-06-12" - } -}, -{ - "type": "node", - "id": 2131143691, - "lat": 58.0351185, - "lon": -5.3936193, - "tags": { - "amenity": "post_box", - "note": "guessed prefix", - "ref": "IV26 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2131453495, - "lat": 51.4118148, - "lon": -2.7295664, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2131675078, - "lat": 50.6999265, - "lon": -3.2447551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2132037288, - "lat": 53.2251619, - "lon": -0.5241200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2132406247, - "lat": 53.6224479, - "lon": -1.8814949, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2132407480, - "lat": 53.6247485, - "lon": -1.8855574, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2132407744, - "lat": 53.6256393, - "lon": -1.8937786, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2133582259, - "lat": 58.0565996, - "lon": -5.4186658, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IV26 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2134917347, - "lat": 50.6810932, - "lon": -3.5518244, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2135480934, - "lat": 52.0329886, - "lon": 1.1500021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP2 1381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2136497372, - "lat": 51.9791058, - "lon": 1.3704707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP11 1127" - } -}, -{ - "type": "node", - "id": 2137529926, - "lat": 54.9297390, - "lon": -6.3217579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2137924807, - "lat": 53.1959708, - "lon": -0.5350081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2138075205, - "lat": 50.8364840, - "lon": -1.0447253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "name": "Walton Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2138075209, - "lat": 50.8364840, - "lon": -1.0446838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "mail:meter": "yes", - "mail:stamped": "no", - "name": "Walton Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PO6 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139137619, - "lat": 51.3101748, - "lon": -0.4855198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU23 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 2139173766, - "lat": 53.7901994, - "lon": -1.4843413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 940", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173780, - "lat": 53.7919516, - "lon": -1.4955904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173785, - "lat": 53.7961657, - "lon": -1.4964263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS9 1022", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173786, - "lat": 53.7967871, - "lon": -1.4878294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 207" - } -}, -{ - "type": "node", - "id": 2139173787, - "lat": 53.7979704, - "lon": -1.5105023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173794, - "lat": 53.7987804, - "lon": -1.5160290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS9 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173815, - "lat": 53.7998542, - "lon": -1.5063616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS9 1034" - } -}, -{ - "type": "node", - "id": 2139173821, - "lat": 53.8003703, - "lon": -1.4840230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 846", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173824, - "lat": 53.8010452, - "lon": -1.5197024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS9 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173873, - "lat": 53.8025778, - "lon": -1.4834471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS14 1011D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173885, - "lat": 53.8028166, - "lon": -1.5076489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 471", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2139173893, - "lat": 53.8047073, - "lon": -1.4930872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 829", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173894, - "lat": 53.8049732, - "lon": -1.5035929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 224" - } -}, -{ - "type": "node", - "id": 2139173902, - "lat": 53.8054667, - "lon": -1.4878883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "LS9 816", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LS9 816", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2139173910, - "lat": 53.8079304, - "lon": -1.5075120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 511", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2139173911, - "lat": 53.8080539, - "lon": -1.5104456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2139173913, - "lat": 53.8101949, - "lon": -1.4997630, - "tags": { - "amenity": "post_box", - "note": "Royal Cypher was Eddie 7. Then the post box was vandalized, Royal Mail replaced the missing door (EVIIR) with GVIR", - "old_royal_cypher": "EVIIR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 163", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2139878518, - "lat": 53.7131042, - "lon": -1.5082850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WF1 123", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2139990182, - "lat": 51.3882822, - "lon": -3.3541833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "mapillary": "297879328830827", - "post_box:type": "pillar", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 2140011373, - "lat": 51.3892548, - "lon": -3.3486661, - "tags": { - "amenity": "post_box", - "mapillary": "240534018029201", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2140011378, - "lat": 51.3870220, - "lon": -3.3629670, - "tags": { - "amenity": "post_box", - "mapillary": "397819422057756", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2021-06-27", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 2140113769, - "lat": 50.7350215, - "lon": -1.7779063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 79", - "ref:GB:uprn": "10015346492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140113891, - "lat": 50.7318477, - "lon": -1.7793904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 55", - "ref:GB:uprn": "10015449195", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2140205146, - "lat": 50.7285882, - "lon": -1.7927105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH6 191", - "ref:GB:uprn": "10015376079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140220413, - "lat": 53.7942464, - "lon": -1.5120581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 478", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2140220419, - "lat": 53.7943530, - "lon": -1.5185316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140220423, - "lat": 53.8023917, - "lon": -1.5258925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS9 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140220428, - "lat": 53.8084950, - "lon": -1.5165285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS9 118", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2140220432, - "lat": 53.8104796, - "lon": -1.5116330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS9 388" - } -}, -{ - "type": "node", - "id": 2140257967, - "lat": 53.5943139, - "lon": -1.7300975, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD4 343", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140257976, - "lat": 53.5841307, - "lon": -1.7090525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD8 223", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140284543, - "lat": 53.5758858, - "lon": -1.7105819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140284548, - "lat": 53.5723795, - "lon": -1.7135768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 441D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140309885, - "lat": 55.8029516, - "lon": -2.2004191, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2140407951, - "lat": 52.8305797, - "lon": -1.2536238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "LE12 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140544438, - "lat": 52.1162853, - "lon": -3.6592163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "ref": "LD5 161", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140553535, - "lat": 52.1095402, - "lon": -3.6454083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "ref": "LD5 157", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140561030, - "lat": 52.1053558, - "lon": -3.6256351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "ref": "LD5 159", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2140584371, - "lat": 52.4013896, - "lon": 0.8797189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP22 7175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140606104, - "lat": 51.7649081, - "lon": 0.3205536, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2140621262, - "lat": 50.7236913, - "lon": -3.5052689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX1 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140837873, - "lat": 50.9111195, - "lon": -1.5166119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140837904, - "lat": 50.9289714, - "lon": -1.5162176, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140838057, - "lat": 50.9084516, - "lon": -1.4916165, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140838137, - "lat": 50.9172412, - "lon": -1.4966725, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140838501, - "lat": 50.9325463, - "lon": -1.5122655, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140838550, - "lat": 50.9263142, - "lon": -1.5179851, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140838557, - "lat": 50.8907146, - "lon": -1.4639496, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2140838584, - "lat": 50.9145255, - "lon": -1.4965062, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 573D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2141075180, - "lat": 52.7565970, - "lon": -1.9339560, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WS15 253", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2141155141, - "lat": 51.4637434, - "lon": -0.1411977, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2141761026, - "lat": 52.3913872, - "lon": 1.0594409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "IP22 7017", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2141908874, - "lat": 54.1583216, - "lon": -2.5070496, - "tags": { - "amenity": "post_box", - "ref": "LA6 155", - "source": "OS_OpenData_StreetView" - } -}, -{ - "type": "node", - "id": 2141995976, - "lat": 53.8044809, - "lon": -1.4522323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2141995977, - "lat": 53.8045252, - "lon": -1.4522478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS15 42", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2142043513, - "lat": 50.1970391, - "lon": -5.4257055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 2142068995, - "lat": 54.3224235, - "lon": -0.4456076, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO13 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2142433248, - "lat": 50.6799250, - "lon": -3.5312310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2145307013, - "lat": 50.6115605, - "lon": -3.3971714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2145473252, - "lat": 51.3457435, - "lon": -0.1946296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "name": "Sutton Hospital", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM2 44" - } -}, -{ - "type": "node", - "id": 2145473253, - "lat": 51.3535325, - "lon": -0.1964759, - "tags": { - "amenity": "post_box", - "ref": "SM2 61" - } -}, -{ - "type": "node", - "id": 2145473254, - "lat": 51.3562977, - "lon": -0.1973632, - "tags": { - "amenity": "post_box", - "ref": "SM2 13" - } -}, -{ - "type": "node", - "id": 2145480695, - "lat": 52.0074241, - "lon": -3.2475385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "222391735986361", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-10-15" - } -}, -{ - "type": "node", - "id": 2145836702, - "lat": 51.4432844, - "lon": -2.5573974, - "tags": { - "amenity": "post_box", - "ref": "BS4 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2146065000, - "lat": 53.8474861, - "lon": -1.5803261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS16 1018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2146279646, - "lat": 51.8547783, - "lon": -0.2025848, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL6 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2146898658, - "lat": 51.9397493, - "lon": -2.5248758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "HR9 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2147020685, - "lat": 59.0494290, - "lon": -2.8437218, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2147991838, - "lat": 50.4967525, - "lon": -3.5426155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ2", - "ref": "TQ2 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2148080728, - "lat": 57.5662662, - "lon": -4.4367341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV7 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2148292770, - "lat": 51.4966595, - "lon": -0.3256354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2148322079, - "lat": 51.4984522, - "lon": -0.3202715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "2843391702584308", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-01-18" - } -}, -{ - "type": "node", - "id": 2149272462, - "lat": 51.7757042, - "lon": 0.1856115, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2149380720, - "lat": 53.8105584, - "lon": -1.5174142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 369" - } -}, -{ - "type": "node", - "id": 2149380728, - "lat": 53.8135135, - "lon": -1.4906682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 667", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2149380735, - "lat": 53.8138950, - "lon": -1.5021665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 830" - } -}, -{ - "type": "node", - "id": 2149380741, - "lat": 53.8144618, - "lon": -1.5139406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 537" - } -}, -{ - "type": "node", - "id": 2149380757, - "lat": 53.8174398, - "lon": -1.5165894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 404" - } -}, -{ - "type": "node", - "id": 2149380766, - "lat": 53.8175051, - "lon": -1.5100394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 956" - } -}, -{ - "type": "node", - "id": 2149380771, - "lat": 53.8186660, - "lon": -1.4916279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380777, - "lat": 53.8189645, - "lon": -1.4836477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 553" - } -}, -{ - "type": "node", - "id": 2149380786, - "lat": 53.8191058, - "lon": -1.5029274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 687" - } -}, -{ - "type": "node", - "id": 2149380797, - "lat": 53.8201279, - "lon": -1.4935863, - "tags": { - "amenity": "post_box", - "inscription": "GR V", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2149380806, - "lat": 53.8208620, - "lon": -1.5094758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 686" - } -}, -{ - "type": "node", - "id": 2149380815, - "lat": 53.8211891, - "lon": -1.5037973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2149380821, - "lat": 53.8236464, - "lon": -1.4863398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 781", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380826, - "lat": 53.8239401, - "lon": -1.4996003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 556", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2149380833, - "lat": 53.8245637, - "lon": -1.5140332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 795" - } -}, -{ - "type": "node", - "id": 2149380850, - "lat": 53.8263304, - "lon": -1.5120367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 810" - } -}, -{ - "type": "node", - "id": 2149380859, - "lat": 53.8270308, - "lon": -1.5053194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS8 515;LS8 1515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380868, - "lat": 53.8272744, - "lon": -1.4933636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380906, - "lat": 53.8278251, - "lon": -1.5131416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 223" - } -}, -{ - "type": "node", - "id": 2149380914, - "lat": 53.8286856, - "lon": -1.5200977, - "tags": { - "addr:city": "Leeds", - "addr:postcode": "LS8 1PG", - "addr:street": "Gledhow Lane", - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "colour": "red", - "description": "East Wing, Gledhow House", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 226" - } -}, -{ - "type": "node", - "id": 2149380922, - "lat": 53.8290571, - "lon": -1.5259270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 993" - } -}, -{ - "type": "node", - "id": 2149380941, - "lat": 53.8292461, - "lon": -1.4996604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS8 435" - } -}, -{ - "type": "node", - "id": 2149380949, - "lat": 53.8294329, - "lon": -1.4876368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS8 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380955, - "lat": 53.8313411, - "lon": -1.5002842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS8 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380962, - "lat": 53.8335612, - "lon": -1.5269296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 347" - } -}, -{ - "type": "node", - "id": 2149380967, - "lat": 53.8337058, - "lon": -1.5170071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 305" - } -}, -{ - "type": "node", - "id": 2149380971, - "lat": 53.8346225, - "lon": -1.5205962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 392" - } -}, -{ - "type": "node", - "id": 2149380975, - "lat": 53.8357334, - "lon": -1.5120532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 586" - } -}, -{ - "type": "node", - "id": 2149380981, - "lat": 53.8378470, - "lon": -1.5247959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 864" - } -}, -{ - "type": "node", - "id": 2149380986, - "lat": 53.8380122, - "lon": -1.5173549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149380990, - "lat": 53.8391789, - "lon": -1.5123220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 488", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2149380994, - "lat": 53.8402973, - "lon": -1.5063942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 601D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149381010, - "lat": 53.8424449, - "lon": -1.5136420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS8 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149381020, - "lat": 53.8455689, - "lon": -1.5029405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149381025, - "lat": 53.8473255, - "lon": -1.5156947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 839", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2149381045, - "lat": 53.8484345, - "lon": -1.5086849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS8 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149381052, - "lat": 53.8487509, - "lon": -1.5198946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 23" - } -}, -{ - "type": "node", - "id": 2149420251, - "lat": 55.8998077, - "lon": -3.3073064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 572", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2149529077, - "lat": 51.2061557, - "lon": -1.4973996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2149636476, - "lat": 51.9353412, - "lon": -2.5781331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "HR9 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2149761249, - "lat": 51.9142673, - "lon": -2.5842905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR9 492", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2149761250, - "lat": 51.9154529, - "lon": -2.5823350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "HR9 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2149772584, - "lat": 54.5412615, - "lon": -0.7781153, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2150123943, - "lat": 51.3661304, - "lon": -0.2687469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2150761210, - "lat": 50.9105804, - "lon": -1.3293686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 621D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2150848908, - "lat": 51.6769390, - "lon": -2.0229310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "name": "Kemble Railway Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2151538625, - "lat": 50.8320702, - "lon": -0.4251176, - "tags": { - "addr:postcode": "BN13 3PB", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "name": "Tesco Extra", - "note": "Post box was moved here in 2011 following completion of the newly built Tesco store at the other end of the same car park.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN13 1612", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2151623365, - "lat": 54.2471188, - "lon": -0.7783297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "YO18 7AJ", - "ref": "YO18 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2151623366, - "lat": 54.2456292, - "lon": -0.7830759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO18 56", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2152146366, - "lat": 51.4772640, - "lon": -0.2859047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW9 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2152580325, - "lat": 51.9710493, - "lon": -2.5311566, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-11", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "wall", - "ref": "HR9 369", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2152588013, - "lat": 51.0588307, - "lon": -3.1262479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "colour": "red", - "direction": "SE", - "name": "Fulford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2153016216, - "lat": 53.0103388, - "lon": -1.1742492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_survey_date": "2015-04-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 108D", - "ref:GB:uprn": "10015857850", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2153021008, - "lat": 52.9980988, - "lon": -1.1603514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 402", - "ref:GB:uprn": "10015325443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2153021849, - "lat": 53.9577562, - "lon": -1.5316362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "post_box:type": "pillar", - "ref": "HG3 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2153023429, - "lat": 53.0029473, - "lon": -1.1574089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 381", - "ref:GB:uprn": "10015453153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2153697370, - "lat": 52.5952337, - "lon": 1.7251264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR31 3101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2154430397, - "lat": 57.1391628, - "lon": -2.1309801, - "tags": { - "addr:postcode": "AB15 4UP", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "AB15 92D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2154505382, - "lat": 50.6753039, - "lon": -3.2531760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX10 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2155003979, - "lat": 55.9634650, - "lon": -3.3133892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH4 552D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2155255557, - "lat": 51.4927010, - "lon": -0.2658196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2155255577, - "lat": 51.4928593, - "lon": -0.2678887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2156018585, - "lat": 55.8324705, - "lon": -4.1703561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "ref": "G32 135" - } -}, -{ - "type": "node", - "id": 2156653467, - "lat": 52.2450230, - "lon": 0.4083097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB8 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2156703894, - "lat": 51.0636793, - "lon": -1.5490420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SO51 544", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2157245186, - "lat": 51.4925564, - "lon": -0.2594917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2157268116, - "lat": 50.4888270, - "lon": -3.6206309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2157270371, - "lat": 52.1456056, - "lon": 1.1168733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP6 1088", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2157306410, - "lat": 52.1565388, - "lon": 1.1612705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP14 8026" - } -}, -{ - "type": "node", - "id": 2158864913, - "lat": 54.6587438, - "lon": -2.7420330, - "tags": { - "amenity": "post_box", - "ref": "CA11 316" - } -}, -{ - "type": "node", - "id": 2159151646, - "lat": 51.4927523, - "lon": -0.2558388, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-01", - "collection_times": "Mo-Fr 05:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2159512022, - "lat": 52.0356877, - "lon": -4.4623918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2159513128, - "lat": 52.0371725, - "lon": -4.4693012, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "heritage": "2", - "heritage:operator": "cadw", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref:cadw": "9703", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey", - "wikidata": "Q29488457" - } -}, -{ - "type": "node", - "id": 2159514566, - "lat": 52.0380945, - "lon": -4.4681108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159563193, - "lat": 51.9779191, - "lon": -4.4266168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2159615191, - "lat": 51.3979259, - "lon": 0.0138516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "MMIV etched in mortar above Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR2 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 2159690337, - "lat": 52.0089618, - "lon": -2.5992931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HR1 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2159690401, - "lat": 52.0118091, - "lon": -2.5258575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "mail:second_class": "yes", - "post_box:type": "wall", - "ref": "HR8 641", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2159690433, - "lat": 52.0182238, - "lon": -2.5666778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:15", - "post_box:type": "wall", - "ref": "HR1 169", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2159690454, - "lat": 52.0239662, - "lon": -2.5852376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "HR1 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159690459, - "lat": 52.0333056, - "lon": -2.6279048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "wall", - "ref": "HR1 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2159809702, - "lat": 53.0138936, - "lon": -1.2929758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG16 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2159867288, - "lat": 53.8068429, - "lon": -1.4709423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS14 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867289, - "lat": 53.8078698, - "lon": -1.4681330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "inscription": "GR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 684", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2159867290, - "lat": 53.8104697, - "lon": -1.4689142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 858", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2159867291, - "lat": 53.8118964, - "lon": -1.4581908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS14 900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867292, - "lat": 53.8127783, - "lon": -1.4765592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS14 999" - } -}, -{ - "type": "node", - "id": 2159867294, - "lat": 53.8159992, - "lon": -1.4763467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "inscription": "GR VI", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 860", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2159867295, - "lat": 53.8161074, - "lon": -1.4693968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 891", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2159867297, - "lat": 53.8172505, - "lon": -1.4578097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 717", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867298, - "lat": 53.8196021, - "lon": -1.4470298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867299, - "lat": 53.8211468, - "lon": -1.4643150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "royal_cypher=obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 982", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867301, - "lat": 53.8215239, - "lon": -1.4695230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 914", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867304, - "lat": 53.8223866, - "lon": -1.4433583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 915", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867311, - "lat": 53.8229767, - "lon": -1.4805526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 927", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867312, - "lat": 53.8242618, - "lon": -1.4530246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867313, - "lat": 53.8250268, - "lon": -1.4481881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867314, - "lat": 53.8259097, - "lon": -1.4670548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 943", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867315, - "lat": 53.8270076, - "lon": -1.4765125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 926", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867316, - "lat": 53.8270659, - "lon": -1.4692491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 977", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867317, - "lat": 53.8276884, - "lon": -1.4567654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS14 1" - } -}, -{ - "type": "node", - "id": 2159867318, - "lat": 53.8294486, - "lon": -1.4621684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867319, - "lat": 53.8295028, - "lon": -1.4551038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867320, - "lat": 53.8334209, - "lon": -1.4726527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 975", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867321, - "lat": 53.8344206, - "lon": -1.4573035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867322, - "lat": 53.8356501, - "lon": -1.4680991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 964", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867323, - "lat": 53.8371787, - "lon": -1.4559295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS14 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867324, - "lat": 53.8375667, - "lon": -1.4719309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 585", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867325, - "lat": 53.8383640, - "lon": -1.4637986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867327, - "lat": 53.8509649, - "lon": -1.4329711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS14 505" - } -}, -{ - "type": "node", - "id": 2159867329, - "lat": 53.8570454, - "lon": -1.4289274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS14 754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867331, - "lat": 53.8594796, - "lon": -1.4242662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS14 194", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2159867340, - "lat": 53.8607493, - "lon": -1.4204542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS14 336", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2159867342, - "lat": 53.8662012, - "lon": -1.4509187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS14 770", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867350, - "lat": 53.8670889, - "lon": -1.4331634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS14 314" - } -}, -{ - "type": "node", - "id": 2159867363, - "lat": 53.8690110, - "lon": -1.4662711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS14 703", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159867365, - "lat": 53.8717868, - "lon": -1.4467254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS14 395", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2159936503, - "lat": 51.6769762, - "lon": 0.4631451, - "tags": { - "amenity": "post_box", - "fixme": "position approx", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM2 66", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2159936657, - "lat": 51.6639513, - "lon": 0.4432350, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159936685, - "lat": 51.6612612, - "lon": 0.4374281, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2159985568, - "lat": 50.8527988, - "lon": -0.9663258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2159985569, - "lat": 50.8553706, - "lon": -0.9668669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2159985570, - "lat": 50.8652029, - "lon": -0.9549635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "fixme": "From passing this location on Friday 31st December 2021 I understand that this postbox has been removed, likely due to the low population in the immediate vicinity. Please can another OSM user confirm whether this postbox has definitely been removed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160043518, - "lat": 53.7253795, - "lon": -1.4355016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 423" - } -}, -{ - "type": "node", - "id": 2160043522, - "lat": 53.7302718, - "lon": -1.4065084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160043523, - "lat": 53.7349312, - "lon": -1.4089869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 616" - } -}, -{ - "type": "node", - "id": 2160043524, - "lat": 53.7359402, - "lon": -1.3935813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160043528, - "lat": 53.7385833, - "lon": -1.4028727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 784", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2160043530, - "lat": 53.7405439, - "lon": -1.3963700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 308" - } -}, -{ - "type": "node", - "id": 2160043531, - "lat": 53.7405403, - "lon": -1.4155170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 108" - } -}, -{ - "type": "node", - "id": 2160043532, - "lat": 53.7484369, - "lon": -1.4785076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS26 582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160043533, - "lat": 53.7537314, - "lon": -1.3931156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 838" - } -}, -{ - "type": "node", - "id": 2160043536, - "lat": 53.7625695, - "lon": -1.3935223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS26 196" - } -}, -{ - "type": "node", - "id": 2160043537, - "lat": 53.7653898, - "lon": -1.4165793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160043539, - "lat": 53.7661387, - "lon": -1.4237387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS26 862", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160071211, - "lat": 51.5741998, - "lon": -0.1072122, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2160171191, - "lat": 50.9198746, - "lon": -0.8688287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO18 114", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO18 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-05" - } -}, -{ - "type": "node", - "id": 2160198210, - "lat": 50.9702688, - "lon": -0.8384820, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU29 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2160202854, - "lat": 50.9793169, - "lon": -0.8132088, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2160202855, - "lat": 50.9844469, - "lon": -0.8011021, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU29 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2160213894, - "lat": 51.0264476, - "lon": -0.7967619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "GU30 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160229115, - "lat": 51.0406457, - "lon": -0.7956173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "GU30 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160243279, - "lat": 51.0571214, - "lon": -0.7868107, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU30 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160327808, - "lat": 50.9938641, - "lon": -0.7725624, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160327810, - "lat": 50.9981870, - "lon": -0.7580973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU29 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160327818, - "lat": 51.0166181, - "lon": -0.7665395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "GU29 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160337949, - "lat": 50.9592200, - "lon": -0.7750807, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU29 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160343000, - "lat": 50.9570370, - "lon": -0.7870533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU29 26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU29 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2160343001, - "lat": 50.9616811, - "lon": -0.8272844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox mounting is a brick pillar in a stone wall.", - "old_ref": "GU29 31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU29 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey_point": "2022-07-10" - } -}, -{ - "type": "node", - "id": 2160874276, - "lat": 50.8300245, - "lon": -0.4199302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1750D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2160914333, - "lat": 51.4017648, - "lon": 0.1747749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BR8 489D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2161033834, - "lat": 51.8894707, - "lon": 0.9290481, - "tags": { - "amenity": "post_box", - "source": "http://www.cyclestreets.net/location/20864/" - } -}, -{ - "type": "node", - "id": 2161221698, - "lat": 54.6164941, - "lon": -7.4908540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2161728227, - "lat": 53.2394751, - "lon": -0.5383174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN1 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2161896550, - "lat": 52.1508696, - "lon": 1.0954758, - "tags": { - "amenity": "post_box", - "ref": "IP6 1054" - } -}, -{ - "type": "node", - "id": 2161913365, - "lat": 50.9261616, - "lon": -1.3590487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 438D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2161913436, - "lat": 50.9170800, - "lon": -1.4066981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2161913441, - "lat": 50.9335255, - "lon": -1.3635990, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2161913456, - "lat": 50.9216913, - "lon": -1.3625408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 439D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2161922106, - "lat": 50.9280358, - "lon": -1.4508188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 424D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2162669389, - "lat": 53.8023097, - "lon": -3.0225741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "FY4 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2162935022, - "lat": 52.7779490, - "lon": 0.4388828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2162972010, - "lat": 52.2276790, - "lon": 0.1119520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB4 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2163157924, - "lat": 51.0311625, - "lon": -2.1511442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2163157925, - "lat": 51.0206084, - "lon": -2.1399406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2163157926, - "lat": 51.0151922, - "lon": -2.1300487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP7 91D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2163445921, - "lat": 51.9138901, - "lon": -2.5818573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR9 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2163645491, - "lat": 51.5338867, - "lon": 0.0359322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "covered": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 20", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2163748711, - "lat": 53.4863395, - "lon": -2.0966508, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2164265347, - "lat": 57.1998456, - "lon": -3.8281473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH22 24", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2164585775, - "lat": 57.1890996, - "lon": -3.8295655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:15", - "description": "square pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PH22 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2164609401, - "lat": 55.7703887, - "lon": -2.1052546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD15 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2165344644, - "lat": 51.6988204, - "lon": -0.4254897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD5 273", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 2166254818, - "lat": 51.6947440, - "lon": -0.4297324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "WD5 125" - } -}, -{ - "type": "node", - "id": 2167649325, - "lat": 55.8150997, - "lon": -2.0532935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 2167649340, - "lat": 55.8412839, - "lon": -2.0752201, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2168919331, - "lat": 52.5530199, - "lon": 0.8640645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2168919448, - "lat": 52.5582408, - "lon": 0.8641276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "fixme": "check for new collection plate", - "note": "In wall of former shop; now looks like a private house", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP25 3212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2168979230, - "lat": 52.5702623, - "lon": 0.8353042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP25 3336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169033776, - "lat": 53.0562350, - "lon": -2.2079890, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-01", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169062633, - "lat": 54.7090542, - "lon": -7.5922550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2169099353, - "lat": 51.4199095, - "lon": 0.5625091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169310656, - "lat": 56.4843344, - "lon": -3.0749557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DD2 131", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2169690537, - "lat": 53.7910218, - "lon": -1.4440115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS15 725D" - } -}, -{ - "type": "node", - "id": 2169690552, - "lat": 53.7933480, - "lon": -1.4758140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS15 805", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2169690554, - "lat": 53.7933574, - "lon": -1.4612081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 970", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690557, - "lat": 53.7938562, - "lon": -1.4438503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS15 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690562, - "lat": 53.7947642, - "lon": -1.4292395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LS15 878", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690581, - "lat": 53.7951293, - "lon": -1.4724850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 438", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2169690606, - "lat": 53.7955647, - "lon": -1.4567679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690610, - "lat": 53.7956370, - "lon": -1.4350866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690618, - "lat": 53.7961688, - "lon": -1.4658912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690627, - "lat": 53.7965660, - "lon": -1.4715682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690639, - "lat": 53.8063394, - "lon": -1.4591298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS15 700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690640, - "lat": 53.8072215, - "lon": -1.4431374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS15 522", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2169690641, - "lat": 53.8074902, - "lon": -1.4311120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690648, - "lat": 53.8081645, - "lon": -1.4587097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 619", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2169690652, - "lat": 53.8084693, - "lon": -1.4542271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 879", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690655, - "lat": 53.8103492, - "lon": -1.4475680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690656, - "lat": 53.8108015, - "lon": -1.4393895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 877", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690657, - "lat": 53.8116664, - "lon": -1.4551171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 783", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2169690659, - "lat": 53.8117057, - "lon": -1.4316199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS15 1004", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2169690663, - "lat": 53.8244033, - "lon": -1.4102413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS15 886" - } -}, -{ - "type": "node", - "id": 2169690666, - "lat": 53.8264826, - "lon": -1.3950199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS15 994" - } -}, -{ - "type": "node", - "id": 2169690670, - "lat": 53.8268550, - "lon": -1.3892172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS15 411" - } -}, -{ - "type": "node", - "id": 2169690672, - "lat": 53.8291038, - "lon": -1.3941295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS15 105" - } -}, -{ - "type": "node", - "id": 2169690673, - "lat": 53.8314281, - "lon": -1.3848418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS15 897" - } -}, -{ - "type": "node", - "id": 2169690677, - "lat": 53.8316852, - "lon": -1.3942515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS15 691" - } -}, -{ - "type": "node", - "id": 2169690681, - "lat": 53.8344507, - "lon": -1.3918487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS15 426" - } -}, -{ - "type": "node", - "id": 2169717761, - "lat": 52.9557396, - "lon": -1.1724463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG7 37", - "ref:GB:uprn": "10015471155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2169730880, - "lat": 54.9379498, - "lon": -1.5956558, - "tags": { - "amenity": "post_box", - "ref": "NE9 27" - } -}, -{ - "type": "node", - "id": 2171167732, - "lat": 52.1692199, - "lon": 1.1980070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP14 8091" - } -}, -{ - "type": "node", - "id": 2171223857, - "lat": 52.7261804, - "lon": 1.3517238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR12 1232", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2171251888, - "lat": 52.1818100, - "lon": 1.2033976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP14 8045" - } -}, -{ - "type": "node", - "id": 2171251893, - "lat": 52.1918146, - "lon": 1.2149154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP14 8090" - } -}, -{ - "type": "node", - "id": 2171985558, - "lat": 52.2408094, - "lon": 1.4175593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP17 4649", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2172076550, - "lat": 53.0071340, - "lon": -1.2829497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2172076593, - "lat": 53.0133556, - "lon": -1.2840515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 31", - "post_box:type": "wall", - "ref": "NG16 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2172153182, - "lat": 55.8497083, - "lon": -4.2282936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "height": "1?4", - "manufacturer": "McDowall Steven and Co Ltd", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G40 1140", - "royal_cypher": "GR", - "support": "ground" - } -}, -{ - "type": "node", - "id": 2172271468, - "lat": 50.9190114, - "lon": -1.4875801, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2172520158, - "lat": 50.7447114, - "lon": -1.5870737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-08-16", - "wikimedia_commons": "File:Everton, postbox № SO41 135, Milford Road - geograph.org.uk - 2480313.jpg" - } -}, -{ - "type": "node", - "id": 2173886345, - "lat": 53.6802556, - "lon": -1.5788453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF5 2004", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2174022644, - "lat": 51.8469358, - "lon": -2.6466131, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2174022714, - "lat": 51.8535473, - "lon": -2.6490901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2174158897, - "lat": 50.7415474, - "lon": -1.6964302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 7", - "ref:GB:uprn": "10015449079" - } -}, -{ - "type": "node", - "id": 2174225651, - "lat": 50.8151832, - "lon": -1.5944959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2174225660, - "lat": 50.7665292, - "lon": -1.6730213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 197" - } -}, -{ - "type": "node", - "id": 2174853095, - "lat": 52.6577085, - "lon": 1.5420200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2175204809, - "lat": 50.8110596, - "lon": -1.9171249, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH21 186", - "ref:GB:uprn": "10015804449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2176098940, - "lat": 57.4230411, - "lon": -7.3511623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "HS7 78" - } -}, -{ - "type": "node", - "id": 2178828542, - "lat": 54.6638171, - "lon": -3.3633898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CA13 1076;CA13 76", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2178839806, - "lat": 51.8114891, - "lon": -0.2091014, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 302" - } -}, -{ - "type": "node", - "id": 2179929491, - "lat": 51.3326018, - "lon": -0.3707458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2179942460, - "lat": 51.3362816, - "lon": -0.3626037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT22 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2180138621, - "lat": 50.8478592, - "lon": -1.0848488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 276", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2180178380, - "lat": 50.8513460, - "lon": -1.0824159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2180178399, - "lat": 50.8493893, - "lon": -1.0861377, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO6 278", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2180178427, - "lat": 50.8513219, - "lon": -1.0891965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 280", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2181221595, - "lat": 51.4698490, - "lon": -0.1176069, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2181575877, - "lat": 55.8987771, - "lon": -4.3212183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "G61 779" - } -}, -{ - "type": "node", - "id": 2181988631, - "lat": 52.3410085, - "lon": 1.0024568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP22 7016", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2182182495, - "lat": 55.9092861, - "lon": -4.4256797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G81 415" - } -}, -{ - "type": "node", - "id": 2182737921, - "lat": 51.7370783, - "lon": 0.3893210, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2183388669, - "lat": 51.5620773, - "lon": -1.0655305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "OX10 499" - } -}, -{ - "type": "node", - "id": 2183432030, - "lat": 52.9957714, - "lon": -1.2016381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 17", - "ref:GB:uprn": "10015449460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2184018156, - "lat": 52.3792206, - "lon": 0.9970780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2184667140, - "lat": 52.8380479, - "lon": -1.1433141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2184667142, - "lat": 52.8451758, - "lon": -1.1422318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan Engineering", - "post_box:type": "lamp", - "ref": "LE12 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2184667149, - "lat": 52.8603182, - "lon": -1.1361265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG11 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2184667155, - "lat": 52.8952770, - "lon": -1.1502525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "NG11 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2185039297, - "lat": 53.7616543, - "lon": -2.3698933, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2185505646, - "lat": 50.9302066, - "lon": -1.3853902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2185507075, - "lat": 50.9314022, - "lon": -1.3906238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 311D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2185579614, - "lat": 52.9366227, - "lon": 0.4879028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "PE36 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2186471888, - "lat": 52.7313891, - "lon": -1.1121407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "mapillary": "167392118720516", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE12 91", - "source": "survey", - "survey:date": "2020-01-16" - } -}, -{ - "type": "node", - "id": 2186471975, - "lat": 52.7320014, - "lon": -1.1053115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 158", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2186943476, - "lat": 52.3766365, - "lon": -2.4381514, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2187536106, - "lat": 52.3261254, - "lon": -0.0783169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE27 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2188345353, - "lat": 51.3724497, - "lon": -0.4601903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT13 32;KT13 3201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2188641169, - "lat": 51.4126303, - "lon": -0.4037281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW16 264", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188641172, - "lat": 51.4082066, - "lon": -0.4153265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW16 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188641173, - "lat": 51.4107097, - "lon": -0.4128479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW16 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702606, - "lat": 51.4020451, - "lon": -0.4194103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702612, - "lat": 51.4137362, - "lon": -0.4223424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 249", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702616, - "lat": 51.4083574, - "lon": -0.3991364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 246D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702621, - "lat": 51.4124560, - "lon": -0.3904463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 237", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702631, - "lat": 51.4084009, - "lon": -0.4051448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702642, - "lat": 51.4179663, - "lon": -0.4088463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW16 243D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702650, - "lat": 51.4146928, - "lon": -0.4182572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 239D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702673, - "lat": 51.4171100, - "lon": -0.4135519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188702677, - "lat": 51.4110817, - "lon": -0.4172628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW16 248", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2188890711, - "lat": 56.4597520, - "lon": -3.0546169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 140D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2188890712, - "lat": 56.4609447, - "lon": -3.0604276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2188890713, - "lat": 56.4560054, - "lon": -3.0629908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2189101679, - "lat": 51.6113098, - "lon": -0.4159332, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2189508039, - "lat": 52.2151940, - "lon": 0.1191938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB4 144D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2189739003, - "lat": 53.5507960, - "lon": -2.1658450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "562823908035733", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-04-14" - } -}, -{ - "type": "node", - "id": 2190253783, - "lat": 53.8687118, - "lon": -1.8435093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD16 609D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2191102990, - "lat": 52.1044890, - "lon": -4.1159010, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2191327272, - "lat": 52.0386147, - "lon": -2.6442235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "HR1 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2191327291, - "lat": 52.0397734, - "lon": -2.6568771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "HR1 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2191327302, - "lat": 52.0542814, - "lon": -2.7055260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "HR1 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2191327339, - "lat": 52.0653678, - "lon": -2.6344107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "note": "Brick pillar with capstone dated 1893", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HR1 79", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2191327361, - "lat": 52.0658932, - "lon": -2.6587836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "mapillary": "208600464215808", - "post_box:type": "lamp", - "ref": "HR1 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-10-15", - "survey:date": "2020-10-15" - } -}, -{ - "type": "node", - "id": 2191327379, - "lat": 52.0667764, - "lon": -2.6447522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "HR1 619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2191677554, - "lat": 50.9028429, - "lon": -1.3193684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2191677808, - "lat": 50.9486672, - "lon": -1.3629026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 14:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO18 104", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2192366228, - "lat": 56.4049203, - "lon": -3.2108769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2192402748, - "lat": 51.4890415, - "lon": -2.5854323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS7 359D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2192582675, - "lat": 53.1960296, - "lon": -1.8766502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SK17 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2192865493, - "lat": 53.2144720, - "lon": -1.9362583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SK17 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2193042775, - "lat": 56.4575782, - "lon": -3.0579462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 273D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2193042776, - "lat": 56.4514697, - "lon": -3.0733904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 143D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2194414439, - "lat": 53.1460883, - "lon": -2.1718033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2194474658, - "lat": 50.7013644, - "lon": -3.6123699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "EX6 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2194521226, - "lat": 53.1607092, - "lon": -2.1575795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "CW12 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2194551539, - "lat": 51.4306956, - "lon": -2.6107531, - "tags": { - "amenity": "post_box", - "ref": "BS13 20" - } -}, -{ - "type": "node", - "id": 2195056432, - "lat": 52.0555239, - "lon": 1.1589243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2195105245, - "lat": 52.0581377, - "lon": 1.2286899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP5 1378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2195572127, - "lat": 54.6631622, - "lon": -2.7453750, - "tags": { - "amenity": "post_box", - "ref": "CA11 20" - } -}, -{ - "type": "node", - "id": 2195745859, - "lat": 50.7519004, - "lon": -2.0066853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 286", - "ref:GB:uprn": "10015471188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2195762188, - "lat": 50.3890104, - "lon": -3.9348954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PL21 659", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2195819410, - "lat": 50.7562194, - "lon": -2.0026802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 175", - "ref:GB:uprn": "10015474438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2195819414, - "lat": 50.7548171, - "lon": -2.0014665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 210", - "ref:GB:uprn": "10015385089", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2196286037, - "lat": 57.2492266, - "lon": -3.7594894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:15", - "post_box:type": "lamp", - "ref": "PH24 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2196327118, - "lat": 53.8159725, - "lon": -1.8156866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2196327411, - "lat": 50.9132286, - "lon": -1.3040617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 737", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2196327412, - "lat": 50.9148781, - "lon": -1.3340675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 749D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2196327413, - "lat": 50.9159438, - "lon": -1.2923909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 131", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2196415906, - "lat": 56.5896933, - "lon": -3.4660650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH10 121", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2196506619, - "lat": 56.0631325, - "lon": -3.2370198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-19", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY3 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2196532899, - "lat": 51.4946525, - "lon": -0.2551081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2196646100, - "lat": 56.4885046, - "lon": -3.1035208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "crochet_top": "yes", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD2 93D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2197906274, - "lat": 57.0543757, - "lon": -2.5187200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-16", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB31 351", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Street Walking;survey" - } -}, -{ - "type": "node", - "id": 2197906575, - "lat": 57.0519484, - "lon": -2.5091608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB31 228", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Street Walking;survey" - } -}, -{ - "type": "node", - "id": 2197909967, - "lat": 57.0554887, - "lon": -2.5133109, - "tags": { - "addr:city": "Banchory", - "addr:country": "GB", - "addr:postcode": "AB31 5RS", - "addr:street": "Corsee Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 272", - "royal_cypher": "scottish_crown", - "source": "Street walking;survey" - } -}, -{ - "type": "node", - "id": 2198033611, - "lat": 56.4699173, - "lon": -3.1620975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH14 189", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2198322151, - "lat": 51.9483674, - "lon": -0.2749830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG5 541;SG5 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2198421856, - "lat": 50.9149792, - "lon": -1.2964052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 628", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2198759225, - "lat": 53.0622020, - "lon": -2.1963900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2198889725, - "lat": 51.7015235, - "lon": -0.4246125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "WD5 101" - } -}, -{ - "type": "node", - "id": 2198914310, - "lat": 51.6519177, - "lon": 0.5357542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CM3 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2199232229, - "lat": 51.5534236, - "lon": -0.0950737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "N5 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2199373432, - "lat": 51.3197180, - "lon": -1.5415108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 123" - } -}, -{ - "type": "node", - "id": 2199539436, - "lat": 51.3827253, - "lon": -0.0188975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR4 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2200147246, - "lat": 56.4152853, - "lon": -3.1812629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH2 224", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2200195337, - "lat": 51.6224588, - "lon": 0.5339726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30" - } -}, -{ - "type": "node", - "id": 2200225453, - "lat": 56.3910760, - "lon": -3.2160752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PH2 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2202209740, - "lat": 50.8592181, - "lon": -3.8052632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX17 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 2202402588, - "lat": 50.8156389, - "lon": -1.0752546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "PO2 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2202941859, - "lat": 52.1730334, - "lon": -1.4932499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2202976913, - "lat": 51.1999215, - "lon": 0.0638078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "post_box:type": "pillar", - "ref": "TN8 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2203236130, - "lat": 51.4458442, - "lon": -2.4838095, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2203298740, - "lat": 52.5682444, - "lon": -0.3884724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE8 65D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2203864168, - "lat": 50.7398552, - "lon": -1.7473357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 52", - "ref:GB:uprn": "10015375933", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2204381528, - "lat": 56.5283165, - "lon": -3.4632458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 152", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2205040349, - "lat": 53.8310403, - "lon": -1.6072617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS16 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040350, - "lat": 53.8331324, - "lon": -1.6060487, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS16 760", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040351, - "lat": 53.8338917, - "lon": -1.5965563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040353, - "lat": 53.8358915, - "lon": -1.6093468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 639", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040354, - "lat": 53.8363228, - "lon": -1.6005560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2205040355, - "lat": 53.8379594, - "lon": -1.5989868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 607", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040357, - "lat": 53.8386361, - "lon": -1.6090512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 992", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040358, - "lat": 53.8387954, - "lon": -1.5841374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040359, - "lat": 53.8392235, - "lon": -1.6045099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS16 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040361, - "lat": 53.8410992, - "lon": -1.5952249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 493" - } -}, -{ - "type": "node", - "id": 2205040362, - "lat": 53.8421727, - "lon": -1.6014063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 655", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040367, - "lat": 53.8453474, - "lon": -1.6073953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 902", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040368, - "lat": 53.8455748, - "lon": -1.6008617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS16 968", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040370, - "lat": 53.8454868, - "lon": -1.6255516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 949", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2205040372, - "lat": 53.8485410, - "lon": -1.6039235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 905", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040373, - "lat": 53.8486960, - "lon": -1.6199029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 950", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040374, - "lat": 53.8489882, - "lon": -1.6237589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040375, - "lat": 53.8491478, - "lon": -1.5899878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 793", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040377, - "lat": 53.8502721, - "lon": -1.5961594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 851", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040378, - "lat": 53.8503032, - "lon": -1.6107798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040379, - "lat": 53.8508926, - "lon": -1.6180170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040380, - "lat": 53.8512411, - "lon": -1.6279840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS16 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040381, - "lat": 53.8515596, - "lon": -1.6010725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 774", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2205040382, - "lat": 53.8516445, - "lon": -1.5923999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 490", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2205040384, - "lat": 53.8527824, - "lon": -1.5802606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS16 895", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040385, - "lat": 53.8529227, - "lon": -1.6227123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 651", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2205040386, - "lat": 53.8530164, - "lon": -1.5776268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS16 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040387, - "lat": 53.8533575, - "lon": -1.6134106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 432" - } -}, -{ - "type": "node", - "id": 2205040389, - "lat": 53.8534753, - "lon": -1.6045804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 901" - } -}, -{ - "type": "node", - "id": 2205040390, - "lat": 53.8543662, - "lon": -1.5959408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS16 599" - } -}, -{ - "type": "node", - "id": 2205040392, - "lat": 53.8547153, - "lon": -1.6268440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040395, - "lat": 53.8550388, - "lon": -1.5884688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS16 406", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2205040397, - "lat": 53.8564630, - "lon": -1.5934957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 919", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040398, - "lat": 53.8568006, - "lon": -1.5799089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040400, - "lat": 53.8568060, - "lon": -1.6001313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS16 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040401, - "lat": 53.8574785, - "lon": -1.6089595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040402, - "lat": 53.8583350, - "lon": -1.6223652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040404, - "lat": 53.8584591, - "lon": -1.6255075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 325" - } -}, -{ - "type": "node", - "id": 2205040405, - "lat": 53.8603607, - "lon": -1.6154418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 254", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 2205040406, - "lat": 53.8625173, - "lon": -1.6210107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040408, - "lat": 53.8780653, - "lon": -1.5642278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS16 575" - } -}, -{ - "type": "node", - "id": 2205040409, - "lat": 53.8783861, - "lon": -1.6041140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS16 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040410, - "lat": 53.8792100, - "lon": -1.6247471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS16 710" - } -}, -{ - "type": "node", - "id": 2205040412, - "lat": 53.8810202, - "lon": -1.6164207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS16 513" - } -}, -{ - "type": "node", - "id": 2205040413, - "lat": 53.8839250, - "lon": -1.6096104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 843" - } -}, -{ - "type": "node", - "id": 2205040414, - "lat": 53.8844614, - "lon": -1.6189229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS16 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2205040415, - "lat": 53.8851263, - "lon": -1.6239214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS16 91" - } -}, -{ - "type": "node", - "id": 2205040417, - "lat": 53.8865373, - "lon": -1.6440762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS16 791" - } -}, -{ - "type": "node", - "id": 2205040418, - "lat": 53.8875278, - "lon": -1.6137638, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS16 1025" - } -}, -{ - "type": "node", - "id": 2205040419, - "lat": 53.8884209, - "lon": -1.6224009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS16 923" - } -}, -{ - "type": "node", - "id": 2205076634, - "lat": 51.2615408, - "lon": -0.2249019, - "tags": { - "amenity": "post_box", - "ref": "KT20 105" - } -}, -{ - "type": "node", - "id": 2205115397, - "lat": 54.3148558, - "lon": -2.7287747, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 14" - } -}, -{ - "type": "node", - "id": 2205497396, - "lat": 51.1559152, - "lon": 0.8568903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TN23 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206792701, - "lat": 51.2735163, - "lon": 0.1738664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206837413, - "lat": 52.9631874, - "lon": -1.1608987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "wall", - "ref": "NG1 12", - "ref:GB:uprn": "10015478038", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2206861057, - "lat": 53.8308655, - "lon": -1.6346315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS18 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206861059, - "lat": 53.8319942, - "lon": -1.6407705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "gold", - "commemorates": "Alistair Brownlee", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Alistair Brownlee Gold Medal Winner London 2012 Olympic Games Triathlon: Men's", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS18 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206861062, - "lat": 53.8325953, - "lon": -1.6628985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS18 331" - } -}, -{ - "type": "node", - "id": 2206861067, - "lat": 53.8341992, - "lon": -1.6504636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206861071, - "lat": 53.8344728, - "lon": -1.6376872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 578", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2206861075, - "lat": 53.8349174, - "lon": -1.6201999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 581", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206861085, - "lat": 53.8350793, - "lon": -1.6450992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 501", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2206861088, - "lat": 53.8370151, - "lon": -1.6419273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS18 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206861091, - "lat": 53.8370983, - "lon": -1.6198550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 500" - } -}, -{ - "type": "node", - "id": 2206861095, - "lat": 53.8375732, - "lon": -1.6298127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "fixme": "survey. new road layout", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 59" - } -}, -{ - "type": "node", - "id": 2206861099, - "lat": 53.8388634, - "lon": -1.6502408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS18 761" - } -}, -{ - "type": "node", - "id": 2206861102, - "lat": 53.8417743, - "lon": -1.6261424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS18 580" - } -}, -{ - "type": "node", - "id": 2206861105, - "lat": 53.8418922, - "lon": -1.6354414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS18 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2206861107, - "lat": 53.8455995, - "lon": -1.6332059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS18 22" - } -}, -{ - "type": "node", - "id": 2206861108, - "lat": 53.8490034, - "lon": -1.6396719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS18 116" - } -}, -{ - "type": "node", - "id": 2206861109, - "lat": 53.8494214, - "lon": -1.6554120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS18 523" - } -}, -{ - "type": "node", - "id": 2206861113, - "lat": 53.8586682, - "lon": -1.6415234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS18 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2206861117, - "lat": 53.8738954, - "lon": -1.6356555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS18 1021" - } -}, -{ - "type": "node", - "id": 2206888652, - "lat": 51.5160314, - "lon": -0.1546602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-17", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "W1H 15;W1H 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2207164218, - "lat": 51.3002172, - "lon": -0.4923614, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-06", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "GU23 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2207268756, - "lat": 53.0226706, - "lon": -0.8688540, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2207321750, - "lat": 53.5169389, - "lon": -1.2756798, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2207521025, - "lat": 53.8700991, - "lon": -1.6900686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LS19 866D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "OS_OpenData_VectorMap_District;survey" - } -}, -{ - "type": "node", - "id": 2207521027, - "lat": 53.8703677, - "lon": -1.6793348, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LS19 888D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 2207522681, - "lat": 53.8838652, - "lon": -1.6662095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LS19 800", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2207887431, - "lat": 53.9288170, - "lon": -1.5803953, - "tags": { - "amenity": "post_box", - "ref": "LS17 855", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2207917115, - "lat": 53.9896035, - "lon": -1.5431760, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208669685, - "lat": 54.0981461, - "lon": -1.6113848, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208669689, - "lat": 54.1051470, - "lon": -1.6213446, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208669692, - "lat": 54.1253596, - "lon": -1.6446779, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208669706, - "lat": 54.1495595, - "lon": -1.6298726, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208669741, - "lat": 51.0883769, - "lon": -4.0523996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2208716800, - "lat": 54.1639003, - "lon": -1.6529677, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208716903, - "lat": 54.1448670, - "lon": -1.6766871, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HG4 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208717073, - "lat": 54.0761645, - "lon": -1.8009906, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG3 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2208717090, - "lat": 54.0703258, - "lon": -1.8404051, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG3 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2209033698, - "lat": 51.5182675, - "lon": -0.1460871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W1G 121P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2209186221, - "lat": 52.0402560, - "lon": 1.2789475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1023" - } -}, -{ - "type": "node", - "id": 2209201893, - "lat": 53.1086013, - "lon": -0.4027438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN4 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2209217207, - "lat": 51.9990233, - "lon": 1.3136589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2210472832, - "lat": 55.9228765, - "lon": -4.1740289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2210489785, - "lat": 51.6933287, - "lon": -0.4341103, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-05", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD5 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2211189551, - "lat": 50.9755311, - "lon": -1.4261522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO52 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2211189619, - "lat": 50.9736473, - "lon": -1.4399874, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2211385757, - "lat": 53.0019052, - "lon": -0.8641307, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2211432907, - "lat": 53.0062489, - "lon": -0.8969940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2211702279, - "lat": 51.9418261, - "lon": -2.9818230, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR2 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2212044437, - "lat": 52.0177885, - "lon": -3.0541057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR2 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2212870149, - "lat": 51.0393391, - "lon": -0.2080506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH17 79", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2213916129, - "lat": 52.7537006, - "lon": -1.1525738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 67", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2213961199, - "lat": 50.9224918, - "lon": -1.2982663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-03-01", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO30 756", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2213961202, - "lat": 50.9298465, - "lon": -1.2944840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 754", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2213961206, - "lat": 50.9324345, - "lon": -1.2989678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 659", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2214595568, - "lat": 51.6907259, - "lon": -0.7842723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 2214805644, - "lat": 53.8543912, - "lon": -1.9158555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD21 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2214979828, - "lat": 53.8978724, - "lon": -1.9629372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2215243927, - "lat": 51.3660331, - "lon": -2.1353398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30; Su off", - "name": "Sarum Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN12 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2215243928, - "lat": 51.3662308, - "lon": -2.1433558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30; Su off", - "name": "Hornbeam Crescent", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN12 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2216922982, - "lat": 52.3183287, - "lon": 1.2725227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP21 7058", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2217388243, - "lat": 56.0008946, - "lon": -2.5151721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "EH42 205" - } -}, -{ - "type": "node", - "id": 2218392957, - "lat": 51.4932288, - "lon": -0.1541241, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-22", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "The Meadow Foundry Co Ltd, Mansfield, Notts", - "post_box:type": "pillar", - "ref": "SW1W 41D;SW1W 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2218425700, - "lat": 55.0351061, - "lon": -2.7767558, - "tags": { - "amenity": "post_box", - "ref": "CA6 164" - } -}, -{ - "type": "node", - "id": 2218438054, - "lat": 51.4923736, - "lon": -0.1481799, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-14", - "check_date:ref": "2022-03-14", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "McDowall, Stevens & Co Ltd, London and Falkirk", - "post_box:type": "pillar", - "ref": "SW1W 52;SW1W 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2218481370, - "lat": 56.0036237, - "lon": -2.5260541, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH42 213", - "support": "wall_mounted", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 2218536380, - "lat": 51.6914732, - "lon": -0.8073384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 229", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 2218536534, - "lat": 51.6897124, - "lon": -0.7963132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 2218577271, - "lat": 51.4426108, - "lon": -2.8611302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS21 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2219698022, - "lat": 51.4781068, - "lon": -0.1207613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2219945836, - "lat": 54.3808483, - "lon": -6.0710101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2223383592, - "lat": 50.4564436, - "lon": -4.4917914, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 2223502455, - "lat": 52.1106324, - "lon": -0.4328261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 2224839227, - "lat": 54.9887400, - "lon": -1.7113050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2224844421, - "lat": 53.6591060, - "lon": -2.9864720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "PR9 100" - } -}, -{ - "type": "node", - "id": 2224868197, - "lat": 53.0497120, - "lon": -2.1370780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2224871734, - "lat": 53.0500750, - "lon": -2.1493750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2225414228, - "lat": 52.5041022, - "lon": -0.7158031, - "tags": { - "amenity": "post_box", - "ref": "NN17 175", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2225420323, - "lat": 53.6846226, - "lon": -0.6660889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2225422196, - "lat": 53.6780522, - "lon": -0.6715580, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2225503826, - "lat": 52.9810585, - "lon": -1.1463931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2225510350, - "lat": 50.6183960, - "lon": -3.7193758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 218", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "streetlevel imagery;survey;local knowledge;aerial imagery" - } -}, -{ - "type": "node", - "id": 2225815851, - "lat": 51.3778706, - "lon": -2.8890982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS22 82", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2226175948, - "lat": 53.3912309, - "lon": -0.3433842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "LN8 191", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2228992247, - "lat": 54.3098516, - "lon": -2.7346652, - "tags": { - "amenity": "post_box", - "ref": "LA9 269" - } -}, -{ - "type": "node", - "id": 2228992248, - "lat": 54.3049382, - "lon": -2.7216326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA9 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2229440001, - "lat": 54.4025718, - "lon": -6.2411245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2229489322, - "lat": 50.4524058, - "lon": -4.4787565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "gps_survey" - } -}, -{ - "type": "node", - "id": 2229601310, - "lat": 50.7589572, - "lon": -1.5387508, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "colour": "gold", - "note": "Olympic golden postbox. Ben Ainslie The text reads: \"This post box has been painted gold by Royal Mail to celebrate Ben Ainslie Gold medal winner London 2012 Olympic Games Sailing: Finn-Men's Heavyweight Dinghy\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO41 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2229794607, - "lat": 50.8211573, - "lon": -1.0763218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2229828325, - "lat": 51.0620872, - "lon": -3.1416005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30, Sa 10:00", - "colour": "red", - "direction": "WNW", - "name": "Yarford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA2 8AN", - "ref": "TA2 81" - } -}, -{ - "type": "node", - "id": 2231468882, - "lat": 51.4986378, - "lon": -0.1798692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:manufacturer": "Carron Co., Falkirk", - "post_box:type": "pillar", - "ref": "SW7 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2232220634, - "lat": 51.7552443, - "lon": -0.4540065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 2232220635, - "lat": 51.7558154, - "lon": -0.4511044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 2233258719, - "lat": 52.0602501, - "lon": 1.1481438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2234092910, - "lat": 52.2190867, - "lon": 0.1175250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB4 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2235375493, - "lat": 52.8968762, - "lon": -1.1794894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 386D", - "ref:GB:uprn": "10015806718", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2235375581, - "lat": 52.9011741, - "lon": -1.1730678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG11 375", - "ref:GB:uprn": "10015338922", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2235614960, - "lat": 51.9255920, - "lon": 0.5066071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 79D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2236856684, - "lat": 51.3656065, - "lon": -0.2522361, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2238266778, - "lat": 51.5460311, - "lon": -1.7582443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 335" - } -}, -{ - "type": "node", - "id": 2239533515, - "lat": 50.7642441, - "lon": -1.7710572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 48", - "ref:GB:uprn": "10015393850" - } -}, -{ - "type": "node", - "id": 2239853319, - "lat": 52.3087613, - "lon": -1.1651996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2239868934, - "lat": 51.0785173, - "lon": -3.1689923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2239888366, - "lat": 52.7478569, - "lon": 1.6416691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR29 2926", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2240023463, - "lat": 53.9468333, - "lon": -1.1246449, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2240046647, - "lat": 52.9480499, - "lon": -1.1559276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG7 28", - "ref:GB:uprn": "10015428191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2240046652, - "lat": 52.9560372, - "lon": -1.1563676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG1 473", - "ref:GB:uprn": "10015472907", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2240061518, - "lat": 50.9635572, - "lon": 0.0217923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 493" - } -}, -{ - "type": "node", - "id": 2241370137, - "lat": 50.7522362, - "lon": -1.7649554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 38", - "ref:GB:uprn": "10015387377", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2241370172, - "lat": 50.7581055, - "lon": -1.7695311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH23 89", - "ref:GB:uprn": "10015426963", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2241370197, - "lat": 50.7459552, - "lon": -1.7695339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Martins Hill Lane Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH23 60", - "ref:GB:uprn": "10015456109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "url": "https://www.royalmail.com/services-near-you/postbox/bh23-martinshill-lane-bh23-7lg/0000BH2360" - } -}, -{ - "type": "node", - "id": 2241370250, - "lat": 50.7449218, - "lon": -1.7595561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015409416" - } -}, -{ - "type": "node", - "id": 2241970459, - "lat": 51.7015203, - "lon": -2.3635710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "collection_times_checked": "2021-07-12", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL11 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2242195149, - "lat": 52.5708994, - "lon": 0.3829467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242294190, - "lat": 53.8125286, - "lon": -1.5984270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS5 255" - } -}, -{ - "type": "node", - "id": 2242294197, - "lat": 53.8226096, - "lon": -1.6050536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS5 979", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2242294199, - "lat": 53.8232768, - "lon": -1.6132088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS5 786", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2242294201, - "lat": 53.8262070, - "lon": -1.6100026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS5 469", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2242294204, - "lat": 53.8284199, - "lon": -1.6162767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS5 642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242405618, - "lat": 50.9975773, - "lon": -1.4621082, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 511D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242409437, - "lat": 52.7089335, - "lon": 0.2929457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242416313, - "lat": 53.8085705, - "lon": -1.5702562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242416316, - "lat": 53.8108134, - "lon": -1.5653306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242416318, - "lat": 53.8165492, - "lon": -1.5516455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242416319, - "lat": 53.8182259, - "lon": -1.5645174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS6 512", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2242416320, - "lat": 53.8200217, - "lon": -1.5764082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS6 25", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2242416321, - "lat": 53.8297347, - "lon": -1.6032374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS6 917", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242494935, - "lat": 52.8693281, - "lon": 1.1647052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2242579281, - "lat": 52.3066414, - "lon": -1.1270409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 435", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242579282, - "lat": 52.3133925, - "lon": -1.1192098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN6 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242581556, - "lat": 52.4041041, - "lon": -1.1357031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 495", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2242685278, - "lat": 53.8113692, - "lon": -1.5387557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS7 15" - } -}, -{ - "type": "node", - "id": 2242685279, - "lat": 53.8121105, - "lon": -1.5305465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "old_post_box:type": "pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS7 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242685280, - "lat": 53.8129832, - "lon": -1.5338489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 135", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2242685281, - "lat": 53.8163130, - "lon": -1.5241860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 429" - } -}, -{ - "type": "node", - "id": 2242685282, - "lat": 53.8176695, - "lon": -1.5402155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS7 767", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2242685283, - "lat": 53.8220849, - "lon": -1.5325435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 341", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2242685284, - "lat": 53.8251088, - "lon": -1.5467900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 663", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2242685285, - "lat": 53.8259017, - "lon": -1.5393721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 584", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2242685286, - "lat": 53.8268761, - "lon": -1.5284652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 677" - } -}, -{ - "type": "node", - "id": 2242685287, - "lat": 53.8273043, - "lon": -1.5618904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2242685288, - "lat": 53.8275583, - "lon": -1.5542454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 693" - } -}, -{ - "type": "node", - "id": 2242685289, - "lat": 53.8277491, - "lon": -1.5469230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 121", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2242685290, - "lat": 53.8286202, - "lon": -1.5421929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 812" - } -}, -{ - "type": "node", - "id": 2242685292, - "lat": 53.8293867, - "lon": -1.5341405, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 120" - } -}, -{ - "type": "node", - "id": 2242685293, - "lat": 53.8322390, - "lon": -1.5470644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 167" - } -}, -{ - "type": "node", - "id": 2242685294, - "lat": 53.8332487, - "lon": -1.5439719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS7 762" - } -}, -{ - "type": "node", - "id": 2242685295, - "lat": 53.8360018, - "lon": -1.5400711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "historic": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 342", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2242753338, - "lat": 51.4361855, - "lon": -2.8522316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:40; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS21 1102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2243281769, - "lat": 51.6077645, - "lon": -0.4250796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA6 110", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 2243345762, - "lat": 50.8383256, - "lon": -2.8705047, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TA20 497", - "ref:GB:uprn": "10015389519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2244399952, - "lat": 54.3345680, - "lon": -1.4258111, - "tags": { - "amenity": "post_box", - "ref": "DL6 75" - } -}, -{ - "type": "node", - "id": 2244650989, - "lat": 54.9767444, - "lon": -1.6615400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE15 174" - } -}, -{ - "type": "node", - "id": 2244755159, - "lat": 51.2668710, - "lon": 0.3605026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME18 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2245160428, - "lat": 50.7569929, - "lon": -1.5107458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 54" - } -}, -{ - "type": "node", - "id": 2245243491, - "lat": 52.2108194, - "lon": -1.2855939, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "CV47 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2245243588, - "lat": 52.2159393, - "lon": -1.2856863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV47 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2245308161, - "lat": 50.8534424, - "lon": -2.8900048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA20 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2245313665, - "lat": 50.8548670, - "lon": -2.9257517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA20 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2245448295, - "lat": 50.8674320, - "lon": -2.9585073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA20 292", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2245507333, - "lat": 50.9075583, - "lon": -2.9401255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2245507337, - "lat": 50.9268736, - "lon": -2.9039216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA19 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2245507338, - "lat": 50.9275736, - "lon": -2.9225143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA19 800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2245513067, - "lat": 50.9180791, - "lon": -2.8882029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA19 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2245515942, - "lat": 50.8775268, - "lon": -2.8652889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA20 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2245520141, - "lat": 50.8448573, - "lon": -2.8321351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT8 108", - "ref:GB:uprn": "10015305679", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2245552577, - "lat": 51.4713328, - "lon": -2.5970706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "BS6 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2246924833, - "lat": 50.8286437, - "lon": -2.3348125, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2247127821, - "lat": 52.1220506, - "lon": -2.5542260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "HR7 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2247165623, - "lat": 51.4979901, - "lon": -0.2075917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "W14 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2247165624, - "lat": 51.5000447, - "lon": -0.2046142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "W14 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2247170205, - "lat": 52.6289429, - "lon": -1.1311345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LE1 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2247198505, - "lat": 51.5001179, - "lon": -0.1699882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "SW7 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 2247296658, - "lat": 51.5007023, - "lon": -0.1985408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "W8 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2247388289, - "lat": 51.1155040, - "lon": -2.3231437, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249274141, - "lat": 50.3531913, - "lon": -4.4535437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL13 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 2249290637, - "lat": 50.8996507, - "lon": -1.1875223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO17 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2249302475, - "lat": 53.2515393, - "lon": -0.1421303, - "tags": { - "amenity": "post_box", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2249394705, - "lat": 51.0764233, - "lon": -2.2547659, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249394706, - "lat": 51.0831145, - "lon": -2.2590090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:type": "wall", - "ref": "BA12 78", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2249394708, - "lat": 51.0871914, - "lon": -2.2642244, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249394709, - "lat": 51.0907720, - "lon": -2.2648378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "post_box:type": "wall", - "ref": "BA12 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2249428053, - "lat": 50.9919303, - "lon": -2.2604207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP7 30", - "ref:GB:uprn": "10015375291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249436272, - "lat": 51.0306125, - "lon": -2.2179814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP7 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249437473, - "lat": 51.0056683, - "lon": -2.2877025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "994661678528897", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref:GB:uprn": "10015280151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 2249446841, - "lat": 51.0385026, - "lon": -2.2917078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP8 58", - "ref:GB:uprn": "10015844940", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2249448557, - "lat": 51.0528524, - "lon": -2.2907523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP8 61", - "ref:GB:uprn": "10015315210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249448567, - "lat": 51.0565494, - "lon": -2.2875531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP8 70", - "ref:GB:uprn": "10015381844", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2249448575, - "lat": 51.0876717, - "lon": -2.3054236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 79D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2251382203, - "lat": 52.0026133, - "lon": 1.0558192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP9 1069", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2251382205, - "lat": 52.0035619, - "lon": 1.0499606, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-22", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP9 1206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2251382218, - "lat": 52.0040142, - "lon": 1.0425603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP9 1401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2251387138, - "lat": 51.0103115, - "lon": -2.1969370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP7 106", - "ref:GB:uprn": "10015302202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2252626962, - "lat": 52.4017596, - "lon": 1.0736880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2252627030, - "lat": 52.5795353, - "lon": 0.8681716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "IP25 3388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2252781802, - "lat": 51.1674301, - "lon": 0.1397739, - "tags": { - "amenity": "post_box", - "ref": "TN8 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2253168396, - "lat": 55.2755994, - "lon": -4.7285212, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2253168434, - "lat": 55.2778595, - "lon": -4.7253973, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2255593218, - "lat": 52.5637327, - "lon": 0.7793311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2255618001, - "lat": 53.7056771, - "lon": -1.7888927, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2255704373, - "lat": 52.1678743, - "lon": -1.7878717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV37 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2255811009, - "lat": 52.2181499, - "lon": -1.2434377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN11 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2255811154, - "lat": 52.2214451, - "lon": -1.2475686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN11 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2255886919, - "lat": 52.1713840, - "lon": -1.7858309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 2256111800, - "lat": 52.1642186, - "lon": -1.7828557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2257558059, - "lat": 52.1679543, - "lon": -1.7843414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV37 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2257568781, - "lat": 52.2301639, - "lon": -1.2283990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2258335730, - "lat": 51.4144711, - "lon": -0.1291758, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2258558658, - "lat": 51.0520572, - "lon": -0.1636702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2258612709, - "lat": 56.2274271, - "lon": -3.4159616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY13 42D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2258681246, - "lat": 56.4003034, - "lon": -3.4605690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 195D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2258698535, - "lat": 56.5023066, - "lon": -3.5149421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 174", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2260661928, - "lat": 52.9807937, - "lon": -1.1300908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+44 345 774 0740", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG3 116D", - "ref:GB:uprn": "10015377841", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 2260756425, - "lat": 51.4825042, - "lon": -2.5582881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "mapillary": "709416836818619", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS16 710", - "survey:date": "2022-07-03" - } -}, -{ - "type": "node", - "id": 2261550075, - "lat": 51.0863256, - "lon": -3.1798834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2261803877, - "lat": 51.1007246, - "lon": 0.1087845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN7 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2261803887, - "lat": 51.0968383, - "lon": 0.1013209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2262152142, - "lat": 50.7341910, - "lon": -2.0303860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 260", - "ref:GB:uprn": "10015305226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2262152272, - "lat": 50.7448936, - "lon": -2.0117473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 198", - "ref:GB:uprn": "10015366041", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2262973394, - "lat": 51.0936788, - "lon": -3.1854511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2263237316, - "lat": 52.1912887, - "lon": 0.9969648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP14 8035", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2263326606, - "lat": 52.1385687, - "lon": -1.6895143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2263415487, - "lat": 51.0946744, - "lon": -3.1916705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 150", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2265747584, - "lat": 54.6013396, - "lon": -3.1927797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA12 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2265964488, - "lat": 52.9922626, - "lon": -1.1877220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 346", - "ref:GB:uprn": "10015356034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2266016730, - "lat": 51.0907085, - "lon": -3.2003255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 156", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2266044191, - "lat": 52.8011630, - "lon": 1.0567957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2266051579, - "lat": 54.7302690, - "lon": -1.8836110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL13 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2266199215, - "lat": 52.9637978, - "lon": -1.1766427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 59D", - "ref:GB:uprn": "10015309754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2266306897, - "lat": 50.8270836, - "lon": -4.5407253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2267015689, - "lat": 52.8170822, - "lon": 1.2870344, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2267015696, - "lat": 52.8448220, - "lon": 1.3088285, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2267301201, - "lat": 52.6483388, - "lon": 1.5668405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2020-01-14", - "collection_times": "Mo-Fr 09:00; Sa 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR13 1304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2267495524, - "lat": 50.9434589, - "lon": -1.5152390, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO40 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2267510745, - "lat": 51.0522197, - "lon": -1.3425344, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2267510757, - "lat": 51.0265608, - "lon": -1.4791378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2267560942, - "lat": 52.5763469, - "lon": -1.9897642, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2267560966, - "lat": 52.5845776, - "lon": -1.9856344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1671947869661219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WS2 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-02-02" - } -}, -{ - "type": "node", - "id": 2267756431, - "lat": 51.0929582, - "lon": -3.2121572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "colour": "red", - "drive_through": "no", - "name": "Seven Ash Cottages", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3EZ", - "ref": "TA4 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2268263688, - "lat": 54.3178767, - "lon": -2.7287054, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA9 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2268308267, - "lat": 50.8993378, - "lon": -1.3995043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2268387627, - "lat": 51.6789122, - "lon": -0.4654680, - "tags": { - "amenity": "post_box", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2268507711, - "lat": 52.0125267, - "lon": -0.9724773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 2268515219, - "lat": 55.5746663, - "lon": -2.1180189, - "tags": { - "amenity": "post_box", - "ref": "NE71 112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268651917, - "lat": 53.9858908, - "lon": -1.9731341, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268678637, - "lat": 53.9698956, - "lon": -2.0056313, - "tags": { - "amenity": "post_box", - "ref": "BD23 165", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268678680, - "lat": 53.9678621, - "lon": -2.0023002, - "tags": { - "amenity": "post_box", - "ref": "BD23 148", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268678685, - "lat": 53.9623608, - "lon": -2.0053393, - "tags": { - "amenity": "post_box", - "ref": "BD23 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268678748, - "lat": 53.9607305, - "lon": -2.0099222, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "BD23 120", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268678955, - "lat": 53.9582221, - "lon": -2.0027372, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BD23 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268679162, - "lat": 53.9564375, - "lon": -2.0088747, - "tags": { - "amenity": "post_box", - "ref": "BD23 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268691957, - "lat": 52.8596571, - "lon": -3.0565536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2268691962, - "lat": 52.8596829, - "lon": -3.0565678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2268695050, - "lat": 52.7330154, - "lon": -1.1080719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LE12 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268695071, - "lat": 52.7379406, - "lon": -1.1060409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 131", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2268722486, - "lat": 51.5870454, - "lon": -0.1686517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N2 18" - } -}, -{ - "type": "node", - "id": 2268722487, - "lat": 51.5871488, - "lon": -0.1745542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N2 27" - } -}, -{ - "type": "node", - "id": 2268730148, - "lat": 51.6727600, - "lon": -0.4601221, - "tags": { - "amenity": "post_box", - "fixme": "verify exact location", - "mapillary": "163509792929207", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "source": "Survey", - "survey:date": "2022-06-01" - } -}, -{ - "type": "node", - "id": 2268768556, - "lat": 52.9944583, - "lon": -1.1844584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 345D", - "ref:GB:uprn": "10015435575", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2268804248, - "lat": 53.0658198, - "lon": -1.4602671, - "tags": { - "amenity": "post_box", - "ref": "DE56 552" - } -}, -{ - "type": "node", - "id": 2268894733, - "lat": 51.4613123, - "lon": -2.5923937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-27", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BS2 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2269117309, - "lat": 53.9578404, - "lon": -2.0386467, - "tags": { - "amenity": "post_box", - "ref": "BD23 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269827802, - "lat": 54.2401925, - "lon": -2.6217223, - "tags": { - "amenity": "post_box", - "ref": "LA6 133", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269827861, - "lat": 54.2894489, - "lon": -2.6700674, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA8 109", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269842709, - "lat": 54.3121759, - "lon": -2.7351180, - "tags": { - "amenity": "post_box", - "ref": "LA9 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269864484, - "lat": 54.3948542, - "lon": -2.9208415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LA23 84", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269876018, - "lat": 54.5965260, - "lon": -3.1139122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA12 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269876071, - "lat": 54.5989887, - "lon": -3.1187265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "drive_through": "no", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269876097, - "lat": 54.5978076, - "lon": -3.1218568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "colour": "red", - "drive_through": "no", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 255", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269876279, - "lat": 54.5984525, - "lon": -3.1337111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA12 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269883039, - "lat": 50.4761763, - "lon": -4.4610317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2269903176, - "lat": 54.5703066, - "lon": -3.1340474, - "tags": { - "amenity": "post_box", - "ref": "CA12 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269903250, - "lat": 54.5536327, - "lon": -3.1445994, - "tags": { - "amenity": "post_box", - "ref": "CA12 121", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269903517, - "lat": 54.6654422, - "lon": -3.3719427, - "tags": { - "amenity": "post_box", - "ref": "CA13 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269903666, - "lat": 54.8033303, - "lon": -3.1598113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "CA7 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2269903724, - "lat": 54.8383340, - "lon": -3.0672132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1008403150169685", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CA5 323", - "source": "survey", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 2269945127, - "lat": 50.5926182, - "lon": -4.8231666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL29 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 2270483871, - "lat": 50.5046971, - "lon": -3.5815701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2270492065, - "lat": 53.9888525, - "lon": -1.0589631, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO32 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2270662259, - "lat": 52.4308180, - "lon": -1.8493660, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 624", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2271185168, - "lat": 54.9295498, - "lon": -2.6567490, - "tags": { - "amenity": "post_box", - "ref": "CA8 174" - } -}, -{ - "type": "node", - "id": 2271574961, - "lat": 55.2569448, - "lon": -3.1772670, - "tags": { - "amenity": "post_box", - "ref": "DG13 67", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 2271602849, - "lat": 55.4483300, - "lon": -3.1036003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "747988232562901", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD7 109", - "source": "Dracos", - "survey:date": "2020-07-19" - } -}, -{ - "type": "node", - "id": 2271662239, - "lat": 57.3424989, - "lon": -3.3376492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Fr 09:00, Sa 09:15; Su off", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 171", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2271826870, - "lat": 55.6506141, - "lon": -1.9773802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "TD15 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2271910752, - "lat": 55.5061119, - "lon": -3.1580004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TD7 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2271923569, - "lat": 55.5129551, - "lon": -3.0975751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD7 98", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2271940916, - "lat": 55.5391131, - "lon": -3.0184799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD7 110", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 2271990407, - "lat": 53.3017416, - "lon": -0.6797403, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2272019968, - "lat": 52.4931558, - "lon": -0.5636506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2272614082, - "lat": 50.9643292, - "lon": -1.3209062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 684", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2272636111, - "lat": 50.9171008, - "lon": -1.3793699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2272655008, - "lat": 50.9701241, - "lon": -1.3463683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 324D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2272946542, - "lat": 53.0829383, - "lon": -3.3178021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2273031044, - "lat": 58.9708781, - "lon": -2.9534724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00, Sa 13:30", - "mapillary": "328103025333027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW15 29", - "royal_cypher": "scottish_crown", - "survey:date": "2020-09-18" - } -}, -{ - "type": "node", - "id": 2273787387, - "lat": 51.9887717, - "lon": 1.0856177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2273813854, - "lat": 52.9954714, - "lon": -1.1910407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 347", - "ref:GB:uprn": "10015477270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2273820317, - "lat": 51.9842249, - "lon": 1.0720686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2273901833, - "lat": 51.9713854, - "lon": 1.0111428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO7 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2273925070, - "lat": 51.9779559, - "lon": 1.0183306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO7 107", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2273947281, - "lat": 53.4647422, - "lon": -2.2324241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00" - } -}, -{ - "type": "node", - "id": 2274000603, - "lat": 50.9195702, - "lon": -1.3087398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 763" - } -}, -{ - "type": "node", - "id": 2274025249, - "lat": 51.5732241, - "lon": 0.7067448, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2274038266, - "lat": 51.4897370, - "lon": -2.6079320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2274074562, - "lat": 52.9096269, - "lon": -3.6012337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL23 960", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2274268000, - "lat": 52.5980212, - "lon": 1.3633851, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2274547089, - "lat": 55.9116036, - "lon": -4.3304696, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2274984086, - "lat": 55.9191167, - "lon": -4.3213245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 382" - } -}, -{ - "type": "node", - "id": 2274998112, - "lat": 52.8231829, - "lon": 1.0199203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR20 2070" - } -}, -{ - "type": "node", - "id": 2275353780, - "lat": 52.9690798, - "lon": -1.1705484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "narrowed_letter_slot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 91D", - "ref:GB:uprn": "10015283670", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2275476511, - "lat": 52.9059167, - "lon": 1.1624132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2275476572, - "lat": 52.9121766, - "lon": 1.2141908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2275990285, - "lat": 51.7611162, - "lon": -0.5727244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2276239757, - "lat": 50.8683870, - "lon": -0.9241152, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7(N)", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "lamp", - "ref": "PO10 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2276239797, - "lat": 50.8736022, - "lon": -0.9147708, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "post_box:type": "lamp", - "ref": "PO10 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2276651845, - "lat": 51.5473929, - "lon": 0.0352068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2277540452, - "lat": 52.5050222, - "lon": -3.9786912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY20 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2278501146, - "lat": 52.0662060, - "lon": -0.1232038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG8 306", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2278716787, - "lat": 56.1783697, - "lon": -3.1891380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "ref": "KY6 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2278980627, - "lat": 50.7476567, - "lon": -2.0849921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 66D", - "ref:GB:uprn": "10015408492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2278980665, - "lat": 50.7548851, - "lon": -2.0784908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 258", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2279835197, - "lat": 50.9173662, - "lon": -0.9822222, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO8 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2279835218, - "lat": 50.9390809, - "lon": -0.9601447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2279857259, - "lat": 56.2015435, - "lon": -3.1518540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 402", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2279896819, - "lat": 56.1981223, - "lon": -3.1507268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 77", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2280003435, - "lat": 51.2232934, - "lon": 0.0583792, - "tags": { - "amenity": "post_box", - "ref": "TN8 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2280116505, - "lat": 57.6594011, - "lon": -4.1948108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV7 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2280116834, - "lat": 57.5900369, - "lon": -4.1160619, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV10 188", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2281096231, - "lat": 55.0851852, - "lon": -2.8653700, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2281167211, - "lat": 50.8741140, - "lon": -1.5747183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO43 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2281371013, - "lat": 52.9245349, - "lon": -1.5052219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 471D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2281449705, - "lat": 52.9771746, - "lon": -1.1671915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 119D", - "ref:GB:uprn": "10015519302", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "http://www.geograph.org.uk/photo/1465449;survey" - } -}, -{ - "type": "node", - "id": 2281978107, - "lat": 51.5753658, - "lon": -0.1199809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2282111373, - "lat": 51.6460809, - "lon": -1.2708435, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2282637015, - "lat": 51.5032264, - "lon": -0.2888954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "W5 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2282985396, - "lat": 52.8114095, - "lon": 0.9851378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2282994866, - "lat": 51.2989833, - "lon": -0.7705425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2283065408, - "lat": 54.6659334, - "lon": -2.7475732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA11 279" - } -}, -{ - "type": "node", - "id": 2283141487, - "lat": 52.8740569, - "lon": 1.0739973, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2283174981, - "lat": 52.9751793, - "lon": -1.9037866, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2283184052, - "lat": 52.9799582, - "lon": -1.8944751, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2283191634, - "lat": 52.8705077, - "lon": 0.9402031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2283248655, - "lat": 55.9339420, - "lon": -4.2875429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "ref": "G62 1017" - } -}, -{ - "type": "node", - "id": 2283298432, - "lat": 55.9473109, - "lon": -4.2801928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "ref": "G62 805" - } -}, -{ - "type": "node", - "id": 2283412686, - "lat": 52.9320446, - "lon": 1.0378475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR25 2536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2283468899, - "lat": 52.9109681, - "lon": 0.7202121, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "signpost", - "post_box:type": "lamp", - "ref": "NR21 2177", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2283486079, - "lat": 55.9345464, - "lon": -4.2394149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "operator": "Royal Mail", - "ref": "G64 306" - } -}, -{ - "type": "node", - "id": 2283521301, - "lat": 52.9177190, - "lon": 0.8904219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR23 2318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2283531216, - "lat": 51.4422866, - "lon": -2.5901686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS3 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2283531230, - "lat": 51.4509359, - "lon": -2.5885097, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS1 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2283981815, - "lat": 52.5378392, - "lon": -3.9414355, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2284005133, - "lat": 51.8815040, - "lon": -1.6162333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "post_box:type": "wall", - "ref": "OX7 245", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2284013413, - "lat": 51.8779891, - "lon": -1.6587404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX7 254", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2013-04-27" - } -}, -{ - "type": "node", - "id": 2284016598, - "lat": 51.8803221, - "lon": -1.6752421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX7 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-27" - } -}, -{ - "type": "node", - "id": 2284070002, - "lat": 51.8953302, - "lon": -1.6389927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX7 251", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2013-04-27" - } -}, -{ - "type": "node", - "id": 2284070046, - "lat": 51.9019184, - "lon": -1.6425935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "OX7 951", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-27" - } -}, -{ - "type": "node", - "id": 2284070121, - "lat": 51.9034899, - "lon": -1.6454537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX7 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-04-27" - } -}, -{ - "type": "node", - "id": 2284359832, - "lat": 51.6726715, - "lon": 0.0944032, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2284417528, - "lat": 52.5920311, - "lon": -3.8527063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY20 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2284805038, - "lat": 52.9282665, - "lon": -1.5186987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE22 454" - } -}, -{ - "type": "node", - "id": 2285079987, - "lat": 52.9639746, - "lon": -1.2076164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 320", - "ref:GB:uprn": "10015451313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2285087403, - "lat": 51.1243885, - "lon": -3.2336816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2285777340, - "lat": 51.3403254, - "lon": -0.8405082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU46 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2285777341, - "lat": 51.3342947, - "lon": -0.8302434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU46 63" - } -}, -{ - "type": "node", - "id": 2285777343, - "lat": 51.3420696, - "lon": -0.8284919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU46 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2285777344, - "lat": 51.3357806, - "lon": -0.8341802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU46 48" - } -}, -{ - "type": "node", - "id": 2285777346, - "lat": 51.3332498, - "lon": -0.8394342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU46 3" - } -}, -{ - "type": "node", - "id": 2285777347, - "lat": 51.3304318, - "lon": -0.8271240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU46 89" - } -}, -{ - "type": "node", - "id": 2285778687, - "lat": 51.3356901, - "lon": -0.7886012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU17 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2285932276, - "lat": 57.0411850, - "lon": -3.2296280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB35 208", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2285974128, - "lat": 52.9700971, - "lon": -1.2143213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 357D", - "ref:GB:uprn": "10015444667", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2286051603, - "lat": 52.5567593, - "lon": 1.0549266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1853", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286063942, - "lat": 52.1118027, - "lon": -2.5910444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "note": "Collection plate missing, times & ref from Dracos", - "post_box:type": "wall", - "ref": "HR1 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2286073848, - "lat": 52.5721354, - "lon": 0.9857761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 934", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286073983, - "lat": 52.5500535, - "lon": 1.0153933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1827", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286088034, - "lat": 52.5796708, - "lon": 0.9847434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR9 925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286118235, - "lat": 52.6209155, - "lon": 0.8987626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286118279, - "lat": 52.6221769, - "lon": 0.9434540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "IP25 8219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286118317, - "lat": 52.6109246, - "lon": 0.9448698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "note": "ref value partially obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP25 3361", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2286118338, - "lat": 52.6042507, - "lon": 0.9901652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286118343, - "lat": 52.6040249, - "lon": 0.9450254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP25 3227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286459748, - "lat": 52.6237502, - "lon": 0.8699776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286459808, - "lat": 52.6305994, - "lon": 0.9000022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP25 3372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286459823, - "lat": 52.5876830, - "lon": 0.8045427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP25 3332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286459830, - "lat": 52.6271918, - "lon": 0.8836756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286459833, - "lat": 52.6294410, - "lon": 0.8941773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP25 3235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286459840, - "lat": 52.5951246, - "lon": 0.8083539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP25 3223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286463414, - "lat": 52.5853035, - "lon": 0.8025672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP25 3434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286463415, - "lat": 52.5813420, - "lon": 0.8039251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "post_box:type": "wall", - "ref": "IP25 3224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286499427, - "lat": 51.7302187, - "lon": 0.4753352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2286692584, - "lat": 52.5652414, - "lon": 0.8225588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "post_box:type": "lamp", - "ref": "IP25 3250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2286779716, - "lat": 53.8496063, - "lon": -2.1045922, - "tags": { - "amenity": "post_box", - "ref": "BB8 323" - } -}, -{ - "type": "node", - "id": 2286826923, - "lat": 50.8126260, - "lon": -0.4123667, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "BN12 1617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2286826924, - "lat": 50.8128589, - "lon": -0.4081267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1618D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2286853456, - "lat": 57.2977095, - "lon": -3.7696834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH23 60", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2286922026, - "lat": 52.5144882, - "lon": -1.8446960, - "tags": { - "amenity": "post_box", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2286974982, - "lat": 57.3200551, - "lon": -3.5971141, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 13:00; Sa 07:15", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH26 5", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2287028141, - "lat": 51.8225365, - "lon": -2.2838473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "GL2 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2287302497, - "lat": 50.6750167, - "lon": -2.1831912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 220D", - "ref:GB:uprn": "10015365050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2287551855, - "lat": 50.6095203, - "lon": -2.0023487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 76", - "ref:GB:uprn": "10015477930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2287813077, - "lat": 50.8076141, - "lon": -0.4062510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN12 1602D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2288348853, - "lat": 51.0301721, - "lon": -0.9638341, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is located on the southbound side of Stoner Hill Road as a wall in a recess about 20 yards north of a layby.", - "last_checked": "2020-07-27", - "old_ref": "GU32 20", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2288348856, - "lat": 51.0391643, - "lon": -0.9640503, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-08", - "old_ref": "GU32 144", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2288348884, - "lat": 51.0438204, - "lon": -0.9668770, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "description": "This postbox is of a brand new EIIR lamp design.", - "last_checked": "2020-08-08", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2288398889, - "lat": 52.1653541, - "lon": -1.8544227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B50 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2288399039, - "lat": 52.1677258, - "lon": -1.8468140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B50 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2288848481, - "lat": 50.8113876, - "lon": -0.3721855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2288848488, - "lat": 50.8115266, - "lon": -0.3747041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1634D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2289129747, - "lat": 52.4805774, - "lon": 1.7209741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2289532536, - "lat": 52.0755915, - "lon": 0.4381862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB9 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2290220065, - "lat": 51.8082976, - "lon": -2.7258188, - "tags": { - "amenity": "post_box", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 2290291086, - "lat": 54.2759090, - "lon": -1.9753720, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2290355757, - "lat": 52.9767935, - "lon": -1.2223464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG8 359", - "ref:GB:uprn": "10015331847", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2290387297, - "lat": 51.6375495, - "lon": -0.7402402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "collection_times:old": "Mo-Fr 17:00; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP13 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 2290508905, - "lat": 52.3191833, - "lon": -1.4270610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2290585516, - "lat": 52.9102729, - "lon": -1.1802417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG11 372", - "ref:GB:uprn": "10015281608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2290630787, - "lat": 51.1682458, - "lon": -3.3740626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2290700113, - "lat": 53.1740487, - "lon": -0.5536886, - "tags": { - "amenity": "post_box", - "ref": "LN5 166" - } -}, -{ - "type": "node", - "id": 2291129869, - "lat": 50.8072443, - "lon": -1.1560027, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PO12 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2291236352, - "lat": 50.7841515, - "lon": -1.1540169, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-29", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO12 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2291236374, - "lat": 50.7869126, - "lon": -1.1675103, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "lamp", - "ref": "PO12 85", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2291247445, - "lat": 50.8117979, - "lon": -1.2169057, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO13 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2291252897, - "lat": 50.7828727, - "lon": -1.1334623, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "PO12 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2291252899, - "lat": 50.7831470, - "lon": -1.1378106, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO12 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2291252900, - "lat": 50.7838284, - "lon": -1.1437251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2291361432, - "lat": 52.4359470, - "lon": -1.9170235, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B30 176" - } -}, -{ - "type": "node", - "id": 2291445705, - "lat": 50.8466182, - "lon": -3.3087491, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2291737558, - "lat": 52.7431053, - "lon": -3.8847060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL40 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2291737565, - "lat": 52.7471277, - "lon": -3.9162963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 90", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2291971659, - "lat": 51.5064910, - "lon": -2.5949659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "BS10 359", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2291971705, - "lat": 51.5128501, - "lon": -2.5982527, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 1095", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2292189714, - "lat": 51.1747675, - "lon": -0.5914279, - "tags": { - "amenity": "post_box", - "ref": "GU8 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2292189732, - "lat": 51.1819342, - "lon": -0.6079977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU7 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2292223907, - "lat": 50.9896957, - "lon": 0.6058722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2292285574, - "lat": 53.2327144, - "lon": -0.5280761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN2 2" - } -}, -{ - "type": "node", - "id": 2292302504, - "lat": 53.2322345, - "lon": -0.5045111, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2292381523, - "lat": 52.5182107, - "lon": -2.0014812, - "tags": { - "amenity": "post_box", - "ref": "B70 32", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2292452942, - "lat": 52.5289896, - "lon": -2.0071843, - "tags": { - "amenity": "post_box", - "ref": "B70 2", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2293146554, - "lat": 57.3367342, - "lon": -4.5827024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV3 184", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2293524863, - "lat": 53.0036774, - "lon": -1.1875811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 349D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2293548157, - "lat": 51.5635590, - "lon": -2.6428139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "mapillary": "1519414298417678", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS35 1040", - "survey:date": "2021-05-29" - } -}, -{ - "type": "node", - "id": 2293572156, - "lat": 52.3492761, - "lon": -2.9424101, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2293638477, - "lat": 50.4008134, - "lon": -3.5867313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2293822289, - "lat": 53.0039318, - "lon": -1.2027603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 365D", - "ref:GB:uprn": "10015474416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2293838205, - "lat": 50.9520598, - "lon": -0.4570833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH20 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2293887048, - "lat": 53.5829946, - "lon": -1.5481238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "wall", - "ref": "S75 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2294107593, - "lat": 52.0831599, - "lon": -2.6404552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "HR1 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2294107648, - "lat": 52.0875591, - "lon": -2.6367984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "HR1 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2294544458, - "lat": 51.3334244, - "lon": -0.1093103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2294647381, - "lat": 51.6022812, - "lon": -3.9906204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SA3 76D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2294647827, - "lat": 52.4935302, - "lon": -0.5554440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE8 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2294699887, - "lat": 51.5580341, - "lon": -0.3354582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "HA1 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2294719547, - "lat": 51.8875614, - "lon": 0.5438578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 82", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2294888990, - "lat": 52.1290939, - "lon": 0.0427890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB22 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2294889670, - "lat": 50.7495198, - "lon": -1.8716266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 134D", - "ref:GB:uprn": "10015393301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2294952358, - "lat": 51.8393141, - "lon": -1.4606839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2295047545, - "lat": 50.9464832, - "lon": -1.3973037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "SO16 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2295323957, - "lat": 52.1259080, - "lon": -0.2059910, - "tags": { - "addr:street": "Bury Hill", - "amenity": "post_box", - "ref": "SG19 235" - } -}, -{ - "type": "node", - "id": 2295610797, - "lat": 50.9342541, - "lon": -1.3973603, - "tags": { - "amenity": "post_box", - "operator": "University of Southampton" - } -}, -{ - "type": "node", - "id": 2295877623, - "lat": 50.7911837, - "lon": 0.0003689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN10 644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2295922168, - "lat": 50.7905914, - "lon": 0.0044642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN10 628D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2295994671, - "lat": 55.7580610, - "lon": -4.2070350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2296040779, - "lat": 53.4948123, - "lon": -2.5481091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WN7 39D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2296083115, - "lat": 50.7408538, - "lon": -3.7459837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX6 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2296103989, - "lat": 55.8820121, - "lon": -3.5499568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 14:00-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH54 96", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2296282952, - "lat": 56.0124158, - "lon": -3.6199963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH51 5D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296311517, - "lat": 56.0082498, - "lon": -3.7322890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 129", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296311541, - "lat": 56.0195528, - "lon": -3.7490867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK3 23D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2296311631, - "lat": 56.0990252, - "lon": -3.8485402, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296311634, - "lat": 56.1054463, - "lon": -3.8794864, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296318912, - "lat": 56.1613134, - "lon": -4.0948352, - "tags": { - "amenity": "post_box", - "ref": "FK9 190", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296318914, - "lat": 56.1826174, - "lon": -4.2373249, - "tags": { - "amenity": "post_box", - "ref": "FK8 134", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296318918, - "lat": 56.2486025, - "lon": -3.8818497, - "tags": { - "amenity": "post_box", - "ref": "FK15 109", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296318921, - "lat": 56.2426495, - "lon": -3.8823273, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2022-02-28", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK15 150", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296318925, - "lat": 56.2595771, - "lon": -3.7840088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH4 26D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331001, - "lat": 56.3192097, - "lon": -3.6551368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 58D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331007, - "lat": 56.3894374, - "lon": -3.4825225, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 103D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331010, - "lat": 56.3944490, - "lon": -3.4832372, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH1 30D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331013, - "lat": 56.3960444, - "lon": -3.4663549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 97D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331017, - "lat": 56.4019973, - "lon": -3.4838961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 3D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331023, - "lat": 56.4042901, - "lon": -3.4770783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 98D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331045, - "lat": 56.4161844, - "lon": -3.5756905, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 93D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331056, - "lat": 56.3759846, - "lon": -3.8373686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296331064, - "lat": 56.3775201, - "lon": -3.8458255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PH7 5D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296331140, - "lat": 56.3755326, - "lon": -3.9921571, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH6 35D", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296370125, - "lat": 56.7509603, - "lon": -4.0884681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 11:30", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH18 32", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2296402376, - "lat": 56.7057022, - "lon": -4.1157271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "post_box:type": "lamp", - "ref": "PH16 103", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296402380, - "lat": 56.6995090, - "lon": -4.1857489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PH16 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2296402417, - "lat": 56.6769624, - "lon": -4.4459199, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH17 42", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296402420, - "lat": 56.6810305, - "lon": -4.4494169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH17 44", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296402424, - "lat": 56.6858468, - "lon": -4.5770265, - "tags": { - "amenity": "post_box", - "ref": "PH17 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2296402659, - "lat": 56.6923114, - "lon": -4.3797998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PH17 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2297023223, - "lat": 51.3670633, - "lon": -0.8186417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "mapillary": "298424232289360", - "post_box:type": "pillar", - "survey:date": "2021-11-14" - } -}, -{ - "type": "node", - "id": 2297314052, - "lat": 51.8979008, - "lon": -2.1706051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "ref": "GL2 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2297673097, - "lat": 52.0800224, - "lon": -2.6036947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 11:15", - "post_box:type": "lamp", - "ref": "HR1 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2297708739, - "lat": 57.2055031, - "lon": -4.5008770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 85", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2297708741, - "lat": 57.2532123, - "lon": -4.4148253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "note": "reference says \"IV076\"", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV2 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2297708743, - "lat": 57.2703222, - "lon": -4.3870417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 110", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2298492599, - "lat": 50.3130887, - "lon": -3.8364020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2298519966, - "lat": 50.3144731, - "lon": -3.8361051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ7 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2299437470, - "lat": 52.8372435, - "lon": -2.4573461, - "tags": { - "amenity": "post_box", - "ref": "TF9 481" - } -}, -{ - "type": "node", - "id": 2299500696, - "lat": 53.4476729, - "lon": -2.2375702, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2299780301, - "lat": 51.7140906, - "lon": -2.3626270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2299792080, - "lat": 51.6947497, - "lon": -2.3747301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "collection_times_checked": "2021-07-12", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL11 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2299792095, - "lat": 51.6974684, - "lon": -2.3671374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-22", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL11 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2300132103, - "lat": 57.1490795, - "lon": -5.9403642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "ref": "IV44 126" - } -}, -{ - "type": "node", - "id": 2301078264, - "lat": 52.6049389, - "lon": -1.9153061, - "tags": { - "amenity": "post_box", - "colour": "gold", - "note": "Golden postbox -- for one of two of Eleanor Simmonds' gold medals in the London 2012 Paralympics.", - "postal_code": "WS9", - "ref": "WS9 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2301249972, - "lat": 52.9603255, - "lon": -1.1531515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG1 44", - "ref:GB:uprn": "10015415034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2301526091, - "lat": 57.2250252, - "lon": -5.6650645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 14:30", - "note": "guessed prefix", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV42 109", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2301726537, - "lat": 53.5960994, - "lon": -0.3489126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN39 221" - } -}, -{ - "type": "node", - "id": 2301772533, - "lat": 51.5599132, - "lon": -0.7093006, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SL6 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2302296091, - "lat": 52.7990252, - "lon": -3.1252321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2302566110, - "lat": 53.0130941, - "lon": -2.2315870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2302598442, - "lat": 51.5138523, - "lon": -0.3461817, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W7 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2302602407, - "lat": 52.6716667, - "lon": -1.7633165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WS14 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302657573, - "lat": 54.1256366, - "lon": -2.4178395, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA2 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302752588, - "lat": 54.3154222, - "lon": -2.5211544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LA10 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302766929, - "lat": 54.2568431, - "lon": -2.6966872, - "tags": { - "amenity": "post_box", - "ref": "LA7 237", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302780547, - "lat": 54.2565673, - "lon": -2.7085456, - "tags": { - "amenity": "post_box", - "ref": "LA8 184", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302780548, - "lat": 54.2869354, - "lon": -2.7295378, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA8 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302806047, - "lat": 54.3149433, - "lon": -2.7330916, - "tags": { - "amenity": "post_box", - "ref": "LA9 256", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302806049, - "lat": 54.3374812, - "lon": -2.7393261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA9 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302829043, - "lat": 54.6213682, - "lon": -2.7150483, - "tags": { - "amenity": "post_box", - "ref": "CA10 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302881232, - "lat": 55.0453181, - "lon": -3.1969639, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG11 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302938080, - "lat": 55.4705656, - "lon": -3.6613366, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML12 22", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302958436, - "lat": 55.6366456, - "lon": -3.4687282, - "tags": { - "amenity": "post_box", - "ref": "ML12 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2302959793, - "lat": 55.6768159, - "lon": -3.4912729, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ML12 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2303138438, - "lat": 51.5416687, - "lon": -2.5710052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "post_box:type": "meter", - "ref": "BS32 4001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "unfranked": "no" - } -}, -{ - "type": "node", - "id": 2303407840, - "lat": 52.4013610, - "lon": -1.6990669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B92 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2303428431, - "lat": 55.7977214, - "lon": -3.2223246, - "tags": { - "amenity": "post_box", - "ref": "EH26 248", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2303428432, - "lat": 55.8244535, - "lon": -3.2218922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 145", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2304061544, - "lat": 52.8676654, - "lon": -1.0044174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG12 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2304061546, - "lat": 52.8605765, - "lon": -1.0303909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG12 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2304321349, - "lat": 51.7211198, - "lon": -2.1427071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "postal_code": "GL6", - "ref": "GL6 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2304849351, - "lat": 54.3976186, - "lon": -3.2489671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "post_box:type": "wall", - "ref": "CA19 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2304849352, - "lat": 54.3986037, - "lon": -3.2700313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "CA19 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2304872651, - "lat": 51.5747634, - "lon": -0.1024882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2305118991, - "lat": 51.7801559, - "lon": -0.4374039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 2305120840, - "lat": 51.7778608, - "lon": -0.4440818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 2305269748, - "lat": 50.8783757, - "lon": -2.0800046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 104D" - } -}, -{ - "type": "node", - "id": 2305270271, - "lat": 50.8853429, - "lon": -2.0819052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2305458865, - "lat": 51.5161297, - "lon": -0.1569950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "note": "R aperture sealed 2023-11-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 17D;W1H 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2306311813, - "lat": 54.8438090, - "lon": -1.3590810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2306376740, - "lat": 57.0824139, - "lon": -2.3424037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Sa 10:00; Su off", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 633", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2306458006, - "lat": 55.0186611, - "lon": -1.4252399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "OS_OpenData_StreetView" - } -}, -{ - "type": "node", - "id": 2306866280, - "lat": 52.1656161, - "lon": -2.4549600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2307808553, - "lat": 57.3349363, - "lon": -2.3201402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB51 379", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2308306488, - "lat": 54.6104818, - "lon": -5.9226690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 1AA", - "ref": "BT15 28" - } -}, -{ - "type": "node", - "id": 2309381235, - "lat": 52.7968514, - "lon": -4.1004484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2309381255, - "lat": 52.8098080, - "lon": -4.1015388, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2309439139, - "lat": 50.7011826, - "lon": -3.5013857, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2309458409, - "lat": 52.8225596, - "lon": -0.9651986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2310099639, - "lat": 51.7034838, - "lon": -2.3505837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2310124103, - "lat": 51.7045716, - "lon": -2.3666103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL11 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2310523882, - "lat": 51.6121051, - "lon": -0.0692799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N18 12D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2311121974, - "lat": 51.6996663, - "lon": -2.3647781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL11 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2311418401, - "lat": 51.5261027, - "lon": -0.3373082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2311671162, - "lat": 52.1609647, - "lon": -0.6412191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 2312079652, - "lat": 53.9106175, - "lon": -2.0780840, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2312107553, - "lat": 53.9087593, - "lon": -2.0506670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2312807347, - "lat": 50.8516917, - "lon": -1.0422907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO6 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2313520772, - "lat": 57.2514167, - "lon": -3.3798049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-09-28", - "collection_times": "Mo-Fr 13:00; Sa 12:00; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_e", - "post_box:type": "wall", - "ref": "AB37 173", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2313521381, - "lat": 57.1610178, - "lon": -3.1947358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB36 354", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2313521404, - "lat": 57.1639803, - "lon": -3.1685216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB36 355", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2313551744, - "lat": 57.0355563, - "lon": -3.2469843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 248", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2313552190, - "lat": 56.8007349, - "lon": -3.4326191, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 123D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2313561060, - "lat": 56.5736837, - "lon": -3.3203457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 129D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2313583974, - "lat": 54.4021180, - "lon": -2.9109312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "LA23 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2313610841, - "lat": 53.9203083, - "lon": -0.9352465, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2313660199, - "lat": 51.6322186, - "lon": -0.3047467, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 805" - } -}, -{ - "type": "node", - "id": 2314100484, - "lat": 51.8454322, - "lon": -2.1510176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "GL3 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey - GPS locator and photo." - } -}, -{ - "type": "node", - "id": 2314100485, - "lat": 51.8494200, - "lon": -2.1631078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GL3 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2314382746, - "lat": 51.8474914, - "lon": -2.1585434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "GL3 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2314384907, - "lat": 51.8429620, - "lon": -2.1485569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL3 88", - "royal_cypher": "EIIR", - "source": "survey in person (no GPS)" - } -}, -{ - "type": "node", - "id": 2314562824, - "lat": 53.5100426, - "lon": -2.3359984, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2314761429, - "lat": 51.5311234, - "lon": -0.3720491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 124D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2315240484, - "lat": 51.5326730, - "lon": -2.5706111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS34 1104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2315240629, - "lat": 51.5400253, - "lon": -2.5662727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS34 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2315851015, - "lat": 51.5242634, - "lon": -0.3642478, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2315868339, - "lat": 51.4232876, - "lon": 0.2308600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "DA2 84" - } -}, -{ - "type": "node", - "id": 2315895355, - "lat": 51.5168501, - "lon": -0.3718119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2316165743, - "lat": 52.4108334, - "lon": 0.2703711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2316451341, - "lat": 52.1637745, - "lon": -2.4456674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2316452648, - "lat": 52.1764024, - "lon": -2.4182447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "WR6 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2316933756, - "lat": 55.8635500, - "lon": -3.9809668, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2317182987, - "lat": 51.3488942, - "lon": -0.4637778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2317602648, - "lat": 51.5904728, - "lon": -0.9389312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG9 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2317604597, - "lat": 50.1781324, - "lon": -4.9810367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TR2 206D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2317715321, - "lat": 52.5072126, - "lon": -0.4139339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2318284440, - "lat": 51.7351425, - "lon": -1.2508222, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-30", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "OX1 836", - "royal_cypher": "EIIR", - "source": "photograph" - } -}, -{ - "type": "node", - "id": 2318567378, - "lat": 54.9017205, - "lon": -4.3791435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DG8 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2318571753, - "lat": 54.6679235, - "lon": -7.6836024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2318575845, - "lat": 50.4881239, - "lon": -3.5551524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ2 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2318829768, - "lat": 54.6029741, - "lon": -2.8493163, - "tags": { - "amenity": "post_box", - "ref": "CA11 218", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2318829770, - "lat": 54.6277391, - "lon": -2.7929029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "313919053639243", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA10 21", - "source": "survey", - "survey:date": "2020-08-03" - } -}, -{ - "type": "node", - "id": 2319748170, - "lat": 51.3859314, - "lon": -0.6328550, - "tags": { - "amenity": "post_box", - "ref": "SL5 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2319895107, - "lat": 51.9028492, - "lon": -0.3951542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2320111087, - "lat": 51.7722476, - "lon": -0.5838559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2320649275, - "lat": 52.3914654, - "lon": -1.8111547, - "tags": { - "HE_ref": "1253061", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "heritage": "2", - "heritage:operator": "Historic England", - "listed_status": "Grade II", - "note": "non-operational", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "B90 93D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2320842202, - "lat": 53.0107847, - "lon": -1.2898948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 101", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2320842301, - "lat": 53.0173418, - "lon": -1.3027361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG16 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2320842308, - "lat": 53.0173480, - "lon": -1.3027309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG16 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2320881383, - "lat": 51.4827776, - "lon": -0.6089134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "colour": "slateblue", - "fixme": "location approximate", - "note": "might be one of the replica Penfolds", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SL4 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey_date": "2013-05--25" - } -}, -{ - "type": "node", - "id": 2321079721, - "lat": 52.5083708, - "lon": 1.0042118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "NR17 1745", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321079757, - "lat": 52.5127163, - "lon": 1.0111692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1738D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321079764, - "lat": 52.5129352, - "lon": 0.9869463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "NR17 1701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321717390, - "lat": 50.3103258, - "lon": -3.6293824, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "colour": "red", - "mapillary": "1052438788619060", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ6 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "source:position": "Mapillary 2020-08-24", - "survey:date": "2022-03-26" - } -}, -{ - "type": "node", - "id": 2321829443, - "lat": 50.9902266, - "lon": -1.7135893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321829996, - "lat": 50.9810420, - "lon": -1.7184437, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2321830112, - "lat": 50.9895284, - "lon": -1.7176878, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321859875, - "lat": 50.9928316, - "lon": -1.7519488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SP5 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2321864009, - "lat": 51.5631879, - "lon": -1.7559499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 310" - } -}, -{ - "type": "node", - "id": 2321864015, - "lat": 51.5632694, - "lon": -1.7606146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321864206, - "lat": 51.5653949, - "lon": -1.7551990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321864255, - "lat": 51.5683157, - "lon": -1.7649400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "mapillary": "952697072213195", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 163", - "survey:date": "2019-06-09" - } -}, -{ - "type": "node", - "id": 2321864284, - "lat": 51.5716297, - "lon": -1.7589826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "mapillary": "223263515858586", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 164", - "survey:date": "2019-06-09" - } -}, -{ - "type": "node", - "id": 2321882159, - "lat": 51.0448954, - "lon": -1.7373296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP5 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321882162, - "lat": 51.0499949, - "lon": -1.7060232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2321882170, - "lat": 51.0461550, - "lon": -1.6336113, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2321882173, - "lat": 51.0419594, - "lon": -1.6349403, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2322009374, - "lat": 50.9708054, - "lon": -1.4483045, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO52 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2322074107, - "lat": 52.0879232, - "lon": -0.7201893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2322172142, - "lat": 52.1765164, - "lon": -2.4118768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "old_ref": "R083 Suckley Green", - "post_box:type": "wall", - "ref": "WR6 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2322262527, - "lat": 51.6819447, - "lon": -2.3556677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GL11 35;GL11 1035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2322269079, - "lat": 51.6884676, - "lon": -2.3613297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL11 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2322429997, - "lat": 50.8533232, - "lon": -0.6170925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2322430052, - "lat": 50.8587156, - "lon": -0.6245990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2322495472, - "lat": 51.5557895, - "lon": -0.1652118, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 47D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2323073278, - "lat": 51.5514848, - "lon": -0.3663783, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2323118001, - "lat": 51.5481457, - "lon": -0.3784697, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2323137664, - "lat": 51.5430750, - "lon": -0.3873611, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2323144788, - "lat": 51.1255840, - "lon": 1.3234812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CT16", - "ref": "CT16 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2323326022, - "lat": 51.5351311, - "lon": -0.4055151, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2323495470, - "lat": 51.5372210, - "lon": -0.3943242, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2323528944, - "lat": 51.6351821, - "lon": -0.3430756, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2323785846, - "lat": 52.1732364, - "lon": -2.4988724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HR7 407", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2323786663, - "lat": 52.1867307, - "lon": -2.5060793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "wall", - "ref": "HR7 486", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2323786699, - "lat": 52.1893034, - "lon": -2.5044656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "HR7 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2324013246, - "lat": 52.6399384, - "lon": 0.8432953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324042633, - "lat": 50.8160054, - "lon": -1.0803760, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 5901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324042644, - "lat": 50.8159910, - "lon": -1.0803746, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 5902", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324140970, - "lat": 51.6413726, - "lon": -0.3041267, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2324202391, - "lat": 51.3304242, - "lon": -1.5639910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 124" - } -}, -{ - "type": "node", - "id": 2324239093, - "lat": 52.4475470, - "lon": 0.5350670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "wall", - "ref": "IP27 3378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324567722, - "lat": 52.8928068, - "lon": -4.0710920, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2324585554, - "lat": 51.6475704, - "lon": -2.7756870, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2324585583, - "lat": 51.6502268, - "lon": -2.7876449, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2324645279, - "lat": 55.2849065, - "lon": -1.6030453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Post Office", - "post_box:type": "lamp", - "ref": "NE61 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2324645280, - "lat": 55.2929006, - "lon": -1.6080026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE65 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2324835319, - "lat": 51.6587389, - "lon": -2.9755005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2324863769, - "lat": 52.7720979, - "lon": 0.8440143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "NR20 2065", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324896732, - "lat": 52.8029441, - "lon": 0.8499447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:15", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR21 2146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324896739, - "lat": 52.7996717, - "lon": 0.8460528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "NR21 2124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2324909661, - "lat": 52.8082894, - "lon": 0.8943391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR21 2128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2324928591, - "lat": 51.7721378, - "lon": -3.3563429, - "tags": { - "amenity": "post_box", - "mapillary": "573439211134397", - "post_box:type": "lamp", - "ref": "CF48 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2021-04-23", - "survey:date": "2021-04-23" - } -}, -{ - "type": "node", - "id": 2325527017, - "lat": 51.5332923, - "lon": -0.3859850, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "UB5 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326029996, - "lat": 51.5735804, - "lon": 0.0825655, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2326145790, - "lat": 51.5772122, - "lon": 0.0838037, - "tags": { - "amenity": "post_box", - "ref": "IG2 13" - } -}, -{ - "type": "node", - "id": 2326772264, - "lat": 52.7507329, - "lon": 0.9404478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR20 2080", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326772294, - "lat": 52.7403417, - "lon": 0.9591953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR20 2061", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326772374, - "lat": 52.7115371, - "lon": 1.0378361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NR20 2009D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2326772454, - "lat": 52.7262490, - "lon": 0.9891880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "NR20 2044", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326772552, - "lat": 52.7461268, - "lon": 0.9467456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "NR20 2058", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326772568, - "lat": 52.7566485, - "lon": 0.9424863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "NR20 2062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326772654, - "lat": 52.7184572, - "lon": 1.0354168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "wall", - "ref": "NR20 2011", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2326772665, - "lat": 52.7434792, - "lon": 0.9521251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "NR20 2059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2326833412, - "lat": 51.6639755, - "lon": -3.3612298, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2327520758, - "lat": 52.9981330, - "lon": -2.1898895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2327964568, - "lat": 54.1461557, - "lon": -0.6817460, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2328032456, - "lat": 51.5764647, - "lon": 0.0764018, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2328062045, - "lat": 52.9306653, - "lon": -4.2029669, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2328062049, - "lat": 52.9344829, - "lon": -4.1935388, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2328283680, - "lat": 52.6720282, - "lon": 1.0210567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2328307154, - "lat": 52.9209834, - "lon": -4.2239254, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2329195141, - "lat": 52.5236125, - "lon": -1.6699127, - "tags": { - "amenity": "post_box", - "ref": "B46 122", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2329465598, - "lat": 52.6120843, - "lon": 1.7209107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR30 3009D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329469119, - "lat": 52.6104260, - "lon": 1.7225227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NR30 3003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329470196, - "lat": 52.6077015, - "lon": 1.7271758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR30 3004", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-10-03;2017-04-23" - } -}, -{ - "type": "node", - "id": 2329485697, - "lat": 52.9726432, - "lon": -1.1200533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "image": "https://www.mapillary.com/map/im/1cApTYf9Lmds7d_eSN_dQg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 2329503443, - "lat": 52.9596706, - "lon": -1.1083630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 274", - "ref:GB:uprn": "10015322178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2329541537, - "lat": 52.9247364, - "lon": -4.0892034, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329700580, - "lat": 52.9174130, - "lon": -4.1350141, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329897423, - "lat": 52.9589961, - "lon": -1.1150588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 236D", - "ref:GB:uprn": "10015405261", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2329901044, - "lat": 52.6835166, - "lon": 0.9784490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR20 2012D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329901046, - "lat": 52.6822922, - "lon": 0.9397036, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-30", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "image": "https://i.postimg.cc/BbThWdF6/NR19-1900-NR19-1901.jpg", - "location": "Quebec Street", - "note": "Both apertures have the same ref: Surveyed 30-11-2023 they had different numbers, ammended to show this", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR19 1900;NR19 1901", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2329901089, - "lat": 52.7030224, - "lon": 1.0211671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "fixme": "What has happened to this post box?", - "note": "New box with same ref found 100m NW from here.", - "post_box:type": "wall", - "ref": "NR20 2007", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329901134, - "lat": 52.6802396, - "lon": 0.9679233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329901173, - "lat": 52.6826704, - "lon": 0.9483339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR20 2028D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2329923747, - "lat": 52.6343021, - "lon": 0.9089034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329923752, - "lat": 52.5729294, - "lon": 0.8282825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP25 3410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329923754, - "lat": 52.5778484, - "lon": 0.8301809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "drive_through": "no", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP25 3359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329923768, - "lat": 52.6099627, - "lon": 0.8606247, - "tags": { - "amenity": "post_box", - "note": "Pretty sure this ref is correct. That actual royal mail data map suggests it much further to the east on Mount Pleasant, and there certainly isn't a post box there at all", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3333" - } -}, -{ - "type": "node", - "id": 2329947057, - "lat": 51.6641696, - "lon": -2.3655935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2329957802, - "lat": 51.6847968, - "lon": -2.3584805, - "tags": { - "amenity": "post_box", - "mapillary": "731950044139709", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2329997672, - "lat": 55.7522530, - "lon": -4.9139334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA28 73", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2330103669, - "lat": 55.7413353, - "lon": -2.1144883, - "tags": { - "amenity": "post_box", - "post_box:priority": "yes", - "post_box:type": "lamp", - "ref": "TD15 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19" - } -}, -{ - "type": "node", - "id": 2330779739, - "lat": 50.7413243, - "lon": -1.5447588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO41 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2330780066, - "lat": 50.7671897, - "lon": -1.7354890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 27", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2330780071, - "lat": 50.7726129, - "lon": -1.7363044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH23 19" - } -}, -{ - "type": "node", - "id": 2330780072, - "lat": 50.7782199, - "lon": -1.7315677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 77" - } -}, -{ - "type": "node", - "id": 2330780073, - "lat": 50.7969080, - "lon": -1.7199706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH23 31" - } -}, -{ - "type": "node", - "id": 2330895838, - "lat": 55.8309190, - "lon": -4.3632889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2330983786, - "lat": 50.7103198, - "lon": -3.7723274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "This post box was still there in Sept 2011 (https://goo.gl/maps/uKcB57UuTZs3HpEb8). This post box had definitely gone by Dec 2021 (https://goo.gl/maps/uKcB57UuTZs3HpEb8) so should be removed from Open Streetmap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX6 168", - "source": "http://edwardbetts.com/postboxes" - } -}, -{ - "type": "node", - "id": 2331082853, - "lat": 52.9524433, - "lon": -1.1631679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Lion Foundry Co Ltd, Kirkintilloch", - "post_box:type": "pillar", - "ref": "NG7 49D", - "ref:GB:uprn": "10015475293", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2331118743, - "lat": 54.7883080, - "lon": -4.3707350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG8 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2331119698, - "lat": 52.3537053, - "lon": -2.4253823, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2331528926, - "lat": 50.4907859, - "lon": -4.2240975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL12 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2331737287, - "lat": 51.6106597, - "lon": -0.0661825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N18 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2331804114, - "lat": 50.3120980, - "lon": -4.8430513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2331998553, - "lat": 50.5512146, - "lon": -3.6820878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2332346774, - "lat": 55.9019356, - "lon": -3.5381136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 2D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2332379686, - "lat": 52.4791893, - "lon": -2.6126254, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY7 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2333110836, - "lat": 52.3928067, - "lon": 0.6445350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP27 3426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2333125259, - "lat": 51.5382011, - "lon": -0.2991711, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2333193024, - "lat": 52.3261704, - "lon": -1.5860557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2333397788, - "lat": 50.7760132, - "lon": 0.1613786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "flint_wall", - "post_box:type": "wall", - "ref": "BN25 1083", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2333475363, - "lat": 51.0084722, - "lon": -1.2671715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2333708451, - "lat": 52.4874309, - "lon": -1.8890004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B4 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2334110322, - "lat": 50.7485642, - "lon": -3.1010285, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2334279956, - "lat": 53.8988534, - "lon": -2.1496404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2334782514, - "lat": 51.8890725, - "lon": -0.3733667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2334883310, - "lat": 51.4417234, - "lon": -2.6127171, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 1062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2335046191, - "lat": 52.3060303, - "lon": -1.9465909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B97 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2335130246, - "lat": 52.3051219, - "lon": -1.9187481, - "tags": { - "amenity": "post_box", - "ref": "B98 9030", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2336145292, - "lat": 53.3898207, - "lon": -2.6066506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA5 997", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2336311580, - "lat": 51.7207326, - "lon": -2.3476708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2336317277, - "lat": 52.3021864, - "lon": -1.9466031, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B97 19" - } -}, -{ - "type": "node", - "id": 2336586614, - "lat": 51.5124309, - "lon": -0.4723769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB7 105" - } -}, -{ - "type": "node", - "id": 2336805753, - "lat": 52.7033921, - "lon": 1.0384134, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2336832143, - "lat": 52.3727451, - "lon": -1.9593377, - "tags": { - "amenity": "post_box", - "ref": "B48 192" - } -}, -{ - "type": "node", - "id": 2336901697, - "lat": 52.4863960, - "lon": 1.2755204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR15 1543", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2337473556, - "lat": 52.9448156, - "lon": -3.9885070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1248392249383484", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 2337505830, - "lat": 53.2356137, - "lon": -0.2421459, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2338184268, - "lat": 52.9417516, - "lon": 1.2082705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:15,10:15,16:00,18:30; Sa 07:15,10:15,11:30; Su,PH off", - "inscription": "This is a private posting box for the use of visitors. Any Mail posted here will be re-posted by staff of the North Norfolk Railway", - "name": "2 Railway Stn", - "note": "Private box on platform, plaque says mail will be re-posted by railway staff", - "operator": "North Norfolk Railway", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2338376944, - "lat": 53.3462877, - "lon": -1.4962702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S7 309", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2338622228, - "lat": 50.9457558, - "lon": -1.1845706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2338725638, - "lat": 53.4154263, - "lon": -2.0892481, - "tags": { - "amenity": "post_box", - "ref": "SK6 184" - } -}, -{ - "type": "node", - "id": 2338725652, - "lat": 53.4117925, - "lon": -2.0895968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK6 ???" - } -}, -{ - "type": "node", - "id": 2339833585, - "lat": 52.5171019, - "lon": 0.6623912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "IP26 3398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2339834004, - "lat": 52.6354688, - "lon": 0.6892014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE37 488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2339855624, - "lat": 52.8821866, - "lon": 0.9810243, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2339855633, - "lat": 52.8506801, - "lon": 0.9119636, - "tags": { - "amenity": "post_box", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2340422752, - "lat": 56.4222720, - "lon": -3.4015440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH2 217D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2340422763, - "lat": 56.4232107, - "lon": -3.4107296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2340973835, - "lat": 55.0058855, - "lon": -1.5062569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE28 313" - } -}, -{ - "type": "node", - "id": 2340973887, - "lat": 55.0030820, - "lon": -1.5052752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE28 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2340985027, - "lat": 57.4119058, - "lon": -7.3091884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HS7 66" - } -}, -{ - "type": "node", - "id": 2341222041, - "lat": 54.9530962, - "lon": -3.2145707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "8614478025246768", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 372D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 2341268692, - "lat": 52.1049600, - "lon": -2.4644527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "HR8 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2341915684, - "lat": 55.0067211, - "lon": -1.6198894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2342434178, - "lat": 52.9701035, - "lon": -1.1627228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 183", - "ref:GB:uprn": "10015287128", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2342695050, - "lat": 51.0070022, - "lon": -3.0640462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 563", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2343899887, - "lat": 52.9650923, - "lon": -1.1518153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG3 6", - "ref:GB:uprn": "10015348791", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2344264246, - "lat": 51.9902934, - "lon": -0.7443261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK3 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2344306137, - "lat": 51.9915576, - "lon": -0.7496413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2344306278, - "lat": 51.9913666, - "lon": -0.7538887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2344307825, - "lat": 51.9936559, - "lon": -0.7483684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2344549876, - "lat": 54.3481460, - "lon": -0.9666333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "YO62 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2344641199, - "lat": 51.9635872, - "lon": -4.5676785, - "tags": { - "amenity": "post_box", - "ref": "SA35 110", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2344729052, - "lat": 52.7304086, - "lon": -4.0617169, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2344729079, - "lat": 52.7500045, - "lon": -4.0786640, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2345081576, - "lat": 56.8224746, - "lon": -5.0999726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30", - "note": "front plate partly covered, collection times partly obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2345081578, - "lat": 56.8253973, - "lon": -5.0947393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2345297535, - "lat": 52.9316745, - "lon": -4.0680950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30", - "post_box:type": "lamp", - "ref": "LL48 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2345297548, - "lat": 52.9339953, - "lon": -4.0660081, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2345297633, - "lat": 52.9949461, - "lon": -4.0960889, - "tags": { - "amenity": "post_box", - "note": "ref hidden under label", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2345300993, - "lat": 52.5055694, - "lon": 1.0300907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "fixme": "check collection times", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2345368956, - "lat": 52.4678419, - "lon": 1.0663340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2345747646, - "lat": 51.8291379, - "lon": -0.1830263, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AL6 154" - } -}, -{ - "type": "node", - "id": 2346128892, - "lat": 53.0115331, - "lon": -4.1030440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "note": "moved from outside old PO to new PO in 2016", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2346778034, - "lat": 51.5630525, - "lon": -1.7836552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN1 149" - } -}, -{ - "type": "node", - "id": 2347247460, - "lat": 52.9198012, - "lon": -4.2523354, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2347710069, - "lat": 52.9158793, - "lon": -4.3010691, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2348214764, - "lat": 52.8929069, - "lon": -4.4204412, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL53 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2348458037, - "lat": 52.0861012, - "lon": -0.7257735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK16 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2348554646, - "lat": 51.5625166, - "lon": -1.7870932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 95", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2349159511, - "lat": 53.4283087, - "lon": -3.0313384, - "tags": { - "amenity": "post_box", - "description": "Victorian wall mounted post box CH45 198 on Elgin Drive, Egremont, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH45 187", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box on Elgin Drive, Wallasey" - } -}, -{ - "type": "node", - "id": 2349388612, - "lat": 53.4539788, - "lon": -1.3725829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 472", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 2349432306, - "lat": 53.4622878, - "lon": -1.4287876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S61 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2349689904, - "lat": 53.5834616, - "lon": -1.4936248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S75 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2349797383, - "lat": 52.9834091, - "lon": -1.1587546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "latest_survey_date": "2015-04-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 178", - "ref:GB:uprn": "10015285753", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2349893810, - "lat": 55.9333021, - "lon": -3.5047928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2349895882, - "lat": 53.1391056, - "lon": -1.7827113, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2349902876, - "lat": 50.8452627, - "lon": -0.1393235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2349902877, - "lat": 50.8461284, - "lon": -0.1353609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 290", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "local_knowledge" - } -}, -{ - "type": "node", - "id": 2351258576, - "lat": 53.9662143, - "lon": -1.9410480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483223, - "lat": 54.1991372, - "lon": -2.6062115, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA6 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483226, - "lat": 54.5105016, - "lon": -2.9198583, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483228, - "lat": 54.5715819, - "lon": -2.9284417, - "tags": { - "amenity": "post_box", - "ref": "CA11 178", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483229, - "lat": 54.6065402, - "lon": -2.8669835, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/2442412", - "ref": "CA11 173", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483230, - "lat": 54.5986172, - "lon": -2.8798230, - "tags": { - "amenity": "post_box", - "ref": "CA11 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483232, - "lat": 54.5962762, - "lon": -2.8601344, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CA11 175", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483273, - "lat": 55.1774397, - "lon": -2.8148194, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TD9 61", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483274, - "lat": 55.1817966, - "lon": -2.8108088, - "tags": { - "amenity": "post_box", - "ref": "TD9 40", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351483298, - "lat": 55.8967295, - "lon": -3.0529661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2351941117, - "lat": 53.2853208, - "lon": -2.9616846, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2351941915, - "lat": 53.2844886, - "lon": -2.9530841, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2352178161, - "lat": 51.2351494, - "lon": -0.5748112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP10", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU1 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2352280477, - "lat": 53.9818675, - "lon": -1.9361656, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "photo" - } -}, -{ - "type": "node", - "id": 2352473324, - "lat": 51.7970959, - "lon": -0.9024255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-05", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2353441991, - "lat": 52.9729500, - "lon": -1.1547859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 384", - "ref:GB:uprn": "10015298501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2353442010, - "lat": 52.9729387, - "lon": -1.1547779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 12:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG5 8", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2353455780, - "lat": 52.9752922, - "lon": -1.1557483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Glasgow", - "post_box:type": "pillar", - "ref": "NG5 123", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2353474326, - "lat": 52.9787746, - "lon": -1.1567956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 305", - "ref:GB:uprn": "10015451575", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2353497342, - "lat": 52.9776872, - "lon": -1.1606617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2353529845, - "lat": 53.0712755, - "lon": -1.2517467, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2353626931, - "lat": 51.7726655, - "lon": -2.5971303, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2353636608, - "lat": 51.7597365, - "lon": -2.5924350, - "tags": { - "amenity": "post_box", - "fixme": "Reference", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2353888055, - "lat": 51.6196084, - "lon": -3.9927625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 2353981753, - "lat": 53.7089006, - "lon": -1.8317609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2354055091, - "lat": 52.6807738, - "lon": 1.1632297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR8 806", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2354055161, - "lat": 52.6818685, - "lon": 1.1564820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 813" - } -}, -{ - "type": "node", - "id": 2355037708, - "lat": 53.2100018, - "lon": -0.5621926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LN6 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2355073450, - "lat": 52.2067914, - "lon": -1.5445982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2355255078, - "lat": 51.2061692, - "lon": 0.2777002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1774929096020556", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN10 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-11-03" - } -}, -{ - "type": "node", - "id": 2355261718, - "lat": 50.9485811, - "lon": 0.9644434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "ref": "TN29 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2355265552, - "lat": 51.6573637, - "lon": -2.4568342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-20", - "wikimedia_commons": "File:Queen Elizabeth II postbox, Stone, Gloucestershire - geograph.org.uk - 4797361.jpg" - } -}, -{ - "type": "node", - "id": 2355266580, - "lat": 50.9429322, - "lon": 0.9687384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "473949353692015", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN29 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-03-21" - } -}, -{ - "type": "node", - "id": 2355269854, - "lat": 51.0097895, - "lon": 0.8536643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN29 185" - } -}, -{ - "type": "node", - "id": 2355272925, - "lat": 51.0095488, - "lon": 0.9777621, - "tags": { - "amenity": "post_box", - "ref": "TN29 154" - } -}, -{ - "type": "node", - "id": 2355313033, - "lat": 51.0484300, - "lon": 0.9958458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TN29 283" - } -}, -{ - "type": "node", - "id": 2355314466, - "lat": 51.0327936, - "lon": 1.0042299, - "tags": { - "amenity": "post_box", - "ref": "TN29 287" - } -}, -{ - "type": "node", - "id": 2355316093, - "lat": 51.0363170, - "lon": 1.0149142, - "tags": { - "amenity": "post_box", - "ref": "TN29 290" - } -}, -{ - "type": "node", - "id": 2355327878, - "lat": 51.0079333, - "lon": 0.9740158, - "tags": { - "amenity": "post_box", - "ref": "TN29 293" - } -}, -{ - "type": "node", - "id": 2355337134, - "lat": 50.9472118, - "lon": 0.9033327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN29 312" - } -}, -{ - "type": "node", - "id": 2355348948, - "lat": 51.0154868, - "lon": 0.9856183, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN29 323", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN29 323D", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 2355377063, - "lat": 50.9851493, - "lon": 0.9383650, - "tags": { - "amenity": "post_box", - "ref": "TN28 148" - } -}, -{ - "type": "node", - "id": 2355736630, - "lat": 52.9299500, - "lon": -3.6157128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL23 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2355777342, - "lat": 51.7762017, - "lon": -2.5914391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL16 73", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2356057193, - "lat": 52.5514291, - "lon": 1.1277350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1843", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2356181559, - "lat": 51.6689821, - "lon": -0.5495902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP6 145", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 2356256082, - "lat": 55.8637581, - "lon": -4.1079992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G34 1343", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2356261601, - "lat": 57.3120223, - "lon": -2.3850189, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2356273066, - "lat": 51.5771732, - "lon": -0.7101152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL8 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2356284261, - "lat": 51.5751213, - "lon": 0.0731575, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2356284282, - "lat": 51.5773011, - "lon": 0.0654552, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2356298164, - "lat": 51.3650236, - "lon": -0.1925813, - "tags": { - "amenity": "post_box", - "ref": "SM1 8" - } -}, -{ - "type": "node", - "id": 2356340881, - "lat": 55.8722134, - "lon": -4.1249103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G34 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2356348539, - "lat": 51.0231382, - "lon": -3.1029749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA1 74", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2356348540, - "lat": 51.0210005, - "lon": -3.1041108, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TA1 144", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 144D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2356903061, - "lat": 53.5149019, - "lon": -1.5957120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S36 455", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2357016106, - "lat": 50.5145082, - "lon": -4.4535153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "PL14 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2357016190, - "lat": 50.5093186, - "lon": -4.4871102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "wall", - "ref": "PL14 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2357031309, - "lat": 51.7425830, - "lon": -0.8877867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 2357053976, - "lat": 50.4980127, - "lon": -4.4497160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 03:30, Sa 11:00", - "post_box:type": "wall", - "ref": "PL14 38" - } -}, -{ - "type": "node", - "id": 2357075629, - "lat": 51.5777193, - "lon": -0.7150046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL8 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2357997583, - "lat": 53.9120997, - "lon": -1.1931215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO23 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2358451303, - "lat": 53.8378876, - "lon": -1.7933785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD18 909D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2359176066, - "lat": 51.8816286, - "lon": -3.8574444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "note": "Ref was obscured by a sticker", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2359277280, - "lat": 51.3225880, - "lon": -0.1932898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2359277281, - "lat": 51.3290628, - "lon": -0.1941143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2359497615, - "lat": 52.9570629, - "lon": -1.1543418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG1 83", - "ref:GB:uprn": "10015451260", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2359950545, - "lat": 52.8054044, - "lon": -3.1705776, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2360968542, - "lat": 51.9018367, - "lon": -2.0758844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GL50 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2361013948, - "lat": 53.8964538, - "lon": -1.1761921, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS24 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2361420847, - "lat": 51.9044277, - "lon": -3.8505608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "post_box:type": "wall", - "ref": "SA19 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2362108823, - "lat": 51.5175755, - "lon": -0.1513553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 20;W1U 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2362304053, - "lat": 54.2519910, - "lon": -0.9570798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 291", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2362379595, - "lat": 53.5596837, - "lon": -0.0820353, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/TPSTT4Lc/DN32-56D.jpg", - "location": "Legsby Avenue, Lambert Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2362555958, - "lat": 54.3687899, - "lon": -0.9708038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "YO62 273", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2363121555, - "lat": 52.7544443, - "lon": -2.2309178, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2363329112, - "lat": 52.9224036, - "lon": -3.4385707, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2364244409, - "lat": 51.4815434, - "lon": -2.5160195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS16 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2364645869, - "lat": 51.8896464, - "lon": -2.1932571, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL3 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "https://twitter.com/SpookyLovejoy/status/1449783511259533316", - "source:date": "2021-10-17" - } -}, -{ - "type": "node", - "id": 2364678647, - "lat": 51.9930796, - "lon": -0.7395893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "1680065222372990", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "MK3 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-11" - } -}, -{ - "type": "node", - "id": 2364839682, - "lat": 51.3425701, - "lon": -0.8816238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG27 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2364857115, - "lat": 55.8853228, - "lon": -4.3527197, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2364860599, - "lat": 51.7063255, - "lon": -2.0323679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2364939082, - "lat": 51.5228015, - "lon": -0.7198139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SL6 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2365197977, - "lat": 55.7695440, - "lon": -2.1438211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TD15", - "ref": "TD15 63D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 2365428670, - "lat": 51.8383124, - "lon": -2.6326190, - "tags": { - "amenity": "post_box", - "ele": "150.811401", - "ref": "GL16 81" - } -}, -{ - "type": "node", - "id": 2365539706, - "lat": 51.6174471, - "lon": -0.4175153, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2366970484, - "lat": 55.7954923, - "lon": -4.2953869, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2367142251, - "lat": 51.5228748, - "lon": -0.0530633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E1 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2367179604, - "lat": 51.5304911, - "lon": -0.0520430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2367507984, - "lat": 51.6012914, - "lon": 0.0192637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "IG8 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2367508007, - "lat": 51.6094337, - "lon": 0.0138705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "name": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG8 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2367508010, - "lat": 51.6077100, - "lon": 0.0194459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 39D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2367508040, - "lat": 51.6004834, - "lon": 0.0135316, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2367702365, - "lat": 51.6177228, - "lon": -0.4077636, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2367771594, - "lat": 53.5098251, - "lon": -1.6053606, - "tags": { - "amenity": "post_box", - "ref": "S36 404" - } -}, -{ - "type": "node", - "id": 2367788948, - "lat": 51.2550103, - "lon": -0.3393479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH4 96D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2367851401, - "lat": 51.1721990, - "lon": -0.3799136, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH5 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2367865167, - "lat": 51.1670898, - "lon": -0.4645883, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU6 81", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2367865168, - "lat": 51.1513615, - "lon": -0.4755290, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU6 166", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2368118422, - "lat": 52.2809615, - "lon": -1.1707054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 153", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2368911650, - "lat": 56.6598456, - "lon": -3.7779230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "ref": "PH9 48", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2368929418, - "lat": 56.6214719, - "lon": -3.8661857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH15 51", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2368948150, - "lat": 56.5699365, - "lon": -4.0256623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH15 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2369034070, - "lat": 56.5093097, - "lon": -3.7881283, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 148", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2369034155, - "lat": 56.5372837, - "lon": -3.6958686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH8 156", - "royal_cypher": "GR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2369547326, - "lat": 50.4866450, - "lon": -4.4707946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "PL14 61" - } -}, -{ - "type": "node", - "id": 2369626326, - "lat": 50.3522264, - "lon": -4.4528009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL13 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 2370579070, - "lat": 53.0103394, - "lon": -1.1742872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_survey_date": "2015-04-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 109", - "ref:GB:uprn": "10015857475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2370932311, - "lat": 55.3152325, - "lon": -1.9598426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "468344071120946", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE65 796", - "survey:date": "2020-02-17" - } -}, -{ - "type": "node", - "id": 2370966256, - "lat": 55.3252923, - "lon": -1.9489455, - "tags": { - "amenity": "post_box", - "ref": "NE65 132" - } -}, -{ - "type": "node", - "id": 2370966384, - "lat": 55.4007118, - "lon": -1.8903326, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NE66 78" - } -}, -{ - "type": "node", - "id": 2371303275, - "lat": 53.6104964, - "lon": -1.7877628, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2371303278, - "lat": 53.6069110, - "lon": -1.7890019, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2371747741, - "lat": 51.1820298, - "lon": -0.6851289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2372313245, - "lat": 55.9892530, - "lon": -4.9224720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 09:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2372319904, - "lat": 55.9927159, - "lon": -4.9337551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA23 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2372320829, - "lat": 55.9930216, - "lon": -4.9685983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 09:30", - "note": "has been moved from corner and is now between bus shelter nad phone box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA23 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2372321333, - "lat": 55.9892065, - "lon": -4.9608424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2372573428, - "lat": 51.8791867, - "lon": 0.5512877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372610315, - "lat": 50.6093400, - "lon": -1.9654140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 121", - "ref:GB:uprn": "10015284224", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2372627047, - "lat": 52.0597085, - "lon": -1.3426053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX16 1028D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372631956, - "lat": 50.8626982, - "lon": -0.9406494, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "PO10 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372646283, - "lat": 52.4309123, - "lon": -1.8975488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B14 15", - "royal_cypher": "EVIIR", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372648959, - "lat": 51.3886651, - "lon": -0.6247053, - "tags": { - "amenity": "post_box", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372665942, - "lat": 50.8784707, - "lon": -1.0331816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372678874, - "lat": 52.1077443, - "lon": 0.9082794, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP7 1228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2372687584, - "lat": 51.4406878, - "lon": 0.3825075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "note": "this is taller than the other fluted pillar boxes. Vertical aperture.", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "DA12 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "bing", - "wikidata": "Q26625574" - } -}, -{ - "type": "node", - "id": 2372727953, - "lat": 50.4965764, - "lon": -4.4813780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "PL14 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2373172420, - "lat": 53.4411961, - "lon": -1.3362567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S65 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2374022809, - "lat": 50.9805166, - "lon": -1.7028617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2374217087, - "lat": 57.2509360, - "lon": -2.0563427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB23 268", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2374217160, - "lat": 57.2458561, - "lon": -2.0551105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB23 583", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2374217195, - "lat": 57.2507861, - "lon": -2.0617148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB23 347" - } -}, -{ - "type": "node", - "id": 2374359183, - "lat": 55.4690053, - "lon": -1.8300554, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NE66 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2374836012, - "lat": 53.4446955, - "lon": -1.3542022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "S62 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2374836030, - "lat": 53.4447479, - "lon": -1.3541593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S62 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2374943077, - "lat": 57.1562286, - "lon": -2.1002745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "AB24 62", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 62", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375290840, - "lat": 51.5558084, - "lon": -0.3169458, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2375352219, - "lat": 53.9735079, - "lon": -1.2045309, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO26 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2375448480, - "lat": 56.0527197, - "lon": -4.2221555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 12:00", - "post_box:type": "pillar", - "ref": "G63 565", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375448483, - "lat": 56.0489490, - "lon": -4.1957673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "G63 197", - "source": "OS_OpenData_VectorMap_District" - } -}, -{ - "type": "node", - "id": 2375448488, - "lat": 56.0337270, - "lon": -3.9771679, - "tags": { - "amenity": "post_box", - "ref": "FK6 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375448490, - "lat": 56.0254068, - "lon": -3.9423861, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375564440, - "lat": 51.0206553, - "lon": -0.9310839, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU32 27", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2375564465, - "lat": 51.0236868, - "lon": -0.9232881, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-24", - "old_ref": "GU32 155", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375576662, - "lat": 51.0377779, - "lon": -0.8972000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2375592748, - "lat": 51.0524840, - "lon": -0.8567880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU33 149", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU33 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 2375595659, - "lat": 51.0913131, - "lon": -0.8253904, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU30 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375604791, - "lat": 51.0992316, - "lon": -0.9481929, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I used this postbox on 22.12.2018 and the postbox number is definitely GU34 91. Before my edit on 23.12.2018 this postbox was numbered on OSM as GU34 93. But postbox GU34 93 is located several miles away just off the B3349 north of Alton.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2375847739, - "lat": 56.0289746, - "lon": -3.7838396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 19D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2375848210, - "lat": 55.9946302, - "lon": -3.5292934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 10:45", - "ref": "EH49 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375974040, - "lat": 53.4345089, - "lon": -1.3628754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S60 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2375974043, - "lat": 53.4346789, - "lon": -1.3627874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S60 290", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2376007895, - "lat": 51.6066739, - "lon": -0.3008902, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-22", - "collection_times": "Mo-Fr 18:15, Sa 12:30", - "ref": "HA7 804" - } -}, -{ - "type": "node", - "id": 2376077992, - "lat": 50.5509174, - "lon": -4.1435537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL19 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2376083064, - "lat": 53.0801289, - "lon": -1.1939365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG15 340", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2376147751, - "lat": 53.8142502, - "lon": -1.5962479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS4 980", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2376147756, - "lat": 53.8152488, - "lon": -1.5568099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS6 400", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2376147763, - "lat": 53.8248695, - "lon": -1.5409344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2376147765, - "lat": 53.8355197, - "lon": -1.5310049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 807", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2376147769, - "lat": 53.8386375, - "lon": -1.5621060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS6 1020" - } -}, -{ - "type": "node", - "id": 2376147773, - "lat": 53.8395616, - "lon": -1.5297267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2376147778, - "lat": 53.8443430, - "lon": -1.5637893, - "tags": { - "addr:street": "Scotland Wood Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2376147781, - "lat": 53.8472224, - "lon": -1.5424730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2376147785, - "lat": 53.8522055, - "lon": -1.5326378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 656" - } -}, -{ - "type": "node", - "id": 2376147788, - "lat": 53.8529917, - "lon": -1.5141335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 161", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2376147791, - "lat": 53.8557528, - "lon": -1.5306633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 825" - } -}, -{ - "type": "node", - "id": 2376147795, - "lat": 53.8567094, - "lon": -1.5009503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 198" - } -}, -{ - "type": "node", - "id": 2376206718, - "lat": 55.9820566, - "lon": -4.9496728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA23 73", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2376207898, - "lat": 55.9814650, - "lon": -4.9319714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA23 60", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2376208626, - "lat": 55.9703610, - "lon": -4.9116557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2376208840, - "lat": 55.9651445, - "lon": -4.9140587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2376589328, - "lat": 53.6380854, - "lon": -1.8076426, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2376594197, - "lat": 53.6784868, - "lon": -1.6361289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 62" - } -}, -{ - "type": "node", - "id": 2376813534, - "lat": 51.7878421, - "lon": 0.1389119, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2376821461, - "lat": 51.4682644, - "lon": -2.5901554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS6 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2376831095, - "lat": 51.4469626, - "lon": -2.6117588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "BS1 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2376832307, - "lat": 51.4739266, - "lon": -2.5777293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "wall", - "ref": "BS2 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2376866606, - "lat": 53.0543377, - "lon": -1.2026079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "wall", - "ref": "NG15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2377090952, - "lat": 50.7181209, - "lon": -3.5257416, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "158346420056210", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX2 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-12" - } -}, -{ - "type": "node", - "id": 2377090953, - "lat": 50.7165923, - "lon": -3.5229834, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX2 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2377290644, - "lat": 52.5154741, - "lon": -1.6444320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B46 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2377501150, - "lat": 52.9394094, - "lon": -1.1470566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 304D", - "ref:GB:uprn": "10015315707", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2378359040, - "lat": 55.9447783, - "lon": -4.5732738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G82 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2378363136, - "lat": 50.8334869, - "lon": -1.8430253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "BH24 59", - "ref:GB:uprn": "10015441031", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2378363342, - "lat": 50.8339078, - "lon": -1.8358793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2379531391, - "lat": 53.6563044, - "lon": -1.6673498, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2379590242, - "lat": 56.5770094, - "lon": -3.4349607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH10 69", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2380021468, - "lat": 51.5852016, - "lon": -0.0721247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N15 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2380231471, - "lat": 50.5407227, - "lon": -3.5135616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ14 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 2380574575, - "lat": 55.9469698, - "lon": -4.5829743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "collection times partially obscured", - "operator": "Royal Mail", - "ref": "G82 14" - } -}, -{ - "type": "node", - "id": 2380713540, - "lat": 51.5713676, - "lon": 0.0137391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E11 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2382286293, - "lat": 52.9797800, - "lon": -1.1527075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 128", - "ref:GB:uprn": "10015421628", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2382354727, - "lat": 50.3142518, - "lon": -4.0393836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL8 421", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2382807241, - "lat": 53.7320319, - "lon": -1.7209431, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2383209372, - "lat": 50.1178135, - "lon": -5.1728052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR11 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2383439359, - "lat": 55.8412905, - "lon": -4.2473955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "ref": "G5 1382" - } -}, -{ - "type": "node", - "id": 2383652370, - "lat": 57.3367321, - "lon": -2.1796036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "513502744344067", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-07-04" - } -}, -{ - "type": "node", - "id": 2384102735, - "lat": 53.7465131, - "lon": -1.7367906, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2384110766, - "lat": 51.4475213, - "lon": -2.5931317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "BS1 379D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2384443079, - "lat": 53.7476401, - "lon": -1.7409066, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2384443082, - "lat": 53.7485418, - "lon": -1.7353720, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2384525558, - "lat": 51.8770606, - "lon": -2.8070387, - "tags": { - "amenity": "post_box", - "last_collection": "4.30pm Saturday 11.00am" - } -}, -{ - "type": "node", - "id": 2384633277, - "lat": 51.4816692, - "lon": -0.0194978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SE8 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2384757312, - "lat": 51.8138928, - "lon": -2.7138657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP25 876", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2384757315, - "lat": 51.8253799, - "lon": -2.7129998, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP25 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2384757360, - "lat": 51.8392194, - "lon": -2.7135953, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP25 496", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2384757537, - "lat": 51.8778540, - "lon": -2.7899453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP7 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-02", - "wikimedia_commons": "File:Postbox, bus shelter and War Memorial, Skenfrith - geograph.org.uk - 3561829.jpg" - } -}, -{ - "type": "node", - "id": 2384757568, - "lat": 51.8873181, - "lon": -2.7563177, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2385409068, - "lat": 52.8649062, - "lon": 0.9483559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2385422252, - "lat": 51.5559727, - "lon": -1.7745490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2385481844, - "lat": 51.5561354, - "lon": -1.7784513, - "tags": { - "amenity": "post_box", - "note": "STC2013", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2385484882, - "lat": 51.5624868, - "lon": -0.3397561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 38" - } -}, -{ - "type": "node", - "id": 2385590615, - "lat": 55.8035547, - "lon": -4.1948164, - "tags": { - "amenity": "post_box", - "note": "ref plate missing" - } -}, -{ - "type": "node", - "id": 2385766687, - "lat": 53.7214582, - "lon": -1.7090571, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2385771501, - "lat": 54.1359390, - "lon": -2.4348289, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 106", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2385833618, - "lat": 53.9662028, - "lon": -2.0248632, - "tags": { - "amenity": "post_box", - "ref": "BD23 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386058248, - "lat": 54.0166877, - "lon": -1.5804480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386058258, - "lat": 54.0800206, - "lon": -1.5620442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG3 Low Markington D", - "source": "https://www.royalmail.com/services-near-you#/results?&postcode=HG3%203NP&latitude=54.081775&longitude=-1.556449&searchRadius=40&count=7&officeType=postboxes&filters=&selectedName=LOW%20MARKINGTON%20D" - } -}, -{ - "type": "node", - "id": 2386058264, - "lat": 54.0792499, - "lon": -1.5352885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HG3 143", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386068288, - "lat": 54.1449921, - "lon": -1.5157308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386095953, - "lat": 54.2837603, - "lon": -1.5364723, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL7 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386096017, - "lat": 54.2973470, - "lon": -1.5482559, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386246224, - "lat": 52.3916538, - "lon": -1.2429975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 36", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386628758, - "lat": 54.3718512, - "lon": -1.6294374, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-03", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL10 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386628772, - "lat": 54.3750721, - "lon": -1.6335085, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386728899, - "lat": 54.9265168, - "lon": -1.6699644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386762055, - "lat": 55.1329870, - "lon": -1.7740074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "NE61 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386797325, - "lat": 55.2009527, - "lon": -1.7279242, - "tags": { - "amenity": "post_box", - "ref": "NE61 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2386797355, - "lat": 55.2606948, - "lon": -1.7751705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4649918615032174", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE65 139", - "source": "survey", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 2387436677, - "lat": 51.6241835, - "lon": -3.9490836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2387784226, - "lat": 52.9327071, - "lon": -4.0683464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2387840850, - "lat": 52.9304457, - "lon": -4.0674086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:47", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2387857614, - "lat": 55.8702015, - "lon": -4.2278784, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2388148088, - "lat": 52.8101345, - "lon": -0.8700258, - "tags": { - "amenity": "post_box", - "geograph:id": "3552958", - "post_box:type": "wall", - "ref": "LE14 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:post_box:type": "Geograph" - } -}, -{ - "type": "node", - "id": 2388148966, - "lat": 52.8091790, - "lon": -0.8790728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LE14 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2388255680, - "lat": 50.8180100, - "lon": -1.4520143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2388255681, - "lat": 50.8204980, - "lon": -1.4441487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2388255682, - "lat": 50.8266650, - "lon": -1.4315154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2388588841, - "lat": 52.5715716, - "lon": -0.3414130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2388671332, - "lat": 55.0164115, - "lon": -1.4502439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE29 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2388811786, - "lat": 52.9917621, - "lon": -1.0415029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG14 529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2388979113, - "lat": 53.0714379, - "lon": -3.7972378, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2389036308, - "lat": 52.9580598, - "lon": -1.1475911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "level": "0", - "note": "Inside the Tesco Metro", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG1 485", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2389883064, - "lat": 53.6307105, - "lon": -2.8287115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2389982189, - "lat": 51.1859922, - "lon": 0.1422187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "TN8 356", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2390074153, - "lat": 52.3887196, - "lon": -2.7611628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "SY8 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390133826, - "lat": 51.5587954, - "lon": -1.8026105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "STC2013", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN5 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390161308, - "lat": 51.3653717, - "lon": -1.5258226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN8 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390164792, - "lat": 51.3481706, - "lon": 0.5886501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "ME8 0LR", - "ref": "ME8 277" - } -}, -{ - "type": "node", - "id": 2390181457, - "lat": 51.2736653, - "lon": -1.4954736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390184063, - "lat": 51.2476694, - "lon": -1.5083498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390242784, - "lat": 52.9673486, - "lon": -1.1692269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Inside lobby of Asda Hyson Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG7 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2390385840, - "lat": 53.6591940, - "lon": -1.7653155, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2390410388, - "lat": 51.8146870, - "lon": -0.8167920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 2390501379, - "lat": 51.8021668, - "lon": -0.8224977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390621611, - "lat": 51.8126480, - "lon": -0.8083180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP21 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2390725733, - "lat": 51.8113340, - "lon": -0.8053302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2391026992, - "lat": 54.0165318, - "lon": -1.3250274, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2391368372, - "lat": 52.9153475, - "lon": 1.0118730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2391643114, - "lat": 52.6132577, - "lon": 1.7377059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3032D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2392036919, - "lat": 55.9087372, - "lon": -3.3194618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH14 629", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2392044155, - "lat": 52.6278590, - "lon": -2.4845301, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-07", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "TF8 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2392262487, - "lat": 51.3855340, - "lon": -0.5446090, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2392262489, - "lat": 51.3879664, - "lon": -0.5336775, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2392278120, - "lat": 51.8314008, - "lon": -0.8521250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 2392278246, - "lat": 51.8334023, - "lon": -0.8595106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "This appears to have the wrong information plate: Royal Mail list indicates that the Paradise Orchard postbox should be HP18 330 which would be consistent with other nearby postboxes.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 2392843176, - "lat": 53.3536531, - "lon": -1.2596253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S26 390", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2392881119, - "lat": 53.3539923, - "lon": -1.2180934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S25 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2392908352, - "lat": 52.8439183, - "lon": 1.2767112, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2392914365, - "lat": 51.5590046, - "lon": -1.7425980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 326" - } -}, -{ - "type": "node", - "id": 2392914858, - "lat": 51.5670125, - "lon": -1.7752920, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 51D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2393306287, - "lat": 51.8389831, - "lon": -0.8531496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 2393403298, - "lat": 53.3648728, - "lon": -1.8159602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S33 427D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2394302147, - "lat": 55.9374113, - "lon": -3.8324505, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2394321891, - "lat": 53.9393925, - "lon": -2.1092170, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2394458943, - "lat": 51.0393866, - "lon": -1.5856349, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2394458956, - "lat": 51.0340236, - "lon": -1.5718593, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 548D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2394883994, - "lat": 51.5659609, - "lon": -1.7444903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 349" - } -}, -{ - "type": "node", - "id": 2394930796, - "lat": 51.0420705, - "lon": -2.2734346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015421504" - } -}, -{ - "type": "node", - "id": 2395211719, - "lat": 51.0459561, - "lon": -2.2218779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015276111" - } -}, -{ - "type": "node", - "id": 2395545787, - "lat": 54.8288882, - "lon": -1.8676269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "706649221137024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 2395711398, - "lat": 54.5553868, - "lon": -5.8488162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2395954948, - "lat": 51.8167987, - "lon": -0.8147951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "mail:meter": "yes", - "mail:stamped": "no", - "note": "Regular collections will be made throughout the day as required.", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP20 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 2396052522, - "lat": 53.5192986, - "lon": -1.6022675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S36 639D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2396184552, - "lat": 52.4467302, - "lon": 1.0268480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2396184567, - "lat": 52.4924671, - "lon": 1.0282651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1718", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2396586558, - "lat": 55.9000202, - "lon": -3.2958637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EH14 573D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2396587566, - "lat": 53.4135601, - "lon": -1.4099717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "level": "0", - "post_box:type": "pillar", - "ref": "S9 1611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2396719747, - "lat": 52.7314118, - "lon": -1.1001776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE12 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2396719825, - "lat": 52.7330777, - "lon": -1.0974132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "ref": "LE12 153", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2396719946, - "lat": 52.7352886, - "lon": -1.0992189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "LE12 159", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2396720117, - "lat": 52.7383400, - "lon": -1.1030623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "mapillary": "372367394199242", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE12 119", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 2396720135, - "lat": 52.7520828, - "lon": -1.1404787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 147", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2397056881, - "lat": 51.0413622, - "lon": -2.2767471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015285497" - } -}, -{ - "type": "node", - "id": 2397231445, - "lat": 51.4213482, - "lon": -0.0594635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2398120650, - "lat": 52.8116025, - "lon": 1.3203182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2398136755, - "lat": 54.1979712, - "lon": -1.4340760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO7 28", - "royal_cypher": "EIIR", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2398172413, - "lat": 51.8138873, - "lon": -0.8150565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP20 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2013-07-20" - } -}, -{ - "type": "node", - "id": 2398195317, - "lat": 51.8197939, - "lon": -0.8082615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Re-surveyed on 2015-04-11 as duplicate reference (HP20 71). This would appear to be the \"real\" HP20 71 as the other one (at Tesco) should be HP20 77. Assume a mix-up by Royal Mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-11" - } -}, -{ - "type": "node", - "id": 2398444720, - "lat": 52.7384263, - "lon": 1.3483768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2398668045, - "lat": 50.2287803, - "lon": -5.1954087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR16 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2398668047, - "lat": 50.2378720, - "lon": -5.1916534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR16 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 2398820638, - "lat": 50.3183938, - "lon": -5.2026822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR5 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 2399146008, - "lat": 52.7676939, - "lon": 1.5166905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "NR12 1274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2399239564, - "lat": 57.6918785, - "lon": -5.6940783, - "tags": { - "amenity": "post_box", - "ref": "IV21 239", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2399239565, - "lat": 57.6973422, - "lon": -5.7255297, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV21 233", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2399239568, - "lat": 57.6959074, - "lon": -5.7723256, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV21 221", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2399239569, - "lat": 57.6869237, - "lon": -5.7830276, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV21 230", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2399239570, - "lat": 57.6750794, - "lon": -5.7848535, - "tags": { - "amenity": "post_box", - "ref": "IV21 223", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2399239571, - "lat": 57.6536884, - "lon": -5.8036381, - "tags": { - "amenity": "post_box", - "note": "Plate reads IV 222", - "ref": "IV21 222", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2399434485, - "lat": 52.8283892, - "lon": 1.4723878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "NR28 2831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2399601581, - "lat": 51.7059483, - "lon": -0.4175081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2399645589, - "lat": 51.6483079, - "lon": -0.3552039, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2399668988, - "lat": 52.3826929, - "lon": 1.0893485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2399697278, - "lat": 52.3899254, - "lon": 1.0687920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7084D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2399774814, - "lat": 52.7731565, - "lon": 1.4558236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2399797313, - "lat": 52.7554858, - "lon": 1.5702049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2399929957, - "lat": 50.5701308, - "lon": -4.7065520, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2400181183, - "lat": 51.8358173, - "lon": -2.1598859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "mapillary": "2851753465073747", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL3 80", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 2400215813, - "lat": 50.9089607, - "lon": -1.3700482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "fixme": "has this pillar box been removed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2400215823, - "lat": 50.9006609, - "lon": -1.3772312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 206", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2400215864, - "lat": 50.9137087, - "lon": -1.3633038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 337D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2400509173, - "lat": 50.2387391, - "lon": -5.1856999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR16 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2400997298, - "lat": 54.3295308, - "lon": -3.2361888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "LA20 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2401164461, - "lat": 51.1825148, - "lon": -0.8395329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU10 33D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2402019615, - "lat": 54.3955001, - "lon": -5.7602846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2402661799, - "lat": 52.6711287, - "lon": -2.3911903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TF11 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2402673498, - "lat": 54.7499272, - "lon": -2.7039989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA10 249", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2402793399, - "lat": 55.8127008, - "lon": -3.9773515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00" - } -}, -{ - "type": "node", - "id": 2404314559, - "lat": 54.3316497, - "lon": -5.7156515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BT30 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2404783996, - "lat": 52.0755417, - "lon": -1.9021875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00; Su off", - "note": "Position more accurately", - "post_box:type": "lamp", - "ref": "WR11 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2405415594, - "lat": 52.9457095, - "lon": -2.2769965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2405420407, - "lat": 56.0503340, - "lon": -3.4167302, - "tags": { - "amenity": "post_box", - "ref": "KY11 137", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420424, - "lat": 56.0725440, - "lon": -3.4126760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY11 152D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420427, - "lat": 56.0671467, - "lon": -3.4188943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY11 102D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420430, - "lat": 56.0659436, - "lon": -3.4252343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "KY11 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420433, - "lat": 56.0657071, - "lon": -3.4327616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 185D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420457, - "lat": 56.0626744, - "lon": -3.4483026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 23D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420465, - "lat": 56.0639438, - "lon": -3.4358151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420483, - "lat": 56.0605509, - "lon": -3.4244160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "KY11 151", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420485, - "lat": 56.0608391, - "lon": -3.4438583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405420514, - "lat": 56.0578767, - "lon": -3.4386457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 85", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405517881, - "lat": 56.0579045, - "lon": -3.4299996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 58", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2405840041, - "lat": 55.7389192, - "lon": -1.9927610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "TD15 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2405979978, - "lat": 50.7062769, - "lon": -3.4075108, - "tags": { - "amenity": "post_box", - "mapillary": "531167857891932", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "survey:date": "2020-08-29" - } -}, -{ - "type": "node", - "id": 2405985893, - "lat": 52.4591753, - "lon": -2.9604776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2406467883, - "lat": 51.1339665, - "lon": -3.0107332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 299", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 2406775533, - "lat": 51.7733659, - "lon": -4.7962729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2406993519, - "lat": 52.7789640, - "lon": 1.2065786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR10 1026", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2407023643, - "lat": 52.7775506, - "lon": 0.9450392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR20 2057", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2407074822, - "lat": 51.6538975, - "lon": -2.2813235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL8 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2407718054, - "lat": 52.8757945, - "lon": 1.0395570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2408976292, - "lat": 58.5150783, - "lon": -3.4933665, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2409111775, - "lat": 57.4529338, - "lon": -4.2238787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:50", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 165", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2409376483, - "lat": 51.5362730, - "lon": -0.1447862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NW1 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 19D" - } -}, -{ - "type": "node", - "id": 2410013893, - "lat": 50.7782591, - "lon": -3.0382086, - "tags": { - "amenity": "post_box", - "mapillary": "488579859052276", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-05-06" - } -}, -{ - "type": "node", - "id": 2410323862, - "lat": 53.4731623, - "lon": -2.2399485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M1 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2410359741, - "lat": 53.0860417, - "lon": -3.7946961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL24 49" - } -}, -{ - "type": "node", - "id": 2410359745, - "lat": 53.0971377, - "lon": -3.7892334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2410382485, - "lat": 51.4047944, - "lon": -0.7834035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2411418715, - "lat": 58.4392361, - "lon": -3.0934940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KW1 1" - } -}, -{ - "type": "node", - "id": 2411418719, - "lat": 57.8970624, - "lon": -5.1586848, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2411564839, - "lat": 51.5535971, - "lon": 0.6813106, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2412045250, - "lat": 50.0855878, - "lon": -5.3124159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TR13 44D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2017-10-26" - } -}, -{ - "type": "node", - "id": 2412118633, - "lat": 50.9439283, - "lon": -1.1803559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO32 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2412620138, - "lat": 53.3486968, - "lon": -3.1325043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "description": "George V wall-mounted Type C post box CH61 51 by W.T. Allen Company on the front boundary wall of Thurstaston Hall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH61 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Thurstaston Hall.jpg" - } -}, -{ - "type": "node", - "id": 2412648346, - "lat": 51.1079533, - "lon": -3.0845281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2412704197, - "lat": 52.0469816, - "lon": -0.7968899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK13 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2412707509, - "lat": 51.1269643, - "lon": -3.1077229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 105", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2412707510, - "lat": 51.1277567, - "lon": -3.0983151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2413369051, - "lat": 53.6693483, - "lon": -0.3182367, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2413369209, - "lat": 53.6830913, - "lon": -0.3298823, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2413514624, - "lat": 51.4617210, - "lon": -0.8905502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG5 430" - } -}, -{ - "type": "node", - "id": 2413705049, - "lat": 51.8288233, - "lon": -1.7498858, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2413902610, - "lat": 52.0943433, - "lon": -1.8694495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "post_box:type": "wall", - "ref": "WR11 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2413912786, - "lat": 50.7496164, - "lon": -1.8345685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 254D", - "ref:GB:uprn": "10015397731", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2413940273, - "lat": 52.7051551, - "lon": 1.4628581, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_plate:date": "2018-08-17", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "note": "In south-facing side wall of Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR12 1245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-27" - } -}, -{ - "type": "node", - "id": 2413951900, - "lat": 50.7525314, - "lon": -1.8538162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 282D", - "ref:GB:uprn": "10015276977", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2413951949, - "lat": 50.7581960, - "lon": -1.8667336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 278D", - "ref:GB:uprn": "10015685686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2413990362, - "lat": 50.7534779, - "lon": -1.8757162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 144", - "ref:GB:uprn": "10015844461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2413990372, - "lat": 50.7551464, - "lon": -1.8747002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 113", - "ref:GB:uprn": "10015413591", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2414012817, - "lat": 51.4984655, - "lon": -0.1339258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-15", - "collection_plate": "WN", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "manufacturer": "no", - "note": "Posting suite, with three apertures; two right-hand side sealed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "SW1H 201", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2414238159, - "lat": 52.6391682, - "lon": 1.4008573, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2414238184, - "lat": 52.6695835, - "lon": 1.3705830, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2414238795, - "lat": 52.7085427, - "lon": 1.4585609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2414461665, - "lat": 55.1762650, - "lon": -2.1708655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "NE48 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2414551076, - "lat": 52.7997183, - "lon": 1.2571011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR11 1109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2414636087, - "lat": 52.9591154, - "lon": -3.4059873, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2414711673, - "lat": 52.2765188, - "lon": -0.2537679, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415292992, - "lat": 50.7400780, - "lon": -1.8793047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:GB:uprn": "10015422905", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2415293164, - "lat": 50.7431812, - "lon": -1.8788299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15", - "fixme": "Plate damaged - survey again when it is replaced", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref:GB:uprn": "10015366503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415404296, - "lat": 51.4520502, - "lon": -2.6357090, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 434D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2415413235, - "lat": 50.7454806, - "lon": -1.8342128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 117D", - "ref:GB:uprn": "10015283562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415413248, - "lat": 50.7388335, - "lon": -1.8639785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 143D", - "ref:GB:uprn": "10015287471", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2415413255, - "lat": 50.7426826, - "lon": -1.8476952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 20D", - "ref:GB:uprn": "10015367778", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2415413257, - "lat": 50.7432446, - "lon": -1.8579082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 248D", - "ref:GB:uprn": "10015807434", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2415413272, - "lat": 50.7352159, - "lon": -1.8678510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 58", - "ref:GB:uprn": "10015797284", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2415413299, - "lat": 50.7414759, - "lon": -1.8622674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 166D", - "ref:GB:uprn": "10015434151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415451204, - "lat": 53.2400973, - "lon": -1.4807833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S42 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2415736480, - "lat": 50.7776599, - "lon": -1.8068514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 98", - "ref:GB:uprn": "10015463024" - } -}, -{ - "type": "node", - "id": 2415821472, - "lat": 50.9114663, - "lon": -1.3879856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2415821557, - "lat": 50.9041860, - "lon": -1.3593449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO19 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415821669, - "lat": 50.9065621, - "lon": -1.3496528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415821704, - "lat": 50.9149496, - "lon": -1.3721055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO19 402D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2415897482, - "lat": 50.9341979, - "lon": -1.3052890, - "tags": { - "amenity": "post_box", - "ref": "SO30 649" - } -}, -{ - "type": "node", - "id": 2415897503, - "lat": 50.9103306, - "lon": -1.2808611, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO30 334", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2415897540, - "lat": 50.9150274, - "lon": -1.2813088, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO30 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415946897, - "lat": 50.9196399, - "lon": -1.4386631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO15 716D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415946920, - "lat": 50.9178382, - "lon": -1.3652860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 473D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2415946924, - "lat": 50.9249473, - "lon": -1.4564167, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415946925, - "lat": 50.9251806, - "lon": -1.3679065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 411D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2415946936, - "lat": 50.9265069, - "lon": -1.4486678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 697", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2416462193, - "lat": 52.0922340, - "lon": -1.8642895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "post_box:type": "wall", - "ref": "WR11 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2417006504, - "lat": 57.3428395, - "lon": -2.6130021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "AB52 67" - } -}, -{ - "type": "node", - "id": 2417289547, - "lat": 51.5430806, - "lon": -0.0953108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-24", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 81;N1 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2417694441, - "lat": 52.7334280, - "lon": -1.2016390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2417739933, - "lat": 56.0746735, - "lon": -3.4316203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY12 199", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2417758668, - "lat": 52.0656825, - "lon": 1.1618707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2418264630, - "lat": 51.1248779, - "lon": -3.9741089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "wall", - "ref": "EX31 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2418307203, - "lat": 51.2271036, - "lon": -3.8657038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX35 242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2418788392, - "lat": 51.5063554, - "lon": -0.3381150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2974017112822044", - "post_box:type": "pillar", - "ref": "W7 5D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-01-15" - } -}, -{ - "type": "node", - "id": 2418857016, - "lat": 52.3811777, - "lon": 0.9709515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:15", - "note": "Small box inscribed with \"Letters Only\"", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "IP22 7167", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2418857018, - "lat": 52.4028493, - "lon": 0.9478389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "post_box:type": "wall", - "ref": "IP22 7103", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2418857066, - "lat": 52.3949802, - "lon": 0.9465813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "note": "Original enamel plate is missing, and standard collection plate holder has been retro-fitted.", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7026", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2418857076, - "lat": 52.3887328, - "lon": 0.9463527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2418857078, - "lat": 52.3714818, - "lon": 0.9799186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP22 7186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2418887942, - "lat": 52.3761756, - "lon": -1.7626029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1402D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2419077175, - "lat": 53.6885274, - "lon": -0.4262970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2419396709, - "lat": 52.9645134, - "lon": -2.1849935, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2419903936, - "lat": 53.1379197, - "lon": -4.1903266, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2419995998, - "lat": 57.5809381, - "lon": -4.1120839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV10 180" - } -}, -{ - "type": "node", - "id": 2420501699, - "lat": 52.6155573, - "lon": 1.7277211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3037D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2420785541, - "lat": 53.2887794, - "lon": -2.5927895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2420792788, - "lat": 50.6868921, - "lon": -3.2409253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX10 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2420809540, - "lat": 50.8290121, - "lon": -0.7710963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2420884357, - "lat": 50.6323142, - "lon": -3.3356292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX9 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2420921369, - "lat": 52.0684307, - "lon": 1.1637904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1177", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2420993118, - "lat": 53.0681308, - "lon": -1.2227830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2421187189, - "lat": 53.8438384, - "lon": -1.6651241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 828D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2421187196, - "lat": 53.8479366, - "lon": -1.6639159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 380" - } -}, -{ - "type": "node", - "id": 2421187202, - "lat": 53.8498908, - "lon": -1.6715508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:45", - "colour": "gold", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS19 737", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2421187207, - "lat": 53.8509164, - "lon": -1.6823708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 94" - } -}, -{ - "type": "node", - "id": 2421187215, - "lat": 53.8526252, - "lon": -1.6775593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS19 962" - } -}, -{ - "type": "node", - "id": 2421187222, - "lat": 53.8533585, - "lon": -1.6848365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS19 702", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2421187226, - "lat": 53.8546974, - "lon": -1.6797073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 589" - } -}, -{ - "type": "node", - "id": 2421187234, - "lat": 53.8572825, - "lon": -1.6793774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS19 235" - } -}, -{ - "type": "node", - "id": 2421399167, - "lat": 51.5449839, - "lon": -0.1220017, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2421641289, - "lat": 52.5545727, - "lon": 1.2188837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR14 1457", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2421829465, - "lat": 51.0528507, - "lon": 0.6297395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN17 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2422391552, - "lat": 51.1622401, - "lon": -0.8977486, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU34 12", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2422401793, - "lat": 57.1563043, - "lon": -2.1060489, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 77", - "royal_cypher": "scottish_crown", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2422555421, - "lat": 51.1145318, - "lon": -0.8638654, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU35 108", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU35 108D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2422677732, - "lat": 51.5685946, - "lon": -0.3042320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey;Bing 2012", - "survey:date": "2013-08-17" - } -}, -{ - "type": "node", - "id": 2422677738, - "lat": 51.5714793, - "lon": -0.3080537, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-08", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA9 331", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing 2012" - } -}, -{ - "type": "node", - "id": 2422987086, - "lat": 51.5742445, - "lon": -0.2941147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey;Bing 2012", - "survey:date": "2013-08-17" - } -}, -{ - "type": "node", - "id": 2423006249, - "lat": 51.5499560, - "lon": -0.5857020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2423209606, - "lat": 52.9705512, - "lon": -0.9803756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG13 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423244245, - "lat": 52.9446281, - "lon": -1.0461841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "lamp", - "ref": "NG12 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423244254, - "lat": 52.9457848, - "lon": -1.0658320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:manufacturer": "A. Handyside and Co. Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "NG12 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423244258, - "lat": 52.9469449, - "lon": -1.0386491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG12 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423244262, - "lat": 52.9471381, - "lon": -1.0351113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co Ltd. London", - "post_box:type": "wall", - "ref": "NG12 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423244270, - "lat": 52.9492021, - "lon": -1.0209137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG12 102D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423421599, - "lat": 50.9436118, - "lon": -1.3848757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 407D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2423962788, - "lat": 50.5308384, - "lon": -3.6073274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2423973787, - "lat": 50.5288852, - "lon": -3.6082742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 38D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2423980634, - "lat": 52.1322384, - "lon": 0.3158790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB21 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2424363754, - "lat": 50.5340890, - "lon": -3.8282474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2424368217, - "lat": 50.5441083, - "lon": -3.8261467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TQ13 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2424435425, - "lat": 50.9132907, - "lon": 0.5736104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN35 141D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2424686199, - "lat": 50.8048054, - "lon": -0.0580368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN2 224", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2424698504, - "lat": 56.6127446, - "lon": -3.6289621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "manufacturer": "Abbot Engineering", - "note": "the post_box has moved closer to the path, it is not longer attached to a wooden_post, it is now attached to a pier", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH9 29", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2424702365, - "lat": 56.5024368, - "lon": -3.4647674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH1 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2424702407, - "lat": 56.4829010, - "lon": -3.4510257, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH1 64D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2424723312, - "lat": 56.4498007, - "lon": -3.4636289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 25D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2424723317, - "lat": 56.4486686, - "lon": -3.4699377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 167", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2424752660, - "lat": 56.2107723, - "lon": -3.4296947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2424801926, - "lat": 50.9793815, - "lon": -1.3631446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 645", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2424801935, - "lat": 50.9784455, - "lon": -1.3530799, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2424802012, - "lat": 50.9812637, - "lon": -1.3561919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 578D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2424802040, - "lat": 50.9777603, - "lon": -1.3601057, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2424802071, - "lat": 50.9830847, - "lon": -1.3786759, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2424833450, - "lat": 50.9505920, - "lon": -1.4608584, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 643D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2424880164, - "lat": 50.8735875, - "lon": -1.1118917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "wall", - "ref": "PO17 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2425153372, - "lat": 51.3656602, - "lon": -0.1856925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM1 27" - } -}, -{ - "type": "node", - "id": 2425784745, - "lat": 50.8174527, - "lon": -0.1173548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2425822691, - "lat": 53.5760212, - "lon": -1.7553746, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 384", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2426017449, - "lat": 50.8072692, - "lon": -0.0597311, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN2 223D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2426500107, - "lat": 52.4062327, - "lon": 0.9918974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7042", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2426500119, - "lat": 52.4031787, - "lon": 0.9934256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2426500246, - "lat": 52.4103863, - "lon": 0.9920303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2426839192, - "lat": 54.3755238, - "lon": -2.8184107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 11:30", - "ref": "LA8 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2426902635, - "lat": 53.6158858, - "lon": -1.7147339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2426993297, - "lat": 52.4002990, - "lon": 0.9778577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP22 7166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2426993405, - "lat": 52.3758973, - "lon": 0.9570577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "note": "Partially concealed in hedge", - "post_box:type": "lamp", - "ref": "IP22 7082", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2427277980, - "lat": 52.1759259, - "lon": -1.8669220, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B49 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2427278115, - "lat": 52.1781210, - "lon": -1.8692158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B50 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2428698847, - "lat": 51.5763258, - "lon": -0.3012948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 411" - } -}, -{ - "type": "node", - "id": 2428807635, - "lat": 50.8235378, - "lon": -0.1206865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 206", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2429018781, - "lat": 56.8772523, - "lon": -6.1305778, - "tags": { - "amenity": "post_box", - "collection_times": "1 hr before ferry departure", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH42 108", - "source": "http://commons.wikimedia.org/wiki/File%3AIsle%20of%20Eigg%2C%20postbox%20No.%20PH42%20108%20-%20geograph.org.uk%20-%20916200.jpg" - } -}, -{ - "type": "node", - "id": 2430311380, - "lat": 51.8854320, - "lon": -2.1853064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL3 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2430323441, - "lat": 51.8846507, - "lon": -2.1919696, - "tags": { - "amenity": "post_box", - "ref": "GL3 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2430865063, - "lat": 51.8789998, - "lon": -2.1774624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "ref": "GL3 115", - "source": "gps tagged photo." - } -}, -{ - "type": "node", - "id": 2430964949, - "lat": 50.8834163, - "lon": 0.4978646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2431292550, - "lat": 51.6255084, - "lon": 0.0820380, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431304601, - "lat": 51.6176490, - "lon": 0.0443631, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IG9 88", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431306190, - "lat": 52.9281353, - "lon": -0.9843720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "wall", - "ref": "NG12 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431306224, - "lat": 52.9341878, - "lon": -1.0065120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "ref": "NG12 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431306231, - "lat": 52.9423408, - "lon": -1.0307888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "NG12 209", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431315866, - "lat": 52.9252036, - "lon": -0.9621099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "wall", - "ref": "NG13 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431341545, - "lat": 53.1431158, - "lon": -1.8374395, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2431346340, - "lat": 52.9132718, - "lon": -0.9835614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG12 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2431379058, - "lat": 51.6165458, - "lon": -0.0848208, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2431382152, - "lat": 55.9317044, - "lon": -4.4928663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G60 186" - } -}, -{ - "type": "node", - "id": 2431438524, - "lat": 55.9308885, - "lon": -4.4859261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G60 673" - } -}, -{ - "type": "node", - "id": 2431976606, - "lat": 55.1974030, - "lon": -1.6306251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2432433800, - "lat": 52.8259635, - "lon": 0.7192502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE31 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2432500612, - "lat": 51.6111164, - "lon": 0.0358770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "ref": "IG8 52", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2432907809, - "lat": 51.5224598, - "lon": -1.1489246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "RG8 107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2432945594, - "lat": 51.5131478, - "lon": -1.2426997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "wall", - "ref": "RG20 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2433696786, - "lat": 51.2967444, - "lon": -0.7771627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU14 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2433875642, - "lat": 52.4668850, - "lon": -1.7219673, - "tags": { - "amenity": "post_box", - "ref": "B37 1290" - } -}, -{ - "type": "node", - "id": 2434566816, - "lat": 51.5991854, - "lon": -1.1907453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:40", - "post_box:type": "lamp", - "ref": "OX11 1047", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2434566832, - "lat": 51.6021697, - "lon": -1.1909026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:40", - "post_box:type": "lamp", - "ref": "OX11 1104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2434585194, - "lat": 51.5939202, - "lon": -1.5751749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 298D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2434585207, - "lat": 51.6115968, - "lon": -1.5504840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2434585856, - "lat": 51.9334859, - "lon": 0.5830188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO9 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2434907099, - "lat": 52.7874983, - "lon": 1.2509235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "NR11 1113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2435219778, - "lat": 51.4296582, - "lon": -0.5771574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:15" - } -}, -{ - "type": "node", - "id": 2435220000, - "lat": 51.5111532, - "lon": -0.3669533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2435262441, - "lat": 52.9270301, - "lon": 1.3069977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NR27 2701D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2435262449, - "lat": 52.9231815, - "lon": 1.3131984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2021-10-12", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR27 2706D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2435262455, - "lat": 52.8885204, - "lon": 1.2687678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "wall", - "ref": "NR11 1173", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2435867735, - "lat": 50.4111650, - "lon": -4.2414484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "mapillary": "655093912264607", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-03-20", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 2435870584, - "lat": 50.4078087, - "lon": -4.2376922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL12 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2435870949, - "lat": 50.4123064, - "lon": -4.2349889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "PL12 623", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2435888688, - "lat": 50.4086875, - "lon": -4.2137678, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-17", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "PL12 701", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2436595694, - "lat": 52.8947390, - "lon": 1.3491671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "NR27 2716", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2436595732, - "lat": 52.9040327, - "lon": 1.3387870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR27 2710", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2436595790, - "lat": 52.8981501, - "lon": 1.3422095, - "tags": { - "amenity": "post_box", - "note": "Collection times not visible on plate", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR27 2714", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2436944528, - "lat": 53.1533598, - "lon": -2.6600395, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2437082353, - "lat": 52.8719435, - "lon": 1.4210127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "NR11 1164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2437082391, - "lat": 52.8786343, - "lon": 1.4352740, - "tags": { - "amenity": "post_box", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR11 1153", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2021-08-27" - } -}, -{ - "type": "node", - "id": 2437082403, - "lat": 52.8769685, - "lon": 1.4339892, - "tags": { - "amenity": "post_box", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR11 1165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-22" - } -}, -{ - "type": "node", - "id": 2437082439, - "lat": 52.8725570, - "lon": 1.4314437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR11 1163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2438158537, - "lat": 52.9803852, - "lon": -1.1734759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 122", - "ref:GB:uprn": "10015432292", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2438743841, - "lat": 52.8242823, - "lon": 1.4814403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "NR28 2848", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2438743885, - "lat": 52.8201784, - "lon": 1.4829023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "NR28 2849", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2438743909, - "lat": 52.8020091, - "lon": 1.4841521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "note": "Small box marked \"letters only\"", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NR12 1279", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2438743912, - "lat": 52.8486658, - "lon": 1.4674057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "collection_times:lastcheck": "2018-08-17", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR12 1217", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2439089465, - "lat": 52.7939620, - "lon": 1.4308613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR28 2854D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2439089498, - "lat": 52.7566947, - "lon": 1.3121462, - "tags": { - "amenity": "post_box", - "note": "collection plate missing 2013-08-26", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2439089500, - "lat": 52.7872291, - "lon": 1.4203476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "note": "Small box that says \"letters only\"", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NR28 2856", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2439089520, - "lat": 52.7792831, - "lon": 1.3808573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR10 1051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2439089554, - "lat": 52.7973240, - "lon": 1.4505064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR28 2828", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2439289684, - "lat": 50.9500642, - "lon": -2.5134164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT9 33", - "ref:GB:uprn": "10015312872", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2439289685, - "lat": 50.9502162, - "lon": -2.5173059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Probably a Victorian vintage", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT9 2", - "ref:GB:uprn": "10015458726", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2439315683, - "lat": 51.8618093, - "lon": -2.2524470, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-06", - "collection_plate": "CP9D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Probably a replica Penfold pillar box", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "GL1 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2439335095, - "lat": 51.8646184, - "lon": -2.2469061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL1 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2439815267, - "lat": 51.2275759, - "lon": -2.8085433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS28 1147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2440299126, - "lat": 51.8997844, - "lon": -2.0765421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "note": "left hand slot is GL50 13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GL50 13;GL50 1300", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2440300921, - "lat": 51.9006114, - "lon": -2.0761093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "GL50 380P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2440343025, - "lat": 50.8347948, - "lon": -0.2064922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 674", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2440375106, - "lat": 50.8287538, - "lon": -0.1780018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "ref": "BN3 56" - } -}, -{ - "type": "node", - "id": 2440489817, - "lat": 53.1422415, - "lon": -2.6991540, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2440502639, - "lat": 53.1392748, - "lon": -2.6718295, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW6 221", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2440952607, - "lat": 52.9351513, - "lon": -1.1723076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG7 118", - "ref:GB:uprn": "10015427469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2441162067, - "lat": 52.3607186, - "lon": 0.9117910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441174290, - "lat": 52.3424300, - "lon": 0.9064283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441324966, - "lat": 50.7423182, - "lon": -1.7922689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 41", - "ref:GB:uprn": "10015356193" - } -}, -{ - "type": "node", - "id": 2441324983, - "lat": 50.7475283, - "lon": -1.7916111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 8", - "ref:GB:uprn": "10015446703", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441325003, - "lat": 50.7426306, - "lon": -1.8224504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH7 255", - "ref:GB:uprn": "10015402441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441325027, - "lat": 50.7402043, - "lon": -1.8365347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH7 307D", - "ref:GB:uprn": "10015456115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441325039, - "lat": 50.7470409, - "lon": -1.8396488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 172D", - "ref:GB:uprn": "10015310003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441325062, - "lat": 50.7468288, - "lon": -1.8612580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH8 221D", - "ref:GB:uprn": "10015285364", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441325139, - "lat": 50.7508738, - "lon": -1.8605019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 243D", - "ref:GB:uprn": "10015684112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441325146, - "lat": 50.7553418, - "lon": -1.8562289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 208", - "ref:GB:uprn": "10015449476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441325212, - "lat": 50.7554877, - "lon": -1.8476873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 70D", - "ref:GB:uprn": "10015329818", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2441360305, - "lat": 50.7609149, - "lon": -1.8622665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH9 398", - "ref:GB:uprn": "10015389865", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441396853, - "lat": 50.7617208, - "lon": -1.8738754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 74", - "ref:GB:uprn": "10015382791", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-05", - "wikimedia_commons": "File:Redhill, the phone box has gone - geograph.org.uk - 3571529.jpg" - } -}, -{ - "type": "node", - "id": 2441406177, - "lat": 53.2839978, - "lon": -1.5324906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441515938, - "lat": 50.7449454, - "lon": -1.8696755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 229", - "ref:GB:uprn": "10015319560", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441515940, - "lat": 50.7434802, - "lon": -1.8671313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 195", - "ref:GB:uprn": "10015336370", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441515943, - "lat": 50.7425730, - "lon": -1.8712016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 121D", - "ref:GB:uprn": "10015725183", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2441515947, - "lat": 50.7454838, - "lon": -1.8782645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 96", - "ref:GB:uprn": "10015347384", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2441515965, - "lat": 50.7407510, - "lon": -1.8689244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 174D", - "ref:GB:uprn": "10015462834", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441515973, - "lat": 50.7380715, - "lon": -1.8696706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH9 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2441515976, - "lat": 50.7364831, - "lon": -1.8749754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 226", - "ref:GB:uprn": "10015456844", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2441516044, - "lat": 50.7304153, - "lon": -1.8659639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 151D", - "ref:GB:uprn": "10015396392", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2441516121, - "lat": 50.7369168, - "lon": -1.8591598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 72D", - "ref:GB:uprn": "10015276976", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2441516126, - "lat": 50.7385363, - "lon": -1.8539376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH8 147D", - "ref:GB:uprn": "10015280139", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2441516128, - "lat": 50.7362965, - "lon": -1.8539454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 135D", - "ref:GB:uprn": "10015350412", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2441516131, - "lat": 50.7345477, - "lon": -1.8575065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 95", - "ref:GB:uprn": "10015427544", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441516192, - "lat": 50.7324300, - "lon": -1.8602634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 46D", - "ref:GB:uprn": "10015317970", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2441516196, - "lat": 50.7302338, - "lon": -1.8610898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 202D", - "ref:GB:uprn": "10015435698", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2441682536, - "lat": 52.3558536, - "lon": 0.8937389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "IP31 2258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441703428, - "lat": 50.9242168, - "lon": -0.1525721, - "tags": { - "addr:city": "Hassocks", - "addr:street": "North Bank", - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN6 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2441710684, - "lat": 51.9051451, - "lon": -0.4586657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LU4 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2441813924, - "lat": 51.9055092, - "lon": -2.2819016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL2 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2441869784, - "lat": 57.6006477, - "lon": -4.3401421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV7 28", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2441978322, - "lat": 50.9082973, - "lon": -1.3098320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO30 449D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Bing, Survey" - } -}, -{ - "type": "node", - "id": 2442057799, - "lat": 51.7039882, - "lon": -0.7088872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-11-05", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP16 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2442089474, - "lat": 51.7021568, - "lon": -0.7038956, - "tags": { - "amenity": "post_box", - "last_collection": "5.45pm, Sat 12 noon", - "note": "front wall of 42", - "ref": "HP16 30" - } -}, -{ - "type": "node", - "id": 2443064864, - "lat": 51.8160594, - "lon": -2.1721333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL4 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geotagged photo" - } -}, -{ - "type": "node", - "id": 2444319452, - "lat": 51.8728127, - "lon": -2.1674608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL3 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey with geotagged photo" - } -}, -{ - "type": "node", - "id": 2444719570, - "lat": 53.3238353, - "lon": -3.8353863, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL30 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2444719571, - "lat": 53.3239057, - "lon": -3.8293458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL30 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2444719572, - "lat": 53.3251514, - "lon": -3.8360035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2444719573, - "lat": 53.3252876, - "lon": -3.8322196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "note": "unusual rectangular pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "ref": "LL30 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikidata": "Q29483471" - } -}, -{ - "type": "node", - "id": 2444719574, - "lat": 53.3261606, - "lon": -3.8369302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL30 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2444719575, - "lat": 53.3272467, - "lon": -3.8587246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL30 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2444719576, - "lat": 53.3272731, - "lon": -3.8349098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2444719577, - "lat": 53.3285507, - "lon": -3.8387360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL30 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2444852788, - "lat": 53.0049321, - "lon": -3.9400925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL41 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2445101401, - "lat": 51.2003479, - "lon": 0.2766584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN9 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2445243950, - "lat": 54.5845288, - "lon": -5.8991974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2445256031, - "lat": 54.5849886, - "lon": -5.8888624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2445259174, - "lat": 54.5914971, - "lon": -5.8984457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2445263102, - "lat": 54.5913705, - "lon": -5.9033487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2446288769, - "lat": 51.1085174, - "lon": -4.1629360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "wall", - "ref": "EX33 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2446431360, - "lat": 54.5223081, - "lon": -1.5325496, - "tags": { - "amenity": "post_box", - "ref": "DL1 59" - } -}, -{ - "type": "node", - "id": 2446431549, - "lat": 54.5233527, - "lon": -1.5396736, - "tags": { - "amenity": "post_box", - "ref": "DL1 2" - } -}, -{ - "type": "node", - "id": 2446437721, - "lat": 54.4466509, - "lon": -1.1710577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TS9 115D" - } -}, -{ - "type": "node", - "id": 2446571441, - "lat": 50.8299785, - "lon": -0.1872481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:15, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 176", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2447131961, - "lat": 57.3612449, - "lon": -6.4030288, - "tags": { - "amenity": "post_box", - "ref": "IV56 83", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2447131975, - "lat": 57.3562394, - "lon": -6.4177108, - "tags": { - "amenity": "post_box", - "ref": "IV56 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2447151130, - "lat": 57.3788176, - "lon": -6.4699881, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV56 84", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2447183914, - "lat": 57.4142263, - "lon": -6.5358230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV56 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2447529215, - "lat": 52.4759835, - "lon": -1.9007506, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B1 248", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "File:Edward VII Pillarbox on Station Street - geograph.org.uk - 869863.jpg" - } -}, -{ - "type": "node", - "id": 2448081547, - "lat": 51.8301327, - "lon": -2.2434443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "GL4 138D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2448254460, - "lat": 51.9031773, - "lon": -2.0740165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 301", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 2448756389, - "lat": 52.4836725, - "lon": -1.8930512, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-06", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B4 722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2448756390, - "lat": 52.4835712, - "lon": -1.8952452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B4 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2449501159, - "lat": 51.6635318, - "lon": -0.3967011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD17 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2449613269, - "lat": 53.2613312, - "lon": -2.1254538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "London 2012 Olympics gold post box in honour of Sarah Storey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK10 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2449939410, - "lat": 50.9047154, - "lon": -1.3697822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "last_checked": "2021-03-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2449939411, - "lat": 50.9013070, - "lon": -1.3735507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2449939421, - "lat": 50.8778752, - "lon": -1.3512903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 576", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2449939440, - "lat": 50.8737527, - "lon": -1.3470893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2449939441, - "lat": 50.8737967, - "lon": -1.3510577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2449939458, - "lat": 50.8746019, - "lon": -1.3546190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2450390230, - "lat": 50.8808450, - "lon": -1.3430750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 704D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2450390347, - "lat": 50.9038982, - "lon": -1.3479331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-24", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "SO19 632", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 632D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2450390357, - "lat": 50.9125665, - "lon": -1.3455158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO19 418D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2450404459, - "lat": 50.9176165, - "lon": -1.3484843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 567D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2450404460, - "lat": 50.9183732, - "lon": -1.3570057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2450404480, - "lat": 50.9258347, - "lon": -1.3640237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 385", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2450854337, - "lat": 57.3286537, - "lon": -3.6077915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PH26 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2450903222, - "lat": 50.9284001, - "lon": -1.5481178, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2450903223, - "lat": 50.9358472, - "lon": -1.5561203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2451097639, - "lat": 51.1453050, - "lon": -0.5692849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "post_box:type": "wall", - "ref": "GU8 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2451932100, - "lat": 51.6492330, - "lon": -0.1092234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2452039628, - "lat": 51.1387793, - "lon": -3.0061055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2452342898, - "lat": 51.4421753, - "lon": 0.1509050, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2453140163, - "lat": 51.5616448, - "lon": -1.7386486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 285" - } -}, -{ - "type": "node", - "id": 2453140374, - "lat": 51.5635966, - "lon": -1.7423094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2453511759, - "lat": 51.1123717, - "lon": -4.1715378, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2454392959, - "lat": 53.3019421, - "lon": -1.1245947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2454523257, - "lat": 53.3038847, - "lon": -1.1244848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2454541414, - "lat": 50.8464823, - "lon": -0.9524574, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "PO10 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2455262775, - "lat": 53.3676761, - "lon": -1.4966226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S11 148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2456105991, - "lat": 53.1458575, - "lon": -2.6605754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2456147683, - "lat": 57.6141666, - "lon": -3.0975908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "IV32 94", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2456147699, - "lat": 57.6134181, - "lon": -3.0950331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV32 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2456233491, - "lat": 52.4608908, - "lon": -2.7437415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2456671768, - "lat": 52.5946451, - "lon": -2.5607851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TF13 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2456757990, - "lat": 50.8361464, - "lon": -0.2055109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 332", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2456829683, - "lat": 50.8329390, - "lon": -0.2076397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-06-19", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN41 690", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2456995662, - "lat": 51.6868439, - "lon": -3.8184637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2457238733, - "lat": 50.8287993, - "lon": -0.2057633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BN41 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2458223542, - "lat": 51.0741749, - "lon": -2.1708655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP3 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2458342717, - "lat": 57.2666042, - "lon": -2.1912961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB21 453" - } -}, -{ - "type": "node", - "id": 2459193675, - "lat": 55.1465207, - "lon": -2.9920255, - "tags": { - "amenity": "post_box", - "ref": "DG13 104", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 2459198017, - "lat": 55.0051423, - "lon": -3.0042042, - "tags": { - "amenity": "post_box", - "ref": "CA6 365", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 2459201332, - "lat": 55.0238390, - "lon": -3.1335820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 99", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2459421846, - "lat": 50.9907162, - "lon": -1.4745693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2459468678, - "lat": 57.6114584, - "lon": -3.6139792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 73D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2459492562, - "lat": 50.8254677, - "lon": -1.3759614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO45 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2462272865, - "lat": 51.5580997, - "lon": -0.0892239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N16 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2463406724, - "lat": 50.7515028, - "lon": -2.1238796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH20 102", - "ref:GB:uprn": "10015311592", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2464271040, - "lat": 54.6642024, - "lon": -2.7523343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "521958532502561", - "name": "Right", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA11 30", - "survey:date": "2020-07-23" - } -}, -{ - "type": "node", - "id": 2464271326, - "lat": 54.6642086, - "lon": -2.7523435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Left", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA11 1030" - } -}, -{ - "type": "node", - "id": 2465868588, - "lat": 52.5645872, - "lon": -2.7369357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 07:15", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY6 289", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2465868597, - "lat": 52.5727638, - "lon": -2.7184550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 08:30", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY6 208", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2465984200, - "lat": 52.5532806, - "lon": -2.7987013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY6 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2466000261, - "lat": 52.5002270, - "lon": -2.9223425, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2466000299, - "lat": 52.5197974, - "lon": -2.9215523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY9 324", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2466009745, - "lat": 52.5152016, - "lon": -2.8884916, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2466065388, - "lat": 52.5498760, - "lon": -3.0524543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "wall", - "ref": "SY15 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2466263552, - "lat": 52.9527357, - "lon": 0.7316537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE31 429" - } -}, -{ - "type": "node", - "id": 2466285279, - "lat": 51.5056176, - "lon": -0.4271352, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "Wikimedia Commons image" - } -}, -{ - "type": "node", - "id": 2466297023, - "lat": 50.9943000, - "lon": -0.0962116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 2466351877, - "lat": 51.8879202, - "lon": -2.1318354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 09:00", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2466355841, - "lat": 50.9965178, - "lon": -0.1017399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:amenity": "survey" - } -}, -{ - "type": "node", - "id": 2467489087, - "lat": 52.8185589, - "lon": 0.8328766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "NR21 2142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2467597379, - "lat": 53.1156679, - "lon": -3.2997196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "LL15 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2467597392, - "lat": 53.1161885, - "lon": -3.3083131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL15 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2467939887, - "lat": 51.1568806, - "lon": -0.1642031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "indoor": "yes", - "note": "In departures lounge", - "ref": "RH6 359", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2468033502, - "lat": 51.6275779, - "lon": -2.5134772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "note": "last digit of ref mostly gone, could be 2 or 3; assuming it's 183 as we've already got a 182 elsewhere", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 183", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2017-09-11" - } -}, -{ - "type": "node", - "id": 2468795048, - "lat": 57.1481916, - "lon": -2.0921858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-28", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate \nKatherine Grainger\nGold Medal winner\nLondon 2012 Olympic Games\nRowing: Women's Double Sculls", - "manufacturer": "McDowall, Steven & Co Ltd\nLondon & Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2469397484, - "lat": 52.5788702, - "lon": -2.6778786, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2469432703, - "lat": 52.6143889, - "lon": -2.5006401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TF12 275", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2469461486, - "lat": 52.6311464, - "lon": -2.4938500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TF8 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2469461489, - "lat": 52.6375367, - "lon": -2.4905564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TF8 176", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2469476331, - "lat": 52.6297199, - "lon": -2.6957941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:00; Sa 08:30", - "post_box:type": "wall", - "ref": "SY5 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2469990558, - "lat": 50.9296197, - "lon": -1.3887736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-31", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2470271790, - "lat": 51.6235836, - "lon": -4.0396616, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2470450141, - "lat": 52.4951030, - "lon": 0.9349240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "wall", - "ref": "NR17 1707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2470471931, - "lat": 51.4690129, - "lon": -2.6087792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 267D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2470601272, - "lat": 52.3537650, - "lon": -2.6611583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "SY8 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2470609106, - "lat": 52.3709300, - "lon": -2.7132522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY8 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-06-30" - } -}, -{ - "type": "node", - "id": 2470626250, - "lat": 52.3679919, - "lon": -2.7175803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY8 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-10-09" - } -}, -{ - "type": "node", - "id": 2470629684, - "lat": 52.4098716, - "lon": -2.6279339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "letters_only": "yes", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY8 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2471139275, - "lat": 50.8865869, - "lon": -1.3633106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This is a brand new EIIR postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 600D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2471268295, - "lat": 53.2959597, - "lon": -1.1254380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2471350065, - "lat": 53.2841656, - "lon": -1.2065182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "S80 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2473377606, - "lat": 51.4109991, - "lon": -0.8423767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "RG40 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2473381264, - "lat": 51.4116830, - "lon": -0.8341890, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-24", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "RG40 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2473605963, - "lat": 51.9267990, - "lon": -1.2482070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2020-08-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX25 650", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2473771341, - "lat": 51.5368794, - "lon": -0.0864811, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2473785545, - "lat": 52.2970256, - "lon": -0.8010365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2473807934, - "lat": 51.5409655, - "lon": -0.0634972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E8 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2473867747, - "lat": 52.3317958, - "lon": -0.5634927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "NN9 89" - } -}, -{ - "type": "node", - "id": 2473987841, - "lat": 52.2542744, - "lon": -0.4743403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 2473987865, - "lat": 52.2514111, - "lon": -0.4805080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK44 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 2474000806, - "lat": 52.2750934, - "lon": -0.4124327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 2474019594, - "lat": 52.2801666, - "lon": -0.4060145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 2474340077, - "lat": 50.8429279, - "lon": -0.1875399, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-01", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "ref": "BN3 122" - } -}, -{ - "type": "node", - "id": 2474390380, - "lat": 50.8352621, - "lon": -0.1771270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2475029244, - "lat": 52.5867511, - "lon": 1.7228562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2475318963, - "lat": 50.8324459, - "lon": -0.2358609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 687D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2475427921, - "lat": 51.9757512, - "lon": 1.0558644, - "tags": { - "amenity": "post_box", - "made_in": "Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO7 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2475641326, - "lat": 51.1787380, - "lon": -1.2601217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 224", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-08-29" - } -}, -{ - "type": "node", - "id": 2475641356, - "lat": 51.1825243, - "lon": -1.2645357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-29" - } -}, -{ - "type": "node", - "id": 2475660988, - "lat": 50.5500534, - "lon": -4.1456253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL19 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps tagged photo;survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 2475666434, - "lat": 50.4523864, - "lon": -4.2463287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-22", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL12 768", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps tagged photo", - "survey:date": "2022-10-22" - } -}, -{ - "type": "node", - "id": 2476615473, - "lat": 51.3695214, - "lon": 0.6626138, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 100D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-09" - } -}, -{ - "type": "node", - "id": 2476683459, - "lat": 51.6159024, - "lon": 0.0256294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 36" - } -}, -{ - "type": "node", - "id": 2476856516, - "lat": 53.2751537, - "lon": -2.5301980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476889995, - "lat": 51.4438851, - "lon": 0.7516426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2476958800, - "lat": 52.5297129, - "lon": 0.8793702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NR17 1710", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476958950, - "lat": 52.5303624, - "lon": 0.8630941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "NR17 1709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476959003, - "lat": 52.5136736, - "lon": 0.9015998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR17 1711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476959052, - "lat": 52.5234037, - "lon": 0.9460820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "NR17 1731", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476959135, - "lat": 52.5207876, - "lon": 0.9288087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "note": "Small box, with \"Letters Only\" text", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NR17 1729", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2476959165, - "lat": 52.5122143, - "lon": 0.8858419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1712", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476968007, - "lat": 52.5436422, - "lon": 0.8809878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1700D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2476968029, - "lat": 52.5404700, - "lon": 0.8869220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR17 1704", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2477075208, - "lat": 51.1795728, - "lon": -1.7824486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2477075211, - "lat": 51.1896065, - "lon": -1.8041779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:type": "pillar", - "ref": "SP4 287", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2477105097, - "lat": 51.1715780, - "lon": -1.7787492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP4 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2477105102, - "lat": 51.1720652, - "lon": -1.7813141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP4 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2477105115, - "lat": 51.1745621, - "lon": -1.7782148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 242", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2477105116, - "lat": 51.1746170, - "lon": -1.7783637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2477105117, - "lat": 51.1763539, - "lon": -1.7742837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2477354238, - "lat": 52.5494296, - "lon": 0.8865847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:type": "wall", - "ref": "NR17 1706", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2477511592, - "lat": 52.2246860, - "lon": -1.4919023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV33 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2478762662, - "lat": 52.4243145, - "lon": -2.0827384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "despite collection times the label says 151 not 151D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B62 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2478934721, - "lat": 50.7204281, - "lon": -3.4858559, - "tags": { - "amenity": "post_box", - "ref": "EX2 482" - } -}, -{ - "type": "node", - "id": 2479264643, - "lat": 56.3864800, - "lon": -3.4482347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 194D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2479285815, - "lat": 56.0372261, - "lon": -3.4550686, - "tags": { - "amenity": "post_box", - "ref": "KY11 170", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2479303240, - "lat": 56.2211256, - "lon": -3.4245052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY13 152D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2479317867, - "lat": 56.2167537, - "lon": -3.4267982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 150D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2479355257, - "lat": 56.0633296, - "lon": -3.4973958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1558663155054219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 47", - "source": "survey", - "survey:date": "2024-06-21" - } -}, -{ - "type": "node", - "id": 2479455541, - "lat": 50.6157846, - "lon": -3.4122416, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2479461499, - "lat": 51.1531115, - "lon": -2.7105538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2479539477, - "lat": 52.5459124, - "lon": -1.8494383, - "tags": { - "amenity": "post_box", - "ref": "B73 618" - } -}, -{ - "type": "node", - "id": 2480343883, - "lat": 56.0837039, - "lon": -3.4229453, - "tags": { - "amenity": "post_box", - "ref": "KY12 123", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2480344026, - "lat": 56.0859286, - "lon": -3.4055672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 179D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2480356912, - "lat": 52.8054562, - "lon": -3.7354348, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2480356915, - "lat": 52.8441373, - "lon": -3.6949036, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2480498159, - "lat": 52.1213518, - "lon": 1.3089828, - "tags": { - "amenity": "post_box", - "ref": "IP13 6208" - } -}, -{ - "type": "node", - "id": 2480508393, - "lat": 51.7115404, - "lon": -1.8834902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:45; Su off", - "colour": "gold", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Laura Bechtolsheimer Gold Medal winner London 2012 Olympic Games Equestrian: Dressage - Team", - "note": "Gold from 2012 Olympics; from survey 2021-08-04, label says collection times will change to Mo-Fr 09:00; Sa 07:00; Su off as of 23 August 2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS", - "tactile_writing:braille:de": "yes" - } -}, -{ - "type": "node", - "id": 2480656650, - "lat": 51.2366511, - "lon": -1.7905746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2480656660, - "lat": 51.2399336, - "lon": -1.7896212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP4 252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2480656666, - "lat": 51.2439451, - "lon": -1.7874851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 348", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2480656667, - "lat": 51.2524200, - "lon": -1.7866327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2480664279, - "lat": 51.0710646, - "lon": -1.7909015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 131", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2480670405, - "lat": 51.0686456, - "lon": -1.8017690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SP2 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2480676120, - "lat": 51.0553575, - "lon": -1.8074888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SP2 352", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2480676121, - "lat": 51.0556033, - "lon": -1.8032419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SP2 339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2480677090, - "lat": 51.0344260, - "lon": -1.7925298, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 37", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2480707934, - "lat": 51.0286083, - "lon": -1.9049417, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2480738185, - "lat": 51.0836879, - "lon": -1.7974995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 294D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2480920770, - "lat": 53.6958823, - "lon": -2.4657719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mapillary": "977851689689126", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB3 329" - } -}, -{ - "type": "node", - "id": 2481026701, - "lat": 53.0965392, - "lon": -4.1926126, - "tags": { - "amenity": "post_box", - "post_box:design": "converted_bag_box", - "post_box:type": "lamp", - "ref": "LL54 47", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2481096899, - "lat": 53.7746096, - "lon": -1.3751350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 35" - } -}, -{ - "type": "node", - "id": 2481140556, - "lat": 54.4173173, - "lon": -7.1592829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BT76 124" - } -}, -{ - "type": "node", - "id": 2481768949, - "lat": 51.5494658, - "lon": -0.0585849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2481771660, - "lat": 51.0238363, - "lon": -2.1117352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2481771661, - "lat": 51.0303355, - "lon": -2.1183805, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP7 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2481771665, - "lat": 51.0443905, - "lon": -2.1046974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "SP3 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2481794953, - "lat": 51.0629784, - "lon": -2.0806499, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SP3 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2481814330, - "lat": 51.0840376, - "lon": -1.8738366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP2 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2482140422, - "lat": 52.0390331, - "lon": 1.1364413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2482140423, - "lat": 52.0380079, - "lon": 1.1369081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "IP2 8256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2482320019, - "lat": 52.9813728, - "lon": -1.0933309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 2483855802, - "lat": 51.7738923, - "lon": -0.1542850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL9 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2484144398, - "lat": 52.0417105, - "lon": 1.1468091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1336", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2484149416, - "lat": 52.5884304, - "lon": 1.1225751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1821", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2484233318, - "lat": 51.1290347, - "lon": 0.2422575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN4 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2484320214, - "lat": 55.2345315, - "lon": -2.5854496, - "tags": { - "amenity": "post_box", - "ref": "NE48 89" - } -}, -{ - "type": "node", - "id": 2484329958, - "lat": 52.0589027, - "lon": 1.1587832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1045", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2484900552, - "lat": 51.7446974, - "lon": 0.4917729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2485124804, - "lat": 51.6042964, - "lon": 0.0085025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG8 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2485124808, - "lat": 51.6039899, - "lon": 0.0034440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG8 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2485139540, - "lat": 52.6473004, - "lon": 1.4093130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2485382954, - "lat": 53.8813033, - "lon": -1.3555794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS23 702" - } -}, -{ - "type": "node", - "id": 2485422209, - "lat": 53.9568590, - "lon": -0.4403638, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO25 348", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2485496304, - "lat": 52.9267017, - "lon": -1.8635745, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2486054216, - "lat": 51.7784392, - "lon": 0.8989936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CO5 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2486071591, - "lat": 51.7762453, - "lon": 0.9114631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO5 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2486071623, - "lat": 51.7792018, - "lon": 0.9080929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "CO5 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2486589761, - "lat": 51.4124912, - "lon": -0.8451277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RG41 14" - } -}, -{ - "type": "node", - "id": 2486803396, - "lat": 52.0582219, - "lon": 1.1530216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP1 442;IP1 1442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2487306928, - "lat": 52.0076851, - "lon": 1.1597532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP9 1217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2487307007, - "lat": 51.9916361, - "lon": 1.1579950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP9 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2487307022, - "lat": 51.9834779, - "lon": 1.1584282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP9 1193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2487307050, - "lat": 51.9729398, - "lon": 1.1477497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP9 1267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2487307083, - "lat": 51.9703918, - "lon": 1.1287180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 09:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "IP9 1230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2487641646, - "lat": 51.0650149, - "lon": -1.3311920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 87D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS trace and site visit" - } -}, -{ - "type": "node", - "id": 2487641665, - "lat": 51.0698763, - "lon": -1.3308612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 46D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "GPS trace and site visit" - } -}, -{ - "type": "node", - "id": 2488499593, - "lat": 50.2079861, - "lon": -5.4783829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR26 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 2488537566, - "lat": 52.5907623, - "lon": -3.8506657, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SY20 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2488613988, - "lat": 55.9216981, - "lon": -3.3754578, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "EH52 85D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2488676173, - "lat": 55.7709095, - "lon": -3.6022754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML11 48", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2488713548, - "lat": 52.3558476, - "lon": -2.0902319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "B61 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2488725674, - "lat": 51.4165796, - "lon": -0.2915091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2488816717, - "lat": 51.4816706, - "lon": -2.7685434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS20 1014", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2489410399, - "lat": 52.5786380, - "lon": -1.8201322, - "tags": { - "amenity": "post_box", - "ref": "B75 461" - } -}, -{ - "type": "node", - "id": 2489890990, - "lat": 52.0567997, - "lon": 1.1694105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1064", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2489932908, - "lat": 54.4424466, - "lon": -2.5559758, - "tags": { - "amenity": "post_box", - "ref": "CA10 151", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2489975763, - "lat": 50.0822642, - "lon": -5.5397978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2489977005, - "lat": 54.4672673, - "lon": -2.4034313, - "tags": { - "amenity": "post_box", - "ref": "CA17 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2489977246, - "lat": 54.5323257, - "lon": -2.3936387, - "tags": { - "amenity": "post_box", - "ref": "CA16 60", - "source": "OS_OpenData_VectorMap_District" - } -}, -{ - "type": "node", - "id": 2489977278, - "lat": 54.5342045, - "lon": -2.3907020, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA16 320", - "source": "OS_OpenData_VectorMap_District" - } -}, -{ - "type": "node", - "id": 2490217421, - "lat": 52.3587479, - "lon": -2.0743880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "note": "Missing collection plate", - "post_box:type": "wall", - "ref": "B61 274", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2490281307, - "lat": 51.5724572, - "lon": -2.3047899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL9 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2490379355, - "lat": 51.8584594, - "lon": -3.1515325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "wall", - "ref": "NP8 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2491345713, - "lat": 52.5038433, - "lon": -2.0158790, - "tags": { - "amenity": "post_box", - "ref": "B69 227" - } -}, -{ - "type": "node", - "id": 2491640062, - "lat": 51.8580136, - "lon": -3.1359293, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP8 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2491640100, - "lat": 51.8611206, - "lon": -3.1357128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "NP8 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2491726308, - "lat": 51.8767912, - "lon": -3.1063409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "wall", - "ref": "NP8 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2492813682, - "lat": 51.3600338, - "lon": -0.1930443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SM1 1;SM1 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2493014023, - "lat": 53.1441126, - "lon": -2.0167157, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-07", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "post_box:type": "wall", - "ref": "ST13 736", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2493098947, - "lat": 51.5234992, - "lon": -0.1377315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-02-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1T 48D;W1T 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2493533734, - "lat": 52.5033192, - "lon": -0.6988118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 114" - } -}, -{ - "type": "node", - "id": 2493597540, - "lat": 51.5134433, - "lon": -0.1714473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 38D;W2 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2493597556, - "lat": 51.5155664, - "lon": -0.1755097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "collection_times_checked": "2017-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 250;W2 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2493822405, - "lat": 52.6761224, - "lon": 1.2046174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 817D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2493918885, - "lat": 51.4831741, - "lon": -0.2830371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2494079927, - "lat": 51.5881651, - "lon": -0.3323860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-08-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2494318813, - "lat": 52.6327324, - "lon": -1.1639159, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2494390482, - "lat": 53.1541036, - "lon": -1.1589129, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2494792797, - "lat": 51.3138109, - "lon": -0.7441738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2494822691, - "lat": 52.6941100, - "lon": 1.2457566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 2494842907, - "lat": 50.8110153, - "lon": -1.0791365, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO2 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2494852092, - "lat": 50.8177509, - "lon": -1.0790353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "note": "LH slot for stamped mail, RH slot for franked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO2 6801;PO2 6802", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2494885051, - "lat": 51.9167679, - "lon": -0.6740016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-19", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "LU7 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2494956932, - "lat": 55.8967204, - "lon": -3.2982643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 571D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2495043409, - "lat": 53.3606794, - "lon": -2.2699444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M90 827", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2495073193, - "lat": 51.9347648, - "lon": -0.6656358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 70", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073197, - "lat": 51.9359775, - "lon": -0.6569894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "ref": "LU7 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073201, - "lat": 51.9373798, - "lon": -0.6683418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 68", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073204, - "lat": 51.9375896, - "lon": -0.6541992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073208, - "lat": 51.9404137, - "lon": -0.6712928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "ref": "LU7 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073211, - "lat": 51.9441677, - "lon": -0.6600955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LU7 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073216, - "lat": 51.9453031, - "lon": -0.6569406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "ref": "LU7 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495073219, - "lat": 51.9479421, - "lon": -0.6565138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LU7 3", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2495602708, - "lat": 51.4415030, - "lon": 0.1493661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA5 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2495909663, - "lat": 50.3361514, - "lon": -4.6556690, - "tags": { - "amenity": "post_box", - "ref": "PL23 131" - } -}, -{ - "type": "node", - "id": 2496054506, - "lat": 54.7058327, - "lon": -6.1973248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 63" - } -}, -{ - "type": "node", - "id": 2496295930, - "lat": 50.8286262, - "lon": -0.1626030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 52" - } -}, -{ - "type": "node", - "id": 2496335352, - "lat": 51.4991636, - "lon": -0.1379672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1E 62;SW1E 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2496335353, - "lat": 51.5006075, - "lon": -0.1328708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "SW1H 80;SW1H 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2497020521, - "lat": 53.4058771, - "lon": -3.1135600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "George V Type B post box CH46 391 by Carron Company on Pasture Avenue near Pasture Road, Moreton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 391", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Pasture Avenue, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 2497737305, - "lat": 51.9066526, - "lon": -0.6498017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU7 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2497737307, - "lat": 51.9108014, - "lon": -0.6580064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "LU7 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2497737308, - "lat": 51.9210886, - "lon": -0.6542049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 93", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2497968579, - "lat": 51.4915819, - "lon": -0.1409737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1V 89;SW1V 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2498497180, - "lat": 52.8586477, - "lon": 0.6243000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE31 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2498586205, - "lat": 51.9132386, - "lon": -0.6830793, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-06", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "LU7 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2498586207, - "lat": 51.9180713, - "lon": -0.6692949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "ref": "LU7 90", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2498719151, - "lat": 51.4980913, - "lon": -0.1744021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW7 39;SW7 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2498776316, - "lat": 50.7962251, - "lon": -1.0781911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mail:meter": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO5 1862", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2498776317, - "lat": 50.7962284, - "lon": -1.0782190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO5 1861", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2499909278, - "lat": 51.0166838, - "lon": -1.2686654, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2500076854, - "lat": 50.8223860, - "lon": -1.1628506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 79", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2500368411, - "lat": 57.3519610, - "lon": -6.0748023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "note": "label has reference as PO81", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IV40 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2500685054, - "lat": 54.6275832, - "lon": -3.2092055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3394449350824451", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "CA12 124", - "survey:date": "2022-09-05" - } -}, -{ - "type": "node", - "id": 2500685055, - "lat": 54.7096523, - "lon": -3.4804300, - "tags": { - "amenity": "post_box", - "ref": "CA15 59", - "source": "Common Knowledge" - } -}, -{ - "type": "node", - "id": 2500685058, - "lat": 54.7133971, - "lon": -3.4959404, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA15 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Common Knowledge" - } -}, -{ - "type": "node", - "id": 2501014320, - "lat": 50.4665058, - "lon": -4.7168634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1517331072208683", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL31 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2501038316, - "lat": 52.4447289, - "lon": 1.1317318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2501038320, - "lat": 52.4474877, - "lon": 1.1732921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2501063415, - "lat": 52.4124712, - "lon": 1.0970370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7054", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2501238195, - "lat": 50.9798917, - "lon": -0.7250941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU29 33", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "GU29 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-05" - } -}, -{ - "type": "node", - "id": 2501249153, - "lat": 50.9987901, - "lon": -0.6647951, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2501495424, - "lat": 50.4626661, - "lon": -3.5463120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2501496478, - "lat": 51.8168748, - "lon": 0.7449218, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2501797052, - "lat": 50.9589727, - "lon": -2.8666098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2501844239, - "lat": 51.8020984, - "lon": 0.7644597, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2502009682, - "lat": 50.4366599, - "lon": -3.5675401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "TQ3 191", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2502830115, - "lat": 51.5125898, - "lon": -0.1668797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 2D;W2 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2502994779, - "lat": 51.8041966, - "lon": 0.8684965, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2502994814, - "lat": 51.7824709, - "lon": 0.9200332, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2502994839, - "lat": 51.8058816, - "lon": 0.9095907, - "tags": { - "amenity": "post_box", - "fixme": "check exact location", - "mapillary": "296367802154034", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2019-10-26" - } -}, -{ - "type": "node", - "id": 2502994873, - "lat": 51.8108692, - "lon": 0.8862308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO5 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2502994877, - "lat": 51.7785845, - "lon": 0.9196255, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2503102416, - "lat": 50.5123245, - "lon": -3.7584997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ13 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2503107014, - "lat": 51.6749645, - "lon": -0.3941068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD24 128D" - } -}, -{ - "type": "node", - "id": 2503122112, - "lat": 52.2119983, - "lon": -4.3602084, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2503131041, - "lat": 52.3566706, - "lon": 0.1477835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB6 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2503142236, - "lat": 52.3280618, - "lon": 1.6812894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP18 5531", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2503619404, - "lat": 52.5366198, - "lon": 1.6260219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR31 3150D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2504351632, - "lat": 50.6271698, - "lon": -3.4477685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-01-02" - } -}, -{ - "type": "node", - "id": 2504945740, - "lat": 51.9015739, - "lon": -0.6492746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "ref": "LU7 8001", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2505041211, - "lat": 51.1102756, - "lon": -0.7535818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "GU26 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey+bing" - } -}, -{ - "type": "node", - "id": 2505041212, - "lat": 51.1106974, - "lon": -0.7467924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "GU26 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+bing" - } -}, -{ - "type": "node", - "id": 2505941965, - "lat": 53.7010138, - "lon": -2.5811307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR6 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2505946070, - "lat": 53.7025435, - "lon": -2.5884168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "PR6 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2506577892, - "lat": 51.4946374, - "lon": 0.0121021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2506653552, - "lat": 53.0444844, - "lon": -2.9943273, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "note:colour": "remains gold at 2020", - "olympic_gold": "Gold medal Men's Four Rowing", - "olympic_gold:note": "Tom James. To mark Tom James's gold medal winning performance, Royal Mail has painted a post box at Town Hill Post Office, Wrexham, gold.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LL13 300D;LL13 9300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "http://www.goldpostboxes.com/" - } -}, -{ - "type": "node", - "id": 2507272271, - "lat": 51.5244587, - "lon": -0.0344318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "E3 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2507272297, - "lat": 51.5258420, - "lon": -0.0309574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2507367949, - "lat": 51.8757724, - "lon": -2.2419333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL1 9D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2508707576, - "lat": 51.3475070, - "lon": -0.1736149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2508707579, - "lat": 51.3512830, - "lon": -0.1728203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2508817174, - "lat": 52.0365362, - "lon": 0.7330569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 2508817181, - "lat": 52.0381104, - "lon": 0.7297676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO10 1089;CO10 9089", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-04-03" - } -}, -{ - "type": "node", - "id": 2509185929, - "lat": 52.7354246, - "lon": 0.8914663, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2509185942, - "lat": 52.7397026, - "lon": 0.8842636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2509192567, - "lat": 51.5326039, - "lon": -0.1111509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "colour": "red", - "geograph:id": "1523993", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "N1 35;N1 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509194323, - "lat": 51.5292538, - "lon": -0.1328373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 52D" - } -}, -{ - "type": "node", - "id": 2509301608, - "lat": 50.9153031, - "lon": -0.6601410, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2509538838, - "lat": 50.9346927, - "lon": -1.1951602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO32 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509538932, - "lat": 50.9413351, - "lon": -1.1846305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 693", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509552636, - "lat": 52.0424413, - "lon": 1.1785376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1289", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2509634620, - "lat": 50.7521139, - "lon": -1.9275740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 362", - "ref:GB:uprn": "10015807010", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2509650752, - "lat": 57.6454944, - "lon": -3.3337696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "ref": "IV30 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509650753, - "lat": 57.6472782, - "lon": -3.3216547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV30 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509650754, - "lat": 57.6478300, - "lon": -3.3166400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV30 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509650755, - "lat": 57.6489986, - "lon": -3.3125842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV30 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2509657180, - "lat": 56.2620358, - "lon": -2.6247706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KY10 260D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2510298976, - "lat": 51.4491712, - "lon": -0.1235988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510344932, - "lat": 51.9596346, - "lon": -0.6693474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510344937, - "lat": 51.9609895, - "lon": -0.6380939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510344940, - "lat": 51.9633960, - "lon": -0.6856841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK17 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384705, - "lat": 51.9198972, - "lon": -0.7594061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384711, - "lat": 51.9244063, - "lon": -0.7618841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384716, - "lat": 51.9296301, - "lon": -0.7642873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 88", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384720, - "lat": 51.9301680, - "lon": -0.7129626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384724, - "lat": 51.9333361, - "lon": -0.7707245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384729, - "lat": 51.9343964, - "lon": -0.7277456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384733, - "lat": 51.9352979, - "lon": -0.7171539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 61", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510384740, - "lat": 51.9377767, - "lon": -0.7180460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "ref": "LU7 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510390761, - "lat": 51.8920300, - "lon": -0.7814802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "ref": "LU7 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510390762, - "lat": 51.8947347, - "lon": -0.7188496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510390763, - "lat": 51.8979441, - "lon": -0.7179570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "ref": "LU7 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510390764, - "lat": 51.9035030, - "lon": -0.7226392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "ref": "LU7 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510397742, - "lat": 51.8687087, - "lon": -0.7104408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "ref": "LU7 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510397750, - "lat": 51.8694888, - "lon": -0.6833733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418923, - "lat": 51.8268185, - "lon": -0.6353136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU7 49", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418931, - "lat": 51.8326496, - "lon": -0.6443662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU7 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418936, - "lat": 51.8343757, - "lon": -0.6373138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418940, - "lat": 51.8348983, - "lon": -0.6547872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418944, - "lat": 51.8355768, - "lon": -0.6306702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418945, - "lat": 51.8431039, - "lon": -0.6387017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 64", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418949, - "lat": 51.8462332, - "lon": -0.6672074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 73", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510418955, - "lat": 51.8475093, - "lon": -0.6639302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510427016, - "lat": 51.8535872, - "lon": -0.6178078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU7 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510429598, - "lat": 51.8777531, - "lon": -0.6437720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 40", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510438882, - "lat": 51.8918520, - "lon": -0.6306217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510438883, - "lat": 51.8936927, - "lon": -0.6427475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510440011, - "lat": 51.9160481, - "lon": -0.6185642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510440012, - "lat": 51.9170249, - "lon": -0.6095562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510549630, - "lat": 51.8885650, - "lon": -2.1432205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2510799070, - "lat": 52.3521160, - "lon": 0.1765415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CB6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2510822742, - "lat": 51.3913360, - "lon": -3.3209090, - "tags": { - "amenity": "post_box", - "ref": "CF62 102" - } -}, -{ - "type": "node", - "id": 2511453890, - "lat": 51.9020570, - "lon": -0.5451750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511457813, - "lat": 51.8968879, - "lon": -0.5366625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU6 58", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511475618, - "lat": 51.8868220, - "lon": -0.5356475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "ref": "LU6 66", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511475619, - "lat": 51.8881198, - "lon": -0.5376214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU6 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511475620, - "lat": 51.8887371, - "lon": -0.5462586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU6 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511478399, - "lat": 51.8823500, - "lon": -0.5431120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LU6 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511478400, - "lat": 51.8827924, - "lon": -0.5351481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508752, - "lat": 51.8843716, - "lon": -0.5189491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "Detail missing from postbox due to damaged exterior: surveyed on 28/10/2013. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508753, - "lat": 51.8847862, - "lon": -0.5266610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508754, - "lat": 51.8853125, - "lon": -0.5206248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 99", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508755, - "lat": 51.8855235, - "lon": -0.5221042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508756, - "lat": 51.8856112, - "lon": -0.5224974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508757, - "lat": 51.8864268, - "lon": -0.5314885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "note": "Detail missing from postbox: surveyed on 28/10/2013. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508758, - "lat": 51.8874944, - "lon": -0.5274929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508759, - "lat": 51.8879575, - "lon": -0.5236792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508760, - "lat": 51.8882008, - "lon": -0.5221757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508762, - "lat": 51.8906499, - "lon": -0.5271986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508763, - "lat": 51.8907697, - "lon": -0.5295470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511508764, - "lat": 51.8927831, - "lon": -0.5302383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511568580, - "lat": 51.9080113, - "lon": -0.5909004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511568583, - "lat": 51.9086234, - "lon": -0.5966747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "ref": "LU7 41", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2511568586, - "lat": 51.9095827, - "lon": -0.5779136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "ref": "LU7 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512098282, - "lat": 56.6472514, - "lon": -5.2708174, - "tags": { - "amenity": "post_box", - "note": "plate absent", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512114422, - "lat": 56.5550082, - "lon": -5.4094674, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA38 40", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512114523, - "lat": 56.5514275, - "lon": -5.3061145, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PA38 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512163238, - "lat": 56.4200838, - "lon": -5.4646179, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- location is outside PH34 postal district", - "ref": "PH34 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512228061, - "lat": 56.3755050, - "lon": -5.4297157, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512228072, - "lat": 56.3741926, - "lon": -5.4405979, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA34 166", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512228080, - "lat": 56.3382754, - "lon": -5.5227313, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA34 167", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2512228081, - "lat": 56.3121536, - "lon": -5.5716906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "919490243127344", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA34 33", - "source": "survey", - "survey:date": "2023-11-21" - } -}, -{ - "type": "node", - "id": 2512732365, - "lat": 53.6612950, - "lon": -2.7303900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "ref": "PR7 119" - } -}, -{ - "type": "node", - "id": 2512903045, - "lat": 51.1052891, - "lon": -0.7415916, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "last_checked": "2020-09-06", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU26 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas" - } -}, -{ - "type": "node", - "id": 2512951841, - "lat": 51.3158350, - "lon": 0.0402334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2513137522, - "lat": 56.2684648, - "lon": -5.6287449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "PA34 150D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2513137693, - "lat": 56.2943648, - "lon": -5.6495243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Ellenabeich", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA34 153D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2513137715, - "lat": 56.2954593, - "lon": -5.6428180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "PA34 28D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2513144913, - "lat": 56.2924729, - "lon": -5.6136381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "PA34 199", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2513234152, - "lat": 51.3073541, - "lon": 0.0329392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "ref": "TN16 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2513253312, - "lat": 56.2610032, - "lon": -5.4744181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PA34 66", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2513291397, - "lat": 56.3943888, - "lon": -5.0571909, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA33 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2513304281, - "lat": 56.4019850, - "lon": -4.9632474, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA33 181", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2513428166, - "lat": 51.5829325, - "lon": -0.3157146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HA3 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2513602409, - "lat": 51.1327885, - "lon": 0.9044840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2514093375, - "lat": 51.1151233, - "lon": -0.7348273, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-16", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "GU26 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2514093376, - "lat": 51.1221500, - "lon": -0.7539904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "This postbox was a pillar and is now a lamp. Royal Mail renumbered this postbox when they installed a new one of this current lamp type.", - "old_ref": "GU26 134", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU26 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas", - "source_1": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 2514093378, - "lat": 51.1237340, - "lon": -0.7570730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU26 105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU26 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas", - "source_1": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 2514093379, - "lat": 51.1253142, - "lon": -0.7538355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU26 47", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU26 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas", - "source_1": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 2514093380, - "lat": 51.1270419, - "lon": -0.7492727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox's royal cypher was GR and it was a wall but it is now EIIR and is a brand new EIIR lamp postbox design.", - "old_ref": "GU26 110", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU26 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas", - "source_1": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 2514268681, - "lat": 51.4022586, - "lon": 0.1830375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR8 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2515157238, - "lat": 51.0961710, - "lon": -0.7408997, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "last_checked": "2020-09-06", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU26 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU26_23,_Nutcombe_Lane,_Hindhead_Road,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 2515478183, - "lat": 51.8890715, - "lon": -0.6864628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2516009095, - "lat": 51.5795423, - "lon": -0.5537031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL9 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2517202281, - "lat": 52.8447156, - "lon": 0.5007269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE32 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2517233717, - "lat": 52.9086250, - "lon": 0.6247716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE31 41" - } -}, -{ - "type": "node", - "id": 2517266263, - "lat": 52.8808480, - "lon": 0.8569017, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2517405045, - "lat": 51.8772331, - "lon": -0.5005894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU5 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405048, - "lat": 51.8778836, - "lon": -0.5058112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU5 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405066, - "lat": 51.8797307, - "lon": -0.5313885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405069, - "lat": 51.8808592, - "lon": -0.5275255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 35", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405070, - "lat": 51.8811469, - "lon": -0.5134144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405071, - "lat": 51.8811884, - "lon": -0.5221436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405072, - "lat": 51.8827434, - "lon": -0.5084532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405078, - "lat": 51.8853490, - "lon": -0.5098696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517405079, - "lat": 51.8865180, - "lon": -0.5200850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517507478, - "lat": 51.9255495, - "lon": -0.5470722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU7 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517507479, - "lat": 51.9293220, - "lon": -0.5838897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517507482, - "lat": 51.9299452, - "lon": -0.5597736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517507483, - "lat": 51.9317138, - "lon": -0.5862958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 66", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517507484, - "lat": 51.9333177, - "lon": -0.5955557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU7 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2517845915, - "lat": 51.1945023, - "lon": -0.5346153, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2518068832, - "lat": 52.9496638, - "lon": -1.1589933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:design:description": "Anonymous high aperture type B pillar", - "post_box:type": "pillar", - "ref": "NG7 51", - "ref:GB:uprn": "10015453076", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482450, - "lat": 51.8508504, - "lon": -0.5806581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 49", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482455, - "lat": 51.8622068, - "lon": -0.5912978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU6 2", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482461, - "lat": 51.8653543, - "lon": -0.5826416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "LU6 94D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482471, - "lat": 51.8688276, - "lon": -0.5848608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "LU6 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482483, - "lat": 51.8701807, - "lon": -0.6075327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482487, - "lat": 51.8702246, - "lon": -0.6038555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 101", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482492, - "lat": 51.8703855, - "lon": -0.5531406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 56", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482497, - "lat": 51.8737731, - "lon": -0.5833536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482501, - "lat": 51.8744358, - "lon": -0.6172235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482506, - "lat": 51.8753130, - "lon": -0.5868220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU6 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482511, - "lat": 51.8802478, - "lon": -0.5623506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482515, - "lat": 51.8836312, - "lon": -0.5692276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Information plate missing: collection times and ref taken from Royal Mail list.", - "operator": "Royal Mail", - "ref": "LU6 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482524, - "lat": 51.8898359, - "lon": -0.5834779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 17", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482528, - "lat": 51.8962681, - "lon": -0.5548957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LU6 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518482534, - "lat": 51.8969458, - "lon": -0.6373658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU7 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518493089, - "lat": 51.9037180, - "lon": -0.5970364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "LU7 35", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518631153, - "lat": 52.3391157, - "lon": -1.6707072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518789409, - "lat": 52.0350518, - "lon": -0.6985171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 512", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518822165, - "lat": 52.0373115, - "lon": -0.6948880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 482", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518826223, - "lat": 52.0416202, - "lon": -0.6976306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 501", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518839204, - "lat": 52.0455147, - "lon": -0.7091863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 533", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518842924, - "lat": 52.0477791, - "lon": -0.6988742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 287", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518854417, - "lat": 52.0521528, - "lon": -0.6967106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "note": "Shown in Royal Mail list as MK10 144 but the information plate shows MK16 144. Which is right? 2019-03-09. Surveyed again today and now marked as MK10 144 on the plate with date 12/03/2018.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK10 144", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518858265, - "lat": 52.0430466, - "lon": -0.6935932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518862736, - "lat": 55.7712571, - "lon": -2.0010599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD15 4D" - } -}, -{ - "type": "node", - "id": 2518878308, - "lat": 52.0372957, - "lon": -0.6852940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 609", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518881224, - "lat": 52.0359375, - "lon": -0.6877876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 450", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2518891113, - "lat": 52.0305858, - "lon": -0.6906477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 498", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2519011529, - "lat": 50.9223599, - "lon": -1.2499153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "old_ref": "HE298", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2519011536, - "lat": 50.9252820, - "lon": -1.1424550, - "tags": { - "amenity": "post_box", - "collection_plate": "not shown", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO32 168", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2519305932, - "lat": 51.3317731, - "lon": -0.3636762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2519985579, - "lat": 52.0306290, - "lon": -0.6906597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "note": "Shown in Royal Mail list as MK7 627 but information plate shows MK10 (correctly). Royal Mail list appears out-of-date.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK10 627P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2520017014, - "lat": 51.8938521, - "lon": -2.8281639, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 2520017020, - "lat": 51.9144013, - "lon": -2.8667815, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "post_box:type": "wall", - "ref": "NP7 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2520020683, - "lat": 51.9175634, - "lon": -2.8680741, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2520240596, - "lat": 51.8704149, - "lon": -2.8956165, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "ref": "NP8 112" - } -}, -{ - "type": "node", - "id": 2520262194, - "lat": 53.4018365, - "lon": -2.1668284, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-26", - "collection_times": "Mo-Fr 17:30, Sa 12:15" - } -}, -{ - "type": "node", - "id": 2520378116, - "lat": 53.4620409, - "lon": -2.6272935, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA12 29", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2520387839, - "lat": 53.5192612, - "lon": -2.7138388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 187", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2520996924, - "lat": 52.4811378, - "lon": -1.5877431, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CV7 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2521238993, - "lat": 51.4925539, - "lon": -0.1967625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Small mail slot, only suitable for envelopes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 14", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2521340501, - "lat": 56.0352967, - "lon": -3.4930243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 149", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2521509326, - "lat": 50.6244555, - "lon": -2.2511990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2521509560, - "lat": 50.6445513, - "lon": -2.3154158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT2 11", - "ref:GB:uprn": "10015351817", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2521509638, - "lat": 50.6498362, - "lon": -2.2972565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT2 122", - "ref:GB:uprn": "10015418124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2521539910, - "lat": 51.0206608, - "lon": -4.0554177, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2521601292, - "lat": 50.7040200, - "lon": -2.2778073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DT2 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2522264207, - "lat": 50.9858361, - "lon": -2.8070748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA12 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2522264208, - "lat": 50.9885312, - "lon": -2.8071157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA12 139" - } -}, -{ - "type": "node", - "id": 2522292843, - "lat": 50.7625595, - "lon": -3.4411728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "colour": "red", - "name": "Broad View | Broadclyst", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2522559229, - "lat": 50.8209830, - "lon": -1.0884654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO2 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2522682986, - "lat": 51.8534079, - "lon": 0.5939853, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2522967173, - "lat": 51.7116833, - "lon": -0.4413426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2523508148, - "lat": 50.8233349, - "lon": -0.1461132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP15", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "This postbox is in WHSmith on floor below ground floor, by the post office.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 199", - "royal_cypher": "EIIR", - "source": "survey", - "wikimedia_commons": "File:Post box BN1 199 2023-07-24.jpg" - } -}, -{ - "type": "node", - "id": 2523514358, - "lat": 50.8221948, - "lon": -0.1364151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 27D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2523525779, - "lat": 50.8272710, - "lon": -0.1460455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 138D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2523531205, - "lat": 50.8259795, - "lon": -0.1408345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-11-22", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 19:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 351", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2524124440, - "lat": 54.7811068, - "lon": -7.0850258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2524126820, - "lat": 54.7595752, - "lon": -7.1461292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2524364636, - "lat": 51.0930600, - "lon": -1.2410219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2524443215, - "lat": 55.8346013, - "lon": -4.5491405, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2524491371, - "lat": 51.1107601, - "lon": -0.7506980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "GU26 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+bing" - } -}, -{ - "type": "node", - "id": 2524491372, - "lat": 51.1113612, - "lon": -0.7602479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "GU26 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+bing" - } -}, -{ - "type": "node", - "id": 2524771215, - "lat": 51.3963584, - "lon": 0.5301320, - "tags": { - "amenity": "post_box", - "old_ref": "ME4 47", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME4 47D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 2525114835, - "lat": 50.3032729, - "lon": -5.1927084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 2525152895, - "lat": 51.8868739, - "lon": -0.5089154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15", - "note": "Franked meter mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 110", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152896, - "lat": 51.8869365, - "lon": -0.5167247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152897, - "lat": 51.8872539, - "lon": -0.5092778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152898, - "lat": 51.8880707, - "lon": -0.5179896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 8", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152899, - "lat": 51.8885831, - "lon": -0.5000570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 44", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152900, - "lat": 51.8886585, - "lon": -0.5119660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Royal Mail list has a reference of LU5 32767 for this box but that is not what is shown on the information plate.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 107", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152901, - "lat": 51.8893877, - "lon": -0.4936524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152902, - "lat": 51.8899561, - "lon": -0.4849972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "ref": "LU5 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152903, - "lat": 51.8920585, - "lon": -0.4867273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152904, - "lat": 51.8925289, - "lon": -0.4969529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 72", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152905, - "lat": 51.8948556, - "lon": -0.5042504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 79", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152906, - "lat": 51.8948892, - "lon": -0.5071022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152911, - "lat": 51.8962173, - "lon": -0.5088521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "note": "Franked meter mail only. Survey (09/11/2013): the reference number wasn't visible being just below the bottom edge hence assumed per the Royal Mail list.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525152912, - "lat": 51.8963118, - "lon": -0.4965378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 62", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525251285, - "lat": 53.5828557, - "lon": -2.4442475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2525346005, - "lat": 52.9936393, - "lon": -3.2256011, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525346133, - "lat": 52.9955863, - "lon": -3.2196085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL20 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2525577364, - "lat": 51.3279496, - "lon": -0.3714318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2525597711, - "lat": 51.3088799, - "lon": -0.3765762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2525830218, - "lat": 51.8048869, - "lon": -2.4485685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL14 339D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2525850941, - "lat": 53.4405582, - "lon": -2.5952262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 200", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2525852757, - "lat": 53.4563210, - "lon": -2.6337825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2525978935, - "lat": 53.1477674, - "lon": -1.1902258, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2526193027, - "lat": 51.1032837, - "lon": -0.7350048, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-06", - "old_ref": "GU26 59", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU26 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526310012, - "lat": 51.8784123, - "lon": -0.5934116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "ref": "LU6 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526310015, - "lat": 51.8810731, - "lon": -0.5926634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "LU6 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362201, - "lat": 51.8309677, - "lon": -0.5252341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "note": "Information plate missing: collection times and reference assumed from Royal Mail list.", - "operator": "Royal Mail", - "ref": "LU6 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362205, - "lat": 51.8501957, - "lon": -0.4961854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362206, - "lat": 51.8502743, - "lon": -0.5433814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362211, - "lat": 51.8505725, - "lon": -0.4773734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362212, - "lat": 51.8511233, - "lon": -0.5013981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "ref": "LU6 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362219, - "lat": 51.8535539, - "lon": -0.5339693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU6 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362227, - "lat": 51.8540877, - "lon": -0.5142509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "ref": "LU6 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2526362269, - "lat": 51.8596026, - "lon": -0.5031922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "ref": "LU6 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2527146648, - "lat": 52.0842015, - "lon": 1.1236561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP1 1241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2527628952, - "lat": 51.5685130, - "lon": -0.1931530, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2527688720, - "lat": 51.0918909, - "lon": -0.7338473, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-06", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU27 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post_Box_GU27_54D,_Chilcroft_Road,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 2527911505, - "lat": 51.2412138, - "lon": -2.3060525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA11 50" - } -}, -{ - "type": "node", - "id": 2528382828, - "lat": 52.1399205, - "lon": -4.4901406, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2528424886, - "lat": 56.0600127, - "lon": -3.4516264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "KY11 141D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2528527223, - "lat": 53.1778921, - "lon": -1.1849116, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2529038354, - "lat": 50.8450258, - "lon": -1.7837949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 71" - } -}, -{ - "type": "node", - "id": 2529038405, - "lat": 50.8582163, - "lon": -1.7750337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 66" - } -}, -{ - "type": "node", - "id": 2529175818, - "lat": 50.9418033, - "lon": -1.5359062, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529175870, - "lat": 50.9098302, - "lon": -1.5335218, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 675", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529175897, - "lat": 50.9149823, - "lon": -1.5067787, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 727D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529175902, - "lat": 50.9260633, - "lon": -1.5071676, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 751D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529241189, - "lat": 50.9420106, - "lon": -1.4068670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529264401, - "lat": 50.8586228, - "lon": -1.2538697, - "tags": { - "amenity": "post_box", - "ref": "PO14 134" - } -}, -{ - "type": "node", - "id": 2529264466, - "lat": 50.8523764, - "lon": -1.2652905, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO14 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529305954, - "lat": 51.8480384, - "lon": -2.3392172, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2529432175, - "lat": 50.9972773, - "lon": -1.3921714, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO53 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529432199, - "lat": 50.9726365, - "lon": -1.3668457, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 248D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2529432245, - "lat": 50.9836441, - "lon": -1.3937324, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 766", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529432267, - "lat": 50.9855992, - "lon": -1.4306420, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00, Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO52 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529432292, - "lat": 50.9877210, - "lon": -1.3900148, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 739D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529432314, - "lat": 51.0193132, - "lon": -1.3359923, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO21 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2529432375, - "lat": 50.9494395, - "lon": -1.4088115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "SO16 587D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529454668, - "lat": 50.9140423, - "lon": -1.5145575, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 762D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529454671, - "lat": 51.0255917, - "lon": -1.4404900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 562D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2529844915, - "lat": 52.2904337, - "lon": -2.0678999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "name": "Post Box", - "note": "missing collection plate", - "post_box:type": "lamp", - "ref": "B61 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "dracos" - } -}, -{ - "type": "node", - "id": 2531014631, - "lat": 50.9487903, - "lon": 0.7313116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "236964452339269", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN31 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-30" - } -}, -{ - "type": "node", - "id": 2531318987, - "lat": 55.9568267, - "lon": -3.3003596, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH4 636D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2531596517, - "lat": 50.8210661, - "lon": -0.4441546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN12 1791D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2532578338, - "lat": 51.9019881, - "lon": -2.2117780, - "tags": { - "amenity": "post_box", - "ref": "GL2 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2533026987, - "lat": 50.8079431, - "lon": -0.4498124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN12 1799", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1799D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2533026989, - "lat": 50.8124724, - "lon": -0.4489058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2533328353, - "lat": 51.1068158, - "lon": -0.7541491, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "old_ref": "GU26 87", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU26 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+bing" - } -}, -{ - "type": "node", - "id": 2533697697, - "lat": 51.9122166, - "lon": -2.0972541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 172", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2533744547, - "lat": 51.8995926, - "lon": -2.0843375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2533757594, - "lat": 53.5012371, - "lon": -2.7055762, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2533897420, - "lat": 50.8889007, - "lon": -0.2467419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "wall", - "ref": "BN5 1359", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2533910174, - "lat": 50.8824978, - "lon": -0.3061439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN44 1549", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2533910176, - "lat": 50.8829879, - "lon": -0.3120164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "wall", - "ref": "BN44 1550", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2534007654, - "lat": 52.1298328, - "lon": -4.4692496, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2534950634, - "lat": 51.8947926, - "lon": -2.0777363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535289918, - "lat": 52.0120121, - "lon": -0.6816327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 516", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535289925, - "lat": 52.0120727, - "lon": -0.6888690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 608", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535289934, - "lat": 52.0319193, - "lon": -0.6961267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535289943, - "lat": 52.0336371, - "lon": -0.6768534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK7 503", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535317256, - "lat": 51.5750830, - "lon": 0.1833579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RM1 463P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2535317260, - "lat": 51.5750913, - "lon": 0.1833517, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RM1 30;RM1 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2535317265, - "lat": 51.5765879, - "lon": 0.1826376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Shown in Royal Mail list as RM1 4670 but definitely showing on information plate as RM1 4670.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM1 467", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535317269, - "lat": 51.5766032, - "lon": 0.1826731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM1 4678", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535317273, - "lat": 51.5774133, - "lon": 0.1803504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM1 462", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535317278, - "lat": 51.5774291, - "lon": 0.1804456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM1 418", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2535388218, - "lat": 52.5849428, - "lon": 1.1899652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR18 1851", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2535388236, - "lat": 52.5782948, - "lon": 1.1846589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NR18 1849", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2535742041, - "lat": 50.8501782, - "lon": -0.5250184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "description": "This postbox is in the wall on one of the houses on the walkway; this walkway is higher than the road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1297", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2536441872, - "lat": 51.8977219, - "lon": -0.5275517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU5 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536441878, - "lat": 51.9003680, - "lon": -0.5254841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30", - "operator": "Royal Mail", - "ref": "LU5 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536463403, - "lat": 52.0592125, - "lon": 1.1532369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1096", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2536483184, - "lat": 51.9029713, - "lon": -0.5231508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU5 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536483196, - "lat": 51.9058283, - "lon": -0.5235164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "ref": "LU5 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536483281, - "lat": 51.9082941, - "lon": -0.5258025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536483283, - "lat": 51.9082290, - "lon": -0.5207900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536507284, - "lat": 51.9088356, - "lon": -0.5162587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536507314, - "lat": 51.9117820, - "lon": -0.5177033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536507320, - "lat": 51.9130110, - "lon": -0.5102962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "LU5 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536507324, - "lat": 51.9153252, - "lon": -0.5114073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536510940, - "lat": 52.6587036, - "lon": 0.9882909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR19 1905", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2536510962, - "lat": 52.6606795, - "lon": 1.0128070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR20 2021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2536559331, - "lat": 51.9037596, - "lon": -0.5065607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536559337, - "lat": 51.9049537, - "lon": -0.5114823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536559347, - "lat": 51.9106462, - "lon": -0.5011677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LU5 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536576347, - "lat": 51.9037640, - "lon": -0.5176088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536576351, - "lat": 51.9050816, - "lon": -0.5194133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "note": "Information plate missing. Collection times and reference assumed from Royal Mail list data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536576356, - "lat": 51.9067419, - "lon": -0.5121851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2536610058, - "lat": 51.8888190, - "lon": -0.5205710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU5 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2537088969, - "lat": 50.4592237, - "lon": -3.5482965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ2 367D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537088971, - "lat": 50.4594162, - "lon": -3.5247088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537088981, - "lat": 50.4646894, - "lon": -3.5542277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 76D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537088986, - "lat": 50.4670550, - "lon": -3.5556856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 232D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537088991, - "lat": 50.4675133, - "lon": -3.5309459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "note": "Dracos site doesn't list this post box - but it's definately there!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537088996, - "lat": 50.4674116, - "lon": -3.5262536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 53D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537089001, - "lat": 50.4682052, - "lon": -3.5324257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ2 96;TQ2 9600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537089007, - "lat": 50.4694811, - "lon": -3.5532956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 2537089012, - "lat": 50.4806285, - "lon": -3.5194492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 2537089017, - "lat": 50.4824781, - "lon": -3.5198714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ1 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537141949, - "lat": 53.3993340, - "lon": -1.5754758, - "tags": { - "amenity": "post_box", - "ref": "S6 171", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2537161785, - "lat": 53.4240513, - "lon": -1.6048652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "wall", - "ref": "S6 643", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2537326131, - "lat": 50.5296838, - "lon": -3.6001326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537326133, - "lat": 50.5305970, - "lon": -3.6096194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:15; Su off", - "note": "Dracos data for TQ12 14 is incorrect", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TQ12 14P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537373605, - "lat": 50.3430610, - "lon": -3.5737870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-03-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537373608, - "lat": 50.3454249, - "lon": -3.5770210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "350022693442429", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-18" - } -}, -{ - "type": "node", - "id": 2537373612, - "lat": 50.3528318, - "lon": -3.5787861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ6 355;TQ6 3550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537373615, - "lat": 50.3567828, - "lon": -3.5771917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ6 163D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "https://www.mapillary.com/app/?lat=50.35676761535029&lng=-3.577209021899455&z=17&pKey=wJHY99XU4mrXsID9IIIFUw&focus=photo;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2537373617, - "lat": 50.3955160, - "lon": -3.5128664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ5 1700;TQ5 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 2537410898, - "lat": 50.5463096, - "lon": -3.4932060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 2537410906, - "lat": 50.5481383, - "lon": -3.4943224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ14 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;local knowledge", - "survey:date": "2023-11-29" - } -}, -{ - "type": "node", - "id": 2537904332, - "lat": 51.7057849, - "lon": -1.9518995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL7 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2539501846, - "lat": 57.1433657, - "lon": -2.0983739, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "yes", - "note": "type is non-standard", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 12D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2541358694, - "lat": 54.9986740, - "lon": -1.7023780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE5 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2541391820, - "lat": 51.0614844, - "lon": 0.1688294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 254D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2541919436, - "lat": 56.7431316, - "lon": -3.7720924, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-06", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "colour": "red", - "drive_through": "no", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "PH16 54", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2546758083, - "lat": 51.7265744, - "lon": -1.5457336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX18 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2546958251, - "lat": 51.7942285, - "lon": -1.4702865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2546975152, - "lat": 51.3180322, - "lon": -0.3066501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT21 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2547112319, - "lat": 52.0350113, - "lon": -0.7741183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "disused": "yes", - "note": "Handwritten \"not in use\" in notice plate. Former collection times and reference assumed from Royal Mail list data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK9 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112320, - "lat": 52.0371956, - "lon": -0.7682751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK9 461D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112328, - "lat": 52.0388621, - "lon": -0.7685772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 601", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112340, - "lat": 52.0394962, - "lon": -0.7628980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 614P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112352, - "lat": 52.0396756, - "lon": -0.7551489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK9 393", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112361, - "lat": 52.0416381, - "lon": -0.7482537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 527", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112372, - "lat": 52.0416660, - "lon": -0.7635716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 387", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112383, - "lat": 52.0421296, - "lon": -0.7626781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only (Post_Box:type=meter) 2019-03-31 Moved to correct position after survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK9 602", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112395, - "lat": 52.0424869, - "lon": -0.7598041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 386", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112406, - "lat": 52.0427985, - "lon": -0.7552781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "yes", - "note": "2019-04-06. One of the 2 apertures is sealed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "MK9 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112424, - "lat": 52.0439709, - "lon": -0.7509559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK9 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112434, - "lat": 52.0443599, - "lon": -0.7573374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 619", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112446, - "lat": 52.0443946, - "lon": -0.7571643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "gold", - "note": "Gold-coloured box: Celebrates Greg Rutherford's gold medal in the long jump at Olympics 2012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 334", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547112459, - "lat": 52.0444163, - "lon": -0.7571785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "gold", - "note": "Gold-coloured box: Celebrates Greg Rutherford's gold medal in the long jump at Olympics 2012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK9 521", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547437799, - "lat": 52.2807351, - "lon": 0.4101418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2547576545, - "lat": 51.2539252, - "lon": -1.2597801, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RG25 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2548043554, - "lat": 52.9377365, - "lon": -1.1627612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG2 339", - "ref:GB:uprn": "10015345159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548389816, - "lat": 52.7111414, - "lon": 1.1090251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 956" - } -}, -{ - "type": "node", - "id": 2548465591, - "lat": 52.7194534, - "lon": 1.0596945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "NR9 955", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2548524078, - "lat": 51.7264717, - "lon": -1.5424342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX18 417D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2548568337, - "lat": 51.7282943, - "lon": -1.5481044, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2548829913, - "lat": 51.8880269, - "lon": -0.4767333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "LU1 160", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829915, - "lat": 51.8887713, - "lon": -0.4637074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "ref": "LU4 114", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829917, - "lat": 51.8894649, - "lon": -0.4740173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "LU4 171", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829918, - "lat": 51.8923682, - "lon": -0.4789587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "LU4 76", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829919, - "lat": 51.8932513, - "lon": -0.4668685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "LU4 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829920, - "lat": 51.8939923, - "lon": -0.4758008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "LU4 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829921, - "lat": 51.8947591, - "lon": -0.4865025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "LU4 147", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829923, - "lat": 51.8969522, - "lon": -0.4832057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Notice plate missing at survey of 2013-11-24. Collection time and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "ref": "LU4 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829924, - "lat": 51.8984125, - "lon": -0.4750185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "LU4 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829926, - "lat": 51.8986865, - "lon": -0.4890850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "ref": "LU4 164", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829927, - "lat": 51.9004084, - "lon": -0.4856558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "ref": "LU4 220", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829929, - "lat": 51.9011965, - "lon": -0.5011418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU4 163", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829948, - "lat": 51.9018666, - "lon": -0.4957254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "Notice plate missing at survey of 2013-11-24. Collection time and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU4 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829968, - "lat": 51.9026863, - "lon": -0.4817525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU4 102", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829976, - "lat": 51.9031270, - "lon": -0.4989220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU4 162", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2548829977, - "lat": 51.9053924, - "lon": -0.4887935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "ref": "LU4 219", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2549310456, - "lat": 52.3777132, - "lon": 0.2839850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB7 127" - } -}, -{ - "type": "node", - "id": 2549400907, - "lat": 51.3186707, - "lon": -1.3062829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:type": "wall", - "ref": "RG20 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2549907449, - "lat": 51.3501383, - "lon": -2.9767804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "colour": "red", - "description": "Postbox for stamped (but not pre-franked) ordinary mail only.", - "direction": "S", - "drive_through": "no", - "name": "The Boulevard Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "postal_code": "BS23 1NE", - "ref": "BS23 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2550737665, - "lat": 51.5444621, - "lon": -1.8813945, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN4 417" - } -}, -{ - "type": "node", - "id": 2550737666, - "lat": 51.5453435, - "lon": -1.8887784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN4 1" - } -}, -{ - "type": "node", - "id": 2550737667, - "lat": 51.5419870, - "lon": -1.8874954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN4 390" - } -}, -{ - "type": "node", - "id": 2550737668, - "lat": 51.5453070, - "lon": -1.8942453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN4 341" - } -}, -{ - "type": "node", - "id": 2550790787, - "lat": 51.8769068, - "lon": 0.1735817, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CM23 116" - } -}, -{ - "type": "node", - "id": 2550817091, - "lat": 51.8747800, - "lon": 0.1802572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "ref": "CM23 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2550910445, - "lat": 51.1159695, - "lon": -0.7659986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "GU26 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2552778240, - "lat": 53.4549722, - "lon": -2.6118563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 21", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2554506312, - "lat": 51.8987050, - "lon": -2.1040062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2555452632, - "lat": 51.7299264, - "lon": -1.5414064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2555752119, - "lat": 51.1167368, - "lon": -0.7856257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "wall", - "ref": "GU26 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2556140605, - "lat": 51.5570485, - "lon": -1.7383600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2556847665, - "lat": 53.4655364, - "lon": -2.6670806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 66", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2556867668, - "lat": 55.4541084, - "lon": -4.6236339, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA7 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2557051099, - "lat": 50.7163838, - "lon": -3.5587024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2557981081, - "lat": 50.7840893, - "lon": -1.0802026, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PO5 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2558377595, - "lat": 52.0264001, - "lon": -0.8025937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377596, - "lat": 52.0286536, - "lon": -0.8075559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377597, - "lat": 52.0310733, - "lon": -0.7900870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK5 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377598, - "lat": 52.0327298, - "lon": -0.7917366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377599, - "lat": 52.0358404, - "lon": -0.7973599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377600, - "lat": 52.0365579, - "lon": -0.7918677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377601, - "lat": 52.0382097, - "lon": -0.8019258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "MK8 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377602, - "lat": 52.0409807, - "lon": -0.8162339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK8 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377603, - "lat": 52.0429772, - "lon": -0.8035848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377604, - "lat": 52.0446913, - "lon": -0.7990980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK8 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377605, - "lat": 52.0476912, - "lon": -0.7978180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK13 613", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558377606, - "lat": 52.0497894, - "lon": -0.8023176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK12 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558380312, - "lat": 52.0307472, - "lon": -0.7804207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK5 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558501239, - "lat": 51.5423111, - "lon": -0.0550728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 33D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2558807500, - "lat": 50.7961560, - "lon": -2.7058711, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015378239" - } -}, -{ - "type": "node", - "id": 2558829760, - "lat": 52.5223916, - "lon": 0.6738985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "IP26 3375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2559137885, - "lat": 51.5288042, - "lon": -0.8969180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559143529, - "lat": 51.5360651, - "lon": -0.9037312, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "note": "lh slot \"Meter Mail\", rh slot \"Stamped Mail\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "RG9 507", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2559143530, - "lat": 51.5377630, - "lon": -0.9011800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559143531, - "lat": 51.5374986, - "lon": -0.8990401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:30, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "RG9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2559143532, - "lat": 51.5410221, - "lon": -0.9084452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG9 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559143533, - "lat": 51.5297871, - "lon": -0.9122598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559143534, - "lat": 51.5314801, - "lon": -0.9103772, - "tags": { - "amenity": "post_box", - "mapillary": "378286140502026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2021-09-10" - } -}, -{ - "type": "node", - "id": 2559143946, - "lat": 51.5269785, - "lon": -0.9166111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559144761, - "lat": 51.5286388, - "lon": -0.9220759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2559144774, - "lat": 51.5282601, - "lon": -0.9272679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559145426, - "lat": 51.5291902, - "lon": -0.9078685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG9 80D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2559147417, - "lat": 51.5272921, - "lon": -0.9007595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559148874, - "lat": 51.5288215, - "lon": -0.8946936, - "tags": { - "amenity": "post_box", - "mail:franked": "yes", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2559153038, - "lat": 51.5292395, - "lon": -0.8878768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG9 50D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2559254770, - "lat": 51.1580791, - "lon": -0.6302885, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559604937, - "lat": 52.5619528, - "lon": 1.0200924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1859D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2559604974, - "lat": 52.5790801, - "lon": 1.0537425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1847D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2559629775, - "lat": 51.9268974, - "lon": -0.7627164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU7 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559673393, - "lat": 51.9361730, - "lon": -0.8301296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "MK17 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559673399, - "lat": 51.9382798, - "lon": -0.8342651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "ref": "MK17 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559673410, - "lat": 51.9487848, - "lon": -0.7809530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "ref": "MK17 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559673415, - "lat": 51.9495035, - "lon": -0.8117786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "MK17 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559673422, - "lat": 51.9509127, - "lon": -0.7763848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "ref": "MK17 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559673448, - "lat": 51.9531392, - "lon": -0.8147701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "ref": "MK17 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559680079, - "lat": 51.9702482, - "lon": -0.7730809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559682682, - "lat": 51.1574205, - "lon": -0.5828344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "GU8 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2559695072, - "lat": 51.9562283, - "lon": -0.7184082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559700808, - "lat": 51.9673905, - "lon": -0.6821299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559700812, - "lat": 51.9678273, - "lon": -0.6891785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK17 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2559995683, - "lat": 51.7441397, - "lon": -0.1946695, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "ref": "AL9 202" - } -}, -{ - "type": "node", - "id": 2560383038, - "lat": 51.1309076, - "lon": -0.7820902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "wall", - "ref": "GU26 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2560643192, - "lat": 53.2442304, - "lon": -0.3393287, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2560986915, - "lat": 52.5701846, - "lon": 0.8289843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "IP25 8224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2561253288, - "lat": 52.5066840, - "lon": -2.1059470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2561262485, - "lat": 57.1240701, - "lon": -2.1237322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 14", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2561496816, - "lat": 52.5163675, - "lon": 1.2368405, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2561762228, - "lat": 57.0155158, - "lon": -6.2807384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "1 hour prior to departure of ferry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH43 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2561932791, - "lat": 56.0424615, - "lon": -3.4375031, - "tags": { - "amenity": "post_box", - "ref": "KY11 202", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2562027111, - "lat": 57.1476654, - "lon": -4.6915039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH32 53", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2562087814, - "lat": 56.0524214, - "lon": -3.3074470, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY3 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2562088429, - "lat": 51.5634551, - "lon": -1.8275612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2562166798, - "lat": 55.9050930, - "lon": -3.4904418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 23D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2562166813, - "lat": 55.9426878, - "lon": -3.4718394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 26", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2562233587, - "lat": 56.3299758, - "lon": -3.5357803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 199", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2562291024, - "lat": 51.1341519, - "lon": -3.0247146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 904", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2562552764, - "lat": 52.6810353, - "lon": 0.9407988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR19 1906", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2562552831, - "lat": 52.6628578, - "lon": 0.9400508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR19 1915", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2562562056, - "lat": 52.6836443, - "lon": 0.9395240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR19 1923D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2562863978, - "lat": 52.7109698, - "lon": 0.9076010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "wall", - "ref": "NR20 2040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2562899045, - "lat": 52.7155880, - "lon": 0.9247427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2562899096, - "lat": 52.7300103, - "lon": 0.9193944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "NR20 2026", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2563677981, - "lat": 53.4559675, - "lon": -2.6287956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 80", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2565697061, - "lat": 51.4495341, - "lon": -2.6033524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS1 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2566330317, - "lat": 53.3974680, - "lon": -3.1219015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "QEII Type A post box CH46 396 at Saughall Bridge Post Office, Moreton, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH46 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Saughall Bridge Post Office.jpg" - } -}, -{ - "type": "node", - "id": 2566457366, - "lat": 52.0499332, - "lon": 1.1662886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP3 8252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2566832413, - "lat": 53.9117489, - "lon": -1.0496340, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2567860637, - "lat": 51.1291607, - "lon": -0.7744337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "GU26 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas" - } -}, -{ - "type": "node", - "id": 2570062941, - "lat": 51.7307607, - "lon": 0.4500761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2570311465, - "lat": 56.0053042, - "lon": -4.7228625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2570784168, - "lat": 50.9439700, - "lon": -0.4219612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2571156561, - "lat": 50.9846281, - "lon": -1.4675150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 698D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2571327374, - "lat": 51.0614981, - "lon": -2.6013613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2571400542, - "lat": 51.9796233, - "lon": -0.7204587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400547, - "lat": 51.9804225, - "lon": -0.7256974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400552, - "lat": 51.9832735, - "lon": -0.7224560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400558, - "lat": 51.9850373, - "lon": -0.7299459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400563, - "lat": 51.9850764, - "lon": -0.7299643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 625", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400567, - "lat": 51.9858767, - "lon": -0.7236961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK2 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400573, - "lat": 51.9882428, - "lon": -0.7298243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400578, - "lat": 51.9889560, - "lon": -0.7185864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK2 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400583, - "lat": 51.9895055, - "lon": -0.7235590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400587, - "lat": 51.9907495, - "lon": -0.7322867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK2 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400589, - "lat": 51.9925217, - "lon": -0.7199843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400594, - "lat": 51.9936910, - "lon": -0.7154087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400599, - "lat": 51.9942706, - "lon": -0.7328491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "MK2 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400601, - "lat": 51.9947111, - "lon": -0.7295574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "MK2 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400602, - "lat": 51.9947172, - "lon": -0.7295133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "MK2 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400603, - "lat": 51.9954035, - "lon": -0.7369153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK3 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400604, - "lat": 51.9974234, - "lon": -0.7168348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400605, - "lat": 51.9978153, - "lon": -0.7194882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400606, - "lat": 51.9980027, - "lon": -0.7271775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400608, - "lat": 51.9984847, - "lon": -0.7315236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400609, - "lat": 51.9985933, - "lon": -0.7322644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400610, - "lat": 52.0010657, - "lon": -0.7258237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "inside supermarket", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400611, - "lat": 52.0016401, - "lon": -0.7188008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400612, - "lat": 52.0029523, - "lon": -0.7279191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400613, - "lat": 52.0035697, - "lon": -0.7200192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400614, - "lat": 52.0048958, - "lon": -0.7176081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400615, - "lat": 52.0049204, - "lon": -0.7176304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571400616, - "lat": 52.0101484, - "lon": -0.7256960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571473763, - "lat": 52.9366035, - "lon": -1.1855367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "mail:franked": "only", - "opening_hours": "Mo-Fr 10:00-18:30", - "post_box:type": "meter", - "ref": "NG7 10", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571473765, - "lat": 52.9366096, - "lon": -1.1855527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG7 172", - "ref:GB:uprn": "10015842383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2571503242, - "lat": 51.5244367, - "lon": -2.5535072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "mapillary": "260662899926198", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS34 589D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-26" - } -}, -{ - "type": "node", - "id": 2571503267, - "lat": 51.5264625, - "lon": -2.5962065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS34 691D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2571838020, - "lat": 51.4983033, - "lon": -2.5873827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS7 361", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2571841373, - "lat": 51.4430881, - "lon": -2.6165938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "BS3 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2572198424, - "lat": 51.1456324, - "lon": -0.8786167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU35 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2573180923, - "lat": 51.8446516, - "lon": -2.1588697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "GL3 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS tagged photo." - } -}, -{ - "type": "node", - "id": 2573305889, - "lat": 50.9209254, - "lon": -0.9990024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8ND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I have upgraded the postbox tag.", - "old_ref": "PO8 195", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2573422271, - "lat": 56.0844806, - "lon": -3.3679794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 66D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2573688075, - "lat": 56.1663426, - "lon": -3.6756711, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2573762288, - "lat": 56.2674480, - "lon": -3.3226765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY14 284D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2574536913, - "lat": 53.2085855, - "lon": -2.8374551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 231D" - } -}, -{ - "type": "node", - "id": 2574574878, - "lat": 50.9061795, - "lon": -1.3763515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 763D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2574603134, - "lat": 57.1497738, - "lon": -2.3026055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "ref": "AB32 421" - } -}, -{ - "type": "node", - "id": 2575893950, - "lat": 50.7627055, - "lon": -3.3366952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "drive_through": "no", - "name": "Whimple Wood", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "EX5 2QR", - "ref": "EX5 321", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2576345086, - "lat": 51.0856317, - "lon": -1.1657931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO24 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2576358074, - "lat": 51.2520285, - "lon": -1.1130253, - "tags": { - "amenity": "post_box", - "postal_code": "RG22", - "ref": "RG22 276" - } -}, -{ - "type": "node", - "id": 2576819160, - "lat": 53.4878695, - "lon": -3.0315489, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2576856446, - "lat": 51.3724639, - "lon": -0.4878175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "This is an indoor postbox so can only be used during store opening hours.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "KT15 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2577501716, - "lat": 52.2683669, - "lon": -1.5232474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV31 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2577662962, - "lat": 51.1346299, - "lon": -2.9937835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2578405057, - "lat": 52.1584789, - "lon": -4.4630638, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2578857378, - "lat": 51.5430637, - "lon": -0.2082610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2579657272, - "lat": 51.8909040, - "lon": -0.4456251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657273, - "lat": 51.8918290, - "lon": -0.4490112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657274, - "lat": 51.8925736, - "lon": -0.4597045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657276, - "lat": 51.8952773, - "lon": -0.4438912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657277, - "lat": 51.8970260, - "lon": -0.4588191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657279, - "lat": 51.9028375, - "lon": -0.4632225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Notice plate missing. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657280, - "lat": 51.9029781, - "lon": -0.4677497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657281, - "lat": 51.9049709, - "lon": -0.4762961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657283, - "lat": 51.9055990, - "lon": -0.4714480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU4 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657284, - "lat": 51.9060487, - "lon": -0.4670944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU4 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657285, - "lat": 51.9072297, - "lon": -0.4780610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU4 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657287, - "lat": 51.9082533, - "lon": -0.4638602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU4 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657295, - "lat": 51.9090222, - "lon": -0.4712048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU4 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657298, - "lat": 51.9105852, - "lon": -0.4690782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU4 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657301, - "lat": 51.9113073, - "lon": -0.4762712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU4 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657302, - "lat": 51.9125269, - "lon": -0.4784210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579657303, - "lat": 51.9133567, - "lon": -0.4781017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "Industrial Estate Pre-Paid Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LU4 303", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2579683211, - "lat": 51.8831462, - "lon": -0.4396388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579683212, - "lat": 51.8853632, - "lon": -0.4334473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "Notice plate missing. Collection times and reference assumed from Royal Mail data. Appeared to be vandalised.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU4 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579683213, - "lat": 51.8875292, - "lon": -0.4433595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579683214, - "lat": 51.8876998, - "lon": -0.4448611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only. But sign in notice plate states that this postbox is not in use. No collection times or reference available, so assumed from Royal Mail data.", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LU4 301", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579683215, - "lat": 51.8883542, - "lon": -0.4384590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU4 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579683219, - "lat": 51.8893371, - "lon": -0.4485930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579683223, - "lat": 51.8899976, - "lon": -0.4422250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU4 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2579905836, - "lat": 53.3088794, - "lon": -0.2618141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2579954239, - "lat": 51.8857103, - "lon": -2.1060787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2580101471, - "lat": 50.5713571, - "lon": -4.1919445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "photo positioned by relationship to roads and satellite photo;survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 2580238366, - "lat": 51.8901306, - "lon": -2.0991443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2580238367, - "lat": 51.8901800, - "lon": -2.1052508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 145D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2580268114, - "lat": 52.3178870, - "lon": 1.4686300, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP19 5558", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2580619243, - "lat": 57.1549920, - "lon": -2.3056160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "ref": "AB32 646" - } -}, -{ - "type": "node", - "id": 2580922954, - "lat": 51.9867212, - "lon": -0.7710962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580922955, - "lat": 51.9871474, - "lon": -0.7585272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580922990, - "lat": 51.9898672, - "lon": -0.7601781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580922991, - "lat": 51.9900493, - "lon": -0.7717420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580926012, - "lat": 51.9929149, - "lon": -0.7597861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580978787, - "lat": 51.9952514, - "lon": -0.7606427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580978794, - "lat": 51.9977466, - "lon": -0.7619009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2580978832, - "lat": 51.9994340, - "lon": -0.7671774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK3 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581002678, - "lat": 51.8675203, - "lon": -0.7485203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "ref": "HP22 101", - "source": "survey; Bing" - } -}, -{ - "type": "node", - "id": 2581039493, - "lat": 51.9960998, - "lon": -0.7474547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581039496, - "lat": 51.9964714, - "lon": -0.7556011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581039502, - "lat": 51.9987448, - "lon": -0.7556004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581039505, - "lat": 52.0005039, - "lon": -0.7484351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK3 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581039511, - "lat": 52.0008469, - "lon": -0.7504971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581039521, - "lat": 52.0011179, - "lon": -0.7617790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581066030, - "lat": 52.0056942, - "lon": -0.7487341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581066043, - "lat": 52.0059628, - "lon": -0.7578679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581073076, - "lat": 52.0095314, - "lon": -0.7403035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581091237, - "lat": 52.0101510, - "lon": -0.7257857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581093383, - "lat": 53.9868575, - "lon": -1.1018862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:15", - "note": "franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "YO30 2009", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2581320070, - "lat": 53.2457202, - "lon": -1.6147086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE45 1279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2582085764, - "lat": 51.3652416, - "lon": 0.3020168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA3 410" - } -}, -{ - "type": "node", - "id": 2582408131, - "lat": 52.2752831, - "lon": -2.2292097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2582436891, - "lat": 53.1496610, - "lon": -1.8334249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2582728839, - "lat": 53.2287913, - "lon": 0.0194787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "PE23 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2582790724, - "lat": 54.3535606, - "lon": -2.6744642, - "tags": { - "amenity": "post_box", - "ref": "LA8 192", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2582822616, - "lat": 54.6480816, - "lon": -2.7317893, - "tags": { - "amenity": "post_box", - "ref": "CA10 83", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2582951324, - "lat": 54.6474854, - "lon": -2.8873861, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2582962965, - "lat": 54.6649453, - "lon": -2.7612228, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2582962977, - "lat": 54.6707275, - "lon": -2.7903486, - "tags": { - "amenity": "post_box", - "ref": "CA11 280", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2582970757, - "lat": 50.9935684, - "lon": -1.4612758, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 623D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2583090909, - "lat": 54.6768735, - "lon": -2.8093444, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2583090956, - "lat": 54.6906995, - "lon": -2.8082826, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CA11 304", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2583099804, - "lat": 54.8533963, - "lon": -3.0212027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA5 122", - "source": "survey", - "survey:date": "2023-06-26", - "wikimedia_commons": "File:John's Plaice, Cardewlees - geograph.org.uk - 5004985.jpg" - } -}, -{ - "type": "node", - "id": 2583395509, - "lat": 54.8855519, - "lon": -2.9670987, - "tags": { - "amenity": "post_box", - "ref": "CA2 452" - } -}, -{ - "type": "node", - "id": 2583395577, - "lat": 54.8851208, - "lon": -2.9777902, - "tags": { - "amenity": "post_box", - "ref": "CA2 391", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2583395656, - "lat": 54.8880778, - "lon": -2.9790820, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2583395659, - "lat": 54.8909094, - "lon": -2.9881864, - "tags": { - "amenity": "post_box", - "ref": "CA2 453", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2583955638, - "lat": 51.7074399, - "lon": -0.1797269, - "tags": { - "amenity": "post_box", - "ref": "EN6 26" - } -}, -{ - "type": "node", - "id": 2583955639, - "lat": 51.7115641, - "lon": -0.1845612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2584416486, - "lat": 54.8229861, - "lon": -2.3085110, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2584801241, - "lat": 54.6736980, - "lon": -1.2802069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TS27 50D" - } -}, -{ - "type": "node", - "id": 2585395452, - "lat": 52.6616875, - "lon": 1.7212048, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2585427332, - "lat": 51.9992187, - "lon": -0.7328928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK2 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2585436396, - "lat": 51.3812313, - "lon": -2.3634259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "BA1 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2585947346, - "lat": 54.8941997, - "lon": -1.8401442, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2586632744, - "lat": 50.9083913, - "lon": -0.7164610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO18 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-07-10" - } -}, -{ - "type": "node", - "id": 2587098846, - "lat": 52.1976513, - "lon": -4.3616433, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2587323507, - "lat": 50.9559666, - "lon": -2.6434037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2587361902, - "lat": 52.0618613, - "lon": 0.9514142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP7 1323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2587388374, - "lat": 52.0798503, - "lon": 0.9536681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2587399375, - "lat": 51.1403541, - "lon": -2.9922552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2588407680, - "lat": 51.4704095, - "lon": -2.5912337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "wall", - "ref": "BS6 274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2588407681, - "lat": 51.4732973, - "lon": -2.5901934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS6 273", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2588507167, - "lat": 51.3209372, - "lon": -2.1132313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2588925583, - "lat": 51.6552507, - "lon": -0.3958270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 11:45", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD17 1009", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2588925584, - "lat": 51.6552659, - "lon": -0.3958541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "colour": "gold", - "note": "Gold-coloured: Celebrates Anthony Joshua's gold medal at Olympics 2012", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD17 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2588925585, - "lat": 51.6572533, - "lon": -0.3974426, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD17 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2588925588, - "lat": 51.6635211, - "lon": -0.3967243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPMETN-NS", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "note": "Franked mail only", - "opening_hours": "Mo-Fr 15:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WD17 1010", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2589012639, - "lat": 53.7888433, - "lon": -2.2449850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "BB11 209;BB11 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2589012743, - "lat": 53.7921936, - "lon": -2.2430953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BB11 3" - } -}, -{ - "type": "node", - "id": 2589218585, - "lat": 52.5384191, - "lon": 1.7291775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR31 3143", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2019-09-19" - } -}, -{ - "type": "node", - "id": 2589309660, - "lat": 53.8303381, - "lon": -2.2665551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BB12 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590011276, - "lat": 54.4155673, - "lon": -1.3884033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL6 42" - } -}, -{ - "type": "node", - "id": 2590120037, - "lat": 52.0677159, - "lon": 1.1590475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP1 1124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2590272135, - "lat": 50.8928196, - "lon": 0.0549546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 540D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2590273170, - "lat": 50.8894715, - "lon": 0.0584182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN8 566" - } -}, -{ - "type": "node", - "id": 2590469377, - "lat": 51.8857534, - "lon": -0.4228394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU3 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590469378, - "lat": 51.8861825, - "lon": -0.4208593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590469379, - "lat": 51.8868108, - "lon": -0.4254216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590469381, - "lat": 51.8895160, - "lon": -0.4214471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590469382, - "lat": 51.8918075, - "lon": -0.4293066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590469383, - "lat": 51.8922388, - "lon": -0.4345695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590469385, - "lat": 51.8957576, - "lon": -0.4327220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590484459, - "lat": 51.8980792, - "lon": -0.4390234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590484460, - "lat": 51.9026346, - "lon": -0.4357669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590498682, - "lat": 51.9033979, - "lon": -0.4518707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590498688, - "lat": 51.9041711, - "lon": -0.4460290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590498692, - "lat": 51.9042565, - "lon": -0.4408414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590498697, - "lat": 51.9060370, - "lon": -0.4398087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590498713, - "lat": 51.9093301, - "lon": -0.4438776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "Notice plate damaged: reference visible but collection times no longer shown: assumed from Royal Mail data.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590503269, - "lat": 53.0168404, - "lon": -1.2836686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "NG16 33", - "post_box:type": "lamp", - "ref": "NG16 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590515765, - "lat": 51.9106213, - "lon": -0.4474761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590515769, - "lat": 51.9123479, - "lon": -0.4578285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "Notice plate mising: collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590515770, - "lat": 51.9126600, - "lon": -0.4444735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590515772, - "lat": 51.9139967, - "lon": -0.4509965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590515774, - "lat": 51.9164625, - "lon": -0.4473874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590541980, - "lat": 51.9140016, - "lon": -0.4603905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590541987, - "lat": 51.9147269, - "lon": -0.4693310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590541995, - "lat": 51.9169868, - "lon": -0.4641047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590542002, - "lat": 51.9190384, - "lon": -0.4599951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590542009, - "lat": 51.9197929, - "lon": -0.4652347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590542015, - "lat": 51.9214991, - "lon": -0.4654006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590542042, - "lat": 51.9215027, - "lon": -0.4707661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590542050, - "lat": 51.9231888, - "lon": -0.4778702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590547777, - "lat": 51.9178122, - "lon": -0.4540615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590547778, - "lat": 51.9216968, - "lon": -0.4584199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2590918629, - "lat": 51.4648926, - "lon": -2.6030642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 236", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2590951850, - "lat": 53.1796488, - "lon": -4.2153188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL56 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2590957556, - "lat": 51.4733922, - "lon": -2.5944930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS7 337", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2591893500, - "lat": 52.0497868, - "lon": -0.7113010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 624", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2591893501, - "lat": 52.0525409, - "lon": -0.7106755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2591893502, - "lat": 52.0649265, - "lon": -0.7208664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2591893503, - "lat": 52.0681451, - "lon": -0.7294244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK15 606", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2591924699, - "lat": 51.8704507, - "lon": -0.4601469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU1 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592176521, - "lat": 51.1329252, - "lon": -2.9923190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 906", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2592945501, - "lat": 51.8945732, - "lon": -0.4253257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592945505, - "lat": 51.8965605, - "lon": -0.4218495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592945506, - "lat": 51.8975408, - "lon": -0.4272725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592962907, - "lat": 51.9009367, - "lon": -0.4222207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592962911, - "lat": 51.9055097, - "lon": -0.4307112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU3 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592962923, - "lat": 51.9072694, - "lon": -0.4230240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592963057, - "lat": 51.9090272, - "lon": -0.4344498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:20; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985960, - "lat": 51.9109661, - "lon": -0.4305694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985964, - "lat": 51.9124694, - "lon": -0.4264923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985971, - "lat": 51.9137381, - "lon": -0.4345226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985972, - "lat": 51.9158576, - "lon": -0.4413500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985973, - "lat": 51.9198236, - "lon": -0.4382000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985974, - "lat": 51.9222359, - "lon": -0.4337095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU3 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985976, - "lat": 51.9232695, - "lon": -0.4416314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2592985979, - "lat": 51.9248787, - "lon": -0.4341405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593007300, - "lat": 51.9083411, - "lon": -0.4116414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593007301, - "lat": 51.9112304, - "lon": -0.4188942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593007302, - "lat": 51.9142675, - "lon": -0.4234474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU2 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593007303, - "lat": 51.9154981, - "lon": -0.4203286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LU2 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593007306, - "lat": 51.9199445, - "lon": -0.4276006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593007317, - "lat": 51.9250861, - "lon": -0.4283968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU3 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593020698, - "lat": 51.8945440, - "lon": -0.4187203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "LU2 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593020699, - "lat": 51.8960072, - "lon": -0.4135707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593020700, - "lat": 51.8974049, - "lon": -0.4180861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593020702, - "lat": 51.9004914, - "lon": -0.4155412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593020705, - "lat": 51.9015185, - "lon": -0.4115318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593020707, - "lat": 51.9047216, - "lon": -0.4172998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593023605, - "lat": 51.8820499, - "lon": -0.4135442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593083183, - "lat": 52.0555305, - "lon": -0.7302738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "note": "No public access: located inside the building, behind a secure door.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK15 520", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593083184, - "lat": 52.0618985, - "lon": -0.7335996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK15 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593083185, - "lat": 52.0624354, - "lon": -0.7316660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK15 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593083186, - "lat": 52.0626796, - "lon": -0.7444436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK15 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593852410, - "lat": 51.9850482, - "lon": -0.6325751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593852411, - "lat": 51.9877938, - "lon": -0.6241749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593852412, - "lat": 51.9893254, - "lon": -0.6190452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "MK17 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593852413, - "lat": 51.9916884, - "lon": -0.6180255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593865376, - "lat": 52.0135814, - "lon": -0.6449844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593865377, - "lat": 52.0174575, - "lon": -0.6491297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593865378, - "lat": 52.0198132, - "lon": -0.6514385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593865379, - "lat": 52.0202898, - "lon": -0.6573259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593868010, - "lat": 52.0268942, - "lon": -0.6686320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593868017, - "lat": 52.0274135, - "lon": -0.6623078, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881182, - "lat": 52.0017198, - "lon": -0.6558235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881183, - "lat": 52.0043027, - "lon": -0.6518467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881184, - "lat": 52.0084614, - "lon": -0.6484703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881185, - "lat": 52.0113921, - "lon": -0.6471295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK17 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881186, - "lat": 52.0119346, - "lon": -0.6471675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK17 542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881187, - "lat": 52.0124300, - "lon": -0.6527347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881188, - "lat": 52.0126875, - "lon": -0.6505007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881189, - "lat": 52.0140412, - "lon": -0.6487582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593881190, - "lat": 52.0165046, - "lon": -0.6529865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 578", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593885038, - "lat": 52.0009158, - "lon": -0.6768171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593885039, - "lat": 52.0024239, - "lon": -0.6800462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK17 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593885040, - "lat": 52.0031300, - "lon": -0.6869432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593897941, - "lat": 51.9814498, - "lon": -0.6766468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2593897947, - "lat": 51.9833185, - "lon": -0.6772465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2594015155, - "lat": 54.8408038, - "lon": -1.4944134, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2594015156, - "lat": 54.8426804, - "lon": -1.4702051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH4 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2594015254, - "lat": 54.9038048, - "lon": -1.3872647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "SR1 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2594015448, - "lat": 54.9044758, - "lon": -1.3816542, - "tags": { - "amenity": "post_box", - "ref": "SR1 71" - } -}, -{ - "type": "node", - "id": 2594015564, - "lat": 54.9056361, - "lon": -1.3814374, - "tags": { - "amenity": "post_box", - "ref": "SR1 1192" - } -}, -{ - "type": "node", - "id": 2594402171, - "lat": 52.4716788, - "lon": 1.4592135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "NR35 3538", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2594402537, - "lat": 52.5700538, - "lon": 1.3558267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2595282123, - "lat": 52.4840484, - "lon": 1.6059778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2595512830, - "lat": 52.7048440, - "lon": 0.6885593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE32 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2595688249, - "lat": 54.4127862, - "lon": -6.3740498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "Knocknamuckley", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2595714623, - "lat": 52.5340300, - "lon": 1.4747023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2595714694, - "lat": 52.5359797, - "lon": 1.5749471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2595714782, - "lat": 52.5516079, - "lon": 1.4766298, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2595927996, - "lat": 52.0145461, - "lon": -0.7166722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2595928001, - "lat": 52.0166478, - "lon": -0.7157462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2595928010, - "lat": 52.0190767, - "lon": -0.7204303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK6 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2595928028, - "lat": 52.0235768, - "lon": -0.7255433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2595995823, - "lat": 52.0687092, - "lon": 1.1181652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1220" - } -}, -{ - "type": "node", - "id": 2596022964, - "lat": 52.0882109, - "lon": 1.1031692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "ref": "IP6 1338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2596745715, - "lat": 56.0725413, - "lon": -3.6077565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 122", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2596782733, - "lat": 52.6195517, - "lon": 1.4396063, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2596782736, - "lat": 52.6213492, - "lon": 1.4411931, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2596876766, - "lat": 56.1647052, - "lon": -3.5809281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK14 213D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2596894582, - "lat": 52.3351245, - "lon": 0.5311284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP28 2254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2597032958, - "lat": 52.0223992, - "lon": -0.7878026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK5 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597032966, - "lat": 52.0245121, - "lon": -0.7856841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK5 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597032972, - "lat": 52.0262043, - "lon": -0.7890265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597045030, - "lat": 52.0169878, - "lon": -0.8100523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK5 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597045031, - "lat": 52.0195516, - "lon": -0.8015499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 544", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597045032, - "lat": 52.0217799, - "lon": -0.8063808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK8 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597045033, - "lat": 52.0261693, - "lon": -0.7939771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597080778, - "lat": 52.0041710, - "lon": -0.7940768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK4 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597080787, - "lat": 52.0073175, - "lon": -0.8038712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK4 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597080799, - "lat": 52.0076210, - "lon": -0.7964965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK4 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597080803, - "lat": 52.0076952, - "lon": -0.8074184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK4 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597107527, - "lat": 52.0108483, - "lon": -0.7925033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597107528, - "lat": 52.0192858, - "lon": -0.7765797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK5 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597107529, - "lat": 52.0198987, - "lon": -0.7717565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597107530, - "lat": 52.0208852, - "lon": -0.7759117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK5 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597107531, - "lat": 52.0215006, - "lon": -0.7817161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK5 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597133968, - "lat": 52.0333345, - "lon": -0.7317422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597133981, - "lat": 52.0427696, - "lon": -0.7334255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597169124, - "lat": 56.0862280, - "lon": -4.6368657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "G83 49", - "source": "survey", - "survey:date": "2023-11-14", - "wikimedia_commons": "File:Post box at Aldochlay - geograph.org.uk - 5732561.jpg" - } -}, -{ - "type": "node", - "id": 2597182242, - "lat": 52.0133843, - "lon": -0.6894634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "2020-04-25: This previously had the same reference (MK7 426) as a postbox in Litchfield Down mapped in 2009. Re-surveyed and is now shown on the plate as MK7 538.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK7 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597269449, - "lat": 52.9290053, - "lon": -1.1464838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "note": "Double checked ref", - "post_box:type": "pillar", - "ref": "NG11 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2597276437, - "lat": 51.9165905, - "lon": -0.4268079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU3 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598319314, - "lat": 51.9491289, - "lon": -0.5970741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598319315, - "lat": 51.9589827, - "lon": -0.6168741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598319316, - "lat": 51.9616775, - "lon": -0.5844278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598319317, - "lat": 51.9668757, - "lon": -0.5881756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598322260, - "lat": 52.2289981, - "lon": -0.8243203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN7 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2598335934, - "lat": 51.9427584, - "lon": -0.5340185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598335935, - "lat": 51.9428001, - "lon": -0.5281032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU5 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598335936, - "lat": 51.9453046, - "lon": -0.5375641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598335937, - "lat": 51.9473262, - "lon": -0.5329940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LU5 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598335938, - "lat": 51.9508694, - "lon": -0.5384274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598335939, - "lat": 51.9518302, - "lon": -0.5263713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU5 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598340132, - "lat": 51.9394575, - "lon": -0.5163556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU5 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598341048, - "lat": 53.4916840, - "lon": -3.0066750, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2598343043, - "lat": 51.9246838, - "lon": -0.4866685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU4 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598343044, - "lat": 51.9259565, - "lon": -0.5009806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU4 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598354781, - "lat": 53.4249490, - "lon": -1.2856240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S66 270", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2598359593, - "lat": 51.9315977, - "lon": -0.4776551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU3 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598359596, - "lat": 51.9392807, - "lon": -0.4795937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU3 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598362371, - "lat": 52.8061239, - "lon": -1.1106125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "LE12 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "http://www.geograph.org.uk/photo/2733632" - } -}, -{ - "type": "node", - "id": 2598373117, - "lat": 51.9597553, - "lon": -0.4912841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598373121, - "lat": 51.9649485, - "lon": -0.4881677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU5 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598373123, - "lat": 51.9659873, - "lon": -0.4938881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU5 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598373124, - "lat": 51.9666606, - "lon": -0.4827131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU5 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598377914, - "lat": 51.9799752, - "lon": -0.5337006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK17 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598377915, - "lat": 51.9886155, - "lon": -0.5321567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598386099, - "lat": 51.9817083, - "lon": -0.5694550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598386100, - "lat": 51.9871471, - "lon": -0.5590635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598386102, - "lat": 51.9873023, - "lon": -0.5498458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598386103, - "lat": 51.9876115, - "lon": -0.5698296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598387823, - "lat": 51.9904432, - "lon": -0.5862211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598390424, - "lat": 51.9898678, - "lon": -0.6054751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598483047, - "lat": 51.4956591, - "lon": -0.1974057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2598563975, - "lat": 52.0154547, - "lon": -0.7260102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2599058206, - "lat": 51.4418876, - "lon": -1.6122352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SN8 103", - "ref:GB:uprn": "10015361020", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2599507186, - "lat": 50.9555598, - "lon": -3.5488652, - "tags": { - "amenity": "post_box", - "ref": "EX16 67" - } -}, -{ - "type": "node", - "id": 2599567556, - "lat": 53.2137451, - "lon": -1.1523532, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG20 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2599916572, - "lat": 53.8556402, - "lon": -2.1368223, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2599967454, - "lat": 53.4915990, - "lon": -3.0112260, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2599991456, - "lat": 50.9136205, - "lon": -1.3138775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 752", - "source": "UserNote" - } -}, -{ - "type": "node", - "id": 2600246947, - "lat": 50.9277265, - "lon": -3.5151303, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX16 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2600371132, - "lat": 50.9227786, - "lon": -3.5329036, - "tags": { - "amenity": "post_box", - "ref": "EX16 108" - } -}, -{ - "type": "node", - "id": 2601412559, - "lat": 51.1350879, - "lon": -0.7718110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox was formerly a wall of a GR royal cypher. But it is now a brand new EIIR lamp design.", - "old_ref": "GU10 152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey+sas", - "source_1": "survey", - "survey_point": "2022-09-10" - } -}, -{ - "type": "node", - "id": 2602092590, - "lat": 50.8490700, - "lon": -0.1725500, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 247", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2602108023, - "lat": 51.2998970, - "lon": -2.4946286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2603022570, - "lat": 50.9130859, - "lon": -1.3676265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 488D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2603239359, - "lat": 53.5492850, - "lon": -0.5073054, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2603369110, - "lat": 51.6829323, - "lon": -2.8796558, - "tags": { - "amenity": "post_box", - "fixme": "The expected reference here is NP15 355", - "ref": "CF1 355" - } -}, -{ - "type": "node", - "id": 2603468573, - "lat": 52.1088051, - "lon": 1.1034563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP6 1102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2603700515, - "lat": 51.4199142, - "lon": -0.8635627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2604074226, - "lat": 51.7231771, - "lon": -2.7221621, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 524" - } -}, -{ - "type": "node", - "id": 2604074408, - "lat": 51.7335063, - "lon": -2.6901089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP25 383" - } -}, -{ - "type": "node", - "id": 2604074419, - "lat": 51.7341058, - "lon": -2.6872134, - "tags": { - "amenity": "post_box", - "ref": "NP25 455D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2604074538, - "lat": 51.7943522, - "lon": -2.6149295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL16 53" - } -}, -{ - "type": "node", - "id": 2604074541, - "lat": 51.7979599, - "lon": -2.6095363, - "tags": { - "amenity": "post_box", - "ref": "GL16 39" - } -}, -{ - "type": "node", - "id": 2604074645, - "lat": 51.8395295, - "lon": -2.4282713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1280101459051749", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL14 275", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 2604074779, - "lat": 51.8441565, - "lon": -2.4062537, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL14 263" - } -}, -{ - "type": "node", - "id": 2604084732, - "lat": 51.6751598, - "lon": -2.8117033, - "tags": { - "amenity": "post_box", - "ref": "NP16 377" - } -}, -{ - "type": "node", - "id": 2604084743, - "lat": 51.7041431, - "lon": -2.7557749, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP16 388" - } -}, -{ - "type": "node", - "id": 2604084786, - "lat": 51.7111545, - "lon": -2.7362715, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NP16 432", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2604450187, - "lat": 51.4602454, - "lon": -3.3106139, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2604507550, - "lat": 51.0084785, - "lon": -2.2110763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref:GB:uprn": "10015476653" - } -}, -{ - "type": "node", - "id": 2604741259, - "lat": 52.0959723, - "lon": 1.3494077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP12 6344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2604802634, - "lat": 52.6858459, - "lon": 0.7931680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1929" - } -}, -{ - "type": "node", - "id": 2604802679, - "lat": 52.7177693, - "lon": 0.7238054, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2604918496, - "lat": 51.1250925, - "lon": -3.0298197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2604918539, - "lat": 51.1264810, - "lon": -3.0343225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2604918684, - "lat": 51.1355324, - "lon": -3.0316190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2605099126, - "lat": 52.0946419, - "lon": 1.5341177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP12 6321", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2605312447, - "lat": 52.1217927, - "lon": 1.0881996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP6 1191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2605401792, - "lat": 52.9151182, - "lon": -1.9531520, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2605415201, - "lat": 52.9193576, - "lon": -1.9640249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST10 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2605517928, - "lat": 52.9375726, - "lon": -1.8602839, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2606122896, - "lat": 52.3245360, - "lon": 0.8769618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2606326996, - "lat": 52.3207452, - "lon": 0.9022336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "IP31 2036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2606327266, - "lat": 52.0663891, - "lon": 1.3627618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP12 6294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2606719096, - "lat": 54.4090528, - "lon": -1.4141449, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL6 30" - } -}, -{ - "type": "node", - "id": 2606897025, - "lat": 53.4577624, - "lon": -2.6211172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 37", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2607719052, - "lat": 53.4908252, - "lon": -2.3648363, - "tags": { - "amenity": "post_box", - "name": "Parrin Lane Post Box" - } -}, -{ - "type": "node", - "id": 2608210907, - "lat": 52.0057475, - "lon": 1.4197375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2608677733, - "lat": 54.3814986, - "lon": -5.5469828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2609460612, - "lat": 53.3942124, - "lon": -3.0140622, - "tags": { - "amenity": "post_box", - "description": "Double C Type ER II post box CH41 390 & 391 by Lion Foundry near Hamilton Square station, opposite John Street.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CH41", - "ref": "CH41 390;CH41 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Type C post box on Hamilton Street" - } -}, -{ - "type": "node", - "id": 2609488040, - "lat": 51.7688350, - "lon": 0.1059804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2609621341, - "lat": 51.5814714, - "lon": -0.3349703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-12-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2609737984, - "lat": 52.6653168, - "lon": -3.3725694, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2609744150, - "lat": 55.9436481, - "lon": -3.0530445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 101", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2610004686, - "lat": 51.5638938, - "lon": -0.3543518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2610210963, - "lat": 52.7053640, - "lon": 0.7082158, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2610210966, - "lat": 52.7056024, - "lon": 0.6920354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE32 68D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2610753083, - "lat": 52.9249288, - "lon": -3.2145598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "ref": "LL20 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2611016884, - "lat": 52.7115724, - "lon": 1.1506907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 935", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2611148862, - "lat": 51.8838659, - "lon": -0.4127988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611148864, - "lat": 51.8849488, - "lon": -0.4176340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611148866, - "lat": 51.8885601, - "lon": -0.4136617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611148876, - "lat": 51.8920032, - "lon": -0.4173012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611148877, - "lat": 51.8931740, - "lon": -0.4082950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Notice plate missing. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611162274, - "lat": 51.8965110, - "lon": -0.4062375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611162280, - "lat": 51.9008970, - "lon": -0.3988237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611162326, - "lat": 51.9016372, - "lon": -0.4020362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611162331, - "lat": 51.9023977, - "lon": -0.3972188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 152", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611175367, - "lat": 51.9013568, - "lon": -0.3832488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611175380, - "lat": 51.9031978, - "lon": -0.3881385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611175387, - "lat": 51.9064944, - "lon": -0.3854864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611192235, - "lat": 51.8950544, - "lon": -0.3928616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611192245, - "lat": 51.8986590, - "lon": -0.3817460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611204389, - "lat": 51.8917253, - "lon": -0.4016908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611204390, - "lat": 51.8937750, - "lon": -0.4013195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611223648, - "lat": 51.8869349, - "lon": -0.4086756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611223657, - "lat": 51.8885809, - "lon": -0.3997706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611223662, - "lat": 51.8888218, - "lon": -0.4039965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611245121, - "lat": 51.8770099, - "lon": -0.4108664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611245126, - "lat": 51.8786896, - "lon": -0.4133923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "note": "Built into wall of post office but no collection times or reference. Composed of two separate apertures. Collection times and reference assumed from Royal Mail data.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LU1 230", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611245130, - "lat": 51.8792487, - "lon": -0.4109312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611256811, - "lat": 53.8324411, - "lon": -2.9873172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2611288437, - "lat": 52.0063237, - "lon": -0.7312383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611288439, - "lat": 52.0074550, - "lon": -0.7318688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK1 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611636290, - "lat": 51.3586968, - "lon": -2.1138033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 172", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2611636291, - "lat": 51.3611217, - "lon": -2.1224745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2611636294, - "lat": 51.3662603, - "lon": -2.1288187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2611636298, - "lat": 51.3694670, - "lon": -2.1335060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 239D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2611636305, - "lat": 51.3718754, - "lon": -2.1385325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30; Su off", - "name": "Market Place", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2611636306, - "lat": 51.3753035, - "lon": -2.1386898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "name": "Bath Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2611636307, - "lat": 51.3774760, - "lon": -2.1413159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2612624645, - "lat": 53.9332140, - "lon": -2.1419242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD23 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-22" - } -}, -{ - "type": "node", - "id": 2612650650, - "lat": 53.9087908, - "lon": -1.9834633, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD20 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2612695206, - "lat": 54.0236762, - "lon": -1.7582014, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG3 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2612759327, - "lat": 51.4161528, - "lon": -0.8615332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2612854174, - "lat": 54.3699271, - "lon": -2.6830266, - "tags": { - "amenity": "post_box", - "ref": "LA8 44", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2612854243, - "lat": 54.3748827, - "lon": -2.7024523, - "tags": { - "amenity": "post_box", - "ref": "LA8 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2612876356, - "lat": 54.3543978, - "lon": -2.7073676, - "tags": { - "amenity": "post_box", - "ref": "LA8 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2612904911, - "lat": 54.5033386, - "lon": -2.6876117, - "tags": { - "amenity": "post_box", - "ref": "CA10 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2613362008, - "lat": 53.1348519, - "lon": -1.1925902, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2613502321, - "lat": 50.3779670, - "lon": -4.1384750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL4 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2613725469, - "lat": 54.5237242, - "lon": -2.6913897, - "tags": { - "amenity": "post_box", - "ref": "CA10 210", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2613777920, - "lat": 54.5554062, - "lon": -2.7419109, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2613792889, - "lat": 54.5378665, - "lon": -2.7616530, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 204", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2614702605, - "lat": 53.1722181, - "lon": -4.1811998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 70D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2615088664, - "lat": 54.5684001, - "lon": -2.7582552, - "tags": { - "amenity": "post_box", - "ref": "CA10 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2615098422, - "lat": 54.6428625, - "lon": -2.7588910, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2615605063, - "lat": 53.0048830, - "lon": -0.0218356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE22 79" - } -}, -{ - "type": "node", - "id": 2615984661, - "lat": 57.1495688, - "lon": -2.2940575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB32 257D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2615995047, - "lat": 57.1390522, - "lon": -2.1468899, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 8BS", - "addr:street": "Queen's Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Derby Castings Limited, Derby", - "post_box:type": "wall", - "ref": "AB15 138D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2615997256, - "lat": 57.1434580, - "lon": -2.1253435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2616000156, - "lat": 57.1470744, - "lon": -2.0971464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 18", - "royal_cypher": "scottish_crown", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2616233263, - "lat": 57.1439112, - "lon": -2.1153537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB10 69D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2616237029, - "lat": 57.1416411, - "lon": -2.1340874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "AB15 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2616238147, - "lat": 57.1403106, - "lon": -2.1544497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "AB15 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2616337084, - "lat": 53.3839154, - "lon": -3.0986871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "George VI Type A post box CH49 382 outside Domino's on Arrowe Park Road, Upton- Royal Mail list this as Upton Post Office, but that is now on Ford Road so I presume this is its former location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH49 382", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Domino's, Upton.jpg" - } -}, -{ - "type": "node", - "id": 2616346749, - "lat": 53.3846508, - "lon": -3.0969205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QEII Type K post box CH49 336 at the junction of Salacre Lane and Ford Road, Upton, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH49 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Salacre Lane, Upton.jpg" - } -}, -{ - "type": "node", - "id": 2616371780, - "lat": 53.3707352, - "lon": -3.0894212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "QEII post box CH49 599 by Carron Company on Fleetcroft Road outside Arrowe Stores.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Fleetcroft Road, Woodchurch.jpg" - } -}, -{ - "type": "node", - "id": 2617507838, - "lat": 52.7568912, - "lon": -2.5491915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2617507875, - "lat": 52.8476138, - "lon": -2.5733610, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2618064016, - "lat": 57.1442960, - "lon": -2.1404526, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 4AL", - "addr:street": "Rubislaw Den North", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "McDowall, Steven & Co, London & Glasgow", - "post_box:type": "pillar", - "ref": "AB15 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2618064017, - "lat": 57.1441745, - "lon": -2.1344201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Handyside, Derby & London", - "post_box:type": "pillar", - "ref": "AB15 82D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2618087351, - "lat": 52.1545009, - "lon": 1.0509718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP6 1112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2618102536, - "lat": 52.1630838, - "lon": 1.0554787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP6 1106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2618422540, - "lat": 57.1496480, - "lon": -2.2751156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "note": "inside Tesco supermarket\nref currently not visible due to sticker (20/08/23)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "AB32 234", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2618470767, - "lat": 50.8821470, - "lon": 0.0143638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN7 466" - } -}, -{ - "type": "node", - "id": 2618495325, - "lat": 53.1354251, - "lon": -4.2693752, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2618536341, - "lat": 51.5362757, - "lon": -0.2085491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NW6 67", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2618867853, - "lat": 53.0512757, - "lon": -3.8853177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL25 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2618894576, - "lat": 51.5267077, - "lon": -0.1002157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "A. Handyside and Co. Ltd, Derby and London", - "post_box:type": "pillar", - "ref": "EC1V 132;EC1V 1321", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619023217, - "lat": 50.8114016, - "lon": -0.7757629, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2619155474, - "lat": 50.6965050, - "lon": -2.1110573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 166", - "ref:GB:uprn": "10015458017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619278632, - "lat": 52.1060917, - "lon": 1.1117166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "IP6 1188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2619278644, - "lat": 52.1196327, - "lon": 1.1047257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP6 1122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2619456195, - "lat": 52.2823062, - "lon": -1.5851135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "heritage": "2", - "heritage:operator": "Historic England", - "listed_status": "Grade II", - "note": "this is a historic post box. The orininal Victorian collection plate has gone and been replaced by a (possibly temporary) modern one. 05/10/17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "CV34 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619528975, - "lat": 52.6411041, - "lon": 1.6384229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2619528982, - "lat": 52.6450250, - "lon": 1.7058170, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2619550093, - "lat": 50.7973271, - "lon": -0.7555887, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "last_checked": "2021-06-17", - "note": "This postbox is in the wall of \"The Elms\" just north of the driveway.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619556762, - "lat": 57.1537840, - "lon": -2.2767800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "ref": "AB32 573" - } -}, -{ - "type": "node", - "id": 2619559674, - "lat": 51.5378120, - "lon": -0.2162760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW10 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2619584301, - "lat": 50.7750756, - "lon": -0.7214493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-04", - "old_ref": "PO21 58", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO21 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619584303, - "lat": 50.7775260, - "lon": -0.7170654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "last_checked": "2021-05-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619593263, - "lat": 51.5304198, - "lon": -0.1008475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa off", - "opening_hours": "Mo-Fr 14:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC1V 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619611343, - "lat": 50.7795219, - "lon": -0.6953203, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO21 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2619611352, - "lat": 50.7811297, - "lon": -0.7051361, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO21 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2619611367, - "lat": 50.7867139, - "lon": -0.6561965, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO22 16" - } -}, -{ - "type": "node", - "id": 2619653511, - "lat": 57.1539719, - "lon": -2.2933132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB32 242", - "royal_cypher": "scottish_crown", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2619811346, - "lat": 50.4420120, - "lon": -4.5626652, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2619907083, - "lat": 52.0598255, - "lon": -0.8345371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619907084, - "lat": 52.0598382, - "lon": -0.8345233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK12 620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619907088, - "lat": 52.0630860, - "lon": -0.8246554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK12 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619907089, - "lat": 52.0663705, - "lon": -0.8168221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK12 617", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619912188, - "lat": 51.5724977, - "lon": -1.3040362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2619944153, - "lat": 52.0492162, - "lon": -0.8434807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK11 460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944164, - "lat": 52.0508100, - "lon": -0.8466346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK11 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944170, - "lat": 52.0516891, - "lon": -0.8372193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944176, - "lat": 52.0527047, - "lon": -0.8478277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK11 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944181, - "lat": 52.0536527, - "lon": -0.8386218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944183, - "lat": 52.0541133, - "lon": -0.8444840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK11 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944191, - "lat": 52.0554258, - "lon": -0.8501246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "note": "Part of the Murco petrol filling station.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK11 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944198, - "lat": 52.0567638, - "lon": -0.8526897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944205, - "lat": 52.0567802, - "lon": -0.8527306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944211, - "lat": 52.0571966, - "lon": -0.8436388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK11 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944218, - "lat": 52.0573545, - "lon": -0.8478647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK11 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619944227, - "lat": 52.0585128, - "lon": -0.8560796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619954401, - "lat": 51.5333137, - "lon": -0.2115731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW6 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2619956116, - "lat": 52.2851266, - "lon": -1.5764018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 126", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619964950, - "lat": 52.0454189, - "lon": -0.8226451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK11 615P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619964951, - "lat": 52.0465837, - "lon": -0.8233283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619964953, - "lat": 52.0479618, - "lon": -0.8284644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2619964954, - "lat": 52.0494285, - "lon": -0.8319904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK11 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000274, - "lat": 52.0579948, - "lon": -0.8157953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 112", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000296, - "lat": 52.0590784, - "lon": -0.8118041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK12 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000306, - "lat": 52.0604788, - "lon": -0.8141248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK12 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000316, - "lat": 52.0612886, - "lon": -0.8130049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000331, - "lat": 52.0621742, - "lon": -0.8105898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000340, - "lat": 52.0621815, - "lon": -0.8105365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000350, - "lat": 52.0622998, - "lon": -0.8218495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "fixme": "Check precise location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000361, - "lat": 52.0624655, - "lon": -0.8163566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620000809, - "lat": 52.3915969, - "lon": 0.2652111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "note": "Just inside main door to store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "CB7 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620032843, - "lat": 52.0226883, - "lon": -0.7344062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620032845, - "lat": 52.0263273, - "lon": -0.7351848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620032846, - "lat": 52.0274860, - "lon": -0.7404754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2620032847, - "lat": 52.0288314, - "lon": -0.7418891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK6 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2621501453, - "lat": 50.7897386, - "lon": -0.6484931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PO22 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2621501457, - "lat": 50.7904045, - "lon": -0.6425244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO22 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2621501472, - "lat": 50.7997576, - "lon": -0.6304492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2621501480, - "lat": 50.8460117, - "lon": -0.6445548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2621512886, - "lat": 50.8589731, - "lon": -0.7412718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2621512900, - "lat": 50.8679219, - "lon": -0.7323312, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2622491521, - "lat": 52.1149775, - "lon": -1.9232732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2623053289, - "lat": 52.6797787, - "lon": -2.8301013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY5 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2623210034, - "lat": 51.3478190, - "lon": -2.2508827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "colour": "gold", - "commemorates": "Ed McKeever;London 2012 canoe sprint K!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BA15 40;BA15 40", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2623230506, - "lat": 54.5795855, - "lon": -1.8091788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2623239933, - "lat": 54.9372504, - "lon": -2.6977817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA8 45" - } -}, -{ - "type": "node", - "id": 2623276382, - "lat": 51.7436754, - "lon": 0.6886143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM9 468D" - } -}, -{ - "type": "node", - "id": 2623276843, - "lat": 54.8954090, - "lon": -2.9390220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "CA3 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2623277043, - "lat": 51.6315080, - "lon": 0.3408750, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2623279406, - "lat": 54.9929504, - "lon": -2.5783760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "ref": "CA8 190" - } -}, -{ - "type": "node", - "id": 2623283518, - "lat": 54.9913636, - "lon": -2.5724746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA8 435", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2623286088, - "lat": 54.9893478, - "lon": -2.5690945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "CA8 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2623286262, - "lat": 54.9557550, - "lon": -2.6520050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA8 171" - } -}, -{ - "type": "node", - "id": 2623675804, - "lat": 54.9785912, - "lon": -1.6812167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "ref": "NE15 298" - } -}, -{ - "type": "node", - "id": 2623675805, - "lat": 54.9788493, - "lon": -1.6868933, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2624159191, - "lat": 54.1249910, - "lon": -2.5871993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA2 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2624195139, - "lat": 51.5229351, - "lon": -0.1260787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1B 10;WC1B 210", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2624214179, - "lat": 51.4519940, - "lon": -0.9607472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "RG1 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2624389281, - "lat": 53.3768337, - "lon": -1.5030683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2624389282, - "lat": 53.3768432, - "lon": -1.5030395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Neither of these two is a franked-mail-only - both are normal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 1019", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2624389287, - "lat": 53.3770440, - "lon": -1.4938668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2624389330, - "lat": 53.3781304, - "lon": -1.4854987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2624760592, - "lat": 54.6608058, - "lon": -3.3539967, - "tags": { - "amenity": "post_box", - "ref": "CA13 113" - } -}, -{ - "type": "node", - "id": 2624763672, - "lat": 54.6637719, - "lon": -3.3547460, - "tags": { - "amenity": "post_box", - "ref": "CA13 185" - } -}, -{ - "type": "node", - "id": 2625007613, - "lat": 51.0586504, - "lon": 0.3033815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2625084392, - "lat": 52.1031636, - "lon": 1.3142171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "IP12 6299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2625325515, - "lat": 51.3894657, - "lon": -0.1065806, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 83", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2625325518, - "lat": 51.3921614, - "lon": -0.1079761, - "tags": { - "amenity": "post_box", - "ref": "CR7 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2625325519, - "lat": 51.3934402, - "lon": -0.1036153, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CR7 151", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2625325520, - "lat": 51.3981492, - "lon": -0.1007302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "CR7 168", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2625806893, - "lat": 50.6932352, - "lon": -3.2363753, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2625909856, - "lat": 57.1478495, - "lon": -2.1002691, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2625944102, - "lat": 57.1443432, - "lon": -2.1030892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2626011412, - "lat": 53.1064367, - "lon": -0.1418580, - "tags": { - "amenity": "post_box", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2626265988, - "lat": 52.2857510, - "lon": -1.5724695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2626376931, - "lat": 52.3906642, - "lon": -2.0035657, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 78" - } -}, -{ - "type": "node", - "id": 2626690261, - "lat": 50.6899761, - "lon": -3.2448272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 80D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2626959557, - "lat": 57.1558566, - "lon": -2.2995535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "ref": "AB32 576", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2626963408, - "lat": 57.1526726, - "lon": -2.2990509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "ref": "AB32 481", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2626974685, - "lat": 57.1518184, - "lon": -2.2723404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "ref": "AB32 203", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2627009310, - "lat": 55.4012074, - "lon": -1.6982098, - "tags": { - "amenity": "post_box", - "ref": "NE66 185" - } -}, -{ - "type": "node", - "id": 2627295453, - "lat": 55.9555175, - "lon": -4.8301420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2627373411, - "lat": 51.8742066, - "lon": -0.3964399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373412, - "lat": 51.8797056, - "lon": -0.3758063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373413, - "lat": 51.8817520, - "lon": -0.3980080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373414, - "lat": 51.8832788, - "lon": -0.3799996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LU2 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373415, - "lat": 51.8844618, - "lon": -0.3799807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373416, - "lat": 51.8849641, - "lon": -0.4008070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373418, - "lat": 51.8864149, - "lon": -0.3929924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373424, - "lat": 51.8873031, - "lon": -0.3822022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373425, - "lat": 51.8883724, - "lon": -0.3684993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373426, - "lat": 51.8883993, - "lon": -0.3754287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373428, - "lat": 51.8886750, - "lon": -0.3629503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373505, - "lat": 51.8908042, - "lon": -0.3800107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373522, - "lat": 51.8915845, - "lon": -0.3911702, - "tags": { - "amenity": "post_box", - "note": "Notice plate missing", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373523, - "lat": 51.8917015, - "lon": -0.3668439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373526, - "lat": 51.8917850, - "lon": -0.3721964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU2 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627373528, - "lat": 51.8959447, - "lon": -0.3805307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU2 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419464, - "lat": 51.8659270, - "lon": -0.4152999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419465, - "lat": 51.8681832, - "lon": -0.4132266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419466, - "lat": 51.8694460, - "lon": -0.4180619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LU1 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419467, - "lat": 51.8715034, - "lon": -0.4142902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419468, - "lat": 51.8718359, - "lon": -0.4085050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419469, - "lat": 51.8723629, - "lon": -0.3962891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419470, - "lat": 51.8724199, - "lon": -0.4184618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Notice plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419471, - "lat": 51.8732058, - "lon": -0.4129775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419472, - "lat": 51.8737487, - "lon": -0.4067599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419473, - "lat": 51.8738473, - "lon": -0.4096731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419474, - "lat": 51.8740254, - "lon": -0.4193262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LU1 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419475, - "lat": 51.8752710, - "lon": -0.4161767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419476, - "lat": 51.8763040, - "lon": -0.4071716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627419477, - "lat": 51.8766596, - "lon": -0.4165593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627440987, - "lat": 52.1460683, - "lon": -0.7379550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK46 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 2627520512, - "lat": 50.8046412, - "lon": -1.8855151, - "tags": { - "amenity": "post_box", - "mapillary": "836155820330344", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH22 125", - "ref:GB:uprn": "10015327891", - "survey:date": "2020-08-31" - } -}, -{ - "type": "node", - "id": 2627590376, - "lat": 51.5082673, - "lon": -0.1306770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 37;SW1Y 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2627732385, - "lat": 51.5316983, - "lon": -2.5767921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS34 629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2628854398, - "lat": 52.0753061, - "lon": -1.9364938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "note": "Box has 2 posting slots. Therefore it should have a second ref No.", - "old_ref": "E211 Vale Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WR11 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2629051326, - "lat": 51.5893619, - "lon": 0.0813884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG6 648" - } -}, -{ - "type": "node", - "id": 2629101300, - "lat": 51.2126099, - "lon": -1.1965070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG25 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2629341018, - "lat": 51.5893752, - "lon": 0.0813974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa off; Su off", - "post_box:type": "pillar", - "ref": "IG6 648" - } -}, -{ - "type": "node", - "id": 2629802888, - "lat": 51.8607150, - "lon": 0.1656500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2629804032, - "lat": 51.8584753, - "lon": 0.1639222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM23 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2629825866, - "lat": 51.6622951, - "lon": -0.4013521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 11:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2629924769, - "lat": 53.9735653, - "lon": -1.1478739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "yes it ends with a D", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO26 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2629941501, - "lat": 51.6364745, - "lon": -0.9126586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP14 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 2630128294, - "lat": 50.7268916, - "lon": -3.5017542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX1 225D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2631165237, - "lat": 55.9436603, - "lon": -3.2189402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "688088685284744", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 1", - "source": "survey", - "survey:date": "2021-04-11" - } -}, -{ - "type": "node", - "id": 2631762929, - "lat": 51.1212185, - "lon": -2.9993862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 903", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2631853507, - "lat": 50.7176879, - "lon": -2.0829275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH16 129D", - "ref:GB:uprn": "10015438102", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2632282681, - "lat": 57.4348749, - "lon": -2.6111310, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2632702070, - "lat": 53.4324895, - "lon": -2.4325622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2632773348, - "lat": 53.4310927, - "lon": -2.4393282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2632811014, - "lat": 52.9578457, - "lon": -1.1652709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 100", - "ref:GB:uprn": "10015324740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2632815895, - "lat": 52.9579649, - "lon": -1.1714610, - "tags": { - "amenity": "post_box", - "fixme": "has this post box been moved to somewhere else?", - "note": "Plate missing (2014-05-10)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:image": "http://openstreetview.org/available/1a4517768878f39574c95666de5bf443e4422a1b-large.jpg" - } -}, -{ - "type": "node", - "id": 2632818468, - "lat": 52.9603646, - "lon": -1.1759723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 75D", - "ref:GB:uprn": "10015364858", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:image": "http://openstreetview.org/available/1a4517768878f39574c95666de5bf443e4422a1b-large.jpg" - } -}, -{ - "type": "node", - "id": 2632827848, - "lat": 52.9819896, - "lon": -1.1960148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 379", - "ref:GB:uprn": "10015346548", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:image": "http://openstreetview.org/available/50055996698e94169194df87c558c8941a13eafe-large.jpg" - } -}, -{ - "type": "node", - "id": 2632929259, - "lat": 56.2849657, - "lon": -3.7434047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 52D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2633870218, - "lat": 51.4506710, - "lon": -0.9541243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 263D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2633881298, - "lat": 51.4537534, - "lon": -0.9608127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG1 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2634958295, - "lat": 57.1477601, - "lon": -2.0948771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 38D", - "royal_cypher": "scottish_crown", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2635860980, - "lat": 51.3928366, - "lon": -0.7410895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG12 198", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2636790182, - "lat": 57.1594209, - "lon": -2.2817712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "ref": "AB32 572", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2636793712, - "lat": 57.1560630, - "lon": -2.2715220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "ref": "AB32 603", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2636954316, - "lat": 52.8550088, - "lon": -2.7223206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY4 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2637205153, - "lat": 52.5960350, - "lon": -2.1580519, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "Openstreetbugs" - } -}, -{ - "type": "node", - "id": 2637216086, - "lat": 50.7575084, - "lon": -1.5538414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO41 169", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 2637216092, - "lat": 50.7512823, - "lon": -1.5631435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 17" - } -}, -{ - "type": "node", - "id": 2637216097, - "lat": 50.7593542, - "lon": -1.5509234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 48" - } -}, -{ - "type": "node", - "id": 2637283444, - "lat": 52.7149971, - "lon": -0.3462891, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2637374054, - "lat": 50.7972562, - "lon": -1.7899191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 63" - } -}, -{ - "type": "node", - "id": 2637374142, - "lat": 50.7980657, - "lon": -1.7641962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2637374191, - "lat": 50.7368465, - "lon": -1.6586416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 146" - } -}, -{ - "type": "node", - "id": 2637374196, - "lat": 50.7394077, - "lon": -1.6716204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH25 129;BH25 7129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2637374209, - "lat": 50.7885253, - "lon": -1.7932175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 25" - } -}, -{ - "type": "node", - "id": 2637395677, - "lat": 50.7594662, - "lon": -1.5716227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO41 98", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2637650841, - "lat": 51.0611403, - "lon": -0.7315249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU27 164", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 2638009576, - "lat": 51.0489966, - "lon": -0.7181321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "lastcheck": "2022-08-13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU27 70D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2638009578, - "lat": 51.0490787, - "lon": -0.7244140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU27 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2638132483, - "lat": 51.0746986, - "lon": -0.9155824, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2638982964, - "lat": 51.0927154, - "lon": -2.9559130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2639167388, - "lat": 51.0645886, - "lon": -2.9122431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2639167516, - "lat": 51.0698408, - "lon": -2.9180174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2639595726, - "lat": 50.7210030, - "lon": -3.5345019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX4 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2639595882, - "lat": 50.7171124, - "lon": -3.5396837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX4 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2639710846, - "lat": 51.4709005, - "lon": -0.9585657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2639715960, - "lat": 51.4744575, - "lon": -0.9603641, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 436", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2639783064, - "lat": 53.0819246, - "lon": -1.2420550, - "tags": { - "amenity": "post_box", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 2639993881, - "lat": 50.8494051, - "lon": -3.3959962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "name": "Padbrook Meadow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "EX15 1RP", - "ref": "EX15 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2639994128, - "lat": 50.8522702, - "lon": -3.3897615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX15 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2639996372, - "lat": 50.8537426, - "lon": -3.3984283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2639999468, - "lat": 50.8561216, - "lon": -3.3971839, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2640329263, - "lat": 51.1007651, - "lon": -0.9435072, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "From another OSM user's previous edit, this postbox used to have the royal cypher GVIR but this postbox is now of a brand new EIIR lamp design.", - "post_box:type": "lamp", - "ref": "GU34 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2640720758, - "lat": 50.7087199, - "lon": -3.4818596, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-20", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2641191992, - "lat": 55.8464118, - "lon": -3.6327940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2641281672, - "lat": 51.4652478, - "lon": -0.9590638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "551166456149417", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG4 171D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-09-08" - } -}, -{ - "type": "node", - "id": 2641478954, - "lat": 51.0783098, - "lon": -2.9319798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2641581748, - "lat": 53.0965837, - "lon": -4.2462503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL54 134", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2641639399, - "lat": 51.3348700, - "lon": -2.8780077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "296064106736329", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "Bing", - "source:amenity": "survey", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 2641658603, - "lat": 53.2321351, - "lon": -1.2041238, - "tags": { - "amenity": "post_box", - "ref": "NG20 12" - } -}, -{ - "type": "node", - "id": 2641816424, - "lat": 54.5525049, - "lon": -2.6569767, - "tags": { - "amenity": "post_box", - "ref": "CA10 146", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2641816430, - "lat": 54.5217167, - "lon": -2.6711539, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "CA10 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2642162992, - "lat": 55.9702455, - "lon": -3.6070067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 22D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2642197882, - "lat": 54.9609496, - "lon": -1.6425104, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "NE4 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2642459924, - "lat": 54.2682030, - "lon": -2.7116353, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 57", - "source": "OS_OpenData_VectorMap_District" - } -}, -{ - "type": "node", - "id": 2642459925, - "lat": 54.2774980, - "lon": -2.7192551, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 70", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2642477506, - "lat": 54.3715428, - "lon": -2.7435705, - "tags": { - "amenity": "post_box", - "ref": "LA8 185", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2642477507, - "lat": 54.4189097, - "lon": -2.7706357, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA8 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2642480506, - "lat": 54.3808000, - "lon": -2.8174996, - "tags": { - "amenity": "post_box", - "ref": "LA8 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2642578752, - "lat": 54.5770579, - "lon": -3.0566314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "300849965780775", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA12 120", - "source": "survey", - "survey:date": "2023-08-17" - } -}, -{ - "type": "node", - "id": 2642578760, - "lat": 54.5991686, - "lon": -3.0605868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "274541259049208", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA12 214", - "source": "survey", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 2642780342, - "lat": 55.6408732, - "lon": -3.5972256, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2642881000, - "lat": 53.5861891, - "lon": -1.5305025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "S75 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2644172134, - "lat": 54.2311737, - "lon": -1.3303069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO7 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2645930853, - "lat": 51.6636181, - "lon": -0.4157805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2645930862, - "lat": 51.6632600, - "lon": -0.4189287, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2645930865, - "lat": 51.6603754, - "lon": -0.4095049, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2645930867, - "lat": 51.6660551, - "lon": -0.4123642, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2645937463, - "lat": 51.6719211, - "lon": -0.4190642, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2645938167, - "lat": 51.6576010, - "lon": -0.4171638, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WD18 151D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2645962811, - "lat": 55.9884297, - "lon": -3.7330434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "ref": "FK2 106" - } -}, -{ - "type": "node", - "id": 2645962815, - "lat": 55.9877435, - "lon": -3.7399174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "FK2 184D" - } -}, -{ - "type": "node", - "id": 2646042199, - "lat": 52.3294982, - "lon": -1.9467267, - "tags": { - "amenity": "post_box", - "ref": "B97 114" - } -}, -{ - "type": "node", - "id": 2647063579, - "lat": 51.4104746, - "lon": -0.8633509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2647458543, - "lat": 53.1919085, - "lon": -2.4521200, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2647490484, - "lat": 51.5524812, - "lon": -0.1053505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "124023407006653", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N5 23", - "survey:date": "2022-07-23" - } -}, -{ - "type": "node", - "id": 2647703471, - "lat": 51.6629472, - "lon": -0.4089266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WD17 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2647705357, - "lat": 51.6571207, - "lon": -0.4083064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 2647994420, - "lat": 51.5429973, - "lon": -0.1860072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NW6 68" - } -}, -{ - "type": "node", - "id": 2647994423, - "lat": 51.5522731, - "lon": -0.2972471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "HA9 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2647994424, - "lat": 51.5527064, - "lon": -0.2964509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "HA9 161" - } -}, -{ - "type": "node", - "id": 2647994425, - "lat": 51.5537702, - "lon": -0.2906236, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-11", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "ref": "HA9 523" - } -}, -{ - "type": "node", - "id": 2647994458, - "lat": 51.5561129, - "lon": -0.2862225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "ref": "HA9 60" - } -}, -{ - "type": "node", - "id": 2648162838, - "lat": 55.1627379, - "lon": -1.6728249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE61 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2648209706, - "lat": 51.2291805, - "lon": 1.4023437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "postal_code": "CT14", - "ref": "CT14 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2648274964, - "lat": 53.6047977, - "lon": -3.0506223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "244786200739419", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 101", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 2649853720, - "lat": 52.0499226, - "lon": -0.8090428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649853724, - "lat": 52.0527777, - "lon": -0.8072460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649853725, - "lat": 52.0536655, - "lon": -0.8178154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649853726, - "lat": 52.0538596, - "lon": -0.8109455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649853727, - "lat": 52.0563018, - "lon": -0.8065129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK12 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649853728, - "lat": 52.0565059, - "lon": -0.8110999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK12 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649889619, - "lat": 51.9958386, - "lon": -0.7786342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK4 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649889620, - "lat": 52.0017987, - "lon": -0.7792700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK4 534", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649909761, - "lat": 51.9748735, - "lon": -0.7321385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK3 575", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649909773, - "lat": 51.9875141, - "lon": -0.7635325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2649929484, - "lat": 51.7097249, - "lon": -1.9728531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2650737111, - "lat": 51.7010848, - "lon": -0.4181246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "lit": "yes", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WD5 46" - } -}, -{ - "type": "node", - "id": 2650932049, - "lat": 50.9714431, - "lon": -0.5794090, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2651975118, - "lat": 55.9382587, - "lon": -4.3233630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G62 1147D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2651975119, - "lat": 55.9397817, - "lon": -4.3288632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-12-28", - "wikimedia_commons": "File:Dumgoyne Avenue - geograph.org.uk - 6014110.jpg" - } -}, -{ - "type": "node", - "id": 2654220732, - "lat": 53.3796268, - "lon": -2.1142379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "ref": "SK7 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2654220733, - "lat": 53.3799084, - "lon": -2.1057997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK7 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2654220734, - "lat": 53.3850327, - "lon": -2.1259324, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2654259051, - "lat": 53.3739609, - "lon": -2.1231511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "307017647469077", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-10-16" - } -}, -{ - "type": "node", - "id": 2654285716, - "lat": 53.3724260, - "lon": -2.1465838, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2654285718, - "lat": 53.3727576, - "lon": -2.1267209, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2654488759, - "lat": 51.8487263, - "lon": -2.2237090, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2655241442, - "lat": 51.3281991, - "lon": -2.8651572, - "tags": { - "amenity": "post_box", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2655754087, - "lat": 56.1880420, - "lon": -3.1471783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "ref": "KY7 443", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2655886691, - "lat": 54.6641200, - "lon": -1.6370841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 106" - } -}, -{ - "type": "node", - "id": 2656158293, - "lat": 55.9353153, - "lon": -4.3244257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2656533302, - "lat": 53.4298329, - "lon": -3.0468212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "QE II pole mounted post box CH45 73 on Oarside Drive, Wallasey, at junction with Kirkway.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CH45 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Oarside Drive, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 2656543363, - "lat": 53.4307994, - "lon": -3.0393102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "QE II post box by Carron Company CH45 68 outside Seabank Road post office.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Seabank Road post office.jpg" - } -}, -{ - "type": "node", - "id": 2656595895, - "lat": 56.2008231, - "lon": -3.2149391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY6 74", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2656598028, - "lat": 53.4249612, - "lon": -3.0501651, - "tags": { - "amenity": "post_box", - "description": "Off Street (Internal) post box at ASDA, Seaview Road, Liscard.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH45 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box inside Asda, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 2656608173, - "lat": 53.3397238, - "lon": -2.9768139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "description": "QEII Type K post box CH62 221 at the main entrance of Asda supermarket on Croft Retail Park, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH62 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Asda, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 2656684425, - "lat": 52.4967751, - "lon": -1.4335457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2657836586, - "lat": 51.3086466, - "lon": -0.8975774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2657921978, - "lat": 53.3785410, - "lon": -2.1901974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:30; Sa 17:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK8 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2657924604, - "lat": 53.3681113, - "lon": -2.1844863, - "tags": { - "amenity": "post_box", - "ref": "SK8 45" - } -}, -{ - "type": "node", - "id": 2660068653, - "lat": 56.2058917, - "lon": -3.1806300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 66", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2660069358, - "lat": 56.2149471, - "lon": -3.1627173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 440", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2660074287, - "lat": 50.9944378, - "lon": -3.1215790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Deborah Criddle Gold Medal winner London 2012 Paralympic Games Equestrian: Team, Open", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA3 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2660515765, - "lat": 52.0703096, - "lon": 1.1778847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661132068, - "lat": 52.7103315, - "lon": 1.5803684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "note": "Ref obscured", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661251970, - "lat": 52.6452689, - "lon": 1.7293022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR30 3045", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661431841, - "lat": 50.9850859, - "lon": -1.3028162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661431843, - "lat": 51.0002252, - "lon": -1.3686281, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO53 489D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661431849, - "lat": 50.9979708, - "lon": -1.3742836, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 614D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661431883, - "lat": 50.8893332, - "lon": -1.3526382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661431889, - "lat": 50.8867393, - "lon": -1.3677898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 668D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661431921, - "lat": 50.8872824, - "lon": -1.3572382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2661471369, - "lat": 52.0184431, - "lon": -0.7505076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK6 607", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2661471376, - "lat": 52.0292090, - "lon": -0.7650092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK6 604", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2661543702, - "lat": 51.3671155, - "lon": -0.0527870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 367D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2661595078, - "lat": 51.6660988, - "lon": -2.4404002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 252D", - "royal_cypher": "crown" - } -}, -{ - "type": "node", - "id": 2661664824, - "lat": 56.1783362, - "lon": -3.1731966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 412", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2661867722, - "lat": 52.7397729, - "lon": 1.5532303, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2663163934, - "lat": 55.6864519, - "lon": -1.9396170, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD15 61" - } -}, -{ - "type": "node", - "id": 2663188257, - "lat": 52.7808651, - "lon": -3.0894335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2663188263, - "lat": 52.7804394, - "lon": -3.0910363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2663702476, - "lat": 52.0713114, - "lon": -0.6283096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00", - "location": "indoor", - "note": "Pb emir pillar 15:00 - - internal uni", - "operator": "Cranfield University", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2664069502, - "lat": 51.0068483, - "lon": -0.9370275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "GU32 111", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2664155055, - "lat": 51.0153133, - "lon": -0.9202049, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU32 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2664155063, - "lat": 51.0304512, - "lon": -0.9248714, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "last_checked": "2020-09-24", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2664177540, - "lat": 51.0625998, - "lon": -0.9350164, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2664200483, - "lat": 51.0226928, - "lon": -0.9418064, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "last_checked": "2020-07-27", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2664241996, - "lat": 51.0150193, - "lon": -0.9325057, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "This postbox is very discreet and is easy to miss. This postbox is on the northwest-bound side of Reservoir Lane in the bushes opposite number 1 Reservoir Cottages.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2665439576, - "lat": 55.9496741, - "lon": -3.3340440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "post_box:type": "wall", - "ref": "EH12 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2667103997, - "lat": 53.3975645, - "lon": -2.1176557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667104032, - "lat": 53.3753625, - "lon": -2.1127328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SK7 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2667104085, - "lat": 53.3955988, - "lon": -2.1095955, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667165046, - "lat": 53.4073613, - "lon": -2.1459730, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667165053, - "lat": 53.4005573, - "lon": -2.1281792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667165062, - "lat": 53.4053170, - "lon": -2.1399635, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667165064, - "lat": 53.3976835, - "lon": -2.1230039, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667165065, - "lat": 53.4000736, - "lon": -2.1225788, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667196549, - "lat": 53.3847345, - "lon": -2.1800384, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667196550, - "lat": 53.3883355, - "lon": -2.1794751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30" - } -}, -{ - "type": "node", - "id": 2667196553, - "lat": 53.3735714, - "lon": -2.1549892, - "tags": { - "amenity": "post_box", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2667196554, - "lat": 53.3839410, - "lon": -2.1810657, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667196555, - "lat": 53.3714719, - "lon": -2.1783499, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2667217415, - "lat": 53.4121506, - "lon": -2.1479001, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2667942329, - "lat": 53.0911060, - "lon": -1.2430190, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2669165215, - "lat": 56.3741156, - "lon": -3.8274972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH7 4", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2669230521, - "lat": 56.7077444, - "lon": -3.7285772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH16 6D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2669230522, - "lat": 56.7035579, - "lon": -3.7305258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH16 1D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2669230523, - "lat": 56.7053950, - "lon": -3.7236937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 11D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2669230524, - "lat": 56.6973246, - "lon": -3.7193207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 10", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2670277127, - "lat": 52.7877101, - "lon": -2.6550319, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2670832973, - "lat": 50.8904343, - "lon": -1.0659423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO7 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2670848715, - "lat": 52.7506814, - "lon": -1.1439875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 65", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2671093506, - "lat": 51.4393781, - "lon": -2.0057881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN11 104", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2671305301, - "lat": 51.2318352, - "lon": -1.0305173, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG25 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2671533281, - "lat": 55.6027348, - "lon": -1.7699727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE70 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2672772196, - "lat": 52.7972543, - "lon": 1.3409811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2672772202, - "lat": 52.8342077, - "lon": 1.2937722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2673176507, - "lat": 52.7233541, - "lon": -1.3299848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2673252492, - "lat": 52.7241843, - "lon": -1.3235447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2674733884, - "lat": 51.1033585, - "lon": -3.2348504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TA4 158", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2674749849, - "lat": 50.9715175, - "lon": -3.2308559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2674749850, - "lat": 50.9694791, - "lon": -3.2257377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2675413907, - "lat": 51.6158494, - "lon": -3.9917342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SA2 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2675417825, - "lat": 52.7622132, - "lon": 0.8785163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "ref": "NR20 2077", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2675417862, - "lat": 52.8260195, - "lon": 0.8410161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2675918203, - "lat": 52.9126464, - "lon": -1.1866224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NG11 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676731350, - "lat": 52.4302277, - "lon": -1.9838935, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B31 370", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2676867157, - "lat": 56.2064814, - "lon": -3.1955820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY6 378", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676867158, - "lat": 56.2030590, - "lon": -3.2154867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 71", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676867159, - "lat": 56.2010229, - "lon": -3.2225862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "KY6 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676867160, - "lat": 56.1996716, - "lon": -3.2200351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "KY6 95", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676871639, - "lat": 56.1841446, - "lon": -3.1290507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY7 94", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676888090, - "lat": 56.1940957, - "lon": -3.0910560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676888106, - "lat": 56.1931550, - "lon": -3.0997075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2676888111, - "lat": 56.2012221, - "lon": -3.1348075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 73", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2677135199, - "lat": 54.6418365, - "lon": -6.1563966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2677156904, - "lat": 56.2079183, - "lon": -3.1692367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 374", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2677156905, - "lat": 56.2113704, - "lon": -3.1824737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 36", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2677156906, - "lat": 56.2100788, - "lon": -3.1855604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 380", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2677156907, - "lat": 56.2147852, - "lon": -3.1902431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 379", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2677156908, - "lat": 56.2139613, - "lon": -3.1957041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY6 121", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2677612285, - "lat": 55.9016907, - "lon": -3.6496234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2677612308, - "lat": 55.8988399, - "lon": -3.6957827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH48 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2677882678, - "lat": 51.6737359, - "lon": -0.3860774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD24 209", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2678035619, - "lat": 53.4117383, - "lon": -2.6258341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 318", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2678620815, - "lat": 56.1953815, - "lon": -3.1763771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 424", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2678620831, - "lat": 56.1957402, - "lon": -3.1738372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "This is the downstairs box. Location approx", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY7 401", - "royal_cypher": "no", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2678620832, - "lat": 56.1957294, - "lon": -3.1737623, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-11", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "This is the upstairs box. Location approx", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY7 400", - "royal_cypher": "no", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2678620833, - "lat": 56.1963834, - "lon": -3.1678684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2678620848, - "lat": 56.1979536, - "lon": -3.1595314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 430", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2678620849, - "lat": 56.1974472, - "lon": -3.1625765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "KY7 441", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2678880016, - "lat": 50.8586879, - "lon": -3.3921287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX15 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2679017791, - "lat": 52.5706259, - "lon": -0.2828876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "PE3 104" - } -}, -{ - "type": "node", - "id": 2679485790, - "lat": 52.8268511, - "lon": -1.1866148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680099070, - "lat": 54.2943303, - "lon": -2.5945557, - "tags": { - "amenity": "post_box", - "ref": "LA6 159", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680235214, - "lat": 56.2067167, - "lon": -3.1687504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 286", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2680235217, - "lat": 56.2052715, - "lon": -3.1621183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680235219, - "lat": 56.1930800, - "lon": -3.1462703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680344293, - "lat": 56.1924039, - "lon": -3.1508708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "360689256292870", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY7 123", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2023-08-14" - } -}, -{ - "type": "node", - "id": 2680344295, - "lat": 56.1898349, - "lon": -3.1520913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680344310, - "lat": 56.1880466, - "lon": -3.1471459, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-20", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 403", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680377159, - "lat": 56.2012876, - "lon": -3.1407898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 126", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680377165, - "lat": 56.2058609, - "lon": -3.1372533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "ref": "KY7 125", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2680393406, - "lat": 56.2136264, - "lon": -3.1537605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 110", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2680393407, - "lat": 56.2155568, - "lon": -3.1599027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 382", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2680514237, - "lat": 50.9548891, - "lon": -2.5077432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "149053550525582", - "post_box:type": "pillar", - "ref:GB:uprn": "10015345162", - "royal_cypher": "EIIR", - "survey:date": "2020-11-04" - } -}, -{ - "type": "node", - "id": 2680877027, - "lat": 50.4572482, - "lon": -4.4560667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2681058261, - "lat": 54.3154677, - "lon": -2.6747198, - "tags": { - "amenity": "post_box", - "ref": "LA8 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681058278, - "lat": 54.3085773, - "lon": -2.6706660, - "tags": { - "amenity": "post_box", - "ref": "LA8 75", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681058279, - "lat": 54.3008443, - "lon": -2.7025831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 78", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681058280, - "lat": 54.3176478, - "lon": -2.6974901, - "tags": { - "amenity": "post_box", - "ref": "LA8 211", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681069698, - "lat": 56.1926224, - "lon": -3.1583042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 46", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681069699, - "lat": 56.1911395, - "lon": -3.1644925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 423", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681069700, - "lat": 56.1924541, - "lon": -3.1728003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 131", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2681069701, - "lat": 56.1938379, - "lon": -3.1648389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 124", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681073434, - "lat": 54.3650518, - "lon": -2.7987336, - "tags": { - "amenity": "post_box", - "ref": "LA8 179", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681154299, - "lat": 54.7900326, - "lon": -3.0084826, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA5 420", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681388937, - "lat": 51.5222668, - "lon": -0.0871634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1Y 125;EC1Y 1251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681393994, - "lat": 55.1250989, - "lon": -3.2702504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2681838198, - "lat": 56.3456404, - "lon": -3.4322813, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 48D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2681974832, - "lat": 56.1880357, - "lon": -3.1680424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY6 33", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2681974833, - "lat": 56.1843961, - "lon": -3.1584472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681974834, - "lat": 56.1826100, - "lon": -3.1628179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY7 38", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681989005, - "lat": 56.1775363, - "lon": -3.1608339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY7 52", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681989006, - "lat": 56.1793835, - "lon": -3.1596722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 426", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681989013, - "lat": 56.1743532, - "lon": -3.1612307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "ref": "KY7 450", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2681989014, - "lat": 56.2120364, - "lon": -3.1580440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 439", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2681989015, - "lat": 56.2116253, - "lon": -3.1611377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY7 254", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682024914, - "lat": 52.5857215, - "lon": -1.9846343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "ref": "WS1 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2682190453, - "lat": 52.9994768, - "lon": -3.9449929, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2682344900, - "lat": 56.1930876, - "lon": -3.2165458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY6 157", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344901, - "lat": 56.1922828, - "lon": -3.2097995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 150", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344902, - "lat": 56.1918042, - "lon": -3.2023414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "KY6 153", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344903, - "lat": 56.1886948, - "lon": -3.2028291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 151", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344904, - "lat": 56.1874139, - "lon": -3.1957620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "KY6 156", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344905, - "lat": 56.1840627, - "lon": -3.2010993, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-30", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "ref": "KY6 164", - "royal_cypher": "EIIR", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344906, - "lat": 56.1840746, - "lon": -3.2010590, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-30", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY6 159", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344907, - "lat": 56.1771756, - "lon": -3.2003185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "KY6 422", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344908, - "lat": 56.1783891, - "lon": -3.1890817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Franked mail only: Need an on-site survey here PO data suggests this post box is No.KY6 445 and is a parcel box with no royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY6 442", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2682344909, - "lat": 56.1783712, - "lon": -3.1890844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KY6 445", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2683389436, - "lat": 51.4447735, - "lon": 0.2323382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "DA1 47D" - } -}, -{ - "type": "node", - "id": 2683823649, - "lat": 52.1130424, - "lon": -1.8900701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR11 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2684183747, - "lat": 53.4834805, - "lon": -2.2434448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "inscription": "This postbox remained standing almost undamaged on June 15, 1996 when this area was devastated by a bomb. The box was removed during the rebuilding of the city centre and was returned to its original site on November 22nd 1999", - "post_box:type": "pillar", - "ref": "M4 127D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Corporation Street pillar box, Manchester" - } -}, -{ - "type": "node", - "id": 2684428129, - "lat": 51.0895121, - "lon": 0.5166246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "ref": "TN17 163" - } -}, -{ - "type": "node", - "id": 2684906721, - "lat": 53.4812817, - "lon": -2.2806883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "M5 24" - } -}, -{ - "type": "node", - "id": 2684917476, - "lat": 52.0377362, - "lon": 1.1450919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP2 8231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685006545, - "lat": 50.7031476, - "lon": -3.5345102, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-02", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "EX2 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685040757, - "lat": 51.3608076, - "lon": -0.2003300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685484243, - "lat": 51.5210413, - "lon": -0.1130523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "note": "RH aperture blocked up", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1X 34;WC1X 234", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2019-11-09" - } -}, -{ - "type": "node", - "id": 2685558129, - "lat": 51.8863379, - "lon": -0.4617195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LU1 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685558130, - "lat": 51.8866808, - "lon": -0.4579600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LU1 300", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685575910, - "lat": 51.8755332, - "lon": -0.4300010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 128", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685575917, - "lat": 51.8800548, - "lon": -0.4349641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685581901, - "lat": 51.8738833, - "lon": -0.4221916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685586181, - "lat": 51.8784834, - "lon": -0.4277204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LU1 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2685749519, - "lat": 50.9584025, - "lon": -1.1035640, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO32 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2686772025, - "lat": 54.1946077, - "lon": -3.0887355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "LA12 83" - } -}, -{ - "type": "node", - "id": 2687483712, - "lat": 55.8644704, - "lon": -4.2756761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1599378260459442", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G3 54D", - "royal_cypher": "GVIR", - "survey:date": "2021-10-23" - } -}, -{ - "type": "node", - "id": 2688568004, - "lat": 54.1946216, - "lon": -3.0875461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "name": "Quebec Street", - "operator": "Royal Mail", - "ref": "LA12 27" - } -}, -{ - "type": "node", - "id": 2688758128, - "lat": 56.1963750, - "lon": -3.2043006, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 143", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2688758145, - "lat": 56.1989952, - "lon": -3.2040989, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 147", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2688758154, - "lat": 56.1995710, - "lon": -3.1957408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 148", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2688758166, - "lat": 56.1952115, - "lon": -3.1989562, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-01", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "name": "KY6 149", - "operator": "Royal Mail", - "ref": "KY6 149", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688758200, - "lat": 56.1930536, - "lon": -3.1950377, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 141", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688758210, - "lat": 56.1980840, - "lon": -3.1841599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "ref": "KY6 133", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2688758218, - "lat": 56.1949889, - "lon": -3.1828447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 42", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688758224, - "lat": 56.1937500, - "lon": -3.1820697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 140", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688758231, - "lat": 56.1932299, - "lon": -3.1884679, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 138", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688758238, - "lat": 56.1898723, - "lon": -3.1832154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 101", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688758239, - "lat": 56.1871905, - "lon": -3.1732313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY6 431", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688783640, - "lat": 56.2168848, - "lon": -3.1791735, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-27", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "KY7 444", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688783660, - "lat": 56.2149741, - "lon": -3.1750131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "KY7 421", - "royal_cypher": "scottish_crown", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2688998302, - "lat": 51.8500795, - "lon": -2.0824118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2688998695, - "lat": 51.8756763, - "lon": -2.0676178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2689152006, - "lat": 50.9806775, - "lon": -2.2864665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DT10 89", - "ref:GB:uprn": "10025069444" - } -}, -{ - "type": "node", - "id": 2690539680, - "lat": 51.8913756, - "lon": -1.7234029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 342", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2691738012, - "lat": 52.7513304, - "lon": -1.1493618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE12 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2691738126, - "lat": 52.7540301, - "lon": -1.1466056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE12 34", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2692496756, - "lat": 54.9643905, - "lon": -1.7107536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE21 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2692575090, - "lat": 52.2164790, - "lon": 0.1111073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB4 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2692575094, - "lat": 52.2236203, - "lon": 0.1090574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB4 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2692616419, - "lat": 52.6537606, - "lon": -3.8489755, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2692959990, - "lat": 52.4301084, - "lon": -1.4980476, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2692967180, - "lat": 50.6672624, - "lon": -3.5354957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2693139741, - "lat": 56.2293290, - "lon": -3.1506206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "operator": "Royal Mail", - "ref": "KY7 80", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2693318478, - "lat": 51.4866935, - "lon": -2.5489562, - "tags": { - "amenity": "post_box", - "ref": "BS16 68" - } -}, -{ - "type": "node", - "id": 2693420534, - "lat": 54.6249405, - "lon": -1.6444801, - "tags": { - "amenity": "post_box", - "ref": "DL4 178", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2693675109, - "lat": 54.9844840, - "lon": -1.7098790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2693678921, - "lat": 51.4793680, - "lon": -0.2819090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 52D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2693681920, - "lat": 51.4852581, - "lon": -0.2875326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2693688509, - "lat": 51.4765335, - "lon": -0.2830993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2694467494, - "lat": 51.5138231, - "lon": -0.3214226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W13 26" - } -}, -{ - "type": "node", - "id": 2694579135, - "lat": 51.3682644, - "lon": -0.5032353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2694833238, - "lat": 56.2032019, - "lon": -3.2061469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "923725804890255", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY6 72", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 2694841227, - "lat": 56.1664327, - "lon": -3.1463072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2694841228, - "lat": 56.1650823, - "lon": -3.1504673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY1 67", - "source": "Survey Feb 2014" - } -}, -{ - "type": "node", - "id": 2694841229, - "lat": 56.1640506, - "lon": -3.1453812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2696226476, - "lat": 51.4662811, - "lon": -2.6084219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "BS6", - "ref": "BS6 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2014-02-16" - } -}, -{ - "type": "node", - "id": 2696258840, - "lat": 51.5030731, - "lon": -2.5866065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "BS7 363", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2696348636, - "lat": 51.4149751, - "lon": -0.2947956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 107D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2696457160, - "lat": 53.4498526, - "lon": -2.3448326, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2696680134, - "lat": 51.2661381, - "lon": -0.8264073, - "tags": { - "NHS": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "GU52 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2697003643, - "lat": 51.0696172, - "lon": -1.7928853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SP1 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2697081660, - "lat": 51.5736357, - "lon": -0.1156690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "ref": "N4 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2697435962, - "lat": 52.8136202, - "lon": -2.7247504, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2698174231, - "lat": 54.6057809, - "lon": -2.7554067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "CA10 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2698338840, - "lat": 51.7060573, - "lon": -0.4381445, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 2698343000, - "lat": 54.7578525, - "lon": -6.6104309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2698831727, - "lat": 54.6851415, - "lon": -6.7495392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "name": "Lissan Go Service Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HR4 307" - } -}, -{ - "type": "node", - "id": 2699034709, - "lat": 51.4865713, - "lon": -2.6035728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2699060658, - "lat": 51.4822022, - "lon": -2.5934198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 366D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2699611894, - "lat": 53.9635216, - "lon": -1.1070721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO26 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2699780038, - "lat": 56.3336536, - "lon": -2.8172621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY16 363D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2699859414, - "lat": 52.9951359, - "lon": -3.9486838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2700344923, - "lat": 55.8482409, - "lon": -3.5808851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH55 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2700366303, - "lat": 55.7739243, - "lon": -3.6722415, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700379538, - "lat": 55.6963460, - "lon": -3.5965709, - "tags": { - "amenity": "post_box", - "note": "no plate", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700388069, - "lat": 55.6701516, - "lon": -3.6078405, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ML11 23", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700418643, - "lat": 54.4644138, - "lon": -3.0340134, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-29", - "check_date:collection_times": "2023-08-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA22 158", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700481387, - "lat": 54.6431609, - "lon": -2.9225570, - "tags": { - "amenity": "post_box", - "ref": "CA11 209", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700481397, - "lat": 54.6871740, - "lon": -2.8493159, - "tags": { - "amenity": "post_box", - "ref": "CA11 167", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700481415, - "lat": 54.7168001, - "lon": -2.8496655, - "tags": { - "amenity": "post_box", - "ref": "CA11 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700481417, - "lat": 54.7585372, - "lon": -2.9789317, - "tags": { - "amenity": "post_box", - "ref": "CA5 417", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700546000, - "lat": 50.5420937, - "lon": -4.9418543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL28 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2700666229, - "lat": 51.4975044, - "lon": -2.5971199, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 1023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2700679232, - "lat": 55.9253839, - "lon": -4.1438312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G66 848", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2700718512, - "lat": 51.1952904, - "lon": -3.4658056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2701112997, - "lat": 52.6048363, - "lon": -1.0905275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701282250, - "lat": 50.6206146, - "lon": -3.4026387, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701287068, - "lat": 50.6207477, - "lon": -3.4144187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 141", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701302868, - "lat": 50.6170467, - "lon": -3.4223567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701682811, - "lat": 54.7677114, - "lon": -3.0008606, - "tags": { - "amenity": "post_box", - "ref": "CA5 291", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701683092, - "lat": 54.7967764, - "lon": -3.0558502, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701683134, - "lat": 54.8127013, - "lon": -3.1708387, - "tags": { - "amenity": "post_box", - "ref": "CA7 464", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701683144, - "lat": 54.8306610, - "lon": -3.2125588, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701717216, - "lat": 54.9427508, - "lon": -3.2533739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 463", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701717217, - "lat": 54.9150372, - "lon": -3.2457545, - "tags": { - "amenity": "post_box", - "mapillary": "381106574556026", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 380" - } -}, -{ - "type": "node", - "id": 2701717218, - "lat": 54.9094424, - "lon": -3.2077462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701735475, - "lat": 54.9009565, - "lon": -3.2032363, - "tags": { - "amenity": "post_box", - "ref": "CA7 431", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701735479, - "lat": 54.9038615, - "lon": -3.1820790, - "tags": { - "amenity": "post_box", - "ref": "CA7 288", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701735480, - "lat": 54.9029653, - "lon": -3.1626842, - "tags": { - "amenity": "post_box", - "ref": "CA7 116", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701735486, - "lat": 54.9013794, - "lon": -3.0409304, - "tags": { - "amenity": "post_box", - "ref": "CA5 63", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2701837722, - "lat": 57.8513879, - "lon": -5.2636406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV22 209", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2702032564, - "lat": 51.1485924, - "lon": -2.4462179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA4 147" - } -}, -{ - "type": "node", - "id": 2702081705, - "lat": 51.1384266, - "lon": -3.5387120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2702440416, - "lat": 50.7653281, - "lon": -3.4438956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:25; Sa 11:45", - "colour": "red", - "direction": "W", - "name": "Broadclyst Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX5 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2702440589, - "lat": 50.7596091, - "lon": -3.4416177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "colour": "red", - "drive_through": "no", - "name": "Dog Village", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 3HG", - "ref": "EX5 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2702501741, - "lat": 51.5976145, - "lon": -0.7822549, - "tags": { - "amenity": "post_box", - "ref": "SL7 176" - } -}, -{ - "type": "node", - "id": 2702501742, - "lat": 51.5868116, - "lon": -0.7758183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL7 158" - } -}, -{ - "type": "node", - "id": 2702501743, - "lat": 51.5920560, - "lon": -0.7851758, - "tags": { - "amenity": "post_box", - "ref": "SL7 146" - } -}, -{ - "type": "node", - "id": 2702516069, - "lat": 51.5708866, - "lon": -0.7789732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "image": "https://archive.org/details/marlow-2019-05-24/DSCN9572.JPG", - "post_box:type": "pillar", - "ref": "SL7 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2702563418, - "lat": 51.6088840, - "lon": -0.7710843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP10 85D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 2702569957, - "lat": 51.5939922, - "lon": -0.7662662, - "tags": { - "amenity": "post_box", - "ref": "SL7 189" - } -}, -{ - "type": "node", - "id": 2702927822, - "lat": 51.4443109, - "lon": 0.3660736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2703984593, - "lat": 51.7544597, - "lon": -0.5481025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2704379142, - "lat": 53.4718540, - "lon": -2.2321770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "M1 862", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2706036439, - "lat": 52.9457878, - "lon": -3.5077665, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2706036442, - "lat": 53.0427165, - "lon": -3.3647465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2706304916, - "lat": 50.4286405, - "lon": -4.1561489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "806578293849270", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL5 429", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-07" - } -}, -{ - "type": "node", - "id": 2706345421, - "lat": 56.3950610, - "lon": -3.4285730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PH2 4D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706347036, - "lat": 56.3969787, - "lon": -3.4270592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH1 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706349459, - "lat": 56.3951225, - "lon": -3.4345757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706351436, - "lat": 56.3985605, - "lon": -3.4347852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "manufacturer": "Lion Foundry Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH1 54", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706356572, - "lat": 56.4021412, - "lon": -3.4401290, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2018-02-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH1 24D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706361101, - "lat": 56.4002086, - "lon": -3.4699943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 216D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706364345, - "lat": 56.3988561, - "lon": -3.4619795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PH1 178D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706368460, - "lat": 56.4073758, - "lon": -3.4689981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PH1 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706369466, - "lat": 56.4113611, - "lon": -3.4640622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 66D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2706370607, - "lat": 56.4131121, - "lon": -3.4646421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 33D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2707308784, - "lat": 54.2059988, - "lon": -1.1511487, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO61 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2707507439, - "lat": 50.9053867, - "lon": -2.9697087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2707748065, - "lat": 51.6244143, - "lon": -0.5095750, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2707748069, - "lat": 51.6215535, - "lon": -0.5309683, - "tags": { - "amenity": "post_box", - "ref": "SL9 107" - } -}, -{ - "type": "node", - "id": 2707957489, - "lat": 53.1599312, - "lon": -3.3749654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "note": "Royal cypher is obscured by COVID-19 priority sticker but probbaly EIIR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 25" - } -}, -{ - "type": "node", - "id": 2708597593, - "lat": 52.4797911, - "lon": 1.4364994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2708663814, - "lat": 53.1402754, - "lon": -4.2476614, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2708737518, - "lat": 51.2780613, - "lon": -1.3512109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "mapillary": "403196754711110", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG28 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-07" - } -}, -{ - "type": "node", - "id": 2708779185, - "lat": 51.3418092, - "lon": -1.3734739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2708866579, - "lat": 51.3398299, - "lon": -1.3252265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "RG20 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2708866605, - "lat": 51.3464870, - "lon": -1.3247875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2708866609, - "lat": 51.3497901, - "lon": -1.3197819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 234", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2708866610, - "lat": 51.3537998, - "lon": -1.3220924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2708930795, - "lat": 51.8538680, - "lon": -0.4456543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148710, - "lat": 51.8427676, - "lon": -0.3630840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148717, - "lat": 51.8462141, - "lon": -0.3682009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148723, - "lat": 51.8481801, - "lon": -0.4019290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LU1 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148734, - "lat": 51.8495360, - "lon": -0.4300652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LU1 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148740, - "lat": 51.8502764, - "lon": -0.3737143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LU1 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148741, - "lat": 51.8664950, - "lon": -0.3680577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU2 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709148743, - "lat": 51.8891423, - "lon": -0.3556356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LU2 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2709149070, - "lat": 52.4648872, - "lon": 1.4416333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "ref": "NR35 3528" - } -}, -{ - "type": "node", - "id": 2709149081, - "lat": 52.4710144, - "lon": 1.4482262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2709149087, - "lat": 52.4649950, - "lon": 1.4473733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR35 3536" - } -}, -{ - "type": "node", - "id": 2709149093, - "lat": 52.4679614, - "lon": 1.4428451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "ref": "NR35 3535" - } -}, -{ - "type": "node", - "id": 2709149097, - "lat": 52.4682561, - "lon": 1.4548942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 08:00", - "ref": "NR35 3533" - } -}, -{ - "type": "node", - "id": 2709483161, - "lat": 51.8142395, - "lon": -4.7551607, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2710790627, - "lat": 51.7527466, - "lon": -1.2712478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "OX2", - "ref": "OX2 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2014-01-15" - } -}, -{ - "type": "node", - "id": 2710874038, - "lat": 51.2728527, - "lon": 0.1923205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN13 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2711315506, - "lat": 57.1862215, - "lon": -3.8294194, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-30", - "collection_times": "Mo-Fr 15:00; Sa 12:15", - "post_box:type": "lamp", - "ref": "PH22 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2711316672, - "lat": 57.1993062, - "lon": -3.8159603, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 15:00; Sa 07:30", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH22 25", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2711453858, - "lat": 52.9416060, - "lon": 0.5390141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2711453871, - "lat": 52.9354345, - "lon": 0.5376103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2023-08-23", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE36 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2711455920, - "lat": 52.9614508, - "lon": 0.5360860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2712310323, - "lat": 53.0146561, - "lon": -2.2171833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2712360651, - "lat": 51.3458430, - "lon": -0.0957310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2712524526, - "lat": 51.7388113, - "lon": -2.2320005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 25", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2712971993, - "lat": 50.8101476, - "lon": -1.0787359, - "tags": { - "amenity": "post_box", - "collection_plate": "CP15D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "PO2 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2713190507, - "lat": 53.2337768, - "lon": -0.5584632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2713359897, - "lat": 52.9431298, - "lon": 0.4886074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE36 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2713360175, - "lat": 52.9364464, - "lon": 0.4920873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PE36 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2714050025, - "lat": 52.9138432, - "lon": 0.5038718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2714151519, - "lat": 57.1716373, - "lon": -2.1168646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "orientation": "west", - "post_box:type": "pillar", - "ref": "AB24 53", - "royal_cypher": "no", - "source": "survey;bing;gps;local knowledge" - } -}, -{ - "type": "node", - "id": 2714227483, - "lat": 57.1730470, - "lon": -2.1229044, - "tags": { - "addr:postcode": "AB24 2SD", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2714943639, - "lat": 50.6059170, - "lon": -2.0169010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH19 83", - "ref:GB:uprn": "10015421388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2714944043, - "lat": 50.6086213, - "lon": -2.0103411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH19 109", - "ref:GB:uprn": "10015427849", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2714944066, - "lat": 50.6090441, - "lon": -1.9688510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH19 115", - "ref:GB:uprn": "10015286831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2714957817, - "lat": 57.4622129, - "lon": -4.2217551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2715245403, - "lat": 51.5454936, - "lon": -0.1995560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2715523596, - "lat": 51.4820175, - "lon": -0.6070189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "colour": "green", - "fixme": "Was sealed up with a cover over the aperture on 15/9/18 when I surveyed it - not sure whether it was temporarily out-of-use or permanently, though collection plate was still there suggesting it was still in use", - "image": "https://archive.org/details/windsor-2018-09-15/Windsor%202018-09-15/DSCN7579.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SL4 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Wikimedia Commons" - } -}, -{ - "type": "node", - "id": 2716004987, - "lat": 55.8198966, - "lon": -4.0348442, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2716283299, - "lat": 53.0381071, - "lon": -1.2106434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "geograph:id": "1907199", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG15 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 2716323953, - "lat": 51.7150734, - "lon": -0.1198656, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-04", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2719406501, - "lat": 51.3100341, - "lon": 0.0268080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN16 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2719406502, - "lat": 51.3134730, - "lon": 0.0292391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "colour": "red", - "ref": "TN16 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2719409983, - "lat": 51.1239764, - "lon": -0.0047222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "name": "High Street PO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2719409996, - "lat": 51.1240645, - "lon": -0.0076870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "name": "Lloyds Bank High Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2719481944, - "lat": 53.1495188, - "lon": -4.1866125, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2719491505, - "lat": 57.1589322, - "lon": -2.0997431, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB24 3HX", - "addr:street": "Spital", - "amenity": "post_box", - "check_date": "2021-02-27", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB24 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2720034172, - "lat": 52.8887549, - "lon": -1.1464259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "NG11 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2720034175, - "lat": 52.8891959, - "lon": -1.1551606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2720034265, - "lat": 52.8921004, - "lon": -1.1494343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "NG11 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2720038390, - "lat": 55.8895034, - "lon": -3.6251693, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 70D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2720038424, - "lat": 55.8933782, - "lon": -3.6195321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "Inside Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH48 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2720135577, - "lat": 50.9543949, - "lon": -0.9358392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:type": "wall", - "ref": "GU31 119", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2720135589, - "lat": 50.9775768, - "lon": -0.9437097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is discreet and easy to miss. It is on the wall by the steps up to number 51 Pinkers Cottage.", - "old_ref": "GU31 78", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU31 78D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2720663867, - "lat": 51.3125868, - "lon": -0.6066380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2721206794, - "lat": 51.9459591, - "lon": -0.4435450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LU3 64", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721206815, - "lat": 51.9486616, - "lon": -0.4481029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LU3 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721217373, - "lat": 52.9524327, - "lon": -1.1514808, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-15", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "mail:franked": "only", - "opening_hours": "Mo-Fr 12:00-18:00", - "post_box:type": "meter", - "ref": "NG1 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721217374, - "lat": 52.9524478, - "lon": -1.1514603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NG1 322;NG1 3220", - "ref:GB:uprn": "10015418686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721258837, - "lat": 55.9023667, - "lon": -3.6425669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH48 82", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2721272708, - "lat": 51.9633216, - "lon": -0.4260458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721272711, - "lat": 51.9636159, - "lon": -0.4518849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK45 166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721272714, - "lat": 51.9663750, - "lon": -0.4273768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK45 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721272715, - "lat": 51.9723493, - "lon": -0.4284643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721272716, - "lat": 51.9732774, - "lon": -0.4243235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721272717, - "lat": 51.9734953, - "lon": -0.4401846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2721293328, - "lat": 52.0864075, - "lon": -0.7250717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45", - "post_box:type": "meter", - "ref": "MK16 628", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2722216069, - "lat": 51.2206081, - "lon": -0.9435289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "RG29 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2722250437, - "lat": 51.5241491, - "lon": -2.5933433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS34 692D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2722371692, - "lat": 52.4490693, - "lon": 1.7277784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR33 3313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2722606595, - "lat": 51.0203566, - "lon": -3.0710210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2723204398, - "lat": 55.8945073, - "lon": -3.6524632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 2D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2723696288, - "lat": 53.4769110, - "lon": -2.2347520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "M1 315", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2723803773, - "lat": 54.3482365, - "lon": -1.3633835, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL6 32" - } -}, -{ - "type": "node", - "id": 2723815079, - "lat": 54.3467089, - "lon": -1.3308037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL6 164" - } -}, -{ - "type": "node", - "id": 2723918404, - "lat": 51.5461837, - "lon": -0.0040784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E20 903D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2723924190, - "lat": 55.8685306, - "lon": -3.0487200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 136D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2723924193, - "lat": 55.8694505, - "lon": -3.0435215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 137D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2723924485, - "lat": 55.8701998, - "lon": -3.0532780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 257", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2724164129, - "lat": 51.5237810, - "lon": -0.7426591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2724199742, - "lat": 55.8687592, - "lon": -3.0627331, - "tags": { - "amenity": "post_box", - "ref": "EH22 211", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2724199999, - "lat": 55.8591866, - "lon": -3.0582772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 81D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2724216873, - "lat": 55.8412899, - "lon": -3.0429403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH23 58D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2724408267, - "lat": 51.0701293, - "lon": -0.9316708, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2724408326, - "lat": 51.0758600, - "lon": -0.9263782, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2725104240, - "lat": 50.1841326, - "lon": -5.4210434, - "tags": { - "amenity": "post_box", - "mapillary": "796901965961152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR27 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 2725104241, - "lat": 50.1786984, - "lon": -5.4248710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 2725104242, - "lat": 50.1756498, - "lon": -5.4236733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 2725104244, - "lat": 50.1786905, - "lon": -5.4220818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 2725104245, - "lat": 50.1832531, - "lon": -5.4153568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 2725166667, - "lat": 50.1999715, - "lon": -5.4004857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-08-11" - } -}, -{ - "type": "node", - "id": 2725226104, - "lat": 53.3768089, - "lon": -2.1890868, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SK8 267;SK8 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2725226116, - "lat": 53.3768257, - "lon": -2.1890305, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "SK8 43" - } -}, -{ - "type": "node", - "id": 2725514232, - "lat": 52.1690406, - "lon": 1.4994492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP17 4671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2725885489, - "lat": 54.0283640, - "lon": -2.1423846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD23 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 2725921199, - "lat": 57.5680970, - "lon": -4.4296516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV7 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2725921200, - "lat": 57.5822490, - "lon": -4.3988642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IV7 23", - "royal_cypher": "scottish_crown", - "source": "survey 18th August 2014" - } -}, -{ - "type": "node", - "id": 2726138628, - "lat": 50.6066739, - "lon": -1.9615420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH19 226", - "ref:GB:uprn": "10015347174", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 2726214150, - "lat": 53.5143511, - "lon": -1.0708726, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2726218640, - "lat": 51.4882761, - "lon": -2.6743202, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 1075", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2727757245, - "lat": 51.4901169, - "lon": -2.6778877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS11 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2727792460, - "lat": 54.6702198, - "lon": -2.7492545, - "tags": { - "amenity": "post_box", - "ref": "CA11 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2727792570, - "lat": 54.6661348, - "lon": -2.7410090, - "tags": { - "amenity": "post_box", - "ref": "CA11 293" - } -}, -{ - "type": "node", - "id": 2727850277, - "lat": 55.6239710, - "lon": -3.5287335, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2727870634, - "lat": 51.1745703, - "lon": -1.4853321, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP11 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2727875621, - "lat": 55.7125900, - "lon": -3.5270145, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2730037064, - "lat": 53.0986600, - "lon": -2.2908298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2730116560, - "lat": 51.5140345, - "lon": -0.1515540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Has one aperture for first class and abroad and another for second class. The left aperture (W1C 78D) is blocked up.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1C 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2730124362, - "lat": 51.5217053, - "lon": -0.1563384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Post Office direction sign on top", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 1D;W1U 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2730124369, - "lat": 51.5212407, - "lon": -0.1572814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-17", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "note": "3 apertures in front wall of Post office. Nearby plate with collection times and only one ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "W1 124", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2730170926, - "lat": 51.5181041, - "lon": -0.0711107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 33;E1 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2730371680, - "lat": 54.9602471, - "lon": -1.7236688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE21 631", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2732174770, - "lat": 52.4336216, - "lon": -2.0115662, - "tags": { - "amenity": "post_box", - "ref": "B32 915", - "source": "bing" - } -}, -{ - "type": "node", - "id": 2732777372, - "lat": 51.3734912, - "lon": 0.0688759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "ref": "BR6 470" - } -}, -{ - "type": "node", - "id": 2732777383, - "lat": 51.3743143, - "lon": 0.0121145, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BR2 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2732777386, - "lat": 51.5164740, - "lon": -0.1386894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1W 44;W1W 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2732777389, - "lat": 51.5408693, - "lon": -0.1831268, - "tags": { - "FIXME": "Not quite sure about the ref", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW6 79", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2732777393, - "lat": 51.5496675, - "lon": -0.2731860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA9 269" - } -}, -{ - "type": "node", - "id": 2732882415, - "lat": 51.4613738, - "lon": -2.5971567, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS6 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2733689280, - "lat": 51.8747767, - "lon": -2.2167616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "GL2 120", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2733997064, - "lat": 52.7371381, - "lon": 0.5828473, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2734113321, - "lat": 51.8615100, - "lon": -2.2310822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL1 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 2734137704, - "lat": 51.8635150, - "lon": -2.2270219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "ref": "GL1 391", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734161072, - "lat": 51.8654298, - "lon": -2.2179051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "fixme": "has this been repaced after building finished?", - "ref": "GL2 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734195975, - "lat": 51.8694623, - "lon": -2.2141813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "ref": "GL2 58", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734351052, - "lat": 52.4543409, - "lon": 1.0219129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR16 1639", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2734482574, - "lat": 52.2839539, - "lon": -1.3939340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734626567, - "lat": 51.5038215, - "lon": -0.1961690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W8 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734626574, - "lat": 51.5045313, - "lon": -0.1936370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734626584, - "lat": 51.5056866, - "lon": -0.1979746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 4", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734626589, - "lat": 51.5057313, - "lon": -0.1950218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734626604, - "lat": 51.5065739, - "lon": -0.2025811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 37", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2734626682, - "lat": 51.5084151, - "lon": -0.1978802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 05:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2735327810, - "lat": 51.3467721, - "lon": -0.0510942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR2 597D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2735327846, - "lat": 51.3661321, - "lon": -0.0038035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 198D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2735328107, - "lat": 51.4859194, - "lon": -2.6057400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 315", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2735358722, - "lat": 51.3437812, - "lon": -0.0623698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2735358742, - "lat": 51.3463708, - "lon": -0.0563465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 349", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2735418599, - "lat": 51.5480368, - "lon": -1.8927153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN4 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2736265700, - "lat": 56.5585272, - "lon": -2.5805226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "4", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2737113712, - "lat": 56.0345677, - "lon": -3.4845906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY11 89", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2737115417, - "lat": 52.9548155, - "lon": -1.1446519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG1 48D", - "ref:GB:uprn": "10015398632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2737267578, - "lat": 57.3854140, - "lon": -4.1812724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2737511527, - "lat": 55.8417665, - "lon": -3.0474373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH23 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2737511794, - "lat": 55.8477733, - "lon": -3.0536449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "ref": "EH23 61" - } -}, -{ - "type": "node", - "id": 2737511953, - "lat": 55.8499332, - "lon": -3.0511468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "ref": "EH23 270" - } -}, -{ - "type": "node", - "id": 2737580855, - "lat": 51.5267492, - "lon": -0.7283409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2737975231, - "lat": 51.6916611, - "lon": -2.3524934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL11 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2738116109, - "lat": 53.3574517, - "lon": -1.4588210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S14 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2738175205, - "lat": 53.7489588, - "lon": -2.6730657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-02-26", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2738175238, - "lat": 53.7597103, - "lon": -2.6992984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR1 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2738175276, - "lat": 53.7813080, - "lon": -2.7756706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR4 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2738175298, - "lat": 53.7887280, - "lon": -2.7812386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR4 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2738175304, - "lat": 53.8040882, - "lon": -2.7974107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR4 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2740070115, - "lat": 51.1308719, - "lon": -0.4031143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2740958852, - "lat": 53.0548792, - "lon": -1.0634984, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2742831452, - "lat": 51.7139138, - "lon": -0.2204848, - "tags": { - "amenity": "post_box", - "ref": "AL9 218" - } -}, -{ - "type": "node", - "id": 2743083383, - "lat": 53.7498976, - "lon": -2.4816467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BB1 600;BB1 601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2743083386, - "lat": 53.7499285, - "lon": -2.4816581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:30-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BB1 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2743777358, - "lat": 52.9568724, - "lon": -1.1484298, - "tags": { - "amenity": "post_box", - "check_date": "2022-11-06", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG1 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2745472157, - "lat": 51.8562634, - "lon": 0.9592737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO7 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2746428018, - "lat": 52.9611371, - "lon": -1.1708653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 66D", - "ref:GB:uprn": "10015434672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2748009563, - "lat": 53.7840543, - "lon": -1.7559278, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2749355677, - "lat": 51.6483814, - "lon": -0.4354480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2749504078, - "lat": 57.1602403, - "lon": -2.3278123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB32 240", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2749569916, - "lat": 52.7355022, - "lon": -1.3217072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE17 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2749577986, - "lat": 56.1130378, - "lon": -3.1599606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2749731464, - "lat": 53.4814296, - "lon": -2.2367508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "ref": "M1 4P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2749768873, - "lat": 57.1390508, - "lon": -2.3505816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB32 636", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2749768874, - "lat": 57.1414092, - "lon": -2.4340147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB32 275", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2749768875, - "lat": 57.1523545, - "lon": -2.3150772, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "AB32 448", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2749768876, - "lat": 57.1389456, - "lon": -2.3603404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB32 327", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2750775947, - "lat": 51.6542196, - "lon": -0.4752840, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2750869412, - "lat": 53.5116783, - "lon": -1.0817240, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2750869414, - "lat": 53.5288569, - "lon": -1.1180519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2751162945, - "lat": 53.0609531, - "lon": -3.3706356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2751385629, - "lat": 52.4850848, - "lon": -1.5830013, - "tags": { - "amenity": "post_box", - "ref": "CV7 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2752394985, - "lat": 51.5387071, - "lon": -0.0249592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E3 38P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2752394996, - "lat": 51.5391118, - "lon": -0.0239993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2752867123, - "lat": 52.8977187, - "lon": -1.1435830, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2753538560, - "lat": 52.6159623, - "lon": 1.5690920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2753561434, - "lat": 52.3743865, - "lon": 1.1979225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7081", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2754210048, - "lat": 50.9454263, - "lon": -1.4238347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 702", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2754599694, - "lat": 53.3483665, - "lon": -2.6492200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA4 144D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2754612388, - "lat": 52.0391468, - "lon": -2.0590147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "wall", - "ref": "GL20 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2754988793, - "lat": 52.9036423, - "lon": -1.1772571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG11 393", - "ref:GB:uprn": "10015811878", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2755047337, - "lat": 51.2035812, - "lon": -1.0434690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2129747813900894", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-21" - } -}, -{ - "type": "node", - "id": 2755772819, - "lat": 52.2670799, - "lon": -1.2451801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2755867314, - "lat": 52.0332325, - "lon": -2.0210042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL20 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2756048827, - "lat": 51.3155975, - "lon": -0.1361019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "name": "Reddown Road (2A)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2756048893, - "lat": 51.3199227, - "lon": -0.1409088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CR5 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2756480336, - "lat": 51.3081920, - "lon": -0.1001402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CR8 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2756480337, - "lat": 51.3208659, - "lon": -0.1442758, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 485D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2756626749, - "lat": 54.9037235, - "lon": -1.3853719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR1 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2756983903, - "lat": 51.3380986, - "lon": 0.1784114, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN14 266D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2758127003, - "lat": 51.9421288, - "lon": -2.1636443, - "tags": { - "addr:city": "Gloucester", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2759705798, - "lat": 51.2112528, - "lon": -3.6749838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2759803468, - "lat": 51.2127302, - "lon": -3.7173244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX35 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2759803470, - "lat": 51.2141382, - "lon": -3.7936427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "EX35 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2759803472, - "lat": 51.2148073, - "lon": -3.8052083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "wall", - "ref": "EX35 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2759803476, - "lat": 51.2200150, - "lon": -3.7653459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "EX35 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2760113889, - "lat": 51.3071031, - "lon": -0.1321668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 447D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2760466267, - "lat": 53.3501648, - "lon": -2.1355940, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2760479187, - "lat": 55.9646414, - "lon": -4.6580245, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2762301683, - "lat": 52.2726518, - "lon": -1.8944530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "B80 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2762957904, - "lat": 57.1502986, - "lon": -2.1073024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB25 87", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2763623363, - "lat": 52.0430901, - "lon": 1.1374893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1063", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2765353393, - "lat": 57.1627100, - "lon": -2.0970522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2765380070, - "lat": 57.1670098, - "lon": -2.0971893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB24 106", - "royal_cypher": "scottish_crown", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 2765419238, - "lat": 51.2320595, - "lon": -3.7959757, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "post_box:type": "wall", - "ref": "EX35 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2765636043, - "lat": 51.1838314, - "lon": -3.5405076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2765636061, - "lat": 51.1894072, - "lon": -3.5591376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2765893428, - "lat": 50.9519034, - "lon": -0.9823926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2766743671, - "lat": 50.9204263, - "lon": 0.4848127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "TN33 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2767275357, - "lat": 52.6291705, - "lon": 1.0621855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 929D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2767660448, - "lat": 52.6097933, - "lon": -1.8375742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WS14 51" - } -}, -{ - "type": "node", - "id": 2769328480, - "lat": 52.6037950, - "lon": 1.2131666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR9 903", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2769358843, - "lat": 51.5138813, - "lon": -0.1404905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "note": "Has 1 aperture for stamped mail, and 1 for franked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W1B 101D;W1B 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2770343234, - "lat": 52.3123069, - "lon": -2.7055434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45, Sa 11:30", - "post_box:type": "wall", - "ref": "SY8 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2770491476, - "lat": 57.1675067, - "lon": -2.0897790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AB24 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2770504220, - "lat": 57.1656630, - "lon": -2.0936554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:collection_times": "Sa time is obscured, but read as 12:45 through it", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 516", - "royal_cypher": "no", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 2770523595, - "lat": 57.1607327, - "lon": -2.0911990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 189", - "royal_cypher": "no", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2770541947, - "lat": 57.1585212, - "lon": -2.0956235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB24 76", - "royal_cypher": "scottish_crown", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2770577911, - "lat": 57.1526636, - "lon": -2.0992846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 647", - "royal_cypher": "no", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2772157195, - "lat": 55.9577092, - "lon": -4.7692378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2772194562, - "lat": 53.2114348, - "lon": -0.9001791, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2772462554, - "lat": 53.2032804, - "lon": -0.8418252, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2772667769, - "lat": 55.9548091, - "lon": -4.7680692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2772766982, - "lat": 52.9550243, - "lon": -1.1412685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 07:00-19:30", - "post_box:type": "meter", - "ref": "NG1 32", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2773205320, - "lat": 53.2654688, - "lon": -1.9100777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "ref": "SK17 67" - } -}, -{ - "type": "node", - "id": 2773240589, - "lat": 53.3264265, - "lon": -1.9944955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK23 129" - } -}, -{ - "type": "node", - "id": 2773240590, - "lat": 53.3278521, - "lon": -2.0032800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SK23 126" - } -}, -{ - "type": "node", - "id": 2775319573, - "lat": 53.5841140, - "lon": -1.7907516, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2775391086, - "lat": 55.9581356, - "lon": -4.6455226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-06-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "238679792285613", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "G82 18D", - "royal_cypher": "scottish_crown", - "survey:date": "2023-05-24" - } -}, -{ - "type": "node", - "id": 2776247442, - "lat": 51.4748546, - "lon": -2.5858958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS7 1289", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2776285038, - "lat": 51.2122737, - "lon": -0.4415476, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2776293298, - "lat": 53.5409668, - "lon": -1.6093724, - "tags": { - "amenity": "post_box", - "ref": "S36 1530" - } -}, -{ - "type": "node", - "id": 2776375002, - "lat": 52.2606672, - "lon": 0.7101460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP32 2086D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2776811617, - "lat": 52.0639366, - "lon": 1.1470044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "IP1 1005", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2776817958, - "lat": 53.3003673, - "lon": -3.4134878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2776844145, - "lat": 53.3046064, - "lon": -3.4188991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2776844148, - "lat": 53.3019112, - "lon": -3.4176495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2777110507, - "lat": 52.6784547, - "lon": 0.4600098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2777559509, - "lat": 51.4540358, - "lon": -0.9742414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-07-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 2D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2777876787, - "lat": 52.6456855, - "lon": -1.4573042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CV13 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2778417586, - "lat": 52.3264623, - "lon": 0.5979774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP28 2155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2779147125, - "lat": 50.9248686, - "lon": -1.3853716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2779521951, - "lat": 55.9229199, - "lon": -3.0665372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH21 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2779858477, - "lat": 57.1669279, - "lon": -2.1184103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 42D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 2779870623, - "lat": 53.7341842, - "lon": -2.6699953, - "tags": { - "addr:city": "Preston", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2779916261, - "lat": 57.1689679, - "lon": -2.1225619, - "tags": { - "addr:country": "GB", - "addr:postcode": "AB24 4AQ", - "addr:street": "Tanfield Walk", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 171", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780048249, - "lat": 51.3273539, - "lon": -0.5616569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2780126605, - "lat": 56.3995044, - "lon": -3.4229695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "manufacturer": "McDowall, Steven & Co Ltd Falkirk", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2780126810, - "lat": 56.4828516, - "lon": -3.4153027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 201", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2780126859, - "lat": 56.5682944, - "lon": -3.3473595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH10 163", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780127095, - "lat": 56.4516834, - "lon": -3.4529705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 202", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2780127459, - "lat": 56.4172434, - "lon": -3.3949614, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 172D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2780221492, - "lat": 57.0836785, - "lon": -4.0454539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PH21 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780221519, - "lat": 57.0828678, - "lon": -4.0477659, - "tags": { - "amenity": "post_box", - "ref": "PH21 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780221528, - "lat": 57.0823548, - "lon": -4.0523047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH21 49", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780221530, - "lat": 57.0826976, - "lon": -4.0556819, - "tags": { - "amenity": "post_box", - "ref": "PH21 46", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780221531, - "lat": 57.0789445, - "lon": -4.0606267, - "tags": { - "amenity": "post_box", - "ref": "PH21 45", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780221544, - "lat": 57.0684431, - "lon": -4.1194709, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-03", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH20 34D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2780343243, - "lat": 55.9135646, - "lon": -3.0825862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH22 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2780671337, - "lat": 51.5437162, - "lon": -0.0471427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E9 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2781144075, - "lat": 57.1708930, - "lon": -2.1266006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2781176026, - "lat": 57.1719294, - "lon": -2.1316387, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB24 4DE", - "addr:street": "Society Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 170", - "royal_cypher": "no", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2781286441, - "lat": 57.1727683, - "lon": -2.1415970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB24 132", - "royal_cypher": "no", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2781833104, - "lat": 53.3462487, - "lon": -2.8560822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "post_box:type": "pillar", - "ref": "L24 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2782447977, - "lat": 51.4948454, - "lon": -2.6829743, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2782468664, - "lat": 52.3431381, - "lon": 0.5118364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP28 2276", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2783650863, - "lat": 51.7879338, - "lon": -1.4917755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2784651934, - "lat": 53.0705201, - "lon": -0.4097165, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2785839172, - "lat": 51.5176354, - "lon": -0.2272975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "W12 30" - } -}, -{ - "type": "node", - "id": 2785839173, - "lat": 51.5177301, - "lon": -0.1492856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Apertures are marked Stamped and Franked.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 34;W1G 234", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2785839178, - "lat": 51.5181964, - "lon": -0.2246057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mail:franked": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W10 44", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2785854132, - "lat": 57.1729663, - "lon": -2.1458958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "wide pillar box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "AB24 152", - "royal_cypher": "no", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2785958570, - "lat": 57.1702315, - "lon": -2.1489361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB16 151", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2786376292, - "lat": 57.1693373, - "lon": -2.1275302, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB24 4DT", - "addr:street": "Clifton Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; bing; gps" - } -}, -{ - "type": "node", - "id": 2786435782, - "lat": 57.1655790, - "lon": -2.1216755, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB24 4RA", - "addr:street": "Clifton Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2786469925, - "lat": 57.1631889, - "lon": -2.1173837, - "tags": { - "addr:city": "Aberdeen", - "addr:postcode": "AB24 4PX", - "addr:street": "Lilybank Place", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB24 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 2786612425, - "lat": 53.2308837, - "lon": -4.1215932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2786721131, - "lat": 50.3096801, - "lon": -3.8782398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2787371972, - "lat": 52.0097517, - "lon": -0.6043919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK43 393", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2787412336, - "lat": 52.0196396, - "lon": -0.6314741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2787412345, - "lat": 52.0316019, - "lon": -0.6443238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2787412351, - "lat": 52.0404068, - "lon": -0.6405718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK17 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2787412364, - "lat": 52.0431065, - "lon": -0.6365399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2788126085, - "lat": 52.0327154, - "lon": -0.7412816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2788126097, - "lat": 52.0334650, - "lon": -0.7528875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2788126118, - "lat": 52.0365334, - "lon": -0.7462978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2788615732, - "lat": 51.4666825, - "lon": -0.0854624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2789216159, - "lat": 51.5797113, - "lon": -2.0604531, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 333" - } -}, -{ - "type": "node", - "id": 2789260681, - "lat": 53.1390705, - "lon": -3.7994394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2789274359, - "lat": 51.3500578, - "lon": -0.2499350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT17 66;KT17 6601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2790331347, - "lat": 52.5811047, - "lon": 0.8780378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP25 3422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2790331511, - "lat": 52.5630666, - "lon": 0.9287091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "NR9 937", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2790331515, - "lat": 52.5698263, - "lon": 0.8977285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP25 3315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2790331540, - "lat": 52.5725861, - "lon": 0.8469076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2790331545, - "lat": 52.5734976, - "lon": 0.9138005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "Letters Only", - "post_box:design": "hovis", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "NR9 939", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2790331606, - "lat": 52.5714988, - "lon": 0.8241116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP25 3240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2790363664, - "lat": 51.5751710, - "lon": -2.0633643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN16 208" - } -}, -{ - "type": "node", - "id": 2790636764, - "lat": 53.1268514, - "lon": -4.1977168, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL55 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2791595362, - "lat": 51.5132342, - "lon": -0.1153836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2B 61;WC2B 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-03-29", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 2791595363, - "lat": 51.5132451, - "lon": -0.1154301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WC2B 62", - "royal_cypher": "no", - "survey:date": "2017-03-29" - } -}, -{ - "type": "node", - "id": 2791831754, - "lat": 51.5486880, - "lon": -0.0404471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E9 13;E9 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2792086005, - "lat": 53.6177163, - "lon": -1.7789640, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2792178257, - "lat": 53.4146110, - "lon": -1.4015970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S9 527", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2793607091, - "lat": 51.4955796, - "lon": -2.6035447, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 389", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2793874523, - "lat": 51.5119180, - "lon": -0.0854069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3V 317;EC3V 3171", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2794297938, - "lat": 53.5697495, - "lon": -2.3459634, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2794400416, - "lat": 53.3981835, - "lon": -2.0502591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SK6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2794869775, - "lat": 50.9946420, - "lon": -0.9465510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU31 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2794869777, - "lat": 50.9985732, - "lon": -0.9394795, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox has moved to Weald Way.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU31 146D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2795502169, - "lat": 51.7076542, - "lon": -0.6094451, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HP5 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2796741608, - "lat": 52.3890990, - "lon": -2.0045094, - "tags": { - "amenity": "post_box", - "ref": "B45 101", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2796741609, - "lat": 52.3915085, - "lon": -1.9977787, - "tags": { - "amenity": "post_box", - "ref": "B45 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2797065367, - "lat": 51.8890554, - "lon": -2.2016552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL3 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797077323, - "lat": 51.8859997, - "lon": -2.2080102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL3 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797087806, - "lat": 51.8869197, - "lon": -2.2144579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "operator": "Royal Mail", - "ref": "GL3 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797097173, - "lat": 51.8807040, - "lon": -2.2159909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "ref": "GL2 931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797104171, - "lat": 51.8782119, - "lon": -2.2169210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL2 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797144168, - "lat": 51.8687864, - "lon": -2.2267796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL1 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797145269, - "lat": 51.8709640, - "lon": -2.2220390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL2 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2797145270, - "lat": 51.8733828, - "lon": -2.2213127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL2 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797146554, - "lat": 51.8680642, - "lon": -2.2353339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2797186096, - "lat": 51.8613820, - "lon": -2.2464556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GL1 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 2797191573, - "lat": 51.8888393, - "lon": -2.1852074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL3 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797869763, - "lat": 51.4651998, - "lon": -2.5850965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS6 284D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2797870992, - "lat": 51.4662869, - "lon": -2.5802658, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 1002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2797922656, - "lat": 51.5519473, - "lon": -0.1976036, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2798729448, - "lat": 52.0498829, - "lon": -0.7575258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798729449, - "lat": 52.0527077, - "lon": -0.7568224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798738494, - "lat": 52.0570249, - "lon": -0.7525012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798778647, - "lat": 52.0605307, - "lon": -0.7672947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798778654, - "lat": 52.0627157, - "lon": -0.7651127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798778655, - "lat": 52.0640267, - "lon": -0.7619122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798778665, - "lat": 52.0654737, - "lon": -0.7598486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798778668, - "lat": 52.0663284, - "lon": -0.7711678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798778670, - "lat": 52.0663510, - "lon": -0.7628186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798810314, - "lat": 52.0697377, - "lon": -0.7662813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798810324, - "lat": 52.0702210, - "lon": -0.7576191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798853117, - "lat": 52.0735495, - "lon": -0.7457130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798853160, - "lat": 52.0766713, - "lon": -0.7452423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK14 616", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798853161, - "lat": 52.0769410, - "lon": -0.7544170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 160", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798853162, - "lat": 52.0779525, - "lon": -0.7430793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK14 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798853167, - "lat": 52.0805352, - "lon": -0.7493473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 585", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2798855391, - "lat": 52.0668425, - "lon": -0.7427442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800064377, - "lat": 53.1939098, - "lon": -0.6889038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN6 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2800562522, - "lat": 52.9895343, - "lon": -1.1579598, - "tags": { - "amenity": "post_box", - "building:levels": "0", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2800900749, - "lat": 51.9686209, - "lon": -0.8489576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 248", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900750, - "lat": 51.9721472, - "lon": -0.8788143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK17 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900751, - "lat": 51.9741983, - "lon": -0.8775979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900752, - "lat": 51.9810572, - "lon": -0.8847526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK17 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900754, - "lat": 51.9955106, - "lon": -0.9107172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900755, - "lat": 51.9959989, - "lon": -0.9162208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900756, - "lat": 51.9970713, - "lon": -0.9229636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900757, - "lat": 51.9985283, - "lon": -0.8249223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK17 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900759, - "lat": 52.0017633, - "lon": -0.8277865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800900760, - "lat": 52.0030939, - "lon": -0.8661452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2800920404, - "lat": 52.4022293, - "lon": 1.2719212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP20 7140", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2800920414, - "lat": 52.4315078, - "lon": 1.3388361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP20 7076" - } -}, -{ - "type": "node", - "id": 2800920427, - "lat": 52.4365487, - "lon": 1.3595980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7097", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2800920500, - "lat": 52.4859128, - "lon": 1.3119536, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2801211559, - "lat": 53.1824654, - "lon": -0.7068803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LN6 341", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2801344308, - "lat": 56.8175396, - "lon": -5.1054838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PH33 15" - } -}, -{ - "type": "node", - "id": 2801544256, - "lat": 52.6626052, - "lon": 1.6440834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2801799623, - "lat": 52.9795512, - "lon": -1.1786444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG6 720", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2802011106, - "lat": 51.4811995, - "lon": -2.7316495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BS20 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2802011322, - "lat": 51.4918669, - "lon": -2.6804092, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS11 302D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2803173766, - "lat": 50.9101028, - "lon": -0.7123425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO18 89", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO18 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-07-10" - } -}, -{ - "type": "node", - "id": 2803321368, - "lat": 56.2578393, - "lon": -2.6298728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "KY10 261D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2803321373, - "lat": 56.2230397, - "lon": -2.6900200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2803321374, - "lat": 56.2237965, - "lon": -2.6868697, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2803542433, - "lat": 53.7518551, - "lon": -2.4930683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB2 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2803771801, - "lat": 51.8894929, - "lon": -2.2759770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "ref": "GL2 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2804068213, - "lat": 51.5492425, - "lon": -0.0085975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E20 902D;E20 9028D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2804471216, - "lat": 51.1986886, - "lon": -3.1085817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2804726711, - "lat": 51.4782212, - "lon": -2.7538894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BS20 699", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2804826677, - "lat": 51.4764554, - "lon": -2.6993878, - "tags": { - "amenity": "post_box", - "ref": "BS20 582" - } -}, -{ - "type": "node", - "id": 2804890139, - "lat": 51.4797464, - "lon": -2.6925283, - "tags": { - "amenity": "post_box", - "ref": "BS20 544" - } -}, -{ - "type": "node", - "id": 2805652882, - "lat": 57.1421786, - "lon": -2.1013801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB11 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2807169420, - "lat": 51.4346758, - "lon": -2.8659749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "BS21 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2014-03-15" - } -}, -{ - "type": "node", - "id": 2807169446, - "lat": 51.4365430, - "lon": -2.8577916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "wall", - "ref": "BS21 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2014-03-17" - } -}, -{ - "type": "node", - "id": 2807169460, - "lat": 51.4370415, - "lon": -2.8490474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS21 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2015-12-21" - } -}, -{ - "type": "node", - "id": 2807169461, - "lat": 51.4371437, - "lon": -2.8548914, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-04", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "wall", - "ref": "BS21 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2807169464, - "lat": 51.4388636, - "lon": -2.8432212, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-18", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "BS21 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807169469, - "lat": 51.4396978, - "lon": -2.8526772, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS21 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807169474, - "lat": 51.4399993, - "lon": -2.8620433, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807169483, - "lat": 51.4403770, - "lon": -2.8575291, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-04", - "collection_times": "Mo-Fr 18:00, Sa 13:00", - "post_box:type": "wall", - "ref": "BS21 1120", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2807169488, - "lat": 51.4410119, - "lon": -2.8571180, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 1111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807169492, - "lat": 51.4412881, - "lon": -2.8533911, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BS21 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807169493, - "lat": 51.4416228, - "lon": -2.8481908, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807169495, - "lat": 51.4420276, - "lon": -2.8414793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2023-02-12", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS21 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807170008, - "lat": 51.4445304, - "lon": -2.8483865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "wall", - "ref": "BS21 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2014-03-17" - } -}, -{ - "type": "node", - "id": 2807170009, - "lat": 51.4451582, - "lon": -2.8578803, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-08", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "BS21 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807170010, - "lat": 51.4457046, - "lon": -2.8521442, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 13", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 2807170015, - "lat": 51.4479512, - "lon": -2.8455811, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807170016, - "lat": 51.4485827, - "lon": -2.8547639, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS21 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807170017, - "lat": 51.4486422, - "lon": -2.8502617, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2807170023, - "lat": 51.4508384, - "lon": -2.8483146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "wall", - "ref": "BS21 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2014-03-17" - } -}, -{ - "type": "node", - "id": 2807170024, - "lat": 51.4542775, - "lon": -2.8272276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807170025, - "lat": 51.4649060, - "lon": -2.7973715, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2807170029, - "lat": 51.4736937, - "lon": -2.7985219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807170058, - "lat": 51.4762852, - "lon": -2.7635547, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2807170059, - "lat": 51.4767713, - "lon": -2.7685328, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807170060, - "lat": 51.4800276, - "lon": -2.7914681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "priority", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807170062, - "lat": 51.4834944, - "lon": -2.7687204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS20 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807170063, - "lat": 51.4844256, - "lon": -2.7756564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS20 562D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807249425, - "lat": 51.4346942, - "lon": -0.3734817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "TW12 215" - } -}, -{ - "type": "node", - "id": 2807431825, - "lat": 51.4279305, - "lon": -2.5688148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS4 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2807547030, - "lat": 55.6154334, - "lon": -2.7991848, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2807547032, - "lat": 55.6123376, - "lon": -2.7651324, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2807547842, - "lat": 54.9394301, - "lon": -7.3841765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2807595306, - "lat": 50.5602064, - "lon": -3.4959349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ14 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2807656113, - "lat": 51.5666319, - "lon": -2.6493019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 50" - } -}, -{ - "type": "node", - "id": 2807656159, - "lat": 51.5736309, - "lon": -2.6593947, - "tags": { - "amenity": "post_box", - "ref": "BS35 4" - } -}, -{ - "type": "node", - "id": 2807671398, - "lat": 51.5112312, - "lon": -2.6295406, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 1056", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2807732742, - "lat": 51.1920419, - "lon": -3.1437195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2808300882, - "lat": 50.7366162, - "lon": -3.3200641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "ref": "EX11 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2808907152, - "lat": 55.8763216, - "lon": -3.1732049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 138", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2809029913, - "lat": 53.0342721, - "lon": -1.3587874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG16 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2809187043, - "lat": 55.5490620, - "lon": -1.9126301, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 62", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2809187045, - "lat": 55.5703243, - "lon": -1.8053541, - "tags": { - "amenity": "post_box", - "ref": "NE70 87", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2809720258, - "lat": 56.5714009, - "lon": -3.5886863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 212", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2810046326, - "lat": 51.4634425, - "lon": -0.3017822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-02-24", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW9 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2810205991, - "lat": 53.4440030, - "lon": -2.2185102, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "M14 284D" - } -}, -{ - "type": "node", - "id": 2810257682, - "lat": 53.4599118, - "lon": -2.2278566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-01-25", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M13 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2810260424, - "lat": 53.4669995, - "lon": -2.2342731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2810277842, - "lat": 53.4447292, - "lon": -2.2175237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2810277877, - "lat": 53.4516103, - "lon": -2.2220427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-01-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "293246189100360", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M14 256", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2020-08-12" - } -}, -{ - "type": "node", - "id": 2810423208, - "lat": 52.7523331, - "lon": 1.4200159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2810562720, - "lat": 53.3414412, - "lon": -3.0104331, - "tags": { - "amenity": "post_box", - "description": "EIIR type B post box CH63 538 by Carron Company at the corner of Beechway and Brimstage Road, Bebington.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Beechway, Bebington.jpg" - } -}, -{ - "type": "node", - "id": 2810773613, - "lat": 53.2973619, - "lon": -3.0809609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH64 483", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2810773868, - "lat": 53.2942596, - "lon": -3.0821196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "CH64 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2811004825, - "lat": 50.8433061, - "lon": -1.7652376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 72" - } -}, -{ - "type": "node", - "id": 2812158930, - "lat": 57.5504432, - "lon": -4.0102865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 87", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2813662545, - "lat": 50.8178258, - "lon": -1.5834343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2814668637, - "lat": 51.5332417, - "lon": -1.5941183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG17 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2814747516, - "lat": 53.2045642, - "lon": -1.1534546, - "tags": { - "amenity": "post_box", - "ref": "NG20 136" - } -}, -{ - "type": "node", - "id": 2814747519, - "lat": 53.2045754, - "lon": -1.1534409, - "tags": { - "amenity": "post_box", - "ref": "NG20 1360" - } -}, -{ - "type": "node", - "id": 2814863257, - "lat": 53.2099385, - "lon": -1.1462600, - "tags": { - "amenity": "post_box", - "ref": "NG20 48", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2815523601, - "lat": 51.9007703, - "lon": -2.0746512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "Upstairs post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2815525801, - "lat": 51.9007368, - "lon": -2.0746017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "collection_times_checked": "2016-02-22", - "note": "Downstairs post box; indoor plastic pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL50 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2815561780, - "lat": 53.2117628, - "lon": -1.2124505, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NG20 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2815640101, - "lat": 51.8969177, - "lon": -2.0759688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2815679401, - "lat": 51.8997740, - "lon": -2.0728366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "GL50 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2816086352, - "lat": 53.2147026, - "lon": -1.1464734, - "tags": { - "amenity": "post_box", - "ref": "NG20 49" - } -}, -{ - "type": "node", - "id": 2816560505, - "lat": 50.8499023, - "lon": -2.6375689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 10:00", - "post_box:type": "wall", - "ref": "DT2 12", - "ref:GB:uprn": "10015353025", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2817438914, - "lat": 50.7956293, - "lon": -1.1064533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-06-12", - "check_date:ref": "2022-06-12", - "collection_times": "Mo-Fr 16:30; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO1 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2817588801, - "lat": 51.8768600, - "lon": -2.2031211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "ref": "GL2 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2817599901, - "lat": 51.8735557, - "lon": -2.2030873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "ref": "GL2 116", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2817613201, - "lat": 51.8725316, - "lon": -2.2090490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "ref": "GL2 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2817714701, - "lat": 51.8654474, - "lon": -2.2389062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "GL1 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-13" - } -}, -{ - "type": "node", - "id": 2817906476, - "lat": 52.4812086, - "lon": 1.6239261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2818085301, - "lat": 51.8618287, - "lon": -2.2498836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2818147701, - "lat": 51.8594923, - "lon": -2.2416545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL1 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2818185201, - "lat": 51.8636148, - "lon": -2.2366436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GL1 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2818207701, - "lat": 51.8634821, - "lon": -2.2421445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "GL1 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2818264294, - "lat": 52.2540091, - "lon": -0.6727597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2818264298, - "lat": 52.2560093, - "lon": -0.6700111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2818264300, - "lat": 52.2573184, - "lon": -0.6715066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262327, - "lat": 52.9311483, - "lon": -1.1261004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG2 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262328, - "lat": 52.9311478, - "lon": -1.1261227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG2 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262337, - "lat": 52.9313132, - "lon": -1.1406444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262364, - "lat": 52.9327699, - "lon": -1.1326828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG2 162", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262391, - "lat": 52.9345188, - "lon": -1.1211888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 155D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262392, - "lat": 52.9349725, - "lon": -1.1272752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG2 207", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262395, - "lat": 52.9358589, - "lon": -1.1325363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mail:franked": "only", - "opening_hours": "Mo-Fr 12:30-18:00", - "post_box:type": "meter", - "ref": "NG2 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819262396, - "lat": 52.9358635, - "lon": -1.1325585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG2 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819563501, - "lat": 51.5703358, - "lon": -4.0079433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2819565101, - "lat": 55.7672400, - "lon": -3.9387390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2819581413, - "lat": 51.6579233, - "lon": -1.5847081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN7 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2819585401, - "lat": 50.5611860, - "lon": -3.5047280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 2819633672, - "lat": 53.4644740, - "lon": -2.2230527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M12 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2819633673, - "lat": 53.4655447, - "lon": -2.2182595, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 2820148839, - "lat": 51.3735693, - "lon": -0.4262307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT13 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2820287578, - "lat": 50.9113233, - "lon": -0.7535117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 91D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2820458362, - "lat": 55.9030949, - "lon": -3.6399875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH48 19D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2821028647, - "lat": 52.6008287, - "lon": 1.1758990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR9 905", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2821364293, - "lat": 53.1862184, - "lon": -4.2070681, - "tags": { - "addr:city": "Y Felinheli", - "addr:postcode": "LL56 4JH", - "addr:street": "Port Terrace", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL56 248", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2821419498, - "lat": 53.1840683, - "lon": -4.2094844, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2821964575, - "lat": 54.6015065, - "lon": -3.1384357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2822462073, - "lat": 50.6177903, - "lon": -3.4178572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 599D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2822584484, - "lat": 51.4382883, - "lon": -0.9708712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "post_box:type": "meter", - "ref": "RG2 655", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2823281005, - "lat": 51.7026321, - "lon": -2.2166792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL5 28D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 2824236749, - "lat": 52.3894919, - "lon": -2.0178313, - "tags": { - "amenity": "post_box", - "ref": "B45 95", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2824526455, - "lat": 51.5246353, - "lon": -0.1843486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "W9 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2824877773, - "lat": 55.9719025, - "lon": -3.2631348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 435", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2825345685, - "lat": 54.0614811, - "lon": -1.7007579, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2825517414, - "lat": 52.9702623, - "lon": -1.1417211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG3 76", - "ref:GB:uprn": "10015312153", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2825867226, - "lat": 50.7894152, - "lon": -1.9773750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "252628253219261", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH21 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-17" - } -}, -{ - "type": "node", - "id": 2826283809, - "lat": 52.7685705, - "lon": -1.1958850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE11 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2826540781, - "lat": 53.2020166, - "lon": -1.1522603, - "tags": { - "amenity": "post_box", - "ref": "NG20 101" - } -}, -{ - "type": "node", - "id": 2826551101, - "lat": 53.2076956, - "lon": -1.1521986, - "tags": { - "amenity": "post_box", - "ref": "NG20 220" - } -}, -{ - "type": "node", - "id": 2826556970, - "lat": 53.2230084, - "lon": -1.1257818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "ref": "NG20 127", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2826569491, - "lat": 53.2209193, - "lon": -1.1372050, - "tags": { - "amenity": "post_box", - "ref": "NG20 42", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2826585838, - "lat": 53.2043848, - "lon": -1.1483040, - "tags": { - "amenity": "post_box", - "ref": "NG20 174" - } -}, -{ - "type": "node", - "id": 2826608331, - "lat": 53.2010928, - "lon": -1.1487841, - "tags": { - "amenity": "post_box", - "ref": "NG20 129" - } -}, -{ - "type": "node", - "id": 2826648564, - "lat": 53.2372676, - "lon": -1.2062236, - "tags": { - "amenity": "post_box", - "ref": "NG20 126" - } -}, -{ - "type": "node", - "id": 2826683256, - "lat": 53.2412614, - "lon": -1.1451444, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NG20 14" - } -}, -{ - "type": "node", - "id": 2827214833, - "lat": 53.2238400, - "lon": -1.0762016, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NG22 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2827336547, - "lat": 53.2050588, - "lon": -1.1825534, - "tags": { - "amenity": "post_box", - "ref": "NG20 83" - } -}, -{ - "type": "node", - "id": 2827337485, - "lat": 53.2038843, - "lon": -1.2126557, - "tags": { - "amenity": "post_box", - "ref": "NG20 77" - } -}, -{ - "type": "node", - "id": 2827388316, - "lat": 53.1670151, - "lon": -1.9091547, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2827522361, - "lat": 53.2069688, - "lon": -1.2242643, - "tags": { - "amenity": "post_box", - "ref": "NG20 202" - } -}, -{ - "type": "node", - "id": 2827564825, - "lat": 53.2081367, - "lon": -1.2194041, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NG20 203", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 2827564826, - "lat": 53.1936365, - "lon": -1.1386322, - "tags": { - "amenity": "post_box", - "ref": "NG20 28" - } -}, -{ - "type": "node", - "id": 2827567753, - "lat": 53.2031999, - "lon": -1.2289635, - "tags": { - "amenity": "post_box", - "ref": "NG20 198" - } -}, -{ - "type": "node", - "id": 2827596225, - "lat": 53.2353516, - "lon": -1.1557821, - "tags": { - "amenity": "post_box", - "ref": "NG20 67" - } -}, -{ - "type": "node", - "id": 2828430407, - "lat": 53.2041127, - "lon": -1.2057174, - "tags": { - "amenity": "post_box", - "ref": "NG20 51" - } -}, -{ - "type": "node", - "id": 2828431432, - "lat": 53.2032726, - "lon": -1.2190882, - "tags": { - "amenity": "post_box", - "ref": "NG20 111" - } -}, -{ - "type": "node", - "id": 2828434156, - "lat": 53.2279184, - "lon": -1.2016512, - "tags": { - "amenity": "post_box", - "ref": "NG20 156" - } -}, -{ - "type": "node", - "id": 2828696028, - "lat": 53.2221859, - "lon": -1.2104569, - "tags": { - "amenity": "post_box", - "ref": "NG20 106" - } -}, -{ - "type": "node", - "id": 2828844579, - "lat": 53.2425531, - "lon": -1.2244470, - "tags": { - "amenity": "post_box", - "ref": "NG20 39" - } -}, -{ - "type": "node", - "id": 2828879377, - "lat": 53.1977519, - "lon": -1.2244366, - "tags": { - "amenity": "post_box", - "ref": "NG20 30" - } -}, -{ - "type": "node", - "id": 2828879379, - "lat": 53.1967350, - "lon": -1.2166124, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NG20 10" - } -}, -{ - "type": "node", - "id": 2829660987, - "lat": 51.6156256, - "lon": -0.7192458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "HP11 36" - } -}, -{ - "type": "node", - "id": 2830160573, - "lat": 55.8994053, - "lon": -3.5025262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 16D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2830346075, - "lat": 52.0274242, - "lon": 0.7516829, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2830346076, - "lat": 52.0294497, - "lon": 0.7473961, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2830370673, - "lat": 53.3865681, - "lon": -1.5120587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 733", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2830385967, - "lat": 52.0209169, - "lon": 0.7655132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO10 1059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2830993723, - "lat": 51.6695060, - "lon": -1.0677512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2831072588, - "lat": 51.6976307, - "lon": -0.9163788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2831321471, - "lat": 51.5165729, - "lon": -0.1472840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1U 84;W1U 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2831683144, - "lat": 51.5706393, - "lon": -0.6037419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 47" - } -}, -{ - "type": "node", - "id": 2832262202, - "lat": 53.2527973, - "lon": -0.9916682, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN22 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2832268280, - "lat": 53.2466140, - "lon": -0.9847491, - "tags": { - "amenity": "post_box", - "ref": "DN22 27" - } -}, -{ - "type": "node", - "id": 2832775536, - "lat": 51.0251914, - "lon": -0.7879520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "GU29 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2833593959, - "lat": 53.1284091, - "lon": -1.9175694, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2834127365, - "lat": 52.0424200, - "lon": -0.7820240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK13 611", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127366, - "lat": 52.0498533, - "lon": -0.7741361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK13 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127367, - "lat": 52.0526187, - "lon": -0.7746069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127368, - "lat": 52.0547802, - "lon": -0.7896299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK13 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127369, - "lat": 52.0548295, - "lon": -0.7748125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127370, - "lat": 52.0553881, - "lon": -0.7966828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK13 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127372, - "lat": 52.0579985, - "lon": -0.7948846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK13 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2834127373, - "lat": 52.0642308, - "lon": -0.7900217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK13 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835510016, - "lat": 51.9097753, - "lon": -0.8069356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK18 56", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835510017, - "lat": 51.9179816, - "lon": -0.8271149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK18 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835644025, - "lat": 51.8981104, - "lon": -0.9264284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835644026, - "lat": 51.8990047, - "lon": -0.8820942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835644027, - "lat": 51.9184738, - "lon": -0.8854011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK18 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835644028, - "lat": 51.9225616, - "lon": -0.8863400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2835802020, - "lat": 50.7824541, - "lon": -1.1451307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO12 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2835802021, - "lat": 50.7802528, - "lon": -1.1316687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO12 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2835802022, - "lat": 50.7927572, - "lon": -1.1848488, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "PO13 65", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2835881834, - "lat": 56.3898522, - "lon": -5.5169741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:45", - "operator": "Royal Mail", - "ref": "PA34 164" - } -}, -{ - "type": "node", - "id": 2836192750, - "lat": 56.1491845, - "lon": -3.8879579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FK9 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2836548115, - "lat": 53.2326548, - "lon": -1.0292575, - "tags": { - "amenity": "post_box", - "ref": "NG22 102", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2836664262, - "lat": 53.2279794, - "lon": -0.9808723, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG22 145", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2836711123, - "lat": 53.2146658, - "lon": -0.9684879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG22 187" - } -}, -{ - "type": "node", - "id": 2836762203, - "lat": 53.2459124, - "lon": -0.9548317, - "tags": { - "amenity": "post_box", - "ref": "NG22 27", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2836887036, - "lat": 51.2019555, - "lon": -0.9804343, - "tags": { - "amenity": "post_box", - "fixme": "details", - "source": "seen while cycling" - } -}, -{ - "type": "node", - "id": 2836935580, - "lat": 52.2521555, - "lon": -1.9368943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00; Su off", - "post_box:type": "lamp", - "ref": "B96 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2837355992, - "lat": 53.2510422, - "lon": -0.9329380, - "tags": { - "amenity": "post_box", - "ref": "NG22 52", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2837360868, - "lat": 53.2527674, - "lon": -0.9195672, - "tags": { - "amenity": "post_box", - "ref": "NG22 225", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2837366213, - "lat": 53.2449816, - "lon": -0.9186298, - "tags": { - "amenity": "post_box", - "ref": "NG22 69", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2837478250, - "lat": 51.4628496, - "lon": -2.5093020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "BS15 2458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2837478252, - "lat": 51.4725494, - "lon": -2.5252013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2837751763, - "lat": 52.9554821, - "lon": -1.1870701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG8 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 2837751764, - "lat": 52.9578193, - "lon": -1.2405489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2837751780, - "lat": 52.9605967, - "lon": -1.2386003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 382", - "ref:GB:uprn": "10015835648", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2837751782, - "lat": 52.9665042, - "lon": -1.2239558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 250D", - "ref:GB:uprn": "10015454648", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2837751783, - "lat": 52.9703236, - "lon": -1.2288894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG8 383", - "ref:GB:uprn": "10015435943", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2837877453, - "lat": 51.5527867, - "lon": -0.1986118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW6 61" - } -}, -{ - "type": "node", - "id": 2838052494, - "lat": 52.9679414, - "lon": -0.9738533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "NG13 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838126633, - "lat": 51.5533661, - "lon": -0.2024894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW6 50", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 2838284022, - "lat": 51.5497922, - "lon": -0.4837891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "ref": "UB8 32" - } -}, -{ - "type": "node", - "id": 2838302769, - "lat": 51.5474485, - "lon": -0.4805832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "ref": "UB8 1" - } -}, -{ - "type": "node", - "id": 2838465210, - "lat": 50.8527948, - "lon": -1.2939819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838618929, - "lat": 51.0395246, - "lon": -1.6121592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "SP5 97", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2838625025, - "lat": 57.7868999, - "lon": -5.6566818, - "tags": { - "amenity": "post_box", - "ref": "IV22 227", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2838625033, - "lat": 57.8534562, - "lon": -5.6932671, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV22 228", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2838625392, - "lat": 57.8019348, - "lon": -5.6687571, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2838625393, - "lat": 57.7653969, - "lon": -5.6043825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "note": "or IV22 283? hard to read", - "post_box:type": "pillar", - "ref": "IV22 263", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2838713858, - "lat": 51.4038927, - "lon": -2.5681493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "BS14 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838713865, - "lat": 51.4050228, - "lon": -2.5520241, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS14 443" - } -}, -{ - "type": "node", - "id": 2838714030, - "lat": 51.4317772, - "lon": -2.5462781, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS4 105" - } -}, -{ - "type": "node", - "id": 2838719501, - "lat": 51.9816941, - "lon": 0.9612761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838719517, - "lat": 52.0075201, - "lon": 0.9614969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838729363, - "lat": 51.9892814, - "lon": 0.8950159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "CO6 228", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2838729371, - "lat": 52.0069406, - "lon": 0.9253917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP7 1244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838732829, - "lat": 51.9912939, - "lon": 0.8886203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO6 402D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2838737543, - "lat": 51.3995469, - "lon": -2.6374963, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS41 674" - } -}, -{ - "type": "node", - "id": 2838737569, - "lat": 51.4051956, - "lon": -2.6383932, - "tags": { - "amenity": "post_box", - "mapillary": "489808072169638", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BS41 275", - "survey:date": "2019-06-23" - } -}, -{ - "type": "node", - "id": 2838737577, - "lat": 51.4112869, - "lon": -2.6292474, - "tags": { - "amenity": "post_box", - "ref": "BS13 77" - } -}, -{ - "type": "node", - "id": 2838749013, - "lat": 51.9718872, - "lon": 0.7754350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "note": "Ludlow plate, but appears to be a custom box. Modern collection plate appears in nearby window.", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO8 326", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2838749162, - "lat": 51.9723474, - "lon": 0.8699025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "CO6 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2839124577, - "lat": 53.1917363, - "lon": -2.8924145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria reproduction Penfold post box CH1 436 at Chester Town Hall. Plate dates casting to 1988.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "CH1 436D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box at Chester Town Hall" - } -}, -{ - "type": "node", - "id": 2839782720, - "lat": 52.9457443, - "lon": 1.0386645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR25 2537", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2840316446, - "lat": 57.7405493, - "lon": -5.7641872, - "tags": { - "amenity": "post_box", - "ref": "IV21 214", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2840316450, - "lat": 57.7471374, - "lon": -5.7745590, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV21 226", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2840316451, - "lat": 57.7617767, - "lon": -5.7947843, - "tags": { - "amenity": "post_box", - "ref": "IV21 248", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2840317222, - "lat": 57.8108427, - "lon": -5.8017700, - "tags": { - "amenity": "post_box", - "ref": "IV21 254", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2840317516, - "lat": 57.7273682, - "lon": -5.6905807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV21 224", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2840970471, - "lat": 56.5029642, - "lon": -6.8068103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA77 148", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2841725218, - "lat": 52.5186366, - "lon": 1.0272219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2841725230, - "lat": 52.5195270, - "lon": 1.0471074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1744", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2841805210, - "lat": 52.5018218, - "lon": 1.1156165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2841805266, - "lat": 52.4891079, - "lon": 1.1135914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR16 1623D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2841805274, - "lat": 52.4652526, - "lon": 1.1430750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1610", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2842773972, - "lat": 53.1197088, - "lon": -1.1202830, - "tags": { - "amenity": "post_box", - "ref": "NG21 84" - } -}, -{ - "type": "node", - "id": 2842775183, - "lat": 53.1141292, - "lon": -1.1169732, - "tags": { - "amenity": "post_box", - "ref": "NG21 196" - } -}, -{ - "type": "node", - "id": 2842780497, - "lat": 53.1173552, - "lon": -1.1231530, - "tags": { - "amenity": "post_box", - "ref": "NG21 135" - } -}, -{ - "type": "node", - "id": 2842801841, - "lat": 53.1131534, - "lon": -1.1031060, - "tags": { - "amenity": "post_box", - "ref": "NG21 109" - } -}, -{ - "type": "node", - "id": 2842803951, - "lat": 53.1140068, - "lon": -1.1104124, - "tags": { - "amenity": "post_box", - "ref": "NG21 205" - } -}, -{ - "type": "node", - "id": 2842815646, - "lat": 53.1186157, - "lon": -1.0976182, - "tags": { - "amenity": "post_box", - "ref": "NG21 206" - } -}, -{ - "type": "node", - "id": 2842880244, - "lat": 53.1190391, - "lon": -1.1068531, - "tags": { - "amenity": "post_box", - "ref": "NG21 15" - } -}, -{ - "type": "node", - "id": 2842886238, - "lat": 53.1183180, - "lon": -1.1120621, - "tags": { - "amenity": "post_box", - "ref": "NG21 91" - } -}, -{ - "type": "node", - "id": 2842925124, - "lat": 53.1015071, - "lon": -1.1066090, - "tags": { - "amenity": "post_box", - "ref": "NG21 192" - } -}, -{ - "type": "node", - "id": 2842932969, - "lat": 53.0952648, - "lon": -1.1229867, - "tags": { - "amenity": "post_box", - "ref": "NG21 107" - } -}, -{ - "type": "node", - "id": 2843756553, - "lat": 51.4304023, - "lon": -2.6588508, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS41 51D" - } -}, -{ - "type": "node", - "id": 2843756554, - "lat": 51.4327770, - "lon": -2.6560151, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS41 353D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2843756555, - "lat": 51.4329511, - "lon": -2.6499787, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS41 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2843756556, - "lat": 51.4360649, - "lon": -2.6459402, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS41 324", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2843841040, - "lat": 53.0867980, - "lon": -1.1207022, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NG21 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2843842743, - "lat": 53.0948306, - "lon": -1.1266554, - "tags": { - "amenity": "post_box", - "ref": "NG21 55" - } -}, -{ - "type": "node", - "id": 2843850668, - "lat": 53.1604239, - "lon": -1.1233351, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG21 115" - } -}, -{ - "type": "node", - "id": 2843865452, - "lat": 53.1653013, - "lon": -1.1102325, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NG21 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2844008287, - "lat": 52.4230432, - "lon": 1.1545246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP22 7104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2844008418, - "lat": 52.4269164, - "lon": 1.1492970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7029", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2844034985, - "lat": 52.4052354, - "lon": 1.1415275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2844154601, - "lat": 52.9012170, - "lon": -2.1455860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2844898622, - "lat": 52.3813300, - "lon": 1.1116687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2844898649, - "lat": 52.3749632, - "lon": 1.1041572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7424D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2844961928, - "lat": 52.3658006, - "lon": 1.0437089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2845583230, - "lat": 51.8886536, - "lon": 0.2612083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:design": "indoor", - "post_box:location": "Concourse", - "post_box:type": "pillar", - "ref": "CM24 3682", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2846125676, - "lat": 53.1772579, - "lon": -1.0991110, - "tags": { - "amenity": "post_box", - "ref": "NG21 97" - } -}, -{ - "type": "node", - "id": 2846225568, - "lat": 53.1946256, - "lon": -1.0642985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG21 137" - } -}, -{ - "type": "node", - "id": 2846417617, - "lat": 52.0045801, - "lon": -2.2181316, - "tags": { - "amenity": "post_box", - "ref": "GL20 335" - } -}, -{ - "type": "node", - "id": 2846417621, - "lat": 52.0093797, - "lon": -2.2017382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2846589131, - "lat": 51.5275546, - "lon": -1.7939616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "SN4", - "ref": "SN4 337" - } -}, -{ - "type": "node", - "id": 2847570232, - "lat": 53.2386350, - "lon": -0.8006396, - "tags": { - "amenity": "post_box", - "ref": "NG22 166", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2847573010, - "lat": 53.2158102, - "lon": -0.7948943, - "tags": { - "amenity": "post_box", - "ref": "NG22 49", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2848096601, - "lat": 52.0581368, - "lon": 1.1774540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP4 1040", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2848105801, - "lat": 52.0575015, - "lon": 1.1576439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP4 1346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2848431337, - "lat": 52.3367453, - "lon": -1.5858977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV8 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2848854065, - "lat": 52.3016235, - "lon": -0.6954568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 64", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2849067574, - "lat": 51.5112579, - "lon": -0.1432503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1S 63;W1S 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2849067592, - "lat": 51.5376775, - "lon": -0.1937637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NW6 41", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2850072037, - "lat": 52.0179202, - "lon": -0.7417682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2850072038, - "lat": 52.0230765, - "lon": -0.7454497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2850072039, - "lat": 52.0249174, - "lon": -0.7460040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2850072040, - "lat": 52.0281014, - "lon": -0.7524518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK6 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2850916875, - "lat": 50.6298923, - "lon": -3.3388086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 2850928326, - "lat": 55.5818462, - "lon": -1.6538846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NE68 144", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2851002702, - "lat": 54.3135605, - "lon": -2.1863732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL8 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2851373535, - "lat": 52.9671038, - "lon": -1.2356351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2851751582, - "lat": 54.0492716, - "lon": -0.9240703, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2851769743, - "lat": 51.6036772, - "lon": -0.4797460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "UB9 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2851772355, - "lat": 51.6208906, - "lon": -0.4449171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD3 70", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2851778293, - "lat": 54.0701385, - "lon": -0.9188620, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2851983228, - "lat": 50.8615306, - "lon": -0.6210094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2852774969, - "lat": 54.6630970, - "lon": -2.7589560, - "tags": { - "amenity": "post_box", - "ref": "CA11 34" - } -}, -{ - "type": "node", - "id": 2855041774, - "lat": 53.3311651, - "lon": -0.9634237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DN22 94", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2855653961, - "lat": 52.6016638, - "lon": 1.1678576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 911D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2855674902, - "lat": 52.9804841, - "lon": -1.1362731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG3 225", - "ref:GB:uprn": "10015433257", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2856253992, - "lat": 56.0341315, - "lon": -3.4797055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY11 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2856460626, - "lat": 56.2363127, - "lon": -3.1505351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 415D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2856481852, - "lat": 56.2556489, - "lon": -3.0915760, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY15 292", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2856919424, - "lat": 56.3477276, - "lon": -3.2488075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY14 337D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2856919426, - "lat": 56.3491517, - "lon": -3.2394844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY14 333D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2856957961, - "lat": 56.3407013, - "lon": -3.2111203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "KY14 329D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857019878, - "lat": 53.2878043, - "lon": -3.3890752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL18 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2857463823, - "lat": 56.3148012, - "lon": -3.1353475, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "KY15 317", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857477258, - "lat": 56.3386839, - "lon": -3.1909595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY14 335D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857498510, - "lat": 56.3176773, - "lon": -3.1218324, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY15 308", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857498512, - "lat": 56.2874335, - "lon": -3.1485555, - "tags": { - "amenity": "post_box", - "ref": "KY15 303", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857498520, - "lat": 56.2804327, - "lon": -3.2142511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Co. Falkirk.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY14 313D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857540454, - "lat": 56.1368949, - "lon": -3.1884216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857540455, - "lat": 56.1297949, - "lon": -3.1857195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 127D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857540457, - "lat": 56.1293085, - "lon": -3.1781724, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY2 401", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857540484, - "lat": 56.1248045, - "lon": -3.1948791, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY2 134D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857540493, - "lat": 56.1363216, - "lon": -3.1778026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 155", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2857540494, - "lat": 56.1342466, - "lon": -3.1739562, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY2 64", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2858574795, - "lat": 53.3654204, - "lon": -1.4643168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S2 359", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2858904645, - "lat": 53.1945646, - "lon": -1.0592920, - "tags": { - "amenity": "post_box", - "ref": "NG21 189", - "ref:usrn": "10015401849", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2858960820, - "lat": 51.8813934, - "lon": -1.8907374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL54 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2860250663, - "lat": 51.5275892, - "lon": -0.1896618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2860250672, - "lat": 51.5278172, - "lon": -0.1909096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2860251054, - "lat": 51.5294575, - "lon": -0.1891423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2860425463, - "lat": 50.7926813, - "lon": -3.5749986, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2860539149, - "lat": 53.3606259, - "lon": -1.4817411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S7 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2860600898, - "lat": 50.7946876, - "lon": -1.1294957, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "wall", - "ref": "PO12 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2860605004, - "lat": 50.7940552, - "lon": -1.1322342, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO12 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2860706101, - "lat": 52.2215650, - "lon": -1.8165836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2862948188, - "lat": 51.4176297, - "lon": -0.8652271, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2863159165, - "lat": 51.8635027, - "lon": -1.9830934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2863159400, - "lat": 51.8675220, - "lon": -1.9900142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2863869340, - "lat": 52.6161622, - "lon": 1.0427704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR9 927", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2863869377, - "lat": 52.6494292, - "lon": 1.0548440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2863890490, - "lat": 52.7712550, - "lon": -1.2047011, - "tags": { - "amenity": "post_box", - "location": "Inside Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE11 188", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2864590303, - "lat": 53.1390459, - "lon": 0.3436894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE25 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2864591912, - "lat": 51.5037718, - "lon": -2.6024722, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 1105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2864655124, - "lat": 52.7162014, - "lon": -1.1052920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE7 294", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2864841725, - "lat": 52.1391482, - "lon": 0.0715187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "in pillar/gate-post", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 357", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2866083143, - "lat": 53.0524679, - "lon": -4.2642941, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2866721558, - "lat": 51.3579345, - "lon": -0.2090865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM1 89" - } -}, -{ - "type": "node", - "id": 2866721559, - "lat": 51.3584289, - "lon": -0.2028384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SM1 62" - } -}, -{ - "type": "node", - "id": 2867175332, - "lat": 53.2905005, - "lon": -2.4643220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2868202333, - "lat": 51.1028374, - "lon": -3.0636278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2868227088, - "lat": 51.1201754, - "lon": -3.1209747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2868672675, - "lat": 54.5178756, - "lon": -6.0781284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "SuperValu Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2868811053, - "lat": 51.6418670, - "lon": -2.6751702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-06-29" - } -}, -{ - "type": "node", - "id": 2868811054, - "lat": 51.6964696, - "lon": -2.6783713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NP16 426D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2868811057, - "lat": 51.8109384, - "lon": -2.7175501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NP25 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2868821975, - "lat": 53.4507809, - "lon": -2.2285848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M14 477", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2869227134, - "lat": 50.8729933, - "lon": -2.9635185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "mapillary": "505068104740157", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 2869230201, - "lat": 56.3956964, - "lon": -3.5401237, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2023-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH1 83D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2869230601, - "lat": 56.4202840, - "lon": -3.5164150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 221D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2869231401, - "lat": 56.4078080, - "lon": -3.5014738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH1 71D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2869231467, - "lat": 56.3964680, - "lon": -3.4142040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 219D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2869234129, - "lat": 56.4073490, - "lon": -3.4874357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH1 130D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2869235901, - "lat": 56.4037650, - "lon": -3.4242350, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2869236901, - "lat": 56.4101360, - "lon": -3.4293140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2869567171, - "lat": 53.1553150, - "lon": -1.4667501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "S45 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2870428399, - "lat": 51.3968993, - "lon": -0.6419207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "ref": "SL5 35" - } -}, -{ - "type": "node", - "id": 2870698686, - "lat": 53.5419312, - "lon": -2.5425701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2871362103, - "lat": 52.4354994, - "lon": -1.6422959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV7 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2871362115, - "lat": 52.4366413, - "lon": -1.6466959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV7 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2871362125, - "lat": 52.4382308, - "lon": -1.6494554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV7 442D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2871380226, - "lat": 52.0602917, - "lon": 0.9161589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "IP7 1194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2871518820, - "lat": 52.0632492, - "lon": 0.8764216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "IP7 1278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2872419600, - "lat": 56.0027570, - "lon": -4.5839616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G83 39D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2872669170, - "lat": 51.4575530, - "lon": -1.0112137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2872872924, - "lat": 50.6093211, - "lon": -3.6541575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 2872876459, - "lat": 50.6157314, - "lon": -3.6542823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2872983154, - "lat": 52.9173935, - "lon": -0.7581800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NG32 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2874368529, - "lat": 52.8981994, - "lon": -0.7570846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG32 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2874557868, - "lat": 53.5501827, - "lon": -2.4938498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "BL5 204", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2875142394, - "lat": 52.5342957, - "lon": 1.0883060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1826", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2875142395, - "lat": 52.4917021, - "lon": 1.1328773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2876024597, - "lat": 52.4394598, - "lon": -1.6413755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2876142634, - "lat": 52.6517198, - "lon": -2.8739894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY5 326" - } -}, -{ - "type": "node", - "id": 2876691893, - "lat": 52.2715634, - "lon": -1.8092830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2876966587, - "lat": 52.6131176, - "lon": -1.1938461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "LE19 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2876966588, - "lat": 52.6131572, - "lon": -1.1938456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45, Sa 09:00", - "mail:meter": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 12:00-19:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LE19 858", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2876968521, - "lat": 52.7564952, - "lon": -1.1190479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LE12 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2877558029, - "lat": 52.5425839, - "lon": 0.9548321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1716", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2878505177, - "lat": 51.4620282, - "lon": -0.2959853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2878505179, - "lat": 51.4611106, - "lon": -0.2991162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW9 7D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2878505180, - "lat": 51.4629763, - "lon": -0.2913061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2878505182, - "lat": 51.4629114, - "lon": -0.2992315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2878505183, - "lat": 51.4651578, - "lon": -0.2972751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2878505184, - "lat": 51.4652860, - "lon": -0.2994681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2878505185, - "lat": 51.4668104, - "lon": -0.2972761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 20" - } -}, -{ - "type": "node", - "id": 2878505186, - "lat": 51.4664589, - "lon": -0.2954263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2878505187, - "lat": 51.4676166, - "lon": -0.2909714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 12D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2878505188, - "lat": 51.4707765, - "lon": -0.2934039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 18D" - } -}, -{ - "type": "node", - "id": 2878505189, - "lat": 51.4730404, - "lon": -0.2905973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2878505190, - "lat": 51.4788901, - "lon": -0.2899647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2878505191, - "lat": 51.4792261, - "lon": -0.2847890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2878505192, - "lat": 51.4814837, - "lon": -0.2849363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2878505193, - "lat": 51.4816104, - "lon": -0.2877669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 61", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2878505194, - "lat": 51.4749161, - "lon": -0.2796097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2878505195, - "lat": 51.4838148, - "lon": -0.2894172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW9 134D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 2878636497, - "lat": 53.2504080, - "lon": -1.3664709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2878929241, - "lat": 53.5029412, - "lon": -2.4168718, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2879526124, - "lat": 53.4853701, - "lon": -0.9864056, - "tags": { - "amenity": "post_box", - "ref": "DN9 311" - } -}, -{ - "type": "node", - "id": 2879864083, - "lat": 52.2753249, - "lon": -1.7825843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:35; Sa 08:40", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B95 1107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2880177758, - "lat": 50.9249518, - "lon": -1.4032820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 117D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2880348021, - "lat": 57.1437217, - "lon": -2.1723964, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 8EQ", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 519", - "royal_cypher": "no", - "source": "survey; gps; bing" - } -}, -{ - "type": "node", - "id": 2881191201, - "lat": 51.8658780, - "lon": -2.2312042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GL1 1001", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2881389003, - "lat": 52.4852002, - "lon": 0.5286660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881389072, - "lat": 52.4915036, - "lon": 0.5373785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:25; Sa 07:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881389120, - "lat": 52.4879669, - "lon": 0.5235205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:35; Sa 09:15", - "fixme": "Is this box still here?", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2881429889, - "lat": 52.5333672, - "lon": 0.4785759, - "tags": { - "amenity": "post_box", - "note": "Collection plate missing 2014-05-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881430578, - "lat": 52.5250918, - "lon": 0.5218442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP26 3374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881456921, - "lat": 52.5221870, - "lon": 0.5425077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP26 3383", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2881516925, - "lat": 52.5368024, - "lon": 0.5562649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881516944, - "lat": 52.5227766, - "lon": 0.5552819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881517176, - "lat": 52.5232354, - "lon": 0.5531735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881559619, - "lat": 52.5418260, - "lon": 0.5802984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP26 3380D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2881559640, - "lat": 52.5457149, - "lon": 0.5784722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP26 3386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2881655763, - "lat": 52.5605515, - "lon": 0.6030186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP26 3210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2882283401, - "lat": 52.3437139, - "lon": 1.5021710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "IP19 5566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2882305925, - "lat": 56.3975960, - "lon": -3.4064237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 206D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2882341596, - "lat": 51.4845970, - "lon": -2.6069533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Rare Edward Vlll pillar box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS9 419", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 2882342769, - "lat": 56.4520109, - "lon": -3.3484930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 76", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2882342770, - "lat": 56.4571727, - "lon": -3.3759054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 37", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2882342791, - "lat": 56.4570041, - "lon": -3.4108397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH2 49", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2882376349, - "lat": 56.5759372, - "lon": -3.3473914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH10 142", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2882376351, - "lat": 56.5934039, - "lon": -3.3318548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "mapillary": "1335939727037526", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH10 111", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 2882479410, - "lat": 51.6206957, - "lon": -0.7211536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "HP11 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2882523275, - "lat": 56.4779521, - "lon": -2.9828859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2882523283, - "lat": 56.4776137, - "lon": -2.9534457, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2882562216, - "lat": 56.4432046, - "lon": -2.9400002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD6 123D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2882618073, - "lat": 51.4704187, - "lon": -2.6067223, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS6 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2882694589, - "lat": 50.3107868, - "lon": -5.1262547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 2882958423, - "lat": 56.4505868, - "lon": -2.8960728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "DD6 132", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883001617, - "lat": 55.1802601, - "lon": -1.7265345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883001619, - "lat": 55.1882208, - "lon": -1.7561951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE61 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883001648, - "lat": 55.1974364, - "lon": -1.7972521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE65 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883061989, - "lat": 50.5252007, - "lon": -3.6057325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2883112872, - "lat": 52.1592600, - "lon": 1.0457696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1121" - } -}, -{ - "type": "node", - "id": 2883125187, - "lat": 51.9519908, - "lon": 1.3371559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1132" - } -}, -{ - "type": "node", - "id": 2883570514, - "lat": 50.6366323, - "lon": -3.3364194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 143D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883575561, - "lat": 50.6601144, - "lon": -3.2800201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "fixme": "Blocked up 19/03/23 May be seasonal or out of use", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX9 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883593133, - "lat": 50.7038595, - "lon": -3.0810482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "mapillary": "8356209541118477", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-06-23" - } -}, -{ - "type": "node", - "id": 2883646720, - "lat": 50.7272851, - "lon": -2.9313198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT7 30", - "ref:GB:uprn": "10015478190", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883659264, - "lat": 50.7232445, - "lon": -2.8222662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT6 36", - "ref:GB:uprn": "10015309068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883668501, - "lat": 52.1881044, - "lon": -0.1434888, - "tags": { - "amenity": "post_box", - "ref": "SG19 340" - } -}, -{ - "type": "node", - "id": 2883678348, - "lat": 50.7056019, - "lon": -2.7388569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT6 112", - "ref:GB:uprn": "10015338865", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2883954833, - "lat": 55.9955138, - "lon": -3.7056893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 30D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2884000401, - "lat": 51.4963340, - "lon": -2.5915023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "location": "indoor", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS10 676", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2884132763, - "lat": 50.6017608, - "lon": -2.4536643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 29", - "ref:GB:uprn": "10015408291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2884155413, - "lat": 50.6118492, - "lon": -1.9590580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 119", - "ref:GB:uprn": "10015665548", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2884607846, - "lat": 54.0473113, - "lon": -2.1526259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD23 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-22" - } -}, -{ - "type": "node", - "id": 2884838566, - "lat": 55.8579361, - "lon": -3.7642529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML7 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885051899, - "lat": 52.9837489, - "lon": -1.1474104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG5 188", - "ref:GB:uprn": "10015448316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885441805, - "lat": 52.9811840, - "lon": -1.1423879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS;survey" - } -}, -{ - "type": "node", - "id": 2885654503, - "lat": 55.7641433, - "lon": -3.8653764, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885765885, - "lat": 50.6197617, - "lon": -1.9586488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 120", - "ref:GB:uprn": "10015379663", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885765886, - "lat": 50.6220505, - "lon": -1.9591726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 272", - "ref:GB:uprn": "10015290877", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885887786, - "lat": 54.0065043, - "lon": -1.5446477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "865245151389223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2023-09-07" - } -}, -{ - "type": "node", - "id": 2885887789, - "lat": 53.9958168, - "lon": -1.4905606, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885887790, - "lat": 54.0024196, - "lon": -1.4942918, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2885960820, - "lat": 54.0143731, - "lon": -1.4748283, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885960822, - "lat": 54.0175690, - "lon": -1.4844157, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HG5 200", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885960823, - "lat": 54.0196460, - "lon": -1.4904990, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HG5 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885960824, - "lat": 54.0220841, - "lon": -1.5011058, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HG5 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2885989809, - "lat": 54.0898379, - "lon": -1.5299909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "196111626260859", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 2885989816, - "lat": 54.1002710, - "lon": -1.4013030, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO51 79", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886061217, - "lat": 51.3139903, - "lon": -0.5856227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2886095290, - "lat": 51.3201457, - "lon": -0.5755618, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "last_checked": "2021-06-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886109103, - "lat": 51.3182281, - "lon": -0.5787382, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_check": "2021-06-26", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886111978, - "lat": 51.3197070, - "lon": -0.5687437, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_check": "2021-06-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886142990, - "lat": 51.3222090, - "lon": -0.6042801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2886178820, - "lat": 53.5025578, - "lon": -2.4206908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2886275448, - "lat": 52.9434204, - "lon": -1.1341774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG2 307D", - "ref:GB:uprn": "10015289163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886392066, - "lat": 51.7258523, - "lon": -2.5328976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2886398869, - "lat": 51.7208987, - "lon": -2.5325824, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2886399838, - "lat": 51.7234189, - "lon": -2.5381816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GL15 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2886399969, - "lat": 51.7278587, - "lon": -2.5384430, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2886400382, - "lat": 51.7154832, - "lon": -2.5329177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL15 2D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2886419856, - "lat": 51.7273112, - "lon": -2.5276905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "collection_times_checked": "2015-07-28", - "note": "left for stamped, right for franked, ref not visible on left-hand box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GL15 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2886424054, - "lat": 51.7295932, - "lon": -2.5325459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-07-28", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL15 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2886670036, - "lat": 54.1708227, - "lon": -1.4347205, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886703910, - "lat": 54.1867361, - "lon": -1.4412776, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO7 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2886921608, - "lat": 51.2406670, - "lon": -2.3127334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "687783202929799", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 2887337997, - "lat": 53.4324224, - "lon": -2.5584059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 196", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2887377447, - "lat": 53.4251344, - "lon": -2.5373894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2887976211, - "lat": 51.0286086, - "lon": -4.1358325, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2888275736, - "lat": 50.8486589, - "lon": -1.0222636, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-15", - "old_ref": "PO9 88", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2888281328, - "lat": 50.8486895, - "lon": -0.9751984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO9 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2888281329, - "lat": 50.8495752, - "lon": -0.9689677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2888659190, - "lat": 53.4963761, - "lon": -2.6807313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2889076696, - "lat": 54.8935013, - "lon": -2.9351375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CA3 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2889362418, - "lat": 52.5262518, - "lon": -2.0693934, - "tags": { - "amenity": "post_box", - "fixme": "check ref -- box located outside DY6 postal district", - "ref": "DY6 275", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2889362625, - "lat": 52.5288897, - "lon": -2.0667151, - "tags": { - "amenity": "post_box", - "ref": "DY4 100", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2889725645, - "lat": 51.3123488, - "lon": -0.5955083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2889766863, - "lat": 51.3135595, - "lon": -0.6096159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2891259745, - "lat": 53.0839945, - "lon": -1.2643699, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2891417057, - "lat": 51.6154773, - "lon": -0.7089308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "HP13 33" - } -}, -{ - "type": "node", - "id": 2891607639, - "lat": 52.1043563, - "lon": -1.5017672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2892069401, - "lat": 51.5148722, - "lon": -0.1445907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-02-29", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1C 77;W1C 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2892239838, - "lat": 51.6881299, - "lon": -2.3929019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2892308314, - "lat": 52.2679047, - "lon": -1.6757732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2892563363, - "lat": 51.4738590, - "lon": -0.2072853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2892563365, - "lat": 51.4754177, - "lon": -0.2059831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "SW6 6" - } -}, -{ - "type": "node", - "id": 2893706129, - "lat": 52.6347702, - "lon": -1.1244561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894082394, - "lat": 51.0761955, - "lon": -2.6429890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2894188894, - "lat": 51.8177921, - "lon": -0.6887749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894188895, - "lat": 51.8178231, - "lon": -0.6684448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894188896, - "lat": 51.8223745, - "lon": -0.6660440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894188897, - "lat": 51.8241791, - "lon": -0.7151853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP23 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894188898, - "lat": 51.8265041, - "lon": -0.7040527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP23 109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894188899, - "lat": 51.8276866, - "lon": -0.6891195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894188900, - "lat": 51.8326387, - "lon": -0.6989870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP23 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894442131, - "lat": 53.6889426, - "lon": -2.6975354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "232050902029649", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR25 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894478630, - "lat": 52.9620885, - "lon": -1.2234238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG8 254", - "ref:GB:uprn": "10015319561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894506883, - "lat": 50.8616534, - "lon": -0.2758107, - "tags": { - "amenity": "post_box", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2894529819, - "lat": 50.9167707, - "lon": -0.9897352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894591922, - "lat": 52.9981940, - "lon": -1.2040034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 103", - "ref:GB:uprn": "10015399814", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2894592245, - "lat": 53.0086934, - "lon": -1.1899493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "indoor": "yes", - "post_box:type": "indoor_pillar", - "ref": "NG6 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2895144155, - "lat": 50.5741160, - "lon": -3.6062126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 184", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2895820265, - "lat": 52.3774005, - "lon": -2.6998182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2895881766, - "lat": 52.5088116, - "lon": 0.6534180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP26 3352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2895938822, - "lat": 52.5726203, - "lon": 0.6968380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "note": "Next to front door of pub", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2895938830, - "lat": 52.5703316, - "lon": 0.6828409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2896318417, - "lat": 52.5823681, - "lon": 0.7318162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2896333611, - "lat": 52.5481716, - "lon": 0.7628439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "inscription": "LETTERS ONLY", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP25 3322", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2896357322, - "lat": 52.5815591, - "lon": 0.8133659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP25 3413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2896368275, - "lat": 52.5709135, - "lon": 0.8102308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2896368290, - "lat": 52.5715202, - "lon": 0.8190003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP25 3326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2896379619, - "lat": 52.5705512, - "lon": 0.8465366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP25 3420", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2896379653, - "lat": 52.5709224, - "lon": 0.8596838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP25 3232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2896390841, - "lat": 50.8351915, - "lon": -1.1966946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO14 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2897087435, - "lat": 52.5686950, - "lon": 0.8229361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP25 3354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2897088237, - "lat": 52.5671681, - "lon": 0.8332129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2897537509, - "lat": 56.3902271, - "lon": -3.4525628, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "PH1 73D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2897537510, - "lat": 56.3929865, - "lon": -3.4510966, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2018-02-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH1 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2897537511, - "lat": 56.3890661, - "lon": -3.4598128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 209D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2897537540, - "lat": 56.3982202, - "lon": -3.4527506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "manufacturer": "Carron Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 59", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 2897560860, - "lat": 57.4671170, - "lon": -4.1676663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "IV2 60D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2897560865, - "lat": 57.4691865, - "lon": -4.1622625, - "tags": { - "amenity": "post_box", - "ref": "IV2 102", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2897560881, - "lat": 57.4708104, - "lon": -4.1475919, - "tags": { - "amenity": "post_box", - "ref": "IV2 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2897621876, - "lat": 57.4917504, - "lon": -3.8586416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "IV12 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2897655586, - "lat": 52.0121077, - "lon": -0.3464705, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2897981317, - "lat": 51.3153212, - "lon": -0.5980241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2898015643, - "lat": 51.3106169, - "lon": -0.5842243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU21 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2898032738, - "lat": 51.3126466, - "lon": -0.6262298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2900020330, - "lat": 50.9039584, - "lon": -0.9489585, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO9 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2900066212, - "lat": 50.8287614, - "lon": -0.8578519, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PO18 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2900973802, - "lat": 50.5449900, - "lon": -3.6555722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 150", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2902802246, - "lat": 52.4111080, - "lon": -2.7852682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902802247, - "lat": 52.4081094, - "lon": -2.8029900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2902802248, - "lat": 52.4010022, - "lon": -2.8167036, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902802252, - "lat": 52.4207551, - "lon": -2.7754094, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2902802253, - "lat": 52.4342169, - "lon": -2.7475395, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 2902802255, - "lat": 52.4249426, - "lon": -2.7312486, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902802256, - "lat": 52.4054987, - "lon": -2.7394480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2902802257, - "lat": 52.3897693, - "lon": -2.7426054, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902806375, - "lat": 52.3651816, - "lon": -2.7009475, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902806376, - "lat": 52.3741466, - "lon": -2.7133112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY8 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-30" - } -}, -{ - "type": "node", - "id": 2902808329, - "lat": 52.3593805, - "lon": -2.7019226, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902808330, - "lat": 52.3652607, - "lon": -2.7058064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902808331, - "lat": 52.3678385, - "lon": -2.7128553, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2902808332, - "lat": 52.3646231, - "lon": -2.7142248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "ref covered over", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2902808333, - "lat": 52.3693057, - "lon": -2.7183636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY8 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-30" - } -}, -{ - "type": "node", - "id": 2902808335, - "lat": 52.3675756, - "lon": -2.7201218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2902808336, - "lat": 52.3659354, - "lon": -2.7240991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY8 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2902808337, - "lat": 52.3727179, - "lon": -2.7196178, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2902808338, - "lat": 52.3636891, - "lon": -2.6873652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2903044187, - "lat": 52.3428348, - "lon": -2.7921527, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2903052771, - "lat": 52.2898731, - "lon": -1.5448870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2903079112, - "lat": 52.2885894, - "lon": -1.5349876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "CV32 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2903449756, - "lat": 57.9530998, - "lon": -6.9487815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS3 106", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2903473841, - "lat": 57.1804152, - "lon": -2.1899162, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB21 9RA", - "addr:street": "Hopetoun Grange", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB21 463" - } -}, -{ - "type": "node", - "id": 2904062068, - "lat": 57.9759151, - "lon": -7.0451340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:30", - "operator": "Royal Mail", - "ref": "HS3 104", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332621, - "lat": 51.7908118, - "lon": -0.6758134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332622, - "lat": 51.7914158, - "lon": -0.6691018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332624, - "lat": 51.7932295, - "lon": -0.6718464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332625, - "lat": 51.7936196, - "lon": -0.6611231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Inside the post office premises.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 153", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332626, - "lat": 51.7936427, - "lon": -0.6611157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332627, - "lat": 51.7937184, - "lon": -0.6537720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Unconventional postbox. No information plate or royal cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "business", - "ref": "no", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332628, - "lat": 51.7948221, - "lon": -0.6651843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332629, - "lat": 51.7948789, - "lon": -0.6739320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332630, - "lat": 51.7950471, - "lon": -0.6568626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332631, - "lat": 51.7963939, - "lon": -0.6563160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332633, - "lat": 51.7966383, - "lon": -0.6705299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 146", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332634, - "lat": 51.7966706, - "lon": -0.6510035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332635, - "lat": 51.7978114, - "lon": -0.6741659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332636, - "lat": 51.7983372, - "lon": -0.6585943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP23 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332637, - "lat": 51.7985002, - "lon": -0.6664923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332646, - "lat": 51.7993862, - "lon": -0.6465700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-12", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332647, - "lat": 51.7997109, - "lon": -0.6596560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332648, - "lat": 51.8006331, - "lon": -0.6229552, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-26", - "collection_times": "Mo-Fr 16:00, Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP23 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332652, - "lat": 51.8022297, - "lon": -0.6498493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332661, - "lat": 51.8033752, - "lon": -0.6573309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904332663, - "lat": 51.8063893, - "lon": -0.6580834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904364285, - "lat": 52.3436603, - "lon": -1.5798520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904530337, - "lat": 51.4844376, - "lon": -0.6042622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL4 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904557657, - "lat": 52.3869657, - "lon": -1.4828197, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904597692, - "lat": 57.9346520, - "lon": -6.8506652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2904598455, - "lat": 57.9464192, - "lon": -6.9116604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS3 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2904764187, - "lat": 52.4153462, - "lon": -1.9708745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "ref": "B31 216", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2905398722, - "lat": 51.1459466, - "lon": -0.4276760, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2905529905, - "lat": 51.1333991, - "lon": -0.4193151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU6 145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2905643058, - "lat": 51.8209945, - "lon": 0.4447398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM3 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2906198795, - "lat": 51.1997797, - "lon": -1.3808389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SP11 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2906402985, - "lat": 51.6281263, - "lon": -0.3267803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "ref": "HA7 815" - } -}, -{ - "type": "node", - "id": 2906520918, - "lat": 50.8199816, - "lon": -0.8358536, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO18 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2906933531, - "lat": 51.4279250, - "lon": -2.5373917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS4 666", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-06-07" - } -}, -{ - "type": "node", - "id": 2907639753, - "lat": 52.4741767, - "lon": 1.0175933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1719", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2908251790, - "lat": 50.9673038, - "lon": -2.7706107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA12 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2908251905, - "lat": 50.9704135, - "lon": -2.7594831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA12 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2908251909, - "lat": 50.9705839, - "lon": -2.7660142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "description": "Notice: Letters containing coin, paper money or jewellery should not be posted in this box, but should be registered.", - "note": "This has an unusual royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TA12 66", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 2908293601, - "lat": 51.5586649, - "lon": -1.8291218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 389", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2908340897, - "lat": 50.9535836, - "lon": -2.7499717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA14 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2908341906, - "lat": 50.9555533, - "lon": -2.7480321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA14 90", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2909924092, - "lat": 57.5632292, - "lon": -4.1747529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV9 166", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2910147675, - "lat": 52.3439062, - "lon": 0.5170112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2910147701, - "lat": 52.3453007, - "lon": 0.5229765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP28 2278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2911001613, - "lat": 51.4579433, - "lon": -3.3426763, - "tags": { - "amenity": "post_box", - "mapillary": "335272775046441", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 2911001614, - "lat": 51.4588631, - "lon": -3.3346926, - "tags": { - "amenity": "post_box", - "mapillary": "554450125835487", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 2911001615, - "lat": 51.4570891, - "lon": -3.3501026, - "tags": { - "amenity": "post_box", - "mapillary": "406247667554404", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 2911001616, - "lat": 51.4778235, - "lon": -3.3668919, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2911001617, - "lat": 51.4900714, - "lon": -3.3618276, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2911234665, - "lat": 57.9815408, - "lon": -4.5885597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV27 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2911406930, - "lat": 51.6703391, - "lon": -0.7567172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 113D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2911704513, - "lat": 59.8869627, - "lon": -1.3072714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE3 110" - } -}, -{ - "type": "node", - "id": 2911709063, - "lat": 60.7877928, - "lon": -0.8335663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 120" - } -}, -{ - "type": "node", - "id": 2911709064, - "lat": 60.7983478, - "lon": -0.8244347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 76" - } -}, -{ - "type": "node", - "id": 2911709065, - "lat": 60.8034859, - "lon": -0.8072833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 19" - } -}, -{ - "type": "node", - "id": 2911709066, - "lat": 59.8776584, - "lon": -1.2886567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE3 79" - } -}, -{ - "type": "node", - "id": 2911721816, - "lat": 60.7577723, - "lon": -0.8600305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ZE2 118", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2911721817, - "lat": 60.7163835, - "lon": -1.0176669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 40" - } -}, -{ - "type": "node", - "id": 2911721819, - "lat": 60.6724203, - "lon": -0.9974868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ZE2 95", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2911721820, - "lat": 60.6610429, - "lon": -1.0467646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ZE2 87", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2911721821, - "lat": 60.6903667, - "lon": -0.9126353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 75" - } -}, -{ - "type": "node", - "id": 2911726259, - "lat": 60.4222603, - "lon": -0.7583732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 125" - } -}, -{ - "type": "node", - "id": 2911726310, - "lat": 60.5947746, - "lon": -0.8647282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 67" - } -}, -{ - "type": "node", - "id": 2911726311, - "lat": 60.6031323, - "lon": -1.1207971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 37" - } -}, -{ - "type": "node", - "id": 2911726312, - "lat": 60.6126664, - "lon": -1.0648494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 82" - } -}, -{ - "type": "node", - "id": 2911726313, - "lat": 60.5976348, - "lon": -1.0591561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE2 105" - } -}, -{ - "type": "node", - "id": 2911732747, - "lat": 60.5597743, - "lon": -1.0351343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 59" - } -}, -{ - "type": "node", - "id": 2911732748, - "lat": 60.5731078, - "lon": -1.1789522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 96" - } -}, -{ - "type": "node", - "id": 2911732749, - "lat": 60.5040196, - "lon": -1.1013634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 4" - } -}, -{ - "type": "node", - "id": 2911732750, - "lat": 60.5243059, - "lon": -1.1675174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 39" - } -}, -{ - "type": "node", - "id": 2911732751, - "lat": 60.5860670, - "lon": -1.1715300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 28" - } -}, -{ - "type": "node", - "id": 2911732752, - "lat": 60.5062198, - "lon": -1.1560174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 unnumbered" - } -}, -{ - "type": "node", - "id": 2911732753, - "lat": 60.4989295, - "lon": -1.0552079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "130179882994378", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 113", - "survey:date": "2022-05-24" - } -}, -{ - "type": "node", - "id": 2911732754, - "lat": 60.5342192, - "lon": -1.0526330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 38" - } -}, -{ - "type": "node", - "id": 2911795928, - "lat": 60.5074374, - "lon": -1.3352413, - "tags": { - "amenity": "post_box", - "note": "Box number is same as Out Skerries box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 125" - } -}, -{ - "type": "node", - "id": 2911795929, - "lat": 50.7424704, - "lon": -1.6658289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 178" - } -}, -{ - "type": "node", - "id": 2911795930, - "lat": 50.7428064, - "lon": -1.6468992, - "tags": { - "amenity": "post_box", - "mapillary": "4622833141144636", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH25 78", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 2911795931, - "lat": 50.7529790, - "lon": -1.6338733, - "tags": { - "amenity": "post_box", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 161" - } -}, -{ - "type": "node", - "id": 2911795932, - "lat": 50.7418186, - "lon": -1.6570205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH25 184" - } -}, -{ - "type": "node", - "id": 2911795933, - "lat": 50.7493067, - "lon": -1.6553254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 82" - } -}, -{ - "type": "node", - "id": 2911795934, - "lat": 50.7601157, - "lon": -1.6547058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "BH25 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2911795935, - "lat": 50.7405029, - "lon": -1.6877988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 124D" - } -}, -{ - "type": "node", - "id": 2911795936, - "lat": 50.7408715, - "lon": -1.6805328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 173D" - } -}, -{ - "type": "node", - "id": 2911795937, - "lat": 50.7569877, - "lon": -1.6556148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 118" - } -}, -{ - "type": "node", - "id": 2911795938, - "lat": 50.7360072, - "lon": -1.6642566, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 70" - } -}, -{ - "type": "node", - "id": 2911795939, - "lat": 50.7658129, - "lon": -1.6554219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 20" - } -}, -{ - "type": "node", - "id": 2911795940, - "lat": 50.7450231, - "lon": -1.6554863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 156" - } -}, -{ - "type": "node", - "id": 2911795941, - "lat": 50.7449009, - "lon": -1.6736824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH25 71" - } -}, -{ - "type": "node", - "id": 2911795942, - "lat": 50.7626505, - "lon": -1.6662527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 196" - } -}, -{ - "type": "node", - "id": 2911795943, - "lat": 50.7522493, - "lon": -1.6617359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 93" - } -}, -{ - "type": "node", - "id": 2911795944, - "lat": 50.7618633, - "lon": -1.6526539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 198" - } -}, -{ - "type": "node", - "id": 2911795945, - "lat": 50.7603872, - "lon": -1.6504397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH25 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2911795946, - "lat": 50.7562099, - "lon": -1.6523964, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 133" - } -}, -{ - "type": "node", - "id": 2911795947, - "lat": 50.7507220, - "lon": -1.6501165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 155" - } -}, -{ - "type": "node", - "id": 2911795948, - "lat": 50.7521183, - "lon": -1.6733095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH25 69", - "survey:date": "2021-08-19", - "wikimedia_commons": "File:New Milton, postbox № BH25 69, Gore Road - geograph.org.uk - 2494463.jpg" - } -}, -{ - "type": "node", - "id": 2911795949, - "lat": 50.7502095, - "lon": -1.6452081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 2" - } -}, -{ - "type": "node", - "id": 2911795950, - "lat": 50.7636142, - "lon": -1.6495962, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 203" - } -}, -{ - "type": "node", - "id": 2911795951, - "lat": 50.7652348, - "lon": -1.6456334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH25 162", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2911795952, - "lat": 50.7538112, - "lon": -1.6743312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 513" - } -}, -{ - "type": "node", - "id": 2911795953, - "lat": 50.7771128, - "lon": -1.6486103, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 194" - } -}, -{ - "type": "node", - "id": 2911795954, - "lat": 50.7608657, - "lon": -1.6451062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 125" - } -}, -{ - "type": "node", - "id": 2911795955, - "lat": 50.7520503, - "lon": -1.6546849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH25 2000" - } -}, -{ - "type": "node", - "id": 2911795957, - "lat": 50.7611100, - "lon": -1.6470374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 170" - } -}, -{ - "type": "node", - "id": 2911795959, - "lat": 50.7523206, - "lon": -1.6441677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH25 24" - } -}, -{ - "type": "node", - "id": 2911795960, - "lat": 50.7431493, - "lon": -1.6608829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH25 88" - } -}, -{ - "type": "node", - "id": 2911880833, - "lat": 50.7675772, - "lon": -1.5819938, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 24" - } -}, -{ - "type": "node", - "id": 2911880834, - "lat": 50.7615684, - "lon": -1.5508450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 145" - } -}, -{ - "type": "node", - "id": 2911880835, - "lat": 50.7698646, - "lon": -1.6050973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 117" - } -}, -{ - "type": "node", - "id": 2911880836, - "lat": 50.7554005, - "lon": -1.6116778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO41 89" - } -}, -{ - "type": "node", - "id": 2911880837, - "lat": 50.7757735, - "lon": -1.4960129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO41 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2911880838, - "lat": 50.7650297, - "lon": -1.5512135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO41 39", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 2911880839, - "lat": 50.7687579, - "lon": -1.5792687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 16" - } -}, -{ - "type": "node", - "id": 2911880840, - "lat": 50.7672243, - "lon": -1.4649218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 115" - } -}, -{ - "type": "node", - "id": 2911880841, - "lat": 50.7697982, - "lon": -1.5926743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 43" - } -}, -{ - "type": "node", - "id": 2911880842, - "lat": 50.7657718, - "lon": -1.5438087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO41 70" - } -}, -{ - "type": "node", - "id": 2911880843, - "lat": 50.7784737, - "lon": -1.6375048, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 22" - } -}, -{ - "type": "node", - "id": 2911880844, - "lat": 50.7563727, - "lon": -1.5601713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 204" - } -}, -{ - "type": "node", - "id": 2911880845, - "lat": 50.7845728, - "lon": -1.6246463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 81" - } -}, -{ - "type": "node", - "id": 2911880846, - "lat": 50.7650603, - "lon": -1.4886465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 106" - } -}, -{ - "type": "node", - "id": 2911880847, - "lat": 50.7902900, - "lon": -1.5659971, - "tags": { - "amenity": "post_box", - "mapillary": "520343759124449", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "SO41 8PT", - "ref": "SO41 91", - "survey:date": "2020-09-29" - } -}, -{ - "type": "node", - "id": 2911880848, - "lat": 50.7927180, - "lon": -1.5568025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 143" - } -}, -{ - "type": "node", - "id": 2911880849, - "lat": 50.7595762, - "lon": -1.5598817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 188" - } -}, -{ - "type": "node", - "id": 2911880850, - "lat": 50.7631763, - "lon": -1.5552814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2911880851, - "lat": 50.7595016, - "lon": -1.6278381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-07-14", - "check_date:collection_times": "2022-07-14", - "check_date:ref": "2022-07-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO41 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2911880852, - "lat": 50.7597391, - "lon": -1.5447433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 202" - } -}, -{ - "type": "node", - "id": 2911880853, - "lat": 50.7847417, - "lon": -1.6081721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 191" - } -}, -{ - "type": "node", - "id": 2911880854, - "lat": 50.7615901, - "lon": -1.5557615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 78" - } -}, -{ - "type": "node", - "id": 2911880855, - "lat": 50.7638314, - "lon": -1.5474791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 140" - } -}, -{ - "type": "node", - "id": 2911880856, - "lat": 50.7772457, - "lon": -1.5747518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 37" - } -}, -{ - "type": "node", - "id": 2911880857, - "lat": 50.7637364, - "lon": -1.5345401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO41 18D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2911880858, - "lat": 50.7760856, - "lon": -1.5949757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 116" - } -}, -{ - "type": "node", - "id": 2911880859, - "lat": 50.7569497, - "lon": -1.6217656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 166" - } -}, -{ - "type": "node", - "id": 2911918229, - "lat": 50.7544044, - "lon": -1.5429623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO41 85", - "survey:date": "2021-08-08", - "wikimedia_commons": "File:Lymington, postbox № SO41 85, Daniells Walk - geograph.org.uk - 2455166.jpg" - } -}, -{ - "type": "node", - "id": 2911918230, - "lat": 50.7349812, - "lon": -1.6198022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 88" - } -}, -{ - "type": "node", - "id": 2911918231, - "lat": 50.7289917, - "lon": -1.5987844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 113" - } -}, -{ - "type": "node", - "id": 2911918232, - "lat": 50.7542008, - "lon": -1.5612120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 100" - } -}, -{ - "type": "node", - "id": 2911918233, - "lat": 50.7398904, - "lon": -1.5866501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 36" - } -}, -{ - "type": "node", - "id": 2911918235, - "lat": 50.7508272, - "lon": -1.6029579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 193" - } -}, -{ - "type": "node", - "id": 2911918236, - "lat": 50.7545198, - "lon": -1.5297765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 63" - } -}, -{ - "type": "node", - "id": 2911918238, - "lat": 50.7265739, - "lon": -1.6118629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 57" - } -}, -{ - "type": "node", - "id": 2911918239, - "lat": 50.7291139, - "lon": -1.5918756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 58" - } -}, -{ - "type": "node", - "id": 2911918240, - "lat": 50.7528568, - "lon": -1.5653212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 172" - } -}, -{ - "type": "node", - "id": 2911918241, - "lat": 50.7256316, - "lon": -1.6047202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "PB1/viii", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "fluted", - "post_box:type": "pillar", - "ref": "SO41 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2911918242, - "lat": 50.7263634, - "lon": -1.6015739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2911983011, - "lat": 60.5483277, - "lon": -1.3411100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 35" - } -}, -{ - "type": "node", - "id": 2911983012, - "lat": 60.4920764, - "lon": -1.3641770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 36" - } -}, -{ - "type": "node", - "id": 2911983013, - "lat": 60.5904667, - "lon": -1.3326046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 74" - } -}, -{ - "type": "node", - "id": 2911983014, - "lat": 60.4667657, - "lon": -1.2098941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 31" - } -}, -{ - "type": "node", - "id": 2911983015, - "lat": 60.5790034, - "lon": -1.3322864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ZE2 111" - } -}, -{ - "type": "node", - "id": 2911983016, - "lat": 60.5188784, - "lon": -1.3775665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "419911643339177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 5", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 2911983018, - "lat": 60.4941431, - "lon": -1.5658294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 91" - } -}, -{ - "type": "node", - "id": 2911983019, - "lat": 60.4897009, - "lon": -1.4518825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 15" - } -}, -{ - "type": "node", - "id": 2911983020, - "lat": 60.4761716, - "lon": -1.4881594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ZE2 84" - } -}, -{ - "type": "node", - "id": 2912006974, - "lat": 60.2547257, - "lon": -1.4589823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 58", - "survey:date": "2021-08-31", - "wikimedia_commons": "File:Effirth, postbox № ZE2 58, Roadside - geograph.org.uk - 2551757.jpg" - } -}, -{ - "type": "node", - "id": 2912006975, - "lat": 60.4367965, - "lon": -1.3637478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 30" - } -}, -{ - "type": "node", - "id": 2912006976, - "lat": 60.3998804, - "lon": -1.3512165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 83" - } -}, -{ - "type": "node", - "id": 2912006977, - "lat": 60.4460286, - "lon": -1.2050093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 2" - } -}, -{ - "type": "node", - "id": 2912006978, - "lat": 60.3501406, - "lon": -1.2667268, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 66" - } -}, -{ - "type": "node", - "id": 2912006979, - "lat": 60.2544696, - "lon": -1.2943966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 49" - } -}, -{ - "type": "node", - "id": 2912006980, - "lat": 60.2989612, - "lon": -1.6481478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 126" - } -}, -{ - "type": "node", - "id": 2912006981, - "lat": 60.3374805, - "lon": -1.0198844, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 100" - } -}, -{ - "type": "node", - "id": 2912006982, - "lat": 60.3642640, - "lon": -0.9868756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 109" - } -}, -{ - "type": "node", - "id": 2912006983, - "lat": 60.4268222, - "lon": -1.3963206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 51" - } -}, -{ - "type": "node", - "id": 2912006984, - "lat": 60.3571388, - "lon": -1.1455877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 71" - } -}, -{ - "type": "node", - "id": 2912006985, - "lat": 60.3963971, - "lon": -1.3543120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ZE2 93", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2912006986, - "lat": 60.2837847, - "lon": -1.3797263, - "tags": { - "amenity": "post_box", - "note": "Not listed by Royal Mail", - "operator": "Royal Mail", - "ref": "ZE2 unnumbered" - } -}, -{ - "type": "node", - "id": 2912006987, - "lat": 60.3556292, - "lon": -1.2627811, - "tags": { - "amenity": "post_box", - "mapillary": "586408282645336", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 80" - } -}, -{ - "type": "node", - "id": 2912006988, - "lat": 60.3690668, - "lon": -1.1407355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 103" - } -}, -{ - "type": "node", - "id": 2912006989, - "lat": 60.3537107, - "lon": -1.1977942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 43" - } -}, -{ - "type": "node", - "id": 2912006990, - "lat": 60.2996364, - "lon": -1.1310554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 60" - } -}, -{ - "type": "node", - "id": 2912006991, - "lat": 60.2533328, - "lon": -1.4024528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912006992, - "lat": 60.4612641, - "lon": -1.1831171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 98" - } -}, -{ - "type": "node", - "id": 2912006993, - "lat": 60.3763715, - "lon": -1.3843660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 69" - } -}, -{ - "type": "node", - "id": 2912006994, - "lat": 60.3880923, - "lon": -1.3486201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 112", - "survey:date": "2021-11-16", - "wikimedia_commons": "File:Brae, postbox № ZE2 112 - geograph.org.uk - 2742260.jpg" - } -}, -{ - "type": "node", - "id": 2912006995, - "lat": 60.3732774, - "lon": -1.3370330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 68" - } -}, -{ - "type": "node", - "id": 2912006996, - "lat": 60.2440869, - "lon": -1.5241439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "373857694844649", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 101", - "survey:date": "2022-05-28" - } -}, -{ - "type": "node", - "id": 2912006997, - "lat": 60.4398454, - "lon": -1.2731106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 34" - } -}, -{ - "type": "node", - "id": 2912006999, - "lat": 60.4047661, - "lon": -1.1173708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 57" - } -}, -{ - "type": "node", - "id": 2912007000, - "lat": 60.3962871, - "lon": -1.2634976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 70" - } -}, -{ - "type": "node", - "id": 2912010101, - "lat": 60.2681371, - "lon": -1.1876930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 117" - } -}, -{ - "type": "node", - "id": 2912017682, - "lat": 60.1594948, - "lon": -1.1581618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE1 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912017683, - "lat": 60.1436155, - "lon": -1.1781202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE1 88" - } -}, -{ - "type": "node", - "id": 2912017684, - "lat": 60.1590677, - "lon": -1.1466498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE1 27", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912017685, - "lat": 60.1527660, - "lon": -1.1456193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE1 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912017686, - "lat": 60.1514359, - "lon": -1.1355330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-05-20", - "collection_times": "Mo-Fr 17:15; Sa 15:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE1 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912017687, - "lat": 60.1518598, - "lon": -1.1498685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE1 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912017688, - "lat": 60.1641497, - "lon": -1.1675818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE1 124" - } -}, -{ - "type": "node", - "id": 2912017689, - "lat": 60.1550475, - "lon": -1.1438925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE1 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912017690, - "lat": 60.1623028, - "lon": -1.1673243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE1 86" - } -}, -{ - "type": "node", - "id": 2912017691, - "lat": 60.1484062, - "lon": -1.1616084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 10:15", - "collection_times:local": "Mo-Fr 17:15; Sa 15:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE1 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912017692, - "lat": 60.1543501, - "lon": -1.1494137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE1 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912017693, - "lat": 60.1558428, - "lon": -1.1466636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE1 11" - } -}, -{ - "type": "node", - "id": 2912017694, - "lat": 60.1509147, - "lon": -1.1564023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE1 65" - } -}, -{ - "type": "node", - "id": 2912017695, - "lat": 60.1441803, - "lon": -1.1698670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE1 106" - } -}, -{ - "type": "node", - "id": 2912017696, - "lat": 60.1554845, - "lon": -1.1583657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE1 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2912017697, - "lat": 60.1504875, - "lon": -1.1555547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE1 63", - "survey:date": "2021-09-20", - "wikimedia_commons": "File:Lerwick, postbox № ZE1 63, Cairnfield Road - geograph.org.uk - 2652430.jpg" - } -}, -{ - "type": "node", - "id": 2912017698, - "lat": 60.1691455, - "lon": -1.1664016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE1 123" - } -}, -{ - "type": "node", - "id": 2912017699, - "lat": 60.1571013, - "lon": -1.1527769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 15:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ZE1 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912028393, - "lat": 52.2226567, - "lon": -1.8634999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2912075719, - "lat": 60.2268758, - "lon": -1.3973068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 85" - } -}, -{ - "type": "node", - "id": 2912075720, - "lat": 60.2312116, - "lon": -1.3019692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ZE2 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912075721, - "lat": 60.2409589, - "lon": -1.2284992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 21" - } -}, -{ - "type": "node", - "id": 2912075722, - "lat": 59.9976960, - "lon": -1.2559651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 119" - } -}, -{ - "type": "node", - "id": 2912075723, - "lat": 59.9439381, - "lon": -1.3263082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://s0.geograph.org.uk/geophotos/02/65/20/2652059_0f6b20f3.jpg", - "mapillary": "131414102878590", - "note": "Lamp box mounted to side of building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 114", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912075724, - "lat": 60.1973370, - "lon": -1.2216757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 9" - } -}, -{ - "type": "node", - "id": 2912075725, - "lat": 60.1299198, - "lon": -1.2069343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 41" - } -}, -{ - "type": "node", - "id": 2912075726, - "lat": 59.9730517, - "lon": -1.3239215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912075727, - "lat": 60.1006545, - "lon": -1.2344188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912075728, - "lat": 60.0784340, - "lon": -1.2292932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 13" - } -}, -{ - "type": "node", - "id": 2912075729, - "lat": 60.0021806, - "lon": -1.2349151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 94" - } -}, -{ - "type": "node", - "id": 2912075730, - "lat": 60.1827550, - "lon": -1.2305592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 6" - } -}, -{ - "type": "node", - "id": 2912075731, - "lat": 59.9189976, - "lon": -1.3005434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 29" - } -}, -{ - "type": "node", - "id": 2912075732, - "lat": 59.9335138, - "lon": -1.3095234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 73" - } -}, -{ - "type": "node", - "id": 2912075733, - "lat": 60.1502750, - "lon": -1.1119492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 90" - } -}, -{ - "type": "node", - "id": 2912075734, - "lat": 60.0532500, - "lon": -1.2258600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 102" - } -}, -{ - "type": "node", - "id": 2912075735, - "lat": 59.9122450, - "lon": -1.3261390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE2 78" - } -}, -{ - "type": "node", - "id": 2912075736, - "lat": 60.0073727, - "lon": -1.2285636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 17" - } -}, -{ - "type": "node", - "id": 2912075737, - "lat": 60.1778040, - "lon": -1.4661423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 81" - } -}, -{ - "type": "node", - "id": 2912075738, - "lat": 60.1838454, - "lon": -1.4096621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 92" - } -}, -{ - "type": "node", - "id": 2912075739, - "lat": 60.2288736, - "lon": -1.5633060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 99" - } -}, -{ - "type": "node", - "id": 2912075740, - "lat": 59.9723639, - "lon": -1.2722062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 26" - } -}, -{ - "type": "node", - "id": 2912075741, - "lat": 60.1835298, - "lon": -1.4430626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 1" - } -}, -{ - "type": "node", - "id": 2912075742, - "lat": 60.2034788, - "lon": -1.2949537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 89", - "survey:date": "2024-06-09" - } -}, -{ - "type": "node", - "id": 2912075743, - "lat": 60.2166692, - "lon": -1.2980597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 72" - } -}, -{ - "type": "node", - "id": 2912075744, - "lat": 60.0404029, - "lon": -1.2300711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 3" - } -}, -{ - "type": "node", - "id": 2912080215, - "lat": 60.1058072, - "lon": -1.3378905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 20" - } -}, -{ - "type": "node", - "id": 2912080216, - "lat": 60.1253991, - "lon": -1.2839673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5138437286251099", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ZE1 55", - "survey:date": "2022-05-17" - } -}, -{ - "type": "node", - "id": 2912080217, - "lat": 60.1369562, - "lon": -1.2819932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 16" - } -}, -{ - "type": "node", - "id": 2912080218, - "lat": 60.1383855, - "lon": -1.2789772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ZE2 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912080219, - "lat": 60.0829772, - "lon": -1.3321291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "This post box has been moved as it can't be seen on mapillary images from 2022.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ZE2 14", - "survey:date": "2021-10-02", - "wikimedia_commons": "File:West Burra, postbox № ZE2 14, Bridge End - geograph.org.uk - 2701325.jpg" - } -}, -{ - "type": "node", - "id": 2912080220, - "lat": 60.0964642, - "lon": -1.3218610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ZE2 8" - } -}, -{ - "type": "node", - "id": 2912080221, - "lat": 60.1399210, - "lon": -1.2670265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ZE2 97" - } -}, -{ - "type": "node", - "id": 2912116110, - "lat": 56.9703263, - "lon": -7.5165851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 11" - } -}, -{ - "type": "node", - "id": 2912116111, - "lat": 56.9870127, - "lon": -7.5080128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "710115960073614", - "note": "RM list suggests different number", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS9 3", - "survey:date": "2022-06-16" - } -}, -{ - "type": "node", - "id": 2912116112, - "lat": 57.0437631, - "lon": -7.4378462, - "tags": { - "amenity": "post_box", - "note": "RM list suggests different number", - "operator": "Royal Mail", - "ref": "HS9 12" - } -}, -{ - "type": "node", - "id": 2912116113, - "lat": 56.9635674, - "lon": -7.4411769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS9 10" - } -}, -{ - "type": "node", - "id": 2912116116, - "lat": 57.0133445, - "lon": -7.4303662, - "tags": { - "amenity": "post_box", - "note": "RM list suggests different number", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912116117, - "lat": 56.9998703, - "lon": -7.4220533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 1" - } -}, -{ - "type": "node", - "id": 2912116118, - "lat": 56.9952655, - "lon": -7.4048228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS9 7" - } -}, -{ - "type": "node", - "id": 2912116119, - "lat": 57.0088537, - "lon": -7.4839399, - "tags": { - "amenity": "post_box", - "note": "RM list suggests different number", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 14" - } -}, -{ - "type": "node", - "id": 2912116120, - "lat": 56.9818217, - "lon": -7.5070686, - "tags": { - "amenity": "post_box", - "note": "RM list suggests different number,", - "operator": "Royal Mail", - "ref": "HS9 4" - } -}, -{ - "type": "node", - "id": 2912116121, - "lat": 57.0071738, - "lon": -7.4286837, - "tags": { - "amenity": "post_box", - "note": "RM list suggests different number", - "operator": "Royal Mail", - "ref": "HS9 16" - } -}, -{ - "type": "node", - "id": 2912116122, - "lat": 56.9434517, - "lon": -7.5434655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912116123, - "lat": 56.9540881, - "lon": -7.4866054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HS9 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912116124, - "lat": 57.0254731, - "lon": -7.4494044, - "tags": { - "amenity": "post_box", - "note": "collection times obscured by notice about birds nesting in the box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HS9 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912116125, - "lat": 57.0346805, - "lon": -7.4298210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS9 15" - } -}, -{ - "type": "node", - "id": 2912116126, - "lat": 57.0002286, - "lon": -7.5036575, - "tags": { - "amenity": "post_box", - "note": "RM list suggests different number", - "operator": "Royal Mail", - "ref": "HS9 2" - } -}, -{ - "type": "node", - "id": 2912116127, - "lat": 56.9710484, - "lon": -7.4248299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS9 6" - } -}, -{ - "type": "node", - "id": 2912116128, - "lat": 56.9190801, - "lon": -7.5363262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS9 17" - } -}, -{ - "type": "node", - "id": 2912116129, - "lat": 56.9533621, - "lon": -7.4988329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "note": "front panel messed up, collection times and ref not clear", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2912116130, - "lat": 56.9882519, - "lon": -7.4147792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS9 8" - } -}, -{ - "type": "node", - "id": 2912145935, - "lat": 50.7451473, - "lon": -1.8168369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH7 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912252327, - "lat": 51.1107681, - "lon": -0.1879987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2912265099, - "lat": 51.1016737, - "lon": -0.1847189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2912275404, - "lat": 51.1010827, - "lon": -0.1895472, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 2912286085, - "lat": 51.0982127, - "lon": -0.1847036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 2912293018, - "lat": 51.1022597, - "lon": -0.1800194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey [position approximate]" - } -}, -{ - "type": "node", - "id": 2912301801, - "lat": 51.1105450, - "lon": -0.1852271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 2912303213, - "lat": 51.1136002, - "lon": -0.1921661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "note": "inside store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2912527636, - "lat": 51.1626426, - "lon": 0.6063962, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2912858740, - "lat": 50.8507028, - "lon": -1.7665400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 67" - } -}, -{ - "type": "node", - "id": 2912858741, - "lat": 50.8504059, - "lon": -1.7795326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH24 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2912858742, - "lat": 50.8368691, - "lon": -1.8322434, - "tags": { - "amenity": "post_box", - "mapillary": "905204856927541", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH24 57", - "ref:GB:uprn": "10015344790", - "survey:date": "2020-08-21" - } -}, -{ - "type": "node", - "id": 2912858743, - "lat": 50.8147076, - "lon": -1.8603959, - "tags": { - "amenity": "post_box", - "ref": "BH24 56" - } -}, -{ - "type": "node", - "id": 2912858744, - "lat": 50.8248205, - "lon": -1.8088760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 64", - "ref:GB:uprn": "10015424593" - } -}, -{ - "type": "node", - "id": 2912858745, - "lat": 50.8252949, - "lon": -1.6839387, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 09:00", - "description": "This postbox is on the southbound side of Bennetts Lane just north of the Southfield Lane turning and is set back in the bushes.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912858746, - "lat": 50.8362593, - "lon": -1.8477573, - "tags": { - "amenity": "post_box", - "ref": "BH24 58", - "ref:GB:uprn": "10015280140" - } -}, -{ - "type": "node", - "id": 2912858747, - "lat": 50.8176495, - "lon": -1.7902722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 6" - } -}, -{ - "type": "node", - "id": 2912858748, - "lat": 50.8191957, - "lon": -1.8404617, - "tags": { - "amenity": "post_box", - "ref": "BH24 32", - "ref:GB:uprn": "10015273781" - } -}, -{ - "type": "node", - "id": 2912858749, - "lat": 50.8409485, - "lon": -1.8285098, - "tags": { - "amenity": "post_box", - "mapillary": "1126194784523630", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH24 52", - "ref:GB:uprn": "10015297258", - "survey:date": "2021-03-11" - } -}, -{ - "type": "node", - "id": 2912858750, - "lat": 50.8180156, - "lon": -1.8584432, - "tags": { - "amenity": "post_box", - "ref": "BH24 50", - "ref:GB:uprn": "10015469192" - } -}, -{ - "type": "node", - "id": 2912858751, - "lat": 50.8619862, - "lon": -1.7886414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 9" - } -}, -{ - "type": "node", - "id": 2912858752, - "lat": 50.8319369, - "lon": -1.8061305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 53", - "ref:GB:uprn": "10015403440" - } -}, -{ - "type": "node", - "id": 2912858753, - "lat": 50.8270294, - "lon": -1.7025939, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-15", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "This postbox is of a brand new EIIR design. This postbox has moved since its last edit on OSM so I have moved the icon to its current location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912858754, - "lat": 50.8402303, - "lon": -1.8158283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 62", - "ref:GB:uprn": "10015343787" - } -}, -{ - "type": "node", - "id": 2912858755, - "lat": 50.8375669, - "lon": -1.8156137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 74", - "ref:GB:uprn": "10015309749" - } -}, -{ - "type": "node", - "id": 2912858756, - "lat": 50.8572439, - "lon": -1.7428695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912858757, - "lat": 50.8216079, - "lon": -1.7030897, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BH24 35", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH24 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912858758, - "lat": 50.8540679, - "lon": -1.7776036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 39" - } -}, -{ - "type": "node", - "id": 2912858759, - "lat": 50.8118747, - "lon": -1.8144550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 13" - } -}, -{ - "type": "node", - "id": 2912858760, - "lat": 50.8666992, - "lon": -1.7575492, - "tags": { - "amenity": "post_box", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 44" - } -}, -{ - "type": "node", - "id": 2912858761, - "lat": 50.8124163, - "lon": -1.7906155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 36" - } -}, -{ - "type": "node", - "id": 2912858762, - "lat": 50.8259455, - "lon": -1.8445815, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH24 64", - "ref:GB:uprn": "10015397694" - } -}, -{ - "type": "node", - "id": 2912858763, - "lat": 50.8262471, - "lon": -1.6707647, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH24 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912858764, - "lat": 50.8423841, - "lon": -1.7540731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 37" - } -}, -{ - "type": "node", - "id": 2912858765, - "lat": 50.8789024, - "lon": -1.8290362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH24 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912858766, - "lat": 50.8375737, - "lon": -1.7141404, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH24 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912858767, - "lat": 50.8524097, - "lon": -1.7692437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 42" - } -}, -{ - "type": "node", - "id": 2912858768, - "lat": 50.8464217, - "lon": -1.7494811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH24 18" - } -}, -{ - "type": "node", - "id": 2912865420, - "lat": 50.8794274, - "lon": -1.8885269, - "tags": { - "amenity": "post_box", - "ref": "BH31 164", - "ref:GB:uprn": "10015442982" - } -}, -{ - "type": "node", - "id": 2912865421, - "lat": 50.8798720, - "lon": -1.8691720, - "tags": { - "amenity": "post_box", - "mapillary": "952689868866259", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH31 17", - "ref:GB:uprn": "10015479704", - "survey:date": "2020-08-14" - } -}, -{ - "type": "node", - "id": 2912865422, - "lat": 50.8826225, - "lon": -1.8879260, - "tags": { - "amenity": "post_box", - "mapillary": "475763666837436", - "post_box:type": "pillar", - "ref": "BH31 29", - "ref:GB:uprn": "10015283713", - "survey:date": "2020-09-11" - } -}, -{ - "type": "node", - "id": 2912865423, - "lat": 50.8750000, - "lon": -1.8550958, - "tags": { - "amenity": "post_box", - "ref": "BH31 219" - } -}, -{ - "type": "node", - "id": 2912865424, - "lat": 50.8740793, - "lon": -1.8766822, - "tags": { - "amenity": "post_box", - "ref": "BH31 79", - "ref:GB:uprn": "10015396075" - } -}, -{ - "type": "node", - "id": 2912865425, - "lat": 50.8722378, - "lon": -1.8683566, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH31 163", - "ref:GB:uprn": "10015365975" - } -}, -{ - "type": "node", - "id": 2912865426, - "lat": 50.8747563, - "lon": -1.8576707, - "tags": { - "amenity": "post_box", - "ref": "BH31 62", - "ref:GB:uprn": "10015303459" - } -}, -{ - "type": "node", - "id": 2912865427, - "lat": 50.8778975, - "lon": -1.8633785, - "tags": { - "amenity": "post_box", - "mapillary": "968016783973208", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH31 71", - "survey:date": "2020-08-14" - } -}, -{ - "type": "node", - "id": 2912865428, - "lat": 50.8713711, - "lon": -1.8642153, - "tags": { - "amenity": "post_box", - "ref": "BH31 211" - } -}, -{ - "type": "node", - "id": 2912918690, - "lat": 50.7318872, - "lon": -1.7498827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 59", - "ref:GB:uprn": "10015399290" - } -}, -{ - "type": "node", - "id": 2912918691, - "lat": 50.7347321, - "lon": -1.7308712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 104", - "ref:GB:uprn": "10015290882" - } -}, -{ - "type": "node", - "id": 2912918692, - "lat": 50.7365634, - "lon": -1.7587362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 401" - } -}, -{ - "type": "node", - "id": 2912918693, - "lat": 50.7402591, - "lon": -1.7929483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "878014706193456", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 21", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 2912918694, - "lat": 50.7558462, - "lon": -1.7743230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 73", - "ref:GB:uprn": "10015290291" - } -}, -{ - "type": "node", - "id": 2912918695, - "lat": 50.7566993, - "lon": -1.7091475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH23 40" - } -}, -{ - "type": "node", - "id": 2912918696, - "lat": 50.7379377, - "lon": -1.7577362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH23 66", - "ref:GB:uprn": "10015429571", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912918697, - "lat": 50.7385488, - "lon": -1.7060662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 95", - "ref:GB:uprn": "10015397249" - } -}, -{ - "type": "node", - "id": 2912918698, - "lat": 50.7367632, - "lon": -1.7482921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 508", - "ref:GB:uprn": "10015797950" - } -}, -{ - "type": "node", - "id": 2912918699, - "lat": 50.7501574, - "lon": -1.6971678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 47", - "ref:GB:uprn": "10015269764", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 2912918700, - "lat": 50.7382086, - "lon": -1.7287255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 32", - "ref:GB:uprn": "10015277590" - } -}, -{ - "type": "node", - "id": 2912934501, - "lat": 50.7400969, - "lon": -1.7898584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 15", - "ref:GB:uprn": "10015473999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912934502, - "lat": 50.7431169, - "lon": -1.7496862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 78", - "ref:GB:uprn": "10015283517" - } -}, -{ - "type": "node", - "id": 2912934503, - "lat": 50.7478201, - "lon": -1.8056201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 57", - "ref:GB:uprn": "10015340258" - } -}, -{ - "type": "node", - "id": 2912934504, - "lat": 50.7447265, - "lon": -1.7406988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 42", - "ref:GB:uprn": "10015277657", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912934505, - "lat": 50.7464217, - "lon": -1.6946839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 51", - "ref:GB:uprn": "10015440227" - } -}, -{ - "type": "node", - "id": 2912934506, - "lat": 50.7396488, - "lon": -1.7611909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 107", - "ref:GB:uprn": "10015407195" - } -}, -{ - "type": "node", - "id": 2912934507, - "lat": 50.7352593, - "lon": -1.7692495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 14", - "ref:GB:uprn": "10015426033", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912934509, - "lat": 50.7730286, - "lon": -1.8204355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 13", - "ref:GB:uprn": "10015299794" - } -}, -{ - "type": "node", - "id": 2912934510, - "lat": 50.7332592, - "lon": -1.7587769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH23 54", - "ref:GB:uprn": "10015406317", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2912934511, - "lat": 50.7321116, - "lon": -1.7895580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH23 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912934512, - "lat": 50.7825135, - "lon": -1.8518281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 68" - } -}, -{ - "type": "node", - "id": 2912934513, - "lat": 50.7399445, - "lon": -1.7497894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 46", - "ref:GB:uprn": "10015309463" - } -}, -{ - "type": "node", - "id": 2912934514, - "lat": 50.7421473, - "lon": -1.7370296, - "tags": { - "amenity": "post_box", - "mapillary": "692604378373298", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH23 105", - "ref:GB:uprn": "10015293046", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 2912934515, - "lat": 50.7825535, - "lon": -1.8519354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 517" - } -}, -{ - "type": "node", - "id": 2912934516, - "lat": 50.7499815, - "lon": -1.6897583, - "tags": { - "amenity": "post_box", - "mapillary": "264252882178835", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH23 2", - "ref:GB:uprn": "10015455988", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 2912934517, - "lat": 50.7320912, - "lon": -1.7397547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 92", - "ref:GB:uprn": "10015465583" - } -}, -{ - "type": "node", - "id": 2912934519, - "lat": 50.7849819, - "lon": -1.7345405, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 101" - } -}, -{ - "type": "node", - "id": 2912934520, - "lat": 50.7976626, - "lon": -1.8189035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 61" - } -}, -{ - "type": "node", - "id": 2912934521, - "lat": 50.7937286, - "lon": -1.7093620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 1" - } -}, -{ - "type": "node", - "id": 2912934522, - "lat": 50.7611237, - "lon": -1.8054270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 70", - "ref:GB:uprn": "10015768502" - } -}, -{ - "type": "node", - "id": 2912934524, - "lat": 50.7353244, - "lon": -1.7910448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH23 82", - "ref:GB:uprn": "10015322647" - } -}, -{ - "type": "node", - "id": 2912934526, - "lat": 50.7756468, - "lon": -1.8557334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 6" - } -}, -{ - "type": "node", - "id": 2912934527, - "lat": 50.7733000, - "lon": -1.7796445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH23 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2912934528, - "lat": 50.7488411, - "lon": -1.7075693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 84", - "ref:GB:uprn": "10015336541" - } -}, -{ - "type": "node", - "id": 2912934529, - "lat": 50.7383791, - "lon": -1.7502059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 509", - "ref:GB:uprn": "10015703571", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2912934531, - "lat": 50.7459349, - "lon": -1.7046081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 76", - "ref:GB:uprn": "10015440221" - } -}, -{ - "type": "node", - "id": 2912934532, - "lat": 50.7780626, - "lon": -1.8318296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 500", - "ref:GB:uprn": "10015492328" - } -}, -{ - "type": "node", - "id": 2912934535, - "lat": 50.7690932, - "lon": -1.6972470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 4" - } -}, -{ - "type": "node", - "id": 2913309006, - "lat": 50.7897904, - "lon": -1.8997407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "524694438533806", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH22 600", - "ref:GB:uprn": "10015440539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-05-24" - } -}, -{ - "type": "node", - "id": 2913309007, - "lat": 50.8212704, - "lon": -1.8849861, - "tags": { - "amenity": "post_box", - "ref": "BH22 36", - "ref:GB:uprn": "10015426073" - } -}, -{ - "type": "node", - "id": 2913309008, - "lat": 50.8326558, - "lon": -1.8899213, - "tags": { - "amenity": "post_box", - "ref": "BH22 51", - "ref:GB:uprn": "10015269741" - } -}, -{ - "type": "node", - "id": 2913309009, - "lat": 50.8242119, - "lon": -1.8925177, - "tags": { - "amenity": "post_box", - "ref": "BH22 255" - } -}, -{ - "type": "node", - "id": 2913309010, - "lat": 50.7767981, - "lon": -1.8781893, - "tags": { - "amenity": "post_box", - "ref": "BH22 67" - } -}, -{ - "type": "node", - "id": 2913309011, - "lat": 50.8068868, - "lon": -1.9063880, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BH22 139", - "ref:GB:uprn": "10015383418" - } -}, -{ - "type": "node", - "id": 2913309012, - "lat": 50.8279425, - "lon": -1.8801729, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH22 105D", - "ref:GB:uprn": "10015452487", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2913309013, - "lat": 50.8046210, - "lon": -1.8975817, - "tags": { - "amenity": "post_box", - "ref": "BH22 48", - "ref:GB:uprn": "10015280087" - } -}, -{ - "type": "node", - "id": 2913309014, - "lat": 50.8058108, - "lon": -1.8709939, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH22 191D", - "ref:GB:uprn": "10015286523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309015, - "lat": 50.8104110, - "lon": -1.9004356, - "tags": { - "amenity": "post_box", - "ref": "BH22 120", - "ref:GB:uprn": "10015380423" - } -}, -{ - "type": "node", - "id": 2913309016, - "lat": 50.7980375, - "lon": -1.8909725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BH22 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309017, - "lat": 50.8053804, - "lon": -1.8914448, - "tags": { - "amenity": "post_box", - "ref": "BH22 170", - "ref:GB:uprn": "10015386138" - } -}, -{ - "type": "node", - "id": 2913309018, - "lat": 50.7827977, - "lon": -1.8906294, - "tags": { - "amenity": "post_box", - "mapillary": "327526582271067", - "post_box:type": "pillar", - "ref": "BH22 19", - "ref:GB:uprn": "10015426851", - "survey:date": "2020-09-08" - } -}, -{ - "type": "node", - "id": 2913309019, - "lat": 50.7905980, - "lon": -1.8921529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "BH22 185", - "ref:GB:uprn": "10015299686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309021, - "lat": 50.8118760, - "lon": -1.8942998, - "tags": { - "amenity": "post_box", - "ref": "BH22 184", - "ref:GB:uprn": "10015420127" - } -}, -{ - "type": "node", - "id": 2913309022, - "lat": 50.8146954, - "lon": -1.9010589, - "tags": { - "amenity": "post_box", - "ref": "BH22 89", - "ref:GB:uprn": "10015473111" - } -}, -{ - "type": "node", - "id": 2913309023, - "lat": 50.8141111, - "lon": -1.8705719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH22 99D", - "ref:GB:uprn": "10015463971", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2913309024, - "lat": 50.8210128, - "lon": -1.8700730, - "tags": { - "amenity": "post_box", - "ref": "BH22 177", - "ref:GB:uprn": "10015410449" - } -}, -{ - "type": "node", - "id": 2913309025, - "lat": 50.7940820, - "lon": -1.9009774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "BH22 82", - "ref:GB:uprn": "10015387827", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309026, - "lat": 50.8385900, - "lon": -1.8838542, - "tags": { - "amenity": "post_box", - "ref": "BH22 144", - "ref:GB:uprn": "10015287029" - } -}, -{ - "type": "node", - "id": 2913309027, - "lat": 50.7791135, - "lon": -1.9089012, - "tags": { - "amenity": "post_box", - "ref": "BH22 45" - } -}, -{ - "type": "node", - "id": 2913309028, - "lat": 50.7963626, - "lon": -1.8938266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BH22 174", - "ref:GB:uprn": "10015349788", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309029, - "lat": 50.7951819, - "lon": -1.8850719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH22 92", - "ref:GB:uprn": "10015473012" - } -}, -{ - "type": "node", - "id": 2913309030, - "lat": 50.8130956, - "lon": -1.9067237, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH22 195", - "ref:GB:uprn": "10015458936", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2913309031, - "lat": 50.8111412, - "lon": -1.8756573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH22 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2913309032, - "lat": 50.8133803, - "lon": -1.8872176, - "tags": { - "amenity": "post_box", - "ref": "BH22 149", - "ref:GB:uprn": "10015343808" - } -}, -{ - "type": "node", - "id": 2913309033, - "lat": 50.8268554, - "lon": -1.8895887, - "tags": { - "amenity": "post_box", - "ref": "BH22 59", - "ref:GB:uprn": "10015805957" - } -}, -{ - "type": "node", - "id": 2913309034, - "lat": 50.7940095, - "lon": -1.8948083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BH22 179", - "ref:GB:uprn": "10015437433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309038, - "lat": 50.7806941, - "lon": -1.8722831, - "tags": { - "amenity": "post_box", - "ref": "BH22 107", - "ref:GB:uprn": "10015352837" - } -}, -{ - "type": "node", - "id": 2913309039, - "lat": 50.7801713, - "lon": -1.8821390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "BH22 25" - } -}, -{ - "type": "node", - "id": 2913309040, - "lat": 50.7858359, - "lon": -1.8858658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BH22 176", - "ref:GB:uprn": "10015429687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309041, - "lat": 50.8172449, - "lon": -1.8728410, - "tags": { - "amenity": "post_box", - "ref": "BH22 136", - "ref:GB:uprn": "10015299682" - } -}, -{ - "type": "node", - "id": 2913309042, - "lat": 50.7900214, - "lon": -1.8856481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "3073983366260716", - "post_box:type": "pillar", - "ref": "BH22 157", - "ref:GB:uprn": "10015436183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-31" - } -}, -{ - "type": "node", - "id": 2913309043, - "lat": 50.8190750, - "lon": -1.8767034, - "tags": { - "amenity": "post_box", - "ref": "BH22 159", - "ref:GB:uprn": "10015357182" - } -}, -{ - "type": "node", - "id": 2913309044, - "lat": 50.8010680, - "lon": -1.8835913, - "tags": { - "amenity": "post_box", - "ref": "BH22 134", - "ref:GB:uprn": "10015452444" - } -}, -{ - "type": "node", - "id": 2913309045, - "lat": 50.7991125, - "lon": -1.8964170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BH22 183", - "ref:GB:uprn": "10015435933", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2913309046, - "lat": 50.7915604, - "lon": -1.8803727, - "tags": { - "amenity": "post_box", - "ref": "BH22 46", - "ref:GB:uprn": "10015342818" - } -}, -{ - "type": "node", - "id": 2913309047, - "lat": 50.7880534, - "lon": -1.8878792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "BH22 116", - "ref:GB:uprn": "10015412772", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2913309048, - "lat": 50.8243410, - "lon": -1.8821429, - "tags": { - "amenity": "post_box", - "ref": "BH22 80", - "ref:GB:uprn": "10015356257" - } -}, -{ - "type": "node", - "id": 2913309049, - "lat": 50.8245643, - "lon": -1.8888377, - "tags": { - "amenity": "post_box", - "ref": "BH22 15", - "ref:GB:uprn": "10015803828" - } -}, -{ - "type": "node", - "id": 2913564497, - "lat": 60.2432870, - "lon": -1.3488374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ZE2 116" - } -}, -{ - "type": "node", - "id": 2913896521, - "lat": 52.5500577, - "lon": -2.2418640, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WV5 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2914389021, - "lat": 50.7081443, - "lon": -2.4234953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2914421653, - "lat": 51.5387402, - "lon": -0.0659547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 13D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2914579601, - "lat": 51.8979413, - "lon": -2.0817432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1386740", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL50 3D", - "ref:GB:nhle": "1386740", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26666427" - } -}, -{ - "type": "node", - "id": 2914591800, - "lat": 52.5460800, - "lon": -2.2203355, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WV5 203", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2914668932, - "lat": 52.6909626, - "lon": 1.3201322, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2914705092, - "lat": 51.8651779, - "lon": -2.2436065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "note": "Inside post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL1 1069", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2915207180, - "lat": 57.1699157, - "lon": -2.1704974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB16 529", - "royal_cypher": "no", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2915248829, - "lat": 57.2002837, - "lon": -2.2036975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Inside airport building, before security", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB21 276", - "royal_cypher": "no", - "source": "survey;position is approximate" - } -}, -{ - "type": "node", - "id": 2915834488, - "lat": 52.6350746, - "lon": 1.5368865, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2916314814, - "lat": 52.5159871, - "lon": 1.6031583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-31", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1425D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2916340800, - "lat": 52.5328787, - "lon": 1.6144767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-05-24", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR31 3148D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2916596434, - "lat": 52.0168827, - "lon": -0.3406721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2916634139, - "lat": 57.5883865, - "lon": -4.5382169, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-11", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV14 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2918746569, - "lat": 51.0739077, - "lon": -1.0412114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-07-24", - "note": "This postbox is very discreetly in the hedges about 50 feet west of the driveway for Southfield House.", - "old_ref": "SO24 141", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2918746580, - "lat": 51.0760636, - "lon": -1.0729189, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-04", - "old_ref": "SO24 145", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2918973549, - "lat": 51.5105439, - "lon": -1.7669570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 309D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2919001077, - "lat": 51.8722508, - "lon": -2.2465947, - "tags": { - "amenity": "post_box", - "ref": "GL1 117", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919202678, - "lat": 51.0433190, - "lon": -0.7750227, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU30 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919240962, - "lat": 50.9675034, - "lon": 0.9626978, - "tags": { - "amenity": "post_box", - "fixme": "Survey required: did this Post Box remain when the Post Office moved to 136-138 Coast Drive? If so, confirm reference", - "ref": "TN28 229" - } -}, -{ - "type": "node", - "id": 2919371454, - "lat": 55.6419586, - "lon": -3.8862274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML11 28", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919371455, - "lat": 55.6377740, - "lon": -3.8864095, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919371456, - "lat": 55.6327248, - "lon": -3.8797393, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919371463, - "lat": 55.5935857, - "lon": -3.8716749, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919371470, - "lat": 55.5896857, - "lon": -3.8862190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML11 43", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919412326, - "lat": 50.9934407, - "lon": -0.8075808, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU31 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919518886, - "lat": 50.9128220, - "lon": -1.9684893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-01-17", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH21 121D", - "ref:GB:uprn": "10015460142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2919518887, - "lat": 50.9084255, - "lon": -1.9579252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 110", - "ref:GB:uprn": "10015413841", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919535948, - "lat": 50.8029886, - "lon": -1.9822630, - "tags": { - "amenity": "post_box", - "ref": "BH21 4", - "ref:GB:uprn": "10015805381" - } -}, -{ - "type": "node", - "id": 2919535949, - "lat": 50.8506649, - "lon": -1.8843014, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BH21 70", - "ref:GB:uprn": "10015273632" - } -}, -{ - "type": "node", - "id": 2919535950, - "lat": 50.8013739, - "lon": -1.9779044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 2D", - "ref:GB:uprn": "10015429693", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2919535951, - "lat": 50.8419881, - "lon": -1.9136595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 156D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2919535952, - "lat": 50.8075177, - "lon": -1.9458493, - "tags": { - "amenity": "post_box", - "ref": "BH21 214", - "ref:GB:uprn": "10015290294" - } -}, -{ - "type": "node", - "id": 2919535953, - "lat": 50.8028123, - "lon": -1.9733152, - "tags": { - "amenity": "post_box", - "ref": "BH21 209" - } -}, -{ - "type": "node", - "id": 2919535956, - "lat": 50.8041819, - "lon": -1.9740447, - "tags": { - "amenity": "post_box", - "ref": "BH21 117", - "ref:GB:uprn": "10015296435" - } -}, -{ - "type": "node", - "id": 2919535957, - "lat": 50.8051989, - "lon": -1.9154653, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 60", - "ref:GB:uprn": "10015340117" - } -}, -{ - "type": "node", - "id": 2919535958, - "lat": 50.8016918, - "lon": -1.9419943, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH21 142", - "ref:GB:uprn": "10015283692" - } -}, -{ - "type": "node", - "id": 2919535959, - "lat": 50.8023864, - "lon": -1.9947729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH21 151D", - "ref:GB:uprn": "10015755705", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919535960, - "lat": 50.8059576, - "lon": -1.9266233, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH21 205", - "ref:GB:uprn": "10015452493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919535961, - "lat": 50.8053346, - "lon": -1.9452271, - "tags": { - "amenity": "post_box", - "ref": "BH21 150", - "ref:GB:uprn": "10015356090" - } -}, -{ - "type": "node", - "id": 2919535962, - "lat": 50.8023783, - "lon": -1.9635519, - "tags": { - "amenity": "post_box", - "ref": "BH21 165", - "ref:GB:uprn": "10015299600" - } -}, -{ - "type": "node", - "id": 2919535963, - "lat": 50.8035975, - "lon": -2.0119097, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 93", - "ref:GB:uprn": "10015303329" - } -}, -{ - "type": "node", - "id": 2919535964, - "lat": 50.8050905, - "lon": -1.9933352, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 166", - "ref:GB:uprn": "10015317487" - } -}, -{ - "type": "node", - "id": 2919535965, - "lat": 50.7997389, - "lon": -1.9876717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH21 7003;BH21 3", - "ref:GB:uprn": "10015803250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2919535966, - "lat": 50.8110309, - "lon": -1.9171625, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BH21 522", - "ref:GB:uprn": "10015804367" - } -}, -{ - "type": "node", - "id": 2919535967, - "lat": 50.8098499, - "lon": -1.9554624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH21 12", - "ref:GB:uprn": "10015326406" - } -}, -{ - "type": "node", - "id": 2919535968, - "lat": 50.8198893, - "lon": -2.0217022, - "tags": { - "amenity": "post_box", - "ref": "BH21 154", - "ref:GB:uprn": "10015315980" - } -}, -{ - "type": "node", - "id": 2919535969, - "lat": 50.8051989, - "lon": -1.9531664, - "tags": { - "amenity": "post_box", - "ref": "BH21 182", - "ref:GB:uprn": "10015279785" - } -}, -{ - "type": "node", - "id": 2919535970, - "lat": 50.8025529, - "lon": -1.9885904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH21 7", - "ref:GB:uprn": "10015445497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919535971, - "lat": 50.8062916, - "lon": -2.0021784, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 178", - "ref:GB:uprn": "10015298087" - } -}, -{ - "type": "node", - "id": 2919535973, - "lat": 50.8138619, - "lon": -1.9573507, - "tags": { - "amenity": "post_box", - "ref": "BH21 127", - "ref:GB:uprn": "10015323373" - } -}, -{ - "type": "node", - "id": 2919535974, - "lat": 50.7981131, - "lon": -1.9850203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00, Sa 01:00", - "ref": "BH21 2000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2919556246, - "lat": 50.7897579, - "lon": -1.9541213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH21 94" - } -}, -{ - "type": "node", - "id": 2919556247, - "lat": 50.7741744, - "lon": -1.9682270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH21 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2919556248, - "lat": 50.7721135, - "lon": -2.0120463, - "tags": { - "amenity": "post_box", - "ref": "BH21 188", - "ref:GB:uprn": "10015439088" - } -}, -{ - "type": "node", - "id": 2919556250, - "lat": 50.7700373, - "lon": -2.0217022, - "tags": { - "amenity": "post_box", - "ref": "BH21 217" - } -}, -{ - "type": "node", - "id": 2919556251, - "lat": 50.7878113, - "lon": -2.0089778, - "tags": { - "amenity": "post_box", - "ref": "BH21 24", - "ref:GB:uprn": "10015431434" - } -}, -{ - "type": "node", - "id": 2919556253, - "lat": 50.7675266, - "lon": -2.0252427, - "tags": { - "amenity": "post_box", - "ref": "BH21 192", - "ref:GB:uprn": "10015464757" - } -}, -{ - "type": "node", - "id": 2919556254, - "lat": 50.7806889, - "lon": -2.0137200, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH21 215", - "ref:GB:uprn": "10015295263" - } -}, -{ - "type": "node", - "id": 2919556255, - "lat": 50.7834024, - "lon": -2.0112309, - "tags": { - "amenity": "post_box", - "ref": "BH21 78", - "ref:GB:uprn": "10015448136" - } -}, -{ - "type": "node", - "id": 2919556256, - "lat": 50.7639844, - "lon": -2.0150503, - "tags": { - "amenity": "post_box", - "ref": "BH21 148", - "ref:GB:uprn": "10015268741" - } -}, -{ - "type": "node", - "id": 2919556257, - "lat": 50.7985946, - "lon": -1.9780251, - "tags": { - "amenity": "post_box", - "ref": "BH21 1", - "ref:GB:uprn": "10015383133" - } -}, -{ - "type": "node", - "id": 2919556258, - "lat": 50.7744203, - "lon": -2.0211872, - "tags": { - "amenity": "post_box", - "ref": "BH21 204" - } -}, -{ - "type": "node", - "id": 2919556259, - "lat": 50.7984318, - "lon": -1.9824132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:15, Sa 12:15", - "ref": "BH21 216", - "ref:GB:uprn": "10015473028", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2919556260, - "lat": 50.7830903, - "lon": -1.9793019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH21 85D", - "ref:GB:uprn": "10015326759", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2919556261, - "lat": 50.7983979, - "lon": -1.9665560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BH21 10", - "ref:GB:uprn": "10015444136" - } -}, -{ - "type": "node", - "id": 2919556262, - "lat": 50.7608219, - "lon": -2.0301565, - "tags": { - "amenity": "post_box", - "ref": "BH21 206", - "ref:GB:uprn": "10015474522" - } -}, -{ - "type": "node", - "id": 2919556263, - "lat": 50.7855865, - "lon": -1.9654831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH21 187", - "ref:GB:uprn": "10015296449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919556264, - "lat": 50.7990760, - "lon": -1.9508919, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH21 95", - "ref:GB:uprn": "10015284002" - } -}, -{ - "type": "node", - "id": 2919556266, - "lat": 50.7942887, - "lon": -1.9756917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH21 5518;BH21 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919556267, - "lat": 50.7842435, - "lon": -1.9683423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH21 201", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2919556268, - "lat": 50.7939923, - "lon": -1.9726362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BH21 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919556269, - "lat": 50.7951768, - "lon": -1.9790658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:15, Sa 11:00", - "ref": "BH21 5", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2919556270, - "lat": 50.7866040, - "lon": -1.9716629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH21 34", - "ref:GB:uprn": "10015342834", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2919556271, - "lat": 50.7824527, - "lon": -1.9754341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH21 189", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2919556272, - "lat": 50.7768628, - "lon": -1.9442186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH21 140" - } -}, -{ - "type": "node", - "id": 2919556273, - "lat": 50.7666167, - "lon": -2.0144710, - "tags": { - "amenity": "post_box", - "ref": "BH21 162", - "ref:GB:uprn": "10015378326" - } -}, -{ - "type": "node", - "id": 2919556274, - "lat": 50.7768988, - "lon": -2.0160106, - "tags": { - "amenity": "post_box", - "ref": "BH21 49" - } -}, -{ - "type": "node", - "id": 2919573217, - "lat": 50.7436565, - "lon": -1.7238260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 96", - "ref:GB:uprn": "10015359693" - } -}, -{ - "type": "node", - "id": 2919602837, - "lat": 52.0684855, - "lon": -1.3684432, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2920195701, - "lat": 51.3911830, - "lon": -3.2738090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 95D" - } -}, -{ - "type": "node", - "id": 2920200231, - "lat": 51.5070026, - "lon": -3.5760448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF31 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2920201501, - "lat": 51.1518709, - "lon": -0.9672116, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2920201726, - "lat": 55.8081507, - "lon": -3.9152600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2920508747, - "lat": 52.4025968, - "lon": -1.7506070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 825", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2920632243, - "lat": 52.3944319, - "lon": -1.7447952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2920811128, - "lat": 51.4687626, - "lon": -2.5795035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2921097248, - "lat": 53.1051000, - "lon": -2.5121600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "CW5 195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2921097249, - "lat": 53.1072909, - "lon": -2.5209605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CW5 197", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2921116937, - "lat": 53.0978000, - "lon": -2.5430900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "ref": "CW5 199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2921129333, - "lat": 53.1047200, - "lon": -2.5747600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW5 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2921219410, - "lat": 51.1525959, - "lon": -0.8929323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "note": "This postbox was a wall and had GR royal cypher; now it is a brand new EIIR lamp.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU35 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2921253072, - "lat": 51.1338349, - "lon": -0.8234926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "mapillary": "659437218373765", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU35 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-11-13" - } -}, -{ - "type": "node", - "id": 2921802816, - "lat": 51.4794075, - "lon": -3.3208092, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2921802817, - "lat": 51.4747522, - "lon": -3.3195709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 2921802818, - "lat": 51.4871065, - "lon": -3.3307388, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2921802819, - "lat": 51.4817997, - "lon": -3.3291291, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2921858532, - "lat": 53.2778952, - "lon": -1.2537762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S43 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2922281287, - "lat": 55.4665953, - "lon": -4.2251872, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA18 17", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2922281297, - "lat": 55.4568691, - "lon": -4.2368505, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2922398500, - "lat": 55.4557045, - "lon": -4.2582270, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2922627690, - "lat": 51.8931936, - "lon": -2.1573547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "old_ref": "CHR087: Glos Airport", - "post_box:type": "lamp", - "ref": "GL51 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2923365833, - "lat": 51.4814722, - "lon": -3.3557893, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2923526747, - "lat": 50.6118518, - "lon": -3.5970624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 2923614061, - "lat": 53.2822108, - "lon": -1.2080259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S80 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2923717365, - "lat": 55.3938810, - "lon": -4.1809487, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2923770195, - "lat": 55.4137642, - "lon": -3.7628169, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ML12 5", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2923800359, - "lat": 54.3192824, - "lon": -2.5846964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/6820801", - "post_box:type": "wall", - "ref": "LA10 62", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2923820323, - "lat": 54.1868068, - "lon": -2.6557910, - "tags": { - "amenity": "post_box", - "ref": "LA6 2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2923899684, - "lat": 53.3271970, - "lon": -3.3043791, - "tags": { - "amenity": "post_box", - "name": "Penyffordd", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2923921624, - "lat": 57.5802037, - "lon": -4.1423663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 13:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV10 144", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2924010321, - "lat": 54.1891818, - "lon": -2.7346269, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA6 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2924010326, - "lat": 54.2225268, - "lon": -2.7729738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "942579110179401", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LA7 187", - "source": "survey", - "survey:date": "2023-05-22" - } -}, -{ - "type": "node", - "id": 2924370842, - "lat": 50.9223491, - "lon": -2.0365019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DT11 77D", - "ref:GB:uprn": "10015855254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925278951, - "lat": 51.5553600, - "lon": -1.8421795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925280487, - "lat": 51.5516873, - "lon": -1.8345790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2962531877328850", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN5 378", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 2925280488, - "lat": 51.5554992, - "lon": -1.8350959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 387" - } -}, -{ - "type": "node", - "id": 2925280713, - "lat": 51.5531340, - "lon": -1.8458109, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 395" - } -}, -{ - "type": "node", - "id": 2925294256, - "lat": 51.5452383, - "lon": -1.8476163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 634", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925299741, - "lat": 51.5689607, - "lon": -1.8342878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 42" - } -}, -{ - "type": "node", - "id": 2925302378, - "lat": 51.4408223, - "lon": -2.6003392, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 1005", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2925314202, - "lat": 51.5595358, - "lon": -1.8235375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925318408, - "lat": 51.5653149, - "lon": -1.8353828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925318577, - "lat": 51.5704622, - "lon": -1.8402535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925321625, - "lat": 51.5537330, - "lon": -1.7925250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 297" - } -}, -{ - "type": "node", - "id": 2925322051, - "lat": 51.5728687, - "lon": -1.8416136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925323334, - "lat": 51.5766700, - "lon": -1.8411007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925331561, - "lat": 51.5532491, - "lon": -1.8287263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 81" - } -}, -{ - "type": "node", - "id": 2925335607, - "lat": 51.5509225, - "lon": -1.8275382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 82" - } -}, -{ - "type": "node", - "id": 2925337207, - "lat": 51.5582670, - "lon": -1.8376585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925337646, - "lat": 51.5633937, - "lon": -1.8431259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925338975, - "lat": 51.5584447, - "lon": -1.8149061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 605" - } -}, -{ - "type": "node", - "id": 2925346977, - "lat": 51.5779944, - "lon": -1.8299953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925349810, - "lat": 51.5637926, - "lon": -1.8188608, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 630", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2925349811, - "lat": 51.5638049, - "lon": -1.8188447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 631", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925351677, - "lat": 51.5789278, - "lon": -1.8430911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2925362428, - "lat": 51.5545612, - "lon": -1.7981658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 41" - } -}, -{ - "type": "node", - "id": 2925388882, - "lat": 51.4415640, - "lon": -2.6199937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 60D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2925404131, - "lat": 51.4666365, - "lon": -2.6144507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Andrew Handyside & Co", - "post_box:type": "pillar", - "ref": "BS8 386", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2925723220, - "lat": 50.9217552, - "lon": -0.8166549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "letters_only": "yes", - "post_box:type": "lamp", - "ref": "PO18 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2926472621, - "lat": 53.4089208, - "lon": -2.7563125, - "tags": { - "amenity": "post_box", - "name": "Dunbeath/Railton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2927356369, - "lat": 51.6114315, - "lon": -0.7077421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "HP11 207" - } -}, -{ - "type": "node", - "id": 2927453700, - "lat": 53.2975793, - "lon": -1.1660904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "S80 15" - } -}, -{ - "type": "node", - "id": 2927492288, - "lat": 53.2853589, - "lon": -1.2012217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S80 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2927580081, - "lat": 52.0767221, - "lon": -0.8051866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927580082, - "lat": 52.0906206, - "lon": -0.7712318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK14 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610547, - "lat": 52.0825174, - "lon": -0.7398862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK16 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610548, - "lat": 52.0846538, - "lon": -0.7349140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610549, - "lat": 52.0846666, - "lon": -0.7373799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610550, - "lat": 52.0847382, - "lon": -0.7489453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-23", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610551, - "lat": 52.0852262, - "lon": -0.7442096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610552, - "lat": 52.0878274, - "lon": -0.7414830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610553, - "lat": 52.0881003, - "lon": -0.7477871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927610554, - "lat": 52.0905717, - "lon": -0.7471670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927620788, - "lat": 52.0869219, - "lon": -0.7327329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927620789, - "lat": 52.0870578, - "lon": -0.7213210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927620790, - "lat": 52.0870598, - "lon": -0.7212823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927638821, - "lat": 52.0801446, - "lon": -0.7048444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927638822, - "lat": 52.0803365, - "lon": -0.7027400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK16 623", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927638823, - "lat": 52.0817969, - "lon": -0.7240976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927638824, - "lat": 52.0833779, - "lon": -0.7177855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927638825, - "lat": 52.0842336, - "lon": -0.7234014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927647524, - "lat": 52.0783442, - "lon": -0.7295302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927647525, - "lat": 52.0789676, - "lon": -0.7251889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927647527, - "lat": 52.0807856, - "lon": -0.7267843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927647528, - "lat": 52.0817554, - "lon": -0.7326991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 253", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2927894753, - "lat": 51.5017021, - "lon": -0.2715656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "135876668568036", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-02-02" - } -}, -{ - "type": "node", - "id": 2929184820, - "lat": 52.5849763, - "lon": 0.8392172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2929217805, - "lat": 52.5857163, - "lon": 0.8773920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2929234858, - "lat": 50.9095944, - "lon": -0.7372509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "PO18 24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-07-10" - } -}, -{ - "type": "node", - "id": 2929637813, - "lat": 51.5475713, - "lon": -1.7848401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 24" - } -}, -{ - "type": "node", - "id": 2929643836, - "lat": 51.5500076, - "lon": -1.7856453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 63" - } -}, -{ - "type": "node", - "id": 2929645229, - "lat": 51.5526499, - "lon": -1.7819390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2929657361, - "lat": 51.5549023, - "lon": -1.7856960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2929660095, - "lat": 51.5584370, - "lon": -1.7949150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2929673073, - "lat": 51.5542374, - "lon": -1.7817885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN1 408" - } -}, -{ - "type": "node", - "id": 2929677152, - "lat": 51.5530953, - "lon": -1.7773609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN1 44" - } -}, -{ - "type": "node", - "id": 2929688769, - "lat": 57.1461613, - "lon": -2.1053702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Neil Fachie Gold Medal Winner London 2012 Paralympic Games Cycling: Track - Men's B 1km Time Trial", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 97", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2929722286, - "lat": 51.5658866, - "lon": -1.7678029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN1 365" - } -}, -{ - "type": "node", - "id": 2929723346, - "lat": 51.5610860, - "lon": -1.7861684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 394" - } -}, -{ - "type": "node", - "id": 2929723809, - "lat": 51.5589546, - "lon": -1.7817254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2929730625, - "lat": 57.1460538, - "lon": -2.1101319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 522", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2929730830, - "lat": 51.5589640, - "lon": -1.7853330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 770", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2929894298, - "lat": 54.2930759, - "lon": -2.8363728, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 132", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2929894299, - "lat": 54.3111951, - "lon": -2.8715705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2929924755, - "lat": 54.2740252, - "lon": -2.9509706, - "tags": { - "amenity": "post_box", - "ref": "LA12 24", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2929986405, - "lat": 54.1889835, - "lon": -3.2013458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA16 120", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930007375, - "lat": 50.5330143, - "lon": -3.6136856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2930136418, - "lat": 54.2291125, - "lon": -3.3347240, - "tags": { - "amenity": "post_box", - "name": "Valley End", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930136426, - "lat": 54.2439220, - "lon": -3.3536732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "wall", - "ref": "LA19 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930136436, - "lat": 54.3067618, - "lon": -3.3818328, - "tags": { - "amenity": "post_box", - "ref": "LA19 111", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930136452, - "lat": 54.3383698, - "lon": -3.3634753, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA18 101", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930136454, - "lat": 54.3574547, - "lon": -3.3811074, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA18 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930204319, - "lat": 54.3978308, - "lon": -3.4777047, - "tags": { - "amenity": "post_box", - "ref": "CA20 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930204322, - "lat": 54.3949392, - "lon": -3.4845173, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA20 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930204323, - "lat": 54.3835358, - "lon": -3.4529664, - "tags": { - "amenity": "post_box", - "ref": "CA19 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930204329, - "lat": 54.3788702, - "lon": -3.4376209, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA19 105", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930204332, - "lat": 54.3812050, - "lon": -3.4291694, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA19 110", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930246411, - "lat": 54.4180304, - "lon": -3.4323220, - "tags": { - "amenity": "post_box", - "ref": "CA20 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2930629472, - "lat": 54.4877071, - "lon": -3.5899800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CA27 39", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2931709318, - "lat": 57.1461172, - "lon": -2.0818674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 71", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2931721508, - "lat": 57.1430617, - "lon": -2.0720512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB11 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 2931733415, - "lat": 57.1502627, - "lon": -2.0823125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB24 235", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2931742691, - "lat": 57.1508582, - "lon": -2.0901952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB24 27", - "royal_cypher": "scottish_crown", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 2931765982, - "lat": 57.1521499, - "lon": -2.0956838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "note": "in morrisons (store)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 615", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2931932728, - "lat": 55.8884128, - "lon": -3.5391638, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 78D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2932008842, - "lat": 54.6951492, - "lon": -3.5153659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA15 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932008845, - "lat": 54.8553945, - "lon": -3.3891517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2055375458190722", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 143", - "source": "survey", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 2932008847, - "lat": 54.8778835, - "lon": -3.3813028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "384724580821688", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 200", - "source": "survey", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 2932008848, - "lat": 54.8903456, - "lon": -3.3623019, - "tags": { - "amenity": "post_box", - "ref": "CA7 144", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932008854, - "lat": 54.8287613, - "lon": -3.3695109, - "tags": { - "amenity": "post_box", - "ref": "CA7 368", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932008855, - "lat": 54.7969813, - "lon": -3.3584764, - "tags": { - "amenity": "post_box", - "ref": "CA7 201", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932008865, - "lat": 54.7688327, - "lon": -3.3154139, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932008871, - "lat": 54.8154052, - "lon": -3.2121444, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 67", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932008874, - "lat": 54.8481118, - "lon": -3.0868547, - "tags": { - "amenity": "post_box", - "ref": "CA5 324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2932427016, - "lat": 54.6816405, - "lon": -1.4335208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2932564979, - "lat": 51.3261299, - "lon": -0.2733631, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2933293447, - "lat": 55.6038239, - "lon": -3.3357712, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2933317306, - "lat": 51.8981555, - "lon": -2.2219760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2933392544, - "lat": 51.4554573, - "lon": -2.5791197, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 1229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2933410399, - "lat": 51.4574030, - "lon": -2.5758562, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2933429213, - "lat": 51.4585609, - "lon": -2.5681345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS5 189" - } -}, -{ - "type": "node", - "id": 2933455183, - "lat": 53.0304561, - "lon": -2.5545798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "ref": "CW5 223", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2933464153, - "lat": 51.4616561, - "lon": -2.5680026, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 170" - } -}, -{ - "type": "node", - "id": 2933665642, - "lat": 57.1430383, - "lon": -2.1061825, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 6DJ", - "addr:street": "Bon Accord Square", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; bing" - } -}, -{ - "type": "node", - "id": 2933860371, - "lat": 52.5710734, - "lon": -2.2269009, - "tags": { - "amenity": "post_box", - "ref": "WV6 173", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2934493777, - "lat": 51.2377848, - "lon": -1.0966107, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "RG25", - "ref": "RG25 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2934723150, - "lat": 53.3202992, - "lon": -0.8241972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DN22 60" - } -}, -{ - "type": "node", - "id": 2935834101, - "lat": 51.8645300, - "lon": -2.2005212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1145448842549012", - "note": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "GL4 351", - "source": "survey", - "survey:date": "2020-08-08" - } -}, -{ - "type": "node", - "id": 2936117912, - "lat": 51.8654187, - "lon": -2.1999046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "GL4 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2936250176, - "lat": 52.4311483, - "lon": 1.5038595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "NR34 3457D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2936533101, - "lat": 51.7370073, - "lon": 0.4659697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "drive_through": "no", - "note": "Two Type G boxes welded together with a single cap plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "CM1 9042;CM1 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2936555801, - "lat": 51.7328832, - "lon": 0.4739380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 13:30", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "location": "In WHSmith ground floor by stairs", - "note": "custom indoor box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2936733936, - "lat": 55.9349329, - "lon": -3.4027546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "note": "Franked Mail Only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EH28 135P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2937152207, - "lat": 51.7315986, - "lon": 0.4762789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "CM2 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2937252522, - "lat": 52.1305088, - "lon": 0.9023841, - "tags": { - "amenity": "post_box", - "ref": "IP7 1035" - } -}, -{ - "type": "node", - "id": 2937353701, - "lat": 51.7314282, - "lon": 0.4722439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2938255694, - "lat": 51.1068729, - "lon": -0.1734702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 2938256354, - "lat": 57.1606456, - "lon": -2.1227683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 50", - "royal_cypher": "no", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 2938260180, - "lat": 57.1534381, - "lon": -2.1110331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 11", - "royal_cypher": "no", - "source": "survey", - "source:position": "gps; survey" - } -}, -{ - "type": "node", - "id": 2939108970, - "lat": 51.3188950, - "lon": 0.4824025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME20 37D" - } -}, -{ - "type": "node", - "id": 2939117523, - "lat": 55.8924161, - "lon": -3.0576623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "EH22 255" - } -}, -{ - "type": "node", - "id": 2939617769, - "lat": 52.6388962, - "lon": -2.1900018, - "tags": { - "amenity": "post_box", - "ref": "WV8 178", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2939743888, - "lat": 53.0271013, - "lon": -2.6117336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "CW5 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2939753521, - "lat": 53.3335493, - "lon": -2.7396187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Highlands Road Post Box", - "operator": "Royal Mail", - "ref": "WA7 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2939821085, - "lat": 52.9072484, - "lon": -2.8935803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "SY12 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2939821088, - "lat": 52.9088415, - "lon": -2.8934231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "wall", - "ref": "SY12 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2939821096, - "lat": 52.9103951, - "lon": -2.8915678, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY12 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2939918032, - "lat": 51.0529669, - "lon": -1.1693374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2939918061, - "lat": 51.0881030, - "lon": -1.2043107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2941151414, - "lat": 52.9734007, - "lon": -3.0864779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL20 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2941180136, - "lat": 52.9691008, - "lon": -3.1704607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL20 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2941180137, - "lat": 52.9702812, - "lon": -3.1703967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL20 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2941180138, - "lat": 52.9715044, - "lon": -3.1703668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL20 178", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2943167473, - "lat": 51.5402784, - "lon": -0.2445252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2943452553, - "lat": 52.9369973, - "lon": -4.3332471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL53 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2943804545, - "lat": 53.3406695, - "lon": -2.6328247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WA4 135", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2943940833, - "lat": 51.9856119, - "lon": -2.1615835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2944414345, - "lat": 53.0548800, - "lon": -2.4749000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "CW5 243", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2944616665, - "lat": 50.2391093, - "lon": -5.1721941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR16 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "source:position": "survey;gps" - } -}, -{ - "type": "node", - "id": 2944645277, - "lat": 50.9139147, - "lon": -1.0286541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO8 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2944736949, - "lat": 51.0262713, - "lon": -0.9816732, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "last_checked": "2020-07-27", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2944781175, - "lat": 50.2483954, - "lon": -5.2339499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR16 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;gps;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2945788074, - "lat": 57.1719351, - "lon": -2.4104505, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB32 265", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2946168727, - "lat": 55.8719041, - "lon": -3.0388454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 277D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2946169571, - "lat": 51.5416907, - "lon": -0.0793396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "N1 65;N1 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2946459113, - "lat": 51.3186336, - "lon": -0.6151610, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "last_checked": "2020-02-19", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2946630313, - "lat": 51.1779481, - "lon": -3.2417835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2947474398, - "lat": 52.5797480, - "lon": -1.9599800, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WS1 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2947487243, - "lat": 57.0727931, - "lon": -2.1344219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 695D" - } -}, -{ - "type": "node", - "id": 2948577441, - "lat": 51.3154405, - "lon": -1.4052260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "wall", - "ref": "RG20 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2948651959, - "lat": 51.3702750, - "lon": -1.4684805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "lamp", - "ref": "RG17 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2948651960, - "lat": 51.3758882, - "lon": -1.4659771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "RG17 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2948651961, - "lat": 51.3793645, - "lon": -1.4627049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Unusual reference format! Quote \"This is number HU 140 Olive Branch\". Current ref guessed from postal district", - "old_ref": "HU 140", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG17 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2948651963, - "lat": 51.3833859, - "lon": -1.4530443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "wall", - "ref": "RG17 134", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2948651964, - "lat": 51.3971677, - "lon": -1.4426480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2948682459, - "lat": 51.3658753, - "lon": -1.4008048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:type": "wall", - "ref": "RG20 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2948971849, - "lat": 50.7177601, - "lon": -1.9092263, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH13 9", - "ref:GB:uprn": "10015283242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2948971850, - "lat": 50.7235030, - "lon": -1.9099547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 136D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2948971851, - "lat": 50.7255685, - "lon": -1.9192280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 130D", - "ref:GB:uprn": "10015448990", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2948994484, - "lat": 50.7053186, - "lon": -1.9174007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH13 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2949028906, - "lat": 51.4199479, - "lon": -1.3623833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:type": "wall", - "ref": "RG20 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2949550073, - "lat": 51.4838466, - "lon": -1.5501888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2949590884, - "lat": 52.1754992, - "lon": -1.5867787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2949925733, - "lat": 51.5241945, - "lon": -0.1481438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NW1 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 21D" - } -}, -{ - "type": "node", - "id": 2949933333, - "lat": 51.5295877, - "lon": -0.1675124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NW8 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2949949031, - "lat": 51.4584367, - "lon": -2.5736709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS1 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2949949032, - "lat": 51.4586108, - "lon": -2.5738371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS1 4006" - } -}, -{ - "type": "node", - "id": 2949952608, - "lat": 50.5606462, - "lon": -3.6157932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 51D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2950387133, - "lat": 51.5218847, - "lon": -0.1434430, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-16", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1W 127;W1W 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2950443432, - "lat": 51.3459568, - "lon": -0.6016067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU24 136", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2950867570, - "lat": 51.5690296, - "lon": 0.2197730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:29", - "post_box:type": "pillar", - "ref": "RM11 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2951626008, - "lat": 51.5523381, - "lon": -0.1411485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NW5 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 24D" - } -}, -{ - "type": "node", - "id": 2953183030, - "lat": 57.9679204, - "lon": -4.5427970, - "tags": { - "amenity": "post_box", - "ref": "IV27 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2953306141, - "lat": 57.7004443, - "lon": -4.2342477, - "tags": { - "amenity": "post_box", - "ref": "IV17 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2953306148, - "lat": 57.7000634, - "lon": -4.2290003, - "tags": { - "amenity": "post_box", - "ref": "IV17 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2953306151, - "lat": 57.6965255, - "lon": -4.2436602, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2953306161, - "lat": 57.6948316, - "lon": -4.2714987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV17 15D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2953981633, - "lat": 55.9111160, - "lon": -4.3501590, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2954044052, - "lat": 51.0686527, - "lon": -1.7948051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2954044053, - "lat": 51.0686540, - "lon": -1.7947902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SP1", - "ref": "SP1 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2954990777, - "lat": 55.5659526, - "lon": -5.6961677, - "tags": { - "amenity": "post_box", - "ref": "PA29 28" - } -}, -{ - "type": "node", - "id": 2955046096, - "lat": 51.5220684, - "lon": -0.0946186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1Y 104;EC1Y 1041", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2955046121, - "lat": 51.5243913, - "lon": -0.0949478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC1V 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2955157137, - "lat": 51.4291614, - "lon": -2.6642211, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS41 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2956288377, - "lat": 52.9877400, - "lon": -2.5095100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "CW3 178", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2956456454, - "lat": 56.0750061, - "lon": -3.4685358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY12 79", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2956566345, - "lat": 52.0557825, - "lon": 1.1542049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP4 1452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2957934935, - "lat": 52.0819457, - "lon": 1.1160568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "note": "Unclear in video, this box may have the same ref and meter one next to it", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP1 8172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2957934936, - "lat": 52.0819202, - "lon": 1.1160366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "IP1 1430" - } -}, -{ - "type": "node", - "id": 2958229040, - "lat": 56.1972586, - "lon": -3.2588620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "mapillary": "2728242383989033", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY6 79", - "source": "Survey July 2014", - "survey:date": "2021-09-17" - } -}, -{ - "type": "node", - "id": 2959019742, - "lat": 57.1548774, - "lon": -2.0900666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB24 104", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 2959035377, - "lat": 57.1546091, - "lon": -2.0947997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 2959053827, - "lat": 57.1521296, - "lon": -2.1185013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "surround has VR cypher; door has GR cypher!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB25 45", - "royal_cypher": "VR;GR", - "source": "survey;gps", - "wikimedia_commons": "File:Wall_mounted_letterbox_.jpg" - } -}, -{ - "type": "node", - "id": 2959062394, - "lat": 57.1522727, - "lon": -2.1138207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB25 95", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; gps; bing" - } -}, -{ - "type": "node", - "id": 2959188796, - "lat": 52.2545648, - "lon": -0.6715053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN29 1058", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2959307587, - "lat": 52.0717310, - "lon": 1.1219016, - "tags": { - "amenity": "post_box", - "mapillary": "827969871463742", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-03-28" - } -}, -{ - "type": "node", - "id": 2959307636, - "lat": 52.0620159, - "lon": 1.1415015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP1 1395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2959673911, - "lat": 52.3122686, - "lon": -1.4504105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2959973938, - "lat": 54.6871865, - "lon": -3.4059825, - "tags": { - "amenity": "post_box", - "ref": "CA13 79" - } -}, -{ - "type": "node", - "id": 2960190577, - "lat": 51.5776032, - "lon": -0.0010718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2961521621, - "lat": 55.8435305, - "lon": -4.1727423, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2961872027, - "lat": 53.0119800, - "lon": -2.4525400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 235" - } -}, -{ - "type": "node", - "id": 2961872028, - "lat": 53.0141812, - "lon": -2.4760451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "CW5 232", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2962199280, - "lat": 52.6039597, - "lon": 0.3657199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE38 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962199314, - "lat": 52.5797384, - "lon": 0.4459151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962217126, - "lat": 52.5687812, - "lon": 0.4892571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE33 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962217127, - "lat": 52.5705075, - "lon": 0.5030863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "note": "Collection times changing to 0900/0700 on 2014-09-15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962217134, - "lat": 52.5719617, - "lon": 0.4921029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962596155, - "lat": 52.5735690, - "lon": 0.5090919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962596170, - "lat": 52.5721248, - "lon": 0.5122113, - "tags": { - "amenity": "post_box", - "fixme": "resurvey for collection times", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE33 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2962744932, - "lat": 53.2766687, - "lon": -0.9364127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN22 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2962787984, - "lat": 51.5501787, - "lon": -1.8403241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 386", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2963219808, - "lat": 58.1721539, - "lon": -7.0873239, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2963252886, - "lat": 54.6893821, - "lon": -3.3693393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "503809084151415", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA13 68", - "survey:date": "2021-01-25" - } -}, -{ - "type": "node", - "id": 2963335489, - "lat": 50.6994765, - "lon": -2.5835777, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 49", - "ref:GB:uprn": "10015338759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2963521828, - "lat": 51.7706489, - "lon": -3.3954621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "CF48 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2963554245, - "lat": 51.7922343, - "lon": -3.3687537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "CF48 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2964363881, - "lat": 54.6399831, - "lon": -5.5427999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 2965159762, - "lat": 54.4668547, - "lon": -0.6724450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO21 85", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2965293845, - "lat": 51.9210452, - "lon": -3.3979270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "LD3 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2965337988, - "lat": 53.2050574, - "lon": -0.9975914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG22 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2965908446, - "lat": 53.3259542, - "lon": -0.9425774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DN22 120", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 2966094380, - "lat": 51.6159461, - "lon": -0.7032068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "HP13 34" - } -}, -{ - "type": "node", - "id": 2966823241, - "lat": 53.5110627, - "lon": -1.1435502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN4 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2966865384, - "lat": 56.7165087, - "lon": -5.7783539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH36 51" - } -}, -{ - "type": "node", - "id": 2967311278, - "lat": 52.6768661, - "lon": -2.1734975, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST19 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2967369873, - "lat": 52.2588955, - "lon": -0.6762411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2967369880, - "lat": 52.2543531, - "lon": -0.6654044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2967369884, - "lat": 52.2594648, - "lon": -0.6705524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2968497802, - "lat": 52.2745443, - "lon": 1.5453306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP17 4652", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2968497804, - "lat": 52.2752782, - "lon": 1.5516605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP17 4620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2968758829, - "lat": 53.1837161, - "lon": -1.0308562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2969871442, - "lat": 50.8570186, - "lon": -0.1486909, - "tags": { - "amenity": "post_box", - "ref": "BN1 276D" - } -}, -{ - "type": "node", - "id": 2970415919, - "lat": 52.2884894, - "lon": -2.0926693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "B60 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2971212893, - "lat": 51.6238881, - "lon": -0.7118450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "HP13 32" - } -}, -{ - "type": "node", - "id": 2971212898, - "lat": 51.6241136, - "lon": -0.7171631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "HP13 31" - } -}, -{ - "type": "node", - "id": 2971589150, - "lat": 51.4247490, - "lon": -0.0663631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2971589154, - "lat": 51.4262263, - "lon": -0.0702710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2971651993, - "lat": 57.1735282, - "lon": -2.0947504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB24 641", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 2971677162, - "lat": 57.1723603, - "lon": -2.0924191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "note": "gps position was on building, assume reflection or bad weather", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 47", - "royal_cypher": "scottish_crown", - "source": "survey", - "source:position": "survey; bing" - } -}, -{ - "type": "node", - "id": 2971742031, - "lat": 52.4083273, - "lon": 1.0381962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7024", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2972133446, - "lat": 50.6752306, - "lon": -3.5870007, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2972935989, - "lat": 51.3870616, - "lon": 0.5474429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 239" - } -}, -{ - "type": "node", - "id": 2973094047, - "lat": 52.0565767, - "lon": 1.1546985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:20,17:00; Sa 12:20", - "colour": "yellow", - "fixme": "Buttermarket redevelopment has removed bulding here, and no sign of this postbox. Check where postbox is now.", - "indoor": "yes", - "note": "There's no reference on the postbox itself, due to it being an international gift", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "french_lamp", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 2973323607, - "lat": 53.1814655, - "lon": -4.1289923, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2973815054, - "lat": 50.3234033, - "lon": -3.7996134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ7 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2973819331, - "lat": 53.4011217, - "lon": -2.3243150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA15 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2973862016, - "lat": 52.3951905, - "lon": 1.5437333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR34 3451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2974036780, - "lat": 50.6727053, - "lon": -3.5879057, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2974194329, - "lat": 51.3875224, - "lon": 0.5445826, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 205", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2975049996, - "lat": 51.3792953, - "lon": -0.7914077, - "tags": { - "amenity": "post_box", - "mapillary": "3068135040087142", - "post_box:type": "pillar", - "survey:date": "2020-05-24" - } -}, -{ - "type": "node", - "id": 2975050029, - "lat": 51.3861257, - "lon": -0.7934012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2975075639, - "lat": 50.9786814, - "lon": -0.6699633, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2975529009, - "lat": 50.6948227, - "lon": -3.2250756, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2976117445, - "lat": 52.5874408, - "lon": -2.1204903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "fixme": "This post box has either been removed all together or placed elsewhere when the station has been modenised", - "ref": "WV1 175", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2976205228, - "lat": 55.8509129, - "lon": -4.0582766, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2976478494, - "lat": 53.0285400, - "lon": -2.5904900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "ref": "CW5 216" - } -}, -{ - "type": "node", - "id": 2976478495, - "lat": 53.0391300, - "lon": -2.5885300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "ref": "CW5 214" - } -}, -{ - "type": "node", - "id": 2976570694, - "lat": 54.3236837, - "lon": -2.5165605, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA10 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2976885526, - "lat": 54.4671997, - "lon": -2.3529107, - "tags": { - "amenity": "post_box", - "ref": "CA17 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2977883216, - "lat": 55.6964737, - "lon": -2.8657792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "459664436110651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2022-11-27" - } -}, -{ - "type": "node", - "id": 2977956173, - "lat": 57.5231311, - "lon": -4.0626994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV2 118", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2977975742, - "lat": 57.5244468, - "lon": -3.9318263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV12 26", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2978157599, - "lat": 57.5756084, - "lon": -3.8082989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV12 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2978277838, - "lat": 51.0461418, - "lon": -0.9447864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "last_checked": "2021-07-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU33 118", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2978674207, - "lat": 57.5853152, - "lon": -3.8638477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV12 16D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2978674208, - "lat": 57.5862029, - "lon": -3.8659439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV12 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2978981782, - "lat": 50.2663041, - "lon": -3.6531884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 2980153735, - "lat": 51.4755461, - "lon": -2.5428159, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS16 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2980153761, - "lat": 51.4761786, - "lon": -2.5399703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "BS16 1114D" - } -}, -{ - "type": "node", - "id": 2980195838, - "lat": 51.4729814, - "lon": -2.5512495, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 176D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2982539457, - "lat": 53.2577008, - "lon": -0.9258237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DN22 65D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2982802085, - "lat": 53.2633919, - "lon": -0.9386353, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2983637103, - "lat": 50.1079964, - "lon": -5.5490668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR18 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "knowledge;bing" - } -}, -{ - "type": "node", - "id": 2983637104, - "lat": 50.1103375, - "lon": -5.5483855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 2984138517, - "lat": 52.5860223, - "lon": -2.1298695, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2984158897, - "lat": 52.5856025, - "lon": -2.1247403, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2984617478, - "lat": 50.1114658, - "lon": -5.5449201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR18 55", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "knowledge;bing" - } -}, -{ - "type": "node", - "id": 2984633208, - "lat": 51.2043845, - "lon": -2.1784357, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2984766360, - "lat": 57.2618193, - "lon": -3.6423603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:30", - "post_box:type": "lamp", - "ref": "PH25 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2984801434, - "lat": 51.1846970, - "lon": -2.1921487, - "tags": { - "amenity": "post_box", - "mapillary": "829987970969958", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-11-04" - } -}, -{ - "type": "node", - "id": 2984902787, - "lat": 51.6446081, - "lon": -0.0349952, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EN3 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2984959390, - "lat": 52.1836823, - "lon": 0.9950845, - "tags": { - "amenity": "post_box", - "ref": "IP14 8120" - } -}, -{ - "type": "node", - "id": 2984959391, - "lat": 52.1827300, - "lon": 0.9994594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP14 8001D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2984959392, - "lat": 52.1863828, - "lon": 0.9979220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP14 8126" - } -}, -{ - "type": "node", - "id": 2984959393, - "lat": 52.1824367, - "lon": 1.0044094, - "tags": { - "amenity": "post_box", - "ref": "IP14 8015" - } -}, -{ - "type": "node", - "id": 2985249746, - "lat": 56.8213433, - "lon": -5.1056154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 12:45", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2985264298, - "lat": 57.3173078, - "lon": -6.3751023, - "tags": { - "amenity": "post_box", - "ref": "IV47 119", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2985264331, - "lat": 57.2579165, - "lon": -6.3410480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV47 116", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2985267804, - "lat": 53.9870407, - "lon": -0.9169075, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 2986402076, - "lat": 57.6312171, - "lon": -4.3013147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 38", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2986402078, - "lat": 57.6568043, - "lon": -4.2356662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 33", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2986402085, - "lat": 57.6581211, - "lon": -4.1493046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 36", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2986402089, - "lat": 57.6795241, - "lon": -4.0384052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV11 178", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2986764435, - "lat": 50.8565280, - "lon": -0.1528404, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 63D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 2986853130, - "lat": 51.5208828, - "lon": -0.1086874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC1N 107;EC1N 1071", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2987990840, - "lat": 51.7874436, - "lon": -4.9752212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 2988483443, - "lat": 54.2807993, - "lon": -0.4046601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO11 2;YO11 1002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2988498433, - "lat": 51.6687240, - "lon": -0.4076950, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD17 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2988498933, - "lat": 51.6657880, - "lon": -0.3999000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD17 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2988519967, - "lat": 51.7949460, - "lon": -0.3505797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL5 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2989116530, - "lat": 51.6739109, - "lon": -0.0542842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2989208014, - "lat": 52.6001034, - "lon": -2.0820293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "WV11 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2989444810, - "lat": 53.7591237, - "lon": -2.4873257, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB1 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2989447385, - "lat": 52.2861231, - "lon": -1.5637742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "indoor": "yes", - "last_checked": "2020-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2990110565, - "lat": 53.4766893, - "lon": -0.5878548, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2991518322, - "lat": 51.2103552, - "lon": -0.7970197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU9 29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU9 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2991532320, - "lat": 51.2180844, - "lon": -0.7927632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2992154639, - "lat": 55.8815910, - "lon": -3.3426880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 582D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2992154709, - "lat": 55.8835201, - "lon": -3.3386807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 580", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2992470152, - "lat": 52.3823556, - "lon": -2.1397254, - "tags": { - "amenity": "post_box", - "ref": "DY9 105", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2992470475, - "lat": 52.4045942, - "lon": -2.1468869, - "tags": { - "amenity": "post_box", - "ref": "DY9 114", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 2992704563, - "lat": 53.4801931, - "lon": -2.0938128, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2993683293, - "lat": 51.2394998, - "lon": 0.6688618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 1D" - } -}, -{ - "type": "node", - "id": 2994546899, - "lat": 51.5994540, - "lon": -0.1927684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N3 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 2995332214, - "lat": 53.4864845, - "lon": -2.0947447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 2995684792, - "lat": 52.7716522, - "lon": -1.1608533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE12 90", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 2996413158, - "lat": 58.0227143, - "lon": -5.3487926, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IV26 191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2996969330, - "lat": 57.4088507, - "lon": -4.3385899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV3 106", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2996984911, - "lat": 57.4330529, - "lon": -4.3059457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV3 66", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2996988477, - "lat": 53.2467515, - "lon": -0.8973116, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2997041679, - "lat": 53.2355040, - "lon": -0.8798263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "NG22 1790 21/09/2023 CP7D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 2997094284, - "lat": 53.2332482, - "lon": -0.8879764, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2997205402, - "lat": 53.4649664, - "lon": -2.1165724, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2997206642, - "lat": 53.4600318, - "lon": -2.1246524, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 2997281984, - "lat": 56.1540484, - "lon": -3.9460251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK9 205", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 2997557872, - "lat": 50.8932153, - "lon": -1.6131161, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SO43 38", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO43 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2998058385, - "lat": 52.2829827, - "lon": -1.5825098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CV34 127D", - "royal_cypher": "ER", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2998526228, - "lat": 51.1098485, - "lon": -0.6289357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "wall", - "ref": "GU8 110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2998526229, - "lat": 51.1106260, - "lon": -0.6258995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU8 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 2998527535, - "lat": 51.1126726, - "lon": -0.6356929, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is immediately east of the property named \"Eastwick\" and is a bit set back in the bushes.", - "last_checked": "2020-09-17", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU8 73", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2998527537, - "lat": 51.1135553, - "lon": -0.6406488, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU8 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2998527539, - "lat": 51.1166797, - "lon": -0.6484663, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-17", - "old_ref": "GU8 32", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2998527547, - "lat": 51.1336554, - "lon": -0.6591366, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU8 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 2998527548, - "lat": 51.1351714, - "lon": -0.6497869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "letters_only": "yes", - "post_box:type": "wall", - "ref": "GU8 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2998633845, - "lat": 51.0811339, - "lon": -0.7318745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "Survey conducted on 2019-05-20. Could not find post box, it may have been removed.", - "post_box:type": "wall", - "ref": "GU27 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 2999282075, - "lat": 51.6623472, - "lon": -0.7520989, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Revised collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP14 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 2999346496, - "lat": 53.4446376, - "lon": -2.1152119, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3000126270, - "lat": 51.2422624, - "lon": 0.6334090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3003162724, - "lat": 51.2847144, - "lon": -0.0360525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey" - } -}, -{ - "type": "node", - "id": 3004277146, - "lat": 54.9730875, - "lon": -1.6086875, - "tags": { - "amenity": "post_box", - "ref": "NE1 148" - } -}, -{ - "type": "node", - "id": 3004515726, - "lat": 52.9131601, - "lon": 1.3495541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2022-02-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "NR27 2721D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3008150129, - "lat": 51.3500006, - "lon": -0.1003718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3008195967, - "lat": 52.9830743, - "lon": -2.2204425, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3008264464, - "lat": 53.0056110, - "lon": -2.1932107, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3009083820, - "lat": 51.3531292, - "lon": -0.0980855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3009562863, - "lat": 50.4139531, - "lon": -5.0920717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR7 91D", - "royal_cypher": "GR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3010065397, - "lat": 53.0134017, - "lon": -2.1290208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3010226826, - "lat": 51.4772131, - "lon": -2.8050333, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-29", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS20 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3010362753, - "lat": 52.6684744, - "lon": -3.1375710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3010362754, - "lat": 52.6647556, - "lon": -3.1440740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3010551396, - "lat": 51.2745070, - "lon": 0.1845401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN13 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3010851045, - "lat": 57.3567824, - "lon": -4.1978912, - "tags": { - "amenity": "post_box", - "ref": "IV2 69", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3010876578, - "lat": 57.4468920, - "lon": -4.2392400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 360D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3010938338, - "lat": 57.5938549, - "lon": -4.2123324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV9 154", - "royal_cypher": "scottish_crown", - "source": "survey 8th September 2014" - } -}, -{ - "type": "node", - "id": 3010938356, - "lat": 57.5789854, - "lon": -4.1364024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV10 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3011020026, - "lat": 53.4023490, - "lon": -2.3308766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA15 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3011417282, - "lat": 51.5240017, - "lon": -0.1405371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-03", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "note": "parcels & franked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "meter", - "ref": "W1T 131P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3011766031, - "lat": 51.5063905, - "lon": -0.2625009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3012327550, - "lat": 54.5852844, - "lon": -5.9325452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3012327551, - "lat": 54.5970701, - "lon": -5.9316810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT1 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3012524422, - "lat": 50.7344126, - "lon": -2.7655727, - "tags": { - "amenity": "post_box", - "mapillary": "1010796632939158", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:GB:uprn": "10015295712", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3013802405, - "lat": 52.9535541, - "lon": -1.9864178, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3013816862, - "lat": 52.9878618, - "lon": -2.2016618, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3015081565, - "lat": 52.1877019, - "lon": -1.7168537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "mapillary": "909716039897992", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2020-01-18" - } -}, -{ - "type": "node", - "id": 3015462355, - "lat": 51.1264217, - "lon": 1.3219456, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "CT16 70D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3015542473, - "lat": 51.5154620, - "lon": -3.2510781, - "tags": { - "amenity": "post_box", - "check_date": "2020-10-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3016628782, - "lat": 51.2974933, - "lon": -2.8991006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS26 15" - } -}, -{ - "type": "node", - "id": 3016628783, - "lat": 51.3075361, - "lon": -2.9418761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS24 216" - } -}, -{ - "type": "node", - "id": 3016628796, - "lat": 51.3108703, - "lon": -2.8925999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS26 23" - } -}, -{ - "type": "node", - "id": 3016628799, - "lat": 51.3269029, - "lon": -2.8744520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS29 172" - } -}, -{ - "type": "node", - "id": 3016776033, - "lat": 53.4722051, - "lon": -2.1017150, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3017326892, - "lat": 53.3334457, - "lon": -1.9645679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3017834133, - "lat": 52.3377128, - "lon": -0.1441871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3017839533, - "lat": 50.3117998, - "lon": -4.0395353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 617D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-02-26" - } -}, -{ - "type": "node", - "id": 3017852033, - "lat": 51.5942021, - "lon": 0.0619420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG5 65" - } -}, -{ - "type": "node", - "id": 3017852691, - "lat": 51.5903158, - "lon": 0.0493497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG5 105" - } -}, -{ - "type": "node", - "id": 3017866501, - "lat": 51.4321965, - "lon": -1.1432335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3017869287, - "lat": 50.8381573, - "lon": -0.1719605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 328", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3018655728, - "lat": 51.3130319, - "lon": -2.8272800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS25 180" - } -}, -{ - "type": "node", - "id": 3018756866, - "lat": 51.5033969, - "lon": -3.1652728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3018998538, - "lat": 51.8134398, - "lon": -2.2842596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL2 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3018998790, - "lat": 51.8225447, - "lon": -2.2421103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:45", - "post_box:type": "lamp", - "ref": "GL4 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3020947380, - "lat": 51.1260948, - "lon": 0.2578789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "TN2 70", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3021381785, - "lat": 51.6022620, - "lon": -0.6861952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3022422886, - "lat": 52.5216053, - "lon": 1.0347067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:25; Sa 10:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR17 1740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022422932, - "lat": 52.5114764, - "lon": 1.0201783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NR17 1749D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022423034, - "lat": 52.5224262, - "lon": 1.0271972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR17 1742D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022423060, - "lat": 52.5001700, - "lon": 1.1207639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022547802, - "lat": 52.4830564, - "lon": 1.1335174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR16 1624", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022549309, - "lat": 52.4730754, - "lon": 1.0465608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1721", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022549336, - "lat": 52.4782390, - "lon": 1.1070039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR16 1616", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3022627478, - "lat": 52.9283763, - "lon": -1.1059752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG2 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022635597, - "lat": 52.9274552, - "lon": -1.1128928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3022635598, - "lat": 52.9296235, - "lon": -1.1211099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 260", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3023395410, - "lat": 52.3613581, - "lon": -1.2316216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3023395413, - "lat": 52.3635344, - "lon": -1.2389519, - "tags": { - "amenity": "post_box", - "fixme": "Approximate location" - } -}, -{ - "type": "node", - "id": 3023986358, - "lat": 51.5195025, - "lon": -0.2683658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3024062829, - "lat": 52.9598693, - "lon": -1.1361970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/nAQbWTCq3G5K4rwFmaro7w", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 138D", - "ref:GB:uprn": "10015373403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3025227112, - "lat": 54.5989475, - "lon": -5.9025734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3025622679, - "lat": 53.7376958, - "lon": -2.0085354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "ref": "HX7 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3025622685, - "lat": 53.7407003, - "lon": -2.0141247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX7 1229" - } -}, -{ - "type": "node", - "id": 3025622694, - "lat": 53.7438847, - "lon": -2.0123332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX7 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3025734174, - "lat": 51.7819531, - "lon": -2.3661829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3025734175, - "lat": 51.7836556, - "lon": -2.3660637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3025794129, - "lat": 51.2924780, - "lon": -0.1017213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "name": "Coulsdon Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3025800821, - "lat": 51.2879461, - "lon": -0.0975317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3027098243, - "lat": 54.0342409, - "lon": -2.7951077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 35", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3027638696, - "lat": 51.1734689, - "lon": -0.1713683, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Sangers Drive", - "old_ref": "RH6 335", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH6 335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3027873134, - "lat": 51.4272563, - "lon": -0.3329864, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3027873164, - "lat": 51.4272808, - "lon": -0.3297877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3028063077, - "lat": 51.5212978, - "lon": -0.0390114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 54;E1 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3028470455, - "lat": 55.8907864, - "lon": -3.5347758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3028705354, - "lat": 52.9673665, - "lon": -1.1857453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG8 310", - "ref:GB:uprn": "10015418590", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3029704234, - "lat": 52.2882074, - "lon": -1.6055074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3029813723, - "lat": 52.2895952, - "lon": -1.5548896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3030273010, - "lat": 52.1829514, - "lon": -1.8345531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 92", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3030474978, - "lat": 51.8513365, - "lon": -2.2418149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3030752642, - "lat": 54.4104726, - "lon": -2.9483726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA23 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3031474962, - "lat": 52.4123617, - "lon": 1.4323916, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3033229564, - "lat": 51.3631868, - "lon": -0.3798180, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3033907493, - "lat": 51.5473811, - "lon": -1.7699042, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 256" - } -}, -{ - "type": "node", - "id": 3034698697, - "lat": 52.4578847, - "lon": 1.4401345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3529D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3035305274, - "lat": 51.8862523, - "lon": 0.1864677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "name": "Birchanger", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM23 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3035311479, - "lat": 51.8821654, - "lon": 0.1922680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "name": "Birchanger Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM23 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3035450786, - "lat": 52.2885189, - "lon": -1.5319628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "CV32 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3035450787, - "lat": 52.2890209, - "lon": -1.5340415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV32 4", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3035450788, - "lat": 52.2908896, - "lon": -1.5345378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "colour": "red", - "drive_through": "no", - "indoor": "yes", - "note": "Closed as of 2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3035477523, - "lat": 52.2934702, - "lon": -1.5743230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3035768449, - "lat": 51.6598784, - "lon": -0.0377333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN3 29D" - } -}, -{ - "type": "node", - "id": 3036707716, - "lat": 51.0786064, - "lon": -1.3794709, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3036715235, - "lat": 51.0935225, - "lon": -1.3541286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO22 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3036724993, - "lat": 51.1410104, - "lon": -1.3823977, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3036743177, - "lat": 51.1547649, - "lon": -1.4591479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3036909809, - "lat": 54.7367659, - "lon": -1.6577530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH7 464", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3037058510, - "lat": 51.4816206, - "lon": -0.0016772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "ER cypher with Imperial Crown over small numerals", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE10 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3037180285, - "lat": 56.1327254, - "lon": -3.9621146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 27D", - "royal_cypher": "scottish_crown", - "source": "survey;GPS" - } -}, -{ - "type": "node", - "id": 3037296627, - "lat": 52.9311944, - "lon": -1.1130575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30; Su off", - "post_box:type": "pillar", - "ref": "NG2 267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3037296628, - "lat": 52.9209315, - "lon": -1.1029973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "post_box:type": "lamp", - "ref": "NG2 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037296629, - "lat": 52.9235006, - "lon": -1.1159887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 312", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3037296630, - "lat": 52.9203020, - "lon": -1.1170406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 273", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3037296631, - "lat": 52.9215086, - "lon": -1.1220375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 227", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3037296632, - "lat": 52.9267335, - "lon": -1.1288733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG2 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037297333, - "lat": 52.9247269, - "lon": -1.1317945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037297334, - "lat": 52.9206090, - "lon": -1.1286337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "post_box:type": "pillar", - "ref": "NG2 295", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3037297335, - "lat": 52.9188953, - "lon": -1.1341417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "post_box:type": "pillar", - "ref": "NG2 313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3037297336, - "lat": 52.9231471, - "lon": -1.1359827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037297337, - "lat": 52.9267633, - "lon": -1.1348301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 176D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3037297338, - "lat": 52.9298465, - "lon": -1.1375866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "post_box:type": "pillar", - "ref": "NG2 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3037297339, - "lat": 52.9237425, - "lon": -1.1418406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "NG2 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037297340, - "lat": 52.9202204, - "lon": -1.1437165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037297341, - "lat": 52.9165245, - "lon": -1.1449723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037297342, - "lat": 52.9142480, - "lon": -1.1388521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "post_box:type": "pillar", - "ref": "NG2 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3037609948, - "lat": 51.1776595, - "lon": -1.4838522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3038021708, - "lat": 51.5490794, - "lon": -0.0550422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E8 8;E8 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3038669737, - "lat": 51.4588549, - "lon": -2.6945350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "BS8 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3038897480, - "lat": 51.1899769, - "lon": -1.4928356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3038897481, - "lat": 51.1930766, - "lon": -1.4958394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3038931790, - "lat": 51.1770076, - "lon": -1.5171179, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP11 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3038931793, - "lat": 51.1814401, - "lon": -1.5267018, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP11 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3039593823, - "lat": 51.1979015, - "lon": -1.5531565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3039605706, - "lat": 51.6426505, - "lon": -0.3439908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3039702317, - "lat": 52.9842677, - "lon": -1.0016560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "NG12 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3039702318, - "lat": 52.9942998, - "lon": -1.0204456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG14 265D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3039702323, - "lat": 52.9567412, - "lon": -1.0785114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa-Su off", - "opening_hours": "Mo-Fr 12:30-18:30", - "post_box:type": "meter", - "ref": "NG4 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3039769114, - "lat": 52.2974117, - "lon": -1.5829894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3039847160, - "lat": 52.6457659, - "lon": 0.6859774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Collection times changing on 2014-09-15 to 0900/0700", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE37 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3040111334, - "lat": 52.3723502, - "lon": -2.7680801, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3040735116, - "lat": 55.1764103, - "lon": -1.7025657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3040797137, - "lat": 51.1758233, - "lon": -1.6031871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SP11 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3040808550, - "lat": 51.1438546, - "lon": -1.5958707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO20 27", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3041007317, - "lat": 51.7199215, - "lon": -4.2416115, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3041060767, - "lat": 51.5494561, - "lon": -0.0751442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E8 25", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3041275698, - "lat": 54.2841474, - "lon": -0.3887210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO11 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3041511134, - "lat": 52.1085207, - "lon": -4.2075093, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3041586836, - "lat": 51.2404556, - "lon": -0.1701188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "mail:meter": "yes", - "mail:parcel": "yes", - "mail:stamped": "no", - "name": "Station Road Business Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH1 24P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3042037601, - "lat": 56.3884204, - "lon": -3.4265584, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2024-07-10", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 3", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3042037602, - "lat": 56.3884291, - "lon": -3.4265582, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2024-07-23", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PH2 2P", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3042065106, - "lat": 52.5886286, - "lon": 0.4560695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3042065131, - "lat": 52.5899224, - "lon": 0.5066854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE33 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3042073877, - "lat": 52.5870835, - "lon": 0.4792635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "PE33 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3042112933, - "lat": 56.3929816, - "lon": -3.4284279, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 7D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3042112942, - "lat": 56.3936983, - "lon": -3.4370651, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3042732295, - "lat": 54.1021730, - "lon": -2.1752776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD24 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3042880245, - "lat": 52.6257611, - "lon": 0.6322528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE37 297", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3042880286, - "lat": 52.5969509, - "lon": 0.5572716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE33 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3043152420, - "lat": 53.6348221, - "lon": -1.7154336, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3043448253, - "lat": 52.6372603, - "lon": 0.6824342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE37 489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3043448287, - "lat": 52.6412692, - "lon": 0.6825361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Collection times due to change to 0900/0730 on 2014-09-15", - "post_box:type": "pillar", - "ref": "PE37 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3043448290, - "lat": 52.6069432, - "lon": 0.6458864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE37 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3043448544, - "lat": 52.5701818, - "lon": 0.5115750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:20; Sa 08:00", - "note": "Collection times changing to 0900/0700 on 2014-09-15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE33 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3043456523, - "lat": 52.5835085, - "lon": 0.4803217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE33 428" - } -}, -{ - "type": "node", - "id": 3044556275, - "lat": 55.8002755, - "lon": -4.0741389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3044720431, - "lat": 50.8586833, - "lon": -0.7127362, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO18 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3044776153, - "lat": 50.8315352, - "lon": -0.6696398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3044776173, - "lat": 50.8417216, - "lon": -0.6894411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is of the brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3044776199, - "lat": 50.8502362, - "lon": -0.6822167, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3046317838, - "lat": 56.1543997, - "lon": -3.9363782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "FK9 78", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "FK9 78D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3046345041, - "lat": 56.1884908, - "lon": -4.0485045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "FK16 131D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3046345045, - "lat": 56.1907790, - "lon": -4.0609875, - "tags": { - "amenity": "post_box", - "ref": "FK16 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3046581860, - "lat": 50.8482918, - "lon": -1.0743047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 369", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3046927701, - "lat": 50.9799447, - "lon": -1.3905097, - "tags": { - "amenity": "post_box", - "collection_plate": "CPMET-NS", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SO53 740" - } -}, -{ - "type": "node", - "id": 3047088172, - "lat": 54.5359181, - "lon": -3.5013827, - "tags": { - "amenity": "post_box", - "ref": "CA26 125" - } -}, -{ - "type": "node", - "id": 3047668549, - "lat": 51.6620850, - "lon": -0.0400483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN3 118D" - } -}, -{ - "type": "node", - "id": 3048272401, - "lat": 54.2854164, - "lon": -0.4013002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO11 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3048273251, - "lat": 54.2878444, - "lon": -0.4025916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO12 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3048762256, - "lat": 52.4136878, - "lon": -1.5948085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV5 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3048895520, - "lat": 51.4552291, - "lon": -0.3007873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3049659717, - "lat": 52.6098718, - "lon": -4.0515055, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3050218279, - "lat": 53.2954122, - "lon": -1.0980595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3051144051, - "lat": 50.9085358, - "lon": -0.5343234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "name": "Amberley Post Office", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN18 1326", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051145419, - "lat": 50.9089240, - "lon": -0.5385586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "name": "Amberley Church Street", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN18 1324", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051146602, - "lat": 50.8944537, - "lon": -0.5531416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "name": "Houghton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1328", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051693110, - "lat": 53.2142890, - "lon": -3.0078391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH5 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3051731846, - "lat": 51.7994640, - "lon": -0.6018145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051731847, - "lat": 51.8022743, - "lon": -0.6024438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP23 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051766698, - "lat": 51.7702730, - "lon": -0.6177370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051766700, - "lat": 51.7836942, - "lon": -0.6142300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051766701, - "lat": 51.7877869, - "lon": -0.6211632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051914771, - "lat": 51.7778775, - "lon": -0.6408333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "note": "\"From 15th September 2014, the final collection from this postbox wil be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051937927, - "lat": 51.7549812, - "lon": -0.6508218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051937928, - "lat": 51.7549724, - "lon": -0.6837936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051937930, - "lat": 51.7628527, - "lon": -0.6307023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP23 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051938336, - "lat": 51.7635467, - "lon": -0.6962504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051938338, - "lat": 51.7754485, - "lon": -0.6712636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051938339, - "lat": 51.7805375, - "lon": -0.6890303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051942289, - "lat": 52.2297175, - "lon": -0.2652857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "PE19 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3051942307, - "lat": 52.2303007, - "lon": -0.2672330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Collection times changing to 0900/07:00 from 2014-09-15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE19 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3051942311, - "lat": 52.2282965, - "lon": -0.2674797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "mail:franked": "yes", - "mail:stamped": "yes", - "note": "Left aperture for stamped, right for franked. Both have same ref on collection plate.", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE19 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3051957478, - "lat": 51.7927212, - "lon": -0.6912533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP23 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051957479, - "lat": 51.8034537, - "lon": -0.6633645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051957480, - "lat": 51.8075872, - "lon": -0.6718140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HP23 132", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3051957481, - "lat": 51.8134657, - "lon": -0.6481452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP23 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3052103172, - "lat": 51.4527480, - "lon": -2.5763569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS2 2" - } -}, -{ - "type": "node", - "id": 3052767516, - "lat": 50.8903987, - "lon": -0.8774285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3052788540, - "lat": 53.3970764, - "lon": -1.2150552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "wall", - "ref": "S25 539", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3053894114, - "lat": 51.6277061, - "lon": -0.7134370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "HP13 29" - } -}, -{ - "type": "node", - "id": 3054092368, - "lat": 57.4538723, - "lon": -4.1803656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 361", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3054319736, - "lat": 51.5230978, - "lon": -0.1581886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "colour": "red", - "drive_through": "no", - "inscription": "Danger Mouse The greatest secret agent in the world lived here", - "loc_name": "Danger Mouse's Pillar Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 653;NW1 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 653 and NW1 7" - } -}, -{ - "type": "node", - "id": 3054328827, - "lat": 52.2845041, - "lon": -1.5357906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "note": "No longer has ref no with a D on the end 18/01/18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3054577150, - "lat": 50.9679020, - "lon": -1.2773991, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3056564636, - "lat": 50.4486741, - "lon": -3.7201963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 53D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3056569433, - "lat": 50.9859184, - "lon": -2.2698906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP7 117", - "ref:GB:uprn": "10015392048", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3056569949, - "lat": 51.0059358, - "lon": -2.3247345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP8 60", - "ref:GB:uprn": "10015312198", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3056873030, - "lat": 51.3429920, - "lon": 0.7582847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3057689653, - "lat": 50.4520914, - "lon": -3.6958086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3057819361, - "lat": 51.0299856, - "lon": -2.4446380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA8 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3057819365, - "lat": 51.0318902, - "lon": -2.4494925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA8 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3057854368, - "lat": 51.0286454, - "lon": -2.5255212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 72", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3058768742, - "lat": 51.0563798, - "lon": -2.6108101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA11 166", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3058768744, - "lat": 51.0564309, - "lon": -2.6614829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA11 167", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3059155745, - "lat": 50.5488473, - "lon": -3.4968064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;local knowledge;aerial imagery" - } -}, -{ - "type": "node", - "id": 3059160762, - "lat": 50.5524518, - "lon": -3.4979517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 3059787557, - "lat": 57.7018201, - "lon": -3.4916688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV30 97", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3059838617, - "lat": 51.0524659, - "lon": -2.6737554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA11 307", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3059889309, - "lat": 51.0378958, - "lon": -2.8561808, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TA10 154", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3059924091, - "lat": 51.1520641, - "lon": -2.9423442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3059983270, - "lat": 50.2495301, - "lon": -3.8417479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 84", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3060003193, - "lat": 50.2697556, - "lon": -3.8262036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3060073126, - "lat": 51.1057410, - "lon": -0.1873077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "name": "Southgate Parade PO", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3060138747, - "lat": 51.1232395, - "lon": -2.7987499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 139", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3060198021, - "lat": 51.0621907, - "lon": -2.4778919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3060522568, - "lat": 51.4610197, - "lon": -0.1167786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW2 64" - } -}, -{ - "type": "node", - "id": 3060845357, - "lat": 52.2960706, - "lon": -1.5352694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3060860330, - "lat": 53.1667148, - "lon": -2.9846364, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3061303234, - "lat": 51.0270101, - "lon": -3.0937854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 320", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3061306333, - "lat": 51.0199733, - "lon": -3.1053547, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3061353758, - "lat": 53.7195165, - "lon": -2.2477646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3061354756, - "lat": 53.4102380, - "lon": -1.3683510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S60 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3061356854, - "lat": 51.0242443, - "lon": -1.9778832, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP5 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3061358879, - "lat": 51.0388032, - "lon": -1.8809402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 94", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3061368433, - "lat": 52.4557210, - "lon": 1.7346629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3061377074, - "lat": 54.5554526, - "lon": -5.8915253, - "tags": { - "addr:housenumber": "21", - "addr:street": "Ballymaconaghy Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT8 910" - } -}, -{ - "type": "node", - "id": 3061469239, - "lat": 52.3429021, - "lon": -1.5784328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "Ref currently not visible. Covered by sticker which says collection times are going to become Mo-Fr 09:00; Sa 07:00 from 06/03/2023", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061469241, - "lat": 52.3419664, - "lon": -1.5786098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "CV8 399P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061469242, - "lat": 52.3419532, - "lon": -1.5786661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV8 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061469243, - "lat": 51.1290252, - "lon": -0.1866240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "name": "Oak Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 72", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061506612, - "lat": 51.1176250, - "lon": -0.1929241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "name": "The Link", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 71", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061531060, - "lat": 51.1191991, - "lon": -0.1993820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "name": "West Green Parade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061538486, - "lat": 51.1159293, - "lon": -0.2013464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "name": "Ifield Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH11 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3061629320, - "lat": 51.1149720, - "lon": -0.1954576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "name": "Church Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3062513379, - "lat": 51.5441292, - "lon": -1.7552627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 239" - } -}, -{ - "type": "node", - "id": 3062518513, - "lat": 51.5437394, - "lon": -1.7655428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 118", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3062520328, - "lat": 51.5400512, - "lon": -1.7591605, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SN3 382" - } -}, -{ - "type": "node", - "id": 3062573030, - "lat": 55.8416772, - "lon": -3.6499734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 60D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3063051436, - "lat": 52.2712334, - "lon": -1.5535275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3063061908, - "lat": 52.2689175, - "lon": -1.5288439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3063061909, - "lat": 52.2730897, - "lon": -1.5486754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV34 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3063705594, - "lat": 55.9322022, - "lon": -3.7017405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3063860741, - "lat": 51.1118698, - "lon": -2.6371215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA6 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3064131027, - "lat": 51.2463566, - "lon": 0.2288307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "name": "Underriver Village", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN15 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3064138200, - "lat": 51.2480494, - "lon": 0.2415015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "name": "Underriver", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN15 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3064989220, - "lat": 51.1233939, - "lon": -0.1637341, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "indoor": "yes", - "name": "Tesco Three Bridges", - "note": "Since this postbox is indoor inside the Tesco Extra store, it can only be used during store opening times plus during Sunday browsing time.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "plastic_pillar", - "post_box:type": "pillar", - "ref": "RH10 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3064991757, - "lat": 51.0741795, - "lon": -1.4921271, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO20 318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3064991758, - "lat": 51.0766791, - "lon": -1.4522334, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO20 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3064998257, - "lat": 51.1271231, - "lon": -0.1551025, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "name": "Peterhouse Parade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065005072, - "lat": 51.1306114, - "lon": -0.1489385, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Orde Close", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065015089, - "lat": 51.1271554, - "lon": -0.1463049, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Heathfield", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065027570, - "lat": 51.1198803, - "lon": -0.1446393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "name": "Shires Parade P O", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065037494, - "lat": 51.1218476, - "lon": -0.1500003, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Mereworth Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065123409, - "lat": 51.1103566, - "lon": -0.1544770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "name": "Westminster Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065147487, - "lat": 51.1143643, - "lon": -0.1537917, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Spring Plat", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065565931, - "lat": 52.0872612, - "lon": 1.2940800, - "tags": { - "amenity": "post_box", - "ref": "IP12 8152", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065565932, - "lat": 52.0893054, - "lon": 1.2981954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "brick pillar", - "post_box:type": "wall", - "ref": "IP12 6373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566766, - "lat": 51.7325664, - "lon": -0.7281198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566767, - "lat": 51.7459031, - "lon": -0.7343205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566768, - "lat": 51.7482737, - "lon": -0.7423574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "HP22 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566770, - "lat": 51.7618146, - "lon": -0.7446820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566771, - "lat": 51.7626535, - "lon": -0.7423013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566841, - "lat": 52.0938925, - "lon": 1.3140294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP12 6203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065566844, - "lat": 52.0941770, - "lon": 1.3051029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "IP12 6201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065780378, - "lat": 52.2883173, - "lon": -1.5625695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065780380, - "lat": 52.2871420, - "lon": -1.5673818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065780381, - "lat": 52.2898987, - "lon": -1.5705757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3065780382, - "lat": 52.2894178, - "lon": -1.5663885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "man_made": "utility_pole", - "material": "wood", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "utility": "telecom" - } -}, -{ - "type": "node", - "id": 3065796044, - "lat": 52.6507939, - "lon": -1.2427754, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3066527698, - "lat": 54.5260583, - "lon": -3.5281078, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA25 66", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3066798635, - "lat": 51.8386363, - "lon": -2.2692893, - "tags": { - "amenity": "post_box", - "ref": "GL4 101" - } -}, -{ - "type": "node", - "id": 3067023530, - "lat": 51.7556503, - "lon": -0.8084535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067023531, - "lat": 51.7591147, - "lon": -0.7539991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067023532, - "lat": 51.7662512, - "lon": -0.7851056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067039233, - "lat": 51.7721780, - "lon": -0.7666562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067039234, - "lat": 51.7751959, - "lon": -0.7559252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 293", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067154607, - "lat": 51.7783163, - "lon": -0.7718757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067253839, - "lat": 51.6275080, - "lon": -0.7176490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "HP13 28" - } -}, -{ - "type": "node", - "id": 3067254052, - "lat": 51.6316155, - "lon": -0.7191682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "HP13 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3067282494, - "lat": 51.7832174, - "lon": -0.7608325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067282495, - "lat": 51.7862019, - "lon": -0.7585221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067282496, - "lat": 51.7898756, - "lon": -0.7627319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "olympic_gold": "yes", - "olympic_gold:note": "Pam Relph", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 281", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067282497, - "lat": 51.7917107, - "lon": -0.7580779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067282498, - "lat": 51.7922545, - "lon": -0.7522630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350848, - "lat": 51.7956238, - "lon": -0.7025318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350849, - "lat": 51.7959113, - "lon": -0.7065109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350850, - "lat": 51.7989411, - "lon": -0.7403274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350851, - "lat": 51.7989773, - "lon": -0.7191881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350852, - "lat": 51.8004172, - "lon": -0.6934048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350853, - "lat": 51.8005486, - "lon": -0.7167049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350854, - "lat": 51.8014727, - "lon": -0.7312039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350855, - "lat": 51.8018847, - "lon": -0.7235127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067350856, - "lat": 51.8038282, - "lon": -0.7153175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 09:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3067617500, - "lat": 51.4385550, - "lon": -2.5927200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 1041D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3067620859, - "lat": 51.4467051, - "lon": -2.6023155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS1 369D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3068269461, - "lat": 53.1831084, - "lon": -0.5877470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LN6 374" - } -}, -{ - "type": "node", - "id": 3068270989, - "lat": 53.2006914, - "lon": -0.5599445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 329" - } -}, -{ - "type": "node", - "id": 3068273601, - "lat": 53.2010203, - "lon": -0.5663636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 251" - } -}, -{ - "type": "node", - "id": 3068278605, - "lat": 53.1856197, - "lon": -0.6026610, - "tags": { - "amenity": "post_box", - "ref": "LN6 469" - } -}, -{ - "type": "node", - "id": 3068278830, - "lat": 53.1944218, - "lon": -0.5799498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 529" - } -}, -{ - "type": "node", - "id": 3068279091, - "lat": 53.1799004, - "lon": -0.6172013, - "tags": { - "amenity": "post_box", - "ref": "LN6 153" - } -}, -{ - "type": "node", - "id": 3068280069, - "lat": 53.1912292, - "lon": -0.5882099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 350" - } -}, -{ - "type": "node", - "id": 3068281301, - "lat": 53.1882109, - "lon": -0.5958116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN6 92" - } -}, -{ - "type": "node", - "id": 3068284170, - "lat": 53.1865866, - "lon": -0.5819656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN6 155" - } -}, -{ - "type": "node", - "id": 3068294083, - "lat": 53.1910199, - "lon": -0.5607915, - "tags": { - "amenity": "post_box", - "ref": "LN5 603" - } -}, -{ - "type": "node", - "id": 3068296202, - "lat": 53.1821913, - "lon": -0.5602134, - "tags": { - "amenity": "post_box", - "ref": "LN5 110" - } -}, -{ - "type": "node", - "id": 3068296205, - "lat": 53.1850921, - "lon": -0.5548235, - "tags": { - "amenity": "post_box", - "ref": "LN5 606" - } -}, -{ - "type": "node", - "id": 3068301822, - "lat": 53.1628570, - "lon": -0.5403566, - "tags": { - "amenity": "post_box", - "ref": "LN5 455" - } -}, -{ - "type": "node", - "id": 3068301823, - "lat": 53.1663005, - "lon": -0.5400117, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LN5 217", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3068301961, - "lat": 53.1700585, - "lon": -0.5391576, - "tags": { - "amenity": "post_box", - "ref": "LN5 611" - } -}, -{ - "type": "node", - "id": 3068304609, - "lat": 53.1661707, - "lon": -0.5334601, - "tags": { - "amenity": "post_box", - "highway": "bus_stop", - "name": "Manchester Road Bus Shelter", - "naptan:AtcoCode": "2700LWR02684", - "naptan:Bearing": "W", - "naptan:CommonName": "Manchester Road Bus Shelter", - "naptan:Landmark": "Bus Shelter", - "naptan:NaptanCode": "linatjtm", - "naptan:PlusbusZoneRef": "LINCLNC", - "naptan:Street": "Manchester Road", - "naptan:verified": "no", - "post_box:type": "lamp", - "ref": "LN5 245", - "source": "naptan_import" - } -}, -{ - "type": "node", - "id": 3068481722, - "lat": 50.9889918, - "lon": -3.4828366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX16 27D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3068769685, - "lat": 55.8254619, - "lon": -3.2248326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH26 10D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3068771501, - "lat": 52.2854679, - "lon": -1.5910056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3068792184, - "lat": 52.2943350, - "lon": -1.5920185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3068792185, - "lat": 52.2883478, - "lon": -1.5988797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "new collection plate has a D on the end of the ref no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3068792188, - "lat": 52.2887789, - "lon": -1.5934210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3068866865, - "lat": 55.6246594, - "lon": -3.5148311, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3070749948, - "lat": 51.5219819, - "lon": -0.1591879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "the left aperture is blocked up, the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 65D" - } -}, -{ - "type": "node", - "id": 3071060743, - "lat": 54.4166370, - "lon": -2.4032827, - "tags": { - "amenity": "post_box", - "ref": "CA17 157", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3071060760, - "lat": 54.4305224, - "lon": -2.4277303, - "tags": { - "amenity": "post_box", - "ref": "CA17 172", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3072466175, - "lat": 51.5114768, - "lon": -0.0795309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3R 314;EC3R 3141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3072466176, - "lat": 51.5101509, - "lon": -0.0820958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC3R 312;EC3R 3121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3073653933, - "lat": 52.0527678, - "lon": -0.0254204, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-02", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "SG8 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3073982942, - "lat": 50.8822450, - "lon": -0.8877952, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3074090706, - "lat": 50.9252289, - "lon": -0.8516356, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3074550538, - "lat": 52.0482795, - "lon": -0.0113618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Box number covered by collection times sticker", - "post_box:type": "pillar", - "ref": "SG8 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3074550539, - "lat": 52.0483206, - "lon": -0.0202707, - "tags": { - "amenity": "post_box", - "colour": "yellow", - "note": "Yellow French box. No collection plate, so no ref or times showing.", - "post_box:design": "french_lamp", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SG8 1001", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3075282108, - "lat": 54.3226796, - "lon": -2.8216053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 58" - } -}, -{ - "type": "node", - "id": 3075345733, - "lat": 52.0375808, - "lon": 1.2130861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1271", - "ref:GB:uprn": "10015292989", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3076383263, - "lat": 54.0116024, - "lon": -0.4331612, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3076631710, - "lat": 51.8566653, - "lon": -0.8128105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "note": "\"With effect from 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturdays.\"", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP22 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631714, - "lat": 51.8568936, - "lon": -0.8195010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP22 265", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631720, - "lat": 51.8647117, - "lon": -0.8314456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP22 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631721, - "lat": 51.8683624, - "lon": -0.9230587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631722, - "lat": 51.8725965, - "lon": -0.7696501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631723, - "lat": 51.8739924, - "lon": -0.9172926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "note": "\"With effect from 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP22 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631724, - "lat": 51.8751407, - "lon": -0.9160669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP22 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631725, - "lat": 51.8782142, - "lon": -0.8346377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 263", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631726, - "lat": 51.8815970, - "lon": -0.8402092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 262", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076631727, - "lat": 51.8837005, - "lon": -0.8472834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP22 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076678008, - "lat": 52.2746084, - "lon": -1.5956748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3076800955, - "lat": 53.1480734, - "lon": -4.1927674, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3077199688, - "lat": 52.2933209, - "lon": -1.5696122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "set in rear wall of McColls/post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV34 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3077626583, - "lat": 50.9735628, - "lon": -1.3965766, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 613D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3078095117, - "lat": 52.0982564, - "lon": -0.6554672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 240D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 3078965837, - "lat": 52.6591499, - "lon": -3.1459714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3078965877, - "lat": 52.6599571, - "lon": -3.1480561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "211071385220448", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "survey:date": "2023-10-14" - } -}, -{ - "type": "node", - "id": 3078966765, - "lat": 53.5768129, - "lon": -2.1380751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OL2 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3078998997, - "lat": 54.5580101, - "lon": -2.4975936, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA16 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3078998999, - "lat": 54.5722778, - "lon": -2.4892046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CA16 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3079030578, - "lat": 53.4895903, - "lon": -2.0372821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3079163912, - "lat": 52.1074103, - "lon": 1.1888477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 8246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3079163938, - "lat": 52.1142143, - "lon": 1.1877040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP6 1113" - } -}, -{ - "type": "node", - "id": 3079163981, - "lat": 52.1231636, - "lon": 1.1891770, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP6 1254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3079197689, - "lat": 52.1114620, - "lon": 1.2451403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "IP13 6318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3079197718, - "lat": 52.1142885, - "lon": 1.2423964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 8217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3079207536, - "lat": 52.1452238, - "lon": 1.1904234, - "tags": { - "amenity": "post_box", - "ref": "IP6 1263" - } -}, -{ - "type": "node", - "id": 3079207541, - "lat": 52.1282819, - "lon": 1.2212338, - "tags": { - "amenity": "post_box", - "ref": "IP13 6337" - } -}, -{ - "type": "node", - "id": 3079207551, - "lat": 52.1160457, - "lon": 1.2337570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3079239389, - "lat": 51.2634247, - "lon": -0.0130631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RH8 280D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3079239390, - "lat": 51.2639112, - "lon": 0.0086280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "RH8 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3079254073, - "lat": 52.0620403, - "lon": 1.2034061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3079708671, - "lat": 54.8766056, - "lon": -2.8896500, - "tags": { - "amenity": "post_box", - "ref": "CA1 502", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3079708679, - "lat": 54.8799773, - "lon": -2.8986406, - "tags": { - "amenity": "post_box", - "ref": "CA1 382", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3079708684, - "lat": 54.8845791, - "lon": -2.8912089, - "tags": { - "amenity": "post_box", - "ref": "CA1 396", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3079708705, - "lat": 54.8834884, - "lon": -2.8995494, - "tags": { - "amenity": "post_box", - "ref": "CA1 381", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3079870680, - "lat": 54.5763824, - "lon": -3.4297406, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3080066069, - "lat": 53.5310290, - "lon": -2.0186085, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3080279707, - "lat": 51.4186889, - "lon": -0.7774675, - "tags": { - "amenity": "post_box", - "mapillary": "503568544781900", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-05-15" - } -}, -{ - "type": "node", - "id": 3080789394, - "lat": 55.0876523, - "lon": -2.8643023, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 274", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3080789973, - "lat": 55.1181423, - "lon": -2.8241499, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3080897146, - "lat": 57.1402020, - "lon": -2.1132670, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB10 6BQ", - "addr:street": "Holburn Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; gps" - } -}, -{ - "type": "node", - "id": 3080941102, - "lat": 51.2575995, - "lon": 0.2692854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 10:00", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TN15 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3080942739, - "lat": 51.2812965, - "lon": 0.2521624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "TN15 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3082866313, - "lat": 58.2067739, - "lon": -6.8267900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 88", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3082892844, - "lat": 58.2106562, - "lon": -6.7995856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 92", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3082898746, - "lat": 58.2111590, - "lon": -6.7898728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 87", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3082997605, - "lat": 55.4134897, - "lon": -2.7921872, - "tags": { - "amenity": "post_box", - "ref": "TD9 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3082997617, - "lat": 55.4327698, - "lon": -2.7868572, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3084262947, - "lat": 53.5418470, - "lon": -2.1108852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 14:30-18:30", - "post_box:type": "pillar", - "ref": "OL1 226", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3084262953, - "lat": 53.5418677, - "lon": -2.1109013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "OL1 103", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3084552048, - "lat": 50.5492082, - "lon": -4.1440542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:15; Su off", - "note": "Modified Type C box with 2 apertures. Left aperture (PL19 1050) is marked \"Stamped Mail Only\" and right aperture (PL19 105) is marked \"Franked Mail Only\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL19 1050;PL19 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3084636860, - "lat": 52.5899350, - "lon": -1.1099621, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3086183510, - "lat": 51.6187284, - "lon": 0.0746925, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3086185451, - "lat": 51.6326943, - "lon": 0.0530571, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3086367323, - "lat": 51.7098169, - "lon": -0.0353997, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3086619533, - "lat": 50.7866130, - "lon": -0.6759268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3086634543, - "lat": 53.7445370, - "lon": -0.3461240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HU1 23D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3087451316, - "lat": 52.6171430, - "lon": -0.6792805, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3087455695, - "lat": 52.6292642, - "lon": -0.6577817, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3087709148, - "lat": 52.2732671, - "lon": -1.5999310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3087709149, - "lat": 52.2777458, - "lon": -1.5975385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3087709151, - "lat": 52.2725499, - "lon": -1.5962081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3087758885, - "lat": 52.2885582, - "lon": -1.5495413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa off", - "note": "confirmed ref is CV32 25 and not CV32 100 15/01/15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3087758887, - "lat": 52.2920864, - "lon": -1.5492815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3087758895, - "lat": 52.2863646, - "lon": -1.5396385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3087862766, - "lat": 52.6889186, - "lon": -0.6496458, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3088689224, - "lat": 51.6258353, - "lon": -0.7228906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "HP13 10" - } -}, -{ - "type": "node", - "id": 3088689681, - "lat": 51.6312233, - "lon": -0.7229574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "collection_times:old": "Mo-Fr 09:00; Sa 07:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3088771334, - "lat": 52.7143200, - "lon": -0.7187762, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3089101031, - "lat": 52.5693707, - "lon": 1.4045319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 16:15", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3089101032, - "lat": 52.5830275, - "lon": 1.3730409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR14 1441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3089150815, - "lat": 52.5698565, - "lon": 1.6656705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR31 3149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3089150826, - "lat": 52.5414234, - "lon": 1.6364159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR31 3145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3089150855, - "lat": 52.5378153, - "lon": 1.6681230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR32 3263", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3089151884, - "lat": 52.5570531, - "lon": 1.6728856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "New style sheet metal lamp box with silver stencil cypher", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR31 3144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3089166742, - "lat": 52.5645890, - "lon": 1.6589274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Jessica-Jane Applegate Gold Medal winner London 2012 Paralympic Games Swimmiong Women's 200m freestyle, S14", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR31 3140" - } -}, -{ - "type": "node", - "id": 3089166744, - "lat": 52.5707271, - "lon": 1.6546144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR31 3151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3089167077, - "lat": 52.5665029, - "lon": 1.6611322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR31 3152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3089560875, - "lat": 52.2798074, - "lon": -1.5739706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV34 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3089560876, - "lat": 52.2784315, - "lon": -1.5824961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV34 113D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3089835412, - "lat": 55.9005599, - "lon": -3.5299138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3090611269, - "lat": 54.6271409, - "lon": -3.3288503, - "tags": { - "amenity": "post_box", - "name": "Rogerscale", - "ref": "CA13 148" - } -}, -{ - "type": "node", - "id": 3090686484, - "lat": 51.6474070, - "lon": -0.0711310, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3091300089, - "lat": 52.6691927, - "lon": -0.8161597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:10; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE15 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3091322729, - "lat": 52.6124651, - "lon": -0.7144878, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3091326091, - "lat": 52.6520155, - "lon": -0.7705886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3091326095, - "lat": 52.6525792, - "lon": -0.7678199, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LE15 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3091719138, - "lat": 52.4539794, - "lon": -0.3967266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE8 160", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3092272102, - "lat": 52.9322563, - "lon": -0.7267061, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3093157311, - "lat": 52.4523037, - "lon": -0.4588761, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE8 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3093190940, - "lat": 52.6339849, - "lon": -0.4170377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE9 41" - } -}, -{ - "type": "node", - "id": 3093231704, - "lat": 52.4650472, - "lon": -0.4934415, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE8 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3093237552, - "lat": 52.4576000, - "lon": -0.6081851, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NN14 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3093805188, - "lat": 52.8598484, - "lon": 0.7211428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3094252281, - "lat": 52.6634282, - "lon": -3.1370365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SY21 36", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3094317700, - "lat": 51.2835863, - "lon": -0.7796691, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3094803100, - "lat": 57.1303116, - "lon": -3.9302138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH21 37", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3094828471, - "lat": 53.6912210, - "lon": -1.6970094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 182" - } -}, -{ - "type": "node", - "id": 3094835519, - "lat": 57.3409801, - "lon": -4.0098265, - "tags": { - "amenity": "post_box", - "note": "Box shows number in old format: IV048", - "ref": "IV13 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3094897429, - "lat": 51.4514287, - "lon": -0.4757886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3096153924, - "lat": 51.6393096, - "lon": -0.7300062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "collection_times:old": "Mo-Fr 16:45; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3096438357, - "lat": 51.5186025, - "lon": -0.0796930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "opening_hours": "Mo-Fr 14:00-18:30; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "EC2 222P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3096438358, - "lat": 51.5185820, - "lon": -0.0797004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2M 221;EC2M 2211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3096571426, - "lat": 51.5338754, - "lon": -2.5643441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS34 705", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3096571464, - "lat": 51.5346506, - "lon": -2.5625687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS34 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3096571517, - "lat": 51.5379177, - "lon": -2.5825447, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS34 1016", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3097155941, - "lat": 57.4720848, - "lon": -4.2565776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV3 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3097400301, - "lat": 51.1594286, - "lon": -0.7517082, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU10 129", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3097400303, - "lat": 51.1702094, - "lon": -0.7866848, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU10 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3098299274, - "lat": 51.0835448, - "lon": -0.7757650, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU30 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3098299280, - "lat": 51.0861160, - "lon": -0.7906210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "old_ref": "GU30 43", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU30 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3098299281, - "lat": 51.0894708, - "lon": -0.7977659, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-11", - "old_ref": "GU30 36", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU30 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098304786, - "lat": 51.1366062, - "lon": -0.6422977, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-17", - "old_ref": "GU8 71", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 71D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098307327, - "lat": 51.0933659, - "lon": -0.6630774, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3098307536, - "lat": 51.0814233, - "lon": -0.7037176, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "last_checked": "2020-03-06", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3098307537, - "lat": 51.0819015, - "lon": -0.7109154, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "last_checked": "2020-03-06", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3098307538, - "lat": 51.0823065, - "lon": -0.7375646, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_126,_Camelsdale_Road,_Haslemere,_West_Sussex.jpg" - } -}, -{ - "type": "node", - "id": 3098307539, - "lat": 51.0831737, - "lon": -0.7491343, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_32D_Linchmere_Road,_Linchmere,_Haslemere,_West_Sussex.jpg" - } -}, -{ - "type": "node", - "id": 3098443276, - "lat": 54.6047352, - "lon": -3.1445737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 134", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098443277, - "lat": 54.6065720, - "lon": -3.1346322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098443278, - "lat": 54.6078925, - "lon": -3.1454385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 228", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098472594, - "lat": 54.5987093, - "lon": -3.1385306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 139D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098472595, - "lat": 54.5999428, - "lon": -3.1421666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098472596, - "lat": 54.6000140, - "lon": -3.1368385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098472597, - "lat": 54.6012251, - "lon": -3.1238856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "note": "\"From 15th September 2014, the final collection will be made no earlier than 9:00am Monday to Friday and 07:00am on Saturday.\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 277", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098472598, - "lat": 54.6037300, - "lon": -3.1305138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 137", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098487128, - "lat": 54.3288116, - "lon": -2.7438979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "\"From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.\"", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098487329, - "lat": 54.3305246, - "lon": -2.7411636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA9 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098489103, - "lat": 54.3767172, - "lon": -2.8161343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA8 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3098514131, - "lat": 52.3013758, - "lon": -0.6929437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NN8 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3098991477, - "lat": 54.2782863, - "lon": -0.4091451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO12 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3099459508, - "lat": 53.0624457, - "lon": -4.2475842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3099748605, - "lat": 51.6139216, - "lon": -0.5960848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3100041008, - "lat": 51.0637990, - "lon": -1.3197530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "name": "Upper High Street Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3100282396, - "lat": 51.4545984, - "lon": -0.0327912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3100307093, - "lat": 53.4279752, - "lon": -3.0677943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QE II Carron post box CH45 264 on Wallasey Village outside Grove Road post office.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Grove Road post office.jpg" - } -}, -{ - "type": "node", - "id": 3100468825, - "lat": 51.7066804, - "lon": -2.2235657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3100539415, - "lat": 53.1328362, - "lon": -4.2087669, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3100582166, - "lat": 52.2840286, - "lon": -1.5133200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3100582167, - "lat": 52.2781431, - "lon": -1.4978667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV31 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3100582168, - "lat": 52.2853929, - "lon": -1.5201873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-04", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3100582173, - "lat": 52.2751662, - "lon": -1.4948204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3101295637, - "lat": 57.4493226, - "lon": -4.1776836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 352", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3101669130, - "lat": 52.9508199, - "lon": 0.5040984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE36 374", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 3102614024, - "lat": 52.3724850, - "lon": 1.1141966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP22 7003D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3102634135, - "lat": 52.3440591, - "lon": 1.1340646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP23 7087", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3102736987, - "lat": 51.3411630, - "lon": -1.9788466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3102791317, - "lat": 52.2542902, - "lon": 1.1384151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "inscription": "Letters Only", - "post_box:design": "hovis", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP14 8051", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3102792764, - "lat": 52.2779382, - "lon": 1.1392103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:40; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3102792769, - "lat": 52.2870216, - "lon": 1.1270162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3102796039, - "lat": 52.2435840, - "lon": 1.1407662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP14 8021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3102861790, - "lat": 52.2252173, - "lon": 1.1810100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "fixme": "check if postbox is still here, now PO has moved.", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP14 8072", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3102955581, - "lat": 51.3431826, - "lon": -1.9909766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3103382385, - "lat": 52.2085639, - "lon": 1.2243303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3103400797, - "lat": 52.1963962, - "lon": 1.2941563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3103400820, - "lat": 52.1978018, - "lon": 1.2585176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP13 6275", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3103401934, - "lat": 52.1935490, - "lon": 1.3119561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3103652952, - "lat": 52.2220314, - "lon": 1.3434821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 07:15", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP13 6345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3103652973, - "lat": 52.2220249, - "lon": 1.3367337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 8170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3103978393, - "lat": 51.2517429, - "lon": -0.1528696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 19" - } -}, -{ - "type": "node", - "id": 3104002569, - "lat": 51.2004709, - "lon": -0.8319197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU9 37" - } -}, -{ - "type": "node", - "id": 3104031970, - "lat": 51.8936190, - "lon": -3.2839450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LD3 372" - } -}, -{ - "type": "node", - "id": 3104031972, - "lat": 51.8960919, - "lon": -3.2903718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-25", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LD3 375", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3104031973, - "lat": 51.8972656, - "lon": -3.2832290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1236683710323236", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LD3 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 3104037863, - "lat": 51.5868892, - "lon": -1.8837997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN5 69" - } -}, -{ - "type": "node", - "id": 3104472666, - "lat": 51.5924369, - "lon": 0.2336063, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3104523802, - "lat": 52.2640247, - "lon": 1.3767466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3104524463, - "lat": 52.2337185, - "lon": 1.3612291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3104582771, - "lat": 52.3010771, - "lon": 1.3612216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3104645622, - "lat": 52.3373581, - "lon": 1.3571897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP21 7105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3104645627, - "lat": 52.3526860, - "lon": 1.3460248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3104651939, - "lat": 52.3754419, - "lon": 1.2940585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3104655043, - "lat": 52.8260542, - "lon": -1.3306181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "indoor": "yes", - "post_box:type": "indoor_pillar", - "ref": "DE74 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3105094248, - "lat": 52.3734743, - "lon": 1.2712931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7151D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3105094262, - "lat": 52.3504866, - "lon": 1.2158908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7094", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3105094265, - "lat": 52.3496953, - "lon": 1.1998874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3105094271, - "lat": 52.3620397, - "lon": 1.2398496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3105102191, - "lat": 51.2045313, - "lon": -0.8166234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "GU10 22" - } -}, -{ - "type": "node", - "id": 3105383620, - "lat": 50.9228203, - "lon": -3.4722087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3105387931, - "lat": 52.3238116, - "lon": 1.1750635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP23 7089", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3105387957, - "lat": 52.3405586, - "lon": 1.2041151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7036", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3105417334, - "lat": 50.9283403, - "lon": -3.4607618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3105701896, - "lat": 51.2063044, - "lon": -0.8048755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU9 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3106134886, - "lat": 51.1962330, - "lon": -0.8211419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "old_ref": "GU10 69", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU10 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3107116667, - "lat": 50.5689775, - "lon": -3.5537451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ14 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 3108352295, - "lat": 52.2907298, - "lon": -0.6836958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 1057" - } -}, -{ - "type": "node", - "id": 3109698050, - "lat": 54.8075107, - "lon": -1.5720204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DH1 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3110696229, - "lat": 51.3448230, - "lon": -0.0860757, - "tags": { - "amenity": "post_box", - "ref": "CR2 312", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3110790793, - "lat": 52.3006922, - "lon": -0.6951525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "colour": "red", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 1077", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3110941488, - "lat": 51.0148630, - "lon": -0.9166862, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3111532300, - "lat": 56.2622570, - "lon": -2.6302249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY10 382D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3111835400, - "lat": 51.4641851, - "lon": -0.3233299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "name": "St Margaret's Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3111838126, - "lat": 51.4789380, - "lon": -0.3226075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "name": "Busch Corner", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3111839548, - "lat": 51.4687041, - "lon": -0.3248421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TW7 259;TW7 2591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3111840385, - "lat": 50.9427119, - "lon": -2.5316781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015835422" - } -}, -{ - "type": "node", - "id": 3111846217, - "lat": 51.4814550, - "lon": -0.3153246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "name": "50 London Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3111849783, - "lat": 51.4856200, - "lon": -0.3006161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "name": "Albany Parade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 219", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3111850331, - "lat": 51.4892946, - "lon": -0.2873160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "name": "Kew Bridge Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 213", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3113254881, - "lat": 52.0903688, - "lon": 1.3176435, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP12 6216", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3113274902, - "lat": 52.0929621, - "lon": 1.3203444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP12 6391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3113368464, - "lat": 50.5577285, - "lon": -3.5079167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ14 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3113555958, - "lat": 51.1166246, - "lon": -0.1978571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "indoor": "yes", - "name": "Crawley Hospital", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3113564879, - "lat": 53.3171239, - "lon": -1.9170661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "SK23 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3114752014, - "lat": 52.7056678, - "lon": -2.4850243, - "tags": { - "amenity": "post_box", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3115061741, - "lat": 52.2762787, - "lon": -1.5163175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "note": "this box is inside the entrance lobby of Asda.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3115270826, - "lat": 53.7754690, - "lon": -1.2502288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 885" - } -}, -{ - "type": "node", - "id": 3115337650, - "lat": 55.7967540, - "lon": -3.5894169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH55 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3115388415, - "lat": 54.0789838, - "lon": -2.7537565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "LA2 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3116353979, - "lat": 53.0075796, - "lon": -0.9425892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Smith & Hawkes, Birmingham", - "post_box:type": "wall", - "ref": "NG13 115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3116678645, - "lat": 50.4274740, - "lon": -4.9473362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR9 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3117051438, - "lat": 52.4463302, - "lon": 1.3531038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP20 7022", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3117098096, - "lat": 52.2616746, - "lon": -1.5707206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "last_checked": "2021-01-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3117212324, - "lat": 55.9052720, - "lon": -3.5403486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 8D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3117258106, - "lat": 51.1166649, - "lon": -1.4436791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO20 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3117372835, - "lat": 51.6710604, - "lon": -5.0743353, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3118200620, - "lat": 52.1310828, - "lon": -0.2155664, - "tags": { - "amenity": "post_box", - "name": "Rising Sun Post Box", - "operator": "Royal Mail", - "ref": "SG19 229" - } -}, -{ - "type": "node", - "id": 3118396387, - "lat": 52.8394893, - "lon": 1.2372103, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3118634448, - "lat": 52.1831255, - "lon": -0.0153171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 505D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3120888670, - "lat": 58.2272813, - "lon": -6.8409395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 93", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3120939988, - "lat": 52.8734881, - "lon": -1.0521930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NG12 294", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "source:geometry": "GPS" - } -}, -{ - "type": "node", - "id": 3121002636, - "lat": 53.5171058, - "lon": -1.1157177, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3121039701, - "lat": 53.5136373, - "lon": -1.0926454, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3121039702, - "lat": 53.5065295, - "lon": -1.0850275, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3121226201, - "lat": 51.5481401, - "lon": -2.5805223, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS32 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3121873110, - "lat": 51.9735674, - "lon": -3.9811980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA19 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3122293661, - "lat": 54.8697996, - "lon": -1.6991673, - "tags": { - "amenity": "post_box", - "ref": "DH9 393" - } -}, -{ - "type": "node", - "id": 3122293800, - "lat": 54.8723205, - "lon": -1.6966574, - "tags": { - "amenity": "post_box", - "ref": "DH8 237" - } -}, -{ - "type": "node", - "id": 3124527173, - "lat": 52.7486152, - "lon": 1.4850597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3124669194, - "lat": 54.2822320, - "lon": -0.4023339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "YO11 2010;YO11 1001" - } -}, -{ - "type": "node", - "id": 3124845107, - "lat": 53.2228139, - "lon": -2.5155900, - "tags": { - "amenity": "post_box", - "ref": "CW9 74" - } -}, -{ - "type": "node", - "id": 3125975512, - "lat": 51.3461560, - "lon": -1.9888682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3126149619, - "lat": 51.5466919, - "lon": 0.7001853, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3126152863, - "lat": 52.8135045, - "lon": -0.5196245, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3128355363, - "lat": 53.3743777, - "lon": -1.0141861, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3128355364, - "lat": 53.3516982, - "lon": -1.0002082, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3128452009, - "lat": 51.2661166, - "lon": -0.7633212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU11 185D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3128491325, - "lat": 53.3156572, - "lon": -0.9347527, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3128491328, - "lat": 53.3109314, - "lon": -0.9330937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3128491533, - "lat": 53.2647809, - "lon": -0.9272108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3128612915, - "lat": 52.8200277, - "lon": -1.8872159, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3129757751, - "lat": 53.2541708, - "lon": -0.8381808, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3129775489, - "lat": 53.2651112, - "lon": -0.6645743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3130306744, - "lat": 51.5288510, - "lon": -2.5837615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS34 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3130306941, - "lat": 51.5332374, - "lon": -2.5888755, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS34 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3131224849, - "lat": 51.4961412, - "lon": -0.1423546, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-22", - "collection_plate": "CP1", - "fixme": "This was previously SW1V 299/1299. Possible re-numbering of other boxes in SW1 - needs further survey to establish any pattern.", - "manufacturer": "Carron company Stirlingshire", - "note": "no plate on RH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1V 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3131600930, - "lat": 52.6578556, - "lon": -3.1428602, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3131725527, - "lat": 52.9318757, - "lon": -0.6639888, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3131860061, - "lat": 57.4706572, - "lon": -3.2253909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "check_date:collection_times": "2022-03-14", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB38 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3132049099, - "lat": 53.7237174, - "lon": -1.2700650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 3132049102, - "lat": 53.7272313, - "lon": -1.2710798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3133901065, - "lat": 54.5154927, - "lon": -1.7514111, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3133901070, - "lat": 54.5462718, - "lon": -1.7819496, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3133974210, - "lat": 50.4471832, - "lon": -5.0289916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3134172154, - "lat": 51.2108264, - "lon": -2.2703501, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA12 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3134172155, - "lat": 51.2147582, - "lon": -2.2592534, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3134172157, - "lat": 51.2227615, - "lon": -2.2489442, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3134172159, - "lat": 51.2295452, - "lon": -2.2489569, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA13 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3134204066, - "lat": 51.2260136, - "lon": -2.3033633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3134253230, - "lat": 51.1941683, - "lon": -2.2780128, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA12 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3134329179, - "lat": 51.1696625, - "lon": -2.2707325, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3136027651, - "lat": 52.8840731, - "lon": -1.6010518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE65 492" - } -}, -{ - "type": "node", - "id": 3136458540, - "lat": 51.0427317, - "lon": -1.7319630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP5 299", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3136458541, - "lat": 51.0407812, - "lon": -1.7402367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP5 174D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3136458542, - "lat": 51.0355797, - "lon": -1.7209852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "description": "Unusual modern post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "SP5 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3136836341, - "lat": 52.3325511, - "lon": -1.5657314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3137206673, - "lat": 56.1375234, - "lon": -5.0384082, - "tags": { - "amenity": "post_box", - "note": "the wall is looking a bit sorry", - "post_box:type": "wall", - "ref": "PA27 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3137607620, - "lat": 50.9819157, - "lon": -4.3545296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 123", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3138196327, - "lat": 53.1420650, - "lon": -4.1181640, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3138637222, - "lat": 52.3044933, - "lon": -1.5608387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3138664816, - "lat": 51.7526012, - "lon": -0.5515737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3138664819, - "lat": 51.7580212, - "lon": -0.5509971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3138664820, - "lat": 51.7605523, - "lon": -0.5565466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3138664822, - "lat": 51.7650497, - "lon": -0.5494539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "note": "From 15th September 2014, the final collection from this postbox will be made no earlier than 9:00am Monday to Friday and 7:00am on Saturday.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3138843847, - "lat": 52.4054458, - "lon": 0.5277333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3140582398, - "lat": 52.4170713, - "lon": 0.5183930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP27 3216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3140582406, - "lat": 52.4115892, - "lon": 0.5240309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP27 3377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3140582561, - "lat": 52.4169875, - "lon": 0.5284782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:10; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3140637207, - "lat": 52.4231115, - "lon": 0.5219107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP27 3369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3140637222, - "lat": 52.4190533, - "lon": 0.5233269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3140862217, - "lat": 51.8840821, - "lon": -5.1989576, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SA62 157", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3141627862, - "lat": 55.7894645, - "lon": -4.2767321, - "tags": { - "amenity": "post_box", - "ref": "G76 562" - } -}, -{ - "type": "node", - "id": 3143809281, - "lat": 52.2909061, - "lon": -1.5473265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3143809282, - "lat": 52.2917690, - "lon": -1.5426486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3144168944, - "lat": 51.1977336, - "lon": -0.3772384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "operator": "Royal Mail", - "ref": "RH5 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3145236889, - "lat": 50.9258687, - "lon": -1.2996003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "note": "This is a brand new EIIR postbox of the modern design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO30 755", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3146368229, - "lat": 57.2052788, - "lon": -2.2138419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB21 511", - "royal_cypher": "no", - "source": "gps; survey" - } -}, -{ - "type": "node", - "id": 3147418511, - "lat": 54.8949489, - "lon": -2.1265993, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3148933681, - "lat": 52.2834153, - "lon": -1.5219080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3149301652, - "lat": 58.2091425, - "lon": -6.8507291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3149699606, - "lat": 51.3678414, - "lon": -2.1388388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30; Su off", - "name": "Waverley Gardens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN12 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3149699607, - "lat": 51.3676353, - "lon": -2.1262058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "name": "Snowberry Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN12 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3149699608, - "lat": 51.3703557, - "lon": -2.1259489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Heather Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3149709669, - "lat": 51.3767740, - "lon": -2.1284470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "St Margarets Garden", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3149711880, - "lat": 51.3887112, - "lon": -2.3620409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-30", - "colour": "red", - "name": "Lansdown Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA1 7D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3149722068, - "lat": 51.7852386, - "lon": -1.4855115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "OX28 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3149722069, - "lat": 51.7909999, - "lon": -1.4808564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX28 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps_surveys;local_knowledge" - } -}, -{ - "type": "node", - "id": 3149742164, - "lat": 52.9427372, - "lon": 1.2050164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2612D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3149742447, - "lat": 52.9446855, - "lon": 1.2066574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR26 2611D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3149775019, - "lat": 52.9087640, - "lon": 1.0971209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "name": "Kenwyn Close", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3150515323, - "lat": 52.6528948, - "lon": 1.1557644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 940", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3151430365, - "lat": 53.1465629, - "lon": -4.1920102, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3151641616, - "lat": 53.5935442, - "lon": -2.3001495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "name": "Bolton Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BL9 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3151669931, - "lat": 53.3041938, - "lon": -1.9396951, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SK23 81" - } -}, -{ - "type": "node", - "id": 3152466339, - "lat": 51.2058934, - "lon": -4.1263580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152466340, - "lat": 51.2080051, - "lon": -4.1290583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/ilfracombe-2021-09-08/DSCN5066.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152466341, - "lat": 51.2082195, - "lon": -4.1234699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "EX34 888", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "start_date": "2001" - } -}, -{ - "type": "node", - "id": 3152466342, - "lat": 51.2087376, - "lon": -4.1174059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 72D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152466344, - "lat": 51.2091589, - "lon": -4.1205123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "image": "https://archive.org/details/ilfracombe-2021-09-04/DSCN3059.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "EX34 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152466345, - "lat": 51.2103952, - "lon": -4.1209225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX34 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152466346, - "lat": 51.2105560, - "lon": -4.1160197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "image": "https://archive.org/details/ilfracombe-9-9-2021/PXL_20210909_153511889.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EX34 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152479953, - "lat": 51.0784024, - "lon": -4.0585843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX32 2690;EX32 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152484203, - "lat": 50.3394322, - "lon": -4.7890644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152498357, - "lat": 50.2653115, - "lon": -4.7853481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "image": "https://archive.org/details/mevagissey2020-8-23/Mevagissey%202020-08-23%20and%2024/DSCN1181.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL26 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 3152498358, - "lat": 50.2675742, - "lon": -4.7836292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/mevagissey2020-8-23/Mevagissey%202020-08-23%20and%2024/DSCN1175.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL26 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 3152498360, - "lat": 50.2719536, - "lon": -4.7909504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "mapillary": "629991622164844", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 3152504934, - "lat": 50.3383320, - "lon": -4.7930132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL25 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3152970120, - "lat": 51.7286113, - "lon": -2.2844662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL10 234" - } -}, -{ - "type": "node", - "id": 3153044833, - "lat": 50.9337462, - "lon": -1.5074703, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO40 705", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3153311025, - "lat": 51.4613985, - "lon": -2.7602801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS20 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3153459371, - "lat": 53.1907704, - "lon": -2.8898187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45; Su off", - "description": "QEII Type C post box by Machan at the Eastgate Street end of St Werburgh Street, Chester, shared by CH1 102 and CH1 2102.", - "drive_through": "no", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH1 102;CH1 2102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on St Werburgh Street at Eastgate Street, Chester" - } -}, -{ - "type": "node", - "id": 3153535261, - "lat": 51.5521685, - "lon": -1.7237657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3153548661, - "lat": 51.0119300, - "lon": -2.6508280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3153592322, - "lat": 51.3765822, - "lon": -2.8009259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS49 88", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3153597235, - "lat": 51.3688747, - "lon": -2.7779877, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS40 99", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3153598968, - "lat": 51.3407997, - "lon": -2.6934425, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS40 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3153598969, - "lat": 51.3515696, - "lon": -2.6982783, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS40 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3154305161, - "lat": 54.9155293, - "lon": -1.5250198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE37 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3155062977, - "lat": 56.3737000, - "lon": -3.8167260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH7 11", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3155307548, - "lat": 52.2989261, - "lon": -2.0857454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "B60 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3155307549, - "lat": 52.3066400, - "lon": -2.0768042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "B60 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3155307550, - "lat": 52.3141735, - "lon": -2.0780911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "pillar", - "ref": "B60 715", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3155307551, - "lat": 52.3142358, - "lon": -2.0706398, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B60 300", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3155909465, - "lat": 56.3927405, - "lon": -4.1193872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH6 13D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3156592521, - "lat": 50.6009540, - "lon": -3.4935319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX7 412D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3156704148, - "lat": 56.1459374, - "lon": -3.9473766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK9 66D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156704153, - "lat": 56.1369587, - "lon": -3.9469168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK9 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156704880, - "lat": 56.1389275, - "lon": -3.9362495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "FK9 54D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156780860, - "lat": 56.1299846, - "lon": -3.8337556, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156792473, - "lat": 56.1271855, - "lon": -3.8100770, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156792474, - "lat": 56.1229261, - "lon": -3.8080905, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156792475, - "lat": 56.1185297, - "lon": -3.8010590, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156885967, - "lat": 55.7395949, - "lon": -3.6662015, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3156937369, - "lat": 55.1174638, - "lon": -3.3658104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "455696403891648", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2024-07-16" - } -}, -{ - "type": "node", - "id": 3157690242, - "lat": 51.5160114, - "lon": -1.2503954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG20 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3157727442, - "lat": 51.1178628, - "lon": 0.2603743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN2 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3158178740, - "lat": 51.3894986, - "lon": -0.2475862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3159183260, - "lat": 52.2907513, - "lon": -1.5225173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3159223542, - "lat": 52.3563531, - "lon": -1.7479141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B94 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3160430476, - "lat": 54.2817008, - "lon": -0.4005645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO11 73", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3161458835, - "lat": 51.5303060, - "lon": -0.0291784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E3 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3161520255, - "lat": 51.5664297, - "lon": 0.0026100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3161574593, - "lat": 53.2092919, - "lon": -1.0026405, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3161701914, - "lat": 53.3289047, - "lon": -1.9836902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "SK23 890" - } -}, -{ - "type": "node", - "id": 3161948700, - "lat": 57.4899665, - "lon": -3.1883876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB38 59", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3161948780, - "lat": 53.2087411, - "lon": -1.0062441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG22 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3162572613, - "lat": 52.1387238, - "lon": -0.4422217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 3163093688, - "lat": 52.0531422, - "lon": 1.1292314, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53906072305", - "post_box:type": "lamp", - "ref": "IP2 1275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3163208278, - "lat": 51.8761943, - "lon": -1.8141001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "ref": "GL54 207", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3163383333, - "lat": 51.9876740, - "lon": 0.7744390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3163500779, - "lat": 50.9238268, - "lon": -1.6552422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3165518204, - "lat": 53.0098728, - "lon": -3.3035823, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3165601507, - "lat": 52.9076477, - "lon": -3.5528715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL23 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3165604083, - "lat": 52.8552453, - "lon": -3.6686361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL23 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3165689842, - "lat": 53.0255922, - "lon": -3.2518766, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3165689843, - "lat": 53.0579070, - "lon": -3.1840982, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3165732702, - "lat": 53.0602578, - "lon": -3.1050846, - "tags": { - "amenity": "post_box", - "ref": "LL11 258", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3165732704, - "lat": 53.0622772, - "lon": -3.0842140, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3166214869, - "lat": 53.0570942, - "lon": -3.0374656, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3166214877, - "lat": 53.0846855, - "lon": -3.0525228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167033438, - "lat": 52.4867752, - "lon": -1.9174543, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B18 1002", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167149346, - "lat": 53.0956125, - "lon": -3.0524678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167150969, - "lat": 53.1376056, - "lon": -3.0836632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167150970, - "lat": 53.1423908, - "lon": -3.0886084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167175263, - "lat": 53.1672894, - "lon": -3.1015552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167175267, - "lat": 53.1668716, - "lon": -3.0684257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167175268, - "lat": 53.1649351, - "lon": -3.0413499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167295164, - "lat": 53.1847867, - "lon": -3.0256503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH5 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3167333049, - "lat": 53.2276802, - "lon": -2.9985214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3168097619, - "lat": 53.4305956, - "lon": -2.9765822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box L4 660 outside the former Kirkdale Post Office, now offices, on Walton Road, Kirkdale.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L4 660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Kirkdale Post Office.jpg" - } -}, -{ - "type": "node", - "id": 3169004362, - "lat": 53.5685739, - "lon": -2.8874356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3169004363, - "lat": 53.5878094, - "lon": -2.8612219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3170866454, - "lat": 54.1184434, - "lon": -2.5005676, - "tags": { - "amenity": "post_box", - "ref": "LA2 165", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3170866455, - "lat": 54.1140657, - "lon": -2.5100386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA2 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3173770246, - "lat": 54.2830547, - "lon": -0.3978137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO11 41" - } -}, -{ - "type": "node", - "id": 3173963093, - "lat": 54.0579738, - "lon": -0.2976963, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3174764178, - "lat": 55.9297768, - "lon": -3.5104905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "ref": "EH52 16" - } -}, -{ - "type": "node", - "id": 3174860017, - "lat": 51.5739498, - "lon": 0.0123125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 46", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3175759055, - "lat": 51.4201167, - "lon": -2.4306153, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3176656433, - "lat": 53.1324727, - "lon": -1.1973068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3177003696, - "lat": 50.9218212, - "lon": -2.9420738, - "tags": { - "amenity": "post_box", - "mapillary": "809236296394064", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-03-31" - } -}, -{ - "type": "node", - "id": 3177559531, - "lat": 51.4275180, - "lon": -0.3468791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW11 189", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3177671800, - "lat": 51.4589000, - "lon": -2.5870700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "comment": "next to post office", - "post_box:type": "pillar", - "ref": "BS1 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3177671801, - "lat": 51.4681064, - "lon": -2.5744886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "wall", - "ref": "BS2 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3177671802, - "lat": 51.4693954, - "lon": -2.5754008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "comment": "next to post office", - "post_box:type": "pillar", - "ref": "BS2 1003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3177671803, - "lat": 51.4882169, - "lon": -2.6022528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BS9 392D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3177845365, - "lat": 53.1300940, - "lon": -1.1594310, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3178402118, - "lat": 54.7014256, - "lon": -2.7589279, - "tags": { - "amenity": "post_box", - "ref": "CA11 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3178402119, - "lat": 54.7151917, - "lon": -2.7052614, - "tags": { - "amenity": "post_box", - "ref": "CA11 65", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3178819667, - "lat": 52.7676481, - "lon": 1.2940863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3179308440, - "lat": 51.4507828, - "lon": -0.3204711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3179400950, - "lat": 54.8683833, - "lon": -2.9327160, - "tags": { - "amenity": "post_box", - "ref": "CA2 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3179610196, - "lat": 51.4872902, - "lon": -0.1367107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 96;SW1V 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3179623461, - "lat": 51.2137449, - "lon": -0.1699304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "name": "Horley Road P O", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3179630511, - "lat": 51.2139930, - "lon": -0.1622413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "The Brow", - "old_ref": "RH1 362", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3179638132, - "lat": 51.2155764, - "lon": -0.1632394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Bushfield Drive", - "old_ref": "RH1 358", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3179642893, - "lat": 51.5199087, - "lon": -0.0203753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3179697244, - "lat": 51.3733914, - "lon": -0.1004041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "name": "10 High Street PO", - "note": "Aperture CR0 145 accepts 2nd class mail only;CR0 146 accepts first class mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "CR0 146;CR0 145" - } -}, -{ - "type": "node", - "id": 3179772662, - "lat": 51.3857256, - "lon": -0.8967342, - "tags": { - "amenity": "post_box", - "mapillary": "494431561626880", - "post_box:type": "pillar", - "survey:date": "2021-06-20" - } -}, -{ - "type": "node", - "id": 3179844575, - "lat": 51.4406448, - "lon": -2.6858630, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS8 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3179844576, - "lat": 51.4437539, - "lon": -2.6967542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS8 1120", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3179844589, - "lat": 51.4781499, - "lon": -2.5954813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "post_box:type": "wall", - "ref": "BS7 333", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3179844590, - "lat": 51.4814146, - "lon": -2.7825566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS20 1003D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3179844623, - "lat": 51.5095895, - "lon": -2.6400914, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 394", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3181244332, - "lat": 54.3458438, - "lon": -1.2144669, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3181741451, - "lat": 53.2941893, - "lon": -0.1159965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3181823530, - "lat": 51.5212196, - "lon": -0.1658248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "the left aperture is blocked up, the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 66D" - } -}, -{ - "type": "node", - "id": 3182987007, - "lat": 51.8714807, - "lon": -2.2488912, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "Inside Tesco", - "ref": "GL1 399" - } -}, -{ - "type": "node", - "id": 3183498397, - "lat": 53.6246732, - "lon": -2.0851238, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3183692113, - "lat": 51.1087087, - "lon": -1.7529595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 57" - } -}, -{ - "type": "node", - "id": 3183709735, - "lat": 50.1947554, - "lon": -5.0641415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "colour": "gold", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR11 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3183734288, - "lat": 50.3349688, - "lon": -4.6359344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL23 149D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3183734289, - "lat": 50.3395666, - "lon": -4.6327878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL23 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3183734294, - "lat": 50.3397513, - "lon": -4.6298008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL23 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-14" - } -}, -{ - "type": "node", - "id": 3183742529, - "lat": 51.7374600, - "lon": -2.6408089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL15 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3184792067, - "lat": 55.8614900, - "lon": -4.2570557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G2 6170;G2 617" - } -}, -{ - "type": "node", - "id": 3185130646, - "lat": 51.9118114, - "lon": 0.9217926, - "tags": { - "amenity": "post_box", - "ref": "CO4 169" - } -}, -{ - "type": "node", - "id": 3185148261, - "lat": 53.7563103, - "lon": -2.7064870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PR1 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3185353681, - "lat": 53.4768250, - "lon": -2.2411653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "M1 110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3185390080, - "lat": 57.6515867, - "lon": -3.5917114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV36 133", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3186171750, - "lat": 52.6925706, - "lon": -1.4280172, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3187189759, - "lat": 50.8343596, - "lon": -2.1409857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT11 5", - "ref:GB:uprn": "10015476011", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3187319461, - "lat": 53.4689579, - "lon": -2.2358515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "M13 83", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3188325593, - "lat": 53.3745329, - "lon": -2.2695186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M23 749", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3188335889, - "lat": 53.3878107, - "lon": -2.2424962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK8 216", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3188719429, - "lat": 52.2684093, - "lon": -1.7743388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B95 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3188719430, - "lat": 52.2666147, - "lon": -1.7768377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B95 1144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3188741167, - "lat": 52.2855571, - "lon": -1.7559415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B95 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3188752945, - "lat": 52.2830089, - "lon": -1.7169824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3188752947, - "lat": 52.2838523, - "lon": -1.7282558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 176", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3188780055, - "lat": 52.2778935, - "lon": -1.6966984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3188780056, - "lat": 52.2734843, - "lon": -1.6755638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "note": "built into wall of house", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 117", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3189253953, - "lat": 51.0971567, - "lon": -0.2056876, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "name": "Broadfield Barton P O", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3189381801, - "lat": 51.3935067, - "lon": -2.1401627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 07:00; Su off", - "drive_through": "no", - "name": "Beanacre", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3189399059, - "lat": 51.3824244, - "lon": -2.1428464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "mapillary": "275784981155906", - "name": "Beanacre Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN12 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-07" - } -}, -{ - "type": "node", - "id": 3189435297, - "lat": 51.3703439, - "lon": -2.1294779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "225220472707187", - "name": "Dorset Crescent", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 309D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2021-03-24" - } -}, -{ - "type": "node", - "id": 3189580130, - "lat": 56.4721811, - "lon": -2.9639924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3189693886, - "lat": 51.1219764, - "lon": -0.2132863, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Ifield Parade P O", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH11 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190462327, - "lat": 51.2299213, - "lon": -0.3345300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "South Street P O", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH4 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190472258, - "lat": 51.2329796, - "lon": -0.3297725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "name": "Dorking BO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "RH4 400", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190500114, - "lat": 51.2347671, - "lon": -0.3258118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "name": "Dorking Halls", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH4 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190507675, - "lat": 51.2293210, - "lon": -0.3371399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Vincent Lane", - "old_ref": "RH4 18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH4 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190508426, - "lat": 51.2269125, - "lon": -0.3384119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Nower Road", - "old_ref": "RH4 80", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH4 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190518706, - "lat": 51.2237599, - "lon": -0.3371011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Harrow Road West", - "old_ref": "RH4 40", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH4 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190525444, - "lat": 51.2237650, - "lon": -0.3331448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Horsham Road", - "old_ref": "RH4 6", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH4 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190530260, - "lat": 51.2275243, - "lon": -0.3351591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "South Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH4 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190546542, - "lat": 51.2288367, - "lon": -0.3322068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Rose Hill", - "old_ref": "RH4 36", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH4 36D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190552782, - "lat": 51.2311257, - "lon": -0.3332763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "High Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH4 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190568404, - "lat": 51.1283699, - "lon": -0.1980895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "name": "Langley Green P O", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3190700931, - "lat": 52.1406083, - "lon": 0.6788586, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP29 2129" - } -}, -{ - "type": "node", - "id": 3191814525, - "lat": 52.3196481, - "lon": -1.5764527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3192171555, - "lat": 52.9326779, - "lon": 1.2264047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30; Su off", - "name": "Britons Lane", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR26 2612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3192226514, - "lat": 52.3864404, - "lon": -1.7336020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 806", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3192255447, - "lat": 55.1027028, - "lon": -4.7696087, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA26 21" - } -}, -{ - "type": "node", - "id": 3194137007, - "lat": 51.1494234, - "lon": -0.4925635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU6 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3194329353, - "lat": 55.8983998, - "lon": -3.6021095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3194329358, - "lat": 55.9018345, - "lon": -3.6095771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 6D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3194386750, - "lat": 55.8955620, - "lon": -3.6230915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "EH48 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3194753488, - "lat": 51.4185205, - "lon": -1.5139253, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG17 128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3194890155, - "lat": 50.7500292, - "lon": -1.9613277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 285D", - "ref:GB:uprn": "10015466137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3194917173, - "lat": 52.5913570, - "lon": 1.7097603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa off; Su off", - "description": "Franked Mail Only", - "name": "Morton Pero Road", - "opening_hours": "Mo-Fr 08:00-17:30", - "operator": "Royal Mail", - "ref": "NR31 3161" - } -}, -{ - "type": "node", - "id": 3194928612, - "lat": 52.9096244, - "lon": 1.1035656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "name": "Cromer Road / Gresham's School", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR25 2504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3194985438, - "lat": 51.5386980, - "lon": 0.0807003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "note": "double aperture, ref on left side isn't visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3195568437, - "lat": 50.8399047, - "lon": 0.4693526, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Wickham Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 15", - "ref:GB:uprn": "10015460309", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB Wickham Avenue TN3915.jpg" - } -}, -{ - "type": "node", - "id": 3196016990, - "lat": 54.2558880, - "lon": -2.7547565, - "tags": { - "amenity": "post_box", - "ref": "LA7 241", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196016991, - "lat": 54.2765791, - "lon": -2.7489989, - "tags": { - "amenity": "post_box", - "note": "indistinct ref on photo", - "post_box:type": "wall", - "ref": "LA8 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196047885, - "lat": 54.2968704, - "lon": -2.7269565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 268", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196083815, - "lat": 50.8385416, - "lon": 0.4699287, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Sackville Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 14", - "ref:GB:uprn": "10015327423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Sackville Road TN3914.jpg" - } -}, -{ - "type": "node", - "id": 3196177697, - "lat": 54.1241741, - "lon": -2.7276995, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 194" - } -}, -{ - "type": "node", - "id": 3196209241, - "lat": 53.8479955, - "lon": -1.8186077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD16 608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196332939, - "lat": 54.3200483, - "lon": -2.7590477, - "tags": { - "amenity": "post_box", - "ref": "LA9 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196332940, - "lat": 54.3189021, - "lon": -2.7535627, - "tags": { - "amenity": "post_box", - "ref": "LA9 261", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196332956, - "lat": 54.3252453, - "lon": -2.7529635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3196669671, - "lat": 54.3228930, - "lon": -2.7980068, - "tags": { - "amenity": "post_box", - "ref": "LA8 203", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3196669674, - "lat": 54.3149913, - "lon": -2.8158186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 72", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197181478, - "lat": 51.5133783, - "lon": -0.0866503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC3V 320D;EC3V 3201D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197213012, - "lat": 51.5106736, - "lon": -0.0887518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "mounted in fence", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EC4R 406", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197213013, - "lat": 51.5106670, - "lon": -0.0887543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "mail:meter": "yes", - "mail:stamped": "no", - "note": "this is for metered mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "EC4R 4061", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197424762, - "lat": 54.3160378, - "lon": -2.8651779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 33", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197453117, - "lat": 54.2988293, - "lon": -2.8962127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:15", - "post_box:type": "wall", - "ref": "LA11 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197453132, - "lat": 54.3446013, - "lon": -2.9215095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA23 97D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197453133, - "lat": 54.3465333, - "lon": -2.9234933, - "tags": { - "amenity": "post_box", - "ref": "LA23 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197453138, - "lat": 54.3564368, - "lon": -2.9185196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA23 116D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197453139, - "lat": 54.3672001, - "lon": -2.9206045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA23 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3197467988, - "lat": 54.4023317, - "lon": -2.9172848, - "tags": { - "amenity": "post_box", - "ref": "LA23 41", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197467993, - "lat": 54.4119878, - "lon": -2.9151573, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA23 128", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197467994, - "lat": 54.4156500, - "lon": -2.9146868, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA23 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197641872, - "lat": 54.6246224, - "lon": -3.1537081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197641873, - "lat": 54.6277552, - "lon": -3.1719657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA12 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 3197690314, - "lat": 54.6739331, - "lon": -3.1990789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "CA12 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197690342, - "lat": 54.7563327, - "lon": -3.1993543, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 181", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3197868277, - "lat": 52.8829947, - "lon": 1.3985505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Trimingham Road", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR11 1156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3197880355, - "lat": 52.8830723, - "lon": 1.2969176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "name": "Post Office Roughton Garage", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR11 1170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3197891027, - "lat": 52.9151816, - "lon": 1.1635572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "name": "Post Office Stores High Street", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR25 2505", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3197894251, - "lat": 52.9129298, - "lon": 1.1170159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "name": "High Kelling Post Office", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR25 2510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3197896087, - "lat": 52.9146139, - "lon": 1.1268878, - "tags": { - "amenity": "post_box", - "name": "Vale Road", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR25 2516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3197965800, - "lat": 51.5369837, - "lon": 0.0785607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3198246882, - "lat": 55.9076189, - "lon": -3.5415227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EH54 359D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3198246883, - "lat": 55.9049374, - "lon": -3.5332040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 4D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3198701580, - "lat": 54.8689845, - "lon": -1.4355407, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "SR3 228" - } -}, -{ - "type": "node", - "id": 3199794023, - "lat": 52.2731650, - "lon": -1.6072160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3199794024, - "lat": 52.2688959, - "lon": -1.6081548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3199889468, - "lat": 52.3018414, - "lon": -0.6914623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 113" - } -}, -{ - "type": "node", - "id": 3199889472, - "lat": 52.3018555, - "lon": -0.6915640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN8 1067" - } -}, -{ - "type": "node", - "id": 3200097660, - "lat": 53.0914727, - "lon": -3.8017830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL24 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3200104780, - "lat": 53.0940462, - "lon": -3.8056227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL24 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3200225920, - "lat": 53.0927015, - "lon": -3.8007707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "mounted in station wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL24 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3200307193, - "lat": 53.4041821, - "lon": -2.2231693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "M20 598", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M20 598D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3200354654, - "lat": 53.4201206, - "lon": -2.2126122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3200389364, - "lat": 53.4229852, - "lon": -2.2070517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 669", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3200424505, - "lat": 53.4253075, - "lon": -2.2024032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "new collection times via sticker.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 578D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3200453647, - "lat": 53.4290547, - "lon": -2.1967619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3200534288, - "lat": 50.8380156, - "lon": 0.4739335, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Devonshire Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 11", - "ref:GB:uprn": "10015449615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Devonshire Road TN4011.jpg" - } -}, -{ - "type": "node", - "id": 3200603531, - "lat": 53.4892348, - "lon": -2.8486683, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3200680820, - "lat": 52.4509340, - "lon": -1.7251525, - "tags": { - "amenity": "post_box", - "collection_plate": "The CP says \"BESPOKE\".", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-01-23", - "location": "inside", - "note": "two separate boxes; left is 1st class (no ref), right is 2nd class.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B40 1387D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3200680821, - "lat": 52.4519012, - "lon": -1.7217343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "location": "inside", - "post_box:type": "pillar", - "ref": "B40 1321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3200681742, - "lat": 54.9847596, - "lon": -1.5587969, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 163" - } -}, -{ - "type": "node", - "id": 3200736195, - "lat": 55.9367059, - "lon": -3.4628200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:45", - "operator": "Royal Mail", - "ref": "EH52 6" - } -}, -{ - "type": "node", - "id": 3201570913, - "lat": 50.7347017, - "lon": -4.0046437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3202060538, - "lat": 51.5424711, - "lon": 0.1656828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3202269584, - "lat": 50.9215891, - "lon": -1.4524625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 572D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3202342214, - "lat": 50.7376434, - "lon": -1.9712359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 222", - "ref:GB:uprn": "10015343220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3202392540, - "lat": 57.1393856, - "lon": -2.0981887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 59", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3202780475, - "lat": 55.9017490, - "lon": -4.1002910, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3202950829, - "lat": 52.0598995, - "lon": 1.0586920, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP8 8245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3203004171, - "lat": 53.1795022, - "lon": -4.1758376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL55 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3204741921, - "lat": 51.5140930, - "lon": -0.0909926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC2R 229;EC2R 2291", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3204874268, - "lat": 54.5731836, - "lon": -2.4822775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CA16 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3205282041, - "lat": 51.6547891, - "lon": -0.1083266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "EN2 17" - } -}, -{ - "type": "node", - "id": 3205355085, - "lat": 51.3375964, - "lon": -0.1022993, - "tags": { - "amenity": "post_box", - "ref": "CR8 392D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3205355086, - "lat": 51.3414993, - "lon": -0.1037866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 291D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3206884466, - "lat": 50.8538791, - "lon": -0.9093638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO10 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3208165973, - "lat": 52.3425204, - "lon": -0.7387087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN14 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3208292720, - "lat": 50.7183303, - "lon": -3.4998338, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3209773786, - "lat": 51.5030395, - "lon": -0.1113084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "level": "1", - "note": "indoor box, upper level at exit 2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE1 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3209785733, - "lat": 51.5105477, - "lon": -0.0846039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa off", - "fixme": "there used to be 3 numbered indoor boxes. Only two appear to have ref numbers now.", - "mail:stamped": "yes", - "note": "inside Eastcheap PO", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "EC3M 333", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3209785734, - "lat": 51.5105969, - "lon": -0.0844815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa off", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "note": "inside Eastcheap PO. This was EC3M 331 on my last visit. Marked for 1st Class mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "EC3M 333", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3209785735, - "lat": 51.5106053, - "lon": -0.0844842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa off", - "indoor": "yes", - "note": "inside Eastcheap PO. Marked for 2nd class mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "EC3M 332", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3210018566, - "lat": 51.5402854, - "lon": 0.0826612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3210877221, - "lat": 52.2663405, - "lon": -1.6682108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3211023192, - "lat": 51.9099447, - "lon": -2.3363002, - "tags": { - "amenity": "post_box", - "ref": "GL18 351" - } -}, -{ - "type": "node", - "id": 3211165244, - "lat": 52.1468756, - "lon": -1.3645433, - "tags": { - "amenity": "post_box", - "ref": "OX17 1149", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3211210345, - "lat": 50.6603112, - "lon": -4.7179031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL34 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3211328244, - "lat": 52.1353739, - "lon": -1.2725924, - "tags": { - "amenity": "post_box", - "ref": "OX17 1046" - } -}, -{ - "type": "node", - "id": 3212296964, - "lat": 54.2644428, - "lon": -1.6397955, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3212336161, - "lat": 50.8993212, - "lon": -1.0579516, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO7 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3212699262, - "lat": 50.8607511, - "lon": -1.0444043, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-03", - "old_ref": "PO7 313", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO7 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3213092285, - "lat": 51.4826669, - "lon": -2.7689973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS20 1457", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3213949467, - "lat": 53.9391889, - "lon": -1.1058485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00-17:15", - "note": "Post box for Holiday Inn guests, post box is opposite lifts in foyer, the receptionist said it was emptied by Royal Mail", - "post_box:type": "wall", - "ref": "none", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3214026929, - "lat": 53.1914006, - "lon": -0.8747962, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3214166370, - "lat": 50.7676791, - "lon": -2.0106394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3215935910, - "lat": 50.8196011, - "lon": -3.4821265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX5 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3215974798, - "lat": 54.4050038, - "lon": -1.7519221, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "DL10 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3216518221, - "lat": 51.1108954, - "lon": -1.3913466, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "note": "built into wall of house", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO21 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3216518222, - "lat": 51.1099221, - "lon": -1.3875030, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3217144826, - "lat": 57.1340940, - "lon": -2.1034209, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 7RS", - "addr:street": "Polmuir Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3219076416, - "lat": 51.9109247, - "lon": -2.0352856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 359" - } -}, -{ - "type": "node", - "id": 3220032764, - "lat": 51.3747157, - "lon": -0.0884835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CR0 22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 22D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3220039559, - "lat": 51.3758402, - "lon": -0.0913551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "opening_hours": "Mo-Fr 12:30-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CR0 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3220039560, - "lat": 51.3758553, - "lon": -0.0913589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CR0 462;CR0 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3220255461, - "lat": 52.6486760, - "lon": -2.2943670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3220270125, - "lat": 51.7722739, - "lon": -0.5192845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP4 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3220663774, - "lat": 52.4167562, - "lon": -1.6765250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B92 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3221128581, - "lat": 54.2076430, - "lon": -3.2610892, - "tags": { - "amenity": "post_box", - "ref": "LA18 139" - } -}, -{ - "type": "node", - "id": 3221128582, - "lat": 54.2078054, - "lon": -3.2669377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA18 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3221128583, - "lat": 54.2095865, - "lon": -3.2666173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LA18 72D" - } -}, -{ - "type": "node", - "id": 3221128584, - "lat": 54.2111284, - "lon": -3.2637178, - "tags": { - "amenity": "post_box", - "ref": "LA18 112", - "source": "https://www.flickr.com/search/?q=la18&w=737259%40N20&m=pool" - } -}, -{ - "type": "node", - "id": 3221128585, - "lat": 54.2118217, - "lon": -3.2709946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "ref": "LA18 36D" - } -}, -{ - "type": "node", - "id": 3221128586, - "lat": 54.2153884, - "lon": -3.2724565, - "tags": { - "amenity": "post_box", - "ref": "LA18 127", - "source": "https://www.flickr.com/search/?q=la18&w=737259%40N20&m=pool" - } -}, -{ - "type": "node", - "id": 3221128587, - "lat": 54.2118643, - "lon": -3.2754935, - "tags": { - "amenity": "post_box", - "ref": "LA18 55" - } -}, -{ - "type": "node", - "id": 3221128588, - "lat": 54.2098910, - "lon": -3.2825474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA18 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3221128589, - "lat": 54.1975096, - "lon": -3.2883807, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3221128590, - "lat": 54.1995760, - "lon": -3.2947456, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3221128591, - "lat": 54.2018478, - "lon": -3.3066653, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3221128592, - "lat": 54.2058534, - "lon": -3.2717348, - "tags": { - "amenity": "post_box", - "ref": "LA18 7" - } -}, -{ - "type": "node", - "id": 3221128593, - "lat": 54.2156123, - "lon": -3.3203108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "ref": "LA18 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "https://www.flickr.com/search/?q=la18&w=737259%40N20&m=pool" - } -}, -{ - "type": "node", - "id": 3221129119, - "lat": 54.2189518, - "lon": -3.3469112, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3221129120, - "lat": 54.2263961, - "lon": -3.3337199, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3222292861, - "lat": 54.2691822, - "lon": -3.2598734, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3222292862, - "lat": 54.2834006, - "lon": -3.2306051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "ref": "LA20 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3222292863, - "lat": 54.3328807, - "lon": -3.4051121, - "tags": { - "amenity": "post_box", - "ref": "LA19 137" - } -}, -{ - "type": "node", - "id": 3222292864, - "lat": 54.2578750, - "lon": -3.2592547, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3222292865, - "lat": 54.2469767, - "lon": -3.2529564, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3222292866, - "lat": 54.2508839, - "lon": -3.2617051, - "tags": { - "amenity": "post_box", - "name": "The Old Post Office", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3222292898, - "lat": 54.2360828, - "lon": -3.2615918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "ref": "LA18 92" - } -}, -{ - "type": "node", - "id": 3222292899, - "lat": 54.2719922, - "lon": -3.2489065, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3222292982, - "lat": 54.2508513, - "lon": -3.3020595, - "tags": { - "amenity": "post_box", - "name": "Whicham" - } -}, -{ - "type": "node", - "id": 3223489440, - "lat": 53.5025135, - "lon": -2.3042739, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3223489451, - "lat": 53.5090370, - "lon": -2.3417852, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3223490162, - "lat": 53.5106291, - "lon": -2.3446075, - "tags": { - "amenity": "post_box", - "ref": "M27 764" - } -}, -{ - "type": "node", - "id": 3223507052, - "lat": 51.4917285, - "lon": -0.1519028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-22", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "SW1W 18D;SW1W 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3223935933, - "lat": 52.0365851, - "lon": -4.3125895, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3224043545, - "lat": 52.1789215, - "lon": -0.0787855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3224064579, - "lat": 52.6979099, - "lon": 1.1241307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR9 950", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3224993261, - "lat": 51.5332609, - "lon": -0.3238982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "UB6 183D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3225185892, - "lat": 52.8400643, - "lon": 0.5064384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE31 134D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3226177522, - "lat": 53.8642538, - "lon": -0.6660113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "YO43 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3226571061, - "lat": 51.5192597, - "lon": -0.3319947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 27", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3227699363, - "lat": 51.2297491, - "lon": -1.9430129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP3 671" - } -}, -{ - "type": "node", - "id": 3228011262, - "lat": 51.5484911, - "lon": -0.3553391, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "UB5 203" - } -}, -{ - "type": "node", - "id": 3228216278, - "lat": 51.5391588, - "lon": -0.3855217, - "tags": { - "amenity": "post_box", - "ref": "UB5 145" - } -}, -{ - "type": "node", - "id": 3228699905, - "lat": 54.2093529, - "lon": -3.2683311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LA18 1" - } -}, -{ - "type": "node", - "id": 3228708605, - "lat": 54.2092874, - "lon": -3.2699475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "ref": "LA18 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3229753854, - "lat": 52.5997059, - "lon": -1.0624504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3229773665, - "lat": 51.5529303, - "lon": -0.3427599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "UB6 30" - } -}, -{ - "type": "node", - "id": 3230313935, - "lat": 51.2040662, - "lon": -2.1829944, - "tags": { - "amenity": "post_box", - "ref": "BA12 97" - } -}, -{ - "type": "node", - "id": 3232092128, - "lat": 51.2121204, - "lon": -1.4604375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3232099361, - "lat": 51.2171465, - "lon": -1.4584019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SP10 45P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3233053877, - "lat": 51.5561931, - "lon": 0.2506452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM14 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3234234905, - "lat": 50.8867107, - "lon": -3.3415019, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3234470751, - "lat": 52.3157401, - "lon": -1.5580096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3235207223, - "lat": 52.4630665, - "lon": 1.7168983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3236368593, - "lat": 51.5081040, - "lon": -0.3341521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W7 9" - } -}, -{ - "type": "node", - "id": 3236373605, - "lat": 52.5806722, - "lon": -2.1571796, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3236595206, - "lat": 51.5244922, - "lon": -0.3181155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "ref": "W13 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3236976488, - "lat": 55.0275732, - "lon": -1.5143041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE27 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3237039527, - "lat": 51.7238708, - "lon": -1.4286527, - "tags": { - "amenity": "post_box", - "ref": "OX29 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3237039528, - "lat": 51.7258636, - "lon": -1.4253918, - "tags": { - "amenity": "post_box", - "ref": "OX29 310" - } -}, -{ - "type": "node", - "id": 3237173043, - "lat": 51.1281253, - "lon": -2.7404459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA16 21D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3237236200, - "lat": 51.5305984, - "lon": -0.2019168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3237433824, - "lat": 55.9671374, - "lon": -3.1609772, - "tags": { - "amenity": "post_box", - "ref": "EH6 231" - } -}, -{ - "type": "node", - "id": 3237892303, - "lat": 52.8993782, - "lon": 0.5451267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3237892331, - "lat": 52.7738555, - "lon": 0.6647690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 175" - } -}, -{ - "type": "node", - "id": 3237892333, - "lat": 52.7914286, - "lon": 0.6575233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE32 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3237953033, - "lat": 51.5006118, - "lon": -0.0818589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 2;SE1 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3238805851, - "lat": 51.8835014, - "lon": -3.9953322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "SA19 73", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3240279259, - "lat": 52.3884710, - "lon": -1.5398632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV4 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3240279260, - "lat": 52.4196474, - "lon": -1.5515818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 288D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3240799306, - "lat": 52.5364057, - "lon": -2.8016586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY6 243", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3240799312, - "lat": 52.5425846, - "lon": -2.8088594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SY6 260D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3240799868, - "lat": 52.5649088, - "lon": -2.7601230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 08:00; Su off", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "SY6 410", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3240826031, - "lat": 52.5459051, - "lon": -2.8225172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15, Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3241026598, - "lat": 51.5191007, - "lon": -0.0868756, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC2M 233D;EC2M 2331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3241308789, - "lat": 54.7067037, - "lon": -1.7489746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 3241308802, - "lat": 54.7156257, - "lon": -1.7558290, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3241742700, - "lat": 53.4079551, - "lon": -2.1618601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK1 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3242453672, - "lat": 52.5327729, - "lon": -2.8069117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3242577387, - "lat": 51.4922038, - "lon": -0.3082138, - "tags": { - "addr:city": "Brentford", - "addr:housenumber": "47", - "addr:street": "Enfield Road", - "amenity": "post_box", - "collection_times": "Mo-Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW8 218" - } -}, -{ - "type": "node", - "id": 3242778396, - "lat": 51.2136037, - "lon": -1.1925342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG25 385" - } -}, -{ - "type": "node", - "id": 3243738752, - "lat": 53.1331763, - "lon": -1.2071930, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3244343283, - "lat": 51.5572477, - "lon": 0.2498215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM14 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3244419081, - "lat": 53.1577434, - "lon": -4.1954366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3244631195, - "lat": 52.2922536, - "lon": -1.5564090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "adjacent to disused/blocked up GR wall box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3245262337, - "lat": 52.4583505, - "lon": 1.7355147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR33 3307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3245262531, - "lat": 52.4594673, - "lon": 1.7387065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR33 3304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3245262706, - "lat": 52.4629149, - "lon": 1.7304879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR33 3319D" - } -}, -{ - "type": "node", - "id": 3245262768, - "lat": 52.4645327, - "lon": 1.7372553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR33 3310" - } -}, -{ - "type": "node", - "id": 3245263158, - "lat": 52.4678289, - "lon": 1.7452742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR33 3300" - } -}, -{ - "type": "node", - "id": 3245263371, - "lat": 52.4724287, - "lon": 1.7492313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3246140785, - "lat": 52.2929724, - "lon": -1.5313971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "note": "double aperture, one marked \"stamped\" the other \"franked\" but same ref on both.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV32 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3246140787, - "lat": 52.2915310, - "lon": -1.5275657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-23", - "collection_times": "Mo-Fr 16:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3246620081, - "lat": 53.1837018, - "lon": -1.8506894, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SK17 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3247510421, - "lat": 54.5638417, - "lon": -2.8762207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA10 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3247578609, - "lat": 52.2498273, - "lon": -1.5432481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV33 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3247578614, - "lat": 52.2798987, - "lon": -1.5418259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3247578615, - "lat": 52.2485349, - "lon": -1.5467880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3247578617, - "lat": 52.2575954, - "lon": -1.5347288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3247642363, - "lat": 51.5230955, - "lon": -0.3343761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "W7 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3247775885, - "lat": 51.5144482, - "lon": -0.3371963, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W7 10" - } -}, -{ - "type": "node", - "id": 3247817572, - "lat": 53.8012852, - "lon": -2.3142340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3247817628, - "lat": 53.8048437, - "lon": -2.3160625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BB12 176D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3247822862, - "lat": 53.7275059, - "lon": -2.1282796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OL14 143" - } -}, -{ - "type": "node", - "id": 3247906810, - "lat": 51.5172944, - "lon": -0.3378765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "W7 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3247939097, - "lat": 51.5223815, - "lon": -0.3403143, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "W7 7" - } -}, -{ - "type": "node", - "id": 3248698126, - "lat": 53.1917291, - "lon": -2.5298577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CW7 199", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3249021689, - "lat": 51.4972482, - "lon": -0.1085716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 32;SE1 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250159383, - "lat": 51.5187559, - "lon": -0.1599420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2022-06-20", - "note": "apertures labelled \"stamped\" and \"2nd class\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 206D;W1H 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250159384, - "lat": 51.5184637, - "lon": -0.1616854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-09-24", - "note": "Apertures labelled \"stamped\" and \"franked\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 7D;W1H 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250159385, - "lat": 51.5140040, - "lon": -0.1559742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "one aperture marked \"stamped\". no label on the other", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1C 13D;W1C 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250336866, - "lat": 53.1922044, - "lon": -2.5269316, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-05", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "CW7 200", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3250728466, - "lat": 51.4730105, - "lon": -0.9476178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "RG4 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3250832307, - "lat": 51.4944644, - "lon": -0.1475803, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-19", - "check_date:ref": "2022-03-14", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "SW1W 202;SW1W 302", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3250832308, - "lat": 51.4995267, - "lon": -0.1579373, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 22D;SW1X 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250832309, - "lat": 51.5005823, - "lon": -0.1560951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:manufacturer": "The Meadow Foundry Co Ltd, Mansfield, Notts", - "post_box:type": "pillar", - "ref": "SW1X 60;SW1X 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250876284, - "lat": 51.4977528, - "lon": -0.1452721, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1W 84D;SW1W 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3250876285, - "lat": 51.4988276, - "lon": -0.1420711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3251025350, - "lat": 51.5162781, - "lon": -0.1421529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-08", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd London & Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 45;W1B 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3251034480, - "lat": 51.5181808, - "lon": -0.1460434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "apertures marked stamped and franked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1G 32;W1G 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3251896732, - "lat": 53.1438230, - "lon": -4.2746315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3253383450, - "lat": 53.1513925, - "lon": -0.9336033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3253821295, - "lat": 53.1722076, - "lon": -0.9499850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3254468205, - "lat": 51.0817660, - "lon": -1.9860870, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP3 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3254468211, - "lat": 51.0833907, - "lon": -1.9811509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3255072361, - "lat": 52.0300944, - "lon": 1.2032434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:00", - "mail:franked": "yes", - "opening_hours": "Mo-Fr 13:00-18:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IP3 8174", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3255977200, - "lat": 52.9544258, - "lon": 0.8533713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "note": "Non-standard box in post office wall", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR23 2300", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3255978488, - "lat": 55.4507493, - "lon": -4.6193132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA7 101", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3256441309, - "lat": 52.8930553, - "lon": -0.4851854, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3256611942, - "lat": 51.8863376, - "lon": -3.9957832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA19 477", - "post_box:type": "lamp", - "ref": "SA19 477D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3256634067, - "lat": 51.8967196, - "lon": -3.9788864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA19 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3256792673, - "lat": 52.4678057, - "lon": 1.7156384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3256823763, - "lat": 50.8648506, - "lon": -3.0053182, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3256845164, - "lat": 52.0279961, - "lon": -2.1687244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "GL20 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3257148790, - "lat": 51.4108085, - "lon": -0.3017501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KT1 439", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3257342156, - "lat": 53.1682525, - "lon": -0.4143760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3257384055, - "lat": 51.0252599, - "lon": -1.9565359, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3257408280, - "lat": 51.0653188, - "lon": -2.0168636, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP3 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3258452090, - "lat": 51.3711036, - "lon": -0.4754867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3258875475, - "lat": 52.8499552, - "lon": -2.6456985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3259057399, - "lat": 51.5087156, - "lon": -0.4735652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3260032134, - "lat": 52.4659433, - "lon": 1.7217067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3260105793, - "lat": 51.3731031, - "lon": -0.4545931, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "KT13 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3260380693, - "lat": 51.4061938, - "lon": -0.7324753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "RG12 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3260490595, - "lat": 52.0602334, - "lon": 1.1289298, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "image": "https://www.flickr.com/photos/200873507@N03/53806980529", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 1463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3260515172, - "lat": 54.0634938, - "lon": -2.8079776, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA1 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3260549262, - "lat": 53.2594382, - "lon": -1.9086721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK17 27", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3260878157, - "lat": 51.6383733, - "lon": -0.0675922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN1 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3260883865, - "lat": 51.0905341, - "lon": -2.0164713, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP3 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3261404185, - "lat": 51.0163348, - "lon": -1.9644217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-06-22", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3262040557, - "lat": 51.1222612, - "lon": -3.2294757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3262071806, - "lat": 51.0804518, - "lon": -3.2445138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "colour": "red", - "direction": "NW", - "drive_through": "no", - "name": "Nethercott Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3SG", - "ref": "TA4 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3263049462, - "lat": 51.8858956, - "lon": -2.2361550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL2 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3263050561, - "lat": 51.8851794, - "lon": -2.2353216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3263054261, - "lat": 51.8830460, - "lon": -2.2364656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL3 179" - } -}, -{ - "type": "node", - "id": 3263127961, - "lat": 51.8691578, - "lon": -2.2420939, - "tags": { - "amenity": "post_box", - "ref": "GL1 4D" - } -}, -{ - "type": "node", - "id": 3263272661, - "lat": 51.8727465, - "lon": -2.2374129, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL1 46", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3263272862, - "lat": 51.8711873, - "lon": -2.2336050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "315171680237224", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 47" - } -}, -{ - "type": "node", - "id": 3263301861, - "lat": 51.8768230, - "lon": -2.2240937, - "tags": { - "amenity": "post_box", - "ref": "GL2 112D" - } -}, -{ - "type": "node", - "id": 3263392670, - "lat": 53.3126010, - "lon": -2.2820090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3264062869, - "lat": 51.3621787, - "lon": -0.4872803, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-11", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 26D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3264181376, - "lat": 51.2120462, - "lon": -1.4697135, - "tags": { - "amenity": "post_box", - "mapillary": "1354948728298802", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 3264822661, - "lat": 51.4860948, - "lon": 0.0117937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3265482763, - "lat": 53.2281927, - "lon": -0.8972775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3265532822, - "lat": 52.3023452, - "lon": 1.0421723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7028", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3267220067, - "lat": 51.3742107, - "lon": -0.4624395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "KT13 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3267299869, - "lat": 50.8682405, - "lon": -0.7827673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3268195018, - "lat": 52.4932094, - "lon": 1.7525924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR32 3239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3268569792, - "lat": 52.0342980, - "lon": 1.2383212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP10 1283", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3268569818, - "lat": 52.0141153, - "lon": 1.2327539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3268586364, - "lat": 52.0593788, - "lon": 1.2393001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 1448" - } -}, -{ - "type": "node", - "id": 3268764540, - "lat": 53.7082937, - "lon": -0.7600889, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 57", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3268971672, - "lat": 51.1685099, - "lon": -3.2764815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3268971674, - "lat": 51.1760356, - "lon": -3.3277990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3268971675, - "lat": 51.1775186, - "lon": -3.3239443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3268971680, - "lat": 51.1819262, - "lon": -3.3306287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA23 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269037577, - "lat": 57.0906767, - "lon": -2.3215704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Fr 10:15; Sa 09:45; Su off", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 433", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3269063022, - "lat": 51.1290714, - "lon": -2.9996222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269303562, - "lat": 50.8972826, - "lon": -3.8331818, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX18 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3269314057, - "lat": 52.0061719, - "lon": 1.2524494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269401744, - "lat": 52.6591473, - "lon": 1.2098317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269408643, - "lat": 51.1471397, - "lon": -3.0602040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 91", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3269408645, - "lat": 51.1488364, - "lon": -3.1632018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269418285, - "lat": 51.1511455, - "lon": -3.1567342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3269418296, - "lat": 51.1526778, - "lon": -3.1827179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269418297, - "lat": 51.1529836, - "lon": -3.1606578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269418465, - "lat": 51.1752363, - "lon": -3.1305442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 167", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3269418532, - "lat": 51.1776839, - "lon": -3.1157929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269418544, - "lat": 51.1789487, - "lon": -3.2186251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3269418551, - "lat": 51.1797151, - "lon": -3.1415790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA5 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269520009, - "lat": 54.2225047, - "lon": -3.1867130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA17 31" - } -}, -{ - "type": "node", - "id": 3269617310, - "lat": 52.6567017, - "lon": 1.2239361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269625824, - "lat": 52.6666887, - "lon": 1.1958045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 802", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3269795641, - "lat": 53.1959361, - "lon": -2.5447759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 192D" - } -}, -{ - "type": "node", - "id": 3270688573, - "lat": 50.6804841, - "lon": -3.2375452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EX10 130D;EX10 1300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3270701662, - "lat": 53.3809926, - "lon": -2.3548491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA14 62" - } -}, -{ - "type": "node", - "id": 3270704662, - "lat": 51.3679732, - "lon": -0.4396254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3270704665, - "lat": 51.3701797, - "lon": -0.4362848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT13 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3270704666, - "lat": 51.3725554, - "lon": -0.4218311, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3270704668, - "lat": 51.3731807, - "lon": -0.4401430, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KT13 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3270704672, - "lat": 51.3760299, - "lon": -0.4310331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT13 44D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3270704673, - "lat": 51.3781280, - "lon": -0.4346228, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT13 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3270712868, - "lat": 50.6785979, - "lon": -3.2380205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3273019954, - "lat": 50.6271384, - "lon": -3.3358767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3273332616, - "lat": 53.4055352, - "lon": -2.3305435, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3273450293, - "lat": 51.8801470, - "lon": -2.2052318, - "tags": { - "amenity": "post_box", - "ref": "GL2 704" - } -}, -{ - "type": "node", - "id": 3273917588, - "lat": 53.2615713, - "lon": -2.5147005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "CW9 777", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3274276161, - "lat": 52.8967120, - "lon": -2.1545210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3274300354, - "lat": 51.0274494, - "lon": -3.0673662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "mapillary": "3879977288781798", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 185", - "survey:date": "2020-03-11" - } -}, -{ - "type": "node", - "id": 3274391412, - "lat": 51.5854793, - "lon": -3.6387298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "CF34 9SS", - "ref": "CF34 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3274563531, - "lat": 52.2966016, - "lon": -1.5465465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV32 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274563532, - "lat": 52.2980745, - "lon": -1.5549181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "probably a collection on delivery box awaiting a new plate. Sticky label advises last collection wil be M-F 0900 and Sa 0700 from 15/9/14.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274600164, - "lat": 52.3031159, - "lon": -1.5383085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "stopped by to check box location as it was reported as being some distance from dracos location. location confirmed 1/10/15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV32 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274600165, - "lat": 52.3033028, - "lon": -1.5296790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274609361, - "lat": 52.3038589, - "lon": -1.5241005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV32 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274609362, - "lat": 52.3083270, - "lon": -1.5269513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274614563, - "lat": 52.2938132, - "lon": -1.5452947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3274641741, - "lat": 51.3733278, - "lon": -0.4741757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 198D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3274744908, - "lat": 51.6603080, - "lon": -0.0582436, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3274884038, - "lat": 53.4034429, - "lon": -2.3367473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 3275436379, - "lat": 52.6351722, - "lon": -1.1390171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 72", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3275490515, - "lat": 52.6397857, - "lon": -1.1391601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3276792689, - "lat": 51.8124377, - "lon": 0.7494353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO5 458" - } -}, -{ - "type": "node", - "id": 3276799605, - "lat": 51.8094677, - "lon": 0.7510862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO5 49" - } -}, -{ - "type": "node", - "id": 3276815264, - "lat": 51.8080177, - "lon": 0.7436020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CO5 96" - } -}, -{ - "type": "node", - "id": 3276868696, - "lat": 52.1928440, - "lon": -1.7057137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2017-08-09", - "colour": "gold", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3277778438, - "lat": 52.3046152, - "lon": -1.6597180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3278444468, - "lat": 54.3901256, - "lon": -3.3229207, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA19 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3280086531, - "lat": 51.7412479, - "lon": -0.8636040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-11-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3280749465, - "lat": 51.4278697, - "lon": -0.0679685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 18", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3281857219, - "lat": 53.5663553, - "lon": -2.8735930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "L39 19", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3281857287, - "lat": 53.5668984, - "lon": -2.8814947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "L39 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3281857495, - "lat": 53.5620271, - "lon": -2.8413261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L40 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3281857511, - "lat": 53.5581970, - "lon": -2.8349931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L39 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3281858161, - "lat": 53.5638815, - "lon": -2.8473074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L40 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3281858298, - "lat": 53.5749766, - "lon": -2.8507597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:00", - "ref": "L40 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3281878206, - "lat": 53.5583123, - "lon": -2.8577007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "fixme": "Needs repositioning", - "operator": "Royal Mail", - "ref": "L40 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3281911681, - "lat": 50.5667440, - "lon": -3.4803017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX7 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3282111717, - "lat": 50.6056641, - "lon": -2.4521227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "name": "Hope Square", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 8", - "ref:GB:uprn": "10015318551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3282111722, - "lat": 50.6084091, - "lon": -2.4522887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "DT4 4", - "ref:GB:uprn": "10015341741", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3282111723, - "lat": 50.6100968, - "lon": -2.4538956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "DT4 5037;DT4 37", - "ref:GB:uprn": "10015361792", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3282111724, - "lat": 50.6109299, - "lon": -2.4545078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "name": "St Thomas Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DT4 2001;DT4 2002", - "ref:GB:uprn": "10015830680", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3282115202, - "lat": 54.7882822, - "lon": -2.4569818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA9 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3282498382, - "lat": 51.4042951, - "lon": -0.3455280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3282498383, - "lat": 51.4047029, - "lon": -0.3420535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3282498384, - "lat": 51.4049844, - "lon": -0.3078102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3282498390, - "lat": 51.4087715, - "lon": -0.3063151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 85", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3282575884, - "lat": 51.0669438, - "lon": -1.3361205, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3282676815, - "lat": 51.3913500, - "lon": -2.3642200, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-30", - "colour": "red", - "post_box:type": "pillar", - "ref": "BA1 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3282676816, - "lat": 51.3944673, - "lon": -2.3650221, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-30", - "colour": "red", - "post_box:type": "lamp", - "ref": "BA1 343D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3282676817, - "lat": 51.3975092, - "lon": -2.3674565, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3282676818, - "lat": 51.4038538, - "lon": -2.3731929, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3282676819, - "lat": 51.4164573, - "lon": -2.3952629, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3282676820, - "lat": 51.4330814, - "lon": -2.3997799, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3282676821, - "lat": 51.4524479, - "lon": -2.4243606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3282676823, - "lat": 51.4525285, - "lon": -2.4182602, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3282676826, - "lat": 51.4575030, - "lon": -2.4641548, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3282730732, - "lat": 51.4414869, - "lon": -2.8156874, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3282920501, - "lat": 52.5733291, - "lon": -1.3322500, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3282964107, - "lat": 52.3569493, - "lon": -2.0464202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B61 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3283124596, - "lat": 51.0715490, - "lon": -0.3629493, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3283124602, - "lat": 51.0691032, - "lon": -0.3598936, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3284051800, - "lat": 51.5465013, - "lon": 0.2416243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM14 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3284051801, - "lat": 51.5467796, - "lon": 0.2469940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3284537257, - "lat": 55.6305792, - "lon": -4.4836099, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3284577410, - "lat": 55.8722393, - "lon": -3.6300492, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2019-09-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH47 40D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3285065426, - "lat": 52.6374982, - "lon": 1.5483095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:45", - "colour": "red", - "label_date": "2017-03-02", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR13 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285065427, - "lat": 52.6422004, - "lon": 1.5420117, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3285065428, - "lat": 52.6504741, - "lon": 1.5318900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3285065430, - "lat": 52.6772768, - "lon": 1.4103509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285065454, - "lat": 52.6810787, - "lon": 1.4206930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "03/03/2023", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR13 1370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285067364, - "lat": 52.6828797, - "lon": 1.4262528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "print_date": "06/04/2023", - "ref": "NR13 1361D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285067379, - "lat": 52.7118052, - "lon": 1.4101917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR12 1266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285067380, - "lat": 52.7399000, - "lon": 1.4767700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "NR12 1239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285068636, - "lat": 50.9595021, - "lon": -0.7265595, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285862161, - "lat": 53.0582302, - "lon": -2.2117929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST6 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3285892556, - "lat": 51.5706428, - "lon": 0.5782648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "ref": "SS7 364" - } -}, -{ - "type": "node", - "id": 3286697791, - "lat": 51.4859362, - "lon": -0.7179474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL6 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3286827534, - "lat": 50.9513665, - "lon": -0.7506945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU29 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3286840620, - "lat": 52.1922944, - "lon": -2.3016345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR6 390", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3287669115, - "lat": 53.3938437, - "lon": -0.1181985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN11 61" - } -}, -{ - "type": "node", - "id": 3287790393, - "lat": 51.4859145, - "lon": -0.1376819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1V 76;SW1V 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3288002533, - "lat": 52.8555034, - "lon": -2.7244685, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "478312033428354", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY4 534D", - "source:position": "Mapillary 2020-05-21", - "survey:date": "2023-02-11" - } -}, -{ - "type": "node", - "id": 3288880650, - "lat": 55.6954310, - "lon": -3.6955085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML11 51D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3288880652, - "lat": 55.8751792, - "lon": -3.6240561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "pillar", - "ref": "EH47 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3290404556, - "lat": 51.3355722, - "lon": -0.5075388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT14 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3290404557, - "lat": 51.3372956, - "lon": -0.5044489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT14 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3290407362, - "lat": 51.3396020, - "lon": -0.5092366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 157D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3290407368, - "lat": 51.3411128, - "lon": -0.5043919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT14 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3292330558, - "lat": 52.2874695, - "lon": -1.6230776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3292609045, - "lat": 52.2703251, - "lon": -2.9999578, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3294294574, - "lat": 52.3246427, - "lon": -0.8977816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3294766056, - "lat": 55.9119430, - "lon": -3.2818730, - "tags": { - "amenity": "post_box", - "ref": "EH14 418D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3295285697, - "lat": 51.6904742, - "lon": 0.0971537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CM16 342D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3296797732, - "lat": 51.2441600, - "lon": -0.5973732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU2 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3297059003, - "lat": 52.2637321, - "lon": 0.8646179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP31 2089", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3297105844, - "lat": 52.1984423, - "lon": 1.0279483, - "tags": { - "amenity": "post_box", - "ref": "IP14 8080" - } -}, -{ - "type": "node", - "id": 3297469958, - "lat": 53.3814022, - "lon": -2.1193650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK7 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3299400799, - "lat": 51.8649287, - "lon": -2.3614886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "mapillary": "1023433465850067", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 3299400811, - "lat": 51.8697621, - "lon": -2.3932720, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3299400834, - "lat": 51.8793264, - "lon": -2.4548456, - "tags": { - "amenity": "post_box", - "comment": "(within grounds of caravan site)", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3299400835, - "lat": 51.8933533, - "lon": -2.4939391, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3299400836, - "lat": 51.8991177, - "lon": -2.5229667, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3299400838, - "lat": 51.9061947, - "lon": -2.5322834, - "tags": { - "amenity": "post_box", - "comment": "Located back from main road", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3299400839, - "lat": 51.9076585, - "lon": -2.5372047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR9 579", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3300623461, - "lat": 52.2415797, - "lon": -0.8920481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3300670109, - "lat": 50.9849540, - "lon": -0.7393302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "post_box:type": "wall", - "ref": "GU29 999", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3301278278, - "lat": 51.4940489, - "lon": -0.1535663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "surprised by the ref. This used to be SW1 173", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1W 91;SW1W 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3301278279, - "lat": 51.4961262, - "lon": -0.1486042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1W 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3301278281, - "lat": 51.4969311, - "lon": -0.1486632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "roadworks prevented me from getting close enough to find ref, collection times and cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1W 5D;SW1W 105D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3301661847, - "lat": 51.8712819, - "lon": -2.6191879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "HR9 523", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3301662472, - "lat": 51.8774247, - "lon": -2.6009656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR9 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662473, - "lat": 51.8817752, - "lon": -2.6005808, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR9 575", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3301662475, - "lat": 51.8859517, - "lon": -2.5937618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR9 665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662478, - "lat": 51.8893174, - "lon": -2.5896748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR9 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662492, - "lat": 51.9035570, - "lon": -2.5880732, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662493, - "lat": 51.9044300, - "lon": -2.5914100, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3301662495, - "lat": 51.9069002, - "lon": -2.6041827, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662505, - "lat": 51.9086954, - "lon": -2.5888135, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3301662506, - "lat": 51.9087100, - "lon": -2.5858480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "HR9 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662516, - "lat": 51.9104986, - "lon": -2.5770522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "wall", - "ref": "HR9 742", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662530, - "lat": 51.9117600, - "lon": -2.5816900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "HR9 496", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3301662538, - "lat": 51.9122800, - "lon": -2.5737000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "note": "No ref on 2nd aperture", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "HR9 995", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3301662564, - "lat": 51.9136493, - "lon": -2.5780368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "HR9 498", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3301662566, - "lat": 51.9137892, - "lon": -2.5680341, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3301662601, - "lat": 51.9165026, - "lon": -2.5854928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HR9 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3302461052, - "lat": 51.0543448, - "lon": -0.8854256, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3302540276, - "lat": 51.5529900, - "lon": -0.3142612, - "tags": { - "amenity": "post_box", - "ref": "HA0 27" - } -}, -{ - "type": "node", - "id": 3302670274, - "lat": 55.8294668, - "lon": -4.4230876, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3303143247, - "lat": 53.1255116, - "lon": -1.1907286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3303357127, - "lat": 51.0473529, - "lon": -0.3607777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH13 68" - } -}, -{ - "type": "node", - "id": 3303363905, - "lat": 51.3866733, - "lon": -2.7102743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00", - "indoor": "yes", - "level": "0", - "post_box:type": "pillar", - "ref": "BS48 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3303363906, - "lat": 51.3878126, - "lon": -2.7004787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS40 132" - } -}, -{ - "type": "node", - "id": 3303363908, - "lat": 51.4348345, - "lon": -2.6185742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS3 1056", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3303363909, - "lat": 51.4364441, - "lon": -2.5909393, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 33D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3304393941, - "lat": 54.9339905, - "lon": -3.1672375, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA7 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3304417892, - "lat": 51.3670206, - "lon": -0.4910897, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-11", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3304788217, - "lat": 53.2733913, - "lon": -2.7224977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA6 173" - } -}, -{ - "type": "node", - "id": 3304820434, - "lat": 51.5106911, - "lon": -0.1194190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC2R 77D;WC2R 277D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3305875422, - "lat": 51.5119965, - "lon": -0.0953611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EC4V 410;EC4V 4101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3305876182, - "lat": 53.0137690, - "lon": -2.2210248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3305898437, - "lat": 54.8578622, - "lon": -3.0333332, - "tags": { - "amenity": "post_box", - "ref": "CA5 98" - } -}, -{ - "type": "node", - "id": 3306670581, - "lat": 53.0096668, - "lon": -2.2256286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3306670585, - "lat": 53.0124807, - "lon": -2.2271718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST5 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3307333765, - "lat": 52.6302540, - "lon": -2.4883221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TF8 50D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3307383237, - "lat": 51.5299507, - "lon": -0.0803122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3307782144, - "lat": 52.6774395, - "lon": 1.2189319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "label_date": "2019-08-21", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 824", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3307945819, - "lat": 52.3449982, - "lon": -1.5864885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3307945820, - "lat": 52.3499017, - "lon": -1.5823662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3309751027, - "lat": 51.7274797, - "lon": -0.8766317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3310389450, - "lat": 55.0953683, - "lon": -1.6511466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE13 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3310515967, - "lat": 54.2629582, - "lon": -3.2410415, - "tags": { - "amenity": "post_box", - "ref": "LA18 125", - "source": "https://www.flickr.com/search/?q=la18&w=737259%40N20&m=pool" - } -}, -{ - "type": "node", - "id": 3311810238, - "lat": 54.7024418, - "lon": -3.3893751, - "tags": { - "amenity": "post_box", - "ref": "CA13 162" - } -}, -{ - "type": "node", - "id": 3312243119, - "lat": 52.5255880, - "lon": -0.9079295, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3312267158, - "lat": 54.8109661, - "lon": -3.2839246, - "tags": { - "amenity": "post_box", - "ref": "CA7 394" - } -}, -{ - "type": "node", - "id": 3312311861, - "lat": 54.8197999, - "lon": -3.2526595, - "tags": { - "amenity": "post_box", - "ref": "CA7 202" - } -}, -{ - "type": "node", - "id": 3313020880, - "lat": 51.4963438, - "lon": -0.3742631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB2 106D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3313903571, - "lat": 54.8912401, - "lon": -3.1018334, - "tags": { - "amenity": "post_box", - "ref": "CA5 169" - } -}, -{ - "type": "node", - "id": 3313935676, - "lat": 54.9224078, - "lon": -3.0505104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA5 283", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3314462918, - "lat": 51.0454693, - "lon": -0.8477441, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-24", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU33 40", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU33 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3314477882, - "lat": 51.5015617, - "lon": -0.3630050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "UB2 26" - } -}, -{ - "type": "node", - "id": 3315460480, - "lat": 51.5154528, - "lon": -0.0771097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45", - "indoor": "yes", - "note": "Box is in the wall of the entrance lobby to the Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E1 53", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3315460482, - "lat": 51.5154455, - "lon": -0.0770990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45", - "indoor": "yes", - "note": "Box is in the wall of the entrance lobby to the Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E1 51", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3316520695, - "lat": 53.3569408, - "lon": -4.2845228, - "tags": { - "amenity": "post_box", - "ref": "LL70 61" - } -}, -{ - "type": "node", - "id": 3316939040, - "lat": 53.4392778, - "lon": -2.1871612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "location": "by South Levenshulme Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "M19 568", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3317142449, - "lat": 53.2124425, - "lon": -0.4586102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LN4 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3318239999, - "lat": 53.3822720, - "lon": -2.2583160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M22 728D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3319959646, - "lat": 51.5184786, - "lon": -0.1077647, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-19", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC1N 141P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3320703855, - "lat": 54.5229814, - "lon": -3.5237125, - "tags": { - "amenity": "post_box", - "ref": "CA25 59" - } -}, -{ - "type": "node", - "id": 3320712516, - "lat": 54.5247629, - "lon": -3.5127656, - "tags": { - "amenity": "post_box", - "ref": "CA25 43" - } -}, -{ - "type": "node", - "id": 3323106201, - "lat": 53.7145933, - "lon": -1.6346907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF17 1127;WF17 2127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3323106208, - "lat": 53.7193338, - "lon": -1.6537931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 101" - } -}, -{ - "type": "node", - "id": 3323979693, - "lat": 52.2478795, - "lon": 0.6974947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Unusual rectangular box with a rounded top", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "IP33 8159", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3324161631, - "lat": 53.0869600, - "lon": -2.4553900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 294D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324182110, - "lat": 53.0870900, - "lon": -2.4471200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "CW2 8", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324182111, - "lat": 53.0877900, - "lon": -2.4444400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "CW2 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324182112, - "lat": 53.0887900, - "lon": -2.4394000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "CW2 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324189382, - "lat": 53.0819200, - "lon": -2.4590800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "CW2 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324189383, - "lat": 53.0841500, - "lon": -2.4551300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 128D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324200991, - "lat": 53.0813700, - "lon": -2.4419300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "CW2 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324204885, - "lat": 53.0829300, - "lon": -2.4355000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 116D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324204886, - "lat": 53.0851000, - "lon": -2.4421200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 135D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3324741336, - "lat": 52.3010960, - "lon": -0.6857731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3324982143, - "lat": 55.8851359, - "lon": -4.2810491, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3325988126, - "lat": 51.1185235, - "lon": -0.8603009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GU35 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3325988138, - "lat": 51.1019572, - "lon": -0.8692633, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU35 100", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU35 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3326118850, - "lat": 53.5394535, - "lon": -2.1160865, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3326677319, - "lat": 54.6877118, - "lon": -3.3892723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "483426376316519", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA13 153", - "survey:date": "2020-03-27" - } -}, -{ - "type": "node", - "id": 3326683915, - "lat": 54.6729215, - "lon": -3.3780158, - "tags": { - "amenity": "post_box", - "ref": "CA13 80" - } -}, -{ - "type": "node", - "id": 3326691753, - "lat": 54.6633518, - "lon": -3.3688898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1746046379262249", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA13 72", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3326702960, - "lat": 54.6640495, - "lon": -3.3599645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA13 69", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3326704094, - "lat": 54.6654785, - "lon": -3.3692748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CA13 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3326705260, - "lat": 54.6656370, - "lon": -3.3594388, - "tags": { - "amenity": "post_box", - "ref": "CA13 114" - } -}, -{ - "type": "node", - "id": 3326710118, - "lat": 54.6666615, - "lon": -3.3521350, - "tags": { - "amenity": "post_box", - "ref": "CA13 181" - } -}, -{ - "type": "node", - "id": 3326710652, - "lat": 54.6644011, - "lon": -3.3486858, - "tags": { - "amenity": "post_box", - "ref": "CA13 44" - } -}, -{ - "type": "node", - "id": 3326711370, - "lat": 54.6616991, - "lon": -3.3522355, - "tags": { - "amenity": "post_box", - "ref": "CA13 169" - } -}, -{ - "type": "node", - "id": 3326714106, - "lat": 54.6614004, - "lon": -3.3587545, - "tags": { - "amenity": "post_box", - "ref": "CA13 87" - } -}, -{ - "type": "node", - "id": 3326720619, - "lat": 54.6567436, - "lon": -3.3527269, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA13 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3326887466, - "lat": 54.6562289, - "lon": -3.3582556, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3326893058, - "lat": 54.6584791, - "lon": -3.3701824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "333142779631983", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "CA13 91", - "survey:date": "2023-08-17" - } -}, -{ - "type": "node", - "id": 3326893512, - "lat": 54.6586552, - "lon": -3.3763583, - "tags": { - "amenity": "post_box", - "ref": "CA13 81" - } -}, -{ - "type": "node", - "id": 3326893749, - "lat": 51.0147206, - "lon": -0.4507308, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "fixme": "check position relative to bus stop", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH14 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3326894575, - "lat": 54.7541432, - "lon": -3.3753226, - "tags": { - "amenity": "post_box", - "ref": "CA7 296" - } -}, -{ - "type": "node", - "id": 3326898097, - "lat": 54.7544903, - "lon": -3.3708728, - "tags": { - "amenity": "post_box", - "ref": "CA7 493" - } -}, -{ - "type": "node", - "id": 3326912395, - "lat": 54.7642348, - "lon": -3.3276717, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA7 271", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3326926138, - "lat": 54.7664004, - "lon": -3.3293687, - "tags": { - "amenity": "post_box", - "ref": "CA7 178" - } -}, -{ - "type": "node", - "id": 3326935168, - "lat": 54.7646296, - "lon": -3.3201866, - "tags": { - "amenity": "post_box", - "ref": "CA7 235" - } -}, -{ - "type": "node", - "id": 3326945122, - "lat": 54.7664497, - "lon": -3.3160810, - "tags": { - "amenity": "post_box", - "ref": "CA7 364" - } -}, -{ - "type": "node", - "id": 3327156529, - "lat": 54.5179629, - "lon": -3.5132035, - "tags": { - "amenity": "post_box", - "ref": "CA25 127" - } -}, -{ - "type": "node", - "id": 3327157894, - "lat": 54.5175027, - "lon": -3.5053525, - "tags": { - "amenity": "post_box", - "ref": "CA25 82" - } -}, -{ - "type": "node", - "id": 3327161851, - "lat": 54.6139854, - "lon": -1.0702925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3327290366, - "lat": 50.9335755, - "lon": -2.3021920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3327290367, - "lat": 50.9307149, - "lon": -2.3049855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015468730" - } -}, -{ - "type": "node", - "id": 3327462705, - "lat": 54.8843613, - "lon": -2.8709988, - "tags": { - "amenity": "post_box", - "ref": "CA4 127", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3327462721, - "lat": 54.8915781, - "lon": -2.8805357, - "tags": { - "amenity": "post_box", - "ref": "CA4 331", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3327475234, - "lat": 54.8884105, - "lon": -2.9038001, - "tags": { - "amenity": "post_box", - "ref": "CA1 432", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3327637865, - "lat": 56.1281606, - "lon": -3.9549249, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3327682810, - "lat": 56.1300596, - "lon": -3.9439698, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3327682813, - "lat": 56.1264868, - "lon": -3.9289295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK8 115D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3327834274, - "lat": 52.9964242, - "lon": -1.2533004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG16 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3328123119, - "lat": 53.7664001, - "lon": -2.4749073, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3328249342, - "lat": 54.6581367, - "lon": -3.4127648, - "tags": { - "amenity": "post_box", - "ref": "CA13 123" - } -}, -{ - "type": "node", - "id": 3328249343, - "lat": 54.6598811, - "lon": -3.4150614, - "tags": { - "amenity": "post_box", - "ref": "CA13 100" - } -}, -{ - "type": "node", - "id": 3328249346, - "lat": 54.6602159, - "lon": -3.4237647, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3328249347, - "lat": 54.6637460, - "lon": -3.4182343, - "tags": { - "amenity": "post_box", - "ref": "CA13 90" - } -}, -{ - "type": "node", - "id": 3328251872, - "lat": 54.6590965, - "lon": -3.4337279, - "tags": { - "amenity": "post_box", - "ref": "CA13 88" - } -}, -{ - "type": "node", - "id": 3328251873, - "lat": 54.6501485, - "lon": -3.4403964, - "tags": { - "amenity": "post_box", - "ref": "CA13 130" - } -}, -{ - "type": "node", - "id": 3328251880, - "lat": 54.6462248, - "lon": -3.4407032, - "tags": { - "amenity": "post_box", - "ref": "CA13 156" - } -}, -{ - "type": "node", - "id": 3328266203, - "lat": 54.6448177, - "lon": -3.4650213, - "tags": { - "amenity": "post_box", - "ref": "CA14 13" - } -}, -{ - "type": "node", - "id": 3328266220, - "lat": 54.6484352, - "lon": -3.4647421, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 111", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3328695613, - "lat": 51.2109706, - "lon": -0.7811085, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU9 131D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3328949781, - "lat": 55.9777038, - "lon": -4.2038615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "G66 483D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3328949782, - "lat": 55.9705555, - "lon": -4.1951990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "G66 484D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3329078863, - "lat": 51.0487369, - "lon": -0.7226143, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU27 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3329118102, - "lat": 51.0250933, - "lon": -0.6814044, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3329131549, - "lat": 50.9959387, - "lon": -0.7257442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU29 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3329131551, - "lat": 50.9979808, - "lon": -0.7319211, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3329131556, - "lat": 51.0018163, - "lon": -0.7141334, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU29 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3329280300, - "lat": 51.4828650, - "lon": -0.9619267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3330347335, - "lat": 53.5691431, - "lon": -2.8848136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3330361748, - "lat": 55.9659932, - "lon": -4.1701980, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330361749, - "lat": 55.9647087, - "lon": -4.1610504, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330884046, - "lat": 55.9424476, - "lon": -4.1450276, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330884047, - "lat": 55.9436301, - "lon": -4.1201577, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330884052, - "lat": 55.9766550, - "lon": -4.0721359, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330884056, - "lat": 55.9795480, - "lon": -4.0700192, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330884066, - "lat": 55.9553769, - "lon": -4.0923140, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3330928368, - "lat": 55.9716359, - "lon": -4.0531205, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3331686242, - "lat": 54.8106087, - "lon": -3.3939627, - "tags": { - "amenity": "post_box", - "ref": "CA15 58" - } -}, -{ - "type": "node", - "id": 3331716401, - "lat": 54.5590297, - "lon": -3.5512599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA28 63" - } -}, -{ - "type": "node", - "id": 3331755382, - "lat": 52.6761800, - "lon": 1.2232854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 805", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3331917789, - "lat": 54.5472562, - "lon": -3.5908620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 5", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3331958132, - "lat": 51.5035471, - "lon": -0.3801417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB2 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3333704087, - "lat": 54.5211317, - "lon": -3.5171585, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CA25 79;CA25 1079D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3333750297, - "lat": 54.6625894, - "lon": -3.3666249, - "tags": { - "amenity": "post_box", - "ref": "CA13 179" - } -}, -{ - "type": "node", - "id": 3333814024, - "lat": 54.6705716, - "lon": -3.3802127, - "tags": { - "amenity": "post_box", - "ref": "CA13 142" - } -}, -{ - "type": "node", - "id": 3333887321, - "lat": 54.7011848, - "lon": -3.3226745, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3333918899, - "lat": 54.7198041, - "lon": -3.1860035, - "tags": { - "amenity": "post_box", - "ref": "CA7 317" - } -}, -{ - "type": "node", - "id": 3334040491, - "lat": 51.4810060, - "lon": -3.1820432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "name": "Castle Street", - "note": "Gold post box to celebrate Welsh cyclist Geraint Thomas winning first place in men's pursuit at 2012 London Olympics", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3334048939, - "lat": 54.5287188, - "lon": -3.5322656, - "tags": { - "amenity": "post_box", - "ref": "CA25 135D" - } -}, -{ - "type": "node", - "id": 3336733193, - "lat": 51.1455349, - "lon": -0.9687721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3337748327, - "lat": 51.5088191, - "lon": -0.3495453, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3337851935, - "lat": 51.6987986, - "lon": -0.1741476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3338168409, - "lat": 52.2653283, - "lon": -1.5447845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3338168410, - "lat": 52.2698114, - "lon": -1.5468627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3338271942, - "lat": 51.7931512, - "lon": -1.4859109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX28 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3338781729, - "lat": 51.4746597, - "lon": -0.9833314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG4 166", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3339434816, - "lat": 54.6690283, - "lon": -3.3823412, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3339435619, - "lat": 54.6434933, - "lon": -3.3354099, - "tags": { - "amenity": "post_box", - "ref": "CA13 93" - } -}, -{ - "type": "node", - "id": 3339435742, - "lat": 54.6555722, - "lon": -3.3747690, - "tags": { - "amenity": "post_box", - "ref": "CA13 139" - } -}, -{ - "type": "node", - "id": 3339501388, - "lat": 54.7376140, - "lon": -3.4470930, - "tags": { - "amenity": "post_box", - "ref": "CA15 48" - } -}, -{ - "type": "node", - "id": 3340099281, - "lat": 54.8227811, - "lon": -3.1686095, - "tags": { - "amenity": "post_box", - "ref": "CA7 175" - } -}, -{ - "type": "node", - "id": 3340252293, - "lat": 51.5071148, - "lon": -0.3784786, - "tags": { - "amenity": "post_box", - "fixme": "Might have been removed - needs survey", - "ref": "UB1 1091" - } -}, -{ - "type": "node", - "id": 3340582767, - "lat": 56.4307056, - "lon": -2.9629449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3340659784, - "lat": 55.9791554, - "lon": -4.0626847, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3340796429, - "lat": 51.7357853, - "lon": -2.3950464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3340796680, - "lat": 51.7657716, - "lon": -2.3690932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "GL2 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3341422227, - "lat": 54.8246034, - "lon": -3.1608964, - "tags": { - "amenity": "post_box", - "ref": "CA7 433" - } -}, -{ - "type": "node", - "id": 3341422228, - "lat": 54.8257161, - "lon": -3.1598837, - "tags": { - "amenity": "post_box", - "ref": "CA7 335" - } -}, -{ - "type": "node", - "id": 3341422229, - "lat": 54.8228617, - "lon": -3.1665277, - "tags": { - "amenity": "post_box", - "ref": "CA7 175" - } -}, -{ - "type": "node", - "id": 3341422230, - "lat": 54.8234190, - "lon": -3.1741594, - "tags": { - "amenity": "post_box", - "ref": "CA7 349" - } -}, -{ - "type": "node", - "id": 3341422231, - "lat": 54.8251880, - "lon": -3.1714192, - "tags": { - "amenity": "post_box", - "ref": "CA7 444" - } -}, -{ - "type": "node", - "id": 3341422232, - "lat": 54.8292744, - "lon": -3.1518462, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA7 385", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3341448899, - "lat": 54.8289764, - "lon": -3.1636763, - "tags": { - "amenity": "post_box", - "ref": "CA7 231" - } -}, -{ - "type": "node", - "id": 3341448900, - "lat": 54.8212848, - "lon": -3.1598536, - "tags": { - "amenity": "post_box", - "ref": "CA7 207" - } -}, -{ - "type": "node", - "id": 3341466851, - "lat": 54.8159816, - "lon": -3.1590916, - "tags": { - "amenity": "post_box", - "ref": "CA7 470" - } -}, -{ - "type": "node", - "id": 3341466852, - "lat": 54.8173418, - "lon": -3.1495774, - "tags": { - "amenity": "post_box", - "ref": "CA7 457" - } -}, -{ - "type": "node", - "id": 3341518074, - "lat": 54.0057125, - "lon": -2.0825548, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3341602512, - "lat": 54.7212192, - "lon": -3.1663660, - "tags": { - "amenity": "post_box", - "ref": "CA7 429" - } -}, -{ - "type": "node", - "id": 3341967493, - "lat": 51.5095232, - "lon": -0.3165668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "mapillary": "255643962973184", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-01-10" - } -}, -{ - "type": "node", - "id": 3341970493, - "lat": 51.0419498, - "lon": -3.1578456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "colour": "red", - "direction": "ESE", - "drive_through": "no", - "name": "Norton Manor Lodge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 169", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3344734265, - "lat": 54.4146073, - "lon": -2.1747761, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL11 111", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3344736833, - "lat": 54.4989712, - "lon": -2.3143417, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3344736876, - "lat": 54.5099609, - "lon": -2.3207371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA17 98", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3344795983, - "lat": 54.5958528, - "lon": -2.6217474, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3345421158, - "lat": 54.9102998, - "lon": -3.2612738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CA7 110", - "survey:date": "2023-06-21", - "wikimedia_commons": "File:National Cycle Route 72, Anthorn - geograph.org.uk - 4974473.jpg" - } -}, -{ - "type": "node", - "id": 3345544619, - "lat": 54.9272274, - "lon": -3.1488286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1466703130616530", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA7 103" - } -}, -{ - "type": "node", - "id": 3345862366, - "lat": 56.1247156, - "lon": -3.8166796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3346043042, - "lat": 51.3868896, - "lon": -0.4953095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT16 73" - } -}, -{ - "type": "node", - "id": 3346043051, - "lat": 51.3935246, - "lon": -0.5076525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT16 66" - } -}, -{ - "type": "node", - "id": 3347621478, - "lat": 53.1795801, - "lon": -2.4384764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "ref": "CW10 141", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3347843174, - "lat": 54.6196762, - "lon": -2.4831773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "image": "https://www.geograph.org.uk/photo/4717802", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA16 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-28" - } -}, -{ - "type": "node", - "id": 3348185757, - "lat": 52.5831097, - "lon": -1.1903613, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3348706701, - "lat": 52.0617216, - "lon": -1.3273981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "no ref visible on RH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "OX16 902", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3348706702, - "lat": 52.0603431, - "lon": -1.3279803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX16 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3348706703, - "lat": 52.0629544, - "lon": -1.3268671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX16 1009D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3352203438, - "lat": 50.4812595, - "lon": -3.7779389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ11 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3352591614, - "lat": 51.1433352, - "lon": -0.9714874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 23D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3353098910, - "lat": 53.0114764, - "lon": -1.2851424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG16 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3353216161, - "lat": 53.0124133, - "lon": -1.3034776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG16 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3353513167, - "lat": 54.7457460, - "lon": -3.2421297, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3353532417, - "lat": 54.7380032, - "lon": -3.2724378, - "tags": { - "amenity": "post_box", - "ref": "CA7 184" - } -}, -{ - "type": "node", - "id": 3353532424, - "lat": 54.7411849, - "lon": -3.2723114, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 242" - } -}, -{ - "type": "node", - "id": 3353546181, - "lat": 54.7401082, - "lon": -3.1841409, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3353546814, - "lat": 54.7381478, - "lon": -3.1843428, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3353872512, - "lat": 54.7110019, - "lon": -2.8748270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA11 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3353872596, - "lat": 54.7106878, - "lon": -2.8819197, - "tags": { - "amenity": "post_box", - "ref": "CA11 322" - } -}, -{ - "type": "node", - "id": 3353914875, - "lat": 54.7136932, - "lon": -2.9181994, - "tags": { - "amenity": "post_box", - "ref": "CA11 61" - } -}, -{ - "type": "node", - "id": 3354019275, - "lat": 54.7295152, - "lon": -2.9913414, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA7 213", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3354113769, - "lat": 54.7459491, - "lon": -3.0569585, - "tags": { - "amenity": "post_box", - "ref": "CA7 309" - } -}, -{ - "type": "node", - "id": 3354184083, - "lat": 54.5316144, - "lon": -3.5409245, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA25 25" - } -}, -{ - "type": "node", - "id": 3354186062, - "lat": 54.5266725, - "lon": -3.5411610, - "tags": { - "amenity": "post_box", - "ref": "CA25 53" - } -}, -{ - "type": "node", - "id": 3354240189, - "lat": 54.5129366, - "lon": -2.3712834, - "tags": { - "amenity": "post_box", - "ref": "CA17 231" - } -}, -{ - "type": "node", - "id": 3354244696, - "lat": 54.5166515, - "lon": -2.3604660, - "tags": { - "amenity": "post_box", - "ref": "CA17 233" - } -}, -{ - "type": "node", - "id": 3354253888, - "lat": 54.5212634, - "lon": -2.3199540, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 99", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3354253889, - "lat": 54.5266022, - "lon": -2.3191037, - "tags": { - "amenity": "post_box", - "ref": "CA17 93" - } -}, -{ - "type": "node", - "id": 3354253890, - "lat": 54.5270971, - "lon": -2.3228264, - "tags": { - "amenity": "post_box", - "ref": "CA17 197" - } -}, -{ - "type": "node", - "id": 3355504887, - "lat": 54.6790834, - "lon": -3.1952481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "ref": "CA12 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3355601400, - "lat": 54.6128561, - "lon": -3.1453379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3355842068, - "lat": 53.5343525, - "lon": -3.0540728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3356203064, - "lat": 54.4412064, - "lon": -2.4555989, - "tags": { - "amenity": "post_box", - "ref": "CA17 258" - } -}, -{ - "type": "node", - "id": 3356219259, - "lat": 54.4340572, - "lon": -2.4319022, - "tags": { - "amenity": "post_box", - "ref": "CA17 159" - } -}, -{ - "type": "node", - "id": 3356223922, - "lat": 54.4420711, - "lon": -2.3606998, - "tags": { - "amenity": "post_box", - "ref": "CA17 296" - } -}, -{ - "type": "node", - "id": 3356235250, - "lat": 54.4696636, - "lon": -2.3838983, - "tags": { - "amenity": "post_box", - "ref": "CA17 109" - } -}, -{ - "type": "node", - "id": 3356235276, - "lat": 54.4805904, - "lon": -2.4194224, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "CA17 251" - } -}, -{ - "type": "node", - "id": 3356239049, - "lat": 54.4645597, - "lon": -2.3544560, - "tags": { - "amenity": "post_box", - "ref": "CA17 112" - } -}, -{ - "type": "node", - "id": 3356239297, - "lat": 54.4721887, - "lon": -2.3488611, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA17 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3356239346, - "lat": 54.4732754, - "lon": -2.3364736, - "tags": { - "amenity": "post_box", - "ref": "CA17 101" - } -}, -{ - "type": "node", - "id": 3356271387, - "lat": 54.4900276, - "lon": -2.3341165, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA17 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3356273917, - "lat": 54.5348622, - "lon": -2.3185402, - "tags": { - "amenity": "post_box", - "ref": "CA17 102" - } -}, -{ - "type": "node", - "id": 3356273921, - "lat": 54.5040599, - "lon": -2.2579008, - "tags": { - "amenity": "post_box", - "ref": "CA17 107" - } -}, -{ - "type": "node", - "id": 3356644958, - "lat": 52.2926257, - "lon": -0.6889691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3356644959, - "lat": 52.2926412, - "lon": -0.6889708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "opening_hours": "Mo-Fr 09:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN8 1065" - } -}, -{ - "type": "node", - "id": 3357928805, - "lat": 51.4990518, - "lon": -0.1654424, - "tags": { - "amenity": "post_box", - "brand": "Mail Boxes Etc.", - "brand:wikidata": "Q1139182", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "name": "Mail Boxes Etc", - "operator": "Mail Boxes Etc.", - "operator:wikidata": "Q1139182" - } -}, -{ - "type": "node", - "id": 3358809989, - "lat": 51.4970969, - "lon": -0.1795462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW7 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3358814595, - "lat": 51.4997504, - "lon": -0.1779356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SW7 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3359148214, - "lat": 54.8851183, - "lon": -3.2499720, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3359151523, - "lat": 54.8860342, - "lon": -3.2098956, - "tags": { - "amenity": "post_box", - "ref": "CA7 462" - } -}, -{ - "type": "node", - "id": 3359155680, - "lat": 54.8939787, - "lon": -3.2027610, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA7 346" - } -}, -{ - "type": "node", - "id": 3359155687, - "lat": 54.8964658, - "lon": -3.2034320, - "tags": { - "amenity": "post_box", - "ref": "CA7 281" - } -}, -{ - "type": "node", - "id": 3359174674, - "lat": 54.8624055, - "lon": -3.3889362, - "tags": { - "amenity": "post_box", - "mapillary": "1154060392540026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA7 66", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 3359174680, - "lat": 54.8684794, - "lon": -3.3890851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-05-25", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA7 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3359286572, - "lat": 54.8712687, - "lon": -3.3843084, - "tags": { - "amenity": "post_box", - "ref": "CA7 351" - } -}, -{ - "type": "node", - "id": 3359286573, - "lat": 54.8731602, - "lon": -3.3776519, - "tags": { - "amenity": "post_box", - "ref": "CA7 342" - } -}, -{ - "type": "node", - "id": 3359286574, - "lat": 54.8641971, - "lon": -3.3631956, - "tags": { - "amenity": "post_box", - "note": "In the wall of a private house!", - "ref": "CA7 38" - } -}, -{ - "type": "node", - "id": 3359286583, - "lat": 54.8836350, - "lon": -3.3764209, - "tags": { - "amenity": "post_box", - "ref": "CA7 313" - } -}, -{ - "type": "node", - "id": 3359499745, - "lat": 54.7098845, - "lon": -3.4421005, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA15 500", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3359571512, - "lat": 54.6876724, - "lon": -3.4699204, - "tags": { - "amenity": "post_box", - "ref": "CA15 154" - } -}, -{ - "type": "node", - "id": 3359571514, - "lat": 54.6855143, - "lon": -3.4759802, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA15 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3359582090, - "lat": 54.6644058, - "lon": -3.4933263, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA14 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3359644417, - "lat": 51.3359386, - "lon": -0.5050437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "black/grey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT14 216D", - "royal_cypher": "no", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 3361258526, - "lat": 54.6525018, - "lon": -3.4975358, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA14 158", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3361261479, - "lat": 54.6513365, - "lon": -3.4880819, - "tags": { - "amenity": "post_box", - "ref": "CA14 8" - } -}, -{ - "type": "node", - "id": 3361261480, - "lat": 54.6539784, - "lon": -3.4876577, - "tags": { - "amenity": "post_box", - "ref": "CA14 112" - } -}, -{ - "type": "node", - "id": 3361436123, - "lat": 54.6702696, - "lon": -3.4383267, - "tags": { - "amenity": "post_box", - "ref": "CA13 155" - } -}, -{ - "type": "node", - "id": 3361436303, - "lat": 54.6726506, - "lon": -3.4313053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "180932057138301", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "CA13 97", - "survey:date": "2020-04-10" - } -}, -{ - "type": "node", - "id": 3361469404, - "lat": 54.6710103, - "lon": -3.4334309, - "tags": { - "amenity": "post_box", - "ref": "CA13 164" - } -}, -{ - "type": "node", - "id": 3361667398, - "lat": 53.3548845, - "lon": -1.4531003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S14 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3361670654, - "lat": 54.7072659, - "lon": -3.4786629, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA15 138" - } -}, -{ - "type": "node", - "id": 3361697545, - "lat": 54.7064585, - "lon": -3.4847034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA15 171" - } -}, -{ - "type": "node", - "id": 3361697658, - "lat": 54.7055274, - "lon": -3.4909233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA15 109" - } -}, -{ - "type": "node", - "id": 3362338762, - "lat": 51.6473685, - "lon": -0.1474373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "EN4 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3362921593, - "lat": 53.8584628, - "lon": -1.7243056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "BD17 940", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3364605014, - "lat": 51.7088622, - "lon": -0.6133337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3364627877, - "lat": 51.7037270, - "lon": -0.6162911, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3366223331, - "lat": 52.9721971, - "lon": -1.1483563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 165D", - "ref:GB:uprn": "10015390670", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3366223377, - "lat": 52.9776274, - "lon": -1.1357669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG3 171", - "ref:GB:uprn": "10015388982", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3366960707, - "lat": 52.9835439, - "lon": -1.1416744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 334", - "ref:GB:uprn": "10015277659", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3366960736, - "lat": 52.9859340, - "lon": -1.1301651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG5 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3367064662, - "lat": 51.3910552, - "lon": -0.1127098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "London Road (Dunheved Hotel)", - "old_ref": "CR7 331", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 331D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3367069621, - "lat": 51.1730768, - "lon": -0.1612539, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Yattendon Road", - "old_ref": "RH6 201", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH6 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3367934748, - "lat": 54.7153993, - "lon": -3.5006591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA15 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3368100617, - "lat": 54.7053803, - "lon": -3.5033528, - "tags": { - "amenity": "post_box", - "ref": "CA15 174" - } -}, -{ - "type": "node", - "id": 3368161578, - "lat": 54.7080384, - "lon": -3.5000355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA15 56" - } -}, -{ - "type": "node", - "id": 3368161579, - "lat": 54.7085680, - "lon": -3.5058689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CA15 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3368161584, - "lat": 54.7148641, - "lon": -3.4978322, - "tags": { - "amenity": "post_box", - "ref": "CA15 51" - } -}, -{ - "type": "node", - "id": 3368166693, - "lat": 54.7151945, - "lon": -3.4990828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "ref": "CA15 180", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3368166695, - "lat": 54.7162534, - "lon": -3.4970374, - "tags": { - "amenity": "post_box", - "ref": "CA15 43" - } -}, -{ - "type": "node", - "id": 3368166696, - "lat": 54.7192210, - "lon": -3.4942387, - "tags": { - "amenity": "post_box", - "ref": "CA15 45" - } -}, -{ - "type": "node", - "id": 3368166705, - "lat": 54.7103031, - "lon": -3.4877658, - "tags": { - "amenity": "post_box", - "ref": "CA15 50" - } -}, -{ - "type": "node", - "id": 3368166706, - "lat": 54.7081905, - "lon": -3.4812598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA15 46" - } -}, -{ - "type": "node", - "id": 3368166707, - "lat": 54.7122897, - "lon": -3.4848328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA15 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3368166708, - "lat": 54.7194244, - "lon": -3.4787597, - "tags": { - "amenity": "post_box", - "ref": "CA15 66" - } -}, -{ - "type": "node", - "id": 3368207660, - "lat": 54.6915957, - "lon": -3.5172077, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA15 144" - } -}, -{ - "type": "node", - "id": 3368207669, - "lat": 54.6883547, - "lon": -3.5169989, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CA15 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3368210129, - "lat": 54.6813774, - "lon": -3.5309934, - "tags": { - "amenity": "post_box", - "ref": "CA15 173" - } -}, -{ - "type": "node", - "id": 3368890375, - "lat": 51.5399708, - "lon": 0.0440902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E7 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3369134388, - "lat": 50.7135360, - "lon": -2.3378363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3369178913, - "lat": 50.6119868, - "lon": -2.4597393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 59D", - "ref:GB:uprn": "10015292298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 3369205351, - "lat": 50.6447158, - "lon": -2.1222215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 71D", - "ref:GB:uprn": "10015328498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3369916965, - "lat": 54.5303364, - "lon": -3.5958367, - "tags": { - "amenity": "post_box", - "ref": "CA28 15" - } -}, -{ - "type": "node", - "id": 3369916970, - "lat": 54.5362954, - "lon": -3.5969131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 16" - } -}, -{ - "type": "node", - "id": 3369916979, - "lat": 54.5356859, - "lon": -3.5933874, - "tags": { - "amenity": "post_box", - "ref": "CA28 137" - } -}, -{ - "type": "node", - "id": 3369916980, - "lat": 54.5291246, - "lon": -3.5839666, - "tags": { - "amenity": "post_box", - "ref": "CA28 118" - } -}, -{ - "type": "node", - "id": 3369917099, - "lat": 54.5414036, - "lon": -3.5955333, - "tags": { - "amenity": "post_box", - "ref": "CA28 17" - } -}, -{ - "type": "node", - "id": 3369917100, - "lat": 54.5460571, - "lon": -3.5957908, - "tags": { - "amenity": "post_box", - "ref": "CA28 18" - } -}, -{ - "type": "node", - "id": 3369933238, - "lat": 52.4155511, - "lon": -1.5926603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3369939485, - "lat": 51.6107154, - "lon": -0.6352233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 160D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3369944114, - "lat": 52.1390859, - "lon": -0.4973074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK40 225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3369944788, - "lat": 51.5476705, - "lon": 0.2122337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3369949565, - "lat": 52.1394144, - "lon": -0.4319009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 324", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 3369952460, - "lat": 52.2476543, - "lon": -1.1650586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 414" - } -}, -{ - "type": "node", - "id": 3369953071, - "lat": 52.4184597, - "lon": -1.5927864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 3369962319, - "lat": 54.5263725, - "lon": -3.5640924, - "tags": { - "amenity": "post_box", - "ref": "CA28 52" - } -}, -{ - "type": "node", - "id": 3369962320, - "lat": 54.5299689, - "lon": -3.5684637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 14" - } -}, -{ - "type": "node", - "id": 3369962321, - "lat": 54.5338087, - "lon": -3.5659237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 107" - } -}, -{ - "type": "node", - "id": 3369962322, - "lat": 54.5369362, - "lon": -3.5619713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 136" - } -}, -{ - "type": "node", - "id": 3369962335, - "lat": 54.5418625, - "lon": -3.5642856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 148" - } -}, -{ - "type": "node", - "id": 3369962345, - "lat": 54.5433472, - "lon": -3.5697803, - "tags": { - "amenity": "post_box", - "ref": "CA28 4" - } -}, -{ - "type": "node", - "id": 3370160509, - "lat": 54.5545046, - "lon": -3.5847678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 21" - } -}, -{ - "type": "node", - "id": 3370160521, - "lat": 54.5583469, - "lon": -3.5840600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 20" - } -}, -{ - "type": "node", - "id": 3370160528, - "lat": 54.5544570, - "lon": -3.5790153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 23" - } -}, -{ - "type": "node", - "id": 3370160531, - "lat": 54.5509388, - "lon": -3.5696184, - "tags": { - "amenity": "post_box", - "ref": "CA28 114" - } -}, -{ - "type": "node", - "id": 3370160563, - "lat": 54.5501424, - "lon": -3.5767621, - "tags": { - "amenity": "post_box", - "ref": "CA28 133" - } -}, -{ - "type": "node", - "id": 3370168339, - "lat": 54.5447866, - "lon": -3.5740227, - "tags": { - "amenity": "post_box", - "ref": "CA28 11" - } -}, -{ - "type": "node", - "id": 3370168340, - "lat": 54.5498869, - "lon": -3.5880637, - "tags": { - "amenity": "post_box", - "ref": "CA28 3" - } -}, -{ - "type": "node", - "id": 3370168341, - "lat": 54.5488174, - "lon": -3.5859818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 1" - } -}, -{ - "type": "node", - "id": 3370196454, - "lat": 54.6603265, - "lon": -3.3712209, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA13 133", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3370241334, - "lat": 52.8388274, - "lon": 0.8694233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:35; Sa 11:00", - "note": "Inside Morrisons store, therefore not accessible outside of opening hours.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR21 2170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3370797556, - "lat": 53.9064734, - "lon": -1.4233136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3370797573, - "lat": 53.8992529, - "lon": -1.6731805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 918", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3370797580, - "lat": 53.9033285, - "lon": -1.5119960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3370864025, - "lat": 53.7411687, - "lon": -1.6129442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "wall", - "ref": "LS27 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3370864026, - "lat": 53.7456839, - "lon": -1.6016498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS27 218;LS27 1218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3370993224, - "lat": 53.0152075, - "lon": -2.2230092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3371573193, - "lat": 55.0754835, - "lon": -6.6837751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "Drumcroone Road Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3371575099, - "lat": 55.0988526, - "lon": -6.7104248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "name": "Macosquin Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3371590674, - "lat": 52.3437960, - "lon": 0.4124483, - "tags": { - "amenity": "post_box", - "ref": "CB7 63" - } -}, -{ - "type": "node", - "id": 3371601023, - "lat": 53.7852918, - "lon": -2.7532012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 367" - } -}, -{ - "type": "node", - "id": 3371667102, - "lat": 53.7400924, - "lon": -0.3337253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HU1 14D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3372476206, - "lat": 51.4985713, - "lon": -0.1404783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "note": "Ref appears no longer to agree to the entry on the Royal Mail list (survey 20/7/18)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1E 34;SW1E 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 3372529987, - "lat": 52.5917407, - "lon": 0.3406567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE38 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3372601806, - "lat": 52.8726878, - "lon": -0.0432128, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3372646893, - "lat": 50.7953304, - "lon": -1.1180803, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-28", - "check_date:collection_times": "2022-06-28", - "check_date:ref": "2022-06-28", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3373178967, - "lat": 54.6523991, - "lon": -3.5488307, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 15" - } -}, -{ - "type": "node", - "id": 3373278663, - "lat": 54.9168848, - "lon": -3.2927733, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA7 270" - } -}, -{ - "type": "node", - "id": 3373310765, - "lat": 54.8859216, - "lon": -3.1384395, - "tags": { - "amenity": "post_box", - "ref": "CA7 210" - } -}, -{ - "type": "node", - "id": 3373310768, - "lat": 54.8703203, - "lon": -3.1318137, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3373310770, - "lat": 54.8683038, - "lon": -3.1601707, - "tags": { - "amenity": "post_box", - "ref": "CA7 225" - } -}, -{ - "type": "node", - "id": 3373311922, - "lat": 54.8611401, - "lon": -3.1562865, - "tags": { - "amenity": "post_box", - "ref": "CA7 209" - } -}, -{ - "type": "node", - "id": 3373320769, - "lat": 54.8671976, - "lon": -3.0981863, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 109" - } -}, -{ - "type": "node", - "id": 3373320770, - "lat": 54.8590286, - "lon": -3.1102362, - "tags": { - "amenity": "post_box", - "ref": "CA7 232" - } -}, -{ - "type": "node", - "id": 3373321810, - "lat": 54.8455884, - "lon": -3.1717796, - "tags": { - "amenity": "post_box", - "ref": "CA7 234" - } -}, -{ - "type": "node", - "id": 3373325356, - "lat": 54.8499675, - "lon": -3.1551710, - "tags": { - "amenity": "post_box", - "ref": "CA7 492" - } -}, -{ - "type": "node", - "id": 3373335290, - "lat": 54.8400361, - "lon": -3.2121331, - "tags": { - "amenity": "post_box", - "ref": "CA7 300" - } -}, -{ - "type": "node", - "id": 3373335292, - "lat": 54.8373547, - "lon": -3.2223495, - "tags": { - "amenity": "post_box", - "ref": "CA7 215" - } -}, -{ - "type": "node", - "id": 3373336654, - "lat": 54.8276280, - "lon": -3.2564842, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CA7 307", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3373350589, - "lat": 54.7356038, - "lon": -3.2364484, - "tags": { - "amenity": "post_box", - "ref": "CA7 228" - } -}, -{ - "type": "node", - "id": 3373350590, - "lat": 54.7330419, - "lon": -3.2118986, - "tags": { - "amenity": "post_box", - "ref": "CA7 219" - } -}, -{ - "type": "node", - "id": 3373350591, - "lat": 54.7416474, - "lon": -3.3112692, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA7 318" - } -}, -{ - "type": "node", - "id": 3373351608, - "lat": 54.7387988, - "lon": -3.3230977, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "CA7 223" - } -}, -{ - "type": "node", - "id": 3373351631, - "lat": 54.7388579, - "lon": -3.3325428, - "tags": { - "amenity": "post_box", - "ref": "CA7 294" - } -}, -{ - "type": "node", - "id": 3373382806, - "lat": 54.7329082, - "lon": -3.3531627, - "tags": { - "amenity": "post_box", - "ref": "CA7 367" - } -}, -{ - "type": "node", - "id": 3373382808, - "lat": 54.7297148, - "lon": -3.3754695, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3373382849, - "lat": 54.7218919, - "lon": -3.3911301, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3374294693, - "lat": 54.8986655, - "lon": -1.3816532, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3374801987, - "lat": 52.0790553, - "lon": -1.9411321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su 12:00", - "old_ref": "E208 Safeways Evesham", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3374874453, - "lat": 54.8426180, - "lon": -3.0509212, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA5 445" - } -}, -{ - "type": "node", - "id": 3374874454, - "lat": 54.8409296, - "lon": -3.0492149, - "tags": { - "amenity": "post_box", - "ref": "CA5 465" - } -}, -{ - "type": "node", - "id": 3374874470, - "lat": 54.8394884, - "lon": -3.0842334, - "tags": { - "amenity": "post_box", - "ref": "CA5 363" - } -}, -{ - "type": "node", - "id": 3375059576, - "lat": 54.1272987, - "lon": -3.2232546, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3375290361, - "lat": 52.2842393, - "lon": -1.5258225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3375474771, - "lat": 54.2329595, - "lon": -1.3287752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO7 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3375692551, - "lat": 53.4081121, - "lon": -0.8938812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN10 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3376510436, - "lat": 51.7155392, - "lon": -0.6230824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3376510438, - "lat": 51.7116501, - "lon": -0.6216404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3376510439, - "lat": 51.7076609, - "lon": -0.6166062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3376510440, - "lat": 51.7150852, - "lon": -0.6189827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mail:franked": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 15:30-18:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "HP5 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3376510441, - "lat": 51.7150590, - "lon": -0.6189389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3376510442, - "lat": 51.7122810, - "lon": -0.6139637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3376604512, - "lat": 52.6017397, - "lon": 1.1970088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 902", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3376712340, - "lat": 55.8925970, - "lon": -3.5327607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 86D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3377235414, - "lat": 52.6268978, - "lon": -2.2027456, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3377509471, - "lat": 52.2546281, - "lon": 0.8663391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3377585831, - "lat": 51.5007581, - "lon": -0.1547142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 82D;SW1X 182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3377590562, - "lat": 51.1109821, - "lon": -0.1488383, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Maidenbower Drive", - "old_ref": "RH11 153", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3377600479, - "lat": 51.3984630, - "lon": 0.4701548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME2 275" - } -}, -{ - "type": "node", - "id": 3377613809, - "lat": 51.0632182, - "lon": -0.3278030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP14-LC (left aperture);CP1-LC (right aperture)", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RH12 3;RH12 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3377618649, - "lat": 51.0638993, - "lon": -0.3243156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "North Street", - "old_ref": "RH12 43", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3377714974, - "lat": 52.6640576, - "lon": 1.2192059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 804" - } -}, -{ - "type": "node", - "id": 3378267132, - "lat": 52.8215930, - "lon": -1.0548902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "LE12 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3378370517, - "lat": 52.9571259, - "lon": -1.1169094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 390D", - "ref:GB:uprn": "10015398530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3378370545, - "lat": 52.9616163, - "lon": -1.0948654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG4 458", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3378404038, - "lat": 51.6421765, - "lon": -0.0512506, - "tags": { - "amenity": "post_box", - "ref": "EN3 155", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3378417733, - "lat": 51.0449094, - "lon": -0.8847573, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is a bit set back from the line of the road.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3378449378, - "lat": 51.6445584, - "lon": -0.0575870, - "tags": { - "amenity": "post_box", - "note": "For franked / metered post only", - "post_box:type": "meter", - "ref": "EN1 201", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3378513936, - "lat": 51.5511181, - "lon": 0.0197026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3378513940, - "lat": 51.5672299, - "lon": 0.0187409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3378707407, - "lat": 52.7669154, - "lon": -2.5911225, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3378917134, - "lat": 52.9714009, - "lon": -1.1110283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "image": "https://www.mapillary.com/map/im/QayCDBQ1ofxSfmMPQTlzLQ", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3379301261, - "lat": 51.5438231, - "lon": -0.0394678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E9 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3379368556, - "lat": 52.5503106, - "lon": -0.2196741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Local knowledge" - } -}, -{ - "type": "node", - "id": 3379369293, - "lat": 52.5483312, - "lon": -0.2118785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "Local knowledge" - } -}, -{ - "type": "node", - "id": 3379399256, - "lat": 54.7991509, - "lon": -3.2974806, - "tags": { - "amenity": "post_box", - "ref": "CA7 422" - } -}, -{ - "type": "node", - "id": 3379449823, - "lat": 52.6747705, - "lon": -1.1026961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3379514816, - "lat": 54.6678813, - "lon": -3.5157355, - "tags": { - "amenity": "post_box", - "ref": "CA14 184" - } -}, -{ - "type": "node", - "id": 3379541989, - "lat": 54.6583954, - "lon": -3.5204618, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA14 9" - } -}, -{ - "type": "node", - "id": 3379543839, - "lat": 54.6621304, - "lon": -3.5253006, - "tags": { - "amenity": "post_box", - "ref": "CA14 41" - } -}, -{ - "type": "node", - "id": 3379545384, - "lat": 54.6606123, - "lon": -3.5320822, - "tags": { - "amenity": "post_box", - "ref": "CA14 160" - } -}, -{ - "type": "node", - "id": 3379545385, - "lat": 54.6582956, - "lon": -3.5283133, - "tags": { - "amenity": "post_box", - "ref": "CA14 106" - } -}, -{ - "type": "node", - "id": 3379545386, - "lat": 54.6537143, - "lon": -3.5328424, - "tags": { - "amenity": "post_box", - "ref": "CA14 157" - } -}, -{ - "type": "node", - "id": 3379545387, - "lat": 54.6498171, - "lon": -3.5364579, - "tags": { - "amenity": "post_box", - "ref": "CA14 151" - } -}, -{ - "type": "node", - "id": 3379569513, - "lat": 54.6494312, - "lon": -3.5314742, - "tags": { - "amenity": "post_box", - "ref": "CA14 10" - } -}, -{ - "type": "node", - "id": 3379582131, - "lat": 54.6104377, - "lon": -3.4583857, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379596236, - "lat": 54.6135123, - "lon": -3.4355009, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA14 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379603833, - "lat": 54.6024161, - "lon": -3.4304107, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379612015, - "lat": 54.5929253, - "lon": -3.4998837, - "tags": { - "amenity": "post_box", - "ref": "CA14 38" - } -}, -{ - "type": "node", - "id": 3379618992, - "lat": 54.5837279, - "lon": -3.5167741, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 125" - } -}, -{ - "type": "node", - "id": 3379645720, - "lat": 54.5705942, - "lon": -3.4508630, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379651850, - "lat": 54.5709024, - "lon": -3.4186992, - "tags": { - "amenity": "post_box", - "ref": "CA14 37" - } -}, -{ - "type": "node", - "id": 3379658859, - "lat": 54.4358363, - "lon": -0.7250120, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-09", - "operator": "Royal Mail", - "post_box:type": "wall", - "priority": "yes", - "ref": "YO22 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379659970, - "lat": 54.5959472, - "lon": -3.4093779, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379659985, - "lat": 54.6106780, - "lon": -3.4020435, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379676094, - "lat": 55.6189427, - "lon": -3.0636893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "note": "pillar box has bolt holes which look like they are for attaching a royal cypher", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH44 51", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3379679325, - "lat": 54.6245812, - "lon": -3.4042718, - "tags": { - "amenity": "post_box", - "ref": "CA13 74" - } -}, -{ - "type": "node", - "id": 3379684949, - "lat": 54.6402626, - "lon": -3.4041607, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695335, - "lat": 52.6706631, - "lon": 1.2410921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:50; Sa 09:40", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR8 809", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3379695336, - "lat": 52.6726588, - "lon": 1.2340369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:50; Sa 09:40", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 808", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695337, - "lat": 52.6753669, - "lon": 1.2155062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 816D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695338, - "lat": 52.6772536, - "lon": 1.2347151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 811D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695340, - "lat": 52.6809776, - "lon": 1.2015814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 810", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695341, - "lat": 52.6814040, - "lon": 1.2208149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 812D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695343, - "lat": 52.6835032, - "lon": 1.2090328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 814D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695344, - "lat": 52.6868313, - "lon": 1.1899702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 822D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695345, - "lat": 52.6870262, - "lon": 1.2062636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR8 821D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379695347, - "lat": 52.6886630, - "lon": 1.2150431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 819", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379703854, - "lat": 54.6178588, - "lon": -3.3015863, - "tags": { - "amenity": "post_box", - "ref": "CA13 140" - } -}, -{ - "type": "node", - "id": 3379732196, - "lat": 54.5777827, - "lon": -3.3272976, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CA13 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3379756034, - "lat": 54.7052020, - "lon": -3.3859917, - "tags": { - "amenity": "post_box", - "ref": "CA13 121" - } -}, -{ - "type": "node", - "id": 3379784314, - "lat": 51.3597282, - "lon": -0.2708074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 171", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3379959128, - "lat": 52.9675648, - "lon": -1.0916431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/qOmcdLT006Cb1X_Uhllgqg", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 451D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3379959204, - "lat": 52.9689309, - "lon": -1.0968301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3379959205, - "lat": 52.9689836, - "lon": -1.0820337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/9k189vn35hTtUWmRdAgo8A", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 443D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3379959231, - "lat": 52.9702608, - "lon": -1.1029380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "image": "https://www.mapillary.com/map/im/ZTgtU2Lj44Q-EBUSTFvfGA", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3380444255, - "lat": 53.1514028, - "lon": -0.2023842, - "tags": { - "amenity": "post_box", - "fixme": "Needs Reference", - "postal_code": "LN10" - } -}, -{ - "type": "node", - "id": 3380445887, - "lat": 53.1519097, - "lon": -0.2152962, - "tags": { - "amenity": "post_box", - "postal_code": "LN10" - } -}, -{ - "type": "node", - "id": 3380449265, - "lat": 53.1518726, - "lon": -0.2224780, - "tags": { - "amenity": "post_box", - "postal_code": "LN10" - } -}, -{ - "type": "node", - "id": 3380453057, - "lat": 53.1481188, - "lon": -0.2273707, - "tags": { - "amenity": "post_box", - "fixme": "Needs Reference", - "postal_code": "LN10" - } -}, -{ - "type": "node", - "id": 3380454117, - "lat": 53.1438941, - "lon": -0.2366794, - "tags": { - "amenity": "post_box", - "fixme": "Needs Reference", - "postal_code": "LN10" - } -}, -{ - "type": "node", - "id": 3380455500, - "lat": 53.1421483, - "lon": -0.2435493, - "tags": { - "amenity": "post_box", - "fixme": "Needs Reference", - "postal_code": "LN10" - } -}, -{ - "type": "node", - "id": 3380529027, - "lat": 51.7733970, - "lon": -2.3664143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3380529489, - "lat": 51.7917651, - "lon": -2.3705764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL2 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3380816536, - "lat": 52.0583829, - "lon": 1.1543798, - "tags": { - "amenity": "post_box", - "note": "Non-standard aperture in wall, with no collection plate", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3380816538, - "lat": 52.0584011, - "lon": 1.1543879, - "tags": { - "amenity": "post_box", - "note": "Non-standard aperture in wall, with no collection plate", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3380818614, - "lat": 54.8501397, - "lon": -2.9290592, - "tags": { - "amenity": "post_box", - "ref": "CA2 163" - } -}, -{ - "type": "node", - "id": 3380818619, - "lat": 54.8648325, - "lon": -2.9301172, - "tags": { - "amenity": "post_box", - "ref": "CA2 5" - } -}, -{ - "type": "node", - "id": 3380818658, - "lat": 54.8704382, - "lon": -2.9520052, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA2 39" - } -}, -{ - "type": "node", - "id": 3380828815, - "lat": 54.8714149, - "lon": -2.9634617, - "tags": { - "amenity": "post_box", - "ref": "CA2 418" - } -}, -{ - "type": "node", - "id": 3380828822, - "lat": 54.8769173, - "lon": -2.9744708, - "tags": { - "amenity": "post_box", - "ref": "CA2 277" - } -}, -{ - "type": "node", - "id": 3380828829, - "lat": 54.8768214, - "lon": -2.9646375, - "tags": { - "amenity": "post_box", - "ref": "CA2 487" - } -}, -{ - "type": "node", - "id": 3380857671, - "lat": 54.8790350, - "lon": -2.9633341, - "tags": { - "amenity": "post_box", - "ref": "CA2 409" - } -}, -{ - "type": "node", - "id": 3380857683, - "lat": 54.8803914, - "lon": -2.9591061, - "tags": { - "amenity": "post_box", - "ref": "CA2 450" - } -}, -{ - "type": "node", - "id": 3380858696, - "lat": 54.8831184, - "lon": -2.9587557, - "tags": { - "amenity": "post_box", - "ref": "CA2 410" - } -}, -{ - "type": "node", - "id": 3380880332, - "lat": 54.8832425, - "lon": -2.9509038, - "tags": { - "amenity": "post_box", - "ref": "CA2 237" - } -}, -{ - "type": "node", - "id": 3380880334, - "lat": 54.8852213, - "lon": -2.9472400, - "tags": { - "amenity": "post_box", - "ref": "CA2 20" - } -}, -{ - "type": "node", - "id": 3380881782, - "lat": 54.8888008, - "lon": -2.9474516, - "tags": { - "amenity": "post_box", - "ref": "CA2 11" - } -}, -{ - "type": "node", - "id": 3380884994, - "lat": 54.8908259, - "lon": -2.9541580, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 1" - } -}, -{ - "type": "node", - "id": 3380893404, - "lat": 54.8954287, - "lon": -2.9696734, - "tags": { - "amenity": "post_box", - "ref": "CA2 96" - } -}, -{ - "type": "node", - "id": 3380954965, - "lat": 54.6539936, - "lon": -3.2744920, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3380965965, - "lat": 54.6696566, - "lon": -3.2461976, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA13 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3380986849, - "lat": 54.6023339, - "lon": -3.1890043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-02-05", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA12 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3380986850, - "lat": 54.6061096, - "lon": -3.1895066, - "tags": { - "amenity": "post_box", - "ref": "CA12 297" - } -}, -{ - "type": "node", - "id": 3381025929, - "lat": 52.2980924, - "lon": 0.8321935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "fixme": "In wall of former post office -- check if now moved.", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP31 2141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381072945, - "lat": 52.3016790, - "lon": 0.8359050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP31 2281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381072953, - "lat": 52.3023004, - "lon": 0.8300416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381072954, - "lat": 52.2986790, - "lon": 0.8361062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381090820, - "lat": 52.2935428, - "lon": 0.8297893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381134387, - "lat": 54.5564750, - "lon": -3.4706626, - "tags": { - "amenity": "post_box", - "ref": "CA26 85" - } -}, -{ - "type": "node", - "id": 3381144166, - "lat": 54.5292404, - "lon": -3.4383192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA23 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381193603, - "lat": 54.5406361, - "lon": -3.4884296, - "tags": { - "amenity": "post_box", - "ref": "CA26 96" - } -}, -{ - "type": "node", - "id": 3381232820, - "lat": 54.4635281, - "lon": -3.4922471, - "tags": { - "amenity": "post_box", - "ref": "CA22 58" - } -}, -{ - "type": "node", - "id": 3381239958, - "lat": 54.4641369, - "lon": -3.5297484, - "tags": { - "amenity": "post_box", - "ref": "CA22 65" - } -}, -{ - "type": "node", - "id": 3381268740, - "lat": 54.4775300, - "lon": -3.5260302, - "tags": { - "amenity": "post_box", - "ref": "CA22 126" - } -}, -{ - "type": "node", - "id": 3381268741, - "lat": 54.4748487, - "lon": -3.5376742, - "tags": { - "amenity": "post_box", - "ref": "CA22 131" - } -}, -{ - "type": "node", - "id": 3381268770, - "lat": 54.4812151, - "lon": -3.5338342, - "tags": { - "amenity": "post_box", - "ref": "CA22 73" - } -}, -{ - "type": "node", - "id": 3381307288, - "lat": 54.4827847, - "lon": -3.5385583, - "tags": { - "amenity": "post_box", - "ref": "CA22 139" - } -}, -{ - "type": "node", - "id": 3381307289, - "lat": 54.4818805, - "lon": -3.5451238, - "tags": { - "amenity": "post_box", - "ref": "CA22 147" - } -}, -{ - "type": "node", - "id": 3381353188, - "lat": 54.4819664, - "lon": -3.5287294, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CA22 80;CA22 1080", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3381353190, - "lat": 54.4861983, - "lon": -3.5354477, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA22 103", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3381353191, - "lat": 54.4889537, - "lon": -3.5260351, - "tags": { - "amenity": "post_box", - "ref": "CA22 72" - } -}, -{ - "type": "node", - "id": 3381366370, - "lat": 54.4404036, - "lon": -3.5405013, - "tags": { - "amenity": "post_box", - "ref": "CA21 94" - } -}, -{ - "type": "node", - "id": 3381808965, - "lat": 56.5440289, - "lon": -3.2706866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH13 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3381808966, - "lat": 56.5462223, - "lon": -3.2752456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH13 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3381826026, - "lat": 52.6873030, - "lon": 1.2125513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:50; Sa 12:35", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3381849652, - "lat": 52.0663182, - "lon": -1.3214062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OX16 1128D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3382104345, - "lat": 51.7919874, - "lon": -2.3621503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL2 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3382119784, - "lat": 51.9875133, - "lon": 1.3897310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP11 1204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3382446328, - "lat": 53.4173686, - "lon": -2.6230629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 344", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3383073144, - "lat": 50.7298711, - "lon": -1.9479245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 48D", - "ref:GB:uprn": "10015416229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3384065586, - "lat": 54.3980411, - "lon": -3.4861964, - "tags": { - "amenity": "post_box", - "ref": "CA20 37" - } -}, -{ - "type": "node", - "id": 3384070068, - "lat": 54.4004085, - "lon": -3.4707744, - "tags": { - "amenity": "post_box", - "ref": "CA20 24" - } -}, -{ - "type": "node", - "id": 3384070069, - "lat": 54.4028836, - "lon": -3.4732242, - "tags": { - "amenity": "post_box", - "ref": "CA20 91" - } -}, -{ - "type": "node", - "id": 3384125373, - "lat": 54.3833874, - "lon": -3.4205401, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA19 34", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3384137814, - "lat": 54.3770352, - "lon": -3.4436879, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-21", - "collection_times": "Mo-Fr 17:00, Sa 08:45", - "ref": "CA19 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3384262554, - "lat": 54.2965420, - "lon": -3.4001880, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA19 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3384296786, - "lat": 54.4673441, - "lon": -3.2561698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00; Su off", - "post_box:type": "wall", - "ref": "CA20 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3385976716, - "lat": 54.6312077, - "lon": -2.8391579, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 88" - } -}, -{ - "type": "node", - "id": 3385976721, - "lat": 54.6288820, - "lon": -2.8430511, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 224" - } -}, -{ - "type": "node", - "id": 3386012036, - "lat": 54.6474278, - "lon": -2.7961999, - "tags": { - "amenity": "post_box", - "ref": "CA11 239" - } -}, -{ - "type": "node", - "id": 3386012048, - "lat": 54.6444128, - "lon": -2.7995518, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3386036003, - "lat": 54.6474902, - "lon": -2.7807030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3386036005, - "lat": 54.6506365, - "lon": -2.7683038, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 166" - } -}, -{ - "type": "node", - "id": 3386053327, - "lat": 54.6486489, - "lon": -2.7516855, - "tags": { - "amenity": "post_box", - "ref": "CA10 326" - } -}, -{ - "type": "node", - "id": 3386056898, - "lat": 54.6323002, - "lon": -2.7750204, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3386208795, - "lat": 51.3810243, - "lon": -0.4140505, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3386208796, - "lat": 51.3838716, - "lon": -0.4168365, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KT12 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3386208801, - "lat": 51.3860058, - "lon": -0.4194178, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT12 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3386208807, - "lat": 51.3866270, - "lon": -0.4195295, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT12 114;KT12 1141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3386208808, - "lat": 51.3872049, - "lon": -0.4233761, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 120D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3386208810, - "lat": 51.3890890, - "lon": -0.4191051, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 230D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3386717864, - "lat": 53.0036760, - "lon": -2.1999041, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3386723754, - "lat": 50.6490285, - "lon": -3.4263448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX8 44D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 3387884747, - "lat": 51.3752801, - "lon": -0.4580740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "KT13 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3387918055, - "lat": 55.9037492, - "lon": -3.5578323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 88D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3387918056, - "lat": 55.9060744, - "lon": -3.5743643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 1D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3387956283, - "lat": 52.9979419, - "lon": -1.2152044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG6 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3387998123, - "lat": 55.9064177, - "lon": -3.5648726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 5D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3388207079, - "lat": 53.4865321, - "lon": -2.2857241, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3388298667, - "lat": 55.9074015, - "lon": -3.5225786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3388315527, - "lat": 55.9026748, - "lon": -3.5182692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 11D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3388401390, - "lat": 52.9765725, - "lon": -1.2263677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG8 249", - "ref:GB:uprn": "10015371638", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3389431085, - "lat": 50.7699341, - "lon": -0.7776108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-08", - "old_ref": "PO20 99", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO20 99D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3389490029, - "lat": 55.9148791, - "lon": -3.5282281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "EH54 302", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3389600077, - "lat": 55.9044195, - "lon": -4.2254873, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3389690797, - "lat": 50.2149640, - "lon": -3.7100140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3389690798, - "lat": 50.2244623, - "lon": -3.7821857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3389690799, - "lat": 50.2330539, - "lon": -3.7720977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 30D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-03-02" - } -}, -{ - "type": "node", - "id": 3389690800, - "lat": 50.2348292, - "lon": -3.7635522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TQ8 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3389690801, - "lat": 50.2377486, - "lon": -3.7672698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ8 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-03-02" - } -}, -{ - "type": "node", - "id": 3389690802, - "lat": 50.2384423, - "lon": -3.7680144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ8 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-03-02" - } -}, -{ - "type": "node", - "id": 3389690803, - "lat": 50.2395443, - "lon": -3.7713484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ8 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3389856014, - "lat": 52.9684647, - "lon": -1.1650351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG7 198", - "ref:GB:uprn": "10015404900", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3389944859, - "lat": 55.0205517, - "lon": -1.6476416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "NE3 242D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3390015297, - "lat": 52.4066449, - "lon": 1.3021904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2022-08-31", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 8209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3390015305, - "lat": 52.3975044, - "lon": 1.3365285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7039", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3390015330, - "lat": 52.4143267, - "lon": 1.3462063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7074D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3390015359, - "lat": 52.3993690, - "lon": 1.3038265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2016-08-23", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7046D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3390376103, - "lat": 52.9703862, - "lon": -1.1503801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 134D", - "ref:GB:uprn": "10015305365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3390376173, - "lat": 52.9760825, - "lon": -1.1450705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG3 187D", - "ref:GB:uprn": "10015385438", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3390376191, - "lat": 52.9776625, - "lon": -1.1427360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NG3 201D", - "ref:GB:uprn": "10015427076", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3390376205, - "lat": 52.9787574, - "lon": -1.1425455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG3 148D", - "ref:GB:uprn": "10015312166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3390897695, - "lat": 50.9866631, - "lon": -0.6087415, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU28 999", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3390949098, - "lat": 54.6344041, - "lon": -2.7756660, - "tags": { - "amenity": "post_box", - "ref": "CA10 288" - } -}, -{ - "type": "node", - "id": 3390999521, - "lat": 54.6104975, - "lon": -2.7337919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CA10 143", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 3391006401, - "lat": 54.6053885, - "lon": -2.7204054, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 16" - } -}, -{ - "type": "node", - "id": 3391018540, - "lat": 54.6030391, - "lon": -2.7120518, - "tags": { - "amenity": "post_box", - "ref": "CA10 82" - } -}, -{ - "type": "node", - "id": 3391039931, - "lat": 54.5917189, - "lon": -2.7590835, - "tags": { - "amenity": "post_box", - "ref": "CA10 227" - } -}, -{ - "type": "node", - "id": 3391057577, - "lat": 54.5866247, - "lon": -2.7420234, - "tags": { - "amenity": "post_box", - "ref": "CA10 245" - } -}, -{ - "type": "node", - "id": 3391059735, - "lat": 54.5698198, - "lon": -2.7490102, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3391079801, - "lat": 54.5562722, - "lon": -2.7518606, - "tags": { - "amenity": "post_box", - "ref": "CA10 90" - } -}, -{ - "type": "node", - "id": 3391100942, - "lat": 54.5494629, - "lon": -2.7485853, - "tags": { - "amenity": "post_box", - "ref": "CA10 35" - } -}, -{ - "type": "node", - "id": 3391113893, - "lat": 54.5179361, - "lon": -2.7991094, - "tags": { - "amenity": "post_box", - "ref": "CA10 10" - } -}, -{ - "type": "node", - "id": 3391564010, - "lat": 50.7774216, - "lon": -0.8036089, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-08", - "note": "This postbox has a brand new \"EIIR\" plate although this postbox may still be the original one.", - "old_ref": "PO20 23", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO20 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3391700649, - "lat": 52.3987374, - "lon": 1.2958610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7012D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3391700666, - "lat": 52.3958724, - "lon": 1.2930260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3391700673, - "lat": 52.4022415, - "lon": 1.2995029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Collection plate obscured; ref not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP20 7131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3391703477, - "lat": 52.3691636, - "lon": 1.1256508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP22 7005", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3392200469, - "lat": 54.6122650, - "lon": -2.8213422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "ref": "CA10 217", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3392406168, - "lat": 54.6007024, - "lon": -2.8199063, - "tags": { - "amenity": "post_box", - "ref": "CA10 51" - } -}, -{ - "type": "node", - "id": 3392578138, - "lat": 54.5448498, - "lon": -2.9578927, - "tags": { - "amenity": "post_box", - "ref": "CA11 271", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3392798853, - "lat": 50.5352218, - "lon": -3.6274031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ12 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3394213849, - "lat": 55.8820036, - "lon": -3.5500183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 92", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3394474128, - "lat": 55.8922315, - "lon": -3.5240344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH54 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3394625908, - "lat": 51.6287687, - "lon": 0.0285570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "IG9 80" - } -}, -{ - "type": "node", - "id": 3394981686, - "lat": 54.6219891, - "lon": -2.8744762, - "tags": { - "amenity": "post_box", - "ref": "CA11 307" - } -}, -{ - "type": "node", - "id": 3394996523, - "lat": 54.6322231, - "lon": -2.8785731, - "tags": { - "amenity": "post_box", - "ref": "CA11 240" - } -}, -{ - "type": "node", - "id": 3395088960, - "lat": 54.5677471, - "lon": -3.0559722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CA12 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3395097897, - "lat": 54.5557420, - "lon": -3.0560212, - "tags": { - "amenity": "post_box", - "ref": "CA12 283" - } -}, -{ - "type": "node", - "id": 3395102875, - "lat": 54.5503861, - "lon": -3.0575656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "922486275585820", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "CA12 196", - "survey:date": "2023-05-22" - } -}, -{ - "type": "node", - "id": 3395114658, - "lat": 54.7097229, - "lon": -3.0013689, - "tags": { - "amenity": "post_box", - "ref": "CA7 287" - } -}, -{ - "type": "node", - "id": 3395131168, - "lat": 54.7271776, - "lon": -3.0826762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CA7 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3395131169, - "lat": 54.7238521, - "lon": -3.1956708, - "tags": { - "amenity": "post_box", - "ref": "CA7 224" - } -}, -{ - "type": "node", - "id": 3395131170, - "lat": 54.7518535, - "lon": -3.1701714, - "tags": { - "amenity": "post_box", - "ref": "CA7 384" - } -}, -{ - "type": "node", - "id": 3395140093, - "lat": 54.7782130, - "lon": -3.0864379, - "tags": { - "amenity": "post_box", - "ref": "CA7 177" - } -}, -{ - "type": "node", - "id": 3395150122, - "lat": 54.7904896, - "lon": -3.1336119, - "tags": { - "amenity": "post_box", - "ref": "CA7 239" - } -}, -{ - "type": "node", - "id": 3395150139, - "lat": 54.7877425, - "lon": -3.1690561, - "tags": { - "amenity": "post_box", - "ref": "CA7 220" - } -}, -{ - "type": "node", - "id": 3395171398, - "lat": 54.7867085, - "lon": -3.1907655, - "tags": { - "amenity": "post_box", - "ref": "CA7 355" - } -}, -{ - "type": "node", - "id": 3395186008, - "lat": 54.7822572, - "lon": -3.2006000, - "tags": { - "amenity": "post_box", - "ref": "CA7 106" - } -}, -{ - "type": "node", - "id": 3395186079, - "lat": 54.7993259, - "lon": -3.2126894, - "tags": { - "amenity": "post_box", - "ref": "CA7 214" - } -}, -{ - "type": "node", - "id": 3395200282, - "lat": 54.7675900, - "lon": -3.2312002, - "tags": { - "amenity": "post_box", - "ref": "CA7 447" - } -}, -{ - "type": "node", - "id": 3395216313, - "lat": 54.7753827, - "lon": -3.2332535, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 229" - } -}, -{ - "type": "node", - "id": 3395246006, - "lat": 54.7929816, - "lon": -3.2380076, - "tags": { - "amenity": "post_box", - "ref": "CA7 407" - } -}, -{ - "type": "node", - "id": 3395246016, - "lat": 54.7990460, - "lon": -3.2635379, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 221", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3395255272, - "lat": 54.7844757, - "lon": -3.3466020, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3395271962, - "lat": 54.7621026, - "lon": -3.3085879, - "tags": { - "amenity": "post_box", - "ref": "CA7 263" - } -}, -{ - "type": "node", - "id": 3395285689, - "lat": 54.7672880, - "lon": -3.3251738, - "tags": { - "amenity": "post_box", - "ref": "CA7 383" - } -}, -{ - "type": "node", - "id": 3395286149, - "lat": 54.7463949, - "lon": -3.3968781, - "tags": { - "amenity": "post_box", - "ref": "CA7 360" - } -}, -{ - "type": "node", - "id": 3395286178, - "lat": 54.7430512, - "lon": -3.4165358, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA7 295" - } -}, -{ - "type": "node", - "id": 3395303099, - "lat": 54.7620946, - "lon": -3.3384314, - "tags": { - "amenity": "post_box", - "ref": "CA7 211" - } -}, -{ - "type": "node", - "id": 3395303130, - "lat": 54.7587419, - "lon": -3.3330465, - "tags": { - "amenity": "post_box", - "ref": "CA7 243" - } -}, -{ - "type": "node", - "id": 3395303147, - "lat": 54.7506493, - "lon": -3.3725239, - "tags": { - "amenity": "post_box", - "ref": "CA7 298" - } -}, -{ - "type": "node", - "id": 3395312985, - "lat": 54.7608406, - "lon": -3.3863556, - "tags": { - "amenity": "post_box", - "ref": "CA7 297" - } -}, -{ - "type": "node", - "id": 3395322131, - "lat": 54.8271454, - "lon": -3.3105708, - "tags": { - "amenity": "post_box", - "ref": "CA7 86" - } -}, -{ - "type": "node", - "id": 3395322133, - "lat": 54.8243486, - "lon": -3.3311868, - "tags": { - "amenity": "post_box", - "ref": "CA7 8" - } -}, -{ - "type": "node", - "id": 3395341884, - "lat": 54.8607828, - "lon": -3.2593498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1752956688445947", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CA7 115", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3395342734, - "lat": 54.8677986, - "lon": -3.3143397, - "tags": { - "amenity": "post_box", - "ref": "CA7 135" - } -}, -{ - "type": "node", - "id": 3395342744, - "lat": 54.8707508, - "lon": -3.3446135, - "tags": { - "amenity": "post_box", - "ref": "CA7 315" - } -}, -{ - "type": "node", - "id": 3395360495, - "lat": 54.8222958, - "lon": -3.4043503, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA7 369", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3395384666, - "lat": 54.7967413, - "lon": -3.3999465, - "tags": { - "amenity": "post_box", - "ref": "CA15 108" - } -}, -{ - "type": "node", - "id": 3395384831, - "lat": 54.8068596, - "lon": -3.4234682, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA15 118" - } -}, -{ - "type": "node", - "id": 3395399039, - "lat": 54.7963473, - "lon": -3.4297649, - "tags": { - "amenity": "post_box", - "ref": "CA15 103" - } -}, -{ - "type": "node", - "id": 3395399040, - "lat": 54.7764130, - "lon": -3.4292850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA15 107" - } -}, -{ - "type": "node", - "id": 3395424596, - "lat": 54.7724323, - "lon": -3.4301305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "752390030175670", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA15 63", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3395453918, - "lat": 54.7383443, - "lon": -3.4118809, - "tags": { - "amenity": "post_box", - "ref": "CA15 110" - } -}, -{ - "type": "node", - "id": 3395453928, - "lat": 54.7239439, - "lon": -3.4619251, - "tags": { - "amenity": "post_box", - "ref": "CA15 55" - } -}, -{ - "type": "node", - "id": 3395615728, - "lat": 52.0900547, - "lon": -3.1705857, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3395670109, - "lat": 50.7043674, - "lon": -3.4759360, - "tags": { - "amenity": "post_box", - "ref": "EX2 614" - } -}, -{ - "type": "node", - "id": 3395711917, - "lat": 50.9209678, - "lon": -0.1146956, - "tags": { - "addr:city": "Ditchling", - "addr:housename": "Ditchling Post Office", - "addr:postcode": "BN6 8TT", - "addr:street": "Lewes Road", - "amenity": "post_box", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 387", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3395777489, - "lat": 51.3426837, - "lon": -0.4809178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3395777490, - "lat": 51.3450959, - "lon": -0.4878145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT14 40D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3395777593, - "lat": 51.3453325, - "lon": -0.4797204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3395959348, - "lat": 54.1627182, - "lon": -2.1447731, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3395959349, - "lat": 54.1313659, - "lon": -2.0706311, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3395959350, - "lat": 54.1687519, - "lon": -2.0735572, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3396033831, - "lat": 50.4458398, - "lon": -4.4790444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "gps_survey; photographic_survey" - } -}, -{ - "type": "node", - "id": 3396168855, - "lat": 50.4406700, - "lon": -4.4758314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "gps_survey;photographic_survey" - } -}, -{ - "type": "node", - "id": 3396426356, - "lat": 54.2069170, - "lon": -2.1479517, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BD23 131", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3396513356, - "lat": 54.6984400, - "lon": -3.4577190, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA15 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3396527934, - "lat": 54.7043890, - "lon": -3.4516296, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA15 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3396527935, - "lat": 54.7080537, - "lon": -3.4463547, - "tags": { - "amenity": "post_box", - "ref": "CA15 47" - } -}, -{ - "type": "node", - "id": 3396527936, - "lat": 54.7119051, - "lon": -3.4437001, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA15 117" - } -}, -{ - "type": "node", - "id": 3396607213, - "lat": 54.6647641, - "lon": -3.5507176, - "tags": { - "amenity": "post_box", - "ref": "CA14 28" - } -}, -{ - "type": "node", - "id": 3396635813, - "lat": 54.6567351, - "lon": -3.5529992, - "tags": { - "amenity": "post_box", - "ref": "CA14 159" - } -}, -{ - "type": "node", - "id": 3396635845, - "lat": 54.6507834, - "lon": -3.5509981, - "tags": { - "amenity": "post_box", - "ref": "CA14 11" - } -}, -{ - "type": "node", - "id": 3396638537, - "lat": 54.6447103, - "lon": -3.5558039, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA14 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3396663606, - "lat": 54.6450685, - "lon": -3.5514098, - "tags": { - "amenity": "post_box", - "ref": "CA14 4" - } -}, -{ - "type": "node", - "id": 3396675092, - "lat": 54.6390826, - "lon": -3.5509639, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA14 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3396678644, - "lat": 54.6437027, - "lon": -3.5508860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2243017816059212", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA14 186", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3396678648, - "lat": 54.6442618, - "lon": -3.5459507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CA14 165;CA14 1165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3396678649, - "lat": 54.6437086, - "lon": -3.5434214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA14 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3396678654, - "lat": 54.6423436, - "lon": -3.5546530, - "tags": { - "amenity": "post_box", - "ref": "CA14 18" - } -}, -{ - "type": "node", - "id": 3396711528, - "lat": 54.6396986, - "lon": -3.5459303, - "tags": { - "amenity": "post_box", - "ref": "CA14 17" - } -}, -{ - "type": "node", - "id": 3396711529, - "lat": 54.6402409, - "lon": -3.5401776, - "tags": { - "amenity": "post_box", - "ref": "CA14 2" - } -}, -{ - "type": "node", - "id": 3396724176, - "lat": 54.6297312, - "lon": -3.5427973, - "tags": { - "amenity": "post_box", - "ref": "CA14 16" - } -}, -{ - "type": "node", - "id": 3396724178, - "lat": 54.6295395, - "lon": -3.5519613, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA14 178" - } -}, -{ - "type": "node", - "id": 3397316442, - "lat": 53.1533382, - "lon": -4.1599568, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3397337843, - "lat": 53.1502161, - "lon": -4.1487372, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3397966331, - "lat": 52.4719298, - "lon": -1.7592366, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 827D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3398046699, - "lat": 51.4897568, - "lon": -0.1460300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 19;SW1V 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3398377864, - "lat": 55.8973613, - "lon": -3.4957952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3398392466, - "lat": 55.8824357, - "lon": -3.4986301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 25D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3398405992, - "lat": 55.9077984, - "lon": -3.5045057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 14:00-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH54 94", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3398417237, - "lat": 55.9164441, - "lon": -3.5030364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 21D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3398418020, - "lat": 55.9153803, - "lon": -3.5111178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH54 95P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3398534476, - "lat": 52.2806089, - "lon": -1.7081156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398534477, - "lat": 52.2835654, - "lon": -1.7142823, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-18", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "note": "there is supposed to be a PO nearby but only an empty shop here today", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV35 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398578853, - "lat": 52.3028095, - "lon": -1.6887676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV35 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398578854, - "lat": 52.3059397, - "lon": -1.6722208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 122", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398578855, - "lat": 52.3103224, - "lon": -1.7280382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "I expected to find box B95 16 here but it is definitely 270 (and across the road from \"The Old Post Office\")", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398578856, - "lat": 52.3213946, - "lon": -1.7028961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398586774, - "lat": 52.9732865, - "lon": -1.2045820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG8 278D", - "ref:GB:uprn": "10015381803", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398587025, - "lat": 52.9790569, - "lon": -1.2020194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG8 279D", - "ref:GB:uprn": "10015385161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398589837, - "lat": 52.2991291, - "lon": -1.6352938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV35 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398847408, - "lat": 51.6482001, - "lon": -0.7103031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "HP15 206" - } -}, -{ - "type": "node", - "id": 3398863115, - "lat": 53.3834606, - "lon": -0.9025938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "fixme": "collection times are from 2015", - "post_box:type": "lamp", - "ref": "DN22 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3398961800, - "lat": 51.0561743, - "lon": -3.0323034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3398961801, - "lat": 51.0609139, - "lon": -3.0171163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3399098065, - "lat": 50.3509954, - "lon": -4.7038834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "PL24 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3399100022, - "lat": 50.3506599, - "lon": -4.7129250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3264968303828654", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 3399103798, - "lat": 50.3491744, - "lon": -4.7157521, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3399512724, - "lat": 51.0443511, - "lon": -3.0647907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3399627403, - "lat": 50.5416544, - "lon": -3.6947288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3399729374, - "lat": 53.4182218, - "lon": -1.0016655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN10 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3399821691, - "lat": 56.2037551, - "lon": -4.7436576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "G83 87" - } -}, -{ - "type": "node", - "id": 3399830022, - "lat": 56.2099229, - "lon": -4.7471314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "G83 86", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3399940574, - "lat": 53.4162689, - "lon": -0.9696747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN10 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3399988553, - "lat": 53.4100705, - "lon": -0.8926701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN10 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3400116936, - "lat": 52.4567131, - "lon": 1.7072304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400116937, - "lat": 52.4588795, - "lon": 1.7099893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400116938, - "lat": 52.4590211, - "lon": 1.6944796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3338", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3400158120, - "lat": 52.4675622, - "lon": 1.7114596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400169468, - "lat": 55.9627152, - "lon": -4.6532595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G82 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3400236226, - "lat": 51.3842788, - "lon": -0.4281421, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT13 99", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3400308928, - "lat": 52.4632735, - "lon": 1.7251839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3346D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400313905, - "lat": 50.6831839, - "lon": -2.1167042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BH20 214D", - "ref:GB:uprn": "10015470842", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400330752, - "lat": 50.6849200, - "lon": -2.1140120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH20 114D", - "ref:GB:uprn": "10015404710", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3400332545, - "lat": 53.1185844, - "lon": -4.1241982, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL55 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400384840, - "lat": 53.3689695, - "lon": -3.1834828, - "tags": { - "amenity": "post_box", - "description": "Type K post box, QEII cypher outside No. 130 Banks Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH48 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at 130 Banks Road context.jpg" - } -}, -{ - "type": "node", - "id": 3400715370, - "lat": 52.4668345, - "lon": 1.7398419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3400792120, - "lat": 52.9987606, - "lon": -1.1835151, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-01", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 351", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3400795415, - "lat": 53.1117712, - "lon": -2.4414055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "ref": "CW1 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3400889163, - "lat": 51.4726059, - "lon": -2.5617015, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS5 172D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3400985480, - "lat": 52.9990474, - "lon": -1.1677438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 117", - "ref:GB:uprn": "10015837384", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3400985494, - "lat": 53.0000228, - "lon": -1.1529364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 462D", - "ref:GB:uprn": "10015342030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3401014383, - "lat": 51.4627952, - "lon": -2.5740690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS5 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3401014428, - "lat": 51.4664007, - "lon": -2.5688988, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3401014507, - "lat": 51.4697902, - "lon": -2.5648264, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3401488990, - "lat": 54.5512071, - "lon": -3.5870900, - "tags": { - "amenity": "post_box", - "ref": "CA28 2" - } -}, -{ - "type": "node", - "id": 3401488992, - "lat": 54.5514309, - "lon": -3.5835743, - "tags": { - "amenity": "post_box", - "ref": "CA28 60" - } -}, -{ - "type": "node", - "id": 3401516362, - "lat": 54.5577641, - "lon": -3.5741725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 140" - } -}, -{ - "type": "node", - "id": 3401516364, - "lat": 54.5593499, - "lon": -3.5697847, - "tags": { - "amenity": "post_box", - "ref": "CA28 67" - } -}, -{ - "type": "node", - "id": 3401516365, - "lat": 54.5599071, - "lon": -3.5774279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 19" - } -}, -{ - "type": "node", - "id": 3401516367, - "lat": 54.5426563, - "lon": -3.5838343, - "tags": { - "amenity": "post_box", - "ref": "CA28 8" - } -}, -{ - "type": "node", - "id": 3401524813, - "lat": 54.5423065, - "lon": -3.5789472, - "tags": { - "amenity": "post_box", - "ref": "CA28 9" - } -}, -{ - "type": "node", - "id": 3401524847, - "lat": 54.5403809, - "lon": -3.5737886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 10" - } -}, -{ - "type": "node", - "id": 3401551139, - "lat": 54.5386705, - "lon": -3.5788488, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA28 115", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3401551167, - "lat": 54.5364146, - "lon": -3.5763467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA28 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3401551185, - "lat": 54.5299446, - "lon": -3.5748161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 119" - } -}, -{ - "type": "node", - "id": 3401552811, - "lat": 54.5254059, - "lon": -3.5786260, - "tags": { - "amenity": "post_box", - "ref": "CA28 22" - } -}, -{ - "type": "node", - "id": 3401552822, - "lat": 54.5260341, - "lon": -3.5717509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA28 123" - } -}, -{ - "type": "node", - "id": 3401552840, - "lat": 54.5244866, - "lon": -3.5671051, - "tags": { - "amenity": "post_box", - "ref": "CA28 146" - } -}, -{ - "type": "node", - "id": 3401557322, - "lat": 52.4335623, - "lon": -2.5901722, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3401561488, - "lat": 54.5182660, - "lon": -3.6008021, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA28 57", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 3401561489, - "lat": 54.5026106, - "lon": -3.6045642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA28 95", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3401573107, - "lat": 54.5697962, - "lon": -3.5804874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA28 99", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3401596840, - "lat": 54.5693414, - "lon": -3.5768126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA28 141", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3401596872, - "lat": 54.5656997, - "lon": -3.5798549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA28 87", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3401604016, - "lat": 54.5633888, - "lon": -3.5662954, - "tags": { - "amenity": "post_box", - "ref": "CA28 36" - } -}, -{ - "type": "node", - "id": 3401614057, - "lat": 54.5573930, - "lon": -3.5601430, - "tags": { - "amenity": "post_box", - "ref": "CA28 144" - } -}, -{ - "type": "node", - "id": 3401614058, - "lat": 54.5618718, - "lon": -3.5544870, - "tags": { - "amenity": "post_box", - "ref": "CA28 153" - } -}, -{ - "type": "node", - "id": 3401708393, - "lat": 53.3998619, - "lon": -2.3116490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA15 110", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3401978427, - "lat": 52.9526534, - "lon": -0.7262094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3401982148, - "lat": 51.3579785, - "lon": -0.4569140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3401982150, - "lat": 51.3636117, - "lon": -0.4517595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 36D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3402006906, - "lat": 52.9097738, - "lon": -0.6404290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 12:30", - "note": "Two custom wall apertures, right-most one missing information sheet Sun 15th Nov 2015.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "NG31 200" - } -}, -{ - "type": "node", - "id": 3402018791, - "lat": 54.9033864, - "lon": -2.9670212, - "tags": { - "amenity": "post_box", - "ref": "CA3 136" - } -}, -{ - "type": "node", - "id": 3402018792, - "lat": 54.9070619, - "lon": -2.9449425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA3 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402026393, - "lat": 54.9130664, - "lon": -2.9422126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA3 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402026394, - "lat": 54.9124040, - "lon": -2.9469821, - "tags": { - "amenity": "post_box", - "ref": "CA3 371" - } -}, -{ - "type": "node", - "id": 3402026422, - "lat": 54.9133244, - "lon": -2.9529915, - "tags": { - "amenity": "post_box", - "ref": "CA3 479" - } -}, -{ - "type": "node", - "id": 3402026423, - "lat": 54.9154413, - "lon": -2.9484391, - "tags": { - "amenity": "post_box", - "ref": "CA3 467" - } -}, -{ - "type": "node", - "id": 3402026424, - "lat": 54.9178248, - "lon": -2.9538827, - "tags": { - "amenity": "post_box", - "ref": "CA3 448" - } -}, -{ - "type": "node", - "id": 3402026425, - "lat": 54.9193058, - "lon": -2.9458339, - "tags": { - "amenity": "post_box", - "ref": "CA3 468" - } -}, -{ - "type": "node", - "id": 3402026426, - "lat": 54.9206256, - "lon": -2.9515472, - "tags": { - "amenity": "post_box", - "ref": "CA3 439" - } -}, -{ - "type": "node", - "id": 3402026428, - "lat": 54.9238565, - "lon": -2.9448163, - "tags": { - "amenity": "post_box", - "ref": "CA3 259" - } -}, -{ - "type": "node", - "id": 3402026429, - "lat": 54.9226897, - "lon": -2.9506452, - "tags": { - "amenity": "post_box", - "ref": "CA3 477" - } -}, -{ - "type": "node", - "id": 3402026430, - "lat": 54.9265558, - "lon": -2.9509713, - "tags": { - "amenity": "post_box", - "ref": "CA3 475" - } -}, -{ - "type": "node", - "id": 3402026431, - "lat": 54.9265394, - "lon": -2.9509875, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "CA3 476" - } -}, -{ - "type": "node", - "id": 3402026432, - "lat": 54.9226978, - "lon": -2.9505984, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "CA3 130" - } -}, -{ - "type": "node", - "id": 3402026433, - "lat": 54.9286164, - "lon": -2.9546801, - "tags": { - "amenity": "post_box", - "ref": "CA3 480" - } -}, -{ - "type": "node", - "id": 3402033513, - "lat": 54.9049907, - "lon": -2.9142424, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA3 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402040961, - "lat": 54.9086791, - "lon": -2.9336817, - "tags": { - "amenity": "post_box", - "ref": "CA3 421" - } -}, -{ - "type": "node", - "id": 3402040966, - "lat": 54.9124887, - "lon": -2.9356170, - "tags": { - "amenity": "post_box", - "ref": "CA3 437" - } -}, -{ - "type": "node", - "id": 3402040967, - "lat": 54.9138393, - "lon": -2.9391027, - "tags": { - "amenity": "post_box", - "ref": "CA3 478" - } -}, -{ - "type": "node", - "id": 3402040968, - "lat": 54.9163693, - "lon": -2.9373368, - "tags": { - "amenity": "post_box", - "ref": "CA3 112" - } -}, -{ - "type": "node", - "id": 3402040969, - "lat": 54.9202221, - "lon": -2.9410750, - "tags": { - "amenity": "post_box", - "ref": "CA3 481" - } -}, -{ - "type": "node", - "id": 3402311922, - "lat": 54.2985402, - "lon": -1.9342678, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3402406783, - "lat": 54.3127906, - "lon": -1.8266630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "465218602272008", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 3402406788, - "lat": 54.4005561, - "lon": -1.7256901, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL10 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3402741928, - "lat": 51.1094460, - "lon": -0.2024016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Old Horsham Road", - "old_ref": "RH10 166", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3402835669, - "lat": 51.0974381, - "lon": -3.0484662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402854423, - "lat": 51.0881974, - "lon": -3.0139371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402859034, - "lat": 51.0494263, - "lon": -3.0548411, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 290D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3402865982, - "lat": 51.0355843, - "lon": -3.1016490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402865983, - "lat": 51.0358136, - "lon": -3.1088003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402870374, - "lat": 51.0552500, - "lon": -3.1100269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "colour": "red", - "direction": "E", - "name": "Mill Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3402889431, - "lat": 51.9832761, - "lon": -1.9981212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3402890396, - "lat": 53.3128564, - "lon": -3.2675066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "CH8 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3403603113, - "lat": 54.8949899, - "lon": -2.9869425, - "tags": { - "amenity": "post_box", - "ref": "CA2 456" - } -}, -{ - "type": "node", - "id": 3403603114, - "lat": 54.8962435, - "lon": -2.9825640, - "tags": { - "amenity": "post_box", - "ref": "CA2 423" - } -}, -{ - "type": "node", - "id": 3403603115, - "lat": 54.8927815, - "lon": -2.9770039, - "tags": { - "amenity": "post_box", - "ref": "CA2 483" - } -}, -{ - "type": "node", - "id": 3403603118, - "lat": 54.8903052, - "lon": -2.9773441, - "tags": { - "amenity": "post_box", - "ref": "CA2 438" - } -}, -{ - "type": "node", - "id": 3403603150, - "lat": 54.8955210, - "lon": -2.9634206, - "tags": { - "amenity": "post_box", - "ref": "CA2 102" - } -}, -{ - "type": "node", - "id": 3404450085, - "lat": 56.1303376, - "lon": -3.3066052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY5 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404488521, - "lat": 51.1894302, - "lon": -3.1545624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3404494449, - "lat": 51.1918583, - "lon": -3.1226123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3404501225, - "lat": 56.0843942, - "lon": -3.3816248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 177D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3404617321, - "lat": 55.0950683, - "lon": -3.1585968, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404617322, - "lat": 55.0864423, - "lon": -3.1827049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 27", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404617327, - "lat": 55.0576981, - "lon": -3.2022049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 19", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404617329, - "lat": 51.1735228, - "lon": -3.0627550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3404634655, - "lat": 53.3138794, - "lon": -3.2624440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CH8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 3404639036, - "lat": 51.1362093, - "lon": -3.0179194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3404719269, - "lat": 53.9166491, - "lon": -1.9341487, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404719279, - "lat": 53.9108972, - "lon": -1.9328204, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404719280, - "lat": 53.9148422, - "lon": -1.9412102, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3404734709, - "lat": 52.9987380, - "lon": -2.1757645, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3405026234, - "lat": 51.9921529, - "lon": -1.7557231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "200060322219481", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL56 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-22" - } -}, -{ - "type": "node", - "id": 3405026247, - "lat": 51.9806083, - "lon": -1.6472573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL56 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3405091711, - "lat": 51.9901015, - "lon": -1.6262288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL56 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3405339413, - "lat": 52.0246054, - "lon": -1.6494138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL56 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3405339441, - "lat": 52.0212533, - "lon": -1.6539199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "old_ref": "MOR 150 Todenham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL56 56", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3405347290, - "lat": 51.9946881, - "lon": -1.6992282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL56 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3405393368, - "lat": 53.3071715, - "lon": -3.2578970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH8 16" - } -}, -{ - "type": "node", - "id": 3405393697, - "lat": 53.3081470, - "lon": -3.2605824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 61" - } -}, -{ - "type": "node", - "id": 3405612037, - "lat": 51.0171303, - "lon": -0.8204597, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU30 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3406025761, - "lat": 52.4973178, - "lon": -2.1696092, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406275816, - "lat": 53.9432640, - "lon": -1.8938029, - "tags": { - "amenity": "post_box", - "ref": "LS29 854D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406275818, - "lat": 53.9457750, - "lon": -1.8888881, - "tags": { - "amenity": "post_box", - "ref": "LS29 849D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406284053, - "lat": 54.0112232, - "lon": -1.6550865, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG3 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406284054, - "lat": 54.0160971, - "lon": -1.6459993, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 135", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406284055, - "lat": 54.0263111, - "lon": -1.6295694, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406290784, - "lat": 54.0005953, - "lon": -1.5381300, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3406755164, - "lat": 53.3588545, - "lon": -1.4552205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "S2 871", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3406866421, - "lat": 54.4241242, - "lon": -3.3525115, - "tags": { - "amenity": "post_box", - "ref": "CA20 98" - } -}, -{ - "type": "node", - "id": 3406879874, - "lat": 54.5453430, - "lon": -3.4899448, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA26 143" - } -}, -{ - "type": "node", - "id": 3406880631, - "lat": 54.5448486, - "lon": -3.4720175, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA26 64", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3407426576, - "lat": 54.0044513, - "lon": -1.5298452, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407426577, - "lat": 54.0114071, - "lon": -1.5209883, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407426578, - "lat": 54.0118069, - "lon": -1.5383357, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407426580, - "lat": 54.0090108, - "lon": -1.5323640, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407503452, - "lat": 54.0060911, - "lon": -1.5332482, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407503455, - "lat": 54.0001599, - "lon": -1.5080191, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407503468, - "lat": 54.0043183, - "lon": -1.5014968, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407545995, - "lat": 54.0213744, - "lon": -1.4693212, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407580236, - "lat": 54.0286998, - "lon": -1.5039989, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407626024, - "lat": 54.5457169, - "lon": -1.5476729, - "tags": { - "amenity": "post_box", - "ref": "DL3 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407658185, - "lat": 54.9896514, - "lon": -1.5946346, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 87", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407791624, - "lat": 51.9966865, - "lon": -1.5822801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV36 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3407791843, - "lat": 51.9784539, - "lon": -1.5304355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "OX7 261D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3407791900, - "lat": 51.9800649, - "lon": -1.5276944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "OX7 252", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3407807933, - "lat": 51.9877742, - "lon": -1.5795170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CV36 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3408751918, - "lat": 53.0028450, - "lon": -1.0681058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG4 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS;survey (2015-03-28)" - } -}, -{ - "type": "node", - "id": 3408751919, - "lat": 53.0031051, - "lon": -1.0629553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG4 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 3408842923, - "lat": 54.8736798, - "lon": -2.8988847, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA1 413" - } -}, -{ - "type": "node", - "id": 3408842924, - "lat": 54.8751198, - "lon": -2.8968241, - "tags": { - "amenity": "post_box", - "ref": "CA1 472" - } -}, -{ - "type": "node", - "id": 3408865244, - "lat": 54.8725122, - "lon": -2.9045861, - "tags": { - "amenity": "post_box", - "ref": "CA1 395" - } -}, -{ - "type": "node", - "id": 3408865245, - "lat": 54.8763393, - "lon": -2.9051257, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA1 152" - } -}, -{ - "type": "node", - "id": 3408865256, - "lat": 54.8755994, - "lon": -2.9084700, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA1 370", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3408884690, - "lat": 54.8830563, - "lon": -2.8899923, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA1 411" - } -}, -{ - "type": "node", - "id": 3408884692, - "lat": 54.8817135, - "lon": -2.9020990, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA1 388" - } -}, -{ - "type": "node", - "id": 3408885598, - "lat": 54.8824419, - "lon": -2.9071375, - "tags": { - "amenity": "post_box", - "ref": "CA1 260" - } -}, -{ - "type": "node", - "id": 3408885600, - "lat": 54.8862274, - "lon": -2.9209474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA1 32" - } -}, -{ - "type": "node", - "id": 3408906108, - "lat": 54.8888927, - "lon": -2.8957420, - "tags": { - "amenity": "post_box", - "ref": "CA1 461" - } -}, -{ - "type": "node", - "id": 3408906110, - "lat": 54.8929089, - "lon": -2.8934281, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "CA1 156" - } -}, -{ - "type": "node", - "id": 3408906111, - "lat": 54.8928873, - "lon": -2.8933905, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA1 458" - } -}, -{ - "type": "node", - "id": 3408906112, - "lat": 54.8919743, - "lon": -2.9029610, - "tags": { - "amenity": "post_box", - "ref": "CA1 22" - } -}, -{ - "type": "node", - "id": 3409091156, - "lat": 55.8586961, - "lon": -3.5114819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3409091169, - "lat": 55.8684877, - "lon": -3.5299148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "mapillary": "234614855096791", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH54 29", - "royal_cypher": "scottish_crown", - "source:position": "Mapillary 2015-03-20", - "survey:date": "2019-10-12" - } -}, -{ - "type": "node", - "id": 3409363204, - "lat": 51.4204063, - "lon": -0.5080531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 518", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3409363205, - "lat": 51.4247322, - "lon": -0.5069238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 524D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3409363206, - "lat": 51.4301909, - "lon": -0.5099069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 506D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3409363209, - "lat": 51.4334246, - "lon": -0.5125756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW18 508;TW18 5081", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3409363210, - "lat": 51.4334857, - "lon": -0.5142388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 501D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3409363211, - "lat": 51.4335308, - "lon": -0.5125775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "TW18 535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3409363222, - "lat": 51.4350390, - "lon": -0.5112551, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 534", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3409363223, - "lat": 51.4351490, - "lon": -0.5076616, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TW18 545;TW18 5451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3409713881, - "lat": 53.6486570, - "lon": -1.7816111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "HD1 7", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3410708170, - "lat": 55.8965546, - "lon": -3.4905648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 18D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3410708188, - "lat": 55.9013411, - "lon": -3.4948626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 17D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3410708191, - "lat": 55.9082629, - "lon": -3.4935879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3410781395, - "lat": 53.1332210, - "lon": -4.2625631, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3410801499, - "lat": 55.8926795, - "lon": -3.4980834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 19D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3411130825, - "lat": 52.2406691, - "lon": -1.6061968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "this is quite some distance from where Royal Mail say it is", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3411130835, - "lat": 52.2442854, - "lon": -1.6071582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV35 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3411130848, - "lat": 52.2468888, - "lon": -1.6021094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3411509993, - "lat": 52.2440008, - "lon": -1.6312484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3411774579, - "lat": 52.8232507, - "lon": -1.1467507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "LE12 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3411818377, - "lat": 52.7063746, - "lon": -1.2165380, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3412007374, - "lat": 52.9627999, - "lon": -1.1295686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 306D", - "ref:GB:uprn": "10015471671", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3412009108, - "lat": 52.9650150, - "lon": -1.1308138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 68", - "ref:GB:uprn": "10015272706", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3412009145, - "lat": 52.9678277, - "lon": -1.1267721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 14D", - "ref:GB:uprn": "10015349191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3412009201, - "lat": 52.9708709, - "lon": -1.1289965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG3 510D", - "ref:GB:uprn": "10015323728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3412608413, - "lat": 53.0163651, - "lon": -2.2098689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3412904650, - "lat": 51.2195026, - "lon": -0.7792178, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU9 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3412945557, - "lat": 51.7135714, - "lon": -0.0604589, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3413123692, - "lat": 53.7152457, - "lon": -1.6743469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF16 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3413181268, - "lat": 52.9596461, - "lon": -1.0815212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG4 449D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3413181360, - "lat": 52.9654951, - "lon": -1.0752098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "NG4 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3413382694, - "lat": 52.6454153, - "lon": 1.1183446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "post_box:type": "lamp", - "ref": "NR9 952", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3413684692, - "lat": 52.9663487, - "lon": -1.0943802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3413685298, - "lat": 52.9664309, - "lon": -1.1018844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+44 345 774 0740", - "post_box:type": "wall", - "ref": "NG4 429D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3413685321, - "lat": 52.9710153, - "lon": -1.1163694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "image": "https://www.mapillary.com/map/im/l8fW_61fzU1yOVvWkSsuRA", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 167", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3413685323, - "lat": 52.9735321, - "lon": -1.1095291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3413685335, - "lat": 52.9762099, - "lon": -1.1179490, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/HVToJtLT6yXecfkypi6oWg", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3413685356, - "lat": 52.9788095, - "lon": -1.1115654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "http://mapillary.com/map/im/HZwB_mkL9y7h8CFgAuFcSA", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3413685431, - "lat": 52.9809981, - "lon": -1.1190178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/JGKf6FFGS82t2IMxPWoTYw", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG3 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3414131444, - "lat": 53.4707464, - "lon": -2.2375086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "M1 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3414279225, - "lat": 52.5663131, - "lon": 1.1246723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1828D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3414486921, - "lat": 52.0710638, - "lon": -3.3291566, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3414536332, - "lat": 52.0798058, - "lon": -3.3643417, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 3415106605, - "lat": 51.4443381, - "lon": -1.7671006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3415123211, - "lat": 52.9060752, - "lon": -4.3337243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL53 114" - } -}, -{ - "type": "node", - "id": 3415580281, - "lat": 54.5768684, - "lon": -3.5619721, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA28 74" - } -}, -{ - "type": "node", - "id": 3415584835, - "lat": 54.5803681, - "lon": -3.5747142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA28 151" - } -}, -{ - "type": "node", - "id": 3415597401, - "lat": 54.5726973, - "lon": -3.5562892, - "tags": { - "amenity": "post_box", - "ref": "CA28 47" - } -}, -{ - "type": "node", - "id": 3415669616, - "lat": 54.9241182, - "lon": -2.9896207, - "tags": { - "amenity": "post_box", - "ref": "CA6 267" - } -}, -{ - "type": "node", - "id": 3415678609, - "lat": 54.9348027, - "lon": -2.9625618, - "tags": { - "amenity": "post_box", - "ref": "CA6 400" - } -}, -{ - "type": "node", - "id": 3415861596, - "lat": 53.3029309, - "lon": -3.4679134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Privately operated postbox with Sainsburys store, can be used by public.", - "operator": "Sainsbury's", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3415916490, - "lat": 55.0090431, - "lon": -2.9707005, - "tags": { - "amenity": "post_box", - "ref": "CA6 123" - } -}, -{ - "type": "node", - "id": 3415999517, - "lat": 55.0109315, - "lon": -2.9627858, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3415999536, - "lat": 55.0053992, - "lon": -2.9711671, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 488" - } -}, -{ - "type": "node", - "id": 3416079446, - "lat": 54.9404063, - "lon": -2.7460269, - "tags": { - "amenity": "post_box", - "ref": "CA8 79" - } -}, -{ - "type": "node", - "id": 3416157406, - "lat": 53.2742418, - "lon": -3.2230822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH8 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 3416157407, - "lat": 53.2730040, - "lon": -3.2209090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CH8 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 3416157408, - "lat": 53.2746924, - "lon": -3.2215991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45", - "note": "Private post-box within Tesco store. Available for public use.", - "operator": "Tesco Plc", - "post_box:type": "wall", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 3416157409, - "lat": 53.3077337, - "lon": -3.2499097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH8 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 3416157410, - "lat": 53.2990762, - "lon": -3.3079692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2014-03-24" - } -}, -{ - "type": "node", - "id": 3417118697, - "lat": 53.4749719, - "lon": -2.2378616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "M1 333", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3417350204, - "lat": 51.5154230, - "lon": -0.1177772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "colour": "red", - "note": "now a parcel box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WC2A 58P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3417356476, - "lat": 51.5178085, - "lon": -0.1184914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WC1V 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3418008393, - "lat": 57.4482242, - "lon": -6.7079072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV55 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3418331161, - "lat": 52.0857544, - "lon": -1.9597324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "note": "Ref covered with label.", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3418433052, - "lat": 52.9579548, - "lon": -2.3097268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "464825891689029", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 3419384953, - "lat": 54.9038286, - "lon": -2.8174341, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "CA4 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3419453032, - "lat": 51.0935888, - "lon": -0.8874905, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3419457791, - "lat": 54.9011108, - "lon": -2.8351713, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA4 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3419467984, - "lat": 54.9049266, - "lon": -2.8207168, - "tags": { - "amenity": "post_box", - "ref": "CA4 44" - } -}, -{ - "type": "node", - "id": 3419467985, - "lat": 54.9062942, - "lon": -2.8146042, - "tags": { - "amenity": "post_box", - "ref": "CA4 3" - } -}, -{ - "type": "node", - "id": 3419501995, - "lat": 54.9007509, - "lon": -2.8627307, - "tags": { - "amenity": "post_box", - "ref": "CA4 27" - } -}, -{ - "type": "node", - "id": 3419535599, - "lat": 54.8652865, - "lon": -2.8601466, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CA4 310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3419684438, - "lat": 54.8970799, - "lon": -2.8766454, - "tags": { - "amenity": "post_box", - "ref": "CA4 340" - } -}, -{ - "type": "node", - "id": 3419684439, - "lat": 54.8938157, - "lon": -2.8737683, - "tags": { - "amenity": "post_box", - "ref": "CA4 241" - } -}, -{ - "type": "node", - "id": 3419684457, - "lat": 54.8868421, - "lon": -2.8724627, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA4 329", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3419711570, - "lat": 54.8733721, - "lon": -2.8428863, - "tags": { - "amenity": "post_box", - "ref": "CA4 145" - } -}, -{ - "type": "node", - "id": 3419849135, - "lat": 54.8857265, - "lon": -2.8360811, - "tags": { - "amenity": "post_box", - "ref": "CA4 187" - } -}, -{ - "type": "node", - "id": 3419849136, - "lat": 54.8826102, - "lon": -2.8334752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA4 354" - } -}, -{ - "type": "node", - "id": 3419849137, - "lat": 54.8823326, - "lon": -2.8298433, - "tags": { - "amenity": "post_box", - "ref": "CA4 328" - } -}, -{ - "type": "node", - "id": 3419907907, - "lat": 54.8813119, - "lon": -2.8244739, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CA4 185" - } -}, -{ - "type": "node", - "id": 3419937044, - "lat": 54.8846587, - "lon": -2.8255351, - "tags": { - "amenity": "post_box", - "ref": "CA4 138" - } -}, -{ - "type": "node", - "id": 3419937045, - "lat": 54.8828534, - "lon": -2.8211630, - "tags": { - "amenity": "post_box", - "ref": "CA4 150" - } -}, -{ - "type": "node", - "id": 3420008174, - "lat": 54.5966651, - "lon": -3.5396459, - "tags": { - "amenity": "post_box", - "ref": "CA14 115" - } -}, -{ - "type": "node", - "id": 3421428905, - "lat": 54.8443089, - "lon": -2.8297245, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 301" - } -}, -{ - "type": "node", - "id": 3421719980, - "lat": 54.8839196, - "lon": -2.7657755, - "tags": { - "amenity": "post_box", - "ref": "CA8 37" - } -}, -{ - "type": "node", - "id": 3421881305, - "lat": 55.8892786, - "lon": -3.5087461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 90D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3421881328, - "lat": 55.8930375, - "lon": -3.5096365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 13D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3422181527, - "lat": 55.8754338, - "lon": -3.5200239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 24D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3422181529, - "lat": 55.8912930, - "lon": -3.5293347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH54 35", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3423202043, - "lat": 50.6977949, - "lon": -3.3051653, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3423202044, - "lat": 50.6993116, - "lon": -3.3090177, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 3423396596, - "lat": 51.3356140, - "lon": -0.1092866, - "tags": { - "amenity": "post_box", - "ref": "CR8 276D" - } -}, -{ - "type": "node", - "id": 3423584602, - "lat": 52.5316959, - "lon": 1.4870368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3423829707, - "lat": 52.9623052, - "lon": -1.0720406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG4 447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423829735, - "lat": 52.9627922, - "lon": -1.0726306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "NG4 530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423829772, - "lat": 52.9639175, - "lon": -1.0731022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG4 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423829909, - "lat": 52.9687722, - "lon": -1.0756059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG4 441", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423861071, - "lat": 51.3541122, - "lon": 0.0990118, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3423918893, - "lat": 52.1808432, - "lon": -1.6180150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 54", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423918894, - "lat": 52.1979466, - "lon": -1.5942417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423939478, - "lat": 52.2111068, - "lon": -1.6270069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423941269, - "lat": 53.4137968, - "lon": -2.0911098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK6 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3423943093, - "lat": 53.4140856, - "lon": -2.0860043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK6 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3423950534, - "lat": 52.2277752, - "lon": -1.6117817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 160", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3423966869, - "lat": 53.4035700, - "lon": -2.0968249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK6 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3424071371, - "lat": 52.9701208, - "lon": -1.0778920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "image": "https://www.mapillary.com/map/im/yAPYw4GoRGfyUDw6Y3sMuw", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424071472, - "lat": 52.9729026, - "lon": -1.0696716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG4 440D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424071798, - "lat": 52.9744019, - "lon": -1.0675623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG4 527D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424071883, - "lat": 52.9782571, - "lon": -1.0585019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG14 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424148494, - "lat": 52.9669431, - "lon": -1.0405714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "NG14 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424195249, - "lat": 52.9831173, - "lon": -1.0458389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "NG14 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424195270, - "lat": 52.9853031, - "lon": -1.0398087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG14 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424547591, - "lat": 51.4298585, - "lon": -0.5594706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TW20 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3424557161, - "lat": 52.6487448, - "lon": 0.6856455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "note": "non-standard box in delivery office wall", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE37 508", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3424557165, - "lat": 52.6469473, - "lon": 0.6888281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE37 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3424683217, - "lat": 53.0109907, - "lon": -2.1808297, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3424715340, - "lat": 55.8886328, - "lon": -3.0822343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3424797308, - "lat": 51.7489660, - "lon": -0.8575335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 286", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3424840538, - "lat": 52.4756611, - "lon": 1.7454316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3207D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3424916067, - "lat": 52.8052267, - "lon": -1.1072554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "LE12 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 3424916796, - "lat": 52.8043341, - "lon": -1.1058481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 3424972149, - "lat": 52.7931299, - "lon": -1.1184617, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE12 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3424986157, - "lat": 52.7847478, - "lon": -1.1277153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LE12 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3425083680, - "lat": 52.9902403, - "lon": -1.0286895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "wall", - "ref": "NG14 205", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3425083681, - "lat": 52.9903237, - "lon": -1.0437828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG14 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3425083687, - "lat": 52.9905396, - "lon": -1.0330297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG14 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3425085475, - "lat": 52.7974109, - "lon": -1.1500147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "LE12 96", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 3425089276, - "lat": 52.6480812, - "lon": 0.6845389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE37 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3425686749, - "lat": 53.0071000, - "lon": -0.8117279, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3425727400, - "lat": 53.0186506, - "lon": -0.8151183, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3426083236, - "lat": 52.9967842, - "lon": -1.0982108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "image": "https://www.mapillary.com/map/im/2D3BBR_4ZijUCIMp7MwFug", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG3 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3426384531, - "lat": 52.7571347, - "lon": -2.9959135, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3426497767, - "lat": 54.8966139, - "lon": -2.8936813, - "tags": { - "amenity": "post_box", - "ref": "CA1 326" - } -}, -{ - "type": "node", - "id": 3426497768, - "lat": 54.8945061, - "lon": -2.9043532, - "tags": { - "amenity": "post_box", - "ref": "CA1 90" - } -}, -{ - "type": "node", - "id": 3426497775, - "lat": 54.8943745, - "lon": -2.9129871, - "tags": { - "amenity": "post_box", - "ref": "CA1 29" - } -}, -{ - "type": "node", - "id": 3426509893, - "lat": 51.4864291, - "lon": -3.1992400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 206D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3426510165, - "lat": 54.8933572, - "lon": -2.9178955, - "tags": { - "amenity": "post_box", - "ref": "CA1 275" - } -}, -{ - "type": "node", - "id": 3426510166, - "lat": 54.8931028, - "lon": -2.9231578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CA1 72", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3426510179, - "lat": 54.8911371, - "lon": -2.9218431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA1 501", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3426512103, - "lat": 51.4852899, - "lon": -3.1963393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "name": "Plasturton Gardens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 211", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3426519742, - "lat": 51.4799979, - "lon": -3.1796559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "St Mary Street North", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3426521600, - "lat": 51.4771196, - "lon": -3.1768718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "name": "St Mary Street South", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3426527349, - "lat": 51.4812581, - "lon": -3.1888704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Lower Cathedral Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 202D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3426546069, - "lat": 51.4846891, - "lon": -3.1791810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "name": "King Edward VII Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3426623274, - "lat": 54.6762939, - "lon": -3.2485593, - "tags": { - "amenity": "post_box", - "ref": "CA13 132" - } -}, -{ - "type": "node", - "id": 3426625379, - "lat": 54.6881023, - "lon": -3.2983173, - "tags": { - "amenity": "post_box", - "ref": "CA13 150" - } -}, -{ - "type": "node", - "id": 3426627740, - "lat": 54.6921912, - "lon": -3.3089746, - "tags": { - "amenity": "post_box", - "ref": "CA13 94" - } -}, -{ - "type": "node", - "id": 3426711020, - "lat": 54.6869398, - "lon": -3.5153331, - "tags": { - "amenity": "post_box", - "ref": "CA15 54" - } -}, -{ - "type": "node", - "id": 3426713235, - "lat": 54.7309209, - "lon": -3.4437961, - "tags": { - "amenity": "post_box", - "ref": "CA15 62" - } -}, -{ - "type": "node", - "id": 3426724397, - "lat": 54.7333814, - "lon": -3.4312944, - "tags": { - "amenity": "post_box", - "ref": "CA15 116" - } -}, -{ - "type": "node", - "id": 3426726284, - "lat": 54.7323446, - "lon": -3.4043467, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA15 147" - } -}, -{ - "type": "node", - "id": 3426761235, - "lat": 54.7621742, - "lon": -3.2783215, - "tags": { - "amenity": "post_box", - "ref": "CA7 230" - } -}, -{ - "type": "node", - "id": 3426761663, - "lat": 54.7656134, - "lon": -3.2778145, - "tags": { - "amenity": "post_box", - "ref": "CA7 240" - } -}, -{ - "type": "node", - "id": 3426776500, - "lat": 54.7728313, - "lon": -3.2656612, - "tags": { - "amenity": "post_box", - "ref": "CA7 216" - } -}, -{ - "type": "node", - "id": 3426783070, - "lat": 54.7826824, - "lon": -3.2538992, - "tags": { - "amenity": "post_box", - "ref": "CA7 345" - } -}, -{ - "type": "node", - "id": 3426794336, - "lat": 54.8095733, - "lon": -3.0938346, - "tags": { - "amenity": "post_box", - "ref": "CA7 226" - } -}, -{ - "type": "node", - "id": 3426797092, - "lat": 54.8190427, - "lon": -3.0639175, - "tags": { - "amenity": "post_box", - "ref": "CA7 105" - } -}, -{ - "type": "node", - "id": 3426800351, - "lat": 54.8301178, - "lon": -3.0544303, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA7 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3426813968, - "lat": 54.8289254, - "lon": -3.0867685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 276", - "survey:date": "2023-07-15", - "wikimedia_commons": "File:Minor road, West Woodside - geograph.org.uk - 5125219.jpg" - } -}, -{ - "type": "node", - "id": 3426828278, - "lat": 54.8846932, - "lon": -2.9820090, - "tags": { - "amenity": "post_box", - "ref": "CA2 503" - } -}, -{ - "type": "node", - "id": 3426828279, - "lat": 54.8879155, - "lon": -2.9700513, - "tags": { - "amenity": "post_box", - "ref": "CA2 359" - } -}, -{ - "type": "node", - "id": 3426890024, - "lat": 56.5654769, - "lon": -3.5853810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH8 96D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3426906688, - "lat": 52.7908968, - "lon": -1.1482113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "geograph:id": "2732071", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:details": "Geograph" - } -}, -{ - "type": "node", - "id": 3428224559, - "lat": 54.5700478, - "lon": -3.1928857, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "CA12 275" - } -}, -{ - "type": "node", - "id": 3428227862, - "lat": 54.5869092, - "lon": -3.1680782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "381565097751598", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA12 254", - "survey:date": "2023-08-16" - } -}, -{ - "type": "node", - "id": 3428232584, - "lat": 51.8827417, - "lon": 0.0275368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "fixme": "check location", - "ref": "SG11 119" - } -}, -{ - "type": "node", - "id": 3428232987, - "lat": 54.5661037, - "lon": -3.1846561, - "tags": { - "amenity": "post_box", - "ref": "CA12 181" - } -}, -{ - "type": "node", - "id": 3428237478, - "lat": 54.5595632, - "lon": -3.1596307, - "tags": { - "amenity": "post_box", - "ref": "CA12 259" - } -}, -{ - "type": "node", - "id": 3428250641, - "lat": 54.6159951, - "lon": -3.0808620, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA12 272" - } -}, -{ - "type": "node", - "id": 3428250642, - "lat": 54.6088410, - "lon": -3.0734791, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA12 264" - } -}, -{ - "type": "node", - "id": 3428250644, - "lat": 54.6122440, - "lon": -3.0495054, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3428252900, - "lat": 54.6330574, - "lon": -3.0191884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA12 295", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3428258360, - "lat": 54.6653821, - "lon": -2.9887036, - "tags": { - "amenity": "post_box", - "ref": "CA11 28" - } -}, -{ - "type": "node", - "id": 3428263680, - "lat": 54.6814639, - "lon": -2.9986934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CA11 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3428270106, - "lat": 54.7090293, - "lon": -2.8927714, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 53", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 3428277982, - "lat": 54.6895166, - "lon": -2.8816536, - "tags": { - "amenity": "post_box", - "ref": "CA11 50" - } -}, -{ - "type": "node", - "id": 3428278627, - "lat": 54.6692025, - "lon": -2.8691230, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 291" - } -}, -{ - "type": "node", - "id": 3428281001, - "lat": 54.6577498, - "lon": -2.8607132, - "tags": { - "amenity": "post_box", - "ref": "CA11 324" - } -}, -{ - "type": "node", - "id": 3428288625, - "lat": 54.6700995, - "lon": -2.8284930, - "tags": { - "amenity": "post_box", - "ref": "CA11 266" - } -}, -{ - "type": "node", - "id": 3428288771, - "lat": 54.6233979, - "lon": -2.8288268, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/2623530", - "ref": "CA11 281" - } -}, -{ - "type": "node", - "id": 3428303814, - "lat": 54.7267484, - "lon": -2.7811140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3428741921, - "lat": 52.4879346, - "lon": -1.7053439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "note": "replaced EVIIIR box on this site in 1989 (see No.188)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B46 743", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3428741931, - "lat": 52.4977200, - "lon": -1.7064275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "next to post office, inside Tesco Express", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B46 8235", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3428755805, - "lat": 56.3414507, - "lon": -3.4054398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "old_collection_plate": "SCP7", - "old_collection_plate:date": "2017-01-06", - "old_collection_times": "Mo-Fr 13:00; Sa 11:00", - "old_ref": "PH2 27", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 27D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3428894402, - "lat": 50.7184471, - "lon": -1.9858993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH15 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3428894517, - "lat": 52.0548475, - "lon": -3.1501109, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR3 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 3429134896, - "lat": 52.5935963, - "lon": -0.5415980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE9 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3429134913, - "lat": 52.5876587, - "lon": -0.7222878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE15 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3432142844, - "lat": 56.7024701, - "lon": -3.7359744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "description": "on pillar, under footbridge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "PH16 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3432173178, - "lat": 51.2228417, - "lon": -0.7717539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3433837669, - "lat": 51.4722050, - "lon": -0.9882162, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-24", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Postbox on Highmoor Road 2021-04-02 14.54.01.jpg" - } -}, -{ - "type": "node", - "id": 3433837814, - "lat": 51.4770959, - "lon": -0.9916347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "RG4 379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3434398819, - "lat": 53.3041862, - "lon": -3.2493164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3434785541, - "lat": 52.2623341, - "lon": -1.5256698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3434785542, - "lat": 52.2641997, - "lon": -1.5204953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3434785543, - "lat": 52.2650503, - "lon": -1.5286774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3434785544, - "lat": 52.2683368, - "lon": -1.5386970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-28", - "collection_times": "Mo-Fr 16:45, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV34 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3434785545, - "lat": 52.2689170, - "lon": -1.5310420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-28", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3435219583, - "lat": 53.2455845, - "lon": -4.1346260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL59 87", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3436637776, - "lat": 53.8577642, - "lon": -3.0471488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-19", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3436650225, - "lat": 54.8912705, - "lon": -2.9435736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "second class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA1 2", - "ref:duplicates": "2" - } -}, -{ - "type": "node", - "id": 3436650226, - "lat": 54.8912642, - "lon": -2.9435297, - "tags": { - "amenity": "post_box", - "description": "first class", - "ref": "CA1 2", - "ref:duplicates": "2" - } -}, -{ - "type": "node", - "id": 3436995250, - "lat": 51.1553663, - "lon": -1.2253697, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO21 225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3437005666, - "lat": 51.1602371, - "lon": -1.2444382, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO21 181", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3437019103, - "lat": 52.3028667, - "lon": -0.6919551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 21" - } -}, -{ - "type": "node", - "id": 3437120498, - "lat": 51.4228912, - "lon": -1.7306438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 50D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3437591110, - "lat": 52.3425343, - "lon": -1.7587757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B94 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437626357, - "lat": 52.3373414, - "lon": -1.7243940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437626363, - "lat": 52.3381659, - "lon": -1.7321238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B94 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437717506, - "lat": 51.7637039, - "lon": -2.2307295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Field Road Whiteshill", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437721240, - "lat": 51.7641557, - "lon": -2.2342968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Woodcutters Arms", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437721499, - "lat": 57.8845598, - "lon": -6.9455401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "HS3 171", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437738383, - "lat": 51.7630532, - "lon": -2.2350227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "name": "Whiteshill PO", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437754993, - "lat": 51.7578632, - "lon": -2.2320165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Whiteshill Plain", - "old_ref": "GL6 21", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3437912364, - "lat": 54.8932384, - "lon": -2.9347705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 15:45", - "ref": "CA3 366" - } -}, -{ - "type": "node", - "id": 3438018652, - "lat": 52.0005912, - "lon": -0.9864664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438018656, - "lat": 52.0022914, - "lon": -0.9841775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438018657, - "lat": 52.0028138, - "lon": -0.9844126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438018658, - "lat": 52.0030747, - "lon": -0.9920772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438018660, - "lat": 52.0040874, - "lon": -0.9855835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438018665, - "lat": 52.0043862, - "lon": -0.9749608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438018667, - "lat": 52.0068664, - "lon": -0.9824309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438021502, - "lat": 52.0002432, - "lon": -0.9877410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438021503, - "lat": 52.0002501, - "lon": -0.9877087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 435", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438342764, - "lat": 53.0011977, - "lon": -1.1963274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG6 356", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3438917283, - "lat": 51.5333093, - "lon": -1.9005579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 293", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3438954459, - "lat": 51.4123776, - "lon": -2.3196008, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA1 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3438978617, - "lat": 51.6622999, - "lon": 0.8296596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM0 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3439024845, - "lat": 51.1789755, - "lon": -4.2100073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3439024846, - "lat": 51.1814470, - "lon": -4.2122154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3439383447, - "lat": 51.8197101, - "lon": -0.8153862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3439404221, - "lat": 53.8468785, - "lon": -2.9940815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY6 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3439419235, - "lat": 50.8009851, - "lon": -3.7274057, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3439442402, - "lat": 50.7865101, - "lon": -3.7473684, - "tags": { - "amenity": "post_box", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3439498366, - "lat": 55.8830918, - "lon": -3.5186485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3439567593, - "lat": 51.5327477, - "lon": -0.1066686, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-01", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "N1 96;N1 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3439567594, - "lat": 51.5327524, - "lon": -0.1069177, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-01", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "N1 97P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3439648130, - "lat": 52.9828472, - "lon": -1.1371130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440059308, - "lat": 52.9847139, - "lon": -1.1699539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG5 269D", - "ref:GB:uprn": "10015401540", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440082568, - "lat": 52.9792807, - "lon": -1.1669550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "NG5 247", - "ref:GB:uprn": "10015401876", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440750318, - "lat": 53.7522171, - "lon": -3.0318543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "FY8 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3440750319, - "lat": 53.7761934, - "lon": -3.0530278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3440943993, - "lat": 51.3752874, - "lon": 0.5520825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 82D" - } -}, -{ - "type": "node", - "id": 3440944294, - "lat": 51.3805911, - "lon": 0.5570304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 65D" - } -}, -{ - "type": "node", - "id": 3440944393, - "lat": 51.3791303, - "lon": 0.5526364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME7 58D" - } -}, -{ - "type": "node", - "id": 3440964585, - "lat": 51.6417280, - "lon": -0.7019044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HP10 154D" - } -}, -{ - "type": "node", - "id": 3440965011, - "lat": 51.6427380, - "lon": -0.6952578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "ref": "HP15 149" - } -}, -{ - "type": "node", - "id": 3440967278, - "lat": 51.7549529, - "lon": -0.5825563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967279, - "lat": 51.7555889, - "lon": -0.5608449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967280, - "lat": 51.7569630, - "lon": -0.5710777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967281, - "lat": 51.7592009, - "lon": -0.5670140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967282, - "lat": 51.7595991, - "lon": -0.5779096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967283, - "lat": 51.7609082, - "lon": -0.5659238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967284, - "lat": 51.7615510, - "lon": -0.5678600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967285, - "lat": 51.7620050, - "lon": -0.5670786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967286, - "lat": 51.7619735, - "lon": -0.5691844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HP4 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967287, - "lat": 51.7625608, - "lon": -0.5848832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967288, - "lat": 51.7633688, - "lon": -0.5988945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967289, - "lat": 51.7643006, - "lon": -0.5830091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967290, - "lat": 51.7656622, - "lon": -0.5657580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967291, - "lat": 51.7660250, - "lon": -0.5811936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967292, - "lat": 51.7662864, - "lon": -0.5874882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967694, - "lat": 51.7669754, - "lon": -0.5782712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP4 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967695, - "lat": 51.7681181, - "lon": -0.5761756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967696, - "lat": 51.7701454, - "lon": -0.5796031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967697, - "lat": 51.7705724, - "lon": -0.5924355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP4 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967698, - "lat": 51.7712897, - "lon": -0.5971795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967700, - "lat": 51.7726437, - "lon": -0.5910829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3440967701, - "lat": 51.7768446, - "lon": -0.6009182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441122872, - "lat": 53.8322963, - "lon": -3.0407661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3441122873, - "lat": 53.8344662, - "lon": -3.0510039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 88D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3441122874, - "lat": 53.8373673, - "lon": -3.0289741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3441122875, - "lat": 53.8432937, - "lon": -3.0281696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY2 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122877, - "lat": 53.8513298, - "lon": -3.0342540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-09-11", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3441122878, - "lat": 53.8525943, - "lon": -3.0250903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY2 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3441122879, - "lat": 53.8548385, - "lon": -3.0331656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122880, - "lat": 53.8567233, - "lon": -3.0289045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122881, - "lat": 53.8583733, - "lon": -3.0250416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY2 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122882, - "lat": 53.8615782, - "lon": -3.0448121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122883, - "lat": 53.8624299, - "lon": -3.0265538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122884, - "lat": 53.8633362, - "lon": -3.0237155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441122885, - "lat": 53.8645494, - "lon": -3.0439252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441219411, - "lat": 53.7037821, - "lon": -2.6142036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "mapillary": "465511271400781", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR6 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3441219412, - "lat": 53.7066667, - "lon": -2.6254249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "mapillary": "519325042752213", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441219413, - "lat": 53.7082959, - "lon": -2.6341714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "482102146399832", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441334261, - "lat": 53.0077600, - "lon": -1.1745015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441378095, - "lat": 51.3818236, - "lon": 0.5266056, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME4 29" - } -}, -{ - "type": "node", - "id": 3441378096, - "lat": 51.3837334, - "lon": 0.5241480, - "tags": { - "addr:street": "Military Road", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ME4 1411", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-03" - } -}, -{ - "type": "node", - "id": 3441378097, - "lat": 51.3900536, - "lon": 0.5488023, - "tags": { - "addr:street": "Saunders Street", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 2" - } -}, -{ - "type": "node", - "id": 3441378098, - "lat": 51.3894924, - "lon": 0.5507143, - "tags": { - "addr:street": "Saunders Street", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 60D" - } -}, -{ - "type": "node", - "id": 3441378194, - "lat": 51.3737219, - "lon": 0.5409895, - "tags": { - "addr:street": "Luton Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME4 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441378195, - "lat": 51.3784363, - "lon": 0.5359849, - "tags": { - "addr:street": "Chatham Hill", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME5 17" - } -}, -{ - "type": "node", - "id": 3441378494, - "lat": 51.3695897, - "lon": 0.5473124, - "tags": { - "addr:street": "Luton High Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441381094, - "lat": 51.3793395, - "lon": 0.5330524, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 76" - } -}, -{ - "type": "node", - "id": 3441381095, - "lat": 51.3804198, - "lon": 0.5294323, - "tags": { - "addr:street": "Church Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME4 25" - } -}, -{ - "type": "node", - "id": 3441381097, - "lat": 51.3864170, - "lon": 0.5573811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "ME7 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3441406893, - "lat": 51.3722911, - "lon": 0.5436880, - "tags": { - "addr:street": "Luton Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME4 34D" - } -}, -{ - "type": "node", - "id": 3441406894, - "lat": 51.3808828, - "lon": 0.5253855, - "tags": { - "addr:street": "Best Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME4 4002" - } -}, -{ - "type": "node", - "id": 3441406895, - "lat": 51.3918591, - "lon": 0.5304112, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME7 18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 18D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-11-28" - } -}, -{ - "type": "node", - "id": 3441406896, - "lat": 51.3892348, - "lon": 0.5423268, - "tags": { - "addr:street": "Marlborough Road", - "amenity": "post_box", - "mapillary": "3210038569223431", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME7 64", - "survey:date": "2019-09-28" - } -}, -{ - "type": "node", - "id": 3441406897, - "lat": 51.3838603, - "lon": 0.5629422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 282" - } -}, -{ - "type": "node", - "id": 3441406993, - "lat": 51.3754743, - "lon": 0.5396041, - "tags": { - "addr:street": "Constitution Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME5 202D" - } -}, -{ - "type": "node", - "id": 3441406995, - "lat": 51.3907471, - "lon": 0.5319093, - "tags": { - "addr:street": "Mansion Row", - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME7 31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 31D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-28" - } -}, -{ - "type": "node", - "id": 3441407093, - "lat": 51.3818454, - "lon": 0.5265620, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME4 41" - } -}, -{ - "type": "node", - "id": 3441407094, - "lat": 51.3837487, - "lon": 0.5241625, - "tags": { - "addr:street": "Military Road", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ME4 1422", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-03" - } -}, -{ - "type": "node", - "id": 3441407193, - "lat": 51.3886655, - "lon": 0.5356123, - "tags": { - "addr:street": "Sally Port Gardens", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 323" - } -}, -{ - "type": "node", - "id": 3441407194, - "lat": 51.3919139, - "lon": 0.5430749, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME7 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-11-28" - } -}, -{ - "type": "node", - "id": 3441455035, - "lat": 53.0097328, - "lon": -1.1655207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 73D", - "ref:GB:uprn": "10015401959", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441759697, - "lat": 53.4179601, - "lon": -2.2452038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3441899986, - "lat": 51.1329630, - "lon": -1.9553959, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP3 227", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3441956389, - "lat": 53.0050087, - "lon": -1.1496226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 472D", - "ref:GB:uprn": "10015279121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441956391, - "lat": 53.0053765, - "lon": -1.1532505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG5 480D", - "ref:GB:uprn": "10015414878", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3441958499, - "lat": 53.0064684, - "lon": -1.1466324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG5 490", - "ref:GB:uprn": "10015372122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3442477583, - "lat": 52.1586045, - "lon": -1.2270502, - "tags": { - "amenity": "post_box", - "ref": "NN11 159", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3442704478, - "lat": 54.6180452, - "lon": -3.2032169, - "tags": { - "amenity": "post_box", - "ref": "CA12 147" - } -}, -{ - "type": "node", - "id": 3442719723, - "lat": 52.4479806, - "lon": -1.8186199, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B27 593D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3442753260, - "lat": 54.6681927, - "lon": -3.4347409, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA13 128" - } -}, -{ - "type": "node", - "id": 3442770760, - "lat": 54.6923576, - "lon": -3.3393920, - "tags": { - "amenity": "post_box", - "ref": "CA13 77" - } -}, -{ - "type": "node", - "id": 3442771760, - "lat": 54.7078042, - "lon": -3.2746655, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA13 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442772438, - "lat": 54.8451757, - "lon": -2.9841709, - "tags": { - "amenity": "post_box", - "ref": "CA5 434" - } -}, -{ - "type": "node", - "id": 3442772439, - "lat": 54.8418237, - "lon": -2.9842888, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CA5 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442773644, - "lat": 54.6792866, - "lon": -3.2658778, - "tags": { - "amenity": "post_box", - "ref": "CA13 96" - } -}, -{ - "type": "node", - "id": 3442795743, - "lat": 54.8290916, - "lon": -2.9809910, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA5 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3442816480, - "lat": 54.8255323, - "lon": -2.9967349, - "tags": { - "amenity": "post_box", - "ref": "CA5 182" - } -}, -{ - "type": "node", - "id": 3442820843, - "lat": 54.8002940, - "lon": -3.0018897, - "tags": { - "amenity": "post_box", - "ref": "CA5 118" - } -}, -{ - "type": "node", - "id": 3442827965, - "lat": 54.7756365, - "lon": -3.0229068, - "tags": { - "amenity": "post_box", - "ref": "CA5 7" - } -}, -{ - "type": "node", - "id": 3442848080, - "lat": 54.7652464, - "lon": -2.9900229, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA5 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442865023, - "lat": 54.8770866, - "lon": -3.0483283, - "tags": { - "amenity": "post_box", - "ref": "CA5 160" - } -}, -{ - "type": "node", - "id": 3442870028, - "lat": 54.8866990, - "lon": -3.0120169, - "tags": { - "amenity": "post_box", - "ref": "CA5 397" - } -}, -{ - "type": "node", - "id": 3442884824, - "lat": 54.8990766, - "lon": -3.0676243, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA5 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3442894694, - "lat": 54.8984150, - "lon": -3.0819053, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA5 325", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3442897132, - "lat": 54.9211548, - "lon": -3.0586979, - "tags": { - "amenity": "post_box", - "ref": "CA5 157" - } -}, -{ - "type": "node", - "id": 3442902094, - "lat": 54.9179747, - "lon": -3.0249516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1234669544365046", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA5 107", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3442902105, - "lat": 54.9237751, - "lon": -3.0187146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA5 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442908483, - "lat": 54.9163718, - "lon": -3.0096148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA5 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442918635, - "lat": 54.9128556, - "lon": -2.9857740, - "tags": { - "amenity": "post_box", - "ref": "CA5 13" - } -}, -{ - "type": "node", - "id": 3442931570, - "lat": 54.8534204, - "lon": -2.8376985, - "tags": { - "amenity": "post_box", - "ref": "CA4 82" - } -}, -{ - "type": "node", - "id": 3442963929, - "lat": 53.8652609, - "lon": -3.0252543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963930, - "lat": 53.8660595, - "lon": -3.0292351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-08-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963931, - "lat": 53.8668222, - "lon": -3.0389405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963932, - "lat": 53.8672836, - "lon": -3.0217792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-08-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963933, - "lat": 53.8691234, - "lon": -3.0294448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963934, - "lat": 53.8706854, - "lon": -3.0355076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 241D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3442963935, - "lat": 53.8726080, - "lon": -3.0458890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY5 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963936, - "lat": 53.8730301, - "lon": -3.0306343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3442963937, - "lat": 53.8792705, - "lon": -3.0376091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 81D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3442963938, - "lat": 53.8799652, - "lon": -3.0415903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 259D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3442963939, - "lat": 53.8803686, - "lon": -3.0288239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3442963940, - "lat": 53.8805080, - "lon": -3.0445456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963941, - "lat": 53.8817636, - "lon": -3.0337316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963942, - "lat": 53.8828119, - "lon": -3.0396213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 71D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3442963944, - "lat": 53.8832983, - "lon": -3.0305973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963945, - "lat": 53.8857383, - "lon": -3.0365945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442963946, - "lat": 53.8874902, - "lon": -3.0290852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3442992893, - "lat": 52.3965621, - "lon": -1.5984928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3442992896, - "lat": 52.3892898, - "lon": -1.5981870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV4 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3443026349, - "lat": 52.3677448, - "lon": -1.5952626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV8 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3443026351, - "lat": 52.3814783, - "lon": -1.6057233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3443026352, - "lat": 52.3333816, - "lon": -1.5763102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3443300602, - "lat": 51.3927203, - "lon": 0.5609546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 32" - } -}, -{ - "type": "node", - "id": 3443301902, - "lat": 51.3921835, - "lon": 0.5537494, - "tags": { - "addr:street": "Garfield Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 15D" - } -}, -{ - "type": "node", - "id": 3443302999, - "lat": 51.3732495, - "lon": 0.5730346, - "tags": { - "addr:street": "Featherby Road", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME8 266D" - } -}, -{ - "type": "node", - "id": 3443303203, - "lat": 51.3874492, - "lon": 0.5706660, - "tags": { - "addr:street": "Woodlands Road", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 267D" - } -}, -{ - "type": "node", - "id": 3443303898, - "lat": 51.3899743, - "lon": 0.5750669, - "tags": { - "addr:street": "Danes Hill", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME7 26" - } -}, -{ - "type": "node", - "id": 3443303899, - "lat": 51.3918390, - "lon": 0.5683451, - "tags": { - "addr:street": "Gads Hill", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME7 91D" - } -}, -{ - "type": "node", - "id": 3443304195, - "lat": 51.3914811, - "lon": 0.5561604, - "tags": { - "addr:street": "Knight Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME7 271" - } -}, -{ - "type": "node", - "id": 3443304297, - "lat": 51.3772316, - "lon": 0.5743409, - "tags": { - "addr:street": "Featherby Road", - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME8 311D" - } -}, -{ - "type": "node", - "id": 3443325393, - "lat": 51.3917601, - "lon": 0.5487835, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME7 262", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 262D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-11-28" - } -}, -{ - "type": "node", - "id": 3444689453, - "lat": 52.2011415, - "lon": -1.7064282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3444769000, - "lat": 53.8765968, - "lon": -3.0435381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY5 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3444769001, - "lat": 53.8769155, - "lon": -3.0393017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3444769002, - "lat": 53.8769181, - "lon": -3.0393170, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-15", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3444769003, - "lat": 53.8777420, - "lon": -3.0452076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY5 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3444774293, - "lat": 52.1985124, - "lon": -1.7146591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3445211293, - "lat": 51.3764559, - "lon": 0.5409456, - "tags": { - "addr:street": "Upper Luton Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME5 30" - } -}, -{ - "type": "node", - "id": 3445211295, - "lat": 51.3516580, - "lon": 0.5235742, - "tags": { - "addr:street": "Churchill Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 206" - } -}, -{ - "type": "node", - "id": 3445211296, - "lat": 51.3429172, - "lon": 0.5169987, - "tags": { - "addr:street": "King George Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 320D" - } -}, -{ - "type": "node", - "id": 3445211393, - "lat": 51.3712973, - "lon": 0.5399972, - "tags": { - "addr:street": "Albany Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME4 442D" - } -}, -{ - "type": "node", - "id": 3445211394, - "lat": 51.3640618, - "lon": 0.5360210, - "tags": { - "addr:street": "Street End Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 296D" - } -}, -{ - "type": "node", - "id": 3445211396, - "lat": 51.3667722, - "lon": 0.5443291, - "tags": { - "addr:street": "Mill Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 39D" - } -}, -{ - "type": "node", - "id": 3445211493, - "lat": 51.3737165, - "lon": 0.5371237, - "tags": { - "addr:street": "Victoria Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME4 56D" - } -}, -{ - "type": "node", - "id": 3445211494, - "lat": 51.3739156, - "lon": 0.5355538, - "tags": { - "addr:street": "Gordon Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 217D" - } -}, -{ - "type": "node", - "id": 3445211495, - "lat": 51.3707172, - "lon": 0.5350447, - "tags": { - "addr:street": "Shipwrights Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME4 396D" - } -}, -{ - "type": "node", - "id": 3445211693, - "lat": 51.3677579, - "lon": 0.5284323, - "tags": { - "addr:street": "Shipwrights Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME4 268D" - } -}, -{ - "type": "node", - "id": 3445211694, - "lat": 51.3481122, - "lon": 0.5167918, - "tags": { - "addr:street": "King George Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ME5 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3445211695, - "lat": 51.3438941, - "lon": 0.5136102, - "tags": { - "addr:street": "King George Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 441D" - } -}, -{ - "type": "node", - "id": 3445211696, - "lat": 51.3443434, - "lon": 0.5250516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 70" - } -}, -{ - "type": "node", - "id": 3445211893, - "lat": 51.3638296, - "lon": 0.5389539, - "tags": { - "addr:street": "The Links", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 394D" - } -}, -{ - "type": "node", - "id": 3445211894, - "lat": 51.3468360, - "lon": 0.5209644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 334" - } -}, -{ - "type": "node", - "id": 3445212094, - "lat": 51.3565093, - "lon": 0.5275803, - "tags": { - "addr:street": "Churchill Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 314D" - } -}, -{ - "type": "node", - "id": 3445212193, - "lat": 51.3597180, - "lon": 0.5304656, - "tags": { - "addr:street": "Frost Crescent", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 310" - } -}, -{ - "type": "node", - "id": 3445597498, - "lat": 52.0350893, - "lon": -2.4358590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR8 310D", - "source": "survey", - "survey:date": "2015-04-08" - } -}, -{ - "type": "node", - "id": 3445700010, - "lat": 53.4278036, - "lon": -2.1773098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3445700500, - "lat": 53.4236524, - "lon": -2.1743237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3446185947, - "lat": 54.7986308, - "lon": -2.8697177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA4 466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3446344503, - "lat": 51.4020723, - "lon": -0.1065207, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "ref": "CR7 118D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3446361464, - "lat": 54.7843181, - "lon": -2.9008459, - "tags": { - "amenity": "post_box", - "ref": "CA4 386" - } -}, -{ - "type": "node", - "id": 3446361644, - "lat": 54.7796541, - "lon": -2.9086306, - "tags": { - "amenity": "post_box", - "ref": "CA4 374" - } -}, -{ - "type": "node", - "id": 3446407853, - "lat": 54.7686783, - "lon": -2.9203809, - "tags": { - "amenity": "post_box", - "ref": "CA4 87" - } -}, -{ - "type": "node", - "id": 3446415279, - "lat": 54.7512552, - "lon": -2.9455061, - "tags": { - "amenity": "post_box", - "ref": "CA4 357" - } -}, -{ - "type": "node", - "id": 3446447085, - "lat": 54.8066998, - "lon": -2.7710357, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA4 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:position": "gps" - } -}, -{ - "type": "node", - "id": 3446471858, - "lat": 54.8088301, - "lon": -2.7308357, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3446477625, - "lat": 54.8042792, - "lon": -2.7191281, - "tags": { - "amenity": "post_box", - "ref": "CA4 404" - } -}, -{ - "type": "node", - "id": 3446524569, - "lat": 54.9411260, - "lon": -2.7413554, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA8 198" - } -}, -{ - "type": "node", - "id": 3446524570, - "lat": 54.9478164, - "lon": -2.7373222, - "tags": { - "amenity": "post_box", - "ref": "CA8 415" - } -}, -{ - "type": "node", - "id": 3446525000, - "lat": 54.9457628, - "lon": -2.7359396, - "tags": { - "amenity": "post_box", - "ref": "CA8 286" - } -}, -{ - "type": "node", - "id": 3446542026, - "lat": 54.9426244, - "lon": -2.7249801, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA8 49" - } -}, -{ - "type": "node", - "id": 3446542429, - "lat": 54.6638930, - "lon": -2.7697369, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA11 317", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3446548323, - "lat": 54.9358891, - "lon": -2.7330058, - "tags": { - "amenity": "post_box", - "ref": "CA8 131" - } -}, -{ - "type": "node", - "id": 3446807499, - "lat": 51.4294340, - "lon": 0.4092013, - "tags": { - "addr:street": "Chalk Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 101" - } -}, -{ - "type": "node", - "id": 3446808495, - "lat": 51.4200804, - "lon": 0.4350331, - "tags": { - "addr:street": "Rochester Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 32" - } -}, -{ - "type": "node", - "id": 3446918193, - "lat": 51.4265618, - "lon": 0.4644860, - "tags": { - "addr:street": "Steadman Close", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 316" - } -}, -{ - "type": "node", - "id": 3446918194, - "lat": 51.4148421, - "lon": 0.4516896, - "tags": { - "addr:street": "Gravesend Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 198D" - } -}, -{ - "type": "node", - "id": 3446918293, - "lat": 51.4068546, - "lon": 0.4741638, - "tags": { - "addr:street": "Gravesend Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 346D" - } -}, -{ - "type": "node", - "id": 3446938175, - "lat": 54.6599178, - "lon": -2.7306439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 25" - } -}, -{ - "type": "node", - "id": 3446938176, - "lat": 54.6619328, - "lon": -2.7336523, - "tags": { - "amenity": "post_box", - "ref": "CA11 318" - } -}, -{ - "type": "node", - "id": 3446938177, - "lat": 54.6645744, - "lon": -2.7320796, - "tags": { - "amenity": "post_box", - "ref": "CA11 500" - } -}, -{ - "type": "node", - "id": 3446938178, - "lat": 54.6696887, - "lon": -2.7251107, - "tags": { - "amenity": "post_box", - "ref": "CA11 287" - } -}, -{ - "type": "node", - "id": 3446938179, - "lat": 54.6700728, - "lon": -2.7445646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 2" - } -}, -{ - "type": "node", - "id": 3446938180, - "lat": 54.6641428, - "lon": -2.7493664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CA11 19" - } -}, -{ - "type": "node", - "id": 3446938181, - "lat": 54.6636201, - "lon": -2.7523266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA11 274", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3446938182, - "lat": 54.6627165, - "lon": -2.7561283, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA11 265D" - } -}, -{ - "type": "node", - "id": 3446938183, - "lat": 54.6638659, - "lon": -2.7559598, - "tags": { - "amenity": "post_box", - "ref": "CA11 321" - } -}, -{ - "type": "node", - "id": 3446938827, - "lat": 54.6630474, - "lon": -2.7643814, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA11 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3446945295, - "lat": 54.6670067, - "lon": -2.7523551, - "tags": { - "amenity": "post_box", - "ref": "CA11 14" - } -}, -{ - "type": "node", - "id": 3446945296, - "lat": 54.6736452, - "lon": -2.7552620, - "tags": { - "amenity": "post_box", - "ref": "CA11 169" - } -}, -{ - "type": "node", - "id": 3446945944, - "lat": 54.6708021, - "lon": -2.7536852, - "tags": { - "amenity": "post_box", - "ref": "CA11 18" - } -}, -{ - "type": "node", - "id": 3446945947, - "lat": 54.6722993, - "lon": -2.7598596, - "tags": { - "amenity": "post_box", - "ref": "CA11 268" - } -}, -{ - "type": "node", - "id": 3447071224, - "lat": 52.1829440, - "lon": -1.4673465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3447178111, - "lat": 52.1674131, - "lon": -1.5357539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3447178112, - "lat": 52.1571923, - "lon": -1.5158090, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3447200662, - "lat": 52.1776351, - "lon": -1.7387528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3447230907, - "lat": 52.1714898, - "lon": -1.7562327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3447268493, - "lat": 51.3679212, - "lon": 0.5591729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 313D" - } -}, -{ - "type": "node", - "id": 3447268593, - "lat": 51.3545003, - "lon": 0.5762168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME7 393D" - } -}, -{ - "type": "node", - "id": 3447268694, - "lat": 51.3638351, - "lon": 0.6021594, - "tags": { - "addr:street": "Maidstone Road", - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME8 4D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 3447269193, - "lat": 51.3501581, - "lon": 0.5749768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME7 422D" - } -}, -{ - "type": "node", - "id": 3447269194, - "lat": 51.3566436, - "lon": 0.5928154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 215D" - } -}, -{ - "type": "node", - "id": 3447269393, - "lat": 51.3446742, - "lon": 0.5697944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME7 287D" - } -}, -{ - "type": "node", - "id": 3447269493, - "lat": 51.3508479, - "lon": 0.5807641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 233" - } -}, -{ - "type": "node", - "id": 3447269793, - "lat": 51.3612941, - "lon": 0.5985355, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME8 251", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME8 251D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 3447413849, - "lat": 53.5436659, - "lon": -2.6300754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 110" - } -}, -{ - "type": "node", - "id": 3447579026, - "lat": 52.0265826, - "lon": -2.4431225, - "tags": { - "amenity": "post_box", - "note": "deep inside a trimmed hedge aperture", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR8 318", - "source": "survey+gps" - } -}, -{ - "type": "node", - "id": 3447632305, - "lat": 54.9877758, - "lon": -1.6038467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NE2 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3447632306, - "lat": 54.9879621, - "lon": -1.6057715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE2 47", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3448182304, - "lat": 55.5174426, - "lon": -4.6007366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA9 30D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3448217559, - "lat": 53.3701918, - "lon": -2.2356305, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SK8 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3448358857, - "lat": 53.3696543, - "lon": -2.2278730, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SK8 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3448358858, - "lat": 53.3715946, - "lon": -2.2239032, - "tags": { - "amenity": "post_box", - "ref": "SK8 240" - } -}, -{ - "type": "node", - "id": 3448361336, - "lat": 53.3784762, - "lon": -2.1968638, - "tags": { - "amenity": "post_box", - "ref": "SK8 227" - } -}, -{ - "type": "node", - "id": 3448361865, - "lat": 53.3840528, - "lon": -2.2000076, - "tags": { - "amenity": "post_box", - "ref": "SK8 346" - } -}, -{ - "type": "node", - "id": 3448361866, - "lat": 53.3893017, - "lon": -2.2154845, - "tags": { - "amenity": "post_box", - "ref": "SK8 166" - } -}, -{ - "type": "node", - "id": 3448386865, - "lat": 53.3456690, - "lon": -2.8289318, - "tags": { - "amenity": "post_box", - "ref": "L24 957" - } -}, -{ - "type": "node", - "id": 3448387291, - "lat": 52.3198236, - "lon": -1.5449762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 16:16; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3448387292, - "lat": 52.4083817, - "lon": -1.5177934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3448402247, - "lat": 52.3816175, - "lon": -1.5397868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 228D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3448477087, - "lat": 54.6850510, - "lon": -2.6755023, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3448899290, - "lat": 53.2014186, - "lon": -3.0859033, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3448972784, - "lat": 53.2334144, - "lon": -3.2465943, - "tags": { - "amenity": "post_box", - "fixme": "location approx (opposite pub)", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3448972791, - "lat": 53.2409013, - "lon": -3.2052831, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3449252735, - "lat": 53.1391779, - "lon": -4.2741232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL55 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3449252736, - "lat": 53.1391849, - "lon": -4.2741094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL55 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3449577962, - "lat": 54.3620941, - "lon": -2.9201073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA23 92", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3450415630, - "lat": 54.9821260, - "lon": -2.5328809, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-28", - "check_date:collection_times": "2022-06-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CA8 428D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450689524, - "lat": 52.5781595, - "lon": -1.4038554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV13 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450705361, - "lat": 52.5983391, - "lon": -1.4322997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV13 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450711100, - "lat": 53.1929098, - "lon": -2.8382314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 336D" - } -}, -{ - "type": "node", - "id": 3450711325, - "lat": 52.5445631, - "lon": -1.4408022, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV10 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450783864, - "lat": 54.8966321, - "lon": -2.7779151, - "tags": { - "amenity": "post_box", - "postal_code": "CA8", - "ref": "CA8 180" - } -}, -{ - "type": "node", - "id": 3450916731, - "lat": 51.8545724, - "lon": -0.7667638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450932639, - "lat": 51.8420594, - "lon": -0.7631702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450940296, - "lat": 53.0200055, - "lon": -4.0846117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL55 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3450946409, - "lat": 51.8306400, - "lon": -0.7871767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450946411, - "lat": 51.8336270, - "lon": -0.7820860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450946412, - "lat": 51.8350196, - "lon": -0.7755882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3450948304, - "lat": 51.3721829, - "lon": 0.5781602, - "tags": { - "addr:street": "Broadway", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 236" - } -}, -{ - "type": "node", - "id": 3450948396, - "lat": 51.3686563, - "lon": 0.5743817, - "tags": { - "addr:street": "Bailey Drive", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "ME8 426" - } -}, -{ - "type": "node", - "id": 3450948397, - "lat": 51.3695835, - "lon": 0.5786177, - "tags": { - "addr:street": "Bailey Drive", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 341D" - } -}, -{ - "type": "node", - "id": 3450948398, - "lat": 51.3706920, - "lon": 0.5867417, - "tags": { - "addr:street": "Twydall Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 332D" - } -}, -{ - "type": "node", - "id": 3450983894, - "lat": 51.3764768, - "lon": 0.5788069, - "tags": { - "addr:street": "Broadway", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 308D" - } -}, -{ - "type": "node", - "id": 3450987893, - "lat": 51.3744867, - "lon": 0.5824599, - "tags": { - "addr:street": "Twydall Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 322" - } -}, -{ - "type": "node", - "id": 3450988194, - "lat": 51.3643299, - "lon": 0.6078071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME8 189" - } -}, -{ - "type": "node", - "id": 3450988195, - "lat": 51.3612952, - "lon": 0.6185111, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME8 50" - } -}, -{ - "type": "node", - "id": 3450988196, - "lat": 51.3607333, - "lon": 0.6133062, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 430D" - } -}, -{ - "type": "node", - "id": 3450988197, - "lat": 51.3615416, - "lon": 0.6048795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 292" - } -}, -{ - "type": "node", - "id": 3450988294, - "lat": 51.3643564, - "lon": 0.6077593, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME8 197" - } -}, -{ - "type": "node", - "id": 3451018747, - "lat": 51.8151443, - "lon": -0.7986835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018750, - "lat": 51.8160886, - "lon": -0.7998156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "The reference (HP20 71) is a duplicate. According to RM list, it should be HP20 77 but survey shows same information plate as \"real\" HP20 77. Can only assume RM have made a mistake and stuck the wrong information plate on this postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-11" - } -}, -{ - "type": "node", - "id": 3451018751, - "lat": 51.8159865, - "lon": -0.8084885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018752, - "lat": 51.8166056, - "lon": -0.8181151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP20 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018757, - "lat": 51.8174565, - "lon": -0.8113253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "Inside the store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018758, - "lat": 51.8179664, - "lon": -0.7754980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018766, - "lat": 51.8225039, - "lon": -0.8021365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP20 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018767, - "lat": 51.8256750, - "lon": -0.7956532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP20 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451018768, - "lat": 51.8262718, - "lon": -0.8074895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-11" - } -}, -{ - "type": "node", - "id": 3451018770, - "lat": 51.8272600, - "lon": -0.8099688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP20 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-11" - } -}, -{ - "type": "node", - "id": 3451075687, - "lat": 53.0885614, - "lon": -2.4921632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW5 250", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451142743, - "lat": 53.0878406, - "lon": -4.1746262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3451142747, - "lat": 53.1121324, - "lon": -4.2080681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3451213456, - "lat": 53.4450465, - "lon": -1.9396169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK13 102D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3451222897, - "lat": 53.4444674, - "lon": -1.9488377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45; Su off", - "indoor": "yes", - "location": "in wall inside station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK13 106", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3451242398, - "lat": 53.4491545, - "lon": -1.9379801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SK13 1040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3451337733, - "lat": 53.7406353, - "lon": -2.9573059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3451337734, - "lat": 53.7445161, - "lon": -2.9590390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3451700755, - "lat": 51.7682888, - "lon": -0.5246115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451714211, - "lat": 51.7783926, - "lon": -0.5285150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "note": "The Royal cypher is ER and the box appears to be an original Edward VII, judging by its design and location within a wall.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP1 136", - "royal_cypher": "ER", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451714212, - "lat": 51.7840103, - "lon": -0.5224951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP1 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750055, - "lat": 51.7982378, - "lon": -0.5470474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750056, - "lat": 51.7995560, - "lon": -0.5602690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750057, - "lat": 51.8051102, - "lon": -0.5547702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3451750059, - "lat": 51.8079862, - "lon": -0.5435313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750060, - "lat": 51.8091949, - "lon": -0.5310869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750061, - "lat": 51.8118904, - "lon": -0.5771617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP4 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750062, - "lat": 51.8134158, - "lon": -0.5623541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP4 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750063, - "lat": 51.8184281, - "lon": -0.5733901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451750064, - "lat": 51.8374673, - "lon": -0.5604408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP4 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-12" - } -}, -{ - "type": "node", - "id": 3451962195, - "lat": 51.3674209, - "lon": 0.5824362, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME8 123", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-28" - } -}, -{ - "type": "node", - "id": 3452087853, - "lat": 52.0650439, - "lon": -2.4907633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "HR8 312", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey+gps" - } -}, -{ - "type": "node", - "id": 3452101108, - "lat": 55.7947885, - "lon": -4.6299125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PA12 181", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3452258660, - "lat": 53.0198647, - "lon": -1.1835507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG6 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3452274600, - "lat": 53.0224074, - "lon": -1.1753563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "NG6 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3452275200, - "lat": 53.0262510, - "lon": -1.1791341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG6 397D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3452827799, - "lat": 53.0127911, - "lon": -1.1650923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3452956864, - "lat": 53.0054700, - "lon": -1.1680873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG5 107D", - "ref:GB:uprn": "10015467892", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453718101, - "lat": 54.7854138, - "lon": -2.6284341, - "tags": { - "amenity": "post_box", - "ref": "CA10 270" - } -}, -{ - "type": "node", - "id": 3453727394, - "lat": 54.7575058, - "lon": -2.6082756, - "tags": { - "amenity": "post_box", - "ref": "CA10 182" - } -}, -{ - "type": "node", - "id": 3453732036, - "lat": 54.7713481, - "lon": -2.6427443, - "tags": { - "amenity": "post_box", - "ref": "CA10 141" - } -}, -{ - "type": "node", - "id": 3453844618, - "lat": 52.4722535, - "lon": -1.8944114, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B5 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453844619, - "lat": 52.4734616, - "lon": -1.8936632, - "tags": { - "amenity": "post_box", - "mail:meter": "yes", - "post_box:type": "meter", - "ref": "B5 9002", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453844620, - "lat": 52.4734903, - "lon": -1.8937016, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B5 1285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453844621, - "lat": 52.4792263, - "lon": -1.9022977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postbox:restriction": "2nd Class mail only", - "ref": "B2 4412", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453844622, - "lat": 52.4792294, - "lon": -1.9022888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postbox:restriction": "1st Class Mail only", - "ref": "B2 4411", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453942333, - "lat": 52.6822777, - "lon": 0.9397037, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-30", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "image": "https://i.postimg.cc/1RGTzdTr/NR19-1951-P.jpg", - "location": "Quebec Street", - "mail:barcode-returns": "yes", - "mail:franked": "yes", - "mail:pre-paid": "yes", - "opening_hours": "Mo-Fr 09:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NR19 1951P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3453990279, - "lat": 54.7430533, - "lon": -2.6591719, - "tags": { - "amenity": "post_box", - "ref": "CA10 188" - } -}, -{ - "type": "node", - "id": 3454026598, - "lat": 54.7136248, - "lon": -2.6521809, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 187", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3454028351, - "lat": 54.7088879, - "lon": -2.6477438, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CA10 185", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3454053668, - "lat": 54.7075789, - "lon": -2.5899845, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 202" - } -}, -{ - "type": "node", - "id": 3454074382, - "lat": 54.7053802, - "lon": -2.5795471, - "tags": { - "amenity": "post_box", - "ref": "CA10 190", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454105877, - "lat": 54.6874228, - "lon": -2.5974022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 253" - } -}, -{ - "type": "node", - "id": 3454141689, - "lat": 54.6575689, - "lon": -2.5355295, - "tags": { - "amenity": "post_box", - "ref": "CA10 246" - } -}, -{ - "type": "node", - "id": 3454144539, - "lat": 54.6504321, - "lon": -2.5345834, - "tags": { - "amenity": "post_box", - "ref": "CA10 156" - } -}, -{ - "type": "node", - "id": 3454171398, - "lat": 54.6498119, - "lon": -2.5770469, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3454325576, - "lat": 53.0126010, - "lon": -4.1002714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3454349961, - "lat": 55.6299715, - "lon": -2.8463885, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454351304, - "lat": 52.8388798, - "lon": 0.9575981, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3454466101, - "lat": 55.6123059, - "lon": -2.7955745, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454466102, - "lat": 55.6133124, - "lon": -2.7924200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454466103, - "lat": 55.6112498, - "lon": -2.7814933, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454466118, - "lat": 55.6126793, - "lon": -2.8070576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD1 17", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3454801593, - "lat": 52.0279712, - "lon": 1.2307688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1247" - } -}, -{ - "type": "node", - "id": 3454804745, - "lat": 52.9973739, - "lon": -1.1889800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "pillar", - "ref": "NG6 348", - "ref:GB:uprn": "10015269001", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454804748, - "lat": 52.9993445, - "lon": -1.1939305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG6 352D", - "ref:GB:uprn": "10015341220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3454917981, - "lat": 51.7846432, - "lon": -1.3766730, - "tags": { - "addr:city": "Eynsham", - "addr:postcode": "OX29 4NL", - "addr:street": "Spareacre Lane", - "amenity": "post_box", - "check_date:collection_times": "2023-01-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX29 831", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3455264818, - "lat": 54.6612107, - "lon": -2.6048551, - "tags": { - "amenity": "post_box", - "ref": "CA10 215" - } -}, -{ - "type": "node", - "id": 3455396753, - "lat": 54.6255053, - "lon": -2.5611820, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 13" - } -}, -{ - "type": "node", - "id": 3455497235, - "lat": 54.6223338, - "lon": -2.5660018, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3455504294, - "lat": 51.4892311, - "lon": -0.1173442, - "tags": { - "addr:street": "Vauxhall Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3455504393, - "lat": 51.4915063, - "lon": -0.1183640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-17", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3455625986, - "lat": 54.7904815, - "lon": -2.3475266, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA9 246" - } -}, -{ - "type": "node", - "id": 3455659536, - "lat": 54.8124961, - "lon": -2.4405181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "CA9 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3455661773, - "lat": 52.4825132, - "lon": -1.9153564, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B1 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3455663038, - "lat": 52.4903176, - "lon": -1.9100670, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B18 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3455663040, - "lat": 52.4920259, - "lon": -1.9053960, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B19 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3455683257, - "lat": 54.8107591, - "lon": -2.4366685, - "tags": { - "amenity": "post_box", - "ref": "CA9 399" - } -}, -{ - "type": "node", - "id": 3455683258, - "lat": 54.8107482, - "lon": -2.4483792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CA9 255", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3455720352, - "lat": 54.9733194, - "lon": -2.5223886, - "tags": { - "amenity": "post_box", - "ref": "CA8 460" - } -}, -{ - "type": "node", - "id": 3455739095, - "lat": 53.8373220, - "lon": -2.4023447, - "tags": { - "amenity": "post_box", - "note": "Post box is in a low wall at the corner of Whiteacre Lane.", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3455790698, - "lat": 53.3196577, - "lon": -3.8424601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LL30 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3455918245, - "lat": 52.9934827, - "lon": -4.0859005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3456190099, - "lat": 54.9172948, - "lon": -2.8187486, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA4 264", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3456313004, - "lat": 53.9818382, - "lon": -2.1061757, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3456313006, - "lat": 53.9736208, - "lon": -2.1389599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3456313009, - "lat": 53.9543565, - "lon": -2.1413565, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD23 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3456317063, - "lat": 50.6094671, - "lon": -2.0261971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2019-12-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH19 203D", - "ref:GB:uprn": "10015285074", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3456324641, - "lat": 53.9940628, - "lon": -1.5504293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 3456385341, - "lat": 52.7737748, - "lon": 0.9924875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR20 2055", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3456445378, - "lat": 52.7796917, - "lon": 1.0430439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR20 2067", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3456445380, - "lat": 52.7817089, - "lon": 1.0108633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3456446104, - "lat": 52.7838847, - "lon": 1.0123917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "NR20 2073D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3456458794, - "lat": 54.1563758, - "lon": -3.1814120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA15 137" - } -}, -{ - "type": "node", - "id": 3456482051, - "lat": 54.1587525, - "lon": -3.1797817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA15 41" - } -}, -{ - "type": "node", - "id": 3456864902, - "lat": 52.9133844, - "lon": -3.0767682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3456864907, - "lat": 52.9005469, - "lon": -3.0653920, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3457449289, - "lat": 51.3817630, - "lon": -0.0076230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 276", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3457524764, - "lat": 54.9814842, - "lon": -1.6039994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE2 11", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3457528702, - "lat": 52.4454896, - "lon": -1.8664219, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 261", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3457528703, - "lat": 52.4487078, - "lon": -1.8684251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 262", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3457528704, - "lat": 52.4515734, - "lon": -1.8730389, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 1364", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3457528714, - "lat": 52.4527784, - "lon": -1.8583462, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 934", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3457528716, - "lat": 52.4539930, - "lon": -1.8818443, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3457528717, - "lat": 52.4577806, - "lon": -1.8804029, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3457528718, - "lat": 52.4582318, - "lon": -1.8766641, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458109471, - "lat": 53.9638646, - "lon": -2.0305901, - "tags": { - "amenity": "post_box", - "ref": "BD23 156", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458109472, - "lat": 53.9630082, - "lon": -2.0257152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BD23 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458109480, - "lat": 53.9567868, - "lon": -2.0196092, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458191621, - "lat": 51.7781759, - "lon": -1.9575562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3458192125, - "lat": 51.8011157, - "lon": -1.9232516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3458337325, - "lat": 53.9231658, - "lon": -1.6721925, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5987484", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS21 546", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458337328, - "lat": 53.9114565, - "lon": -1.6919512, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/3455881", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS21 799", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458337329, - "lat": 53.9153634, - "lon": -1.6974954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LS21 240", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458337333, - "lat": 53.9493230, - "lon": -1.6830697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 792", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458337339, - "lat": 53.9730878, - "lon": -1.5930630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "note": "post box is by these houses not by the Smiths Arms as RM says", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3458487009, - "lat": 52.7045614, - "lon": 0.9899151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "note": "ref obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "NR20 2041", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3459022305, - "lat": 51.2301768, - "lon": -0.7895762, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU9 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459024080, - "lat": 51.2343554, - "lon": -0.7850379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-04-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "GU9 163", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459226396, - "lat": 52.6896377, - "lon": 0.9440361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1926", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459226397, - "lat": 52.6852784, - "lon": 0.9455376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR19 1927D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459237547, - "lat": 53.2209283, - "lon": -0.8243552, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3459263006, - "lat": 53.2124547, - "lon": -0.8168372, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3459269938, - "lat": 54.9899312, - "lon": -2.5415956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "CA8 50" - } -}, -{ - "type": "node", - "id": 3459280337, - "lat": 54.9774932, - "lon": -2.5307527, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA8 35" - } -}, -{ - "type": "node", - "id": 3459318485, - "lat": 54.9203663, - "lon": -2.5124682, - "tags": { - "amenity": "post_box", - "ref": "CA8 251" - } -}, -{ - "type": "node", - "id": 3459359520, - "lat": 54.9866673, - "lon": -2.8989506, - "tags": { - "amenity": "post_box", - "ref": "CA6 290" - } -}, -{ - "type": "node", - "id": 3459375561, - "lat": 54.8729379, - "lon": -1.6642628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH9 221", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3459409581, - "lat": 54.9651970, - "lon": -2.8162265, - "tags": { - "amenity": "post_box", - "ref": "CA6 92" - } -}, -{ - "type": "node", - "id": 3459422972, - "lat": 54.9548746, - "lon": -2.8200693, - "tags": { - "amenity": "post_box", - "ref": "CA6 94" - } -}, -{ - "type": "node", - "id": 3459453837, - "lat": 54.9411110, - "lon": -2.8067922, - "tags": { - "amenity": "post_box", - "ref": "CA6 442" - } -}, -{ - "type": "node", - "id": 3459559267, - "lat": 51.2324117, - "lon": -0.7773298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459656857, - "lat": 54.9276154, - "lon": -2.8638364, - "tags": { - "amenity": "post_box", - "ref": "CA6 170" - } -}, -{ - "type": "node", - "id": 3459971307, - "lat": 52.8052195, - "lon": -2.1164489, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ST16 24;ST16 924", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459971308, - "lat": 52.8052477, - "lon": -2.1164627, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ST16 18;ST16 918", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3459974443, - "lat": 54.0333688, - "lon": -1.5366409, - "tags": { - "amenity": "post_box", - "ref": "HG3 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187236, - "lat": 54.1226618, - "lon": -1.5319512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187237, - "lat": 54.1244727, - "lon": -1.5365534, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187238, - "lat": 54.1259194, - "lon": -1.5281970, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187240, - "lat": 54.1299708, - "lon": -1.5221066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 16", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187241, - "lat": 54.1380940, - "lon": -1.5278695, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187244, - "lat": 54.1853547, - "lon": -1.5617067, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HG4 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187256, - "lat": 54.1592208, - "lon": -1.5409541, - "tags": { - "amenity": "post_box", - "ref": "HG4 68", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460187273, - "lat": 54.2041127, - "lon": -1.5935827, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460383635, - "lat": 54.3123766, - "lon": -1.6607019, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460383638, - "lat": 54.3072514, - "lon": -1.6328580, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL8 148", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460383639, - "lat": 54.3046769, - "lon": -1.6265072, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460383642, - "lat": 54.2891844, - "lon": -1.5930706, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DL8 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460383645, - "lat": 54.2863693, - "lon": -1.5882656, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460383647, - "lat": 54.2614880, - "lon": -1.5298942, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3460675698, - "lat": 55.7730659, - "lon": -4.0294862, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3460701840, - "lat": 55.7761113, - "lon": -4.0328020, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3461237546, - "lat": 54.9148420, - "lon": -2.8971076, - "tags": { - "amenity": "post_box", - "ref": "CA6 23" - } -}, -{ - "type": "node", - "id": 3461245611, - "lat": 54.9224840, - "lon": -3.0815577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1043414002951047", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CA5 60", - "survey:date": "2022-06-11" - } -}, -{ - "type": "node", - "id": 3461245617, - "lat": 54.9223634, - "lon": -3.1021767, - "tags": { - "amenity": "post_box", - "ref": "CA5 18" - } -}, -{ - "type": "node", - "id": 3461312711, - "lat": 54.8120059, - "lon": -2.9534465, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA5 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3461366115, - "lat": 54.7970874, - "lon": -2.9552800, - "tags": { - "amenity": "post_box", - "ref": "CA5 196" - } -}, -{ - "type": "node", - "id": 3461384223, - "lat": 54.7857908, - "lon": -2.9423907, - "tags": { - "amenity": "post_box", - "ref": "CA5 168" - } -}, -{ - "type": "node", - "id": 3461411576, - "lat": 54.7829296, - "lon": -2.9532508, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA5 327", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3461420488, - "lat": 54.9195045, - "lon": -3.1301602, - "tags": { - "amenity": "post_box", - "ref": "CA7 57" - } -}, -{ - "type": "node", - "id": 3461425377, - "lat": 54.9477327, - "lon": -3.1864564, - "tags": { - "amenity": "post_box", - "ref": "CA7 167" - } -}, -{ - "type": "node", - "id": 3461426593, - "lat": 54.8725391, - "lon": -3.3867557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA7 192D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3461427786, - "lat": 54.8347547, - "lon": -3.3404989, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA7 285", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3461429849, - "lat": 54.7568460, - "lon": -3.2480540, - "tags": { - "amenity": "post_box", - "ref": "CA7 233" - } -}, -{ - "type": "node", - "id": 3461430911, - "lat": 54.8410831, - "lon": -3.2437015, - "tags": { - "amenity": "post_box", - "ref": "CA7 459" - } -}, -{ - "type": "node", - "id": 3461432098, - "lat": 54.8175442, - "lon": -3.1578980, - "tags": { - "amenity": "post_box", - "ref": "CA7 330" - } -}, -{ - "type": "node", - "id": 3461434562, - "lat": 54.8428707, - "lon": -3.1161151, - "tags": { - "amenity": "post_box", - "ref": "CA7 212" - } -}, -{ - "type": "node", - "id": 3461448363, - "lat": 54.6249135, - "lon": -3.3613733, - "tags": { - "amenity": "post_box", - "ref": "CA13 85" - } -}, -{ - "type": "node", - "id": 3461469105, - "lat": 54.7486696, - "lon": -3.2611786, - "tags": { - "amenity": "post_box", - "ref": "CA7 222" - } -}, -{ - "type": "node", - "id": 3461474049, - "lat": 54.6620951, - "lon": -3.2485124, - "tags": { - "amenity": "post_box", - "ref": "CA13 82" - } -}, -{ - "type": "node", - "id": 3461488993, - "lat": 54.6137756, - "lon": -3.3713935, - "tags": { - "amenity": "post_box", - "ref": "CA13 73" - } -}, -{ - "type": "node", - "id": 3461492159, - "lat": 54.5908342, - "lon": -3.3686450, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA13 95" - } -}, -{ - "type": "node", - "id": 3461515893, - "lat": 54.6005177, - "lon": -3.3198472, - "tags": { - "amenity": "post_box", - "ref": "CA13 122" - } -}, -{ - "type": "node", - "id": 3461533975, - "lat": 54.5873480, - "lon": -3.3136565, - "tags": { - "amenity": "post_box", - "ref": "CA13 99" - } -}, -{ - "type": "node", - "id": 3461551409, - "lat": 54.5655136, - "lon": -3.4165960, - "tags": { - "amenity": "post_box", - "ref": "CA14 52" - } -}, -{ - "type": "node", - "id": 3461573222, - "lat": 54.6033475, - "lon": -3.5318152, - "tags": { - "amenity": "post_box", - "ref": "CA14 134" - } -}, -{ - "type": "node", - "id": 3461573999, - "lat": 54.5885088, - "lon": -3.5429507, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA14 40" - } -}, -{ - "type": "node", - "id": 3461581288, - "lat": 54.6005415, - "lon": -3.5399758, - "tags": { - "amenity": "post_box", - "ref": "CA14 170" - } -}, -{ - "type": "node", - "id": 3462086367, - "lat": 50.8653866, - "lon": -1.0323896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3462099440, - "lat": 50.8682534, - "lon": -1.0039019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3462376121, - "lat": 53.2225199, - "lon": -0.7929389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3463492248, - "lat": 52.4270936, - "lon": -1.8414086, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3463492249, - "lat": 52.4327928, - "lon": -1.8402943, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 442", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3463505463, - "lat": 53.1635525, - "lon": -1.1811647, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3463573042, - "lat": 52.3473750, - "lon": -1.5733498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 255D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463583146, - "lat": 51.8312984, - "lon": -0.8163736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630694, - "lat": 51.9876760, - "lon": -0.9837461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630695, - "lat": 51.9880528, - "lon": -0.9840353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630696, - "lat": 51.9894703, - "lon": -0.9808034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "Inside Tesco supermarket", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630697, - "lat": 51.9908819, - "lon": -0.9818798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630698, - "lat": 51.9915224, - "lon": -0.9749680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630699, - "lat": 51.9937322, - "lon": -0.9898326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 181", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630700, - "lat": 51.9958070, - "lon": -0.9918792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 180", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630701, - "lat": 51.9970457, - "lon": -0.9819672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630702, - "lat": 51.9971414, - "lon": -0.9856521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630703, - "lat": 51.9973958, - "lon": -0.9899636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 176", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630704, - "lat": 51.9980317, - "lon": -0.9940988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463630705, - "lat": 51.9996045, - "lon": -0.9806607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-11", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463634175, - "lat": 52.3351885, - "lon": -1.5829263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 397D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463634179, - "lat": 52.3362755, - "lon": -1.5796698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 319", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463638744, - "lat": 52.3316976, - "lon": -1.5453132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463641802, - "lat": 52.0109843, - "lon": -0.9774114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463641803, - "lat": 52.0113598, - "lon": -0.9719178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463641804, - "lat": 52.0142542, - "lon": -0.9762670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-18" - } -}, -{ - "type": "node", - "id": 3463650267, - "lat": 52.2999633, - "lon": -1.5361512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-11", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463712295, - "lat": 51.3660464, - "lon": 0.5470514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463800393, - "lat": 51.3622401, - "lon": 0.5444127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 348D" - } -}, -{ - "type": "node", - "id": 3463800395, - "lat": 51.3445338, - "lon": 0.5401742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 434D" - } -}, -{ - "type": "node", - "id": 3463800493, - "lat": 51.3607375, - "lon": 0.5391546, - "tags": { - "addr:street": "Heron Way", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 405D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3463800594, - "lat": 51.3418547, - "lon": 0.5333535, - "tags": { - "addr:street": "Gould Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 355D" - } -}, -{ - "type": "node", - "id": 3463800595, - "lat": 51.3357638, - "lon": 0.5200337, - "tags": { - "addr:street": "Robin Hood Lane (Lower)", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 86" - } -}, -{ - "type": "node", - "id": 3463800793, - "lat": 51.3565792, - "lon": 0.5414985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3463800794, - "lat": 51.3523701, - "lon": 0.5393333, - "tags": { - "addr:street": "Archer Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 231D" - } -}, -{ - "type": "node", - "id": 3463800893, - "lat": 51.3483207, - "lon": 0.5390221, - "tags": { - "addr:street": "Lordswood Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 423" - } -}, -{ - "type": "node", - "id": 3463800995, - "lat": 51.3448357, - "lon": 0.5315688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 273D" - } -}, -{ - "type": "node", - "id": 3463800996, - "lat": 51.3392446, - "lon": 0.5183405, - "tags": { - "addr:street": "Victoria Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3463801094, - "lat": 51.3403922, - "lon": 0.5262425, - "tags": { - "addr:street": "Walderslade Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3463801614, - "lat": 52.9013444, - "lon": -1.1850100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 387D", - "ref:GB:uprn": "10015342271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing" - } -}, -{ - "type": "node", - "id": 3463801626, - "lat": 52.9077171, - "lon": -1.1815326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG11 367D", - "ref:GB:uprn": "10015425125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3464154053, - "lat": 52.4951726, - "lon": -1.8954141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "B6 8006" - } -}, -{ - "type": "node", - "id": 3464154055, - "lat": 52.4951832, - "lon": -1.8954101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "B6 8005" - } -}, -{ - "type": "node", - "id": 3464154057, - "lat": 52.4951955, - "lon": -1.8954074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "B6 8004" - } -}, -{ - "type": "node", - "id": 3464267607, - "lat": 50.8452691, - "lon": -1.0950539, - "tags": { - "addr:city": "Northarbour", - "addr:housename": "Tesco instore by Customer Services", - "addr:street": "Binnacle Way", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3464312227, - "lat": 50.8497864, - "lon": -1.0949214, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "ref": "PO6 3302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464312228, - "lat": 50.8497794, - "lon": -1.0948085, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "ref": "PO6 3301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464314928, - "lat": 50.8511963, - "lon": -1.1074484, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "PO6 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3464339251, - "lat": 50.8792513, - "lon": -1.0273965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464340235, - "lat": 50.8716038, - "lon": -1.0245842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3464352912, - "lat": 50.8764944, - "lon": -1.0287135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3464353718, - "lat": 50.8736248, - "lon": -1.0269669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-09", - "old_ref": "PO7 327", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3464354173, - "lat": 50.8722199, - "lon": -1.0322661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-07", - "old_ref": "PO7 130", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464354333, - "lat": 50.8750472, - "lon": -1.0187752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464354683, - "lat": 50.8724535, - "lon": -1.0374052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "last_checked": "2020-03-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO7 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464355229, - "lat": 50.8697489, - "lon": -1.0437138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is on the northbound side of this road so I have moved the icon to the correct location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO7 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464355298, - "lat": 50.8750600, - "lon": -1.0385693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464359337, - "lat": 50.8904255, - "lon": -1.0110391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 238D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3464362254, - "lat": 50.8940129, - "lon": -1.0154562, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:type": "lamp", - "ref": "PO8 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464368966, - "lat": 50.8950280, - "lon": -1.0182927, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO8 3801;PO8 3802", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464369218, - "lat": 50.8944352, - "lon": -1.0280282, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "PO8 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464972404, - "lat": 50.9247521, - "lon": -1.0126247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464986383, - "lat": 51.0957472, - "lon": -1.1206864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464988429, - "lat": 51.3712129, - "lon": -0.3904000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 60D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3464992205, - "lat": 51.1203818, - "lon": -1.0916220, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU34 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3464992207, - "lat": 51.1305735, - "lon": -1.0688133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465085034, - "lat": 52.0758665, - "lon": -0.8479356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK19 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465085035, - "lat": 52.0760666, - "lon": -0.8435391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK19 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465085036, - "lat": 52.0914437, - "lon": -0.8346133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465085037, - "lat": 52.0929939, - "lon": -0.8379263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "note": "This reference is not on the Royal Mail list but double-checked against photograph taken at the time.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465085038, - "lat": 52.0936272, - "lon": -0.8309267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465085039, - "lat": 52.0952862, - "lon": -0.8389181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465085040, - "lat": 52.1124868, - "lon": -0.8328269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465088984, - "lat": 52.0609377, - "lon": -0.8661544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465088985, - "lat": 52.0631023, - "lon": -0.8679773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465088986, - "lat": 52.0632392, - "lon": -0.8650533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK19 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465099221, - "lat": 52.0245780, - "lon": -0.8753304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK19 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465099222, - "lat": 52.0321158, - "lon": -0.8352664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465099223, - "lat": 52.0389091, - "lon": -0.8438097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465099224, - "lat": 52.0487233, - "lon": -0.8639873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK19 99", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-04-19" - } -}, -{ - "type": "node", - "id": 3465158323, - "lat": 52.7327038, - "lon": -1.7494480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE13 1130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465319666, - "lat": 50.8960130, - "lon": -1.0405912, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PO8 347", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3465334363, - "lat": 50.8896794, - "lon": -1.0341341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465338167, - "lat": 50.8894215, - "lon": -1.0421361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 240" - } -}, -{ - "type": "node", - "id": 3465338392, - "lat": 50.8898682, - "lon": -1.0370614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO7 346" - } -}, -{ - "type": "node", - "id": 3465342224, - "lat": 50.8921901, - "lon": -1.0364690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465347607, - "lat": 50.8960824, - "lon": -1.0346206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465379130, - "lat": 50.8675940, - "lon": -1.0301806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-26", - "note": "I passed this postbox on Sunday 26.04.2020 and I added the collection plate and I have moved the icon to the correct location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465384378, - "lat": 50.8929274, - "lon": -1.0260689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 215", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3465397851, - "lat": 50.8962650, - "lon": -1.0226673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465399209, - "lat": 50.8979889, - "lon": -1.0163145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 205", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3465413127, - "lat": 51.1839745, - "lon": -0.7503597, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-15", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "wall", - "ref": "GU10 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465417673, - "lat": 50.7890192, - "lon": -1.1136760, - "tags": { - "addr:housename": "Fort Blockhouse Post Office", - "amenity": "post_box", - "ref": "PO12 45" - } -}, -{ - "type": "node", - "id": 3465421650, - "lat": 50.7909555, - "lon": -1.1209201, - "tags": { - "addr:city": "Gosport", - "addr:housename": "Haslar Marina", - "addr:street": "Haslar Road", - "amenity": "post_box", - "ref": "PO12 365" - } -}, -{ - "type": "node", - "id": 3465440333, - "lat": 50.7933301, - "lon": -1.1194226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO12 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465456805, - "lat": 50.7807861, - "lon": -1.1386098, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "PO12 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465496484, - "lat": 50.7893343, - "lon": -1.1625874, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "PO12 69", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3465511025, - "lat": 50.7940532, - "lon": -1.1575945, - "tags": { - "amenity": "post_box", - "ref": "PO12 18" - } -}, -{ - "type": "node", - "id": 3465512098, - "lat": 50.7978306, - "lon": -1.1554556, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO12 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465514178, - "lat": 50.7986646, - "lon": -1.1488451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "ref": "PO12 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465514179, - "lat": 50.7991088, - "lon": -1.1551966, - "tags": { - "amenity": "post_box", - "ref": "PO12 71" - } -}, -{ - "type": "node", - "id": 3465520122, - "lat": 50.8036612, - "lon": -1.1544228, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3465523435, - "lat": 50.8059891, - "lon": -1.1567886, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO12 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465525031, - "lat": 50.8085708, - "lon": -1.1530294, - "tags": { - "amenity": "post_box", - "mapillary": "472968837144687", - "post_box:type": "pillar", - "ref": "PO12 22", - "survey:date": "2019-12-28" - } -}, -{ - "type": "node", - "id": 3465526199, - "lat": 50.8110114, - "lon": -1.1519619, - "tags": { - "amenity": "post_box", - "ref": "PO12 6" - } -}, -{ - "type": "node", - "id": 3465800846, - "lat": 50.7675377, - "lon": 0.2922295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "name": "Pier", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 758", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465804757, - "lat": 50.7656693, - "lon": 0.2902199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Trinity Place", - "old_ref": "BN21 740", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 740D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465856966, - "lat": 53.0005910, - "lon": -1.1358126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG5 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465862347, - "lat": 53.0026631, - "lon": -1.1270766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "post_box:type": "pillar", - "ref": "NG5 4230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465862362, - "lat": 53.0028104, - "lon": -1.1223755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 422D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465902712, - "lat": 50.7680546, - "lon": 0.2839495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPMET-LC-NS", - "collection_times": "Mo-Fr 18:00", - "name": "Cornfield Road Business Box", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN21 1168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465902713, - "lat": 50.7680753, - "lon": 0.2839399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "name": "Cornfield Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN21 743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465935630, - "lat": 53.9976174, - "lon": -2.8492789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA2 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3465971382, - "lat": 50.7684903, - "lon": 0.2872375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "name": "Terminus Road Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "BN21 745;BN21 7451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3465983498, - "lat": 50.7691960, - "lon": 0.2787718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "name": "Southfields Rd Callers Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN21 876", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466004077, - "lat": 51.4474869, - "lon": 0.2902140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "name": "Knockhall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA9 101D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466004078, - "lat": 51.4450881, - "lon": 0.2861594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "name": "Mounts Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA9 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466017079, - "lat": 51.4497973, - "lon": 0.2949080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "drive_through": "no", - "name": "Knockhall Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA9 55", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466169170, - "lat": 51.4530822, - "lon": 0.2845527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "name": "High Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA9 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466174169, - "lat": 51.4521080, - "lon": 0.2774923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "name": "ASDA", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA9 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466182466, - "lat": 51.4524124, - "lon": 0.2792744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "name": "Eagles Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA9 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466298980, - "lat": 51.1635833, - "lon": -0.9482634, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU34 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466302043, - "lat": 51.1415863, - "lon": -1.0640931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466302044, - "lat": 51.1481496, - "lon": -1.0571506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "363537352036731", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-30" - } -}, -{ - "type": "node", - "id": 3466302045, - "lat": 51.1582843, - "lon": -1.0454464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU34 65", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3466305195, - "lat": 51.1779367, - "lon": -1.0348154, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU34 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466307332, - "lat": 51.1843155, - "lon": -0.9875470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "322387784000186", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 3466307334, - "lat": 51.1843529, - "lon": -0.9830778, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU34 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466340042, - "lat": 52.8533685, - "lon": 1.2174898, - "tags": { - "amenity": "post_box", - "ref": "NR11 1143D" - } -}, -{ - "type": "node", - "id": 3466365975, - "lat": 51.1326079, - "lon": -0.8876369, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466365977, - "lat": 51.1379723, - "lon": -0.8548290, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466365978, - "lat": 51.1381422, - "lon": -0.8750103, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU35 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3466384642, - "lat": 53.0057069, - "lon": -1.1269011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 11:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG5 7", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466385229, - "lat": 53.0069408, - "lon": -1.1209514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 420", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3466531677, - "lat": 53.0131565, - "lon": -1.1215073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG5 416D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467397586, - "lat": 54.6146137, - "lon": -2.5171953, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA16 150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3467413168, - "lat": 54.6095706, - "lon": -2.5200676, - "tags": { - "amenity": "post_box", - "ref": "CA16 216" - } -}, -{ - "type": "node", - "id": 3467447647, - "lat": 54.5928337, - "lon": -2.5249713, - "tags": { - "amenity": "post_box", - "ref": "CA16 73" - } -}, -{ - "type": "node", - "id": 3467459856, - "lat": 54.5988659, - "lon": -2.4995565, - "tags": { - "amenity": "post_box", - "ref": "CA16 242" - } -}, -{ - "type": "node", - "id": 3467468750, - "lat": 54.6028765, - "lon": -2.4946765, - "tags": { - "amenity": "post_box", - "note": "In the wall of a private house.", - "ref": "CA16 212" - } -}, -{ - "type": "node", - "id": 3467525396, - "lat": 54.5801314, - "lon": -2.4153561, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA16 193" - } -}, -{ - "type": "node", - "id": 3467537632, - "lat": 54.5712547, - "lon": -2.4301889, - "tags": { - "amenity": "post_box", - "ref": "CA16 286" - } -}, -{ - "type": "node", - "id": 3467538659, - "lat": 54.5641188, - "lon": -2.4482352, - "tags": { - "amenity": "post_box", - "ref": "CA16 177" - } -}, -{ - "type": "node", - "id": 3467562098, - "lat": 52.4619775, - "lon": -1.8130267, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-22", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "B26 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467569799, - "lat": 52.4707174, - "lon": -1.8088212, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 1053", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467569800, - "lat": 52.4750273, - "lon": -1.8068338, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 478D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467570744, - "lat": 52.4766743, - "lon": -1.8105091, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 1202D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467570745, - "lat": 52.4782289, - "lon": -1.8141769, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 886", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3467572155, - "lat": 52.4678347, - "lon": -1.8204264, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 444", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467572156, - "lat": 52.4711700, - "lon": -1.8234272, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 1237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467572157, - "lat": 52.4749242, - "lon": -1.8177230, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 445", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467575068, - "lat": 52.4736099, - "lon": -1.8374275, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 751D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467575069, - "lat": 52.4762087, - "lon": -1.8387816, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B9 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467575070, - "lat": 52.4804624, - "lon": -1.8316576, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "post_box:type": "pillar", - "ref": "B8 409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3467704260, - "lat": 54.5738773, - "lon": -2.4952408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA16 314" - } -}, -{ - "type": "node", - "id": 3467704514, - "lat": 54.5812242, - "lon": -2.4909446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA16 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3467704515, - "lat": 54.5809479, - "lon": -2.4861532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA16 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3467704517, - "lat": 54.5778321, - "lon": -2.4806815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA16 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3467708612, - "lat": 54.5773797, - "lon": -2.4840838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CA16 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3467708613, - "lat": 54.5769907, - "lon": -2.4910073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "post_box:type": "wall", - "ref": "CA16 158", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3467717700, - "lat": 54.5521714, - "lon": -2.5040232, - "tags": { - "amenity": "post_box", - "ref": "CA16 321" - } -}, -{ - "type": "node", - "id": 3467726056, - "lat": 54.5132014, - "lon": -2.4940347, - "tags": { - "amenity": "post_box", - "ref": "CA16 260" - } -}, -{ - "type": "node", - "id": 3467730345, - "lat": 54.5324557, - "lon": -2.5205611, - "tags": { - "amenity": "post_box", - "ref": "CA16 267" - } -}, -{ - "type": "node", - "id": 3467786741, - "lat": 54.5108416, - "lon": -2.4983296, - "tags": { - "amenity": "post_box", - "ref": "CA16 329" - } -}, -{ - "type": "node", - "id": 3467795540, - "lat": 54.4910405, - "lon": -3.5897907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CA27 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3467801601, - "lat": 54.5500491, - "lon": -2.4636841, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA16 91", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3467819246, - "lat": 54.4907104, - "lon": -3.6032230, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CA27 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3467974756, - "lat": 53.7692591, - "lon": -2.3863593, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3468183405, - "lat": 51.1243060, - "lon": -0.8192337, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU35 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3468183408, - "lat": 51.1394943, - "lon": -0.8375599, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU35 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3468198701, - "lat": 51.0972126, - "lon": -0.8127270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU30 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3468200979, - "lat": 51.0804698, - "lon": -0.8047264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU30 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3468211535, - "lat": 51.4660714, - "lon": -0.0125119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "yes", - "note": "By steps to carpark lower level", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE13 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3468251486, - "lat": 50.6821822, - "lon": -2.2368395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH20 90D", - "ref:GB:uprn": "10015321892", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3468428350, - "lat": 50.6834840, - "lon": -2.1824669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 105D", - "ref:GB:uprn": "10015408079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3469134051, - "lat": 54.7278139, - "lon": -2.7098547, - "tags": { - "amenity": "post_box", - "ref": "CA11 198" - } -}, -{ - "type": "node", - "id": 3469169422, - "lat": 54.7229209, - "lon": -2.6986957, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3469245117, - "lat": 54.9909373, - "lon": -2.8425729, - "tags": { - "amenity": "post_box", - "ref": "CA6 162" - } -}, -{ - "type": "node", - "id": 3469253360, - "lat": 54.9314845, - "lon": -2.7952778, - "tags": { - "amenity": "post_box", - "ref": "CA6 173" - } -}, -{ - "type": "node", - "id": 3469264137, - "lat": 54.9307424, - "lon": -2.8440720, - "tags": { - "amenity": "post_box", - "ref": "CA6 15" - } -}, -{ - "type": "node", - "id": 3469319447, - "lat": 55.0611152, - "lon": -2.6815394, - "tags": { - "amenity": "post_box", - "ref": "CA6 308" - } -}, -{ - "type": "node", - "id": 3469380975, - "lat": 53.1789885, - "lon": -3.5965533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "geograph:id": "1157932", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL16 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3469434341, - "lat": 53.7556761, - "lon": -3.0205213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3469491912, - "lat": 54.6144859, - "lon": -3.5464832, - "tags": { - "amenity": "post_box", - "ref": "CA14 36" - } -}, -{ - "type": "node", - "id": 3469491926, - "lat": 54.6160171, - "lon": -3.5416361, - "tags": { - "amenity": "post_box", - "ref": "CA14 32" - } -}, -{ - "type": "node", - "id": 3469560356, - "lat": 54.6107276, - "lon": -3.5560736, - "tags": { - "amenity": "post_box", - "ref": "CA14 35" - } -}, -{ - "type": "node", - "id": 3469560357, - "lat": 54.6152015, - "lon": -3.5569189, - "tags": { - "amenity": "post_box", - "ref": "CA14 176" - } -}, -{ - "type": "node", - "id": 3469593550, - "lat": 54.6141037, - "lon": -3.5634980, - "tags": { - "amenity": "post_box", - "ref": "CA14 33" - } -}, -{ - "type": "node", - "id": 3469636925, - "lat": 54.6189633, - "lon": -3.5662117, - "tags": { - "amenity": "post_box", - "ref": "CA14 126" - } -}, -{ - "type": "node", - "id": 3469636950, - "lat": 54.6194862, - "lon": -3.5606301, - "tags": { - "amenity": "post_box", - "ref": "CA14 172" - } -}, -{ - "type": "node", - "id": 3469648874, - "lat": 54.6402560, - "lon": -3.5651066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "Lamp box (CA14 5) has been replaced by a type b pillar (CA14 21)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CA14 21" - } -}, -{ - "type": "node", - "id": 3469648875, - "lat": 54.6371559, - "lon": -3.5675988, - "tags": { - "amenity": "post_box", - "ref": "CA14 7" - } -}, -{ - "type": "node", - "id": 3469673882, - "lat": 54.6642785, - "lon": -3.5287901, - "tags": { - "amenity": "post_box", - "ref": "CA14 105" - } -}, -{ - "type": "node", - "id": 3469675024, - "lat": 54.6461761, - "lon": -3.5265786, - "tags": { - "amenity": "post_box", - "ref": "CA14 127" - } -}, -{ - "type": "node", - "id": 3469675027, - "lat": 54.6458141, - "lon": -3.5217144, - "tags": { - "amenity": "post_box", - "ref": "CA14 75" - } -}, -{ - "type": "node", - "id": 3469677860, - "lat": 54.2576151, - "lon": -1.4243246, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3469988462, - "lat": 52.4599394, - "lon": -1.8239520, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 966D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3470062806, - "lat": 54.5487664, - "lon": -1.9076412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL12 277", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3470062834, - "lat": 54.9326017, - "lon": -2.6374628, - "tags": { - "amenity": "post_box", - "ref": "CA8 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3470423870, - "lat": 51.5394356, - "lon": -2.6182002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS35 1045", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3470536868, - "lat": 50.9596462, - "lon": -0.6804269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3471028948, - "lat": 51.3817770, - "lon": -0.0036780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 318", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3471055207, - "lat": 54.9664820, - "lon": -2.1001762, - "tags": { - "amenity": "post_box", - "ref": "NE46 21" - } -}, -{ - "type": "node", - "id": 3471133528, - "lat": 51.8791628, - "lon": -1.2304033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "no ref visible on collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471194904, - "lat": 51.3704741, - "lon": -0.8566451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471194905, - "lat": 51.3589608, - "lon": -0.8580694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3471194906, - "lat": 51.3486122, - "lon": -0.8598906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3471564959, - "lat": 52.4405236, - "lon": -1.7918346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 824D", - "royal_cypher": "EIIR", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471565444, - "lat": 52.4413589, - "lon": -1.8004520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 658D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471567959, - "lat": 52.4468615, - "lon": -1.7842232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 22:30", - "post_box:type": "pillar", - "ref": "B92 931", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471570985, - "lat": 52.4337778, - "lon": -1.7932055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471572564, - "lat": 52.4344236, - "lon": -1.7847506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 830", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471578278, - "lat": 52.4379801, - "lon": -1.7824295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471579540, - "lat": 52.4425731, - "lon": -1.7848285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "B92 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471591082, - "lat": 52.4482496, - "lon": -1.7740087, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 992D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471620623, - "lat": 52.4486695, - "lon": -1.7666654, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 1017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471620639, - "lat": 52.4523166, - "lon": -1.7703124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B26 656", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471621099, - "lat": 52.4576710, - "lon": -1.7675680, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 833D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Warwicks Aerial Imagery OGLv2" - } -}, -{ - "type": "node", - "id": 3471627181, - "lat": 52.4567243, - "lon": -1.7805854, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 709", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3471631051, - "lat": 52.4600770, - "lon": -1.7794480, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 859D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471633857, - "lat": 52.4612121, - "lon": -1.7853129, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 1031", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471636150, - "lat": 52.4593671, - "lon": -1.7912098, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 700", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471636151, - "lat": 52.4605100, - "lon": -1.7963846, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 993D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471636590, - "lat": 52.4633825, - "lon": -1.7951316, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 844D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471640793, - "lat": 52.4627783, - "lon": -1.7747696, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 910", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471640795, - "lat": 52.4644469, - "lon": -1.7758696, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 365", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3471640796, - "lat": 52.4673787, - "lon": -1.7811989, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 875D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472046335, - "lat": 55.9891262, - "lon": -3.9478689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK4 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472046336, - "lat": 55.9862494, - "lon": -3.9521362, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472627905, - "lat": 52.4204621, - "lon": -1.8314968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "B90 1168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472640565, - "lat": 52.4144229, - "lon": -1.8340713, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "B90 87D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472641360, - "lat": 52.4112861, - "lon": -1.8351637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 336", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472645700, - "lat": 52.4219646, - "lon": -1.8555050, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472652551, - "lat": 52.4179278, - "lon": -1.8597001, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "B14 747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3472657781, - "lat": 52.4171507, - "lon": -1.8645274, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 514D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Warwicks CC aerial imagery 2013" - } -}, -{ - "type": "node", - "id": 3472771779, - "lat": 54.5758546, - "lon": -2.4508888, - "tags": { - "amenity": "post_box", - "ref": "CA16 174" - } -}, -{ - "type": "node", - "id": 3472804064, - "lat": 54.5399868, - "lon": -2.4199088, - "tags": { - "amenity": "post_box", - "ref": "CA16 44" - } -}, -{ - "type": "node", - "id": 3472859478, - "lat": 54.5192460, - "lon": -2.4144047, - "tags": { - "amenity": "post_box", - "ref": "CA16 46" - } -}, -{ - "type": "node", - "id": 3472867958, - "lat": 54.4920877, - "lon": -2.4591283, - "tags": { - "amenity": "post_box", - "ref": "CA16 315" - } -}, -{ - "type": "node", - "id": 3472904350, - "lat": 54.6440146, - "lon": -2.5083587, - "tags": { - "amenity": "post_box", - "ref": "CA16 273" - } -}, -{ - "type": "node", - "id": 3472959584, - "lat": 54.7872554, - "lon": -2.4228712, - "tags": { - "amenity": "post_box", - "ref": "CA9 188" - } -}, -{ - "type": "node", - "id": 3472993993, - "lat": 54.8008121, - "lon": -2.3691928, - "tags": { - "amenity": "post_box", - "ref": "CA9 252" - } -}, -{ - "type": "node", - "id": 3473001765, - "lat": 54.8061111, - "lon": -2.3776445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA9 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3473008484, - "lat": 51.3226521, - "lon": -0.7628653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "GU15 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3473039805, - "lat": 54.9344743, - "lon": -2.7030647, - "tags": { - "amenity": "post_box", - "ref": "CA8 353" - } -}, -{ - "type": "node", - "id": 3473083724, - "lat": 50.8645739, - "lon": -1.0032362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3473112195, - "lat": 54.9313113, - "lon": -2.6765281, - "tags": { - "amenity": "post_box", - "ref": "CA8 33" - } -}, -{ - "type": "node", - "id": 3473354799, - "lat": 54.9259817, - "lon": -2.6461174, - "tags": { - "amenity": "post_box", - "ref": "CA8 80" - } -}, -{ - "type": "node", - "id": 3473372244, - "lat": 54.9274265, - "lon": -2.5990377, - "tags": { - "amenity": "post_box", - "ref": "CA8 403" - } -}, -{ - "type": "node", - "id": 3473392457, - "lat": 54.9240882, - "lon": -2.5644596, - "tags": { - "amenity": "post_box", - "ref": "CA8 250" - } -}, -{ - "type": "node", - "id": 3473410702, - "lat": 54.9217471, - "lon": -2.5469981, - "tags": { - "amenity": "post_box", - "ref": "CA8 247" - } -}, -{ - "type": "node", - "id": 3473441447, - "lat": 56.6974834, - "lon": -3.7325048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 14D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3473533348, - "lat": 51.3923696, - "lon": 0.0018148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3474090681, - "lat": 55.9110356, - "lon": -3.4989528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "opening_hours": "Mo-Fr 15:15-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH54 93P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3474090682, - "lat": 55.9110819, - "lon": -3.4989819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3474583526, - "lat": 53.8192155, - "lon": -3.0543189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-08-05", - "collection_times": "Mo-Fr 07:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY1 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3474653994, - "lat": 54.8661633, - "lon": -2.5034466, - "tags": { - "amenity": "post_box", - "ref": "CA8 253" - } -}, -{ - "type": "node", - "id": 3474942693, - "lat": 50.7115902, - "lon": -3.5038539, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3475053805, - "lat": 51.4746167, - "lon": -0.1742655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW11 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3475286688, - "lat": 55.8909626, - "lon": -3.5744815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 89", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3475314598, - "lat": 53.8178654, - "lon": -3.0487159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3475315847, - "lat": 51.3192104, - "lon": -0.5587436, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-28", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3475315848, - "lat": 51.3201884, - "lon": -0.5564400, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "last_check": "2018-10-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU21 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3475315849, - "lat": 51.3211548, - "lon": -0.5576178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU21 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3475315850, - "lat": 51.3306555, - "lon": -0.5346512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 198", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3475315852, - "lat": 51.3336753, - "lon": -0.5290563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3475315858, - "lat": 51.3362116, - "lon": -0.5214873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3156589694608012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU21 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 3475584088, - "lat": 50.7086142, - "lon": -3.5073913, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476066003, - "lat": 53.9204489, - "lon": -3.0167083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3476066004, - "lat": 53.9212114, - "lon": -3.0150006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3476285009, - "lat": 51.7414515, - "lon": -0.4953489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476285010, - "lat": 51.7430129, - "lon": -0.4899777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476285012, - "lat": 51.7473668, - "lon": -0.4914147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476285013, - "lat": 51.7503892, - "lon": -0.4722714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "note": "Inside WH Smith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476285014, - "lat": 51.7517115, - "lon": -0.4812084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476285015, - "lat": 51.7535810, - "lon": -0.4838176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476285016, - "lat": 51.7563862, - "lon": -0.4779911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP1 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-04-25" - } -}, -{ - "type": "node", - "id": 3476322771, - "lat": 52.2938489, - "lon": -1.9195953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476434389, - "lat": 52.7453555, - "lon": -1.1747588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "182800383716251", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LE12 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-30" - } -}, -{ - "type": "node", - "id": 3476627893, - "lat": 53.2870645, - "lon": -0.3024836, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3476633856, - "lat": 52.4111831, - "lon": -1.5783846, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV5 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476633858, - "lat": 52.4155450, - "lon": -1.5787346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476633859, - "lat": 52.4178679, - "lon": -1.5994092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 364D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 3476746025, - "lat": 52.4329560, - "lon": -1.6014636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV7 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476746026, - "lat": 52.4338123, - "lon": -1.6115799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV5 241D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476842349, - "lat": 52.3670178, - "lon": -1.6418709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "note": "Faces pub, not the road!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476842350, - "lat": 52.3869003, - "lon": -1.6431274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV7 115D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476842351, - "lat": 52.3919113, - "lon": -1.6492830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV7 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476842352, - "lat": 52.3919156, - "lon": -1.6492691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV7 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3476843313, - "lat": 51.3717247, - "lon": 0.5109852, - "tags": { - "addr:street": "Pattens Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 254" - } -}, -{ - "type": "node", - "id": 3476843704, - "lat": 51.3791290, - "lon": 0.5194269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME4 325D" - } -}, -{ - "type": "node", - "id": 3476846003, - "lat": 51.3664830, - "lon": 0.5230926, - "tags": { - "addr:street": "Letchworth Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 248D" - } -}, -{ - "type": "node", - "id": 3476846200, - "lat": 51.3824733, - "lon": 0.5203953, - "tags": { - "addr:street": "Manor Road", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME4 101", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-03" - } -}, -{ - "type": "node", - "id": 3476846201, - "lat": 51.3771126, - "lon": 0.5202790, - "tags": { - "addr:street": "Rochester Street", - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME4 55D", - "source": "survey", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 3476847206, - "lat": 51.3810498, - "lon": 0.5079308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 147" - } -}, -{ - "type": "node", - "id": 3477387433, - "lat": 51.6818237, - "lon": -2.1755265, - "tags": { - "amenity": "post_box", - "ref": "GL8 220" - } -}, -{ - "type": "node", - "id": 3477980768, - "lat": 51.1007580, - "lon": -0.8760739, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU35 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3478951074, - "lat": 51.1377704, - "lon": -0.6205051, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3479908702, - "lat": 50.3315697, - "lon": -4.7561561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3479969414, - "lat": 50.5063990, - "lon": -4.1931332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3479982631, - "lat": 54.2554341, - "lon": -3.1703744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA17 123" - } -}, -{ - "type": "node", - "id": 3481185285, - "lat": 54.9219329, - "lon": -2.6949174, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA8 306", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3481196692, - "lat": 54.9308027, - "lon": -2.6053611, - "tags": { - "amenity": "post_box", - "ref": "CA8 71" - } -}, -{ - "type": "node", - "id": 3481196793, - "lat": 54.8827199, - "lon": -2.5072313, - "tags": { - "amenity": "post_box", - "ref": "CA8 289" - } -}, -{ - "type": "node", - "id": 3481196794, - "lat": 54.8793205, - "lon": -2.5031556, - "tags": { - "amenity": "post_box", - "ref": "CA8 248" - } -}, -{ - "type": "node", - "id": 3481211367, - "lat": 54.9108216, - "lon": -2.6531090, - "tags": { - "amenity": "post_box", - "ref": "CA8 339" - } -}, -{ - "type": "node", - "id": 3481246655, - "lat": 54.9006806, - "lon": -2.7238075, - "tags": { - "amenity": "post_box", - "ref": "CA8 44" - } -}, -{ - "type": "node", - "id": 3481561932, - "lat": 54.8492140, - "lon": -2.7662066, - "tags": { - "amenity": "post_box", - "ref": "CA8 61" - } -}, -{ - "type": "node", - "id": 3481565308, - "lat": 54.8577678, - "lon": -2.7431186, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA8 172", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3481605097, - "lat": 54.8347474, - "lon": -2.6872569, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3481706487, - "lat": 54.5069605, - "lon": -3.5223192, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA23 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3482098113, - "lat": 52.9633367, - "lon": -1.1181130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG3 224D", - "ref:GB:uprn": "10015285629", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3482098114, - "lat": 52.9634083, - "lon": -1.0989194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "NG4 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3482098119, - "lat": 52.9652685, - "lon": -1.0902143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3482263394, - "lat": 51.1976145, - "lon": -3.4692737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3482359884, - "lat": 51.2013064, - "lon": -3.5312876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3482419344, - "lat": 50.8602680, - "lon": -0.9960289, - "tags": { - "addr:city": "Havant, Hampshire", - "addr:street": "Hook's Farm Way", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "ref": "PO9 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3482421188, - "lat": 50.8561698, - "lon": -0.9924213, - "tags": { - "addr:city": "Havant, Hampshire", - "addr:street": "James Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "old_ref": "PO9 76", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3482432777, - "lat": 50.8559598, - "lon": -0.9893254, - "tags": { - "addr:city": "Havant, Hampshire", - "addr:street": "Chidham Square", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "old_ref": "PO9 144", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3482508696, - "lat": 51.2079899, - "lon": -3.5839945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3482508698, - "lat": 51.2089699, - "lon": -3.5975310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3482508699, - "lat": 51.2090193, - "lon": -3.5933681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3482636494, - "lat": 51.6253958, - "lon": -4.0339140, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3482750460, - "lat": 55.6786032, - "lon": -3.7738083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ML11 82", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3482750465, - "lat": 55.6808050, - "lon": -3.7685637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML11 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3482750476, - "lat": 55.6733789, - "lon": -3.7801265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML11 2" - } -}, -{ - "type": "node", - "id": 3482750477, - "lat": 55.6756997, - "lon": -3.7810234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ML11 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3482817129, - "lat": 51.2137386, - "lon": -3.8411882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX35 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3482989576, - "lat": 51.0392839, - "lon": -3.5320759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA22 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3482989579, - "lat": 51.0396375, - "lon": -3.5427108, - "tags": { - "amenity": "post_box", - "collection_plate": "CP10", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA22 125D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3483584882, - "lat": 54.5137399, - "lon": -3.5396965, - "tags": { - "amenity": "post_box", - "ref": "CA24 86" - } -}, -{ - "type": "node", - "id": 3483584883, - "lat": 54.5145869, - "lon": -3.5473373, - "tags": { - "amenity": "post_box", - "ref": "CA24 62" - } -}, -{ - "type": "node", - "id": 3483642813, - "lat": 54.4533748, - "lon": -3.5585116, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA22 70" - } -}, -{ - "type": "node", - "id": 3483854500, - "lat": 55.0461627, - "lon": -2.9321822, - "tags": { - "amenity": "post_box", - "ref": "CA6 126" - } -}, -{ - "type": "node", - "id": 3483869926, - "lat": 55.0577225, - "lon": -2.9225472, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA6 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3484089704, - "lat": 54.9957567, - "lon": -2.7221943, - "tags": { - "amenity": "post_box", - "ref": "CA8 132" - } -}, -{ - "type": "node", - "id": 3484113818, - "lat": 55.0022443, - "lon": -2.6788267, - "tags": { - "amenity": "post_box", - "ref": "CA8 483" - } -}, -{ - "type": "node", - "id": 3484118240, - "lat": 55.0153786, - "lon": -2.7048191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA8 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3484133179, - "lat": 55.0122178, - "lon": -2.7284240, - "tags": { - "amenity": "post_box", - "ref": "CA8 140" - } -}, -{ - "type": "node", - "id": 3484275605, - "lat": 54.8708870, - "lon": -2.9176397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA2 440" - } -}, -{ - "type": "node", - "id": 3484275617, - "lat": 54.8716260, - "lon": -2.9219650, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 149", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3484275624, - "lat": 54.8745715, - "lon": -2.9212236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA2 303" - } -}, -{ - "type": "node", - "id": 3485291582, - "lat": 52.5797271, - "lon": 1.1263989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR18 1805", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485353792, - "lat": 52.5770802, - "lon": 1.1149942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR18 1816D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485354496, - "lat": 52.5784281, - "lon": 1.1110730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1803D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485354518, - "lat": 52.5714887, - "lon": 1.1104804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "colour": "gray", - "note": "This postbox is not red but rather is a stainless steel box mounted in the wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "NR18 1800", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3485354526, - "lat": 52.5803547, - "lon": 1.1198516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1808D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485382226, - "lat": 51.2890460, - "lon": -2.8368994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS26 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485385022, - "lat": 52.5709348, - "lon": 1.1168905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1809D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485385037, - "lat": 52.5699819, - "lon": 1.1136701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR18 1801", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3485385072, - "lat": 52.5764984, - "lon": 1.1270909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR18 1822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485385079, - "lat": 52.5740256, - "lon": 1.1215924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR18 1811", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3485385387, - "lat": 52.5558461, - "lon": 1.0891159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1852", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485385388, - "lat": 52.5444036, - "lon": 1.0840535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1841", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3485846175, - "lat": 55.0080733, - "lon": -4.0413102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG7 31", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3485846178, - "lat": 54.9986068, - "lon": -4.0065808, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3485846185, - "lat": 54.9796481, - "lon": -3.9838843, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3486796645, - "lat": 52.5807216, - "lon": 1.1342761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR18 1807", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487536394, - "lat": 50.8962326, - "lon": -0.1639969, - "tags": { - "addr:city": "Pyecombe", - "addr:housename": "The Plough PH", - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN45 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487545388, - "lat": 50.9132128, - "lon": -0.1543128, - "tags": { - "addr:city": "Clayton, Hassocks", - "addr:housename": "Jack and Jill Inn", - "addr:postcode": "BN6 9PD", - "addr:street": "Brighton Road", - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487580466, - "lat": 50.3369671, - "lon": -4.6473186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL23 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 3487580467, - "lat": 50.3380961, - "lon": -4.6393178, - "tags": { - "amenity": "post_box", - "ref": "PL23 184" - } -}, -{ - "type": "node", - "id": 3487580478, - "lat": 50.3385412, - "lon": -4.6379794, - "tags": { - "amenity": "post_box", - "ref": "PL23 15D" - } -}, -{ - "type": "node", - "id": 3487580484, - "lat": 50.3331006, - "lon": -4.6387350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL23 12D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3487580489, - "lat": 50.4247454, - "lon": -4.6955070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL30 20" - } -}, -{ - "type": "node", - "id": 3487584096, - "lat": 50.3603839, - "lon": -4.6672349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL24 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487594049, - "lat": 51.9716761, - "lon": -1.9502907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "check on ground", - "mapillary": "217012783289022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-01-19" - } -}, -{ - "type": "node", - "id": 3487594852, - "lat": 55.9216970, - "lon": -3.3819277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH28 154", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3487594853, - "lat": 55.9376160, - "lon": -3.3671481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH28 222D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3487594855, - "lat": 55.9391849, - "lon": -3.4055186, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH28 219D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3487603508, - "lat": 50.9065528, - "lon": -0.0978161, - "tags": { - "addr:city": "Hassocks", - "addr:street": "Lewes Road", - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN6 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487649542, - "lat": 50.9027048, - "lon": -0.0614454, - "tags": { - "addr:city": "Lewes", - "addr:housename": "Half Moon PH", - "addr:street": "Plumpton Lane", - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN7 482D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487674904, - "lat": 50.8995179, - "lon": -0.0248922, - "tags": { - "addr:housename": "Picketts", - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "BN7 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3487705427, - "lat": 54.5266678, - "lon": -2.3224900, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3488367579, - "lat": 54.1293814, - "lon": -6.2613219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3488970067, - "lat": 51.5425670, - "lon": -2.0538790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3489017051, - "lat": 51.2739034, - "lon": 0.1886986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "colour": "red", - "fixme": "check on ground", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN13 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3489457658, - "lat": 54.8473451, - "lon": -2.7024017, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA8 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3489596459, - "lat": 51.8431103, - "lon": -2.2334452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3027201167514946", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL4 130D", - "survey:date": "2020-08-01" - } -}, -{ - "type": "node", - "id": 3489607964, - "lat": 54.9661867, - "lon": -2.6976908, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3489700312, - "lat": 51.5001409, - "lon": -2.4920511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "post_box:type": "pillar", - "ref": "BS16 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3489766369, - "lat": 53.4149069, - "lon": -2.7690091, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3490147225, - "lat": 55.2193080, - "lon": -2.7456484, - "tags": { - "amenity": "post_box", - "ref": "TD9 53", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3490147226, - "lat": 55.2431972, - "lon": -2.7197405, - "tags": { - "amenity": "post_box", - "ref": "TD9 51", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3490217345, - "lat": 55.4777766, - "lon": -2.5550196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD8 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-01-17", - "wikimedia_commons": "File:Clearing up after floods, Canongate Jedburgh - geograph.org.uk - 3076706.jpg" - } -}, -{ - "type": "node", - "id": 3490476349, - "lat": 54.9260308, - "lon": -2.9244313, - "tags": { - "amenity": "post_box", - "ref": "CA3 258" - } -}, -{ - "type": "node", - "id": 3490476350, - "lat": 54.9240939, - "lon": -2.9237047, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA3 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3490476351, - "lat": 54.9236265, - "lon": -2.9197867, - "tags": { - "amenity": "post_box", - "ref": "CA3 485" - } -}, -{ - "type": "node", - "id": 3490476792, - "lat": 54.9133922, - "lon": -2.9191177, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA3 93" - } -}, -{ - "type": "node", - "id": 3490646264, - "lat": 54.8947038, - "lon": -2.8142568, - "tags": { - "amenity": "post_box", - "ref": "CA8 314" - } -}, -{ - "type": "node", - "id": 3490652384, - "lat": 51.3759846, - "lon": -0.0167131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BR4 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3490652385, - "lat": 51.3761518, - "lon": -0.0147719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR4 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3490658961, - "lat": 54.8891816, - "lon": -2.8043943, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA8 113", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3490687255, - "lat": 54.8827475, - "lon": -2.7768495, - "tags": { - "amenity": "post_box", - "ref": "CA8 333" - } -}, -{ - "type": "node", - "id": 3490708626, - "lat": 54.8924962, - "lon": -2.7652671, - "tags": { - "amenity": "post_box", - "ref": "CA8 91" - } -}, -{ - "type": "node", - "id": 3490726085, - "lat": 54.9003817, - "lon": -2.7692231, - "tags": { - "amenity": "post_box", - "ref": "CA8 194" - } -}, -{ - "type": "node", - "id": 3490737141, - "lat": 54.9027396, - "lon": -2.7511979, - "tags": { - "amenity": "post_box", - "ref": "CA8 195" - } -}, -{ - "type": "node", - "id": 3490768483, - "lat": 54.9121777, - "lon": -2.7559038, - "tags": { - "amenity": "post_box", - "ref": "CA8 352" - } -}, -{ - "type": "node", - "id": 3490805709, - "lat": 51.4958710, - "lon": -2.4885775, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3490848406, - "lat": 54.9119089, - "lon": -2.7690827, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 154" - } -}, -{ - "type": "node", - "id": 3490914197, - "lat": 55.0925034, - "lon": -2.8552164, - "tags": { - "amenity": "post_box", - "ref": "CA6 120" - } -}, -{ - "type": "node", - "id": 3490936776, - "lat": 55.0671542, - "lon": -2.7563414, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA6 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3490937857, - "lat": 55.0647625, - "lon": -2.7164674, - "tags": { - "amenity": "post_box", - "ref": "CA6 119" - } -}, -{ - "type": "node", - "id": 3490942918, - "lat": 55.0404195, - "lon": -2.7535260, - "tags": { - "amenity": "post_box", - "ref": "CA6 265" - } -}, -{ - "type": "node", - "id": 3490971398, - "lat": 55.0551208, - "lon": -2.8079021, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3490996574, - "lat": 55.0384728, - "lon": -2.8923408, - "tags": { - "amenity": "post_box", - "ref": "CA6 361" - } -}, -{ - "type": "node", - "id": 3491043552, - "lat": 54.9842848, - "lon": -2.9505644, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CA6 316" - } -}, -{ - "type": "node", - "id": 3491060528, - "lat": 54.9537957, - "lon": -2.9540463, - "tags": { - "amenity": "post_box", - "ref": "CA6 430" - } -}, -{ - "type": "node", - "id": 3491064923, - "lat": 54.9472104, - "lon": -3.0016737, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA6 406" - } -}, -{ - "type": "node", - "id": 3491073054, - "lat": 54.8643056, - "lon": -2.9106006, - "tags": { - "amenity": "post_box", - "ref": "CA4 446" - } -}, -{ - "type": "node", - "id": 3491092039, - "lat": 54.8586607, - "lon": -2.9041321, - "tags": { - "amenity": "post_box", - "ref": "CA4 165" - } -}, -{ - "type": "node", - "id": 3491096131, - "lat": 52.4001859, - "lon": -1.8146507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 643", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3491096137, - "lat": 52.4077009, - "lon": -1.7602039, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B91 440", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3491096154, - "lat": 52.4283763, - "lon": -1.7567204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "B92 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Warwicks CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3491096640, - "lat": 54.8450628, - "lon": -2.7977516, - "tags": { - "amenity": "post_box", - "ref": "CA4 83" - } -}, -{ - "type": "node", - "id": 3491107767, - "lat": 54.8309285, - "lon": -2.7682327, - "tags": { - "amenity": "post_box", - "ref": "CA4 269" - } -}, -{ - "type": "node", - "id": 3491110853, - "lat": 52.4075811, - "lon": -1.8203185, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 791", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3491129319, - "lat": 54.8121229, - "lon": -2.8102345, - "tags": { - "amenity": "post_box", - "ref": "CA4 97" - } -}, -{ - "type": "node", - "id": 3491151862, - "lat": 52.4678579, - "lon": -1.7523376, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3491157850, - "lat": 53.1251732, - "lon": -1.1849936, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3491175252, - "lat": 54.5029079, - "lon": -3.5434999, - "tags": { - "amenity": "post_box", - "ref": "CA22 77" - } -}, -{ - "type": "node", - "id": 3491626589, - "lat": 53.7588113, - "lon": -3.0348726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3491811977, - "lat": 51.4951178, - "lon": -2.4861884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "506996717152296", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS16 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-06-23" - } -}, -{ - "type": "node", - "id": 3491865469, - "lat": 52.5594681, - "lon": 1.2754400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR14 1464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3491865475, - "lat": 52.5611774, - "lon": 1.2728994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR14 1466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3491887861, - "lat": 52.6009356, - "lon": -0.8767921, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3492820482, - "lat": 54.9932069, - "lon": -2.1067673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Acomb Village", - "old_ref": "NE46 32", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE46 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3492861014, - "lat": 52.4121752, - "lon": -1.7765600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3492861028, - "lat": 52.4127235, - "lon": -1.7747808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "mail:meter": "yes", - "mail:stamped": "no", - "note": "ref number not visible 14/06/15", - "post_box:type": "meter", - "ref": "B91 9024", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3492861029, - "lat": 52.4127292, - "lon": -1.7747980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B91 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3492861035, - "lat": 52.4136732, - "lon": -1.7754158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "B91 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3492861040, - "lat": 52.4194507, - "lon": -1.7757723, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 1159", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3492925998, - "lat": 51.5476088, - "lon": -0.7583614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SL6 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "source:geometry": "GPS" - } -}, -{ - "type": "node", - "id": 3493043841, - "lat": 54.9936214, - "lon": -2.1050709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Bishop's Hill", - "old_ref": "NE46 177", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE46 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493044078, - "lat": 52.4095831, - "lon": -1.7140310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B92 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493045981, - "lat": 54.9921659, - "lon": -2.1117875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:40", - "name": "Acomb Post Office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE46 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493054393, - "lat": 54.9898093, - "lon": -2.1145870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Orchard Avenue", - "old_ref": "NE46 121", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE46 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493056520, - "lat": 54.9725494, - "lon": -2.1028940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Gilesgate Street", - "old_ref": "NE46 175", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE46 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493056955, - "lat": 54.9717716, - "lon": -2.1015803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 174", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493064497, - "lat": 54.9702419, - "lon": -2.0990845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "name": "Priestpopple", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE46 126;NE46 1126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493124980, - "lat": 51.1259464, - "lon": -0.0096785, - "tags": { - "addr:city": "East Grinstead", - "addr:housenumber": "76", - "addr:postcode": "RH19 1AA", - "addr:street": "London Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-17", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "drive_through": "no", - "name": "East Grinstead Delivery Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 163", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493128325, - "lat": 51.1239690, - "lon": -0.0107043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "name": "Waitrose", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493137970, - "lat": 51.1266096, - "lon": -0.0036377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "College Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493140206, - "lat": 51.1336404, - "lon": 0.0008206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Lynton Park Avenue", - "note": "Collection times correct as of 12th June 2021.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493141793, - "lat": 51.1332224, - "lon": -0.0014585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Holtye Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493144111, - "lat": 51.1263937, - "lon": -0.0129846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Railway Approach", - "note": "Collection times correct as of 23rd June 2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493366386, - "lat": 51.5098409, - "lon": -0.1504516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "W1K 40;W1K 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3493501937, - "lat": 51.4814269, - "lon": 0.3642695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3493599893, - "lat": 51.3984152, - "lon": 0.5047437, - "tags": { - "addr:street": "Commissioners Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493599894, - "lat": 51.3943775, - "lon": 0.5155916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 413" - } -}, -{ - "type": "node", - "id": 3493599895, - "lat": 51.3944079, - "lon": 0.5156376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 4132" - } -}, -{ - "type": "node", - "id": 3493599896, - "lat": 51.3984885, - "lon": 0.5158125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 148" - } -}, -{ - "type": "node", - "id": 3493599897, - "lat": 51.4598706, - "lon": 0.5949537, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME3 135D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3493599899, - "lat": 51.4697186, - "lon": 0.6454605, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 440D" - } -}, -{ - "type": "node", - "id": 3493599900, - "lat": 51.4557225, - "lon": 0.6360589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 241D" - } -}, -{ - "type": "node", - "id": 3493599901, - "lat": 51.4288837, - "lon": 0.5963699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME3 69" - } -}, -{ - "type": "node", - "id": 3493599902, - "lat": 51.4126886, - "lon": 0.5614816, - "tags": { - "amenity": "post_box", - "note": "ref obscured", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3493599993, - "lat": 51.3944470, - "lon": 0.5156808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "ME2 4131" - } -}, -{ - "type": "node", - "id": 3493599995, - "lat": 51.4525040, - "lon": 0.6347850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 199" - } -}, -{ - "type": "node", - "id": 3493599996, - "lat": 51.4363371, - "lon": 0.5969624, - "tags": { - "addr:street": "Stoke Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 214" - } -}, -{ - "type": "node", - "id": 3493599997, - "lat": 51.4231175, - "lon": 0.5581676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 99D" - } -}, -{ - "type": "node", - "id": 3493600094, - "lat": 51.4274708, - "lon": 0.5590403, - "tags": { - "amenity": "post_box", - "note": "ref obscured", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3493600193, - "lat": 51.4586328, - "lon": 0.6049826, - "tags": { - "amenity": "post_box", - "note": "obscured ref", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3493600194, - "lat": 51.4460257, - "lon": 0.6212508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 126" - } -}, -{ - "type": "node", - "id": 3493600293, - "lat": 51.4735635, - "lon": 0.6491703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 312" - } -}, -{ - "type": "node", - "id": 3493600593, - "lat": 51.4483521, - "lon": 0.6328749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 155D" - } -}, -{ - "type": "node", - "id": 3493612563, - "lat": 52.4716094, - "lon": -1.7303851, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1198", - "source": "Warwicks Aerial Imagery OGL v2" - } -}, -{ - "type": "node", - "id": 3493612566, - "lat": 52.4729527, - "lon": -1.7256218, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1164", - "source": "Warwicks Aerial Imagery OGL v2" - } -}, -{ - "type": "node", - "id": 3493612567, - "lat": 52.4738018, - "lon": -1.7405478, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1182", - "source": "Warwicks Aerial Imagery OGL v2" - } -}, -{ - "type": "node", - "id": 3493627130, - "lat": 52.4684414, - "lon": -1.7733796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B33 971D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493654928, - "lat": 52.4134518, - "lon": -1.8758263, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B14 1297D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493654933, - "lat": 52.4213479, - "lon": -1.8671269, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "post_box:type": "pillar", - "ref": "B13 439", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493654936, - "lat": 52.4724297, - "lon": -1.7890365, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 874D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493654937, - "lat": 52.4747354, - "lon": -1.7769169, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 1258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493654941, - "lat": 52.4781578, - "lon": -1.7672846, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "post_box:type": "pillar", - "ref": "B33 944", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493655488, - "lat": 52.4211671, - "lon": -1.8787222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "B13 327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Warwicks Aerial Imagery OGL v2" - } -}, -{ - "type": "node", - "id": 3493669819, - "lat": 52.4046387, - "lon": -1.8383590, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 466D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493671154, - "lat": 52.4025985, - "lon": -1.8397044, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493678208, - "lat": 52.4022196, - "lon": -1.8557478, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 1357", - "source": "Warwicks Aerial Imagery OGL v2" - } -}, -{ - "type": "node", - "id": 3493797872, - "lat": 52.2871511, - "lon": -1.8857564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B80 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493797873, - "lat": 52.2988486, - "lon": -1.8752740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B80 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493823573, - "lat": 52.2977233, - "lon": -1.8548285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "note": "I suspect this may be a D box awaitingh a new collection plate. 2/5/15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B80 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493852861, - "lat": 52.2887586, - "lon": -1.7137600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3493869701, - "lat": 52.0490224, - "lon": -0.8860594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-14", - "old_ref": "MK19 105", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source_1": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493869703, - "lat": 52.0526917, - "lon": -0.8931074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "MK19 219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493869705, - "lat": 52.0555625, - "lon": -0.8934979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "MK19 293", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02; 2021-12-14" - } -}, -{ - "type": "node", - "id": 3493869710, - "lat": 52.0563415, - "lon": -0.8897400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "MK19 210", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02; 2021-12-14" - } -}, -{ - "type": "node", - "id": 3493869715, - "lat": 52.0577403, - "lon": -0.9166558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK19 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493869716, - "lat": 52.0911901, - "lon": -0.8404314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK19 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493899831, - "lat": 52.0146376, - "lon": -0.9575807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 06:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 192", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493899838, - "lat": 52.0327026, - "lon": -0.9685580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493899843, - "lat": 52.0342300, - "lon": -0.9685644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493899845, - "lat": 52.0350943, - "lon": -0.9415089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493899846, - "lat": 52.0393460, - "lon": -0.9303726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493899847, - "lat": 52.0500575, - "lon": -0.9904838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493926230, - "lat": 52.0841023, - "lon": -0.9025435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-02" - } -}, -{ - "type": "node", - "id": 3493930887, - "lat": 51.4744861, - "lon": -2.7236966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "BS20 697", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3495111510, - "lat": 54.8967690, - "lon": -1.4930684, - "tags": { - "amenity": "post_box", - "ref": "NE38 517" - } -}, -{ - "type": "node", - "id": 3495283912, - "lat": 51.7325635, - "lon": -0.4558869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283913, - "lat": 51.7336449, - "lon": -0.4587929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "HP3 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3495283915, - "lat": 51.7358583, - "lon": -0.4561509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283917, - "lat": 51.7362790, - "lon": -0.4478886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283918, - "lat": 51.7363573, - "lon": -0.4502931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP3 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283931, - "lat": 51.7391651, - "lon": -0.4465631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283937, - "lat": 51.7411683, - "lon": -0.4547433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283941, - "lat": 51.7425220, - "lon": -0.4483441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283942, - "lat": 51.7445248, - "lon": -0.4476855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283946, - "lat": 51.7447652, - "lon": -0.4606012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283951, - "lat": 51.7450318, - "lon": -0.4532693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283958, - "lat": 51.7456817, - "lon": -0.4418493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495283959, - "lat": 51.7482672, - "lon": -0.4517022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-03" - } -}, -{ - "type": "node", - "id": 3495285249, - "lat": 52.6531761, - "lon": 1.1627259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 951", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3495544548, - "lat": 53.0361510, - "lon": -1.1964236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "indoor": "yes", - "post_box:type": "indoor_pillar", - "ref": "NG15 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3495544792, - "lat": 53.0385168, - "lon": -1.1978168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "NG15 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496251155, - "lat": 51.6135583, - "lon": -0.1530447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3496444850, - "lat": 54.5264883, - "lon": -1.5570142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "name": "Bondgate", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DL3 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496445825, - "lat": 51.8713382, - "lon": 0.1953905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "name": "Welcome Break", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM23 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496459778, - "lat": 54.5236619, - "lon": -1.5571151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "name": "Blackwellgate", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DL1 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496485311, - "lat": 54.5246215, - "lon": -1.5555850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "name": "High Row", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "DL3 191;DL3 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496498474, - "lat": 54.5266548, - "lon": -1.5532291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "name": "Crown Street Branch Outside Box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "DL1 8;DL1 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496910855, - "lat": 50.9093488, - "lon": -1.2979927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 432" - } -}, -{ - "type": "node", - "id": 3496912435, - "lat": 52.4292942, - "lon": -1.9121272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B30 697" - } -}, -{ - "type": "node", - "id": 3496915725, - "lat": 53.0398025, - "lon": -1.2047271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3496963824, - "lat": 51.9513457, - "lon": -0.9206562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3496963825, - "lat": 51.9653119, - "lon": -0.9300508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3496963826, - "lat": 51.9673555, - "lon": -0.9593589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 245", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3496963827, - "lat": 51.9685073, - "lon": -0.9477631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497015523, - "lat": 51.9640518, - "lon": -1.0099373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK18 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497015525, - "lat": 51.9763783, - "lon": -0.9693339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497015526, - "lat": 51.9805764, - "lon": -1.0137981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497015527, - "lat": 51.9807945, - "lon": -1.0083709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 194", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497034616, - "lat": 51.9630769, - "lon": -1.0429582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497046086, - "lat": 52.4192543, - "lon": -1.8309037, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "B90 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3497046088, - "lat": 52.4216151, - "lon": -1.8365430, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3497046089, - "lat": 52.4328754, - "lon": -1.8086180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "B92 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497067311, - "lat": 51.9293751, - "lon": -1.0297564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497067318, - "lat": 51.9356970, - "lon": -0.9894295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497067319, - "lat": 51.9377444, - "lon": -0.9871394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK18 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-05" - } -}, -{ - "type": "node", - "id": 3497067328, - "lat": 51.9404434, - "lon": -0.9289556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "note": "Reference not visible (below the bottom of the plate holder)!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-05-04" - } -}, -{ - "type": "node", - "id": 3497091423, - "lat": 52.4113941, - "lon": -1.8196960, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 474D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497091474, - "lat": 52.4125739, - "lon": -1.8205460, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 655D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497098057, - "lat": 52.4134806, - "lon": -1.8216385, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 647D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497098310, - "lat": 52.4147580, - "lon": -1.8222764, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 654D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497301827, - "lat": 52.0493599, - "lon": -2.5136270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "obscured by phone number label", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3497390980, - "lat": 52.2156556, - "lon": -1.4281275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV33 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497390982, - "lat": 52.2160931, - "lon": -1.4325940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV47 61D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497497294, - "lat": 52.2664649, - "lon": -1.4740788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497518577, - "lat": 53.0383437, - "lon": -1.2041146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "Non-standard box built into wall/window of building. Not painted red and looks like a private letter box from a distance.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG15 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3497607877, - "lat": 53.8226498, - "lon": -3.0529784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3497607878, - "lat": 53.8249295, - "lon": -3.0539180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3498615142, - "lat": 54.9402271, - "lon": -2.7363900, - "tags": { - "amenity": "post_box", - "ref": "CA8 142" - } -}, -{ - "type": "node", - "id": 3498615143, - "lat": 54.9408843, - "lon": -2.7307369, - "tags": { - "amenity": "post_box", - "ref": "CA8 68" - } -}, -{ - "type": "node", - "id": 3498624038, - "lat": 54.6528782, - "lon": -2.6609129, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA10 282" - } -}, -{ - "type": "node", - "id": 3498629055, - "lat": 54.6355122, - "lon": -2.6532259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 08:30", - "ref": "CA10 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3498710944, - "lat": 54.6197967, - "lon": -2.6887713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA10 37" - } -}, -{ - "type": "node", - "id": 3498742578, - "lat": 54.6170695, - "lon": -2.6399848, - "tags": { - "amenity": "post_box", - "ref": "CA10 81" - } -}, -{ - "type": "node", - "id": 3498769613, - "lat": 54.6114207, - "lon": -2.6089483, - "tags": { - "amenity": "post_box", - "ref": "CA10 12" - } -}, -{ - "type": "node", - "id": 3498827748, - "lat": 54.5933912, - "lon": -2.6242850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 206" - } -}, -{ - "type": "node", - "id": 3498884411, - "lat": 51.5335676, - "lon": -3.6779032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3498946455, - "lat": 54.5990027, - "lon": -2.6857865, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 229", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3498962349, - "lat": 54.5855417, - "lon": -2.6317411, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA10 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3498987328, - "lat": 54.5661857, - "lon": -2.6246700, - "tags": { - "amenity": "post_box", - "ref": "CA10 49" - } -}, -{ - "type": "node", - "id": 3499022353, - "lat": 53.6487965, - "lon": -3.0036382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR9 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3499022367, - "lat": 53.6463385, - "lon": -3.0066501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PR8 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3499022371, - "lat": 53.6487839, - "lon": -3.0036597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PR9 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3499022384, - "lat": 53.6474276, - "lon": -3.0058376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "location": "just inside entrance to the Cambridge Arcade", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PR8 90", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3499022593, - "lat": 53.6465546, - "lon": -3.0088892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PR8 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3499080433, - "lat": 54.5702367, - "lon": -2.6774916, - "tags": { - "amenity": "post_box", - "ref": "CA10 39" - } -}, -{ - "type": "node", - "id": 3499103267, - "lat": 54.5518632, - "lon": -2.6142305, - "tags": { - "amenity": "post_box", - "ref": "CA10 47" - } -}, -{ - "type": "node", - "id": 3499233336, - "lat": 54.4383001, - "lon": -2.5943496, - "tags": { - "amenity": "post_box", - "ref": "CA10 195" - } -}, -{ - "type": "node", - "id": 3499527541, - "lat": 53.0347443, - "lon": -1.2006691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3499550326, - "lat": 51.8240059, - "lon": -2.4935865, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 3499903801, - "lat": 52.0070150, - "lon": -2.4483286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "description": "in wall on left hand side", - "post_box:type": "wall", - "ref": "GL18 316", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3500093933, - "lat": 53.0348875, - "lon": -1.2054924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3500093990, - "lat": 53.0366640, - "lon": -1.2067234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3500127702, - "lat": 52.5984350, - "lon": 1.1834487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR9 907D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3500127703, - "lat": 52.5942748, - "lon": 1.1688035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NR9 912D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3500127712, - "lat": 52.5995191, - "lon": 1.1712937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 909D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3500127716, - "lat": 52.5967269, - "lon": 1.1765470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR9 913D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3500164609, - "lat": 53.0407697, - "lon": -1.2096622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG15 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3500872870, - "lat": 53.0376697, - "lon": -1.1935986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG15 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3500955118, - "lat": 51.6140904, - "lon": -2.5016901, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS35 158D" - } -}, -{ - "type": "node", - "id": 3501093334, - "lat": 53.1978002, - "lon": 0.3277603, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3502063912, - "lat": 54.9886069, - "lon": -1.5805345, - "tags": { - "amenity": "post_box", - "ref": "NE6 73" - } -}, -{ - "type": "node", - "id": 3502480606, - "lat": 53.6449721, - "lon": -3.0047052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR8 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3502480633, - "lat": 53.5637862, - "lon": -2.8819378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3502480683, - "lat": 53.6445687, - "lon": -3.0124749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PR8 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3502480707, - "lat": 53.5601698, - "lon": -2.8771822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3502615753, - "lat": 54.6501428, - "lon": -2.7410511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "364000418391779", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA10 87", - "royal_cypher": "EIIR", - "survey:date": "2020-08-03" - } -}, -{ - "type": "node", - "id": 3502619962, - "lat": 51.0286022, - "lon": -3.0814858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 716" - } -}, -{ - "type": "node", - "id": 3502619976, - "lat": 51.0304560, - "lon": -3.0788524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 791" - } -}, -{ - "type": "node", - "id": 3502619983, - "lat": 51.0322808, - "lon": -3.0825254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 792" - } -}, -{ - "type": "node", - "id": 3502623009, - "lat": 54.5754070, - "lon": -2.6926363, - "tags": { - "amenity": "post_box", - "ref": "CA10 40" - } -}, -{ - "type": "node", - "id": 3502643787, - "lat": 54.5430257, - "lon": -2.7178487, - "tags": { - "amenity": "post_box", - "ref": "CA10 17" - } -}, -{ - "type": "node", - "id": 3502665961, - "lat": 54.5654308, - "lon": -2.7791559, - "tags": { - "amenity": "post_box", - "ref": "CA10 263" - } -}, -{ - "type": "node", - "id": 3502691984, - "lat": 54.6409056, - "lon": -2.8881224, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 261" - } -}, -{ - "type": "node", - "id": 3502704320, - "lat": 54.6045754, - "lon": -2.9193338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:45", - "ref": "CA11 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3502715176, - "lat": 51.3878122, - "lon": 0.0020976, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR4 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3502726504, - "lat": 54.6889799, - "lon": -2.8335867, - "tags": { - "amenity": "post_box", - "ref": "CA11 24" - } -}, -{ - "type": "node", - "id": 3502733610, - "lat": 53.2827560, - "lon": 0.1832688, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3502783836, - "lat": 54.7398013, - "lon": -2.8159207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA11 207" - } -}, -{ - "type": "node", - "id": 3502804077, - "lat": 54.7646621, - "lon": -2.7993546, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CA11 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3502810559, - "lat": 54.7241629, - "lon": -2.8874388, - "tags": { - "amenity": "post_box", - "ref": "CA11 262" - } -}, -{ - "type": "node", - "id": 3502813129, - "lat": 54.3619894, - "lon": -2.3437178, - "tags": { - "amenity": "post_box", - "ref": "CA17 289" - } -}, -{ - "type": "node", - "id": 3502820514, - "lat": 54.3868584, - "lon": -2.3384169, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA17 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3502823853, - "lat": 54.8388254, - "lon": -2.4447373, - "tags": { - "amenity": "post_box", - "ref": "CA9 176" - } -}, -{ - "type": "node", - "id": 3502911226, - "lat": 54.9552796, - "lon": -2.6871708, - "tags": { - "amenity": "post_box", - "ref": "CA8 337" - } -}, -{ - "type": "node", - "id": 3502946136, - "lat": 54.9599314, - "lon": -2.6492880, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA8 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3502967076, - "lat": 54.9812308, - "lon": -2.6007694, - "tags": { - "amenity": "post_box", - "ref": "CA8 47" - } -}, -{ - "type": "node", - "id": 3502983924, - "lat": 55.0024231, - "lon": -2.5718757, - "tags": { - "amenity": "post_box", - "ref": "CA8 17" - } -}, -{ - "type": "node", - "id": 3502988648, - "lat": 55.0236747, - "lon": -2.5980517, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3502993844, - "lat": 55.0045119, - "lon": -2.6970003, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA8 133" - } -}, -{ - "type": "node", - "id": 3503036468, - "lat": 54.8580541, - "lon": -3.0098911, - "tags": { - "amenity": "post_box", - "ref": "CA5 473" - } -}, -{ - "type": "node", - "id": 3503046513, - "lat": 54.8507135, - "lon": -3.0290447, - "tags": { - "amenity": "post_box", - "ref": "CA5 379" - } -}, -{ - "type": "node", - "id": 3503058764, - "lat": 54.8471271, - "lon": -3.0629266, - "tags": { - "amenity": "post_box", - "ref": "CA5 322" - } -}, -{ - "type": "node", - "id": 3503099324, - "lat": 54.8622791, - "lon": -3.0473438, - "tags": { - "amenity": "post_box", - "ref": "CA5 455" - } -}, -{ - "type": "node", - "id": 3503138578, - "lat": 53.5504904, - "lon": -2.7916770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 270", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3503146640, - "lat": 51.3800584, - "lon": -0.0142846, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-04", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3503280227, - "lat": 50.3754684, - "lon": -4.1370173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL4 46D;PL4 4600D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-16" - } -}, -{ - "type": "node", - "id": 3503288940, - "lat": 53.6982625, - "lon": -1.5036508, - "tags": { - "addr:city": "Wakefield", - "addr:postcode": "WF1 2UQ", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF1 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503526844, - "lat": 52.8516803, - "lon": -2.7271482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY4 99D" - } -}, -{ - "type": "node", - "id": 3503526851, - "lat": 52.8553564, - "lon": -2.7314907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY4 165D" - } -}, -{ - "type": "node", - "id": 3503526863, - "lat": 52.8563744, - "lon": -2.7239817, - "tags": { - "amenity": "post_box", - "colour": "Red" - } -}, -{ - "type": "node", - "id": 3503526865, - "lat": 52.8564398, - "lon": -2.7192322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY4 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3503526869, - "lat": 52.8574132, - "lon": -2.7129211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "137718258296912", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY4 765D", - "survey:date": "2020-07-15" - } -}, -{ - "type": "node", - "id": 3503526870, - "lat": 52.8597676, - "lon": -2.7300721, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3503575732, - "lat": 52.8544591, - "lon": -2.7139270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "137224411899902", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY4 478D", - "survey:date": "2021-07-20" - } -}, -{ - "type": "node", - "id": 3503575733, - "lat": 52.8589557, - "lon": -2.7079548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "857465205137134", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-09-24" - } -}, -{ - "type": "node", - "id": 3503767001, - "lat": 53.2635796, - "lon": -4.0929714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL58 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3503828789, - "lat": 51.5192691, - "lon": -3.6978338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503828790, - "lat": 51.5196710, - "lon": -3.7083741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 200" - } -}, -{ - "type": "node", - "id": 3503828791, - "lat": 51.5201006, - "lon": -3.7040858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 245" - } -}, -{ - "type": "node", - "id": 3503828792, - "lat": 51.5218871, - "lon": -3.7100628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 189" - } -}, -{ - "type": "node", - "id": 3503829793, - "lat": 51.5229952, - "lon": -3.7024922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829794, - "lat": 51.5236098, - "lon": -3.6912560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829795, - "lat": 51.5236636, - "lon": -3.7137112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 177" - } -}, -{ - "type": "node", - "id": 3503829796, - "lat": 51.5268905, - "lon": -3.6874669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829797, - "lat": 51.5270889, - "lon": -3.7013481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF33 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3503829798, - "lat": 51.5286083, - "lon": -3.6929800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829801, - "lat": 51.5329165, - "lon": -3.6936362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829802, - "lat": 51.5334222, - "lon": -3.6739855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829803, - "lat": 51.5336150, - "lon": -3.6845528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3503829832, - "lat": 51.5366551, - "lon": -3.6739649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF33 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3504177035, - "lat": 53.9472148, - "lon": -1.1384396, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO24 485", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504432963, - "lat": 51.5297997, - "lon": -3.6874367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF33 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3504432965, - "lat": 51.5314241, - "lon": -3.6819507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF33 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504516151, - "lat": 50.8354370, - "lon": -0.8094279, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "PO19 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3504538783, - "lat": 54.7876197, - "lon": -2.9720759, - "tags": { - "amenity": "post_box", - "ref": "CA5 390" - } -}, -{ - "type": "node", - "id": 3504541190, - "lat": 54.6218752, - "lon": -3.5563177, - "tags": { - "amenity": "post_box", - "ref": "CA14 163" - } -}, -{ - "type": "node", - "id": 3504551867, - "lat": 50.8285596, - "lon": -0.9650467, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "post_box:type": "lamp", - "ref": "PO11 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504557073, - "lat": 54.6265794, - "lon": -3.5643850, - "tags": { - "amenity": "post_box", - "ref": "CA14 31" - } -}, -{ - "type": "node", - "id": 3504557356, - "lat": 54.6280035, - "lon": -3.5579767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CA14 168" - } -}, -{ - "type": "node", - "id": 3504570496, - "lat": 50.8238766, - "lon": -0.9634642, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "post_box:type": "wall", - "ref": "PO11 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504571939, - "lat": 50.8163666, - "lon": -0.9626797, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "post_box:type": "lamp", - "ref": "PO11 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504572884, - "lat": 54.6317906, - "lon": -3.5604259, - "tags": { - "amenity": "post_box", - "ref": "CA14 22" - } -}, -{ - "type": "node", - "id": 3504574410, - "lat": 54.6349990, - "lon": -3.5569609, - "tags": { - "amenity": "post_box", - "ref": "CA14 152" - } -}, -{ - "type": "node", - "id": 3504578097, - "lat": 50.8115899, - "lon": -0.9769367, - "tags": { - "addr:city": "Stoke, Hayling Island", - "addr:housename": "Stoke Post Office", - "addr:street": "Havant Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504579631, - "lat": 50.7783132, - "lon": -0.9516423, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "ref": "PO11 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504580823, - "lat": 50.7802593, - "lon": -0.9450683, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO11 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3504583320, - "lat": 54.6354595, - "lon": -3.5484672, - "tags": { - "amenity": "post_box", - "ref": "CA14 177" - } -}, -{ - "type": "node", - "id": 3504583322, - "lat": 54.6329909, - "lon": -3.5477544, - "tags": { - "amenity": "post_box", - "ref": "CA14 24" - } -}, -{ - "type": "node", - "id": 3504586951, - "lat": 50.8562524, - "lon": -1.0064426, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "PO9 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504587281, - "lat": 50.8579428, - "lon": -1.0015032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504658600, - "lat": 54.4644144, - "lon": -3.5564085, - "tags": { - "amenity": "post_box", - "ref": "CA22 150" - } -}, -{ - "type": "node", - "id": 3504663255, - "lat": 54.4658480, - "lon": -3.5667580, - "tags": { - "amenity": "post_box", - "ref": "CA22 132" - } -}, -{ - "type": "node", - "id": 3504668139, - "lat": 54.4555133, - "lon": -3.5132990, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA22 138" - } -}, -{ - "type": "node", - "id": 3504744061, - "lat": 54.4402931, - "lon": -3.4789186, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA20 84" - } -}, -{ - "type": "node", - "id": 3504746661, - "lat": 54.4328343, - "lon": -3.4931610, - "tags": { - "amenity": "post_box", - "ref": "CA20 113" - } -}, -{ - "type": "node", - "id": 3504767044, - "lat": 54.3909947, - "lon": -3.4181987, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA19 108" - } -}, -{ - "type": "node", - "id": 3504771230, - "lat": 54.3987492, - "lon": -3.4043088, - "tags": { - "amenity": "post_box", - "ref": "CA19 27" - } -}, -{ - "type": "node", - "id": 3504779494, - "lat": 54.4030091, - "lon": -3.3878469, - "tags": { - "amenity": "post_box", - "ref": "CA19 90" - } -}, -{ - "type": "node", - "id": 3504781354, - "lat": 54.3829796, - "lon": -3.4068341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CA19 28" - } -}, -{ - "type": "node", - "id": 3504797705, - "lat": 52.3487475, - "lon": -2.0154062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B60 4204" - } -}, -{ - "type": "node", - "id": 3504805671, - "lat": 52.4615039, - "lon": -1.7683315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B26 1044D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504833831, - "lat": 54.3727239, - "lon": -3.4146903, - "tags": { - "amenity": "post_box", - "ref": "CA19 31" - } -}, -{ - "type": "node", - "id": 3504834428, - "lat": 54.3892269, - "lon": -3.3791014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4578112312209234", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA19 76", - "survey:date": "2021-09-15" - } -}, -{ - "type": "node", - "id": 3504847557, - "lat": 52.3514607, - "lon": -2.0476334, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B61 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504847563, - "lat": 52.3516602, - "lon": -2.0441463, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B60 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3504871709, - "lat": 52.3315985, - "lon": -2.0733879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B61 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3504904772, - "lat": 53.3632579, - "lon": 0.0963615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN11 109" - } -}, -{ - "type": "node", - "id": 3504920734, - "lat": 53.3385999, - "lon": 0.0524940, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3505027636, - "lat": 51.5466674, - "lon": -3.6617066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF33 224" - } -}, -{ - "type": "node", - "id": 3505536299, - "lat": 52.8591865, - "lon": -2.7186391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "224376402917234", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-09-24" - } -}, -{ - "type": "node", - "id": 3505718881, - "lat": 53.9516551, - "lon": -1.1045249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO24 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505718882, - "lat": 53.9519298, - "lon": -1.1089559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 74D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3505718886, - "lat": 53.9539422, - "lon": -1.0955180, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3505718889, - "lat": 53.9608009, - "lon": -1.1136390, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO26 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505718890, - "lat": 53.9514389, - "lon": -1.0362680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "YO10 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724895, - "lat": 53.9541300, - "lon": -1.1019848, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-06", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724899, - "lat": 53.9686194, - "lon": -1.1009951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO30 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3505724908, - "lat": 53.9575564, - "lon": -1.0047011, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724910, - "lat": 53.9427885, - "lon": -1.1142961, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO24 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724911, - "lat": 53.9285490, - "lon": -1.0655845, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO19 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724914, - "lat": 53.9443750, - "lon": -1.1032964, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3505724923, - "lat": 53.9470509, - "lon": -1.1046268, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO24 477D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724925, - "lat": 53.9538885, - "lon": -1.0408197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note:ref": "yes, the ref does end with a capital \"D\"", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO10 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724929, - "lat": 53.9895367, - "lon": -1.1067404, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724932, - "lat": 53.9804555, - "lon": -1.0604803, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "post_box:type": "lamp", - "postal_code": "YO32 9JT", - "ref": "YO32 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724936, - "lat": 53.9754221, - "lon": -1.0957648, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505724944, - "lat": 53.9777205, - "lon": -1.0989995, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO30 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505770843, - "lat": 55.9206310, - "lon": -3.5391558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EH52 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3505845427, - "lat": 53.9388104, - "lon": -1.1251608, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO24 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845429, - "lat": 53.9637428, - "lon": -1.1344572, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-01", - "post_box:type": "pillar", - "ref": "YO26 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845430, - "lat": 53.9533935, - "lon": -1.1398778, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO26 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845431, - "lat": 53.9328698, - "lon": -1.1355317, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO24 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845439, - "lat": 53.9583886, - "lon": -1.1194987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO26 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845448, - "lat": 53.9579072, - "lon": -1.1281595, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO26 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845450, - "lat": 53.9905523, - "lon": -1.1283783, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-10", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO30 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845455, - "lat": 53.9609388, - "lon": -1.1304929, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO26 458D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3505845460, - "lat": 53.9420453, - "lon": -1.1259762, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO24 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845461, - "lat": 53.9430874, - "lon": -1.1329175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO24 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845462, - "lat": 53.9477442, - "lon": -1.1338618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 464", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3505845465, - "lat": 53.9398082, - "lon": -1.1337919, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO24 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505845487, - "lat": 53.9509422, - "lon": -1.1218455, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3505845488, - "lat": 53.9324987, - "lon": -1.1309563, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO24 448", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3505860593, - "lat": 53.9693458, - "lon": -1.1335720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO26 386", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3505860594, - "lat": 53.9574243, - "lon": -1.1354575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO26 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505860602, - "lat": 53.9471918, - "lon": -1.1203623, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO24 533", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505860605, - "lat": 53.9351347, - "lon": -1.1299981, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO24 538" - } -}, -{ - "type": "node", - "id": 3505909804, - "lat": 53.9605608, - "lon": -1.1453830, - "tags": { - "amenity": "post_box", - "post_box:mounting": "end of brick wall", - "post_box:type": "wall", - "ref": "YO26 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505935218, - "lat": 53.9878275, - "lon": -1.1484579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "YO26 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505935260, - "lat": 53.9841656, - "lon": -1.1495013, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO26 503", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3505990571, - "lat": 54.0304635, - "lon": -1.0398771, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO32 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505990617, - "lat": 54.0331164, - "lon": -1.0335068, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-28", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO32 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3505990623, - "lat": 54.0276596, - "lon": -1.0406053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "after Strensall post office closed the pillar box has been moved here and the lamp box by the entrance to the barracks moved to next to the red phone box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "YO32 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506007790, - "lat": 54.0364623, - "lon": -1.0422723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "YO32 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506019447, - "lat": 51.1038762, - "lon": -3.9867800, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3506028686, - "lat": 53.8960918, - "lon": -0.9651260, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO19 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506029300, - "lat": 53.8970539, - "lon": -0.9662868, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO19 585" - } -}, -{ - "type": "node", - "id": 3506029310, - "lat": 53.8944735, - "lon": -0.9712173, - "tags": { - "amenity": "post_box", - "fixme": "is this box still here?", - "post_box:type": "lamp", - "ref": "YO19 454" - } -}, -{ - "type": "node", - "id": 3506108629, - "lat": 53.9548819, - "lon": -1.1933405, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO23 206", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3506108635, - "lat": 53.9588494, - "lon": -1.1991985, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO23 521D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506126677, - "lat": 53.9247743, - "lon": -1.1837854, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO23 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506140698, - "lat": 53.8938581, - "lon": -1.1139502, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO23 368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506140705, - "lat": 53.9015492, - "lon": -1.1067360, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO23 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506140723, - "lat": 53.8967552, - "lon": -1.1039431, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO23 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506676977, - "lat": 51.1849504, - "lon": 0.9292496, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN25 36" - } -}, -{ - "type": "node", - "id": 3506681226, - "lat": 51.1768865, - "lon": 0.8303241, - "tags": { - "amenity": "post_box", - "ref": "TN25 17" - } -}, -{ - "type": "node", - "id": 3506685985, - "lat": 51.1716372, - "lon": 0.9020893, - "tags": { - "amenity": "post_box", - "ref": "TN25 39" - } -}, -{ - "type": "node", - "id": 3506855970, - "lat": 51.5921849, - "lon": -0.1946696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 3506858770, - "lat": 51.5929274, - "lon": -0.1904884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 3506978673, - "lat": 53.1588601, - "lon": -4.3503614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3506993005, - "lat": 53.1890598, - "lon": -4.3301289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL60 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507026359, - "lat": 53.1756689, - "lon": -4.2886003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507027747, - "lat": 53.1583000, - "lon": -4.3158864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "note": "no visible ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507027748, - "lat": 53.1683472, - "lon": -4.3216324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "wall", - "ref": "LL61 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507054414, - "lat": 53.1724856, - "lon": -4.2747013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL61 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507054428, - "lat": 53.1793791, - "lon": -4.2694466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507054449, - "lat": 53.1797036, - "lon": -4.2743741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507077062, - "lat": 53.1981464, - "lon": -4.2320809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507135930, - "lat": 53.2526079, - "lon": -4.1815962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "LL59 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507135931, - "lat": 53.2602369, - "lon": -4.1003310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL58 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3507213587, - "lat": 51.7250690, - "lon": -0.4554801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WD4 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213594, - "lat": 51.7327806, - "lon": -0.4507717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP3 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213596, - "lat": 51.7444185, - "lon": -0.4375675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213597, - "lat": 51.7451759, - "lon": -0.4331369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP3 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213598, - "lat": 51.7486984, - "lon": -0.4576046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "indoor": "yes", - "note": "Inside the superstore (Tesco)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213599, - "lat": 51.7502670, - "lon": -0.4230962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213600, - "lat": 51.7514308, - "lon": -0.4568302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213601, - "lat": 51.7516684, - "lon": -0.4447723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213602, - "lat": 51.7537902, - "lon": -0.4420150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507213603, - "lat": 51.7570229, - "lon": -0.4450810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507338494, - "lat": 51.3722399, - "lon": 0.5165358, - "tags": { - "addr:street": "Lansdowne Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME4 285" - } -}, -{ - "type": "node", - "id": 3507338496, - "lat": 51.3459953, - "lon": 0.5117767, - "tags": { - "addr:street": "Hurstwood", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "ME5 12D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3507338498, - "lat": 51.3445548, - "lon": 0.5087182, - "tags": { - "addr:street": "Woodhurst", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 291" - } -}, -{ - "type": "node", - "id": 3507338593, - "lat": 51.3755264, - "lon": 0.5154734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME4 290D" - } -}, -{ - "type": "node", - "id": 3507338594, - "lat": 51.3685425, - "lon": 0.5177691, - "tags": { - "addr:street": "Randall Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME4 243D" - } -}, -{ - "type": "node", - "id": 3507338995, - "lat": 51.3560740, - "lon": 0.5218644, - "tags": { - "addr:street": "Wayfield Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 309" - } -}, -{ - "type": "node", - "id": 3507339194, - "lat": 51.3626586, - "lon": 0.5153754, - "tags": { - "addr:street": "Wallace Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME1 249" - } -}, -{ - "type": "node", - "id": 3507339197, - "lat": 51.3517147, - "lon": 0.5095216, - "tags": { - "addr:street": "Binland Grove", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME5 288" - } -}, -{ - "type": "node", - "id": 3507339393, - "lat": 51.3620235, - "lon": 0.5205439, - "tags": { - "addr:street": "Wallace Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME4 307D" - } -}, -{ - "type": "node", - "id": 3507339394, - "lat": 51.3527716, - "lon": 0.5136427, - "tags": { - "addr:street": "Barberry Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 352D" - } -}, -{ - "type": "node", - "id": 3507367526, - "lat": 53.7530582, - "lon": -2.7121310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR1 178", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3507442060, - "lat": 53.2659664, - "lon": -4.1578461, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507460804, - "lat": 51.5104493, - "lon": -3.7011906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF33 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3507460806, - "lat": 51.5165420, - "lon": -3.7273194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "523026890016860", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CF33 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 3507460808, - "lat": 51.5229189, - "lon": -3.7191452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF33 71", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3507460819, - "lat": 51.5317440, - "lon": -3.6572409, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-19", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3507460820, - "lat": 51.5361291, - "lon": -3.6543312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF32 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3507486248, - "lat": 53.1004533, - "lon": -3.8591387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL24 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507486249, - "lat": 53.1003547, - "lon": -3.8672700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL24 134", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507549047, - "lat": 53.0385039, - "lon": -3.6150616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3507722935, - "lat": 52.0137873, - "lon": -2.3925896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-05-09" - } -}, -{ - "type": "node", - "id": 3507819708, - "lat": 54.1275303, - "lon": -3.2313043, - "tags": { - "amenity": "post_box", - "note": "plate damaged", - "post_box:type": "pillar", - "ref": "LA14 101", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3507959059, - "lat": 56.4029808, - "lon": -3.4485002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "First Class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PH1 52P", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3507959062, - "lat": 56.4029986, - "lon": -3.4485136, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP8-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PH1 300", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3507959071, - "lat": 56.4046889, - "lon": -3.4538026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH1 183D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3507959075, - "lat": 56.4029645, - "lon": -3.4484868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "Second Class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PH1 53P", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3507998829, - "lat": 56.4023857, - "lon": -3.4662480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 214D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3507998837, - "lat": 56.4052129, - "lon": -3.4709392, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 95D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508005687, - "lat": 56.3960772, - "lon": -3.4385841, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH1 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508005690, - "lat": 56.3970523, - "lon": -3.4325519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH1 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508099421, - "lat": 53.7369092, - "lon": -2.9628569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3508099422, - "lat": 53.7378650, - "lon": -2.9630937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3508099423, - "lat": 53.7378667, - "lon": -2.9630749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3508099424, - "lat": 53.7383459, - "lon": -2.9590674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 124D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3508192853, - "lat": 56.4130705, - "lon": -3.4504556, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH1 179", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508228965, - "lat": 56.4144949, - "lon": -3.4557391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH1 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508233195, - "lat": 56.4132427, - "lon": -3.4453379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 63D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508233202, - "lat": 56.4176224, - "lon": -3.4520488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 8D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3508374237, - "lat": 53.2064180, - "lon": -4.4024632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL62 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508374238, - "lat": 53.1647727, - "lon": -4.3587112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508374241, - "lat": 53.2565842, - "lon": -4.3110863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508374254, - "lat": 53.2149099, - "lon": -4.3665284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL62 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;osm notes;royalmail.com data" - } -}, -{ - "type": "node", - "id": 3508374280, - "lat": 53.2232090, - "lon": -4.3773500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:45", - "note": "ref not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508374292, - "lat": 53.2589752, - "lon": -4.3260900, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3508374694, - "lat": 53.2358231, - "lon": -4.3567791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL62 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508374698, - "lat": 53.2057529, - "lon": -4.3875142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "LL62 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508374699, - "lat": 53.2445160, - "lon": -4.3432419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL63 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508446769, - "lat": 51.8586729, - "lon": -0.9849470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-19", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HP18 187", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3508446771, - "lat": 51.8657590, - "lon": -0.9992909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-10" - } -}, -{ - "type": "node", - "id": 3508446775, - "lat": 51.8756688, - "lon": -0.9237624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP18 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-10" - } -}, -{ - "type": "node", - "id": 3508446776, - "lat": 51.8788486, - "lon": -1.0056467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP18 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-10" - } -}, -{ - "type": "node", - "id": 3508446777, - "lat": 51.8911252, - "lon": -1.0161617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-10" - } -}, -{ - "type": "node", - "id": 3508545946, - "lat": 50.7901457, - "lon": 0.0073483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The ref was obscured when surveyed", - "note:covid19": "Currently out of use, but the sign looks temporary", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN10 645", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3508791109, - "lat": 51.8538909, - "lon": -2.1825785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL3 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3508868922, - "lat": 51.3960418, - "lon": 0.0089036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 15", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3508959315, - "lat": 52.3872170, - "lon": 1.0754451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3509002579, - "lat": 52.3536675, - "lon": 1.0614498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "Edward VII box, with ER cypher.", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7073", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 3509073201, - "lat": 51.2514133, - "lon": -0.9377672, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG29 201D" - } -}, -{ - "type": "node", - "id": 3509179519, - "lat": 52.5980078, - "lon": -1.1792851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE19 356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3509179520, - "lat": 52.6317043, - "lon": -1.1242769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE2 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3509179521, - "lat": 52.6656716, - "lon": -1.1668780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 849", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3509251240, - "lat": 50.1516021, - "lon": -4.9966355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "It's an E2R lamp box that's been firmly embedded into a wall clad with ivy", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone wall", - "post_box:type": "lamp", - "ref": "TR2 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3509251252, - "lat": 50.1668976, - "lon": -4.9870793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3509251290, - "lat": 50.1847893, - "lon": -4.9860883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3509251291, - "lat": 50.2009736, - "lon": -4.9689758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "385603360856609", - "note": "Letters only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 3509844093, - "lat": 55.9420945, - "lon": -4.5542071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G82 7D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3509846559, - "lat": 55.9410817, - "lon": -4.5489968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1951090778592593", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G82 6D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 3510341071, - "lat": 53.1757319, - "lon": 0.0844198, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3510526327, - "lat": 53.1651638, - "lon": 0.1184193, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3510672114, - "lat": 53.0981103, - "lon": -2.4357674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "ref": "CW1 26", - "source": "survey; Bing" - } -}, -{ - "type": "node", - "id": 3510675338, - "lat": 50.7277852, - "lon": -3.2954300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3510935964, - "lat": 57.0816741, - "lon": -2.1173460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 459" - } -}, -{ - "type": "node", - "id": 3511144974, - "lat": 53.0027848, - "lon": -1.2585028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG16 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3511315138, - "lat": 53.3278214, - "lon": -1.6492688, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S32 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3511315151, - "lat": 53.3305557, - "lon": -1.6542141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "wall", - "ref": "S32 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3511322141, - "lat": 52.5677286, - "lon": 1.1175400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2023-04-24", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1814D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3512215393, - "lat": 51.8047785, - "lon": 0.5596790, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3512252868, - "lat": 53.1555510, - "lon": 0.0621598, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3512398047, - "lat": 53.1479108, - "lon": 0.1001348, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3512423677, - "lat": 54.7118763, - "lon": -6.1779778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3512453141, - "lat": 54.8511341, - "lon": -6.3640723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3512490096, - "lat": 54.8520447, - "lon": -6.3561085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3512767501, - "lat": 54.9748507, - "lon": -1.6096262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3512808603, - "lat": 50.6297406, - "lon": -3.3320233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 9D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 3512810055, - "lat": 52.6652682, - "lon": 1.1834297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR8 826", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3512816212, - "lat": 52.5555517, - "lon": 1.4331722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR14 1415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3513245721, - "lat": 51.4319328, - "lon": -2.6637796, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS41 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3513748570, - "lat": 56.3926124, - "lon": -3.4628235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH1 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513748571, - "lat": 56.3935239, - "lon": -3.4817430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 38D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513748592, - "lat": 56.3916144, - "lon": -3.4749739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 99", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3513790530, - "lat": 56.3875165, - "lon": -3.4344606, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 102D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790537, - "lat": 56.3792812, - "lon": -3.4360631, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 169D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790546, - "lat": 56.3788328, - "lon": -3.4322463, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 56D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790550, - "lat": 56.3823924, - "lon": -3.4415989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 193D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790557, - "lat": 56.3898126, - "lon": -3.4394153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790560, - "lat": 56.3909861, - "lon": -3.4445783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PH2 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790566, - "lat": 56.3856348, - "lon": -3.4390656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 192D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790588, - "lat": 56.3880810, - "lon": -3.4457966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PH2 185D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3513790590, - "lat": 56.3876528, - "lon": -3.4556547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH2 176D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3514086495, - "lat": 53.7856078, - "lon": -3.0458559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3514086496, - "lat": 53.7856264, - "lon": -3.0458652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3514086497, - "lat": 53.7870133, - "lon": -3.0381122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3514359957, - "lat": 51.4094787, - "lon": -0.0162600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR3 238" - } -}, -{ - "type": "node", - "id": 3514359959, - "lat": 51.4087866, - "lon": -0.0108997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR3 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3514359960, - "lat": 51.3994335, - "lon": -0.0086344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 170", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3514649092, - "lat": 50.5974824, - "lon": -2.4797715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT4 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 3515681503, - "lat": 54.5793527, - "lon": -2.4883877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA16 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3515696832, - "lat": 57.0060512, - "lon": -3.4007517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "AB35 436", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3515706906, - "lat": 53.9892562, - "lon": -1.5487049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3515706907, - "lat": 53.9913298, - "lon": -1.5468194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 40D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3515706909, - "lat": 53.9870610, - "lon": -1.5537686, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3515706912, - "lat": 53.9877786, - "lon": -1.5554879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 59D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 3515706914, - "lat": 53.9872179, - "lon": -1.5469972, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3515706915, - "lat": 53.9911665, - "lon": -1.5493867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3515706919, - "lat": 53.9869049, - "lon": -1.5499545, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3515738940, - "lat": 51.4921430, - "lon": -2.4751401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS16 1021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2016-11-02" - } -}, -{ - "type": "node", - "id": 3515966300, - "lat": 53.3634168, - "lon": -1.4494022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 930D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3516227488, - "lat": 53.9780655, - "lon": -1.0655345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45", - "note": "was just franked mail, is now labelled \"Parcel Postbox\" and inscription above slot says \"Parcels and Franked Mail\"", - "post_box:type": "meter", - "ref": "YO31 2020P" - } -}, -{ - "type": "node", - "id": 3516416912, - "lat": 53.9502898, - "lon": -0.9311531, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO41 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3516416913, - "lat": 53.9253763, - "lon": -0.9534451, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3516652782, - "lat": 55.8735582, - "lon": -4.1519328, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3516792341, - "lat": 52.5338795, - "lon": 1.1842810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3517274342, - "lat": 52.5788780, - "lon": 1.2460466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR14 1452D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3517274565, - "lat": 52.5758437, - "lon": 1.2468931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR14 1455", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3517308176, - "lat": 51.5435267, - "lon": 0.2089851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3517429521, - "lat": 53.7631908, - "lon": -2.4794793, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3517444088, - "lat": 57.0058333, - "lon": -3.3965383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB35 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3517607440, - "lat": 51.5447418, - "lon": 0.2064734, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3517704483, - "lat": 51.3755567, - "lon": -0.0063028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 340", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3517931250, - "lat": 52.7524070, - "lon": -1.2183470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3517933339, - "lat": 52.7472600, - "lon": -1.2124588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE11 187D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3518113568, - "lat": 51.7158158, - "lon": -2.3658774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL11 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3518113575, - "lat": 51.7225854, - "lon": -2.4383109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3518113579, - "lat": 51.7807982, - "lon": -2.3873084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL2 170", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3518113581, - "lat": 51.7269383, - "lon": -2.3121207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL10 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3518113582, - "lat": 51.7612894, - "lon": -2.3159855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL10 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3518324918, - "lat": 52.5109696, - "lon": 1.1560535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR16 1601D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3518324925, - "lat": 52.5059792, - "lon": 1.1544735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR16 1603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3519968587, - "lat": 57.0295207, - "lon": -3.2635692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "AB35 401", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3519968589, - "lat": 57.0484342, - "lon": -3.0395205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB35 214", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3520226072, - "lat": 51.3815368, - "lon": -0.0991440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Wellesley Road (Flats)", - "old_ref": "CR0 20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3520241210, - "lat": 51.4766644, - "lon": -0.1922865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "name": "Bagleys Lane / New Kings Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3520947033, - "lat": 56.4202292, - "lon": -3.4704325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PH1 191P", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3520947060, - "lat": 56.4202307, - "lon": -3.4704886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH1 196", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3520953358, - "lat": 56.4122724, - "lon": -3.4940597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 12:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH1 61", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3520955677, - "lat": 56.4153852, - "lon": -3.5049737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 131", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3521128956, - "lat": 56.4271453, - "lon": -3.5189603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:45", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 41", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3521801693, - "lat": 52.5555261, - "lon": 1.2083259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3521820398, - "lat": 51.8162556, - "lon": -0.8368484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Appears to have the wrong reference (typo in the information plate). Royal Mail list indicates that the postbox at this location should be HP19 307.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820399, - "lat": 51.8170787, - "lon": -0.8371676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820400, - "lat": 51.8173296, - "lon": -0.8395146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820401, - "lat": 51.8203221, - "lon": -0.8264504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP19 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820403, - "lat": 51.8219100, - "lon": -0.8372903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Outside front of store.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820404, - "lat": 51.8227726, - "lon": -0.8521152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820405, - "lat": 51.8247556, - "lon": -0.8410077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP19 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820406, - "lat": 51.8259793, - "lon": -0.8351295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3521820409, - "lat": 51.8265137, - "lon": -0.8460011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-16" - } -}, -{ - "type": "node", - "id": 3522239691, - "lat": 52.2942736, - "lon": -1.5259262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240893, - "lat": 52.2965104, - "lon": -1.5233620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240894, - "lat": 52.2980047, - "lon": -1.5305460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV32 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240895, - "lat": 52.2988301, - "lon": -1.5172042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240896, - "lat": 52.2996991, - "lon": -1.5232907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-24", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240898, - "lat": 52.3005443, - "lon": -1.5118223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240899, - "lat": 52.3027212, - "lon": -1.5198133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "CV32 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240900, - "lat": 52.3070590, - "lon": -1.5214039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240901, - "lat": 52.3080516, - "lon": -1.5150881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-31", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240902, - "lat": 52.3103159, - "lon": -1.5202588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV32 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240903, - "lat": 52.3105699, - "lon": -1.5003612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV32 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240904, - "lat": 52.3120521, - "lon": -1.4977502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240905, - "lat": 52.3124417, - "lon": -1.5170979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV32 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240906, - "lat": 52.3125249, - "lon": -1.5237696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240907, - "lat": 52.3140971, - "lon": -1.5021502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522240908, - "lat": 52.3147448, - "lon": -1.5168902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3522325544, - "lat": 51.3814835, - "lon": 0.5041757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME1 143" - } -}, -{ - "type": "node", - "id": 3522325547, - "lat": 51.3706157, - "lon": 0.5033717, - "tags": { - "addr:street": "The Tideway", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 315" - } -}, -{ - "type": "node", - "id": 3522333982, - "lat": 51.3835365, - "lon": 0.5056955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 154" - } -}, -{ - "type": "node", - "id": 3522334473, - "lat": 51.3668481, - "lon": 0.5056877, - "tags": { - "addr:street": "Fleet Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME1 318D" - } -}, -{ - "type": "node", - "id": 3522336034, - "lat": 51.3808586, - "lon": 0.5040159, - "tags": { - "addr:street": "Jenner Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME1 151D" - } -}, -{ - "type": "node", - "id": 3522337031, - "lat": 51.3726646, - "lon": 0.4842141, - "tags": { - "addr:street": "Borstal Street", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 184" - } -}, -{ - "type": "node", - "id": 3522340801, - "lat": 51.3752272, - "lon": 0.5072819, - "tags": { - "addr:street": "Jasper Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 283D" - } -}, -{ - "type": "node", - "id": 3522374929, - "lat": 51.4902893, - "lon": -2.4899422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "post_box:type": "pillar", - "ref": "BS16 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3522396451, - "lat": 51.4854617, - "lon": -2.4871843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "307931570739181", - "post_box:type": "pillar", - "ref": "BS16 1089", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 3522429501, - "lat": 51.4892402, - "lon": -2.4791726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "ref": "BS16 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3522753028, - "lat": 51.2004518, - "lon": -1.3634679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3523206106, - "lat": 55.0289885, - "lon": -1.5860539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE12 390D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3523280085, - "lat": 51.7377398, - "lon": -2.1592594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "GL6 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3523367622, - "lat": 51.5259671, - "lon": -0.0553789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3523406708, - "lat": 52.4291550, - "lon": -1.8617734, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 597", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3523406709, - "lat": 52.4315872, - "lon": -1.8540078, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 645D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3523406713, - "lat": 52.4337622, - "lon": -1.8460124, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 487", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3523464603, - "lat": 52.4248487, - "lon": -1.8473636, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B28 379", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3523987427, - "lat": 52.9736188, - "lon": -1.0994195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "image": "http://mapillary.com/map/im/NAqgCzwWBb3a7oU6PO2UBQ", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 431", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3523987618, - "lat": 52.9749955, - "lon": -1.0989958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "http://mapillary.com/map/im/KklUB9q8rf7SAhkvEQIPAw", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 470D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3523987997, - "lat": 52.9782105, - "lon": -1.0907308, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/9sZ2-O4FpFEzdXH_z31gQA", - "phone": "+44 345 774 0740", - "post_box:type": "pillar", - "ref": "NG4 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3524056607, - "lat": 52.6126924, - "lon": 1.3166697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "NR14 1465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524163070, - "lat": 50.8417421, - "lon": -1.1305376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO16 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3524175092, - "lat": 53.9772309, - "lon": -1.5596946, - "tags": { - "amenity": "post_box", - "note": "yes, this post box is at the junction of B'with Cres and B'with rd despite RM saying it at the junction of B'with Av and B'with Rd", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3524175296, - "lat": 53.9797706, - "lon": -1.5673577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "HG3 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524175299, - "lat": 53.9715502, - "lon": -1.5348094, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3524175301, - "lat": 53.9740618, - "lon": -1.5569347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 74D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3524175307, - "lat": 53.9835975, - "lon": -1.5515426, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524175313, - "lat": 53.9816317, - "lon": -1.5467103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524175315, - "lat": 53.9795102, - "lon": -1.5531340, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3524175316, - "lat": 53.9814550, - "lon": -1.5590485, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3524175321, - "lat": 53.9764105, - "lon": -1.5543975, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3524175322, - "lat": 53.9800781, - "lon": -1.5578037, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3524175334, - "lat": 53.9707503, - "lon": -1.5446048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 11:45", - "post_box:type": "pillar", - "ref": "HG2 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3524175340, - "lat": 53.9834313, - "lon": -1.5559100, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3524175343, - "lat": 53.9853854, - "lon": -1.5441032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3524175345, - "lat": 53.9734875, - "lon": -1.5501433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HG2 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524175349, - "lat": 53.9828509, - "lon": -1.5435695, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524175371, - "lat": 53.9802437, - "lon": -1.5401523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3524175375, - "lat": 53.9829549, - "lon": -1.5366896, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3524201295, - "lat": 51.3608231, - "lon": -0.6882418, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3524202329, - "lat": 50.8574206, - "lon": -1.1902643, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO16 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524235687, - "lat": 52.9821361, - "lon": -1.0807592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/XMdxNjWw-E-VViWqtgrtUw", - "phone": "+44 345 774 0740", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG4 454D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3524255894, - "lat": 50.8889771, - "lon": -0.9704313, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "PO9 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524274246, - "lat": 50.8740978, - "lon": -0.9703555, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO9 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524284765, - "lat": 50.8719811, - "lon": -0.9647548, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO9 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524291491, - "lat": 50.8686719, - "lon": -0.9911827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3524294195, - "lat": 50.8715257, - "lon": -0.9891544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524295951, - "lat": 50.8621568, - "lon": -0.9707048, - "tags": { - "amenity": "post_box", - "collection_plate": "None shown", - "collection_times": "Mo-Fr 18:30; Sa off", - "mail:franked": "yes", - "mail:unfranked": "no", - "post_box:type": "meter", - "ref": "PO9 158", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3524312616, - "lat": 50.8684891, - "lon": -0.9675014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524326605, - "lat": 50.8706947, - "lon": -0.9728203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524343963, - "lat": 50.8754094, - "lon": -1.0011095, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "PO9 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524354471, - "lat": 50.8733919, - "lon": -0.9874624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524362648, - "lat": 50.8217407, - "lon": -0.9816997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3524374548, - "lat": 50.8612935, - "lon": -0.9268552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30, Sa 12:15", - "note": "I have upgraded the tag for this Royal Mail postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3524524531, - "lat": 52.9800199, - "lon": -1.0734900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.mapillary.com/map/im/93zvmHe94ba7NN_bGKoENA", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG4 491D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3525108063, - "lat": 54.8901218, - "lon": -2.9671153, - "tags": { - "amenity": "post_box", - "ref": "CA2 65" - } -}, -{ - "type": "node", - "id": 3525108064, - "lat": 54.8960606, - "lon": -2.9528022, - "tags": { - "amenity": "post_box", - "ref": "CA2 332" - } -}, -{ - "type": "node", - "id": 3525108065, - "lat": 54.8940381, - "lon": -2.9478990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1141482693592006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA2 73", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3525123561, - "lat": 54.8823712, - "lon": -2.9401114, - "tags": { - "amenity": "post_box", - "ref": "CA2 146" - } -}, -{ - "type": "node", - "id": 3525310296, - "lat": 53.7778885, - "lon": -3.0443927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3525310297, - "lat": 53.7948112, - "lon": -3.0536438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3525310298, - "lat": 53.7960579, - "lon": -3.0560486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3525310299, - "lat": 53.7987668, - "lon": -3.0528415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3525490983, - "lat": 53.9706257, - "lon": -1.5293471, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3525491337, - "lat": 53.9786034, - "lon": -1.5304816, - "tags": { - "amenity": "post_box", - "note": "yes, post box is next to H'stone Ave, not Cor'n Ave, despite what RM says", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3525491344, - "lat": 53.9750352, - "lon": -1.5281266, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3525491391, - "lat": 53.9818296, - "lon": -1.5321825, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3525491506, - "lat": 53.9743758, - "lon": -1.5304682, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3525618903, - "lat": 54.8866746, - "lon": -2.9402795, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 95", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3525618904, - "lat": 54.8890469, - "lon": -2.9378336, - "tags": { - "amenity": "post_box", - "ref": "CA2 489" - } -}, -{ - "type": "node", - "id": 3525630769, - "lat": 54.8884040, - "lon": -2.9341432, - "tags": { - "amenity": "post_box", - "ref": "CA2 46" - } -}, -{ - "type": "node", - "id": 3525739093, - "lat": 54.8825662, - "lon": -2.9318113, - "tags": { - "amenity": "post_box", - "ref": "CA2 53" - } -}, -{ - "type": "node", - "id": 3525739095, - "lat": 54.8792154, - "lon": -2.9320701, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 284", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3525739105, - "lat": 54.8746362, - "lon": -2.9323512, - "tags": { - "amenity": "post_box", - "ref": "CA2 9" - } -}, -{ - "type": "node", - "id": 3525831162, - "lat": 54.8786518, - "lon": -2.9262214, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA2 117" - } -}, -{ - "type": "node", - "id": 3525886151, - "lat": 54.8822261, - "lon": -2.9280676, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CA2 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3526089958, - "lat": 54.8838969, - "lon": -2.9265929, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA2 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3526157910, - "lat": 50.1073423, - "lon": -5.2725872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 3526212763, - "lat": 54.8929250, - "lon": -2.9310395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "post_box:type": "meter", - "ref": "CA1 484P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3526650335, - "lat": 55.8430060, - "lon": -3.8717251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML7 15D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3526650345, - "lat": 55.8432441, - "lon": -3.8748769, - "tags": { - "amenity": "post_box", - "ref": "ML7 121", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3526895786, - "lat": 50.8468957, - "lon": -0.9316143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3526917123, - "lat": 50.8508694, - "lon": -0.9782391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "last_checked": "2021-05-06", - "note": "This Postbox has the latest collection in this area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO9 9992", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3526952065, - "lat": 50.8523496, - "lon": -0.9932184, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "PO9 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3527005833, - "lat": 50.8457377, - "lon": -0.9136288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3527326780, - "lat": 56.4165466, - "lon": -3.5167117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 133", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3528045542, - "lat": 54.9602073, - "lon": -2.8817897, - "tags": { - "amenity": "post_box", - "ref": "CA6 393" - } -}, -{ - "type": "node", - "id": 3528105179, - "lat": 54.8183453, - "lon": -2.6630421, - "tags": { - "amenity": "post_box", - "ref": "CA4 137" - } -}, -{ - "type": "node", - "id": 3528156169, - "lat": 54.7785353, - "lon": -2.7185621, - "tags": { - "amenity": "post_box", - "ref": "CA10 194" - } -}, -{ - "type": "node", - "id": 3528173853, - "lat": 54.7989622, - "lon": -2.6423537, - "tags": { - "amenity": "post_box", - "ref": "CA10 230" - } -}, -{ - "type": "node", - "id": 3528224504, - "lat": 54.6864376, - "lon": -2.5488181, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 191", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3528302827, - "lat": 52.5556141, - "lon": 1.2322069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR14 1448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528302834, - "lat": 52.5589603, - "lon": 1.2332795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR14 1450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528302850, - "lat": 52.5571438, - "lon": 1.2375201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528345384, - "lat": 54.5267882, - "lon": -2.6735107, - "tags": { - "amenity": "post_box", - "ref": "CA10 55" - } -}, -{ - "type": "node", - "id": 3528409275, - "lat": 54.4624457, - "lon": -2.5461504, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA10 155" - } -}, -{ - "type": "node", - "id": 3528415479, - "lat": 54.4423205, - "lon": -2.5281173, - "tags": { - "amenity": "post_box", - "ref": "CA10 328" - } -}, -{ - "type": "node", - "id": 3528419244, - "lat": 54.5839917, - "lon": -2.8734031, - "tags": { - "amenity": "post_box", - "ref": "CA11 67" - } -}, -{ - "type": "node", - "id": 3528429437, - "lat": 54.6731879, - "lon": -2.6964971, - "tags": { - "amenity": "post_box", - "ref": "CA11 122" - } -}, -{ - "type": "node", - "id": 3528442250, - "lat": 54.6909977, - "lon": -2.7374174, - "tags": { - "amenity": "post_box", - "ref": "CA11 236" - } -}, -{ - "type": "node", - "id": 3528446003, - "lat": 54.6546693, - "lon": -2.7541719, - "tags": { - "amenity": "post_box", - "ref": "CA11 189" - } -}, -{ - "type": "node", - "id": 3528446006, - "lat": 54.6571549, - "lon": -2.7512199, - "tags": { - "amenity": "post_box", - "ref": "CA11 305" - } -}, -{ - "type": "node", - "id": 3528449975, - "lat": 54.6604172, - "lon": -2.7478369, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA11 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528450772, - "lat": 54.6421495, - "lon": -3.5422275, - "tags": { - "amenity": "post_box", - "ref": "CA14 3" - } -}, -{ - "type": "node", - "id": 3528453853, - "lat": 54.6625101, - "lon": -2.7509058, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 1319" - } -}, -{ - "type": "node", - "id": 3528453854, - "lat": 54.6625254, - "lon": -2.7509292, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA11 319" - } -}, -{ - "type": "node", - "id": 3528460796, - "lat": 54.6480357, - "lon": -3.4699432, - "tags": { - "amenity": "post_box", - "ref": "CA14 129" - } -}, -{ - "type": "node", - "id": 3528485490, - "lat": 52.4901498, - "lon": 1.1855338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR16 1612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528488078, - "lat": 54.5232599, - "lon": -3.5246835, - "tags": { - "amenity": "post_box", - "ref": "CA25 122" - } -}, -{ - "type": "node", - "id": 3528490121, - "lat": 52.5245635, - "lon": 1.2075471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1522", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528490145, - "lat": 52.4956632, - "lon": 1.1998917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528490180, - "lat": 52.5111293, - "lon": 1.1977728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "NR16 1611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528490298, - "lat": 52.4825943, - "lon": 1.1618043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR16 1627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528490301, - "lat": 52.4996148, - "lon": 1.1536825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1620D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528506854, - "lat": 54.5020637, - "lon": -3.5311731, - "tags": { - "amenity": "post_box", - "ref": "CA22 26" - } -}, -{ - "type": "node", - "id": 3528542561, - "lat": 54.4852614, - "lon": -3.4874414, - "tags": { - "amenity": "post_box", - "ref": "CA22 120" - } -}, -{ - "type": "node", - "id": 3528544187, - "lat": 54.3904402, - "lon": -3.3362908, - "tags": { - "amenity": "post_box", - "ref": "CA19 117" - } -}, -{ - "type": "node", - "id": 3528544188, - "lat": 54.3868112, - "lon": -3.3118373, - "tags": { - "amenity": "post_box", - "ref": "CA19 50" - } -}, -{ - "type": "node", - "id": 3528598733, - "lat": 54.7468427, - "lon": -2.0052520, - "tags": { - "amenity": "post_box", - "ref": "DL13 138" - } -}, -{ - "type": "node", - "id": 3528598734, - "lat": 54.7512664, - "lon": -2.0117141, - "tags": { - "amenity": "post_box", - "ref": "DL13 61" - } -}, -{ - "type": "node", - "id": 3528613706, - "lat": 54.7436014, - "lon": -2.0746507, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL13 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3528728098, - "lat": 52.3965650, - "lon": -1.8819902, - "tags": { - "amenity": "post_box", - "ref": "B47 246", - "source": "Warwicks CC Aerial Imagery" - } -}, -{ - "type": "node", - "id": 3528783761, - "lat": 53.9845548, - "lon": -1.5218858, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3528783763, - "lat": 53.9804558, - "lon": -1.5248843, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3528783764, - "lat": 53.9821685, - "lon": -1.5245224, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3528783765, - "lat": 53.9860499, - "lon": -1.5308092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "HG2 71", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3528783766, - "lat": 53.9907573, - "lon": -1.5205608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "post box moved to other side of road when st winifreds post office closed down and converted to housing", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3528783767, - "lat": 53.9804369, - "lon": -1.5248629, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 3528783768, - "lat": 53.9872841, - "lon": -1.5251715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HG2 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3528905305, - "lat": 55.7258260, - "lon": -3.9019611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "897429718460520", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2024-01-06" - } -}, -{ - "type": "node", - "id": 3528905315, - "lat": 55.6992462, - "lon": -3.8698617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "956026419377972", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML8 58", - "source": "survey", - "survey:date": "2024-01-06" - } -}, -{ - "type": "node", - "id": 3528998213, - "lat": 55.6531299, - "lon": -3.8691830, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3529015015, - "lat": 55.6740178, - "lon": -3.8211184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "name": "Linnville", - "operator": "Royal Mail", - "ref": "ML11 30", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3529165108, - "lat": 50.8042127, - "lon": -1.1493319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO12 999" - } -}, -{ - "type": "node", - "id": 3529165447, - "lat": 55.6652535, - "lon": -3.9116872, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3529186044, - "lat": 50.8606646, - "lon": -0.9632349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3529233387, - "lat": 50.7956380, - "lon": -1.1900914, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "lamp", - "ref": "PO13 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3529240298, - "lat": 50.7957527, - "lon": -1.1955048, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO13 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3529365477, - "lat": 50.7998375, - "lon": -1.1929325, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO13 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3529380298, - "lat": 51.4781096, - "lon": -2.5729055, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS7 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3529382974, - "lat": 50.8051348, - "lon": -1.1924927, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO13 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3530017068, - "lat": 51.3998456, - "lon": 0.0117641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR2 251D" - } -}, -{ - "type": "node", - "id": 3530410947, - "lat": 51.5121052, - "lon": -0.1270110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "now a parcel box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WC2H 85P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3530410948, - "lat": 51.5126300, - "lon": -0.1272160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC2H 71;WC2H 271", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3530410949, - "lat": 51.5163720, - "lon": -0.1239937, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "In post office foyer, no collection time plate", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3530542504, - "lat": 52.9195465, - "lon": -1.4762739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE1 1417", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3530980810, - "lat": 51.2810480, - "lon": -0.9898343, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "RG27 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3530982374, - "lat": 51.2901533, - "lon": -0.9793943, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "mapillary": "849594646661274", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG27 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3530983835, - "lat": 51.3007709, - "lon": -0.9809093, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG27 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3530985605, - "lat": 51.3090586, - "lon": -0.9834075, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "RG27 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:geometry": "GPS" - } -}, -{ - "type": "node", - "id": 3531002131, - "lat": 51.3157394, - "lon": -1.0007737, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "RG27 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531010167, - "lat": 51.3406473, - "lon": -0.9623752, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "RG27 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531011186, - "lat": 51.2985362, - "lon": -0.8262947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa off", - "post_box:type": "meter", - "ref": "GU51 65", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3531017090, - "lat": 50.8630899, - "lon": -0.9739047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531018216, - "lat": 50.8710317, - "lon": -0.9690834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531025377, - "lat": 50.8859442, - "lon": -0.9679113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "note": "This postbox has the brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531041289, - "lat": 50.9036180, - "lon": -1.0060737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531121328, - "lat": 56.4424187, - "lon": -3.4782349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 58", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3531124812, - "lat": 50.8340940, - "lon": -1.1840298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531191567, - "lat": 50.9290248, - "lon": -1.0091089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531192882, - "lat": 50.9077101, - "lon": -1.0406476, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO8 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531195066, - "lat": 50.8944197, - "lon": -1.0521248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3531319229, - "lat": 53.9912630, - "lon": -1.5664449, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3531459895, - "lat": 51.5626161, - "lon": 0.1785567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3533029729, - "lat": 54.7567224, - "lon": -2.0122083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3533272345, - "lat": 54.7302217, - "lon": -1.8903588, - "tags": { - "amenity": "post_box", - "ref": "DL13 39" - } -}, -{ - "type": "node", - "id": 3533402594, - "lat": 54.7347852, - "lon": -1.8809028, - "tags": { - "amenity": "post_box", - "ref": "DL13 88" - } -}, -{ - "type": "node", - "id": 3533402595, - "lat": 54.7315442, - "lon": -1.8777387, - "tags": { - "amenity": "post_box", - "ref": "DL13 186" - } -}, -{ - "type": "node", - "id": 3533402598, - "lat": 54.7301504, - "lon": -1.8736203, - "tags": { - "amenity": "post_box", - "ref": "DL13 77" - } -}, -{ - "type": "node", - "id": 3533494747, - "lat": 54.7512314, - "lon": -1.8225323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "885899779102499", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DL13 129", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 3533554641, - "lat": 54.7479412, - "lon": -1.8154663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1185527322074378", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DL13 40", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 3533595465, - "lat": 54.7445211, - "lon": -1.8143900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "835281974220902", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL13 141", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 3533629081, - "lat": 54.7421491, - "lon": -1.8136787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1497817727407008", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DL13 166", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 3533629216, - "lat": 54.7460680, - "lon": -1.8189442, - "tags": { - "amenity": "post_box", - "ref": "DL13 148" - } -}, -{ - "type": "node", - "id": 3533673470, - "lat": 54.7405173, - "lon": -1.7808005, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL13 90", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3533828857, - "lat": 51.3908232, - "lon": 0.0150066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 478" - } -}, -{ - "type": "node", - "id": 3533828858, - "lat": 51.3888375, - "lon": 0.0383138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 484D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3534149758, - "lat": 51.5024335, - "lon": -2.4919284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS16 650", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-01-11" - } -}, -{ - "type": "node", - "id": 3534168951, - "lat": 54.9037606, - "lon": -5.0115920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "965924695280760", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG9 60D", - "source": "survey", - "survey:date": "2024-05-12" - } -}, -{ - "type": "node", - "id": 3534231195, - "lat": 54.9711255, - "lon": -5.0198356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG9 36", - "source": "survey", - "survey:date": "2021-12-19", - "wikimedia_commons": "File:Cairnryan village - (3) - geograph.org.uk - 2904901.jpg" - } -}, -{ - "type": "node", - "id": 3534231220, - "lat": 55.0816090, - "lon": -4.9774227, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3534231222, - "lat": 55.1007781, - "lon": -5.0046767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3534231285, - "lat": 55.1687949, - "lon": -4.9356079, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3534300321, - "lat": 55.2461889, - "lon": -4.8523925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3534300335, - "lat": 55.3302932, - "lon": -4.7764889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA19 55", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3534300367, - "lat": 55.3938034, - "lon": -4.6392900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3535532806, - "lat": 51.3673133, - "lon": -0.0190851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 399D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3535532810, - "lat": 51.3698063, - "lon": -0.0226207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 292", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3535532811, - "lat": 51.3740779, - "lon": -0.0212113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 279D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3535532812, - "lat": 51.3716836, - "lon": -0.0182790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 275", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3535532813, - "lat": 51.3710327, - "lon": -0.0151535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3535532814, - "lat": 51.3728173, - "lon": -0.0126468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR4 411D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3535532815, - "lat": 51.3788725, - "lon": -0.0243271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR4 446D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3535535542, - "lat": 52.1287706, - "lon": -0.2881868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "3 apertures in wall of delivery office. Marked, 1st 2nd and local", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "SG19 115", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3535535543, - "lat": 52.1287652, - "lon": -0.2932546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG19 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3535565921, - "lat": 51.4992251, - "lon": -0.1956639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "name": "Allen Street, near Wynstay Gardens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3535572776, - "lat": 51.5020856, - "lon": -0.1911629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "name": "Kensington High Street/Kensington Church St.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3535585698, - "lat": 51.5007335, - "lon": -0.1841227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "name": "Palace Gate/Facing Freston Place", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 29", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3535710221, - "lat": 50.7973270, - "lon": -0.6270659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3535963473, - "lat": 55.5446695, - "lon": -2.0202202, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6956033", - "post_box:type": "lamp", - "ref": "NE71 100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3535979905, - "lat": 55.5456461, - "lon": -2.0078942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE71 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-04-18" - } -}, -{ - "type": "node", - "id": 3535979906, - "lat": 55.5486322, - "lon": -2.0152328, - "tags": { - "amenity": "post_box", - "ref": "NE71 139" - } -}, -{ - "type": "node", - "id": 3535979907, - "lat": 55.5500251, - "lon": -2.0155278, - "tags": { - "amenity": "post_box", - "ref": "NE71 18" - } -}, -{ - "type": "node", - "id": 3535981649, - "lat": 51.7518246, - "lon": -1.4521184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX29 295" - } -}, -{ - "type": "node", - "id": 3536009729, - "lat": 55.5281689, - "lon": -1.9119105, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3536123766, - "lat": 52.2371170, - "lon": -1.0671053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3536416315, - "lat": 52.1120268, - "lon": -0.4321722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 3536727510, - "lat": 51.4908904, - "lon": -2.5026193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "ref": "BS16 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3536744142, - "lat": 51.4882035, - "lon": -2.5037816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BS16 1028;BS16 1029", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3536773262, - "lat": 51.4883135, - "lon": -2.4960831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3538431832, - "lat": 54.2693245, - "lon": -3.1961535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA20 65" - } -}, -{ - "type": "node", - "id": 3538501550, - "lat": 54.1362943, - "lon": -3.2098954, - "tags": { - "access": "customers", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "ref": "LA14 24" - } -}, -{ - "type": "node", - "id": 3539201715, - "lat": 52.3498299, - "lon": -1.5848771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV8 393", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3539242553, - "lat": 52.3531883, - "lon": -1.5875995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3539242554, - "lat": 52.3542626, - "lon": -1.5835028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV8 382D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3539477014, - "lat": 51.3732957, - "lon": -0.0020418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR4 402", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3539732477, - "lat": 50.7829299, - "lon": -0.9713512, - "tags": { - "amenity": "post_box", - "collection_plate": "CP14D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO11 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539747009, - "lat": 50.7876489, - "lon": -1.0002161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO11 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539751099, - "lat": 50.7855877, - "lon": -0.9882411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539756677, - "lat": 50.7844299, - "lon": -0.9802669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO11 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539757789, - "lat": 50.7827697, - "lon": -0.9653807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO11 33" - } -}, -{ - "type": "node", - "id": 3539770348, - "lat": 50.7873131, - "lon": -0.9839469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3539773887, - "lat": 50.7983497, - "lon": -0.9843646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539774715, - "lat": 50.7899727, - "lon": -0.9867780, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO11 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3539778403, - "lat": 50.7918366, - "lon": -0.9768685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539803391, - "lat": 50.7988250, - "lon": -0.9743043, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO11 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539907893, - "lat": 50.9142867, - "lon": -1.2754479, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO30 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539941677, - "lat": 50.8977428, - "lon": -1.1757462, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "post_box:type": "pillar", - "ref": "PO17 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539953393, - "lat": 50.8920977, - "lon": -0.0103076, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "BN7 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539953428, - "lat": 50.8675798, - "lon": 0.0247850, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN8 1242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3539966250, - "lat": 50.7743467, - "lon": 0.2989672, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BN22 752D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3540008847, - "lat": 50.7750698, - "lon": 0.2902716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 859", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3540011188, - "lat": 50.7842530, - "lon": 0.2914141, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN22 856", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3540014956, - "lat": 50.7859788, - "lon": 0.3043491, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BN23 876", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3540420624, - "lat": 56.4151334, - "lon": -3.5824414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "manufacturer": "W.T.Allen & Co London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH1 166", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3541785372, - "lat": 50.8003156, - "lon": 0.2827880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 833", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3541796104, - "lat": 50.8972101, - "lon": 0.0042299, - "tags": { - "amenity": "post_box", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "wall", - "ref": "BN8 498" - } -}, -{ - "type": "node", - "id": 3541798247, - "lat": 50.9038040, - "lon": -0.0084278, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN8 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3541804095, - "lat": 50.7854843, - "lon": -1.0883969, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO5 1081", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3541823665, - "lat": 50.8514105, - "lon": -1.0072365, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "lamp", - "ref": "PO9 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3541824993, - "lat": 51.4953390, - "lon": -0.1514675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "note": "prob 2 slots", - "post_box:design": "type_c", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3541826644, - "lat": 50.8552255, - "lon": -1.0105973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-23", - "old_ref": "PO9 90", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3541842139, - "lat": 50.8594761, - "lon": -1.0054850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-23", - "old_ref": "PO9 82", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3541848916, - "lat": 50.8607865, - "lon": -1.0027009, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "PO9 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3541886367, - "lat": 50.8579921, - "lon": -0.9323546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3541904167, - "lat": 50.8566486, - "lon": -0.9416216, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:type": "lamp", - "ref": "PO10 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542143633, - "lat": 52.7152137, - "lon": 1.0857703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "note": "Letters only", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NR9 959", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542211976, - "lat": 51.4540360, - "lon": -2.1255920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542211984, - "lat": 51.5980927, - "lon": -2.2194815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL8 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3542212617, - "lat": 51.6626050, - "lon": -2.0522860, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3542372749, - "lat": 51.2826871, - "lon": -0.9663975, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3542489716, - "lat": 51.4094962, - "lon": -2.4737707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS31 347D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3542489719, - "lat": 51.4265733, - "lon": -2.3569459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "680000773869473", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA1 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 3542489723, - "lat": 51.4358080, - "lon": -2.5533879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 1103D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3542489724, - "lat": 51.4359925, - "lon": -2.8402741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS21 48" - } -}, -{ - "type": "node", - "id": 3542489725, - "lat": 51.4377586, - "lon": -2.5519917, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS4 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542489726, - "lat": 51.4425594, - "lon": -2.5505443, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 93D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542489727, - "lat": 51.4454282, - "lon": -2.5488230, - "tags": { - "amenity": "post_box", - "note": "no ref plate", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542489731, - "lat": 51.4495041, - "lon": -2.5501533, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS4 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542543954, - "lat": 51.3699284, - "lon": 0.0011657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR4 301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542549316, - "lat": 51.3552960, - "lon": -2.1241997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542549317, - "lat": 51.3579771, - "lon": -2.1207314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542549355, - "lat": 51.3829565, - "lon": -2.1377109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542549363, - "lat": 51.3890280, - "lon": -2.1709203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542549364, - "lat": 51.3918855, - "lon": -2.1875162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 175D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3542982694, - "lat": 53.9886837, - "lon": -1.5049877, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3542982695, - "lat": 53.9943660, - "lon": -1.5006326, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3542982696, - "lat": 53.9900692, - "lon": -1.5090671, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542982725, - "lat": 53.9974470, - "lon": -1.4971322, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3542982757, - "lat": 53.9952837, - "lon": -1.5177635, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3542982767, - "lat": 53.9972404, - "lon": -1.5029821, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3542982781, - "lat": 53.9984576, - "lon": -1.4928273, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542982782, - "lat": 53.9919982, - "lon": -1.5099686, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3542982801, - "lat": 53.9902348, - "lon": -1.4927361, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542982802, - "lat": 53.9898816, - "lon": -1.4992136, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542982808, - "lat": 53.9886706, - "lon": -1.4904617, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3542982815, - "lat": 53.9990362, - "lon": -1.5023303, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3542982816, - "lat": 53.9958829, - "lon": -1.5149820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 13:30", - "post_box:type": "pillar", - "ref": "HG2 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3542982817, - "lat": 53.9907589, - "lon": -1.5135574, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3542982823, - "lat": 53.9965293, - "lon": -1.5102455, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3543021648, - "lat": 54.0115225, - "lon": -1.4560901, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3543082855, - "lat": 53.9528343, - "lon": -1.2366487, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO26 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3543205172, - "lat": 51.0789233, - "lon": -0.8321623, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU30 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3543642277, - "lat": 53.8730231, - "lon": -1.1586904, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO23 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3543853152, - "lat": 51.4612920, - "lon": -2.0992578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3543853153, - "lat": 51.4626880, - "lon": -2.1048390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3543935425, - "lat": 53.5507505, - "lon": -2.0055016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OL3 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3544001879, - "lat": 51.4588164, - "lon": -2.5933260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "comment": "(inside bus station)", - "location": "indoor", - "post_box:type": "pillar", - "ref": "BS1 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3544061316, - "lat": 53.5639046, - "lon": -2.0212849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OL3 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-19" - } -}, -{ - "type": "node", - "id": 3544061317, - "lat": 53.5710468, - "lon": -2.0199139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OL3 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-19" - } -}, -{ - "type": "node", - "id": 3544061318, - "lat": 53.5810532, - "lon": -1.9936953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OL3 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-19" - } -}, -{ - "type": "node", - "id": 3544182366, - "lat": 53.8836345, - "lon": -2.0505776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD22 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-21" - } -}, -{ - "type": "node", - "id": 3544182367, - "lat": 53.8844854, - "lon": -2.0421148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD22 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-21" - } -}, -{ - "type": "node", - "id": 3544182369, - "lat": 53.8871981, - "lon": -2.0382349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD22 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-21" - } -}, -{ - "type": "node", - "id": 3544360216, - "lat": 52.9358324, - "lon": 1.2718799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-04-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2715D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3544602342, - "lat": 51.9017286, - "lon": -1.7635568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 216", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3544795534, - "lat": 52.0911853, - "lon": -0.4605737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 3544849441, - "lat": 52.9078556, - "lon": 1.0858891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR25 2508D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3544863518, - "lat": 52.6977087, - "lon": 1.2444944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR10 1005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3544887668, - "lat": 52.7033859, - "lon": 1.2401951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR10 1007", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3545137909, - "lat": 51.5150338, - "lon": -0.3958920, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3545241204, - "lat": 52.0465616, - "lon": -1.7846149, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3545276434, - "lat": 52.6417227, - "lon": 0.8340673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3545276716, - "lat": 52.6436155, - "lon": 0.8398071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 2335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3545281740, - "lat": 52.6357134, - "lon": 0.7910834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3545281744, - "lat": 52.6314728, - "lon": 0.7889390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP25 3399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3546280066, - "lat": 53.8433200, - "lon": -2.9857577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3546280067, - "lat": 53.8461162, - "lon": -2.9901083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3546308340, - "lat": 53.9224660, - "lon": -3.0120760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa off; Su off", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3547223533, - "lat": 52.6064927, - "lon": 0.7856191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP25 3201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3547223588, - "lat": 52.6109739, - "lon": 0.7843846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3547229799, - "lat": 52.6034356, - "lon": 0.7847655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3547270482, - "lat": 54.9644779, - "lon": -2.1231191, - "tags": { - "amenity": "post_box", - "ref": "NE46 42" - } -}, -{ - "type": "node", - "id": 3547272836, - "lat": 54.9599567, - "lon": -2.1153636, - "tags": { - "amenity": "post_box", - "ref": "NE46 189" - } -}, -{ - "type": "node", - "id": 3547272841, - "lat": 54.9676407, - "lon": -2.1150018, - "tags": { - "amenity": "post_box", - "ref": "NE46 65" - } -}, -{ - "type": "node", - "id": 3547272842, - "lat": 54.9715804, - "lon": -2.1167349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE46 127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3547273300, - "lat": 54.9651961, - "lon": -2.1176010, - "tags": { - "amenity": "post_box", - "ref": "NE46 188" - } -}, -{ - "type": "node", - "id": 3547273301, - "lat": 54.9632837, - "lon": -2.1152063, - "tags": { - "amenity": "post_box", - "ref": "NE46 137" - } -}, -{ - "type": "node", - "id": 3547310548, - "lat": 54.9661378, - "lon": -2.1093559, - "tags": { - "amenity": "post_box", - "ref": "NE46 130" - } -}, -{ - "type": "node", - "id": 3547499759, - "lat": 55.6834647, - "lon": -3.8213205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ML11 40" - } -}, -{ - "type": "node", - "id": 3547510313, - "lat": 55.9701877, - "lon": -4.9092962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "name": "Western Ferries Terminal", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA23 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3547783044, - "lat": 56.4252386, - "lon": -3.3914041, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 42D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3547783058, - "lat": 56.4254017, - "lon": -3.4290752, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Sa 12:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 173", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3547783078, - "lat": 56.4151559, - "lon": -3.4046727, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3547783092, - "lat": 56.4200794, - "lon": -3.4056198, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 225D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3547812594, - "lat": 51.7690553, - "lon": -1.4867646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX29 250", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3547863601, - "lat": 55.8639468, - "lon": -4.2579078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G2 1097", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3548407312, - "lat": 57.3412170, - "lon": -5.6462091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 14:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV40 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3548615359, - "lat": 52.5187433, - "lon": 1.0101896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1737D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3548615386, - "lat": 52.5350566, - "lon": 1.0543550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3548616309, - "lat": 52.5127920, - "lon": 1.0153502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1739D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3548616327, - "lat": 52.5153726, - "lon": 1.0059437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1748D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3548626344, - "lat": 55.7590550, - "lon": -4.8540554, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "KA29 148", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3548626349, - "lat": 55.7954556, - "lon": -4.8696585, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA30 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3548626359, - "lat": 55.8080167, - "lon": -4.8789505, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3548626360, - "lat": 55.8123699, - "lon": -4.8836009, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA30 142", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3548626369, - "lat": 55.8585049, - "lon": -4.8897494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "284796447369249", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 3548626377, - "lat": 55.8826217, - "lon": -4.8892903, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3548626378, - "lat": 55.8873924, - "lon": -4.8875066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "810860163776300", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 3550656483, - "lat": 54.5607503, - "lon": -1.3046229, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3551045679, - "lat": 53.8549615, - "lon": -1.2106849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 989", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3551717711, - "lat": 55.6948053, - "lon": -3.8045385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML11 84", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3551727882, - "lat": 55.9437637, - "lon": -4.8742440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1113547079811775", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2023-10-25" - } -}, -{ - "type": "node", - "id": 3551727885, - "lat": 55.9572401, - "lon": -4.8270321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3551896510, - "lat": 51.3778315, - "lon": 0.0028180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3551896542, - "lat": 51.3805236, - "lon": 0.0046402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 332", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896544, - "lat": 51.3783494, - "lon": 0.0081647, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-15", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896547, - "lat": 51.3668433, - "lon": 0.0132643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR4 401", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3551896548, - "lat": 51.3655187, - "lon": 0.0074939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 339D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896549, - "lat": 51.3668069, - "lon": 0.0071619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 338D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896550, - "lat": 51.3608638, - "lon": 0.0029482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 352", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896551, - "lat": 51.3674879, - "lon": 0.0013004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR4 312D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896552, - "lat": 51.3687644, - "lon": -0.0052478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR4 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3551896553, - "lat": 51.3699807, - "lon": -0.0072740, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-19", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 349", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3551896555, - "lat": 51.3835505, - "lon": 0.0027227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 182", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3551912735, - "lat": 51.5272066, - "lon": -1.1836981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG8 444D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3552379593, - "lat": 51.8159171, - "lon": -3.0655191, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3552432103, - "lat": 53.9864458, - "lon": -1.0441904, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "material": "plastic", - "note": "post box is inside Asda entrance foyer (on left) so only accessible during Asda opening hours (is made of plastic so can potentially get moved)", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "YO32 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3552713340, - "lat": 53.9166964, - "lon": -0.9242224, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3552892700, - "lat": 54.0222603, - "lon": -1.1574410, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO30 359", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3553682777, - "lat": 54.9692386, - "lon": -2.1194640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE46 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 3553764483, - "lat": 54.9710432, - "lon": -2.0930736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE46 22" - } -}, -{ - "type": "node", - "id": 3553770600, - "lat": 54.9685152, - "lon": -2.0920591, - "tags": { - "amenity": "post_box", - "ref": "NE46 125" - } -}, -{ - "type": "node", - "id": 3553770601, - "lat": 54.9734473, - "lon": -2.0948229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE46 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3553781105, - "lat": 54.9697817, - "lon": -2.0853094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 56" - } -}, -{ - "type": "node", - "id": 3553785706, - "lat": 54.9693791, - "lon": -2.0771352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE46 808" - } -}, -{ - "type": "node", - "id": 3553809135, - "lat": 54.9746462, - "lon": -2.0941052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE46 771", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3554338249, - "lat": 54.9704671, - "lon": -2.4595836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NE49 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3554466918, - "lat": 54.9768116, - "lon": -2.2581821, - "tags": { - "amenity": "post_box", - "ref": "NE47 38" - } -}, -{ - "type": "node", - "id": 3554466919, - "lat": 54.9731386, - "lon": -2.2474640, - "tags": { - "amenity": "post_box", - "ref": "NE47 70" - } -}, -{ - "type": "node", - "id": 3554466920, - "lat": 54.9730401, - "lon": -2.2441220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "NE47 46", - "survey:date": "2022-03-01", - "wikimedia_commons": "File:John Martin Street, Haydon Bridge - geograph.org.uk - 3243577.jpg" - } -}, -{ - "type": "node", - "id": 3554466921, - "lat": 54.9733780, - "lon": -2.2526518, - "tags": { - "amenity": "post_box", - "ref": "NE47 186" - } -}, -{ - "type": "node", - "id": 3554589084, - "lat": 51.6367451, - "lon": -2.1587382, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL8 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3554681232, - "lat": 55.8806778, - "lon": -4.1050064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G69 1538", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3554908645, - "lat": 52.6714398, - "lon": 1.3955175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR13 1371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3554982275, - "lat": 52.9415841, - "lon": 1.1141360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR25 2527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3555209087, - "lat": 51.8983087, - "lon": -3.2423044, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 393D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3555214266, - "lat": 51.9464592, - "lon": -3.2905979, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3555288093, - "lat": 53.9316890, - "lon": -1.1153432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "indoor": "yes", - "material": "plastic", - "note": "post box is just inside the entrance to Tesco on the LH so only acccessible during opening hours, box is made of plastic so might get moved", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "YO24 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3556599796, - "lat": 54.0892247, - "lon": -1.0062706, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO60 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556756798, - "lat": 54.0505813, - "lon": -1.3173559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-10-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3556792286, - "lat": 51.9958351, - "lon": -3.2294730, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556792287, - "lat": 51.9959243, - "lon": -3.2319850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "LD3 356", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3556795342, - "lat": 51.9776368, - "lon": -3.2943543, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556795343, - "lat": 51.9912507, - "lon": -3.2836236, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556802358, - "lat": 51.9412116, - "lon": -3.3447858, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 382D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556802361, - "lat": 51.9426382, - "lon": -3.3466730, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556802368, - "lat": 51.9466949, - "lon": -3.3398142, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 384D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556990551, - "lat": 51.9514259, - "lon": -3.3984861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "LD3 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3556990552, - "lat": 51.9534950, - "lon": -3.4026694, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 433D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3557163615, - "lat": 51.9648181, - "lon": -3.4315417, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3557195245, - "lat": 51.9553668, - "lon": -3.4790723, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3557195252, - "lat": 51.9585654, - "lon": -3.4575336, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3557372484, - "lat": 53.9045828, - "lon": -1.3458290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS23 662" - } -}, -{ - "type": "node", - "id": 3557372488, - "lat": 53.9045758, - "lon": -1.3458176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS23 701" - } -}, -{ - "type": "node", - "id": 3558022803, - "lat": 54.5459557, - "lon": -1.2842939, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3558121271, - "lat": 51.8982536, - "lon": -3.5610013, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3558136482, - "lat": 51.7915466, - "lon": -3.5298532, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CF44 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3558159052, - "lat": 51.7690930, - "lon": -3.5270195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1267307697307838", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CF44 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 3558249259, - "lat": 51.7793479, - "lon": -3.3864051, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CF48 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3558249276, - "lat": 51.7894263, - "lon": -3.3707755, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CF48 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3558463227, - "lat": 51.8187362, - "lon": -0.8096630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP20 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558486462, - "lat": 51.8109311, - "lon": -0.8304438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-03-13", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3558486465, - "lat": 51.8128914, - "lon": -0.8368022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558486479, - "lat": 51.8140115, - "lon": -0.8396510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP19 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558486599, - "lat": 51.8145461, - "lon": -0.8284848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557450, - "lat": 51.7976588, - "lon": -0.8056258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "Olympic Gold-coloured box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557452, - "lat": 51.8052658, - "lon": -0.8135028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "maker": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557453, - "lat": 51.8077624, - "lon": -0.8158542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "maker": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557461, - "lat": 51.8090959, - "lon": -0.8087173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557462, - "lat": 51.8108888, - "lon": -0.8247846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557463, - "lat": 51.8110477, - "lon": -0.8135626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558557464, - "lat": 51.8115944, - "lon": -0.8192349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-05-30" - } -}, -{ - "type": "node", - "id": 3558723799, - "lat": 53.9302083, - "lon": -1.3849258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS22 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3558723835, - "lat": 53.9303615, - "lon": -1.3848051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS22 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3558882687, - "lat": 53.9275417, - "lon": -1.3865684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 763", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3559076143, - "lat": 52.9292740, - "lon": -1.1323711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG2 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3559456002, - "lat": 51.6116835, - "lon": -0.2777456, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-31", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "old_ref": "HA8 701", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HA8 701D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3559951937, - "lat": 54.0036483, - "lon": -0.8625339, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3560669114, - "lat": 51.4282557, - "lon": -1.8556934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3560900663, - "lat": 55.8828741, - "lon": -3.0859113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3561621127, - "lat": 52.9889528, - "lon": -1.1357950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "NG5 194", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3561621128, - "lat": 52.9897710, - "lon": -1.1332353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG5 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3561864626, - "lat": 52.7153645, - "lon": 1.3875222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR12 1268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563094094, - "lat": 54.9788804, - "lon": -2.0148928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE45 29" - } -}, -{ - "type": "node", - "id": 3563102293, - "lat": 54.9775466, - "lon": -2.0206427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3563102294, - "lat": 54.9786075, - "lon": -2.0052224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE45 164" - } -}, -{ - "type": "node", - "id": 3563102295, - "lat": 54.9758728, - "lon": -2.0132903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE45 152", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3563108199, - "lat": 54.9746182, - "lon": -2.0188038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE45 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3563108200, - "lat": 54.9741344, - "lon": -2.0175330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE45 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563111994, - "lat": 54.9734613, - "lon": -2.0138610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "NE45 157D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE45 157D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3563111995, - "lat": 54.9679134, - "lon": -2.0183953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE45 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563123740, - "lat": 54.9630580, - "lon": -2.0117172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE45 163" - } -}, -{ - "type": "node", - "id": 3563138903, - "lat": 54.5448790, - "lon": -3.5841333, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3563138913, - "lat": 54.5447708, - "lon": -3.5909666, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "note": "There are two separate wall boxes here", - "post_box:type": "wall", - "ref": "CA28 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563147106, - "lat": 54.5401026, - "lon": -3.5890720, - "tags": { - "amenity": "post_box", - "ref": "CA28 7" - } -}, -{ - "type": "node", - "id": 3563150593, - "lat": 54.3916353, - "lon": -3.4800507, - "tags": { - "amenity": "post_box", - "ref": "CA20 46" - } -}, -{ - "type": "node", - "id": 3563159104, - "lat": 54.8966002, - "lon": -2.9578904, - "tags": { - "amenity": "post_box", - "ref": "CA2 70" - } -}, -{ - "type": "node", - "id": 3563161093, - "lat": 54.8941644, - "lon": -2.9540945, - "tags": { - "amenity": "post_box", - "ref": "CA2 490" - } -}, -{ - "type": "node", - "id": 3563161094, - "lat": 54.8943628, - "lon": -2.9589187, - "tags": { - "amenity": "post_box", - "ref": "CA2 76" - } -}, -{ - "type": "node", - "id": 3563170793, - "lat": 54.9419502, - "lon": -2.7350280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA8 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563498110, - "lat": 52.3153726, - "lon": 0.5445530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP28 2177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563498222, - "lat": 52.3123652, - "lon": 0.5489761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563557673, - "lat": 55.5851224, - "lon": -1.6631480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "786872959909838", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE68 84", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 3563557674, - "lat": 55.5801159, - "lon": -1.6539617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NE68 111D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3563557680, - "lat": 55.5775282, - "lon": -1.6572020, - "tags": { - "amenity": "post_box", - "ref": "NE68 101" - } -}, -{ - "type": "node", - "id": 3563557681, - "lat": 55.5776843, - "lon": -1.6625488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE68 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563563759, - "lat": 55.5867605, - "lon": -1.6776578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 08:30", - "ref": "NE68 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3563578951, - "lat": 55.5723065, - "lon": -1.7030705, - "tags": { - "amenity": "post_box", - "ref": "NE68 94" - } -}, -{ - "type": "node", - "id": 3563604431, - "lat": 53.7749652, - "lon": -2.3852110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563604493, - "lat": 53.7882398, - "lon": -2.9888532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:50; Sa off; Su off", - "drive_through": "no", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563604494, - "lat": 53.7882567, - "lon": -2.9888331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:50; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563604495, - "lat": 53.7949913, - "lon": -2.9915789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "FY4 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563669396, - "lat": 54.9576658, - "lon": -1.6962338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE21 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3563681038, - "lat": 54.9597709, - "lon": -1.7047182, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE21 169", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3563705588, - "lat": 52.3466146, - "lon": -2.8185185, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY8 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3563925838, - "lat": 52.2721422, - "lon": -2.8270529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HR6 951D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3564098677, - "lat": 51.4440234, - "lon": -0.3470796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3564209041, - "lat": 56.8074248, - "lon": -2.6551830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD9 59", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3564209042, - "lat": 56.8100796, - "lon": -2.6557594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DD9 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3564209043, - "lat": 56.8255767, - "lon": -2.6576640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD9 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3564354306, - "lat": 50.7605388, - "lon": -1.8695369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH9 263", - "ref:GB:uprn": "10015433036", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3564585007, - "lat": 50.7899558, - "lon": -1.1445068, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "PO12 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3564586650, - "lat": 50.7949338, - "lon": -1.1516897, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO12 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3564590561, - "lat": 50.8119311, - "lon": -1.1691844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3564591747, - "lat": 50.8212162, - "lon": -1.2034295, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO14 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3564602593, - "lat": 50.7992510, - "lon": -1.1330792, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "PO12 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3564630655, - "lat": 53.8873517, - "lon": -0.8582714, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3565356490, - "lat": 52.6046226, - "lon": 1.7294586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "inscription": "This posting box is an example from a design by JW Penfold. architect and surveyor for the Post Office. introduced in 1872. / It was donated to Great Yarmouth Museums by the Post Office in 1969. after many years service at the junction of King Street and", - "inscription_2": "Alma Road Great Yarmouth. / After restoration by Royal Mail engineers it was returned to service in 1994. / Loaned by kind permission of the: Norfolk Museums Service / Great Yarmouth Museums", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NR30 3053", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3565572919, - "lat": 55.0171065, - "lon": -1.6686325, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3565572921, - "lat": 55.0187643, - "lon": -1.6582204, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-30", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 141", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3566318162, - "lat": 53.8021177, - "lon": -3.0551611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3566318163, - "lat": 53.8113108, - "lon": -3.0531887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3566318164, - "lat": 53.8120621, - "lon": -3.0498417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3566318165, - "lat": 53.8204075, - "lon": -3.0153396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3567171274, - "lat": 51.5216580, - "lon": -2.6123872, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS10 333D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3567219377, - "lat": 52.6377876, - "lon": -1.1363702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3568156974, - "lat": 51.3327954, - "lon": -0.1109752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 180", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3568329698, - "lat": 51.3358177, - "lon": -0.1135257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3568531297, - "lat": 51.3378838, - "lon": -0.1147039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3568948193, - "lat": 53.8732143, - "lon": -3.0257967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3569250100, - "lat": 51.3391545, - "lon": -0.1161114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CR8 466;CR8 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3569392528, - "lat": 51.3392360, - "lon": -0.1172194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3569402194, - "lat": 51.3368405, - "lon": -0.1177762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 543", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3569752293, - "lat": 50.4738222, - "lon": -3.6321699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 78", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3569941994, - "lat": 51.4385488, - "lon": -0.8701945, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG10 272", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3570110668, - "lat": 51.2165930, - "lon": -0.8046129, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU9 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3570305294, - "lat": 51.4781211, - "lon": -2.2807177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "298165332333565", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN14 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 3570361193, - "lat": 51.4933869, - "lon": -2.2291597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SN14 132D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3570376713, - "lat": 51.5148219, - "lon": -2.2633568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3570391593, - "lat": 51.5744293, - "lon": -2.2512953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 141", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3571479333, - "lat": 53.5916484, - "lon": -2.4659668, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3574413493, - "lat": 51.3981741, - "lon": -0.0231837, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "name": "BR3 351D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 351", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3574413499, - "lat": 51.3997989, - "lon": -0.0184476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3574413500, - "lat": 51.3932528, - "lon": -0.0090168, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-22", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 306D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3574413506, - "lat": 51.3889425, - "lon": -0.0106113, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3574413507, - "lat": 51.3892036, - "lon": -0.0054323, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR3 299D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3574917921, - "lat": 52.3817241, - "lon": -1.6964856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B93 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3575172496, - "lat": 53.8251121, - "lon": -3.0480427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY1 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3575233706, - "lat": 51.3731446, - "lon": 0.0003801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR4 278D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3575458495, - "lat": 52.3279672, - "lon": -1.6668785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:30; Su off", - "post_box:type": "lamp", - "ref": "CV35 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3575458496, - "lat": 52.3390337, - "lon": -1.6573505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3575458525, - "lat": 52.4107994, - "lon": -1.6756362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Just north of pole", - "post_box:type": "lamp", - "ref": "B92 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3576646660, - "lat": 53.7617754, - "lon": -0.7018950, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3576836710, - "lat": 53.2702514, - "lon": -0.4231833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3577248457, - "lat": 52.0161934, - "lon": -1.0031586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 187", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577248458, - "lat": 52.0235419, - "lon": -1.0312830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577248459, - "lat": 52.0239363, - "lon": -1.0652223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577248460, - "lat": 52.0310369, - "lon": -1.0216678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK18 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577248461, - "lat": 52.0367265, - "lon": -1.0280610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK18 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577310015, - "lat": 51.9893961, - "lon": -1.0696939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577310016, - "lat": 51.9905335, - "lon": -1.0426426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 212", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577310017, - "lat": 51.9920612, - "lon": -1.0751447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577310030, - "lat": 52.0008055, - "lon": -1.0160731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 06:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK18 208", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577310031, - "lat": 52.0044009, - "lon": -1.0518991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK18 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-06" - } -}, -{ - "type": "node", - "id": 3577638146, - "lat": 51.5338237, - "lon": -0.1182091, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "N1 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578177788, - "lat": 50.9469520, - "lon": -0.6345538, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578229848, - "lat": 52.2317526, - "lon": -0.2839678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE19 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578229881, - "lat": 52.2287051, - "lon": -0.2852979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE19 187", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3578487148, - "lat": 51.7440136, - "lon": -0.5237787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487150, - "lat": 51.7460627, - "lon": -0.5199584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP1 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487151, - "lat": 51.7467169, - "lon": -0.4995872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487154, - "lat": 51.7497391, - "lon": -0.5009711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487155, - "lat": 51.7497958, - "lon": -0.4958460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487159, - "lat": 51.7531477, - "lon": -0.5047260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487162, - "lat": 51.7560214, - "lon": -0.4939808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP1 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487163, - "lat": 51.7569253, - "lon": -0.4984171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487165, - "lat": 51.7607262, - "lon": -0.4959673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578487166, - "lat": 51.7615884, - "lon": -0.5000005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-07" - } -}, -{ - "type": "node", - "id": 3578530975, - "lat": 51.5719762, - "lon": -4.0197690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3578721960, - "lat": 51.3784487, - "lon": 0.0143266, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-15", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR2 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578721961, - "lat": 51.3755007, - "lon": 0.0191188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 413", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3578721962, - "lat": 51.3794115, - "lon": 0.0181786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3578721963, - "lat": 51.3830337, - "lon": 0.0170036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 302", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3578721964, - "lat": 51.3870311, - "lon": 0.0174470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578721977, - "lat": 51.4056042, - "lon": 0.0147240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BR1 476;BR1 477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578933610, - "lat": 51.4830943, - "lon": -2.6106520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS9 623", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3578933647, - "lat": 51.4954558, - "lon": -2.6064073, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 439", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3579073864, - "lat": 52.4341162, - "lon": -1.7972542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 452D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3579073875, - "lat": 52.4381302, - "lon": -1.7865013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 1286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3579074094, - "lat": 52.4414342, - "lon": -1.7770891, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 1051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3579074114, - "lat": 52.4438059, - "lon": -1.7751475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B92 876D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3579074211, - "lat": 52.4503566, - "lon": -1.7634565, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 823D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3579141876, - "lat": 51.3454811, - "lon": -2.2519439, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA15 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3579240293, - "lat": 52.3054374, - "lon": -1.9673760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "B97 128D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3579302132, - "lat": 51.6464125, - "lon": -0.0384307, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EN3 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3579388134, - "lat": 52.9657722, - "lon": -1.1104883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "phone": "+44 345 774 0740", - "post_box:type": "lamp", - "ref": "NG4 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 3580350128, - "lat": 51.4086106, - "lon": -1.3103308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3581269004, - "lat": 54.1087301, - "lon": -3.2246388, - "tags": { - "access": "customers", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA14 12" - } -}, -{ - "type": "node", - "id": 3581351246, - "lat": 51.5215873, - "lon": -0.1782062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 59D;W2 259D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3581442509, - "lat": 52.0401543, - "lon": -1.8572501, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR12 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3581519790, - "lat": 52.0394109, - "lon": -1.8540341, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WR12 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3581851342, - "lat": 51.5690288, - "lon": -4.0105119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3582028797, - "lat": 52.9669328, - "lon": -1.0904185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "indoor": "yes", - "phone": "+44 345 774 0740", - "post_box:type": "indoor_pillar", - "ref": "NG4 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3582032114, - "lat": 51.3410380, - "lon": -2.2521718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BA15 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3582032204, - "lat": 51.3440807, - "lon": -2.2501002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA15 1D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3582032374, - "lat": 51.3503592, - "lon": -2.2551401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "BA15 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3582032392, - "lat": 51.3510361, - "lon": -2.2497538, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA15 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3582032501, - "lat": 51.3515336, - "lon": -2.2546229, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA15 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3582032505, - "lat": 51.3532190, - "lon": -2.2526671, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA15 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3582900893, - "lat": 51.3966723, - "lon": -0.0155090, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-05", - "check_date:collection_times": "2023-03-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR3 237D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3582900894, - "lat": 51.3995262, - "lon": -0.0137612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR3 496D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3582900895, - "lat": 51.3953550, - "lon": -0.0032866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 407D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3584029924, - "lat": 55.7749027, - "lon": -3.9358930, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3584029943, - "lat": 55.7722688, - "lon": -3.9604773, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3584155741, - "lat": 53.0460664, - "lon": -0.7700348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15", - "mapillary": "405854634322861", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-02-23" - } -}, -{ - "type": "node", - "id": 3584498199, - "lat": 55.7727891, - "lon": -3.9110766, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3586378654, - "lat": 57.2810327, - "lon": -4.4556550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 78", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3586378655, - "lat": 57.3799649, - "lon": -4.3342885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV2 160", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3586416365, - "lat": 55.6555484, - "lon": -3.9416478, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3586416367, - "lat": 55.6478552, - "lon": -3.8988195, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3586455442, - "lat": 54.7374222, - "lon": -2.1453090, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3586653158, - "lat": 55.1159656, - "lon": -3.3567610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3778457979083642", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 100D", - "source": "survey", - "survey:date": "2024-07-16" - } -}, -{ - "type": "node", - "id": 3586653172, - "lat": 55.1196881, - "lon": -3.3588663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3587657547, - "lat": 54.8913180, - "lon": -2.9282916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CA1 78", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3587657548, - "lat": 54.8942536, - "lon": -2.9302126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CA1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3587657549, - "lat": 54.8956833, - "lon": -2.9276054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "871803871441633", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA1 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-26" - } -}, -{ - "type": "node", - "id": 3587664295, - "lat": 54.8924354, - "lon": -2.9343742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA3 341D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3587713416, - "lat": 51.4043586, - "lon": -0.0037324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3587713417, - "lat": 51.4067270, - "lon": -0.0098837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 228D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3587713428, - "lat": 51.4101881, - "lon": -0.0051862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR3 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3587713433, - "lat": 51.4092590, - "lon": -0.0021289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3587713434, - "lat": 51.4064925, - "lon": 0.0031765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 159", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3587713435, - "lat": 51.4058394, - "lon": 0.0016536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR2 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3587713438, - "lat": 51.4068267, - "lon": -0.0016320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3587713452, - "lat": 51.4037119, - "lon": 0.0091163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR2 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3587713453, - "lat": 51.4015886, - "lon": 0.0068210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3588248818, - "lat": 55.1603906, - "lon": -3.4379014, - "tags": { - "amenity": "post_box", - "ref": "DG11 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3588262488, - "lat": 55.1329574, - "lon": -3.4432797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1414665065570336", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "source:position": "Mapillary 2020-08-27", - "survey:date": "2020-08-27" - } -}, -{ - "type": "node", - "id": 3588412663, - "lat": 54.3099253, - "lon": -3.0173068, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 85" - } -}, -{ - "type": "node", - "id": 3588571957, - "lat": 51.1847703, - "lon": -0.7041720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "GU8 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3588571959, - "lat": 51.1877753, - "lon": -0.7117408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3588597212, - "lat": 51.2234503, - "lon": -0.7192735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "GU10 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3588607866, - "lat": 51.2120596, - "lon": -0.7898461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GU9 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3588636069, - "lat": 53.5306750, - "lon": -2.2145315, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3588836232, - "lat": 51.2133941, - "lon": -0.8096419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU9 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3588836233, - "lat": 51.2143775, - "lon": -0.8338654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU10 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3590345053, - "lat": 55.1933607, - "lon": -1.5327474, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE63 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 3590569141, - "lat": 51.3493237, - "lon": 0.6413660, - "tags": { - "amenity": "post_box", - "brand": "Premier", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "old_ref": "ME9 4", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME9 4D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2024-06-02" - } -}, -{ - "type": "node", - "id": 3590584612, - "lat": 51.3461374, - "lon": 0.8168075, - "tags": { - "amenity": "post_box", - "ref": "ME9 8" - } -}, -{ - "type": "node", - "id": 3590592508, - "lat": 51.3488746, - "lon": 0.6842952, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "note": "From the 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME9 9", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3590604230, - "lat": 51.3402879, - "lon": 0.8226056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME9 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3590609198, - "lat": 51.3538219, - "lon": 0.7097343, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The previous edit says that this postbox is a pillar but when i used this postbox on Thursday 10th August 2023 it is a lamp.", - "old_ref": "ME9 15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 15D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3590610337, - "lat": 51.3275463, - "lon": 0.6826057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "292244945829204", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME9 17" - } -}, -{ - "type": "node", - "id": 3590618706, - "lat": 51.3426255, - "lon": 0.6894109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3590622926, - "lat": 51.1404712, - "lon": 1.2907199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT16 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3590625553, - "lat": 51.1332241, - "lon": 1.3019175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CT16 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3590630023, - "lat": 51.1311398, - "lon": 1.3189076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT16 108D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3592187731, - "lat": 51.1177662, - "lon": 1.2994172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT17 43", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3592523026, - "lat": 51.6784763, - "lon": -0.0586546, - "tags": { - "amenity": "post_box", - "ref": "EN2 111D", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3592574636, - "lat": 52.1088123, - "lon": -0.4975790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK42 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 3592574637, - "lat": 52.1110667, - "lon": -0.4899704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK42 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 3592574638, - "lat": 52.1208120, - "lon": -0.4836998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 3592752233, - "lat": 52.1349068, - "lon": -0.4754404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK40 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-13" - } -}, -{ - "type": "node", - "id": 3593241693, - "lat": 51.3929976, - "lon": 0.4842258, - "tags": { - "addr:street": "Cedar Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 204" - } -}, -{ - "type": "node", - "id": 3593241794, - "lat": 51.3861876, - "lon": 0.4748582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 345D" - } -}, -{ - "type": "node", - "id": 3593241994, - "lat": 51.3901920, - "lon": 0.4656605, - "tags": { - "addr:street": "Chelmsford Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 390" - } -}, -{ - "type": "node", - "id": 3593241996, - "lat": 51.3962425, - "lon": 0.4864492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME2 122D" - } -}, -{ - "type": "node", - "id": 3593241997, - "lat": 51.3991006, - "lon": 0.4888121, - "tags": { - "addr:street": "Gordon Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 132" - } -}, -{ - "type": "node", - "id": 3593242093, - "lat": 51.3891935, - "lon": 0.4842408, - "tags": { - "addr:street": "Cedar Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 263" - } -}, -{ - "type": "node", - "id": 3593242094, - "lat": 51.3856347, - "lon": 0.4700178, - "tags": { - "addr:street": "Rushdean Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 305D" - } -}, -{ - "type": "node", - "id": 3593242095, - "lat": 51.3919570, - "lon": 0.4628158, - "tags": { - "addr:street": "Tern Crescent", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 306D" - } -}, -{ - "type": "node", - "id": 3593242097, - "lat": 51.3985424, - "lon": 0.4608015, - "tags": { - "addr:street": "Parkfields", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME2 362D" - } -}, -{ - "type": "node", - "id": 3593242193, - "lat": 51.3875161, - "lon": 0.4706592, - "tags": { - "addr:street": "Merrals Wood Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME2 81D" - } -}, -{ - "type": "node", - "id": 3593242194, - "lat": 51.3945505, - "lon": 0.4604092, - "tags": { - "addr:street": "Bligh Way", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 376" - } -}, -{ - "type": "node", - "id": 3593242196, - "lat": 51.3970530, - "lon": 0.4547139, - "tags": { - "addr:street": "Sharfleet Drive", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME2 369D" - } -}, -{ - "type": "node", - "id": 3593242293, - "lat": 51.3885358, - "lon": 0.4759282, - "tags": { - "addr:street": "Holly Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 335" - } -}, -{ - "type": "node", - "id": 3593242493, - "lat": 51.3926601, - "lon": 0.4728369, - "tags": { - "addr:street": "Columbine Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 300D" - } -}, -{ - "type": "node", - "id": 3593242494, - "lat": 51.3931224, - "lon": 0.4758027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 301D" - } -}, -{ - "type": "node", - "id": 3593242495, - "lat": 51.3918070, - "lon": 0.4798666, - "tags": { - "addr:street": "Hawthorn Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 270" - } -}, -{ - "type": "node", - "id": 3593242693, - "lat": 51.3975015, - "lon": 0.4866059, - "tags": { - "addr:street": "Central Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 195D" - } -}, -{ - "type": "node", - "id": 3593242694, - "lat": 51.3960558, - "lon": 0.4920316, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 150", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3593558600, - "lat": 53.0354378, - "lon": -1.0767565, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3593841768, - "lat": 52.0497070, - "lon": 1.1501568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP2 1312", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3593960396, - "lat": 53.9202914, - "lon": -3.0140987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "location": "indoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3594197239, - "lat": 52.4198048, - "lon": -1.8837862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B14 397D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3594661859, - "lat": 53.0003020, - "lon": -1.1445298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NG5 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3594741301, - "lat": 51.7845686, - "lon": -0.7905671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741302, - "lat": 51.7867425, - "lon": -0.7774991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741303, - "lat": 51.7897049, - "lon": -0.7980867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741304, - "lat": 51.7918794, - "lon": -0.7803282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 254D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741307, - "lat": 51.7967795, - "lon": -0.7828153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741309, - "lat": 51.8009132, - "lon": -0.7864264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP21 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741317, - "lat": 51.8023993, - "lon": -0.7838157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741320, - "lat": 51.8043771, - "lon": -0.7773740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741324, - "lat": 51.8059123, - "lon": -0.8259161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP21 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741325, - "lat": 51.8059204, - "lon": -0.7844279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741328, - "lat": 51.8064351, - "lon": -0.7530600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741329, - "lat": 51.8068725, - "lon": -0.7886290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741330, - "lat": 51.8071610, - "lon": -0.7996083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741331, - "lat": 51.8074928, - "lon": -0.7748641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741332, - "lat": 51.8080575, - "lon": -0.7789783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP21 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594741333, - "lat": 51.8095992, - "lon": -0.7664398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP22 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-14" - } -}, -{ - "type": "node", - "id": 3594887580, - "lat": 52.6145911, - "lon": -4.0723163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:45", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3594888479, - "lat": 53.0064165, - "lon": -1.1332705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3594891575, - "lat": 53.0096097, - "lon": -1.1299187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 417D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3595029100, - "lat": 51.2889230, - "lon": 0.9107912, - "tags": { - "amenity": "post_box", - "ref": "ME13 19" - } -}, -{ - "type": "node", - "id": 3595074021, - "lat": 51.3197037, - "lon": 0.8334778, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 36", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME13 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 3595086715, - "lat": 51.2513026, - "lon": 0.8025734, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME13 37", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME13 37D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-09" - } -}, -{ - "type": "node", - "id": 3595361539, - "lat": 53.7250195, - "lon": -1.3569595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 332" - } -}, -{ - "type": "node", - "id": 3595395886, - "lat": 52.9984986, - "lon": -1.1177821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG5 528D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3595400813, - "lat": 53.0005342, - "lon": -1.1082922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG5 436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3595400849, - "lat": 53.0024277, - "lon": -1.1010498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG5 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3595400855, - "lat": 53.0051535, - "lon": -1.1277934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "location": "indoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG5 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3596471965, - "lat": 54.8947719, - "lon": -2.9365300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CA3 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3596526019, - "lat": 51.2002204, - "lon": -0.7838253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_collection_times": "Mo-Fr 17:00; Sa 17:15", - "old_ref": "GU10 16", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3596669523, - "lat": 54.3394417, - "lon": -2.7576958, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 212", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3596823163, - "lat": 51.6168998, - "lon": -2.5155784, - "tags": { - "amenity": "post_box", - "note": "no reference number visible on label, but 146B written on box in marker pen Note: Post box out of service, new post box 200 m along Park Road. March 2019", - "post_box:type": "wall", - "ref": "BS35 146", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3596899244, - "lat": 51.2025509, - "lon": -0.7957964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU9 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3597133089, - "lat": 57.6083390, - "lon": -7.5173969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3597262256, - "lat": 55.9035975, - "lon": -4.4485092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA8 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3597311738, - "lat": 55.9149156, - "lon": -4.4742140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA8 205", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3597351112, - "lat": 53.4872268, - "lon": -2.2487341, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M3 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3597457318, - "lat": 57.2529299, - "lon": -4.4966780, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3597457344, - "lat": 57.2402445, - "lon": -4.4487675, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3597465152, - "lat": 50.7140755, - "lon": -1.9860273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 28", - "ref:GB:uprn": "10015316303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3597933290, - "lat": 54.3356104, - "lon": -2.7589686, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 50" - } -}, -{ - "type": "node", - "id": 3598499564, - "lat": 52.6788179, - "lon": 0.9463821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NR19 1935", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3598508885, - "lat": 51.3771369, - "lon": -0.0280992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3598508886, - "lat": 51.3810146, - "lon": -0.0274819, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 277D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598508890, - "lat": 51.3906957, - "lon": -0.0278179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 262", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598508891, - "lat": 51.3902542, - "lon": -0.0311370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Approx position, outside 86-88 Eden Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 372D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3598508892, - "lat": 51.3922388, - "lon": -0.0343097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 273D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598509693, - "lat": 51.3919046, - "lon": -0.0382949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR3 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598509694, - "lat": 51.3905856, - "lon": -0.0397366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3598509699, - "lat": 51.3930613, - "lon": -0.0440080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 300D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598509700, - "lat": 51.3949493, - "lon": -0.0426770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 166D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598509702, - "lat": 51.3988762, - "lon": -0.0419753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BR3 186;BR3 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3598509704, - "lat": 51.3969947, - "lon": -0.0348120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3598509705, - "lat": 51.3944530, - "lon": -0.0309656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 376D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598509706, - "lat": 51.3965210, - "lon": -0.0290838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 309D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3598821158, - "lat": 52.4663485, - "lon": -2.6527654, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY7 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3598821312, - "lat": 52.4731666, - "lon": -2.6244233, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY7 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3598821629, - "lat": 52.4800250, - "lon": -2.6542615, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY7 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3598926570, - "lat": 52.4563944, - "lon": -2.6410642, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY7 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3599126801, - "lat": 51.7237250, - "lon": 0.4740393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 375D" - } -}, -{ - "type": "node", - "id": 3599126802, - "lat": 51.7217621, - "lon": 0.4661383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM2 271D" - } -}, -{ - "type": "node", - "id": 3599304864, - "lat": 51.2308437, - "lon": -0.8582002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3599304865, - "lat": 51.2334995, - "lon": -0.8620590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU10 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3599304866, - "lat": 51.2437767, - "lon": -0.8602604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3497800167166673", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-01-15" - } -}, -{ - "type": "node", - "id": 3599415450, - "lat": 50.8418592, - "lon": 0.4917345, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Sutton Place", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN40 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Sutton Place TN4088.jpg" - } -}, -{ - "type": "node", - "id": 3599642585, - "lat": 52.5807358, - "lon": 1.1003643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1806D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3599642589, - "lat": 52.5810422, - "lon": 1.1058628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR18 1817", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3599642616, - "lat": 52.5775337, - "lon": 1.1043137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1804D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3600650525, - "lat": 54.3441526, - "lon": -2.7374822, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LA9 270", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3602018689, - "lat": 52.6364272, - "lon": 1.4949823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR13 1344", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3602170168, - "lat": 52.6833930, - "lon": -0.9218979, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3602319767, - "lat": 54.3412734, - "lon": -2.7352200, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-09", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "inside Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "LA9 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3602319768, - "lat": 54.3334357, - "lon": -2.7293024, - "tags": { - "amenity": "post_box", - "ref": "LA9 215" - } -}, -{ - "type": "node", - "id": 3602335681, - "lat": 54.3328858, - "lon": -2.7530922, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 45" - } -}, -{ - "type": "node", - "id": 3602489621, - "lat": 54.3352513, - "lon": -2.7366194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "pillar", - "ref": "LA9 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3602601087, - "lat": 54.3323668, - "lon": -2.7330872, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 197", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3602635534, - "lat": 54.3259599, - "lon": -2.7315993, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA9 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3602738477, - "lat": 54.3352634, - "lon": -2.7483947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3603024541, - "lat": 51.7526921, - "lon": -0.4494333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 3603024542, - "lat": 51.7527532, - "lon": -0.4667190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 3603024543, - "lat": 51.7536029, - "lon": -0.4710002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "Inside Asda store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "HP2 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 3603024545, - "lat": 51.7579483, - "lon": -0.4720178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 3603024546, - "lat": 51.7591178, - "lon": -0.4550730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 3603024548, - "lat": 51.7592496, - "lon": -0.4662684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-06-18" - } -}, -{ - "type": "node", - "id": 3603472629, - "lat": 51.2610678, - "lon": -0.8662660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "603796560840567", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU51 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 3603472630, - "lat": 51.2699960, - "lon": -0.8744292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "915593203067411", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG27 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-01-15" - } -}, -{ - "type": "node", - "id": 3603472631, - "lat": 51.2765289, - "lon": -0.9015257, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG27 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3604584798, - "lat": 53.8157582, - "lon": -3.0308895, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 52D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3605451281, - "lat": 53.8304186, - "lon": -3.0305842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3605643559, - "lat": 50.8494116, - "lon": -1.0437395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "PO6", - "ref": "PO6 198", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3605795206, - "lat": 52.5692622, - "lon": -2.1337301, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV2 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3605915842, - "lat": 51.4631830, - "lon": -2.5629708, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3606095808, - "lat": 51.4606596, - "lon": -2.5742825, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607210584, - "lat": 52.5561742, - "lon": 1.7250096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607210589, - "lat": 52.5592527, - "lon": 1.7208333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607210592, - "lat": 52.5602580, - "lon": 1.7283879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214802, - "lat": 52.5626181, - "lon": 1.7287289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR31 3112D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3607214804, - "lat": 52.5653065, - "lon": 1.7302310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607214805, - "lat": 52.5657110, - "lon": 1.7135802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214807, - "lat": 52.5669287, - "lon": 1.7226458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607214811, - "lat": 52.5687710, - "lon": 1.7300495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3109D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3607214812, - "lat": 52.5688172, - "lon": 1.7186730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3127D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607214844, - "lat": 52.5696520, - "lon": 1.7118408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214849, - "lat": 52.5700804, - "lon": 1.7242946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607214869, - "lat": 52.5708346, - "lon": 1.7323108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR31 3107D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3607214886, - "lat": 52.5709942, - "lon": 1.7255260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214938, - "lat": 52.5716096, - "lon": 1.6956618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR31 3129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214943, - "lat": 52.5721542, - "lon": 1.7113376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214951, - "lat": 52.5728448, - "lon": 1.7285098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3607214968, - "lat": 52.5737954, - "lon": 1.7215024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607214972, - "lat": 52.5738838, - "lon": 1.7145021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215000, - "lat": 52.5742970, - "lon": 1.7306955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3108", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3607215024, - "lat": 52.5746715, - "lon": 1.7257247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215050, - "lat": 52.5753655, - "lon": 1.7045814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215075, - "lat": 52.5777886, - "lon": 1.7235607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607215076, - "lat": 52.5789401, - "lon": 1.6987073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215077, - "lat": 52.5796618, - "lon": 1.7173017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3134", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3607215082, - "lat": 52.5806276, - "lon": 1.7120009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607215097, - "lat": 52.5836740, - "lon": 1.7034191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215098, - "lat": 52.5836876, - "lon": 1.7284844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3118D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3607215099, - "lat": 52.5836957, - "lon": 1.7178462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3607215120, - "lat": 52.5846120, - "lon": 1.7125012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215146, - "lat": 52.5854020, - "lon": 1.7261540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215158, - "lat": 52.5867374, - "lon": 1.6917612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215168, - "lat": 52.5881056, - "lon": 1.7021184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607215174, - "lat": 52.5897744, - "lon": 1.7250304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3607391694, - "lat": 52.5919821, - "lon": -2.9515056, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3607711690, - "lat": 52.6666516, - "lon": 1.5102813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR13 1364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607711833, - "lat": 52.6392387, - "lon": 1.5436909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NR13 1306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3607732466, - "lat": 52.6432913, - "lon": 1.4901945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR13 1343", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3607776847, - "lat": 54.3686980, - "lon": -1.2995076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3608427428, - "lat": 52.5738895, - "lon": -2.1320302, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV2 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3608705143, - "lat": 52.4195996, - "lon": -1.7937550, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B91 388D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3608760843, - "lat": 52.4051604, - "lon": -1.8145198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "B90 1028", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3608767586, - "lat": 50.7127253, - "lon": -1.9886212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 21D", - "ref:GB:uprn": "10015269814", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3609032987, - "lat": 51.3991792, - "lon": -0.3521207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 90", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3611024535, - "lat": 51.1444769, - "lon": -0.9821002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GU34 20" - } -}, -{ - "type": "node", - "id": 3611382952, - "lat": 51.1525942, - "lon": -0.8474727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "641987677205090", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU35 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 3611382953, - "lat": 51.1588143, - "lon": -0.8231252, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU10 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3611382954, - "lat": 51.1749101, - "lon": -0.8682893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "831049595179850", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-10-07" - } -}, -{ - "type": "node", - "id": 3611382961, - "lat": 51.1897493, - "lon": -0.8774081, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU10 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3611613328, - "lat": 56.3807179, - "lon": -2.8785104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 380D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3611679940, - "lat": 51.1731266, - "lon": -0.7944890, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU10 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3611679941, - "lat": 51.1738653, - "lon": -0.7882392, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU10 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3611679942, - "lat": 51.1750214, - "lon": -0.7485596, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU10 151D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3611679943, - "lat": 51.1833420, - "lon": -0.7662177, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU10 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3612907380, - "lat": 52.3918328, - "lon": 0.6500247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP27 3425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3612986699, - "lat": 53.8006824, - "lon": -3.0511177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3613037605, - "lat": 51.1473909, - "lon": -0.9775628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "GU34 999;GU34 9991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3613151369, - "lat": 56.3751670, - "lon": -2.8869963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 361D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3613264194, - "lat": 56.3418911, - "lon": -2.7995197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY16 348", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3613291224, - "lat": 53.4825716, - "lon": -2.2453083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "fixme": "Survey required to determine ref for the second aperture. It is not M2 3 because that is the adjacent parcel box. Set post_box:apertures=2 when the new ref has been added.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "M2 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3613291225, - "lat": 53.4871144, - "lon": -2.2424630, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "level": "0", - "post_box:type": "pillar", - "ref": "M3 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3613446077, - "lat": 56.3387035, - "lon": -2.8016555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Derby Castings Limited, Derby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY16 400D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3613446081, - "lat": 56.3388091, - "lon": -2.8052011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY16 355D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3613456192, - "lat": 55.8917558, - "lon": -4.4384789, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3613548386, - "lat": 56.3318195, - "lon": -2.8080987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 145D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3613548412, - "lat": 56.3327138, - "lon": -2.8031972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 417", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3613548443, - "lat": 56.3406406, - "lon": -2.8024905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY16 365", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3613707600, - "lat": 56.2741852, - "lon": -3.0746107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 326D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3613707613, - "lat": 56.3447435, - "lon": -2.9514136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 325", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3613933512, - "lat": 53.8156053, - "lon": -1.4387854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS15 72", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3614519429, - "lat": 52.6014485, - "lon": 1.1899038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 971D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3614519433, - "lat": 52.6035311, - "lon": 1.1853655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 901D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3614519443, - "lat": 52.5900562, - "lon": 1.1649053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR9 908", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3614526116, - "lat": 52.5583679, - "lon": 1.1195662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR18 1824", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3614548665, - "lat": 51.0312429, - "lon": -3.1051880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 481" - } -}, -{ - "type": "node", - "id": 3616316193, - "lat": 50.7177327, - "lon": -1.9819815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH15 300;BH15 5300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3616337771, - "lat": 51.8913466, - "lon": -2.8938683, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NP7 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3616656744, - "lat": 52.2954186, - "lon": -1.6968798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3616722888, - "lat": 52.3469418, - "lon": -1.7227150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "check Ref probably 116D now", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3617753613, - "lat": 51.5887623, - "lon": -2.3461954, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL9 203D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3617768738, - "lat": 51.5955414, - "lon": -2.3631044, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL9 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3617786762, - "lat": 51.5807674, - "lon": -2.3367177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "collection_times_checked": "2015-10-09", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL9 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3619487564, - "lat": 51.0368161, - "lon": -2.2856378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP8 128" - } -}, -{ - "type": "node", - "id": 3619487565, - "lat": 51.0402283, - "lon": -2.2837895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP8 126", - "ref:GB:uprn": "10015409304" - } -}, -{ - "type": "node", - "id": 3619525031, - "lat": 51.0373657, - "lon": -2.2806725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP8 64", - "ref:GB:uprn": "10015402179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3619690930, - "lat": 51.6696340, - "lon": -1.2876480, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OX14 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3620298677, - "lat": 53.8476455, - "lon": -1.5579747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 936" - } -}, -{ - "type": "node", - "id": 3620570518, - "lat": 53.7443370, - "lon": -2.5978378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "190770072881827", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3620570519, - "lat": 53.7582564, - "lon": -2.5741487, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3620570531, - "lat": 53.7660607, - "lon": -2.6039103, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3621918184, - "lat": 52.6516019, - "lon": 1.4514602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR13 1338", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3621918190, - "lat": 52.6573058, - "lon": 1.4522575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3621919517, - "lat": 52.6640281, - "lon": 1.4746468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR13 1366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622029998, - "lat": 51.5064902, - "lon": -2.6000697, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS10 651D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622030126, - "lat": 51.5114077, - "lon": -2.6093676, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 500D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3622159570, - "lat": 52.7162500, - "lon": 1.2071830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR10 1035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622169843, - "lat": 51.5994964, - "lon": -2.3078120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL12 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3622169854, - "lat": 51.6342005, - "lon": -2.3446709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "GL12 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622169876, - "lat": 51.6411143, - "lon": -2.3619922, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL12 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622169877, - "lat": 51.6429995, - "lon": -2.3375155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 08:00", - "post_box:type": "lamp", - "ref": "GL12 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622169880, - "lat": 51.6432483, - "lon": -2.3429691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL12 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3622174009, - "lat": 52.7294822, - "lon": 1.2221427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR10 1017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622203425, - "lat": 52.8036511, - "lon": 1.2596386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR11 1114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3622211598, - "lat": 52.8009839, - "lon": 1.2625870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR11 1126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3622552081, - "lat": 51.4859619, - "lon": -2.6774405, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 227D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3622579616, - "lat": 51.4832471, - "lon": -2.6753411, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 462D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3622602792, - "lat": 51.4841051, - "lon": -2.6808228, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS11 441D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3622769739, - "lat": 56.4401492, - "lon": -2.9408278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD6 146", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3623037173, - "lat": 52.7937192, - "lon": 1.2469581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623167716, - "lat": 55.9522418, - "lon": -3.1366813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH8 292D" - } -}, -{ - "type": "node", - "id": 3623190091, - "lat": 52.7882114, - "lon": 1.2490205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR11 1184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623190333, - "lat": 52.7916200, - "lon": 1.2417529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623190378, - "lat": 52.7952691, - "lon": 1.2440155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623190379, - "lat": 52.7953101, - "lon": 1.2512862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR11 1100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623190382, - "lat": 52.7971024, - "lon": 1.2467303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR11 1116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3623190388, - "lat": 52.7981659, - "lon": 1.2520729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623699350, - "lat": 53.0212277, - "lon": -1.1889194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 17D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3623751108, - "lat": 52.7846262, - "lon": 1.2540437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3623751202, - "lat": 52.7892100, - "lon": 1.2586425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623751213, - "lat": 52.7913720, - "lon": 1.2532173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR11 1111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623751228, - "lat": 52.7926368, - "lon": 1.2582027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623751264, - "lat": 52.7940699, - "lon": 1.2558436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623751393, - "lat": 52.7954951, - "lon": 1.2600120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR11 1103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3623783677, - "lat": 50.7408995, - "lon": -4.6333914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "mapillary": "167793641985086", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2021-06-08", - "survey:date": "2021-06-08" - } -}, -{ - "type": "node", - "id": 3623786714, - "lat": 50.7097688, - "lon": -4.6233565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL32 75D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3623787909, - "lat": 53.0300590, - "lon": -1.1910196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3623961768, - "lat": 51.4787523, - "lon": -2.6846013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS20 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3624002090, - "lat": 54.3460574, - "lon": -7.6403854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT74 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3624018477, - "lat": 53.0321429, - "lon": -1.1962354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3624093457, - "lat": 54.3419198, - "lon": -7.6344839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT74 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3624093487, - "lat": 56.3324643, - "lon": -3.3120572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 100D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3624097480, - "lat": 51.4633083, - "lon": -2.6670758, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS8 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3624097595, - "lat": 51.4667821, - "lon": -2.6717606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS8 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3624460772, - "lat": 51.7935952, - "lon": -2.5980694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "mapillary": "3965701280191015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL16 146", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 3624460778, - "lat": 51.7969360, - "lon": -2.5982483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "ref": "GL16 33" - } -}, -{ - "type": "node", - "id": 3624917827, - "lat": 51.8027861, - "lon": -2.5975154, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3625188405, - "lat": 51.1238810, - "lon": -0.0133986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3625206981, - "lat": 51.1214913, - "lon": -0.0187428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3625216340, - "lat": 51.1246490, - "lon": -0.0177658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625250171, - "lat": 51.4107365, - "lon": 0.0143056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3625388511, - "lat": 52.8208562, - "lon": 1.3886225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "NR28 2800", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3625388616, - "lat": 52.8273564, - "lon": 1.3966487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2864", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625390060, - "lat": 53.8442867, - "lon": -2.9762746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY6 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3625522490, - "lat": 51.5185703, - "lon": -2.5082471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS36 489D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3625523851, - "lat": 51.5120201, - "lon": -2.4654735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS36 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625523868, - "lat": 51.5170800, - "lon": -2.4991425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS36 232D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3625523920, - "lat": 51.5267227, - "lon": -2.4706200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-01-11", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "fixme": "No reference visible on label; try again at some point Still not visible 15/12/20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625524005, - "lat": 51.5226614, - "lon": -2.5081196, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-06", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BS36 1109;BS36 1110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625551359, - "lat": 53.8242322, - "lon": -3.0004999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY3 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625704220, - "lat": 50.9018037, - "lon": -1.0740402, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625709749, - "lat": 50.9041227, - "lon": -1.0655081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 1672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625709750, - "lat": 50.9041278, - "lon": -1.0655590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 1671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625711002, - "lat": 50.8928780, - "lon": -1.0324348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "This postbox icon was on the wrong side of the road and so I have moved the icon to its correct location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625862734, - "lat": 52.6465255, - "lon": 1.2513511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR6 607D" - } -}, -{ - "type": "node", - "id": 3625937720, - "lat": 52.2714538, - "lon": 0.7893235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625937934, - "lat": 52.2898123, - "lon": 0.7269752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2053", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625942687, - "lat": 53.0268778, - "lon": -1.2106874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3625942696, - "lat": 53.0270165, - "lon": -1.1996610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3625942915, - "lat": 53.0289479, - "lon": -1.2072669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3625943014, - "lat": 53.0318779, - "lon": -1.2102024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3625963291, - "lat": 52.2518837, - "lon": 0.8064497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP31 2105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3625979894, - "lat": 52.2208421, - "lon": 0.8039255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP30 2103", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3625998720, - "lat": 52.5846882, - "lon": -2.9555367, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3626005108, - "lat": 53.0282735, - "lon": -1.2159780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mail:franked": "only", - "opening_hours": "Mo-Fr 13:00-18:30", - "post_box:type": "meter", - "ref": "NG15 190", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3626036960, - "lat": 51.6648668, - "lon": -2.5055536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "drive_through": "no", - "mapillary": "1914071312127323", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-15" - } -}, -{ - "type": "node", - "id": 3626036962, - "lat": 51.6704368, - "lon": -2.4972292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL13 109", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3626660947, - "lat": 54.5834008, - "lon": -5.9370946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3627123048, - "lat": 52.2098938, - "lon": 0.7480095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627131220, - "lat": 52.2062880, - "lon": 0.7647291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP30 2024D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3627163038, - "lat": 52.2000263, - "lon": 0.7483340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP30 2059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627163058, - "lat": 52.1917055, - "lon": 0.7226842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP29 2026", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627368595, - "lat": 51.3969301, - "lon": -0.0482698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627391041, - "lat": 51.6285169, - "lon": -2.5598633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627391044, - "lat": 51.6493377, - "lon": -2.4759796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "mapillary": "405926858945389", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 3627689479, - "lat": 50.1202858, - "lon": -5.5416824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3627819188, - "lat": 53.0266164, - "lon": -1.2189799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "pillar", - "ref": "NG15 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627819267, - "lat": 53.0271796, - "lon": -1.2224748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3627819458, - "lat": 53.0300439, - "lon": -1.2194676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3627924297, - "lat": 51.9433306, - "lon": -2.2527738, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627935602, - "lat": 53.0356644, - "lon": -1.2266501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG15 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3627935606, - "lat": 53.0357129, - "lon": -1.2219777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "NG15 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3627935627, - "lat": 53.0375930, - "lon": -1.2235196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3627937584, - "lat": 51.4544160, - "lon": -2.6335441, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 432D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3627937585, - "lat": 51.4545559, - "lon": -2.6440680, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS8 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3627937911, - "lat": 51.4599643, - "lon": -2.6599227, - "tags": { - "amenity": "post_box", - "mapillary": "226899365436356", - "post_box:type": "lamp", - "ref": "BS8 606D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2019-06-23", - "survey:date": "2021-03-27" - } -}, -{ - "type": "node", - "id": 3628662979, - "lat": 52.2633692, - "lon": -0.6423500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 06:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3628865484, - "lat": 52.3969211, - "lon": -1.8193085, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 814", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3628951254, - "lat": 52.4042424, - "lon": -1.8436299, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3628951277, - "lat": 52.4062828, - "lon": -1.8596057, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 753D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3628952097, - "lat": 52.4071213, - "lon": -1.8487850, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 716D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3628969361, - "lat": 52.4062940, - "lon": -1.8652124, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "B90 1056D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3629757458, - "lat": 50.7921539, - "lon": -1.1379796, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PO12 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3629767722, - "lat": 50.7923979, - "lon": -1.1425332, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PO12 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3629824406, - "lat": 50.8417722, - "lon": -0.8711526, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3629826797, - "lat": 50.8367415, - "lon": -0.8212689, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO18 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3630040473, - "lat": 51.5977643, - "lon": -2.6303511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3630040476, - "lat": 51.5985526, - "lon": -2.6165530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3630040616, - "lat": 51.5756564, - "lon": -2.6351399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3630040628, - "lat": 51.5880091, - "lon": -2.6036854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 185", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3630087375, - "lat": 50.8622705, - "lon": -1.0141739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3630091838, - "lat": 55.7638772, - "lon": -3.8976041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "ML2 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3630091870, - "lat": 55.7686984, - "lon": -3.9114394, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3630140720, - "lat": 55.7733701, - "lon": -3.9191271, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3630140721, - "lat": 55.7737743, - "lon": -3.9226973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ML2 1000;ML2 1002", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3630140722, - "lat": 55.7756778, - "lon": -3.9233869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ML2 34", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3630145633, - "lat": 52.1945664, - "lon": 0.6739691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Has a hinged plate on a latch over the aperture, but it can easily be opened to use the box.", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP29 2070D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3630173549, - "lat": 52.2072213, - "lon": 0.6124911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP29 2118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3630173589, - "lat": 52.1981071, - "lon": 0.6464394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP29 2048", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3630173831, - "lat": 52.2042493, - "lon": 0.6149346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP29 2094D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3630751961, - "lat": 52.2648751, - "lon": 0.6308507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3631543096, - "lat": 54.3226035, - "lon": -2.7462709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA9 11", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3631641183, - "lat": 54.3408016, - "lon": -2.7512671, - "tags": { - "amenity": "post_box", - "ref": "LA9 15" - } -}, -{ - "type": "node", - "id": 3631641188, - "lat": 54.3416743, - "lon": -2.7495258, - "tags": { - "amenity": "post_box", - "ref": "LA9 101" - } -}, -{ - "type": "node", - "id": 3631649378, - "lat": 54.3363613, - "lon": -2.7419869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LA9 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3631657465, - "lat": 51.8053306, - "lon": -3.9227389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "SA18 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3631658325, - "lat": 54.3288925, - "lon": -2.7523240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA9 34D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3631660208, - "lat": 54.3291553, - "lon": -2.7395639, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA9 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3631663020, - "lat": 54.3301407, - "lon": -2.7345333, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA9 5" - } -}, -{ - "type": "node", - "id": 3631679837, - "lat": 54.3218675, - "lon": -2.7524989, - "tags": { - "amenity": "post_box", - "ref": "LA9 198" - } -}, -{ - "type": "node", - "id": 3631683636, - "lat": 54.3206793, - "lon": -2.7484700, - "tags": { - "amenity": "post_box", - "ref": "LA9 199" - } -}, -{ - "type": "node", - "id": 3631694945, - "lat": 51.8071374, - "lon": -3.9311026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SA18 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3631695421, - "lat": 54.3169124, - "lon": -2.7452062, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 13" - } -}, -{ - "type": "node", - "id": 3631703682, - "lat": 54.3129600, - "lon": -2.7467948, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA9 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3631704489, - "lat": 54.3114846, - "lon": -2.7529507, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 16" - } -}, -{ - "type": "node", - "id": 3631716219, - "lat": 54.3102588, - "lon": -2.7281323, - "tags": { - "amenity": "post_box", - "ref": "LA9 260" - } -}, -{ - "type": "node", - "id": 3631719529, - "lat": 54.3149288, - "lon": -2.7390448, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA9 167", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3631878645, - "lat": 51.7670237, - "lon": -3.3408581, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "CF48 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3632102648, - "lat": 57.4411135, - "lon": -7.3918906, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3632467469, - "lat": 54.3197551, - "lon": -2.7428252, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA9 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3632467470, - "lat": 54.3223952, - "lon": -2.7276314, - "tags": { - "amenity": "post_box", - "ref": "LA9 263" - } -}, -{ - "type": "node", - "id": 3632680483, - "lat": 51.5161279, - "lon": -0.0623228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 59;E1 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3632715080, - "lat": 51.5194929, - "lon": -0.0576210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 13;E1 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3633017368, - "lat": 53.4498910, - "lon": -2.2642556, - "tags": { - "amenity": "post_box", - "ref": "M16 167D" - } -}, -{ - "type": "node", - "id": 3633020815, - "lat": 50.9171911, - "lon": -3.7033829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX16 105", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3633148317, - "lat": 51.4599826, - "lon": -0.4467876, - "tags": { - "amenity": "post_box", - "note": "the departure lounge postbox is here" - } -}, -{ - "type": "node", - "id": 3633582401, - "lat": 50.7581083, - "lon": -2.6832951, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3633611991, - "lat": 50.8187945, - "lon": -2.6239869, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 170", - "ref:GB:uprn": "10015309010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3633815462, - "lat": 53.7626470, - "lon": -1.5673439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 766", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3633884595, - "lat": 53.9909509, - "lon": -0.9138059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "YO41 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3634018582, - "lat": 50.6724105, - "lon": -2.5630794, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT3 80D", - "ref:GB:uprn": "10015435026", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3634648914, - "lat": 51.3342910, - "lon": 0.5441697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 399", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3634648915, - "lat": 51.3328286, - "lon": 0.5492725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME5 420", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3634648916, - "lat": 51.3291043, - "lon": 0.5439718, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME5 439", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3634648917, - "lat": 51.3309257, - "lon": 0.5405330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME5 401", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634648918, - "lat": 51.3284806, - "lon": 0.5396056, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME5 326D", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634648919, - "lat": 51.3344828, - "lon": 0.5329851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 226D", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634648920, - "lat": 51.3279207, - "lon": 0.5276004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 5", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634648921, - "lat": 51.3309352, - "lon": 0.5205749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 414", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634648922, - "lat": 51.3365883, - "lon": 0.5136842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 415D", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634648923, - "lat": 51.3415193, - "lon": 0.5075163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 256D", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3634830653, - "lat": 53.7862016, - "lon": -1.3760447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 132" - } -}, -{ - "type": "node", - "id": 3634831396, - "lat": 53.7934490, - "lon": -1.3881817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS25 722;LS25 1722", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3634857737, - "lat": 53.9554370, - "lon": -0.9719147, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO19 2013", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3634866099, - "lat": 53.9898757, - "lon": -0.9447962, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO41 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3634872315, - "lat": 52.6958129, - "lon": -2.4501769, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TF2 263;TF2 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3634872646, - "lat": 53.9869155, - "lon": -0.9102501, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3634872649, - "lat": 53.9844978, - "lon": -0.9141715, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3634872650, - "lat": 53.9914119, - "lon": -0.9081828, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3635115044, - "lat": 50.6662575, - "lon": -2.6048814, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT3 76", - "ref:GB:uprn": "10015285419", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3635441129, - "lat": 51.9057555, - "lon": -2.0873574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3635441156, - "lat": 51.9141594, - "lon": -2.1174687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2016-09-19" - } -}, -{ - "type": "node", - "id": 3635561297, - "lat": 51.6665595, - "lon": -2.3896847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3635561336, - "lat": 51.7316090, - "lon": -2.3646530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:30", - "collection_times_checked": "2020-06-20", - "note": "wall mounted lamp box", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL2 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3635614516, - "lat": 51.6472191, - "lon": -2.3629562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL12 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3635619637, - "lat": 51.6608924, - "lon": -2.3778308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL11 225D" - } -}, -{ - "type": "node", - "id": 3635619639, - "lat": 51.6609045, - "lon": -2.3750767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3635703300, - "lat": 53.6840114, - "lon": -1.3536166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 82" - } -}, -{ - "type": "node", - "id": 3635897958, - "lat": 50.8606218, - "lon": -0.1090567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 229", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3635897961, - "lat": 50.8584777, - "lon": -0.1044544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 227", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3635945588, - "lat": 51.9149438, - "lon": -4.5651329, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3636016793, - "lat": 50.6703721, - "lon": -2.5396533, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT3 75", - "ref:GB:uprn": "10015275501", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3636016795, - "lat": 50.6706670, - "lon": -2.5095183, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT3 71", - "ref:GB:uprn": "10015451492", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3636028862, - "lat": 50.6602072, - "lon": -2.4457636, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT3 69", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3636034412, - "lat": 51.8973516, - "lon": -4.6299842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3636034457, - "lat": 51.8788254, - "lon": -4.5933345, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3636034473, - "lat": 51.8788999, - "lon": -4.5932969, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3636044179, - "lat": 51.9006141, - "lon": -4.7070188, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3636044180, - "lat": 51.9089161, - "lon": -4.6459031, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3636047638, - "lat": 51.8781830, - "lon": -4.6664086, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3636047658, - "lat": 51.8796718, - "lon": -4.6645627, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3636064290, - "lat": 51.8346513, - "lon": -4.4360481, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA33 543", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3636233806, - "lat": 53.8357590, - "lon": -1.5500542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS17 928D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3636245316, - "lat": 53.8113594, - "lon": -1.6115046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS12 528" - } -}, -{ - "type": "node", - "id": 3636452682, - "lat": 52.2452306, - "lon": 0.7411746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP32 8135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3636491395, - "lat": 52.2424924, - "lon": 0.7536468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "post_box:type": "parcel", - "ref": "IP32 8229P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3636829708, - "lat": 51.8203434, - "lon": -4.6032090, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3636834805, - "lat": 54.3118610, - "lon": -2.7411125, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 166" - } -}, -{ - "type": "node", - "id": 3637210243, - "lat": 51.0346698, - "lon": -2.2691892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "326799213291802", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP8 51", - "ref:GB:uprn": "10015395070", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 3637211200, - "lat": 51.0326931, - "lon": -2.2616183, - "tags": { - "amenity": "post_box", - "mapillary": "171316378134752", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP8 71", - "ref:GB:uprn": "10015458944", - "survey:date": "2020-09-11" - } -}, -{ - "type": "node", - "id": 3637217944, - "lat": 51.0436057, - "lon": -2.2782615, - "tags": { - "amenity": "post_box", - "mapillary": "803674270275074", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SP8 59", - "ref:GB:uprn": "10015368851", - "survey:date": "2020-09-01" - } -}, -{ - "type": "node", - "id": 3637312622, - "lat": 55.7661440, - "lon": -3.9209186, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3637469159, - "lat": 52.6869785, - "lon": 1.2783573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:30, Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR10 1020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3637868944, - "lat": 56.3814657, - "lon": -3.4334076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "PH2 44", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3637869502, - "lat": 56.3728417, - "lon": -3.4231137, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 47D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3637895273, - "lat": 56.3434503, - "lon": -3.4095631, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "old_collection_plate": "SCP5", - "old_collection_times": "Mo-Fr 12:30; Sa 11:45", - "old_ref": "PH2 68", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3637912551, - "lat": 53.7676958, - "lon": -1.3708715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS25 776" - } -}, -{ - "type": "node", - "id": 3637912592, - "lat": 53.7666860, - "lon": -1.3681517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 768" - } -}, -{ - "type": "node", - "id": 3637943255, - "lat": 50.6366100, - "lon": -2.3347662, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 46", - "ref:GB:uprn": "10015378477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3638049711, - "lat": 50.6910257, - "lon": -2.3346805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3639540318, - "lat": 50.7079049, - "lon": -2.4316462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 81D", - "ref:GB:uprn": "10015302377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-08-10" - } -}, -{ - "type": "node", - "id": 3639545584, - "lat": 50.6903194, - "lon": -2.4820115, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 184", - "ref:GB:uprn": "10015395239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3639844728, - "lat": 56.0029570, - "lon": -3.8298718, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3639885523, - "lat": 55.8716707, - "lon": -3.6146902, - "tags": { - "amenity": "post_box", - "check_date:ref": "2024-06-30", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "mapillary": "599966244295751", - "note": "ref is definitely EH47 43D after revisiting", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH47 43D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3639903755, - "lat": 55.8782522, - "lon": -3.5904470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 27", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3639903764, - "lat": 55.8784865, - "lon": -3.5882404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3639908279, - "lat": 51.4496188, - "lon": -2.5808602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "This postbox is at Bristol Temple Meads station just outside the ticket barriers, so one does not need a rail ticket to use this postbox.", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS1 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3640040233, - "lat": 52.6639886, - "lon": -1.1685769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE4 850D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3640040234, - "lat": 52.6647072, - "lon": -1.1737542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "mail:meter": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LE4 841", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3640040235, - "lat": 52.6647163, - "lon": -1.1737634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3640040236, - "lat": 52.6659057, - "lon": -1.1657640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3640040237, - "lat": 52.6692622, - "lon": -1.1707340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 837", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3640614313, - "lat": 51.5361747, - "lon": -0.4776352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "UB8 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3640654246, - "lat": 51.5395112, - "lon": -0.4774188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB8 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3640985326, - "lat": 50.5808870, - "lon": -3.7358821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3641028801, - "lat": 55.4507905, - "lon": -4.6428691, - "tags": { - "amenity": "post_box", - "ref": "KA7 78" - } -}, -{ - "type": "node", - "id": 3641160699, - "lat": 51.0360023, - "lon": -2.2842557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP8 127" - } -}, -{ - "type": "node", - "id": 3641160700, - "lat": 51.0336283, - "lon": -2.2871180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP8 104", - "ref:GB:uprn": "10015438557" - } -}, -{ - "type": "node", - "id": 3641443991, - "lat": 51.4320517, - "lon": -0.3458370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW11 197", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3641469824, - "lat": 52.3108202, - "lon": -1.5106563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV32 175", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3641469832, - "lat": 52.3082360, - "lon": -1.4992157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3641706734, - "lat": 53.2532482, - "lon": -0.7995613, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3641715440, - "lat": 53.2578310, - "lon": -0.7966404, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3642215496, - "lat": 52.5394611, - "lon": 0.9629610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1713D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3642371146, - "lat": 51.8437093, - "lon": -4.3232097, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3642566711, - "lat": 53.2630663, - "lon": -0.7879420, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3642654007, - "lat": 51.7869324, - "lon": -4.4128341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3642920022, - "lat": 53.2767107, - "lon": -0.7965355, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3642922901, - "lat": 51.8564706, - "lon": -4.3253059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA31 561D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3643080847, - "lat": 51.8706469, - "lon": -4.2341386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA32 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3644176119, - "lat": 55.4441023, - "lon": -4.6143766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 145" - } -}, -{ - "type": "node", - "id": 3644304303, - "lat": 55.4527595, - "lon": -4.6019389, - "tags": { - "amenity": "post_box", - "ref": "KA7 200" - } -}, -{ - "type": "node", - "id": 3644691275, - "lat": 51.5067031, - "lon": -2.3397757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL9 292", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3644764459, - "lat": 51.3026062, - "lon": -0.6692603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3645205165, - "lat": 51.4436226, - "lon": -2.5788156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3645205174, - "lat": 51.4489036, - "lon": -2.5745599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS2 1099", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3645281891, - "lat": 51.7923465, - "lon": -3.4315710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CF48 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3646238762, - "lat": 50.3670500, - "lon": -4.9726599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR8 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3646635466, - "lat": 55.8716139, - "lon": -3.0566829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 120D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3646652041, - "lat": 52.4519021, - "lon": 1.7194833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3646684062, - "lat": 50.9705598, - "lon": -0.8817103, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3647246074, - "lat": 51.6613228, - "lon": -0.7126885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HP15 176D" - } -}, -{ - "type": "node", - "id": 3647246172, - "lat": 51.6636472, - "lon": -0.7181652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "HP15 172" - } -}, -{ - "type": "node", - "id": 3647370132, - "lat": 51.3707991, - "lon": 0.6712107, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 10D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 3647372639, - "lat": 51.3792065, - "lon": 0.6036299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 48" - } -}, -{ - "type": "node", - "id": 3647470996, - "lat": 51.6807569, - "lon": -4.1226046, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3647724382, - "lat": 51.5046210, - "lon": -0.0149029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "layer": "-1", - "note": "Box is just inside the door to the left on the ground floor.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E14 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3647845385, - "lat": 51.9235054, - "lon": -3.4629402, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3647866353, - "lat": 54.3790927, - "lon": -2.1679721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DL11 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-06-26" - } -}, -{ - "type": "node", - "id": 3647866368, - "lat": 55.1397120, - "lon": -2.2611585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE48 140D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-07-01" - } -}, -{ - "type": "node", - "id": 3647866369, - "lat": 55.1441766, - "lon": -2.2481978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE48 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-07-02" - } -}, -{ - "type": "node", - "id": 3647866370, - "lat": 55.3182282, - "lon": -2.3731798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE19 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-07-02" - } -}, -{ - "type": "node", - "id": 3647874586, - "lat": 52.3838253, - "lon": -0.5827061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 65" - } -}, -{ - "type": "node", - "id": 3648014830, - "lat": 51.8092200, - "lon": -3.5528816, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CF44 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3649116036, - "lat": 51.3232799, - "lon": 0.0555030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3649168035, - "lat": 56.9116076, - "lon": -2.9162393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD9 63D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3649238426, - "lat": 56.9054974, - "lon": -2.8335087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD9 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3649443546, - "lat": 57.6159644, - "lon": -4.6888788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV23 250", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3649551605, - "lat": 56.8438047, - "lon": -5.1245733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3649551618, - "lat": 56.8434221, - "lon": -5.1364414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH33 11", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3649762580, - "lat": 52.8688632, - "lon": -1.0475363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG12 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3650406256, - "lat": 55.4308042, - "lon": -4.6531937, - "tags": { - "amenity": "post_box", - "ref": "KA7 97" - } -}, -{ - "type": "node", - "id": 3650406257, - "lat": 55.4362599, - "lon": -4.6553745, - "tags": { - "amenity": "post_box", - "ref": "KA7 61" - } -}, -{ - "type": "node", - "id": 3650406274, - "lat": 55.4330842, - "lon": -4.6398098, - "tags": { - "amenity": "post_box", - "ref": "KA7 139" - } -}, -{ - "type": "node", - "id": 3650406294, - "lat": 55.4322186, - "lon": -4.6258066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA7 155", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3650406608, - "lat": 55.4322903, - "lon": -4.6132970, - "tags": { - "amenity": "post_box", - "ref": "KA7 136" - } -}, -{ - "type": "node", - "id": 3650533672, - "lat": 55.4376263, - "lon": -4.6163499, - "tags": { - "amenity": "post_box", - "ref": "KA7 137" - } -}, -{ - "type": "node", - "id": 3650533717, - "lat": 55.4386565, - "lon": -4.6109300, - "tags": { - "amenity": "post_box", - "ref": "KA7 161" - } -}, -{ - "type": "node", - "id": 3650536226, - "lat": 55.4398785, - "lon": -4.6046662, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 160" - } -}, -{ - "type": "node", - "id": 3650551930, - "lat": 55.4408996, - "lon": -4.6233031, - "tags": { - "amenity": "post_box", - "ref": "KA7 25" - } -}, -{ - "type": "node", - "id": 3650551946, - "lat": 55.4438290, - "lon": -4.6035954, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 166", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3650574401, - "lat": 55.4444996, - "lon": -4.6086389, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 144", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3650605907, - "lat": 55.4437275, - "lon": -4.6216891, - "tags": { - "amenity": "post_box", - "ref": "KA7 201" - } -}, -{ - "type": "node", - "id": 3650611163, - "lat": 55.4447432, - "lon": -4.6232576, - "tags": { - "amenity": "post_box", - "ref": "KA7 38" - } -}, -{ - "type": "node", - "id": 3650626838, - "lat": 55.4448054, - "lon": -4.6293214, - "tags": { - "amenity": "post_box", - "ref": "KA7 31" - } -}, -{ - "type": "node", - "id": 3650626873, - "lat": 55.4466014, - "lon": -4.6444886, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 100", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3650650593, - "lat": 55.4504566, - "lon": -4.6388963, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA7 14D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3650671391, - "lat": 55.4514035, - "lon": -4.6327100, - "tags": { - "amenity": "post_box", - "ref": "KA7 3" - } -}, -{ - "type": "node", - "id": 3650671392, - "lat": 55.4501637, - "lon": -4.6290020, - "tags": { - "amenity": "post_box", - "ref": "KA7 8" - } -}, -{ - "type": "node", - "id": 3650671424, - "lat": 55.4498196, - "lon": -4.6082295, - "tags": { - "amenity": "post_box", - "ref": "KA7 150" - } -}, -{ - "type": "node", - "id": 3650680569, - "lat": 55.4508055, - "lon": -4.6025170, - "tags": { - "amenity": "post_box", - "ref": "KA7 18" - } -}, -{ - "type": "node", - "id": 3650687491, - "lat": 55.4563423, - "lon": -4.5987282, - "tags": { - "amenity": "post_box", - "ref": "KA7 164" - } -}, -{ - "type": "node", - "id": 3650711426, - "lat": 55.4551421, - "lon": -4.6049076, - "tags": { - "amenity": "post_box", - "ref": "KA7 1" - } -}, -{ - "type": "node", - "id": 3650711471, - "lat": 55.4535345, - "lon": -4.6177337, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 123" - } -}, -{ - "type": "node", - "id": 3650745865, - "lat": 55.4560460, - "lon": -4.6255457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA7 167", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3650745866, - "lat": 55.4540931, - "lon": -4.6291452, - "tags": { - "amenity": "post_box", - "ref": "KA7 4" - } -}, -{ - "type": "node", - "id": 3650745868, - "lat": 55.4535116, - "lon": -4.6372797, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA7 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3650745869, - "lat": 55.4552078, - "lon": -4.6367260, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA7 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3650745871, - "lat": 55.4582136, - "lon": -4.6342991, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA7 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3650745872, - "lat": 55.4590372, - "lon": -4.6267058, - "tags": { - "amenity": "post_box", - "ref": "KA7 43" - } -}, -{ - "type": "node", - "id": 3650745873, - "lat": 55.4614037, - "lon": -4.6291230, - "tags": { - "amenity": "post_box", - "ref": "KA7 26" - } -}, -{ - "type": "node", - "id": 3650756877, - "lat": 55.4651829, - "lon": -4.6343010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA7 19D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3650796806, - "lat": 53.8503882, - "lon": -3.0116601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "FY6 162D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3650796809, - "lat": 53.8577063, - "lon": -3.0072031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3650816774, - "lat": 55.4672541, - "lon": -4.6348069, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA8 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3651244165, - "lat": 56.9228239, - "lon": -5.8585297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "ref": "PH39 77", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3651261605, - "lat": 56.8992351, - "lon": -5.7778116, - "tags": { - "amenity": "post_box", - "ref": "PH39 124", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3651315619, - "lat": 58.1550655, - "lon": -5.2482306, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV27 313", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3651596829, - "lat": 54.0826717, - "lon": -1.2645623, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-27", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO61 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652676240, - "lat": 52.6151908, - "lon": 1.3072699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR1 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652756559, - "lat": 55.5169324, - "lon": -2.6808845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:15, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3652890686, - "lat": 55.4629479, - "lon": -4.5997710, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 45" - } -}, -{ - "type": "node", - "id": 3652891138, - "lat": 55.4618343, - "lon": -4.6050085, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3652896162, - "lat": 55.4613086, - "lon": -4.6142797, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 130", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3652896194, - "lat": 55.4620921, - "lon": -4.6241110, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA8 1630", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3652904121, - "lat": 55.4632978, - "lon": -4.6208168, - "tags": { - "amenity": "post_box", - "ref": "KA8 42" - } -}, -{ - "type": "node", - "id": 3652909832, - "lat": 55.4654999, - "lon": -4.6268139, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 16" - } -}, -{ - "type": "node", - "id": 3652911610, - "lat": 55.4678882, - "lon": -4.6080529, - "tags": { - "amenity": "post_box", - "ref": "KA8 169" - } -}, -{ - "type": "node", - "id": 3652912728, - "lat": 55.4700888, - "lon": -4.6020709, - "tags": { - "amenity": "post_box", - "ref": "KA8 2" - } -}, -{ - "type": "node", - "id": 3652914070, - "lat": 55.4678270, - "lon": -4.6256721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3652914071, - "lat": 55.4677322, - "lon": -4.6297345, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 12" - } -}, -{ - "type": "node", - "id": 3652914072, - "lat": 55.4700361, - "lon": -4.6333609, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3652950008, - "lat": 53.8656175, - "lon": -3.0098855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 142", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3652950009, - "lat": 53.8657873, - "lon": -2.9926862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY5 325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950010, - "lat": 53.8671355, - "lon": -3.0051789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950011, - "lat": 53.8694380, - "lon": -2.9968793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950012, - "lat": 53.8702153, - "lon": -3.0011575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950013, - "lat": 53.8717088, - "lon": -3.0097514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3652950014, - "lat": 53.8717201, - "lon": -2.9971214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950015, - "lat": 53.8741834, - "lon": -3.0019204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 262D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3652950020, - "lat": 53.8746772, - "lon": -3.0111674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950021, - "lat": 53.8757023, - "lon": -2.9929163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950022, - "lat": 53.8766125, - "lon": -3.0191052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 150D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3652950023, - "lat": 53.8769046, - "lon": -2.9872892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3652950024, - "lat": 53.8787004, - "lon": -3.0137008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950325, - "lat": 53.8794896, - "lon": -3.0205093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950326, - "lat": 53.8802343, - "lon": -3.0060856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa off; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "FY5 268" - } -}, -{ - "type": "node", - "id": 3652950327, - "lat": 53.8802368, - "lon": -3.0060543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950328, - "lat": 53.8806660, - "lon": -3.0105639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950329, - "lat": 53.8826731, - "lon": -3.0145860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950330, - "lat": 53.8826873, - "lon": -3.0199328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY5 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3652950331, - "lat": 53.8866040, - "lon": -3.0199581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY5 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3653180873, - "lat": 56.8989432, - "lon": -2.8100195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DD9 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3653206451, - "lat": 57.0463849, - "lon": -2.4971740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 225", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3653248549, - "lat": 58.1478951, - "lon": -5.2445039, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IV27 300", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3653266702, - "lat": 57.8736672, - "lon": -5.2668381, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV189", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3653309925, - "lat": 57.8596004, - "lon": -5.6273085, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV22 229", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3653310271, - "lat": 57.8404594, - "lon": -5.5859859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IV22 213", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3653349924, - "lat": 51.6772460, - "lon": -4.1363565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "pillar", - "ref": "SA14 36" - } -}, -{ - "type": "node", - "id": 3653353671, - "lat": 55.9093011, - "lon": -4.4641494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3653457887, - "lat": 51.0250212, - "lon": -1.2737368, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "collection_times_checked": "2020-01-12", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO21 183", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3653719162, - "lat": 53.7502768, - "lon": -3.0309374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "FY8 6", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3653719163, - "lat": 53.7502940, - "lon": -3.0309563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3654009438, - "lat": 50.3429465, - "lon": -4.6781531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3654009440, - "lat": 50.3576791, - "lon": -4.6980014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3654011473, - "lat": 51.4038059, - "lon": 0.0172869, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "indoor": "yes", - "level": "1", - "note": "Upper Level", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 3654011474, - "lat": 51.4043752, - "lon": 0.0149370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "Inside WH Smiths", - "post_box:type": "pillar", - "ref": "BR1 512" - } -}, -{ - "type": "node", - "id": 3654011475, - "lat": 51.4056109, - "lon": 0.0146730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR1 647P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3654141558, - "lat": 50.3226861, - "lon": -4.7675283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 3654340452, - "lat": 51.4737994, - "lon": -0.1068457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3654415368, - "lat": 51.3978122, - "lon": 0.0188107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3654503979, - "lat": 51.5303201, - "lon": -0.1853382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3654918624, - "lat": 50.9608988, - "lon": -0.8091680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU29 19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GU29 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-07-10" - } -}, -{ - "type": "node", - "id": 3654928030, - "lat": 50.9860360, - "lon": -0.7777579, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU29 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3654940788, - "lat": 50.0824266, - "lon": -5.1149525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR12 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3654968307, - "lat": 52.5834918, - "lon": 1.1446508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1823D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3655469980, - "lat": 51.4219126, - "lon": -0.8839158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "432384241370263", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG41 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-05" - } -}, -{ - "type": "node", - "id": 3655718039, - "lat": 51.2548853, - "lon": -0.5872529, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-02-20", - "old_ref": "GU2 89", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU2 89D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3655724974, - "lat": 50.6193236, - "lon": -1.9566001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH19 149", - "ref:GB:uprn": "10015306604", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3655729625, - "lat": 50.7146212, - "lon": -2.4352296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 201", - "ref:GB:uprn": "10015464718", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 3655730125, - "lat": 50.7134072, - "lon": -2.4331261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 86D", - "ref:GB:uprn": "10015474690", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 3655730126, - "lat": 50.7106380, - "lon": -2.4338720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 90D", - "ref:GB:uprn": "10015318656", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3655730127, - "lat": 52.4529940, - "lon": -2.1724470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3655730325, - "lat": 50.7132021, - "lon": -2.4379272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "meter", - "ref": "DT1 5405;DT1 404", - "ref:GB:uprn": "10015847667", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3655733341, - "lat": 51.0110980, - "lon": -3.0392371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "mapillary": "943903073313215", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA3 273", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 3655733727, - "lat": 53.8343364, - "lon": -0.4268464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HU17 309D" - } -}, -{ - "type": "node", - "id": 3655763907, - "lat": 51.6486780, - "lon": -0.3803820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3655775354, - "lat": 52.9022169, - "lon": -2.1420133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3655786125, - "lat": 51.9218502, - "lon": 0.9175358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3655786506, - "lat": 53.5566207, - "lon": -1.1519234, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3655794061, - "lat": 51.4293593, - "lon": -0.4664681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "TW15 157", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3655795292, - "lat": 51.5945385, - "lon": -0.2028346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N3 23" - } -}, -{ - "type": "node", - "id": 3655810942, - "lat": 53.0696026, - "lon": -2.2625066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 771", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3655811661, - "lat": 54.0081884, - "lon": -1.4672665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HG5 116;HG5 1116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3655816839, - "lat": 51.2401293, - "lon": 0.5642058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 353" - } -}, -{ - "type": "node", - "id": 3655834472, - "lat": 55.9503728, - "lon": -3.2121456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH3 147", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 3655843488, - "lat": 51.4851701, - "lon": -0.2695898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 54", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3655850725, - "lat": 53.8431150, - "lon": -0.4163640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3655851239, - "lat": 53.3506350, - "lon": -3.0961420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH61 89 on Antons Road, Thingwall, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Antons Road, Thingwall.jpg" - } -}, -{ - "type": "node", - "id": 3655853825, - "lat": 53.8232950, - "lon": -0.4427690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3655875938, - "lat": 51.5678026, - "lon": -1.7717122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "name": "Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3655905308, - "lat": 53.8464856, - "lon": -1.5395157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 102" - } -}, -{ - "type": "node", - "id": 3655916228, - "lat": 53.8419361, - "lon": -1.5295808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS17 466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3655916231, - "lat": 53.8430711, - "lon": -1.5321792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3656460450, - "lat": 55.9243764, - "lon": -3.2777561, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-11", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH11 414", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3656780383, - "lat": 51.8731404, - "lon": -2.1060006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3656848959, - "lat": 50.9258061, - "lon": -1.3924177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO17 75;SO17 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3656871646, - "lat": 55.9005916, - "lon": -3.6411794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 21D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3656948330, - "lat": 51.3683156, - "lon": 0.5431697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME5 36D" - } -}, -{ - "type": "node", - "id": 3656948332, - "lat": 51.3750541, - "lon": 0.5280860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME4 21D" - } -}, -{ - "type": "node", - "id": 3657685432, - "lat": 50.9152643, - "lon": -1.4135866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3657685436, - "lat": 50.9188561, - "lon": -1.4036395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3657794951, - "lat": 52.6903526, - "lon": 1.2809981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR10 1001D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3657858838, - "lat": 52.9379940, - "lon": -1.1028972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "NG2 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3657903636, - "lat": 50.5759873, - "lon": -3.6498566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2023-08-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3657958275, - "lat": 51.4123982, - "lon": -0.2996165, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-29", - "old_ref": "KT2 17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3657995445, - "lat": 52.9040693, - "lon": -1.0718836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NG12 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3657995513, - "lat": 52.9298483, - "lon": -1.0805722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "NG12 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3658217887, - "lat": 50.6937565, - "lon": -3.1290681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3658217888, - "lat": 50.6972522, - "lon": -3.0916818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Unusual mounting - Wedged between two buildings", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX12 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3658217889, - "lat": 50.6988684, - "lon": -3.0928180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX12 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3658217890, - "lat": 50.7000984, - "lon": -3.0997945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EX12 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3658273748, - "lat": 50.6822452, - "lon": -3.2383015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX10 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3658274797, - "lat": 52.8902384, - "lon": -1.0774149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "wall", - "ref": "NG12 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3658520106, - "lat": 53.9250275, - "lon": -3.0185190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3658684736, - "lat": 54.2265559, - "lon": -2.7723293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "LA7 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3658687432, - "lat": 55.4569300, - "lon": -4.6248265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "KA7 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3658925214, - "lat": 54.2251516, - "lon": -2.7707958, - "tags": { - "amenity": "post_box", - "ref": "LA7 236" - } -}, -{ - "type": "node", - "id": 3658925215, - "lat": 54.2282589, - "lon": -2.7701030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA7 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3658945454, - "lat": 53.2390322, - "lon": -2.7319935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA6 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3658945456, - "lat": 53.2316349, - "lon": -2.7328940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 82", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3658948187, - "lat": 53.2398812, - "lon": -2.7441256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00, Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA6 240" - } -}, -{ - "type": "node", - "id": 3659197791, - "lat": 53.4881067, - "lon": -2.2554158, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3659233383, - "lat": 52.2651035, - "lon": -1.7696781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3659545307, - "lat": 52.9044265, - "lon": -1.0372852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG12 533D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3659545871, - "lat": 52.9057853, - "lon": -1.0436742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG12 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3659546534, - "lat": 52.9097680, - "lon": -1.0370793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG12 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3659935018, - "lat": 54.2087723, - "lon": -2.6332696, - "tags": { - "amenity": "post_box", - "ref": "LA6 116" - } -}, -{ - "type": "node", - "id": 3660091958, - "lat": 54.1948686, - "lon": -3.0946243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LA12 102;LA12 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3660240729, - "lat": 51.5358417, - "lon": -2.4557995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2021-12-23", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "drive_through": "no", - "note": "Reference number not visible, obscured by moss behind the glass 15/12/20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3660314128, - "lat": 51.4372422, - "lon": -0.1973867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 100", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3660639161, - "lat": 51.4190165, - "lon": -0.8541549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG41 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3660639165, - "lat": 51.4130887, - "lon": -0.8407516, - "tags": { - "amenity": "post_box", - "note": "box on post.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG41 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3660770078, - "lat": 50.5158249, - "lon": -3.7574411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ13 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3660770329, - "lat": 50.2920973, - "lon": -4.7817311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL26 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3660805065, - "lat": 51.1671043, - "lon": -1.3302717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO21 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-29" - } -}, -{ - "type": "node", - "id": 3660805067, - "lat": 51.1537662, - "lon": -1.3377340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3660825356, - "lat": 50.5424596, - "lon": -3.8009395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3660825357, - "lat": 50.5706140, - "lon": -3.8068605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 145", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3660936460, - "lat": 50.7712824, - "lon": -3.3009495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX11 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3660936461, - "lat": 50.7002147, - "lon": -3.2330914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX10 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3660936463, - "lat": 50.6894550, - "lon": -3.1239402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX12 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3660954876, - "lat": 53.8266486, - "lon": -1.8958102, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3660954878, - "lat": 53.8259821, - "lon": -1.8987955, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3661527839, - "lat": 52.4689267, - "lon": -1.8948165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B5 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3661572436, - "lat": 52.4625119, - "lon": -1.8927010, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 1312", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3661572456, - "lat": 52.4638985, - "lon": -1.8964321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "B5 427D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3661590705, - "lat": 52.4593504, - "lon": -1.8716986, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3661590706, - "lat": 52.4634790, - "lon": -1.8763509, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3661625230, - "lat": 54.2021650, - "lon": -2.5980568, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 100" - } -}, -{ - "type": "node", - "id": 3661625231, - "lat": 54.2051415, - "lon": -2.6014186, - "tags": { - "amenity": "post_box", - "ref": "LA6 269" - } -}, -{ - "type": "node", - "id": 3661733297, - "lat": 54.2143230, - "lon": -2.6056893, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 107" - } -}, -{ - "type": "node", - "id": 3661800025, - "lat": 51.5457303, - "lon": -0.0083548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E20 901;E20 9018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3661823226, - "lat": 54.1637321, - "lon": -2.5161615, - "tags": { - "amenity": "post_box", - "ref": "LA6 6" - } -}, -{ - "type": "node", - "id": 3661886149, - "lat": 54.1576151, - "lon": -2.4942938, - "tags": { - "amenity": "post_box", - "ref": "LA6 176" - } -}, -{ - "type": "node", - "id": 3662008384, - "lat": 52.1429367, - "lon": -2.9692913, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3662252062, - "lat": 50.5663196, - "lon": -3.9479488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "PL20 786", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662253716, - "lat": 50.5518745, - "lon": -4.0995119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662261882, - "lat": 50.5086479, - "lon": -4.0699167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662261895, - "lat": 50.5162657, - "lon": -4.0728810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 500", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662261906, - "lat": 50.5196700, - "lon": -4.0788888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 556", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662317127, - "lat": 50.5975365, - "lon": -3.9053529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 547", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662369425, - "lat": 50.8711732, - "lon": -3.4447823, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX15 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3662636995, - "lat": 50.4906390, - "lon": -4.0317702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 560", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3662949389, - "lat": 51.4722448, - "lon": -0.2032346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 13" - } -}, -{ - "type": "node", - "id": 3663231543, - "lat": 53.7352388, - "lon": -2.9696113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "FY8 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3663262301, - "lat": 57.4815421, - "lon": -4.3061077, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-29", - "collection_times": "Mo-Fr 08:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV3 120", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3664273447, - "lat": 53.4755065, - "lon": -2.1553505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "M43 357", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3664623035, - "lat": 50.7228080, - "lon": -3.5322043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "comment": "dual", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX4 18;EX4 1800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 3664636075, - "lat": 53.8070769, - "lon": -3.0300985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3664716837, - "lat": 50.6109534, - "lon": -3.3907304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "Wall Box, mounted on top of short post", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "wall", - "ref": "EX8 554D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3664716839, - "lat": 50.6154102, - "lon": -3.4074635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3664716865, - "lat": 50.6179811, - "lon": -3.4139629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3664716910, - "lat": 50.6301400, - "lon": -3.4147600, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3664903768, - "lat": 50.8754040, - "lon": 0.3176499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 956", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664903852, - "lat": 50.8797794, - "lon": 0.2851819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BN27 963D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664903868, - "lat": 50.8807338, - "lon": 0.3266562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 957", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664903889, - "lat": 50.8816431, - "lon": 0.2766621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "BN27 942", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664904351, - "lat": 50.8853341, - "lon": 0.3064502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "BN27 962", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664904363, - "lat": 50.8865919, - "lon": 0.2848214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664904391, - "lat": 50.8894884, - "lon": 0.3248782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 958", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3664904394, - "lat": 50.8909260, - "lon": 0.3198087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN27 960D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3665259708, - "lat": 51.5346999, - "lon": -2.6244643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3665259710, - "lat": 51.5480730, - "lon": -2.6294460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS35 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3665259712, - "lat": 51.5573212, - "lon": -2.6253462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS35 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3665777098, - "lat": 53.0935999, - "lon": -4.3156314, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3666009482, - "lat": 54.3444213, - "lon": -7.6343218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT74 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3666266460, - "lat": 51.4384025, - "lon": -0.8599416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG10 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3666295662, - "lat": 51.4505657, - "lon": -0.8562142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "mapillary": "1714341038979647", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG10 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 3666331028, - "lat": 51.3978265, - "lon": 0.4992050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 166D" - } -}, -{ - "type": "node", - "id": 3666331029, - "lat": 51.4025901, - "lon": 0.4946923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME2 171" - } -}, -{ - "type": "node", - "id": 3666345726, - "lat": 51.4052946, - "lon": 0.4891135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 229D" - } -}, -{ - "type": "node", - "id": 3666345825, - "lat": 51.3993618, - "lon": 0.4542147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME3 193D" - } -}, -{ - "type": "node", - "id": 3666345826, - "lat": 51.3876685, - "lon": 0.4860395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 502" - } -}, -{ - "type": "node", - "id": 3666346026, - "lat": 51.3876766, - "lon": 0.4860194, - "tags": { - "amenity": "post_box", - "note": "Box number hidden", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "ME2 500" - } -}, -{ - "type": "node", - "id": 3666346125, - "lat": 51.3876627, - "lon": 0.4860497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 501" - } -}, -{ - "type": "node", - "id": 3666346225, - "lat": 51.3845569, - "lon": 0.4795986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 412" - } -}, -{ - "type": "node", - "id": 3667067949, - "lat": 50.8823633, - "lon": -1.2662957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO15 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3667128463, - "lat": 51.3930428, - "lon": 0.4924595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 425", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667128464, - "lat": 51.3871567, - "lon": 0.5474560, - "tags": { - "amenity": "post_box", - "opening_hours": "Mo-Sa 08:30-17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME7 92", - "source": "survey", - "source:ref": "Handwritten note on box says Box no 92. Sticker over printed version.", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3667334169, - "lat": 52.4041180, - "lon": -1.9606465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "B31 946", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3667338102, - "lat": 53.0429945, - "lon": -1.1934894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667597278, - "lat": 52.6947439, - "lon": -2.5042388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TF1 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3667726293, - "lat": 52.8227485, - "lon": 1.5366637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2024-06-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667726594, - "lat": 52.8236373, - "lon": 1.5316118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2024-04-26", - "name": "The Street Post Office", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667794945, - "lat": 53.0463747, - "lon": -1.1993382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NG15 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667795066, - "lat": 53.0476531, - "lon": -1.1939751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG15 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667858096, - "lat": 53.0471393, - "lon": -1.2119769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG15 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3667858097, - "lat": 53.0494370, - "lon": -1.2138408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NG15 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3668562638, - "lat": 50.6972555, - "lon": -3.1899894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15, Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3668562639, - "lat": 50.6935608, - "lon": -3.1505513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX12 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3668562640, - "lat": 50.6910745, - "lon": -3.1388890, - "tags": { - "amenity": "post_box", - "note": "No collection time plate 2016. Also 2023", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 3668562641, - "lat": 50.6832129, - "lon": -3.2385513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX10 174", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3668707355, - "lat": 52.4547306, - "lon": -1.8335280, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 9008", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3668707381, - "lat": 52.4629017, - "lon": -1.8270044, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3668707419, - "lat": 52.4643487, - "lon": -1.8422405, - "tags": { - "amenity": "post_box", - "location": "inside", - "post_box:type": "pillar", - "ref": "B8 1032", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3668707702, - "lat": 55.8458195, - "lon": -4.0343323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ML5 40" - } -}, -{ - "type": "node", - "id": 3668709616, - "lat": 52.4653508, - "lon": -1.8429108, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 318D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3668709748, - "lat": 52.4659781, - "lon": -1.8390545, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "post_box:type": "pillar", - "ref": "B10 954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3668709749, - "lat": 52.4659895, - "lon": -1.8313581, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B25 1253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3668710068, - "lat": 55.8541741, - "lon": -4.0325956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ML5 21" - } -}, -{ - "type": "node", - "id": 3668817189, - "lat": 54.1112873, - "lon": -2.3572560, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA2 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3668825512, - "lat": 54.0942263, - "lon": -2.3464500, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA2 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3668827987, - "lat": 50.8821900, - "lon": 0.2626185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 943D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3668837153, - "lat": 50.8904645, - "lon": 0.2649918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BN27 935D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3668837181, - "lat": 50.9033526, - "lon": 0.2757363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "BN27 937", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3668966390, - "lat": 52.2169169, - "lon": -0.0541003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB23 553", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/sterling-way-cb23-6el/000CB23553" - } -}, -{ - "type": "node", - "id": 3669081654, - "lat": 50.8859863, - "lon": 0.2568977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 944", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3669081679, - "lat": 50.8889127, - "lon": 0.2460057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 905", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3669081704, - "lat": 50.8980186, - "lon": 0.2472190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "disused": "post_box", - "note": "This box has a plate accross the apperture with a round hole in it. Could it be in use as a nest box?", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN27 904", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3669277298, - "lat": 51.1690025, - "lon": -0.6475834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU8 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 3669346711, - "lat": 50.7971628, - "lon": -1.1962734, - "tags": { - "amenity": "post_box", - "ref": "PO13 38" - } -}, -{ - "type": "node", - "id": 3669354299, - "lat": 50.7073462, - "lon": -3.0704082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX12 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3669354300, - "lat": 50.7041822, - "lon": -3.0688901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX12 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3669529452, - "lat": 54.6126110, - "lon": -1.0841734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "249572257210278", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-10-12" - } -}, -{ - "type": "node", - "id": 3670045722, - "lat": 51.0253914, - "lon": -3.0992051, - "tags": { - "amenity": "post_box", - "mapillary": "599838597655508", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 451", - "survey:date": "2020-02-18" - } -}, -{ - "type": "node", - "id": 3670059126, - "lat": 54.0166256, - "lon": -2.2568306, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD23 139", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3670059127, - "lat": 54.0163453, - "lon": -2.2515227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD23 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3670197035, - "lat": 55.5490283, - "lon": -1.6680480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE67 56" - } -}, -{ - "type": "node", - "id": 3670449162, - "lat": 53.9910279, - "lon": -2.1476717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "BD23 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3670936017, - "lat": 51.6943625, - "lon": -2.5894344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "collection_times_checked": "2015-07-28", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL15 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3670936025, - "lat": 51.7140890, - "lon": -2.5544888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "collection_times_checked": "2015-07-28", - "mapillary": "320936463639432", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL15 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 3670936026, - "lat": 51.7150977, - "lon": -2.5524891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1511278066312973", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 3671878164, - "lat": 52.5533812, - "lon": -1.9785152, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "drive-by" - } -}, -{ - "type": "node", - "id": 3671944490, - "lat": 52.5491387, - "lon": -1.9814911, - "tags": { - "amenity": "post_box", - "ref": "B71 74", - "source": "drive-by" - } -}, -{ - "type": "node", - "id": 3671954150, - "lat": 52.5447718, - "lon": -1.9836993, - "tags": { - "amenity": "post_box", - "note": "ref listed on plaque as 'B71 43 B71 43A'", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "B71 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3671999969, - "lat": 53.9049441, - "lon": -3.0313707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY7 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3671999970, - "lat": 53.9076512, - "lon": -3.0430855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY7 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3671999971, - "lat": 53.9125323, - "lon": -3.0434415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FY7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3671999972, - "lat": 53.9139956, - "lon": -3.0346011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3671999973, - "lat": 53.9179460, - "lon": -3.0193998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3671999974, - "lat": 53.9181669, - "lon": -3.0362179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3671999976, - "lat": 53.9207963, - "lon": -3.0218412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3671999977, - "lat": 53.9228472, - "lon": -3.0315348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY7 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3672013949, - "lat": 52.5468015, - "lon": -1.9913980, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B71 44D" - } -}, -{ - "type": "node", - "id": 3672583085, - "lat": 51.4415417, - "lon": -2.6081869, - "tags": { - "addr:street": "Greville Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "wall", - "ref": "BS3 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3673747110, - "lat": 53.2856366, - "lon": -1.6773542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S32 563", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3674010676, - "lat": 53.0014300, - "lon": -2.5806500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "ref": "CW5 220", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3674010677, - "lat": 53.0066861, - "lon": -2.5547765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "ref": "CW5 227", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3674010678, - "lat": 53.0081700, - "lon": -2.5822300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 219", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3674010679, - "lat": 53.0129200, - "lon": -2.5777000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW5 221", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3674457835, - "lat": 52.5497588, - "lon": 1.3542273, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-10", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR15 1513", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3675082230, - "lat": 53.8352553, - "lon": -2.9936195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3675082231, - "lat": 53.8430869, - "lon": -2.9968850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 147D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3675082232, - "lat": 53.8474226, - "lon": -2.9800073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "FY6 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3675269921, - "lat": 50.8709445, - "lon": 0.2440361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 970D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675270537, - "lat": 50.8711323, - "lon": 0.2384871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 907", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675270659, - "lat": 50.8802702, - "lon": 0.2221362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN27 902D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3675270685, - "lat": 50.8813698, - "lon": 0.2412858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "BN27 906", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3675270693, - "lat": 50.8821685, - "lon": 0.2146239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "BN27 901", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675536321, - "lat": 50.8730076, - "lon": 0.2637093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN27 910D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3675536322, - "lat": 50.8730727, - "lon": 0.2551309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "BN27 913", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675538577, - "lat": 50.8703064, - "lon": 0.2530731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 969D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675538606, - "lat": 50.8706763, - "lon": 0.2593949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 909D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675538677, - "lat": 50.8744591, - "lon": 0.2538130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "BN27 903", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675538720, - "lat": 50.8757652, - "lon": 0.2509434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 914D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675539035, - "lat": 50.8773684, - "lon": 0.2601657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "BN27 911", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675539068, - "lat": 50.8780290, - "lon": 0.2685168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 964D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3675539087, - "lat": 50.8783747, - "lon": 0.2648568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN27 1101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3676135608, - "lat": 51.2072416, - "lon": -0.3113880, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=1d72096c-7ec0-447e-a103-48b08024d875&cp=51.207255~-0.311465&lvl=19&dir=114.622635&pi=-14.939484&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 16" - } -}, -{ - "type": "node", - "id": 3676348209, - "lat": 51.4102232, - "lon": -0.8289918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1064904040704336", - "post_box:type": "pillar", - "ref": "RG40 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2020-09-17" - } -}, -{ - "type": "node", - "id": 3676384273, - "lat": 51.4108732, - "lon": -0.8349214, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RG40 230;RG40 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3676384274, - "lat": 51.4108651, - "lon": -0.8349028, - "tags": { - "amenity": "post_box", - "note": "franked mail", - "post_box:type": "meter", - "ref": "RG40 227" - } -}, -{ - "type": "node", - "id": 3676417779, - "lat": 53.2953296, - "lon": -2.7251541, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-21", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "note": "built into wall of adjacent telephone booth", - "post_box:type": "phone_box", - "ref": "WA6 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3676616950, - "lat": 52.9883945, - "lon": -1.2701106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "NG16 140", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3676732589, - "lat": 53.4980357, - "lon": -0.3055625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN7 450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3676732594, - "lat": 53.5021002, - "lon": -0.3034750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3676940796, - "lat": 53.0188987, - "lon": -1.3107426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG16 450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677009470, - "lat": 51.5536841, - "lon": -0.1042429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "ref": "N5 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3677216750, - "lat": 53.9008046, - "lon": -3.0261469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY7 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3677398748, - "lat": 55.3878880, - "lon": -2.5956680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3677592580, - "lat": 51.8880311, - "lon": -0.8577724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP22 260D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677598105, - "lat": 52.4686716, - "lon": -1.7672156, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 921D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3677598106, - "lat": 52.4737754, - "lon": -1.7985544, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B26 553", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677598108, - "lat": 52.4770362, - "lon": -1.7893449, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3677598125, - "lat": 52.4792368, - "lon": -1.7835276, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 860D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677598131, - "lat": 52.4808219, - "lon": -1.7745692, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 932", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3677638167, - "lat": 51.8007588, - "lon": -1.0741102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP18 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677638168, - "lat": 51.8060055, - "lon": -1.0747960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677638169, - "lat": 51.8065668, - "lon": -1.0638009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677638170, - "lat": 51.8167955, - "lon": -0.9817701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "note": "Reference clearly shows HP22 but should be HP18. Renumbered?", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 199", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638171, - "lat": 51.8191052, - "lon": -1.0522267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-02-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP18 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638172, - "lat": 51.8233135, - "lon": -1.0122286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638173, - "lat": 51.8235315, - "lon": -0.9792353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638174, - "lat": 51.8239006, - "lon": -0.9752183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638175, - "lat": 51.8249751, - "lon": -1.0939450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638176, - "lat": 51.8325660, - "lon": -1.0489120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP18 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638177, - "lat": 51.8385619, - "lon": -1.0051297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP18 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638178, - "lat": 51.8443937, - "lon": -0.9165313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638179, - "lat": 51.8466247, - "lon": -0.9572102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677638180, - "lat": 51.8488189, - "lon": -0.9209481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-02" - } -}, -{ - "type": "node", - "id": 3677825447, - "lat": 53.0493399, - "lon": -1.1492251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG5 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677825473, - "lat": 53.0625684, - "lon": -1.1533005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG15 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677945895, - "lat": 53.2537842, - "lon": -1.9062458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK17 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3677951402, - "lat": 51.1411161, - "lon": -0.4886188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU6 140", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3677953515, - "lat": 53.2445244, - "lon": -1.8773638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SK17 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3678000321, - "lat": 51.8143136, - "lon": -2.4381398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL14 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3678000322, - "lat": 51.8231533, - "lon": -2.3978341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3678000323, - "lat": 51.8254034, - "lon": -2.4132545, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL14 200", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3678050673, - "lat": 51.1426545, - "lon": -0.4941832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU6 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3678079231, - "lat": 50.7109454, - "lon": -3.5530300, - "tags": { - "amenity": "post_box", - "ref": "EX2 84D" - } -}, -{ - "type": "node", - "id": 3678170795, - "lat": 51.6898681, - "lon": -0.7655051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP16 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3678659727, - "lat": 51.9517953, - "lon": -4.1466748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA32 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3679077240, - "lat": 53.3094353, - "lon": -1.3559066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S21 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3679437445, - "lat": 50.8487518, - "lon": -0.9509680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3679481441, - "lat": 55.8641735, - "lon": -3.6955162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 69", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3679481447, - "lat": 55.8645433, - "lon": -3.6980828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3679481450, - "lat": 55.8662285, - "lon": -3.6881976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3679481492, - "lat": 55.8669115, - "lon": -3.6825401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH47 711", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3679484468, - "lat": 55.8671254, - "lon": -3.6780636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3679484470, - "lat": 55.8677276, - "lon": -3.6738676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681008998, - "lat": 57.5921848, - "lon": -3.6531475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 131", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681028074, - "lat": 57.9952842, - "lon": -7.0962645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:30", - "post_box:type": "lamp", - "ref": "HS3 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681187494, - "lat": 57.5827978, - "lon": -3.8710878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "description": "this postbox has the latest collection in this area", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV12 18", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3681187514, - "lat": 57.5856163, - "lon": -3.8773324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV12 3D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3681318542, - "lat": 57.9010862, - "lon": -6.8133154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HS3 117", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681318570, - "lat": 57.8861544, - "lon": -6.7230698, - "tags": { - "amenity": "post_box", - "ref": "HS3 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681318579, - "lat": 57.8842196, - "lon": -6.7005676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS3 110", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681319327, - "lat": 57.8600789, - "lon": -6.6801740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "ref": "HS4 147", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681319342, - "lat": 57.8714884, - "lon": -6.6978277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS4 146", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681319364, - "lat": 57.8751030, - "lon": -6.6946251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS3 81", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681331993, - "lat": 57.4840258, - "lon": -3.7302190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV12 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681358756, - "lat": 57.1922164, - "lon": -3.8283524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH22 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440478, - "lat": 55.8968642, - "lon": -3.6332429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440482, - "lat": 55.8970788, - "lon": -3.6097902, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 3D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440488, - "lat": 55.8972965, - "lon": -3.6290500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440505, - "lat": 55.8993642, - "lon": -3.6112149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440515, - "lat": 55.9004566, - "lon": -3.6376996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 20D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440543, - "lat": 55.9017800, - "lon": -3.6166911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 7D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440561, - "lat": 55.9054470, - "lon": -3.6324401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 11D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681440579, - "lat": 55.9065446, - "lon": -3.6367056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 12D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3681442738, - "lat": 57.6366336, - "lon": -3.5664437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IV36 81", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681450668, - "lat": 57.6548314, - "lon": -3.6040193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV36 114D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3681450670, - "lat": 57.6593809, - "lon": -3.6101800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IV36 86", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681456635, - "lat": 51.4598106, - "lon": -0.3063601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW9 1661;TW9 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3681456637, - "lat": 51.4527015, - "lon": -0.3131500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3681460726, - "lat": 57.8689059, - "lon": -6.9366342, - "tags": { - "amenity": "post_box", - "ref": "HS3 139", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681460728, - "lat": 57.8612080, - "lon": -6.9801234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "421945526503288", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 137", - "source": "survey", - "survey:date": "2022-06-22" - } -}, -{ - "type": "node", - "id": 3681460729, - "lat": 57.8435844, - "lon": -7.0002404, - "tags": { - "amenity": "post_box", - "ref": "HS3 136", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681460741, - "lat": 57.8366081, - "lon": -7.0123854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 134", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681460742, - "lat": 57.8260393, - "lon": -7.0420572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "743591073351309", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 135", - "source": "survey", - "survey:date": "2022-06-22" - } -}, -{ - "type": "node", - "id": 3681460747, - "lat": 57.7982147, - "lon": -7.0674802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS3 140", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681460750, - "lat": 57.7735223, - "lon": -7.0237611, - "tags": { - "amenity": "post_box", - "ref": "HS5 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3681460751, - "lat": 57.7704015, - "lon": -7.0151177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS3 132", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3682343562, - "lat": 50.8083395, - "lon": -3.2305473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "drive_through": "no", - "mapillary": "2989039514720626", - "name": "Awliscombe Village", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "EX14 3PJ", - "ref": "EX14 15", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 3682897223, - "lat": 55.9133647, - "lon": -3.6397616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3682961743, - "lat": 50.8408075, - "lon": 0.4767812, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Endwell Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN40 5", - "ref:GB:uprn": "10015363991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Endwell Road TN405.jpg" - } -}, -{ - "type": "node", - "id": 3683019954, - "lat": 57.8336697, - "lon": -6.7631655, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HS3 116", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683019958, - "lat": 57.8458385, - "lon": -6.7606630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 165", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683019959, - "lat": 57.8537307, - "lon": -6.7695994, - "tags": { - "amenity": "post_box", - "ref": "HS3 120", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683019964, - "lat": 57.8644294, - "lon": -6.7914173, - "tags": { - "amenity": "post_box", - "ref": "HS3 114", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683019966, - "lat": 57.8991046, - "lon": -6.8027067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS3 118", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683066774, - "lat": 57.7777729, - "lon": -6.9213520, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HS3 133", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683066809, - "lat": 57.7608709, - "lon": -6.9420863, - "tags": { - "amenity": "post_box", - "ref": "HS3 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683067351, - "lat": 57.7697524, - "lon": -7.0093020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS5 130", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683070752, - "lat": 57.7561046, - "lon": -7.0076271, - "tags": { - "amenity": "post_box", - "ref": "HS5 125", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683070753, - "lat": 57.7452854, - "lon": -6.9874728, - "tags": { - "amenity": "post_box", - "ref": "HS5 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683070756, - "lat": 57.7677798, - "lon": -7.0192773, - "tags": { - "amenity": "post_box", - "ref": "HS5 129", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683074553, - "lat": 57.8159205, - "lon": -6.8047232, - "tags": { - "amenity": "post_box", - "ref": "HS3 112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683074554, - "lat": 57.8345405, - "lon": -6.8001603, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HS3 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683550250, - "lat": 52.3735499, - "lon": -1.2596204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "CV21 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3683566129, - "lat": 51.4385041, - "lon": -2.5471323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS4 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3683989556, - "lat": 51.4321033, - "lon": -0.2920660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW10 45D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3683990755, - "lat": 50.8356485, - "lon": -3.2779689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX14 34" - } -}, -{ - "type": "node", - "id": 3684630824, - "lat": 53.0648600, - "lon": -2.5976100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW5 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3684643425, - "lat": 53.0745500, - "lon": -2.6106300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "ref": "CW5 207", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3685601602, - "lat": 54.1572856, - "lon": -3.1779246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA15 78" - } -}, -{ - "type": "node", - "id": 3685773527, - "lat": 52.5652840, - "lon": -1.3412956, - "tags": { - "amenity": "post_box", - "name": "Dovecote Way Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3686940743, - "lat": 52.4595624, - "lon": -1.8607601, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3686940748, - "lat": 52.4651769, - "lon": -1.8686094, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 195", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3686940750, - "lat": 52.4665050, - "lon": -1.8580901, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 104D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3686940764, - "lat": 52.4682135, - "lon": -1.8547038, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3686940769, - "lat": 52.4696134, - "lon": -1.8702665, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 1309D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3686940770, - "lat": 52.4696434, - "lon": -1.8581863, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3686940780, - "lat": 52.4718097, - "lon": -1.8644531, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B10 45", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3686940805, - "lat": 52.4735651, - "lon": -1.8569214, - "tags": { - "amenity": "post_box", - "note": "plate removed", - "post_box:type": "pillar", - "ref": "B9 1310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3686940817, - "lat": 52.4737731, - "lon": -1.8522276, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3686942628, - "lat": 52.4763957, - "lon": -1.8582301, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B9 1358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3687448381, - "lat": 50.8407782, - "lon": -1.0398123, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-07", - "collection_times": "Mo-Fr 17:00", - "note": "Privately owned by Sainsbury's but the post is collected by Royal Mail on behalf of Sainsbury's.", - "operator": "Sainsbury's Supermarkets Ltd", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3687550842, - "lat": 52.9229582, - "lon": -1.1392056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG2 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688071406, - "lat": 52.3802759, - "lon": -1.8540642, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "B90 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688071423, - "lat": 52.3842082, - "lon": -1.8415684, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B90 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688072434, - "lat": 52.3862576, - "lon": -1.8410677, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B90 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688078302, - "lat": 52.3770257, - "lon": -1.8544902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B90 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688091828, - "lat": 52.3670560, - "lon": -1.8393679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B94 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688110155, - "lat": 51.7572251, - "lon": -1.0358248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-24" - } -}, -{ - "type": "node", - "id": 3688110156, - "lat": 51.7663562, - "lon": -0.9801397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP18 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688110157, - "lat": 51.7780464, - "lon": -0.9860759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-05", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3688110158, - "lat": 51.7859881, - "lon": -1.0055944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688110159, - "lat": 51.7899912, - "lon": -0.9614055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP18 159", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688110160, - "lat": 51.7939467, - "lon": -0.9312929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP18 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688110161, - "lat": 51.7973100, - "lon": -1.0029700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP18 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688110162, - "lat": 51.8038519, - "lon": -0.9382170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "HP18 198", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688110163, - "lat": 51.8421976, - "lon": -0.8908927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP18 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-09" - } -}, -{ - "type": "node", - "id": 3688591699, - "lat": 52.1554432, - "lon": -2.4140509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "wall", - "ref": "WR6 286", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3688591701, - "lat": 52.1669502, - "lon": -2.3754341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "WR6 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3688592143, - "lat": 52.1775448, - "lon": -2.4494275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "wall", - "ref": "WR6 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3688592148, - "lat": 52.1787070, - "lon": -2.4315814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR6 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3688592474, - "lat": 52.1935750, - "lon": -2.3847148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:type": "wall", - "ref": "WR6 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3688592511, - "lat": 52.1956497, - "lon": -2.4301627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR6 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3688592541, - "lat": 52.2010279, - "lon": -2.4094306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR6 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3688592637, - "lat": 52.2092890, - "lon": -2.4149606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "WR6 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3689714470, - "lat": 51.6209219, - "lon": -0.7663995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "HP11 91" - } -}, -{ - "type": "node", - "id": 3689714488, - "lat": 51.6212653, - "lon": -0.7735698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3689781339, - "lat": 52.0590668, - "lon": -1.7273745, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3690530253, - "lat": 51.4586127, - "lon": -2.5982135, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3691243777, - "lat": 51.5607127, - "lon": -0.9513901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG9 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3691243778, - "lat": 51.5707329, - "lon": -0.9050602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3691243779, - "lat": 51.5636908, - "lon": -0.8840910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RG9 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3691243780, - "lat": 51.5746808, - "lon": -0.9133767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "check location", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG9 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3691419989, - "lat": 52.4434619, - "lon": -1.8713979, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B13 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3691420151, - "lat": 52.4543637, - "lon": -1.8913603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 126D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3691420161, - "lat": 52.4579899, - "lon": -1.8919219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "B12 1313", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3692222800, - "lat": 50.8588095, - "lon": -1.0525220, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-04-27", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO7 256D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3692347495, - "lat": 55.8846547, - "lon": -3.6275137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 78", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3692347496, - "lat": 55.8877447, - "lon": -3.6336421, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH48 71D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3692347497, - "lat": 55.8903618, - "lon": -3.6557032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3692347501, - "lat": 55.8980755, - "lon": -3.6626670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3692347504, - "lat": 55.9009067, - "lon": -3.6569060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3692347509, - "lat": 55.9041465, - "lon": -3.6544348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3692347515, - "lat": 55.9047403, - "lon": -3.6428604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 13D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3692347516, - "lat": 55.9069983, - "lon": -3.6477572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 14D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3692429899, - "lat": 51.9746711, - "lon": -2.2111533, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3692588164, - "lat": 52.0435180, - "lon": -2.9638552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "wall", - "ref": "HR2 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3692588994, - "lat": 52.0688295, - "lon": -3.0025512, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR3 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3692883965, - "lat": 51.5272358, - "lon": -0.7763000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "SL6 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3693384239, - "lat": 50.7481146, - "lon": -3.4149281, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "EX5 7DT", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3693488728, - "lat": 53.9574627, - "lon": -2.0264663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 13:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BD23 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3693550867, - "lat": 53.9580310, - "lon": -2.0331252, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD23 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3693550868, - "lat": 53.9585047, - "lon": -2.0261284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "location": "Platform 2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3693555101, - "lat": 53.9538002, - "lon": -2.0213793, - "tags": { - "amenity": "post_box", - "ref": "BD23 99" - } -}, -{ - "type": "node", - "id": 3693561924, - "lat": 53.9588757, - "lon": -2.0240225, - "tags": { - "amenity": "post_box", - "ref": "BD23 37" - } -}, -{ - "type": "node", - "id": 3693563625, - "lat": 53.9554982, - "lon": -2.0241614, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 35" - } -}, -{ - "type": "node", - "id": 3693567079, - "lat": 53.9536294, - "lon": -2.0184470, - "tags": { - "amenity": "post_box", - "ref": "BD23 126" - } -}, -{ - "type": "node", - "id": 3693587365, - "lat": 53.9601056, - "lon": -2.0182289, - "tags": { - "amenity": "post_box", - "ref": "BD23 100" - } -}, -{ - "type": "node", - "id": 3693587366, - "lat": 53.9614328, - "lon": -2.0135256, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BD23 24" - } -}, -{ - "type": "node", - "id": 3693595213, - "lat": 53.9642369, - "lon": -2.0087839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BD23 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3693595214, - "lat": 53.9667548, - "lon": -2.0048091, - "tags": { - "amenity": "post_box", - "ref": "BD23 145" - } -}, -{ - "type": "node", - "id": 3693596789, - "lat": 53.9608281, - "lon": -2.0008346, - "tags": { - "amenity": "post_box", - "ref": "BD23 44" - } -}, -{ - "type": "node", - "id": 3693984833, - "lat": 52.3737363, - "lon": -1.7603780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B93 1045", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3693984852, - "lat": 52.3835531, - "lon": -1.7562909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 331", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3694016759, - "lat": 52.3748923, - "lon": -1.7686237, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B93 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3694110026, - "lat": 55.8609987, - "lon": -3.5569620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH55 51D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3694110028, - "lat": 55.8617884, - "lon": -3.5508196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH55 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3694110031, - "lat": 55.8630413, - "lon": -3.5467246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH55 53D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3694127143, - "lat": 55.8501210, - "lon": -3.5753977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH55 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3694127146, - "lat": 55.8519050, - "lon": -3.5700183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH55 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3694148105, - "lat": 55.8426243, - "lon": -3.6230735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH55 44", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3694148113, - "lat": 55.8428475, - "lon": -3.6160411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EH55 45D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3694148453, - "lat": 55.8524271, - "lon": -3.6142888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH55 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3694148455, - "lat": 55.8671691, - "lon": -3.5751837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH55 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3694354176, - "lat": 53.8447992, - "lon": -0.4355139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HU17 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3694354180, - "lat": 53.8428401, - "lon": -0.4326707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "HU17 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3694381327, - "lat": 51.4560669, - "lon": -2.5905048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "collection_times_checked": "2015-08-12", - "colour": "white", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS1 1246", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3694381329, - "lat": 51.4592336, - "lon": -2.5891059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-12", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS1 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3694410205, - "lat": 51.5130669, - "lon": -2.4870320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 08:00", - "collection_times_checked": "2015-08-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS36 165", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3694739290, - "lat": 52.3861622, - "lon": -1.7388462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 277", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3694739304, - "lat": 52.3887544, - "lon": -1.7363834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3694739305, - "lat": 52.3887656, - "lon": -1.7363825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B93 9026", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3695916954, - "lat": 52.1416750, - "lon": -0.5113595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3698694167, - "lat": 52.6533974, - "lon": 1.0371765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR20 2014D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3698694208, - "lat": 52.6586414, - "lon": 1.0982465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 948", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698694221, - "lat": 52.6591122, - "lon": 1.0326413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR20 2000" - } -}, -{ - "type": "node", - "id": 3698697946, - "lat": 52.6595246, - "lon": 1.0734580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR20 2005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698697949, - "lat": 52.6599885, - "lon": 1.0249205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR20 2019", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698697981, - "lat": 52.6644766, - "lon": 1.0370665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR20 2022D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698697985, - "lat": 51.5899047, - "lon": 0.6678516, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3698842379, - "lat": 52.7007229, - "lon": 1.4006551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR12 1263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698842393, - "lat": 52.7046299, - "lon": 1.4010110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR12 1265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698842397, - "lat": 52.7061107, - "lon": 1.4067715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698844274, - "lat": 52.7163214, - "lon": 1.4190411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR12 1244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698844297, - "lat": 52.7168587, - "lon": 1.4130855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR12 1259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698844450, - "lat": 52.7182495, - "lon": 1.4249547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3698890732, - "lat": 52.1302920, - "lon": -0.5076188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3698890733, - "lat": 52.1304137, - "lon": -0.4901098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 88D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3698890734, - "lat": 52.1320147, - "lon": -0.4948660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 346", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3698890736, - "lat": 52.1329844, - "lon": -0.4820351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3698890737, - "lat": 52.1341258, - "lon": -0.4905241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3698890738, - "lat": 52.1370608, - "lon": -0.4779599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-09", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK40 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3698890739, - "lat": 52.1391644, - "lon": -0.4873122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK40 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-15" - } -}, -{ - "type": "node", - "id": 3699632011, - "lat": 51.7509744, - "lon": -0.4916189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP1 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699632012, - "lat": 51.7549427, - "lon": -0.4896626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699632013, - "lat": 51.7592378, - "lon": -0.4839128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699632014, - "lat": 51.7652123, - "lon": -0.4895852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699632016, - "lat": 51.7659108, - "lon": -0.4847659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699632017, - "lat": 51.7687117, - "lon": -0.4753585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP1 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691566, - "lat": 51.7780778, - "lon": -0.4870348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP1 142", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691567, - "lat": 51.7814880, - "lon": -0.4949685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP1 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691568, - "lat": 51.7849007, - "lon": -0.4999042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP1 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691569, - "lat": 51.7892842, - "lon": -0.5115135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP1 133", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691570, - "lat": 51.7894303, - "lon": -0.4875022, - "tags": { - "amenity": "post_box", - "note": "Information plate missing: per Royal Mail list, this should be box ref HP2 141", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691571, - "lat": 51.7911453, - "lon": -0.5180851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP1 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691573, - "lat": 51.7918180, - "lon": -0.5095449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP1 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691574, - "lat": 51.7946346, - "lon": -0.4588329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "note": "Information plate does not give box reference.", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3699691575, - "lat": 51.7995768, - "lon": -0.4682117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP2 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-16" - } -}, -{ - "type": "node", - "id": 3700076398, - "lat": 52.6621608, - "lon": 1.1087060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR9 965", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3700230901, - "lat": 52.3641777, - "lon": -1.2858415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CV22 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3700330288, - "lat": 52.9726785, - "lon": -1.0157506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG12 260", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3700434188, - "lat": 52.9596575, - "lon": -1.0678787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG4 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3700678638, - "lat": 52.3153771, - "lon": -2.8568474, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR6 945", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3700678639, - "lat": 52.3155363, - "lon": -2.8610620, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3700695836, - "lat": 53.9453481, - "lon": -2.0157035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BD23 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3700791488, - "lat": 53.9504466, - "lon": -2.0186193, - "tags": { - "amenity": "post_box", - "ref": "BD23 45" - } -}, -{ - "type": "node", - "id": 3700791489, - "lat": 53.9487622, - "lon": -2.0165026, - "tags": { - "amenity": "post_box", - "ref": "BD23 160" - } -}, -{ - "type": "node", - "id": 3701160144, - "lat": 52.5646270, - "lon": -1.3207880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3701389736, - "lat": 52.4671428, - "lon": -1.7546625, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B37 1400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3701390011, - "lat": 52.4817802, - "lon": -1.7608130, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-08", - "post_box:type": "pillar", - "ref": "B33 359", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3701539216, - "lat": 52.0546466, - "lon": -1.8473763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR12 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3701919587, - "lat": 51.4921104, - "lon": -0.1927329, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-22", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "LH 119, RH 19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW5 119;SW5 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3702058911, - "lat": 52.9424374, - "lon": -1.0393908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "NG12 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3702058918, - "lat": 52.9427966, - "lon": -1.0457009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:manufacturer": "Machan Engineering", - "post_box:type": "lamp", - "ref": "NG12 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3702098030, - "lat": 52.9465676, - "lon": -1.0282980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan Scotland", - "post_box:type": "lamp", - "ref": "NG12 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3702114621, - "lat": 55.7774938, - "lon": -3.9364570, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3703635460, - "lat": 52.5347675, - "lon": -2.8051525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3703656939, - "lat": 52.4742148, - "lon": -2.8205552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3703763043, - "lat": 51.4656683, - "lon": -2.6019556, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS6 237D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3703773940, - "lat": 52.9494737, - "lon": -1.0424701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan Scotland", - "post_box:type": "lamp", - "ref": "NG12 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3703773957, - "lat": 52.9518357, - "lon": -1.0275275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG12 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3703870994, - "lat": 51.6906491, - "lon": -2.4431373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL13 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3703870999, - "lat": 51.6913225, - "lon": -2.4601399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL13 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3703871003, - "lat": 51.6914614, - "lon": -2.4341704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL13 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3703871303, - "lat": 51.6609439, - "lon": -2.4471768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "collection_times_checked": "2015-08-18", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL13 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3703871363, - "lat": 51.6699711, - "lon": -2.4215867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "collection_times_checked": "2019-08-17", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3703871370, - "lat": 51.6766243, - "lon": -2.4365323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "collection_times_checked": "2015-08-18", - "mapillary": "587536159968380", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL13 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-23" - } -}, -{ - "type": "node", - "id": 3704396299, - "lat": 53.2018114, - "lon": -1.0161249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG22 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704396301, - "lat": 53.1747198, - "lon": -1.0393179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704396307, - "lat": 53.1955068, - "lon": -1.0156201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704396308, - "lat": 53.1992664, - "lon": -1.0231012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "not:operator:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG22 131D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704403202, - "lat": 53.2023799, - "lon": -1.0087706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG22 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704438909, - "lat": 53.1794091, - "lon": -0.9713154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704461033, - "lat": 53.1183458, - "lon": -0.9397946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704515092, - "lat": 52.0951795, - "lon": -1.9469835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "In wall of PO. PO has EIIR cypher, but not box itself. Box has two openings.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "WR11 1000;WR11 1001", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3704812269, - "lat": 53.1121438, - "lon": -0.9694786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3706244463, - "lat": 54.1273989, - "lon": -2.7699745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA5 23", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3706632437, - "lat": 54.1289338, - "lon": -2.7686550, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA5 206" - } -}, -{ - "type": "node", - "id": 3706633297, - "lat": 52.3775918, - "lon": -1.6756210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV8 311D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3706640325, - "lat": 53.4522741, - "lon": -2.2523403, - "tags": { - "amenity": "post_box", - "ref": "M16 100D" - } -}, -{ - "type": "node", - "id": 3707177254, - "lat": 51.4567783, - "lon": -2.4986768, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3707615932, - "lat": 52.6741360, - "lon": 0.9406263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR19 1913D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3707659901, - "lat": 51.1706778, - "lon": -0.3562869, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3708178386, - "lat": 50.8396259, - "lon": 0.4767557, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "St Leonards Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "description": "Broken Post Office Directional Sign holder on cap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 4", - "ref:GB:uprn": "10015391135", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB St Leonards Road TN404.jpg" - } -}, -{ - "type": "node", - "id": 3708543910, - "lat": 50.8405060, - "lon": 0.4740206, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Devonshire Square", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TN40 9991;TN40 9992", - "ref:GB:uprn": "10025149515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Devonshire Square Post Office TN409991 TN409992.jpg" - } -}, -{ - "type": "node", - "id": 3708543911, - "lat": 50.8380467, - "lon": 0.4770187, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "De La Warr Parade", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 3", - "ref:GB:uprn": "10015460959", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB De La Warr Parade Sea Road TN403.jpg" - } -}, -{ - "type": "node", - "id": 3708543913, - "lat": 50.8383187, - "lon": 0.4808249, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "De La Warr Parade", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "description": "Broken Post Office Directional Sign holder on cap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 2", - "ref:GB:uprn": "10015469547", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB De La Warr Parade Middlesex Road TN402.jpg" - } -}, -{ - "type": "node", - "id": 3708543914, - "lat": 50.8405430, - "lon": 0.4834429, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Dorset Road South", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 1", - "ref:GB:uprn": "10015439812", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Dorset Road South TN401.jpg" - } -}, -{ - "type": "node", - "id": 3708543915, - "lat": 50.8403693, - "lon": 0.4876342, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Brookfield Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Brookfield Road TN4086.jpg" - } -}, -{ - "type": "node", - "id": 3708582700, - "lat": 51.6472585, - "lon": -2.3750628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL12 83D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3708704351, - "lat": 51.8650719, - "lon": -2.1297465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3708704352, - "lat": 51.8658814, - "lon": -2.1174764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3708704356, - "lat": 51.8727743, - "lon": -2.1408320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "collection_times_checked": "2015-08-21", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL51 92", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3709451331, - "lat": 54.9988105, - "lon": -1.4320705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3709477707, - "lat": 51.7672554, - "lon": -0.9335289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477708, - "lat": 51.7708556, - "lon": -0.9309451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477709, - "lat": 51.7723503, - "lon": -0.9343719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477710, - "lat": 51.7725084, - "lon": -0.9256788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477711, - "lat": 51.7729835, - "lon": -0.9211915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477712, - "lat": 51.7734054, - "lon": -0.9286781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477713, - "lat": 51.7752651, - "lon": -0.9209256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP17 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477715, - "lat": 51.7782484, - "lon": -0.9235068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477716, - "lat": 51.7892906, - "lon": -0.8942020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477717, - "lat": 51.7920058, - "lon": -0.8996754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP17 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477719, - "lat": 51.7934954, - "lon": -0.8892896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477720, - "lat": 51.7970886, - "lon": -0.8810603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477722, - "lat": 51.8014152, - "lon": -0.8706186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP17 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477723, - "lat": 51.8034118, - "lon": -0.8729987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 179D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709477724, - "lat": 51.8041714, - "lon": -0.8580068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 182", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-08-22" - } -}, -{ - "type": "node", - "id": 3709810948, - "lat": 53.0024481, - "lon": -1.1780022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NG5 494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3709873888, - "lat": 50.8415005, - "lon": 0.4714375, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Buckhurst Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TN40 13", - "ref:GB:uprn": "10015277997", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Town Hall Square TN4013.jpg" - } -}, -{ - "type": "node", - "id": 3709873889, - "lat": 50.8426122, - "lon": 0.4759522, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cranfield Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 53", - "ref:GB:uprn": "10015296976", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Cranfield Road TN4053.jpg" - } -}, -{ - "type": "node", - "id": 3709873890, - "lat": 50.8441896, - "lon": 0.4714954, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Amherst Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN40 25", - "ref:GB:uprn": "10015423213", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Amherst Road TN4025.jpg" - } -}, -{ - "type": "node", - "id": 3709873891, - "lat": 50.8475761, - "lon": 0.4737849, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Barrack Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN40 22", - "ref:GB:uprn": "10015274282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Barrack Road TN4022.jpg" - } -}, -{ - "type": "node", - "id": 3709873892, - "lat": 50.8517432, - "lon": 0.4755962, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Holliers Hill", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 20", - "ref:GB:uprn": "10015429272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Holliers Hill TN4020.jpg" - } -}, -{ - "type": "node", - "id": 3709873893, - "lat": 50.8519134, - "lon": 0.4804960, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Chantry Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 45", - "ref:GB:uprn": "10015406587", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Chantry Avenue TN4045.jpg" - } -}, -{ - "type": "node", - "id": 3709873894, - "lat": 50.8491445, - "lon": 0.4781393, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "St Peter's Crescent", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 78", - "ref:GB:uprn": "10015479777", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Church Vale Road TN4078.jpg" - } -}, -{ - "type": "node", - "id": 3709873896, - "lat": 50.8453090, - "lon": 0.4776953, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "High Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Close to closed sub-post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 9", - "ref:GB:uprn": "10015419707", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB High Street TN409.jpg" - } -}, -{ - "type": "node", - "id": 3709873897, - "lat": 50.8454618, - "lon": 0.4832385, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "De La Warr Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN40 8", - "ref:GB:uprn": "10015294514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB De La Warr Road Manor Road TN408.jpg" - } -}, -{ - "type": "node", - "id": 3710506164, - "lat": 51.7075765, - "lon": -0.5690925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506165, - "lat": 51.7094820, - "lon": -0.5849117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506166, - "lat": 51.7103187, - "lon": -0.5782618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 138", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506167, - "lat": 51.7145048, - "lon": -0.5921514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506168, - "lat": 51.7169074, - "lon": -0.6072505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506169, - "lat": 51.7186217, - "lon": -0.5696606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506170, - "lat": 51.7206800, - "lon": -0.6108126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506171, - "lat": 51.7213801, - "lon": -0.6166160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506172, - "lat": 51.7216754, - "lon": -0.5785829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506184, - "lat": 51.7296175, - "lon": -0.5563118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506187, - "lat": 51.7297676, - "lon": -0.5928043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506191, - "lat": 51.7314438, - "lon": -0.6060225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506194, - "lat": 51.7381533, - "lon": -0.5868761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506199, - "lat": 51.7472721, - "lon": -0.6256515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506200, - "lat": 51.7501841, - "lon": -0.6514588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:45; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710506201, - "lat": 51.7517993, - "lon": -0.6378249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-23" - } -}, -{ - "type": "node", - "id": 3710569802, - "lat": 51.1488267, - "lon": -1.1773298, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO24 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3710569818, - "lat": 51.1704906, - "lon": -1.1334188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "714962617460591", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-24" - } -}, -{ - "type": "node", - "id": 3710729968, - "lat": 50.8420227, - "lon": 0.4811136, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Magdalen Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 52", - "ref:GB:uprn": "10015346722", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Manor Road TN4052.jpg" - } -}, -{ - "type": "node", - "id": 3710729969, - "lat": 50.8507093, - "lon": 0.4860502, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "The Glades", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB The Glades TN4085.jpg" - } -}, -{ - "type": "node", - "id": 3710729970, - "lat": 50.8474906, - "lon": 0.4905704, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Penland Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 10", - "ref:GB:uprn": "10015845681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Penland Road TN4010.jpg" - } -}, -{ - "type": "node", - "id": 3710729976, - "lat": 50.8452195, - "lon": 0.4901529, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "College Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 87", - "ref:GB:uprn": "10015453446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB College Road TN4087.jpg" - } -}, -{ - "type": "node", - "id": 3710729977, - "lat": 50.8455111, - "lon": 0.4938134, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "De La Warr Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Broken Post Office Directional Sign holder on cap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 50", - "ref:GB:uprn": "10015470547", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB De La Warr Road Glyne Ascent TN4050.jpg" - } -}, -{ - "type": "node", - "id": 3710729978, - "lat": 50.8440524, - "lon": 0.4940613, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Wineham Way", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 90", - "ref:GB:uprn": "10015366814", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Wineham Way TN3990.jpg" - } -}, -{ - "type": "node", - "id": 3710729979, - "lat": 50.8441351, - "lon": 0.5004203, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:place": "Tesco, Ravenside Retail & Leisure Park", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "TN40 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Tesco Store Ravenside Park TN4021.jpg" - } -}, -{ - "type": "node", - "id": 3710729980, - "lat": 50.8500263, - "lon": 0.4958634, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Haslam Crescent", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "description": "Close to closed sub-post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 81", - "ref:GB:uprn": "10015314114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Haslam Crescent TN4081.jpg" - } -}, -{ - "type": "node", - "id": 3710729983, - "lat": 50.8488207, - "lon": 0.4997878, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "First Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 73", - "ref:GB:uprn": "10015463101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB First Avenue TN4073.jpg" - } -}, -{ - "type": "node", - "id": 3710729985, - "lat": 50.8469095, - "lon": 0.5028264, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Hastings Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Hastings Road School Place TN4069.jpg" - } -}, -{ - "type": "node", - "id": 3710803622, - "lat": 52.9439550, - "lon": 1.2119400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "name": "Posting Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NR26 2628", - "ref:collection": "BOX534905" - } -}, -{ - "type": "node", - "id": 3710805306, - "lat": 52.9284154, - "lon": 1.2167191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "note": "Plate paper missing, aperture unblocked, ref/times from Royal Mail", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR26 2622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3710805466, - "lat": 52.9331045, - "lon": 1.2156431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2624D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3710805467, - "lat": 52.9343712, - "lon": 1.2038126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR26 2626D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3710805488, - "lat": 52.9378192, - "lon": 1.2119107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2608", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3710805489, - "lat": 52.9379371, - "lon": 1.2165840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2618D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3710805503, - "lat": 52.9395648, - "lon": 1.2031675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2615D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3710805531, - "lat": 52.9401457, - "lon": 1.2156103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2605D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3710805553, - "lat": 52.9417576, - "lon": 1.2132548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NR26 2604D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3710805554, - "lat": 52.9419405, - "lon": 1.2193087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR26 2603D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3710805607, - "lat": 52.9423220, - "lon": 1.2167411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2606D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3710805828, - "lat": 52.9426708, - "lon": 1.2223621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR26 2602D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3710805855, - "lat": 52.9432594, - "lon": 1.2110619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "NR26 2600" - } -}, -{ - "type": "node", - "id": 3710805860, - "lat": 52.9437633, - "lon": 1.2176226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR26 2601D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3711098784, - "lat": 52.7894656, - "lon": -0.9106473, - "tags": { - "amenity": "post_box", - "fixme": "location_approximate", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3711129341, - "lat": 51.0594621, - "lon": -1.3523089, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO22 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3711749182, - "lat": 54.1253539, - "lon": -2.7617900, - "tags": { - "amenity": "post_box", - "ref": "LA5 62" - } -}, -{ - "type": "node", - "id": 3711749184, - "lat": 54.1219389, - "lon": -2.7630989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA5 179", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3711749190, - "lat": 54.1239882, - "lon": -2.7827962, - "tags": { - "amenity": "post_box", - "ref": "LA5 160" - } -}, -{ - "type": "node", - "id": 3712165591, - "lat": 51.8809804, - "lon": -5.2648647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA62 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3712212264, - "lat": 51.8801448, - "lon": -5.2701165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA62 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3712613627, - "lat": 51.0610616, - "lon": -1.3373068, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO22 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3712685241, - "lat": 51.5133600, - "lon": -2.6223536, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 497", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3713325907, - "lat": 54.1067942, - "lon": -2.7588114, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3713715205, - "lat": 54.0932600, - "lon": -2.7979778, - "tags": { - "amenity": "post_box", - "ref": "LA5 198" - } -}, -{ - "type": "node", - "id": 3713715206, - "lat": 54.1062898, - "lon": -2.7901870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "LA5 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3713718442, - "lat": 54.1123722, - "lon": -2.7878411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA5 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3715039828, - "lat": 53.8668360, - "lon": -1.6693834, - "tags": { - "amenity": "post_box", - "ref": "LS19 818D", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 3715515053, - "lat": 52.3989388, - "lon": -1.5166103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV5 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3715968844, - "lat": 55.9263011, - "lon": -3.5072464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3715968851, - "lat": 55.9280560, - "lon": -3.4948003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3715968857, - "lat": 55.9312214, - "lon": -3.4811967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3715995597, - "lat": 55.9325781, - "lon": -3.4906333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3715995601, - "lat": 55.9331932, - "lon": -3.4839045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 14D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3716168928, - "lat": 56.0772050, - "lon": -3.4334175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 90D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3716173141, - "lat": 55.9363255, - "lon": -3.4922210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 4", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3716634075, - "lat": 55.0056788, - "lon": -1.6117618, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 990", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3716634361, - "lat": 55.0173446, - "lon": -1.4283189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/6769755", - "post_box:type": "pillar", - "ref": "NE30 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3716695330, - "lat": 53.8640673, - "lon": -1.6744447, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "LS19 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3716695333, - "lat": 53.8643338, - "lon": -1.6756957, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LS19 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3716695335, - "lat": 53.8606805, - "lon": -1.6771058, - "tags": { - "amenity": "post_box", - "ref": "LS19 769" - } -}, -{ - "type": "node", - "id": 3717014563, - "lat": 51.7010058, - "lon": -4.0770763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 130", - "post_box:type": "lamp", - "ref": "SA14 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3717452364, - "lat": 51.6378369, - "lon": -2.1721723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "collection_times_checked": "2020-07-08", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL8 176D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3717452365, - "lat": 51.6531755, - "lon": -2.2337498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "collection_times_checked": "2015-08-27", - "mapillary": "387215363311808", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL8 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-22" - } -}, -{ - "type": "node", - "id": 3717588249, - "lat": 55.9323198, - "lon": -3.4747371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "pillar", - "ref": "EH52 13", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3717682566, - "lat": 50.7514962, - "lon": -2.1701752, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH20 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3717698319, - "lat": 50.7754512, - "lon": -2.1710889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 122D", - "ref:GB:uprn": "10015477783", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3717698320, - "lat": 50.7754977, - "lon": -2.1834012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 30", - "ref:GB:uprn": "10015441255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3717699028, - "lat": 50.7785620, - "lon": -2.1976719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 90", - "ref:GB:uprn": "10024751335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3717705665, - "lat": 50.7945668, - "lon": -2.2272499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT11 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3717717115, - "lat": 50.7832868, - "lon": -2.3211677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-04-03", - "post_box:type": "wall", - "ref": "DT2 83D", - "ref:GB:uprn": "10015448116", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3718213595, - "lat": 53.8660860, - "lon": -1.6855129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LS19 955", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3718532940, - "lat": 53.8660678, - "lon": -1.6819537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LS19 264", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3719067967, - "lat": 50.9418728, - "lon": -1.3878156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 460D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3719116414, - "lat": 51.1563207, - "lon": -1.3439141, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3719137801, - "lat": 51.6711948, - "lon": -1.3621904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3720207676, - "lat": 51.9970997, - "lon": -0.7392727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK3 252D" - } -}, -{ - "type": "node", - "id": 3720251241, - "lat": 52.1065646, - "lon": 1.4573112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251561, - "lat": 51.9911507, - "lon": 1.3948539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:00", - "post_box:type": "lamp", - "ref": "IP12 6316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251562, - "lat": 52.0113748, - "lon": 1.4180000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IP12 6315", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "wikidata": "Q114058660" - } -}, -{ - "type": "node", - "id": 3720251563, - "lat": 52.0245569, - "lon": 1.4148662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "wall", - "ref": "IP12 6289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251576, - "lat": 52.0317371, - "lon": 1.4490428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "IP12 6211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251580, - "lat": 52.0448827, - "lon": 1.4263927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251581, - "lat": 52.0477833, - "lon": 1.4070411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP12 6323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251582, - "lat": 52.0510909, - "lon": 1.4309852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "IP12 6291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251590, - "lat": 52.0540017, - "lon": 1.4297761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6694D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251596, - "lat": 52.0564784, - "lon": 1.4509077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "IP12 6317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251600, - "lat": 52.0590409, - "lon": 1.4386348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "IP12 6328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251608, - "lat": 52.0672496, - "lon": 1.4226267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP12 6386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720251614, - "lat": 52.0725520, - "lon": 1.4704640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:15", - "post_box:type": "lamp", - "ref": "IP12 6271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720252125, - "lat": 52.0790718, - "lon": 1.4645361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:30", - "post_box:type": "wall", - "ref": "IP12 6213", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3720252157, - "lat": 52.0899435, - "lon": 1.4732125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "wall", - "ref": "IP12 6241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720363321, - "lat": 52.1482474, - "lon": -0.4730156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 3720363322, - "lat": 52.1571483, - "lon": -0.4652842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-08", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720363323, - "lat": 52.1650298, - "lon": -0.4590330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720436526, - "lat": 52.1522138, - "lon": -0.4371553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720436527, - "lat": 52.1618701, - "lon": -0.4545985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720436528, - "lat": 52.1686512, - "lon": -0.4614169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720531953, - "lat": 52.1460844, - "lon": -0.4197289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "MK41 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 3720531954, - "lat": 52.1478112, - "lon": -0.4268874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-04-09", - "check_date:collection_times": "2022-04-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720531955, - "lat": 52.1526481, - "lon": -0.4276035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "note": "Reference not visible: information plate insert set too low in its holder. Should be MK41 40 according to Royal Mail list.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-08-29" - } -}, -{ - "type": "node", - "id": 3720531956, - "lat": 52.1566938, - "lon": -0.4342638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720531957, - "lat": 52.1615636, - "lon": -0.4265784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-09", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3720563827, - "lat": 55.8429290, - "lon": -4.4692713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA1 260", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3720610892, - "lat": 52.0237713, - "lon": 1.3620173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6392", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3720610897, - "lat": 52.0516887, - "lon": 1.3823229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "wall", - "ref": "IP12 6301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3720610910, - "lat": 52.0622305, - "lon": 1.3657190, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53863758673", - "post_box:type": "lamp", - "ref": "IP12 6436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720617519, - "lat": 52.1165541, - "lon": 1.4074904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:15", - "post_box:type": "wall", - "ref": "IP12 6224", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3720617926, - "lat": 52.0803761, - "lon": 1.3864713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "IP12 6371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720617933, - "lat": 52.1001330, - "lon": 1.3256237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "IP12 6226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720617964, - "lat": 52.1044871, - "lon": 1.3382640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "wall", - "ref": "IP12 6217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720617982, - "lat": 52.1065704, - "lon": 1.3603136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "wall", - "ref": "IP12 6220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720727628, - "lat": 51.6413437, - "lon": -2.1512947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL8 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3720727629, - "lat": 51.6423813, - "lon": -2.1669938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL8 224D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3720727633, - "lat": 51.6443242, - "lon": -2.1681665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-08-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL8 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3721460424, - "lat": 51.6076930, - "lon": -0.6332421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3721704748, - "lat": 54.9607115, - "lon": -1.6065025, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 19" - } -}, -{ - "type": "node", - "id": 3721723207, - "lat": 56.0035689, - "lon": -3.5218944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH49 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3721733757, - "lat": 52.3676485, - "lon": -1.4349541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "CV8 149", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3721833866, - "lat": 51.4229369, - "lon": -0.8542655, - "tags": { - "amenity": "post_box", - "mapillary": "483415093326777", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG41 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 3721846059, - "lat": 51.4223262, - "lon": -0.8465797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "385895683081106", - "post_box:type": "pillar", - "ref": "RG41 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 3721851790, - "lat": 51.4199070, - "lon": -0.8485132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG41 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3721904055, - "lat": 52.1264161, - "lon": 1.3956113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3721904081, - "lat": 52.1276566, - "lon": 1.4270035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "pillar", - "ref": "IP12 8220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3721904206, - "lat": 52.1310209, - "lon": 1.4197999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP12 6296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3721929519, - "lat": 52.1420723, - "lon": 1.4672461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP12 6229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3721929632, - "lat": 52.1437600, - "lon": 1.5326563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3721929647, - "lat": 52.1490113, - "lon": 1.5210199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP12 6247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722182638, - "lat": 51.4640107, - "lon": -2.5809651, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3722182650, - "lat": 51.4669088, - "lon": -2.5834736, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722182660, - "lat": 51.4699435, - "lon": -2.5864451, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS6 283", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3722182664, - "lat": 51.4716837, - "lon": -2.5869517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS6 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722721697, - "lat": 53.0762433, - "lon": -1.1552628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG15 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3722810008, - "lat": 52.1484281, - "lon": 1.6001383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP15 4601", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3722810009, - "lat": 52.1508643, - "lon": 1.5989151, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP15 4612", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3722810010, - "lat": 52.1525217, - "lon": 1.5962118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP15 4673", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3722810011, - "lat": 52.1546688, - "lon": 1.6020011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP15 4606", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722810012, - "lat": 52.1563463, - "lon": 1.5943764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP15 4621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722810013, - "lat": 52.1584178, - "lon": 1.5909763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP15 4682", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722810014, - "lat": 52.1615476, - "lon": 1.5870909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "note": "Aug 2015: Box may have wrong collection plate. RM has ref as 'IP15 8128'", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP15 8128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722833047, - "lat": 52.1683790, - "lon": 1.5695533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "post_box:type": "lamp", - "ref": "IP17 4644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722833048, - "lat": 52.1801579, - "lon": 1.5817707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4667", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3722833049, - "lat": 52.1867282, - "lon": 1.5872712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4657", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3722861825, - "lat": 52.7234215, - "lon": -1.3750094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "fixme": "The expected reference here is LE67 147", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE57 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3723242372, - "lat": 52.7246351, - "lon": -1.3743790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE67 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3723317964, - "lat": 52.7246010, - "lon": -1.3714876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "fixme": "The expected reference here is LE67 200", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE57 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3723543216, - "lat": 50.7494811, - "lon": -2.2940632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3723557159, - "lat": 50.7379855, - "lon": -2.2616284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3724434269, - "lat": 51.4716296, - "lon": -0.0705851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE15 15;SE15 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3724442664, - "lat": 51.5297792, - "lon": -3.3912355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Reference not visible", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3724456741, - "lat": 53.5342820, - "lon": -2.2868654, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3724474710, - "lat": 51.5936828, - "lon": -0.0706791, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "N17 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3724482851, - "lat": 50.8870970, - "lon": -1.0437303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "collection_times_checked": "2020-01-10", - "description": "This postbox is for \"Parcels & Franked Mail. This Postbox is for pre-paid parcels bought online, barcode returns and business franked mail\".", - "mail:meter": "yes", - "old_ref": "PO7 381", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PO7 381P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3724482852, - "lat": 50.8870873, - "lon": -1.0437855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "collection_times_checked": "2020-01-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO7 3581;PO7 3582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3724746635, - "lat": 52.7267837, - "lon": -1.3405940, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3725128395, - "lat": 55.9301455, - "lon": -4.0361665, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3725299969, - "lat": 55.9202292, - "lon": -3.7044366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 25D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3725310074, - "lat": 55.9295862, - "lon": -3.7029677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3725327769, - "lat": 55.9342041, - "lon": -3.7446760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "FK1 217", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3725344184, - "lat": 55.9719117, - "lon": -3.7654775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK1 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3725345213, - "lat": 55.9895871, - "lon": -3.8020444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK1 197", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3725355465, - "lat": 55.9336172, - "lon": -3.6543094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3725469829, - "lat": 52.8332083, - "lon": -1.2846411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "DE74 717D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3725668110, - "lat": 55.9341108, - "lon": -4.0171272, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3726029140, - "lat": 54.2557135, - "lon": -0.3823382, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3726097768, - "lat": 54.2727469, - "lon": -0.4003363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO11 12", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3726142918, - "lat": 51.6536998, - "lon": -1.5862985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN7 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3726142919, - "lat": 51.6570278, - "lon": -1.5915043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3726158633, - "lat": 54.2775385, - "lon": -0.3989144, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3726171361, - "lat": 51.9489575, - "lon": -5.1454979, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3726593942, - "lat": 50.6056871, - "lon": -4.3990533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3726593943, - "lat": 50.6115204, - "lon": -4.3902288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL14 93D", - "royal_cypher": "EIIR", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3726593944, - "lat": 50.5340656, - "lon": -4.4488203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PL15 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3726677784, - "lat": 52.8255756, - "lon": -1.2550132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LE12 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3727396312, - "lat": 54.2675431, - "lon": -0.3945900, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 67", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3727396313, - "lat": 54.2658013, - "lon": -0.3963174, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727396314, - "lat": 54.2639893, - "lon": -0.4011141, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3727396315, - "lat": 54.2700541, - "lon": -0.3971702, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727396316, - "lat": 54.2694028, - "lon": -0.4008120, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 49D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3727404909, - "lat": 54.2722003, - "lon": -0.3974145, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727452082, - "lat": 54.2725383, - "lon": -0.4029698, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO11 22" - } -}, -{ - "type": "node", - "id": 3727455367, - "lat": 54.2729780, - "lon": -0.4063095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO11 163", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3727459333, - "lat": 54.2716803, - "lon": -0.4102038, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "YO11 50" - } -}, -{ - "type": "node", - "id": 3727474693, - "lat": 54.2748434, - "lon": -0.4097341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO11 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727474694, - "lat": 54.2755712, - "lon": -0.4066445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO11 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727474696, - "lat": 54.2761368, - "lon": -0.4030193, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727474697, - "lat": 54.2752234, - "lon": -0.3999334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO11 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727474710, - "lat": 54.2764554, - "lon": -0.3973211, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO11 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727483643, - "lat": 54.2781778, - "lon": -0.4053666, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727483644, - "lat": 54.2772427, - "lon": -0.4079061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO11 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727483645, - "lat": 54.2796607, - "lon": -0.4085386, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727490293, - "lat": 54.2798498, - "lon": -0.4022859, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727490294, - "lat": 54.2807486, - "lon": -0.3986619, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727496543, - "lat": 54.2835243, - "lon": -0.4046036, - "tags": { - "amenity": "post_box", - "note": "was a Type K", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO11 1" - } -}, -{ - "type": "node", - "id": 3727749195, - "lat": 54.2141970, - "lon": -0.2925841, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 37" - } -}, -{ - "type": "node", - "id": 3727845252, - "lat": 54.2063760, - "lon": -0.2866146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO14 51", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3727917416, - "lat": 54.2111423, - "lon": -0.2906432, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO14 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3727950200, - "lat": 54.2073134, - "lon": -0.2996680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO14 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727950201, - "lat": 54.2092916, - "lon": -0.2968676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO14 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3727950202, - "lat": 54.2078866, - "lon": -0.2848283, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3727950204, - "lat": 54.2110693, - "lon": -0.2868182, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO14 123", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3727950218, - "lat": 54.2144009, - "lon": -0.2989858, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO14 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3727951065, - "lat": 54.2166384, - "lon": -0.3000435, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 168" - } -}, -{ - "type": "node", - "id": 3728191848, - "lat": 51.8194057, - "lon": -3.0139064, - "tags": { - "amenity": "post_box", - "ref": "NP7 85D" - } -}, -{ - "type": "node", - "id": 3728191900, - "lat": 51.8206235, - "lon": -3.0166842, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP7 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3728449716, - "lat": 52.4878206, - "lon": -1.1616424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3728852157, - "lat": 55.4725849, - "lon": -4.5945123, - "tags": { - "amenity": "post_box", - "ref": "KA8 69" - } -}, -{ - "type": "node", - "id": 3728882581, - "lat": 55.4692563, - "lon": -4.5924910, - "tags": { - "amenity": "post_box", - "ref": "KA8 122" - } -}, -{ - "type": "node", - "id": 3728891314, - "lat": 55.4693247, - "lon": -4.6174389, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA8 28D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3728920285, - "lat": 55.4711069, - "lon": -4.6123599, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 162" - } -}, -{ - "type": "node", - "id": 3728920301, - "lat": 55.4721013, - "lon": -4.6070784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 149" - } -}, -{ - "type": "node", - "id": 3729337025, - "lat": 53.5887785, - "lon": -3.0399448, - "tags": { - "amenity": "post_box", - "ref": "PR8 86" - } -}, -{ - "type": "node", - "id": 3729337026, - "lat": 53.5898853, - "lon": -3.0358023, - "tags": { - "amenity": "post_box", - "ref": "PR8 163" - } -}, -{ - "type": "node", - "id": 3729337027, - "lat": 53.5920794, - "lon": -3.0388863, - "tags": { - "amenity": "post_box", - "ref": "PR8 84" - } -}, -{ - "type": "node", - "id": 3729355727, - "lat": 53.5964685, - "lon": -3.0365151, - "tags": { - "amenity": "post_box", - "ref": "PR8 161" - } -}, -{ - "type": "node", - "id": 3729372064, - "lat": 52.9822152, - "lon": -4.0409821, - "tags": { - "addr:city": "Croesor", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 3729372071, - "lat": 52.9644680, - "lon": -4.0564438, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3729542933, - "lat": 52.7361865, - "lon": -3.9580538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "111867257640864", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-24" - } -}, -{ - "type": "node", - "id": 3730317075, - "lat": 53.7391067, - "lon": -2.9839757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3730587731, - "lat": 55.0208711, - "lon": -1.5419731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "mailtypes": "franked", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE12 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3730729655, - "lat": 52.3070068, - "lon": 0.0530756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 525D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 3730923906, - "lat": 52.3801565, - "lon": -2.3005354, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3730923907, - "lat": 52.3758238, - "lon": -2.3149158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY12 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3731595029, - "lat": 51.3449463, - "lon": 0.7049969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "From the 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME9 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey;aerial imagery;local knowledge", - "source_1": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3731598597, - "lat": 52.3746957, - "lon": -2.3315810, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3731611728, - "lat": 51.3518425, - "lon": 0.6683256, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME9 79", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3731611729, - "lat": 51.3440077, - "lon": 0.7115681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3731611730, - "lat": 51.3457997, - "lon": 0.7264820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3731614527, - "lat": 51.3537386, - "lon": 0.6583483, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "ME9 80D", - "royal_cypher": "EIIR", - "source": "survey;aerial imagery", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3731620625, - "lat": 51.3425463, - "lon": 0.7250895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "note": "As at Tuesday 15th August 2023 there is a Royal Mail sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3731620725, - "lat": 51.3498622, - "lon": 0.7324898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3731620726, - "lat": 51.3539953, - "lon": 0.7207907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "note": "As at Tuesday 15th August 2023 there is a sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3732043228, - "lat": 51.5555296, - "lon": -0.1051053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N5 22" - } -}, -{ - "type": "node", - "id": 3732196264, - "lat": 52.2915860, - "lon": -2.4252088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR6 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732196276, - "lat": 52.2921200, - "lon": -2.3631152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "pillar", - "ref": "WR6 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732196311, - "lat": 52.2930370, - "lon": -2.3602230, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WR6 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732196898, - "lat": 52.2903332, - "lon": -2.4359521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR6 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732197277, - "lat": 52.3010190, - "lon": -2.4466499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR6 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732197368, - "lat": 52.3039145, - "lon": -2.3775764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR6 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732197381, - "lat": 52.3041411, - "lon": -2.4148943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WR6 284D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3732197448, - "lat": 52.3109956, - "lon": -2.3696410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR6 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3732197528, - "lat": 52.3172007, - "lon": -2.4300846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "post_box:type": "wall", - "ref": "WR6 440", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3732197542, - "lat": 52.3179764, - "lon": -2.3898770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR6 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3733099526, - "lat": 52.2234390, - "lon": -0.2867461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE19 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3733099527, - "lat": 52.2257426, - "lon": -0.2925510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE19 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3733099529, - "lat": 52.2223775, - "lon": -0.2938331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE19 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3733173869, - "lat": 53.5994292, - "lon": -3.0388730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "474161644226561", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR8 45", - "survey:date": "2020-04-09" - } -}, -{ - "type": "node", - "id": 3733173967, - "lat": 53.5951908, - "lon": -3.0478340, - "tags": { - "amenity": "post_box", - "ref": "PR8 162" - } -}, -{ - "type": "node", - "id": 3733173968, - "lat": 53.5994079, - "lon": -3.0531709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "149969677101461", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 104" - } -}, -{ - "type": "node", - "id": 3733224783, - "lat": 53.6021947, - "lon": -3.0392808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PR8 73" - } -}, -{ - "type": "node", - "id": 3733575601, - "lat": 56.0846068, - "lon": -4.5415561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G63 1241D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3733632921, - "lat": 56.0803412, - "lon": -4.4980231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G63 940", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3734288565, - "lat": 53.6054852, - "lon": -3.0257512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "480302173180030", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 155", - "survey:date": "2020-04-09" - } -}, -{ - "type": "node", - "id": 3734292683, - "lat": 53.6026338, - "lon": -3.0337174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 55" - } -}, -{ - "type": "node", - "id": 3734292685, - "lat": 53.6015019, - "lon": -3.0279067, - "tags": { - "amenity": "post_box", - "ref": "PR8 137" - } -}, -{ - "type": "node", - "id": 3734399456, - "lat": 53.6047086, - "lon": -3.0420307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "188521413018693", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 126", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 3734421539, - "lat": 53.6049065, - "lon": -3.0373063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "526492551698590", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 157", - "survey:date": "2020-04-09" - } -}, -{ - "type": "node", - "id": 3734464944, - "lat": 53.6058932, - "lon": -3.0292332, - "tags": { - "amenity": "post_box", - "ref": "PR8 66" - } -}, -{ - "type": "node", - "id": 3734582010, - "lat": 53.8515083, - "lon": -2.9923146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3734872154, - "lat": 51.2303045, - "lon": -1.2189340, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RG25 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3734885200, - "lat": 57.5458499, - "lon": -3.9865933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 122", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3734886491, - "lat": 51.2396962, - "lon": -1.2186433, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3734911433, - "lat": 57.5870875, - "lon": -3.8641331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IV12 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3734944361, - "lat": 57.5931144, - "lon": -3.7114932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 96", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3735057296, - "lat": 52.4446194, - "lon": 1.6918962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR33 3331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735057312, - "lat": 52.4482426, - "lon": 1.6950914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR33 3337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735057313, - "lat": 52.4496502, - "lon": 1.7102469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735057319, - "lat": 52.4509506, - "lon": 1.6993743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059426, - "lat": 52.4523515, - "lon": 1.7106445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059428, - "lat": 52.4524434, - "lon": 1.7022682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059431, - "lat": 52.4528900, - "lon": 1.6889017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR33 3356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059438, - "lat": 52.4547930, - "lon": 1.7131075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059440, - "lat": 52.4557493, - "lon": 1.6886039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR33 3316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059442, - "lat": 52.4587738, - "lon": 1.7203335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735059443, - "lat": 52.4743480, - "lon": 1.7498801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3212D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3735105810, - "lat": 52.2651452, - "lon": -2.4068500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR6 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735107921, - "lat": 52.2496362, - "lon": -2.4135420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR6 426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735108084, - "lat": 52.2467839, - "lon": -2.3875882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "WR6 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735108091, - "lat": 52.2469337, - "lon": -2.4606557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:30", - "post_box:type": "wall", - "ref": "WR6 492", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3735108277, - "lat": 52.2521879, - "lon": -2.4214072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "WR6 287", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3735108293, - "lat": 52.2529031, - "lon": -2.4238612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:04", - "post_box:type": "lamp", - "ref": "WR6 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735108534, - "lat": 52.2676211, - "lon": -2.4624707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR6 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3735694542, - "lat": 51.6043324, - "lon": -0.4157930, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3735985471, - "lat": 53.6124839, - "lon": -3.0199573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "970016823801362", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 24", - "survey:date": "2020-03-28" - } -}, -{ - "type": "node", - "id": 3735985472, - "lat": 53.6092134, - "lon": -3.0208111, - "tags": { - "amenity": "post_box", - "ref": "PR8 146" - } -}, -{ - "type": "node", - "id": 3735985473, - "lat": 53.6126645, - "lon": -3.0134498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "180908033925119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 138", - "survey:date": "2020-03-28" - } -}, -{ - "type": "node", - "id": 3735994617, - "lat": 51.9706932, - "lon": -2.3505594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "GL19 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3736006576, - "lat": 53.6196666, - "lon": -3.0071267, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR8 92", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3736025509, - "lat": 53.6159252, - "lon": -3.0115356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "140490211408477", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 125", - "survey:date": "2020-03-28" - } -}, -{ - "type": "node", - "id": 3736051118, - "lat": 53.6187840, - "lon": -3.0156007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 67", - "survey:date": "2022-11-13", - "wikimedia_commons": "File:Post office and shop - geograph.org.uk - 3990174.jpg" - } -}, -{ - "type": "node", - "id": 3736107679, - "lat": 53.6148675, - "lon": -3.0218880, - "tags": { - "amenity": "post_box", - "ref": "PR8 158" - } -}, -{ - "type": "node", - "id": 3736107680, - "lat": 53.6196296, - "lon": -3.0224003, - "tags": { - "amenity": "post_box", - "ref": "PR8 33" - } -}, -{ - "type": "node", - "id": 3736200362, - "lat": 53.8087098, - "lon": -3.0320071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736590163, - "lat": 51.4649205, - "lon": -0.2655254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736610690, - "lat": 57.6566646, - "lon": -3.3209361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "IV30 2", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3736660324, - "lat": 52.4421881, - "lon": 1.7244806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661143, - "lat": 52.4425773, - "lon": 1.7217787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661368, - "lat": 52.4465615, - "lon": 1.7228238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661648, - "lat": 52.4507835, - "lon": 1.7327725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661656, - "lat": 52.4538856, - "lon": 1.7244855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661666, - "lat": 52.4540960, - "lon": 1.7315089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3305", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3736661679, - "lat": 52.4581227, - "lon": 1.7260432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661680, - "lat": 52.4624268, - "lon": 1.7412879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736661684, - "lat": 52.4644072, - "lon": 1.7416903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736708612, - "lat": 51.6881966, - "lon": -2.3863934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "collection_times_checked": "2015-09-09", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3736958996, - "lat": 51.2903147, - "lon": 0.1683515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "ref": "TN13 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3737447698, - "lat": 53.6238821, - "lon": -2.9944132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=fef2f2fb-e88a-4e74-b292-d809fc169335&cp=53.623978~-2.994292&lvl=19&dir=148.49442&pi=-3.9713519&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR8 129" - } -}, -{ - "type": "node", - "id": 3737447699, - "lat": 53.6220023, - "lon": -3.0049820, - "tags": { - "amenity": "post_box", - "ref": "PR8 85" - } -}, -{ - "type": "node", - "id": 3737447700, - "lat": 53.6228026, - "lon": -3.0122700, - "tags": { - "amenity": "post_box", - "ref": "PR8 76" - } -}, -{ - "type": "node", - "id": 3737447701, - "lat": 53.6231292, - "lon": -3.0164293, - "tags": { - "amenity": "post_box", - "ref": "PR8 114" - } -}, -{ - "type": "node", - "id": 3737447702, - "lat": 53.6236780, - "lon": -3.0200936, - "tags": { - "amenity": "post_box", - "ref": "PR8 58" - } -}, -{ - "type": "node", - "id": 3737447703, - "lat": 53.6223098, - "lon": -3.0248648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "521704495635313", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 134", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 3737452986, - "lat": 53.6268104, - "lon": -3.0118325, - "tags": { - "amenity": "post_box", - "ref": "PR8 6" - } -}, -{ - "type": "node", - "id": 3737452987, - "lat": 53.6259739, - "lon": -3.0063520, - "tags": { - "amenity": "post_box", - "ref": "PR8 87" - } -}, -{ - "type": "node", - "id": 3737538801, - "lat": 54.2917838, - "lon": -0.8384792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "YO18 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3737557175, - "lat": 53.6293714, - "lon": -2.9772556, - "tags": { - "amenity": "post_box", - "ref": "PR8 147" - } -}, -{ - "type": "node", - "id": 3737660224, - "lat": 53.6316768, - "lon": -2.9711565, - "tags": { - "amenity": "post_box", - "ref": "PR8 34" - } -}, -{ - "type": "node", - "id": 3737930578, - "lat": 57.5541180, - "lon": -3.1526457, - "tags": { - "amenity": "post_box", - "ref": "IV32 113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3737953345, - "lat": 57.5429293, - "lon": -2.9484914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB55 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3738017765, - "lat": 55.9362012, - "lon": -4.3167277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G62 928D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3738017771, - "lat": 55.9445073, - "lon": -4.3241719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary" - } -}, -{ - "type": "node", - "id": 3738092782, - "lat": 50.7136128, - "lon": -3.5531406, - "tags": { - "amenity": "post_box", - "ref": "EX4 518D" - } -}, -{ - "type": "node", - "id": 3738841939, - "lat": 53.6364745, - "lon": -2.9845041, - "tags": { - "amenity": "post_box", - "ref": "PR8 128" - } -}, -{ - "type": "node", - "id": 3738842780, - "lat": 53.6447198, - "lon": -2.9682253, - "tags": { - "amenity": "post_box", - "ref": "PR9 139" - } -}, -{ - "type": "node", - "id": 3738849809, - "lat": 54.2840507, - "lon": -0.3956661, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO11 206" - } -}, -{ - "type": "node", - "id": 3739098881, - "lat": 51.7950458, - "lon": -0.0722927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG13 40;SG13 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3739132761, - "lat": 53.6338961, - "lon": -3.0326178, - "tags": { - "amenity": "post_box", - "ref": "PR8 106" - } -}, -{ - "type": "node", - "id": 3739132762, - "lat": 53.6328065, - "lon": -3.0286986, - "tags": { - "amenity": "post_box", - "ref": "PR8 94" - } -}, -{ - "type": "node", - "id": 3739352729, - "lat": 51.6330558, - "lon": -0.5796891, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP8 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3739370315, - "lat": 56.1156147, - "lon": -4.2922860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK8 63", - "royal_cypher": "GR", - "source": "mapillary" - } -}, -{ - "type": "node", - "id": 3739389246, - "lat": 56.1266665, - "lon": -4.2339546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "mapillary" - } -}, -{ - "type": "node", - "id": 3739936640, - "lat": 52.4151347, - "lon": 1.4530112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740058617, - "lat": 52.3710579, - "lon": -2.7189075, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "SY8 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740162553, - "lat": 55.9649154, - "lon": -3.5128160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3740369344, - "lat": 54.1216323, - "lon": -3.2362139, - "tags": { - "access": "customers", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3740626928, - "lat": 52.2862883, - "lon": -2.4960799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "note": "Royal Mail lists this box as WR6 148, not as shown on collection plate", - "post_box:type": "lamp", - "ref": "WR15 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740700119, - "lat": 52.2511722, - "lon": -2.2525602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR6 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740700318, - "lat": 52.2866270, - "lon": -2.3354143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "wall", - "ref": "WR6 211", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3740700914, - "lat": 52.2664903, - "lon": -2.2700436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR6 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740700930, - "lat": 52.2580727, - "lon": -2.3172843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR6 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740700995, - "lat": 52.2635312, - "lon": -2.3603515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR6 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740701014, - "lat": 52.2642168, - "lon": -2.2691533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR6 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740701095, - "lat": 52.2735544, - "lon": -2.3153829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "WR6 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3740701285, - "lat": 52.2811058, - "lon": -2.3028946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "WR6 217", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3740760643, - "lat": 50.2587583, - "lon": -5.2003878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3740776953, - "lat": 53.1813257, - "lon": -0.8046554, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741077489, - "lat": 53.4079509, - "lon": -2.1618729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SK1 31", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3741083637, - "lat": 53.4088911, - "lon": -2.1596304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "note": "The ref which is printed on the right-hand opening of this postbox (SK1 385) is not in the Royal Mail data, but it is a double postbox - the other opening has ref: SK1 386", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SK1 386;SK1 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3741114222, - "lat": 52.4699987, - "lon": 1.7458062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3308D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114227, - "lat": 52.4703826, - "lon": 1.7260883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114228, - "lat": 52.4705328, - "lon": 1.7371566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3741114230, - "lat": 52.4708502, - "lon": 1.7205559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR33 3351D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3741114284, - "lat": 52.4725643, - "lon": 1.7094319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-05-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114355, - "lat": 52.4768416, - "lon": 1.6990906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114366, - "lat": 52.4769562, - "lon": 1.7476197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3211", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3741114566, - "lat": 52.4779342, - "lon": 1.7155425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3217", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3741114574, - "lat": 52.4779733, - "lon": 1.7453353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3741114644, - "lat": 52.4783189, - "lon": 1.7379357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3741114682, - "lat": 52.4787033, - "lon": 1.7060284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114740, - "lat": 52.4795965, - "lon": 1.7107270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114743, - "lat": 52.4797665, - "lon": 1.7007479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114779, - "lat": 52.4811942, - "lon": 1.7413485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3216D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3741114880, - "lat": 52.4830905, - "lon": 1.7353569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741114892, - "lat": 52.4832099, - "lon": 1.7278886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741115117, - "lat": 52.4839921, - "lon": 1.7070523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741115173, - "lat": 52.4842666, - "lon": 1.7164934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741115244, - "lat": 52.4846794, - "lon": 1.7200840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741126545, - "lat": 51.0033616, - "lon": -0.0987291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3741258864, - "lat": 56.2022479, - "lon": -5.1093908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1203849683922472", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-08-03" - } -}, -{ - "type": "node", - "id": 3741437758, - "lat": 52.3698303, - "lon": -1.4669360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV3 463D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3741444057, - "lat": 52.3428707, - "lon": -1.4764699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV8 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3741485663, - "lat": 52.3799955, - "lon": 1.1023961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741485684, - "lat": 52.3808616, - "lon": 1.1055691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7007D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741485701, - "lat": 52.3777270, - "lon": 1.1025530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741580035, - "lat": 52.2106040, - "lon": -2.3324934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "WR6 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741580039, - "lat": 52.2244999, - "lon": -2.3419037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "lamp", - "ref": "WR6 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741580100, - "lat": 52.2373494, - "lon": -2.3128487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR6 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741583272, - "lat": 52.2524582, - "lon": -2.3392568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR6 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741583335, - "lat": 52.2433474, - "lon": -2.3367767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "WR6 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741583343, - "lat": 52.2436402, - "lon": -2.3109413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "WR6 285", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3741583381, - "lat": 52.2500676, - "lon": -2.2738840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR2 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3741840287, - "lat": 51.7558330, - "lon": -0.4672583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840288, - "lat": 51.7603235, - "lon": -0.4387496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-10-11", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3741840294, - "lat": 51.7622447, - "lon": -0.4565806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840295, - "lat": 51.7622878, - "lon": -0.4421239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840296, - "lat": 51.7624262, - "lon": -0.4626440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840300, - "lat": 51.7627272, - "lon": -0.4698968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840301, - "lat": 51.7631381, - "lon": -0.4387355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP2 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840302, - "lat": 51.7631616, - "lon": -0.4386899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840303, - "lat": 51.7631671, - "lon": -0.4386620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840304, - "lat": 51.7645654, - "lon": -0.4590722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840306, - "lat": 51.7649280, - "lon": -0.4537964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840307, - "lat": 51.7653110, - "lon": -0.4504783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840308, - "lat": 51.7653966, - "lon": -0.4625700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840309, - "lat": 51.7687035, - "lon": -0.4383134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP2 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840310, - "lat": 51.7705080, - "lon": -0.4569016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840311, - "lat": 51.7729847, - "lon": -0.4574592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840312, - "lat": 51.7730080, - "lon": -0.4574574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840313, - "lat": 51.7732364, - "lon": -0.4507202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP2 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840315, - "lat": 51.7755379, - "lon": -0.4648825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3741840316, - "lat": 51.7786451, - "lon": -0.4515052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP2 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-13" - } -}, -{ - "type": "node", - "id": 3742427626, - "lat": 53.6291945, - "lon": -3.0230171, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR8 91", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3742427627, - "lat": 53.6315753, - "lon": -3.0242761, - "tags": { - "amenity": "post_box", - "ref": "PR8 109" - } -}, -{ - "type": "node", - "id": 3742427628, - "lat": 53.6273295, - "lon": -3.0170602, - "tags": { - "amenity": "post_box", - "ref": "PR8 99" - } -}, -{ - "type": "node", - "id": 3742427629, - "lat": 53.6291775, - "lon": -3.0146426, - "tags": { - "amenity": "post_box", - "ref": "PR8 28" - } -}, -{ - "type": "node", - "id": 3742427631, - "lat": 53.6317882, - "lon": -3.0200926, - "tags": { - "amenity": "post_box", - "ref": "PR8 13" - } -}, -{ - "type": "node", - "id": 3742427655, - "lat": 53.6321302, - "lon": -3.0059970, - "tags": { - "amenity": "post_box", - "ref": "PR8 14" - } -}, -{ - "type": "node", - "id": 3742457248, - "lat": 53.6348932, - "lon": -3.0158117, - "tags": { - "amenity": "post_box", - "ref": "PR8 70" - } -}, -{ - "type": "node", - "id": 3742495043, - "lat": 53.6331717, - "lon": -3.0124790, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PR8 166;PR8 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3742807284, - "lat": 53.6407828, - "lon": -3.0027596, - "tags": { - "amenity": "post_box", - "ref": "PR8 60" - } -}, -{ - "type": "node", - "id": 3743171730, - "lat": 57.5964149, - "lon": -2.2001445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB43 19", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743171733, - "lat": 57.5923158, - "lon": -2.1974453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB43 21", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743250027, - "lat": 53.4109831, - "lon": -2.1573338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "heritage_trail:ref": "19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "SK1 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743448350, - "lat": 57.4468569, - "lon": -1.8198690, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743467933, - "lat": 53.4227348, - "lon": -2.1141478, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743467971, - "lat": 53.4362291, - "lon": -2.0761892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK14 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743856660, - "lat": 52.9041365, - "lon": -1.5422848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 71", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3743996672, - "lat": 53.6327511, - "lon": -2.9763641, - "tags": { - "amenity": "post_box", - "ref": "PR8 97" - } -}, -{ - "type": "node", - "id": 3744065825, - "lat": 53.6368704, - "lon": -3.0092806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "340681808093094", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 102", - "survey:date": "2020-01-29" - } -}, -{ - "type": "node", - "id": 3744065908, - "lat": 53.6368920, - "lon": -3.0137049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "469924747614463", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 27", - "survey:date": "2020-04-21" - } -}, -{ - "type": "node", - "id": 3744068077, - "lat": 53.6352722, - "lon": -3.0228583, - "tags": { - "amenity": "post_box", - "ref": "PR8 57" - } -}, -{ - "type": "node", - "id": 3744073289, - "lat": 53.6378770, - "lon": -3.0231452, - "tags": { - "amenity": "post_box", - "ref": "PR8 78" - } -}, -{ - "type": "node", - "id": 3744073321, - "lat": 53.6387915, - "lon": -3.0184034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "164562225672188", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 8", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 3744090225, - "lat": 53.6405473, - "lon": -3.0113440, - "tags": { - "amenity": "post_box", - "ref": "PR8 12" - } -}, -{ - "type": "node", - "id": 3744114859, - "lat": 53.6396627, - "lon": -3.0069129, - "tags": { - "amenity": "post_box", - "ref": "PR8 44" - } -}, -{ - "type": "node", - "id": 3744637789, - "lat": 51.7018224, - "lon": -2.3686248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL11 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3745234717, - "lat": 51.0274435, - "lon": -3.1107444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 139" - } -}, -{ - "type": "node", - "id": 3745234718, - "lat": 51.0279953, - "lon": -3.1013158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 347", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3745234721, - "lat": 51.0307411, - "lon": -3.0897220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 531" - } -}, -{ - "type": "node", - "id": 3745234722, - "lat": 51.0322656, - "lon": -3.0627923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 677" - } -}, -{ - "type": "node", - "id": 3745235557, - "lat": 51.0333520, - "lon": -3.0881113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 527" - } -}, -{ - "type": "node", - "id": 3745235563, - "lat": 51.0357525, - "lon": -3.0573127, - "tags": { - "amenity": "post_box", - "note": "Observed to have been moved after traffic-calming works, 20161116.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3745235567, - "lat": 51.0374916, - "lon": -3.0976535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 501" - } -}, -{ - "type": "node", - "id": 3745235570, - "lat": 51.0379442, - "lon": -3.0637493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 752" - } -}, -{ - "type": "node", - "id": 3745235571, - "lat": 51.0380452, - "lon": -3.0608348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "TA2 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial_imagery" - } -}, -{ - "type": "node", - "id": 3745235572, - "lat": 51.0420157, - "lon": -3.0795384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 288" - } -}, -{ - "type": "node", - "id": 3745235573, - "lat": 51.0450489, - "lon": -3.0452433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:30", - "direction": "south", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 254" - } -}, -{ - "type": "node", - "id": 3745235574, - "lat": 51.0526849, - "lon": -3.0733279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3745520455, - "lat": 50.7435914, - "lon": -3.5467386, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3745819057, - "lat": 51.0053871, - "lon": -3.1195425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3746579041, - "lat": 51.4354592, - "lon": -2.5770544, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS4 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3746579056, - "lat": 51.4371666, - "lon": -2.5740215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3746579066, - "lat": 51.4379219, - "lon": -2.5832782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "BS3 1035", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3746579124, - "lat": 51.4386196, - "lon": -2.5795869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3746591847, - "lat": 51.4388711, - "lon": -2.5724902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3746591899, - "lat": 51.4397114, - "lon": -2.5752794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3746591946, - "lat": 51.4404808, - "lon": -2.5710854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 124", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3747341571, - "lat": 51.7432567, - "lon": -0.3366051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3747574530, - "lat": 53.7624171, - "lon": -3.0163967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3747656206, - "lat": 50.9517854, - "lon": -2.6483502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3748468873, - "lat": 56.7319478, - "lon": -2.6623909, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3748608140, - "lat": 50.2849826, - "lon": -5.2393778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR4 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3749281780, - "lat": 52.5228557, - "lon": -2.0767854, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3749907131, - "lat": 51.4542576, - "lon": -0.1399109, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3749937246, - "lat": 51.5122416, - "lon": -2.6338780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS10 574D" - } -}, -{ - "type": "node", - "id": 3750188642, - "lat": 53.8039453, - "lon": -3.0398359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3750188643, - "lat": 53.8119175, - "lon": -3.0340180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3750226460, - "lat": 50.9099265, - "lon": -0.5295486, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN18 1325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3750226482, - "lat": 50.9116726, - "lon": -0.5201680, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN18 1323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3750435094, - "lat": 52.2869638, - "lon": -1.5189058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV31 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750435097, - "lat": 52.2824545, - "lon": -1.5168393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750444948, - "lat": 52.2796681, - "lon": -1.5116425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750448171, - "lat": 52.2793080, - "lon": -1.5202512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "note": "this box is some distance from where Royal Mail say it is. Now a parcel box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV31 2P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750493550, - "lat": 52.2772982, - "lon": -1.5138908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-07-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750509030, - "lat": 52.2813431, - "lon": -1.5394639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750510474, - "lat": 52.2801338, - "lon": -1.5340534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV31 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750510475, - "lat": 52.2826506, - "lon": -1.5349259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV31 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3750807478, - "lat": 52.1948331, - "lon": -2.3541725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "wall", - "ref": "WR6 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3750807479, - "lat": 52.2120741, - "lon": -2.3828857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "WR6 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3750807480, - "lat": 52.2301503, - "lon": -2.4269022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "WR6 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3750862364, - "lat": 52.1882308, - "lon": -2.4670654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR6 208", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3750863983, - "lat": 52.1303895, - "lon": -2.4604483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:45", - "post_box:type": "wall", - "ref": "WR6 314", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3750863984, - "lat": 52.1304325, - "lon": -2.4802616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "post_box:type": "wall", - "ref": "WR6 120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3750864139, - "lat": 52.1421350, - "lon": -2.4803129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "post_box:type": "lamp", - "ref": "WR6 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3751029756, - "lat": 52.9028989, - "lon": -1.5355076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE3 96D" - } -}, -{ - "type": "node", - "id": 3751312112, - "lat": 51.0124840, - "lon": -3.1603474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3751479128, - "lat": 55.2330693, - "lon": -6.5173055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:30; Sa 08:45", - "geograph:id": "817072", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "BT57 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3751516712, - "lat": 50.9512156, - "lon": -2.6411861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3751581359, - "lat": 53.3356811, - "lon": -3.3944805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3751997540, - "lat": 54.8390307, - "lon": -1.5396979, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3752110111, - "lat": 51.1155819, - "lon": -3.0142637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3752131131, - "lat": 50.9573851, - "lon": -0.5027301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "note": "The left aperture is for stamped mail; the right aperture is for meter mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "RH20 801", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3752212748, - "lat": 51.5001444, - "lon": -2.6636095, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 471D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3752212836, - "lat": 51.5014781, - "lon": -2.6489841, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS11 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3752212974, - "lat": 51.5023675, - "lon": -2.6574839, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 1013", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3752390127, - "lat": 51.5116656, - "lon": -0.1939152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 43D;W2 243D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3752472148, - "lat": 52.7662561, - "lon": -0.8881359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3752563046, - "lat": 52.7652350, - "lon": -0.8867423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3752582843, - "lat": 53.6371049, - "lon": -3.0031143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "982005342537745", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 50" - } -}, -{ - "type": "node", - "id": 3752582844, - "lat": 53.6372983, - "lon": -2.9975352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 36" - } -}, -{ - "type": "node", - "id": 3752582845, - "lat": 53.6378625, - "lon": -2.9931047, - "tags": { - "amenity": "post_box", - "ref": "PR8 71" - } -}, -{ - "type": "node", - "id": 3752582846, - "lat": 53.6397330, - "lon": -2.9984258, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR8 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3752582847, - "lat": 53.6403332, - "lon": -2.9926321, - "tags": { - "amenity": "post_box", - "ref": "PR8 48" - } -}, -{ - "type": "node", - "id": 3752583612, - "lat": 53.6454793, - "lon": -2.9971755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "503550874118555", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 122", - "survey:date": "2020-01-06" - } -}, -{ - "type": "node", - "id": 3752586028, - "lat": 52.3781151, - "lon": -1.8153689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B90 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3752735728, - "lat": 52.1579274, - "lon": 0.7871844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP30 2198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3752947525, - "lat": 53.6430401, - "lon": -2.9987713, - "tags": { - "amenity": "post_box", - "ref": "PR8 61" - } -}, -{ - "type": "node", - "id": 3752959112, - "lat": 53.6429488, - "lon": -2.9914930, - "tags": { - "amenity": "post_box", - "ref": "PR8 46" - } -}, -{ - "type": "node", - "id": 3752996708, - "lat": 53.6437223, - "lon": -2.9869737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "515603042807819", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR8 77", - "survey:date": "2020-08-02" - } -}, -{ - "type": "node", - "id": 3752996709, - "lat": 53.6407297, - "lon": -2.9837376, - "tags": { - "amenity": "post_box", - "ref": "PR8 96" - } -}, -{ - "type": "node", - "id": 3753025463, - "lat": 53.6453827, - "lon": -2.9812980, - "tags": { - "amenity": "post_box", - "ref": "PR9 65" - } -}, -{ - "type": "node", - "id": 3753146379, - "lat": 52.1093263, - "lon": 0.7953925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CO10 1100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3753153099, - "lat": 55.6036222, - "lon": -2.7668806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Rileys", - "ref": "TD1 145" - } -}, -{ - "type": "node", - "id": 3753273767, - "lat": 52.1900111, - "lon": -2.5098006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HR7 653D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3754248479, - "lat": 53.6428085, - "lon": -3.0051465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR8 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3754251967, - "lat": 53.6384150, - "lon": -2.9877503, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR8 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3754251968, - "lat": 53.6389125, - "lon": -2.9778412, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR8 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3754285687, - "lat": 55.6423674, - "lon": -4.7807419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA21 122D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3754462414, - "lat": 52.9664017, - "lon": -0.0946950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE20 207" - } -}, -{ - "type": "node", - "id": 3754462415, - "lat": 52.9555561, - "lon": -0.1675566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE20 124" - } -}, -{ - "type": "node", - "id": 3754462416, - "lat": 52.9697061, - "lon": -0.1880983, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE20 125" - } -}, -{ - "type": "node", - "id": 3754462417, - "lat": 52.9756347, - "lon": -0.1414870, - "tags": { - "amenity": "post_box", - "ref": "PE20 117" - } -}, -{ - "type": "node", - "id": 3754538225, - "lat": 51.0195683, - "lon": -3.0483584, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "257543736164700", - "name": "Ruishton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "postal_code": "TA3 5JG", - "ref": "TA3 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-01-28", - "survey:date": "2020-04-09" - } -}, -{ - "type": "node", - "id": 3754770222, - "lat": 55.6666916, - "lon": -5.3729135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "KA27 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3754823119, - "lat": 55.5590162, - "lon": -5.3439226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA27 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3754828610, - "lat": 55.6114810, - "lon": -5.3919462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45, Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 102", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3754877542, - "lat": 56.4708173, - "lon": -2.9287082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD4 191D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3754928983, - "lat": 51.6974243, - "lon": -2.3786038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-22", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3755137025, - "lat": 51.0425385, - "lon": -0.8919599, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU33 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3755137028, - "lat": 51.0438127, - "lon": -0.8892574, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3755137031, - "lat": 51.0454551, - "lon": -0.8950489, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of the brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3755137035, - "lat": 51.0484703, - "lon": -0.8839041, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU33 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3755185858, - "lat": 51.0981316, - "lon": -1.0484260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "last_checked": "2021-08-08", - "mapillary": "1519587525447204", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-07-16" - } -}, -{ - "type": "node", - "id": 3755185860, - "lat": 51.0982479, - "lon": -1.0370202, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "last_checked": "2021-08-08", - "note": "According to OSM, this postbox was of a GR royal cypher and a wall. But when I used this postbox on Sunday 08.08.2021 it is a brand new (2010s) EIIR design-lamp postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3755185863, - "lat": 51.1095894, - "lon": -1.0311912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "last_checked": "2021-08-08", - "mapillary": "669236868457989", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-07-16" - } -}, -{ - "type": "node", - "id": 3755586973, - "lat": 53.6462144, - "lon": -3.0003404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "159770372763136", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 113", - "survey:date": "2020-07-31" - } -}, -{ - "type": "node", - "id": 3755840204, - "lat": 53.6496343, - "lon": -2.9987719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR9 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3755878706, - "lat": 53.6428425, - "lon": -2.9774521, - "tags": { - "amenity": "post_box", - "ref": "PR9 98" - } -}, -{ - "type": "node", - "id": 3756451032, - "lat": 51.5027036, - "lon": -2.6894959, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BS11 4009P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3756451045, - "lat": 51.5032215, - "lon": -2.6784184, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BS11 630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3756640040, - "lat": 51.4896774, - "lon": -2.6884033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BS11 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3756640075, - "lat": 51.4933329, - "lon": -2.6893680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS11 474", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3756647305, - "lat": 51.4991264, - "lon": -2.6951033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS11 1134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3756647446, - "lat": 51.4995337, - "lon": -2.6956138, - "tags": { - "amenity": "post_box", - "colour": "brown", - "post_box:type": "wall", - "ref": "BS11 639", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3756647498, - "lat": 51.5002133, - "lon": -2.7000766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS11 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3757418254, - "lat": 55.8912902, - "lon": -3.4643080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH53 34D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3757483853, - "lat": 55.8893252, - "lon": -3.4585512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH53 31D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3757483854, - "lat": 55.8965029, - "lon": -3.4607658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH53 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3757538894, - "lat": 55.8581662, - "lon": -3.5559452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH55 102D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3757623669, - "lat": 55.8295986, - "lon": -3.6564295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH55 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3757831092, - "lat": 55.8487898, - "lon": -3.6275257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3758213076, - "lat": 51.5131631, - "lon": -0.1725315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 63D;W2 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3758213077, - "lat": 51.5143042, - "lon": -0.1673788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 1D;W2 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3758213080, - "lat": 51.5147135, - "lon": -0.1622534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 62D;W2 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3758259396, - "lat": 51.5156979, - "lon": -0.1637242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 11D;W2 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3758264073, - "lat": 51.5167844, - "lon": -0.1628057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2018-10-02", - "note": "note on box says collection times will change to Mo-Fr 09:00;Sa 07:00 from 08 10 2018", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 8;W1H 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3758810507, - "lat": 53.6473802, - "lon": -2.9943593, - "tags": { - "amenity": "post_box", - "ref": "PR9 56" - } -}, -{ - "type": "node", - "id": 3758950497, - "lat": 52.7645784, - "lon": -0.8870707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3759527343, - "lat": 55.0293300, - "lon": -2.1533492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "description": "Letters only", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NE46 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3759594202, - "lat": 51.2063317, - "lon": -1.6663785, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP9 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3759594220, - "lat": 51.2073441, - "lon": -1.6752448, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP9 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3759594252, - "lat": 51.2084233, - "lon": -1.6704642, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP9 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3759608434, - "lat": 51.1949198, - "lon": -1.8195776, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 441D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3760233727, - "lat": 52.6080244, - "lon": 1.2515462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NR4 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3760565980, - "lat": 51.3255980, - "lon": 0.7293480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 3760566169, - "lat": 51.3250961, - "lon": 0.7035643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3760566170, - "lat": 51.3381286, - "lon": 0.7167117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "note": "From the 18th September 2023 the collection times are changing to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3760574257, - "lat": 51.3403185, - "lon": 0.7319142, - "tags": { - "addr:street": "Park Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3760574258, - "lat": 51.3415573, - "lon": 0.7219923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "note": "From the 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME10 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3760574457, - "lat": 51.3271834, - "lon": 0.7224789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 3760574557, - "lat": 51.3236931, - "lon": 0.7176568, - "tags": { - "addr:street": "Tunstall Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME10 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3760634258, - "lat": 51.3362201, - "lon": 0.7292789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "gate_pillar", - "post_box:type": "wall", - "ref": "ME10 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3760634359, - "lat": 51.3462503, - "lon": 0.7221020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;aerial imagery;survey", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3760634360, - "lat": 51.3458962, - "lon": 0.7306914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "note": "As at Tuesday 15th August 2023 there is a Royal Mail sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "ME10 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3760634361, - "lat": 51.3413076, - "lon": 0.7286355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME10 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3760635158, - "lat": 51.3341590, - "lon": 0.7023469, - "tags": { - "addr:street": "Tunstall Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "ME10 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3761240892, - "lat": 56.4561788, - "lon": -2.9871795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DD1 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3761296119, - "lat": 56.4574469, - "lon": -3.1205343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3761296122, - "lat": 56.4585085, - "lon": -3.1127644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 214D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3761315561, - "lat": 52.3756145, - "lon": 1.0991519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7425D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3761326674, - "lat": 55.8687769, - "lon": -3.6604056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3761343171, - "lat": 55.8631098, - "lon": -3.6708361, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_plate:date": "2019-09-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Kirkintilloch", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "EH47 73D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3761353446, - "lat": 55.8578179, - "lon": -3.6806867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 75", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3761353477, - "lat": 55.8593185, - "lon": -3.6860845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3761390218, - "lat": 55.8627838, - "lon": -3.6821513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 74", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3761427688, - "lat": 55.8639217, - "lon": -3.6875638, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-22", - "check_date:collection_times": "2024-07-22", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 67", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3761441381, - "lat": 55.8698845, - "lon": -3.6847826, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH47 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3761541360, - "lat": 51.5995962, - "lon": -0.6351184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 170D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761541361, - "lat": 51.6012951, - "lon": -0.6362859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 97D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761541362, - "lat": 51.6023476, - "lon": -0.6328218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP9 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761541363, - "lat": 51.6023482, - "lon": -0.6328652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761541365, - "lat": 51.6024311, - "lon": -0.6373886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761541366, - "lat": 51.6068068, - "lon": -0.6410814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761541368, - "lat": 51.6100223, - "lon": -0.6459244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568012, - "lat": 51.5999048, - "lon": -0.6660879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568013, - "lat": 51.6002564, - "lon": -0.6495480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568014, - "lat": 51.6005448, - "lon": -0.6694906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 196", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568015, - "lat": 51.6007152, - "lon": -0.6582861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568016, - "lat": 51.6038100, - "lon": -0.6571855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568020, - "lat": 51.6051996, - "lon": -0.6662210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568026, - "lat": 51.6075510, - "lon": -0.6656317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568027, - "lat": 51.6076233, - "lon": -0.6473607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 98", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568029, - "lat": 51.6084315, - "lon": -0.6516896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568030, - "lat": 51.6099404, - "lon": -0.6561151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 132D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761568031, - "lat": 51.6184427, - "lon": -0.6690240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 174", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589572, - "lat": 51.6125092, - "lon": -0.6542762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589573, - "lat": 51.6154379, - "lon": -0.6579055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589574, - "lat": 51.6159568, - "lon": -0.6446048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589575, - "lat": 51.6164031, - "lon": -0.6535391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589576, - "lat": 51.6166806, - "lon": -0.6481410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589582, - "lat": 51.6178423, - "lon": -0.6580852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761589583, - "lat": 51.6212411, - "lon": -0.6462826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3761591695, - "lat": 53.2153743, - "lon": -2.8553678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 89D" - } -}, -{ - "type": "node", - "id": 3761597164, - "lat": 51.6125498, - "lon": -0.6408624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-14", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3761597165, - "lat": 51.6157473, - "lon": -0.6403849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 169D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3761597166, - "lat": 51.6163843, - "lon": -0.6319651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 177D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761604750, - "lat": 51.6114236, - "lon": -0.6060497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP9 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761604753, - "lat": 51.6138098, - "lon": -0.6159588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP9 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761604755, - "lat": 51.6183237, - "lon": -0.6055553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP9 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3761604756, - "lat": 51.6204540, - "lon": -0.6103795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-26" - } -}, -{ - "type": "node", - "id": 3762012278, - "lat": 51.9351993, - "lon": -1.5467797, - "tags": { - "amenity": "post_box", - "postal_code": "OX7", - "ref": "OX7 697D" - } -}, -{ - "type": "node", - "id": 3762382395, - "lat": 53.2253027, - "lon": -2.8282539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 132D" - } -}, -{ - "type": "node", - "id": 3762408656, - "lat": 52.4893551, - "lon": -1.8167208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "B8 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3762411395, - "lat": 52.3724891, - "lon": 1.1088085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "location": "Inside Morrisons Store", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "IP22 7125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3762427602, - "lat": 51.4827923, - "lon": -0.3371066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 251", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3762505828, - "lat": 51.8232202, - "lon": -0.1916893, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL6 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3762536499, - "lat": 54.1967502, - "lon": -2.9516794, - "tags": { - "amenity": "post_box", - "ref": "LA11 137" - } -}, -{ - "type": "node", - "id": 3762704807, - "lat": 51.0378562, - "lon": -3.0316230, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3762759304, - "lat": 52.3774130, - "lon": -1.5467641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV4 467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3762759305, - "lat": 52.3835469, - "lon": -1.5485692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3762759306, - "lat": 52.3874811, - "lon": -1.5464191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 46", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3762767374, - "lat": 50.9043308, - "lon": -1.3085069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO30 617" - } -}, -{ - "type": "node", - "id": 3763027277, - "lat": 50.9058836, - "lon": -1.4068349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763045948, - "lat": 50.9270499, - "lon": -0.9977873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I have upgraded the postbox tag.", - "note_1": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "PO8 188", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO8 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-06-25" - } -}, -{ - "type": "node", - "id": 3763058813, - "lat": 50.9302721, - "lon": -0.9995951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO8 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763075890, - "lat": 50.1132373, - "lon": -5.5414395, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-07", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3763075891, - "lat": 50.1141213, - "lon": -5.5373946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "fixme": "inn navy the nearwrong location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-05-07" - } -}, -{ - "type": "node", - "id": 3763075893, - "lat": 50.1160762, - "lon": -5.5312125, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-07", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3763075894, - "lat": 50.1180221, - "lon": -5.5369717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3763075897, - "lat": 50.1207094, - "lon": -5.5393193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3763086183, - "lat": 50.1152899, - "lon": -5.5444841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3763086184, - "lat": 50.1166707, - "lon": -5.5392080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3763086185, - "lat": 50.1178676, - "lon": -5.5433072, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-12", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3763086186, - "lat": 50.1193369, - "lon": -5.5465154, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 89D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3763130612, - "lat": 52.3887108, - "lon": -1.5593272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3763407199, - "lat": 52.3769180, - "lon": 1.1127884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP22 7170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763441365, - "lat": 52.3720219, - "lon": 1.1201913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP22 7107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763441388, - "lat": 52.3643165, - "lon": 1.1062385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763441417, - "lat": 52.3639284, - "lon": 1.1090719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7044", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763441487, - "lat": 52.3776317, - "lon": 1.1212803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP22 7319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763441490, - "lat": 52.3739313, - "lon": 1.1143414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3763441494, - "lat": 52.3785377, - "lon": 1.1173455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP22 7197D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3763441527, - "lat": 52.3738094, - "lon": 1.1238173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 12:10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7006", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3763508104, - "lat": 54.2016157, - "lon": -2.9540197, - "tags": { - "amenity": "post_box", - "ref": "LA11 109" - } -}, -{ - "type": "node", - "id": 3764529958, - "lat": 50.8505459, - "lon": -1.1125177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 271D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3764529964, - "lat": 50.8532263, - "lon": -1.1128812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3764529972, - "lat": 50.8541998, - "lon": -1.1085619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 371D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3764652310, - "lat": 50.8523984, - "lon": -1.0968289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3764916223, - "lat": 50.0992576, - "lon": -5.5524283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3764916224, - "lat": 50.0995511, - "lon": -5.5481936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3764916225, - "lat": 50.1012052, - "lon": -5.5460066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR18 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-05-07" - } -}, -{ - "type": "node", - "id": 3764916226, - "lat": 50.1018282, - "lon": -5.5498532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 4D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3764916227, - "lat": 50.1033307, - "lon": -5.5517742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR18 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2022-06-03" - } -}, -{ - "type": "node", - "id": 3764954220, - "lat": 50.0862556, - "lon": -5.5413858, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-22", - "check_date:collection_times": "2022-05-22", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3764954223, - "lat": 50.0866445, - "lon": -5.5552124, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-22", - "check_date:collection_times": "2022-05-22", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3764954224, - "lat": 50.0898494, - "lon": -5.5467358, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-22", - "check_date:collection_times": "2022-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765053296, - "lat": 50.3272424, - "lon": -4.0730535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "mapillary": "239308521673579", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 615", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2021-12-22" - } -}, -{ - "type": "node", - "id": 3765158978, - "lat": 51.5325736, - "lon": -0.7249986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765159042, - "lat": 51.5356788, - "lon": -0.7307324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765617158, - "lat": 52.2507876, - "lon": -1.3934157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV47 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765617159, - "lat": 52.2535253, - "lon": -1.3909678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765617160, - "lat": 52.2537318, - "lon": -1.3878120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CV47 224;CV47 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765617161, - "lat": 52.2555650, - "lon": -1.3937127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765617162, - "lat": 52.2574966, - "lon": -1.3867670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "this box has a label giving new collection times from Sept 2014 but the plate has not been updated yet (Sept 2015)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3765617163, - "lat": 52.2587084, - "lon": -1.3911614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 247D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3766348849, - "lat": 50.6848230, - "lon": -2.1104357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BH20 213D", - "ref:GB:uprn": "10015394855", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3766432351, - "lat": 52.5890813, - "lon": -4.0994068, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3766790556, - "lat": 50.1239117, - "lon": -5.4585931, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-09", - "check_date:collection_times": "2022-07-09", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR17 46", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3766790557, - "lat": 50.1249058, - "lon": -5.4680713, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR17 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-07-09" - } -}, -{ - "type": "node", - "id": 3766790558, - "lat": 50.1253191, - "lon": -5.4770235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-01", - "collection_times": "Mo-Fr 11:30, Sa 11:30; Su off", - "drive_through": "no", - "note": "Listed in RM2013 as TR20 143 but is within TR17 boundary. Now displays TR17 143.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR17 143", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2022-07-09" - } -}, -{ - "type": "node", - "id": 3766790564, - "lat": 50.1308717, - "lon": -5.4794102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR17 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3766790565, - "lat": 50.1325883, - "lon": -5.4493795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR17 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3766798007, - "lat": 50.0598889, - "lon": -5.6363527, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-28", - "check_date:collection_times": "2022-05-28", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 113", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3766799813, - "lat": 50.0499519, - "lon": -5.6415079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3766806967, - "lat": 50.0496351, - "lon": -5.6589433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-28", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3767418257, - "lat": 52.3385510, - "lon": -1.5186624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV8 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3767418258, - "lat": 52.3385693, - "lon": -1.5186891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "CV8 380", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3767765298, - "lat": 57.6588673, - "lon": -4.3441329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV16 39", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768021657, - "lat": 51.9958719, - "lon": -2.1557939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GL20 370;GL20 1370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3768158054, - "lat": 50.8488911, - "lon": -1.1656560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO16 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3768171007, - "lat": 51.1782147, - "lon": -1.6645058, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3768171010, - "lat": 51.1792458, - "lon": -1.6856964, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 386D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3768228947, - "lat": 51.4413910, - "lon": -2.3668901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "approximate", - "mapillary": "145699334632898", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 3768260589, - "lat": 50.7570085, - "lon": -1.9830293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH18 190", - "ref:GB:uprn": "10015297477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3768653434, - "lat": 50.0649829, - "lon": -5.6962652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 138", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3768653435, - "lat": 50.0691649, - "lon": -5.6951301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR19 108", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3768653437, - "lat": 50.0757588, - "lon": -5.7023744, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-05-19" - } -}, -{ - "type": "node", - "id": 3768653438, - "lat": 50.0793003, - "lon": -5.6842890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3768653440, - "lat": 50.0809337, - "lon": -5.6876052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-28" - } -}, -{ - "type": "node", - "id": 3768723012, - "lat": 51.6634072, - "lon": -0.3998124, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3768751165, - "lat": 50.1234453, - "lon": -5.6850344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:15; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3768751166, - "lat": 50.1270922, - "lon": -5.6985761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3768751167, - "lat": 50.1282583, - "lon": -5.6769802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3768751176, - "lat": 50.1411483, - "lon": -5.6753961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-06-30" - } -}, -{ - "type": "node", - "id": 3768751183, - "lat": 50.1455221, - "lon": -5.6719453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3768751185, - "lat": 50.1513827, - "lon": -5.6659675, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TR19 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-06-30" - } -}, -{ - "type": "node", - "id": 3768751186, - "lat": 50.1520421, - "lon": -5.6626908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3768751190, - "lat": 50.1541920, - "lon": -5.6548086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "note": "Letters only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR19 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-07-13" - } -}, -{ - "type": "node", - "id": 3768751199, - "lat": 50.1545996, - "lon": -5.6714999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-29" - } -}, -{ - "type": "node", - "id": 3768751215, - "lat": 50.1606901, - "lon": -5.6409356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-07-13" - } -}, -{ - "type": "node", - "id": 3768771766, - "lat": 52.2873683, - "lon": -1.4739204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768771767, - "lat": 52.2899395, - "lon": -1.4729683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768771768, - "lat": 52.2985505, - "lon": -1.4913533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV32 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768818073, - "lat": 50.1216307, - "lon": -5.5366400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818074, - "lat": 50.1221001, - "lon": -5.5420516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818075, - "lat": 50.1239688, - "lon": -5.5344791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818076, - "lat": 50.1243463, - "lon": -5.5528643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818098, - "lat": 50.1262815, - "lon": -5.5566535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818099, - "lat": 50.1267167, - "lon": -5.5460300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818102, - "lat": 50.1267942, - "lon": -5.5355038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818104, - "lat": 50.1275104, - "lon": -5.5507541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818106, - "lat": 50.1281524, - "lon": -5.5537593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768818108, - "lat": 50.1285590, - "lon": -5.5415434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-09-30" - } -}, -{ - "type": "node", - "id": 3768855280, - "lat": 50.1091037, - "lon": -5.5575236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768855281, - "lat": 50.1120874, - "lon": -5.5513978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768855284, - "lat": 50.1151266, - "lon": -5.5518322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768855285, - "lat": 50.1160239, - "lon": -5.5541746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768855286, - "lat": 50.1168815, - "lon": -5.5493880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 125D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768855287, - "lat": 50.1255352, - "lon": -5.5284115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768855288, - "lat": 50.1309966, - "lon": -5.5278536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768859715, - "lat": 50.1701179, - "lon": -5.4461105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "note": "Permanently moved from previous location other side of the road due to roadworks.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 3768867129, - "lat": 52.4836318, - "lon": -1.8072826, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 1408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768867130, - "lat": 52.4839607, - "lon": -1.8146313, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768867131, - "lat": 52.4847242, - "lon": -1.8097710, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768888146, - "lat": 50.1782784, - "lon": -5.4439863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2512044555851591", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR26 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888147, - "lat": 50.1832240, - "lon": -5.4404076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR26 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888148, - "lat": 50.1851479, - "lon": -5.4377854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 140D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888149, - "lat": 50.1888278, - "lon": -5.4398140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888150, - "lat": 50.1928395, - "lon": -5.4627403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR26 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888151, - "lat": 50.1955767, - "lon": -5.4615740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 138D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888152, - "lat": 50.1956321, - "lon": -5.4727907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888153, - "lat": 50.1962174, - "lon": -5.4571158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888154, - "lat": 50.1973403, - "lon": -5.4690930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 208D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768888156, - "lat": 50.2019731, - "lon": -5.4742196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904299, - "lat": 50.2028112, - "lon": -5.4931574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR26 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904300, - "lat": 50.2046206, - "lon": -5.4914070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904301, - "lat": 50.2063150, - "lon": -5.4941119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904302, - "lat": 50.2085510, - "lon": -5.4798245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904303, - "lat": 50.2101832, - "lon": -5.4862141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904304, - "lat": 50.2107481, - "lon": -5.4798429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-15", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768904305, - "lat": 50.2115683, - "lon": -5.4794277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768904306, - "lat": 50.2119259, - "lon": -5.4811480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2023-04-12", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR26 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3768904307, - "lat": 50.2122939, - "lon": -5.4888330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-01" - } -}, -{ - "type": "node", - "id": 3768904308, - "lat": 50.2125367, - "lon": -5.4832766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2019-06-09" - } -}, -{ - "type": "node", - "id": 3768904309, - "lat": 50.2126042, - "lon": -5.4852956, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-12", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR26 186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3768904310, - "lat": 50.2139813, - "lon": -5.4817839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR26 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3768904312, - "lat": 50.2149838, - "lon": -5.4797061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-08-10", - "collection_times": "Mo-Fr 16:30, Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR26 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 3769048176, - "lat": 50.3919689, - "lon": -3.9203496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL21 449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "gps", - "survey:date": "2024-05-25" - } -}, -{ - "type": "node", - "id": 3769218708, - "lat": 50.3889080, - "lon": -3.9220929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL21 787", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3769658542, - "lat": 52.6210844, - "lon": 1.2997551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR1 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3769691568, - "lat": 52.5398656, - "lon": -2.7973866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3769701696, - "lat": 52.5557514, - "lon": -2.7970660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SY6 465D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3770867892, - "lat": 52.9274642, - "lon": 1.3044584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR27 2702D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 3770867893, - "lat": 52.9277078, - "lon": 1.3000026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2729", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 3770867894, - "lat": 52.9289562, - "lon": 1.2887439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-04-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR27 2737D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3770867895, - "lat": 52.9299821, - "lon": 1.2892893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR27 2748D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 3770867896, - "lat": 52.9308436, - "lon": 1.3014079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "note": "Separate apertures for 1st and 2nd class: post office premises in town centre.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR27 2700", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 3770867897, - "lat": 52.9316310, - "lon": 1.3004953, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "Postbox is inside the Coop adjacent to High Street entrance.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2725", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-03" - } -}, -{ - "type": "node", - "id": 3770867898, - "lat": 52.9328336, - "lon": 1.2964330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Information plate missing, survey of 2015-10-03; information plate re-added, survey of 2019-05-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2733D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2019-05-14" - } -}, -{ - "type": "node", - "id": 3771065145, - "lat": 52.6368613, - "lon": -1.6873115, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-10", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "B79 1395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771107573, - "lat": 50.1003703, - "lon": -5.5545330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR18 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 3771223168, - "lat": 51.3850071, - "lon": -2.3499879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA2 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3771252715, - "lat": 51.4370565, - "lon": -2.6044896, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771252716, - "lat": 51.4396271, - "lon": -2.6234768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS3 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771252717, - "lat": 51.4432711, - "lon": -2.5947582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "post_box:type": "pillar", - "ref": "BS3 1051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771252718, - "lat": 51.4449415, - "lon": -2.6034648, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS3 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771252724, - "lat": 51.4531899, - "lon": -2.6313002, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS8 435D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3771263475, - "lat": 51.4414897, - "lon": -2.5953037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS3 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771295499, - "lat": 51.5434129, - "lon": -0.1510750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 8D" - } -}, -{ - "type": "node", - "id": 3771338496, - "lat": 51.5545677, - "lon": -0.8092143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL7 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3771828759, - "lat": 51.3438182, - "lon": 0.6365017, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 59D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 3771832458, - "lat": 51.3480290, - "lon": 0.6120749, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME8 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 3771832862, - "lat": 51.3553086, - "lon": 0.6501509, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "This postbox is set back from the main road in the hedges approximately 8 metres west of the bus stop post.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME9 92D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 3771849280, - "lat": 50.7011817, - "lon": -3.5598672, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3771850057, - "lat": 51.3604391, - "lon": 0.6530838, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME9 36", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME9 36D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-11-09" - } -}, -{ - "type": "node", - "id": 3771899381, - "lat": 51.4485695, - "lon": -0.8936575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG5 524D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771899383, - "lat": 51.4449664, - "lon": -0.8937158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG5 383D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3771940079, - "lat": 51.4512899, - "lon": -0.8882877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG5 603D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3771941888, - "lat": 55.9598735, - "lon": -3.2889438, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 484D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3772042992, - "lat": 53.3810987, - "lon": -1.4890572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3772042993, - "lat": 53.3813200, - "lon": -1.4709700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S1 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772042995, - "lat": 53.3816942, - "lon": -1.4665495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S1 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772042999, - "lat": 53.3836240, - "lon": -1.4658641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S3 10;S3 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772043000, - "lat": 53.3849640, - "lon": -1.4605421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "meter", - "ref": "S4 1220P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772043001, - "lat": 53.3849745, - "lon": -1.4604100, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-08", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "comment": "witnessed collection Sunday 10:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S4 1221", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772043002, - "lat": 53.3893992, - "lon": -1.4689316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S3 585D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772043004, - "lat": 53.3911310, - "lon": -1.4405157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S9 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3772059624, - "lat": 51.1137357, - "lon": -3.0075060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3772612113, - "lat": 53.7837694, - "lon": -1.6683957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3772616344, - "lat": 51.0919682, - "lon": -3.0087663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772660063, - "lat": 53.4373647, - "lon": -2.0707554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK14 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3772931618, - "lat": 52.0598805, - "lon": 1.2520768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 8203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3772973955, - "lat": 51.5678990, - "lon": -0.7683534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL7 123D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3773146915, - "lat": 51.5715567, - "lon": -0.7686383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL7 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3773469458, - "lat": 51.4738871, - "lon": -2.5631809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "collection_times_checked": "2015-10-05", - "location": "indoor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS5 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3773731094, - "lat": 53.1307051, - "lon": -1.7547507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1973889806113892", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 3774370040, - "lat": 51.3475548, - "lon": -2.2557530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BA15 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3774370069, - "lat": 51.3480178, - "lon": -2.2597879, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BA15 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3774370124, - "lat": 51.3499522, - "lon": -2.2615463, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA15 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3774990578, - "lat": 50.3499245, - "lon": -3.8960428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 737D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3775217327, - "lat": 51.0269222, - "lon": -3.0390106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TA3 5EZ", - "ref": "TA3 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775545161, - "lat": 51.0618866, - "lon": -2.9909237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775545163, - "lat": 51.0740345, - "lon": -3.0016219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775548505, - "lat": 51.0493883, - "lon": -2.9907131, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775596353, - "lat": 51.7621313, - "lon": -2.2463127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3775639269, - "lat": 51.0225277, - "lon": -2.9718501, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-26", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA3 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775654148, - "lat": 51.0005545, - "lon": -2.9604345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 537", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775662757, - "lat": 51.8902386, - "lon": -2.1210194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775662758, - "lat": 51.8904454, - "lon": -2.1244145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2015-10-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775783936, - "lat": 50.9433976, - "lon": -3.2187366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA21 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775793558, - "lat": 50.9614077, - "lon": -3.2533067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA21 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775804761, - "lat": 50.9621748, - "lon": -3.2693039, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA21 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3775822909, - "lat": 51.0415194, - "lon": -3.3090009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "colour": "red", - "direction": "S", - "name": "Church Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 64", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3775822918, - "lat": 51.0445085, - "lon": -3.3060165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 464D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3775828259, - "lat": 51.0512046, - "lon": -3.2955729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 84", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3775828267, - "lat": 51.0677667, - "lon": -3.2856294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "colour": "red", - "direction": "WNW", - "name": "Pitsford Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 2RP", - "ref": "TA4 69", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3775839970, - "lat": 51.0942105, - "lon": -3.1976049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3777220497, - "lat": 50.9508999, - "lon": -1.3611689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 434", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3777343508, - "lat": 53.7932323, - "lon": -1.6044497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS12 177" - } -}, -{ - "type": "node", - "id": 3777343524, - "lat": 53.8231102, - "lon": -1.5106604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 998", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778208721, - "lat": 51.4785959, - "lon": -0.0448325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3778298993, - "lat": 51.4730799, - "lon": -0.1982233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3778338389, - "lat": 53.9637370, - "lon": -2.0183783, - "tags": { - "amenity": "post_box", - "ref": "BD23 43" - } -}, -{ - "type": "node", - "id": 3778577234, - "lat": 53.1175249, - "lon": -2.0718202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778756192, - "lat": 50.8538673, - "lon": -1.2814201, - "tags": { - "amenity": "post_box", - "check_date": "2020-03-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 637D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778765156, - "lat": 50.8704852, - "lon": -1.2731294, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO31 676", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778784294, - "lat": 54.7769223, - "lon": -1.5804307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DH1 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778791981, - "lat": 50.8727930, - "lon": -1.2680868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO31 673", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778828515, - "lat": 50.9010806, - "lon": -1.4010057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3778839589, - "lat": 53.7922642, - "lon": -1.6709257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS28 480D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3780096063, - "lat": 53.7926732, - "lon": -1.6485409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 976D" - } -}, -{ - "type": "node", - "id": 3780667329, - "lat": 55.8974538, - "lon": -3.5147130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH54 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3780712242, - "lat": 50.2857247, - "lon": -3.7778970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "TQ7 115;TQ7 1115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-01-09" - } -}, -{ - "type": "node", - "id": 3780867316, - "lat": 51.6103928, - "lon": -0.3030608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "ref": "HA7 819", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3780919142, - "lat": 51.6072296, - "lon": -0.2850228, - "tags": { - "amenity": "post_box", - "ref": "HA8 744", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3780919568, - "lat": 51.6087694, - "lon": -0.2866530, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-06", - "ref": "HA8 762", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 3781041948, - "lat": 51.5064072, - "lon": -0.2307418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3781066909, - "lat": 52.6775510, - "lon": 0.9407235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR19 1904D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3781475265, - "lat": 51.4157056, - "lon": -2.5657096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS14 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475266, - "lat": 51.4174094, - "lon": -2.5605239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS14 1155", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3781475267, - "lat": 51.4211152, - "lon": -2.5728096, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS14 157", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3781475268, - "lat": 51.4219517, - "lon": -2.5617120, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS14 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3781475269, - "lat": 51.4225419, - "lon": -2.5653595, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS14 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3781475270, - "lat": 51.4239919, - "lon": -2.5792309, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 145D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3781475271, - "lat": 51.4248611, - "lon": -2.5710039, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS14 158D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3781475272, - "lat": 51.4253757, - "lon": -2.5862747, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 144D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3781475273, - "lat": 51.4255788, - "lon": -2.5634579, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS14 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475274, - "lat": 51.4280497, - "lon": -2.5762910, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 146D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475276, - "lat": 51.4296813, - "lon": -2.5636267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 163D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475277, - "lat": 51.4310055, - "lon": -2.5699769, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475278, - "lat": 51.4317167, - "lon": -2.5781355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475279, - "lat": 51.4324364, - "lon": -2.5655524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475280, - "lat": 51.4340685, - "lon": -2.5618508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS4 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3781475281, - "lat": 51.4343765, - "lon": -2.5909889, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475283, - "lat": 51.4350474, - "lon": -2.5674313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "BS4 1129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3781475284, - "lat": 51.4360891, - "lon": -2.5646228, - "tags": { - "FIXME": "location", - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS4 127D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3781475285, - "lat": 51.4364159, - "lon": -2.5955388, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3781475286, - "lat": 51.4374263, - "lon": -2.5668935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS4 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782014286, - "lat": 52.0770360, - "lon": -0.7320180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014290, - "lat": 52.0985953, - "lon": -0.7212068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK16 149", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014296, - "lat": 52.1094590, - "lon": -0.7053110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Mail list has the old postbox listed under this reference which is built into a Victorian-era house (\"The Old Post Office\") but is now used as letterbox by the house owner. Replaced by this new postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "MK16 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014299, - "lat": 52.1099847, - "lon": -0.6986354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014301, - "lat": 52.1103599, - "lon": -0.7018442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014302, - "lat": 52.1111643, - "lon": -0.7590339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014307, - "lat": 52.1154325, - "lon": -0.7477094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782014308, - "lat": 52.1263204, - "lon": -0.7292015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK16 148", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-10-10" - } -}, -{ - "type": "node", - "id": 3782110707, - "lat": 53.6532784, - "lon": -1.7423827, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3782138032, - "lat": 53.6050567, - "lon": -2.0745950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OL16 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782138033, - "lat": 53.6029622, - "lon": -2.0903235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OL16 7", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782160868, - "lat": 53.1837389, - "lon": -2.9079055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 370D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3782405570, - "lat": 55.8766500, - "lon": -3.1548760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 94", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782405571, - "lat": 55.8777860, - "lon": -3.1440144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH20 92", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782405573, - "lat": 55.8805138, - "lon": -3.1540646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 160", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782443249, - "lat": 53.3303670, - "lon": -1.9838316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:ref": "ref not visible in ground survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK23 20D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3782573556, - "lat": 51.7472522, - "lon": -2.2233902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-15" - } -}, -{ - "type": "node", - "id": 3782574178, - "lat": 51.7488291, - "lon": -2.2367464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574182, - "lat": 51.7489796, - "lon": -2.2529599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574197, - "lat": 51.7521069, - "lon": -2.2339970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3782574200, - "lat": 51.7651774, - "lon": -2.2055864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:30,15:24; Sa 12:30; Su off", - "drive_through": "no", - "fixme": "Previously noted as missing collection plate. There was a collection plate on 9/2/2019, but not a typical modern Royal Mail one, and very unusually it shows both am & pm collection times for Mo-Fr.", - "name": "Wick Street", - "note": "No ref, though a name is displayed, meaning this is almost certainly GL6 41, which is not obviously in the location displayed by the Royal Mail database a little further to the northeast #surveyme", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782574201, - "lat": 51.7670357, - "lon": -2.2702529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574204, - "lat": 51.7682727, - "lon": -2.2789669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2021-02-10", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782574205, - "lat": 51.7746187, - "lon": -2.2905430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL10 146", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782574284, - "lat": 51.7414677, - "lon": -2.2525763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574289, - "lat": 51.7433403, - "lon": -2.2434095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "collection_times_checked": "2015-10-11", - "drive_through": "no", - "indoor": "yes", - "note": "indoor box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782574292, - "lat": 51.7452586, - "lon": -2.2564186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574302, - "lat": 51.7494001, - "lon": -2.2353597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 112D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3782574304, - "lat": 51.7497913, - "lon": -2.2400358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574316, - "lat": 51.7511913, - "lon": -2.2448035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782574326, - "lat": 51.7804753, - "lon": -2.2862352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-03-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL10 159D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782574335, - "lat": 51.7808811, - "lon": -2.1976404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-07-11", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 56D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3782574376, - "lat": 51.7840046, - "lon": -2.1969045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "collection_times_checked": "2020-12-14", - "drive_through": "no", - "mapillary": "409001038267056", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL6 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-06-22" - } -}, -{ - "type": "node", - "id": 3782574382, - "lat": 51.7853061, - "lon": -2.2172033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "collection_times_checked": "2021-01-27", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782609126, - "lat": 54.8898248, - "lon": -1.5583365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "wall-mounted, inside the building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH3 340D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782625269, - "lat": 55.0366094, - "lon": -1.7646337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE20 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782625271, - "lat": 55.0258455, - "lon": -1.7742013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE20 277D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3782625272, - "lat": 55.0414339, - "lon": -1.7584138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3782651241, - "lat": 51.8828211, - "lon": -2.1257991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3782651252, - "lat": 51.8938417, - "lon": -2.1087770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "collection_times_checked": "2015-10-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 3783300535, - "lat": 52.3871588, - "lon": -1.5553106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "inside Tesco, by the checkouts. Indoor polycarbonate pillar box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "CV4 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3783300536, - "lat": 52.3868756, - "lon": -1.5590254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV4 215", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3783559235, - "lat": 55.4134972, - "lon": -2.5076915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD8 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3783592518, - "lat": 55.7789841, - "lon": -2.9551039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH38 69", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3783671979, - "lat": 55.6210698, - "lon": -2.8124903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1187360475550630", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2022-11-27" - } -}, -{ - "type": "node", - "id": 3783674159, - "lat": 55.2654998, - "lon": -2.2457669, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-22", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE19 372", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3783674160, - "lat": 55.1652469, - "lon": -2.0186723, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-22", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE19 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3783684449, - "lat": 55.0842416, - "lon": -1.8095241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 3783794107, - "lat": 50.2415004, - "lon": -3.8078514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3783920587, - "lat": 53.8619338, - "lon": -1.6876874, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS19 472D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3783920761, - "lat": 53.9048713, - "lon": -1.6917977, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LS21 733" - } -}, -{ - "type": "node", - "id": 3783920762, - "lat": 53.9055597, - "lon": -1.6942549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "LS21 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3784289223, - "lat": 54.9724738, - "lon": -2.7491232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 09:00", - "post_box:type": "lamp", - "ref": "CA8 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3784289227, - "lat": 54.9468504, - "lon": -2.7846633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CA6 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3784400951, - "lat": 50.8271010, - "lon": -0.1339166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3784409838, - "lat": 50.8400304, - "lon": -0.1204733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "There is a postbox sticker on this postbox which reads that from 31.12.2018 the last collection will be made at 09:00 Monday to Friday and 07:00 on Saturdays but the postbox notice has not been updated. The ref should be BN2 194D and CP should be CP1D.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 194", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3784410224, - "lat": 50.8294438, - "lon": -0.1332219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 25D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3784413414, - "lat": 50.8361237, - "lon": -0.1255234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-01-09", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN2 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3784422419, - "lat": 50.8456676, - "lon": -0.1150091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "BN2 238", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3784422833, - "lat": 50.8399627, - "lon": -0.1233716, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN2 366D" - } -}, -{ - "type": "node", - "id": 3784423074, - "lat": 52.2628478, - "lon": -0.9008880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN2 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3784424196, - "lat": 50.8361970, - "lon": -0.1363465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 266D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3784429912, - "lat": 50.8481151, - "lon": -0.1133924, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN2 226D" - } -}, -{ - "type": "node", - "id": 3784432383, - "lat": 50.8478525, - "lon": -0.1114249, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN2 237D" - } -}, -{ - "type": "node", - "id": 3784449793, - "lat": 50.8371034, - "lon": -0.1388060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 295", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3784562588, - "lat": 50.8271902, - "lon": -0.1494026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-02-11", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3784567672, - "lat": 50.8293697, - "lon": -0.1495139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 141D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3784571167, - "lat": 50.8280237, - "lon": -0.1526266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BN1 140D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3784885355, - "lat": 50.8265085, - "lon": -0.1637818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3784885356, - "lat": 50.8252750, - "lon": -0.1661931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "post_box:type": "pillar", - "ref": "BN3 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3784913557, - "lat": 50.8270917, - "lon": -0.1684757, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-19", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "post_box:type": "pillar", - "ref": "BN3 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3784916982, - "lat": 50.8282793, - "lon": -0.1981291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3785035662, - "lat": 54.7843933, - "lon": -1.4719296, - "tags": { - "amenity": "post_box", - "ref": "DH6 133" - } -}, -{ - "type": "node", - "id": 3785096825, - "lat": 54.3162695, - "lon": -2.2046781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DL8 234D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3785096826, - "lat": 54.3162913, - "lon": -2.0790376, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3785097645, - "lat": 54.5322372, - "lon": -2.5160088, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3785107122, - "lat": 54.3934244, - "lon": -2.1745587, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3786060657, - "lat": 50.8338355, - "lon": -0.1472370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN1 109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 109D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3786061927, - "lat": 50.8402268, - "lon": -0.1324158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN1 258D" - } -}, -{ - "type": "node", - "id": 3786083165, - "lat": 53.6457032, - "lon": -2.9941849, - "tags": { - "amenity": "post_box", - "ref": "PR9 80" - } -}, -{ - "type": "node", - "id": 3786084847, - "lat": 53.6460769, - "lon": -2.9893990, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR9 10" - } -}, -{ - "type": "node", - "id": 3786092418, - "lat": 53.6530127, - "lon": -2.9969375, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR9 32" - } -}, -{ - "type": "node", - "id": 3786715147, - "lat": 51.9147861, - "lon": -2.1186200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-14", - "name": "Fulbrook Close", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3786721357, - "lat": 51.9209524, - "lon": -2.1398869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3786721363, - "lat": 51.9276745, - "lon": -2.1376522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3787539260, - "lat": 53.6511046, - "lon": -3.0034056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR9 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3787992855, - "lat": 52.1551578, - "lon": -0.1867879, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG19 348" - } -}, -{ - "type": "node", - "id": 3788149861, - "lat": 50.8743312, - "lon": -1.3366978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3788154164, - "lat": 50.8748749, - "lon": -1.3419107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO31 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3788167483, - "lat": 50.9848992, - "lon": -1.3560405, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 708D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3788184335, - "lat": 50.9769119, - "lon": -1.3662758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SO50 785" - } -}, -{ - "type": "node", - "id": 3788188947, - "lat": 50.9770064, - "lon": -1.3662114, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 764", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3788189002, - "lat": 50.9745951, - "lon": -1.3667241, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 568D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789024205, - "lat": 53.8221376, - "lon": -3.0376974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3789025116, - "lat": 50.8126082, - "lon": -1.1743007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789025118, - "lat": 50.8080516, - "lon": -1.1767174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789031694, - "lat": 50.8182498, - "lon": -1.1711947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789032018, - "lat": 50.8192123, - "lon": -1.1772351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789033393, - "lat": 50.8063778, - "lon": -1.1707120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789045613, - "lat": 50.8081575, - "lon": -1.1642264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789048068, - "lat": 50.9353755, - "lon": -1.4764462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SO16 618" - } -}, -{ - "type": "node", - "id": 3789060786, - "lat": 50.9547526, - "lon": -1.4542590, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO16 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789063691, - "lat": 50.9576654, - "lon": -1.4546506, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789089933, - "lat": 50.9791586, - "lon": -1.4447532, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO52 629D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789232971, - "lat": 50.8178533, - "lon": -1.3725588, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3789233813, - "lat": 50.8945889, - "lon": -1.3435058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3790122370, - "lat": 53.8150803, - "lon": -3.0362385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY3 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3790201979, - "lat": 52.6083592, - "lon": -2.9325854, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY5 452", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3790295466, - "lat": 51.4961638, - "lon": -0.2237801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "W6 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3790307562, - "lat": 52.1364935, - "lon": -0.7053812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307569, - "lat": 52.1370716, - "lon": -0.7123128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 516D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307571, - "lat": 52.1406280, - "lon": -0.7053212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 515D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307572, - "lat": 52.1474132, - "lon": -0.7360495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK46 514D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307573, - "lat": 52.1526862, - "lon": -0.6981630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307574, - "lat": 52.1573030, - "lon": -0.7031546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK46 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307575, - "lat": 52.1579934, - "lon": -0.7019810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK46 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307576, - "lat": 52.1607537, - "lon": -0.7053689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK46 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307577, - "lat": 52.1702189, - "lon": -0.6651392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK46 406", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307579, - "lat": 52.1925490, - "lon": -0.6019101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "name": "Post Office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK43 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "s]", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790307580, - "lat": 52.1993012, - "lon": -0.6178400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK43 254D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 3790444359, - "lat": 51.3277327, - "lon": 0.8001910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME9 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3790444360, - "lat": 51.3290306, - "lon": 0.7949890, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME9 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 3790444361, - "lat": 51.3426017, - "lon": 0.7412764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 3790444362, - "lat": 51.3311566, - "lon": 0.7387551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;local knowledge;survey" - } -}, -{ - "type": "node", - "id": 3790452959, - "lat": 51.3256162, - "lon": 0.8049258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME9 117D" - } -}, -{ - "type": "node", - "id": 3790452961, - "lat": 51.3345666, - "lon": 0.7679501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "note": "An unusual box with a metal door with enamelled \"LETTER BOX\" sign screwed to it and scruffy wooden frame around the door. No royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "ME9 78", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3790452963, - "lat": 51.3332023, - "lon": 0.7334509, - "tags": { - "addr:street": "Capel Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3790456359, - "lat": 51.3388284, - "lon": 0.7756035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME9 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3790456360, - "lat": 51.3433635, - "lon": 0.7493493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:45; Su off", - "old_ref": "ME10 119", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME10 119P", - "royal_cypher": "no", - "source": "streetlevel imagery;aerial imagery;survey", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 3790456361, - "lat": 51.3433584, - "lon": 0.7493684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 17:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME10 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 3790456362, - "lat": 51.3300751, - "lon": 0.7305807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "ME10 28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 3790458557, - "lat": 51.3319227, - "lon": 0.7677681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 3790546210, - "lat": 50.8324140, - "lon": -0.1705254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN3 96", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 96D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3790546211, - "lat": 50.8312849, - "lon": -0.1694761, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN3 95", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 95D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3790546212, - "lat": 50.8302203, - "lon": -0.1683855, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-19", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3790557528, - "lat": 50.8244494, - "lon": -0.1684003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BN3 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3791445863, - "lat": 52.6852810, - "lon": 0.9344223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR19 1924D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3791445946, - "lat": 52.6889500, - "lon": 0.9321817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1946", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3791665084, - "lat": 53.2877406, - "lon": -1.7145487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "S32 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "unsigned_ref": "yes" - } -}, -{ - "type": "node", - "id": 3791893550, - "lat": 52.6682689, - "lon": 0.9488727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR19 1909", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3791894862, - "lat": 52.6689295, - "lon": 0.9529956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1920", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3791894887, - "lat": 52.6763234, - "lon": 0.9437151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1903D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3792019162, - "lat": 51.1623840, - "lon": -0.8300418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3792032309, - "lat": 51.1831769, - "lon": -0.8233544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU10 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3793112091, - "lat": 50.7590121, - "lon": -2.1216960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-02-14", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BH20 111D", - "ref:GB:uprn": "10015398092", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3793352035, - "lat": 51.9930237, - "lon": -2.1538153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL20 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3793796442, - "lat": 54.4125190, - "lon": -1.9901239, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3793841619, - "lat": 50.9857338, - "lon": -3.0480049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3794290882, - "lat": 53.6499838, - "lon": -3.0054866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR9 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3794290883, - "lat": 53.6530085, - "lon": -3.0037884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PR9 17D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3794290884, - "lat": 53.6573128, - "lon": -3.0008316, - "tags": { - "amenity": "post_box", - "ref": "PR9 81" - } -}, -{ - "type": "node", - "id": 3794290887, - "lat": 53.6572356, - "lon": -2.9971269, - "tags": { - "amenity": "post_box", - "ref": "PR9 95" - } -}, -{ - "type": "node", - "id": 3794313855, - "lat": 53.6543161, - "lon": -2.9899257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 103" - } -}, -{ - "type": "node", - "id": 3794315103, - "lat": 53.6551286, - "lon": -2.9934855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "799957587390164", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 5", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 3794323434, - "lat": 53.6527073, - "lon": -2.9925941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "386344232573214", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 1", - "survey:date": "2020-01-20" - } -}, -{ - "type": "node", - "id": 3794323435, - "lat": 53.6556033, - "lon": -2.9849231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 9", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 3794342801, - "lat": 53.6567013, - "lon": -2.9806514, - "tags": { - "amenity": "post_box", - "ref": "PR9 89" - } -}, -{ - "type": "node", - "id": 3794342805, - "lat": 53.6520608, - "lon": -2.9813478, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR9 69", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3794342812, - "lat": 53.6518405, - "lon": -2.9857196, - "tags": { - "amenity": "post_box", - "ref": "PR9 29" - } -}, -{ - "type": "node", - "id": 3794370916, - "lat": 53.6502197, - "lon": -2.9875601, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR9 59" - } -}, -{ - "type": "node", - "id": 3794399292, - "lat": 53.6495202, - "lon": -2.9917457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "209028567514170", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 121", - "survey:date": "2020-07-31" - } -}, -{ - "type": "node", - "id": 3794417243, - "lat": 52.7647407, - "lon": -0.8809109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:ref": "foi_request", - "unsigned_ref": "yes" - } -}, -{ - "type": "node", - "id": 3794504726, - "lat": 53.6480482, - "lon": -2.9821015, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR9 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3794504728, - "lat": 53.6503339, - "lon": -2.9778412, - "tags": { - "amenity": "post_box", - "ref": "PR9 62" - } -}, -{ - "type": "node", - "id": 3794504729, - "lat": 53.6500492, - "lon": -2.9731848, - "tags": { - "amenity": "post_box", - "ref": "PR9 19" - } -}, -{ - "type": "node", - "id": 3794622869, - "lat": 52.7645044, - "lon": -0.8841377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3794948916, - "lat": 52.3505346, - "lon": -1.2888930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV22 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "gps" - } -}, -{ - "type": "node", - "id": 3795558239, - "lat": 52.2830941, - "lon": -2.5137619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WR15 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3795559621, - "lat": 52.3006321, - "lon": -2.5030776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "WR15 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3795559659, - "lat": 52.3046078, - "lon": -2.5585136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "wall", - "ref": "WR15 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3795559732, - "lat": 52.3104481, - "lon": -2.5084760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:45", - "post_box:type": "wall", - "ref": "WR15 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3795560395, - "lat": 52.3205214, - "lon": -2.5252579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:45", - "note": "This box has replaced WR15 112 wall box on old post office. The ref on collection plate is probably wrong.", - "post_box:type": "lamp", - "ref": "WR15 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3795717653, - "lat": 51.8947447, - "lon": -2.1495433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-20", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3796175586, - "lat": 52.2560847, - "lon": -1.1683181, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NN11 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3796175587, - "lat": 52.2568112, - "lon": -1.1666080, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NN11 585D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3796231110, - "lat": 52.1758084, - "lon": -1.3717139, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CV47 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3796240916, - "lat": 52.1674352, - "lon": -1.3911070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV47 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3796240922, - "lat": 52.1701417, - "lon": -1.3880791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 215D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3796250959, - "lat": 52.1528736, - "lon": -1.3988241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3796254249, - "lat": 52.0904359, - "lon": -1.5082468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3796258104, - "lat": 51.9660907, - "lon": -2.0222056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL52 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3796260107, - "lat": 51.8869278, - "lon": -1.6466615, - "tags": { - "amenity": "post_box", - "note": "EVIIR hovis box has been replaced", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX7 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3796463393, - "lat": 52.7329775, - "lon": 1.3740847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:15", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR12 1227", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3796630663, - "lat": 50.3257817, - "lon": -3.7738212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ7 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3796711310, - "lat": 50.2794599, - "lon": -3.8558490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3796883692, - "lat": 51.6330280, - "lon": -0.0864745, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3797120709, - "lat": 55.9525749, - "lon": -3.2880422, - "tags": { - "amenity": "post_box", - "ref": "EH4 550", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3797268824, - "lat": 52.2483741, - "lon": -2.5735493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "WR15 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3797269083, - "lat": 52.2654818, - "lon": -2.5519926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "note": "This box may have the wrong collection plate as it has the same ref as another box. It may be WR15 93", - "post_box:type": "lamp", - "ref": "WR15 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3797518316, - "lat": 52.3205000, - "lon": -2.5830799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "WR15 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3797518569, - "lat": 52.3280133, - "lon": -2.5695485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "post_box:type": "wall", - "ref": "WR15 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3797953631, - "lat": 53.6476787, - "lon": -2.9703217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "292669739061626", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 22", - "survey:date": "2020-06-15" - } -}, -{ - "type": "node", - "id": 3798001495, - "lat": 53.6474269, - "lon": -2.9644237, - "tags": { - "amenity": "post_box", - "ref": "PR9 116" - } -}, -{ - "type": "node", - "id": 3798294096, - "lat": 51.7136166, - "lon": -0.8439101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294097, - "lat": 51.7190894, - "lon": -0.8422277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294098, - "lat": 51.7194411, - "lon": -0.8509086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294099, - "lat": 51.7218509, - "lon": -0.8321660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294100, - "lat": 51.7219065, - "lon": -0.8443845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294101, - "lat": 51.7222362, - "lon": -0.8278238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294102, - "lat": 51.7225301, - "lon": -0.8395714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294103, - "lat": 51.7238667, - "lon": -0.8315003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294104, - "lat": 51.7257705, - "lon": -0.8336888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Inside Tesco store.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 129", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294105, - "lat": 51.7272681, - "lon": -0.8334830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294106, - "lat": 51.7307038, - "lon": -0.8327597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294107, - "lat": 51.7313472, - "lon": -0.8280103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP27 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294109, - "lat": 51.7362261, - "lon": -0.8328346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798294110, - "lat": 51.7393744, - "lon": -0.8219082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-22" - } -}, -{ - "type": "node", - "id": 3798297666, - "lat": 52.3620666, - "lon": -1.2929801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CV22 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3798621385, - "lat": 51.5004079, - "lon": -0.1878328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3798686722, - "lat": 52.3646509, - "lon": -1.2961596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "ref": "CV22 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3798686723, - "lat": 52.3658614, - "lon": -1.2993498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:ref": "CV22 51", - "note": "Post Hoc website says that Royal Mail data indicates CV22 51 here but ref on box is CV22 214D as of July 2016", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3798711677, - "lat": 52.3568700, - "lon": -1.3054334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CV22 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3798711683, - "lat": 52.3607857, - "lon": -1.3073003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "ref": "CV22 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3798741545, - "lat": 52.3875854, - "lon": -1.2566626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "fixme": "Approximate location inside store", - "indoor": "yes", - "note": "Mo-Fr collection time not visible today 08/11/17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "CV21 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3798749580, - "lat": 54.7340369, - "lon": -5.8284736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT38 2" - } -}, -{ - "type": "node", - "id": 3799071769, - "lat": 53.6533287, - "lon": -2.9718950, - "tags": { - "amenity": "post_box", - "ref": "PR9 15" - } -}, -{ - "type": "node", - "id": 3799081259, - "lat": 53.6551720, - "lon": -2.9746112, - "tags": { - "amenity": "post_box", - "ref": "PR9 127" - } -}, -{ - "type": "node", - "id": 3799168495, - "lat": 52.4490436, - "lon": -1.7941361, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B92 532", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 3799199121, - "lat": 53.6624126, - "lon": -2.9658154, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR9 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3799308498, - "lat": 53.6657276, - "lon": -2.9554007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "172370201468647", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 140", - "survey:date": "2020-04-21" - } -}, -{ - "type": "node", - "id": 3799381888, - "lat": 55.8810685, - "lon": -3.7604595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 50D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3799456529, - "lat": 55.8919091, - "lon": -3.7011431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3799456532, - "lat": 55.8933663, - "lon": -3.6965220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3799456540, - "lat": 55.8973013, - "lon": -3.6910862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 35D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3799456544, - "lat": 55.8975354, - "lon": -3.7086913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 39D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3799456547, - "lat": 55.8976353, - "lon": -3.6999563, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 38D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3799457362, - "lat": 55.9014645, - "lon": -3.7106678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 32D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3799457363, - "lat": 55.9031672, - "lon": -3.7008813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 31D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3799651017, - "lat": 51.6069152, - "lon": -2.1719906, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL8 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3799847359, - "lat": 52.7257971, - "lon": 0.6420988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3800909722, - "lat": 50.8507435, - "lon": -1.2817104, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO31 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3800949059, - "lat": 50.8122375, - "lon": -1.3709978, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO45 464D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3800952492, - "lat": 50.8076145, - "lon": -1.3679582, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3801236318, - "lat": 52.7573524, - "lon": 1.2709606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3801400067, - "lat": 53.8115690, - "lon": -1.6780452, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LS28 668D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3801927123, - "lat": 50.3073333, - "lon": -3.8370905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3801927124, - "lat": 50.3508507, - "lon": -3.9833573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 608D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3801927125, - "lat": 50.3433350, - "lon": -3.8793998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "note": "Post box slot blocked in August 2018. Box no longer in Royal Mail list (Feb 2022) so likely to be disused:amenity. Suggest a survey to confirm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL21 700", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3801927126, - "lat": 50.3484550, - "lon": -4.0010836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 609D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3801927127, - "lat": 50.3515201, - "lon": -3.9262551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3802918139, - "lat": 53.5162425, - "lon": -2.8385110, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "L39 17" - } -}, -{ - "type": "node", - "id": 3803562659, - "lat": 53.6799176, - "lon": -2.9418548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PR9 144" - } -}, -{ - "type": "node", - "id": 3803562660, - "lat": 53.6772867, - "lon": -2.9512211, - "tags": { - "amenity": "post_box", - "ref": "PR9 170" - } -}, -{ - "type": "node", - "id": 3803562661, - "lat": 53.6750793, - "lon": -2.9484115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2179338195530635", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR9 42", - "survey:date": "2020-03-08" - } -}, -{ - "type": "node", - "id": 3803562662, - "lat": 53.6738935, - "lon": -2.9566863, - "tags": { - "amenity": "post_box", - "ref": "PR9 120" - } -}, -{ - "type": "node", - "id": 3803562663, - "lat": 53.6762492, - "lon": -2.9635675, - "tags": { - "amenity": "post_box", - "ref": "PR9 112" - } -}, -{ - "type": "node", - "id": 3803562664, - "lat": 53.6712784, - "lon": -2.9654783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 164" - } -}, -{ - "type": "node", - "id": 3803562665, - "lat": 53.6721509, - "lon": -2.9732138, - "tags": { - "amenity": "post_box", - "ref": "PR9 141" - } -}, -{ - "type": "node", - "id": 3803573479, - "lat": 53.6686170, - "lon": -2.9745710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "539651290752109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR9 23", - "survey:date": "2020-08-06" - } -}, -{ - "type": "node", - "id": 3803573491, - "lat": 53.6680345, - "lon": -2.9708273, - "tags": { - "amenity": "post_box", - "ref": "PR9 82" - } -}, -{ - "type": "node", - "id": 3803573505, - "lat": 53.6678594, - "lon": -2.9627707, - "tags": { - "amenity": "post_box", - "ref": "PR9 159" - } -}, -{ - "type": "node", - "id": 3803573506, - "lat": 53.6661946, - "lon": -2.9595664, - "tags": { - "amenity": "post_box", - "ref": "PR9 136" - } -}, -{ - "type": "node", - "id": 3803573507, - "lat": 53.6687348, - "lon": -2.9487186, - "tags": { - "amenity": "post_box", - "ref": "PR9 124" - } -}, -{ - "type": "node", - "id": 3803573508, - "lat": 53.6641200, - "lon": -2.9541228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR9 53" - } -}, -{ - "type": "node", - "id": 3803589008, - "lat": 53.6634665, - "lon": -2.9756513, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR9 74" - } -}, -{ - "type": "node", - "id": 3803594779, - "lat": 53.6633943, - "lon": -2.9723471, - "tags": { - "amenity": "post_box", - "ref": "PR9 51" - } -}, -{ - "type": "node", - "id": 3803594781, - "lat": 53.6605134, - "lon": -2.9718746, - "tags": { - "amenity": "post_box", - "ref": "PR9 41" - } -}, -{ - "type": "node", - "id": 3803594782, - "lat": 53.6608693, - "lon": -2.9780390, - "tags": { - "amenity": "post_box", - "ref": "PR9 49" - } -}, -{ - "type": "node", - "id": 3803595776, - "lat": 53.6567828, - "lon": -2.9695771, - "tags": { - "amenity": "post_box", - "ref": "PR9 131" - } -}, -{ - "type": "node", - "id": 3803595777, - "lat": 53.6540165, - "lon": -2.9653377, - "tags": { - "amenity": "post_box", - "ref": "PR9 75" - } -}, -{ - "type": "node", - "id": 3803597302, - "lat": 53.6424694, - "lon": -2.9734808, - "tags": { - "amenity": "post_box", - "ref": "PR9 117" - } -}, -{ - "type": "node", - "id": 3803904495, - "lat": 56.2964788, - "lon": -3.6908081, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH3 55D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3803996210, - "lat": 52.5306150, - "lon": -1.7366188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B76 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3803996211, - "lat": 52.5335828, - "lon": -1.7373833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B76 236", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804011523, - "lat": 56.3735841, - "lon": -3.8431919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH7 6D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3804031571, - "lat": 55.9113174, - "lon": -3.2767650, - "tags": { - "amenity": "post_box", - "ref": "EH14 403D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804031582, - "lat": 55.9120842, - "lon": -3.2705613, - "tags": { - "amenity": "post_box", - "ref": "EH14 276", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804057567, - "lat": 56.3701627, - "lon": -3.8404698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3804057574, - "lat": 56.3712340, - "lon": -3.8437792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH7 7", - "royal_cypher": "scottish_crown", - "source": "mapillary;survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3804057581, - "lat": 56.3723636, - "lon": -3.8477860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH7 67D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3804063126, - "lat": 52.4900145, - "lon": -1.7074203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B46 983", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804063127, - "lat": 52.4924496, - "lon": -1.7081486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B46 1025", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804063128, - "lat": 52.5018507, - "lon": -1.7037956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B46 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804077448, - "lat": 57.6958623, - "lon": -4.1793885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV18 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804077989, - "lat": 57.6890208, - "lon": -4.1612917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV18 8D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804077991, - "lat": 52.5248914, - "lon": -1.7672600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B76 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804121970, - "lat": 57.6998133, - "lon": -4.1409016, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804121971, - "lat": 57.6884388, - "lon": -4.1678180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV18 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804266933, - "lat": 50.9470263, - "lon": -1.4475744, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 771D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3804271311, - "lat": 50.9416842, - "lon": -1.4441935, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 700D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804271483, - "lat": 50.9397237, - "lon": -1.4401152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 115D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3804273668, - "lat": 50.9406169, - "lon": -1.4299979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804281375, - "lat": 50.9388034, - "lon": -1.4245436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 686D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804284076, - "lat": 50.9372957, - "lon": -1.4136820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 202D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3804286205, - "lat": 51.4169892, - "lon": -2.2503787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN13 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804286276, - "lat": 50.9397422, - "lon": -1.4092778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804290999, - "lat": 50.9453197, - "lon": -1.4071971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 683D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804306497, - "lat": 50.9881182, - "lon": -1.3737808, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 716", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804338092, - "lat": 51.4144716, - "lon": -2.2523568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN13 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3804338397, - "lat": 51.4224638, - "lon": -2.2390026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN13 280", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3804668718, - "lat": 51.6939597, - "lon": -4.9294731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA72 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804670559, - "lat": 51.6690142, - "lon": -4.7018522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA70 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804670560, - "lat": 51.6705056, - "lon": -4.7041611, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-01", - "check_date:collection_times": "2022-08-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA70 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804670561, - "lat": 51.6705239, - "lon": -4.7003108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA70 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804670562, - "lat": 51.6714169, - "lon": -4.6981362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA70 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804670563, - "lat": 51.6714842, - "lon": -4.6982396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "hexagonal shape", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "SA70 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804691978, - "lat": 51.6737703, - "lon": -4.9170386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA71 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804691979, - "lat": 51.6739209, - "lon": -4.9216597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA71 56D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804691980, - "lat": 51.6741922, - "lon": -4.9093539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SA71 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804691981, - "lat": 51.6748091, - "lon": -4.9255455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "Reference covered by an immoveable sticker.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804691985, - "lat": 51.6755617, - "lon": -4.9158597, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-13", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA71 63", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804691988, - "lat": 51.6780992, - "lon": -4.9174439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SA71 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-24" - } -}, -{ - "type": "node", - "id": 3804710985, - "lat": 51.6739874, - "lon": -4.7021307, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-10", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA70 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3804710986, - "lat": 51.6750839, - "lon": -4.7078921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA70 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 3804710988, - "lat": 51.6780408, - "lon": -4.7084259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA70 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 3804771930, - "lat": 51.8532337, - "lon": -4.3060831, - "tags": { - "amenity": "post_box", - "collection_plate": "WCP2", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA31 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 3804771933, - "lat": 51.8550375, - "lon": -4.3079281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA31 558D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 3804771936, - "lat": 51.8563827, - "lon": -4.3105446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA31 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 3804771937, - "lat": 51.8564865, - "lon": -4.3078529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "SA31 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-25" - } -}, -{ - "type": "node", - "id": 3805310520, - "lat": 51.4151060, - "lon": 0.4305927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3805907274, - "lat": 56.6189605, - "lon": -3.8682927, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-03", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PH15 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3806506557, - "lat": 50.2740007, - "lon": -3.8563050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3806833053, - "lat": 51.3643162, - "lon": 0.7349569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;aerial imagery;survey", - "source_1": "survey", - "survey:date": "2023-10-27" - } -}, -{ - "type": "node", - "id": 3806839142, - "lat": 51.3585944, - "lon": 0.7425641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME10 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-10-27" - } -}, -{ - "type": "node", - "id": 3806839144, - "lat": 51.3739128, - "lon": 0.7317856, - "tags": { - "addr:street": "Grovehurst Road", - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 86D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 3806841826, - "lat": 51.3768492, - "lon": 0.7228486, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME9 130D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-12" - } -}, -{ - "type": "node", - "id": 3806841827, - "lat": 51.3855966, - "lon": 0.6574900, - "tags": { - "addr:street": "Poot Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME9 43" - } -}, -{ - "type": "node", - "id": 3806842119, - "lat": 51.3520678, - "lon": 0.7317767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "ME10 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 3806842120, - "lat": 51.3513313, - "lon": 0.7404495, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME10 122", - "royal_cypher": "no", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 3807438735, - "lat": 56.2952223, - "lon": -3.7102945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH3 40D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3807438753, - "lat": 56.2962225, - "lon": -3.7069700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH3 1", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3807438754, - "lat": 56.2962270, - "lon": -3.7069503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH3 2", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3808122220, - "lat": 51.5168453, - "lon": -0.1811941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "collection_times_checked": "2015-10-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 71D;W2 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3808221280, - "lat": 51.3604265, - "lon": -2.2675609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3808301058, - "lat": 51.3619363, - "lon": 0.5954893, - "tags": { - "addr:street": "Salisbury Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME8 371D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3808331558, - "lat": 51.3561667, - "lon": 0.6046666, - "tags": { - "addr:street": "Harvesters Close", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME8 74D" - } -}, -{ - "type": "node", - "id": 3808647747, - "lat": 50.2419838, - "lon": -3.8590825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ7 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3809311229, - "lat": 50.5360453, - "lon": -4.4299777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Post Office", - "post_box:type": "wall", - "ref": "PL14 113" - } -}, -{ - "type": "node", - "id": 3809593538, - "lat": 55.9966361, - "lon": -3.7422142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3809725157, - "lat": 55.8751805, - "lon": -4.2815228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G12 238", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3810230604, - "lat": 51.4363309, - "lon": -0.0906672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3810333457, - "lat": 55.9898912, - "lon": -3.7259436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "FK2 96D" - } -}, -{ - "type": "node", - "id": 3810423557, - "lat": 51.4314500, - "lon": 0.5017822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 428D" - } -}, -{ - "type": "node", - "id": 3810423658, - "lat": 51.4535558, - "lon": 0.4959739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME3 139" - } -}, -{ - "type": "node", - "id": 3810423659, - "lat": 51.4451676, - "lon": 0.4962999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 125" - } -}, -{ - "type": "node", - "id": 3810701795, - "lat": 51.7317623, - "lon": -2.2278243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3810701806, - "lat": 51.7365881, - "lon": -2.2284431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3810707743, - "lat": 51.7407833, - "lon": -2.2225592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3810708157, - "lat": 51.7462379, - "lon": -2.2450307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3811575638, - "lat": 53.0575916, - "lon": -2.0492348, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3811639173, - "lat": 50.8367404, - "lon": -0.7802890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 1681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3811643766, - "lat": 50.8387062, - "lon": -0.7787146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "note": "one slot meter", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO19 3671;PO19 3672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3811645203, - "lat": 50.8402233, - "lon": -0.7782824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "meter", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO19 5802;PO19 5801", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3811695675, - "lat": 51.4297522, - "lon": -2.6275082, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3811695676, - "lat": 51.4301799, - "lon": -2.6232539, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3811695677, - "lat": 51.4322203, - "lon": -2.6269063, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3811695678, - "lat": 51.4324732, - "lon": -2.6223059, - "tags": { - "amenity": "post_box", - "collection_plate": "Mo-Fr 09:00;Sa 07:00", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "note": "Rare Edward Vlll pillar box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS3 57", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3811695679, - "lat": 51.4372334, - "lon": -2.6126986, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS3 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3811695680, - "lat": 51.4388434, - "lon": -2.6101353, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 1045D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3811695681, - "lat": 51.4404396, - "lon": -2.6050290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS3 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3812517617, - "lat": 50.6366838, - "lon": -4.3608422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3812871883, - "lat": 51.4661714, - "lon": -2.1147972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 195D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3812890837, - "lat": 51.4702131, - "lon": -2.1108481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-10-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 68D" - } -}, -{ - "type": "node", - "id": 3813239575, - "lat": 53.0696626, - "lon": -2.0421931, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3813740830, - "lat": 55.9866792, - "lon": -4.3077668, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3813955388, - "lat": 50.8209237, - "lon": -0.1345052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3813955389, - "lat": 50.8233494, - "lon": -0.1309746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN2 211D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3813955390, - "lat": 50.8216752, - "lon": -0.1273357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN2 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3813955391, - "lat": 50.8207980, - "lon": -0.1256397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "old_ref": "BN2 46", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 46D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3813955392, - "lat": 50.8193452, - "lon": -0.1237762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3813955393, - "lat": 50.8201823, - "lon": -0.1215381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3813955394, - "lat": 50.8192436, - "lon": -0.1185367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 309", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3813955395, - "lat": 50.8241507, - "lon": -0.1228993, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN2 207D" - } -}, -{ - "type": "node", - "id": 3814400368, - "lat": 51.4715425, - "lon": -0.4876233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "indoor": "yes", - "level": "1", - "post_box:type": "pillar", - "ref": "TW6 1151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3814679630, - "lat": 55.8997730, - "lon": -3.6842358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 81D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3816303244, - "lat": 50.8439779, - "lon": -0.1308747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 260" - } -}, -{ - "type": "node", - "id": 3816343018, - "lat": 57.1537373, - "lon": -2.2774467, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 3816762905, - "lat": 54.6555135, - "lon": -1.6562251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 2" - } -}, -{ - "type": "node", - "id": 3816783172, - "lat": 54.6656659, - "lon": -1.6712628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "post_box:type": "wall", - "ref": "DL14 32", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3817110988, - "lat": 54.6656815, - "lon": -1.6743214, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL14 70", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3817257139, - "lat": 54.6650644, - "lon": -1.6778181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DL14 17D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3817362203, - "lat": 55.4985374, - "lon": -1.6384188, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 133" - } -}, -{ - "type": "node", - "id": 3817419586, - "lat": 54.6632863, - "lon": -1.6748713, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DL14 240;DL14 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817622874, - "lat": 50.8269741, - "lon": -0.1555224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3817622875, - "lat": 50.8274599, - "lon": -0.1578546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "post_box:type": "pillar", - "ref": "BN3 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3817622877, - "lat": 50.8267212, - "lon": -0.1618511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817622878, - "lat": 50.8295353, - "lon": -0.1641256, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "BN3 53", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817622879, - "lat": 50.8273887, - "lon": -0.1668153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:00", - "post_box:type": "meter", - "ref": "BN3 361", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3817756202, - "lat": 51.5027948, - "lon": -2.0982091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "collection_times_checked": "2015-11-04", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN15 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817756203, - "lat": 51.5139352, - "lon": -2.0768996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-11-04", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN15 291D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817808950, - "lat": 51.5056416, - "lon": -2.0741860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-11-04", - "mapillary": "637676060904047", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN15 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 3817818781, - "lat": 50.8444489, - "lon": -0.7793955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO19 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817823108, - "lat": 50.8527063, - "lon": -0.7807875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817830962, - "lat": 50.8551209, - "lon": -0.7710645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO19 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817835852, - "lat": 50.8547924, - "lon": -0.7759891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3817839308, - "lat": 50.8577369, - "lon": -0.7830004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817843757, - "lat": 50.8505451, - "lon": -0.7798796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817846872, - "lat": 50.8358856, - "lon": -0.8020870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817846875, - "lat": 50.8347642, - "lon": -0.8001155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817868523, - "lat": 50.8401960, - "lon": -0.7863867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 142", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3817871800, - "lat": 50.8367033, - "lon": -0.7882454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3817875957, - "lat": 50.8380330, - "lon": -0.7699662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3817876831, - "lat": 50.8399860, - "lon": -0.7702827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3818004468, - "lat": 53.2689715, - "lon": -0.8374422, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3818550156, - "lat": 52.9078027, - "lon": -1.5273445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE3 67D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3818682006, - "lat": 54.6591549, - "lon": -1.6759164, - "tags": { - "amenity": "post_box", - "ref": "DL14 150" - } -}, -{ - "type": "node", - "id": 3818749554, - "lat": 50.8434997, - "lon": -0.7653654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3818749874, - "lat": 50.8471625, - "lon": -0.7670780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO19 368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3818758261, - "lat": 50.8494483, - "lon": -0.7177911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO20 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3818840181, - "lat": 60.2158215, - "lon": -1.2977735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3819688710, - "lat": 51.5159526, - "lon": -0.0460395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 57;E1 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3819688711, - "lat": 51.5150752, - "lon": -0.0584648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 22;E1 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3819714912, - "lat": 51.7587925, - "lon": 0.5403939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3819714913, - "lat": 51.7613480, - "lon": 0.5391346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3819714914, - "lat": 51.7652560, - "lon": 0.5505292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3819714915, - "lat": 51.8095818, - "lon": 0.6506240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa-Su off", - "note": "Franked mail only" - } -}, -{ - "type": "node", - "id": 3819714916, - "lat": 51.7576399, - "lon": 0.5440121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3819758392, - "lat": 53.2831688, - "lon": -0.8255838, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3819813744, - "lat": 53.2540909, - "lon": -0.8410413, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3820744839, - "lat": 51.7761452, - "lon": 0.5956614, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3821188127, - "lat": 51.9925890, - "lon": 0.3383345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3821188130, - "lat": 51.9889024, - "lon": 0.3021096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB10 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3821231208, - "lat": 51.9913241, - "lon": 0.2862836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3822028485, - "lat": 51.7603304, - "lon": 0.5351234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3822825349, - "lat": 50.3912141, - "lon": -3.6649440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3822862848, - "lat": 52.7010153, - "lon": 1.5705466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3822960241, - "lat": 52.3577746, - "lon": -1.2869493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:geometry": "gps" - } -}, -{ - "type": "node", - "id": 3823077409, - "lat": 52.3437670, - "lon": -1.2904868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "Warwickshire CC Aerial Imagery 2013" - } -}, -{ - "type": "node", - "id": 3823077413, - "lat": 52.3526871, - "lon": -1.3025102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "gps" - } -}, -{ - "type": "node", - "id": 3823077418, - "lat": 52.3543020, - "lon": -1.3109788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "gps" - } -}, -{ - "type": "node", - "id": 3823656373, - "lat": 51.4281058, - "lon": -2.6690679, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS41 567D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3823656374, - "lat": 51.4423680, - "lon": -2.6295572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 10:30", - "post_box:type": "wall", - "ref": "BS3 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3823668680, - "lat": 51.9955004, - "lon": 0.3181975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB10 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3824129881, - "lat": 51.5259928, - "lon": -0.9862137, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-17", - "post_box:type": "pillar", - "ref": "RG9 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3824129903, - "lat": 51.5370837, - "lon": -1.0032048, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG9 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824141678, - "lat": 51.4884308, - "lon": -0.9372505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 08:45", - "post_box:type": "lamp", - "ref": "RG4 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824151989, - "lat": 51.5136694, - "lon": -0.9227240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG9 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3824502413, - "lat": 51.5353069, - "lon": -0.9534905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG9 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824513658, - "lat": 51.6149120, - "lon": -0.9300207, - "tags": { - "amenity": "post_box", - "note": "Yes it's a little way from the road in the grassy area!", - "post_box:type": "lamp", - "ref": "RG9 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824513659, - "lat": 51.6256025, - "lon": -0.9403842, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG9 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824513660, - "lat": 51.6338132, - "lon": -0.9687396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX49 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824513661, - "lat": 51.6418622, - "lon": -0.9964476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX49 534D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824517655, - "lat": 51.7537406, - "lon": -1.0920177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX33 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3824674760, - "lat": 51.8585111, - "lon": -1.1157496, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX25 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824710558, - "lat": 51.9518274, - "lon": -1.3377168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "OX25 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824710559, - "lat": 51.9536379, - "lon": -1.3328359, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX25 837", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824719569, - "lat": 51.8369134, - "lon": -1.5344366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX29 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824745111, - "lat": 51.6445675, - "lon": -1.5054864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824853057, - "lat": 51.4589974, - "lon": -2.1167540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824853058, - "lat": 51.4609226, - "lon": -2.1099629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824853059, - "lat": 51.4634400, - "lon": -2.1174215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824853060, - "lat": 51.4654683, - "lon": -2.1189464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN15 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3824853061, - "lat": 51.4681592, - "lon": -2.1174919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-11-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3824856451, - "lat": 56.2138125, - "lon": -5.6577494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "PA34 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3825113469, - "lat": 55.0326430, - "lon": -1.4318504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE30 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3825395076, - "lat": 50.8441071, - "lon": -2.2371286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 166D", - "ref:GB:uprn": "10015395799" - } -}, -{ - "type": "node", - "id": 3825395077, - "lat": 50.8405992, - "lon": -2.2361090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT11 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3825858873, - "lat": 51.2160703, - "lon": -1.4991901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3826349995, - "lat": 51.7563061, - "lon": 0.5248359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM3 448D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3826443838, - "lat": 51.5824138, - "lon": 0.4229344, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 3826443839, - "lat": 51.5824131, - "lon": 0.4229589, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 3826976790, - "lat": 56.2498116, - "lon": -5.6536109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "PA34 23D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3827592892, - "lat": 51.5733579, - "lon": -1.2003699, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX11 1108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3828278858, - "lat": 54.6614455, - "lon": -1.6758215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL14 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3828278859, - "lat": 54.6644603, - "lon": -1.6799347, - "tags": { - "amenity": "post_box", - "ref": "DL14 17" - } -}, -{ - "type": "node", - "id": 3828278860, - "lat": 54.6618201, - "lon": -1.6814154, - "tags": { - "amenity": "post_box", - "ref": "DL14 4" - } -}, -{ - "type": "node", - "id": 3828278862, - "lat": 54.6607555, - "lon": -1.6840444, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL14 13" - } -}, -{ - "type": "node", - "id": 3828280568, - "lat": 54.6575313, - "lon": -1.6806937, - "tags": { - "amenity": "post_box", - "ref": "DL14 666" - } -}, -{ - "type": "node", - "id": 3828371303, - "lat": 54.6459080, - "lon": -1.6852061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 187" - } -}, -{ - "type": "node", - "id": 3828387908, - "lat": 54.6518577, - "lon": -1.6953759, - "tags": { - "amenity": "post_box", - "ref": "DL14 185" - } -}, -{ - "type": "node", - "id": 3828414593, - "lat": 54.6552006, - "lon": -1.7019146, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL14 26" - } -}, -{ - "type": "node", - "id": 3828414604, - "lat": 54.6562803, - "lon": -1.6857327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 143" - } -}, -{ - "type": "node", - "id": 3828446804, - "lat": 54.6504781, - "lon": -1.6855680, - "tags": { - "amenity": "post_box", - "ref": "DL14 213" - } -}, -{ - "type": "node", - "id": 3828847980, - "lat": 54.6413765, - "lon": -1.6926841, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/3540310", - "ref": "DL14 58" - } -}, -{ - "type": "node", - "id": 3828910857, - "lat": 55.6222131, - "lon": -4.6536874, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3828916067, - "lat": 55.6259113, - "lon": -4.6319963, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3829086304, - "lat": 54.6378297, - "lon": -1.7018031, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL14 36", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3829574349, - "lat": 55.9545189, - "lon": -3.2940830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH4 476", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3829585058, - "lat": 55.9589105, - "lon": -3.1832870, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-24", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH7 106", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3830459057, - "lat": 52.3492872, - "lon": -1.6513079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3830618822, - "lat": 54.6533028, - "lon": -1.7041246, - "tags": { - "amenity": "post_box", - "ref": "DL14 220" - } -}, -{ - "type": "node", - "id": 3830618844, - "lat": 54.6476312, - "lon": -1.7027050, - "tags": { - "amenity": "post_box", - "ref": "DL14 151" - } -}, -{ - "type": "node", - "id": 3830625645, - "lat": 54.6469158, - "lon": -1.6933830, - "tags": { - "amenity": "post_box", - "ref": "DL14 8" - } -}, -{ - "type": "node", - "id": 3830668466, - "lat": 54.6463921, - "lon": -1.6801198, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL14 115" - } -}, -{ - "type": "node", - "id": 3830668468, - "lat": 54.6489465, - "lon": -1.6762118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 68" - } -}, -{ - "type": "node", - "id": 3830708061, - "lat": 54.6497018, - "lon": -1.6613309, - "tags": { - "amenity": "post_box", - "ref": "DL14 49" - } -}, -{ - "type": "node", - "id": 3830708075, - "lat": 54.6506219, - "lon": -1.6653570, - "tags": { - "amenity": "post_box", - "ref": "DL14 232" - } -}, -{ - "type": "node", - "id": 3830730179, - "lat": 54.6505050, - "lon": -1.6707454, - "tags": { - "amenity": "post_box", - "ref": "DL14 175" - } -}, -{ - "type": "node", - "id": 3830730184, - "lat": 54.6523303, - "lon": -1.6705112, - "tags": { - "amenity": "post_box", - "ref": "DL14 203" - } -}, -{ - "type": "node", - "id": 3831090223, - "lat": 53.2613951, - "lon": -0.3392090, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3831195178, - "lat": 55.8948853, - "lon": -3.6853425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 76", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3831572300, - "lat": 55.9847261, - "lon": -3.4025602, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-21", - "collection_plate": "CP1D", - "collection_plate:date": "2023-11-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH30 141D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3832238257, - "lat": 50.9918893, - "lon": -1.3894871, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO53 138D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3833517713, - "lat": 51.6190010, - "lon": -3.9588965, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-16", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "drive_through": "no", - "ref": "SA1 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3833538320, - "lat": 51.6212510, - "lon": -3.9794573, - "tags": { - "amenity": "post_box", - "drive_through": "yes" - } -}, -{ - "type": "node", - "id": 3833922257, - "lat": 51.7269617, - "lon": 0.4725785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3833986058, - "lat": 54.6349274, - "lon": -1.7366720, - "tags": { - "amenity": "post_box", - "ref": "DL14 31" - } -}, -{ - "type": "node", - "id": 3833986059, - "lat": 54.6308289, - "lon": -1.7297656, - "tags": { - "amenity": "post_box", - "ref": "DL14 221" - } -}, -{ - "type": "node", - "id": 3833986060, - "lat": 54.6318502, - "lon": -1.7250822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "510342184413716", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DL14 14", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 3833986061, - "lat": 54.6287948, - "lon": -1.7269784, - "tags": { - "amenity": "post_box", - "ref": "DL14 121" - } -}, -{ - "type": "node", - "id": 3833986070, - "lat": 54.6298899, - "lon": -1.7218848, - "tags": { - "amenity": "post_box", - "ref": "DL14 250" - } -}, -{ - "type": "node", - "id": 3833986076, - "lat": 54.6314269, - "lon": -1.7188333, - "tags": { - "amenity": "post_box", - "ref": "DL14 104" - } -}, -{ - "type": "node", - "id": 3833986086, - "lat": 54.6352393, - "lon": -1.7140710, - "tags": { - "amenity": "post_box", - "ref": "DL14 74" - } -}, -{ - "type": "node", - "id": 3833986103, - "lat": 54.6378211, - "lon": -1.7121461, - "tags": { - "amenity": "post_box", - "ref": "DL14 51" - } -}, -{ - "type": "node", - "id": 3833986104, - "lat": 54.6379952, - "lon": -1.7053893, - "tags": { - "amenity": "post_box", - "ref": "DL14 217" - } -}, -{ - "type": "node", - "id": 3833997955, - "lat": 54.5343608, - "lon": -1.9525490, - "tags": { - "amenity": "post_box", - "ref": "DL12 107" - } -}, -{ - "type": "node", - "id": 3834006481, - "lat": 54.5245687, - "lon": -1.9479976, - "tags": { - "amenity": "post_box", - "ref": "DL12 79" - } -}, -{ - "type": "node", - "id": 3834015433, - "lat": 54.5625409, - "lon": -1.8877386, - "tags": { - "amenity": "post_box", - "ref": "DL12 221" - } -}, -{ - "type": "node", - "id": 3834034359, - "lat": 54.5560909, - "lon": -1.8932507, - "tags": { - "amenity": "post_box", - "ref": "DL12 201" - } -}, -{ - "type": "node", - "id": 3834198367, - "lat": 54.5404560, - "lon": -1.9405050, - "tags": { - "amenity": "post_box", - "ref": "DL12 110" - } -}, -{ - "type": "node", - "id": 3834209958, - "lat": 54.5398346, - "lon": -1.9337631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL12 171" - } -}, -{ - "type": "node", - "id": 3834273585, - "lat": 52.0816018, - "lon": -2.5294876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "395530322126364", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 3834273604, - "lat": 52.0919628, - "lon": -2.5386839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3834884061, - "lat": 50.9559345, - "lon": -0.6146315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU28 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3834884067, - "lat": 50.9583720, - "lon": -0.5980133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU28 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3835552746, - "lat": 51.9662843, - "lon": -2.1578186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL20 44D" - } -}, -{ - "type": "node", - "id": 3835600784, - "lat": 51.5798228, - "lon": 0.4166064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3835973413, - "lat": 52.4637507, - "lon": -0.7657500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3837087987, - "lat": 50.9382868, - "lon": -0.5453834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3838622536, - "lat": 54.6461078, - "lon": -1.6691709, - "tags": { - "amenity": "post_box", - "ref": "DL14 468" - } -}, -{ - "type": "node", - "id": 3838622538, - "lat": 54.6466402, - "lon": -1.6615592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 21" - } -}, -{ - "type": "node", - "id": 3838674039, - "lat": 54.6551450, - "lon": -1.6726902, - "tags": { - "amenity": "post_box", - "ref": "DL14 171" - } -}, -{ - "type": "node", - "id": 3838674043, - "lat": 54.6581809, - "lon": -1.6733427, - "tags": { - "amenity": "post_box", - "ref": "DL14 233" - } -}, -{ - "type": "node", - "id": 3838674053, - "lat": 54.6602968, - "lon": -1.6723611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL14 22" - } -}, -{ - "type": "node", - "id": 3838678074, - "lat": 54.5421540, - "lon": -1.9320318, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL12 56", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3838682551, - "lat": 54.5377516, - "lon": -1.9226055, - "tags": { - "amenity": "post_box", - "ref": "DL12 115" - } -}, -{ - "type": "node", - "id": 3839513357, - "lat": 52.2484588, - "lon": -1.7974401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B95 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3840039793, - "lat": 51.1229426, - "lon": -2.9862068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3840483990, - "lat": 54.5461029, - "lon": -1.9215087, - "tags": { - "amenity": "post_box", - "ref": "DL12 209" - } -}, -{ - "type": "node", - "id": 3840532323, - "lat": 54.5476831, - "lon": -1.9256474, - "tags": { - "amenity": "post_box", - "ref": "DL12 134" - } -}, -{ - "type": "node", - "id": 3840532324, - "lat": 54.5494075, - "lon": -1.9174770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL12 93" - } -}, -{ - "type": "node", - "id": 3840532329, - "lat": 54.5478284, - "lon": -1.9148244, - "tags": { - "amenity": "post_box", - "ref": "DL12 291" - } -}, -{ - "type": "node", - "id": 3840532330, - "lat": 54.5514987, - "lon": -1.9209154, - "tags": { - "amenity": "post_box", - "ref": "DL12 69" - } -}, -{ - "type": "node", - "id": 3840557726, - "lat": 54.5539138, - "lon": -1.9221311, - "tags": { - "amenity": "post_box", - "ref": "DL12 95" - } -}, -{ - "type": "node", - "id": 3841712785, - "lat": 50.8139569, - "lon": -0.8600305, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3841717215, - "lat": 50.8421927, - "lon": -0.8477353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO18 222D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3842354222, - "lat": 54.5476115, - "lon": -1.5871473, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL2 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3842374435, - "lat": 54.5496224, - "lon": -1.5817331, - "tags": { - "amenity": "post_box", - "ref": "DL3 95" - } -}, -{ - "type": "node", - "id": 3842412828, - "lat": 54.5399935, - "lon": -1.5976508, - "tags": { - "amenity": "post_box", - "ref": "DL3 299" - } -}, -{ - "type": "node", - "id": 3842444599, - "lat": 54.5432293, - "lon": -1.5763742, - "tags": { - "amenity": "post_box", - "ref": "DL3 467" - } -}, -{ - "type": "node", - "id": 3842457049, - "lat": 54.5390715, - "lon": -1.5904538, - "tags": { - "amenity": "post_box", - "ref": "DL3 290" - } -}, -{ - "type": "node", - "id": 3842457050, - "lat": 54.5412927, - "lon": -1.5871946, - "tags": { - "amenity": "post_box", - "ref": "DL3 283" - } -}, -{ - "type": "node", - "id": 3842458812, - "lat": 54.5378024, - "lon": -1.5831377, - "tags": { - "amenity": "post_box", - "ref": "DL3 50" - } -}, -{ - "type": "node", - "id": 3842458813, - "lat": 54.5433146, - "lon": -1.5794163, - "tags": { - "amenity": "post_box", - "ref": "DL3 244" - } -}, -{ - "type": "node", - "id": 3842621731, - "lat": 54.5396513, - "lon": -1.5799040, - "tags": { - "amenity": "post_box", - "ref": "DL3 12" - } -}, -{ - "type": "node", - "id": 3842664990, - "lat": 54.5367197, - "lon": -1.5595448, - "tags": { - "amenity": "post_box", - "ref": "DL3 132" - } -}, -{ - "type": "node", - "id": 3842673213, - "lat": 50.8604295, - "lon": -0.8483575, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3842691558, - "lat": 54.5370063, - "lon": -1.5525544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL1 100" - } -}, -{ - "type": "node", - "id": 3842691588, - "lat": 50.8551841, - "lon": -0.7981734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO19 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3842692862, - "lat": 51.4206925, - "lon": 0.7877330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 34" - } -}, -{ - "type": "node", - "id": 3842692863, - "lat": 51.4221136, - "lon": 0.7779006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3842692864, - "lat": 51.4183642, - "lon": 0.7727328, - "tags": { - "addr:street": "Rosemary Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 4D" - } -}, -{ - "type": "node", - "id": 3842692865, - "lat": 51.4157304, - "lon": 0.7478773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME11 23D" - } -}, -{ - "type": "node", - "id": 3842692867, - "lat": 51.4337388, - "lon": 0.7593889, - "tags": { - "addr:street": "Second Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 2D" - } -}, -{ - "type": "node", - "id": 3842692868, - "lat": 51.4370501, - "lon": 0.7652546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 15" - } -}, -{ - "type": "node", - "id": 3842693864, - "lat": 51.4171778, - "lon": 0.7424689, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME11 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3842693865, - "lat": 51.4366775, - "lon": 0.7570172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 56D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3842694561, - "lat": 51.4420867, - "lon": 0.7501163, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 17" - } -}, -{ - "type": "node", - "id": 3842694562, - "lat": 51.4431200, - "lon": 0.7591705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 11" - } -}, -{ - "type": "node", - "id": 3842694563, - "lat": 51.4386236, - "lon": 0.7677483, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3842694565, - "lat": 51.4348472, - "lon": 0.7624759, - "tags": { - "addr:street": "Victoria Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 53D" - } -}, -{ - "type": "node", - "id": 3842695066, - "lat": 51.4370254, - "lon": 0.7686498, - "tags": { - "addr:street": "Wellesley Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 36D" - } -}, -{ - "type": "node", - "id": 3842708247, - "lat": 50.8255660, - "lon": -0.7869618, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3842711012, - "lat": 50.8237700, - "lon": -0.7885014, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO19 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3842722189, - "lat": 50.8322039, - "lon": -0.7925891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3842768764, - "lat": 51.4403491, - "lon": 0.7644783, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 9222" - } -}, -{ - "type": "node", - "id": 3842768765, - "lat": 51.4198049, - "lon": 0.7979941, - "tags": { - "addr:street": "Minster Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3842770662, - "lat": 51.4400915, - "lon": 0.7774566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 21" - } -}, -{ - "type": "node", - "id": 3843729902, - "lat": 50.3306895, - "lon": -4.6428599, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "location approx", - "post_box:type": "wall", - "ref": "PL23 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3843729903, - "lat": 50.3576523, - "lon": -4.6927604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL24 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3843729905, - "lat": 50.3628508, - "lon": -4.6424365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL23 88", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3843729906, - "lat": 50.3406623, - "lon": -4.6571408, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-26", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL23 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3843729907, - "lat": 50.3587269, - "lon": -4.6729442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL24 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3844357551, - "lat": 51.0558024, - "lon": -2.9525419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3844441046, - "lat": 53.3543777, - "lon": -1.4972855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S7 749", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3844604656, - "lat": 54.5332502, - "lon": -1.5528888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL1 7", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3844649573, - "lat": 54.5317112, - "lon": -1.5607304, - "tags": { - "amenity": "post_box", - "ref": "DL3 81" - } -}, -{ - "type": "node", - "id": 3844704364, - "lat": 51.3151336, - "lon": -0.4315191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KT11 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3844706514, - "lat": 54.5332213, - "lon": -1.5656343, - "tags": { - "amenity": "post_box", - "ref": "DL3 58" - } -}, -{ - "type": "node", - "id": 3846417627, - "lat": 54.5337616, - "lon": -1.5879712, - "tags": { - "amenity": "post_box", - "ref": "DL3 119" - } -}, -{ - "type": "node", - "id": 3846883654, - "lat": 54.5329294, - "lon": -1.5943254, - "tags": { - "amenity": "post_box", - "ref": "DL3 300" - } -}, -{ - "type": "node", - "id": 3847020658, - "lat": 51.2702064, - "lon": 0.5088045, - "tags": { - "addr:street": "Tonbridge Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3847025357, - "lat": 51.2685709, - "lon": 0.5093556, - "tags": { - "addr:street": "Bower Place", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME16 343" - } -}, -{ - "type": "node", - "id": 3847025457, - "lat": 51.2719338, - "lon": 0.5056168, - "tags": { - "addr:street": "Cornwallis Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 126", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3847025657, - "lat": 51.2677793, - "lon": 0.4878390, - "tags": { - "addr:street": "Tonbridge Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3847025757, - "lat": 51.2574346, - "lon": 0.4839350, - "tags": { - "addr:street": "Farleigh Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME16 68D" - } -}, -{ - "type": "node", - "id": 3847025758, - "lat": 51.2635016, - "lon": 0.5131789, - "tags": { - "addr:street": "Church Street", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME15 30" - } -}, -{ - "type": "node", - "id": 3847978353, - "lat": 52.5910172, - "lon": -1.0716293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE2 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3849289257, - "lat": 51.2729068, - "lon": 0.5202799, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 269" - } -}, -{ - "type": "node", - "id": 3849289358, - "lat": 51.2738716, - "lon": 0.5229778, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 4001" - } -}, -{ - "type": "node", - "id": 3849289457, - "lat": 51.2728900, - "lon": 0.5202316, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3849289557, - "lat": 51.2738886, - "lon": 0.5230267, - "tags": { - "addr:street": "High Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 4002" - } -}, -{ - "type": "node", - "id": 3850691957, - "lat": 54.1595851, - "lon": -3.1891547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA15 131" - } -}, -{ - "type": "node", - "id": 3851306384, - "lat": 52.9072748, - "lon": -0.6369098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 07:15", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 117", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3851587578, - "lat": 55.9425660, - "lon": -3.2800102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-08-11", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "mapillary": "2309468032530339", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 309", - "source": "survey", - "survey:date": "2020-08-22" - } -}, -{ - "type": "node", - "id": 3851724646, - "lat": 51.4692857, - "lon": -0.0232819, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "drive_through": "no", - "note": "Missing collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE8 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3852650717, - "lat": 51.6144830, - "lon": -2.6483268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:40; Sa 11:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3853400900, - "lat": 50.8865081, - "lon": -1.2460110, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "note": "Inside", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO15 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3854426857, - "lat": 51.5954821, - "lon": 0.5880628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS6 266" - } -}, -{ - "type": "node", - "id": 3854949474, - "lat": 52.4216600, - "lon": -1.5347017, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3854950657, - "lat": 52.4173756, - "lon": -1.5258189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3854950731, - "lat": 52.4167869, - "lon": -1.5205832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 208D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3854979983, - "lat": 52.4123353, - "lon": -1.5209024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV1 62D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3855138899, - "lat": 52.4065001, - "lon": -1.5753708, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3855143326, - "lat": 52.4416649, - "lon": -1.5563888, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV5 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3855143335, - "lat": 52.4308328, - "lon": -1.5684546, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV5 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3855151374, - "lat": 52.4394967, - "lon": -1.5487195, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV6 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3855182957, - "lat": 52.4256077, - "lon": -1.5702191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-12-28", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV5 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3855185765, - "lat": 52.4237025, - "lon": -1.5646715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-12-30", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3855191322, - "lat": 52.4234176, - "lon": -1.5604403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 287D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3855205380, - "lat": 52.4216391, - "lon": -1.5442840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 175", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3855209300, - "lat": 52.4180214, - "lon": -1.5413416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3855212680, - "lat": 52.4193661, - "lon": -1.5339441, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 226D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3855219749, - "lat": 52.4202396, - "lon": -1.5249909, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 305", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3855273734, - "lat": 51.7958532, - "lon": 0.6436164, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3855551369, - "lat": 54.2683450, - "lon": -2.1302321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DL8 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3856113557, - "lat": 54.5386287, - "lon": -1.5706535, - "tags": { - "amenity": "post_box", - "ref": "DL3 250" - } -}, -{ - "type": "node", - "id": 3856113558, - "lat": 54.5344273, - "lon": -1.5721915, - "tags": { - "amenity": "post_box", - "ref": "DL3 66" - } -}, -{ - "type": "node", - "id": 3856113559, - "lat": 54.5347181, - "lon": -1.5603604, - "tags": { - "amenity": "post_box", - "ref": "DL3 17" - } -}, -{ - "type": "node", - "id": 3856113560, - "lat": 54.5317766, - "lon": -1.5560096, - "tags": { - "amenity": "post_box", - "ref": "DL3 25" - } -}, -{ - "type": "node", - "id": 3856113561, - "lat": 54.5289391, - "lon": -1.5658750, - "tags": { - "amenity": "post_box", - "ref": "DL3 88" - } -}, -{ - "type": "node", - "id": 3856580057, - "lat": 51.5410903, - "lon": -0.1851209, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3857381573, - "lat": 51.7028735, - "lon": -2.6711436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP16 577", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3858810263, - "lat": 51.4688850, - "lon": -0.0330315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Just inside the front garden?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3858845473, - "lat": 51.4713074, - "lon": -0.0354897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE14 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3858874494, - "lat": 51.4633278, - "lon": -0.0357837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3858874498, - "lat": 51.4639304, - "lon": -0.0396056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3859916232, - "lat": 54.1975047, - "lon": -3.2921117, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA18 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3861298745, - "lat": 51.9807681, - "lon": -2.1424264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GL20 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3861300057, - "lat": 50.8308525, - "lon": -0.7807559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 1962", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3861329716, - "lat": 51.9857816, - "lon": -2.1520072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL20 65D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3861632393, - "lat": 51.4676299, - "lon": -0.0791069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 41D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3861693991, - "lat": 54.3083524, - "lon": -2.0364723, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3862978393, - "lat": 51.3712172, - "lon": -0.4177835, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 158", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3863044422, - "lat": 51.3663638, - "lon": -0.3689661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT10 166", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3863044424, - "lat": 51.3688036, - "lon": -0.3732055, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 292D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3863049902, - "lat": 51.3587381, - "lon": -0.3791903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "KT10 167D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3863059919, - "lat": 51.3601437, - "lon": -0.3403103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3863062372, - "lat": 51.3561424, - "lon": -0.3633559, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 217", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3863064805, - "lat": 51.3672162, - "lon": -0.3532652, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 197D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3863093928, - "lat": 51.3567991, - "lon": -0.3321443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 189D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3863098416, - "lat": 51.3632701, - "lon": -0.3426418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "KT10 321D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3863104184, - "lat": 51.3616549, - "lon": -0.3279149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3863122238, - "lat": 51.3570865, - "lon": -0.3113383, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT9 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3863136560, - "lat": 51.3137468, - "lon": -0.3100165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 80", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3863404521, - "lat": 51.3122633, - "lon": -0.2431691, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT18 155", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3865212566, - "lat": 51.3297452, - "lon": 0.4478798, - "tags": { - "addr:street": "Mill Street", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME6 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3865212963, - "lat": 51.3190927, - "lon": 0.4360307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME6 152D" - } -}, -{ - "type": "node", - "id": 3865239859, - "lat": 51.3273891, - "lon": 0.4411106, - "tags": { - "addr:street": "Malling Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME6 158D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3865239860, - "lat": 51.3260328, - "lon": 0.4352982, - "tags": { - "addr:street": "St Katherine's Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME6 303" - } -}, -{ - "type": "node", - "id": 3865239861, - "lat": 51.3247930, - "lon": 0.4315467, - "tags": { - "addr:street": "Hollow Lane", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME6 182" - } -}, -{ - "type": "node", - "id": 3865239863, - "lat": 51.3290380, - "lon": 0.4318096, - "tags": { - "addr:street": "St. Benedict Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME6 416D" - } -}, -{ - "type": "node", - "id": 3865262057, - "lat": 51.3298899, - "lon": 0.4430573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME6 224" - } -}, -{ - "type": "node", - "id": 3865329215, - "lat": 51.3106264, - "lon": -0.2286272, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT18 189D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3865342870, - "lat": 51.3206442, - "lon": -0.2020225, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SM7 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3865342872, - "lat": 51.3246914, - "lon": -0.1856169, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM7 224D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3865385059, - "lat": 51.3534308, - "lon": -0.1730924, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM5 268D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3865406759, - "lat": 51.3502034, - "lon": -0.2249030, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM2 260D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 3866956868, - "lat": 52.7917517, - "lon": 1.3255600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3867226621, - "lat": 53.4174824, - "lon": -2.2131712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 412D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3867800983, - "lat": 53.4312306, - "lon": -2.1807030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3867806911, - "lat": 52.2638780, - "lon": 0.7199048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3868598781, - "lat": 50.8775668, - "lon": -1.3377426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO31 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3868936377, - "lat": 52.3579107, - "lon": -1.7795985, - "tags": { - "amenity": "post_box", - "note": "lots of stickers but no obvious collection times and a very odd ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3868936378, - "lat": 52.3377756, - "lon": -1.7438661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3869428023, - "lat": 54.5289868, - "lon": -1.5564436, - "tags": { - "amenity": "post_box", - "ref": "DL3 33" - } -}, -{ - "type": "node", - "id": 3869644161, - "lat": 50.9720706, - "lon": -1.3537794, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO50 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3869651506, - "lat": 50.9875563, - "lon": -1.3469685, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3869656644, - "lat": 50.9952355, - "lon": -1.3520372, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO50 448D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3869656857, - "lat": 50.9916940, - "lon": -1.3485115, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3870073595, - "lat": 52.7853717, - "lon": -3.8489824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "historic": "monument", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL40 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3871134997, - "lat": 51.6627607, - "lon": -0.0347042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN3 77D" - } -}, -{ - "type": "node", - "id": 3871202488, - "lat": 51.4050516, - "lon": -0.8377204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "mapillary": "1738223783293092", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG40 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-23" - } -}, -{ - "type": "node", - "id": 3872063139, - "lat": 50.9121675, - "lon": -1.4037799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 781", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3872063140, - "lat": 50.9121570, - "lon": -1.4037893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 778", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3872552956, - "lat": 54.9064363, - "lon": -1.3674507, - "tags": { - "amenity": "post_box", - "ref": "SR1 10" - } -}, -{ - "type": "node", - "id": 3872553257, - "lat": 54.9044101, - "lon": -1.3707938, - "tags": { - "amenity": "post_box", - "ref": "SR1 284" - } -}, -{ - "type": "node", - "id": 3872619367, - "lat": 54.5254585, - "lon": -1.5624071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "ref": "DL3 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3872807850, - "lat": 54.5314559, - "lon": -1.5740896, - "tags": { - "amenity": "post_box", - "ref": "DL3 11" - } -}, -{ - "type": "node", - "id": 3872807851, - "lat": 54.5322292, - "lon": -1.5795517, - "tags": { - "amenity": "post_box", - "ref": "DL3 47" - } -}, -{ - "type": "node", - "id": 3872841745, - "lat": 54.5290075, - "lon": -1.5735291, - "tags": { - "amenity": "post_box", - "ref": "DL3 28" - } -}, -{ - "type": "node", - "id": 3872860296, - "lat": 54.5230769, - "lon": -1.5733925, - "tags": { - "amenity": "post_box", - "ref": "DL3 231" - } -}, -{ - "type": "node", - "id": 3872860297, - "lat": 54.5235679, - "lon": -1.5786173, - "tags": { - "amenity": "post_box", - "ref": "DL3 284" - } -}, -{ - "type": "node", - "id": 3872886769, - "lat": 54.5270530, - "lon": -1.5938595, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL3 99" - } -}, -{ - "type": "node", - "id": 3872909293, - "lat": 54.5307471, - "lon": -1.5877128, - "tags": { - "amenity": "post_box", - "ref": "DL3 313" - } -}, -{ - "type": "node", - "id": 3872912364, - "lat": 54.5257525, - "lon": -1.5882356, - "tags": { - "amenity": "post_box", - "ref": "DL3 327" - } -}, -{ - "type": "node", - "id": 3872921459, - "lat": 54.5246890, - "lon": -1.5987238, - "tags": { - "amenity": "post_box", - "ref": "DL3 245" - } -}, -{ - "type": "node", - "id": 3872976764, - "lat": 54.5183879, - "lon": -1.5898575, - "tags": { - "amenity": "post_box", - "ref": "DL3 114" - } -}, -{ - "type": "node", - "id": 3872976797, - "lat": 54.5174526, - "lon": -1.5779979, - "tags": { - "amenity": "post_box", - "ref": "DL3 91" - } -}, -{ - "type": "node", - "id": 3873018735, - "lat": 54.5092280, - "lon": -1.5779372, - "tags": { - "amenity": "post_box", - "ref": "DL3 65" - } -}, -{ - "type": "node", - "id": 3873023868, - "lat": 54.5177392, - "lon": -1.5673597, - "tags": { - "amenity": "post_box", - "ref": "DL3 54" - } -}, -{ - "type": "node", - "id": 3873023869, - "lat": 54.5136415, - "lon": -1.5679263, - "tags": { - "amenity": "post_box", - "ref": "DL3 24" - } -}, -{ - "type": "node", - "id": 3873064795, - "lat": 54.5186149, - "lon": -1.5627188, - "tags": { - "amenity": "post_box", - "ref": "DL3 26" - } -}, -{ - "type": "node", - "id": 3873081776, - "lat": 54.5201171, - "lon": -1.5536770, - "tags": { - "amenity": "post_box", - "ref": "DL1 105" - } -}, -{ - "type": "node", - "id": 3873081777, - "lat": 54.5144031, - "lon": -1.5601312, - "tags": { - "amenity": "post_box", - "ref": "DL1 253" - } -}, -{ - "type": "node", - "id": 3873144544, - "lat": 54.5169758, - "lon": -1.5489378, - "tags": { - "amenity": "post_box", - "ref": "DL1 106" - } -}, -{ - "type": "node", - "id": 3873171436, - "lat": 54.5215050, - "lon": -1.5464588, - "tags": { - "amenity": "post_box", - "fixme": "Check location. Unlikely to be inside building", - "ref": "DL1 328" - } -}, -{ - "type": "node", - "id": 3874369971, - "lat": 54.5217928, - "lon": -1.5503908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "note": "2 parcel slots and 1 letter slot, 1 collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "bin", - "ref": "DL1 19;DL1 10" - } -}, -{ - "type": "node", - "id": 3874403871, - "lat": 54.5237964, - "lon": -1.5487541, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3874778675, - "lat": 54.5379863, - "lon": -1.5538567, - "tags": { - "amenity": "post_box", - "ref": "DL1 324" - } -}, -{ - "type": "node", - "id": 3876040626, - "lat": 54.5300247, - "lon": -1.5526154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL1 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3876050733, - "lat": 54.5303994, - "lon": -1.5463562, - "tags": { - "amenity": "post_box", - "ref": "DL1 123" - } -}, -{ - "type": "node", - "id": 3876057120, - "lat": 54.5349381, - "lon": -1.5467471, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "ref": "DL1 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3876079299, - "lat": 54.5411604, - "lon": -1.5498040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL3 4" - } -}, -{ - "type": "node", - "id": 3876249665, - "lat": 54.5465360, - "lon": -1.5434869, - "tags": { - "amenity": "post_box", - "ref": "DL1 251" - } -}, -{ - "type": "node", - "id": 3876249675, - "lat": 54.5501311, - "lon": -1.5468547, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3876367862, - "lat": 54.5117106, - "lon": -1.5406775, - "tags": { - "amenity": "post_box", - "ref": "DL1 296" - } -}, -{ - "type": "node", - "id": 3876373066, - "lat": 54.5138867, - "lon": -1.5391764, - "tags": { - "amenity": "post_box", - "ref": "DL1 29" - } -}, -{ - "type": "node", - "id": 3876401865, - "lat": 54.5158486, - "lon": -1.5291436, - "tags": { - "amenity": "post_box", - "ref": "DL1 282" - } -}, -{ - "type": "node", - "id": 3876759448, - "lat": 50.8495961, - "lon": -0.9862974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "indoor": "yes", - "opening_hours": "This postbox can be used during Tesco store opening hours plus Sunday browsing time.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 3878097285, - "lat": 51.3573830, - "lon": -0.4619354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3878878419, - "lat": 52.8703240, - "lon": 1.1089690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3878878426, - "lat": 52.8724990, - "lon": 1.2590612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3878941155, - "lat": 52.2764047, - "lon": -1.5245541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV31 207D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3879084543, - "lat": 52.6316262, - "lon": -1.6697941, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B77 1218" - } -}, -{ - "type": "node", - "id": 3879142145, - "lat": 56.0641380, - "lon": -3.2219559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-09", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY3 101D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3879888927, - "lat": 50.9208937, - "lon": -0.9470329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3879973217, - "lat": 52.6329106, - "lon": -1.6779877, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "B77 402", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3880817280, - "lat": 56.0627016, - "lon": -3.2252252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "KY3 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3880817281, - "lat": 56.0619825, - "lon": -3.2290816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "KY3 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3881209970, - "lat": 51.5549648, - "lon": -0.1007563, - "tags": { - "amenity": "post_box", - "ref": "N5 15" - } -}, -{ - "type": "node", - "id": 3881591697, - "lat": 54.5224836, - "lon": -1.5871669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DL3 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3881591698, - "lat": 54.5185866, - "lon": -1.5719383, - "tags": { - "amenity": "post_box", - "ref": "DL3 14" - } -}, -{ - "type": "node", - "id": 3881591724, - "lat": 54.5211186, - "lon": -1.5648446, - "tags": { - "amenity": "post_box", - "ref": "DL3 15" - } -}, -{ - "type": "node", - "id": 3881591728, - "lat": 54.5219146, - "lon": -1.5655000, - "tags": { - "amenity": "post_box", - "ref": "DL3 135" - } -}, -{ - "type": "node", - "id": 3881591730, - "lat": 54.5252576, - "lon": -1.5672244, - "tags": { - "amenity": "post_box", - "ref": "DL3 120" - } -}, -{ - "type": "node", - "id": 3881601690, - "lat": 54.5414282, - "lon": -1.5581239, - "tags": { - "amenity": "post_box", - "ref": "DL3 84" - } -}, -{ - "type": "node", - "id": 3881605966, - "lat": 54.5468939, - "lon": -1.5552463, - "tags": { - "amenity": "post_box", - "ref": "DL3 234" - } -}, -{ - "type": "node", - "id": 3881607271, - "lat": 54.5550245, - "lon": -1.5505400, - "tags": { - "amenity": "post_box", - "ref": "DL3 470" - } -}, -{ - "type": "node", - "id": 3881607705, - "lat": 54.5108011, - "lon": -1.5527770, - "tags": { - "amenity": "post_box", - "ref": "DL1 297" - } -}, -{ - "type": "node", - "id": 3881615373, - "lat": 54.5420575, - "lon": -1.5449246, - "tags": { - "amenity": "post_box", - "ref": "DL1 3" - } -}, -{ - "type": "node", - "id": 3881644059, - "lat": 54.5121652, - "lon": -1.5285530, - "tags": { - "amenity": "post_box", - "ref": "DL1 298" - } -}, -{ - "type": "node", - "id": 3881681627, - "lat": 54.5171473, - "lon": -1.5243865, - "tags": { - "amenity": "post_box", - "ref": "DL1 321" - } -}, -{ - "type": "node", - "id": 3881810107, - "lat": 54.5201531, - "lon": -1.5014776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "DL1 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3881870983, - "lat": 54.5195247, - "lon": -1.5074694, - "tags": { - "amenity": "post_box", - "ref": "DL1 329" - } -}, -{ - "type": "node", - "id": 3881870984, - "lat": 54.5197318, - "lon": -1.5241346, - "tags": { - "amenity": "post_box", - "ref": "DL1 259" - } -}, -{ - "type": "node", - "id": 3881878030, - "lat": 54.5160982, - "lon": -1.5351690, - "tags": { - "amenity": "post_box", - "ref": "DL1 151" - } -}, -{ - "type": "node", - "id": 3881964882, - "lat": 54.5209157, - "lon": -1.5398975, - "tags": { - "amenity": "post_box", - "ref": "DL1 13" - } -}, -{ - "type": "node", - "id": 3882001152, - "lat": 54.5196533, - "lon": -1.5427756, - "tags": { - "amenity": "post_box", - "ref": "DL1 31" - } -}, -{ - "type": "node", - "id": 3882190092, - "lat": 51.4683356, - "lon": -0.0185436, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "fixme": "Priority Postbox", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3882190097, - "lat": 51.4536855, - "lon": -0.0082892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3882257565, - "lat": 51.4423931, - "lon": 0.0013579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3882257566, - "lat": 51.4441377, - "lon": -0.0049539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3882317303, - "lat": 51.3856827, - "lon": -0.4122972, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 112D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3882323275, - "lat": 51.3797934, - "lon": -0.4036296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1319995205206596", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT12 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-24" - } -}, -{ - "type": "node", - "id": 3882324979, - "lat": 51.3780428, - "lon": -0.4011575, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3882325391, - "lat": 51.3773036, - "lon": -0.3945753, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3882338775, - "lat": 51.3783647, - "lon": -0.3889432, - "tags": { - "amenity": "post_box", - "collection_plate": "no", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KT12 329P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3882340609, - "lat": 51.3752268, - "lon": -0.3910448, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 148D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3882345456, - "lat": 51.3692185, - "lon": -0.3877004, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT12 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3882348491, - "lat": 51.3704238, - "lon": -0.3678913, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 164D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3882348645, - "lat": 51.3641391, - "lon": -0.3643776, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3883160823, - "lat": 54.5230080, - "lon": -1.5301502, - "tags": { - "amenity": "post_box", - "ref": "DL1 20" - } -}, -{ - "type": "node", - "id": 3883183948, - "lat": 52.6231601, - "lon": -1.6690623, - "tags": { - "amenity": "post_box", - "ref": "B77 1301" - } -}, -{ - "type": "node", - "id": 3883184693, - "lat": 52.6303164, - "lon": -1.6661170, - "tags": { - "amenity": "post_box", - "ref": "B77 1300" - } -}, -{ - "type": "node", - "id": 3883200028, - "lat": 54.5265393, - "lon": -1.5205433, - "tags": { - "amenity": "post_box", - "ref": "DL1 254" - } -}, -{ - "type": "node", - "id": 3883219083, - "lat": 54.5285861, - "lon": -1.5363623, - "tags": { - "amenity": "post_box", - "ref": "DL1 281" - } -}, -{ - "type": "node", - "id": 3883319329, - "lat": 52.6343093, - "lon": -1.6667796, - "tags": { - "amenity": "post_box", - "ref": "B77 26" - } -}, -{ - "type": "node", - "id": 3883321164, - "lat": 52.6359132, - "lon": -1.6604757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B77 110", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3883324161, - "lat": 52.6333804, - "lon": -1.6479477, - "tags": { - "amenity": "post_box", - "ref": "B77 194" - } -}, -{ - "type": "node", - "id": 3883329608, - "lat": 52.6132271, - "lon": -1.6202872, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B78 113" - } -}, -{ - "type": "node", - "id": 3883342013, - "lat": 52.6362579, - "lon": -1.6997706, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3883344160, - "lat": 54.5337394, - "lon": -1.5124850, - "tags": { - "amenity": "post_box", - "ref": "DL1 113" - } -}, -{ - "type": "node", - "id": 3883344162, - "lat": 54.5323872, - "lon": -1.5191958, - "tags": { - "amenity": "post_box", - "ref": "DL1 143" - } -}, -{ - "type": "node", - "id": 3883389328, - "lat": 54.5337349, - "lon": -1.5351317, - "tags": { - "amenity": "post_box", - "ref": "DL1 36" - } -}, -{ - "type": "node", - "id": 3883424796, - "lat": 54.5332477, - "lon": -1.5411280, - "tags": { - "amenity": "post_box", - "ref": "DL1 35" - } -}, -{ - "type": "node", - "id": 3883424836, - "lat": 54.5388166, - "lon": -1.5277832, - "tags": { - "amenity": "post_box", - "ref": "DL1 189" - } -}, -{ - "type": "node", - "id": 3883521212, - "lat": 54.5458885, - "lon": -1.5245758, - "tags": { - "amenity": "post_box", - "ref": "DL1 133" - } -}, -{ - "type": "node", - "id": 3883521218, - "lat": 54.5405959, - "lon": -1.5337498, - "tags": { - "amenity": "post_box", - "ref": "DL1 121" - } -}, -{ - "type": "node", - "id": 3883521226, - "lat": 54.5439424, - "lon": -1.5356806, - "tags": { - "amenity": "post_box", - "ref": "DL1 129" - } -}, -{ - "type": "node", - "id": 3883540048, - "lat": 54.5433672, - "lon": -1.5277459, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL1 285", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3883840136, - "lat": 51.6921643, - "lon": -0.5997923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840137, - "lat": 51.6942438, - "lon": -0.5991316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840142, - "lat": 51.6961004, - "lon": -0.6069478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840147, - "lat": 51.6976802, - "lon": -0.6014424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840148, - "lat": 51.6981061, - "lon": -0.6060955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840358, - "lat": 51.7002047, - "lon": -0.6167828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840359, - "lat": 51.7009167, - "lon": -0.6202872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HP5 142D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883840360, - "lat": 51.7010895, - "lon": -0.6096963, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883873672, - "lat": 51.6835702, - "lon": -0.6012816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP6 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883873673, - "lat": 51.6857789, - "lon": -0.5985809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP6 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-12-08" - } -}, -{ - "type": "node", - "id": 3883939376, - "lat": 51.4889042, - "lon": -0.7770803, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL6 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3883964979, - "lat": 51.4740038, - "lon": -0.8109526, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG10 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3883972486, - "lat": 51.4658024, - "lon": -0.8435400, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG10 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3884050792, - "lat": 56.0658098, - "lon": -3.2263490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "KY3 116D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3884124648, - "lat": 51.3719492, - "lon": -1.0912451, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG7 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3884136910, - "lat": 51.4711849, - "lon": -0.0225697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3884136915, - "lat": 51.4736407, - "lon": -0.0270320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE8 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3884137663, - "lat": 51.4775496, - "lon": -0.0210178, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3884137673, - "lat": 51.4442869, - "lon": -0.0337236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE6 17D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3884346196, - "lat": 51.0202239, - "lon": -3.0892400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 275" - } -}, -{ - "type": "node", - "id": 3884469396, - "lat": 54.5463475, - "lon": -1.5152377, - "tags": { - "amenity": "post_box", - "ref": "DL1 320" - } -}, -{ - "type": "node", - "id": 3884470560, - "lat": 54.5491596, - "lon": -1.5194746, - "tags": { - "amenity": "post_box", - "ref": "DL1 128" - } -}, -{ - "type": "node", - "id": 3885277858, - "lat": 52.8340359, - "lon": 0.5852305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3885415093, - "lat": 51.5207703, - "lon": -1.0826517, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG8 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3885429650, - "lat": 51.5733942, - "lon": -0.7763221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/marlow-2019-05-24/DSCN9517.JPG", - "post_box:manufacturer": "McDowall Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "SL7 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3885754767, - "lat": 51.0178258, - "lon": -3.0848495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TA1 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3886167357, - "lat": 52.3099710, - "lon": 1.5191575, - "tags": { - "amenity": "post_box", - "ref": "IP19 8258" - } -}, -{ - "type": "node", - "id": 3886167358, - "lat": 52.3138253, - "lon": 1.5210667, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP19 5505" - } -}, -{ - "type": "node", - "id": 3886181325, - "lat": 54.0562455, - "lon": -2.8270694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "indoor_pillar", - "ref": "LA1 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3886298822, - "lat": 53.3790425, - "lon": -1.9850160, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3886299337, - "lat": 53.3792368, - "lon": -1.9740291, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3886538926, - "lat": 52.6088287, - "lon": -1.6681237, - "tags": { - "amenity": "post_box", - "ref": "B77 129" - } -}, -{ - "type": "node", - "id": 3886538927, - "lat": 52.6008591, - "lon": -1.6708430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "ref": "B77 1215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3886538928, - "lat": 52.5991795, - "lon": -1.6842753, - "tags": { - "amenity": "post_box", - "ref": "B77 81" - } -}, -{ - "type": "node", - "id": 3886538929, - "lat": 52.6052042, - "lon": -1.6840000, - "tags": { - "amenity": "post_box", - "ref": "B77 1343" - } -}, -{ - "type": "node", - "id": 3886742203, - "lat": 55.9678630, - "lon": -3.9445314, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Kirkintilloch", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "G68 1486D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3886927068, - "lat": 51.4267134, - "lon": -0.0417528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3886927074, - "lat": 51.4260176, - "lon": -0.0515763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "3 slots labelled \"1st class & international\", \"2nd class\", \"all packets\" but only one ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "SE26 4", - "ref:duplicates": "3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3886927075, - "lat": 51.4299107, - "lon": -0.0587003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3886927076, - "lat": 51.4266998, - "lon": -0.0554092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3886927079, - "lat": 51.4257785, - "lon": -0.0455780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3887331245, - "lat": 54.0563321, - "lon": -2.8175699, - "tags": { - "amenity": "post_box", - "ref": "LA1 159" - } -}, -{ - "type": "node", - "id": 3887369061, - "lat": 52.5833290, - "lon": -1.0983237, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3887637946, - "lat": 54.0608432, - "lon": -2.8066076, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA1 158", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3887668620, - "lat": 52.8304544, - "lon": 1.3228837, - "tags": { - "amenity": "post_box", - "note": "small box set in wall", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3887911147, - "lat": 50.9044600, - "lon": -0.7809626, - "tags": { - "amenity": "post_box", - "note": "Ref is actually only marked as '77'", - "post_box:type": "wall", - "ref": "PO18 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3888060202, - "lat": 50.9955023, - "lon": -0.8529384, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3888111171, - "lat": 51.0080727, - "lon": -0.8509210, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3888111172, - "lat": 51.0087632, - "lon": -0.8431040, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3888190772, - "lat": 50.8481842, - "lon": -0.5463713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3888577747, - "lat": 51.4501988, - "lon": -0.0404354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3888578257, - "lat": 51.4545618, - "lon": -0.0373166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3888578282, - "lat": 51.4452299, - "lon": -0.0427367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3888589449, - "lat": 51.5319464, - "lon": -0.1260096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "description": "In a nook on your left as you come in from Pancras Road.", - "level": "0", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N1C 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3888591549, - "lat": 51.5361574, - "lon": -0.1166575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3889194856, - "lat": 52.8770354, - "lon": 0.6656448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 464" - } -}, -{ - "type": "node", - "id": 3889294464, - "lat": 51.4674529, - "lon": -0.0228817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3889294477, - "lat": 51.4835741, - "lon": -0.0309726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE8 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3889294480, - "lat": 51.4771390, - "lon": -0.0258098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE8 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3889294481, - "lat": 51.4833227, - "lon": -0.0372069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE8 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3889294482, - "lat": 51.4591435, - "lon": -0.0311373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3889294483, - "lat": 51.4628612, - "lon": -0.0214287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3889294487, - "lat": 51.4571061, - "lon": -0.0246503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 7", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3889294493, - "lat": 51.4879344, - "lon": -0.0343799, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "drive_through": "no", - "note": "No collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3889294496, - "lat": 51.4803163, - "lon": -0.0317608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "collection plate present on 5 Mar 2023 but holder is damaged so may not last long", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "cipher" - } -}, -{ - "type": "node", - "id": 3889294500, - "lat": 51.4563988, - "lon": -0.0264085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE4 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3889304771, - "lat": 51.4587080, - "lon": -0.0437572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3889529803, - "lat": 53.8781148, - "lon": -1.0441128, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO19 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3889530296, - "lat": 53.8803047, - "lon": -1.0438929, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 511D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3889551163, - "lat": 50.9393844, - "lon": -1.0019035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3889551164, - "lat": 50.9434758, - "lon": -0.9977852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3889803572, - "lat": 51.8677400, - "lon": -2.1120501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "collection_times_checked": "2015-12-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 351", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3889803580, - "lat": 51.8788498, - "lon": -2.0979073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2015-12-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3890040370, - "lat": 55.7503400, - "lon": -2.0019740, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "TD15 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3890200450, - "lat": 50.9853440, - "lon": -0.8840263, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3890828042, - "lat": 51.4749345, - "lon": -0.0266607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3890917644, - "lat": 51.4899266, - "lon": -0.0418560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891094503, - "lat": 51.4512550, - "lon": -0.0134104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891094512, - "lat": 51.4493587, - "lon": 0.0007213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891178352, - "lat": 56.3837394, - "lon": -3.3947113, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 146D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3891178458, - "lat": 56.4015441, - "lon": -3.4179995, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 23D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3891178459, - "lat": 56.4066451, - "lon": -3.4183375, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "PH2 57D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3891178463, - "lat": 56.3971564, - "lon": -3.4187331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Co. Falkirk", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 15D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3891180448, - "lat": 56.3489370, - "lon": -3.4042706, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 142D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 3891555853, - "lat": 51.0125665, - "lon": -3.6501180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX36 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3891570555, - "lat": 51.4570158, - "lon": 0.0090328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE12 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3891574559, - "lat": 51.4502382, - "lon": 0.0230626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891574560, - "lat": 51.4584840, - "lon": -0.0000720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891574563, - "lat": 51.4520105, - "lon": 0.0097919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE12 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891658461, - "lat": 53.8844090, - "lon": -1.7301484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LS29 872D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3891658462, - "lat": 53.8900336, - "lon": -1.7307606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 879", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3891658464, - "lat": 53.8920474, - "lon": -1.7191949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 873", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3891745585, - "lat": 51.7653685, - "lon": -0.7498368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-10-04", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3891745588, - "lat": 51.7834369, - "lon": -0.7733793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-14" - } -}, -{ - "type": "node", - "id": 3891888198, - "lat": 54.5212726, - "lon": -1.5181386, - "tags": { - "amenity": "post_box", - "ref": "DL1 260" - } -}, -{ - "type": "node", - "id": 3891897457, - "lat": 54.5423302, - "lon": -1.5161771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL1 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3891903406, - "lat": 54.5421400, - "lon": -1.5105517, - "tags": { - "amenity": "post_box", - "ref": "DL1 197" - } -}, -{ - "type": "node", - "id": 3891908999, - "lat": 54.0619247, - "lon": -2.8121802, - "tags": { - "amenity": "post_box", - "ref": "LA1 236" - } -}, -{ - "type": "node", - "id": 3892274329, - "lat": 55.9610384, - "lon": -3.9823319, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3892281304, - "lat": 52.2730956, - "lon": -1.5235549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV31 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3892363791, - "lat": 50.8571865, - "lon": -1.1080950, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO17 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3892498674, - "lat": 51.4473586, - "lon": -0.0446938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE23 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3892498678, - "lat": 51.4423959, - "lon": -0.0349581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3892541518, - "lat": 51.4532265, - "lon": -0.0616298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3893108552, - "lat": 53.4440713, - "lon": -2.1948226, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3893433896, - "lat": 51.1613014, - "lon": 0.2566874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 112D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3893460291, - "lat": 54.0632846, - "lon": -2.7877252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA1 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3893486049, - "lat": 54.0571902, - "lon": -2.7901144, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA1 130", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 3893636691, - "lat": 51.1571218, - "lon": 0.2598050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3893678260, - "lat": 53.8225068, - "lon": -3.0198741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 234", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3893678261, - "lat": 53.8234926, - "lon": -3.0242730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 237D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3894029548, - "lat": 51.0198935, - "lon": -3.0774800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3894405632, - "lat": 51.5670095, - "lon": -0.2363853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW2 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3894888512, - "lat": 54.9825206, - "lon": -1.5954720, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 149", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3894922063, - "lat": 54.0489610, - "lon": -2.7908549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA1 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3894946721, - "lat": 54.0502243, - "lon": -2.7876124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA1 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895078722, - "lat": 54.0446920, - "lon": -2.7953235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "post_box:type": "pillar", - "ref": "LA1 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895078741, - "lat": 54.0430114, - "lon": -2.7921945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA1 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895093755, - "lat": 54.0407335, - "lon": -2.7880199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895147358, - "lat": 54.0343975, - "lon": -2.7862402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA1 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3895159704, - "lat": 54.0385346, - "lon": -2.7900250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "LA1 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895230760, - "lat": 54.0320535, - "lon": -2.7934549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895265671, - "lat": 54.0277306, - "lon": -2.7901668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ref": "LA1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895270534, - "lat": 54.0285879, - "lon": -2.7838980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA1 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895270535, - "lat": 54.0249320, - "lon": -2.7866161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA1 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895270536, - "lat": 54.0249273, - "lon": -2.7936459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA1 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895271177, - "lat": 54.0178760, - "lon": -2.7963892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "LA1 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895272725, - "lat": 54.0224983, - "lon": -2.7940861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ref": "LA1 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895927578, - "lat": 51.5589399, - "lon": -0.1637079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 34D" - } -}, -{ - "type": "node", - "id": 3895927579, - "lat": 51.5558916, - "lon": -0.1667493, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-30", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3895960020, - "lat": 51.5801251, - "lon": -0.1529215, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-17", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3895960021, - "lat": 51.5760030, - "lon": -0.1511803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N6 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3896152665, - "lat": 53.7970306, - "lon": -3.0303846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3896152666, - "lat": 53.7998635, - "lon": -3.0291074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3896152667, - "lat": 53.7999638, - "lon": -3.0380969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3896608223, - "lat": 54.0500267, - "lon": -2.8256534, - "tags": { - "amenity": "post_box", - "ref": "LA1 203" - } -}, -{ - "type": "node", - "id": 3896693380, - "lat": 51.5461208, - "lon": -0.1274442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NW1 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 26D" - } -}, -{ - "type": "node", - "id": 3896711268, - "lat": 51.0083879, - "lon": -0.9184420, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3896716677, - "lat": 51.5447032, - "lon": -0.1291414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 49D" - } -}, -{ - "type": "node", - "id": 3896716681, - "lat": 51.5386145, - "lon": -0.1383885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "Originally had two apertures, but left hand one has been sealed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 30D" - } -}, -{ - "type": "node", - "id": 3896716683, - "lat": 51.5413067, - "lon": -0.1380224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture is blocked, LH collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 15D" - } -}, -{ - "type": "node", - "id": 3897523188, - "lat": 50.8394950, - "lon": 0.4662963, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Woodville Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 16", - "ref:GB:uprn": "10015469245", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Woodville Road TN3916.jpg" - } -}, -{ - "type": "node", - "id": 3899313711, - "lat": 52.6191318, - "lon": -1.6872832, - "tags": { - "amenity": "post_box", - "ref": "B77 1291" - } -}, -{ - "type": "node", - "id": 3899802451, - "lat": 52.7507187, - "lon": 0.2798752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE34 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3900506593, - "lat": 52.6147865, - "lon": 0.2184922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3900672139, - "lat": 50.9995721, - "lon": -1.3874858, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3901100561, - "lat": 52.6381149, - "lon": -1.6541925, - "tags": { - "amenity": "post_box", - "ref": "B77 147" - } -}, -{ - "type": "node", - "id": 3901165446, - "lat": 50.8681693, - "lon": -0.7940946, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3901178736, - "lat": 50.8756009, - "lon": -0.7898667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO18 118D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3901187179, - "lat": 55.0628731, - "lon": -1.7519333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE20 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3901311371, - "lat": 52.5531755, - "lon": -1.8857461, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-09", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "last_collection": "17:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "B44", - "ref": "B44 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3901498375, - "lat": 53.3996338, - "lon": -1.5657346, - "tags": { - "amenity": "post_box", - "ref": "S6 615" - } -}, -{ - "type": "node", - "id": 3901597235, - "lat": 52.6953195, - "lon": 0.2960603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3902401248, - "lat": 54.1471838, - "lon": -0.6502252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "YO17 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3902437874, - "lat": 53.9679219, - "lon": -1.4805309, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3902437882, - "lat": 53.9982377, - "lon": -1.5152015, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3902437892, - "lat": 53.9834667, - "lon": -1.4908256, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3902437903, - "lat": 53.9745357, - "lon": -1.4963483, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3902760408, - "lat": 54.0381537, - "lon": -2.8062135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA1 90", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3902760410, - "lat": 54.0404284, - "lon": -2.8079705, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA1 34", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3902787900, - "lat": 54.0476961, - "lon": -2.8104354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA1 22D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3902800297, - "lat": 54.0352669, - "lon": -2.7898964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA1 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3902804509, - "lat": 54.0564943, - "lon": -2.7921235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "meter", - "ref": "LA1 206", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3902949071, - "lat": 54.1485045, - "lon": -0.8399315, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "YO17 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3903086086, - "lat": 54.0494235, - "lon": -2.7980011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2024-06-26", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA1 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3903193706, - "lat": 53.9517385, - "lon": -1.4449501, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HG3 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3903193711, - "lat": 53.9541896, - "lon": -1.4484156, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3903193724, - "lat": 53.9549757, - "lon": -1.4502287, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3903371106, - "lat": 54.0956948, - "lon": -0.6173785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "YO17 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3903390837, - "lat": 53.9839383, - "lon": -0.6570527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "YO42 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3903642929, - "lat": 56.6147955, - "lon": -2.8107993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "DD8 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3903642944, - "lat": 56.6217199, - "lon": -2.7900918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD8 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3903892382, - "lat": 51.1681155, - "lon": 0.2401934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3903892414, - "lat": 51.1695736, - "lon": 0.2360385, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN3 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3903892416, - "lat": 51.1662688, - "lon": 0.2368417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3904148683, - "lat": 54.0503759, - "lon": -2.8124861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA1 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3904364837, - "lat": 53.8464337, - "lon": -1.5522652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 221", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3905388349, - "lat": 52.6163224, - "lon": -1.6758340, - "tags": { - "amenity": "post_box", - "ref": "B77 416" - } -}, -{ - "type": "node", - "id": 3905608376, - "lat": 52.6195218, - "lon": -1.6795848, - "tags": { - "amenity": "post_box", - "ref": "B77 1232" - } -}, -{ - "type": "node", - "id": 3905687603, - "lat": 54.0187754, - "lon": -0.5761500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "post_box:type": "wall", - "ref": "YO25 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3906388865, - "lat": 52.6266931, - "lon": -1.6592321, - "tags": { - "amenity": "post_box", - "ref": "B77 1302" - } -}, -{ - "type": "node", - "id": 3906742516, - "lat": 53.7861466, - "lon": -3.0520691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY4 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3906826450, - "lat": 54.0329008, - "lon": -1.2207278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 13:30", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO30 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3906937900, - "lat": 54.0054741, - "lon": -1.2269504, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3906937901, - "lat": 54.0143937, - "lon": -1.2274064, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-25", - "post_box:type": "lamp", - "ref": "YO26 353D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 3906937907, - "lat": 53.9871529, - "lon": -1.2198106, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO26 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3906980168, - "lat": 53.9582097, - "lon": -1.2428767, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3907011644, - "lat": 53.9477800, - "lon": -1.2766990, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO26 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3907199559, - "lat": 55.8418539, - "lon": -3.6768653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH47 30D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3907199564, - "lat": 55.8443338, - "lon": -3.6790407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH47 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3907284397, - "lat": 53.9648659, - "lon": -1.2954491, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3907284430, - "lat": 53.9817364, - "lon": -1.3170834, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO26 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3907310028, - "lat": 53.9975452, - "lon": -1.3205982, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO26 174", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3907332672, - "lat": 54.0054136, - "lon": -1.3233974, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO26 594", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3907332688, - "lat": 54.0130078, - "lon": -1.3201868, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO26 384", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3908467518, - "lat": 53.9969260, - "lon": -1.2835287, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3908680315, - "lat": 54.0408368, - "lon": -1.3141599, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO26 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3908680318, - "lat": 54.0393735, - "lon": -1.3229709, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO26 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3908680339, - "lat": 54.0293314, - "lon": -1.2944235, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-10", - "post_box:type": "lamp", - "ref": "YO26 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3908705311, - "lat": 56.1037919, - "lon": -3.1605546, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KY1 97", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3908707704, - "lat": 52.9068900, - "lon": -2.1525000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST15 220" - } -}, -{ - "type": "node", - "id": 3908707705, - "lat": 52.9171948, - "lon": -2.1731497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "wall", - "ref": "ST15 227", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3908707706, - "lat": 52.9420075, - "lon": -2.1718338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "ST12 384" - } -}, -{ - "type": "node", - "id": 3908707707, - "lat": 52.9426200, - "lon": -2.1909000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "ST12 304" - } -}, -{ - "type": "node", - "id": 3908711341, - "lat": 54.0550078, - "lon": -1.3286305, - "tags": { - "amenity": "post_box", - "check_date": "2021-10-10", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3908717310, - "lat": 54.0631445, - "lon": -1.3264808, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3908717314, - "lat": 54.0770510, - "lon": -1.3285849, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3908792557, - "lat": 52.0358788, - "lon": 1.2093810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP3 1466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3908792657, - "lat": 52.0353445, - "lon": 1.2151509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP3 1447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3908795054, - "lat": 52.1808753, - "lon": 0.0904174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CB3 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3908832674, - "lat": 53.8794525, - "lon": -1.0893016, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3908832716, - "lat": 53.8619354, - "lon": -1.0999406, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3908970438, - "lat": 51.3403720, - "lon": -0.4681968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 150", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3909456688, - "lat": 50.8389540, - "lon": 0.4582346, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cooden Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 48", - "ref:GB:uprn": "10015350553", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Cooden Drive Richmond Road TN3948.jpg" - } -}, -{ - "type": "node", - "id": 3910040331, - "lat": 54.1443736, - "lon": -0.4524402, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3910677782, - "lat": 52.8579049, - "lon": -0.6561039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG33 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3910677802, - "lat": 52.8655287, - "lon": -0.7036137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG32 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3910786876, - "lat": 52.0318729, - "lon": 1.2648667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3910851754, - "lat": 51.9605396, - "lon": 1.3509630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1301" - } -}, -{ - "type": "node", - "id": 3911092980, - "lat": 51.6762209, - "lon": -1.9969535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing;survey" - } -}, -{ - "type": "node", - "id": 3911455145, - "lat": 55.7792274, - "lon": -4.3382034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2406294186188083", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-03-31" - } -}, -{ - "type": "node", - "id": 3912500445, - "lat": 51.7458936, - "lon": -0.3581925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912506087, - "lat": 51.7415045, - "lon": -0.3571031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3912623575, - "lat": 52.8985408, - "lon": -0.6579581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912623645, - "lat": 52.9006026, - "lon": -0.6634298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 08:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG31 27" - } -}, -{ - "type": "node", - "id": 3912623647, - "lat": 52.9006239, - "lon": -0.6528492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 131D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3912624407, - "lat": 52.9027076, - "lon": -0.6418136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3912624678, - "lat": 52.9054574, - "lon": -0.6578880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912624769, - "lat": 52.9078988, - "lon": -0.6475009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NG31 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912624906, - "lat": 52.9096104, - "lon": -0.6699316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912624953, - "lat": 52.9099666, - "lon": -0.6591473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912624965, - "lat": 52.9102966, - "lon": -0.6431723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "NG31 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912625021, - "lat": 52.9123022, - "lon": -0.6436784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-01", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912625024, - "lat": 52.9125022, - "lon": -0.6459851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912625036, - "lat": 52.9127890, - "lon": -0.6426047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG31 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912625055, - "lat": 52.9132789, - "lon": -0.6405137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912625077, - "lat": 52.9142694, - "lon": -0.6464897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3912625115, - "lat": 52.9153740, - "lon": -0.6438104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3913095012, - "lat": 53.8056267, - "lon": -2.3440399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BB12 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3913111282, - "lat": 56.0652407, - "lon": -3.2418778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY3 121", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3913111287, - "lat": 56.0654455, - "lon": -3.2328305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY3 425", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3913111288, - "lat": 56.0619067, - "lon": -3.2338526, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-03", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "KY3 45D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3914614321, - "lat": 53.4373251, - "lon": -2.8834681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L12 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3914787005, - "lat": 52.6365260, - "lon": -1.6739128, - "tags": { - "amenity": "post_box", - "ref": "B77 187" - } -}, -{ - "type": "node", - "id": 3914819257, - "lat": 51.4391462, - "lon": 0.3623646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA11 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3914819258, - "lat": 51.4340972, - "lon": 0.3528386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 38" - } -}, -{ - "type": "node", - "id": 3914819259, - "lat": 51.4326288, - "lon": 0.3608506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA11 33" - } -}, -{ - "type": "node", - "id": 3914819357, - "lat": 51.4367156, - "lon": 0.3575118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA11 21" - } -}, -{ - "type": "node", - "id": 3914819358, - "lat": 51.4330975, - "lon": 0.3499826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3914819360, - "lat": 51.4359172, - "lon": 0.3621530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3914819557, - "lat": 51.4326064, - "lon": 0.3538491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 58D" - } -}, -{ - "type": "node", - "id": 3914819559, - "lat": 51.4291261, - "lon": 0.3765233, - "tags": { - "amenity": "post_box", - "note": "ref checked and correct", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DA12 61D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3914819657, - "lat": 51.4336253, - "lon": 0.3644936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA11 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3914819658, - "lat": 51.4330994, - "lon": 0.3696702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DA12 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3914819757, - "lat": 51.4278169, - "lon": 0.3637512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA11 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3915002128, - "lat": 51.1833693, - "lon": -0.5345669, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3915080158, - "lat": 54.3730298, - "lon": -2.9009002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA23 86", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3915100649, - "lat": 52.9039376, - "lon": -0.6347870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104111, - "lat": 52.9066587, - "lon": -0.6430068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NG31 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104114, - "lat": 52.9067657, - "lon": -0.6406100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104183, - "lat": 52.9122499, - "lon": -0.6313130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104291, - "lat": 52.9153935, - "lon": -0.6301329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104380, - "lat": 52.9173397, - "lon": -0.6259573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 129D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3915104472, - "lat": 52.9197253, - "lon": -0.6347624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104473, - "lat": 52.9197605, - "lon": -0.6282280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104552, - "lat": 52.9216009, - "lon": -0.6274540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104561, - "lat": 52.9220862, - "lon": -0.6173460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915104602, - "lat": 52.9235694, - "lon": -0.6297275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG31 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3915307676, - "lat": 51.1372177, - "lon": -2.9847978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 255D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3915582063, - "lat": 51.1837740, - "lon": -2.8678745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3916587718, - "lat": 52.6343371, - "lon": -1.6960242, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3916602146, - "lat": 51.2527000, - "lon": -2.9347800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3916602148, - "lat": 51.3215500, - "lon": -2.9851000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3916602149, - "lat": 51.3229100, - "lon": -2.9602000, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3916602150, - "lat": 51.3231900, - "lon": -2.9775400, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3916602151, - "lat": 51.3233100, - "lon": -2.9552500, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3916602152, - "lat": 51.3224993, - "lon": -2.9806051, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3916602153, - "lat": 51.3269854, - "lon": -2.9550382, - "tags": { - "amenity": "post_box", - "comment": "2 separate", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3916602154, - "lat": 51.3269864, - "lon": -2.9550700, - "tags": { - "amenity": "post_box", - "comment": "2 separate", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3916603457, - "lat": 51.3381275, - "lon": -2.9783638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS23 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3916603458, - "lat": 51.3417600, - "lon": -2.9778400, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3916603460, - "lat": 51.3437200, - "lon": -2.9755100, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3916603464, - "lat": 51.3511400, - "lon": -2.9834000, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-04", - "collection_times": "Mo-Fr 07:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS23 44D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3916603465, - "lat": 51.3529900, - "lon": -2.9824400, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3916603466, - "lat": 51.3534500, - "lon": -2.9854600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS23 1003D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3916639933, - "lat": 53.8202796, - "lon": -3.0274436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3916707222, - "lat": 52.0521828, - "lon": -4.3125537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3916714557, - "lat": 51.3901701, - "lon": 0.4009126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 109D" - } -}, -{ - "type": "node", - "id": 3916714558, - "lat": 51.4109474, - "lon": 0.3873539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 114D" - } -}, -{ - "type": "node", - "id": 3916714559, - "lat": 51.4141847, - "lon": 0.3860256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3916714657, - "lat": 51.3960228, - "lon": 0.3855337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 72D" - } -}, -{ - "type": "node", - "id": 3916714757, - "lat": 51.4047792, - "lon": 0.3724392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 77" - } -}, -{ - "type": "node", - "id": 3916714858, - "lat": 51.4287638, - "lon": 0.3853346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3916864484, - "lat": 51.6217269, - "lon": -0.7332681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP11 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864485, - "lat": 51.6230663, - "lon": -0.7292332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864486, - "lat": 51.6300508, - "lon": -0.7529067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-08", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "collection_times:old": "Mo-Fr 17:00; Sa 11:30", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3916864487, - "lat": 51.6302903, - "lon": -0.7509333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864489, - "lat": 51.6322078, - "lon": -0.7463293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP13 64D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864490, - "lat": 51.6323905, - "lon": -0.7286494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "collection_times:old": "Mo-Fr 16:30; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864491, - "lat": 51.6325305, - "lon": -0.7502092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-14", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3916864492, - "lat": 51.6340639, - "lon": -0.7433820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP13 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864493, - "lat": 51.6341155, - "lon": -0.7223422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "collection_times:old": "Mo-Fr 16:30; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864494, - "lat": 51.6359571, - "lon": -0.7335368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "collection_times:old": "Mo-Fr 16:45; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864496, - "lat": 51.6360812, - "lon": -0.7271857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "collection_times:old": "Mo-Fr 16:30; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864498, - "lat": 51.6443125, - "lon": -0.7373676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3916864499, - "lat": 51.6445684, - "lon": -0.7296497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "collection_times:old": "Mo-Fr 16:45; Sa 12:00", - "note": "Revised collection times from 4th January 2016.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2015-12-29" - } -}, -{ - "type": "node", - "id": 3917301544, - "lat": 52.8832170, - "lon": -0.7104555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG32 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3917301945, - "lat": 52.8919780, - "lon": -0.6893574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "NG32 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918489237, - "lat": 52.8935014, - "lon": -0.7585236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG32 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918489811, - "lat": 51.1507811, - "lon": -2.8772970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA7 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918489817, - "lat": 51.1558406, - "lon": -2.8756683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 134", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3918538786, - "lat": 51.0914153, - "lon": -2.8936260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918538789, - "lat": 51.0941987, - "lon": -2.8912894, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918550583, - "lat": 51.0746746, - "lon": -2.9261013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "481172629881501", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-02-05", - "survey:date": "2020-02-05" - } -}, -{ - "type": "node", - "id": 3918613078, - "lat": 55.9894219, - "lon": -3.3986442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH30 159", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3918628858, - "lat": 51.3582824, - "lon": 0.5571636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME7 294" - } -}, -{ - "type": "node", - "id": 3918675437, - "lat": 51.0755945, - "lon": -4.0506606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EX32 60D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 3918675438, - "lat": 51.0842300, - "lon": -4.0656600, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918675451, - "lat": 51.1009000, - "lon": -4.0467600, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3918676470, - "lat": 51.5741062, - "lon": -0.6873430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP10 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676471, - "lat": 51.5802506, - "lon": -0.6702010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676472, - "lat": 51.5814560, - "lon": -0.6882617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP10 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676473, - "lat": 51.5815735, - "lon": -0.6927470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676474, - "lat": 51.5858012, - "lon": -0.6846693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676475, - "lat": 51.5882588, - "lon": -0.6837202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676476, - "lat": 51.5911000, - "lon": -0.6798449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676477, - "lat": 51.5917669, - "lon": -0.7026997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676478, - "lat": 51.5942376, - "lon": -0.6845339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-04-11", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3918676479, - "lat": 51.5947682, - "lon": -0.6785385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP10 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676480, - "lat": 51.5997927, - "lon": -0.6910294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP10 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676481, - "lat": 51.6011862, - "lon": -0.7092095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP10 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676482, - "lat": 51.6039147, - "lon": -0.7143727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP10 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3918676483, - "lat": 51.6349992, - "lon": -0.6956422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP10 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3918676484, - "lat": 51.6367297, - "lon": -0.7021356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP10 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3918677758, - "lat": 51.0461312, - "lon": -2.9434749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3918682977, - "lat": 51.0332750, - "lon": -2.9502836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3918700888, - "lat": 51.0234764, - "lon": -2.9966772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3918734373, - "lat": 51.0233292, - "lon": -3.0372674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 600D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3919374578, - "lat": 51.7102009, - "lon": -0.8511058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 236", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3919374579, - "lat": 51.7358279, - "lon": -0.8092591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Box aperture taped over upon date of survey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 3919374580, - "lat": 51.7464158, - "lon": -0.8052991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 3919374581, - "lat": 51.7466832, - "lon": -0.8354463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP17 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3919374582, - "lat": 51.7492292, - "lon": -0.8137970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 3919374583, - "lat": 51.7503758, - "lon": -0.8045364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 288", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 3919374584, - "lat": 51.7546168, - "lon": -0.7879649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP17 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 3919374585, - "lat": 51.7551574, - "lon": -0.9248105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP17 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3919374586, - "lat": 51.7564754, - "lon": -0.7806680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP17 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-11" - } -}, -{ - "type": "node", - "id": 3919374588, - "lat": 51.7642290, - "lon": -0.9058148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3919374592, - "lat": 51.7775451, - "lon": -0.8738493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP17 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3919433763, - "lat": 51.7076040, - "lon": -0.6906777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP16 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3919433764, - "lat": 51.7110496, - "lon": -0.6807338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP16 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3919433765, - "lat": 51.7165359, - "lon": -0.6804249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP16 73D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3919433766, - "lat": 51.7206644, - "lon": -0.6806632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP16 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3919433767, - "lat": 51.7299823, - "lon": -0.6974709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP16 72", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3919433768, - "lat": 51.7391259, - "lon": -0.6957156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP16 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3919729049, - "lat": 53.3261247, - "lon": -2.2312214, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-16", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "London 2012 Olympics gold post box - Craig MacLean", - "post_box:type": "pillar", - "ref": "SK9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3919738210, - "lat": 51.6917163, - "lon": -4.1437736, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3920702828, - "lat": 50.1989789, - "lon": -5.2422965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TR16 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "Bing;survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 3920816357, - "lat": 51.3844081, - "lon": 0.3575591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 95" - } -}, -{ - "type": "node", - "id": 3920816358, - "lat": 51.3804126, - "lon": 0.3607511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 93D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3920816359, - "lat": 51.3849669, - "lon": 0.3807212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 51" - } -}, -{ - "type": "node", - "id": 3920816360, - "lat": 51.3834610, - "lon": 0.3796565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3920816361, - "lat": 51.3682058, - "lon": 0.3599617, - "tags": { - "amenity": "post_box", - "fixme": "ref covered by sticker", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3920816362, - "lat": 51.3627285, - "lon": 0.3564832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3920816364, - "lat": 51.3756459, - "lon": 0.3607188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 103" - } -}, -{ - "type": "node", - "id": 3920816367, - "lat": 51.4219390, - "lon": 0.3804580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3920816859, - "lat": 51.3967221, - "lon": 0.3566551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 18D" - } -}, -{ - "type": "node", - "id": 3920816863, - "lat": 51.4142675, - "lon": 0.3809773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 107D" - } -}, -{ - "type": "node", - "id": 3920894275, - "lat": 52.7579860, - "lon": -0.8754500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894278, - "lat": 52.7583280, - "lon": -0.8785903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894303, - "lat": 52.7599057, - "lon": -0.8700750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894470, - "lat": 52.7629514, - "lon": -0.8819509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LE13 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894504, - "lat": 52.7648064, - "lon": -0.8818527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894787, - "lat": 52.7661268, - "lon": -0.8806862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894844, - "lat": 52.7670590, - "lon": -0.9007158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE13 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894854, - "lat": 52.7679154, - "lon": -0.8823099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "franked": "only", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LE13 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894855, - "lat": 52.7679563, - "lon": -0.8823082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920894984, - "lat": 52.7696342, - "lon": -0.8966332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE13 84D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3920895000, - "lat": 52.7701805, - "lon": -0.9004606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920895056, - "lat": 52.7717286, - "lon": -0.8931755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920895260, - "lat": 52.7718589, - "lon": -0.8829884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920895483, - "lat": 52.7730430, - "lon": -0.8980656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920895544, - "lat": 52.7742077, - "lon": -0.8865750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920895861, - "lat": 52.7794018, - "lon": -0.8863340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920895912, - "lat": 52.8111202, - "lon": -0.8134972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE14 91D" - } -}, -{ - "type": "node", - "id": 3920896073, - "lat": 52.8151449, - "lon": -0.8039750, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-18", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3920896079, - "lat": 52.8166599, - "lon": -0.8085356, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-18", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3921002196, - "lat": 52.7589932, - "lon": -1.8831579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45; Su off", - "post_box:type": "pillar", - "ref": "WS15 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3921133892, - "lat": 52.5289009, - "lon": 1.5560753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3921890693, - "lat": 52.4190509, - "lon": -2.1439188, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3921919714, - "lat": 50.8909888, - "lon": -1.0461343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3922099980, - "lat": 51.3978607, - "lon": 0.2999652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA3 113" - } -}, -{ - "type": "node", - "id": 3922099981, - "lat": 51.3908216, - "lon": 0.3046232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DA3 228D" - } -}, -{ - "type": "node", - "id": 3922099982, - "lat": 51.3832541, - "lon": 0.3114121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 376D" - } -}, -{ - "type": "node", - "id": 3922099983, - "lat": 51.3719131, - "lon": 0.3156419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 192" - } -}, -{ - "type": "node", - "id": 3922099984, - "lat": 51.3661053, - "lon": 0.3050568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA3 404" - } -}, -{ - "type": "node", - "id": 3922099985, - "lat": 51.3760536, - "lon": 0.3038474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 11" - } -}, -{ - "type": "node", - "id": 3922099986, - "lat": 51.3846901, - "lon": 0.3046676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA3 53" - } -}, -{ - "type": "node", - "id": 3922100187, - "lat": 51.3647975, - "lon": 0.3088186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 414" - } -}, -{ - "type": "node", - "id": 3922100188, - "lat": 51.3699301, - "lon": 0.3040946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 421D" - } -}, -{ - "type": "node", - "id": 3922100263, - "lat": 51.3961544, - "lon": 0.3007631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 90" - } -}, -{ - "type": "node", - "id": 3922123957, - "lat": 51.3957883, - "lon": 0.2990839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 422D" - } -}, -{ - "type": "node", - "id": 3922123958, - "lat": 51.3858115, - "lon": 0.3086306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA3 199" - } -}, -{ - "type": "node", - "id": 3922123959, - "lat": 51.3798895, - "lon": 0.3131024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA3 186D" - } -}, -{ - "type": "node", - "id": 3922128842, - "lat": 51.5043938, - "lon": -0.4582876, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3922277027, - "lat": 52.4143688, - "lon": -1.7751884, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "B91 1203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3922687870, - "lat": 51.3989461, - "lon": -2.6762393, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923435501, - "lat": 52.7499446, - "lon": -0.8777801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436068, - "lat": 52.7508523, - "lon": -0.8888912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE13 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436093, - "lat": 52.7517888, - "lon": -0.8929373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436165, - "lat": 52.7537351, - "lon": -0.8824359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE13 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3923436213, - "lat": 52.7541858, - "lon": -0.8946447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436231, - "lat": 52.7569411, - "lon": -0.8873512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436246, - "lat": 52.7572167, - "lon": -0.8824458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436287, - "lat": 52.7597327, - "lon": -0.8935624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436294, - "lat": 52.7598635, - "lon": -0.8842244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436394, - "lat": 52.7629896, - "lon": -0.8924820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE13 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436427, - "lat": 52.7652468, - "lon": -0.8895027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436448, - "lat": 52.7667192, - "lon": -0.8928353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE13 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436547, - "lat": 52.7687309, - "lon": -0.8867435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE13 108", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3923436586, - "lat": 52.7694003, - "lon": -0.8854899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE13 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436642, - "lat": 52.7730083, - "lon": -0.8688299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE13 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3923436644, - "lat": 52.7733054, - "lon": -0.8594073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE14 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3923676014, - "lat": 54.3707752, - "lon": -2.9108628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA23 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3924028923, - "lat": 52.1389241, - "lon": 0.5173923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3924037274, - "lat": 51.7743271, - "lon": -0.7293043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP22 276", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-03-25" - } -}, -{ - "type": "node", - "id": 3924037277, - "lat": 51.7760084, - "lon": -0.7272141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP22 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-03-25" - } -}, -{ - "type": "node", - "id": 3924070002, - "lat": 52.1038128, - "lon": 0.5831548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1050", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3924338282, - "lat": 52.5667103, - "lon": -1.3472127, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3925151191, - "lat": 53.3892824, - "lon": -2.0644996, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3925632144, - "lat": 55.2506192, - "lon": -1.8446417, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE65 35" - } -}, -{ - "type": "node", - "id": 3926161459, - "lat": 52.9957297, - "lon": -0.3951397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161474, - "lat": 52.9963889, - "lon": -0.4087675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "note": "Both apertures have the same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NG34 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161528, - "lat": 52.9981875, - "lon": -0.4008017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3926161534, - "lat": 52.9983034, - "lon": -0.4115615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161539, - "lat": 52.9984450, - "lon": -0.4165371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161559, - "lat": 52.9988045, - "lon": -0.3962350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161591, - "lat": 52.9993933, - "lon": -0.4096571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mail:franked": "only", - "opening_hours": "Mo-Fr 13:30-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG34 280" - } -}, -{ - "type": "node", - "id": 3926161592, - "lat": 52.9993971, - "lon": -0.4096323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NG34 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3926161659, - "lat": 53.0012471, - "lon": -0.4052882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161677, - "lat": 53.0015851, - "lon": -0.4119031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161746, - "lat": 53.0033377, - "lon": -0.4157898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161748, - "lat": 53.0033777, - "lon": -0.4122902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161885, - "lat": 53.0040724, - "lon": -0.3985774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926161886, - "lat": 53.0040867, - "lon": -0.3986340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "franked": "only", - "opening_hours": "Mo-Fr 11:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG34 150" - } -}, -{ - "type": "node", - "id": 3926161931, - "lat": 53.0053273, - "lon": -0.4193040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3926162009, - "lat": 53.0072154, - "lon": -0.4169365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926162035, - "lat": 53.0073880, - "lon": -0.4126916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3926162114, - "lat": 53.0105244, - "lon": -0.4165127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NG34 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926162191, - "lat": 53.0111313, - "lon": -0.4225761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG34 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3926905892, - "lat": 51.1657820, - "lon": -2.5893889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3926905905, - "lat": 51.1668127, - "lon": -2.5905794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3927610445, - "lat": 51.6269065, - "lon": -0.8657150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927610446, - "lat": 51.6287978, - "lon": -0.9074447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP14 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927610447, - "lat": 51.6349132, - "lon": -0.8820252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927610448, - "lat": 51.6531332, - "lon": -0.8917075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927610449, - "lat": 51.6568378, - "lon": -0.8887755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HP14 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-11" - } -}, -{ - "type": "node", - "id": 3927610450, - "lat": 51.6583775, - "lon": -0.8976494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "note": "Duplicate reference: this is the \"real\" HP14 106 but the postbox on corner of New Road / Wycombe Road is has the same reference.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927610451, - "lat": 51.6587174, - "lon": -0.9127875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927610452, - "lat": 51.6601194, - "lon": -0.9020602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "HP14 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3927867894, - "lat": 56.0729179, - "lon": -3.1752176, - "tags": { - "amenity": "post_box", - "ref": "KY3 63D" - } -}, -{ - "type": "node", - "id": 3928239742, - "lat": 51.0026958, - "lon": -3.0794117, - "tags": { - "amenity": "post_box", - "mapillary": "310690873770709", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-05-13" - } -}, -{ - "type": "node", - "id": 3928651414, - "lat": 53.8098899, - "lon": -1.6730575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 3929126136, - "lat": 52.5153990, - "lon": -0.2699956, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3929838564, - "lat": 51.9054985, - "lon": -2.0751358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Hexagonal Penfold pillar box", - "he:inscription_date": "1999-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1387905", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL50 10D", - "ref:GB:nhle": "1387905", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26667486" - } -}, -{ - "type": "node", - "id": 3929838636, - "lat": 51.9014351, - "lon": -2.0784221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL50 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3930524188, - "lat": 54.0436081, - "lon": -2.8050893, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-21", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "LA1 241", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3930558766, - "lat": 54.0462767, - "lon": -2.7997880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "LA1 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3930655564, - "lat": 54.0499102, - "lon": -2.8020954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:00", - "post_box:type": "wall", - "ref": "LA1 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3930656376, - "lat": 54.6007255, - "lon": -5.9308579, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "57", - "addr:postcode": "BT1 1FX", - "addr:street": "Royal Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT1 16;BT1 1016", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3930683712, - "lat": 53.9549922, - "lon": -2.7813164, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR3 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3930992186, - "lat": 54.6000367, - "lon": -5.9271451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT1 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3931450318, - "lat": 52.2152470, - "lon": 0.0124320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "Right-hand aperture ref \"CB23 349O\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CB23 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3931450346, - "lat": 52.2236660, - "lon": 0.0043912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "note": "box says CB3 but area is now CB23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB23 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3931450350, - "lat": 52.2185870, - "lon": 0.0018671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "box says CB3 but area is now CB23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB3 350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3931450353, - "lat": 52.2152249, - "lon": 0.0060058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:ref": "box says CB3 but area is now CB23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB3 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3932048161, - "lat": 51.3489379, - "lon": -0.2737725, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 3932089173, - "lat": 53.8908538, - "lon": -1.2394967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS24 966" - } -}, -{ - "type": "node", - "id": 3932130240, - "lat": 53.8863387, - "lon": -1.2584277, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LS24 904", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3932145610, - "lat": 53.8877065, - "lon": -1.2554408, - "tags": { - "amenity": "post_box", - "ref": "LS24 568" - } -}, -{ - "type": "node", - "id": 3932175417, - "lat": 53.8835276, - "lon": -1.2621414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS24 613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3933127708, - "lat": 54.1028103, - "lon": -1.1093831, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO61 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3933567900, - "lat": 51.3416997, - "lon": -0.4751933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT14 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3933567931, - "lat": 51.3505045, - "lon": -0.4824670, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-11", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3934179301, - "lat": 51.6932168, - "lon": -4.1395153, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3935783971, - "lat": 52.9852199, - "lon": -0.4568720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NG34 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935783993, - "lat": 52.9869954, - "lon": -0.4290889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG34 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935784028, - "lat": 52.9890271, - "lon": -0.4466949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG34 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935786661, - "lat": 52.9896986, - "lon": -0.4085860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935786682, - "lat": 52.9912765, - "lon": -0.4273401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935786688, - "lat": 52.9917711, - "lon": -0.4146182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3935786732, - "lat": 52.9940964, - "lon": -0.4150024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3935786745, - "lat": 52.9946168, - "lon": -0.4232811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG34 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935791233, - "lat": 52.3035113, - "lon": -0.6978037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3935839606, - "lat": 52.8724004, - "lon": -0.7756468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG32 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3935854327, - "lat": 51.6439992, - "lon": -1.1654519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3935873344, - "lat": 52.8213292, - "lon": 0.7690253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3937044447, - "lat": 54.1256010, - "lon": -0.7261756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 10:00", - "post_box:type": "lamp", - "ref": "YO17 42" - } -}, -{ - "type": "node", - "id": 3937306237, - "lat": 51.7156163, - "lon": -0.6642739, - "tags": { - "amenity": "post_box", - "note": "Information plate missing", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3937306246, - "lat": 51.7183843, - "lon": -0.6325206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937306248, - "lat": 51.7227302, - "lon": -0.6458867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937306250, - "lat": 51.7254959, - "lon": -0.6550830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3937306253, - "lat": 51.7289324, - "lon": -0.6248762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937306255, - "lat": 51.7327626, - "lon": -0.6441382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP5 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3937306256, - "lat": 51.7334034, - "lon": -0.6696167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3937317557, - "lat": 51.7348202, - "lon": -0.6310915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3937317558, - "lat": 51.7403360, - "lon": -0.6393842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP5 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-01" - } -}, -{ - "type": "node", - "id": 3937356955, - "lat": 51.6832086, - "lon": -0.7484003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP16 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3937359961, - "lat": 51.6851883, - "lon": -0.7344740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP16 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3937359972, - "lat": 51.6932271, - "lon": -0.7280346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP16 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 3937359973, - "lat": 51.6995923, - "lon": -0.7328463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP16 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 3937359974, - "lat": 51.7014382, - "lon": -0.7475660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP16 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 3937359975, - "lat": 51.7080951, - "lon": -0.7197537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP16 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 3937359976, - "lat": 51.7184705, - "lon": -0.7179535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP16 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3937359993, - "lat": 51.7242377, - "lon": -0.7552556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP16 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3937598666, - "lat": 51.6531446, - "lon": -0.6681433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP7 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3937598671, - "lat": 51.6564954, - "lon": -0.5782423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP7 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3937598672, - "lat": 51.6580268, - "lon": -0.6644417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP7 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3937598673, - "lat": 51.6601884, - "lon": -0.5932051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP7 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3937598674, - "lat": 51.6625793, - "lon": -0.6140294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP7 190D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3937598675, - "lat": 51.6639685, - "lon": -0.6011510, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-20", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP7 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3937598676, - "lat": 51.6767327, - "lon": -0.5580292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3937598677, - "lat": 51.6815943, - "lon": -0.6686994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP7 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3937598678, - "lat": 51.6860385, - "lon": -0.5854216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3937598679, - "lat": 51.7088659, - "lon": -0.6187074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP5 115D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937598680, - "lat": 51.7128144, - "lon": -0.6264312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937598681, - "lat": 51.7141658, - "lon": -0.6045482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937598682, - "lat": 51.7144566, - "lon": -0.6122792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937598683, - "lat": 51.7150191, - "lon": -0.5984767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP5 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937598684, - "lat": 51.7162391, - "lon": -0.6149558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP5 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937598685, - "lat": 51.7175182, - "lon": -0.6190834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP5 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-16" - } -}, -{ - "type": "node", - "id": 3937656003, - "lat": 55.1280164, - "lon": -1.6604580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "post_box:type": "lamp", - "ref": "NE61 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3937682470, - "lat": 52.8778707, - "lon": -0.7533657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG32 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3937787038, - "lat": 51.7687762, - "lon": -0.5466185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP4 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-10" - } -}, -{ - "type": "node", - "id": 3937788261, - "lat": 51.7754394, - "lon": -0.5401726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP4 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-10" - } -}, -{ - "type": "node", - "id": 3937841112, - "lat": 51.6887339, - "lon": -0.8316831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP27 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3937841113, - "lat": 51.6909420, - "lon": -0.8405169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP27 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3937841114, - "lat": 51.6955086, - "lon": -0.8120376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP27 230D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3937841115, - "lat": 51.6989082, - "lon": -0.8178214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3937841117, - "lat": 51.7005123, - "lon": -0.8203501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3937841119, - "lat": 51.7153927, - "lon": -0.8706204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP27 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3937841121, - "lat": 51.7176244, - "lon": -0.8815874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3937841125, - "lat": 51.7212131, - "lon": -0.8752305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP27 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3937841126, - "lat": 51.7337934, - "lon": -0.8554596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP27 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-27" - } -}, -{ - "type": "node", - "id": 3937894841, - "lat": 50.6338310, - "lon": -3.8136695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ13 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 3939280675, - "lat": 53.8873605, - "lon": -1.2735083, - "tags": { - "amenity": "post_box", - "ref": "LS24 822" - } -}, -{ - "type": "node", - "id": 3939302360, - "lat": 53.8833306, - "lon": -1.2709384, - "tags": { - "amenity": "post_box", - "ref": "LS24 610" - } -}, -{ - "type": "node", - "id": 3939302385, - "lat": 53.8812856, - "lon": -1.2743166, - "tags": { - "amenity": "post_box", - "ref": "LS24 567" - } -}, -{ - "type": "node", - "id": 3939302386, - "lat": 53.8804579, - "lon": -1.2689329, - "tags": { - "amenity": "post_box", - "ref": "LS24 283" - } -}, -{ - "type": "node", - "id": 3939307952, - "lat": 53.8747082, - "lon": -1.2757801, - "tags": { - "amenity": "post_box", - "ref": "LS24 998" - } -}, -{ - "type": "node", - "id": 3939307955, - "lat": 53.8773440, - "lon": -1.2797595, - "tags": { - "amenity": "post_box", - "ref": "LS24 874" - } -}, -{ - "type": "node", - "id": 3939407345, - "lat": 52.4017050, - "lon": -2.0016226, - "tags": { - "amenity": "post_box", - "ref": "B31 1434" - } -}, -{ - "type": "node", - "id": 3939495252, - "lat": 52.6720463, - "lon": 1.5864208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR29 2901", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3940066181, - "lat": 56.0643640, - "lon": -3.1941412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "post_box:type": "pillar", - "ref": "KY3 156", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3940066197, - "lat": 56.0642889, - "lon": -3.1769928, - "tags": { - "amenity": "post_box", - "note": "no ref but assumed", - "ref": "KY3 142", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3940066198, - "lat": 56.0664995, - "lon": -3.1753487, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "KY3 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3940292662, - "lat": 56.0731938, - "lon": -3.1699089, - "tags": { - "amenity": "post_box", - "ref": "KY3 381" - } -}, -{ - "type": "node", - "id": 3940619888, - "lat": 55.8744490, - "lon": -3.6221045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3940619902, - "lat": 55.8748083, - "lon": -3.6153100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3940619910, - "lat": 55.8777944, - "lon": -3.6174503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 44D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3940619912, - "lat": 55.8779454, - "lon": -3.6221319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH47 45D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3940757985, - "lat": 55.4989235, - "lon": -4.6110367, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA9 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3940757991, - "lat": 55.4979143, - "lon": -4.6093488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "KA9 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3943125588, - "lat": 51.5426314, - "lon": -0.9741223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG9 640", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3944947435, - "lat": 51.6265606, - "lon": -0.7649940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3944947436, - "lat": 51.6283690, - "lon": -0.7572689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947437, - "lat": 51.6288306, - "lon": -0.7847686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP12 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3944947441, - "lat": 51.6310166, - "lon": -0.7586759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 95", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947444, - "lat": 51.6311669, - "lon": -0.7934190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "note": "parcels", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "HP12 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947446, - "lat": 51.6329436, - "lon": -0.7616841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947447, - "lat": 51.6332069, - "lon": -0.7675902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947448, - "lat": 51.6344294, - "lon": -0.7720477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3944947449, - "lat": 51.6349326, - "lon": -0.7643211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-28", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3944947450, - "lat": 51.6352812, - "lon": -0.7841561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP12 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947451, - "lat": 51.6354312, - "lon": -0.7867798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP12 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947452, - "lat": 51.6357536, - "lon": -0.7808511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-19", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3944947453, - "lat": 51.6384283, - "lon": -0.7506820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "HP13 58", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947454, - "lat": 51.6389217, - "lon": -0.7627150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947455, - "lat": 51.6389446, - "lon": -0.7601021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944947456, - "lat": 51.6396587, - "lon": -0.7748719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944948257, - "lat": 51.6400154, - "lon": -0.7809292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944948258, - "lat": 51.6401361, - "lon": -0.7680247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP13 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944948259, - "lat": 51.6407662, - "lon": -0.7500529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944948260, - "lat": 51.6410718, - "lon": -0.7554472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3944948261, - "lat": 51.6539517, - "lon": -0.7736766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP13 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3945032087, - "lat": 55.5015728, - "lon": -4.6110608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45; Su off", - "post_box:type": "pillar", - "ref": "KA9 1000", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3945697720, - "lat": 53.9076051, - "lon": -1.6942195, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/2510005", - "post_box:type": "wall", - "ref": "LS21 557", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3945843886, - "lat": 52.3952867, - "lon": -2.0710704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY9 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3946923493, - "lat": 53.0890193, - "lon": -3.2939846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3947935182, - "lat": 51.5863482, - "lon": -3.6511816, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3948808836, - "lat": 51.2898663, - "lon": -0.9354716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG27 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3948860008, - "lat": 51.6044744, - "lon": -0.6959961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP10 202", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3948860009, - "lat": 51.6127909, - "lon": -0.7866440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP12 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860010, - "lat": 51.6133560, - "lon": -0.7940458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860011, - "lat": 51.6145733, - "lon": -0.7711590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP11 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860012, - "lat": 51.6162568, - "lon": -0.7748371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860013, - "lat": 51.6166158, - "lon": -0.7831386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860014, - "lat": 51.6169747, - "lon": -0.7496104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP11 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860015, - "lat": 51.6174474, - "lon": -0.7660255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860016, - "lat": 51.6183171, - "lon": -0.7608769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860017, - "lat": 51.6200537, - "lon": -0.7710554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP12 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860018, - "lat": 51.6202231, - "lon": -0.7781439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HP12 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860019, - "lat": 51.6206468, - "lon": -0.7846841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP12 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860020, - "lat": 51.6232726, - "lon": -0.7561145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP11 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860021, - "lat": 51.6250235, - "lon": -0.7877199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 1D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860022, - "lat": 51.6252831, - "lon": -0.7619989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "note": "Collection times with effect from 2016-01-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP11 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860023, - "lat": 51.6257231, - "lon": -0.7808304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 79D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860024, - "lat": 51.6285088, - "lon": -0.7683211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 3948860025, - "lat": 51.6295137, - "lon": -0.7792331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP12 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-23" - } -}, -{ - "type": "node", - "id": 3948860027, - "lat": 51.6368687, - "lon": -0.7706798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-07", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP12 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3948860028, - "lat": 51.6572954, - "lon": -0.8023934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3948860029, - "lat": 51.6625354, - "lon": -0.7669946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3948860033, - "lat": 51.6651793, - "lon": -0.7772279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP14 119", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3948860034, - "lat": 51.6664116, - "lon": -0.8067291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP14 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3948860035, - "lat": 51.6713335, - "lon": -0.7851184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3948860036, - "lat": 51.6775620, - "lon": -0.7925198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP14 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3948860048, - "lat": 51.6800750, - "lon": -0.7733893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3948860053, - "lat": 51.6871018, - "lon": -0.7745180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3949056217, - "lat": 55.5000173, - "lon": -4.5987790, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA9 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3949056220, - "lat": 55.4937839, - "lon": -4.5977793, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA9 142D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3949056222, - "lat": 55.5004547, - "lon": -4.6011930, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA9 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3949056230, - "lat": 55.5050619, - "lon": -4.6049247, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA9 26D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3949056252, - "lat": 55.5026449, - "lon": -4.5934419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA9 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3949057957, - "lat": 55.4955674, - "lon": -4.6026872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "KA9 94D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3949057972, - "lat": 55.4958777, - "lon": -4.5982524, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA9 125D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3949094595, - "lat": 55.4915984, - "lon": -4.6156202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "KA9 36D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3949094609, - "lat": 55.4951657, - "lon": -4.6142930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "KA9 84D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3949094622, - "lat": 55.4886580, - "lon": -4.6162800, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA9 91D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3949094626, - "lat": 55.4970138, - "lon": -4.6179081, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA9 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3949094640, - "lat": 55.4921364, - "lon": -4.6192116, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA9 50D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3949931617, - "lat": 55.9198043, - "lon": -3.4829803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950085017, - "lat": 55.9342251, - "lon": -3.4654338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950085020, - "lat": 55.9342812, - "lon": -3.4714065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950116335, - "lat": 55.9327452, - "lon": -3.4544015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950116474, - "lat": 55.9351468, - "lon": -3.4523075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 09:00-18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH52 25", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3950116475, - "lat": 55.9351808, - "lon": -3.4523173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:00", - "note": "Two boxes numbered EH52 8", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 8", - "ref:duplicates": "2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950116476, - "lat": 55.9351998, - "lon": -3.4523230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:00", - "note": "Two boxes numbered EH52 8", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 8", - "ref:duplicates": "2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950140448, - "lat": 55.9565771, - "lon": -3.4620555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3950140453, - "lat": 55.9596436, - "lon": -3.4592485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "note": "postbox is inside Scotmid Supermarket", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 17" - } -}, -{ - "type": "node", - "id": 3950443840, - "lat": 51.6280189, - "lon": -0.7484933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "Right-hand aperture: 2nd class mail. Reference taken from Royal Mail note advising of revised collection times.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP11 301", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3950443841, - "lat": 51.6280474, - "lon": -0.7484684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "Left-hand aperture: 1st class mail. Reference taken from Royal Mail note advising of revised collection times.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP11 300", - "source": "survey", - "survey:date": "2016-01-16" - } -}, -{ - "type": "node", - "id": 3950443842, - "lat": 51.6297084, - "lon": -0.7514699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-07", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP11 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3950516050, - "lat": 51.6346314, - "lon": -0.7536599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-20", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "HP13 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3950858276, - "lat": 55.4997371, - "lon": -4.6074074, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA9 49D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3951287662, - "lat": 51.7244626, - "lon": -0.4323500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP3 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-13" - } -}, -{ - "type": "node", - "id": 3951287714, - "lat": 51.7340776, - "lon": -0.4180819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP3 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-13" - } -}, -{ - "type": "node", - "id": 3951300767, - "lat": 51.6972846, - "lon": -0.5314886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300768, - "lat": 51.7015756, - "lon": -0.5304336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP3 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300769, - "lat": 51.7068485, - "lon": -0.5409074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP3 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300772, - "lat": 51.7169705, - "lon": -0.5375773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP3 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300773, - "lat": 51.7181972, - "lon": -0.5202174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP3 149", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300777, - "lat": 51.7228109, - "lon": -0.5319714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP3 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300779, - "lat": 51.7312496, - "lon": -0.5227270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Information plate missing hence no ref or collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951300780, - "lat": 51.7355282, - "lon": -0.5070982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP3 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-25" - } -}, -{ - "type": "node", - "id": 3951332578, - "lat": 51.6269585, - "lon": -0.5771493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP8 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951332579, - "lat": 51.6272467, - "lon": -0.5701899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP8 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951332580, - "lat": 51.6288500, - "lon": -0.5831546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP8 127D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951332581, - "lat": 51.6304308, - "lon": -0.5734573, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP8 126D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3951332582, - "lat": 51.6321447, - "lon": -0.5725598, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-06", - "check_date:collection_times": "2022-08-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP8 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3951332583, - "lat": 51.6334757, - "lon": -0.5662779, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-08", - "check_date:collection_times": "2023-05-09", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP8 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3951332584, - "lat": 51.6376009, - "lon": -0.5604097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP8 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951332598, - "lat": 51.6387952, - "lon": -0.5713253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP8 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951332607, - "lat": 51.6486970, - "lon": -0.5510141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP8 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951332609, - "lat": 51.6567383, - "lon": -0.5607910, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-23", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP8 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3951338832, - "lat": 51.0926846, - "lon": -1.3006304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3951338833, - "lat": 51.0951534, - "lon": -1.3034822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 247D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3951340752, - "lat": 51.1010876, - "lon": -1.3036896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO23 169D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3951340754, - "lat": 51.1070551, - "lon": -1.3029846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3951363608, - "lat": 51.6715327, - "lon": -0.5674454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP6 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951363609, - "lat": 51.6759695, - "lon": -0.6137591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP6 124D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-12-27" - } -}, -{ - "type": "node", - "id": 3951363610, - "lat": 51.6776968, - "lon": -0.5904128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP6 143", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951363619, - "lat": 51.6787301, - "lon": -0.6019602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP6 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 3951363620, - "lat": 51.6817793, - "lon": -0.6564138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP6 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-14" - } -}, -{ - "type": "node", - "id": 3951374874, - "lat": 51.1498623, - "lon": -1.3051212, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO21 115D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3951374876, - "lat": 51.1521648, - "lon": -1.3251043, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO21 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3951374883, - "lat": 51.1544506, - "lon": -1.3122184, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO21 178", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3951470376, - "lat": 51.6123590, - "lon": -0.8387805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP14 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470382, - "lat": 51.6176543, - "lon": -0.8317796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470384, - "lat": 51.6201342, - "lon": -0.8326472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470408, - "lat": 51.6230089, - "lon": -0.8325529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP14 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470419, - "lat": 51.6232216, - "lon": -0.8284551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470969, - "lat": 51.6307618, - "lon": -0.8413988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP14 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470970, - "lat": 51.6391308, - "lon": -0.8304208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470971, - "lat": 51.6446854, - "lon": -0.8024238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP14 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470972, - "lat": 51.6475510, - "lon": -0.8523193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP14 112", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470973, - "lat": 51.6476267, - "lon": -0.8655077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP14 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470975, - "lat": 51.6498044, - "lon": -0.8130010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470977, - "lat": 51.6568616, - "lon": -0.8497232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HP14 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470978, - "lat": 51.6578072, - "lon": -0.8714137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470979, - "lat": 51.6633161, - "lon": -0.8353193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470980, - "lat": 51.6636137, - "lon": -0.8664395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470981, - "lat": 51.6678130, - "lon": -0.8697286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470982, - "lat": 51.6708194, - "lon": -0.8465998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP14 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470983, - "lat": 51.6747028, - "lon": -0.8505962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470984, - "lat": 51.6762531, - "lon": -0.8422773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP14 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951470985, - "lat": 51.6819017, - "lon": -0.8624555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 3951562542, - "lat": 54.2337504, - "lon": -0.3779277, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "YO11 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3952186918, - "lat": 55.4908113, - "lon": -4.6076035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA9 146", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3952201122, - "lat": 55.4889073, - "lon": -4.6114333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "KA9 110", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3952375779, - "lat": 55.4866065, - "lon": -4.6049830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "oddly low heighted post box", - "post_box:type": "lamp", - "ref": "KA9 28D", - "royal_cypher": "scottish_crown", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3952501159, - "lat": 55.4846506, - "lon": -4.6061819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "KA9 27D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3952501176, - "lat": 55.4843860, - "lon": -4.6003910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "KA9 96D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3952501187, - "lat": 55.4800695, - "lon": -4.5966568, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "material": "plastic", - "post_box:type": "pillar", - "ref": "KA8 168" - } -}, -{ - "type": "node", - "id": 3952561414, - "lat": 55.4814345, - "lon": -4.6115030, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA8 86D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3952738662, - "lat": 54.4633785, - "lon": -0.9407370, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO21 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3953365180, - "lat": 54.0536999, - "lon": -2.8053191, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA1 83" - } -}, -{ - "type": "node", - "id": 3953656549, - "lat": 54.0670879, - "lon": -2.8279436, - "tags": { - "amenity": "post_box", - "ref": "LA4 164" - } -}, -{ - "type": "node", - "id": 3953670579, - "lat": 54.0706215, - "lon": -2.8355935, - "tags": { - "amenity": "post_box", - "ref": "LA4 137" - } -}, -{ - "type": "node", - "id": 3953680093, - "lat": 54.0747096, - "lon": -2.8446679, - "tags": { - "amenity": "post_box", - "ref": "LA4 184" - } -}, -{ - "type": "node", - "id": 3953744010, - "lat": 54.0680014, - "lon": -2.8452799, - "tags": { - "amenity": "post_box", - "ref": "LA4 140" - } -}, -{ - "type": "node", - "id": 3953773154, - "lat": 54.0698399, - "lon": -2.8541312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA4 54" - } -}, -{ - "type": "node", - "id": 3954271552, - "lat": 54.2268319, - "lon": -0.5814300, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3954351044, - "lat": 51.1682650, - "lon": -1.3516821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45, Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "SO21 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-29" - } -}, -{ - "type": "node", - "id": 3954428986, - "lat": 52.4927916, - "lon": -1.8775206, - "tags": { - "amenity": "post_box", - "ref": "B7 71" - } -}, -{ - "type": "node", - "id": 3954840420, - "lat": 52.2691315, - "lon": -0.6006040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 74" - } -}, -{ - "type": "node", - "id": 3955217189, - "lat": 57.5477772, - "lon": -2.0230152, - "tags": { - "addr:street": "Gaval Street", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3955325930, - "lat": 51.6284192, - "lon": -3.6563614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF34 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3955349227, - "lat": 51.6380037, - "lon": -3.6538254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF34 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3955991958, - "lat": 58.2196132, - "lon": -6.3986982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 11:45", - "old_ref": "LH 056 County Hospital", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS1 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3956007876, - "lat": 55.4785024, - "lon": -4.6159398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KA8 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 3956007911, - "lat": 55.4794583, - "lon": -4.6209712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "wall", - "ref": "KA8 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3956285218, - "lat": 51.4187323, - "lon": -0.1937018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Info plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3957222137, - "lat": 54.4316230, - "lon": -1.2170134, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "TS9 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3958047104, - "lat": 54.0769153, - "lon": -2.8497909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA4 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3958413943, - "lat": 51.6438017, - "lon": -0.7022450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP15 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413944, - "lat": 51.6475528, - "lon": -0.6981967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP15 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413945, - "lat": 51.6496262, - "lon": -0.7182865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HP15 158D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413946, - "lat": 51.6507221, - "lon": -0.7065954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP15 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413948, - "lat": 51.6516872, - "lon": -0.7129646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP15 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413950, - "lat": 51.6546018, - "lon": -0.7354833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP15 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413952, - "lat": 51.6604806, - "lon": -0.7470511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP15 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3958413953, - "lat": 51.6605550, - "lon": -0.7254735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP15 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413954, - "lat": 51.6646892, - "lon": -0.7362316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HP15 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3958413955, - "lat": 51.6675556, - "lon": -0.7173537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP15 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-05" - } -}, -{ - "type": "node", - "id": 3958413956, - "lat": 51.6738295, - "lon": -0.7339080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP15 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-10" - } -}, -{ - "type": "node", - "id": 3958505820, - "lat": 50.8444304, - "lon": 0.4693477, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "London Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "description": "Close to closed sub-post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 24", - "ref:GB:uprn": "10015397742", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB London Road Chepbourne Road TN3924.jpg" - } -}, -{ - "type": "node", - "id": 3958679402, - "lat": 56.0567567, - "lon": -3.2966604, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY3 61D" - } -}, -{ - "type": "node", - "id": 3958813807, - "lat": 51.4325353, - "lon": -2.6109717, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS13 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3958853111, - "lat": 54.1275208, - "lon": -0.9746442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO60 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 3960311248, - "lat": 51.0074030, - "lon": -1.4283069, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3960327108, - "lat": 51.0575635, - "lon": -1.7595779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3960327109, - "lat": 51.0619059, - "lon": -1.7678897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP5 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3960713773, - "lat": 51.4448231, - "lon": -2.5691954, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3960713774, - "lat": 51.4529719, - "lon": -2.5748241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS2 228", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3960713775, - "lat": 51.4556768, - "lon": -2.5760104, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS2 4002", - "royal_cypher": "no", - "unfranked_mail": "no" - } -}, -{ - "type": "node", - "id": 3960788642, - "lat": 55.7440854, - "lon": -4.6825708, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA25 42D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3960788648, - "lat": 55.7468737, - "lon": -4.6870823, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3960788656, - "lat": 55.7392343, - "lon": -4.6775205, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA14 87", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3961295194, - "lat": 51.4709680, - "lon": -0.1126612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3961316985, - "lat": 51.0682798, - "lon": -1.7892250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3961334492, - "lat": 51.0802917, - "lon": -1.8642332, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SP2 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3961334500, - "lat": 51.0882825, - "lon": -1.8719937, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP2 395D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3961419659, - "lat": 51.9522708, - "lon": 0.7711167, - "tags": { - "amenity": "post_box", - "ref": "CO8 171" - } -}, -{ - "type": "node", - "id": 3961687597, - "lat": 51.2088920, - "lon": -2.1774436, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3961788912, - "lat": 51.6115325, - "lon": -0.7796755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-05-20", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "note": "Inside ASDA entrance Updated as per sticker, but no date on sticker for new earlier collection times.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP12 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3962432194, - "lat": 58.2300220, - "lon": -6.3892453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "old_ref": "LH 166 Laxdale", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 166", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3962432196, - "lat": 58.2438630, - "lon": -6.3489082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "old_ref": "LH 19 Tong Post Office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3962747039, - "lat": 55.5171763, - "lon": -4.6030572, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA9 2", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 3964226919, - "lat": 56.1078387, - "lon": -3.1720740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3964556375, - "lat": 51.4684016, - "lon": -0.1867788, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW6 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3964961866, - "lat": 55.8503685, - "lon": -4.1537760, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3965003307, - "lat": 51.2426430, - "lon": -2.2128274, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA13 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3965112192, - "lat": 53.0600261, - "lon": -1.2928305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG16 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3965369866, - "lat": 51.3188533, - "lon": -1.8785367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3965940212, - "lat": 54.0717376, - "lon": -2.8430929, - "tags": { - "amenity": "post_box", - "ref": "LA4 152" - } -}, -{ - "type": "node", - "id": 3965943859, - "lat": 54.0714943, - "lon": -2.8585029, - "tags": { - "amenity": "post_box", - "ref": "LA4 63" - } -}, -{ - "type": "node", - "id": 3966319599, - "lat": 54.0718153, - "lon": -2.8668341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "LA4 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3966341682, - "lat": 53.8051680, - "lon": -3.0155918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3966622342, - "lat": 56.0029522, - "lon": -3.7582406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 221", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3966622343, - "lat": 56.0088751, - "lon": -3.7677452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 231", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3966652732, - "lat": 51.0448214, - "lon": -3.1885471, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TA4 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3966803666, - "lat": 55.8761771, - "lon": -3.9830916, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3966803667, - "lat": 55.8758667, - "lon": -3.9687031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ML6 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3966807787, - "lat": 51.8886484, - "lon": -2.0536644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 76" - } -}, -{ - "type": "node", - "id": 3966828101, - "lat": 55.9079036, - "lon": -3.9581583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML6 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3966828102, - "lat": 55.9139777, - "lon": -3.9405820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML6 25", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3966917527, - "lat": 51.3397146, - "lon": -1.5933779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3966966160, - "lat": 55.8842106, - "lon": -3.7717339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH48 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3967027547, - "lat": 55.8603519, - "lon": -3.7514656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML7 123", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3967027555, - "lat": 55.8616767, - "lon": -3.7429745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML7 143", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3967733065, - "lat": 51.0394152, - "lon": -3.1874244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "colour": "red", - "direction": "N", - "drive_through": "no", - "name": "Cotford St. Luke", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TA4 1HX", - "ref": "TA4 808", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3967733066, - "lat": 51.0368687, - "lon": -3.1826268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "drive_through": "no", - "name": "Dene Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 1DA", - "ref": "TA4 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3967775539, - "lat": 54.0725681, - "lon": -2.8694236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA4 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3967823015, - "lat": 54.0693791, - "lon": -2.8736223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "indoor": "yes", - "post_box:type": "indoor_pillar", - "ref": "LA4 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3967924185, - "lat": 53.0411375, - "lon": -0.9423292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG14 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3967924186, - "lat": 53.0376534, - "lon": -0.9298724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG14 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3968201338, - "lat": 52.4179977, - "lon": -2.0566817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B62 249", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3968201339, - "lat": 52.4171291, - "lon": -2.0642482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "note": "a sticker siggests this is a CoD box so collection times will be different", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B62 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3968601158, - "lat": 51.6847849, - "lon": -4.1191465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 290", - "post_box:type": "pillar", - "ref": "SA14 290D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3969066908, - "lat": 55.7477401, - "lon": -4.6095168, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA15 135" - } -}, -{ - "type": "node", - "id": 3970989051, - "lat": 56.0773967, - "lon": -3.4774396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3971154219, - "lat": 50.9450112, - "lon": -2.8146681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "181352320535799", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TA13 237", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 3971163882, - "lat": 50.9483542, - "lon": -2.8100651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TA13 140" - } -}, -{ - "type": "node", - "id": 3971167503, - "lat": 50.9483906, - "lon": -2.8073383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1153411405111424", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TA13 112", - "source:position": "Mapillary 2020-07-30", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 3971167504, - "lat": 50.9500998, - "lon": -2.8155330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA13 142" - } -}, -{ - "type": "node", - "id": 3971748531, - "lat": 55.4635908, - "lon": -4.6233745, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3971749129, - "lat": 55.4766615, - "lon": -4.6228223, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA8 44D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3971749146, - "lat": 55.4721968, - "lon": -4.6259413, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA8 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3971749180, - "lat": 55.4748937, - "lon": -4.6197646, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA8 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3971749213, - "lat": 55.4729934, - "lon": -4.6164038, - "tags": { - "amenity": "post_box", - "note": "label obliterated where code was written beyond KA8", - "post_box:type": "lamp", - "ref": "KA8 ...", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3971749241, - "lat": 55.4740696, - "lon": -4.6255470, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA8 59D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3972053239, - "lat": 57.5807781, - "lon": -3.5604359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3974065786, - "lat": 51.3482566, - "lon": -0.4758954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KT13 299" - } -}, -{ - "type": "node", - "id": 3974096230, - "lat": 52.5613419, - "lon": -1.7936048, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data shows B75 1023. Possible mis-read of 1023D?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B75 10230" - } -}, -{ - "type": "node", - "id": 3974318316, - "lat": 54.1572596, - "lon": -1.8461778, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3974378827, - "lat": 54.0130775, - "lon": -1.7226438, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3974959192, - "lat": 56.0501628, - "lon": -3.3062922, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY3 75", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3974965247, - "lat": 54.0309966, - "lon": -1.6341902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3975453424, - "lat": 54.8986619, - "lon": -1.5326337, - "tags": { - "amenity": "post_box", - "ref": "NE38 101" - } -}, -{ - "type": "node", - "id": 3975453425, - "lat": 54.8993669, - "lon": -1.5324163, - "tags": { - "amenity": "post_box", - "ref": "NE38 508" - } -}, -{ - "type": "node", - "id": 3976470290, - "lat": 51.4691259, - "lon": -2.5583215, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 177D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3976516543, - "lat": 51.4663625, - "lon": -2.5582195, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 179", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3976555803, - "lat": 54.0652165, - "lon": -1.6008476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3977867406, - "lat": 55.5118363, - "lon": -4.4854448, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3977879479, - "lat": 55.4566031, - "lon": -4.6183994, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA7 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3978080957, - "lat": 51.4630188, - "lon": -2.5664128, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3978092779, - "lat": 52.2243907, - "lon": -0.5345340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 3978381505, - "lat": 50.8666344, - "lon": -0.9841759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO9 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3978381506, - "lat": 50.8666373, - "lon": -0.9841515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO9 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3978465281, - "lat": 51.5400265, - "lon": -0.7323288, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 221", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3978465284, - "lat": 51.5389752, - "lon": -0.7297970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "note": "collection times surveyed long time ago, 2009", - "post_box:type": "pillar", - "ref": "SL6 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3978520744, - "lat": 55.4352755, - "lon": -4.5921773, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3978547533, - "lat": 51.5752124, - "lon": -0.7993360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL7 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3978572638, - "lat": 50.8115272, - "lon": -0.5459612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1491D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3978593711, - "lat": 50.8167029, - "lon": -0.5394113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3978669211, - "lat": 51.2109493, - "lon": -0.7400486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3978739649, - "lat": 55.5563137, - "lon": -4.6558056, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3978786489, - "lat": 53.1577300, - "lon": 0.1499052, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3979260086, - "lat": 55.9613822, - "lon": -3.3059403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH4 482", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3979965283, - "lat": 55.4801516, - "lon": -4.5666675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA6 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3980012913, - "lat": 55.5111478, - "lon": -4.4806655, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3980012929, - "lat": 55.5117977, - "lon": -4.4906911, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3980235616, - "lat": 52.4639392, - "lon": 1.5714207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3980351725, - "lat": 53.6824842, - "lon": -1.3101287, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF8 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3980489749, - "lat": 52.7081777, - "lon": -2.3561499, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF11 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3980608034, - "lat": 55.2305403, - "lon": -6.4187188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey", - "source:geometry": "Mapillary" - } -}, -{ - "type": "node", - "id": 3980608785, - "lat": 55.2034376, - "lon": -6.5225903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "Mapillary", - "source:geometry": "Bing" - } -}, -{ - "type": "node", - "id": 3980680742, - "lat": 55.1272544, - "lon": -6.6534056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT52 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3981993555, - "lat": 54.0616402, - "lon": -2.8528660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "LA4 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3982051671, - "lat": 54.0627750, - "lon": -2.8620535, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA4 211" - } -}, -{ - "type": "node", - "id": 3982235963, - "lat": 54.0665294, - "lon": -2.8803063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA4 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3982532493, - "lat": 51.0325190, - "lon": -3.0575288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3982641444, - "lat": 52.2377714, - "lon": -0.7884871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3982641445, - "lat": 52.2396705, - "lon": -0.7848092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3982867099, - "lat": 53.6002424, - "lon": -1.0231450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3984089618, - "lat": 54.0651162, - "lon": -2.8825882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "LA3 25D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3984149470, - "lat": 54.6123016, - "lon": -5.9293411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 2GD", - "ref": "BT15 106" - } -}, -{ - "type": "node", - "id": 3984149471, - "lat": 54.6201469, - "lon": -5.9380739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 422" - } -}, -{ - "type": "node", - "id": 3984149472, - "lat": 54.6224749, - "lon": -5.9381118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 100D" - } -}, -{ - "type": "node", - "id": 3984149473, - "lat": 54.6251126, - "lon": -5.9380759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 476" - } -}, -{ - "type": "node", - "id": 3984149474, - "lat": 54.6159527, - "lon": -5.9377989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 2HN", - "ref": "BT15 330" - } -}, -{ - "type": "node", - "id": 3984149477, - "lat": 54.6232087, - "lon": -5.9301810, - "tags": { - "addr:city": "Belfast", - "addr:street": "Skegoneill Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT15 249" - } -}, -{ - "type": "node", - "id": 3984711801, - "lat": 55.4129214, - "lon": -4.7442115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA7 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3984711818, - "lat": 55.4048121, - "lon": -4.7594597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA7 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3985439267, - "lat": 55.7381847, - "lon": -4.6648686, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3986149675, - "lat": 54.0639008, - "lon": -2.8867547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA4 129D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3986154816, - "lat": 54.6153169, - "lon": -5.9244077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 3HE", - "ref": "BT15 123" - } -}, -{ - "type": "node", - "id": 3986154817, - "lat": 54.6281260, - "lon": -5.9349265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 4AN", - "ref": "BT15 188" - } -}, -{ - "type": "node", - "id": 3986154818, - "lat": 54.6318023, - "lon": -5.9379640, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "514", - "addr:postcode": "BT15 5GG", - "addr:street": "Antrim Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3986154819, - "lat": 54.6176906, - "lon": -5.9238991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 3JX", - "ref": "BT15 116" - } -}, -{ - "type": "node", - "id": 3986154820, - "lat": 54.6231811, - "lon": -5.9226491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 3PG", - "ref": "BT15 11" - } -}, -{ - "type": "node", - "id": 3986154821, - "lat": 54.6259559, - "lon": -5.9269875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 3LX", - "ref": "BT15 468" - } -}, -{ - "type": "node", - "id": 3986154822, - "lat": 54.6290476, - "lon": -5.9235600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 4AS", - "ref": "BT15 318" - } -}, -{ - "type": "node", - "id": 3986154823, - "lat": 54.6169232, - "lon": -5.9341440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 3AP", - "ref": "BT15 151" - } -}, -{ - "type": "node", - "id": 3986154824, - "lat": 54.6182297, - "lon": -5.9382339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 5AB", - "ref": "BT15 9" - } -}, -{ - "type": "node", - "id": 3987103357, - "lat": 56.1097237, - "lon": -3.1615308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3987103358, - "lat": 56.1097124, - "lon": -3.1615360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 91", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3987103359, - "lat": 56.1079744, - "lon": -3.1600089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3987103360, - "lat": 56.1115211, - "lon": -3.1576509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KY1 118", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3987573202, - "lat": 50.9986069, - "lon": -3.2301770, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3987621435, - "lat": 52.6181501, - "lon": -2.4793374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 328" - } -}, -{ - "type": "node", - "id": 3987726438, - "lat": 52.6084993, - "lon": -2.4703530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 339" - } -}, -{ - "type": "node", - "id": 3987766882, - "lat": 52.6092213, - "lon": -2.4750624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 36" - } -}, -{ - "type": "node", - "id": 3988152303, - "lat": 54.6185205, - "lon": -5.9289296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT15 456" - } -}, -{ - "type": "node", - "id": 3988152304, - "lat": 54.6104327, - "lon": -5.9254717, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT15 1WA", - "addr:street": "Brougham Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 914" - } -}, -{ - "type": "node", - "id": 3988164286, - "lat": 52.6128779, - "lon": -2.4821002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TF12 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3988479347, - "lat": 58.4387697, - "lon": -3.0988748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KW1 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3988487474, - "lat": 50.9195327, - "lon": -3.3853392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:design": "type_n", - "post_box:type": "pillar", - "ref": "EX16 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3988582492, - "lat": 54.6024290, - "lon": -5.9235619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 14:30; Su off", - "drive_through": "no", - "name": "Post Box (late collection)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT1 1AA", - "ref": "BT1 1111" - } -}, -{ - "type": "node", - "id": 3988582493, - "lat": 54.5973505, - "lon": -5.9295353, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT1 5GA", - "addr:street": "Donegall Square North", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT1 259;BT1 1259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3989021696, - "lat": 58.5650212, - "lon": -3.9345461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW14 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3989188509, - "lat": 58.3082092, - "lon": -3.2863932, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3989195718, - "lat": 58.4718612, - "lon": -3.3027624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW1 53", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3989269063, - "lat": 58.6322363, - "lon": -3.1232373, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3989830397, - "lat": 54.0719510, - "lon": -2.8497224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA4 113", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3989830398, - "lat": 54.0648672, - "lon": -2.8698788, - "tags": { - "amenity": "post_box", - "ref": "LA4 170" - } -}, -{ - "type": "node", - "id": 3989830399, - "lat": 54.0671090, - "lon": -2.8764825, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA4 81", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 3989842094, - "lat": 54.0622379, - "lon": -2.8758416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 160D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3989859478, - "lat": 52.6192396, - "lon": -2.4731336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 90" - } -}, -{ - "type": "node", - "id": 3989859479, - "lat": 52.6147113, - "lon": -2.4865993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 51" - } -}, -{ - "type": "node", - "id": 3989859480, - "lat": 52.6176202, - "lon": -2.4867652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 35" - } -}, -{ - "type": "node", - "id": 3989881646, - "lat": 52.6207982, - "lon": -2.4874166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF12 174" - } -}, -{ - "type": "node", - "id": 3990224792, - "lat": 58.9362804, - "lon": -3.1411699, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3991438341, - "lat": 55.5106472, - "lon": -4.2894731, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3991877356, - "lat": 52.8239155, - "lon": -4.0832750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LL45 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3991885160, - "lat": 53.4254979, - "lon": -2.9882697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L5 96 by Carron Company on Vauxhall Road near Boundary Street.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Vauxhall Road at Boundary Street.jpg" - } -}, -{ - "type": "node", - "id": 3992031680, - "lat": 58.2184181, - "lon": -6.4095968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "location": "Marybank", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 173", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3992266289, - "lat": 53.4533872, - "lon": -2.2372860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 3992909829, - "lat": 50.8268562, - "lon": -0.3225849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992911783, - "lat": 50.8280642, - "lon": -0.3223809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3992914627, - "lat": 50.8116835, - "lon": -0.3700554, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1711", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3992914893, - "lat": 50.8289956, - "lon": -0.3192834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992916913, - "lat": 50.8116657, - "lon": -0.3700715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1710", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3992917182, - "lat": 50.8346605, - "lon": -0.3174826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992918212, - "lat": 50.8349272, - "lon": -0.3146591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1384D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992925932, - "lat": 50.8324009, - "lon": -0.3167051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992927777, - "lat": 50.8313252, - "lon": -0.3212273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992928949, - "lat": 50.8313997, - "lon": -0.3318676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1387D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992929114, - "lat": 50.8329540, - "lon": -0.3364368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1388", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3992932957, - "lat": 50.8268078, - "lon": -0.3397571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992943683, - "lat": 50.8161437, - "lon": -0.3721810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1743", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3992945508, - "lat": 50.8182370, - "lon": -0.3761035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3993419093, - "lat": 55.1855695, - "lon": -1.7148658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "pillar", - "ref": "NE61 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3993442474, - "lat": 51.1030228, - "lon": -0.0485803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3993949172, - "lat": 51.8096038, - "lon": 0.6506513, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3994256145, - "lat": 52.6419728, - "lon": -1.7444271, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3994363157, - "lat": 58.2753805, - "lon": -6.3037858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "note": "attached to wall at entrance to shop", - "old_ref": "LH77 Back Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HS2 77", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 3994475519, - "lat": 53.5543100, - "lon": -1.1886867, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3994783394, - "lat": 55.7121645, - "lon": -4.5362621, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3994797587, - "lat": 55.3896681, - "lon": -4.1793646, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 3995433565, - "lat": 55.4585742, - "lon": -4.2329919, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 3995780740, - "lat": 50.8372440, - "lon": 0.4659924, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Egerton Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 12", - "ref:GB:uprn": "10015413610", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Egerton Road TN3912.jpg" - } -}, -{ - "type": "node", - "id": 3995855169, - "lat": 51.3643244, - "lon": -0.3547432, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 185D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3995864988, - "lat": 51.3697626, - "lon": -0.3443697, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 244D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3995866527, - "lat": 51.3728932, - "lon": -0.3381416, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 230D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3995879080, - "lat": 51.3746994, - "lon": -0.3382271, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3995887492, - "lat": 51.3794098, - "lon": -0.3341083, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3995893496, - "lat": 51.3825160, - "lon": -0.3262534, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 298", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3995900310, - "lat": 51.3857099, - "lon": -0.3143967, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 05:15, Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "support": "tower" - } -}, -{ - "type": "node", - "id": 3995906564, - "lat": 51.3892776, - "lon": -0.3056988, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 50D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3995908995, - "lat": 51.3882106, - "lon": -0.3113028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 86D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3995942677, - "lat": 51.3917356, - "lon": -0.3079843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KT6 409", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 3995958600, - "lat": 51.3965312, - "lon": -0.3023311, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 3995984993, - "lat": 50.7862847, - "lon": -0.9918746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO11 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996089522, - "lat": 51.2671776, - "lon": 0.0711660, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN16 1742;TN16 1741", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996139970, - "lat": 51.1914576, - "lon": 0.2694362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN9 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 3996141217, - "lat": 50.8317158, - "lon": -0.6410256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996151957, - "lat": 50.8348320, - "lon": -0.6438138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996168559, - "lat": 50.7832293, - "lon": -0.6738301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-04-30", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO21 6701;PO21 6702", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996178790, - "lat": 50.7976260, - "lon": -0.6475889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO22 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996203257, - "lat": 50.7971411, - "lon": -0.6445983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996205368, - "lat": 52.7575374, - "lon": 1.1451033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 3996349965, - "lat": 56.1371931, - "lon": -3.9784631, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-02-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "FK9 28D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 3996384226, - "lat": 53.9670888, - "lon": -1.0726288, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "YO31 8RL", - "ref": "YO31 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3996415537, - "lat": 51.9589428, - "lon": 0.9928829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO7 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3997199216, - "lat": 51.0438773, - "lon": -3.2274459, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA4 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3997402722, - "lat": 50.8412228, - "lon": 0.4577968, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Collington Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 18", - "ref:GB:uprn": "10015350471", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Collington Avenue TN3918.jpg" - } -}, -{ - "type": "node", - "id": 3997402724, - "lat": 50.8458125, - "lon": 0.4571049, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Sutherland Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 37", - "ref:GB:uprn": "10015479136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Sutherland Avenue TN3937.jpg" - } -}, -{ - "type": "node", - "id": 3997402725, - "lat": 50.8472847, - "lon": 0.4693282, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "London Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 23", - "ref:GB:uprn": "10015480724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB London Road Hillside Road TN3923.jpg" - } -}, -{ - "type": "node", - "id": 3997777132, - "lat": 54.2284438, - "lon": -0.5908590, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO13 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 3997781963, - "lat": 54.2271943, - "lon": -0.5534986, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3997803340, - "lat": 54.2349855, - "lon": -0.3821513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO11 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3997817355, - "lat": 52.5461899, - "lon": -2.8048963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "seen in new location May 2023", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY6 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3997933771, - "lat": 53.0206373, - "lon": -4.1193610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3998224279, - "lat": 54.5305596, - "lon": -6.0360701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 3998511248, - "lat": 50.7962921, - "lon": -0.6359945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3998797952, - "lat": 50.9850437, - "lon": -3.2175108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3998891540, - "lat": 52.6285837, - "lon": -2.4784990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TF8 265" - } -}, -{ - "type": "node", - "id": 3999392600, - "lat": 52.5315078, - "lon": -2.0089100, - "tags": { - "amenity": "post_box", - "ref": "B70 41" - } -}, -{ - "type": "node", - "id": 3999392608, - "lat": 52.5323168, - "lon": -2.0140182, - "tags": { - "amenity": "post_box", - "ref": "B70 72" - } -}, -{ - "type": "node", - "id": 3999440700, - "lat": 52.5302933, - "lon": -2.0330476, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DY4 97" - } -}, -{ - "type": "node", - "id": 3999586600, - "lat": 54.2916566, - "lon": -1.9964972, - "tags": { - "amenity": "post_box", - "name": "Aysgarth Post Box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 3999844662, - "lat": 51.9699192, - "lon": 0.9784464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:apertures": "1", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO7 307", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 3999844884, - "lat": 51.9721676, - "lon": 0.9866362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO7 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 3999899017, - "lat": 51.9599668, - "lon": 1.0197916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "CO7 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4000969280, - "lat": 52.5278648, - "lon": -2.0314924, - "tags": { - "amenity": "post_box", - "ref": "DY4 122" - } -}, -{ - "type": "node", - "id": 4001038194, - "lat": 51.0128935, - "lon": -3.1264522, - "tags": { - "amenity": "post_box", - "mapillary": "488274472222795", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 52", - "survey:date": "2020-03-26" - } -}, -{ - "type": "node", - "id": 4001038201, - "lat": 51.0150536, - "lon": -3.1231059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 552" - } -}, -{ - "type": "node", - "id": 4001038202, - "lat": 51.0151884, - "lon": -3.1300677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 478" - } -}, -{ - "type": "node", - "id": 4001038207, - "lat": 51.0187640, - "lon": -3.0980897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 130" - } -}, -{ - "type": "node", - "id": 4001038208, - "lat": 51.0187910, - "lon": -3.1126263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 631" - } -}, -{ - "type": "node", - "id": 4001038211, - "lat": 51.0197184, - "lon": -3.1108379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1168365153645399", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TA1 37", - "survey:date": "2020-03-01" - } -}, -{ - "type": "node", - "id": 4001038213, - "lat": 51.0232412, - "lon": -3.1101305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 188" - } -}, -{ - "type": "node", - "id": 4001038214, - "lat": 51.0271426, - "lon": -3.1251688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 586" - } -}, -{ - "type": "node", - "id": 4001038215, - "lat": 51.0301000, - "lon": -3.1268434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 184", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4001038216, - "lat": 51.0325547, - "lon": -3.1225285, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 554" - } -}, -{ - "type": "node", - "id": 4001038217, - "lat": 51.0328021, - "lon": -3.0937791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA2 543" - } -}, -{ - "type": "node", - "id": 4001177104, - "lat": 52.5109541, - "lon": -2.8408441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY6 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4001177111, - "lat": 52.5223505, - "lon": -2.8218524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4001276719, - "lat": 55.7801891, - "lon": -4.2615525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "519621769921891", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2022-05-15" - } -}, -{ - "type": "node", - "id": 4001276721, - "lat": 55.7917482, - "lon": -4.2818973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1154318152098784", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G76 725", - "source": "survey", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 4001316354, - "lat": 55.8418403, - "lon": -3.9658687, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4001316355, - "lat": 55.8402239, - "lon": -3.9546350, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4003251431, - "lat": 54.2906543, - "lon": -1.9838619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DL8 140D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4003328634, - "lat": 51.5386627, - "lon": -0.1525877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 12D" - } -}, -{ - "type": "node", - "id": 4003515615, - "lat": 54.3366664, - "lon": -1.6268622, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4003528801, - "lat": 54.3442335, - "lon": -1.5625232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4004396291, - "lat": 54.4478874, - "lon": -1.1568012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "835337671597996", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-09-05" - } -}, -{ - "type": "node", - "id": 4004433293, - "lat": 51.5791588, - "lon": -0.6927684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 4004433309, - "lat": 51.6047731, - "lon": -0.6921967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HP10 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-02-13" - } -}, -{ - "type": "node", - "id": 4004520218, - "lat": 55.6138638, - "lon": -4.5932510, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4004636353, - "lat": 54.4360290, - "lon": -1.3994576, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4004698974, - "lat": 54.4302860, - "lon": -1.5633975, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4004736484, - "lat": 51.3635604, - "lon": -0.0897480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4004918455, - "lat": 51.4779305, - "lon": -2.5394035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "post_box:type": "pillar", - "ref": "BS16 338", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4004918456, - "lat": 51.4785726, - "lon": -2.5595020, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 414D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4004918460, - "lat": 51.4817719, - "lon": -2.5206913, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS16 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4004918461, - "lat": 51.4833575, - "lon": -2.5530221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS16 702D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4004918468, - "lat": 51.4918184, - "lon": -2.5358038, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS16 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4004918469, - "lat": 51.4957802, - "lon": -2.5299461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS16 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4005021562, - "lat": 54.3703259, - "lon": -1.7108229, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4005021723, - "lat": 54.3786763, - "lon": -1.7110241, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4005701363, - "lat": 53.9388713, - "lon": -1.8049820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 839" - } -}, -{ - "type": "node", - "id": 4006383984, - "lat": 53.4332475, - "lon": -1.2985288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S65 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006391374, - "lat": 53.4338680, - "lon": -1.2990310, - "tags": { - "amenity": "post_box", - "comment": "appears to be a private box." - } -}, -{ - "type": "node", - "id": 4006392165, - "lat": 52.3056104, - "lon": 0.4982980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP28 8250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006427825, - "lat": 52.3037927, - "lon": 0.4930241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "fixme": "check if postbox is still here", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP28 2045", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006469223, - "lat": 52.3073925, - "lon": 0.4949661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP28 2239", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4006469573, - "lat": 52.3020656, - "lon": 0.4825772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006496838, - "lat": 52.3212147, - "lon": 0.4419612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006506580, - "lat": 52.3555460, - "lon": 0.5101205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP28 2270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006508437, - "lat": 52.3503410, - "lon": 0.5332177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4006763965, - "lat": 53.6723081, - "lon": -0.5079472, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4007002782, - "lat": 52.3344557, - "lon": 0.4815261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4007039841, - "lat": 51.0282483, - "lon": -3.1205364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 29" - } -}, -{ - "type": "node", - "id": 4007115431, - "lat": 52.5279194, - "lon": -2.0167380, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "B70 9", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4007329355, - "lat": 54.5930217, - "lon": -5.9548541, - "tags": { - "addr:postcode": "BT12 6BA", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "The Royal Hospitals", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT12 585" - } -}, -{ - "type": "node", - "id": 4007679696, - "lat": 53.9443553, - "lon": -2.0433675, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4008190758, - "lat": 50.8493763, - "lon": -1.0710602, - "tags": { - "amenity": "post_box", - "collection_plate": "CP15", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4009442824, - "lat": 53.2939016, - "lon": 0.0357368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4009688477, - "lat": 51.0632846, - "lon": -3.2047490, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 790", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4009746411, - "lat": 54.4237226, - "lon": -1.5270917, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4009834940, - "lat": 53.9488947, - "lon": -2.4647165, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4010252943, - "lat": 55.9471086, - "lon": -3.5091437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 9", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4011829208, - "lat": 50.8975413, - "lon": -1.0109458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011845792, - "lat": 50.7830687, - "lon": -0.7238278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 91", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4011849176, - "lat": 50.8330391, - "lon": -0.7776389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO19 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011853724, - "lat": 50.8337006, - "lon": -0.7726044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4011856688, - "lat": 50.8334643, - "lon": -0.7673204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-01-23", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4011865245, - "lat": 50.8344172, - "lon": -0.7582443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011867378, - "lat": 50.8374392, - "lon": -0.7597946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011873005, - "lat": 50.8387536, - "lon": -0.7628791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011874351, - "lat": 50.8413078, - "lon": -0.7728140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4011876989, - "lat": 50.8435943, - "lon": -0.7680772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011878604, - "lat": 50.7786745, - "lon": -0.7312822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011890078, - "lat": 50.7786032, - "lon": -0.7369954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011892703, - "lat": 50.7752883, - "lon": -0.7396082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011895348, - "lat": 50.7698038, - "lon": -0.7385700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011899389, - "lat": 50.7724455, - "lon": -0.7319747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4011902358, - "lat": 50.7750101, - "lon": -0.7363681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4012358203, - "lat": 54.6085446, - "lon": -5.9411119, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT14 6AD", - "addr:street": "Crumlin Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT14 12" - } -}, -{ - "type": "node", - "id": 4012896410, - "lat": 52.6407740, - "lon": -2.4915095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TF8 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4012940757, - "lat": 52.6432517, - "lon": -2.4985626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF8 311" - } -}, -{ - "type": "node", - "id": 4013094425, - "lat": 50.8672582, - "lon": -1.0423933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 376D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4013181915, - "lat": 51.4801090, - "lon": -0.6067150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SL4 92D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "map note" - } -}, -{ - "type": "node", - "id": 4013181917, - "lat": 52.2794800, - "lon": -0.6371660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "map note" - } -}, -{ - "type": "node", - "id": 4013181918, - "lat": 52.2818798, - "lon": -0.6398924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "map note" - } -}, -{ - "type": "node", - "id": 4013181919, - "lat": 53.3011937, - "lon": -2.3731108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "map note" - } -}, -{ - "type": "node", - "id": 4013181923, - "lat": 53.9298493, - "lon": -1.7073848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS21 542", - "source": "map note" - } -}, -{ - "type": "node", - "id": 4014769137, - "lat": 51.5016709, - "lon": -0.1899923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W8 43;W8 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4014811419, - "lat": 51.4959167, - "lon": -0.1894336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4014825603, - "lat": 51.4897928, - "lon": -0.1903274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "rectangular", - "post_box:type": "pillar", - "ref": "SW5 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4015082660, - "lat": 51.5115261, - "lon": -0.0770784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EC3N 306P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4015280546, - "lat": 54.1155185, - "lon": -2.6377366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA2 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4016850761, - "lat": 55.1833432, - "lon": -1.5743212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE63 1208;NE63 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4016858376, - "lat": 53.9838121, - "lon": -2.3848872, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4017892705, - "lat": 52.8571996, - "lon": -0.9752596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE14 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4017945514, - "lat": 52.8243206, - "lon": -0.8802196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE14 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4018776608, - "lat": 56.1097149, - "lon": -3.1665178, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "KY1 8D" - } -}, -{ - "type": "node", - "id": 4019460229, - "lat": 54.8786214, - "lon": -1.5656383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4019514942, - "lat": 54.8820327, - "lon": -1.5756538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 20" - } -}, -{ - "type": "node", - "id": 4019550757, - "lat": 54.8832668, - "lon": -1.5645593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4019583001, - "lat": 54.8825798, - "lon": -1.5684667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4019860182, - "lat": 54.8928410, - "lon": -1.5750167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4019990575, - "lat": 54.8959142, - "lon": -1.5775504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-04-21", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4020222983, - "lat": 53.5381653, - "lon": -1.1071091, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4020345064, - "lat": 53.8661956, - "lon": -0.4959192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "post_box:type": "lamp", - "ref": "HU17 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4020636772, - "lat": 53.6109464, - "lon": -0.4698742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4020700789, - "lat": 50.8802893, - "lon": -1.0321384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 8302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4020702146, - "lat": 50.8802845, - "lon": -1.0321317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 8301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4020830703, - "lat": 50.8501444, - "lon": 0.4608235, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "West Down Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN39 35", - "ref:GB:uprn": "10025144698", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Westdown Road TN3935.jpg" - } -}, -{ - "type": "node", - "id": 4020830704, - "lat": 50.8505014, - "lon": 0.4690703, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Buxton Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 68", - "ref:GB:uprn": "10015313874", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Buxton Drive TN3968.jpg" - } -}, -{ - "type": "node", - "id": 4020830771, - "lat": 50.8527031, - "lon": 0.4624566, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Windmill Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "Broken Post Office Directional Sign holder on cap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 82", - "ref:GB:uprn": "10015476513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Windmill Drive Post Office TN3982.jpg" - } -}, -{ - "type": "node", - "id": 4022908116, - "lat": 53.6125988, - "lon": -0.2222276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN40 131" - } -}, -{ - "type": "node", - "id": 4023656078, - "lat": 54.4123462, - "lon": -1.7157895, - "tags": { - "amenity": "post_box", - "ref": "DL10 93" - } -}, -{ - "type": "node", - "id": 4023656079, - "lat": 54.4101200, - "lon": -1.7199625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DL10 116" - } -}, -{ - "type": "node", - "id": 4023660391, - "lat": 54.4089792, - "lon": -1.7136180, - "tags": { - "amenity": "post_box", - "ref": "DL10 244" - } -}, -{ - "type": "node", - "id": 4023660392, - "lat": 54.4084587, - "lon": -1.7169924, - "tags": { - "amenity": "post_box", - "ref": "DL10 119" - } -}, -{ - "type": "node", - "id": 4023668306, - "lat": 54.4100964, - "lon": -1.7254926, - "tags": { - "addr:city": "Richmond", - "addr:street": "Gilling Road", - "amenity": "post_box", - "name": "Sub Post Office" - } -}, -{ - "type": "node", - "id": 4023668307, - "lat": 54.4101215, - "lon": -1.7256281, - "tags": { - "amenity": "post_box", - "ref": "DL10 96" - } -}, -{ - "type": "node", - "id": 4023710414, - "lat": 54.4065730, - "lon": -1.7315913, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL10 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4023720530, - "lat": 54.4118830, - "lon": -1.7309327, - "tags": { - "amenity": "post_box", - "ref": "DL10 114" - } -}, -{ - "type": "node", - "id": 4023720537, - "lat": 54.4098587, - "lon": -1.7315161, - "tags": { - "amenity": "post_box", - "ref": "DL10 103" - } -}, -{ - "type": "node", - "id": 4023744129, - "lat": 54.4086922, - "lon": -1.7353844, - "tags": { - "amenity": "post_box", - "mapillary": "622887119930605", - "ref": "DL10 2", - "survey:date": "2023-08-13" - } -}, -{ - "type": "node", - "id": 4023823071, - "lat": 50.8562946, - "lon": 0.4711192, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Sidley Street", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 39", - "ref:GB:uprn": "10015350281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Sidley Post Office Ninfield Road TN3939.jpg" - } -}, -{ - "type": "node", - "id": 4023827568, - "lat": 54.4046785, - "lon": -1.7367721, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DL10 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4023907989, - "lat": 54.4030451, - "lon": -1.7360186, - "tags": { - "amenity": "post_box", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "DL10 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4025733062, - "lat": 54.4031168, - "lon": -1.7384734, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-20", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DL10 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4025806766, - "lat": 54.4010104, - "lon": -1.7404746, - "tags": { - "amenity": "post_box", - "ref": "DL10 5" - } -}, -{ - "type": "node", - "id": 4025833336, - "lat": 54.4051765, - "lon": -1.7450574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DL10 6" - } -}, -{ - "type": "node", - "id": 4025833337, - "lat": 54.4108456, - "lon": -1.7445958, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL10 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4025833338, - "lat": 54.4108987, - "lon": -1.7446011, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "DL10 95" - } -}, -{ - "type": "node", - "id": 4026457351, - "lat": 50.6142441, - "lon": -4.0747793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4028775284, - "lat": 53.5249180, - "lon": -1.6711701, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-07-19", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S36 449", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4029320046, - "lat": 53.4982741, - "lon": -1.1829819, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4029417565, - "lat": 53.5200190, - "lon": -0.9245886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4030379307, - "lat": 52.7999118, - "lon": -0.9242095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE14 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4030379309, - "lat": 52.8000112, - "lon": -0.9282968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE14 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4030634258, - "lat": 51.4593845, - "lon": -2.5481980, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030634259, - "lat": 51.4630230, - "lon": -2.5532220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "BS5 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030634261, - "lat": 51.4647081, - "lon": -2.5462486, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4030634262, - "lat": 51.4662715, - "lon": -2.5474492, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030634263, - "lat": 51.4662644, - "lon": -2.5377320, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030634264, - "lat": 51.4665290, - "lon": -2.5265426, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS15 1131D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4030634265, - "lat": 51.4680688, - "lon": -2.5419610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS5 207", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4030634266, - "lat": 51.4693804, - "lon": -2.5480146, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 206", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4030634267, - "lat": 51.4702820, - "lon": -2.5202678, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS15 132D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4030634268, - "lat": 51.4706561, - "lon": -2.5479278, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS5 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030634269, - "lat": 51.4732919, - "lon": -2.5355051, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS16 410", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4030634270, - "lat": 50.9685503, - "lon": -1.3534111, - "tags": { - "amenity": "post_box", - "collection_plate": "not shown", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "left hand slot is for stamped mail and right hand slot is for franked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO50 444;SO50 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030640113, - "lat": 50.9951196, - "lon": -1.3818250, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030654568, - "lat": 50.9908454, - "lon": -1.3670968, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 664", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4030666166, - "lat": 50.9870732, - "lon": -1.3686312, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO53 635D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4030690910, - "lat": 50.9422420, - "lon": -1.3970599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 625D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4030700506, - "lat": 50.9388491, - "lon": -1.4052607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 263D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4030700550, - "lat": 50.9111077, - "lon": -1.3962979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 174D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4030744614, - "lat": 53.4817896, - "lon": -1.2359845, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN12 299D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4030803447, - "lat": 53.5262691, - "lon": -0.8279897, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4031412949, - "lat": 54.6134478, - "lon": -5.9361458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT15 2GW", - "ref": "BT15 105" - } -}, -{ - "type": "node", - "id": 4031412950, - "lat": 54.6111613, - "lon": -5.9357622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "BT14 6BE", - "ref": "BT14 144" - } -}, -{ - "type": "node", - "id": 4031623170, - "lat": 54.6356498, - "lon": -5.9385190, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "15", - "addr:postcode": "BT15 5HH", - "addr:street": "Strathmore Park", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 789" - } -}, -{ - "type": "node", - "id": 4031735256, - "lat": 53.4259726, - "lon": -0.8453869, - "tags": { - "amenity": "post_box", - "highway": "street_lamp", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4032089838, - "lat": 54.6070571, - "lon": -1.5997363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4032092445, - "lat": 50.8425872, - "lon": -2.6790997, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 111", - "ref:GB:uprn": "10015465569", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4032109830, - "lat": 50.8889393, - "lon": -2.6214059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 221", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4032111486, - "lat": 50.9015621, - "lon": -2.6758255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4032230441, - "lat": 54.6311789, - "lon": -1.8982077, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4032230486, - "lat": 54.6326343, - "lon": -1.8918158, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4032248631, - "lat": 54.6131132, - "lon": -1.8049577, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4032572299, - "lat": 54.8883706, - "lon": -1.5766687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4032617069, - "lat": 54.8867155, - "lon": -1.4035835, - "tags": { - "amenity": "post_box", - "ref": "SR3 247" - } -}, -{ - "type": "node", - "id": 4032678585, - "lat": 54.8854102, - "lon": -1.4272813, - "tags": { - "amenity": "post_box", - "ref": "SR3 223" - } -}, -{ - "type": "node", - "id": 4032679741, - "lat": 54.8766585, - "lon": -1.4202572, - "tags": { - "amenity": "post_box", - "ref": "SR3 285" - } -}, -{ - "type": "node", - "id": 4032697216, - "lat": 54.8781410, - "lon": -1.4243961, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "SR3 211" - } -}, -{ - "type": "node", - "id": 4032723253, - "lat": 54.8739321, - "lon": -1.4277909, - "tags": { - "amenity": "post_box", - "ref": "SR3 240" - } -}, -{ - "type": "node", - "id": 4033075795, - "lat": 54.8819867, - "lon": -1.4308456, - "tags": { - "amenity": "post_box", - "ref": "SR3 227" - } -}, -{ - "type": "node", - "id": 4033127041, - "lat": 54.8887585, - "lon": -1.4245248, - "tags": { - "amenity": "post_box", - "ref": "SR3 32" - } -}, -{ - "type": "node", - "id": 4033189737, - "lat": 54.8882922, - "lon": -1.4177643, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR3 103" - } -}, -{ - "type": "node", - "id": 4033246963, - "lat": 54.8941478, - "lon": -1.4321414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR4 167" - } -}, -{ - "type": "node", - "id": 4033949949, - "lat": 52.9001762, - "lon": -1.8626493, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST14 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4033960499, - "lat": 50.8302853, - "lon": -2.6629052, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 17", - "ref:GB:uprn": "10015296220", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4034009397, - "lat": 50.8341296, - "lon": 0.4335486, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cooden Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN39 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB Cooden Drive Beaulieu Road TN3943.jpg" - } -}, -{ - "type": "node", - "id": 4034009400, - "lat": 50.8363255, - "lon": 0.4550372, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Richmond Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 58", - "ref:GB:uprn": "10015343444", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Richmond Avenue TN3958.jpg" - } -}, -{ - "type": "node", - "id": 4034009401, - "lat": 50.8378877, - "lon": 0.4522229, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cooden Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 59", - "ref:GB:uprn": "10015366713", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Cooden Drive Westcourt Drive TN3959.jpg" - } -}, -{ - "type": "node", - "id": 4034009402, - "lat": 50.8394332, - "lon": 0.4274071, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Maple Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 76", - "ref:GB:uprn": "10015475748", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Maple Avenue TN3976.jpg" - } -}, -{ - "type": "node", - "id": 4034009419, - "lat": 50.8402967, - "lon": 0.4338719, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Kewhurst Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 29", - "ref:GB:uprn": "10015476708", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Kewhurst Avenue TN3929.jpg" - } -}, -{ - "type": "node", - "id": 4034009430, - "lat": 50.8410281, - "lon": 0.4383263, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Collington Lane West", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 28", - "ref:GB:uprn": "10015453094", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Collington Lane West TN3928.jpg" - } -}, -{ - "type": "node", - "id": 4034381499, - "lat": 50.9706221, - "lon": -1.3368287, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4034383036, - "lat": 50.9750269, - "lon": -1.3365149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO50 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034389116, - "lat": 50.9855685, - "lon": -1.3263453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 15:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO50 712", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034394221, - "lat": 50.9763451, - "lon": -1.3313769, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 442D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4034419838, - "lat": 50.9665573, - "lon": -1.2851906, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO50 314", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4034450416, - "lat": 50.9619688, - "lon": -1.3155561, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO50 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034464658, - "lat": 50.9016088, - "lon": -1.1862253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO17 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034474918, - "lat": 50.8434979, - "lon": -0.9144961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO10 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034482892, - "lat": 50.8610431, - "lon": -0.9380231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4034486808, - "lat": 50.8631445, - "lon": -0.9369862, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO10 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034496821, - "lat": 50.9128059, - "lon": -1.0067143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO8 89" - } -}, -{ - "type": "node", - "id": 4034500842, - "lat": 50.9091605, - "lon": -1.0103741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO8 168" - } -}, -{ - "type": "node", - "id": 4034502363, - "lat": 50.9105803, - "lon": -0.9951070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO8 204", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4034507257, - "lat": 50.8999240, - "lon": -1.0075245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 131" - } -}, -{ - "type": "node", - "id": 4034509179, - "lat": 50.8169818, - "lon": -1.2137864, - "tags": { - "amenity": "post_box", - "ref": "PO14 7" - } -}, -{ - "type": "node", - "id": 4034516104, - "lat": 50.8187587, - "lon": -1.2218917, - "tags": { - "amenity": "post_box", - "ref": "PO14 108" - } -}, -{ - "type": "node", - "id": 4034517578, - "lat": 50.8836047, - "lon": -1.0363348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "last_checked": "2021-03-18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4034527984, - "lat": 50.8797108, - "lon": -1.0342614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "Inside the Asda superstore between the two entrances/exits.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 375" - } -}, -{ - "type": "node", - "id": 4034531484, - "lat": 50.8809267, - "lon": -1.0273253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-09", - "old_ref": "PO7 371", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 371D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4034534181, - "lat": 50.8840036, - "lon": -1.0276348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 73" - } -}, -{ - "type": "node", - "id": 4034556624, - "lat": 53.1599092, - "lon": -3.3034911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4034825390, - "lat": 54.8975325, - "lon": -1.4192655, - "tags": { - "amenity": "post_box", - "ref": "SR4 172" - } -}, -{ - "type": "node", - "id": 4034891009, - "lat": 54.8979842, - "lon": -1.4290329, - "tags": { - "amenity": "post_box", - "ref": "SR4 208" - } -}, -{ - "type": "node", - "id": 4034913773, - "lat": 54.9016363, - "lon": -1.4296012, - "tags": { - "amenity": "post_box", - "ref": "SR4 12" - } -}, -{ - "type": "node", - "id": 4034913893, - "lat": 54.9090090, - "lon": -1.4458388, - "tags": { - "amenity": "post_box", - "ref": "SR4 53" - } -}, -{ - "type": "node", - "id": 4034942328, - "lat": 54.9052262, - "lon": -1.4506922, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "SR4 180" - } -}, -{ - "type": "node", - "id": 4035025708, - "lat": 54.9018024, - "lon": -1.4547518, - "tags": { - "amenity": "post_box", - "ref": "SR4 261" - } -}, -{ - "type": "node", - "id": 4035025732, - "lat": 54.8969986, - "lon": -1.4484328, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "SR4 204" - } -}, -{ - "type": "node", - "id": 4035753375, - "lat": 53.5295326, - "lon": -0.6538683, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4035770418, - "lat": 53.5334671, - "lon": -0.6540937, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4036597493, - "lat": 54.8968167, - "lon": -1.4396535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR4 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4037229189, - "lat": 51.4503931, - "lon": -0.9701747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "collection_times_checked": "2016-03-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4037229190, - "lat": 51.4536448, - "lon": -0.9745612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-07-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4037276236, - "lat": 51.4971876, - "lon": -0.2523595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 34D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4038588738, - "lat": 54.5811010, - "lon": -5.9212375, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "259", - "addr:postcode": "BT7 3GG", - "addr:street": "Ormeau Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT7 455" - } -}, -{ - "type": "node", - "id": 4038911407, - "lat": 51.3460690, - "lon": -0.4626562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT13 4D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4039219130, - "lat": 50.9571475, - "lon": -4.1656299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1344960106054274", - "note": "Inside porch", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX38 54D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-06-11" - } -}, -{ - "type": "node", - "id": 4039294166, - "lat": 51.4685616, - "lon": -2.5208818, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS15 240D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4039848925, - "lat": 54.1823765, - "lon": -2.7211967, - "tags": { - "amenity": "post_box", - "ref": "LA6 84" - } -}, -{ - "type": "node", - "id": 4040001971, - "lat": 54.1962172, - "lon": -2.7302855, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 17" - } -}, -{ - "type": "node", - "id": 4040001972, - "lat": 54.2033892, - "lon": -2.7325684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 85" - } -}, -{ - "type": "node", - "id": 4040001973, - "lat": 54.2075739, - "lon": -2.7290174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA6 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4040269196, - "lat": 53.4025109, - "lon": -0.7781005, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4040269249, - "lat": 53.4076741, - "lon": -0.7830006, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4040600099, - "lat": 55.9253673, - "lon": -3.1737482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH9 232D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4040610498, - "lat": 55.9496142, - "lon": -3.1457160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH8 405D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4040610499, - "lat": 55.9493992, - "lon": -3.1317213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH8 444D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4040610500, - "lat": 55.9461960, - "lon": -3.1415383, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH8 531D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4040666832, - "lat": 51.4749500, - "lon": -0.0239576, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE8 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4040883781, - "lat": 53.2924234, - "lon": -3.7294394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4041544892, - "lat": 54.9792432, - "lon": -1.4936021, - "tags": { - "amenity": "post_box", - "ref": "NE32 437" - } -}, -{ - "type": "node", - "id": 4041755103, - "lat": 55.9698507, - "lon": -3.2591711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 536D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041755105, - "lat": 55.9660243, - "lon": -3.2564327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH4 261D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041766376, - "lat": 52.2449141, - "lon": -1.7662000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "B95 235", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 4041784777, - "lat": 55.9582790, - "lon": -3.2825198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH4 477D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041784781, - "lat": 55.9431863, - "lon": -3.3071213, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH12 532D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041784989, - "lat": 55.9618118, - "lon": -3.3162160, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH4 597D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041785007, - "lat": 55.9618302, - "lon": -3.3008057, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH4 439D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041785008, - "lat": 55.9669011, - "lon": -3.3118980, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH4 423D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041785010, - "lat": 55.9518536, - "lon": -3.3039721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "the rectangular pillar box has been replaced with a more conventional cylindrical type in 2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH12 86", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4041785012, - "lat": 55.9605252, - "lon": -3.3141317, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH4 519D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041795343, - "lat": 55.9078817, - "lon": -3.3261701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 622", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4041930048, - "lat": 56.4631962, - "lon": -2.9705997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "DD1 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4041930051, - "lat": 56.4620332, - "lon": -2.9733349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD1 1111", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4042290689, - "lat": 55.9083433, - "lon": -3.2853086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 564D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042290699, - "lat": 55.9019291, - "lon": -3.3003373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 570", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042290701, - "lat": 55.9215186, - "lon": -3.2582753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 459D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4042290707, - "lat": 55.9111027, - "lon": -3.2865856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 590D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042290720, - "lat": 55.9206302, - "lon": -3.2744510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH14 260D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042290724, - "lat": 55.9198022, - "lon": -3.2785604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 272D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042290727, - "lat": 55.9246460, - "lon": -3.2595440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH14 399", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4042290729, - "lat": 55.9182045, - "lon": -3.2634059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4042290732, - "lat": 55.9217019, - "lon": -3.2639209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 589D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042290735, - "lat": 55.9109277, - "lon": -3.2917796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "EH14 565D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4042786980, - "lat": 51.3513309, - "lon": -1.3645384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4043331874, - "lat": 51.3777320, - "lon": -1.6028258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4043335343, - "lat": 55.9340816, - "lon": -3.0682897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH21 285D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4043335344, - "lat": 55.9439795, - "lon": -3.0676206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4043335353, - "lat": 55.9369697, - "lon": -3.0629126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4043335358, - "lat": 55.9449741, - "lon": -3.0607520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 110", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4043335360, - "lat": 55.9442060, - "lon": -3.0732914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH21 142", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4043335361, - "lat": 55.9383311, - "lon": -3.0725114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 351D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4043335369, - "lat": 55.9438440, - "lon": -3.0592769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "post_box:type": "pillar", - "ref": "EH21 102", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4043338610, - "lat": 51.3621979, - "lon": -1.6238623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4043356828, - "lat": 51.3463739, - "lon": -1.6647807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4043678189, - "lat": 51.2826129, - "lon": -2.0394770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4043740302, - "lat": 55.7570950, - "lon": -2.0129381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 87D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 4043826681, - "lat": 55.7546424, - "lon": -2.0327890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 99D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 4043826684, - "lat": 55.7578145, - "lon": -2.0307216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 76D", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 4043826686, - "lat": 55.7512153, - "lon": -2.0178831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 4043826688, - "lat": 55.7615062, - "lon": -2.0104795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 18D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 4043828489, - "lat": 55.7560766, - "lon": -2.0252473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 4043828500, - "lat": 55.7561891, - "lon": -2.0163926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 4044321582, - "lat": 52.2612516, - "lon": -0.7522956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044321583, - "lat": 52.2632253, - "lon": -0.7420318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044321585, - "lat": 52.2646764, - "lon": -0.7464936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044322900, - "lat": 52.2657052, - "lon": -0.7576340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044322911, - "lat": 52.2668916, - "lon": -0.7466130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 436D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044322923, - "lat": 52.2680526, - "lon": -0.7485733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044322929, - "lat": 52.2702536, - "lon": -0.7556466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044322930, - "lat": 52.2707070, - "lon": -0.7520185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044686340, - "lat": 51.4194266, - "lon": -2.5988612, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4044686341, - "lat": 51.4211838, - "lon": -2.5961753, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044686342, - "lat": 51.4230519, - "lon": -2.5938686, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 140D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4044686343, - "lat": 51.4254487, - "lon": -2.5978435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS4 139D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4044686344, - "lat": 51.4258241, - "lon": -2.5921689, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4044686346, - "lat": 51.4379880, - "lon": -2.5889255, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS3 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4044704946, - "lat": 51.4273997, - "lon": -2.6137070, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 1019", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4044704947, - "lat": 51.4309602, - "lon": -2.6171324, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS3 4008" - } -}, -{ - "type": "node", - "id": 4045506125, - "lat": 54.9007450, - "lon": -1.4443734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SR4 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4045512599, - "lat": 54.9017010, - "lon": -1.4364134, - "tags": { - "amenity": "post_box", - "ref": "SR4 229" - } -}, -{ - "type": "node", - "id": 4045535096, - "lat": 54.8885580, - "lon": -1.4508485, - "tags": { - "amenity": "post_box", - "ref": "SR4 288" - } -}, -{ - "type": "node", - "id": 4045548155, - "lat": 54.8893404, - "lon": -1.4470367, - "tags": { - "amenity": "post_box", - "ref": "SR4 238" - } -}, -{ - "type": "node", - "id": 4045555910, - "lat": 54.8869233, - "lon": -1.4423636, - "tags": { - "amenity": "post_box", - "ref": "SR4 263" - } -}, -{ - "type": "node", - "id": 4045562610, - "lat": 54.8901939, - "lon": -1.4373036, - "tags": { - "amenity": "post_box", - "ref": "SR4 225" - } -}, -{ - "type": "node", - "id": 4045790327, - "lat": 54.9126662, - "lon": -1.5217515, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE37 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4045910324, - "lat": 54.9126165, - "lon": -1.5187204, - "tags": { - "amenity": "post_box", - "ref": "NE37 499" - } -}, -{ - "type": "node", - "id": 4046250223, - "lat": 52.8479307, - "lon": -1.0235870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE14 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4046250225, - "lat": 52.8287772, - "lon": -0.9890579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Lion Fdry Co Ltd, Kirkintilloch", - "post_box:type": "wall", - "ref": "LE14 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4046323325, - "lat": 51.2851764, - "lon": -1.9860453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046323326, - "lat": 51.2865226, - "lon": -1.9792096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4046323327, - "lat": 51.2930271, - "lon": -1.9711764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4046420957, - "lat": 51.3409394, - "lon": -1.7758486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 128D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4046537819, - "lat": 50.9672385, - "lon": -1.3854301, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO53 390D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046610836, - "lat": 51.3374760, - "lon": -1.8392895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046625235, - "lat": 52.2308752, - "lon": 0.7301718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046653642, - "lat": 50.9912758, - "lon": -1.4023938, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO53 736D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046670066, - "lat": 51.3472047, - "lon": -1.7302108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "inscription": "Golden Jubilee 2002: The village post box celebrates the 50th anniversary of the accession of Queen Elizabeth II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046697680, - "lat": 50.9765415, - "lon": -1.3757152, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 459D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046710164, - "lat": 50.9771739, - "lon": -1.3817143, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO53 569D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046727951, - "lat": 52.0380300, - "lon": 0.7238135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO10 1032D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 4046747451, - "lat": 50.8638525, - "lon": -1.0282577, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4046774962, - "lat": 51.8449656, - "lon": 0.7174070, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4046816742, - "lat": 51.8407568, - "lon": 0.7025002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CO5 136", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4046820187, - "lat": 55.8216304, - "lon": -4.1887174, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4046847328, - "lat": 55.8430155, - "lon": -4.1696552, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4046847331, - "lat": 55.8518705, - "lon": -4.1920152, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4046847335, - "lat": 55.8484225, - "lon": -4.1685161, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4048090543, - "lat": 50.9951368, - "lon": -0.7320047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 4048143144, - "lat": 51.4318994, - "lon": -0.0729524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikidata": "Q27082455" - } -}, -{ - "type": "node", - "id": 4049178971, - "lat": 51.4476718, - "lon": -1.4012571, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG20 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4049186880, - "lat": 50.9174929, - "lon": -1.3442193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4049187277, - "lat": 50.9146757, - "lon": -1.3451793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 486D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4049187294, - "lat": 51.4399164, - "lon": -1.3885340, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG20 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4049187298, - "lat": 51.4416301, - "lon": -1.3841084, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG20 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4049211907, - "lat": 51.9594750, - "lon": 1.3492931, - "tags": { - "amenity": "post_box", - "mapillary": "165060858881875", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 4049269336, - "lat": 52.8246141, - "lon": -0.9718056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LE14 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4049304550, - "lat": 50.8385727, - "lon": 0.4431753, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Hawkhurst Way", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 44", - "ref:GB:uprn": "10015466347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Hawkhurst Way TN3944.jpg" - } -}, -{ - "type": "node", - "id": 4049304560, - "lat": 50.8391219, - "lon": 0.4475641, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Crofton Park Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Broken Post Office Directional Sign holder on cap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 84", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB Crofton Park Avenue TN3984.jpg" - } -}, -{ - "type": "node", - "id": 4049305189, - "lat": 50.8424660, - "lon": 0.4442875, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Birkdale", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 27", - "ref:GB:uprn": "10015354591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Birkdale TN3927.jpg" - } -}, -{ - "type": "node", - "id": 4049305196, - "lat": 50.8434323, - "lon": 0.4335529, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Cooden Sea Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 30", - "ref:GB:uprn": "10015334564", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Cooden Sea Road Meads Avenue TN3930.jpg" - } -}, -{ - "type": "node", - "id": 4049305216, - "lat": 50.8448513, - "lon": 0.4242604, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Barnhorn Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 34", - "ref:GB:uprn": "10015470178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Barnhorn Road TN3934.jpg" - } -}, -{ - "type": "node", - "id": 4049305223, - "lat": 50.8455580, - "lon": 0.4339344, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Peartree Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 83", - "ref:GB:uprn": "10015311371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Little Common Post Office Peartree Lane TN3983.jpg" - } -}, -{ - "type": "node", - "id": 4049305228, - "lat": 50.8457572, - "lon": 0.4469533, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "White Hill Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 31", - "ref:GB:uprn": "10015845643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB White Hill Avenue TN3931.jpg" - } -}, -{ - "type": "node", - "id": 4049305236, - "lat": 50.8459731, - "lon": 0.4176938, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Sandhurst Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN39 32", - "ref:GB:uprn": "10015406636", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:PB Sandhurst Lane TN3932.jpg" - } -}, -{ - "type": "node", - "id": 4049305257, - "lat": 50.8466269, - "lon": 0.4091935, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Pleyden Rise", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 47", - "ref:GB:uprn": "10015270663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Pleyden Rise TN3947.jpg" - } -}, -{ - "type": "node", - "id": 4049305287, - "lat": 50.8483175, - "lon": 0.4508987, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Courthope Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 61", - "ref:GB:uprn": "10015426495", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Courthope Drive TN3961.jpg" - } -}, -{ - "type": "node", - "id": 4049305524, - "lat": 50.8499030, - "lon": 0.4557060, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Warwick Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "Red pouch box attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 7", - "ref:GB:uprn": "10015462743", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Warwick Road TN397.jpg" - } -}, -{ - "type": "node", - "id": 4049305528, - "lat": 50.8504448, - "lon": 0.4330105, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Fontwell Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN39 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Fontwell Ave TN3980.jpg" - } -}, -{ - "type": "node", - "id": 4049305563, - "lat": 50.8544309, - "lon": 0.4602523, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Bidwell Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 60", - "ref:GB:uprn": "10015329836", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Bidwell Avenue TN3960.jpg" - } -}, -{ - "type": "node", - "id": 4049305802, - "lat": 50.8555946, - "lon": 0.4647376, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Oakwood Avenue", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 74", - "ref:GB:uprn": "10015327176", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB Oakwood Avenue TN3974.jpg" - } -}, -{ - "type": "node", - "id": 4049305803, - "lat": 50.8561716, - "lon": 0.4510477, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Ellerslie Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 36", - "ref:GB:uprn": "10015466252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Ellerslie Lane TN3936.jpg" - } -}, -{ - "type": "node", - "id": 4049305813, - "lat": 50.8572523, - "lon": 0.4558709, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Turkey Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 54", - "ref:GB:uprn": "10015386591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Turkey Road TN3954.jpg" - } -}, -{ - "type": "node", - "id": 4049305835, - "lat": 50.8574197, - "lon": 0.4614271, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Southlands Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 62", - "ref:GB:uprn": "10015466365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:PB Southlands Road TN3962.jpg" - } -}, -{ - "type": "node", - "id": 4049305857, - "lat": 50.8581196, - "lon": 0.4678383, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Preston Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN39 77", - "ref:GB:uprn": "10015287373", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB Preston Road TN3977.jpg" - } -}, -{ - "type": "node", - "id": 4049311261, - "lat": 52.8008049, - "lon": -0.9476605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LE14 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4051328534, - "lat": 53.4461768, - "lon": -1.3010325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "S65 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4051432138, - "lat": 51.3887007, - "lon": -0.4326007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "TW17 309D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4051888406, - "lat": 55.7687631, - "lon": -2.0147013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 68D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 4052971009, - "lat": 53.0421009, - "lon": -1.9701919, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4053186002, - "lat": 54.8712969, - "lon": -1.5883741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:15", - "ref": "DH3 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4053186003, - "lat": 54.8740664, - "lon": -1.5739750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4053186006, - "lat": 54.8704007, - "lon": -1.5752261, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-07", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH3 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4053186007, - "lat": 54.8648873, - "lon": -1.5743556, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-15", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH3 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4053186008, - "lat": 54.8647091, - "lon": -1.5703769, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-07", - "collection_times": "Mo-Fr 17:30, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4053834370, - "lat": 56.1133127, - "lon": -3.1545342, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY1 5" - } -}, -{ - "type": "node", - "id": 4053835589, - "lat": 56.1067916, - "lon": -3.1649083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 11D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4053835615, - "lat": 56.1038707, - "lon": -3.1676353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "KY1 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4053847553, - "lat": 53.2776545, - "lon": -1.2719080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4054264754, - "lat": 51.9745135, - "lon": 1.3787469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1029" - } -}, -{ - "type": "node", - "id": 4054264758, - "lat": 51.9636481, - "lon": 1.3656840, - "tags": { - "amenity": "post_box", - "mapillary": "2171659153009923", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP11 1016", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 4054423698, - "lat": 54.8573897, - "lon": -1.5738992, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-25", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4054793028, - "lat": 54.8479333, - "lon": -1.5833968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH2 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4055046483, - "lat": 52.1421300, - "lon": -0.8776177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4055050110, - "lat": 52.1606804, - "lon": -0.8960100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4055063140, - "lat": 52.1946453, - "lon": -0.9226410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 391D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4055570136, - "lat": 54.4618573, - "lon": -0.5783472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO22 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4056378511, - "lat": 55.8924382, - "lon": -3.3303458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 250D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378512, - "lat": 55.8970779, - "lon": -3.3240372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 624D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378513, - "lat": 55.8936369, - "lon": -3.3176270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH14 577D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378514, - "lat": 55.8889705, - "lon": -3.3367549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 578D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378515, - "lat": 55.8929421, - "lon": -3.3341958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 213", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378516, - "lat": 55.8975697, - "lon": -3.3160607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 576D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378517, - "lat": 55.8942928, - "lon": -3.3233208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 615D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056378519, - "lat": 55.8885516, - "lon": -3.3453259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH14 579D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4056439699, - "lat": 51.5174664, - "lon": -3.5036341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056819200, - "lat": 52.3228596, - "lon": -0.9480329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056819201, - "lat": 52.3240590, - "lon": -0.9537993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056819202, - "lat": 52.3251114, - "lon": -0.9474532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN6 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056824463, - "lat": 52.3550100, - "lon": -0.9570900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 96", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4056843889, - "lat": 52.3251202, - "lon": -0.9102633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056843890, - "lat": 52.3256989, - "lon": -0.9039166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056843891, - "lat": 52.3283538, - "lon": -0.9057985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056843892, - "lat": 52.3288659, - "lon": -0.9021108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056843893, - "lat": 52.3331013, - "lon": -0.9041761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4056843894, - "lat": 52.3387465, - "lon": -0.9146253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4057019761, - "lat": 52.1957802, - "lon": -1.7175008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "note": "inside Morrisons, near front door", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "CV37 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4057194854, - "lat": 51.6083493, - "lon": -0.5951582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 4057194856, - "lat": 51.6178281, - "lon": -0.5916225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 4057195297, - "lat": 51.6247413, - "lon": -0.5904368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HP9 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-12" - } -}, -{ - "type": "node", - "id": 4057200647, - "lat": 52.1968331, - "lon": -1.7215528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV37 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4058683916, - "lat": 52.8363920, - "lon": -0.9280376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4058683924, - "lat": 52.8389488, - "lon": -0.9237787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE14 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4058683939, - "lat": 52.8359528, - "lon": -0.9336116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "note": "ref obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4058702300, - "lat": 52.8059820, - "lon": -0.9432148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4058713711, - "lat": 51.3563955, - "lon": -1.4076137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4058883071, - "lat": 50.8550938, - "lon": -1.2740526, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SO31 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4058886356, - "lat": 50.8551204, - "lon": -1.2873983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO31 475" - } -}, -{ - "type": "node", - "id": 4058903637, - "lat": 50.9517496, - "lon": -1.4675270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 457" - } -}, -{ - "type": "node", - "id": 4058903831, - "lat": 54.9683806, - "lon": -1.7838179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE40 110" - } -}, -{ - "type": "node", - "id": 4058914889, - "lat": 50.9234566, - "lon": -1.4473404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO16 389" - } -}, -{ - "type": "node", - "id": 4058915697, - "lat": 50.9418999, - "lon": -1.3730265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 376", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4059185304, - "lat": 53.6840239, - "lon": -1.6289900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 35" - } -}, -{ - "type": "node", - "id": 4059525653, - "lat": 54.8506063, - "lon": -1.5731310, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-19", - "collection_times": "Mo-Fr 18:30, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059525654, - "lat": 54.8482291, - "lon": -1.5672846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH3 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059525655, - "lat": 54.8468201, - "lon": -1.5744361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059568865, - "lat": 54.8470045, - "lon": -1.5926262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059568887, - "lat": 54.8487993, - "lon": -1.5876612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH2 305", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4059614534, - "lat": 50.8991894, - "lon": -1.3563470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO19 225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4059620774, - "lat": 50.8968564, - "lon": -1.3649163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059623537, - "lat": 50.8976363, - "lon": -1.3730208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059682619, - "lat": 54.8543366, - "lon": -1.5922750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH2 348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059682622, - "lat": 54.8501638, - "lon": -1.5961615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059682623, - "lat": 54.8509969, - "lon": -1.5861250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 242", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4059682682, - "lat": 54.8509360, - "lon": -1.5811257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "DH2 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059682684, - "lat": 54.8538374, - "lon": -1.5817055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059697685, - "lat": 54.8563446, - "lon": -1.5803203, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "check_date:collection_times": "2024-01-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH2 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059707242, - "lat": 54.8578839, - "lon": -1.5925407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059766961, - "lat": 52.8101937, - "lon": -0.9927989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "GPS" - } -}, -{ - "type": "node", - "id": 4059766995, - "lat": 52.8139244, - "lon": -0.9766194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE14 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "GPS" - } -}, -{ - "type": "node", - "id": 4059796615, - "lat": 52.8243028, - "lon": -0.9685519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE14 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4059854671, - "lat": 54.8626849, - "lon": -1.5823248, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-03", - "collection_times": "Mo-Fr 16:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059854908, - "lat": 54.8624420, - "lon": -1.5889212, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-08", - "collection_times": "Mo-Fr 16:00, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4059856344, - "lat": 54.8655507, - "lon": -1.5824324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4060001223, - "lat": 50.9811407, - "lon": -3.2377473, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "mapillary": "215100810169404", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2020-03-26" - } -}, -{ - "type": "node", - "id": 4060139491, - "lat": 55.7112410, - "lon": -3.2084065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4060162052, - "lat": 55.6502752, - "lon": -3.1880244, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH45 11D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4060162053, - "lat": 55.6522985, - "lon": -3.1955423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4060162054, - "lat": 55.6527909, - "lon": -3.1931815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH45 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4060162055, - "lat": 55.6544113, - "lon": -3.1892543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH45 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4060162056, - "lat": 55.6547950, - "lon": -3.1945298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH45 4D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4060162057, - "lat": 55.6599169, - "lon": -3.1922619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 1D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4060202149, - "lat": 53.2410603, - "lon": -1.5296198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S42 178D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4060296646, - "lat": 53.2925730, - "lon": -1.4372101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S18 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4060606635, - "lat": 55.8146966, - "lon": -4.0808883, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4060606637, - "lat": 55.8086146, - "lon": -4.0676778, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4060709718, - "lat": 53.6297206, - "lon": -0.3564266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN39 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4060733644, - "lat": 53.6756822, - "lon": -0.3806116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DN18 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4060748487, - "lat": 53.7010285, - "lon": -0.3606628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN19 138" - } -}, -{ - "type": "node", - "id": 4060802729, - "lat": 54.6961986, - "lon": -1.6109725, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL16 121" - } -}, -{ - "type": "node", - "id": 4060841555, - "lat": 53.6608376, - "lon": -0.2774871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4061307608, - "lat": 54.8330874, - "lon": -1.8112676, - "tags": { - "amenity": "post_box", - "ref": "DH8 137" - } -}, -{ - "type": "node", - "id": 4061348513, - "lat": 54.8409450, - "lon": -1.8170175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH8 396", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4061361612, - "lat": 54.8411579, - "lon": -1.8122567, - "tags": { - "amenity": "post_box", - "ref": "DH8 644" - } -}, -{ - "type": "node", - "id": 4061421015, - "lat": 54.8459102, - "lon": -1.8167492, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH8 654" - } -}, -{ - "type": "node", - "id": 4061421020, - "lat": 54.8454768, - "lon": -1.8221717, - "tags": { - "amenity": "post_box", - "ref": "DH8 563" - } -}, -{ - "type": "node", - "id": 4061429501, - "lat": 54.8440802, - "lon": -1.8292639, - "tags": { - "amenity": "post_box", - "ref": "DH8 175" - } -}, -{ - "type": "node", - "id": 4061437292, - "lat": 54.8457204, - "lon": -1.8321410, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DH8 174" - } -}, -{ - "type": "node", - "id": 4061881834, - "lat": 50.8418077, - "lon": -0.1075665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "BN2 189", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4062465300, - "lat": 55.7888456, - "lon": -4.0774495, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4063624460, - "lat": 52.8404883, - "lon": -0.9179733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LE14 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4063653272, - "lat": 52.3044056, - "lon": -0.9814284, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4063653273, - "lat": 52.3079555, - "lon": -1.0155775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4063653274, - "lat": 52.3266900, - "lon": -0.9821337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4063653275, - "lat": 52.3389052, - "lon": -1.0114368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 463", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4064866594, - "lat": 54.6233764, - "lon": -5.9428614, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "131", - "addr:postcode": "BT15 5BJ", - "addr:street": "Cavehill Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BT15 5BJ", - "ref": "BT15 425", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4064866595, - "lat": 54.6044939, - "lon": -5.9311652, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "122", - "addr:postcode": "BT1 2GX", - "addr:street": "Donegall Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT1 1036;BT1 36" - } -}, -{ - "type": "node", - "id": 4065369303, - "lat": 54.6857527, - "lon": -1.5467066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4065429136, - "lat": 53.6166447, - "lon": -0.2057480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DN40 174" - } -}, -{ - "type": "node", - "id": 4065476990, - "lat": 53.4786925, - "lon": -0.1354892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN37 28" - } -}, -{ - "type": "node", - "id": 4067212637, - "lat": 51.6696050, - "lon": -0.8618857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 4068328307, - "lat": 54.2036497, - "lon": -2.8317735, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4068470052, - "lat": 50.8415457, - "lon": -0.1014744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 193", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4068529335, - "lat": 51.4419061, - "lon": 0.1029941, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4069074133, - "lat": 54.2662535, - "lon": -2.8678506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA11 156" - } -}, -{ - "type": "node", - "id": 4069108077, - "lat": 54.1842431, - "lon": -0.3141255, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4069157250, - "lat": 50.5679693, - "lon": -2.4447309, - "tags": { - "amenity": "post_box", - "ref": "DT5 65", - "ref:GB:uprn": "10015451227" - } -}, -{ - "type": "node", - "id": 4069201378, - "lat": 51.6134620, - "lon": -0.8790850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG9 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 4069201383, - "lat": 51.6509065, - "lon": -0.8645778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 4069203490, - "lat": 51.6611134, - "lon": -0.8615363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HP14 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-03-19" - } -}, -{ - "type": "node", - "id": 4069464832, - "lat": 51.1840529, - "lon": -0.5248830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU5 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4069470919, - "lat": 51.1589393, - "lon": -0.4957745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU6 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4069664542, - "lat": 51.3517996, - "lon": -1.4196374, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG20 65", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4070515425, - "lat": 51.4508752, - "lon": -2.5383201, - "tags": { - "amenity": "post_box", - "mapillary": "2930302580621920", - "post_box:type": "pillar", - "ref": "BS4 3D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2020-08-21" - } -}, -{ - "type": "node", - "id": 4070569456, - "lat": 51.4256852, - "lon": -2.5588357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Rare Edward Vlll pillar box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS14 160", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4070569458, - "lat": 51.4317547, - "lon": -2.5384780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070569459, - "lat": 51.4317758, - "lon": -2.5384911, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BS4 4004", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4070569460, - "lat": 51.4322504, - "lon": -2.5338507, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070569461, - "lat": 51.4329967, - "lon": -2.5526366, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070569462, - "lat": 51.4381235, - "lon": -2.5333513, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070569463, - "lat": 51.4404209, - "lon": -2.5369109, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1090", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4070569464, - "lat": 51.4406210, - "lon": -2.5547566, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1094", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070569465, - "lat": 51.4432994, - "lon": -2.5410638, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4070569466, - "lat": 51.4449073, - "lon": -2.5529453, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4070569467, - "lat": 51.4460670, - "lon": -2.5413131, - "tags": { - "amenity": "post_box", - "note": "no ref plate", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070569469, - "lat": 51.4485852, - "lon": -2.5422025, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1091", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4070569470, - "lat": 51.4505743, - "lon": -2.5414616, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4070569471, - "lat": 51.4537387, - "lon": -2.5642538, - "tags": { - "amenity": "post_box", - "note": "no ref plate", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4070569472, - "lat": 51.4552035, - "lon": -2.5584246, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070747330, - "lat": 54.6160394, - "lon": -1.5646794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL5 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4070761925, - "lat": 53.4025865, - "lon": -2.1652042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SK3 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4070774119, - "lat": 53.4095877, - "lon": -2.1556513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK1 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4073300598, - "lat": 54.8496572, - "lon": -1.8268746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH8 177" - } -}, -{ - "type": "node", - "id": 4073300599, - "lat": 54.8429036, - "lon": -1.8373506, - "tags": { - "amenity": "post_box", - "ref": "DH8 649" - } -}, -{ - "type": "node", - "id": 4073607090, - "lat": 54.4667558, - "lon": -1.2120955, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4073641189, - "lat": 54.4699451, - "lon": -1.1931418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "note": "Ref of box on RHS is not visible", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TS9 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4073797332, - "lat": 52.5993380, - "lon": -1.7161993, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B78 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4073867193, - "lat": 51.2259038, - "lon": 0.4329121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 194D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4074236153, - "lat": 50.9276891, - "lon": -1.3353413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 720", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4074257916, - "lat": 50.8665123, - "lon": -1.0453298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible on either postbox", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "last_checked": "2020-04-03", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PO7 1791;PO7 1792", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4074293061, - "lat": 50.8783509, - "lon": -1.0377696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-03-06", - "old_ref": "PO7 306", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4074296184, - "lat": 50.8863152, - "lon": -1.0263203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO7 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4074820632, - "lat": 54.8534291, - "lon": -1.8335356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "DH8 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4074949841, - "lat": 54.8532820, - "lon": -1.8273777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH8 207" - } -}, -{ - "type": "node", - "id": 4075328199, - "lat": 54.8557897, - "lon": -1.8262377, - "tags": { - "amenity": "post_box", - "ref": "DH8 158" - } -}, -{ - "type": "node", - "id": 4075328207, - "lat": 54.8580713, - "lon": -1.8320885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH8 159" - } -}, -{ - "type": "node", - "id": 4075328213, - "lat": 54.8589684, - "lon": -1.8228927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH8 588", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4075328215, - "lat": 54.8634894, - "lon": -1.8266820, - "tags": { - "amenity": "post_box", - "ref": "DH8 581" - } -}, -{ - "type": "node", - "id": 4075328216, - "lat": 54.8646627, - "lon": -1.8286073, - "tags": { - "amenity": "post_box", - "ref": "DH8 580" - } -}, -{ - "type": "node", - "id": 4075340634, - "lat": 54.8548727, - "lon": -1.8353039, - "tags": { - "amenity": "post_box", - "ref": "DH8 173" - } -}, -{ - "type": "node", - "id": 4075349403, - "lat": 54.8541943, - "lon": -1.8386536, - "tags": { - "amenity": "post_box", - "ref": "DH8 172" - } -}, -{ - "type": "node", - "id": 4075951699, - "lat": 52.6804986, - "lon": -1.0906274, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4075979522, - "lat": 50.9292357, - "lon": -1.3088523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4077231232, - "lat": 51.4828810, - "lon": 0.0003371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE10 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4077318761, - "lat": 51.7411485, - "lon": -1.0610740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX9 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4077376136, - "lat": 54.6687802, - "lon": -5.9840489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4077376143, - "lat": 54.6749446, - "lon": -5.9874928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4077376146, - "lat": 54.6756192, - "lon": -5.9882607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4077383638, - "lat": 50.8962401, - "lon": -1.3937021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "note": "left hand slot for stamped mail and right hand slot for frnaked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO14 735;SO14 793", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4077387352, - "lat": 50.8981060, - "lon": -1.3918862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 76", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4077389418, - "lat": 50.9020544, - "lon": -1.3914862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4077392293, - "lat": 50.9085364, - "lon": -1.3874268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SO14 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4077393426, - "lat": 50.9085458, - "lon": -1.3874168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "note": "collection_plate shown but based on the other hallf of the pillar, I assume it is CP1.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "meter", - "ref": "SO14 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4077394751, - "lat": 50.9101845, - "lon": -1.3814635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 741D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4077408315, - "lat": 50.9216525, - "lon": -1.3752969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 680D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4078006518, - "lat": 50.9058030, - "lon": -1.0156485, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO8 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4078018738, - "lat": 50.9148368, - "lon": -1.0114119, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO8 359D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4079405962, - "lat": 51.0831888, - "lon": -0.8049248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4079959513, - "lat": 56.1003182, - "lon": -3.1631132, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY1 25" - } -}, -{ - "type": "node", - "id": 4079998043, - "lat": 55.9999527, - "lon": -3.7815826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK1 180D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4080107512, - "lat": 55.8757656, - "lon": -3.1626439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 254", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4080107534, - "lat": 55.8782705, - "lon": -3.1599211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 271", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4080153002, - "lat": 55.8775434, - "lon": -3.1490860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH20 195", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4080978872, - "lat": 52.4473627, - "lon": 1.4666802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4081020643, - "lat": 53.0755721, - "lon": -2.1086064, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "ST9 85D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4081020650, - "lat": 53.0770156, - "lon": -2.1121840, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4081379222, - "lat": 51.5485381, - "lon": 0.6307112, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4081734451, - "lat": 50.8046580, - "lon": -1.2045238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 52" - } -}, -{ - "type": "node", - "id": 4083135815, - "lat": 52.1716277, - "lon": -1.6265850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083164230, - "lat": 52.3505696, - "lon": -1.0088760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4083164231, - "lat": 52.3518469, - "lon": -1.0118361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN6 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4083616471, - "lat": 57.4381406, - "lon": -6.6339879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4083616473, - "lat": 57.4528536, - "lon": -6.6610245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV55 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4083616474, - "lat": 57.4487881, - "lon": -6.6915486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "830681722537903", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV55 57", - "source": "survey", - "survey:date": "2024-07-09" - } -}, -{ - "type": "node", - "id": 4083616476, - "lat": 57.4458830, - "lon": -6.7385314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV55 59", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4083616477, - "lat": 57.4512960, - "lon": -6.7499379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 07:30", - "mapillary": "514388177821220", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV55 58", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2024-07-09" - } -}, -{ - "type": "node", - "id": 4083617209, - "lat": 57.4760716, - "lon": -6.6839808, - "tags": { - "amenity": "post_box", - "ref": "IV55 55", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083617210, - "lat": 57.4862630, - "lon": -6.6954117, - "tags": { - "amenity": "post_box", - "ref": "IV55 133", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083617229, - "lat": 57.4614575, - "lon": -6.6721531, - "tags": { - "amenity": "post_box", - "ref": "IV55 52", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083630645, - "lat": 53.7099427, - "lon": -1.3335094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF10 50" - } -}, -{ - "type": "node", - "id": 4083630646, - "lat": 53.7123146, - "lon": -1.3659484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 329" - } -}, -{ - "type": "node", - "id": 4083630647, - "lat": 53.7129163, - "lon": -1.3106031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 337" - } -}, -{ - "type": "node", - "id": 4083630649, - "lat": 53.7135846, - "lon": -1.3847863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF10 335", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4083630650, - "lat": 53.7147921, - "lon": -1.3878661, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF10 345" - } -}, -{ - "type": "node", - "id": 4083630651, - "lat": 53.7148080, - "lon": -1.3878487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF10 48" - } -}, -{ - "type": "node", - "id": 4083630652, - "lat": 53.7152981, - "lon": -1.3640728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 306" - } -}, -{ - "type": "node", - "id": 4083630653, - "lat": 53.7155461, - "lon": -1.3470717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF10 304" - } -}, -{ - "type": "node", - "id": 4083630654, - "lat": 53.7157898, - "lon": -1.3374902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 309" - } -}, -{ - "type": "node", - "id": 4083630655, - "lat": 53.7158461, - "lon": -1.3307961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF10 312" - } -}, -{ - "type": "node", - "id": 4083630656, - "lat": 53.7159426, - "lon": -1.3767235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF10 349" - } -}, -{ - "type": "node", - "id": 4083630657, - "lat": 53.7173870, - "lon": -1.3080389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 322" - } -}, -{ - "type": "node", - "id": 4083630658, - "lat": 53.7175727, - "lon": -1.3182487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 328" - } -}, -{ - "type": "node", - "id": 4083630659, - "lat": 53.7178655, - "lon": -1.3410146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 321" - } -}, -{ - "type": "node", - "id": 4083630660, - "lat": 53.7179750, - "lon": -1.3376552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 324" - } -}, -{ - "type": "node", - "id": 4083630661, - "lat": 53.7184056, - "lon": -1.3515302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 333" - } -}, -{ - "type": "node", - "id": 4083630662, - "lat": 53.7191797, - "lon": -1.3752711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 314" - } -}, -{ - "type": "node", - "id": 4083630663, - "lat": 53.7192706, - "lon": -1.3561114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 302" - } -}, -{ - "type": "node", - "id": 4083630665, - "lat": 53.7201804, - "lon": -1.3224470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 301", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4083630666, - "lat": 53.7206812, - "lon": -1.3371435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 305" - } -}, -{ - "type": "node", - "id": 4083630667, - "lat": 53.7209458, - "lon": -1.3036635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 341" - } -}, -{ - "type": "node", - "id": 4083630668, - "lat": 53.7211533, - "lon": -1.3672527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 311" - } -}, -{ - "type": "node", - "id": 4083630669, - "lat": 53.7217346, - "lon": -1.3514578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 319" - } -}, -{ - "type": "node", - "id": 4083630670, - "lat": 53.7221584, - "lon": -1.3308296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 5", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4083630671, - "lat": 53.7222693, - "lon": -1.3556823, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 310" - } -}, -{ - "type": "node", - "id": 4083630672, - "lat": 53.7230186, - "lon": -1.3391753, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 318" - } -}, -{ - "type": "node", - "id": 4083630673, - "lat": 53.7233709, - "lon": -1.3291485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF10 323", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4083630674, - "lat": 53.7238698, - "lon": -1.3457396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 317" - } -}, -{ - "type": "node", - "id": 4083630675, - "lat": 53.7239243, - "lon": -1.3141945, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-22", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF10 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4083630676, - "lat": 53.7240446, - "lon": -1.3049778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 325" - } -}, -{ - "type": "node", - "id": 4083630677, - "lat": 53.7245076, - "lon": -1.3234723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 320", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4083630678, - "lat": 53.7249075, - "lon": -1.3788103, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF10 327" - } -}, -{ - "type": "node", - "id": 4083630679, - "lat": 53.7250749, - "lon": -1.3725044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 348" - } -}, -{ - "type": "node", - "id": 4083630681, - "lat": 53.7252959, - "lon": -1.3455409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 307" - } -}, -{ - "type": "node", - "id": 4083630682, - "lat": 53.7257962, - "lon": -1.3542433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4083630683, - "lat": 53.7260596, - "lon": -1.3661959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF10 331" - } -}, -{ - "type": "node", - "id": 4083630684, - "lat": 53.7267174, - "lon": -1.3097662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF10 339" - } -}, -{ - "type": "node", - "id": 4083630685, - "lat": 53.7286557, - "lon": -1.3251286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 344" - } -}, -{ - "type": "node", - "id": 4083630686, - "lat": 53.7291718, - "lon": -1.3041564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 340" - } -}, -{ - "type": "node", - "id": 4083630687, - "lat": 53.7293293, - "lon": -1.3140940, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-05", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4083630688, - "lat": 53.7299533, - "lon": -1.3426112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 330" - } -}, -{ - "type": "node", - "id": 4083631289, - "lat": 53.7304278, - "lon": -1.3517528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 313" - } -}, -{ - "type": "node", - "id": 4083631290, - "lat": 53.7307884, - "lon": -1.3105306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 334" - } -}, -{ - "type": "node", - "id": 4083631291, - "lat": 53.7319709, - "lon": -1.3024129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 338" - } -}, -{ - "type": "node", - "id": 4083631294, - "lat": 53.7452950, - "lon": -1.3684670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF10 65" - } -}, -{ - "type": "node", - "id": 4083631295, - "lat": 53.7473039, - "lon": -1.3576577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF10 62" - } -}, -{ - "type": "node", - "id": 4083631297, - "lat": 53.7519700, - "lon": -1.3436365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4083631298, - "lat": 53.7530179, - "lon": -1.3838508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF10 67" - } -}, -{ - "type": "node", - "id": 4083631299, - "lat": 53.7565186, - "lon": -1.3862165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 63" - } -}, -{ - "type": "node", - "id": 4083799883, - "lat": 52.8021669, - "lon": -1.2325907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083800753, - "lat": 52.8058190, - "lon": -1.2369036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083969132, - "lat": 57.5155778, - "lon": -6.5727979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 07:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV55 47", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083969147, - "lat": 57.5411516, - "lon": -6.6007142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 07:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV55 40", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083969789, - "lat": 57.5510743, - "lon": -6.5735570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 07:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV55 39", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4083969790, - "lat": 57.5134631, - "lon": -6.5618840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 07:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV55 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4084069919, - "lat": 51.1091446, - "lon": -2.9995338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "145653627477001", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-05-22" - } -}, -{ - "type": "node", - "id": 4084220746, - "lat": 53.9222504, - "lon": -1.0773121, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-14", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "indoor": "yes", - "level": "0", - "material": "plastic", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "YO19 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/mcarthur-glen-designer-outlet-yo19-4ta/000YO19600" - } -}, -{ - "type": "node", - "id": 4084923947, - "lat": 54.8508886, - "lon": -1.8372034, - "tags": { - "amenity": "post_box", - "ref": "DH8 296" - } -}, -{ - "type": "node", - "id": 4084923950, - "lat": 54.8586787, - "lon": -1.8171375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH8 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4084925624, - "lat": 54.8615544, - "lon": -1.8319805, - "tags": { - "amenity": "post_box", - "ref": "DH8 259" - } -}, -{ - "type": "node", - "id": 4084999050, - "lat": 53.6829583, - "lon": -2.6904669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR25 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4084999055, - "lat": 53.6852264, - "lon": -2.6818869, - "tags": { - "amenity": "post_box", - "ref": "PR25 449" - } -}, -{ - "type": "node", - "id": 4085180400, - "lat": 53.6888007, - "lon": -2.6901747, - "tags": { - "amenity": "post_box", - "ref": "PR25 116" - } -}, -{ - "type": "node", - "id": 4085369861, - "lat": 51.4655180, - "lon": -0.4174427, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4085470938, - "lat": 55.8616699, - "lon": -4.0261039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "note": "inside Asda supermarket", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ML5 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4085560299, - "lat": 57.4711742, - "lon": -6.4302009, - "tags": { - "amenity": "post_box", - "ref": "IV51 12", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085560300, - "lat": 57.4787648, - "lon": -6.4306737, - "tags": { - "amenity": "post_box", - "ref": "IV51 13", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085560317, - "lat": 57.4940642, - "lon": -6.4214036, - "tags": { - "amenity": "post_box", - "ref": "IV51 15", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085560325, - "lat": 57.4954467, - "lon": -6.3664605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "993805381166588", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 16", - "source": "survey", - "survey:date": "2021-09-16" - } -}, -{ - "type": "node", - "id": 4085560334, - "lat": 57.4576233, - "lon": -6.3265431, - "tags": { - "amenity": "post_box", - "ref": "IV51 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085560341, - "lat": 57.4515450, - "lon": -6.3039400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV51 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4085595659, - "lat": 57.4171506, - "lon": -6.1989126, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV51 27", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085595660, - "lat": 57.4167199, - "lon": -6.1950593, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV51 4", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085595662, - "lat": 57.4152270, - "lon": -6.1930857, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV51 3", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4085676388, - "lat": 52.1995164, - "lon": -1.7311124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086436699, - "lat": 53.6838237, - "lon": -2.7115422, - "tags": { - "amenity": "post_box", - "ref": "PR25 390" - } -}, -{ - "type": "node", - "id": 4086436705, - "lat": 53.6851759, - "lon": -2.7164249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "768142764338701", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR25 207", - "survey:date": "2022-07-27" - } -}, -{ - "type": "node", - "id": 4086476533, - "lat": 53.9999151, - "lon": -1.5252974, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4086525557, - "lat": 53.6939603, - "lon": -2.7172049, - "tags": { - "amenity": "post_box", - "ref": "PR25 96" - } -}, -{ - "type": "node", - "id": 4086543763, - "lat": 53.6980816, - "lon": -2.7134859, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4086770407, - "lat": 53.6709450, - "lon": -1.3652497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 98" - } -}, -{ - "type": "node", - "id": 4086770408, - "lat": 53.6733602, - "lon": -1.3468766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 85" - } -}, -{ - "type": "node", - "id": 4086770410, - "lat": 53.6740132, - "lon": -1.3501301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 87" - } -}, -{ - "type": "node", - "id": 4086770411, - "lat": 53.6745574, - "lon": -1.3705404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 99" - } -}, -{ - "type": "node", - "id": 4086770412, - "lat": 53.6756298, - "lon": -1.3591230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF7 97" - } -}, -{ - "type": "node", - "id": 4086770413, - "lat": 53.6766499, - "lon": -1.3409409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 84" - } -}, -{ - "type": "node", - "id": 4086770414, - "lat": 53.6773767, - "lon": -1.3588044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF7 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4086770415, - "lat": 53.6819970, - "lon": -1.3568310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 83" - } -}, -{ - "type": "node", - "id": 4086770416, - "lat": 53.6881872, - "lon": -1.3936050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 91", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4086770417, - "lat": 53.6898522, - "lon": -1.3562917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 89" - } -}, -{ - "type": "node", - "id": 4086770418, - "lat": 53.6936536, - "lon": -1.3556369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF7 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4086770419, - "lat": 53.6950370, - "lon": -1.3609511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4086919335, - "lat": 53.0873900, - "lon": -2.4187200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 15:00-18:30", - "ref": "CW1 280", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086919336, - "lat": 53.0874200, - "lon": -2.4187600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "ref": "CW1 277", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086919337, - "lat": 53.0879649, - "lon": -2.4297306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-28", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "colour": "red", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CW1 306P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086919338, - "lat": 53.0879552, - "lon": -2.4297503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-28", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "colour": "red", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CW1 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086919339, - "lat": 53.0922565, - "lon": -2.4221624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW1 117", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086924923, - "lat": 53.0966400, - "lon": -2.4203300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW1 31", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086924924, - "lat": 53.0974500, - "lon": -2.4283400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "CW1 36", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086928869, - "lat": 57.3975377, - "lon": -6.4812159, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV56 87", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086929894, - "lat": 57.3986439, - "lon": -6.5497476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV55 45", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4086929896, - "lat": 57.4054781, - "lon": -6.5450997, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV55 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4087090809, - "lat": 51.4865566, - "lon": -3.1960652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4087191015, - "lat": 50.9128274, - "lon": -1.3547865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4087223461, - "lat": 51.4884389, - "lon": -3.2002298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4087254818, - "lat": 51.4846853, - "lon": -3.2006368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "CF11 205", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4087726582, - "lat": 54.1821125, - "lon": -2.9191432, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4087898307, - "lat": 53.6901094, - "lon": -2.6973854, - "tags": { - "amenity": "post_box", - "note": "Instore Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "PR25 387", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4087898436, - "lat": 53.6945343, - "lon": -2.7083904, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PR25 371", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4088102094, - "lat": 53.6946284, - "lon": -2.6963340, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR25 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088175861, - "lat": 53.6974801, - "lon": -2.7105751, - "tags": { - "amenity": "post_box", - "ref": "PR25 33" - } -}, -{ - "type": "node", - "id": 4088321595, - "lat": 53.6923004, - "lon": -2.6900222, - "tags": { - "amenity": "post_box", - "ref": "PR25 284" - } -}, -{ - "type": "node", - "id": 4088537491, - "lat": 53.6942804, - "lon": -2.6861630, - "tags": { - "amenity": "post_box", - "ref": "PR25 68" - } -}, -{ - "type": "node", - "id": 4088556767, - "lat": 50.9139766, - "lon": -1.4017043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4088562741, - "lat": 50.9145968, - "lon": -1.4100346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568757, - "lat": 53.6402055, - "lon": -1.3361927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568758, - "lat": 53.6404019, - "lon": -1.3314372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568759, - "lat": 53.6411489, - "lon": -1.3484687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WF7 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568760, - "lat": 53.6428546, - "lon": -1.3395844, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 52" - } -}, -{ - "type": "node", - "id": 4088568761, - "lat": 53.6428047, - "lon": -1.3304125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568762, - "lat": 53.6452667, - "lon": -1.3351185, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568763, - "lat": 53.6495701, - "lon": -1.3323558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF7 58" - } -}, -{ - "type": "node", - "id": 4088568764, - "lat": 53.6501834, - "lon": -1.3187302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 61" - } -}, -{ - "type": "node", - "id": 4088568765, - "lat": 53.6518943, - "lon": -1.3202644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF7 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568767, - "lat": 53.6565547, - "lon": -1.3342548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088568768, - "lat": 53.6570801, - "lon": -1.3296508, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088757599, - "lat": 52.3392820, - "lon": -1.3032079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4088757600, - "lat": 52.3411328, - "lon": -1.2874912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV22 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4088757606, - "lat": 52.3526955, - "lon": -1.2714404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4088757610, - "lat": 52.3534005, - "lon": -1.2663288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV22 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4088856229, - "lat": 50.9243927, - "lon": -1.4017754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO17 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4088875789, - "lat": 50.9433915, - "lon": -1.3760303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 768D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4089886002, - "lat": 53.6954086, - "lon": -2.6934772, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR25 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4090273004, - "lat": 53.6192669, - "lon": -1.4131771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 99" - } -}, -{ - "type": "node", - "id": 4090273005, - "lat": 53.6235201, - "lon": -1.4054437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF4 131" - } -}, -{ - "type": "node", - "id": 4090273006, - "lat": 53.6268604, - "lon": -1.3985212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 103" - } -}, -{ - "type": "node", - "id": 4090273007, - "lat": 53.6372528, - "lon": -1.4214793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 125" - } -}, -{ - "type": "node", - "id": 4090273008, - "lat": 53.6453236, - "lon": -1.3936634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 57" - } -}, -{ - "type": "node", - "id": 4090273009, - "lat": 53.6588973, - "lon": -1.4130068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 240" - } -}, -{ - "type": "node", - "id": 4091045609, - "lat": 50.3759035, - "lon": -4.1339290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL4 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4091239090, - "lat": 50.9125438, - "lon": -1.3966744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30,17:30; Sa 09:00", - "note": "This is not one of Royal Mail's postboxes; it may be owned by Royal South Hants Hospital.", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4092494190, - "lat": 52.1081978, - "lon": -0.4315536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK42 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092494191, - "lat": 52.1333912, - "lon": -0.4659826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK42 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092510473, - "lat": 52.0630138, - "lon": -0.4756074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 176", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092510474, - "lat": 52.0653712, - "lon": -0.4764234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092510475, - "lat": 52.0779829, - "lon": -0.4490157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092510478, - "lat": 52.0882843, - "lon": -0.4614237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092510479, - "lat": 52.0935301, - "lon": -0.4148449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092510481, - "lat": 52.0942456, - "lon": -0.4174828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-02" - } -}, -{ - "type": "node", - "id": 4092929452, - "lat": 52.3469671, - "lon": -1.7307719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4092929453, - "lat": 52.3419546, - "lon": -1.7255336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B94 1251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4093286963, - "lat": 50.9236292, - "lon": -1.3024955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4093381230, - "lat": 51.6692416, - "lon": -0.0657704, - "tags": { - "amenity": "post_box", - "ref": "EN2 47D", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 4094096800, - "lat": 56.4055959, - "lon": -3.4441895, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2023-07-14", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "indoor": "yes", - "note": "made of plastic", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "PH1 70", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4095597031, - "lat": 52.2975710, - "lon": -1.0852640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 464", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4095597032, - "lat": 52.3005450, - "lon": -1.0858286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 406D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4095602830, - "lat": 52.2837030, - "lon": -1.1117327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 494", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4095602831, - "lat": 52.3432503, - "lon": -1.1356312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NN6 535D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4095701188, - "lat": 52.9511506, - "lon": -0.9848355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NG13 71D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4095718444, - "lat": 52.4249838, - "lon": -1.5380511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 304", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4095949775, - "lat": 57.6789525, - "lon": -2.2596050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB43 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4097057072, - "lat": 53.1299309, - "lon": -3.2881676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4097059070, - "lat": 53.6982597, - "lon": -2.6905759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR25 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4097280016, - "lat": 53.6979248, - "lon": -2.6995503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR25 312", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4097291664, - "lat": 53.6994901, - "lon": -2.6948842, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "location": "in Morrisons lobby", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "PR25 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4097311403, - "lat": 53.6917090, - "lon": -2.6806086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR25 351", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4097419646, - "lat": 53.7018291, - "lon": -2.6844618, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-02-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR25 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4097477440, - "lat": 53.7070714, - "lon": -2.6822457, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-02-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR25 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4097893960, - "lat": 51.1608564, - "lon": -0.1772637, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH6 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4097893961, - "lat": 51.1607201, - "lon": -0.1785512, - "tags": { - "amenity": "post_box", - "level": "0", - "post_box:type": "pillar", - "ref": "RH6 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4097898923, - "lat": 52.9506760, - "lon": -0.9467567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG13 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4097906789, - "lat": 51.8801212, - "lon": -0.3754067, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-18", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "indoor": "yes", - "note": "Location in departures before security. Node approx position", - "post_box:type": "pillar", - "ref": "LU2 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4098274642, - "lat": 50.9134401, - "lon": -1.3040783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO30 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4099231050, - "lat": 54.0859050, - "lon": -1.3976044, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "made of plastic", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "YO51 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4099447203, - "lat": 54.1898383, - "lon": -3.0992595, - "tags": { - "amenity": "post_box", - "ref": "LA12 43" - } -}, -{ - "type": "node", - "id": 4099506602, - "lat": 54.1881742, - "lon": -3.0955522, - "tags": { - "amenity": "post_box", - "ref": "LA12 80" - } -}, -{ - "type": "node", - "id": 4099557085, - "lat": 54.1833368, - "lon": -3.1003790, - "tags": { - "amenity": "post_box", - "ref": "LA12 71" - } -}, -{ - "type": "node", - "id": 4099557086, - "lat": 54.1796029, - "lon": -3.0975541, - "tags": { - "amenity": "post_box", - "ref": "LA12 201" - } -}, -{ - "type": "node", - "id": 4099722056, - "lat": 54.1826163, - "lon": -3.0925530, - "tags": { - "amenity": "post_box", - "ref": "LA12 93" - } -}, -{ - "type": "node", - "id": 4099741689, - "lat": 54.1851510, - "lon": -3.0900319, - "tags": { - "amenity": "post_box", - "ref": "LA12 91" - } -}, -{ - "type": "node", - "id": 4099814304, - "lat": 54.1887982, - "lon": -3.0889141, - "tags": { - "amenity": "post_box", - "ref": "LA12 7" - } -}, -{ - "type": "node", - "id": 4099814315, - "lat": 54.1910223, - "lon": -3.0838351, - "tags": { - "amenity": "post_box", - "ref": "LA12 30" - } -}, -{ - "type": "node", - "id": 4099814320, - "lat": 54.1916774, - "lon": -3.0871682, - "tags": { - "amenity": "post_box", - "ref": "LA12 89" - } -}, -{ - "type": "node", - "id": 4099878871, - "lat": 54.1917368, - "lon": -3.0918485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "LA12 42" - } -}, -{ - "type": "node", - "id": 4099900726, - "lat": 54.1932602, - "lon": -3.0928649, - "tags": { - "amenity": "post_box", - "ref": "LA12 26" - } -}, -{ - "type": "node", - "id": 4099953092, - "lat": 54.1971304, - "lon": -3.0856119, - "tags": { - "amenity": "post_box", - "ref": "LA12 1" - } -}, -{ - "type": "node", - "id": 4100006423, - "lat": 54.1996606, - "lon": -3.0813409, - "tags": { - "amenity": "post_box", - "ref": "LA12 78" - } -}, -{ - "type": "node", - "id": 4100029512, - "lat": 54.1960028, - "lon": -3.0961644, - "tags": { - "amenity": "post_box", - "ref": "LA12 69" - } -}, -{ - "type": "node", - "id": 4100046731, - "lat": 52.5607265, - "lon": -2.0604217, - "tags": { - "amenity": "post_box", - "fixme": "The expected reference here is WV14 339", - "post_box:type": "pillar", - "ref": "WV36 3309", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4100133690, - "lat": 55.7356421, - "lon": -3.7994836, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4100435303, - "lat": 55.7874802, - "lon": -3.9867418, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4100435310, - "lat": 55.7871815, - "lon": -4.0134822, - "tags": { - "amenity": "post_box", - "ref": "ML1 75D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4100435317, - "lat": 55.7830475, - "lon": -4.0072465, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4100531469, - "lat": 55.7578655, - "lon": -4.0394318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ML3 1D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4100645675, - "lat": 55.6116839, - "lon": -4.1330426, - "tags": { - "amenity": "post_box", - "ref": "ML10 20", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4100916670, - "lat": 56.5565288, - "lon": -2.5833974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD11 307D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4101474291, - "lat": 51.6027243, - "lon": -1.5577684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 139", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4102466153, - "lat": 53.6096825, - "lon": -1.4580750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 236" - } -}, -{ - "type": "node", - "id": 4102466154, - "lat": 53.6126704, - "lon": -1.4714743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 186" - } -}, -{ - "type": "node", - "id": 4102466155, - "lat": 53.6183025, - "lon": -1.5670457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 51" - } -}, -{ - "type": "node", - "id": 4102466156, - "lat": 53.6234419, - "lon": -1.4396227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 257" - } -}, -{ - "type": "node", - "id": 4102466157, - "lat": 53.6263560, - "lon": -1.6758908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 143" - } -}, -{ - "type": "node", - "id": 4102466158, - "lat": 53.6283238, - "lon": -1.5249928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 272" - } -}, -{ - "type": "node", - "id": 4102466159, - "lat": 53.6300443, - "lon": -1.6421630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 228" - } -}, -{ - "type": "node", - "id": 4102466160, - "lat": 53.6308018, - "lon": -1.5883700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 68" - } -}, -{ - "type": "node", - "id": 4102466161, - "lat": 53.6311001, - "lon": -1.6341989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "WF4 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4102466162, - "lat": 53.6339615, - "lon": -1.6246261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 19" - } -}, -{ - "type": "node", - "id": 4102466163, - "lat": 53.6351202, - "lon": -1.6676168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 93" - } -}, -{ - "type": "node", - "id": 4102466164, - "lat": 53.6394486, - "lon": -1.5380538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF4 40" - } -}, -{ - "type": "node", - "id": 4102466165, - "lat": 53.6409346, - "lon": -1.6688771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 97" - } -}, -{ - "type": "node", - "id": 4102466166, - "lat": 53.6426348, - "lon": -1.5467421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 259" - } -}, -{ - "type": "node", - "id": 4102466167, - "lat": 53.6470730, - "lon": -1.6081985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF4 61" - } -}, -{ - "type": "node", - "id": 4102466168, - "lat": 53.6493865, - "lon": -1.5973580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF4 499" - } -}, -{ - "type": "node", - "id": 4102466169, - "lat": 53.6514055, - "lon": -1.5979729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 168" - } -}, -{ - "type": "node", - "id": 4102466170, - "lat": 53.6588785, - "lon": -1.5553466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 176" - } -}, -{ - "type": "node", - "id": 4102962084, - "lat": 53.3100631, - "lon": -2.0845824, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "postal_code": "SK10", - "ref": "SK10 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4103260694, - "lat": 55.4741123, - "lon": -4.2948624, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103260712, - "lat": 55.4502393, - "lon": -4.2613128, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103463336, - "lat": 52.1905097, - "lon": -1.7045286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103463337, - "lat": 52.1817380, - "lon": -1.6900072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103607882, - "lat": 50.8883361, - "lon": -0.9649705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO9 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4103607903, - "lat": 50.8715474, - "lon": -1.0021213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 89D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4103631592, - "lat": 50.8764839, - "lon": -0.9975501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 150" - } -}, -{ - "type": "node", - "id": 4103633201, - "lat": 50.8729254, - "lon": -0.9965315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4103635190, - "lat": 55.3861094, - "lon": -4.2120939, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103635192, - "lat": 55.3760116, - "lon": -4.2287700, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103640461, - "lat": 50.8586881, - "lon": -0.9647773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4103652637, - "lat": 50.8537251, - "lon": -0.9817961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4103659403, - "lat": 50.8527430, - "lon": -0.9893486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4103661620, - "lat": 50.8466158, - "lon": -1.0004285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO9 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4103717589, - "lat": 53.4186031, - "lon": -2.2277815, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4105911351, - "lat": 52.5926122, - "lon": 1.5560757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4107064325, - "lat": 52.1860251, - "lon": -1.7269354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4107583709, - "lat": 53.5265390, - "lon": -0.0617094, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/1tNjHTVW/DN36-186-D.jpg", - "location": "Peaks Avenue, outside the school", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "DN36 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4108033992, - "lat": 53.6968288, - "lon": -1.2530516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108033993, - "lat": 53.6983957, - "lon": -1.2360531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108033994, - "lat": 53.7025532, - "lon": -1.2598571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF11 139" - } -}, -{ - "type": "node", - "id": 4108033995, - "lat": 53.7032538, - "lon": -1.2326910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF11 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4108033996, - "lat": 53.7034098, - "lon": -1.2660134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108033997, - "lat": 53.7036206, - "lon": -1.2377107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF11 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108033998, - "lat": 53.7041711, - "lon": -1.2616897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF11 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108033999, - "lat": 53.7058136, - "lon": -1.2668274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034000, - "lat": 53.7070921, - "lon": -1.2378982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF11 146", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4108034001, - "lat": 53.7082353, - "lon": -1.2565925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WF11 135", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4108034002, - "lat": 53.7089222, - "lon": -1.2740536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034003, - "lat": 53.7093119, - "lon": -1.2678976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034004, - "lat": 53.7093655, - "lon": -1.2045345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034005, - "lat": 53.7101875, - "lon": -1.2632292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034007, - "lat": 53.7113777, - "lon": -1.2762896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034008, - "lat": 53.7133019, - "lon": -1.2684080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF11 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034009, - "lat": 53.7206566, - "lon": -1.2530892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF11 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034010, - "lat": 53.7240410, - "lon": -1.2637563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF11 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034011, - "lat": 53.7285022, - "lon": -1.2654562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034012, - "lat": 53.7342275, - "lon": -1.1977660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF11 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034013, - "lat": 53.7444585, - "lon": -1.2857656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108034014, - "lat": 53.7461226, - "lon": -1.2836594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4108573924, - "lat": 56.4593571, - "lon": -2.9773921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "DD1 14", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4108573926, - "lat": 56.4606920, - "lon": -2.9842749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DD1 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4108597438, - "lat": 56.4886605, - "lon": -2.8942447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD4 291D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4109373602, - "lat": 52.8300082, - "lon": 0.8475680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR21 2166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109373728, - "lat": 52.8313478, - "lon": 0.8598814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR21 2159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109373735, - "lat": 52.8325382, - "lon": 0.8456183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR21 2167D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4109495355, - "lat": 51.4404475, - "lon": -0.3037668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4109619122, - "lat": 52.8284717, - "lon": 0.8905940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR21 2116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619163, - "lat": 52.8292049, - "lon": 0.8486742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR21 2164", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4109619619, - "lat": 52.8306335, - "lon": 0.8553994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR21 2154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619621, - "lat": 52.8306635, - "lon": 0.8504127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:apertures:available": "1", - "post_box:type": "wall", - "ref": "NR21 2100" - } -}, -{ - "type": "node", - "id": 4109619622, - "lat": 52.8306781, - "lon": 0.8504000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "franked_mail": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "NR21 2186P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4109619626, - "lat": 52.8311650, - "lon": 0.8704237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619634, - "lat": 52.8330059, - "lon": 0.8531543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619636, - "lat": 52.8335364, - "lon": 0.8462467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR21 2150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619659, - "lat": 52.8337716, - "lon": 0.8502160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR21 2156D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4109619667, - "lat": 52.8332481, - "lon": 0.8678033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR21 2163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619668, - "lat": 52.8346336, - "lon": 0.8702977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619670, - "lat": 52.8348993, - "lon": 0.8574861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR21 2162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619796, - "lat": 52.8369580, - "lon": 0.8588246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619822, - "lat": 52.8378564, - "lon": 0.8414962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619831, - "lat": 52.8380897, - "lon": 0.8514706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109619845, - "lat": 52.8384061, - "lon": 0.8452304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109640380, - "lat": 52.7296001, - "lon": 1.0838351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 967", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4109661306, - "lat": 52.3524360, - "lon": -1.7774011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B94 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4109771858, - "lat": 56.6287309, - "lon": -2.7693481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD8 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4110048189, - "lat": 53.1512688, - "lon": -1.1942403, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4110158906, - "lat": 53.1622016, - "lon": -1.2270473, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4111767553, - "lat": 50.6636851, - "lon": -2.3175334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DT2 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111906460, - "lat": 52.7107897, - "lon": 1.1403116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 968", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111906462, - "lat": 52.7420436, - "lon": 1.0242994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "NR20 2024D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111906466, - "lat": 52.7464561, - "lon": 1.0276180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111906469, - "lat": 52.7517067, - "lon": 1.0164875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2027", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111906472, - "lat": 52.7545850, - "lon": 1.0196646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2046", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111906474, - "lat": 52.7893386, - "lon": 0.9746638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR20 2063D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4111906475, - "lat": 52.7903509, - "lon": 0.9632131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR20 2060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4111908407, - "lat": 53.4223092, - "lon": -3.0753342, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH45 148 by Carron Company on the corner of Greenleas Road and Saltburn Road, Wallasey Village.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Postbox on Saltburn Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 4112044600, - "lat": 54.9904859, - "lon": -1.6046543, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE2 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4112081791, - "lat": 52.4966272, - "lon": -1.8749210, - "tags": { - "amenity": "post_box", - "ref": "B7 1311" - } -}, -{ - "type": "node", - "id": 4112482539, - "lat": 51.5269638, - "lon": -0.0610297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-04-23", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4112851093, - "lat": 53.3627093, - "lon": -3.0199573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "description": "GR type B post box CH63 394 by Carron Company on Kings Lane at Berwyn Boulevard, Higher Bebington", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 394", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Kings Lane, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 4112851896, - "lat": 52.8385320, - "lon": -1.1764416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "LE12 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4113773235, - "lat": 53.3037058, - "lon": -2.3824643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 55", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4114225615, - "lat": 52.5396923, - "lon": 1.0422662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1856", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4114225631, - "lat": 52.5469284, - "lon": 1.0556236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1854", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4114225648, - "lat": 52.5668505, - "lon": 1.0244158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR18 1831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4114282087, - "lat": 52.5546017, - "lon": 0.9543647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR17 1715", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4114299732, - "lat": 52.3269436, - "lon": 1.0749529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 8131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4114306028, - "lat": 52.3286224, - "lon": 1.0807168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7038", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4114650112, - "lat": 51.0465334, - "lon": -3.2259371, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 538" - } -}, -{ - "type": "node", - "id": 4114965476, - "lat": 53.4745922, - "lon": -2.9238171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L10 207 by Carron Company on Sherwood's Lane, Aintree", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L10 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Sherwood's Lane, Aintree.jpg" - } -}, -{ - "type": "node", - "id": 4116042560, - "lat": 52.2410270, - "lon": 0.3979204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4116860410, - "lat": 51.8159738, - "lon": -2.7307840, - "tags": { - "amenity": "post_box", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4117422182, - "lat": 54.3609662, - "lon": -3.0795079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA21 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4117601596, - "lat": 50.7789449, - "lon": -2.9750526, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:type": "wall", - "ref": "EX13 73", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4117673194, - "lat": 50.7782898, - "lon": -2.9396919, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX13 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4117673195, - "lat": 50.7786509, - "lon": -2.8306011, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT6 52", - "ref:GB:uprn": "10015371987", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4117673196, - "lat": 50.7820656, - "lon": -2.8454645, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT6 26", - "ref:GB:uprn": "10015382100", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4117686429, - "lat": 50.7662912, - "lon": -2.8021871, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT6 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4117694016, - "lat": 50.7542491, - "lon": -2.7717830, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 51", - "ref:GB:uprn": "10015301424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4118538275, - "lat": 51.0259459, - "lon": -3.1462356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 240" - } -}, -{ - "type": "node", - "id": 4118978526, - "lat": 53.6587327, - "lon": -1.6235166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 76" - } -}, -{ - "type": "node", - "id": 4118978527, - "lat": 53.6592441, - "lon": -1.6202363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 203" - } -}, -{ - "type": "node", - "id": 4118978528, - "lat": 53.6593065, - "lon": -1.6145950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 13" - } -}, -{ - "type": "node", - "id": 4118978529, - "lat": 53.6604791, - "lon": -1.6248524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 72" - } -}, -{ - "type": "node", - "id": 4118978530, - "lat": 53.6626311, - "lon": -1.6384096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF12 217" - } -}, -{ - "type": "node", - "id": 4118978531, - "lat": 53.6627916, - "lon": -1.6220226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF12 65" - } -}, -{ - "type": "node", - "id": 4118978532, - "lat": 53.6635855, - "lon": -1.6321671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF12 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4118978534, - "lat": 53.6658148, - "lon": -1.6255783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 3" - } -}, -{ - "type": "node", - "id": 4118978535, - "lat": 53.6707930, - "lon": -1.6351873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 22" - } -}, -{ - "type": "node", - "id": 4118978537, - "lat": 53.6726863, - "lon": -1.6290437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 8" - } -}, -{ - "type": "node", - "id": 4118978541, - "lat": 53.6728839, - "lon": -1.6447131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 61" - } -}, -{ - "type": "node", - "id": 4118978542, - "lat": 53.6752998, - "lon": -1.6360167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF12 64" - } -}, -{ - "type": "node", - "id": 4118978543, - "lat": 53.6764342, - "lon": -1.6266746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 213" - } -}, -{ - "type": "node", - "id": 4118978544, - "lat": 53.6812527, - "lon": -1.6288163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 45" - } -}, -{ - "type": "node", - "id": 4118978545, - "lat": 53.6832764, - "lon": -1.6158854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 1" - } -}, -{ - "type": "node", - "id": 4118978546, - "lat": 53.6867754, - "lon": -1.6120130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 30" - } -}, -{ - "type": "node", - "id": 4118978547, - "lat": 53.6929723, - "lon": -1.6190432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 29" - } -}, -{ - "type": "node", - "id": 4118978548, - "lat": 53.6955514, - "lon": -1.6116189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 14" - } -}, -{ - "type": "node", - "id": 4118978549, - "lat": 53.7008941, - "lon": -1.6051950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF12 996;WF12 1996", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4118978551, - "lat": 53.7020696, - "lon": -1.6143876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 214" - } -}, -{ - "type": "node", - "id": 4118978553, - "lat": 53.7028625, - "lon": -1.6012099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF12 51" - } -}, -{ - "type": "node", - "id": 4118978554, - "lat": 53.7043786, - "lon": -1.5979912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF12 38" - } -}, -{ - "type": "node", - "id": 4119303089, - "lat": 53.6778860, - "lon": -1.6665520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "WF13 44" - } -}, -{ - "type": "node", - "id": 4119303090, - "lat": 53.6784643, - "lon": -1.6661175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 201" - } -}, -{ - "type": "node", - "id": 4119303091, - "lat": 53.6807802, - "lon": -1.6666432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 57" - } -}, -{ - "type": "node", - "id": 4119303093, - "lat": 53.6815137, - "lon": -1.6611366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 212", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4119303094, - "lat": 53.6830502, - "lon": -1.6706611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 207" - } -}, -{ - "type": "node", - "id": 4119303096, - "lat": 53.6874324, - "lon": -1.6337774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "WF13 999" - } -}, -{ - "type": "node", - "id": 4119303097, - "lat": 53.6874328, - "lon": -1.6337989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 4" - } -}, -{ - "type": "node", - "id": 4119303098, - "lat": 53.6880888, - "lon": -1.6402845, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF13 67" - } -}, -{ - "type": "node", - "id": 4119303099, - "lat": 53.6888317, - "lon": -1.6421721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF13 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4119303100, - "lat": 53.6904526, - "lon": -1.6548053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 48" - } -}, -{ - "type": "node", - "id": 4119303101, - "lat": 53.6910712, - "lon": -1.6412775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF13 9" - } -}, -{ - "type": "node", - "id": 4119303102, - "lat": 53.6947264, - "lon": -1.6577383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF13 40" - } -}, -{ - "type": "node", - "id": 4119303103, - "lat": 53.6954821, - "lon": -1.6289840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 49" - } -}, -{ - "type": "node", - "id": 4119303104, - "lat": 53.6970916, - "lon": -1.6315079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF13 33" - } -}, -{ - "type": "node", - "id": 4119303105, - "lat": 53.7009759, - "lon": -1.6400501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4119303106, - "lat": 53.7048206, - "lon": -1.6496698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF13 17" - } -}, -{ - "type": "node", - "id": 4119531048, - "lat": 53.7368058, - "lon": -0.8768669, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN14 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4121174306, - "lat": 50.7285445, - "lon": -1.9355317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH14 12;BH14 5012", - "ref:GB:uprn": "10015470612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4121418992, - "lat": 51.4457187, - "lon": -0.3296100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW1 1231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122052125, - "lat": 50.8611639, - "lon": -1.0228760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO7 361D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122074492, - "lat": 50.7904175, - "lon": -0.9958384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO11 147" - } -}, -{ - "type": "node", - "id": 4122078455, - "lat": 50.7879935, - "lon": -0.9770852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 28" - } -}, -{ - "type": "node", - "id": 4122078619, - "lat": 50.9136865, - "lon": -0.9964741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122083814, - "lat": 50.7953250, - "lon": -1.1270206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO12 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122084157, - "lat": 50.7895251, - "lon": -1.1517299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO12 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122088551, - "lat": 50.7851952, - "lon": -1.1494852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO12 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122089197, - "lat": 50.8083925, - "lon": -1.1450405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO12 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122089648, - "lat": 50.7920050, - "lon": -1.1295399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PO12 363" - } -}, -{ - "type": "node", - "id": 4122089689, - "lat": 50.7928763, - "lon": -1.1492016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122090721, - "lat": 50.8136895, - "lon": -1.1481063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122093433, - "lat": 50.8090217, - "lon": -1.1685343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 90" - } -}, -{ - "type": "node", - "id": 4122096218, - "lat": 50.8064244, - "lon": -1.1943580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO13 249" - } -}, -{ - "type": "node", - "id": 4122096989, - "lat": 50.8054834, - "lon": -1.1971233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO13 81" - } -}, -{ - "type": "node", - "id": 4122096998, - "lat": 50.8239010, - "lon": -1.1849887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO13 50" - } -}, -{ - "type": "node", - "id": 4122098439, - "lat": 50.8207669, - "lon": -1.2220868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO14 161" - } -}, -{ - "type": "node", - "id": 4122099529, - "lat": 50.8200735, - "lon": -1.1856769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO13 102" - } -}, -{ - "type": "node", - "id": 4122099792, - "lat": 50.8135917, - "lon": -1.1669595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 92" - } -}, -{ - "type": "node", - "id": 4122100322, - "lat": 50.8117396, - "lon": -1.1869192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO13 34" - } -}, -{ - "type": "node", - "id": 4122102163, - "lat": 50.8283389, - "lon": -1.1696352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 88" - } -}, -{ - "type": "node", - "id": 4122104089, - "lat": 50.8224481, - "lon": -1.2189162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO14 100" - } -}, -{ - "type": "node", - "id": 4122105189, - "lat": 50.8396940, - "lon": -0.8511165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO18 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4122168873, - "lat": 53.7378113, - "lon": -2.6683666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4124063461, - "lat": 51.0270845, - "lon": -3.0401939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "name": "Arundels Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA3 5QJ", - "ref": "TA3 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4124063515, - "lat": 51.0316113, - "lon": -3.0337417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4124650663, - "lat": 51.6858568, - "lon": -3.0395655, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4124698243, - "lat": 53.2904271, - "lon": -0.0863889, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4124827287, - "lat": 52.6364664, - "lon": -3.8336774, - "tags": { - "amenity": "post_box", - "ref": "SY20 95" - } -}, -{ - "type": "node", - "id": 4126626218, - "lat": 52.3350185, - "lon": -1.6479892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4126658859, - "lat": 53.0495478, - "lon": -2.9987253, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4126662559, - "lat": 52.2617407, - "lon": -0.7874928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4126662560, - "lat": 52.2649595, - "lon": -0.7888949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4126669172, - "lat": 52.2907478, - "lon": -0.7754005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4126669173, - "lat": 52.2932439, - "lon": -0.7698356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4126674449, - "lat": 52.2729374, - "lon": -0.7631140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4126686652, - "lat": 52.2892906, - "lon": -0.8210188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 210D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4126686653, - "lat": 52.2919926, - "lon": -0.8135140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4126686654, - "lat": 52.2949685, - "lon": -0.8050583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NN6 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4126686655, - "lat": 52.2969484, - "lon": -0.7956371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4126686656, - "lat": 52.3012582, - "lon": -0.7886999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 255D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4126688340, - "lat": 52.2829277, - "lon": -0.8014105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4126699010, - "lat": 55.9636026, - "lon": -3.5343775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH49 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4126699021, - "lat": 55.9714136, - "lon": -3.5558160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH49 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4126837280, - "lat": 55.9772781, - "lon": -3.5953671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "note": "inside Tesco store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH49 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4126897975, - "lat": 55.9731206, - "lon": -3.5971632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH49 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4126897977, - "lat": 55.9735378, - "lon": -3.6088035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 5D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4126897978, - "lat": 55.9751633, - "lon": -3.6025320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH49 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4126897979, - "lat": 55.9759414, - "lon": -3.6059166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH49 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4126897992, - "lat": 55.9832157, - "lon": -3.5817163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 27D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4128462100, - "lat": 52.8201055, - "lon": -1.0647833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "LE12 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4129280192, - "lat": 53.3911176, - "lon": -0.3662090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4130456944, - "lat": 54.1925289, - "lon": -3.0967156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LA12 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4130527604, - "lat": 54.1959539, - "lon": -3.0934850, - "tags": { - "amenity": "post_box", - "ref": "LA12 84" - } -}, -{ - "type": "node", - "id": 4130684047, - "lat": 54.1971104, - "lon": -3.0953436, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4131195852, - "lat": 51.3370990, - "lon": -0.6384793, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4131484811, - "lat": 53.8601629, - "lon": -1.6909182, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LS19 13D", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 4132765502, - "lat": 51.4305384, - "lon": -0.0985132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4132940190, - "lat": 53.5611991, - "lon": -1.6572215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HD8 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4133176953, - "lat": 54.1973123, - "lon": -3.0902149, - "tags": { - "amenity": "post_box", - "ref": "LA12 29" - } -}, -{ - "type": "node", - "id": 4133208465, - "lat": 54.1977723, - "lon": -3.0934857, - "tags": { - "amenity": "post_box", - "ref": "LA12 2" - } -}, -{ - "type": "node", - "id": 4133286872, - "lat": 54.2000193, - "lon": -3.0905254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA12 45" - } -}, -{ - "type": "node", - "id": 4133286873, - "lat": 54.2011885, - "lon": -3.0955833, - "tags": { - "amenity": "post_box", - "ref": "LA12 28" - } -}, -{ - "type": "node", - "id": 4133302140, - "lat": 54.1984765, - "lon": -3.0970828, - "tags": { - "amenity": "post_box", - "ref": "LA12 48" - } -}, -{ - "type": "node", - "id": 4133568509, - "lat": 53.7898371, - "lon": -3.0366428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133568510, - "lat": 53.7912172, - "lon": -3.0392285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4133568512, - "lat": 53.7973740, - "lon": -3.0250798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4133568514, - "lat": 53.7978742, - "lon": -2.9902587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 265D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4133568515, - "lat": 53.7980188, - "lon": -3.0045596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY4 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4133568516, - "lat": 53.7980409, - "lon": -3.0046052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "FY4 46", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4133568517, - "lat": 53.7996596, - "lon": -2.9969390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133568519, - "lat": 53.8011680, - "lon": -3.0110720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4133568520, - "lat": 53.8013280, - "lon": -3.0025640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133568521, - "lat": 53.8020714, - "lon": -2.9959892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133568522, - "lat": 53.8036958, - "lon": -3.0037140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY3 328D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133568523, - "lat": 53.8052536, - "lon": -3.0058564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY3 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133631666, - "lat": 53.7058223, - "lon": -1.6617430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF16 222" - } -}, -{ - "type": "node", - "id": 4133631668, - "lat": 53.7069523, - "lon": -1.6689105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF16 141" - } -}, -{ - "type": "node", - "id": 4133631669, - "lat": 53.7100126, - "lon": -1.6605253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF16 140" - } -}, -{ - "type": "node", - "id": 4133631670, - "lat": 53.7105059, - "lon": -1.6744670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF16 126" - } -}, -{ - "type": "node", - "id": 4133631671, - "lat": 53.7110530, - "lon": -1.6660312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF16 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4133631672, - "lat": 53.7151661, - "lon": -1.6677484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF16 160" - } -}, -{ - "type": "node", - "id": 4133631673, - "lat": 53.7180982, - "lon": -1.6712246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF16 220" - } -}, -{ - "type": "node", - "id": 4133631674, - "lat": 53.7213860, - "lon": -1.6666474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF16 128" - } -}, -{ - "type": "node", - "id": 4133920354, - "lat": 52.3745581, - "lon": -2.0783823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B61 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4133941109, - "lat": 52.3645718, - "lon": -2.0798765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B61 273D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4133941110, - "lat": 52.3679604, - "lon": -2.0770465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B61 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4134027836, - "lat": 52.2443930, - "lon": -1.7404065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV37 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4134232175, - "lat": 50.8539111, - "lon": 0.4753576, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Holliers Hill", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN40 42", - "ref:GB:uprn": "10015430719", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB London Road Wrestwood Road TN4042.jpg" - } -}, -{ - "type": "node", - "id": 4134420589, - "lat": 51.1875012, - "lon": -0.7854147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "526812552139288", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 4136069587, - "lat": 54.1935668, - "lon": -3.0738047, - "tags": { - "amenity": "post_box", - "ref": "LA12 66" - } -}, -{ - "type": "node", - "id": 4136102922, - "lat": 54.1904332, - "lon": -3.0739994, - "tags": { - "amenity": "post_box", - "ref": "LA12 70" - } -}, -{ - "type": "node", - "id": 4136102928, - "lat": 54.1875760, - "lon": -3.0656353, - "tags": { - "amenity": "post_box", - "ref": "LA12 77" - } -}, -{ - "type": "node", - "id": 4136103822, - "lat": 54.1899327, - "lon": -3.0538757, - "tags": { - "amenity": "post_box", - "ref": "LA12 35" - } -}, -{ - "type": "node", - "id": 4136127763, - "lat": 54.1801760, - "lon": -3.1146294, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4136127766, - "lat": 54.1811726, - "lon": -3.1180259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA12 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4136127830, - "lat": 54.1854183, - "lon": -3.1138213, - "tags": { - "amenity": "post_box", - "ref": "LA12 61" - } -}, -{ - "type": "node", - "id": 4136139537, - "lat": 54.1730480, - "lon": -3.1225926, - "tags": { - "amenity": "post_box", - "ref": "LA12 67" - } -}, -{ - "type": "node", - "id": 4136152090, - "lat": 54.1625356, - "lon": -3.1188413, - "tags": { - "amenity": "post_box", - "ref": "LA12 94" - } -}, -{ - "type": "node", - "id": 4136182053, - "lat": 54.1528880, - "lon": -3.1298403, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4136189189, - "lat": 53.7002665, - "lon": -1.6858715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 130" - } -}, -{ - "type": "node", - "id": 4136189190, - "lat": 53.7004943, - "lon": -1.6918917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 161" - } -}, -{ - "type": "node", - "id": 4136189191, - "lat": 53.7017805, - "lon": -1.7148990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 150" - } -}, -{ - "type": "node", - "id": 4136189192, - "lat": 53.7055332, - "lon": -1.6953423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 143" - } -}, -{ - "type": "node", - "id": 4136189193, - "lat": 53.7107885, - "lon": -1.7016770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 157" - } -}, -{ - "type": "node", - "id": 4136189194, - "lat": 53.7110457, - "lon": -1.7064929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 158" - } -}, -{ - "type": "node", - "id": 4136189195, - "lat": 53.7112176, - "lon": -1.6877772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 152" - } -}, -{ - "type": "node", - "id": 4136189196, - "lat": 53.7130657, - "lon": -1.7308323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF15 154" - } -}, -{ - "type": "node", - "id": 4136189197, - "lat": 53.7138805, - "lon": -1.6903923, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 136" - } -}, -{ - "type": "node", - "id": 4136189198, - "lat": 53.7153750, - "lon": -1.7324235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF15 145" - } -}, -{ - "type": "node", - "id": 4136189199, - "lat": 53.7163829, - "lon": -1.6860579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF15 137" - } -}, -{ - "type": "node", - "id": 4136204729, - "lat": 54.9812073, - "lon": -1.6092854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE2 66;NE2 166", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4136762119, - "lat": 53.1648087, - "lon": -1.6194736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE4 979" - } -}, -{ - "type": "node", - "id": 4136862999, - "lat": 53.8046117, - "lon": -1.6064568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS12 842" - } -}, -{ - "type": "node", - "id": 4136951466, - "lat": 55.8421898, - "lon": -4.2887834, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4137065659, - "lat": 50.3357577, - "lon": -4.6374081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL23 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4137080136, - "lat": 55.8733046, - "lon": -4.3240805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "515936650620049", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 4137091990, - "lat": 50.5057585, - "lon": -4.2376111, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL17 544D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4137092247, - "lat": 50.5099535, - "lon": -4.2415485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL17 838D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4137103001, - "lat": 50.4949318, - "lon": -4.2254047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL12 779", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4137917764, - "lat": 50.7990130, - "lon": -1.1675114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4138612916, - "lat": 54.1620402, - "lon": -3.0729371, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 54" - } -}, -{ - "type": "node", - "id": 4138612917, - "lat": 54.1649115, - "lon": -3.0717899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 97" - } -}, -{ - "type": "node", - "id": 4138649502, - "lat": 54.1431660, - "lon": -3.0894281, - "tags": { - "amenity": "post_box", - "ref": "LA12 98" - } -}, -{ - "type": "node", - "id": 4138674879, - "lat": 54.1303392, - "lon": -3.0985900, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4138689962, - "lat": 54.1140805, - "lon": -3.1190429, - "tags": { - "amenity": "post_box", - "ref": "LA12 82" - } -}, -{ - "type": "node", - "id": 4138721724, - "lat": 54.1154485, - "lon": -3.1581833, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA12 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4138815762, - "lat": 54.2603888, - "lon": -2.9924614, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA12 87" - } -}, -{ - "type": "node", - "id": 4138831292, - "lat": 54.2515110, - "lon": -2.9925860, - "tags": { - "amenity": "post_box", - "ref": "LA12 86" - } -}, -{ - "type": "node", - "id": 4138860498, - "lat": 54.2675627, - "lon": -2.9545773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "wall", - "ref": "LA12 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4138888093, - "lat": 54.2671239, - "lon": -2.9682102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "LA12 53" - } -}, -{ - "type": "node", - "id": 4138891720, - "lat": 53.7614060, - "lon": -2.6963313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "level": "0", - "mapillary": "488017655683275", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 337" - } -}, -{ - "type": "node", - "id": 4138891744, - "lat": 53.7573261, - "lon": -2.6913141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4138891746, - "lat": 53.7497531, - "lon": -2.6863130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-03-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 328", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4139040889, - "lat": 53.7441188, - "lon": -2.6724904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4139040890, - "lat": 53.7274185, - "lon": -2.6606704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR5 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4139148082, - "lat": 55.8785158, - "lon": -4.3496315, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139150216, - "lat": 50.9692214, - "lon": -2.3031746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 13:00; Sa 09:00", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT10 43", - "ref:GB:uprn": "10015435226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139191247, - "lat": 55.9065684, - "lon": -4.4191634, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139191249, - "lat": 55.9143116, - "lon": -4.4361035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139191250, - "lat": 55.9150182, - "lon": -4.4387994, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139191256, - "lat": 55.9209970, - "lon": -4.4543719, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139215159, - "lat": 55.9152262, - "lon": -4.4323849, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139215161, - "lat": 55.9232827, - "lon": -4.4345308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1977643375949511", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2023-05-25" - } -}, -{ - "type": "node", - "id": 4139258042, - "lat": 54.9766189, - "lon": -1.5838102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4139478038, - "lat": 55.8449681, - "lon": -4.1250100, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139493309, - "lat": 55.8893743, - "lon": -4.0826835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G69 713", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139514288, - "lat": 55.8645013, - "lon": -4.1020021, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139514689, - "lat": 55.8705473, - "lon": -4.1154297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G34 440D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4139537567, - "lat": 55.8943833, - "lon": -4.0711895, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4140689231, - "lat": 55.0051095, - "lon": -2.1862352, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4140738510, - "lat": 54.8172609, - "lon": -1.5450649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "DH1 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4140802580, - "lat": 53.7356481, - "lon": -2.4686163, - "tags": { - "amenity": "post_box", - "ref": "BB2 65" - } -}, -{ - "type": "node", - "id": 4140973411, - "lat": 53.9079903, - "lon": -1.4108018, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 660" - } -}, -{ - "type": "node", - "id": 4141416283, - "lat": 50.8657664, - "lon": 0.4515254, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Ninfield Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 41", - "ref:GB:uprn": "10015283903", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Ninfield Road TN3941.jpg" - } -}, -{ - "type": "node", - "id": 4141416285, - "lat": 50.8701857, - "lon": 0.4438103, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Potman's Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN39 40", - "ref:GB:uprn": "10025203836", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB Lunsford Cross TN3940.jpg" - } -}, -{ - "type": "node", - "id": 4141418489, - "lat": 50.8771877, - "lon": 0.4639557, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Watermill Lane", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN39 71", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:PB Watermill Lane TN3971.jpg" - } -}, -{ - "type": "node", - "id": 4141809841, - "lat": 53.9111582, - "lon": -1.5264840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LS17 410D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4141826689, - "lat": 51.0671981, - "lon": -3.2756372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "colour": "red", - "name": "Scarr", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA4 3RQ", - "ref": "TA4 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4141830338, - "lat": 51.0518809, - "lon": -3.3134825, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 549", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4141835392, - "lat": 51.1376111, - "lon": -3.3386617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 73", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4141847421, - "lat": 51.1605928, - "lon": -3.3646569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4142831325, - "lat": 52.2181840, - "lon": -0.6774886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4142831326, - "lat": 52.2211795, - "lon": -0.6729365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4142831327, - "lat": 52.2215970, - "lon": -0.6794479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4142831336, - "lat": 52.2263011, - "lon": -0.6769942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4142837643, - "lat": 52.2202478, - "lon": -0.7008576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4142845374, - "lat": 52.3974783, - "lon": -1.6223082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV7 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4142845375, - "lat": 52.4094470, - "lon": -1.6412714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV7 182", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4142872954, - "lat": 52.6480081, - "lon": 1.1971280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-06-27", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR5 528D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4142903677, - "lat": 52.5305598, - "lon": -1.0401530, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4142940535, - "lat": 53.7380178, - "lon": -0.4934782, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4143692408, - "lat": 53.2595039, - "lon": -0.7536724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN1 235" - } -}, -{ - "type": "node", - "id": 4144499110, - "lat": 52.5348674, - "lon": 1.7323458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4144629890, - "lat": 51.1791561, - "lon": -3.3814628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4144772737, - "lat": 52.7615941, - "lon": -1.7024141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE13 1051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4144790351, - "lat": 50.7144172, - "lon": -3.4702162, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4144997707, - "lat": 51.1337664, - "lon": -3.6404371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4145718827, - "lat": 54.9087994, - "lon": -1.8871653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4146037536, - "lat": 54.0738702, - "lon": -2.7102467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LA2 225" - } -}, -{ - "type": "node", - "id": 4146225442, - "lat": 54.2789395, - "lon": -2.9568274, - "tags": { - "amenity": "post_box", - "ref": "LA12 33" - } -}, -{ - "type": "node", - "id": 4146619323, - "lat": 53.3857752, - "lon": -2.3394607, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4146712511, - "lat": 54.7020133, - "lon": -1.5819204, - "tags": { - "amenity": "post_box", - "ref": "DL16 126" - } -}, -{ - "type": "node", - "id": 4146712566, - "lat": 54.7021670, - "lon": -1.5867838, - "tags": { - "amenity": "post_box", - "ref": "DL16 113" - } -}, -{ - "type": "node", - "id": 4146807078, - "lat": 54.7024405, - "lon": -1.5917579, - "tags": { - "amenity": "post_box", - "ref": "DL16 105" - } -}, -{ - "type": "node", - "id": 4146807328, - "lat": 54.7058017, - "lon": -1.5945652, - "tags": { - "amenity": "post_box", - "ref": "DL16 125" - } -}, -{ - "type": "node", - "id": 4146816308, - "lat": 54.7017941, - "lon": -1.5989564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL16 127" - } -}, -{ - "type": "node", - "id": 4146825816, - "lat": 54.7004611, - "lon": -1.5956119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL16 219" - } -}, -{ - "type": "node", - "id": 4147190686, - "lat": 52.3681988, - "lon": -1.2607573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "711613520626203", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV22 35D", - "survey:date": "2023-02-06" - } -}, -{ - "type": "node", - "id": 4147368199, - "lat": 54.9772546, - "lon": -1.5794518, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 118" - } -}, -{ - "type": "node", - "id": 4147687764, - "lat": 52.4693499, - "lon": -2.0198180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B62 1004" - } -}, -{ - "type": "node", - "id": 4147687767, - "lat": 52.4707032, - "lon": -2.0337219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B62 133" - } -}, -{ - "type": "node", - "id": 4147849694, - "lat": 51.0653942, - "lon": -3.5370918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA22 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4147860377, - "lat": 54.4503791, - "lon": -5.7642858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4148624773, - "lat": 51.5511807, - "lon": -1.7279422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4148717750, - "lat": 53.8775436, - "lon": -1.8890139, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4148736773, - "lat": 50.1851758, - "lon": -5.4210237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR27 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-08-11" - } -}, -{ - "type": "node", - "id": 4148736774, - "lat": 50.1880605, - "lon": -5.4212862, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-27", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4148736775, - "lat": 50.1896158, - "lon": -5.4226837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 4148736776, - "lat": 50.2037170, - "lon": -5.3754868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR27 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 4148736777, - "lat": 50.2218413, - "lon": -5.3948544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 4148744016, - "lat": 50.2071834, - "lon": -5.3864778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-23" - } -}, -{ - "type": "node", - "id": 4149211594, - "lat": 50.1115466, - "lon": -5.2762234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4149378806, - "lat": 50.1280181, - "lon": -5.5133370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Inside store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR18 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-24" - } -}, -{ - "type": "node", - "id": 4149378816, - "lat": 50.1297023, - "lon": -5.4995960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR20 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-24" - } -}, -{ - "type": "node", - "id": 4149378881, - "lat": 50.1329076, - "lon": -5.5220748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-24" - } -}, -{ - "type": "node", - "id": 4149389903, - "lat": 50.1393897, - "lon": -5.4949880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR20 142", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-04-24" - } -}, -{ - "type": "node", - "id": 4149390027, - "lat": 50.1466180, - "lon": -5.4838137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR20 59D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-04-24" - } -}, -{ - "type": "node", - "id": 4149390029, - "lat": 50.1466395, - "lon": -5.4781516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "mapillary": "1632735920633670", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-07-13" - } -}, -{ - "type": "node", - "id": 4149390100, - "lat": 50.1491761, - "lon": -5.4930233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR18 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-04-24" - } -}, -{ - "type": "node", - "id": 4149463957, - "lat": 54.6963804, - "lon": -1.6067450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL16 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4149490855, - "lat": 50.1723807, - "lon": -5.4641888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 4149490863, - "lat": 50.1769222, - "lon": -5.4804236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TR27 193D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 4149519060, - "lat": 54.6893975, - "lon": -1.6157531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DL16 212" - } -}, -{ - "type": "node", - "id": 4149519645, - "lat": 54.6879022, - "lon": -1.6243584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL16 136" - } -}, -{ - "type": "node", - "id": 4149519691, - "lat": 54.6895035, - "lon": -1.6215891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DL16 165" - } -}, -{ - "type": "node", - "id": 4149529574, - "lat": 50.1007219, - "lon": -5.2696422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 105D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149529581, - "lat": 50.1020542, - "lon": -5.2804448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149529582, - "lat": 50.1023382, - "lon": -5.2716661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149530589, - "lat": 50.1046935, - "lon": -5.2685586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR13 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149530593, - "lat": 50.1060951, - "lon": -5.2779456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149551789, - "lat": 49.9645616, - "lon": -5.2065700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149551803, - "lat": 49.9680478, - "lon": -5.2047678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149551847, - "lat": 49.9694738, - "lon": -5.1983890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TR12 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149556239, - "lat": 50.0984999, - "lon": -5.2718684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149556240, - "lat": 50.0985222, - "lon": -5.2786551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149556241, - "lat": 50.0986831, - "lon": -5.2744755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2016-04-25" - } -}, -{ - "type": "node", - "id": 4149910363, - "lat": 51.7837906, - "lon": -1.4895165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX28 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4150128420, - "lat": 53.0695142, - "lon": -1.4196901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE5 289" - } -}, -{ - "type": "node", - "id": 4150711532, - "lat": 56.1251463, - "lon": -3.3120654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY5 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4150713201, - "lat": 56.1189063, - "lon": -3.3356687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 53", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4150720080, - "lat": 56.1343223, - "lon": -3.3132048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 40D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4150844224, - "lat": 54.7025257, - "lon": -1.6109024, - "tags": { - "amenity": "post_box", - "ref": "DL16 222" - } -}, -{ - "type": "node", - "id": 4150844225, - "lat": 54.7064502, - "lon": -1.6079742, - "tags": { - "amenity": "post_box", - "ref": "DL16 203" - } -}, -{ - "type": "node", - "id": 4150844237, - "lat": 54.7099411, - "lon": -1.6108949, - "tags": { - "amenity": "post_box", - "ref": "DL16 204" - } -}, -{ - "type": "node", - "id": 4150994619, - "lat": 54.7041155, - "lon": -1.6026846, - "tags": { - "amenity": "post_box", - "ref": "DL16 180" - } -}, -{ - "type": "node", - "id": 4150995185, - "lat": 54.7135581, - "lon": -1.5885961, - "tags": { - "amenity": "post_box", - "ref": "DL16 117" - } -}, -{ - "type": "node", - "id": 4151021452, - "lat": 54.7142669, - "lon": -1.5975245, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DL16 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4151424883, - "lat": 54.9460797, - "lon": -1.9041860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE43 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4151424884, - "lat": 54.9423618, - "lon": -1.9059450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 421" - } -}, -{ - "type": "node", - "id": 4151424885, - "lat": 54.9389134, - "lon": -1.9081318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 248" - } -}, -{ - "type": "node", - "id": 4151424886, - "lat": 54.9322080, - "lon": -1.9011740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 257" - } -}, -{ - "type": "node", - "id": 4151424887, - "lat": 54.9388641, - "lon": -1.9012255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 403" - } -}, -{ - "type": "node", - "id": 4151424888, - "lat": 54.9401040, - "lon": -1.8963709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 597" - } -}, -{ - "type": "node", - "id": 4151424952, - "lat": 54.9293927, - "lon": -1.9102667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE43 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4151444722, - "lat": 54.9467755, - "lon": -1.8982734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE43 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4151465619, - "lat": 54.9680958, - "lon": -1.8979124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE42 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4151676789, - "lat": 53.7132235, - "lon": -1.6303995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF17 286;WF17 1286" - } -}, -{ - "type": "node", - "id": 4151676790, - "lat": 53.7155664, - "lon": -1.6341794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 94" - } -}, -{ - "type": "node", - "id": 4151676791, - "lat": 53.7158037, - "lon": -1.6278085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 91" - } -}, -{ - "type": "node", - "id": 4151676792, - "lat": 53.7182576, - "lon": -1.6289887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 102" - } -}, -{ - "type": "node", - "id": 4151676793, - "lat": 53.7191457, - "lon": -1.6638266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4151676794, - "lat": 53.7209542, - "lon": -1.6306409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 85" - } -}, -{ - "type": "node", - "id": 4151676795, - "lat": 53.7231684, - "lon": -1.6476914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF17 89" - } -}, -{ - "type": "node", - "id": 4151676796, - "lat": 53.7264562, - "lon": -1.6542514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF17 105", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 4151676798, - "lat": 53.7291043, - "lon": -1.6485108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF17 224" - } -}, -{ - "type": "node", - "id": 4151676799, - "lat": 53.7305875, - "lon": -1.6703353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 108" - } -}, -{ - "type": "node", - "id": 4151676800, - "lat": 53.7306197, - "lon": -1.6516826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF17 120" - } -}, -{ - "type": "node", - "id": 4151676801, - "lat": 53.7326792, - "lon": -1.6546913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 189" - } -}, -{ - "type": "node", - "id": 4151676802, - "lat": 53.7344063, - "lon": -1.6494597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 188" - } -}, -{ - "type": "node", - "id": 4151676803, - "lat": 53.7349346, - "lon": -1.6459876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 221" - } -}, -{ - "type": "node", - "id": 4151676804, - "lat": 53.7405246, - "lon": -1.6484555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "WF17 45" - } -}, -{ - "type": "node", - "id": 4151676805, - "lat": 53.7405351, - "lon": -1.6484679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 223" - } -}, -{ - "type": "node", - "id": 4151676807, - "lat": 53.7411302, - "lon": -1.6551051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 218" - } -}, -{ - "type": "node", - "id": 4151879165, - "lat": 50.0913289, - "lon": -5.6429064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 4151879182, - "lat": 50.0984489, - "lon": -5.6321897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 4151880409, - "lat": 50.1023925, - "lon": -5.5815429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "mapillary": "363128530113145", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR19 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 4151880419, - "lat": 50.1102696, - "lon": -5.6307389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR19 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 4151880420, - "lat": 50.1109688, - "lon": -5.6778462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR19 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-05-19" - } -}, -{ - "type": "node", - "id": 4151880421, - "lat": 50.1126502, - "lon": -5.6581541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR19 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 4151966201, - "lat": 55.6884243, - "lon": -3.7363951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1307664226763012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2023-05-01" - } -}, -{ - "type": "node", - "id": 4151966210, - "lat": 55.7339936, - "lon": -3.8400728, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4151966216, - "lat": 55.7104143, - "lon": -3.8428542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1888820848204133", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2024-01-06" - } -}, -{ - "type": "node", - "id": 4151966226, - "lat": 55.6760554, - "lon": -3.7857110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "ML11 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4151966230, - "lat": 55.7190364, - "lon": -3.7769841, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4151966240, - "lat": 55.6877673, - "lon": -3.7447909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4151966259, - "lat": 55.6777324, - "lon": -3.7821898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "ML11 8" - } -}, -{ - "type": "node", - "id": 4152115857, - "lat": 53.7886303, - "lon": -1.3270540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 729" - } -}, -{ - "type": "node", - "id": 4152309128, - "lat": 53.8202930, - "lon": -1.5137049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS8 773", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4153602806, - "lat": 55.9853609, - "lon": -3.8035711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 237D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291945, - "lat": 56.0165630, - "lon": -3.5820125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291947, - "lat": 56.0162537, - "lon": -3.5928637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH51 15", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291950, - "lat": 56.0151630, - "lon": -3.6023581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH51 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291956, - "lat": 56.0133221, - "lon": -3.5999074, - "tags": { - "amenity": "post_box", - "check_date:ref": "2024-07-21", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "manufacturer": "W.T.Allen & Co. London", - "note": "The ref should be EH51 11, EH51 12 is for the pillar post_box on Graham Crescent", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH51 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291971, - "lat": 56.0069146, - "lon": -3.6179752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291974, - "lat": 56.0052639, - "lon": -3.6075880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 8D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291975, - "lat": 56.0067452, - "lon": -3.6001570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EH51 18D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291982, - "lat": 56.0022310, - "lon": -3.6156701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154291983, - "lat": 56.0068907, - "lon": -3.6280045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH51 3D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154292897, - "lat": 56.0038711, - "lon": -3.6279559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH51 2D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4154317961, - "lat": 55.9713815, - "lon": -3.6022904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 7D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4155995473, - "lat": 53.6620260, - "lon": -1.7051849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 185" - } -}, -{ - "type": "node", - "id": 4155995474, - "lat": 53.6636030, - "lon": -1.7081708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 167" - } -}, -{ - "type": "node", - "id": 4155995475, - "lat": 53.6659113, - "lon": -1.7089755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 183" - } -}, -{ - "type": "node", - "id": 4155995476, - "lat": 53.6665827, - "lon": -1.7021922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 168" - } -}, -{ - "type": "node", - "id": 4155995477, - "lat": 53.6751675, - "lon": -1.6967165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 171", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4155995478, - "lat": 53.6800426, - "lon": -1.6981944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 173" - } -}, -{ - "type": "node", - "id": 4155995479, - "lat": 53.6824906, - "lon": -1.6952158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 216" - } -}, -{ - "type": "node", - "id": 4155995480, - "lat": 53.6841586, - "lon": -1.6759817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 177" - } -}, -{ - "type": "node", - "id": 4156426887, - "lat": 51.1399531, - "lon": -0.9880369, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU34 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4156443023, - "lat": 51.1462336, - "lon": -1.0264533, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU34 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4156487905, - "lat": 51.1718761, - "lon": -1.0072734, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU34 25D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4156487906, - "lat": 51.1720274, - "lon": -1.0027022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "133401676370540", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-21" - } -}, -{ - "type": "node", - "id": 4156968967, - "lat": 53.2597752, - "lon": -1.2265386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "S80 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4156988734, - "lat": 53.2640059, - "lon": -1.2200448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S80 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4157018723, - "lat": 53.2675229, - "lon": -1.2223257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157018767, - "lat": 51.1307294, - "lon": -1.0815973, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU34 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4157022717, - "lat": 51.1271869, - "lon": -1.0597565, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU34 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157036942, - "lat": 53.2804132, - "lon": -1.2177328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157587696, - "lat": 51.3180635, - "lon": 0.4775905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME20 154" - } -}, -{ - "type": "node", - "id": 4157611398, - "lat": 51.3332361, - "lon": 0.4782897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 391D" - } -}, -{ - "type": "node", - "id": 4157611400, - "lat": 51.3273256, - "lon": 0.4815876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 168D" - } -}, -{ - "type": "node", - "id": 4157611493, - "lat": 51.3500273, - "lon": 0.4586731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157611494, - "lat": 51.3179894, - "lon": 0.5076379, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME20 140" - } -}, -{ - "type": "node", - "id": 4157611811, - "lat": 51.3461736, - "lon": 0.4627694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME1 160D" - } -}, -{ - "type": "node", - "id": 4157612103, - "lat": 51.3285888, - "lon": 0.4842704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME1 113D" - } -}, -{ - "type": "node", - "id": 4157643597, - "lat": 51.3036737, - "lon": 0.4802578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 170" - } -}, -{ - "type": "node", - "id": 4157643598, - "lat": 51.3062306, - "lon": 0.4963305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME20 206", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4157651592, - "lat": 51.3301644, - "lon": 0.4822863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME1 194" - } -}, -{ - "type": "node", - "id": 4157720676, - "lat": 52.1601822, - "lon": -0.4925166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "inscription": "Other Collections - Additional collections may be made throughout the day until the last time shown. A later collection is made at 6.45pm [Mo-Fr 18:45] from the Postbox at Bedford Delivery Office, Ford End Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK41 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157720677, - "lat": 52.1624358, - "lon": -0.4999805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4157720678, - "lat": 52.1637716, - "lon": -0.4935506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK41 342", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157721590, - "lat": 52.1661267, - "lon": -0.5005599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157721594, - "lat": 52.1670094, - "lon": -0.5044525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK41 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810258, - "lat": 52.1932716, - "lon": -0.5114758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810259, - "lat": 52.2121265, - "lon": -0.5068651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 4157810261, - "lat": 52.2215402, - "lon": -0.5207214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810263, - "lat": 52.2231760, - "lon": -0.5503222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810275, - "lat": 52.2283793, - "lon": -0.5490911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810277, - "lat": 52.2421981, - "lon": -0.3771200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810278, - "lat": 52.2438429, - "lon": -0.4040144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810279, - "lat": 52.2455705, - "lon": -0.5581972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810280, - "lat": 52.2503419, - "lon": -0.3825474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810281, - "lat": 52.2506982, - "lon": -0.4238427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810282, - "lat": 52.2520485, - "lon": -0.5285229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK44 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810283, - "lat": 52.2562013, - "lon": -0.3858559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810284, - "lat": 52.2796467, - "lon": -0.4927915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157810285, - "lat": 52.2802493, - "lon": -0.4499556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157913918, - "lat": 52.2279876, - "lon": -2.5863256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 07:00", - "indoor": "no", - "mail:1st_class": "no", - "mail:2nd_class": "no", - "mail:meter": "no", - "mail:stamped": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR6 927", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157913919, - "lat": 52.2318557, - "lon": -2.5967319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "indoor": "no", - "mail:1st_class": "no", - "mail:2nd_class": "no", - "mail:meter": "no", - "mail:stamped": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR6 933", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157913920, - "lat": 52.2346569, - "lon": -2.6375920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HR6 964", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4157913921, - "lat": 52.2373804, - "lon": -2.6113975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "note": "Missing collection plate 29/04/2016", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR6 998", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4157920571, - "lat": 52.2137084, - "lon": -0.4477978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157920572, - "lat": 52.2148534, - "lon": -0.4641013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157920573, - "lat": 52.2149648, - "lon": -0.4588696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4157920579, - "lat": 52.2565157, - "lon": -0.4697353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-04-30" - } -}, -{ - "type": "node", - "id": 4158110690, - "lat": 58.9559767, - "lon": -3.3006911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "description": "Ness Road Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "wall", - "ref": "KW16 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4159456113, - "lat": 51.3190084, - "lon": 0.6292426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME9 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4159460431, - "lat": 51.3400552, - "lon": 0.6561214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME10 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4159462094, - "lat": 53.6797243, - "lon": -1.7111380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 181" - } -}, -{ - "type": "node", - "id": 4159462095, - "lat": 53.6810806, - "lon": -1.7094623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 176" - } -}, -{ - "type": "node", - "id": 4159462096, - "lat": 53.6831862, - "lon": -1.7059339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 217" - } -}, -{ - "type": "node", - "id": 4159462097, - "lat": 53.6835036, - "lon": -1.7127474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 172" - } -}, -{ - "type": "node", - "id": 4159462098, - "lat": 53.6839186, - "lon": -1.7191115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF14 162" - } -}, -{ - "type": "node", - "id": 4159462099, - "lat": 53.6852291, - "lon": -1.6971201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 164" - } -}, -{ - "type": "node", - "id": 4159462100, - "lat": 53.6859300, - "lon": -1.7186214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 161" - } -}, -{ - "type": "node", - "id": 4159462101, - "lat": 53.6874528, - "lon": -1.7035092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 184" - } -}, -{ - "type": "node", - "id": 4159462102, - "lat": 53.6885504, - "lon": -1.6899593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF14 186" - } -}, -{ - "type": "node", - "id": 4159462103, - "lat": 53.6920351, - "lon": -1.7104105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF14 179" - } -}, -{ - "type": "node", - "id": 4159499800, - "lat": 51.3238558, - "lon": 0.6394761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME9 62" - } -}, -{ - "type": "node", - "id": 4159499801, - "lat": 51.3501636, - "lon": 0.6617350, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 60D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 4159503294, - "lat": 51.3282475, - "lon": 0.6008079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME14 218" - } -}, -{ - "type": "node", - "id": 4159507309, - "lat": 52.6527996, - "lon": -1.2482851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE6 657D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4159655344, - "lat": 52.8943788, - "lon": -1.0046595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "NG12 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4159747450, - "lat": 55.9693250, - "lon": -3.6648585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH49 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4159747466, - "lat": 55.9738916, - "lon": -3.6564651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH49 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4159877489, - "lat": 55.9776770, - "lon": -3.6284962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4159877581, - "lat": 55.9819113, - "lon": -3.6284811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH49 31P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4159877582, - "lat": 55.9819142, - "lon": -3.6285059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EH49 26;EH49 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4159922289, - "lat": 55.9683515, - "lon": -3.6006756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4159922290, - "lat": 55.9755336, - "lon": -3.6167491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH49 8D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4159983041, - "lat": 55.9467163, - "lon": -3.5156612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4160146245, - "lat": 52.8912856, - "lon": -0.9636754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG12 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4160226889, - "lat": 51.8685437, - "lon": 0.1771370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM23 94", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4160226989, - "lat": 51.8671042, - "lon": 0.1709158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM23 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4160717018, - "lat": 55.0822731, - "lon": -1.5824602, - "tags": { - "amenity": "post_box", - "postal_code": "NE23 6SS", - "ref": "NE23 35" - } -}, -{ - "type": "node", - "id": 4160767585, - "lat": 52.7220403, - "lon": 1.1069831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 945", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4161501123, - "lat": 53.8002976, - "lon": -1.6928079, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS28 623D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4161519227, - "lat": 51.5835981, - "lon": -1.0236996, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4161563189, - "lat": 53.5124874, - "lon": -2.9274045, - "tags": { - "amenity": "post_box", - "name": "Croftfield Postbox" - } -}, -{ - "type": "node", - "id": 4161901875, - "lat": 52.9171484, - "lon": -0.9876454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG12 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107272, - "lat": 51.7847619, - "lon": -3.9752452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA18 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107273, - "lat": 51.7886913, - "lon": -3.9831036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA18 155D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4162107275, - "lat": 51.7893209, - "lon": -3.9712995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA18 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107276, - "lat": 51.7945580, - "lon": -3.9823042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA18 419D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107277, - "lat": 51.7954983, - "lon": -3.9711499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "SA18 167", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4162107278, - "lat": 51.7974274, - "lon": -3.9741311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA18 431D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107279, - "lat": 51.7975418, - "lon": -3.9937908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA18 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107280, - "lat": 51.8009629, - "lon": -3.9918538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA18 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107281, - "lat": 51.8037884, - "lon": -3.9943976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA18 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107283, - "lat": 51.8068558, - "lon": -3.9712726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "SA18 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107284, - "lat": 51.8129623, - "lon": -3.9993784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA18 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107285, - "lat": 51.8251881, - "lon": -3.9603949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA18 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162107286, - "lat": 51.8360503, - "lon": -3.9465384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "SA18 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162219974, - "lat": 52.9223877, - "lon": -1.0164281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "wall", - "ref": "NG12 136", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4162220002, - "lat": 52.9244185, - "lon": -0.9835430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG12 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4162766737, - "lat": 50.7340777, - "lon": -2.9321255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT7 37", - "ref:GB:uprn": "10015375150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4162813627, - "lat": 54.6993698, - "lon": -1.6020385, - "tags": { - "amenity": "post_box", - "ref": "DL16 225" - } -}, -{ - "type": "node", - "id": 4162813628, - "lat": 54.7007958, - "lon": -1.5999651, - "tags": { - "amenity": "post_box", - "ref": "DL16 2" - } -}, -{ - "type": "node", - "id": 4162822589, - "lat": 54.7090352, - "lon": -1.5875575, - "tags": { - "amenity": "post_box", - "ref": "DL16 176" - } -}, -{ - "type": "node", - "id": 4163443195, - "lat": 50.7319356, - "lon": -2.9488577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015425113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164005038, - "lat": 51.0764943, - "lon": -1.3691993, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164023459, - "lat": 51.1132267, - "lon": -1.3738772, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164035209, - "lat": 51.1488262, - "lon": -1.4339703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164035210, - "lat": 51.1531573, - "lon": -1.4472522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047429, - "lat": 51.7832828, - "lon": -4.0418554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "wall", - "ref": "SA18 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047430, - "lat": 51.7868113, - "lon": -4.0494779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 347", - "post_box:type": "lamp", - "ref": "SA18 347D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047432, - "lat": 51.7886573, - "lon": -4.0346809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Old SA18 363 entry appears in Royal Mail 2013 file, with this location name \"Saron School\" but given coords of Saron Post Office.", - "post_box:type": "lamp", - "ref": "SA18 363D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047433, - "lat": 51.7894295, - "lon": -3.9927565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 90", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA18 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047434, - "lat": 51.7906147, - "lon": -4.0067947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 361", - "post_box:type": "wall", - "ref": "SA18 361D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4164047436, - "lat": 51.7927487, - "lon": -3.9944508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 359", - "post_box:type": "wall", - "ref": "SA18 359D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4164047439, - "lat": 51.7931525, - "lon": -4.0298593, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-20", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "note": "Royal Mail 2013 has SA18 323 at these coords but named \"Saron School\". It also has SA18 170 and correctly named \"Saron P O\" but at coords to the east.", - "post_box:type": "lamp", - "ref": "SA18 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047440, - "lat": 51.7936229, - "lon": -4.0226709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Has replaced tiny old VR box (SA18 170?) which was across the road", - "post_box:type": "lamp", - "ref": "SA18 392D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047441, - "lat": 51.7939484, - "lon": -4.0090965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA18 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164047442, - "lat": 51.7961178, - "lon": -3.9996389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 44", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA18 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164064253, - "lat": 51.8528986, - "lon": -4.3268713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "pillar", - "ref": "SA31 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164064254, - "lat": 51.8547958, - "lon": -4.3283784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA31 593", - "post_box:type": "lamp", - "ref": "SA31 593D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164106804, - "lat": 51.7945406, - "lon": -4.0870526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "SA14 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164106805, - "lat": 51.8002913, - "lon": -4.1079929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA14 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164106814, - "lat": 51.8042683, - "lon": -4.0752539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "SA14 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4164106815, - "lat": 51.8222624, - "lon": -4.1493763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA32 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4164106816, - "lat": 51.8284742, - "lon": -4.1751781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA32 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4165030239, - "lat": 52.0135560, - "lon": -2.0370143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GL20 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4165642189, - "lat": 51.9924762, - "lon": -2.1503145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL20 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4165642203, - "lat": 51.9956289, - "lon": -2.1519531, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL20 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4166089253, - "lat": 50.9036981, - "lon": -1.4037461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP15", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "level": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4166094737, - "lat": 50.9036711, - "lon": -1.4038373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP15", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO14 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4166262960, - "lat": 55.8983500, - "lon": -3.7026964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH48 34D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4166529333, - "lat": 51.1323456, - "lon": -1.4870889, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO20 84D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4166579749, - "lat": 51.1140074, - "lon": -1.4906245, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO20 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4166579755, - "lat": 51.1141775, - "lon": -1.4867648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4166592883, - "lat": 51.0901150, - "lon": -1.4353965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO20 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4166592884, - "lat": 51.0917184, - "lon": -1.4564499, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO20 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4166827407, - "lat": 51.5987017, - "lon": -0.0380343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E17 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4167501878, - "lat": 55.0035719, - "lon": -2.4325402, - "tags": { - "amenity": "post_box", - "ref": "NE49 106" - } -}, -{ - "type": "node", - "id": 4167504794, - "lat": 54.9876707, - "lon": -2.4459355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "ref": "NE49 112", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4167537327, - "lat": 54.9618195, - "lon": -2.4472038, - "tags": { - "amenity": "post_box", - "ref": "NE49 66" - } -}, -{ - "type": "node", - "id": 4167547063, - "lat": 54.9481406, - "lon": -2.4907017, - "tags": { - "amenity": "post_box", - "ref": "NE49 92" - } -}, -{ - "type": "node", - "id": 4167558858, - "lat": 54.9401143, - "lon": -2.4933065, - "tags": { - "amenity": "post_box", - "ref": "NE49 47" - } -}, -{ - "type": "node", - "id": 4167609820, - "lat": 54.9437298, - "lon": -2.5330210, - "tags": { - "amenity": "post_box", - "ref": "NE49 61" - } -}, -{ - "type": "node", - "id": 4167716003, - "lat": 52.1162477, - "lon": -0.3873741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716004, - "lat": 52.1232454, - "lon": -0.3910265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716005, - "lat": 52.1265368, - "lon": -0.4200440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15", - "note": "Reference not visible - information plate too low in its holder.", - "operator": "Royal Mail", - "post_box:type": "meter", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716006, - "lat": 52.1272922, - "lon": -0.3414210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK44 213", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716007, - "lat": 52.1287560, - "lon": -0.3884777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716008, - "lat": 52.1373956, - "lon": -0.3285102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716009, - "lat": 52.1459677, - "lon": -0.3216666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716010, - "lat": 52.1470318, - "lon": -0.3161493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK44 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716011, - "lat": 52.1511488, - "lon": -0.3158288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716012, - "lat": 52.1541477, - "lon": -0.3469042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK44 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716013, - "lat": 52.1571751, - "lon": -0.3550574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716014, - "lat": 52.1577720, - "lon": -0.3518421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK44 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716015, - "lat": 52.1826567, - "lon": -0.3944380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716016, - "lat": 52.1842695, - "lon": -0.3885475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK44 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716017, - "lat": 52.1891848, - "lon": -0.3517114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716018, - "lat": 52.1933045, - "lon": -0.4196638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716025, - "lat": 52.1936849, - "lon": -0.3746650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716026, - "lat": 52.2060172, - "lon": -0.3893039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716028, - "lat": 52.2173032, - "lon": -0.4091817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716029, - "lat": 52.2175645, - "lon": -0.3776631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167716030, - "lat": 52.2250360, - "lon": -0.4101567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4167769722, - "lat": 53.7018231, - "lon": -1.6315932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 32" - } -}, -{ - "type": "node", - "id": 4167769723, - "lat": 53.7048756, - "lon": -1.6139161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 117" - } -}, -{ - "type": "node", - "id": 4167769724, - "lat": 53.7059323, - "lon": -1.6229311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 118" - } -}, -{ - "type": "node", - "id": 4167769725, - "lat": 53.7080339, - "lon": -1.6473251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 196" - } -}, -{ - "type": "node", - "id": 4167769726, - "lat": 53.7081395, - "lon": -1.6389780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 87" - } -}, -{ - "type": "node", - "id": 4167769727, - "lat": 53.7095508, - "lon": -1.6342325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 83" - } -}, -{ - "type": "node", - "id": 4167769728, - "lat": 53.7107129, - "lon": -1.6269249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 82" - } -}, -{ - "type": "node", - "id": 4167769729, - "lat": 53.7118721, - "lon": -1.6215712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 86" - } -}, -{ - "type": "node", - "id": 4167769730, - "lat": 53.7128004, - "lon": -1.6544383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF17 90" - } -}, -{ - "type": "node", - "id": 4167769731, - "lat": 53.7140644, - "lon": -1.6126113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 79" - } -}, -{ - "type": "node", - "id": 4167769732, - "lat": 53.7148306, - "lon": -1.6228231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF17 115" - } -}, -{ - "type": "node", - "id": 4167769733, - "lat": 53.7193727, - "lon": -1.6373893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF17 222" - } -}, -{ - "type": "node", - "id": 4167962200, - "lat": 51.9648465, - "lon": -0.4205650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4167962201, - "lat": 51.9814895, - "lon": -0.4968671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962202, - "lat": 51.9835239, - "lon": -0.4949266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962203, - "lat": 51.9910372, - "lon": -0.4987232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962210, - "lat": 51.9985673, - "lon": -0.4757005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962217, - "lat": 51.9995878, - "lon": -0.5009012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962230, - "lat": 52.0039017, - "lon": -0.4945578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK45 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962231, - "lat": 52.0040314, - "lon": -0.4852385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962232, - "lat": 52.0063768, - "lon": -0.5028733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962233, - "lat": 52.0072049, - "lon": -0.4589321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962235, - "lat": 52.0076704, - "lon": -0.4897271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962237, - "lat": 52.0096635, - "lon": -0.4468450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962238, - "lat": 52.0099497, - "lon": -0.5118178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962239, - "lat": 52.0105336, - "lon": -0.4579162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962244, - "lat": 52.0114074, - "lon": -0.5007751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4167962245, - "lat": 52.0239056, - "lon": -0.5205417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962253, - "lat": 52.0345687, - "lon": -0.5235477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962258, - "lat": 52.0391284, - "lon": -0.5230589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962259, - "lat": 52.0434286, - "lon": -0.4963133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962260, - "lat": 52.0481177, - "lon": -0.4443455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962261, - "lat": 52.0536132, - "lon": -0.5327734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 159", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962262, - "lat": 52.0570586, - "lon": -0.4955043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962263, - "lat": 52.0581946, - "lon": -0.4223769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962264, - "lat": 52.0624196, - "lon": -0.3905155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4167962265, - "lat": 52.0685745, - "lon": -0.3969247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK45 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4168001317, - "lat": 52.3260601, - "lon": 1.1117635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7075", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4168115010, - "lat": 53.3197996, - "lon": -1.2602949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S26 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4168155534, - "lat": 55.9704540, - "lon": -3.6984878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4168330855, - "lat": 50.8177837, - "lon": -0.8049493, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4168911954, - "lat": 52.5781111, - "lon": -1.5345680, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CV9 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4169828704, - "lat": 52.5751476, - "lon": -1.5206804, - "tags": { - "amenity": "post_box", - "source": "visual survey;estimate" - } -}, -{ - "type": "node", - "id": 4170020789, - "lat": 53.5869860, - "lon": -1.2971961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 172" - } -}, -{ - "type": "node", - "id": 4170020790, - "lat": 53.5872526, - "lon": -1.3375721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 182" - } -}, -{ - "type": "node", - "id": 4170020791, - "lat": 53.5890521, - "lon": -1.3250267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF9 184" - } -}, -{ - "type": "node", - "id": 4170020792, - "lat": 53.5902450, - "lon": -1.2842343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 171" - } -}, -{ - "type": "node", - "id": 4170020793, - "lat": 53.5908086, - "lon": -1.3290802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 185" - } -}, -{ - "type": "node", - "id": 4170020794, - "lat": 53.5909089, - "lon": -1.3358018, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 189" - } -}, -{ - "type": "node", - "id": 4170020796, - "lat": 53.5934150, - "lon": -1.3235253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 186" - } -}, -{ - "type": "node", - "id": 4170020797, - "lat": 53.5939778, - "lon": -1.2974909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF9 175" - } -}, -{ - "type": "node", - "id": 4170020798, - "lat": 53.5943073, - "lon": -1.2881249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF9 177" - } -}, -{ - "type": "node", - "id": 4170020799, - "lat": 53.5944987, - "lon": -1.3068789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 187" - } -}, -{ - "type": "node", - "id": 4170020800, - "lat": 53.5952982, - "lon": -1.3139619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 183" - } -}, -{ - "type": "node", - "id": 4170020801, - "lat": 53.5963817, - "lon": -1.3034926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 174" - } -}, -{ - "type": "node", - "id": 4170020802, - "lat": 53.5979418, - "lon": -1.2802351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF9 173" - } -}, -{ - "type": "node", - "id": 4170020803, - "lat": 53.6012000, - "lon": -1.2884031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF9 179" - } -}, -{ - "type": "node", - "id": 4170020804, - "lat": 53.6015860, - "lon": -1.2839547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF9 410" - } -}, -{ - "type": "node", - "id": 4170020805, - "lat": 53.6053543, - "lon": -1.3528942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 125" - } -}, -{ - "type": "node", - "id": 4170020806, - "lat": 53.6063896, - "lon": -1.3455704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 120" - } -}, -{ - "type": "node", - "id": 4170020807, - "lat": 53.6066108, - "lon": -1.3569208, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 128" - } -}, -{ - "type": "node", - "id": 4170020808, - "lat": 53.6073062, - "lon": -1.3796758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 408" - } -}, -{ - "type": "node", - "id": 4170020809, - "lat": 53.6085256, - "lon": -1.2829140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 176" - } -}, -{ - "type": "node", - "id": 4170020810, - "lat": 53.6088729, - "lon": -1.3490425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 112" - } -}, -{ - "type": "node", - "id": 4170020811, - "lat": 53.6092986, - "lon": -1.3612640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 121" - } -}, -{ - "type": "node", - "id": 4170020812, - "lat": 53.6108851, - "lon": -1.3530122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 115" - } -}, -{ - "type": "node", - "id": 4170020813, - "lat": 53.6111867, - "lon": -1.3646771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 124" - } -}, -{ - "type": "node", - "id": 4170020814, - "lat": 53.6129768, - "lon": -1.3543560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 114" - } -}, -{ - "type": "node", - "id": 4170020815, - "lat": 53.6130675, - "lon": -1.3594522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 111" - } -}, -{ - "type": "node", - "id": 4170020816, - "lat": 53.6132644, - "lon": -1.2833713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF9 195" - } -}, -{ - "type": "node", - "id": 4170020817, - "lat": 53.6134199, - "lon": -1.3465025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 127" - } -}, -{ - "type": "node", - "id": 4170020818, - "lat": 53.6148722, - "lon": -1.2913281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 191" - } -}, -{ - "type": "node", - "id": 4170020819, - "lat": 53.6161519, - "lon": -1.3546135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 117" - } -}, -{ - "type": "node", - "id": 4170020820, - "lat": 53.6162604, - "lon": -1.2853306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 194" - } -}, -{ - "type": "node", - "id": 4170020821, - "lat": 53.6163292, - "lon": -1.2601085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 193" - } -}, -{ - "type": "node", - "id": 4170020822, - "lat": 53.6182457, - "lon": -1.3472032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 122" - } -}, -{ - "type": "node", - "id": 4170020823, - "lat": 53.6183697, - "lon": -1.2676582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF9 192" - } -}, -{ - "type": "node", - "id": 4170020824, - "lat": 53.6244333, - "lon": -1.3719814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF9 123" - } -}, -{ - "type": "node", - "id": 4170020825, - "lat": 53.6245280, - "lon": -1.3673466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF9 118" - } -}, -{ - "type": "node", - "id": 4170020826, - "lat": 53.6273423, - "lon": -1.3747944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF9 126" - } -}, -{ - "type": "node", - "id": 4170020827, - "lat": 53.6287114, - "lon": -1.3012435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF9 32" - } -}, -{ - "type": "node", - "id": 4170020828, - "lat": 53.6341978, - "lon": -1.2901244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF9 45" - } -}, -{ - "type": "node", - "id": 4170020829, - "lat": 53.6348400, - "lon": -1.3780815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF9 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4170529489, - "lat": 50.9956566, - "lon": -0.9398511, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4170536889, - "lat": 51.0014309, - "lon": -0.9363743, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "GU32 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4170539389, - "lat": 51.0033505, - "lon": -0.9346845, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU32 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4170567215, - "lat": 50.6435784, - "lon": -3.6470662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 116D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4170607005, - "lat": 50.6502880, - "lon": -3.6192522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX6 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4171020988, - "lat": 52.2806998, - "lon": -0.7030667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171223058, - "lat": 52.9008086, - "lon": 1.0941250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR25 2503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171223063, - "lat": 52.9017409, - "lon": 1.1033514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2547D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171232698, - "lat": 52.9054605, - "lon": 1.0872060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR25 2502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171232720, - "lat": 52.9080026, - "lon": 1.1029091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2506D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171342789, - "lat": 52.6403448, - "lon": 1.5528700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4171398321, - "lat": 53.4373427, - "lon": -3.0473544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Victoria Road - Atherton Street.jpg" - } -}, -{ - "type": "node", - "id": 4171568694, - "lat": 56.7160485, - "lon": -4.9650459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH50 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171727289, - "lat": 51.8697740, - "lon": 0.1655207, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4171787363, - "lat": 52.1303820, - "lon": -0.3333758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK44 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-05-07" - } -}, -{ - "type": "node", - "id": 4171924993, - "lat": 53.4336341, - "lon": -3.0528235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II post box CH45 194 by Carron Company on Mount Road at its junction with Hamilton Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Mount Road, New Brighton.jpg" - } -}, -{ - "type": "node", - "id": 4171925004, - "lat": 53.4361379, - "lon": -3.0527319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH45 116 by Carron Company on Albion Street, New Brighton, near The Clarence pub.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Albion Street, New Brighton.jpg" - } -}, -{ - "type": "node", - "id": 4171939291, - "lat": 51.3524985, - "lon": 0.4433646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME2 145D" - } -}, -{ - "type": "node", - "id": 4171939292, - "lat": 51.3771152, - "lon": 0.4460308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-20" - } -}, -{ - "type": "node", - "id": 4171939293, - "lat": 51.3779085, - "lon": 0.4633663, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME2 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4171964289, - "lat": 51.3358924, - "lon": 0.4451112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME6 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4171964290, - "lat": 51.3447678, - "lon": 0.4471948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 443D" - } -}, -{ - "type": "node", - "id": 4171964389, - "lat": 51.3478845, - "lon": 0.4283806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 176" - } -}, -{ - "type": "node", - "id": 4172287223, - "lat": 51.7823397, - "lon": -3.8791241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 158", - "post_box:type": "lamp", - "ref": "SA18 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287237, - "lat": 51.7916381, - "lon": -3.9841472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:type": "meter", - "ref": "SA18 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287241, - "lat": 51.7926182, - "lon": -3.8637159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "SA18 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287246, - "lat": 51.7933464, - "lon": -3.8744144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:15", - "note": "Royal Mail 2013 dataset has this incorrectly located 13 Km northwest at Temple Bar", - "post_box:type": "lamp", - "ref": "SA18 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287248, - "lat": 51.7934275, - "lon": -3.8576596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "post_box:type": "wall", - "ref": "SA18 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287249, - "lat": 51.7941059, - "lon": -3.9896632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 269", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA18 269D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4172287250, - "lat": 51.7943743, - "lon": -3.8842244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 39", - "post_box:type": "lamp", - "ref": "SA18 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287251, - "lat": 51.7979091, - "lon": -3.8821882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 95", - "post_box:type": "wall", - "ref": "SA18 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287253, - "lat": 51.8011006, - "lon": -3.9026152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA18 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287254, - "lat": 51.8011173, - "lon": -3.9421771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA18 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287256, - "lat": 51.8015474, - "lon": -3.9057340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA18 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287257, - "lat": 51.8024011, - "lon": -3.9297105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 172", - "post_box:type": "lamp", - "ref": "SA18 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287259, - "lat": 51.8058236, - "lon": -3.9025734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "note": "Royal Mail 2013 dataset has this incorrectly located 6.4 Km west", - "post_box:type": "lamp", - "ref": "SA18 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287262, - "lat": 51.8062363, - "lon": -3.9069132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA18 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287264, - "lat": 51.8064865, - "lon": -3.9115509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA18 257", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4172287266, - "lat": 51.8076030, - "lon": -3.9238653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA18 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172287267, - "lat": 51.8090422, - "lon": -3.9269430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:45", - "post_box:type": "wall", - "ref": "SA18 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172770468, - "lat": 50.9289491, - "lon": -1.3572947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 655D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4172938164, - "lat": 53.3889828, - "lon": -3.1901453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box CH47 13 at the corner of Stanley Road and Beach Road, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH47 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Stanley Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4172938165, - "lat": 53.3913670, - "lon": -3.1832511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type B post box CH47 29 by Carron Company on Kings Gap at Valentia Road, Hoylake.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Kings Gap, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4172963390, - "lat": 53.3935245, - "lon": -3.1795925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria Type C wall box CH47 210 by Allen & Co on Valentia Road, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH47 210", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "File:Post box at Valentia Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4172971950, - "lat": 53.3962035, - "lon": -3.1788242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type B post box CH47 140 on Marmion Road, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Marmion Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4172971951, - "lat": 53.3976523, - "lon": -3.1714001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "description": "George V Type B post box CH47 305 by McDowell and Stevens at the junction of Deneshey Road and Birkenhead Road, Hoylake.", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 305", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box at Deneshey Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4172971952, - "lat": 53.3990115, - "lon": -3.1763407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "colour": "red", - "description": "George V Type B post box CH47 480 on North Parade, Hoylake at Hoyle Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 480", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box at Hoyle Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4172990306, - "lat": 53.1450907, - "lon": -1.5717692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "478150556607581", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DE4 959", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 4173372248, - "lat": 52.8845411, - "lon": 0.9429512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556087, - "lat": 51.6809989, - "lon": -4.1165591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Mail 2013 dataset has 425 Brynsierfel and 426 Heol Elfed with transposed locations", - "old_ref": "SA14 425", - "post_box:type": "lamp", - "ref": "SA14 425D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556088, - "lat": 51.6837395, - "lon": -4.1290768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 165", - "post_box:type": "lamp", - "ref": "SA14 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556189, - "lat": 51.6839498, - "lon": -4.1384932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "SA15 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556190, - "lat": 51.6858534, - "lon": -4.1056332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 26", - "post_box:type": "lamp", - "ref": "SA14 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556191, - "lat": 51.6864520, - "lon": -4.1265890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 45", - "post_box:type": "lamp", - "ref": "SA14 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556192, - "lat": 51.6889533, - "lon": -4.1395907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 295", - "post_box:type": "wall", - "ref": "SA14 295D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4173556193, - "lat": 51.6893176, - "lon": -4.1296988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "wall", - "ref": "SA14 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4173556194, - "lat": 51.6903772, - "lon": -4.0899005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 423", - "post_box:type": "lamp", - "ref": "SA14 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556195, - "lat": 51.7115110, - "lon": -4.0340501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA4 524", - "post_box:type": "lamp", - "ref": "SA4 524D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556196, - "lat": 51.7123435, - "lon": -4.0580651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA4 521", - "post_box:type": "lamp", - "ref": "SA4 521D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556197, - "lat": 51.7130164, - "lon": -4.0384430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "SA4 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556198, - "lat": 51.7139689, - "lon": -4.0530749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA4 522", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4173556199, - "lat": 51.7718633, - "lon": -3.9924002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "SA18 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556200, - "lat": 51.7798068, - "lon": -3.9968860, - "tags": { - "amenity": "post_box", - "disused": "yes", - "note": "Royal Mail 2013 dataset has this incorrectly located 1.5 Km north on Ammanford Square", - "post_box:type": "wall", - "ref": "SA18 366", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4173556201, - "lat": 51.7821559, - "lon": -3.9970348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA18 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556204, - "lat": 51.7813012, - "lon": -3.9859356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA18 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556205, - "lat": 51.7842354, - "lon": -3.9951731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 350", - "post_box:type": "wall", - "ref": "SA18 350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4173556206, - "lat": 51.7849230, - "lon": -3.9859187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 408", - "post_box:type": "wall", - "ref": "SA18 408D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4174228599, - "lat": 52.2737262, - "lon": -0.7096599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4174228600, - "lat": 52.2721459, - "lon": -0.7164400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4174299910, - "lat": 53.3922480, - "lon": -3.1774703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "One of two QEII Type K post boxes outside Hoylake Post Office on Market Street. This is CH47 109.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH47 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box 109 at Hoylake Post Office.jpg" - } -}, -{ - "type": "node", - "id": 4174299911, - "lat": 53.3922559, - "lon": -3.1774619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "One of two QEII Type K post boxes outside Hoylake Post Office on Market Street. This is CH47 110.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH47 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box 110 at Hoylake Post Office.jpg" - } -}, -{ - "type": "node", - "id": 4174497375, - "lat": 50.5947123, - "lon": -1.2062609, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-31", - "check_date:collection_times": "2021-03-31", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 601", - "ref:GB:uprn": "100062045231", - "royal_cypher": "no", - "website": "https://www.royalmail.com/services-near-you/postbox/ventnor-delivery-office-po38-1by/000PO38601" - } -}, -{ - "type": "node", - "id": 4174549046, - "lat": 52.8419856, - "lon": 0.8145557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR21 2183", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4174553901, - "lat": 53.3947306, - "lon": -3.1746384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "EIIR Type K post box CH47 296 at 102 Market Street, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH47 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at 102 Market Street, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 4174559995, - "lat": 52.9531588, - "lon": 0.8557369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR23 2313D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4174560012, - "lat": 52.8479892, - "lon": 0.8168892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4174560043, - "lat": 52.9502574, - "lon": 0.8054817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR23 2302", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4174560048, - "lat": 52.9132780, - "lon": 0.7968498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:15", - "inscription": "Letters Only", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR23 2327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4174593681, - "lat": 50.6676178, - "lon": -3.6211244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4174600626, - "lat": 52.9368988, - "lon": 0.8890408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR23 2316", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4174600628, - "lat": 52.9372802, - "lon": 0.8977307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR23 2314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4174670091, - "lat": 53.3900614, - "lon": -3.1795810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "QEII business box CH47 734 at Hoylake Delivery Office, The Quadrant.", - "mail:meter": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH47 734", - "royal_cypher": "no", - "wikimedia_commons": "File:Business box at Hoylake Delivery Office.jpg" - } -}, -{ - "type": "node", - "id": 4174670092, - "lat": 53.3900639, - "lon": -3.1795571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "QEII Type A post box CH47 422 outside Hoylake Delivery Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH47 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Hoylake Delivery Office.jpg" - } -}, -{ - "type": "node", - "id": 4174672659, - "lat": 52.9220754, - "lon": 0.9410655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR21 2111", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4174694599, - "lat": 53.4044061, - "lon": -3.0590116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI post box CH41 14 by Carron Company on Wallasey Bridge Road near Gautby Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wikimedia_commons": "File:Post box on Wallasey Bridge Road.jpg" - } -}, -{ - "type": "node", - "id": 4174813915, - "lat": 52.8920789, - "lon": 0.9500087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 10:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR21 2121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4174813918, - "lat": 52.9170620, - "lon": 0.9482331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4174866122, - "lat": 52.8741603, - "lon": 0.8906443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR21 2103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4174896204, - "lat": 52.8510604, - "lon": 0.8764207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR21 2113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4175001907, - "lat": 54.2700205, - "lon": -0.9320679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO62 307;YO62 9307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4175051930, - "lat": 54.1325041, - "lon": -0.7851175, - "tags": { - "amenity": "post_box", - "note": "moved from outside Norton town hall in 2017", - "post_box:type": "pillar", - "ref": "YO17 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4175097596, - "lat": 54.2327575, - "lon": -1.3425235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO7 45;YO7 9045", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-16" - } -}, -{ - "type": "node", - "id": 4175105120, - "lat": 54.0068310, - "lon": -0.4406496, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO25 300;YO25 9300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4175138062, - "lat": 54.2228085, - "lon": -1.6568854, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-17", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4175138078, - "lat": 54.2218685, - "lon": -1.6568666, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HG4 99" - } -}, -{ - "type": "node", - "id": 4176097378, - "lat": 55.2302558, - "lon": -2.5807711, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-13", - "post_box:type": "lamp", - "ref": "NE48 12" - } -}, -{ - "type": "node", - "id": 4176268768, - "lat": 55.1744045, - "lon": -2.4751886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE48 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4176360595, - "lat": 54.2487557, - "lon": -0.4863374, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4176424412, - "lat": 54.2892833, - "lon": -0.4316480, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4176440712, - "lat": 54.2893979, - "lon": -0.4176077, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 81", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4176456289, - "lat": 55.1832676, - "lon": -2.5347523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE48 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4176546046, - "lat": 50.9824946, - "lon": -3.2307355, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA21 447" - } -}, -{ - "type": "node", - "id": 4176632140, - "lat": 55.1809640, - "lon": -2.4362232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE48 116", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4176632143, - "lat": 55.1724450, - "lon": -2.4381283, - "tags": { - "amenity": "post_box", - "ref": "NE48 97" - } -}, -{ - "type": "node", - "id": 4176648015, - "lat": 55.1943179, - "lon": -2.3343577, - "tags": { - "amenity": "post_box", - "ref": "NE48 52" - } -}, -{ - "type": "node", - "id": 4176680438, - "lat": 55.1790230, - "lon": -2.3226341, - "tags": { - "amenity": "post_box", - "ref": "NE48 98" - } -}, -{ - "type": "node", - "id": 4176694555, - "lat": 55.1663681, - "lon": -2.3532472, - "tags": { - "amenity": "post_box", - "ref": "NE48 173" - } -}, -{ - "type": "node", - "id": 4176696844, - "lat": 55.1562313, - "lon": -2.3356976, - "tags": { - "amenity": "post_box", - "ref": "NE48 120" - } -}, -{ - "type": "node", - "id": 4176808585, - "lat": 53.6608002, - "lon": -1.3030641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF8 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808586, - "lat": 53.6624921, - "lon": -1.2959871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF8 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808587, - "lat": 53.6711914, - "lon": -1.2347100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF8 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176808588, - "lat": 53.6731100, - "lon": -1.2573338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176808989, - "lat": 53.6748845, - "lon": -1.2709998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF8 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808990, - "lat": 53.6757943, - "lon": -1.3192897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF8 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176808991, - "lat": 53.6761446, - "lon": -1.2934614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808992, - "lat": 53.6788971, - "lon": -1.3003668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808994, - "lat": 53.6811951, - "lon": -1.3206818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 405", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4176808995, - "lat": 53.6835335, - "lon": -1.3083504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4176808996, - "lat": 53.6849085, - "lon": -1.3208052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808997, - "lat": 53.6851421, - "lon": -1.3261378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176808998, - "lat": 53.6854624, - "lon": -1.2991062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 14" - } -}, -{ - "type": "node", - "id": 4176808999, - "lat": 53.6858590, - "lon": -1.3124877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 8", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4176809000, - "lat": 53.6868516, - "lon": -1.3269029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809001, - "lat": 53.6873776, - "lon": -1.2943372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF8 402", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176809002, - "lat": 53.6879764, - "lon": -1.3193892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809003, - "lat": 53.6882126, - "lon": -1.3055269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176809004, - "lat": 53.6897164, - "lon": -1.2880031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4176809005, - "lat": 53.6897249, - "lon": -1.3238599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809006, - "lat": 53.6904185, - "lon": -1.3127110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WF8 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809007, - "lat": 53.6906886, - "lon": -1.3159052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176809008, - "lat": 53.6913848, - "lon": -1.2935486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4176809010, - "lat": 53.6973826, - "lon": -1.2981690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809011, - "lat": 53.6997312, - "lon": -1.2899615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809013, - "lat": 53.7021527, - "lon": -1.2960823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WF8 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809014, - "lat": 53.7033014, - "lon": -1.3016720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 15" - } -}, -{ - "type": "node", - "id": 4176809015, - "lat": 53.7045145, - "lon": -1.2957309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF8 30", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4176809016, - "lat": 53.7063284, - "lon": -1.2890495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4176809017, - "lat": 53.7070385, - "lon": -1.3091057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WF8 10", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4176875248, - "lat": 54.2767739, - "lon": -0.4136584, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4176918069, - "lat": 52.9863304, - "lon": -0.9102298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "NG13 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4177075300, - "lat": 53.3726429, - "lon": -3.1835837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH48 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:Post box at West Kirby post office" - } -}, -{ - "type": "node", - "id": 4177304613, - "lat": 51.2544108, - "lon": -0.1489091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH1 178" - } -}, -{ - "type": "node", - "id": 4177341560, - "lat": 50.7592859, - "lon": -3.9873875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 38D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4177423719, - "lat": 51.7749817, - "lon": -4.0723766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "note": "Royal Mail dataset says it should be SA14 314 but SA15 314 is actually on the box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA15 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4177423720, - "lat": 51.7805493, - "lon": -4.0638245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA14 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4177423723, - "lat": 51.7966314, - "lon": -3.9645650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 467", - "post_box:type": "lamp", - "ref": "SA18 467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4178424518, - "lat": 53.6385513, - "lon": -1.2833921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF8 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4178424519, - "lat": 53.6430348, - "lon": -1.1988710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF8 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4178424520, - "lat": 53.6436537, - "lon": -1.2160768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF8 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4178424521, - "lat": 53.6449934, - "lon": -1.2094594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF8 38", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 4178424523, - "lat": 53.6498977, - "lon": -1.2628269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF8 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4178424524, - "lat": 53.6501332, - "lon": -1.2916499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WF8 31", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4179060271, - "lat": 51.7924553, - "lon": -3.9841713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 440", - "post_box:type": "pillar", - "ref": "SA18 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4179084558, - "lat": 53.7916961, - "lon": -1.5628582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 13:30-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS12 35", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 4179205792, - "lat": 50.9921274, - "lon": 0.1462741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4180677274, - "lat": 55.1443633, - "lon": -2.2538787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE48 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4180677285, - "lat": 55.1453555, - "lon": -2.2570844, - "tags": { - "amenity": "post_box", - "ref": "NE48 143" - } -}, -{ - "type": "node", - "id": 4181007384, - "lat": 55.1753722, - "lon": -2.1468112, - "tags": { - "amenity": "post_box", - "ref": "NE48 86" - } -}, -{ - "type": "node", - "id": 4181030224, - "lat": 55.1686088, - "lon": -2.1621241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE48 27" - } -}, -{ - "type": "node", - "id": 4181056415, - "lat": 55.1542788, - "lon": -2.1442876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "831372334746068", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NE48 5" - } -}, -{ - "type": "node", - "id": 4181121208, - "lat": 55.0549698, - "lon": -2.1338324, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE48 26" - } -}, -{ - "type": "node", - "id": 4181138475, - "lat": 55.0707123, - "lon": -2.1466953, - "tags": { - "amenity": "post_box", - "ref": "NE48 77" - } -}, -{ - "type": "node", - "id": 4181143005, - "lat": 55.0737459, - "lon": -2.1821494, - "tags": { - "amenity": "post_box", - "ref": "NE48 45" - } -}, -{ - "type": "node", - "id": 4181173993, - "lat": 55.0605785, - "lon": -2.1939965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE48 109" - } -}, -{ - "type": "node", - "id": 4181202801, - "lat": 55.0577461, - "lon": -2.2031640, - "tags": { - "amenity": "post_box", - "ref": "NE48 63" - } -}, -{ - "type": "node", - "id": 4181202859, - "lat": 55.0734616, - "lon": -2.2035696, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-13", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE48 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4181238470, - "lat": 55.0877691, - "lon": -2.2201589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "330668479929237", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NE48 79", - "survey:date": "2023-07-31" - } -}, -{ - "type": "node", - "id": 4181247997, - "lat": 55.0972049, - "lon": -2.1925793, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "NE48 73" - } -}, -{ - "type": "node", - "id": 4181315559, - "lat": 55.3232401, - "lon": -2.3967108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE19 374", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4181655226, - "lat": 50.9315620, - "lon": -2.2957874, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015359228" - } -}, -{ - "type": "node", - "id": 4181655227, - "lat": 50.9294041, - "lon": -2.3009922, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4181655228, - "lat": 50.9248895, - "lon": -2.3058533, - "tags": { - "amenity": "post_box", - "mapillary": "762425067798771", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref:GB:uprn": "10015332471", - "survey:date": "2020-08-27" - } -}, -{ - "type": "node", - "id": 4181655229, - "lat": 50.9211137, - "lon": -2.3064780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1044509886325317", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 34D", - "ref:GB:uprn": "10015322800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 4181655230, - "lat": 50.9197687, - "lon": -2.3125414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DT10 13", - "ref:GB:uprn": "10015382665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4183169719, - "lat": 55.2333272, - "lon": -2.1234715, - "tags": { - "amenity": "post_box", - "ref": "NE19 567" - } -}, -{ - "type": "node", - "id": 4183169756, - "lat": 55.2345416, - "lon": -2.1015231, - "tags": { - "amenity": "post_box", - "ref": "NE19 574" - } -}, -{ - "type": "node", - "id": 4183401814, - "lat": 55.1549275, - "lon": -2.0057758, - "tags": { - "amenity": "post_box", - "ref": "NE19 489" - } -}, -{ - "type": "node", - "id": 4183409276, - "lat": 55.1337409, - "lon": -1.9827343, - "tags": { - "amenity": "post_box", - "ref": "NE19 703" - } -}, -{ - "type": "node", - "id": 4183441273, - "lat": 55.0912615, - "lon": -1.9720063, - "tags": { - "amenity": "post_box", - "ref": "NE19 595" - } -}, -{ - "type": "node", - "id": 4183458055, - "lat": 55.1171015, - "lon": -2.0272749, - "tags": { - "amenity": "post_box", - "ref": "NE19 100" - } -}, -{ - "type": "node", - "id": 4183495880, - "lat": 55.1029025, - "lon": -2.0190352, - "tags": { - "amenity": "post_box", - "ref": "NE19 71" - } -}, -{ - "type": "node", - "id": 4183534987, - "lat": 55.0769669, - "lon": -2.0266684, - "tags": { - "amenity": "post_box", - "ref": "NE19 362" - } -}, -{ - "type": "node", - "id": 4183569601, - "lat": 55.0576899, - "lon": -2.0272411, - "tags": { - "amenity": "post_box", - "ref": "NE19 674" - } -}, -{ - "type": "node", - "id": 4183845865, - "lat": 50.8745909, - "lon": -4.0358236, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX19 72", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4184136573, - "lat": 54.0820477, - "lon": -0.2196337, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO16 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4184181356, - "lat": 54.0846829, - "lon": -0.1944234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "YO15 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4184512896, - "lat": 51.7987159, - "lon": -4.0813997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA14 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4184512902, - "lat": 51.8014182, - "lon": -3.8989174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 122", - "post_box:type": "wall", - "ref": "SA18 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4184512916, - "lat": 51.8039003, - "lon": -3.9133385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Mail 2013 dataset names SA18 85 as Half Moon, matching this location, but has incorrect coords on Station Road Glanaman.", - "old_ref": "SA18 85", - "post_box:type": "lamp", - "ref": "SA18 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4184512917, - "lat": 51.8048556, - "lon": -4.0175120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 368", - "post_box:type": "lamp", - "ref": "SA18 368D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4184687986, - "lat": 53.9948469, - "lon": -1.5274928, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4184886434, - "lat": 54.0091133, - "lon": -1.4683850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "HG5 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4185258132, - "lat": 52.5874805, - "lon": 1.7327989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR30 3021", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4185258133, - "lat": 52.5945704, - "lon": 1.7332153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3022D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4185258135, - "lat": 52.5952550, - "lon": 1.7305987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3019D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4185258136, - "lat": 52.5964100, - "lon": 1.7282385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3026D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4185258137, - "lat": 52.5982168, - "lon": 1.7325980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3024D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4185258139, - "lat": 52.5993116, - "lon": 1.7299801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3025", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4185258140, - "lat": 52.5998295, - "lon": 1.7333845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3023D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4185258141, - "lat": 52.6005554, - "lon": 1.7358710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR30 3018D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4185258142, - "lat": 52.6015569, - "lon": 1.7296533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3014", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4185258144, - "lat": 52.6028700, - "lon": 1.7281050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4185258148, - "lat": 52.6037273, - "lon": 1.7297559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3016", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4185258154, - "lat": 52.6044328, - "lon": 1.7275097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "NR30 3054", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2019-09-19" - } -}, -{ - "type": "node", - "id": 4185514397, - "lat": 51.4151303, - "lon": -0.7542857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "RG12 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186021732, - "lat": 52.2984865, - "lon": -1.8128901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B95 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186021733, - "lat": 52.3048900, - "lon": -1.8232131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B95 1345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186047395, - "lat": 52.2965944, - "lon": -1.7782336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B95 1052D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186047396, - "lat": 52.2947831, - "lon": -1.7790487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B95 776D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186047397, - "lat": 52.2898977, - "lon": -1.7803218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B95 775D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186047398, - "lat": 52.2890632, - "lon": -1.7737902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B95 519D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186098762, - "lat": 51.7815282, - "lon": -4.0272713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA18 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186098763, - "lat": 51.7854466, - "lon": -4.0228523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 353", - "post_box:type": "wall", - "ref": "SA18 353D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4186098764, - "lat": 51.7959335, - "lon": -4.0489924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "note": "Ref is correct and matches Royal Mail dataset bu location is in SA14 area", - "post_box:type": "lamp", - "ref": "SA15 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186098765, - "lat": 51.7970178, - "lon": -4.0626918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "SA14 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186098770, - "lat": 51.8024920, - "lon": -4.0631021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Mail dataset shows SA15 112 here but it is well into SA14 area and has SA14 on display.", - "post_box:type": "wall", - "ref": "SA14 112D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4186098772, - "lat": 51.8036762, - "lon": -4.0547676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "pillar", - "ref": "SA14 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186098773, - "lat": 51.8047614, - "lon": -4.0321853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "Royal Mail 2013 dataset has this incorrectly located 10 Km east at Gwauncaegerwyn", - "post_box:type": "lamp", - "ref": "SA18 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186098779, - "lat": 51.8052883, - "lon": -4.0238237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA18 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099393, - "lat": 51.8078413, - "lon": -4.0594865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA14 465", - "post_box:type": "lamp", - "ref": "SA14 465D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099394, - "lat": 51.8132229, - "lon": -4.0646173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA14 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4186099395, - "lat": 51.8139965, - "lon": -4.0083972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 474", - "post_box:type": "lamp", - "ref": "SA18 474D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099396, - "lat": 51.8162171, - "lon": -4.0099474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 391", - "post_box:type": "lamp", - "ref": "SA18 391D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099397, - "lat": 51.8170458, - "lon": -4.0028762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA18 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099398, - "lat": 51.8192309, - "lon": -4.0491121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "post_box:type": "lamp", - "ref": "SA14 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099399, - "lat": 51.8209038, - "lon": -4.0065231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "wall", - "ref": "SA18 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4186099400, - "lat": 51.8231165, - "lon": -4.0015018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 349", - "post_box:type": "lamp", - "ref": "SA18 349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099403, - "lat": 51.8242473, - "lon": -4.0693979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA14 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099406, - "lat": 51.8260420, - "lon": -4.0095524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 52", - "post_box:type": "lamp", - "ref": "SA18 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099407, - "lat": 51.8267758, - "lon": -4.0193541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "SA18 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099408, - "lat": 51.8300375, - "lon": -4.0525750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "post_box:type": "wall", - "ref": "SA14 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4186099409, - "lat": 51.8331261, - "lon": -4.0246719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA18 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099410, - "lat": 51.8382891, - "lon": -4.0376948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA18 417", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4186099411, - "lat": 51.8591123, - "lon": -4.0485195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "lamp", - "ref": "SA32 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4187078605, - "lat": 55.9555774, - "lon": -3.4651774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH52 72", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4187078611, - "lat": 55.9585816, - "lon": -3.4717225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH52 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4187226312, - "lat": 51.2554668, - "lon": -2.8022629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS28 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4187234152, - "lat": 51.2756030, - "lon": -2.7786256, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS28 1138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4187259863, - "lat": 51.0859575, - "lon": -2.8199874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA10 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4187508659, - "lat": 51.5074150, - "lon": -0.1343749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 57;SW1Y 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4187770687, - "lat": 52.9526311, - "lon": -0.9700880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG13 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188076703, - "lat": 54.0032903, - "lon": -1.5368375, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4188387703, - "lat": 51.7965152, - "lon": -4.0794007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "pillar", - "ref": "SA14 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387704, - "lat": 51.8007273, - "lon": -3.8799602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 252", - "post_box:type": "lamp", - "ref": "SA18 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387705, - "lat": 51.8043771, - "lon": -3.8761736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA18 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387706, - "lat": 51.8061364, - "lon": -3.8776460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 206", - "post_box:type": "lamp", - "ref": "SA18 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387707, - "lat": 51.8064847, - "lon": -3.8718369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 371", - "post_box:type": "lamp", - "ref": "SA18 371D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387708, - "lat": 51.8101439, - "lon": -3.8420065, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA18 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387709, - "lat": 51.8119602, - "lon": -3.8752977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 412", - "post_box:type": "lamp", - "ref": "SA18 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387710, - "lat": 51.8120859, - "lon": -3.8518494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 265", - "post_box:type": "lamp", - "ref": "SA18 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387711, - "lat": 51.8124810, - "lon": -3.8646207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 32", - "post_box:type": "wall", - "ref": "SA18 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387712, - "lat": 51.8124907, - "lon": -3.8598661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 243", - "post_box:type": "lamp", - "ref": "SA18 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387713, - "lat": 51.8128625, - "lon": -3.8681321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "SA18 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387714, - "lat": 51.8177704, - "lon": -3.8619790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 370", - "post_box:type": "lamp", - "ref": "SA18 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387715, - "lat": 51.8402381, - "lon": -3.9775242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Mail 2013 dataset has this badly mis-located 8 Km southwest of here in Capel Hendre", - "old_ref": "SA18 147", - "post_box:type": "wall", - "ref": "SA18 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387720, - "lat": 51.8675798, - "lon": -3.9132371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA19 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387723, - "lat": 51.8754718, - "lon": -3.8478076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA19 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387732, - "lat": 51.8759077, - "lon": -3.8922905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "post_box:type": "wall", - "ref": "SA19 134", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4188387738, - "lat": 51.8769865, - "lon": -3.8729786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA19 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387739, - "lat": 51.8820530, - "lon": -3.8396572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "SA19 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4188387746, - "lat": 51.8958113, - "lon": -3.8384606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 07:30", - "post_box:type": "wall", - "ref": "SA19 137", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4188493574, - "lat": 53.6294055, - "lon": -0.9511352, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4189124328, - "lat": 55.0320075, - "lon": -1.9920652, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE19 533" - } -}, -{ - "type": "node", - "id": 4189682589, - "lat": 55.1970190, - "lon": -2.5370762, - "tags": { - "amenity": "post_box", - "ref": "NE48 30" - } -}, -{ - "type": "node", - "id": 4189685635, - "lat": 55.1581417, - "lon": -2.3001974, - "tags": { - "amenity": "post_box", - "ref": "NE48 124" - } -}, -{ - "type": "node", - "id": 4189693678, - "lat": 55.1485865, - "lon": -2.2917764, - "tags": { - "amenity": "post_box", - "ref": "NE48 62" - } -}, -{ - "type": "node", - "id": 4189725965, - "lat": 55.6045638, - "lon": -1.6998322, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-28", - "collection_times": "Mo-Fr 17:15, Sa 08:30", - "ref": "NE69 95" - } -}, -{ - "type": "node", - "id": 4189756768, - "lat": 55.5891588, - "lon": -1.7188139, - "tags": { - "amenity": "post_box", - "ref": "NE69 97" - } -}, -{ - "type": "node", - "id": 4189765458, - "lat": 55.6090027, - "lon": -1.7548474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE69 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4190694572, - "lat": 53.8621805, - "lon": -1.7013091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 881D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4190694573, - "lat": 53.8635171, - "lon": -1.6907210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4190694577, - "lat": 53.8661182, - "lon": -1.6938673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS19 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4190694581, - "lat": 53.8670276, - "lon": -1.7014768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS19 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4190909618, - "lat": 51.3049646, - "lon": -1.3894154, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG20 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4190969319, - "lat": 53.6114433, - "lon": -0.9629696, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4191634482, - "lat": 51.8678062, - "lon": 0.2672924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM22 211" - } -}, -{ - "type": "node", - "id": 4191843727, - "lat": 54.2402674, - "lon": -3.1796657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA17 87" - } -}, -{ - "type": "node", - "id": 4192226926, - "lat": 53.3927883, - "lon": -2.2343550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK8 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4192442238, - "lat": 53.8061228, - "lon": -1.4767961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 04:15; Sa 12:45; Su off", - "indoor": "yes", - "note": "Inside Asda", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "LS14 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4192539271, - "lat": 53.6163880, - "lon": -1.1524042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN6 264" - } -}, -{ - "type": "node", - "id": 4192610801, - "lat": 53.5829751, - "lon": -1.1807660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN6 173" - } -}, -{ - "type": "node", - "id": 4192610821, - "lat": 53.5858492, - "lon": -1.1945526, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4193084075, - "lat": 52.6447051, - "lon": 0.6965765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE37 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4194072236, - "lat": 51.3088843, - "lon": -2.6308518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS40 1009", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4194078789, - "lat": 51.2501034, - "lon": -2.6061635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA5 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4194084359, - "lat": 51.3312682, - "lon": -2.8880947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS29 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4194085629, - "lat": 51.7735985, - "lon": -4.0218163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 154", - "post_box:type": "lamp", - "ref": "SA18 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4194085630, - "lat": 51.7781762, - "lon": -4.0150589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA18 403", - "post_box:type": "lamp", - "ref": "SA18 403D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4194085631, - "lat": 51.7788047, - "lon": -4.0017248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA18 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4195516164, - "lat": 53.8384285, - "lon": -1.0970947, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4196236811, - "lat": 52.9525409, - "lon": -0.9425104, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG13 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4196236894, - "lat": 52.9567066, - "lon": -0.9558061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mail:franked": "only", - "opening_hours": "Mo-Fr 10:00-18:00", - "post_box:type": "meter", - "ref": "NG13 18", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4196322583, - "lat": 54.0065787, - "lon": -1.5736228, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4196573414, - "lat": 51.0368221, - "lon": -3.0444554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA2 133" - } -}, -{ - "type": "node", - "id": 4196573416, - "lat": 51.0476342, - "lon": -3.0328582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 511" - } -}, -{ - "type": "node", - "id": 4196573421, - "lat": 51.0578867, - "lon": -3.0372027, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4196573422, - "lat": 51.0625601, - "lon": -3.0352373, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4196573423, - "lat": 51.0679624, - "lon": -3.0353629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 291", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4196881723, - "lat": 54.4875650, - "lon": -0.6175330, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4198512706, - "lat": 54.7589273, - "lon": -1.6092819, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4198519775, - "lat": 52.9482687, - "lon": -0.9438545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "NG13 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4198519949, - "lat": 52.9487373, - "lon": -0.9395833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "NG13 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4198749190, - "lat": 51.2997162, - "lon": 0.4588902, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME20 307D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-02-06" - } -}, -{ - "type": "node", - "id": 4198763890, - "lat": 51.2947956, - "lon": 0.4746973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME20 354" - } -}, -{ - "type": "node", - "id": 4198763891, - "lat": 51.2883218, - "lon": 0.4941698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 3282" - } -}, -{ - "type": "node", - "id": 4198763893, - "lat": 51.2806141, - "lon": 0.5208133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4198770489, - "lat": 51.3013589, - "lon": 0.4659355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4198770589, - "lat": 51.2938080, - "lon": 0.4538292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME20 374D" - } -}, -{ - "type": "node", - "id": 4198770592, - "lat": 51.2992969, - "lon": 0.4685598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 304" - } -}, -{ - "type": "node", - "id": 4198770593, - "lat": 51.2916569, - "lon": 0.4716147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME20 346" - } -}, -{ - "type": "node", - "id": 4198770595, - "lat": 51.2929554, - "lon": 0.4762284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME20 200D" - } -}, -{ - "type": "node", - "id": 4198770598, - "lat": 51.2821295, - "lon": 0.5322391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME14 297" - } -}, -{ - "type": "node", - "id": 4198770689, - "lat": 51.2962712, - "lon": 0.4659300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME20 239D" - } -}, -{ - "type": "node", - "id": 4198770690, - "lat": 51.2921267, - "lon": 0.4953588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME16 349" - } -}, -{ - "type": "node", - "id": 4198770790, - "lat": 51.2965433, - "lon": 0.4725852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 289", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4198770792, - "lat": 51.2823190, - "lon": 0.5257136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME14 54" - } -}, -{ - "type": "node", - "id": 4198770890, - "lat": 51.2857275, - "lon": 0.5412384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME14 17" - } -}, -{ - "type": "node", - "id": 4198770989, - "lat": 51.2921308, - "lon": 0.4954262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME16 370" - } -}, -{ - "type": "node", - "id": 4199080309, - "lat": 51.7719858, - "lon": -3.8805385, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-12-25", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA18 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4199080317, - "lat": 51.7775170, - "lon": -3.8798071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "post_box:type": "lamp", - "ref": "SA18 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4199080324, - "lat": 51.7855159, - "lon": -3.8794026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA18 50D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4199080325, - "lat": 51.7893322, - "lon": -3.8772289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "post_box:type": "wall", - "ref": "SA18 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4199347893, - "lat": 52.9549119, - "lon": -1.9031137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST14 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4199665020, - "lat": 52.6107134, - "lon": -1.6784275, - "tags": { - "amenity": "post_box", - "ref": "B77 1213" - } -}, -{ - "type": "node", - "id": 4200251224, - "lat": 52.3085590, - "lon": 1.2763316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200251240, - "lat": 52.3287854, - "lon": 1.2733599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200251257, - "lat": 52.3228273, - "lon": 1.2704951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200251652, - "lat": 52.3322607, - "lon": 1.3033711, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP21 7122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200268450, - "lat": 52.3513299, - "lon": 1.3184899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200268598, - "lat": 52.3468067, - "lon": 1.3196896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP21 7025", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200294610, - "lat": 52.3468755, - "lon": 1.3104011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200294651, - "lat": 52.3467757, - "lon": 1.2688356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7071D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200296768, - "lat": 52.6031025, - "lon": 1.7139946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200296772, - "lat": 52.6055211, - "lon": 1.7365506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR30 3012D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4200296774, - "lat": 52.6066247, - "lon": 1.7177544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4200296775, - "lat": 52.6068649, - "lon": 1.7281841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR30 3011", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4200296777, - "lat": 52.6079530, - "lon": 1.7354302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR30 3015", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2016-10-03" - } -}, -{ - "type": "node", - "id": 4200296778, - "lat": 52.6080528, - "lon": 1.7244629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3002", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4200296782, - "lat": 52.6099700, - "lon": 1.7263761, - "tags": { - "alt_ref": "BOX534527", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR30 3006D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4200296784, - "lat": 52.6100638, - "lon": 1.7325039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR30 3007", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4200296785, - "lat": 52.6118400, - "lon": 1.7349084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3001D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4200298792, - "lat": 52.6140508, - "lon": 1.7272424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3036D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4200298793, - "lat": 52.6180643, - "lon": 1.7372125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3031D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4200298794, - "lat": 52.6184393, - "lon": 1.7320898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR30 3038D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200298795, - "lat": 52.6186921, - "lon": 1.7252397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR30 3008D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200298796, - "lat": 52.6198897, - "lon": 1.7296506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3039D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4200298797, - "lat": 52.6198914, - "lon": 1.7342171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3030", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4200298805, - "lat": 52.6240940, - "lon": 1.7305793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3035D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4200298810, - "lat": 52.6264768, - "lon": 1.7314001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3029D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4200298814, - "lat": 52.6293141, - "lon": 1.7288420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3028", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200323192, - "lat": 52.3628925, - "lon": 1.1792653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "IP21 7427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200818088, - "lat": 50.9627644, - "lon": 0.1012867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4200856112, - "lat": 50.9795766, - "lon": 0.1006080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4201150167, - "lat": 54.0822765, - "lon": -0.1892548, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO15 12", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4201189187, - "lat": 52.9115471, - "lon": -0.9097155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG13 90", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4201190916, - "lat": 52.9145621, - "lon": -0.9026778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG13 341D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4201205233, - "lat": 54.2813997, - "lon": -0.4184405, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO12 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4202303183, - "lat": 53.5652979, - "lon": -1.0193383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN7 93" - } -}, -{ - "type": "node", - "id": 4202303292, - "lat": 53.5632651, - "lon": -1.0239737, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4202453995, - "lat": 53.5623616, - "lon": -1.0689383, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4203332489, - "lat": 51.1709956, - "lon": 0.1110170, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN8 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4203915445, - "lat": 52.5154271, - "lon": -2.0840111, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DY1 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4204422389, - "lat": 54.5913795, - "lon": -5.9258710, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT7 1DX", - "addr:street": "Ormeau Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT7 811", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4204539259, - "lat": 52.9180112, - "lon": -0.8865002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:manufacturer": "Carronade", - "post_box:type": "lamp", - "ref": "NG13 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4204539510, - "lat": 52.9280990, - "lon": -0.8711700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "NG13 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4204918090, - "lat": 54.3121421, - "lon": -0.5671194, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO13 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4205154644, - "lat": 52.9416971, - "lon": -0.8592651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "post_box:type": "lamp", - "ref": "NG13 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4205155114, - "lat": 52.9465098, - "lon": -0.9115662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "NG13 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 4205155445, - "lat": 52.9602622, - "lon": -0.8536566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:manufacturer": "A. Handyside & Co. Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "NG13 326", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4205209811, - "lat": 54.9766878, - "lon": -1.6153990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4205572189, - "lat": 51.3547527, - "lon": -2.7387785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4205572190, - "lat": 51.3457198, - "lon": -2.7284032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS40 413D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4205839067, - "lat": 55.8841220, - "lon": -3.7775367, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH48 110D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4205839069, - "lat": 55.8849009, - "lon": -3.7605060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH48 49D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4205855949, - "lat": 51.0231390, - "lon": -1.4521757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO51 524", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4206012297, - "lat": 51.0907418, - "lon": -1.6197225, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SP5 309", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4206136602, - "lat": 54.1359697, - "lon": -1.5239459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HG4 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4206984225, - "lat": 55.6488754, - "lon": -1.8743293, - "tags": { - "amenity": "post_box", - "ref": "NE70 88" - } -}, -{ - "type": "node", - "id": 4207041106, - "lat": 55.6139206, - "lon": -1.8415810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE70 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4207047265, - "lat": 53.5628587, - "lon": -1.1945649, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4207291018, - "lat": 55.5949112, - "lon": -1.8232965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE70 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4207313201, - "lat": 55.5878972, - "lon": -1.8117105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE70 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4207338153, - "lat": 51.3723164, - "lon": -2.7115245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4208779639, - "lat": 55.5512866, - "lon": -1.7847635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE70 33" - } -}, -{ - "type": "node", - "id": 4208790751, - "lat": 55.5674723, - "lon": -1.7716979, - "tags": { - "amenity": "post_box", - "ref": "NE70 104" - } -}, -{ - "type": "node", - "id": 4209020679, - "lat": 55.5565223, - "lon": -1.6377533, - "tags": { - "amenity": "post_box", - "ref": "NE67 103" - } -}, -{ - "type": "node", - "id": 4209026991, - "lat": 55.5588336, - "lon": -1.6331658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE67 116", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4209032701, - "lat": 55.5532086, - "lon": -1.6263831, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-25", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE67 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4209060925, - "lat": 55.5588609, - "lon": -1.7192741, - "tags": { - "amenity": "post_box", - "ref": "NE67 41" - } -}, -{ - "type": "node", - "id": 4209060926, - "lat": 55.5489334, - "lon": -1.7255905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 08:00", - "ref": "NE67 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4209060940, - "lat": 55.5437477, - "lon": -1.7710687, - "tags": { - "amenity": "post_box", - "ref": "NE67 35" - } -}, -{ - "type": "node", - "id": 4209130383, - "lat": 51.4501325, - "lon": -2.5186701, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS15 126" - } -}, -{ - "type": "node", - "id": 4209146189, - "lat": 51.4455170, - "lon": -2.5067728, - "tags": { - "amenity": "post_box", - "mapillary": "695695921157551", - "post_box:type": "pillar", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 4209179196, - "lat": 53.7890989, - "lon": -2.7420265, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4210495514, - "lat": 55.5252747, - "lon": -1.7327339, - "tags": { - "amenity": "post_box", - "ref": "NE67 25" - } -}, -{ - "type": "node", - "id": 4210498453, - "lat": 55.5231110, - "lon": -1.7092904, - "tags": { - "amenity": "post_box", - "ref": "NE67 83" - } -}, -{ - "type": "node", - "id": 4210502685, - "lat": 55.5110066, - "lon": -1.7077371, - "tags": { - "amenity": "post_box", - "ref": "NE67 76" - } -}, -{ - "type": "node", - "id": 4210504884, - "lat": 55.5027768, - "lon": -1.7119090, - "tags": { - "amenity": "post_box", - "ref": "NE67 77" - } -}, -{ - "type": "node", - "id": 4210507142, - "lat": 55.4972412, - "lon": -1.6969590, - "tags": { - "amenity": "post_box", - "ref": "NE67 142" - } -}, -{ - "type": "node", - "id": 4210510563, - "lat": 55.5005183, - "lon": -1.7340683, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "NE67 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4210644223, - "lat": 53.1924290, - "lon": -1.6519457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE45 1275", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4210668852, - "lat": 52.4512170, - "lon": -1.7323585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "plastic, indoor \"pillar\" to the left as you enter the Eurohub.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "B26 1405D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4210668854, - "lat": 52.4527537, - "lon": -1.7330986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "outside Departures,", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B26 1397D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4210689872, - "lat": 55.6919512, - "lon": -2.8608031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TD1 116", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4210823971, - "lat": 55.5482107, - "lon": -2.8396993, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-12", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD7 102", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4210823972, - "lat": 55.5535317, - "lon": -2.8347640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD7 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4210823973, - "lat": 55.5476262, - "lon": -2.8480982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD7 101D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4210823974, - "lat": 55.5498125, - "lon": -2.8469499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD7 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4211277982, - "lat": 53.7503076, - "lon": -1.6875064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BD11 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 4211392322, - "lat": 53.9387327, - "lon": -1.5741849, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS17 947", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4211392357, - "lat": 53.9400778, - "lon": -1.5761053, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4211442150, - "lat": 52.4014681, - "lon": -1.2451196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4211554340, - "lat": 53.6219884, - "lon": -1.5456310, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WF4 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4212588592, - "lat": 51.3106903, - "lon": 0.4405515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 342", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 4212599297, - "lat": 51.2931226, - "lon": 0.4356829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME19 311" - } -}, -{ - "type": "node", - "id": 4212599298, - "lat": 51.2945084, - "lon": 0.4096486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME19 3582", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4212611991, - "lat": 51.3007223, - "lon": 0.4422870, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 326D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-02-06" - } -}, -{ - "type": "node", - "id": 4212611992, - "lat": 51.3012946, - "lon": 0.4493101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME20 277D" - } -}, -{ - "type": "node", - "id": 4212611994, - "lat": 51.2955992, - "lon": 0.4351510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME19 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4212612890, - "lat": 51.3086342, - "lon": 0.4315730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME20 135D" - } -}, -{ - "type": "node", - "id": 4212617791, - "lat": 51.3084772, - "lon": 0.4158237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4212624790, - "lat": 51.2945285, - "lon": 0.4096508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME19 3581", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4212629089, - "lat": 51.3025439, - "lon": 0.4322123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME20 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4212629090, - "lat": 51.2934461, - "lon": 0.4018535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 272D" - } -}, -{ - "type": "node", - "id": 4212682290, - "lat": 52.2070729, - "lon": -1.8842818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4212690020, - "lat": 52.2076959, - "lon": -1.8726565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4212936711, - "lat": 51.4789838, - "lon": -0.1153410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW9 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4212949663, - "lat": 54.1778368, - "lon": -1.3881420, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO7 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4212949892, - "lat": 54.1728744, - "lon": -1.3902341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO7 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4212951196, - "lat": 55.2363190, - "lon": -6.3575115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT54 60", - "royal_cypher": "EIIR", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 4212970320, - "lat": 52.2193450, - "lon": -1.8765627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B49 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4213001589, - "lat": 54.2306465, - "lon": -1.3457959, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO7 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4213067002, - "lat": 54.2317613, - "lon": -1.3469546, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO7 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4213067032, - "lat": 54.2317488, - "lon": -1.3469385, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO7 2015" - } -}, -{ - "type": "node", - "id": 4213079204, - "lat": 54.2263758, - "lon": -1.3409169, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO7 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4213079238, - "lat": 54.2235565, - "lon": -1.3385807, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO7 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4213082083, - "lat": 54.1677148, - "lon": -1.2468455, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO61 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4213190628, - "lat": 54.0201563, - "lon": -1.1910375, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4213716390, - "lat": 54.2279330, - "lon": -1.3755290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "YO7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4213723703, - "lat": 54.2232117, - "lon": -1.3959913, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO7 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4213737589, - "lat": 54.1807566, - "lon": -1.3412896, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4213744435, - "lat": 54.1793943, - "lon": -1.3236813, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4213824593, - "lat": 54.2233272, - "lon": -1.3443501, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4213921234, - "lat": 54.1529152, - "lon": -1.4167821, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4213964305, - "lat": 55.0299657, - "lon": -1.6441532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE13 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4214691750, - "lat": 51.4864247, - "lon": -0.1198439, - "tags": { - "amenity": "post_box", - "brand": "FedEx", - "brand:wikidata": "Q459477", - "name": "Fedex Express", - "name:fa": "کارتریج آرتزیان", - "operator": "FedEx", - "operator:type": "private", - "operator:wikidata": "Q459477", - "stationery": "cartridges" - } -}, -{ - "type": "node", - "id": 4215578694, - "lat": 51.2678927, - "lon": 0.5282718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 278" - } -}, -{ - "type": "node", - "id": 4215578698, - "lat": 51.2469171, - "lon": 0.5248584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 232D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4215581590, - "lat": 51.2886500, - "lon": 0.5127408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME14 260D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4215581696, - "lat": 51.2528511, - "lon": 0.5272578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4215584997, - "lat": 51.2920071, - "lon": 0.5172453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME14 159D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4215584998, - "lat": 51.2533718, - "lon": 0.5231012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME15 314D" - } -}, -{ - "type": "node", - "id": 4215591596, - "lat": 51.2579597, - "lon": 0.5309406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4215591597, - "lat": 51.2459397, - "lon": 0.5248353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 368D" - } -}, -{ - "type": "node", - "id": 4215630493, - "lat": 51.2560920, - "lon": 0.5272219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 336D" - } -}, -{ - "type": "node", - "id": 4215643490, - "lat": 51.2965897, - "lon": 0.5100810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME14 77" - } -}, -{ - "type": "node", - "id": 4215646089, - "lat": 51.2621457, - "lon": 0.5347875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME15 219", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4215646190, - "lat": 51.2602520, - "lon": 0.5389864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 283D" - } -}, -{ - "type": "node", - "id": 4215740309, - "lat": 52.2169130, - "lon": -1.5555761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4215993945, - "lat": 51.8905803, - "lon": -2.0711984, - "tags": { - "HE_ref": "1104257", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Penfold pillar box. Collection times plate missing 30/5/16", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1104257", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL53 12", - "ref:GB:nhle": "1104257", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26398237" - } -}, -{ - "type": "node", - "id": 4215997808, - "lat": 51.9016587, - "lon": -2.0593903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL52 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4216076629, - "lat": 52.8398228, - "lon": -1.9656186, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4216126426, - "lat": 56.2925547, - "lon": -2.9706098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY15 324", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4216185176, - "lat": 56.3162462, - "lon": -2.7050740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY16 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4216237569, - "lat": 56.3281656, - "lon": -2.8074682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 445", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4216237571, - "lat": 56.3310437, - "lon": -2.7949462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY16 370", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4216237572, - "lat": 56.3310677, - "lon": -2.8004572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY16 372", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4216237579, - "lat": 56.3352950, - "lon": -2.7838471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY16 367", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4216257840, - "lat": 56.2137997, - "lon": -2.9518882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 188", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4216257843, - "lat": 56.2564374, - "lon": -2.8605356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY9 392", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4216388496, - "lat": 51.1434848, - "lon": -3.0349742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4216388501, - "lat": 51.1470420, - "lon": -3.0070390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4217812060, - "lat": 52.8546408, - "lon": -1.9328451, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4217926041, - "lat": 50.9687197, - "lon": 0.0843190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN22 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4217935378, - "lat": 51.1321598, - "lon": -3.0046975, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4218191180, - "lat": 52.0962704, - "lon": 1.0936518, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP8 1352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4218208389, - "lat": 52.0842171, - "lon": 1.0915521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4219351396, - "lat": 53.8199975, - "lon": -2.2307973, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4219885423, - "lat": 51.4800196, - "lon": -0.1188646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW8 13D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4220350670, - "lat": 51.6803330, - "lon": -2.3671216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4220506975, - "lat": 51.6792384, - "lon": -2.3536587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4221578689, - "lat": 52.6759120, - "lon": -1.8265807, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4221692052, - "lat": 51.4304081, - "lon": -0.0799247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SE21 28" - } -}, -{ - "type": "node", - "id": 4221862903, - "lat": 51.2454519, - "lon": 0.4116389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 118" - } -}, -{ - "type": "node", - "id": 4221862904, - "lat": 51.2538119, - "lon": 0.4203356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME18 287D" - } -}, -{ - "type": "node", - "id": 4221862905, - "lat": 51.2468761, - "lon": 0.4529388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME15 264" - } -}, -{ - "type": "node", - "id": 4221862906, - "lat": 51.2525660, - "lon": 0.4630330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 224D" - } -}, -{ - "type": "node", - "id": 4221862907, - "lat": 51.2628254, - "lon": 0.4795240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME16 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4221885096, - "lat": 51.2550762, - "lon": 0.4404427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 177" - } -}, -{ - "type": "node", - "id": 4221885097, - "lat": 51.2467841, - "lon": 0.4648163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 182", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4221910490, - "lat": 51.2565229, - "lon": 0.4121741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 11D" - } -}, -{ - "type": "node", - "id": 4221912189, - "lat": 51.2556184, - "lon": 0.4229201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "615687496878692", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "None", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-05-07" - } -}, -{ - "type": "node", - "id": 4221912289, - "lat": 51.2525623, - "lon": 0.4841583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "ME15 161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4222618944, - "lat": 57.4260356, - "lon": -6.5542365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV55 46" - } -}, -{ - "type": "node", - "id": 4223773949, - "lat": 55.5198531, - "lon": -1.6288930, - "tags": { - "amenity": "post_box", - "ref": "NE66 47" - } -}, -{ - "type": "node", - "id": 4223775680, - "lat": 55.5179326, - "lon": -1.6480609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE66 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4223788967, - "lat": 55.5155887, - "lon": -1.6717267, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "NE66 39" - } -}, -{ - "type": "node", - "id": 4223791901, - "lat": 55.5015041, - "lon": -1.6628163, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 122" - } -}, -{ - "type": "node", - "id": 4223819912, - "lat": 55.4717546, - "lon": -1.5925773, - "tags": { - "amenity": "post_box", - "ref": "NE66 66" - } -}, -{ - "type": "node", - "id": 4223829598, - "lat": 52.0844179, - "lon": 1.1152910, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "material": "plastic", - "note": "is inside Asda porch so only accessible during opening hours, is also made of plastic so can potentially be moved", - "post_box:type": "pillar", - "ref": "IP1 1459" - } -}, -{ - "type": "node", - "id": 4223888721, - "lat": 52.0480744, - "lon": 1.1125925, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP2 1221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4223888724, - "lat": 52.0399563, - "lon": 1.0986263, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-13", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "description": "Located inside Tesco Extra, to the right after entering store.", - "indoor": "yes", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP8 1456", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4224052891, - "lat": 51.2316367, - "lon": 0.5315237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 192" - } -}, -{ - "type": "node", - "id": 4224052892, - "lat": 51.2542175, - "lon": 0.5401837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 299D" - } -}, -{ - "type": "node", - "id": 4224061193, - "lat": 51.2265217, - "lon": 0.4123004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4224061194, - "lat": 51.2146144, - "lon": 0.4197902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4224061195, - "lat": 51.2181135, - "lon": 0.4306402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 36D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4224061196, - "lat": 51.2235459, - "lon": 0.4290132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4224061197, - "lat": 51.2173306, - "lon": 0.4577657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 29" - } -}, -{ - "type": "node", - "id": 4224061198, - "lat": 51.2405401, - "lon": 0.4773224, - "tags": { - "amenity": "post_box", - "note": "ref obscured", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4224061295, - "lat": 51.2503192, - "lon": 0.4988682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 99" - } -}, -{ - "type": "node", - "id": 4224061297, - "lat": 51.2290928, - "lon": 0.5421570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 32D" - } -}, -{ - "type": "node", - "id": 4224112989, - "lat": 51.2121186, - "lon": 0.4348368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME18 20" - } -}, -{ - "type": "node", - "id": 4224112990, - "lat": 51.2360650, - "lon": 0.5571692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 112D" - } -}, -{ - "type": "node", - "id": 4224112991, - "lat": 51.2372346, - "lon": 0.5631067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME15 357" - } -}, -{ - "type": "node", - "id": 4224113189, - "lat": 51.2244466, - "lon": 0.4717772, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "ME16 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4224113190, - "lat": 51.2412099, - "lon": 0.4901521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME15 62D" - } -}, -{ - "type": "node", - "id": 4224113191, - "lat": 51.2410072, - "lon": 0.5566442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 305" - } -}, -{ - "type": "node", - "id": 4224113289, - "lat": 51.2364980, - "lon": 0.4967584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 292" - } -}, -{ - "type": "node", - "id": 4224113389, - "lat": 51.2419845, - "lon": 0.5517881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 286D" - } -}, -{ - "type": "node", - "id": 4224113390, - "lat": 51.2372397, - "lon": 0.5630890, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 356" - } -}, -{ - "type": "node", - "id": 4224113391, - "lat": 51.2516875, - "lon": 0.5383982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME16 209" - } -}, -{ - "type": "node", - "id": 4224113490, - "lat": 51.2467482, - "lon": 0.5469687, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "indoor": "yes", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 274", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 4224113689, - "lat": 51.2648981, - "lon": 0.5239680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 173" - } -}, -{ - "type": "node", - "id": 4224157512, - "lat": 56.7812958, - "lon": -2.5151901, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4224258723, - "lat": 51.4696560, - "lon": 0.4258838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RM18 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-03" - } -}, -{ - "type": "node", - "id": 4224266783, - "lat": 52.0539626, - "lon": 1.1600766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP4 1060", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4225421325, - "lat": 52.0745260, - "lon": 1.1478166, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-26", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "image": "https://www.flickr.com/photos/200873507@N03/53887496467", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4225429393, - "lat": 52.0680080, - "lon": 1.1749802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4225433200, - "lat": 52.0585913, - "lon": 1.1824491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4225440893, - "lat": 51.2981705, - "lon": 0.5655038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME14 178D" - } -}, -{ - "type": "node", - "id": 4225440898, - "lat": 51.2556352, - "lon": 0.5631707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 172D" - } -}, -{ - "type": "node", - "id": 4225446191, - "lat": 51.2905952, - "lon": 0.5679482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME14 322D" - } -}, -{ - "type": "node", - "id": 4225446794, - "lat": 51.2476386, - "lon": 0.5731187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 254" - } -}, -{ - "type": "node", - "id": 4225450890, - "lat": 51.2949891, - "lon": 0.5701745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME14 144", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4225450893, - "lat": 51.2633553, - "lon": 0.5681811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 331D" - } -}, -{ - "type": "node", - "id": 4225450895, - "lat": 51.2707985, - "lon": 0.5878623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME14 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4225458190, - "lat": 51.2770641, - "lon": 0.5564561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME14 347" - } -}, -{ - "type": "node", - "id": 4225458191, - "lat": 51.2715504, - "lon": 0.5385558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "ME14 3881" - } -}, -{ - "type": "node", - "id": 4225458192, - "lat": 51.2715411, - "lon": 0.5385389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME14 3882" - } -}, -{ - "type": "node", - "id": 4225458193, - "lat": 51.2659312, - "lon": 0.5602453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME15 13D" - } -}, -{ - "type": "node", - "id": 4225461490, - "lat": 51.2777573, - "lon": 0.5418013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME14 366" - } -}, -{ - "type": "node", - "id": 4225488989, - "lat": 51.2647892, - "lon": 0.5638137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME15 312" - } -}, -{ - "type": "node", - "id": 4225488990, - "lat": 51.2533789, - "lon": 0.5753238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME15 147D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4225488991, - "lat": 51.2649567, - "lon": 0.5813867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 246D" - } -}, -{ - "type": "node", - "id": 4225489089, - "lat": 51.2599397, - "lon": 0.5632811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME15 335" - } -}, -{ - "type": "node", - "id": 4225519945, - "lat": 57.5048044, - "lon": -1.7776927, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB42 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4225563921, - "lat": 57.1269843, - "lon": -2.9346849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_e", - "post_box:type": "wall", - "ref": "AB34 261", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4225612377, - "lat": 57.5058094, - "lon": -1.7808511, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4225788109, - "lat": 50.8887378, - "lon": -1.3658378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4225807403, - "lat": 50.8998965, - "lon": -1.3717266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4225808333, - "lat": 50.9013475, - "lon": -1.3668054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 397D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4225812845, - "lat": 50.9018457, - "lon": -1.3628686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO19 264", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4225816962, - "lat": 50.9145237, - "lon": -1.3666954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 564D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4226109566, - "lat": 57.2851998, - "lon": -2.8739448, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4227089564, - "lat": 54.2049442, - "lon": -1.5893559, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4227432020, - "lat": 52.5860389, - "lon": -1.8717966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "B74 1365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4227867934, - "lat": 51.0274680, - "lon": -3.1538193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 652", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4228050626, - "lat": 54.4370148, - "lon": -2.9676003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA22 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4228722052, - "lat": 53.8475914, - "lon": -1.6698420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LS19 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 4229082517, - "lat": 51.1383226, - "lon": 0.0027752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4229084524, - "lat": 51.1378069, - "lon": 0.0052307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4230034821, - "lat": 51.8478265, - "lon": -1.2433434, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4230137957, - "lat": 52.7038036, - "lon": 1.0224341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2007", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4230140433, - "lat": 52.6847626, - "lon": 1.0249742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR20 2004D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4230936006, - "lat": 51.1673317, - "lon": -1.3791890, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-06", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO21 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps_survey;photographic_survey" - } -}, -{ - "type": "node", - "id": 4231021434, - "lat": 50.8797046, - "lon": -2.4521450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT9 78", - "ref:GB:uprn": "10015458999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4231035205, - "lat": 50.8543583, - "lon": -2.3923411, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT10 71", - "ref:GB:uprn": "10015389877", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4231038485, - "lat": 50.8347790, - "lon": -2.3312969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-10-18", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 161D", - "ref:GB:uprn": "10015368698", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4231058444, - "lat": 50.8160113, - "lon": -2.2745305, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT11 65", - "ref:GB:uprn": "10015385953", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4231058445, - "lat": 50.8187600, - "lon": -2.2703476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 144D", - "ref:GB:uprn": "10015335972", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4231061332, - "lat": 50.8832452, - "lon": -2.3551792, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT10 148", - "ref:GB:uprn": "10015378577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4231061333, - "lat": 50.8866955, - "lon": -2.3562789, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT10 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4231856113, - "lat": 51.5481768, - "lon": -0.4472341, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4231861363, - "lat": 51.5482294, - "lon": -0.4564123, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4232147684, - "lat": 53.4381962, - "lon": -3.0426926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "George V post box CH45 152 by McDowell Steven on Waterloo Road near junction with Victoria Road.", - "manufacturer": "McDowell Steven", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 152", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box by New Brighton Post Office.jpg" - } -}, -{ - "type": "node", - "id": 4232307134, - "lat": 53.4401379, - "lon": -3.0468723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "QE II indoor type PB58 post box CH45 300 inside Morrison's supermarket, New Brighton, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH45 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box in Morrison's, New Brighton.jpg" - } -}, -{ - "type": "node", - "id": 4232356880, - "lat": 53.4387827, - "lon": -3.0466115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH45 318 on Wellington Road, New Brighton at its junction with Cavendish Road (although Royal Mail list this as Cavendish Street).", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 318", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Wellington Road at Cavendish Road.jpg" - } -}, -{ - "type": "node", - "id": 4232443242, - "lat": 51.3899305, - "lon": -0.4691555, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4232631949, - "lat": 50.8658104, - "lon": -2.3179146, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT11 100", - "ref:GB:uprn": "10015441929", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4232692802, - "lat": 50.8548691, - "lon": -2.2438783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 118D", - "ref:GB:uprn": "10015471984", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4232747398, - "lat": 50.8455088, - "lon": -2.2136035, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT11 169", - "ref:GB:uprn": "10015356084", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4232747402, - "lat": 50.8556700, - "lon": -2.2124884, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT11 157", - "ref:GB:uprn": "10015333199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4232747411, - "lat": 50.8561987, - "lon": -2.1812198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 128", - "ref:GB:uprn": "10015376226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4232925203, - "lat": 52.7477413, - "lon": -1.2033332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "LE11 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4233624678, - "lat": 54.4197065, - "lon": -2.9619300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA22 134", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4233989931, - "lat": 54.4276299, - "lon": -2.9575921, - "tags": { - "amenity": "post_box", - "ref": "LA22 253" - } -}, -{ - "type": "node", - "id": 4234007662, - "lat": 54.4160304, - "lon": -3.0020665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 07:00", - "ref": "LA22 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4234209578, - "lat": 53.2939871, - "lon": -3.7258433, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL29 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4234210294, - "lat": 53.2952696, - "lon": -3.7268868, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "material": "plastic", - "note": "is inside post office", - "post_box:type": "pillar", - "ref": "LL29 92" - } -}, -{ - "type": "node", - "id": 4234210313, - "lat": 53.2962585, - "lon": -3.7266265, - "tags": { - "amenity": "post_box", - "note": "there are two postboxes side by side only one has a plate with a reference number on it", - "post_box:type": "pillar", - "ref": "blank", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4234210332, - "lat": 53.3051725, - "lon": -3.7416673, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL28 26D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4234210344, - "lat": 53.2917312, - "lon": -3.7218656, - "tags": { - "amenity": "post_box", - "note": "pillar box replaced by lamp box", - "post_box:type": "lamp", - "ref": "LL29 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4234210352, - "lat": 53.3150524, - "lon": -3.7428769, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL28 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4234210357, - "lat": 53.3095879, - "lon": -3.7392130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL28 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4234210361, - "lat": 53.3088040, - "lon": -3.7389884, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL28 45D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4234210365, - "lat": 53.2962505, - "lon": -3.7265916, - "tags": { - "amenity": "post_box", - "note": "there are two postboxes side by side only one has a plate with a reference number on it", - "post_box:type": "pillar", - "ref": "LL29 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4234210374, - "lat": 53.2942227, - "lon": -3.7217602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL29 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4234253926, - "lat": 53.3012215, - "lon": -3.7424612, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL28 27D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4234253930, - "lat": 53.2994277, - "lon": -3.7388650, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL29 12", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4234253944, - "lat": 53.3016319, - "lon": -3.7382394, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL28 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4234574514, - "lat": 51.7477388, - "lon": -4.0655549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA4 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4235481704, - "lat": 54.4159916, - "lon": -3.0308697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA22 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4235481760, - "lat": 54.4212767, - "lon": -3.0558119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "LA22 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4235482435, - "lat": 54.4221728, - "lon": -3.0122376, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA22 171", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4235523778, - "lat": 54.4007298, - "lon": -2.9654963, - "tags": { - "amenity": "post_box", - "ref": "LA22 176" - } -}, -{ - "type": "node", - "id": 4235525784, - "lat": 54.4090430, - "lon": -2.9869090, - "tags": { - "amenity": "post_box", - "ref": "LA22 164" - } -}, -{ - "type": "node", - "id": 4235537867, - "lat": 54.3916089, - "lon": -2.9668570, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA22 149", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4235560056, - "lat": 54.3894589, - "lon": -3.0058247, - "tags": { - "amenity": "post_box", - "ref": "LA22 151" - } -}, -{ - "type": "node", - "id": 4235560172, - "lat": 54.3859667, - "lon": -3.0155611, - "tags": { - "amenity": "post_box", - "ref": "LA22 165", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4236745425, - "lat": 53.5669461, - "lon": -0.0720497, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/y8PkG59p/DN32-25D.jpg", - "location": "Eleanor Street, Heneage Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN32 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4237213691, - "lat": 56.3800121, - "lon": -3.8378249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH7 22D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4237320589, - "lat": 51.3516750, - "lon": -1.9921501, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "name": "Post Office Collection", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "SN10 36", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4237449389, - "lat": 53.7980047, - "lon": -1.5492258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS1 55P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 4237654125, - "lat": 52.2239026, - "lon": -1.7734642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4238117991, - "lat": 54.2385068, - "lon": -0.4413334, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "YO12 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4238118000, - "lat": 54.2385496, - "lon": -0.4439348, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO12 130", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4238198302, - "lat": 53.1022707, - "lon": -3.9032058, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-12", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "LL24 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4238199962, - "lat": 54.0197370, - "lon": -0.9356638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4238423079, - "lat": 51.0230120, - "lon": -0.5059175, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH14 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4238436234, - "lat": 57.2502038, - "lon": -4.4903491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4238438778, - "lat": 54.2496456, - "lon": -0.4823359, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO13 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4238479364, - "lat": 57.5587512, - "lon": -2.9470452, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4238535060, - "lat": 51.6755337, - "lon": -4.1169061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA15 304D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4238609584, - "lat": 57.5740485, - "lon": -2.2994040, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB53 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4238609596, - "lat": 57.5765221, - "lon": -2.2986986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB53 41" - } -}, -{ - "type": "node", - "id": 4239815767, - "lat": 52.1038064, - "lon": -0.9445860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN12 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4239817835, - "lat": 52.0970705, - "lon": -0.8891098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4240857162, - "lat": 50.9764066, - "lon": -3.2310895, - "tags": { - "amenity": "post_box", - "mapillary": "184175040281769", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-03-26" - } -}, -{ - "type": "node", - "id": 4241260791, - "lat": 51.4939892, - "lon": -0.0467366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE16 18;SE16 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4241267152, - "lat": 54.3803194, - "lon": -3.0220984, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA22 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4241390587, - "lat": 54.3684200, - "lon": -3.0009301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA22 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4241431870, - "lat": 54.3602582, - "lon": -2.9925149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "392230846594405", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LA22 178", - "survey:date": "2023-08-17" - } -}, -{ - "type": "node", - "id": 4241462776, - "lat": 54.3406753, - "lon": -3.0231348, - "tags": { - "amenity": "post_box", - "ref": "LA22 162" - } -}, -{ - "type": "node", - "id": 4241511010, - "lat": 54.3522702, - "lon": -2.9705735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "LA22 177", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4241838581, - "lat": 51.8705312, - "lon": -2.8483910, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4241842357, - "lat": 51.8731123, - "lon": -2.8628829, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4241944691, - "lat": 51.6616604, - "lon": -2.8087732, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP16 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4241948064, - "lat": 51.6393460, - "lon": -2.7544839, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP16 449D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 4242014000, - "lat": 53.9319546, - "lon": -0.7773254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "wall", - "ref": "YO42 524", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4242663053, - "lat": 54.3514362, - "lon": -2.9580738, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA22 80" - } -}, -{ - "type": "node", - "id": 4242680094, - "lat": 51.2696794, - "lon": -2.7748494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4242851765, - "lat": 53.4297140, - "lon": -3.0626849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VII post box CH45 289 on Grove Road at the end of Keswick Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 289", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "File:Post box on Grove Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 4243366728, - "lat": 51.0148537, - "lon": -0.9096408, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU31 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4244016089, - "lat": 53.9362815, - "lon": -0.4508403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO25 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4244308860, - "lat": 54.0227122, - "lon": -0.5049498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO25 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4244888266, - "lat": 55.9612301, - "lon": -3.9914741, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4244888269, - "lat": 55.9594762, - "lon": -4.0151360, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4244920467, - "lat": 56.0064485, - "lon": -3.7361235, - "tags": { - "amenity": "post_box", - "ref": "FK3 212", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4244977124, - "lat": 55.9872798, - "lon": -3.7789516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4245064215, - "lat": 51.4020380, - "lon": -0.2947959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 115D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4247448349, - "lat": 54.3660113, - "lon": -2.9172884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA23 91D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4247499642, - "lat": 52.6075526, - "lon": -1.6409896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "last_checked": "2022-04-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B77 1398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4248096177, - "lat": 54.4015835, - "lon": -2.9401140, - "tags": { - "amenity": "post_box", - "ref": "LA23 123" - } -}, -{ - "type": "node", - "id": 4248118933, - "lat": 54.3865385, - "lon": -2.9243678, - "tags": { - "amenity": "post_box", - "ref": "LA23 186" - } -}, -{ - "type": "node", - "id": 4248209884, - "lat": 55.4683449, - "lon": -1.6455947, - "tags": { - "amenity": "post_box", - "ref": "NE66 136" - } -}, -{ - "type": "node", - "id": 4248230489, - "lat": 55.4537803, - "lon": -1.6105759, - "tags": { - "amenity": "post_box", - "ref": "NE66 146" - } -}, -{ - "type": "node", - "id": 4248279725, - "lat": 55.4533717, - "lon": -1.5956219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE66 57" - } -}, -{ - "type": "node", - "id": 4248319329, - "lat": 55.4278839, - "lon": -1.6184955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE66 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4248319331, - "lat": 55.4258865, - "lon": -1.6074676, - "tags": { - "amenity": "post_box", - "ref": "NE66 130" - } -}, -{ - "type": "node", - "id": 4248342040, - "lat": 55.3985015, - "lon": -1.6038881, - "tags": { - "amenity": "post_box", - "ref": "NE66 140" - } -}, -{ - "type": "node", - "id": 4249343316, - "lat": 53.4800859, - "lon": -1.0557155, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4249370792, - "lat": 51.3947796, - "lon": -0.7627245, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4250043393, - "lat": 54.4616103, - "lon": -0.8655321, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO21 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4250339103, - "lat": 53.1385792, - "lon": -1.2589898, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4250859445, - "lat": 52.2350382, - "lon": -1.0536868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4250859446, - "lat": 52.2378423, - "lon": -1.0561440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4250865657, - "lat": 51.6093917, - "lon": -0.2652629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 733D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4250869534, - "lat": 51.6141639, - "lon": -0.2588762, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4251322515, - "lat": 52.1925898, - "lon": -1.8157219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "note": "stopped to confirm ref 21/05/18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4251322516, - "lat": 52.1948322, - "lon": -1.8051253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4251322517, - "lat": 52.1853129, - "lon": -1.7908004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4251900926, - "lat": 51.8296860, - "lon": -4.0816556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA14 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4252919602, - "lat": 58.6373074, - "lon": -3.0692197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW1 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4252919733, - "lat": 58.6383362, - "lon": -3.1696309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "KW1 12", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4253564479, - "lat": 52.0239266, - "lon": 0.2414775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB10 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4254298623, - "lat": 52.2899440, - "lon": -0.6972296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4255247786, - "lat": 55.9565331, - "lon": -2.7794891, - "tags": { - "amenity": "post_box", - "collection_times": "unknown", - "indoor": "yes", - "note": "no reference number or collection_times", - "operator": "Postbox TV", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4255694347, - "lat": 56.4494820, - "lon": -3.6523995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PH1 85", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4255694360, - "lat": 56.4345350, - "lon": -3.7289764, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2019-06-17", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "manufacturer": "Machan Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 80", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4256719569, - "lat": 50.2556310, - "lon": -3.6693071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4257335690, - "lat": 52.5963188, - "lon": 1.0556046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "old_ref": "WY 1834 Kimberley Green", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR18 1834", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4257415522, - "lat": 51.4019961, - "lon": -3.4140178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "drive_through": "no", - "name": "St Athan Post Box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 77", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4257541398, - "lat": 58.9831930, - "lon": -3.2483902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW16 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4257541399, - "lat": 58.9193867, - "lon": -3.1809564, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4257758347, - "lat": 53.0566394, - "lon": -2.4292394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 49", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4257829648, - "lat": 53.6315591, - "lon": -2.6901866, - "tags": { - "amenity": "post_box", - "fixme": "approximate", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4257848700, - "lat": 51.8182800, - "lon": -2.2230629, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-26", - "check_date:collection_times": "2024-04-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL4 991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4259002474, - "lat": 58.9413569, - "lon": -3.1136518, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4259011550, - "lat": 58.8091448, - "lon": -3.0023886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4259643596, - "lat": 50.8366691, - "lon": -0.7196673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4260622451, - "lat": 50.7999878, - "lon": -3.0661866, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4262484876, - "lat": 58.5957700, - "lon": -3.5181765, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KW14 1D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4262484878, - "lat": 58.5966591, - "lon": -3.5333490, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW14 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4262487160, - "lat": 58.5939009, - "lon": -3.5338922, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KW14 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4263157178, - "lat": 58.5573853, - "lon": -3.7923225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW14 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4263470526, - "lat": 51.9184032, - "lon": -2.3157551, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4263477251, - "lat": 51.8783256, - "lon": -2.3851236, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 149", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4263594909, - "lat": 51.8829435, - "lon": -2.9761751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-01" - } -}, -{ - "type": "node", - "id": 4263594921, - "lat": 51.8874649, - "lon": -2.9716059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "592296841871113", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP7 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-22" - } -}, -{ - "type": "node", - "id": 4263762241, - "lat": 53.5681747, - "lon": -2.2325650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "OL10 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4264341156, - "lat": 52.0731850, - "lon": -3.1281001, - "tags": { - "amenity": "post_box", - "colour": "gold", - "olympic_gold": "Josie Pearson", - "post_box:type": "pillar", - "ref": "HR3 36", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4264440404, - "lat": 51.3111235, - "lon": 0.3848209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 306D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4264440407, - "lat": 51.3300924, - "lon": 0.3590691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 408", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4264440509, - "lat": 51.3071294, - "lon": 0.3743649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 153D" - } -}, -{ - "type": "node", - "id": 4264445899, - "lat": 51.3172877, - "lon": 0.3883438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 82D" - } -}, -{ - "type": "node", - "id": 4264445900, - "lat": 51.3062855, - "lon": 0.3918741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 60" - } -}, -{ - "type": "node", - "id": 4264446301, - "lat": 51.3156780, - "lon": 0.3533315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "612180310801394", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME19 146", - "survey:date": "2023-05-07" - } -}, -{ - "type": "node", - "id": 4264446401, - "lat": 51.3236760, - "lon": 0.3469221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "Collection times changing from 2023-09-04 and will be 09:00/07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "ME19 271", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4264446597, - "lat": 51.3316142, - "lon": 0.3658572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 145D" - } -}, -{ - "type": "node", - "id": 4264447401, - "lat": 51.3266614, - "lon": 0.3460364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 418" - } -}, -{ - "type": "node", - "id": 4264448109, - "lat": 51.3144252, - "lon": 0.3944183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 158" - } -}, -{ - "type": "node", - "id": 4264448398, - "lat": 51.3189277, - "lon": 0.4092070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 168" - } -}, -{ - "type": "node", - "id": 4264448955, - "lat": 51.7764489, - "lon": -0.2543812, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL10 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4264625606, - "lat": 53.2907406, - "lon": -1.5007644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S18 461" - } -}, -{ - "type": "node", - "id": 4264654835, - "lat": 52.1618553, - "lon": -1.7904234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 4264710752, - "lat": 58.5903868, - "lon": -3.5276365, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW14 4D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4265486305, - "lat": 56.3965301, - "lon": -3.4398887, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "indoor": "yes", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "PH1 40", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4265538236, - "lat": 53.2353023, - "lon": -2.1127926, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SK11 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4265538682, - "lat": 53.2365481, - "lon": -2.1092524, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SK11 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4265549118, - "lat": 53.9067851, - "lon": -1.2248298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS24 612" - } -}, -{ - "type": "node", - "id": 4265646258, - "lat": 52.9489248, - "lon": -0.6785874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "manufacturer": "Barron Company / Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4265660927, - "lat": 51.5462293, - "lon": -0.4792733, - "tags": { - "amenity": "post_box", - "colour": "gold", - "post_box:apertures": "2", - "ref": "UB8 10;UB8 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4265710898, - "lat": 51.4883279, - "lon": -0.3961330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW5 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4265777216, - "lat": 50.6835770, - "lon": -3.5027931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX6 107D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4265907501, - "lat": 56.3924344, - "lon": -3.2126493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH2 39", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4266687123, - "lat": 52.2122166, - "lon": -0.7725556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266687124, - "lat": 52.2145592, - "lon": -0.7746201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN7 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266687125, - "lat": 52.2273319, - "lon": -0.7416144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4266687126, - "lat": 52.2307733, - "lon": -0.7146122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4266687127, - "lat": 52.2405558, - "lon": -0.7077561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4266694459, - "lat": 51.3592870, - "lon": -2.9138110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4266694463, - "lat": 51.3599055, - "lon": -2.9564415, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4266694464, - "lat": 51.3604780, - "lon": -2.9258570, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4266694466, - "lat": 51.3607474, - "lon": -2.9340782, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4266694469, - "lat": 51.3607870, - "lon": -2.9242260, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4266694480, - "lat": 51.3621560, - "lon": -2.9274097, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4266695396, - "lat": 51.3665640, - "lon": -2.9428356, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4266695397, - "lat": 51.3675390, - "lon": -2.9568120, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266695398, - "lat": 51.3688750, - "lon": -2.9628450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4266695399, - "lat": 51.3763150, - "lon": -2.9612480, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4266695411, - "lat": 51.3900453, - "lon": -2.7215291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266695413, - "lat": 51.4089200, - "lon": -2.6775563, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266695415, - "lat": 51.4098830, - "lon": -2.6485710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4266695416, - "lat": 51.4192700, - "lon": -2.7252600, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266875056, - "lat": 50.6754514, - "lon": -4.2467014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL16 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4266875057, - "lat": 50.6807768, - "lon": -4.2520647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL16 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4266900865, - "lat": 50.6367044, - "lon": -4.3584857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4266900866, - "lat": 50.6432308, - "lon": -4.2832811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL16 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 4266932961, - "lat": 50.3508054, - "lon": -4.7282928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL24 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 4266932962, - "lat": 50.3642028, - "lon": -4.7169138, - "tags": { - "amenity": "post_box", - "comment": "somewhere", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266932963, - "lat": 50.3646515, - "lon": -4.7160516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266932964, - "lat": 50.3668855, - "lon": -4.5264466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL13 74", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4266932965, - "lat": 50.3774298, - "lon": -4.7021308, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4266932966, - "lat": 50.3833796, - "lon": -4.6177142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "PL22 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4266932967, - "lat": 50.3960034, - "lon": -4.6443099, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4266932969, - "lat": 50.4720909, - "lon": -4.7016608, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4266932970, - "lat": 50.4776449, - "lon": -4.7021688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL31 196D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4266932971, - "lat": 50.5075879, - "lon": -4.6649248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4267081721, - "lat": 56.0029512, - "lon": -4.7281323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "G84 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4267145190, - "lat": 57.6569829, - "lon": -1.9110008, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4267167755, - "lat": 57.5779751, - "lon": -2.8729418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB55 56" - } -}, -{ - "type": "node", - "id": 4267229967, - "lat": 57.4896596, - "lon": -2.8590640, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB54 54" - } -}, -{ - "type": "node", - "id": 4267266600, - "lat": 51.0449462, - "lon": -1.5507746, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO51 534", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4267310450, - "lat": 54.1492501, - "lon": -0.8494358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO17 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4267502058, - "lat": 50.8275553, - "lon": -0.7417733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4268168492, - "lat": 55.3924675, - "lon": -1.6298985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE66 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4268819212, - "lat": 52.3788513, - "lon": -2.2503800, - "tags": { - "amenity": "post_box", - "ref": "DY10 54" - } -}, -{ - "type": "node", - "id": 4269013155, - "lat": 57.3100900, - "lon": -2.6246719, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4269489051, - "lat": 55.3719451, - "lon": -1.6363417, - "tags": { - "amenity": "post_box", - "ref": "NE66 40" - } -}, -{ - "type": "node", - "id": 4269505172, - "lat": 55.3682684, - "lon": -1.6753479, - "tags": { - "amenity": "post_box", - "ref": "NE66 119" - } -}, -{ - "type": "node", - "id": 4269533110, - "lat": 55.3710095, - "lon": -1.6874472, - "tags": { - "amenity": "post_box", - "ref": "NE66 117" - } -}, -{ - "type": "node", - "id": 4269642932, - "lat": 55.4031114, - "lon": -1.6911400, - "tags": { - "amenity": "post_box", - "ref": "NE66 143" - } -}, -{ - "type": "node", - "id": 4269642950, - "lat": 55.4081760, - "lon": -1.6896090, - "tags": { - "amenity": "post_box", - "mapillary": "248018761062589", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "NE66 129" - } -}, -{ - "type": "node", - "id": 4269812065, - "lat": 55.4087676, - "lon": -1.6942961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE66 31" - } -}, -{ - "type": "node", - "id": 4269834729, - "lat": 52.6244718, - "lon": 1.0013033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR9 943", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4269834749, - "lat": 52.6277238, - "lon": 0.9861386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 920", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4269856501, - "lat": 52.6148385, - "lon": 0.9830996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 930D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4269864810, - "lat": 55.4023826, - "lon": -1.7028441, - "tags": { - "amenity": "post_box", - "ref": "NE66 46" - } -}, -{ - "type": "node", - "id": 4270707956, - "lat": 53.4364302, - "lon": -0.8287516, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4271345585, - "lat": 55.4089253, - "lon": -1.7197838, - "tags": { - "amenity": "post_box", - "ref": "NE66 54" - } -}, -{ - "type": "node", - "id": 4271345691, - "lat": 55.4111171, - "lon": -1.7160742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE66 12" - } -}, -{ - "type": "node", - "id": 4271348371, - "lat": 55.4137732, - "lon": -1.7147509, - "tags": { - "amenity": "post_box", - "ref": "NE66 29" - } -}, -{ - "type": "node", - "id": 4271451529, - "lat": 55.4227287, - "lon": -1.7188578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NE66 85", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4271451531, - "lat": 55.4218021, - "lon": -1.6781272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "NE66 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4271455716, - "lat": 55.4412308, - "lon": -1.6358087, - "tags": { - "amenity": "post_box", - "ref": "NE66 141" - } -}, -{ - "type": "node", - "id": 4271464516, - "lat": 55.4597319, - "lon": -1.6673971, - "tags": { - "amenity": "post_box", - "ref": "NE66 68" - } -}, -{ - "type": "node", - "id": 4271477439, - "lat": 55.4754720, - "lon": -1.6797988, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 65", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4271489756, - "lat": 55.4782805, - "lon": -1.7094044, - "tags": { - "amenity": "post_box", - "ref": "NE66 72" - } -}, -{ - "type": "node", - "id": 4271505723, - "lat": 55.4759302, - "lon": -1.7421117, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "NE66 70" - } -}, -{ - "type": "node", - "id": 4271518427, - "lat": 55.5715550, - "lon": -1.9567428, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NE66 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4271528364, - "lat": 55.5513196, - "lon": -1.8958110, - "tags": { - "amenity": "post_box", - "ref": "NE66 80" - } -}, -{ - "type": "node", - "id": 4271534188, - "lat": 55.5125538, - "lon": -1.9591055, - "tags": { - "amenity": "post_box", - "ref": "NE66 152" - } -}, -{ - "type": "node", - "id": 4271540300, - "lat": 55.5065770, - "lon": -1.9702835, - "tags": { - "amenity": "post_box", - "ref": "NE66 121" - } -}, -{ - "type": "node", - "id": 4271540305, - "lat": 55.5039218, - "lon": -2.0063461, - "tags": { - "amenity": "post_box", - "ref": "NE66 27" - } -}, -{ - "type": "node", - "id": 4271544410, - "lat": 55.4907673, - "lon": -1.9761680, - "tags": { - "amenity": "post_box", - "ref": "NE66 22" - } -}, -{ - "type": "node", - "id": 4271544417, - "lat": 55.4770121, - "lon": -1.9625471, - "tags": { - "amenity": "post_box", - "ref": "NE66 15" - } -}, -{ - "type": "node", - "id": 4272201265, - "lat": 54.0132212, - "lon": -1.5308151, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4272968316, - "lat": 55.4044792, - "lon": -1.9977651, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NE66 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4272993237, - "lat": 55.3914240, - "lon": -2.0094760, - "tags": { - "amenity": "post_box", - "ref": "NE66 4" - } -}, -{ - "type": "node", - "id": 4273012164, - "lat": 55.3795428, - "lon": -2.0187663, - "tags": { - "amenity": "post_box", - "ref": "NE66 184" - } -}, -{ - "type": "node", - "id": 4273060914, - "lat": 55.4242905, - "lon": -1.8895648, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 60" - } -}, -{ - "type": "node", - "id": 4273061167, - "lat": 55.4025984, - "lon": -1.9234804, - "tags": { - "amenity": "post_box", - "ref": "NE66 170" - } -}, -{ - "type": "node", - "id": 4273061176, - "lat": 55.4115212, - "lon": -1.9111349, - "tags": { - "amenity": "post_box", - "ref": "NE66 50" - } -}, -{ - "type": "node", - "id": 4273077528, - "lat": 55.3815620, - "lon": -1.8523706, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 150" - } -}, -{ - "type": "node", - "id": 4273124667, - "lat": 55.4587087, - "lon": -1.8729173, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "NE66 53" - } -}, -{ - "type": "node", - "id": 4273220842, - "lat": 55.4875724, - "lon": -1.8963054, - "tags": { - "amenity": "post_box", - "ref": "NE66 73D" - } -}, -{ - "type": "node", - "id": 4273224091, - "lat": 55.4762129, - "lon": -1.8924341, - "tags": { - "amenity": "post_box", - "ref": "NE66 19" - } -}, -{ - "type": "node", - "id": 4273465293, - "lat": 55.5234511, - "lon": -2.0190365, - "tags": { - "amenity": "post_box", - "ref": "NE71 32" - } -}, -{ - "type": "node", - "id": 4273465333, - "lat": 55.5474963, - "lon": -1.9375674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE71 82", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4273482489, - "lat": 55.5601218, - "lon": -1.9358770, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-28", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE71 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4273552001, - "lat": 55.5487533, - "lon": -2.1680051, - "tags": { - "amenity": "post_box", - "ref": "NE71 37" - } -}, -{ - "type": "node", - "id": 4273560855, - "lat": 55.5734293, - "lon": -2.1003849, - "tags": { - "amenity": "post_box", - "ref": "NE71 9" - } -}, -{ - "type": "node", - "id": 4273560856, - "lat": 55.5785558, - "lon": -2.0549778, - "tags": { - "amenity": "post_box", - "ref": "NE71 36" - } -}, -{ - "type": "node", - "id": 4273575278, - "lat": 55.5988083, - "lon": -2.0472443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE71 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4273576539, - "lat": 55.6115329, - "lon": -2.0701496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:priority": "yes", - "post_box:type": "lamp", - "ref": "NE71 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19" - } -}, -{ - "type": "node", - "id": 4273600591, - "lat": 55.5984622, - "lon": -2.1046930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE71 69" - } -}, -{ - "type": "node", - "id": 4275244631, - "lat": 55.3146742, - "lon": -1.9575435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE65 118" - } -}, -{ - "type": "node", - "id": 4275254069, - "lat": 55.3146129, - "lon": -1.9510755, - "tags": { - "amenity": "post_box", - "ref": "NE65 150" - } -}, -{ - "type": "node", - "id": 4275271516, - "lat": 55.3162358, - "lon": -2.0044763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "200513145232431", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE65 125", - "survey:date": "2020-02-17" - } -}, -{ - "type": "node", - "id": 4275324888, - "lat": 55.3070356, - "lon": -2.0121877, - "tags": { - "amenity": "post_box", - "ref": "NE65 102" - } -}, -{ - "type": "node", - "id": 4275325625, - "lat": 55.2991778, - "lon": -2.0283621, - "tags": { - "amenity": "post_box", - "ref": "NE65 100" - } -}, -{ - "type": "node", - "id": 4275336073, - "lat": 55.2983709, - "lon": -2.0533691, - "tags": { - "amenity": "post_box", - "ref": "NE65 211" - } -}, -{ - "type": "node", - "id": 4275424335, - "lat": 55.3284839, - "lon": -2.0699570, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE65 188" - } -}, -{ - "type": "node", - "id": 4275427281, - "lat": 55.3361848, - "lon": -2.1053302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE65 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4275465226, - "lat": 55.3580872, - "lon": -2.1140518, - "tags": { - "amenity": "post_box", - "ref": "NE65 170" - } -}, -{ - "type": "node", - "id": 4275585570, - "lat": 52.3744648, - "lon": -2.5988855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SY8 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-30" - } -}, -{ - "type": "node", - "id": 4275585571, - "lat": 52.3782018, - "lon": -2.6161931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY8 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-06-30" - } -}, -{ - "type": "node", - "id": 4275635462, - "lat": 55.3506981, - "lon": -2.1717444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "NE65 186D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4275635471, - "lat": 55.3901641, - "lon": -2.2123544, - "tags": { - "amenity": "post_box", - "ref": "NE65 111" - } -}, -{ - "type": "node", - "id": 4275663844, - "lat": 55.3251922, - "lon": -1.9630838, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE65 87" - } -}, -{ - "type": "node", - "id": 4275671807, - "lat": 55.3345808, - "lon": -1.9965309, - "tags": { - "amenity": "post_box", - "ref": "NE65 135" - } -}, -{ - "type": "node", - "id": 4275680952, - "lat": 55.3442612, - "lon": -1.9869389, - "tags": { - "amenity": "post_box", - "ref": "NE65 133" - } -}, -{ - "type": "node", - "id": 4275681006, - "lat": 55.3629098, - "lon": -2.0191498, - "tags": { - "amenity": "post_box", - "ref": "NE65 89" - } -}, -{ - "type": "node", - "id": 4275686719, - "lat": 55.3491544, - "lon": -2.0316226, - "tags": { - "amenity": "post_box", - "ref": "NE65 127" - } -}, -{ - "type": "node", - "id": 4275692322, - "lat": 55.3683993, - "lon": -2.0638241, - "tags": { - "amenity": "post_box", - "ref": "NE65 164" - } -}, -{ - "type": "node", - "id": 4277037531, - "lat": 56.8992108, - "lon": -2.7546874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD9 57", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4278469301, - "lat": 52.1387295, - "lon": -0.9876296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 567", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4278469302, - "lat": 52.1430483, - "lon": -0.9722230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN12 365", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4278578902, - "lat": 50.7714389, - "lon": -0.7857486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4278580219, - "lat": 50.7667844, - "lon": -0.8560293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4278582277, - "lat": 50.7602111, - "lon": -0.8522836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 376D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4278606016, - "lat": 50.7565409, - "lon": -0.8475683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "note": "Coming from East Bracklesham Drive, this postbox is onside the gated caravan park. On foot one needs to walk along the public footpath alongside and turn right; in a car one has to press the intercom to gain access.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4278608727, - "lat": 50.7593238, - "lon": -0.8540405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4278778506, - "lat": 50.7126659, - "lon": -3.0398587, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX12 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4278827314, - "lat": 52.3048948, - "lon": -0.6918471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4279060391, - "lat": 56.1465397, - "lon": -3.9197318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK9 86", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279060395, - "lat": 56.1492050, - "lon": -3.9191333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK9 184D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279060402, - "lat": 56.1517559, - "lon": -3.9349401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "FK9 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4279060403, - "lat": 56.1517320, - "lon": -3.9400548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FK9 201", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279099520, - "lat": 55.3972498, - "lon": -4.5843916, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA6 138D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279099586, - "lat": 55.3975145, - "lon": -4.5918075, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA6 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279122159, - "lat": 55.4464142, - "lon": -4.4974969, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA6 33", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279192936, - "lat": 55.2197166, - "lon": -3.4105348, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG11 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279230153, - "lat": 54.0843003, - "lon": -1.3958137, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO51 540D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4279253848, - "lat": 57.8870858, - "lon": -4.0789154, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "IV25 277", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4279253862, - "lat": 57.8852135, - "lon": -4.0627330, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV25 312", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4279754166, - "lat": 51.4550074, - "lon": -1.2149962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG18 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4279949719, - "lat": 51.5588218, - "lon": -1.9811072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281308748, - "lat": 57.6716004, - "lon": -2.4854370, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AB44 17D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4281322876, - "lat": 51.8709535, - "lon": -4.1027012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA32 294", - "post_box:type": "lamp", - "ref": "SA32 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281322878, - "lat": 51.9433614, - "lon": -3.9622779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA19 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281322880, - "lat": 51.9594529, - "lon": -4.0810269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "post_box:type": "wall", - "ref": "SA32 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281322883, - "lat": 51.9829751, - "lon": -4.0615152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA32 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281322884, - "lat": 51.9885788, - "lon": -3.9917253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA19 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281322887, - "lat": 51.9982402, - "lon": -4.0343375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA19 390", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4281322888, - "lat": 52.0089250, - "lon": -4.0101877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA19 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281325034, - "lat": 57.6674190, - "lon": -2.4993331, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB44 39D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4281339064, - "lat": 57.6628812, - "lon": -2.4870925, - "tags": { - "amenity": "post_box", - "note": "label damaged", - "post_box:type": "lamp", - "ref": "AB44 633", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4281339086, - "lat": 57.6651925, - "lon": -2.4886204, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AB44 12D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4281339095, - "lat": 57.6679555, - "lon": -2.4915332, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB44 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4281339098, - "lat": 57.6698676, - "lon": -2.4915949, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB44 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4281348019, - "lat": 57.6702383, - "lon": -2.4968885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "note:collection_times": "all the postboxes around Macduff say the last collection in Macduff is at the post office collection box at 16:00, but checked with the postmistress at the post office and the collection is definitely after 17:15 as stated on the box", - "post_box:type": "wall", - "ref": "AB44 46", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4281386623, - "lat": 57.6695003, - "lon": -2.5318898, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB45 6D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4281658078, - "lat": 55.3982867, - "lon": -1.6281778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "NE66 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4281660104, - "lat": 55.4175588, - "lon": -1.8322182, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE66 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4281673204, - "lat": 55.3960673, - "lon": -1.8099651, - "tags": { - "amenity": "post_box", - "ref": "NE66 186" - } -}, -{ - "type": "node", - "id": 4281673230, - "lat": 55.3743706, - "lon": -1.8266650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE66 64D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4281673231, - "lat": 55.4481844, - "lon": -1.9349182, - "tags": { - "amenity": "post_box", - "ref": "NE66 17" - } -}, -{ - "type": "node", - "id": 4281684255, - "lat": 55.4766560, - "lon": -1.9374038, - "tags": { - "amenity": "post_box", - "ref": "NE66 38" - } -}, -{ - "type": "node", - "id": 4281879751, - "lat": 55.3595171, - "lon": -2.0076753, - "tags": { - "amenity": "post_box", - "ref": "NE65 137" - } -}, -{ - "type": "node", - "id": 4281901948, - "lat": 55.3031084, - "lon": -1.9467870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "376104094796009", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NE65 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-12-19" - } -}, -{ - "type": "node", - "id": 4281939142, - "lat": 55.3099149, - "lon": -1.9331341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00", - "mapillary": "697864855771588", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NE65 195", - "royal_cypher": "EIIR", - "survey:date": "2023-12-11" - } -}, -{ - "type": "node", - "id": 4281939211, - "lat": 55.3096352, - "lon": -1.9232805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "730376115701352", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE65 153", - "survey:date": "2023-12-11" - } -}, -{ - "type": "node", - "id": 4283025794, - "lat": 50.9123104, - "lon": -1.4955473, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 431D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4283047864, - "lat": 50.9076758, - "lon": -1.5048707, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283054192, - "lat": 50.9151801, - "lon": -1.4867452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283056128, - "lat": 50.9072788, - "lon": -1.5002903, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 794", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283070108, - "lat": 50.9124168, - "lon": -1.4843486, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283121430, - "lat": 50.8926304, - "lon": -1.4476037, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283126838, - "lat": 50.8956672, - "lon": -1.4466676, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 789", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283137519, - "lat": 50.8906855, - "lon": -1.4511965, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 729", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283139858, - "lat": 50.8886179, - "lon": -1.4508385, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 650D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283149326, - "lat": 50.8871119, - "lon": -1.4555216, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283352412, - "lat": 51.5893595, - "lon": -0.1449895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:45", - "mapillary": "5001447873305309", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "gps+mapnoter", - "survey:date": "2022-05-22" - } -}, -{ - "type": "node", - "id": 4283365261, - "lat": 51.5881364, - "lon": -0.1409207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 4283390653, - "lat": 57.6653679, - "lon": -2.5236322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB45 363", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4283390665, - "lat": 57.6665112, - "lon": -2.5302850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "AB45 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4283390700, - "lat": 57.6640267, - "lon": -2.5217465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AB45 45", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4283436969, - "lat": 57.6661985, - "lon": -2.5364327, - "tags": { - "addr:city": "Banff", - "addr:country": "GB", - "addr:postcode": "AB45 1FH", - "addr:street": "Meavie Place", - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB45 10D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4283437112, - "lat": 57.6630787, - "lon": -2.5343420, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB45 11D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4283437154, - "lat": 57.6614300, - "lon": -2.5244995, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB45 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4283437163, - "lat": 57.6649513, - "lon": -2.5257877, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB45 18D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4283440574, - "lat": 57.6633187, - "lon": -2.5296498, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB45 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4283943978, - "lat": 52.2977265, - "lon": -0.7014525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4283952443, - "lat": 55.3083009, - "lon": -1.9038417, - "tags": { - "amenity": "post_box", - "ref": "NE65 91" - } -}, -{ - "type": "node", - "id": 4283952444, - "lat": 55.3068349, - "lon": -1.9008530, - "tags": { - "amenity": "post_box", - "ref": "NE65 251" - } -}, -{ - "type": "node", - "id": 4283952465, - "lat": 55.3108482, - "lon": -1.9015943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE65 84" - } -}, -{ - "type": "node", - "id": 4283952470, - "lat": 55.3119866, - "lon": -1.9045201, - "tags": { - "amenity": "post_box", - "ref": "NE65 95" - } -}, -{ - "type": "node", - "id": 4283957942, - "lat": 55.3136721, - "lon": -1.9055883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "878208450409473", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NE65 191", - "survey:date": "2023-11-24" - } -}, -{ - "type": "node", - "id": 4283957947, - "lat": 55.3039335, - "lon": -1.9125133, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE65 93", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4283993644, - "lat": 57.5214480, - "lon": -2.7563062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB54 76", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4284022989, - "lat": 55.2734974, - "lon": -1.8616683, - "tags": { - "amenity": "post_box", - "ref": "NE65 146" - } -}, -{ - "type": "node", - "id": 4284042349, - "lat": 55.2416125, - "lon": -1.7656012, - "tags": { - "amenity": "post_box", - "ref": "NE65 232" - } -}, -{ - "type": "node", - "id": 4284042367, - "lat": 55.2461094, - "lon": -1.7693157, - "tags": { - "amenity": "post_box", - "ref": "NE65 33" - } -}, -{ - "type": "node", - "id": 4284044179, - "lat": 55.2465507, - "lon": -1.7660070, - "tags": { - "amenity": "post_box", - "ref": "NE65 94" - } -}, -{ - "type": "node", - "id": 4284097658, - "lat": 54.8724958, - "lon": -1.5635096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE38 689", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4284116716, - "lat": 54.8756834, - "lon": -1.5617092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE38 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4284128536, - "lat": 54.8801899, - "lon": -1.5472785, - "tags": { - "amenity": "post_box", - "ref": "NE38 670" - } -}, -{ - "type": "node", - "id": 4284128561, - "lat": 54.8787187, - "lon": -1.5531958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE38 775", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4284188451, - "lat": 54.8811696, - "lon": -1.5562224, - "tags": { - "amenity": "post_box", - "ref": "NE38 290" - } -}, -{ - "type": "node", - "id": 4284247834, - "lat": 54.8811073, - "lon": -1.5326108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NE38 196" - } -}, -{ - "type": "node", - "id": 4284382800, - "lat": 54.8851660, - "lon": -1.5391885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NE38 678" - } -}, -{ - "type": "node", - "id": 4284503605, - "lat": 54.9789549, - "lon": -1.6154905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4284587072, - "lat": 57.3440465, - "lon": -2.5423293, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4284587183, - "lat": 57.3450159, - "lon": -2.5499611, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4285765501, - "lat": 54.8910450, - "lon": -1.5390906, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE38 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4285767271, - "lat": 54.8901513, - "lon": -1.5510357, - "tags": { - "amenity": "post_box", - "ref": "NE38 615" - } -}, -{ - "type": "node", - "id": 4285770017, - "lat": 54.8955610, - "lon": -1.5398257, - "tags": { - "amenity": "post_box", - "ref": "NE38 370" - } -}, -{ - "type": "node", - "id": 4285770021, - "lat": 54.8976791, - "lon": -1.5461125, - "tags": { - "amenity": "post_box", - "ref": "NE38 675" - } -}, -{ - "type": "node", - "id": 4285773662, - "lat": 54.9008362, - "lon": -1.5518344, - "tags": { - "amenity": "post_box", - "ref": "NE38 190" - } -}, -{ - "type": "node", - "id": 4285773663, - "lat": 54.9007813, - "lon": -1.5518190, - "tags": { - "amenity": "post_box", - "ref": "NE38 739" - } -}, -{ - "type": "node", - "id": 4285954334, - "lat": 54.8805566, - "lon": -1.5156466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE38 502" - } -}, -{ - "type": "node", - "id": 4285996622, - "lat": 54.8828084, - "lon": -1.5198757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE38 361" - } -}, -{ - "type": "node", - "id": 4285996623, - "lat": 54.8858685, - "lon": -1.5192795, - "tags": { - "amenity": "post_box", - "ref": "NE38 496" - } -}, -{ - "type": "node", - "id": 4285996647, - "lat": 54.8854154, - "lon": -1.5082558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE38 501" - } -}, -{ - "type": "node", - "id": 4286067433, - "lat": 54.9025081, - "lon": -1.4913431, - "tags": { - "amenity": "post_box", - "ref": "NE38 516" - } -}, -{ - "type": "node", - "id": 4286067434, - "lat": 54.9027606, - "lon": -1.4907007, - "tags": { - "amenity": "post_box", - "ref": "NE38 687" - } -}, -{ - "type": "node", - "id": 4286076881, - "lat": 56.0726758, - "lon": -3.4669785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4286114045, - "lat": 54.9000739, - "lon": -1.5021841, - "tags": { - "amenity": "post_box", - "ref": "NE38 30" - } -}, -{ - "type": "node", - "id": 4286124482, - "lat": 54.9022047, - "lon": -1.5087812, - "tags": { - "amenity": "post_box", - "ref": "NE38 462" - } -}, -{ - "type": "node", - "id": 4286181694, - "lat": 56.0718134, - "lon": -3.4738995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4286181695, - "lat": 56.0741145, - "lon": -3.4752602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4286181750, - "lat": 56.0762823, - "lon": -3.4678175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4286726105, - "lat": 53.2511515, - "lon": -0.4437770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4286727210, - "lat": 56.0604689, - "lon": -3.5276959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 214D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4286730436, - "lat": 56.0596946, - "lon": -3.5401664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 114", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4287487409, - "lat": 54.9030208, - "lon": -1.5190467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE38 309" - } -}, -{ - "type": "node", - "id": 4287527405, - "lat": 54.8995018, - "lon": -1.5258873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE38 444", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4287568195, - "lat": 54.8935549, - "lon": -1.5235026, - "tags": { - "amenity": "post_box", - "ref": "NE38 620" - } -}, -{ - "type": "node", - "id": 4287575943, - "lat": 51.0354302, - "lon": -3.1436673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 08:00", - "colour": "red", - "direction": "ESE", - "drive_through": "no", - "name": "Langford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA2 6NY", - "ref": "TA2 62" - } -}, -{ - "type": "node", - "id": 4287575945, - "lat": 51.0418567, - "lon": -3.1278052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 09:00", - "colour": "red", - "direction": "E", - "name": "Smokey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA2 6SL", - "ref": "TA2 162" - } -}, -{ - "type": "node", - "id": 4287575946, - "lat": 51.0503504, - "lon": -3.1193662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 08:00", - "colour": "red", - "name": "Nailsbourne Hamlet", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA2 8AG", - "ref": "TA2 557" - } -}, -{ - "type": "node", - "id": 4287575947, - "lat": 51.0531952, - "lon": -3.0989396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 192", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4287575948, - "lat": 51.0598659, - "lon": -3.0929927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA2 578", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4287575949, - "lat": 51.0623928, - "lon": -3.1501418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30, Sa 11:30", - "colour": "red", - "direction": "S", - "name": "Fennington", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA2 8AS", - "ref": "TA2 454" - } -}, -{ - "type": "node", - "id": 4287617825, - "lat": 54.8961323, - "lon": -1.5172866, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE38 198D" - } -}, -{ - "type": "node", - "id": 4287713440, - "lat": 54.8954908, - "lon": -1.5086496, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE38 528" - } -}, -{ - "type": "node", - "id": 4287738219, - "lat": 54.8979693, - "lon": -1.5134398, - "tags": { - "amenity": "post_box", - "ref": "NE38 256" - } -}, -{ - "type": "node", - "id": 4287815665, - "lat": 57.4117591, - "lon": -2.5522355, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4287913131, - "lat": 57.3071391, - "lon": -2.4715530, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4288195675, - "lat": 54.9085781, - "lon": -1.5487627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE37 688", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4288195676, - "lat": 54.9055725, - "lon": -1.5540529, - "tags": { - "amenity": "post_box", - "ref": "NE37 311" - } -}, -{ - "type": "node", - "id": 4288338524, - "lat": 54.9117531, - "lon": -1.5408866, - "tags": { - "amenity": "post_box", - "ref": "NE37 184" - } -}, -{ - "type": "node", - "id": 4288386060, - "lat": 54.9084373, - "lon": -1.5371457, - "tags": { - "amenity": "post_box", - "ref": "NE37 31" - } -}, -{ - "type": "node", - "id": 4288806691, - "lat": 56.0716953, - "lon": -3.4564341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY12 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4289320425, - "lat": 56.0025396, - "lon": -3.7196233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 109", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4289630617, - "lat": 55.7004152, - "lon": -3.6257160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ML11 89", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4290236814, - "lat": 54.9113896, - "lon": -1.5109063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE37 740", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4290236852, - "lat": 54.9133153, - "lon": -1.5090101, - "tags": { - "amenity": "post_box", - "ref": "NE37 308" - } -}, -{ - "type": "node", - "id": 4290314915, - "lat": 54.9130400, - "lon": -1.5117616, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE37 267" - } -}, -{ - "type": "node", - "id": 4290316629, - "lat": 54.9175702, - "lon": -1.5092612, - "tags": { - "amenity": "post_box", - "ref": "NE37 131" - } -}, -{ - "type": "node", - "id": 4290468398, - "lat": 54.9227940, - "lon": -1.5286073, - "tags": { - "amenity": "post_box", - "ref": "NE37 684" - } -}, -{ - "type": "node", - "id": 4290502490, - "lat": 54.9182284, - "lon": -1.5366647, - "tags": { - "amenity": "post_box", - "ref": "NE37 446" - } -}, -{ - "type": "node", - "id": 4290502493, - "lat": 54.9148484, - "lon": -1.5416218, - "tags": { - "amenity": "post_box", - "ref": "NE37 135" - } -}, -{ - "type": "node", - "id": 4290502570, - "lat": 54.9135921, - "lon": -1.5358253, - "tags": { - "amenity": "post_box", - "ref": "NE37 353" - } -}, -{ - "type": "node", - "id": 4290534407, - "lat": 54.9161141, - "lon": -1.5307397, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE37 635" - } -}, -{ - "type": "node", - "id": 4290704340, - "lat": 54.9185446, - "lon": -1.5259848, - "tags": { - "amenity": "post_box", - "ref": "NE37 585" - } -}, -{ - "type": "node", - "id": 4290721950, - "lat": 54.9191985, - "lon": -1.5234518, - "tags": { - "amenity": "post_box", - "ref": "NE37 661" - } -}, -{ - "type": "node", - "id": 4290721951, - "lat": 54.9150769, - "lon": -1.5171996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE37 685", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4290901850, - "lat": 54.9427694, - "lon": -1.4535119, - "tags": { - "amenity": "post_box", - "ref": "NE36 306" - } -}, -{ - "type": "node", - "id": 4290970399, - "lat": 54.9463376, - "lon": -1.4513195, - "tags": { - "amenity": "post_box", - "ref": "NE36 278" - } -}, -{ - "type": "node", - "id": 4290999702, - "lat": 54.9469112, - "lon": -1.4436346, - "tags": { - "amenity": "post_box", - "ref": "NE35 69" - } -}, -{ - "type": "node", - "id": 4291018401, - "lat": 54.9455706, - "lon": -1.4377472, - "tags": { - "amenity": "post_box", - "ref": "NE36 480" - } -}, -{ - "type": "node", - "id": 4291989420, - "lat": 55.6072554, - "lon": -3.7896399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML11 62D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4293682998, - "lat": 50.7657381, - "lon": -2.0046957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 158D", - "ref:GB:uprn": "10015348651", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4293683009, - "lat": 50.7630499, - "lon": -2.0039487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 101D", - "ref:GB:uprn": "10015807315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4293776739, - "lat": 53.3808329, - "lon": -1.4874613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15", - "indoor": "yes", - "material": "plastic", - "post_box:type": "pillar", - "ref": "S10 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4293776743, - "lat": 53.3803834, - "lon": -1.4843780, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-01", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "S3 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4294149590, - "lat": 52.0182585, - "lon": 1.2356548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP10 1374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4294212823, - "lat": 53.9015242, - "lon": -2.9537390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4294218331, - "lat": 52.7400025, - "lon": -1.8649208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "pillar", - "ref": "WS15 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4294507247, - "lat": 55.6754006, - "lon": -3.8020931, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4294784080, - "lat": 53.4423509, - "lon": -0.8534815, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4295416377, - "lat": 53.8258862, - "lon": -1.6940544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS28 873D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 4295416383, - "lat": 53.8288835, - "lon": -1.6861191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LS28 714D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4295446658, - "lat": 51.9047487, - "lon": -3.8112715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA19 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4295446663, - "lat": 51.9179393, - "lon": -3.7854295, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA19 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4295754372, - "lat": 54.9039808, - "lon": -1.5466994, - "tags": { - "amenity": "post_box", - "ref": "NE37 452" - } -}, -{ - "type": "node", - "id": 4295756764, - "lat": 54.9429356, - "lon": -1.4436972, - "tags": { - "amenity": "post_box", - "ref": "NE36 194" - } -}, -{ - "type": "node", - "id": 4296092330, - "lat": 54.9445512, - "lon": -1.4275455, - "tags": { - "amenity": "post_box", - "ref": "NE36 70" - } -}, -{ - "type": "node", - "id": 4296092381, - "lat": 54.9460390, - "lon": -1.4226951, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE36 115" - } -}, -{ - "type": "node", - "id": 4296451289, - "lat": 54.9758285, - "lon": -1.3889491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4296524956, - "lat": 54.9732737, - "lon": -1.3968137, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4296546908, - "lat": 54.9685666, - "lon": -1.3972563, - "tags": { - "amenity": "post_box", - "ref": "NE34 72" - } -}, -{ - "type": "node", - "id": 4296546919, - "lat": 54.9653754, - "lon": -1.3994785, - "tags": { - "amenity": "post_box", - "ref": "NE34 81" - } -}, -{ - "type": "node", - "id": 4296557970, - "lat": 54.9647605, - "lon": -1.4078089, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4296590784, - "lat": 54.9682789, - "lon": -1.4120619, - "tags": { - "amenity": "post_box", - "ref": "NE34 59" - } -}, -{ - "type": "node", - "id": 4296590785, - "lat": 54.9711299, - "lon": -1.4045161, - "tags": { - "amenity": "post_box", - "ref": "NE34 56" - } -}, -{ - "type": "node", - "id": 4296631820, - "lat": 54.9718672, - "lon": -1.4127629, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4296656065, - "lat": 54.9719102, - "lon": -1.4104225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 54", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4296695694, - "lat": 54.9752527, - "lon": -1.3954436, - "tags": { - "amenity": "post_box", - "ref": "NE34 4" - } -}, -{ - "type": "node", - "id": 4296908020, - "lat": 53.8417742, - "lon": -1.6763724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS19 969", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;survey" - } -}, -{ - "type": "node", - "id": 4297008533, - "lat": 56.7125679, - "lon": -3.7084496, - "tags": { - "amenity": "post_box", - "ref": "PH16 5", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4297008572, - "lat": 56.7238222, - "lon": -3.5049527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:50", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 143", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4297018014, - "lat": 56.6453761, - "lon": -3.3428450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 6", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4297018017, - "lat": 56.5962586, - "lon": -3.3363171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH10 164D" - } -}, -{ - "type": "node", - "id": 4297044367, - "lat": 56.6242905, - "lon": -3.2354184, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH11 85D", - "royal_cypher": "EVIIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4297044368, - "lat": 56.6198527, - "lon": -3.2272306, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH11 128D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4297063442, - "lat": 51.4774648, - "lon": 0.1279645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 2", - "source": "bing" - } -}, -{ - "type": "node", - "id": 4297075344, - "lat": 51.4671171, - "lon": 0.1764822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4297085704, - "lat": 51.4610218, - "lon": 0.1267924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 133", - "source": "bing" - } -}, -{ - "type": "node", - "id": 4297089788, - "lat": 51.4639366, - "lon": 0.1402030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 136" - } -}, -{ - "type": "node", - "id": 4297103507, - "lat": 51.4606442, - "lon": 0.1530575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 138" - } -}, -{ - "type": "node", - "id": 4297106635, - "lat": 51.4595086, - "lon": 0.1359966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA7 139" - } -}, -{ - "type": "node", - "id": 4297112377, - "lat": 51.4676704, - "lon": 0.1423629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 142" - } -}, -{ - "type": "node", - "id": 4297120394, - "lat": 51.4654147, - "lon": 0.1380794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 144" - } -}, -{ - "type": "node", - "id": 4297122323, - "lat": 51.4591326, - "lon": 0.1662613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 189" - } -}, -{ - "type": "node", - "id": 4297125312, - "lat": 51.4600997, - "lon": 0.1608869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 211" - } -}, -{ - "type": "node", - "id": 4297127143, - "lat": 51.4675196, - "lon": 0.1297914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 213" - } -}, -{ - "type": "node", - "id": 4297130075, - "lat": 51.4573725, - "lon": 0.1495598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 215" - } -}, -{ - "type": "node", - "id": 4297131885, - "lat": 51.4658120, - "lon": 0.1462070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 218" - } -}, -{ - "type": "node", - "id": 4297132263, - "lat": 51.4638848, - "lon": 0.1325677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 258" - } -}, -{ - "type": "node", - "id": 4297136897, - "lat": 51.4634868, - "lon": 0.1596637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 219" - } -}, -{ - "type": "node", - "id": 4297138052, - "lat": 51.4683970, - "lon": 0.1336328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 223" - } -}, -{ - "type": "node", - "id": 4297139892, - "lat": 51.4640485, - "lon": 0.1546610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 231D" - } -}, -{ - "type": "node", - "id": 4297142206, - "lat": 51.4655564, - "lon": 0.1637514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 241" - } -}, -{ - "type": "node", - "id": 4297143634, - "lat": 51.4664316, - "lon": 0.1579343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 248" - } -}, -{ - "type": "node", - "id": 4297146942, - "lat": 51.4621024, - "lon": 0.1475294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 249" - } -}, -{ - "type": "node", - "id": 4297147360, - "lat": 51.4738161, - "lon": 0.1266833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 250" - } -}, -{ - "type": "node", - "id": 4297147859, - "lat": 51.4624999, - "lon": 0.1639697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 252" - } -}, -{ - "type": "node", - "id": 4297153859, - "lat": 51.4635819, - "lon": 0.1755354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 259" - } -}, -{ - "type": "node", - "id": 4297160121, - "lat": 51.4638004, - "lon": 0.1665660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 260" - } -}, -{ - "type": "node", - "id": 4297162396, - "lat": 51.4689064, - "lon": 0.1642795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 265" - } -}, -{ - "type": "node", - "id": 4297174167, - "lat": 51.4695835, - "lon": 0.1560692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 279" - } -}, -{ - "type": "node", - "id": 4297177259, - "lat": 51.4770222, - "lon": 0.1219649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 285" - } -}, -{ - "type": "node", - "id": 4297183318, - "lat": 51.4731226, - "lon": 0.1412621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 287" - } -}, -{ - "type": "node", - "id": 4297184796, - "lat": 51.4542222, - "lon": 0.1643854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 297" - } -}, -{ - "type": "node", - "id": 4297185243, - "lat": 51.4664932, - "lon": 0.1685629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 318" - } -}, -{ - "type": "node", - "id": 4297188554, - "lat": 51.4716941, - "lon": 0.1343755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 323" - } -}, -{ - "type": "node", - "id": 4297188609, - "lat": 51.4687408, - "lon": 0.1488158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 319" - } -}, -{ - "type": "node", - "id": 4297193861, - "lat": 51.4769742, - "lon": 0.1328762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 324" - } -}, -{ - "type": "node", - "id": 4297195036, - "lat": 51.4650256, - "lon": 0.1729390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 334" - } -}, -{ - "type": "node", - "id": 4297197788, - "lat": 51.4767032, - "lon": 0.1448764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA7 336" - } -}, -{ - "type": "node", - "id": 4297198226, - "lat": 51.4591394, - "lon": 0.1565537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA7 404" - } -}, -{ - "type": "node", - "id": 4297201924, - "lat": 51.4631728, - "lon": 0.1349614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA7 1" - } -}, -{ - "type": "node", - "id": 4298017907, - "lat": 54.9773395, - "lon": -1.4132395, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 53" - } -}, -{ - "type": "node", - "id": 4298486016, - "lat": 54.9807659, - "lon": -1.3976623, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4298489386, - "lat": 54.9776426, - "lon": -1.4032313, - "tags": { - "amenity": "post_box", - "ref": "NE34 36" - } -}, -{ - "type": "node", - "id": 4298539818, - "lat": 54.9783603, - "lon": -1.3851792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4298646158, - "lat": 54.9482403, - "lon": -1.4628098, - "tags": { - "amenity": "post_box", - "ref": "NE35 707" - } -}, -{ - "type": "node", - "id": 4298646171, - "lat": 54.9478029, - "lon": -1.4608621, - "tags": { - "amenity": "post_box", - "ref": "NE35 289" - } -}, -{ - "type": "node", - "id": 4298733204, - "lat": 54.9499491, - "lon": -1.4545724, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE35 501", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4298733205, - "lat": 54.9506856, - "lon": -1.4409652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE35 543" - } -}, -{ - "type": "node", - "id": 4298914149, - "lat": 51.4736992, - "lon": 0.1622458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 120" - } -}, -{ - "type": "node", - "id": 4298922677, - "lat": 51.4753101, - "lon": 0.1574299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DA8 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4298924506, - "lat": 51.4785339, - "lon": 0.1555691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 126" - } -}, -{ - "type": "node", - "id": 4298931420, - "lat": 51.4843824, - "lon": 0.1526643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4298950915, - "lat": 51.4763540, - "lon": 0.1734588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 156" - } -}, -{ - "type": "node", - "id": 4298956791, - "lat": 51.4796791, - "lon": 0.1669765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 158" - } -}, -{ - "type": "node", - "id": 4298961539, - "lat": 51.4648172, - "lon": 0.1843086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 159" - } -}, -{ - "type": "node", - "id": 4298967097, - "lat": 51.4778635, - "lon": 0.1732392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA8 161" - } -}, -{ - "type": "node", - "id": 4298969559, - "lat": 51.4790202, - "lon": 0.1719772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 164" - } -}, -{ - "type": "node", - "id": 4298970329, - "lat": 51.4720356, - "lon": 0.1812120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 163" - } -}, -{ - "type": "node", - "id": 4298973252, - "lat": 51.4670313, - "lon": 0.1814494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 165" - } -}, -{ - "type": "node", - "id": 4298976884, - "lat": 51.4682305, - "lon": 0.1906259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 167" - } -}, -{ - "type": "node", - "id": 4298980693, - "lat": 51.4703825, - "lon": 0.1795276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA8 400" - } -}, -{ - "type": "node", - "id": 4298986137, - "lat": 51.4718632, - "lon": 0.1756719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 362" - } -}, -{ - "type": "node", - "id": 4298988905, - "lat": 51.4725792, - "lon": 0.1714816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 373" - } -}, -{ - "type": "node", - "id": 4298996992, - "lat": 51.4749132, - "lon": 0.1669500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA8 375" - } -}, -{ - "type": "node", - "id": 4298998248, - "lat": 51.4777702, - "lon": 0.1633169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 220" - } -}, -{ - "type": "node", - "id": 4298999968, - "lat": 51.4720220, - "lon": 0.1507535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 275" - } -}, -{ - "type": "node", - "id": 4299001272, - "lat": 51.4819779, - "lon": 0.1588418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 390" - } -}, -{ - "type": "node", - "id": 4299002025, - "lat": 51.4716979, - "lon": 0.1877854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 406" - } -}, -{ - "type": "node", - "id": 4299009169, - "lat": 51.4715367, - "lon": 0.1701003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 178" - } -}, -{ - "type": "node", - "id": 4300471247, - "lat": 54.9537902, - "lon": -1.4646501, - "tags": { - "amenity": "post_box", - "ref": "NE35 463" - } -}, -{ - "type": "node", - "id": 4300510959, - "lat": 54.9539953, - "lon": -1.4713302, - "tags": { - "amenity": "post_box", - "ref": "NE35 696" - } -}, -{ - "type": "node", - "id": 4300510964, - "lat": 54.9565798, - "lon": -1.4613075, - "tags": { - "amenity": "post_box", - "ref": "NE35 698" - } -}, -{ - "type": "node", - "id": 4300582216, - "lat": 50.3597062, - "lon": -4.7432930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL24 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4301226090, - "lat": 51.7802547, - "lon": -2.6072728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4301254221, - "lat": 57.1838325, - "lon": -2.1016718, - "tags": { - "addr:postcode": "AB23 8QN", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AB23 492D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4302617030, - "lat": 53.4809302, - "lon": -2.2488931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "mapillary": "485521312692456", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M3 239", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4302915828, - "lat": 51.1084640, - "lon": -0.2174400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH11 111" - } -}, -{ - "type": "node", - "id": 4303141037, - "lat": 52.3023869, - "lon": -0.6767957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN8 1066", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4303141038, - "lat": 52.3023920, - "lon": -0.6767362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4305209749, - "lat": 51.7427568, - "lon": -0.2437226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AL4 51D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4305209757, - "lat": 51.7380595, - "lon": -0.2529860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4305209766, - "lat": 51.7370743, - "lon": -0.2498332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4305244029, - "lat": 53.7270452, - "lon": -0.4166716, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HU4 173D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4305244060, - "lat": 53.7333669, - "lon": -0.4022278, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4305547550, - "lat": 50.1386348, - "lon": -5.1036110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "ref": "TR11 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4306074599, - "lat": 51.2708143, - "lon": 0.3913255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 379D" - } -}, -{ - "type": "node", - "id": 4306074600, - "lat": 51.2724475, - "lon": 0.3877507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 267D" - } -}, -{ - "type": "node", - "id": 4306074601, - "lat": 51.2635135, - "lon": 0.3771602, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 85" - } -}, -{ - "type": "node", - "id": 4306075198, - "lat": 51.2564487, - "lon": 0.3695160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME18 198" - } -}, -{ - "type": "node", - "id": 4306075199, - "lat": 51.2580231, - "lon": 0.3753711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME18 258D" - } -}, -{ - "type": "node", - "id": 4306075200, - "lat": 51.2560660, - "lon": 0.4002340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 31" - } -}, -{ - "type": "node", - "id": 4306075201, - "lat": 51.2667692, - "lon": 0.4297766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME18 66" - } -}, -{ - "type": "node", - "id": 4306102191, - "lat": 51.2712812, - "lon": 0.4107800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME19 390" - } -}, -{ - "type": "node", - "id": 4306102192, - "lat": 51.2725142, - "lon": 0.4016991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME19 383" - } -}, -{ - "type": "node", - "id": 4306116789, - "lat": 51.2728070, - "lon": 0.4173043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 391D" - } -}, -{ - "type": "node", - "id": 4306116790, - "lat": 51.2734355, - "lon": 0.3970612, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-08", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "ME19 369", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4306116791, - "lat": 51.2655829, - "lon": 0.3936866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 371" - } -}, -{ - "type": "node", - "id": 4306116792, - "lat": 51.2675480, - "lon": 0.3905939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 372D" - } -}, -{ - "type": "node", - "id": 4306553217, - "lat": 51.4561847, - "lon": -2.5907921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "collection_times_checked": "2015-08-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS1 249", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4306582349, - "lat": 52.6063343, - "lon": -1.9179354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "ref": "WS9 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4307351992, - "lat": 51.5591084, - "lon": -0.6151632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 57D" - } -}, -{ - "type": "node", - "id": 4308584400, - "lat": 53.5933411, - "lon": -0.7399255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4308610172, - "lat": 53.5969767, - "lon": -0.7391609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4309614214, - "lat": 55.6998172, - "lon": -4.0280908, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4309695755, - "lat": 55.6764351, - "lon": -4.0678856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ML10 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4309956812, - "lat": 52.4148911, - "lon": -1.5304976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-06-26", - "old_ref": "CV6 209", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4310006919, - "lat": 52.2457412, - "lon": -0.6786632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4310114674, - "lat": 53.8453164, - "lon": -0.4307144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HU17 236" - } -}, -{ - "type": "node", - "id": 4310457093, - "lat": 52.6722918, - "lon": 0.9551959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR19 1940", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4310860717, - "lat": 54.9086488, - "lon": -1.5204328, - "tags": { - "amenity": "post_box", - "ref": "NE38 582" - } -}, -{ - "type": "node", - "id": 4310920957, - "lat": 54.9151198, - "lon": -1.5635073, - "tags": { - "amenity": "post_box", - "ref": "NE9 23" - } -}, -{ - "type": "node", - "id": 4311247031, - "lat": 50.7098530, - "lon": -3.4553133, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4311859478, - "lat": 54.0507810, - "lon": -1.7026876, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4311883064, - "lat": 54.0082651, - "lon": -1.5383112, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4311883077, - "lat": 54.0178493, - "lon": -1.5696467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey:Mapillary" - } -}, -{ - "type": "node", - "id": 4311906548, - "lat": 54.0888555, - "lon": -1.4995904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HG3 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4312427551, - "lat": 54.9501855, - "lon": -1.4716693, - "tags": { - "amenity": "post_box", - "ref": "NE35 711" - } -}, -{ - "type": "node", - "id": 4312438509, - "lat": 54.9799958, - "lon": -1.4083710, - "tags": { - "amenity": "post_box", - "ref": "NE34 60" - } -}, -{ - "type": "node", - "id": 4312506982, - "lat": 54.9631223, - "lon": -1.4298035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4312507229, - "lat": 54.9610420, - "lon": -1.4240405, - "tags": { - "amenity": "post_box", - "ref": "NE34 118" - } -}, -{ - "type": "node", - "id": 4312507265, - "lat": 54.9585890, - "lon": -1.4311333, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 83" - } -}, -{ - "type": "node", - "id": 4312517105, - "lat": 54.9582803, - "lon": -1.4369385, - "tags": { - "amenity": "post_box", - "ref": "NE34 69" - } -}, -{ - "type": "node", - "id": 4313054487, - "lat": 54.9613567, - "lon": -1.4491232, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 76" - } -}, -{ - "type": "node", - "id": 4313054499, - "lat": 54.9635479, - "lon": -1.4494207, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE34 37" - } -}, -{ - "type": "node", - "id": 4313087435, - "lat": 54.9626723, - "lon": -1.4407465, - "tags": { - "amenity": "post_box", - "ref": "NE34 79" - } -}, -{ - "type": "node", - "id": 4313112649, - "lat": 54.9627923, - "lon": -1.4367645, - "tags": { - "amenity": "post_box", - "ref": "NE34 57" - } -}, -{ - "type": "node", - "id": 4313352060, - "lat": 54.1339260, - "lon": -1.5160271, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4313578716, - "lat": 54.3812328, - "lon": -1.6922860, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4313578718, - "lat": 54.3873860, - "lon": -1.6961246, - "tags": { - "amenity": "post_box", - "ref": "DL9 80D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4313578733, - "lat": 54.3973612, - "lon": -1.7779358, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL11 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4313586619, - "lat": 54.3986740, - "lon": -1.7133734, - "tags": { - "amenity": "post_box", - "ref": "DL10 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4313640135, - "lat": 51.1852597, - "lon": -2.4772724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "is part of phone box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "phone_box", - "ref": "BA4 151", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4313660101, - "lat": 51.9234406, - "lon": -3.5530982, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4313678866, - "lat": 51.8373909, - "lon": -3.6750123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA9 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4313693378, - "lat": 51.8249010, - "lon": -3.6844193, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SA9 562", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4313741060, - "lat": 53.3526080, - "lon": -1.4013345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 666", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4313754241, - "lat": 53.1406585, - "lon": -1.8094561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SK17 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4313758615, - "lat": 51.4294983, - "lon": -2.8530370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS21 29", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4313778324, - "lat": 53.4150112, - "lon": -1.5016329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "covered": "yes", - "post_box:type": "pillar", - "ref": "S6 528", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314058688, - "lat": 54.9642261, - "lon": -1.4563911, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE34 119" - } -}, -{ - "type": "node", - "id": 4314070965, - "lat": 52.7119822, - "lon": -1.3713223, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE67 297", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314088604, - "lat": 54.9660214, - "lon": -1.4690466, - "tags": { - "amenity": "post_box", - "ref": "NE32 33" - } -}, -{ - "type": "node", - "id": 4314088635, - "lat": 54.9638247, - "lon": -1.4662615, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 497" - } -}, -{ - "type": "node", - "id": 4314109405, - "lat": 54.3754342, - "lon": -1.7079974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL9 90", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314132134, - "lat": 54.2471173, - "lon": -0.3812041, - "tags": { - "amenity": "post_box", - "note": "was outside shop on osgodby lane till it closed then post box moved to outside pub", - "post_box:type": "pillar", - "ref": "YO11 71", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4314208566, - "lat": 53.3858293, - "lon": -2.5923643, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "phone_box", - "ref": "WA1 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4314230520, - "lat": 54.9760270, - "lon": -1.4651997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 143" - } -}, -{ - "type": "node", - "id": 4314357585, - "lat": 52.3731315, - "lon": -2.3038392, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4314357587, - "lat": 52.3733933, - "lon": -2.3130118, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DY12 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4314406638, - "lat": 54.9682337, - "lon": -1.4598715, - "tags": { - "amenity": "post_box", - "ref": "NE34 74" - } -}, -{ - "type": "node", - "id": 4314423175, - "lat": 54.9666157, - "lon": -1.4512595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4314423179, - "lat": 54.9694452, - "lon": -1.4524723, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE34 13" - } -}, -{ - "type": "node", - "id": 4314501739, - "lat": 54.9770722, - "lon": -1.4442876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 45" - } -}, -{ - "type": "node", - "id": 4314728720, - "lat": 53.4378189, - "lon": -1.3297027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 11", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314788177, - "lat": 54.4449309, - "lon": -1.6576775, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4314788322, - "lat": 54.4388593, - "lon": -1.5509303, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4314788328, - "lat": 54.4299243, - "lon": -1.5779991, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4314795326, - "lat": 51.5845899, - "lon": -0.1617616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "post_box:type": "pillar", - "ref": "N2 16", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314798167, - "lat": 54.4710904, - "lon": -1.6949417, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4314799790, - "lat": 51.5799868, - "lon": -0.2259261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW4 45", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314868754, - "lat": 51.4470643, - "lon": -0.1846287, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW18 9", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314899972, - "lat": 51.3894578, - "lon": -0.6275380, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL5 65", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4314966110, - "lat": 51.8122193, - "lon": -3.6775447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 564D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4315052274, - "lat": 55.0594931, - "lon": -1.4565081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 513", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4315056670, - "lat": 54.9808123, - "lon": -1.6013970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 14", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4315062465, - "lat": 54.9728047, - "lon": -1.6198184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "NE1 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4315070297, - "lat": 51.7592794, - "lon": -3.5833898, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA11 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4315079411, - "lat": 53.3949612, - "lon": -3.0426374, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Penfold-style post box opposite the junction of Cavendish Road, on the western edge of Birkenhead Park. c. 1866-1871.", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "CH41 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box on Ashville Road, Birkenhead" - } -}, -{ - "type": "node", - "id": 4315437488, - "lat": 54.9684870, - "lon": -1.4455991, - "tags": { - "amenity": "post_box", - "ref": "NE34 65" - } -}, -{ - "type": "node", - "id": 4315524483, - "lat": 54.9712427, - "lon": -1.4286069, - "tags": { - "amenity": "post_box", - "ref": "NE34 77" - } -}, -{ - "type": "node", - "id": 4315524999, - "lat": 54.9734072, - "lon": -1.4207276, - "tags": { - "amenity": "post_box", - "ref": "NE34 1" - } -}, -{ - "type": "node", - "id": 4315541255, - "lat": 54.9721745, - "lon": -1.4396746, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 47" - } -}, -{ - "type": "node", - "id": 4315754506, - "lat": 54.6573878, - "lon": -2.7596768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "CA11 235", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4315813230, - "lat": 53.8577964, - "lon": -2.1754782, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB8 325", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4315819017, - "lat": 53.4242355, - "lon": -2.4389249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "M44 67", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4315882057, - "lat": 54.6594640, - "lon": -5.6693899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "note:royal_cypher": "royal cypher is under matching window to right of entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "BT20 1", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316469027, - "lat": 53.4804884, - "lon": -2.1359050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M34 606", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316472075, - "lat": 53.5457449, - "lon": -2.3104900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "M25 119", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316479684, - "lat": 53.5232442, - "lon": -2.2878172, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M25 603", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316502647, - "lat": 50.8137425, - "lon": -0.4038186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN11 1619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4316502657, - "lat": 50.8145908, - "lon": -0.4053246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1646D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316521600, - "lat": 51.4616981, - "lon": -0.2753987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW14 31", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316528728, - "lat": 50.8615543, - "lon": -0.1426428, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN1 72", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316533393, - "lat": 52.6042729, - "lon": -2.1534373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WV6 325", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316551169, - "lat": 52.6576777, - "lon": -0.4665708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:priority": "yes", - "post_box:type": "pillar", - "ref": "PE9 42", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316559201, - "lat": 51.6520887, - "lon": -0.5255209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WD3 73", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316567159, - "lat": 50.7167744, - "lon": -3.4962712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX2 369D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "wikimedia_commons": "File:Edward VIII pillar box, Peryam Crescent, Exeter - geograph.org.uk - 2161813.jpg" - } -}, -{ - "type": "node", - "id": 4316576407, - "lat": 55.8426789, - "lon": -4.2749424, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G41 187", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316579024, - "lat": 55.8118070, - "lon": -4.2694869, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4316583312, - "lat": 55.8602130, - "lon": -4.1379154, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G33 19D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4316787840, - "lat": 53.1536642, - "lon": -2.9386550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4316978202, - "lat": 51.3965341, - "lon": 0.8997113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4316978204, - "lat": 51.3975849, - "lon": 0.9211672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME12 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4317006002, - "lat": 51.4159833, - "lon": 0.8339936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME12 37D" - } -}, -{ - "type": "node", - "id": 4317006003, - "lat": 51.3988536, - "lon": 0.9102937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 10D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4317006092, - "lat": 51.4054087, - "lon": 0.9091285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME12 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4317006094, - "lat": 51.3927718, - "lon": 0.9254813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 3D" - } -}, -{ - "type": "node", - "id": 4317006195, - "lat": 51.4142264, - "lon": 0.7898256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 55D" - } -}, -{ - "type": "node", - "id": 4317026794, - "lat": 51.4176479, - "lon": 0.8091062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 52D" - } -}, -{ - "type": "node", - "id": 4317044804, - "lat": 51.4127502, - "lon": 0.8422404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 63" - } -}, -{ - "type": "node", - "id": 4317227090, - "lat": 51.4263187, - "lon": 0.7749581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME12 30D" - } -}, -{ - "type": "node", - "id": 4317227189, - "lat": 51.4078964, - "lon": 0.7434100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ME12 31" - } -}, -{ - "type": "node", - "id": 4317253284, - "lat": 57.1306797, - "lon": -2.0833221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 175D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317267732, - "lat": 57.1457279, - "lon": -2.1234300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 109", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317283433, - "lat": 55.6113476, - "lon": -4.4847449, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA3 21", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317378729, - "lat": 52.4545646, - "lon": -1.9805111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B32 742", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317435676, - "lat": 52.6002815, - "lon": -1.1306318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LE2 578", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317450120, - "lat": 52.5718738, - "lon": -1.3271706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LE9 580", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317460784, - "lat": 52.3109708, - "lon": -1.3131866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4317463406, - "lat": 52.2940581, - "lon": -1.6733021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4317463408, - "lat": 52.2844673, - "lon": -1.6647828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4317498634, - "lat": 53.4018663, - "lon": -3.0559563, - "tags": { - "amenity": "post_box", - "description": "Edward VIII Type B post box CH41 25 on Buccleugh Street, Birkenhead St James.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 25", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "wikimedia_commons": "File:Post box on Buccleugh Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 4317726612, - "lat": 50.7076749, - "lon": -1.9422253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 4", - "ref:GB:uprn": "10015376325", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317734090, - "lat": 51.4520413, - "lon": 0.1109290, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA16 205", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317739183, - "lat": 51.5118617, - "lon": -0.5916555, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-04", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL1 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4317753360, - "lat": 51.3217670, - "lon": -0.3016467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4317756687, - "lat": 51.7108534, - "lon": -0.1122610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-02", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 114", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317768030, - "lat": 51.4359490, - "lon": 0.1266377, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DA5 310", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317776347, - "lat": 53.4039611, - "lon": -2.8062534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "L35 34", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317791413, - "lat": 54.9259398, - "lon": -1.3731357, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SR6 175", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317798898, - "lat": 54.9818082, - "lon": -1.4811133, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 445", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317814158, - "lat": 55.8355075, - "lon": -4.0618491, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G71 553", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317817341, - "lat": 51.5913309, - "lon": -0.3002842, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HA3 290", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317828023, - "lat": 55.8382984, - "lon": -4.2569958, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G42 113", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4317833818, - "lat": 55.8382504, - "lon": -4.2686233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "listed_status": "Category B", - "post_box:type": "pillar", - "ref": "G41 131", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "wikidata": "Q56561080" - } -}, -{ - "type": "node", - "id": 4317843200, - "lat": 56.0037580, - "lon": -4.5784357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G83 48", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4318169005, - "lat": 55.9057829, - "lon": -4.2134073, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G64 375", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318171429, - "lat": 55.9447527, - "lon": -4.3181234, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G62 127D", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4318193739, - "lat": 51.0961035, - "lon": 0.2680197, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TN3 292", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 4318197498, - "lat": 50.9496740, - "lon": -2.8098065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TA13 73", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 4318201780, - "lat": 55.8449704, - "lon": -4.2752656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "G41 114", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318212612, - "lat": 55.8386322, - "lon": -4.2807659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G41 115", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318225374, - "lat": 55.8292456, - "lon": -4.2781423, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G41 252", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318246924, - "lat": 55.8065519, - "lon": -4.2747342, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G44 1045", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318273853, - "lat": 51.8143395, - "lon": 0.8858039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "fixme": "is this is a D postbox? if so, check collection times, ", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO5 353D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4318298481, - "lat": 51.5147687, - "lon": -3.2289693, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CF14 326", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318309303, - "lat": 51.0642703, - "lon": 0.1452780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TN6 253", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4318541748, - "lat": 53.6195213, - "lon": -2.1547716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "OL16 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4318541750, - "lat": 53.6190388, - "lon": -2.1591137, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4318541754, - "lat": 53.6186127, - "lon": -2.1592702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic": "yes", - "listed_status": "Grade II", - "location": "Toad Lane", - "manufacturer": "Cochrane Glove and Co.", - "note": "c1866", - "operator": "Royal Mail", - "post_box:design": "national_standard_with_lamppost", - "post_box:type": "pillar", - "ref": "OL16 125", - "royal_cypher": "no", - "wikidata": "Q26544970" - } -}, -{ - "type": "node", - "id": 4318600690, - "lat": 53.3484347, - "lon": -3.0821108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "EIIR lamp box pier CH61 477 at the Barnston Road end of Holmwood Drive, Barnston, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Holmwood Drive, Barnston.jpg" - } -}, -{ - "type": "node", - "id": 4318610809, - "lat": 53.3294827, - "lon": -3.0805709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type B pillar box CH60 36 by Carron Company at the junction of Barnston Road and Beech Road, Heswall.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH60 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box at Beech Road, Barnston Road.jpg" - } -}, -{ - "type": "node", - "id": 4318622531, - "lat": 53.3233118, - "lon": -3.8238728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4318622535, - "lat": 53.3225460, - "lon": -3.8200479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LL30 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4318750629, - "lat": 51.9274380, - "lon": -3.8797749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SA19 380", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4318750632, - "lat": 51.9307582, - "lon": -3.8862233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SA19 133", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4318750633, - "lat": 51.9387356, - "lon": -3.8832357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA19 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4319349247, - "lat": 54.9768935, - "lon": -1.4184925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE34 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4319357152, - "lat": 54.9808555, - "lon": -1.4171134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE34 50" - } -}, -{ - "type": "node", - "id": 4319718909, - "lat": 54.9944102, - "lon": -1.6040282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NE2 126", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4319806147, - "lat": 53.5169468, - "lon": -2.2133350, - "tags": { - "amenity": "post_box", - "colour": "green", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "M9 336", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4320230499, - "lat": 54.1274555, - "lon": -1.5766999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "image": "https://www.geograph.org.uk/photo/889478", - "post_box:design": "hovis", - "post_box:type": "wall", - "ref": "HG4 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4320295368, - "lat": 53.6111541, - "lon": -2.7606609, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "L39 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4320330647, - "lat": 57.6760853, - "lon": -2.9644550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB56 80" - } -}, -{ - "type": "node", - "id": 4320332913, - "lat": 57.6773340, - "lon": -2.9610080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB56 104" - } -}, -{ - "type": "node", - "id": 4320386882, - "lat": 53.6488543, - "lon": -2.3189948, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 4320386902, - "lat": 53.6481437, - "lon": -2.3158410, - "tags": { - "amenity": "post_box", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "BL0 126", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4320386904, - "lat": 53.6488351, - "lon": -2.3190109, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4320542180, - "lat": 56.4594960, - "lon": -2.9688171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-15", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4320735826, - "lat": 54.9732018, - "lon": -1.4557495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 51" - } -}, -{ - "type": "node", - "id": 4320735827, - "lat": 54.9775174, - "lon": -1.4257375, - "tags": { - "amenity": "post_box", - "ref": "NE34 84" - } -}, -{ - "type": "node", - "id": 4320800520, - "lat": 54.9844411, - "lon": -1.4052357, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE34 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4321141270, - "lat": 53.2460727, - "lon": -1.7354418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SK17 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4321146327, - "lat": 53.6081278, - "lon": -1.7809240, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HD9 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4321168984, - "lat": 53.4972795, - "lon": -1.4376930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S74 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4321197580, - "lat": 53.4803023, - "lon": -1.4226823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S62 155", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4321210870, - "lat": 52.2233288, - "lon": 1.3377011, - "tags": { - "amenity": "post_box", - "note": "this and the one in Double Street are the oldest post boxes still in use on the UK mainland", - "post_box:design": "octagonal", - "post_box:type": "pillar", - "ref": "IP13 6244", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4321224249, - "lat": 52.2224335, - "lon": 1.3469569, - "tags": { - "amenity": "post_box", - "heritage:operator": "he", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1030366", - "listed_status": "Grade II", - "post_box:design": "octagonal", - "post_box:type": "pillar", - "ref": "IP13 6243", - "ref:GB:nhle": "1030366", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26281653" - } -}, -{ - "type": "node", - "id": 4321224254, - "lat": 52.2218006, - "lon": 1.3419498, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP13 6339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4321301706, - "lat": 51.7059549, - "lon": -4.9456962, - "tags": { - "amenity": "post_box", - "post_box:design": "penfold", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q29491198" - } -}, -{ - "type": "node", - "id": 4321333701, - "lat": 50.7119748, - "lon": -2.4373450, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "DT1 85", - "ref:GB:uprn": "10015438210", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4321514594, - "lat": 54.3535178, - "lon": -0.8873403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "YO18 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4321591878, - "lat": 54.2042645, - "lon": -0.6325940, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO17 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4321597154, - "lat": 54.0935465, - "lon": -0.2096918, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO16 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4321627371, - "lat": 54.0812547, - "lon": -0.2105664, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO16 2004", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4321632577, - "lat": 51.8236538, - "lon": -4.4923817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA33 506", - "post_box:type": "wall", - "ref": "SA33 506D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4321663652, - "lat": 54.0601332, - "lon": -1.3636291, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO51 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4321722466, - "lat": 54.0944944, - "lon": -1.3954060, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO51 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4321896643, - "lat": 54.0752433, - "lon": -1.4087347, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO51 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4322026601, - "lat": 55.1589158, - "lon": -1.6699540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4322343863, - "lat": 52.9313661, - "lon": -1.4405939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 581", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4322627082, - "lat": 54.0036262, - "lon": -0.9405276, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO41 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4323203527, - "lat": 50.2146593, - "lon": -5.2417584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4323947564, - "lat": 53.8117251, - "lon": -0.6178967, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO43 251", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4324083468, - "lat": 54.0832031, - "lon": -0.8951138, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO60 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4324214428, - "lat": 54.2455655, - "lon": -1.0606144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO62 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4324440639, - "lat": 54.2660857, - "lon": -0.9272479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO62 286D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4324851292, - "lat": 51.5900723, - "lon": -0.3869383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA5 228" - } -}, -{ - "type": "node", - "id": 4325029771, - "lat": 51.5604906, - "lon": -0.4401411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "collection_times_checked": "2016-07-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB10 74" - } -}, -{ - "type": "node", - "id": 4325274444, - "lat": 54.0231243, - "lon": -2.1008979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD23 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4325800581, - "lat": 52.6347103, - "lon": -2.2133565, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4327201019, - "lat": 54.0109913, - "lon": -0.8223063, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO41 200", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4327727358, - "lat": 50.9767636, - "lon": -3.2266480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA21 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4328134990, - "lat": 51.4332616, - "lon": 0.4352348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 81" - } -}, -{ - "type": "node", - "id": 4328179496, - "lat": 51.2981462, - "lon": 0.3521902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 228D" - } -}, -{ - "type": "node", - "id": 4328179497, - "lat": 51.2979279, - "lon": 0.3414486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN15 245" - } -}, -{ - "type": "node", - "id": 4328179498, - "lat": 51.4183203, - "lon": 0.3937343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 139" - } -}, -{ - "type": "node", - "id": 4328179502, - "lat": 51.4112337, - "lon": 0.4582795, - "tags": { - "amenity": "post_box", - "note": "This letterbox outside the home of Charles Dickens was used by him and his family.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 116", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4328195795, - "lat": 51.3377087, - "lon": 0.3503597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 79D" - } -}, -{ - "type": "node", - "id": 4328195796, - "lat": 51.3709344, - "lon": 0.3977074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DA13 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4328195797, - "lat": 51.3785483, - "lon": 0.3948897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 85" - } -}, -{ - "type": "node", - "id": 4328195798, - "lat": 51.4096073, - "lon": 0.4042169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 86D" - } -}, -{ - "type": "node", - "id": 4328195799, - "lat": 51.4154413, - "lon": 0.3891219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 91" - } -}, -{ - "type": "node", - "id": 4328213190, - "lat": 51.2970522, - "lon": 0.3617948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 125" - } -}, -{ - "type": "node", - "id": 4328213191, - "lat": 51.3531499, - "lon": 0.3691320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4328213192, - "lat": 51.4222470, - "lon": 0.3876893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 9" - } -}, -{ - "type": "node", - "id": 4328213193, - "lat": 51.3977672, - "lon": 0.4844497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME2 349D" - } -}, -{ - "type": "node", - "id": 4328219690, - "lat": 51.3024811, - "lon": 0.3818366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME19 255" - } -}, -{ - "type": "node", - "id": 4328219691, - "lat": 51.2906062, - "lon": 0.3785739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME19 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4328219692, - "lat": 51.4154860, - "lon": 0.3984089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 140" - } -}, -{ - "type": "node", - "id": 4328219693, - "lat": 51.4331684, - "lon": 0.4101196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 128" - } -}, -{ - "type": "node", - "id": 4328231890, - "lat": 51.3363816, - "lon": 0.3444567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 63" - } -}, -{ - "type": "node", - "id": 4328231891, - "lat": 51.3420420, - "lon": 0.3463030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 50" - } -}, -{ - "type": "node", - "id": 4328231892, - "lat": 51.3442298, - "lon": 0.3692974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA13 70" - } -}, -{ - "type": "node", - "id": 4328231992, - "lat": 51.4240199, - "lon": 0.3897334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 126D" - } -}, -{ - "type": "node", - "id": 4328231993, - "lat": 51.4280858, - "lon": 0.3882584, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4328231994, - "lat": 51.4283872, - "lon": 0.4015593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 16" - } -}, -{ - "type": "node", - "id": 4328231995, - "lat": 51.4351932, - "lon": 0.3992336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4328232089, - "lat": 51.3324019, - "lon": 0.3580993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA13 88D" - } -}, -{ - "type": "node", - "id": 4328382406, - "lat": 52.9811104, - "lon": -1.9425701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST10 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4329091755, - "lat": 51.8657709, - "lon": -3.9933435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA19 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4329091757, - "lat": 51.9079462, - "lon": -3.9528903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "SA19 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4329091758, - "lat": 51.9396465, - "lon": -3.8731058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "SA19 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4329091759, - "lat": 51.9682283, - "lon": -3.8342994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "wall", - "ref": "SA20 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4329091760, - "lat": 51.9926338, - "lon": -3.8004478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA20 189", - "post_box:type": "wall", - "ref": "SA20 189D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4330114499, - "lat": 51.8754374, - "lon": -3.9937328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "wall", - "ref": "SA19 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4330114500, - "lat": 51.8914693, - "lon": -3.9874830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA19 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4330114501, - "lat": 51.9155578, - "lon": -3.7891741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA19 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4330114502, - "lat": 51.9226738, - "lon": -3.9267444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA19 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4330619738, - "lat": 51.4736280, - "lon": -0.1968215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4331211398, - "lat": 51.7739047, - "lon": -4.9644631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4331444552, - "lat": 55.7752781, - "lon": -4.1537355, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331444553, - "lat": 55.7765577, - "lon": -4.1464363, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331444555, - "lat": 55.7663517, - "lon": -4.1468151, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331479693, - "lat": 55.7704071, - "lon": -4.1737128, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331479711, - "lat": 55.7765038, - "lon": -4.1804256, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331500648, - "lat": 55.7696271, - "lon": -4.1966260, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331500649, - "lat": 55.7711027, - "lon": -4.2077121, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331500650, - "lat": 55.7711011, - "lon": -4.2076512, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331500651, - "lat": 55.7558348, - "lon": -4.2164024, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4331500688, - "lat": 55.7567691, - "lon": -4.2364410, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4332206408, - "lat": 55.2901293, - "lon": -1.8423644, - "tags": { - "amenity": "post_box", - "ref": "NE65 167" - } -}, -{ - "type": "node", - "id": 4332215795, - "lat": 55.2860412, - "lon": -1.8170355, - "tags": { - "amenity": "post_box", - "ref": "NE65 71" - } -}, -{ - "type": "node", - "id": 4332219220, - "lat": 55.2808354, - "lon": -1.7850992, - "tags": { - "amenity": "post_box", - "ref": "NE65 54" - } -}, -{ - "type": "node", - "id": 4332332627, - "lat": 55.3011035, - "lon": -1.8028317, - "tags": { - "amenity": "post_box", - "ref": "NE65 253" - } -}, -{ - "type": "node", - "id": 4332332628, - "lat": 55.3023570, - "lon": -1.7984144, - "tags": { - "amenity": "post_box", - "ref": "NE65 224" - } -}, -{ - "type": "node", - "id": 4332991190, - "lat": 51.7895024, - "lon": -4.9723562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4333071440, - "lat": 54.1489114, - "lon": -2.3006195, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BD24 75D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4333505922, - "lat": 54.6370598, - "lon": -5.9366561, - "tags": { - "addr:postcode": "BT15 5GL", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 166" - } -}, -{ - "type": "node", - "id": 4333505923, - "lat": 54.6424006, - "lon": -5.9362329, - "tags": { - "addr:postcode": "BT15 5GP", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 213" - } -}, -{ - "type": "node", - "id": 4333505924, - "lat": 54.6456028, - "lon": -5.9348352, - "tags": { - "addr:city": "Belfast", - "addr:housename": "Guy's Supermarket", - "addr:housenumber": "771", - "addr:postcode": "BT15 4EP", - "addr:street": "Antrim Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 557" - } -}, -{ - "type": "node", - "id": 4333529751, - "lat": 55.2633147, - "lon": -1.7287504, - "tags": { - "amenity": "post_box", - "ref": "NE65 785" - } -}, -{ - "type": "node", - "id": 4333570416, - "lat": 55.3110965, - "lon": -1.7453429, - "tags": { - "amenity": "post_box", - "ref": "NE65 16" - } -}, -{ - "type": "node", - "id": 4333583466, - "lat": 55.3173556, - "lon": -1.7448803, - "tags": { - "amenity": "post_box", - "ref": "NE65 244" - } -}, -{ - "type": "node", - "id": 4333583499, - "lat": 55.3240005, - "lon": -1.7441312, - "tags": { - "amenity": "post_box", - "ref": "NE65 112" - } -}, -{ - "type": "node", - "id": 4333622035, - "lat": 55.3260115, - "lon": -1.7371076, - "tags": { - "amenity": "post_box", - "ref": "NE65 214" - } -}, -{ - "type": "node", - "id": 4333622036, - "lat": 55.3368958, - "lon": -1.7369361, - "tags": { - "amenity": "post_box", - "ref": "NE65 213" - } -}, -{ - "type": "node", - "id": 4333632218, - "lat": 55.3555276, - "lon": -1.7248945, - "tags": { - "amenity": "post_box", - "ref": "NE65 145" - } -}, -{ - "type": "node", - "id": 4333720057, - "lat": 53.4569568, - "lon": -2.2101953, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4333727866, - "lat": 55.3164699, - "lon": -1.7086051, - "tags": { - "amenity": "post_box", - "ref": "NE65 103" - } -}, -{ - "type": "node", - "id": 4333727963, - "lat": 55.2927386, - "lon": -1.6911096, - "tags": { - "amenity": "post_box", - "ref": "NE65 152" - } -}, -{ - "type": "node", - "id": 4333728017, - "lat": 55.2940255, - "lon": -1.7057013, - "tags": { - "amenity": "post_box", - "ref": "NE65 29" - } -}, -{ - "type": "node", - "id": 4333728076, - "lat": 55.3014670, - "lon": -1.7117422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NE65 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4333769646, - "lat": 55.2736465, - "lon": -1.6789322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "wall", - "ref": "NE65 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4333771062, - "lat": 55.3070569, - "lon": -1.6528858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE65 788D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4333771091, - "lat": 55.3109745, - "lon": -1.6426526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "NE65 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4333789064, - "lat": 55.3290190, - "lon": -1.6692255, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE65 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4333789243, - "lat": 55.3396469, - "lon": -1.6717323, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NE65 187", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4333925007, - "lat": 55.3412859, - "lon": -1.6220747, - "tags": { - "amenity": "post_box", - "ref": "NE65 60" - } -}, -{ - "type": "node", - "id": 4334318987, - "lat": 54.8841806, - "lon": -2.7944709, - "tags": { - "amenity": "post_box", - "ref": "CA8 333", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4335121418, - "lat": 55.3299804, - "lon": -1.6337063, - "tags": { - "amenity": "post_box", - "ref": "NE65 53" - } -}, -{ - "type": "node", - "id": 4335121480, - "lat": 55.2910739, - "lon": -1.5998835, - "tags": { - "amenity": "post_box", - "ref": "NE65 778" - } -}, -{ - "type": "node", - "id": 4335127910, - "lat": 55.2943755, - "lon": -1.6039373, - "tags": { - "amenity": "post_box", - "ref": "NE65 75" - } -}, -{ - "type": "node", - "id": 4335285411, - "lat": 55.3043400, - "lon": -1.6142296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE65 184" - } -}, -{ - "type": "node", - "id": 4335285412, - "lat": 55.3074936, - "lon": -1.6136032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE65 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4335299050, - "lat": 55.3176376, - "lon": -1.6070333, - "tags": { - "amenity": "post_box", - "ref": "NE65 158" - } -}, -{ - "type": "node", - "id": 4335308771, - "lat": 55.3273734, - "lon": -1.5963235, - "tags": { - "amenity": "post_box", - "ref": "NE65 85" - } -}, -{ - "type": "node", - "id": 4335308778, - "lat": 55.3302352, - "lon": -1.5890183, - "tags": { - "amenity": "post_box", - "ref": "NE65 175" - } -}, -{ - "type": "node", - "id": 4335316610, - "lat": 55.3335734, - "lon": -1.5929181, - "tags": { - "amenity": "post_box", - "ref": "NE65 15" - } -}, -{ - "type": "node", - "id": 4336714641, - "lat": 55.3265162, - "lon": -1.5827930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3793653720863450", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE65 234", - "royal_cypher": "EIIR", - "survey:date": "2023-09-04" - } -}, -{ - "type": "node", - "id": 4336714642, - "lat": 55.3302987, - "lon": -1.5801159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE65 252" - } -}, -{ - "type": "node", - "id": 4336714644, - "lat": 55.3314368, - "lon": -1.5753223, - "tags": { - "amenity": "post_box", - "ref": "NE65 12" - } -}, -{ - "type": "node", - "id": 4336714645, - "lat": 55.3325955, - "lon": -1.5876662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE65 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4336714646, - "lat": 55.3336861, - "lon": -1.5842206, - "tags": { - "amenity": "post_box", - "ref": "NE65 19" - } -}, -{ - "type": "node", - "id": 4336714647, - "lat": 55.3344741, - "lon": -1.5785865, - "tags": { - "amenity": "post_box", - "ref": "NE65 17" - } -}, -{ - "type": "node", - "id": 4336714650, - "lat": 55.3214226, - "lon": -1.5639919, - "tags": { - "amenity": "post_box", - "ref": "NE65 14" - } -}, -{ - "type": "node", - "id": 4336714651, - "lat": 55.3183281, - "lon": -1.5516063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "enlarged aperture", - "post_box:type": "wall", - "ref": "NE65 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4336766555, - "lat": 54.9749517, - "lon": -1.4396801, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4336779574, - "lat": 54.9779439, - "lon": -1.4342205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 49" - } -}, -{ - "type": "node", - "id": 4336818167, - "lat": 54.9840516, - "lon": -1.4409280, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE33 32" - } -}, -{ - "type": "node", - "id": 4337091157, - "lat": 54.5744991, - "lon": -5.9164674, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT7 3GR", - "addr:street": "Ormeau Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT7 114" - } -}, -{ - "type": "node", - "id": 4337616179, - "lat": 53.7847291, - "lon": -1.2861738, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LS25 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4337867406, - "lat": 54.1143539, - "lon": -0.5598077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "post_box:type": "wall", - "ref": "YO17 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4338103406, - "lat": 57.1272518, - "lon": -2.0901348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB12 901P" - } -}, -{ - "type": "node", - "id": 4338252167, - "lat": 53.6936676, - "lon": -0.4436922, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4338377968, - "lat": 51.3150460, - "lon": 0.1209613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN14 91", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4338722891, - "lat": 51.2221455, - "lon": 0.6288470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "ME17 100D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4338722892, - "lat": 51.2410966, - "lon": 0.5153655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME15 110D" - } -}, -{ - "type": "node", - "id": 4338732093, - "lat": 51.2351664, - "lon": 0.5939215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME17 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4338732095, - "lat": 51.2274156, - "lon": 0.5898351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 64" - } -}, -{ - "type": "node", - "id": 4338744590, - "lat": 51.3386375, - "lon": 0.7274175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ME10 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 4338744592, - "lat": 51.2290556, - "lon": 0.6320546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME17 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4338744594, - "lat": 51.2272770, - "lon": 0.6176973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 261" - } -}, -{ - "type": "node", - "id": 4338744595, - "lat": 51.2134985, - "lon": 0.5964583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME17 165" - } -}, -{ - "type": "node", - "id": 4338744694, - "lat": 51.2166895, - "lon": 0.5701731, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ME17 80D" - } -}, -{ - "type": "node", - "id": 4338744892, - "lat": 51.2252708, - "lon": 0.6360641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 236D" - } -}, -{ - "type": "node", - "id": 4338744893, - "lat": 51.2132223, - "lon": 0.5916600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME17 71D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4338744895, - "lat": 51.2427040, - "lon": 0.5191367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ME15 111" - } -}, -{ - "type": "node", - "id": 4338763391, - "lat": 51.2145244, - "lon": 0.5818285, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 72" - } -}, -{ - "type": "node", - "id": 4338763590, - "lat": 51.2280625, - "lon": 0.6280974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 273D" - } -}, -{ - "type": "node", - "id": 4338763591, - "lat": 51.2235916, - "lon": 0.5714595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME17 185" - } -}, -{ - "type": "node", - "id": 4338782589, - "lat": 51.2888198, - "lon": 0.6856620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME9 102" - } -}, -{ - "type": "node", - "id": 4338782590, - "lat": 51.2443031, - "lon": 0.6479788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 86" - } -}, -{ - "type": "node", - "id": 4338782591, - "lat": 51.2493690, - "lon": 0.5120847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME15 212D" - } -}, -{ - "type": "node", - "id": 4338782989, - "lat": 51.2548612, - "lon": 0.5160599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ME15 105D" - } -}, -{ - "type": "node", - "id": 4338987915, - "lat": 50.9722174, - "lon": 0.1001948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4339572446, - "lat": 56.3883927, - "lon": -4.0583819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH6 26D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4340122729, - "lat": 53.4383554, - "lon": -2.2800386, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4340132213, - "lat": 53.4385316, - "lon": -2.2868831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M21 230D" - } -}, -{ - "type": "node", - "id": 4340306949, - "lat": 50.7261402, - "lon": -0.7961217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340307288, - "lat": 50.7306301, - "lon": -0.7982085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 69D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4340308335, - "lat": 50.7359739, - "lon": -0.7935616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This is a brand new EIIR lamp postbox very recently installed since these postboxes have a new design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340315403, - "lat": 50.7318596, - "lon": -0.7918705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:10; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO20 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340315921, - "lat": 50.7313121, - "lon": -0.7929782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PO20 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4340317617, - "lat": 50.7277688, - "lon": -0.7902383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340319917, - "lat": 50.7268731, - "lon": -0.7872128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340322030, - "lat": 50.7256358, - "lon": -0.7862445, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340323508, - "lat": 50.7310234, - "lon": -0.7855673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340324748, - "lat": 50.7282756, - "lon": -0.7815051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340325234, - "lat": 50.7312225, - "lon": -0.7804804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4340326356, - "lat": 50.7354654, - "lon": -0.7822923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "As at Saturday 1st May 2021 I walked past the location where this postbox should be, and a member of the public told me that this postbox has been removed and is no longer in use.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 60D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4340833387, - "lat": 51.6630072, - "lon": -2.6450301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "952418395900654", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 4340875266, - "lat": 54.9894377, - "lon": -1.4370802, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE33 34" - } -}, -{ - "type": "node", - "id": 4340915349, - "lat": 54.9899401, - "lon": -1.4425764, - "tags": { - "amenity": "post_box", - "ref": "NE33 40" - } -}, -{ - "type": "node", - "id": 4340946601, - "lat": 54.9813163, - "lon": -1.4393056, - "tags": { - "amenity": "post_box", - "ref": "NE33 43" - } -}, -{ - "type": "node", - "id": 4341112743, - "lat": 54.9798771, - "lon": -1.4314892, - "tags": { - "amenity": "post_box", - "fixme": "This seems to have vanished, resurvey area", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 23" - } -}, -{ - "type": "node", - "id": 4341112809, - "lat": 54.9834158, - "lon": -1.4274632, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE33 23" - } -}, -{ - "type": "node", - "id": 4341175359, - "lat": 54.9857144, - "lon": -1.4301873, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4341758612, - "lat": 53.0046500, - "lon": -2.4922000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "ref": "CW3 172", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4341890709, - "lat": 51.6963397, - "lon": -3.8903391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "pillar", - "ref": "SA6 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4341890710, - "lat": 51.7004446, - "lon": -3.8979326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA6 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4341890712, - "lat": 51.7029788, - "lon": -3.8933436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA6 401D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4341890713, - "lat": 51.7140542, - "lon": -3.9197840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA6 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4341890714, - "lat": 51.7937950, - "lon": -3.9612312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA18 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614073, - "lat": 51.7226611, - "lon": -3.8496497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA8 630D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4342614074, - "lat": 51.7306693, - "lon": -3.8353156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA8 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614075, - "lat": 51.7335059, - "lon": -3.8316434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA8 634D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4342614076, - "lat": 51.7372602, - "lon": -3.8240696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA8 635", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614077, - "lat": 51.7546330, - "lon": -3.7980033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA9 611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614078, - "lat": 51.7583476, - "lon": -3.7953128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 609D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614079, - "lat": 51.7642149, - "lon": -3.7890010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA9 607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614080, - "lat": 51.7661679, - "lon": -3.7845985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA9 605D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614081, - "lat": 51.7671199, - "lon": -3.7809897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA9 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614083, - "lat": 51.7754399, - "lon": -3.7849572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 596D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614087, - "lat": 51.7786408, - "lon": -3.7907598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "lamp", - "ref": "SA9 615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342614088, - "lat": 51.7803333, - "lon": -3.7522162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA9 576D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342615692, - "lat": 51.7861209, - "lon": -3.7442549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 573D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342615699, - "lat": 51.7872626, - "lon": -3.8053108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 593D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342615700, - "lat": 51.7940831, - "lon": -3.8103362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA9 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4342615701, - "lat": 51.7967732, - "lon": -3.8139642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA9 589D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4343012419, - "lat": 54.9938399, - "lon": -1.4125993, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 68" - } -}, -{ - "type": "node", - "id": 4343626332, - "lat": 51.1358426, - "lon": -0.6726334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU8 85", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU8 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 4344178574, - "lat": 54.9953023, - "lon": -1.4393836, - "tags": { - "amenity": "post_box", - "ref": "NE33 41" - } -}, -{ - "type": "node", - "id": 4344334442, - "lat": 54.9897982, - "lon": -1.4246439, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE33 22" - } -}, -{ - "type": "node", - "id": 4344334483, - "lat": 54.9924892, - "lon": -1.4281646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4344362078, - "lat": 54.9958495, - "lon": -1.4248920, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE33 12", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4344433681, - "lat": 52.6106948, - "lon": -2.1615674, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4344840546, - "lat": 50.9689490, - "lon": 0.0928443, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TN22 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4344956799, - "lat": 52.8626037, - "lon": -3.0499053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY11 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345051467, - "lat": 51.8027678, - "lon": -1.6357944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX18 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345051476, - "lat": 51.8066534, - "lon": -1.6323083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX18 842D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345051477, - "lat": 51.8080808, - "lon": -1.6364304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OX18 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345107618, - "lat": 52.9878065, - "lon": -3.2057140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 08:45", - "note": "reference number partially illegible", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345129787, - "lat": 52.9837041, - "lon": -3.3192946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL21 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4345129886, - "lat": 50.7913468, - "lon": -0.9902553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345135731, - "lat": 50.7872180, - "lon": -0.9738549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345135737, - "lat": 50.7896207, - "lon": -0.9796270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO11 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345137682, - "lat": 50.7845506, - "lon": -0.9627546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO11 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345137683, - "lat": 50.7871646, - "lon": -0.9604519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO11 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345139209, - "lat": 50.7812090, - "lon": -0.9550094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO11 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345208881, - "lat": 55.6065723, - "lon": -4.4775994, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA3 54D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4345208888, - "lat": 55.6050421, - "lon": -4.4631050, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA3 30D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345209303, - "lat": 55.6081934, - "lon": -4.4868128, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA3 12D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4345218449, - "lat": 51.6729555, - "lon": -3.9575793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SA5 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345218450, - "lat": 51.6736803, - "lon": -3.9652060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA5 365D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4345218453, - "lat": 51.7038005, - "lon": -4.0188019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA4 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345218454, - "lat": 51.7064592, - "lon": -3.9723733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA5 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345218455, - "lat": 51.7126442, - "lon": -4.0375640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 530D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345218456, - "lat": 51.7158704, - "lon": -4.0467718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 523D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345218457, - "lat": 51.7215153, - "lon": -4.0544493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "wall", - "ref": "SA4 519", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345607824, - "lat": 53.3425429, - "lon": -3.3380334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4345693047, - "lat": 55.0066503, - "lon": -1.4299536, - "tags": { - "amenity": "post_box", - "ref": "NE33 117" - } -}, -{ - "type": "node", - "id": 4345739204, - "lat": 56.9554362, - "lon": -2.2165886, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "AB39 650", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739207, - "lat": 56.9608490, - "lon": -2.2052350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "AB39 315D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739232, - "lat": 56.9614430, - "lon": -2.2116082, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB39 312D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739236, - "lat": 56.9666326, - "lon": -2.2299354, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AB39 437", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739237, - "lat": 56.9636043, - "lon": -2.2138050, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB39 313D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739241, - "lat": 56.9661040, - "lon": -2.2293366, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "is inside Co-op", - "note:post_box:type": "is a non-standard freestanding square red box does not look like lamp or wall or pillar", - "post_box:type": "box", - "ref": "AB39 583" - } -}, -{ - "type": "node", - "id": 4345739263, - "lat": 56.9652654, - "lon": -2.2080757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "wall", - "ref": "AB39 452", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4345739272, - "lat": 56.9707702, - "lon": -2.2023170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 12:00", - "post_box:type": "wall", - "ref": "AB39 366", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345739294, - "lat": 56.9643150, - "lon": -2.2080872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "indoor": "yes", - "material": "plastic", - "note": "is inside Spar", - "note:royal_cypher": "yes, has an EIIR in Scotland!", - "post_box:design": "PB58", - "post_box:type": "pillar", - "ref": "AB39 654", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4345739300, - "lat": 56.9612405, - "lon": -2.2141450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB39 544D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739313, - "lat": 56.9674266, - "lon": -2.2359921, - "tags": { - "addr:city": "Stonehaven", - "addr:country": "GB", - "addr:postcode": "AB39 2WH", - "addr:street": "Canmore Park", - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB39 543D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739327, - "lat": 56.9729958, - "lon": -2.2114036, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "AB39 351", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4345739346, - "lat": 56.9662634, - "lon": -2.2129676, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB39 314D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4345742330, - "lat": 56.9627771, - "lon": -2.2420683, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "AB39 415", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4346085821, - "lat": 54.9997034, - "lon": -1.4275498, - "tags": { - "amenity": "post_box", - "ref": "NE33 8" - } -}, -{ - "type": "node", - "id": 4346085854, - "lat": 55.0022659, - "lon": -1.4254925, - "tags": { - "amenity": "post_box", - "ref": "NE33 7" - } -}, -{ - "type": "node", - "id": 4346092626, - "lat": 55.0033537, - "lon": -1.4310857, - "tags": { - "amenity": "post_box", - "ref": "NE33 5" - } -}, -{ - "type": "node", - "id": 4346140634, - "lat": 55.0021470, - "lon": -1.4348355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE33 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4346169220, - "lat": 52.9734892, - "lon": -3.0894187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "note": "ref number covered by sticker", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4346176364, - "lat": 52.9811248, - "lon": -3.3780167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL21 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4346283033, - "lat": 52.9805465, - "lon": -3.3741513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL21 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4346514499, - "lat": 51.6361159, - "lon": -0.0469749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 34D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4346926953, - "lat": 53.1913829, - "lon": -2.8901304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Queen Victoria Type A post box CH1 246 by Handyside Co. on St Werburgh Street to the south of the cathedral.", - "drive_through": "no", - "manufacturer": "Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 246", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Chester Cathedral.jpg" - } -}, -{ - "type": "node", - "id": 4346926956, - "lat": 53.1920834, - "lon": -2.8921099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "description": "QEII Type A post box CH1 3 by McDowall and Stevens at the Abbey Gateway, Northgate Street, Chester.", - "drive_through": "no", - "manufacturer": "McDowall & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Abbey Gateway, Chester.jpg" - } -}, -{ - "type": "node", - "id": 4346946781, - "lat": 54.9983843, - "lon": -1.4219087, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE33 10" - } -}, -{ - "type": "node", - "id": 4346977061, - "lat": 54.3918362, - "lon": -1.3492153, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4347035369, - "lat": 53.9574691, - "lon": -2.0264208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 13:00", - "post_box:type": "meter", - "ref": "BD23 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4347052861, - "lat": 53.9453450, - "lon": -2.0157709, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BD23 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4347098059, - "lat": 51.3363547, - "lon": -2.2514039, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4347153458, - "lat": 51.3230590, - "lon": -0.4761955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU23 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 4347287704, - "lat": 54.9977116, - "lon": -1.4374612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 42" - } -}, -{ - "type": "node", - "id": 4347287705, - "lat": 54.9980590, - "lon": -1.4340704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE33 85", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4347349158, - "lat": 54.9968233, - "lon": -1.4302173, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE33 14" - } -}, -{ - "type": "node", - "id": 4347742646, - "lat": 54.2790080, - "lon": -2.7686917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA8 39" - } -}, -{ - "type": "node", - "id": 4347764345, - "lat": 52.9822955, - "lon": -3.3245432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL21 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4347880262, - "lat": 51.4649013, - "lon": -0.1303977, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW4 22" - } -}, -{ - "type": "node", - "id": 4348225613, - "lat": 52.2790400, - "lon": -0.6542550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4348225615, - "lat": 52.2840888, - "lon": -0.6440801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4348384729, - "lat": 52.2934149, - "lon": -0.5989780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 31" - } -}, -{ - "type": "node", - "id": 4348744894, - "lat": 51.2144950, - "lon": 0.7408264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 14D" - } -}, -{ - "type": "node", - "id": 4348751591, - "lat": 51.2354974, - "lon": 0.7008187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 253" - } -}, -{ - "type": "node", - "id": 4348757492, - "lat": 51.2356261, - "lon": 0.7097688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 303D" - } -}, -{ - "type": "node", - "id": 4348757493, - "lat": 51.2318349, - "lon": 0.6662868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 94" - } -}, -{ - "type": "node", - "id": 4348789190, - "lat": 51.2810001, - "lon": 0.6210020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 84", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4348797589, - "lat": 51.2940867, - "lon": 0.6444607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 189", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4348797689, - "lat": 51.2195396, - "lon": 0.7383968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 180" - } -}, -{ - "type": "node", - "id": 4348797789, - "lat": 51.2107743, - "lon": 0.7607162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN27 136" - } -}, -{ - "type": "node", - "id": 4348829128, - "lat": 52.0998022, - "lon": -1.6460026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4348829131, - "lat": 52.1240825, - "lon": -1.6585725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4348829133, - "lat": 52.1365320, - "lon": -1.6657955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4349089781, - "lat": 53.8401868, - "lon": -2.2139325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB9 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349093404, - "lat": 53.7598940, - "lon": -2.3652079, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4349114421, - "lat": 51.6817240, - "lon": -3.9226563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA6 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349116194, - "lat": 51.6883314, - "lon": -3.8768344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "wall", - "ref": "SA7 396", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4349116195, - "lat": 51.7009827, - "lon": -3.9297675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SA6 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349116196, - "lat": 51.7107948, - "lon": -3.9418686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SA6 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349116205, - "lat": 51.7278863, - "lon": -3.8605449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA8 651", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349116206, - "lat": 51.7335127, - "lon": -3.8640445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA8 652", - "post_box:type": "lamp", - "ref": "SA8 652D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349116207, - "lat": 51.7430321, - "lon": -3.8173501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA8 614", - "post_box:type": "wall", - "ref": "SA8 614D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4349116208, - "lat": 51.7460720, - "lon": -3.8101324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 613D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349116210, - "lat": 51.7529781, - "lon": -3.7978303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA9 617", - "post_box:type": "lamp", - "ref": "SA9 617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349147249, - "lat": 52.8031056, - "lon": -1.2813523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "LE12 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349420364, - "lat": 53.8031444, - "lon": -2.9911702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 363D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349420365, - "lat": 53.8253527, - "lon": -3.0138831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 264D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4349420366, - "lat": 53.8275231, - "lon": -3.0062415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4349461243, - "lat": 56.0073990, - "lon": -3.5744508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH51 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4349461245, - "lat": 56.0097104, - "lon": -3.6224751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH51 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4349461249, - "lat": 56.0100573, - "lon": -3.6082063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4349461251, - "lat": 56.0124365, - "lon": -3.5913582, - "tags": { - "amenity": "post_box", - "check_date:ref": "2024-07-21", - "collection_plate": "CP1D", - "collection_plate:date": "2023-10-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "note": "EH51 12 is the correct ref for this post_box, EH51 12 is reused as a mistake for the wall box on Grahamsdyke Road.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH51 12D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4349461259, - "lat": 56.0171228, - "lon": -3.6081694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH51 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4349602587, - "lat": 50.9706114, - "lon": 0.0829417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350092170, - "lat": 54.2332650, - "lon": -1.3371062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "YO7 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4350092178, - "lat": 54.2329624, - "lon": -1.3287272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "YO7 2022" - } -}, -{ - "type": "node", - "id": 4350092180, - "lat": 54.2311683, - "lon": -1.3303472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "YO7 2003" - } -}, -{ - "type": "node", - "id": 4350337223, - "lat": 53.5792337, - "lon": -2.4325167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "colour": "gold", - "fixme": "collection times need checking, mapillary image indicates they have changed but unable to make out", - "mapillary": "159988269695211", - "olympics_gold": "Jason Kenny", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BL1 9001;BL1 9000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350360562, - "lat": 54.2610990, - "lon": -0.8100585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO18 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350364879, - "lat": 54.2575723, - "lon": -0.7999654, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO18 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350373513, - "lat": 54.3271703, - "lon": -0.8480932, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "priority": "yes", - "ref": "YO18 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350383471, - "lat": 54.2622634, - "lon": -1.7264952, - "tags": { - "amenity": "post_box", - "flickr": "https://www.flickr.com/photos/32159881@N03/3319817937", - "note": "appears to be mounted on an old metal finger sign post with the fingers removed", - "post_box:design": "hovis", - "post_box:mounting": "signpost", - "post_box:type": "lamp", - "ref": "HG4 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4350404357, - "lat": 54.2399612, - "lon": -1.1991944, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350413210, - "lat": 54.0879046, - "lon": -1.4265764, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO51 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4350428742, - "lat": 54.2483164, - "lon": -0.7869974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "YO18 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4350428743, - "lat": 54.2435751, - "lon": -0.7740912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "YO18 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4350808058, - "lat": 50.9738477, - "lon": -3.2239449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA21 373", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4350831195, - "lat": 54.2365508, - "lon": -1.2587925, - "tags": { - "amenity": "post_box", - "note": "type N are also called Bantam", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO7 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350845287, - "lat": 54.2328758, - "lon": -1.2745346, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350882744, - "lat": 54.2393600, - "lon": -1.3423058, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350882760, - "lat": 54.2489284, - "lon": -1.3473082, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO7 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350906474, - "lat": 54.1724565, - "lon": -1.3657129, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350916015, - "lat": 54.9742379, - "lon": -1.4738455, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE32 671", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4350916016, - "lat": 54.9716423, - "lon": -1.4698759, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 629" - } -}, -{ - "type": "node", - "id": 4350930621, - "lat": 54.9693767, - "lon": -1.4727940, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 634" - } -}, -{ - "type": "node", - "id": 4351191992, - "lat": 54.9813167, - "lon": -1.4894085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "colour": "gold", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 793", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4351194641, - "lat": 54.9803655, - "lon": -1.4902037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 439D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4351305698, - "lat": 54.9816069, - "lon": -1.4910789, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 448", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4351306751, - "lat": 54.1203399, - "lon": -0.9121792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "YO60 479", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4351324576, - "lat": 54.9796918, - "lon": -1.4964319, - "tags": { - "amenity": "post_box", - "ref": "NE32 438" - } -}, -{ - "type": "node", - "id": 4351338596, - "lat": 54.0995555, - "lon": -0.9341217, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO60 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4351447325, - "lat": 54.1346129, - "lon": -1.3846165, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO61 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4351447337, - "lat": 54.1236977, - "lon": -1.3303633, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO61 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4351509983, - "lat": 54.0958221, - "lon": -1.2774755, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO61 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4351598845, - "lat": 54.0661180, - "lon": -1.2897670, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO61 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4351694335, - "lat": 50.9759897, - "lon": 0.0994132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4351694341, - "lat": 50.9737811, - "lon": 0.0977019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4351792803, - "lat": 53.2468491, - "lon": -2.9334471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "description": "EIIR lamp box pier CH1 491 by Carron Company on Chester Gates at Dunkirk trading estate.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH1 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Telford Court, Dunkirk.jpg" - } -}, -{ - "type": "node", - "id": 4351920236, - "lat": 55.7500733, - "lon": -4.9374701, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA28 74", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4351920276, - "lat": 55.7532161, - "lon": -4.9286510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "KA28 1111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4351920280, - "lat": 55.7564008, - "lon": -4.9189577, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA28 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4351920287, - "lat": 55.7532704, - "lon": -4.9326314, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA28 70", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4352345272, - "lat": 54.9769896, - "lon": -1.4957861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 434", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4352360465, - "lat": 54.9748570, - "lon": -1.4935971, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 433", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4352360697, - "lat": 54.9719411, - "lon": -1.4935233, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE32 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352362409, - "lat": 54.9702684, - "lon": -1.4929442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 431", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4352419758, - "lat": 54.9611076, - "lon": -1.4904206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 616", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4352432284, - "lat": 54.9644797, - "lon": -1.4879313, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 429" - } -}, -{ - "type": "node", - "id": 4352466041, - "lat": 54.9768113, - "lon": -1.4919897, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 435" - } -}, -{ - "type": "node", - "id": 4352602133, - "lat": 54.9762230, - "lon": -1.4856786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 428", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4352602141, - "lat": 54.9708536, - "lon": -1.4821046, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE32 651", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352602313, - "lat": 54.9682920, - "lon": -1.4859614, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE32 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352614082, - "lat": 54.2035864, - "lon": -1.1604525, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO61 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352615060, - "lat": 54.9653503, - "lon": -1.4749213, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352642162, - "lat": 54.2130867, - "lon": -1.1882920, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO61 227", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4352644113, - "lat": 54.9585991, - "lon": -1.4901280, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 2" - } -}, -{ - "type": "node", - "id": 4352644199, - "lat": 54.9592431, - "lon": -1.4790086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352658942, - "lat": 54.9625405, - "lon": -1.4778471, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE32 424" - } -}, -{ - "type": "node", - "id": 4352682524, - "lat": 54.9552154, - "lon": -1.4965726, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE32 127" - } -}, -{ - "type": "node", - "id": 4352682559, - "lat": 54.9540363, - "lon": -1.4922364, - "tags": { - "amenity": "post_box", - "ref": "NE32 453" - } -}, -{ - "type": "node", - "id": 4352682560, - "lat": 54.9508694, - "lon": -1.4855684, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE32 436" - } -}, -{ - "type": "node", - "id": 4352682576, - "lat": 54.9565762, - "lon": -1.4854776, - "tags": { - "amenity": "post_box", - "ref": "NE32 440" - } -}, -{ - "type": "node", - "id": 4352685351, - "lat": 50.3994237, - "lon": -4.1442859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "583864586737198", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352704459, - "lat": 54.9552977, - "lon": -1.4776605, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE32 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4352710401, - "lat": 54.9517918, - "lon": -1.4767652, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE32 699", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4353316571, - "lat": 52.5886720, - "lon": 0.9331284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 919", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4353316581, - "lat": 52.6039266, - "lon": 0.9257842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP25 3316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4353338478, - "lat": 51.7408272, - "lon": -1.0523220, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX9 370", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4353689111, - "lat": 51.8289395, - "lon": -2.2469077, - "tags": { - "amenity": "post_box", - "note": "pillar box replaced by lamp box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4353738498, - "lat": 51.8318310, - "lon": -2.2494179, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4353942187, - "lat": 53.0886968, - "lon": -0.7930417, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4353991838, - "lat": 54.9790553, - "lon": -1.5228897, - "tags": { - "amenity": "post_box", - "ref": "NE31 337" - } -}, -{ - "type": "node", - "id": 4353991849, - "lat": 54.9782544, - "lon": -1.5205102, - "tags": { - "amenity": "post_box", - "ref": "NE31 88" - } -}, -{ - "type": "node", - "id": 4354014924, - "lat": 54.9800641, - "lon": -1.5151166, - "tags": { - "amenity": "post_box", - "ref": "NE31 87" - } -}, -{ - "type": "node", - "id": 4354031160, - "lat": 53.0804158, - "lon": -0.7688332, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4354031420, - "lat": 53.0805381, - "lon": -0.7567523, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4354031440, - "lat": 53.0826326, - "lon": -0.7527883, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4354035509, - "lat": 54.9826171, - "lon": -1.5062808, - "tags": { - "amenity": "post_box", - "ref": "NE31 687" - } -}, -{ - "type": "node", - "id": 4354071288, - "lat": 54.9768914, - "lon": -1.5028859, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE31 75" - } -}, -{ - "type": "node", - "id": 4354071988, - "lat": 53.0901752, - "lon": -0.7964380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG24 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4354072330, - "lat": 53.0994582, - "lon": -0.7875800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG24 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4354081036, - "lat": 53.0855534, - "lon": -0.7953733, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4354203904, - "lat": 53.0821911, - "lon": -0.7913205, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 4354203907, - "lat": 53.0834962, - "lon": -0.7959178, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4354203913, - "lat": 53.0804782, - "lon": -0.7965384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4354203916, - "lat": 53.0761974, - "lon": -0.7926214, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4354203920, - "lat": 53.0821509, - "lon": -0.7913500, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4354203928, - "lat": 53.0819712, - "lon": -0.8001084, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NG24 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4354220328, - "lat": 54.9723753, - "lon": -1.5035402, - "tags": { - "amenity": "post_box", - "ref": "NE31 72" - } -}, -{ - "type": "node", - "id": 4354220329, - "lat": 54.9736796, - "lon": -1.5097069, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE31 657" - } -}, -{ - "type": "node", - "id": 4354479973, - "lat": 55.0370038, - "lon": -1.5464694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE12 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4354493565, - "lat": 54.1355887, - "lon": -1.0663714, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO61 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4354520566, - "lat": 54.1275122, - "lon": -1.1420791, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO61 277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4354552880, - "lat": 54.1434301, - "lon": -1.1000214, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO61 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4354564620, - "lat": 54.0751564, - "lon": -1.1026162, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "priority": "yes", - "ref": "YO61 365", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4354581257, - "lat": 54.0746916, - "lon": -1.1111931, - "tags": { - "amenity": "post_box", - "check_date": "2022-07-15", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO61 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4354706004, - "lat": 51.0851145, - "lon": -0.7091282, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-18", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-22", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU27 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4354712449, - "lat": 56.3795253, - "lon": -3.9191618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH7 12D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4354721610, - "lat": 50.7106455, - "lon": -2.4612891, - "tags": { - "amenity": "post_box", - "colour": "green", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "DT1 202", - "ref:GB:uprn": "10015398825", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4354747602, - "lat": 51.9462242, - "lon": -3.3883946, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4354748281, - "lat": 51.8417925, - "lon": -4.0957478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "post_box:type": "wall", - "ref": "SA14 359", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4354748285, - "lat": 51.8544189, - "lon": -4.1006744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "SA32 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4354754789, - "lat": 51.9477035, - "lon": -3.3913478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4354769851, - "lat": 50.4639566, - "lon": -3.5139077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4354829292, - "lat": 52.4892799, - "lon": -2.3607187, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WV15 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4354913493, - "lat": 51.4469339, - "lon": -0.4048405, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TW13 409D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4354913497, - "lat": 51.4477549, - "lon": -0.4021706, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4354921524, - "lat": 51.2115574, - "lon": -3.5700516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TA24 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4355050896, - "lat": 53.4762536, - "lon": -2.2530611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "colour": "blue", - "post_box:type": "pillar", - "ref": "M3 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4355196957, - "lat": 54.9783722, - "lon": -1.5084188, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE31 622" - } -}, -{ - "type": "node", - "id": 4355203981, - "lat": 54.9751734, - "lon": -1.5147978, - "tags": { - "amenity": "post_box", - "ref": "NE31 301" - } -}, -{ - "type": "node", - "id": 4355318125, - "lat": 54.9740181, - "lon": -1.5193112, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE31 483" - } -}, -{ - "type": "node", - "id": 4355614464, - "lat": 54.9697431, - "lon": -1.5218730, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE31 359" - } -}, -{ - "type": "node", - "id": 4355660149, - "lat": 54.9619663, - "lon": -1.5260751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE31 659" - } -}, -{ - "type": "node", - "id": 4355660160, - "lat": 54.9596100, - "lon": -1.5289253, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE31 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4355787298, - "lat": 54.9615518, - "lon": -1.4999839, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE31 658" - } -}, -{ - "type": "node", - "id": 4355787347, - "lat": 54.9644389, - "lon": -1.5073763, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE31 487" - } -}, -{ - "type": "node", - "id": 4355830351, - "lat": 54.9630972, - "lon": -1.5117271, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE31 575" - } -}, -{ - "type": "node", - "id": 4355934618, - "lat": 54.9601971, - "lon": -1.5198270, - "tags": { - "amenity": "post_box", - "ref": "NE31 63" - } -}, -{ - "type": "node", - "id": 4356017876, - "lat": 51.5303780, - "lon": -0.2151773, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4356148693, - "lat": 51.5330176, - "lon": -0.2055873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4356640674, - "lat": 50.5445193, - "lon": -3.9915197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL20 711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4356695033, - "lat": 52.5742532, - "lon": 1.0331436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1837", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4356695045, - "lat": 52.5820133, - "lon": 1.0407519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR18 1838", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4356695060, - "lat": 52.5727166, - "lon": 1.0608779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR18 1844", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4356695068, - "lat": 52.5803329, - "lon": 1.0622372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1815D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4356695071, - "lat": 52.5833447, - "lon": 1.0623097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1846", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4356724525, - "lat": 51.8436634, - "lon": 0.3781274, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CM6 188", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4356729246, - "lat": 55.4439997, - "lon": -5.1955472, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA27 78", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4356733971, - "lat": 55.4633573, - "lon": -5.2867845, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "KA27 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4356757105, - "lat": 55.5556043, - "lon": -5.2801381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 12:00", - "name": "The Stonemasons Postbox", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "KA27 51", - "royal_cypher": "scottish_crown", - "source": "survey 30/11/14" - } -}, -{ - "type": "node", - "id": 4356766988, - "lat": 55.5389995, - "lon": -5.3363919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "KA27 201", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4356784724, - "lat": 55.4427940, - "lon": -5.1293842, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-08", - "collection_times": "Mo-Fr 14:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA27 149", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4356790288, - "lat": 55.5673797, - "lon": -5.1221880, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-27", - "collection_times": "Mo-Fr 15:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "KA27 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4356804080, - "lat": 54.2714803, - "lon": -0.9355386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 402", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4356824654, - "lat": 54.3095837, - "lon": -0.9491910, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4356826457, - "lat": 54.2685418, - "lon": -0.9360402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 431", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4356838820, - "lat": 54.2477830, - "lon": -1.0645352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "YO62 258", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4356964218, - "lat": 54.1726285, - "lon": -0.9791133, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO62 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4357070728, - "lat": 54.3011632, - "lon": -0.9529209, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO62 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4357225664, - "lat": 54.9862029, - "lon": -1.4354184, - "tags": { - "amenity": "post_box", - "ref": "NE34 30" - } -}, -{ - "type": "node", - "id": 4357251728, - "lat": 54.9639594, - "lon": -1.5239876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE31 578" - } -}, -{ - "type": "node", - "id": 4357272644, - "lat": 54.9663082, - "lon": -1.5156358, - "tags": { - "amenity": "post_box", - "ref": "NE31 647" - } -}, -{ - "type": "node", - "id": 4357432294, - "lat": 54.1849605, - "lon": -1.0596786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "YO62 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4357463525, - "lat": 54.2996280, - "lon": -0.9169841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO62 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4357478896, - "lat": 54.9450602, - "lon": -1.5147082, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4357526209, - "lat": 54.2011030, - "lon": -1.1075723, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO62 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4357551596, - "lat": 54.9383263, - "lon": -1.5200192, - "tags": { - "amenity": "post_box", - "ref": "NE10 31" - } -}, -{ - "type": "node", - "id": 4357552838, - "lat": 54.2470822, - "lon": -0.9734810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO62 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4357564471, - "lat": 53.9120987, - "lon": -0.9243468, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4357575535, - "lat": 53.9058270, - "lon": -0.9277005, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4357602780, - "lat": 54.5057675, - "lon": -0.6943307, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO21 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4358045485, - "lat": 54.0638634, - "lon": -1.3640973, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO51 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4358049923, - "lat": 54.1065261, - "lon": -1.3684176, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-27", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4358112525, - "lat": 54.4854349, - "lon": -0.6227046, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358118097, - "lat": 54.4356068, - "lon": -0.8944124, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO21 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358122953, - "lat": 54.1819292, - "lon": -0.3150981, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO14 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358150431, - "lat": 51.3524767, - "lon": -0.3780630, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT10 231", - "royal_cypher": "EVIIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 4358165183, - "lat": 52.6987928, - "lon": -1.3665588, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4358186803, - "lat": 50.3360296, - "lon": -4.7936670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358190963, - "lat": 52.2149224, - "lon": 1.4902648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP17 4617", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358215308, - "lat": 55.8290528, - "lon": -5.0249739, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 38", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4358215313, - "lat": 55.8083057, - "lon": -5.0226293, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4358215336, - "lat": 55.7627111, - "lon": -5.0353228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PA20 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358215339, - "lat": 55.8363194, - "lon": -5.0251188, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4358215363, - "lat": 55.8331141, - "lon": -5.0254809, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 31", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4359017713, - "lat": 50.6789422, - "lon": -3.5816844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4359059045, - "lat": 55.6420654, - "lon": -3.1164206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1691657991641730", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH45 54", - "source": "Dracos", - "survey:date": "2024-05-06" - } -}, -{ - "type": "node", - "id": 4359086997, - "lat": 55.6374488, - "lon": -3.1051197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "EH45 167", - "royal_cypher": "scottish_crown", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 4359093617, - "lat": 55.6448076, - "lon": -3.1397122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:30, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH45 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4359142145, - "lat": 54.5793661, - "lon": -5.9422923, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT9 6EL", - "addr:street": "Windsor Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Windsor Avenue North", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT9 418" - } -}, -{ - "type": "node", - "id": 4359142146, - "lat": 54.5794127, - "lon": -5.9391742, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "52", - "addr:postcode": "BT9 5BS", - "addr:street": "Malone Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Lennoxvale", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT9 132" - } -}, -{ - "type": "node", - "id": 4359381577, - "lat": 51.7820664, - "lon": -3.8006309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA9 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4359381580, - "lat": 51.7823838, - "lon": -3.8155819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "post_box:type": "lamp", - "ref": "SA9 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4359381581, - "lat": 51.7872378, - "lon": -3.8213884, - "tags": { - "amenity": "post_box", - "note": "No card on display at time of survey", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4359381585, - "lat": 51.7980612, - "lon": -3.8188839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA9 588D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4359381588, - "lat": 51.8056753, - "lon": -3.8253587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA9 586D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4359515133, - "lat": 55.8542991, - "lon": -5.1314445, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4359529824, - "lat": 55.8319512, - "lon": -5.0640832, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4359544858, - "lat": 55.8368313, - "lon": -5.0601189, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4359544871, - "lat": 55.8394852, - "lon": -5.0624444, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4359544873, - "lat": 55.8353959, - "lon": -5.0585463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA20 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4359568176, - "lat": 55.8361476, - "lon": -5.0513051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA20 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4359568180, - "lat": 55.8334890, - "lon": -5.0555511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA20 7", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4359568187, - "lat": 55.8356400, - "lon": -5.0483789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "post_box:type": "wall", - "ref": "PA20 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4359568391, - "lat": 55.8331741, - "lon": -5.0516620, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4359568393, - "lat": 55.8348747, - "lon": -5.0564711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA20 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4360230740, - "lat": 51.4682216, - "lon": -0.1906742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4360326709, - "lat": 52.8105313, - "lon": -3.3562871, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY10 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360335038, - "lat": 52.7957319, - "lon": -3.4089188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY10 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360359398, - "lat": 51.4708667, - "lon": -0.4879965, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4360359429, - "lat": 51.4711662, - "lon": -0.4886905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "TW6 1152", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4360359466, - "lat": 51.4717091, - "lon": -0.4886861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "level": "3", - "ref": "TW6 1150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360604399, - "lat": 52.8156951, - "lon": -3.2842299, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY10 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360604400, - "lat": 52.8217891, - "lon": -3.2936431, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY10 205D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4360604403, - "lat": 52.8252754, - "lon": -3.3016092, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "SY10 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4360608295, - "lat": 52.8416380, - "lon": -3.0821542, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY10 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360660788, - "lat": 52.8427786, - "lon": -3.0583415, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY10 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360729253, - "lat": 52.7996105, - "lon": -2.9423081, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY4 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360735992, - "lat": 52.7915821, - "lon": -2.8534858, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY4 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4360818550, - "lat": 50.7325660, - "lon": -2.4541758, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DT2 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4360867979, - "lat": 55.8436659, - "lon": -5.0339004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PA20 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4360868294, - "lat": 55.8414936, - "lon": -5.0244489, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4360868306, - "lat": 55.8435962, - "lon": -5.0397106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA20 3", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4360868319, - "lat": 55.8414998, - "lon": -5.0456918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA20 4", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4360868347, - "lat": 55.8370454, - "lon": -5.0520991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "LH aperture blocked up", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "PA20 1111", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4360868364, - "lat": 55.8449339, - "lon": -5.0306722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "post box was half stamp vending machine but this has been removed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_e", - "post_box:type": "pillar", - "ref": "PA20 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4360868446, - "lat": 55.8423195, - "lon": -5.0267924, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA20 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4360883878, - "lat": 51.5320496, - "lon": -0.6458527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL2 259", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4361205224, - "lat": 54.7011733, - "lon": -5.8856693, - "tags": { - "addr:city": "Greenisland", - "addr:housenumber": "34", - "addr:postcode": "BT38 8RL", - "addr:street": "Upper Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Knockagh", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT38 305" - } -}, -{ - "type": "node", - "id": 4361205229, - "lat": 54.6960399, - "lon": -5.8700791, - "tags": { - "addr:city": "Greenisland", - "addr:housenumber": "8", - "addr:postcode": "BT38 8TD", - "addr:street": "Glassillan Court", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "Outside Greenisland Post Office", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT38 604" - } -}, -{ - "type": "node", - "id": 4361231506, - "lat": 54.6921294, - "lon": -5.9178339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 805" - } -}, -{ - "type": "node", - "id": 4361504613, - "lat": 54.9445093, - "lon": -1.5332025, - "tags": { - "amenity": "post_box", - "ref": "NE10 166" - } -}, -{ - "type": "node", - "id": 4361521474, - "lat": 54.9410204, - "lon": -1.5311024, - "tags": { - "amenity": "post_box", - "ref": "NE10 174" - } -}, -{ - "type": "node", - "id": 4361545302, - "lat": 54.9434428, - "lon": -1.5380996, - "tags": { - "amenity": "post_box", - "ref": "NE10 150" - } -}, -{ - "type": "node", - "id": 4361545434, - "lat": 54.9367073, - "lon": -1.5433329, - "tags": { - "amenity": "post_box", - "ref": "NE10 22" - } -}, -{ - "type": "node", - "id": 4361601903, - "lat": 51.8110744, - "lon": -2.6164566, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4361631943, - "lat": 54.9410360, - "lon": -1.5456706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 152" - } -}, -{ - "type": "node", - "id": 4361647243, - "lat": 54.9463806, - "lon": -1.5416885, - "tags": { - "amenity": "post_box", - "ref": "NE10 91" - } -}, -{ - "type": "node", - "id": 4361657262, - "lat": 54.9438204, - "lon": -1.5429965, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE10 136" - } -}, -{ - "type": "node", - "id": 4361674458, - "lat": 55.9156920, - "lon": -5.1335484, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "PA22 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4361675703, - "lat": 54.9363200, - "lon": -1.5519128, - "tags": { - "amenity": "post_box", - "ref": "NE10 148" - } -}, -{ - "type": "node", - "id": 4361693249, - "lat": 54.9326590, - "lon": -1.5502044, - "tags": { - "amenity": "post_box", - "ref": "NE10 149" - } -}, -{ - "type": "node", - "id": 4361716777, - "lat": 54.9353836, - "lon": -1.5575470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE10 158" - } -}, -{ - "type": "node", - "id": 4361729158, - "lat": 56.6235418, - "lon": -6.5271650, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA78 155", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4361740217, - "lat": 54.9470507, - "lon": -1.5531019, - "tags": { - "amenity": "post_box", - "ref": "NE10 131" - } -}, -{ - "type": "node", - "id": 4361740306, - "lat": 54.9497694, - "lon": -1.5539083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 52" - } -}, -{ - "type": "node", - "id": 4361755472, - "lat": 51.9766163, - "lon": -2.7546432, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4361854222, - "lat": 50.8575091, - "lon": 0.5759800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "TN34 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4361920267, - "lat": 51.6302618, - "lon": -0.1943543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "N20 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4361982026, - "lat": 53.4161602, - "lon": -2.1057006, - "tags": { - "amenity": "post_box", - "post_box:design": "type_d", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4362079070, - "lat": 51.4646320, - "lon": -0.1467067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SW4 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26355409" - } -}, -{ - "type": "node", - "id": 4362113892, - "lat": 56.0808963, - "lon": -3.4135072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "inside Asda", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 436" - } -}, -{ - "type": "node", - "id": 4362162641, - "lat": 55.9886833, - "lon": -3.9673608, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4362167724, - "lat": 53.2586373, - "lon": -1.9161790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "SK17 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4362179303, - "lat": 51.4719793, - "lon": -0.0449423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4362182874, - "lat": 51.5188355, - "lon": -0.2187546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "W10 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4362222644, - "lat": 55.6803442, - "lon": -6.5062882, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA47 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4362222680, - "lat": 55.6762990, - "lon": -6.5054353, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA47 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4362823046, - "lat": 54.9479409, - "lon": -1.5649445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4362832037, - "lat": 54.9477017, - "lon": -1.5586373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE10 33" - } -}, -{ - "type": "node", - "id": 4362832496, - "lat": 54.9449150, - "lon": -1.5572662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 119" - } -}, -{ - "type": "node", - "id": 4362861630, - "lat": 54.9416799, - "lon": -1.5614907, - "tags": { - "amenity": "post_box", - "ref": "NE10 163" - } -}, -{ - "type": "node", - "id": 4362873887, - "lat": 54.9378144, - "lon": -1.5619528, - "tags": { - "amenity": "post_box", - "ref": "NE10 78" - } -}, -{ - "type": "node", - "id": 4362968344, - "lat": 54.9425693, - "lon": -1.5760632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE10 86" - } -}, -{ - "type": "node", - "id": 4363018135, - "lat": 54.9483306, - "lon": -1.5759792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE10 156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4363075486, - "lat": 54.9492457, - "lon": -1.5711955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4363162712, - "lat": 53.2013880, - "lon": -3.4570750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4363534709, - "lat": 51.5868606, - "lon": -1.5006115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX12 1140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4363576018, - "lat": 51.4334462, - "lon": -1.9711112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 249D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4363618121, - "lat": 51.8643062, - "lon": -4.1020869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA32 143", - "post_box:type": "wall", - "ref": "SA32 143D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4363618122, - "lat": 51.8713290, - "lon": -3.9791935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 03:30", - "post_box:type": "wall", - "ref": "SA19 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4363618134, - "lat": 51.8804308, - "lon": -4.0986801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "SA32 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4363622216, - "lat": 52.9826568, - "lon": -3.3327667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 4363628824, - "lat": 50.8359858, - "lon": -4.5513621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX23 24D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4363681909, - "lat": 55.7439022, - "lon": -4.2764774, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4363681910, - "lat": 55.7381117, - "lon": -4.2781937, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4364334800, - "lat": 54.9499220, - "lon": -1.5698086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE10 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4364377408, - "lat": 54.9509336, - "lon": -1.5709177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE10 82D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4364405438, - "lat": 51.5131243, - "lon": -1.9444327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 130D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4364405463, - "lat": 51.5240975, - "lon": -1.9469559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 48D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4364433032, - "lat": 54.6343187, - "lon": -5.9440497, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "44", - "addr:postcode": "BT15 5HD", - "addr:street": "North Circular Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection time as of 17/09/2017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 271" - } -}, -{ - "type": "node", - "id": 4364451878, - "lat": 54.9512037, - "lon": -1.5639237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "NE10 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4364466658, - "lat": 54.9527085, - "lon": -1.5614953, - "tags": { - "amenity": "post_box", - "ref": "NE10 138" - } -}, -{ - "type": "node", - "id": 4364497497, - "lat": 54.9533669, - "lon": -1.5681819, - "tags": { - "amenity": "post_box", - "ref": "NE10 83" - } -}, -{ - "type": "node", - "id": 4364559560, - "lat": 54.9566999, - "lon": -1.5761159, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4364966374, - "lat": 54.9563001, - "lon": -1.5335430, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 102" - } -}, -{ - "type": "node", - "id": 4365014716, - "lat": 54.9525840, - "lon": -1.5504516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE10 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365014780, - "lat": 54.9535819, - "lon": -1.5455697, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 57" - } -}, -{ - "type": "node", - "id": 4365022276, - "lat": 54.9557220, - "lon": -1.5479984, - "tags": { - "amenity": "post_box", - "ref": "NE10 155" - } -}, -{ - "type": "node", - "id": 4365090365, - "lat": 53.7776827, - "lon": -3.0324236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa-Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "FY4 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090366, - "lat": 53.7776985, - "lon": -3.0324323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090367, - "lat": 53.7791745, - "lon": -3.0351373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "FY4 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090368, - "lat": 53.7795430, - "lon": -3.0402926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090369, - "lat": 53.7852748, - "lon": -3.0231754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4365090370, - "lat": 53.7858583, - "lon": -3.0327475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090371, - "lat": 53.7876486, - "lon": -3.0138279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090372, - "lat": 53.7936141, - "lon": -3.0170465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4365090373, - "lat": 53.7961665, - "lon": -3.0249014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090374, - "lat": 53.7967289, - "lon": -3.0153366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090375, - "lat": 53.7976299, - "lon": -3.0178237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "FY4 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365090376, - "lat": 53.7997448, - "lon": -3.0333041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365312626, - "lat": 55.6093113, - "lon": -4.2596429, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4365417115, - "lat": 51.2064303, - "lon": -4.1089256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/ilfracombe-2021-09-04/DSCN3279.JPG", - "post_box:type": "lamp", - "ref": "EX34 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494947, - "lat": 51.8589767, - "lon": -4.3008484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA31 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4365494948, - "lat": 51.8606786, - "lon": -4.2991905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494949, - "lat": 51.8618816, - "lon": -4.3053872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA31 305", - "post_box:type": "wall", - "ref": "SA31 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494950, - "lat": 51.8624527, - "lon": -4.2976144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA31 486", - "post_box:type": "pillar", - "ref": "SA31 486D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494951, - "lat": 51.8637660, - "lon": -4.3133616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "wall", - "ref": "SA31 557", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494952, - "lat": 51.8658846, - "lon": -4.2709150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA31 479", - "post_box:type": "lamp", - "ref": "SA31 479D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494953, - "lat": 51.8717349, - "lon": -4.1518091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA32 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494956, - "lat": 51.8723673, - "lon": -4.1303672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA32 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494971, - "lat": 51.8740176, - "lon": -4.1896118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA32 393D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494972, - "lat": 51.8758707, - "lon": -4.1126637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA32 559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494973, - "lat": 51.8807929, - "lon": -4.0602203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA32 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365494974, - "lat": 51.8854937, - "lon": -3.9879595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4365494975, - "lat": 51.8860356, - "lon": -3.9924906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "SA19 335", - "post_box:type": "wall", - "ref": "SA19 335D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4365494983, - "lat": 51.8890377, - "lon": -4.0023248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:45", - "post_box:type": "lamp", - "ref": "SA19 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365495891, - "lat": 51.8974458, - "lon": -4.0130020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "SA19 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365510824, - "lat": 51.2086318, - "lon": -4.1267217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "image": "https://archive.org/details/ilfracombe-2021-09-05/DSCN3858.JPG", - "post_box:manufacturer": "Carron Co, Falkirk", - "post_box:type": "wall", - "ref": "EX34 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4365700854, - "lat": 58.6431508, - "lon": -3.1082375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 14:30", - "post_box:type": "lamp", - "ref": "KW1 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4365710783, - "lat": 58.6481930, - "lon": -3.1951059, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW14 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4365720730, - "lat": 58.5938567, - "lon": -3.0863101, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4365753898, - "lat": 58.7482194, - "lon": -2.9488322, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4365818345, - "lat": 56.4636794, - "lon": -2.9683066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-07", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "note": "boxes 6 & 7 are physically one unit. Cipher ground off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DD1 7", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4365818348, - "lat": 56.4636645, - "lon": -2.9683468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-07", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "note": "no cipher (ground off), boxes 6 and 7 are physically one unit", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DD1 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4365818349, - "lat": 56.4609319, - "lon": -2.9666007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4365818351, - "lat": 56.4629029, - "lon": -2.9671344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4365949670, - "lat": 54.9576269, - "lon": -1.5387170, - "tags": { - "amenity": "post_box", - "ref": "NE10 101" - } -}, -{ - "type": "node", - "id": 4365970756, - "lat": 54.9585523, - "lon": -1.5331627, - "tags": { - "amenity": "post_box", - "ref": "NE10 29" - } -}, -{ - "type": "node", - "id": 4366121812, - "lat": 54.9382994, - "lon": -1.5816928, - "tags": { - "amenity": "post_box", - "ref": "NE9 132" - } -}, -{ - "type": "node", - "id": 4366164195, - "lat": 54.9346465, - "lon": -1.5744059, - "tags": { - "amenity": "post_box", - "ref": "NE9 164" - } -}, -{ - "type": "node", - "id": 4366409594, - "lat": 54.9276131, - "lon": -1.5660466, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4366409675, - "lat": 54.9302864, - "lon": -1.5616841, - "tags": { - "amenity": "post_box", - "ref": "NE9 141" - } -}, -{ - "type": "node", - "id": 4366479424, - "lat": 54.9190938, - "lon": -1.5883962, - "tags": { - "amenity": "post_box", - "ref": "NE9 169" - } -}, -{ - "type": "node", - "id": 4366479425, - "lat": 54.9214320, - "lon": -1.5830693, - "tags": { - "amenity": "post_box", - "ref": "NE9 170" - } -}, -{ - "type": "node", - "id": 4366479933, - "lat": 53.7890916, - "lon": -2.9985394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FY4 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4366486866, - "lat": 54.9225098, - "lon": -1.5893994, - "tags": { - "amenity": "post_box", - "ref": "NE9 159" - } -}, -{ - "type": "node", - "id": 4366503718, - "lat": 54.9212753, - "lon": -1.5936441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 104" - } -}, -{ - "type": "node", - "id": 4366518338, - "lat": 54.9253708, - "lon": -1.5987876, - "tags": { - "amenity": "post_box", - "ref": "NE9 146" - } -}, -{ - "type": "node", - "id": 4366519077, - "lat": 54.9253589, - "lon": -1.6046685, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE9 160" - } -}, -{ - "type": "node", - "id": 4366556218, - "lat": 59.0667211, - "lon": -2.8235321, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4366695418, - "lat": 54.0913737, - "lon": -2.8138964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA2 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4366875174, - "lat": 55.6373560, - "lon": -3.8703709, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4366919891, - "lat": 54.0140868, - "lon": -0.3932392, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4366979355, - "lat": 54.0065315, - "lon": -0.4373236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO25 310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4366979356, - "lat": 54.0048747, - "lon": -0.4428193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO25 307", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4366979359, - "lat": 54.0128372, - "lon": -0.4410654, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO25 388", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4366979362, - "lat": 54.0101012, - "lon": -0.4378125, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 383", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4366979891, - "lat": 54.0116571, - "lon": -0.4235021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO25 391", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4366979896, - "lat": 53.9913628, - "lon": -0.3813788, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4366984751, - "lat": 54.0179451, - "lon": -0.3855304, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4367041554, - "lat": 51.1988922, - "lon": -4.1075808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "ref": "EX34 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4367042963, - "lat": 54.0044844, - "lon": -0.4321229, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4367178080, - "lat": 53.9827873, - "lon": -0.4094906, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4367527041, - "lat": 54.9269600, - "lon": -1.5965007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 11" - } -}, -{ - "type": "node", - "id": 4367527215, - "lat": 54.9242109, - "lon": -1.5947172, - "tags": { - "amenity": "post_box", - "ref": "NE9 772" - } -}, -{ - "type": "node", - "id": 4367544024, - "lat": 54.9255813, - "lon": -1.5915302, - "tags": { - "amenity": "post_box", - "ref": "NE9 113" - } -}, -{ - "type": "node", - "id": 4367561228, - "lat": 54.9273612, - "lon": -1.5886308, - "tags": { - "amenity": "post_box", - "ref": "NE9 162" - } -}, -{ - "type": "node", - "id": 4367597244, - "lat": 54.9300447, - "lon": -1.5953248, - "tags": { - "amenity": "post_box", - "ref": "NE9 87" - } -}, -{ - "type": "node", - "id": 4367615772, - "lat": 54.9454166, - "lon": -1.5739080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4367615773, - "lat": 54.9429154, - "lon": -1.5494037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE10 151", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4367642322, - "lat": 54.9498753, - "lon": -1.5468940, - "tags": { - "amenity": "post_box", - "ref": "NE10 143" - } -}, -{ - "type": "node", - "id": 4367677237, - "lat": 54.9489655, - "lon": -1.5430965, - "tags": { - "amenity": "post_box", - "ref": "NE10 130" - } -}, -{ - "type": "node", - "id": 4367679469, - "lat": 54.9476466, - "lon": -1.5297183, - "tags": { - "amenity": "post_box", - "ref": "NE10 103" - } -}, -{ - "type": "node", - "id": 4367702373, - "lat": 54.9471483, - "lon": -1.5236130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE10 813" - } -}, -{ - "type": "node", - "id": 4367801264, - "lat": 54.9281207, - "lon": -1.5765613, - "tags": { - "amenity": "post_box", - "ref": "NE9 120" - } -}, -{ - "type": "node", - "id": 4367840650, - "lat": 54.9340466, - "lon": -1.5823738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 115" - } -}, -{ - "type": "node", - "id": 4367841563, - "lat": 54.9312125, - "lon": -1.5977978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4368446469, - "lat": 51.8550469, - "lon": -4.2821257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA31 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368447376, - "lat": 51.8654331, - "lon": -4.1891867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA32 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368447377, - "lat": 51.8812571, - "lon": -3.9937848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "post_box:type": "wall", - "ref": "SA19 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368447378, - "lat": 51.8834122, - "lon": -3.9924850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "post_box:type": "pillar", - "ref": "SA19 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368447380, - "lat": 51.8852802, - "lon": -4.0671214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA32 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368447420, - "lat": 51.8916705, - "lon": -3.9882831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:type": "lamp", - "ref": "SA19 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368447434, - "lat": 51.8932757, - "lon": -4.0389224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA19 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4368489195, - "lat": 51.2222853, - "lon": -1.4798864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4368517052, - "lat": 52.3781329, - "lon": 1.5950076, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4370346087, - "lat": 53.5447161, - "lon": -1.0799364, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "DN2 522" - } -}, -{ - "type": "node", - "id": 4370539060, - "lat": 53.7093440, - "lon": -1.0205478, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DN14 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4370973810, - "lat": 53.3508335, - "lon": -2.6219362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 243", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4371128112, - "lat": 57.7228369, - "lon": -4.1022100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV18 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4371643540, - "lat": 52.8136026, - "lon": -1.1423587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "LE12 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371710210, - "lat": 51.6622336, - "lon": -4.0473426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371710214, - "lat": 51.6632740, - "lon": -4.0744598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA4 493", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4371710229, - "lat": 51.6635622, - "lon": -4.0580163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA4 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371766198, - "lat": 51.5505954, - "lon": 0.0053805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4371963104, - "lat": 51.6460296, - "lon": -3.9714107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA5 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4371963108, - "lat": 51.6472765, - "lon": -3.9829140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA5 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371963111, - "lat": 51.6490398, - "lon": -3.9335186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA6 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371963113, - "lat": 51.6499867, - "lon": -3.9948439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA5 191", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4371963116, - "lat": 51.6593852, - "lon": -4.0300628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "SA4 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371963120, - "lat": 51.6611759, - "lon": -3.9253768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA6 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4371963122, - "lat": 51.6663302, - "lon": -3.9245770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4371963145, - "lat": 51.6704655, - "lon": -3.9211071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "lamp", - "ref": "SA6 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4372056540, - "lat": 51.6853253, - "lon": -3.9079615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA6 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4372056541, - "lat": 51.6924620, - "lon": -3.9018358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA6 395D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4372056542, - "lat": 51.6953199, - "lon": -3.8952580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SA6 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4372056543, - "lat": 51.7154943, - "lon": -3.8577717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA8 629D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4372056546, - "lat": 51.7196621, - "lon": -3.8502079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SA8 648", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4372056547, - "lat": 51.7197047, - "lon": -3.8539113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA8 653", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4372056550, - "lat": 51.7245317, - "lon": -3.8523731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA8 649D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4372630347, - "lat": 50.3542919, - "lon": -4.4541932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL13 134", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 4372893920, - "lat": 52.8513992, - "lon": -0.9746363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "LE14 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4373256135, - "lat": 52.3498538, - "lon": 0.5027119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373256136, - "lat": 52.3447584, - "lon": 0.5057026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP28 2220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373256145, - "lat": 52.3507615, - "lon": 0.5119683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373256175, - "lat": 52.3501537, - "lon": 0.5078591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "IP28 2216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373261979, - "lat": 52.3512373, - "lon": 0.5098880, - "tags": { - "amenity": "post_box", - "mail:franked": "yes", - "mail:unfranked": "no", - "note": "Slot in all of Royal Mail building, no collection plate visible from road. Public access only during opening times." - } -}, -{ - "type": "node", - "id": 4373261980, - "lat": 52.3513693, - "lon": 0.5098761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP28 2283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373278006, - "lat": 52.3465573, - "lon": 0.5106933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373278014, - "lat": 52.3545035, - "lon": 0.5164316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373278017, - "lat": 52.3466384, - "lon": 0.5129822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2290D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4373287592, - "lat": 52.3418969, - "lon": 0.5093494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP28 2185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374214696, - "lat": 50.1537504, - "lon": -5.5153926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:45; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR20 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2018-11-01" - } -}, -{ - "type": "node", - "id": 4374396489, - "lat": 50.9687010, - "lon": 0.0843232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TN22 101", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4374396491, - "lat": 50.9716525, - "lon": 0.0964860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 1112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374396492, - "lat": 50.9698592, - "lon": 0.0961607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN22 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374396494, - "lat": 50.9716645, - "lon": 0.0964901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 1111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374396504, - "lat": 50.9734240, - "lon": 0.0960118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374705225, - "lat": 52.2344822, - "lon": -2.0865244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR9 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374705226, - "lat": 52.2570911, - "lon": -2.2065914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374705227, - "lat": 52.2639542, - "lon": -2.1844907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR9 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374705228, - "lat": 52.2674129, - "lon": -2.1559198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WR9 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374705229, - "lat": 52.2705791, - "lon": -2.2285178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WR9 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374707996, - "lat": 52.2832842, - "lon": -2.2618818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR9 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374708010, - "lat": 52.2906654, - "lon": -2.2410645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WR9 357", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4374708063, - "lat": 52.3045704, - "lon": -2.1743191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "post_box:type": "lamp", - "ref": "WR9 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374708079, - "lat": 52.3241150, - "lon": -2.1901401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "wall", - "ref": "WR9 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374708083, - "lat": 52.3354214, - "lon": -2.1841869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "pillar", - "ref": "WR9 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374708084, - "lat": 52.3354886, - "lon": -2.1753544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "WR9 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4374721690, - "lat": 50.9719868, - "lon": 0.0884338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 5D" - } -}, -{ - "type": "node", - "id": 4374721691, - "lat": 50.9641018, - "lon": 0.0979478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4374721692, - "lat": 50.9592289, - "lon": 0.0994443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 93D" - } -}, -{ - "type": "node", - "id": 4374721693, - "lat": 50.9620803, - "lon": 0.1085933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 102" - } -}, -{ - "type": "node", - "id": 4374721694, - "lat": 50.9570676, - "lon": 0.1061150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 95D" - } -}, -{ - "type": "node", - "id": 4374721695, - "lat": 50.9561870, - "lon": 0.0992984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 92" - } -}, -{ - "type": "node", - "id": 4374766111, - "lat": 51.7916546, - "lon": -2.2396526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL4 155", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4375494001, - "lat": 52.2698067, - "lon": -1.4093721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4375644922, - "lat": 53.5908340, - "lon": -2.7619450, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4375708898, - "lat": 51.2228621, - "lon": 0.6862287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 102D" - } -}, -{ - "type": "node", - "id": 4375708899, - "lat": 51.2088173, - "lon": 0.6797392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME17 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4375721803, - "lat": 51.2189387, - "lon": 0.6827617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4375721804, - "lat": 51.2013716, - "lon": 0.6720074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 160" - } -}, -{ - "type": "node", - "id": 4375721805, - "lat": 51.2057560, - "lon": 0.6519961, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 75D" - } -}, -{ - "type": "node", - "id": 4375731192, - "lat": 51.2168317, - "lon": 0.6434006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME17 74", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4375781641, - "lat": 54.5975121, - "lon": -5.9349895, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT1 6DZ", - "addr:street": "College Square East", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BT1 30" - } -}, -{ - "type": "node", - "id": 4375781642, - "lat": 54.6270457, - "lon": -5.9435971, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT15 5BP", - "addr:street": "Cavehill Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 669" - } -}, -{ - "type": "node", - "id": 4375781643, - "lat": 54.6367188, - "lon": -5.9234160, - "tags": { - "addr:city": "Belfast", - "addr:housename": "Parkmount Post Office", - "addr:housenumber": "101", - "addr:postcode": "BT15 4HE", - "addr:street": "Donegall Park Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 515" - } -}, -{ - "type": "node", - "id": 4375781644, - "lat": 54.6082799, - "lon": -5.9299418, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "24-28", - "addr:postcode": "BT15 1ES", - "addr:street": "North Queen Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 78" - } -}, -{ - "type": "node", - "id": 4375975590, - "lat": 51.8531979, - "lon": -4.2937000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA31 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4376087720, - "lat": 55.8971071, - "lon": -3.0666089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 34D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4376099893, - "lat": 56.4527992, - "lon": -5.3852878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PA37 76", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4376568130, - "lat": 52.0978747, - "lon": -3.6018366, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD4 166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4376577652, - "lat": 52.1123801, - "lon": -3.5548633, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD4 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4376580745, - "lat": 52.1167474, - "lon": -3.5390114, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD4 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4376989375, - "lat": 54.6037540, - "lon": -5.9296028, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT15 1AS", - "addr:street": "York Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT15 371", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4376989376, - "lat": 54.5922245, - "lon": -5.9342521, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "83", - "addr:postcode": "BT2 7AF", - "addr:street": "Great Victoria Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT2 408" - } -}, -{ - "type": "node", - "id": 4376989506, - "lat": 54.5728963, - "lon": -5.9149912, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT7 2HL", - "addr:street": "Ormeau Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT7 176" - } -}, -{ - "type": "node", - "id": 4376989507, - "lat": 54.5873622, - "lon": -5.9239422, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "111", - "addr:postcode": "BT7 1SH", - "addr:street": "Ormeau Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT7 219" - } -}, -{ - "type": "node", - "id": 4376989511, - "lat": 54.5951265, - "lon": -5.9312010, - "tags": { - "addr:city": "Belfast", - "addr:street": "Bedford Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT2 1005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4376989512, - "lat": 54.5951482, - "lon": -5.9312022, - "tags": { - "addr:city": "Belfast", - "addr:street": "Bedford Street", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "colour": "red", - "description": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BT2 5", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4377527019, - "lat": 50.7075154, - "lon": -2.4180701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 185D", - "ref:GB:uprn": "10015322326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 4377866901, - "lat": 51.6677221, - "lon": -4.0317661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 488D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377866902, - "lat": 51.6694265, - "lon": -4.0421861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "wall", - "ref": "SA4 502", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4377866905, - "lat": 51.6712777, - "lon": -4.0078170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "SA4 490", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4377866906, - "lat": 51.6729646, - "lon": -4.0523230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "pillar", - "ref": "SA4 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377866908, - "lat": 51.6772584, - "lon": -4.0404137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 507D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377866909, - "lat": 51.6892034, - "lon": -4.0377338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA4 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377866913, - "lat": 51.6978255, - "lon": -4.0413424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA4 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377866915, - "lat": 51.7158026, - "lon": -4.0302127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 525D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4377934050, - "lat": 50.9729947, - "lon": 0.0908617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377934051, - "lat": 50.9735051, - "lon": 0.1091653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377934052, - "lat": 50.9757868, - "lon": 0.1085462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377934053, - "lat": 50.9778655, - "lon": 0.1041452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN22 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377934054, - "lat": 50.9505879, - "lon": 0.0940122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4377934055, - "lat": 50.9667991, - "lon": 0.1032249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4377934056, - "lat": 50.9661012, - "lon": 0.1062244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4378893307, - "lat": 52.2842575, - "lon": -1.5310159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4379267273, - "lat": 54.9358491, - "lon": -1.6077196, - "tags": { - "amenity": "post_box", - "ref": "NE9 26" - } -}, -{ - "type": "node", - "id": 4379267498, - "lat": 54.9477440, - "lon": -1.5990913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4379287546, - "lat": 54.9420266, - "lon": -1.5993582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE9 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4379547265, - "lat": 52.0542419, - "lon": -3.4489777, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 406", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4379561355, - "lat": 51.9930387, - "lon": -3.4117915, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4379561363, - "lat": 52.0126636, - "lon": -3.4176642, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4379564869, - "lat": 51.9818403, - "lon": -3.4082765, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4379567038, - "lat": 51.9670288, - "lon": -3.3765012, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4379907024, - "lat": 51.8590032, - "lon": -4.3213638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA31 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4379907025, - "lat": 51.8590680, - "lon": -4.3140002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA31 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380011702, - "lat": 54.0114145, - "lon": -0.3865452, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380021661, - "lat": 53.9889622, - "lon": -0.2072060, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO25 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380029471, - "lat": 53.9726380, - "lon": -0.2753378, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380041663, - "lat": 54.0950588, - "lon": -0.3266209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO25 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4380044979, - "lat": 54.1337931, - "lon": -0.3434043, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 364", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4380382833, - "lat": 54.9326821, - "lon": -1.5903510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE9 55" - } -}, -{ - "type": "node", - "id": 4380412683, - "lat": 54.9371424, - "lon": -1.5849118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE9 95" - } -}, -{ - "type": "node", - "id": 4380477475, - "lat": 54.9406484, - "lon": -1.5878035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380477555, - "lat": 54.9427563, - "lon": -1.5899354, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 45" - } -}, -{ - "type": "node", - "id": 4380651408, - "lat": 54.0935664, - "lon": -0.3095589, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380744291, - "lat": 51.4247228, - "lon": 0.5273193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME3 286D" - } -}, -{ - "type": "node", - "id": 4380792406, - "lat": 54.9357594, - "lon": -1.5982621, - "tags": { - "amenity": "post_box", - "ref": "NE9 171" - } -}, -{ - "type": "node", - "id": 4380803172, - "lat": 54.9381697, - "lon": -1.5895062, - "tags": { - "amenity": "post_box", - "ref": "NE9 89" - } -}, -{ - "type": "node", - "id": 4380810892, - "lat": 51.4065386, - "lon": 0.4334354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DA12 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380810894, - "lat": 51.4086387, - "lon": 0.4455900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DA12 106D" - } -}, -{ - "type": "node", - "id": 4380810895, - "lat": 51.3903202, - "lon": 0.5175926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME2 146" - } -}, -{ - "type": "node", - "id": 4380846390, - "lat": 51.4290477, - "lon": 0.5265515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME3 172" - } -}, -{ - "type": "node", - "id": 4380976434, - "lat": 53.8119387, - "lon": -3.0450212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380976435, - "lat": 53.8141360, - "lon": -3.0486167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380976436, - "lat": 53.8181825, - "lon": -2.9926239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "note": "the box has a crown on top with inscription \"To commemorate the Silver Jubilee of her majesty Queen Elizabeth II 1952-1977\"", - "note:royal_cypher": "has Scottish Crown rather than St Edward's Crown above EIIR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "FY3 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380976437, - "lat": 53.8206528, - "lon": -3.0423176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4380976439, - "lat": 53.8325911, - "lon": -3.0113810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 268D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4380976440, - "lat": 53.8325077, - "lon": -3.0195961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380976441, - "lat": 53.8338590, - "lon": -3.0245748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 189D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4380976442, - "lat": 53.8355953, - "lon": -3.0143716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380976443, - "lat": 53.8366067, - "lon": -3.0240356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY3 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4380976444, - "lat": 53.8366210, - "lon": -3.0240142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa-Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "FY3 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4381031057, - "lat": 51.8537734, - "lon": -4.3173497, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "covered": "yes", - "indoor": "yes", - "opening_hours": "Mo-Sa 06:00-00:00; Su 10:00-16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA31 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4381366461, - "lat": 51.0198381, - "lon": 0.0916710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4381366462, - "lat": 51.0160412, - "lon": 0.0865473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4381366463, - "lat": 51.0129552, - "lon": 0.0787052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4381366464, - "lat": 50.9529886, - "lon": 0.1166651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4381415277, - "lat": 54.7019498, - "lon": -1.2283469, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "last_collection": "Mo-Fr 14:00", - "operator": "University Hospital of Hartlepool" - } -}, -{ - "type": "node", - "id": 4381640442, - "lat": 53.4061488, - "lon": -2.9816110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR double aperture type C post box L1 & L1002 by Machan on Houghton Street, Liverpool.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L1 1;L1 1002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L1 1 & 1002 on Houghton Street.jpg" - } -}, -{ - "type": "node", - "id": 4382031092, - "lat": 50.9906616, - "lon": 0.1037658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031093, - "lat": 50.9961146, - "lon": 0.0948144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031094, - "lat": 50.9962262, - "lon": 0.0827346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031095, - "lat": 50.9637138, - "lon": 0.1552412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031096, - "lat": 50.9639646, - "lon": 0.1292914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031097, - "lat": 50.9897748, - "lon": 0.1328911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN22 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4382031098, - "lat": 50.9942060, - "lon": 0.1029652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031099, - "lat": 50.9977248, - "lon": 0.0876737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN22 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031100, - "lat": 50.9488894, - "lon": 0.1290058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031101, - "lat": 50.9670196, - "lon": 0.1470051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4382031102, - "lat": 50.9789399, - "lon": 0.1431015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031103, - "lat": 50.9915438, - "lon": 0.1180477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031104, - "lat": 50.9973102, - "lon": 0.1046466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031105, - "lat": 51.0018818, - "lon": 0.0846113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031106, - "lat": 50.9659521, - "lon": 0.1735554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382031107, - "lat": 50.9953031, - "lon": 0.1553371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4382050943, - "lat": 53.4305054, - "lon": -2.9922364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "Queen Victoria Type B post box L5 394 by Andrew Handyside & Co on Sandhills Lane, Kirkdale, Liverpool.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 394", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Sandhills Lane, Kirkdale.jpg" - } -}, -{ - "type": "node", - "id": 4382050949, - "lat": 53.4301267, - "lon": -2.9919790, - "tags": { - "amenity": "post_box", - "post_box:design": "liverpool_special", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4382143601, - "lat": 50.6257330, - "lon": -3.4500833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 08:45; Su off", - "colour": "yellow", - "inscription": "This postbox was given to Starcross by the people of Henvic Britanny to commemorate the close friendship that exists between our two communities", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "french_lamp", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX6 700", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4382166848, - "lat": 51.1085291, - "lon": -4.1629285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "yellow", - "comment": "French. Presented by twin Plouescat", - "post_box:design": "french_lamp", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "EX33 78D" - } -}, -{ - "type": "node", - "id": 4382281947, - "lat": 51.0138184, - "lon": 0.1361619, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281948, - "lat": 50.9452535, - "lon": 0.0610337, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281949, - "lat": 51.0077718, - "lon": 0.0837749, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281951, - "lat": 51.0095886, - "lon": 0.1458754, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281952, - "lat": 50.9683980, - "lon": 0.0661324, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281955, - "lat": 51.0201820, - "lon": 0.1291401, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TN22 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4382281956, - "lat": 51.0057470, - "lon": 0.1279253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281959, - "lat": 51.0188075, - "lon": 0.1352323, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281960, - "lat": 50.9352797, - "lon": 0.0645070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281961, - "lat": 50.9738360, - "lon": 0.0647742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281963, - "lat": 51.0109908, - "lon": 0.1296782, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN22 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281964, - "lat": 51.0225213, - "lon": 0.1568775, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN6 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382281965, - "lat": 50.9876876, - "lon": 0.0626438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN22 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4382735478, - "lat": 53.7449041, - "lon": -1.5985082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382735479, - "lat": 53.7437931, - "lon": -1.5942042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS27 346D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4382736093, - "lat": 53.7434639, - "lon": -1.5989589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LS27 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382766863, - "lat": 51.0199330, - "lon": -4.2077214, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382766891, - "lat": 51.0180322, - "lon": -4.2047330, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4382766906, - "lat": 51.0159509, - "lon": -4.2124555, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4382766919, - "lat": 51.0210744, - "lon": -4.2052162, - "tags": { - "addr:city": "Bideford", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "yellow", - "inscription": "This post box was presented to the people of Bideford by the Landivisiau twinning committee in May 1992.", - "post_box:design": "french_lamp", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "EX39 183D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4382766978, - "lat": 51.0201176, - "lon": -4.2041530, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "EX39 181" - } -}, -{ - "type": "node", - "id": 4382791558, - "lat": 50.5529826, - "lon": -3.5484472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 4382791577, - "lat": 50.5536990, - "lon": -3.5427742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ14 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 4382791588, - "lat": 50.5472811, - "lon": -3.5249271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 4383820838, - "lat": 50.6565961, - "lon": -3.6551842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4384163226, - "lat": 51.0019039, - "lon": -2.6830501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4384351877, - "lat": 50.8994763, - "lon": -3.4659797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384351878, - "lat": 50.8996074, - "lon": -3.4602407, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4384351879, - "lat": 50.9002443, - "lon": -3.4724684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384351882, - "lat": 50.9031300, - "lon": -3.4915700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4384351884, - "lat": 50.9066860, - "lon": -3.4080780, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384351885, - "lat": 50.9098400, - "lon": -3.4425100, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384351887, - "lat": 50.9702951, - "lon": -3.7925170, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX36 106D" - } -}, -{ - "type": "node", - "id": 4384351888, - "lat": 50.9846947, - "lon": -3.8180176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX36 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384362610, - "lat": 51.8762142, - "lon": -2.0531945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2016-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384420760, - "lat": 54.1499180, - "lon": -0.6881544, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "YO17 112", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4384422514, - "lat": 56.5610807, - "lon": -2.5770998, - "tags": { - "amenity": "post_box", - "ref": "DD11 301" - } -}, -{ - "type": "node", - "id": 4384427747, - "lat": 54.1855063, - "lon": -0.6193840, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "YO17 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4384428738, - "lat": 51.6005981, - "lon": -4.2234912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA3 669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384428741, - "lat": 51.6057214, - "lon": -4.1838552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "wall", - "ref": "SA3 663", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4384428745, - "lat": 51.6135027, - "lon": -4.1603260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "wall", - "ref": "SA3 661", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4384428748, - "lat": 51.6289259, - "lon": -4.0644871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 455D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384428751, - "lat": 51.6313970, - "lon": -4.1265505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 478D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384428756, - "lat": 51.6420967, - "lon": -4.1031439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 481D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384428758, - "lat": 51.6426838, - "lon": -4.0972048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 482D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384428759, - "lat": 51.6427428, - "lon": -4.1058835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "SA4 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384428762, - "lat": 51.6429244, - "lon": -4.1134077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 479D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4384429006, - "lat": 51.6633902, - "lon": -4.0402066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "SA4 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429041, - "lat": 51.6645510, - "lon": -4.0457657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 485D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4384429046, - "lat": 51.6664392, - "lon": -4.0168067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "post_box:type": "pillar", - "ref": "SA4 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429047, - "lat": 51.6664535, - "lon": -4.0168091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "post_box:type": "pillar", - "ref": "SA4 535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429054, - "lat": 51.6677587, - "lon": -4.0524777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 491D" - } -}, -{ - "type": "node", - "id": 4384429067, - "lat": 51.6822858, - "lon": -3.9971164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA4 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429087, - "lat": 51.6852525, - "lon": -4.0117287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "wall", - "ref": "SA4 510", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4384429088, - "lat": 51.6910240, - "lon": -4.2855888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA16 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429089, - "lat": 51.6926796, - "lon": -4.0117890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA4 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429090, - "lat": 51.6950430, - "lon": -4.2907090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA16 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429093, - "lat": 51.7094727, - "lon": -4.0258431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA4 531D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4384429095, - "lat": 51.7149361, - "lon": -4.0424960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA4 528", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4384429096, - "lat": 51.7355342, - "lon": -4.0552108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "wall", - "ref": "SA4 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429097, - "lat": 51.7454836, - "lon": -4.0496996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA4 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384429098, - "lat": 51.7570360, - "lon": -4.0505660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "lamp", - "ref": "SA4 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384430121, - "lat": 52.6660276, - "lon": -0.7437225, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4384430149, - "lat": 52.6901897, - "lon": -0.7573350, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4384467789, - "lat": 54.1451556, - "lon": -0.7780618, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO17 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4384591162, - "lat": 51.9634364, - "lon": -3.2063375, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LD3 357", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4384680046, - "lat": 54.1487594, - "lon": -0.8264573, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO17 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4384683976, - "lat": 54.1713003, - "lon": -0.7888808, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO17 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4384684303, - "lat": 54.0574099, - "lon": -0.8011929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO17 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4384717888, - "lat": 55.6292302, - "lon": -3.2408114, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EH45 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4384743530, - "lat": 52.2732974, - "lon": 1.4438294, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "IP17 4672", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4385018348, - "lat": 54.9503371, - "lon": -1.5946784, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 47" - } -}, -{ - "type": "node", - "id": 4385040127, - "lat": 54.9402045, - "lon": -1.5936914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE9 70", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4385067949, - "lat": 54.9446912, - "lon": -1.5964029, - "tags": { - "amenity": "post_box", - "ref": "NE9 107" - } -}, -{ - "type": "node", - "id": 4385118441, - "lat": 54.9475208, - "lon": -1.5925076, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE9 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4385119380, - "lat": 54.9465406, - "lon": -1.5882416, - "tags": { - "amenity": "post_box", - "ref": "NE9 140" - } -}, -{ - "type": "node", - "id": 4385119492, - "lat": 54.9453442, - "lon": -1.5830222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE9 97", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4385792229, - "lat": 51.6720520, - "lon": -1.5490805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4385865170, - "lat": 54.3289502, - "lon": -5.7165517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4385865180, - "lat": 54.3283669, - "lon": -5.7194060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "BT30 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4385881107, - "lat": 56.4568894, - "lon": -3.0224335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4385881108, - "lat": 56.4582255, - "lon": -3.0386339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 299D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4385881110, - "lat": 56.4590490, - "lon": -3.0119366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4385889489, - "lat": 56.0606342, - "lon": -3.4037782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 119", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4385912050, - "lat": 53.4761065, - "lon": -2.1498049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "M43 242D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4385932632, - "lat": 54.9884568, - "lon": -1.6001257, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NE2 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4386008079, - "lat": 53.3843108, - "lon": -3.0480759, - "tags": { - "amenity": "post_box", - "description": "Grade II listed post box CH43 23 at Alton Road, Oxton.", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "CH43 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box at Alton Road, Oxton" - } -}, -{ - "type": "node", - "id": 4386036242, - "lat": 51.8946876, - "lon": -3.2638066, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD3 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4386180995, - "lat": 55.1187317, - "lon": -3.3507631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 97", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4386201932, - "lat": 55.0738386, - "lon": -3.2357535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 26", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4386201939, - "lat": 55.0608539, - "lon": -3.1920433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG11 28", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4386255731, - "lat": 54.2673552, - "lon": -2.0025696, - "tags": { - "amenity": "post_box", - "ref": "DL8 22", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4386255740, - "lat": 54.2913854, - "lon": -1.9037529, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5415725", - "ref": "DL8 144", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4386297225, - "lat": 54.3325256, - "lon": -1.5715688, - "tags": { - "amenity": "post_box", - "ref": "DL7 142D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4386347304, - "lat": 53.7571672, - "lon": -2.6945789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR1 133", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4386416570, - "lat": 51.5619098, - "lon": -0.0949420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "N4 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26528644" - } -}, -{ - "type": "node", - "id": 4386448123, - "lat": 54.4616899, - "lon": -6.0839959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4386448124, - "lat": 54.4607109, - "lon": -6.0844009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BT26 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4386916062, - "lat": 54.9598831, - "lon": -1.5878728, - "tags": { - "amenity": "post_box", - "ref": "NE8 48" - } -}, -{ - "type": "node", - "id": 4387229447, - "lat": 54.9579675, - "lon": -1.5938602, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4387229595, - "lat": 54.9556743, - "lon": -1.5869646, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 13" - } -}, -{ - "type": "node", - "id": 4387229650, - "lat": 54.9544035, - "lon": -1.5816471, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "ref": "NE8 79" - } -}, -{ - "type": "node", - "id": 4387229714, - "lat": 54.9505978, - "lon": -1.5850712, - "tags": { - "amenity": "post_box", - "ref": "NE8 123" - } -}, -{ - "type": "node", - "id": 4387229736, - "lat": 54.9513616, - "lon": -1.5905775, - "tags": { - "amenity": "post_box", - "ref": "NE8 46" - } -}, -{ - "type": "node", - "id": 4387262501, - "lat": 54.9535980, - "lon": -1.5967609, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4387306416, - "lat": 54.9500108, - "lon": -1.6161035, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE8 60" - } -}, -{ - "type": "node", - "id": 4387332910, - "lat": 54.9464590, - "lon": -1.6085309, - "tags": { - "amenity": "post_box", - "ref": "NE8 39" - } -}, -{ - "type": "node", - "id": 4387332911, - "lat": 54.9473580, - "lon": -1.6051602, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE8 66" - } -}, -{ - "type": "node", - "id": 4387333001, - "lat": 54.9506199, - "lon": -1.6018852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE8 6", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4387356088, - "lat": 54.9524954, - "lon": -1.5995096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE8 21D", - "royal_cypher": "EIIR", - "support": "pole" - } -}, -{ - "type": "node", - "id": 4387356400, - "lat": 54.9559145, - "lon": -1.6003669, - "tags": { - "amenity": "post_box", - "ref": "NE8 41" - } -}, -{ - "type": "node", - "id": 4387564064, - "lat": 50.9765918, - "lon": 0.0955349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4387564065, - "lat": 50.9807395, - "lon": 0.0957279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4387564066, - "lat": 50.9802995, - "lon": 0.1063887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4387598689, - "lat": 54.5278901, - "lon": -1.5615699, - "tags": { - "amenity": "post_box", - "ref": "DL3 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4387598690, - "lat": 54.5304300, - "lon": -1.5703552, - "tags": { - "amenity": "post_box", - "ref": "DL3 80", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4387680950, - "lat": 56.0561507, - "lon": -3.4144977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 209", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4387761093, - "lat": 56.0615614, - "lon": -3.4393956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 203D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4387761094, - "lat": 56.0637175, - "lon": -3.4273016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 184D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4387761096, - "lat": 56.0664005, - "lon": -3.4317087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 196D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4388011415, - "lat": 51.4450594, - "lon": -1.5958440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 138D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4388097695, - "lat": 51.3460688, - "lon": -1.7513359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388121450, - "lat": 51.3389555, - "lon": -1.7640073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN9 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388392010, - "lat": 53.7556488, - "lon": -2.7005759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "opening_hours": "Mo-Fr 11:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR1 499", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4388626417, - "lat": 54.1918640, - "lon": -0.7616483, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388632416, - "lat": 54.1853233, - "lon": -0.7455295, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO17 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4388657205, - "lat": 54.1279226, - "lon": -0.4843213, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO17 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388660668, - "lat": 54.1777780, - "lon": -0.5331898, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO17 89", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4388666117, - "lat": 54.1512228, - "lon": -0.8392691, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388677607, - "lat": 54.1776052, - "lon": -0.8386439, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388721531, - "lat": 53.8727604, - "lon": -2.3918815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB7 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4388771624, - "lat": 55.4625324, - "lon": -4.6335791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "KA7 1111;KA7 1114;KA7 1115" - } -}, -{ - "type": "node", - "id": 4389440660, - "lat": 57.0569326, - "lon": -2.4862462, - "tags": { - "addr:city": "Banchory", - "addr:country": "GB", - "addr:postcode": "AB31 5UN", - "addr:street": "Tillybrake Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB31 515", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390258542, - "lat": 52.0741865, - "lon": -0.2400376, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4390765221, - "lat": 54.6262418, - "lon": -1.6484678, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390765222, - "lat": 54.6292037, - "lon": -1.6529587, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390765230, - "lat": 54.6744121, - "lon": -1.7043691, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519649", - "ref": "DL14 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390765232, - "lat": 54.6864537, - "lon": -1.7084624, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890786", - "ref": "DL15 199", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390765235, - "lat": 54.7120082, - "lon": -1.6960620, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890740", - "ref": "DL15 188", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390765237, - "lat": 54.7085099, - "lon": -1.6841095, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890747", - "ref": "DL15 189", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390765238, - "lat": 54.7096120, - "lon": -1.6770937, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890800", - "ref": "DL15 205", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4390797970, - "lat": 54.1577100, - "lon": -0.6946548, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO17 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4390841273, - "lat": 54.1821560, - "lon": -0.5313132, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4390856680, - "lat": 54.1529402, - "lon": -0.8535171, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4390907202, - "lat": 54.1711313, - "lon": -0.6059025, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO17 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4390974200, - "lat": 50.9049349, - "lon": -3.4889213, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX16 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4390989080, - "lat": 50.4746300, - "lon": -3.5204028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4391061634, - "lat": 51.7475000, - "lon": -0.3024593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AL1 292;AL1 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391135670, - "lat": 51.0838298, - "lon": -3.2943552, - "tags": { - "amenity": "post_box", - "colour": "red", - "direction": "N", - "drive_through": "no", - "name": "School House", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3PS", - "ref": "TA4 178", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4391135671, - "lat": 51.1057971, - "lon": -3.3092464, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4391137712, - "lat": 51.1747267, - "lon": -3.3366914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391293434, - "lat": 54.2986492, - "lon": -0.7047936, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391304725, - "lat": 54.3678539, - "lon": -0.9039771, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO18 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391309303, - "lat": 54.3699085, - "lon": -0.9127266, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO18 85", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4391316656, - "lat": 54.2460001, - "lon": -0.7776956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "description": "not an indoor pillar box more like a professionally converted bag drop box", - "indoor": "yes", - "note": "inside Morlands Newsagents", - "post_box:type": "indoor_box", - "ref": "YO18 139" - } -}, -{ - "type": "node", - "id": 4391320771, - "lat": 54.3042761, - "lon": -0.7210375, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391323533, - "lat": 54.2373405, - "lon": -0.7131826, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO18 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4391329019, - "lat": 54.3073605, - "lon": -0.8464676, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391429884, - "lat": 54.6078859, - "lon": -5.9366827, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT14 6AT", - "addr:street": "Carlisle Circus", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4391429887, - "lat": 54.5893223, - "lon": -5.9337123, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT7 1JG", - "addr:street": "Botanic Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "name": "Shaftesbury Square Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT2 1714;BT2 714", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391604170, - "lat": 54.2782616, - "lon": -0.8397006, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391616424, - "lat": 54.2650324, - "lon": -0.8245866, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO18 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391626728, - "lat": 54.2303081, - "lon": -0.7227027, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391631891, - "lat": 54.3231002, - "lon": -0.7783827, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4391715685, - "lat": 53.6007902, - "lon": -2.4708807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4391816796, - "lat": 52.8861285, - "lon": 1.0480434, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR25 2542", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4391830059, - "lat": 52.3352413, - "lon": -4.0747470, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY23 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4391839214, - "lat": 53.3306798, - "lon": -2.3859716, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "WA16 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4391845979, - "lat": 52.9452860, - "lon": 1.0485557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR25 2544", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4391868014, - "lat": 51.0471512, - "lon": -2.9224252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:45; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TA3 469", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4392383234, - "lat": 51.9903057, - "lon": -3.2254449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LD3 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4392468104, - "lat": 51.5245118, - "lon": -0.1109977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 19:30; Sa 12:30", - "manufacturer": "Machan Eng Scotland 2012", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EC1A 100;EC1A 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4392537976, - "lat": 51.5925924, - "lon": -0.8554157, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "RG9 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4392630966, - "lat": 50.9885939, - "lon": 0.0984162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4392630967, - "lat": 50.9839356, - "lon": 0.1013991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4392689928, - "lat": 51.1375374, - "lon": -3.5648348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4392699410, - "lat": 55.0041217, - "lon": -1.6401569, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4392699432, - "lat": 55.0037075, - "lon": -1.6829637, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4392808089, - "lat": 50.9701285, - "lon": -3.9232989, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX37 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4392819960, - "lat": 50.9564941, - "lon": -3.9528362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "851630433456095", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX37 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 4392826448, - "lat": 50.8428751, - "lon": -4.0361375, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX19 76", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4392845342, - "lat": 50.8458599, - "lon": -3.9812501, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX19 74", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4392856478, - "lat": 50.8950319, - "lon": -3.7220514, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX17 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4392881026, - "lat": 52.4608015, - "lon": -3.0409413, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY9 209", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4392901072, - "lat": 51.4994599, - "lon": -0.1977357, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-19", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4392901860, - "lat": 52.6789345, - "lon": -2.9545057, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SY5 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4392901867, - "lat": 52.9312257, - "lon": -3.1880256, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "LL20 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4392923039, - "lat": 54.8935243, - "lon": -2.9351566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "CA3 443;CA3 1443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4393216843, - "lat": 54.9489735, - "lon": -1.6117591, - "tags": { - "amenity": "post_box", - "ref": "NE8 127" - } -}, -{ - "type": "node", - "id": 4393275188, - "lat": 54.9520622, - "lon": -1.6037918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE8 40", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 4393287629, - "lat": 54.9530761, - "lon": -1.6115693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "NE8 128D", - "post_box:type": "pillar", - "ref": "NE8 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4393498280, - "lat": 54.9537172, - "lon": -1.6178025, - "tags": { - "amenity": "post_box", - "ref": "NE8 35" - } -}, -{ - "type": "node", - "id": 4393520396, - "lat": 54.9552206, - "lon": -1.6056292, - "tags": { - "amenity": "post_box", - "ref": "NE8 15" - } -}, -{ - "type": "node", - "id": 4393541226, - "lat": 54.9580185, - "lon": -1.6008600, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4393542927, - "lat": 51.9449409, - "lon": -3.5730580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LD3 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4393701150, - "lat": 51.0321861, - "lon": 0.0918778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4393701151, - "lat": 51.0978125, - "lon": 0.1642449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN3 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4393755968, - "lat": 56.1220055, - "lon": -3.1438373, - "tags": { - "amenity": "post_box", - "ref": "KY1 15" - } -}, -{ - "type": "node", - "id": 4394222091, - "lat": 51.4742783, - "lon": -0.9798289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "RG4 318D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4394223090, - "lat": 51.4806970, - "lon": -0.9891328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "description": "Corner of Conisboro Avenue and Uplands Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG4 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4394757780, - "lat": 52.2870045, - "lon": -1.5261271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4395031802, - "lat": 52.2121144, - "lon": -1.5678281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 136", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4395074215, - "lat": 52.0790513, - "lon": 1.2756473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395074240, - "lat": 52.0898131, - "lon": 1.3042415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "IP12 6265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395074241, - "lat": 52.0921274, - "lon": 1.3155565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "post_box:type": "meter", - "ref": "IP12 8241" - } -}, -{ - "type": "node", - "id": 4395074242, - "lat": 52.0921735, - "lon": 1.3156651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:30", - "post_box:type": "wall", - "ref": "IP12 6433", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4395074243, - "lat": 52.0949004, - "lon": 1.3205406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP12 6202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395074244, - "lat": 52.0971660, - "lon": 1.3248369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mail:meter": "yes", - "note": "double aperture LH missing plate", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP12 6206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395074245, - "lat": 52.0971701, - "lon": 1.3248074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mail:meter": "no", - "note": "double aperture LH missing plate", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP12 6205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395074248, - "lat": 52.1029212, - "lon": 1.3317342, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395126589, - "lat": 52.0427564, - "lon": -3.1617753, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR3 75", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4395298072, - "lat": 52.0322932, - "lon": 1.3297808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP12 6218", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4395298075, - "lat": 52.0336528, - "lon": 1.3079463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP12 6336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395298078, - "lat": 52.0391914, - "lon": 1.3113192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP12 6207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395313410, - "lat": 51.8245443, - "lon": -3.0211429, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP7 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4395654542, - "lat": 53.4134775, - "lon": -2.1542941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK1 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4395654550, - "lat": 53.4149866, - "lon": -2.1506651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK1 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4395959226, - "lat": 50.7428107, - "lon": -3.3482328, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446274, - "lat": 52.0922760, - "lon": 1.2987507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "IP12 6357", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4396446509, - "lat": 52.0960144, - "lon": 1.3117735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446510, - "lat": 52.0960946, - "lon": 1.3141928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446515, - "lat": 52.0970476, - "lon": 1.3028940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP12 6260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446520, - "lat": 52.0972839, - "lon": 1.3143759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IP12 6223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446537, - "lat": 52.0990483, - "lon": 1.3205798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP12 6370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446566, - "lat": 52.1012089, - "lon": 1.3112028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "IP12 6346", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4396446582, - "lat": 52.1038837, - "lon": 1.3071125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "IP12 6358", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4396446722, - "lat": 52.1062594, - "lon": 1.3266349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP12 6378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396446725, - "lat": 52.1064511, - "lon": 1.3320383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP12 6308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396543890, - "lat": 51.8854264, - "lon": -3.9778041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 08:30", - "note": "Ref obscured by sticker and discolouration", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396543943, - "lat": 51.9106105, - "lon": -3.9111373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "SA19 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396829174, - "lat": 50.8549758, - "lon": -2.0724971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 147D", - "ref:GB:uprn": "10015290203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4396846134, - "lat": 56.1268361, - "lon": -3.1433265, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY1 93" - } -}, -{ - "type": "node", - "id": 4397075979, - "lat": 53.4108999, - "lon": -2.1593777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "fixme": "position approximate, GPS signal por", - "note": "2nd Class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK1 225", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4397075985, - "lat": 53.4109144, - "lon": -2.1593964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "fixme": "position approximate, GPS signal por", - "note": "1st Class & international", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK1 226", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4397147181, - "lat": 53.4160226, - "lon": -2.1439409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK1 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4397169372, - "lat": 53.4171571, - "lon": -2.1307558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4397261391, - "lat": 54.9545991, - "lon": -1.6025907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE8 14", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4397320720, - "lat": 54.9561964, - "lon": -1.6082291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 37" - } -}, -{ - "type": "node", - "id": 4397423987, - "lat": 53.8422687, - "lon": -0.4232053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HU17 225", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4397492740, - "lat": 53.4299900, - "lon": -2.0919468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4397560909, - "lat": 54.9607874, - "lon": -1.5999547, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE8 58" - } -}, -{ - "type": "node", - "id": 4397659227, - "lat": 54.9600894, - "lon": -1.6119150, - "tags": { - "amenity": "post_box", - "ref": "NE8 32" - } -}, -{ - "type": "node", - "id": 4397687841, - "lat": 54.9638125, - "lon": -1.6039988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE8 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4397687871, - "lat": 54.9648992, - "lon": -1.6026449, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE8 61" - } -}, -{ - "type": "node", - "id": 4397857546, - "lat": 57.2315860, - "lon": -2.7007227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB33 505", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4397857562, - "lat": 57.2347893, - "lon": -2.7034790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 253", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4397968524, - "lat": 57.1305081, - "lon": -2.8546354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 405", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4397977012, - "lat": 56.4584254, - "lon": -2.9977571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:30", - "description": "Post Box", - "drive_through": "no", - "note": "Collection times correct as at 22/2/21", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4398218084, - "lat": 50.8160816, - "lon": -2.0857887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2021-09-14", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 64D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4398268857, - "lat": 53.2522834, - "lon": -0.8936359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4398278599, - "lat": 50.8372204, - "lon": -2.1059925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 45D", - "ref:GB:uprn": "10015346558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398281848, - "lat": 50.8585326, - "lon": -2.0881314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 115D", - "ref:GB:uprn": "10015446029", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4398289698, - "lat": 53.2662123, - "lon": -0.8915502, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398296785, - "lat": 50.8997974, - "lon": -2.0908521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 162D", - "ref:GB:uprn": "10015363066", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398296786, - "lat": 50.9072628, - "lon": -2.0984495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 54D", - "ref:GB:uprn": "10015303159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398297003, - "lat": 50.9238553, - "lon": -2.1192464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 83D", - "ref:GB:uprn": "10015379498", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4398297891, - "lat": 50.9300227, - "lon": -2.1640616, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT11 160", - "ref:GB:uprn": "10015355925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398320203, - "lat": 54.1591931, - "lon": -0.2677712, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398320205, - "lat": 54.1626192, - "lon": -0.2719006, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398320979, - "lat": 54.1544515, - "lon": -0.2428561, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4398609246, - "lat": 54.9614723, - "lon": -1.6028164, - "tags": { - "amenity": "post_box", - "ref": "NE8 42" - } -}, -{ - "type": "node", - "id": 4398631961, - "lat": 54.9469840, - "lon": -1.6185096, - "tags": { - "amenity": "post_box", - "ref": "NE8 81" - } -}, -{ - "type": "node", - "id": 4398699681, - "lat": 54.9515196, - "lon": -1.6278260, - "tags": { - "amenity": "post_box", - "ref": "NE8 36" - } -}, -{ - "type": "node", - "id": 4398950912, - "lat": 54.9550277, - "lon": -1.6245401, - "tags": { - "amenity": "post_box", - "ref": "NE8 31" - } -}, -{ - "type": "node", - "id": 4399015152, - "lat": 54.9048105, - "lon": -1.6215309, - "tags": { - "amenity": "post_box", - "ref": "NE11 144" - } -}, -{ - "type": "node", - "id": 4399015453, - "lat": 54.9042990, - "lon": -1.6176077, - "tags": { - "amenity": "post_box", - "ref": "NE11 145" - } -}, -{ - "type": "node", - "id": 4399151261, - "lat": 51.2952538, - "lon": -0.7421130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "mapillary": "327835178703981", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-06-03" - } -}, -{ - "type": "node", - "id": 4399573296, - "lat": 51.0064902, - "lon": -2.1940541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP7 109", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4399730815, - "lat": 51.1684897, - "lon": -2.3670817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4400271352, - "lat": 51.0561669, - "lon": -2.3722925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4400314731, - "lat": 51.0217063, - "lon": -2.3292919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP8 78", - "ref:GB:uprn": "10015415463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4400849736, - "lat": 53.9266107, - "lon": -2.9766383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY6 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4400849740, - "lat": 53.9280376, - "lon": -2.9866595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY6 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4401091055, - "lat": 54.9146598, - "lon": -1.6102951, - "tags": { - "amenity": "post_box", - "ref": "NE11 8" - } -}, -{ - "type": "node", - "id": 4401131632, - "lat": 54.9206711, - "lon": -1.6192404, - "tags": { - "amenity": "post_box", - "ref": "NE11 76" - } -}, -{ - "type": "node", - "id": 4401131689, - "lat": 54.9215650, - "lon": -1.6097421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE11 782" - } -}, -{ - "type": "node", - "id": 4401131692, - "lat": 54.9223395, - "lon": -1.6100155, - "tags": { - "amenity": "post_box", - "note": "Inside on right as you enter.", - "ref": "NE11 121" - } -}, -{ - "type": "node", - "id": 4401148561, - "lat": 52.4281262, - "lon": 1.1903906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4401562629, - "lat": 51.7872073, - "lon": -4.1059279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA14 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4401562630, - "lat": 51.7905573, - "lon": -4.0966706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA15 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4401562633, - "lat": 51.7922116, - "lon": -4.1305865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA14 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4401562635, - "lat": 51.7983723, - "lon": -4.1339787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "SA14 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4401562642, - "lat": 51.8104367, - "lon": -4.1416270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA32 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4401562656, - "lat": 51.8403337, - "lon": -4.1573507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "wall", - "ref": "SA31 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4401736241, - "lat": 56.5441141, - "lon": -3.2659157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PH13 223D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4401938137, - "lat": 51.6167130, - "lon": 0.4232435, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CM11 121D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4401946664, - "lat": 53.4809002, - "lon": -1.0111892, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "box has clear sides so you can see if any of the postcards have exploded", - "post_box:design": "airport_pillar", - "post_box:type": "pillar", - "ref": "DN9 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4402091375, - "lat": 56.3776386, - "lon": -3.2832284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH2 198", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4402091383, - "lat": 56.3678375, - "lon": -3.3240029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 188", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4402475492, - "lat": 51.5161156, - "lon": -0.0971396, - "tags": { - "amenity": "post_box", - "board_type": "history", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "colour": "green", - "description": "Historic postbox unveiled on 2016-09-06 to commemorate the 500th anniversary of Brian Tuke, the first Master of the Posts", - "information": "board", - "inscription": "The Penfold Postbox. Designed by John Penfold in 1866. This postbox was unveiled by Their Royal Highnesses The Prince of Wales and The Duchess of Cornwall on 6th September 2016. It commemorates 500 years since the knighting of Brian Tuke, the first Master", - "name": "The Penfold Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "EC1A 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4402774742, - "lat": 54.3222142, - "lon": -3.0185419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA12 22", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4402817442, - "lat": 56.2076229, - "lon": -3.4230068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY13 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4402817451, - "lat": 56.2129014, - "lon": -3.4265702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY13 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4402830420, - "lat": 56.3484964, - "lon": -3.4064197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "SCP8", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH2 141", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4402842676, - "lat": 56.1774349, - "lon": -3.4095675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY13 420", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4402842679, - "lat": 56.2031999, - "lon": -3.4263830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KY13 123", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4402842680, - "lat": 56.2065302, - "lon": -3.4288439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 121", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4403188446, - "lat": 53.9153080, - "lon": -1.3318189, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LS23 861", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4403331444, - "lat": 50.8994519, - "lon": -2.6299965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4403335213, - "lat": 50.8707168, - "lon": -2.6535382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "BA22 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4403367296, - "lat": 53.0627624, - "lon": -2.4506392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "ref": "CW2 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4403367297, - "lat": 53.0658747, - "lon": -2.4305280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 126", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4403367298, - "lat": 53.0666601, - "lon": -2.4018585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "ref": "CW2 89", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4403527423, - "lat": 50.7952474, - "lon": -2.5814130, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4403529819, - "lat": 50.7750337, - "lon": -2.5667018, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "DT2 182", - "ref:GB:uprn": "10015374884", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4403529820, - "lat": 50.7775597, - "lon": -2.5729158, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT2 99" - } -}, -{ - "type": "node", - "id": 4403529822, - "lat": 50.7797217, - "lon": -2.5725865, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4403865698, - "lat": 53.3059457, - "lon": -0.9317716, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4403906110, - "lat": 54.9333734, - "lon": -1.6192209, - "tags": { - "amenity": "post_box", - "ref": "NE11 110" - } -}, -{ - "type": "node", - "id": 4403906111, - "lat": 54.9333886, - "lon": -1.6191873, - "tags": { - "amenity": "post_box", - "ref": "NE11 117" - } -}, -{ - "type": "node", - "id": 4403906149, - "lat": 54.9340559, - "lon": -1.6107349, - "tags": { - "amenity": "post_box", - "ref": "NE11 205" - } -}, -{ - "type": "node", - "id": 4404024574, - "lat": 54.9386555, - "lon": -1.6223793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 100" - } -}, -{ - "type": "node", - "id": 4404082756, - "lat": 52.1473146, - "lon": 1.0624974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "IP6 8137;IP6 18137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404262012, - "lat": 54.9411389, - "lon": -1.6155394, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "ref": "NE11 1200;NE11 200" - } -}, -{ - "type": "node", - "id": 4404501806, - "lat": 50.7605817, - "lon": -2.5479867, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 165", - "ref:GB:uprn": "10015428262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404509544, - "lat": 50.7517962, - "lon": -2.5243421, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 48", - "ref:GB:uprn": "10015411895", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404509547, - "lat": 50.7531746, - "lon": -2.5308203, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 193", - "ref:GB:uprn": "10015279213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404707791, - "lat": 51.8557199, - "lon": -4.3186700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA31 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4404707792, - "lat": 51.8565403, - "lon": -4.3210392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA31 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404707793, - "lat": 51.8567832, - "lon": -4.3145163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA31 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404707794, - "lat": 51.8584981, - "lon": -4.3175954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA31 377D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4404707795, - "lat": 51.8605075, - "lon": -4.3174252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA31 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404815518, - "lat": 50.7425864, - "lon": -2.4930263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 173", - "ref:GB:uprn": "10015444365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-26" - } -}, -{ - "type": "node", - "id": 4404833872, - "lat": 50.7149495, - "lon": -2.4406060, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT1 2", - "ref:GB:uprn": "10015405399", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4404833873, - "lat": 50.7153912, - "lon": -2.4377216, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT1 80", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4404833874, - "lat": 50.7158122, - "lon": -2.4328806, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT1 33", - "ref:GB:uprn": "10015603319", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4404834655, - "lat": 50.7170070, - "lon": -2.3968000, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4404851472, - "lat": 50.1697887, - "lon": -5.1171417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4406164725, - "lat": 53.0601832, - "lon": -3.5349424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4406273834, - "lat": 53.5792274, - "lon": -2.4325599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "mapillary": "159988269695211", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "BL1 9000P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4406293313, - "lat": 54.7149271, - "lon": -1.7460373, - "tags": { - "amenity": "post_box", - "note": "scottish crown on post box in England!!", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4406775766, - "lat": 56.2342624, - "lon": -2.6876768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "ref": "KY10 256", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4407129384, - "lat": 52.5400131, - "lon": -2.4269033, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WV16 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4407212739, - "lat": 52.5372346, - "lon": -2.4279463, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV16 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4407389911, - "lat": 51.7529552, - "lon": -0.3378117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "AL1 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4407392538, - "lat": 51.7516872, - "lon": -0.3429514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "Very large wall box; might be a Ludlow 05/04/23 Box is blocked up and collection plate has been removed. Is this permanent?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AL3 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4407487085, - "lat": 51.9483890, - "lon": -0.2749913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SG5 55P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4407506912, - "lat": 53.7645968, - "lon": -2.7543844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4407652147, - "lat": 54.0438921, - "lon": -1.7078151, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "HG3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4407655015, - "lat": 54.0346655, - "lon": -1.5438587, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "HG3 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4407657598, - "lat": 54.0297427, - "lon": -1.7516060, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HG3 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4407663803, - "lat": 54.0943152, - "lon": -1.7750781, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG3 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4407669224, - "lat": 54.0405363, - "lon": -1.5668449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HG3 202", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4407681612, - "lat": 54.0809221, - "lon": -1.7735116, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 133", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4407686962, - "lat": 54.0339355, - "lon": -1.6044379, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 82", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4407845856, - "lat": 54.9355133, - "lon": -1.6274855, - "tags": { - "amenity": "post_box", - "ref": "NE11 206" - } -}, -{ - "type": "node", - "id": 4408078029, - "lat": 54.0836913, - "lon": -1.7632361, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HG3 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4408095496, - "lat": 52.6716302, - "lon": 0.3610637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PE34 279", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4408143751, - "lat": 52.5354436, - "lon": -2.4234331, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4408157939, - "lat": 55.1734978, - "lon": -6.7224768, - "tags": { - "addr:city": "Portstewart", - "addr:postcode": "BT55 7LU", - "addr:street": "Strand Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT55 114" - } -}, -{ - "type": "node", - "id": 4408165932, - "lat": 53.7496830, - "lon": -2.9873040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "FY8 343D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4408165933, - "lat": 53.7573533, - "lon": -3.0028540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4408451160, - "lat": 51.4076391, - "lon": 0.0560233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4408531102, - "lat": 53.3373385, - "lon": -3.3989477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL19 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4409365644, - "lat": 55.1860557, - "lon": -6.7059296, - "tags": { - "addr:city": "Portstewart", - "addr:postcode": "BT55 7DA", - "addr:street": "Station Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT55 22" - } -}, -{ - "type": "node", - "id": 4409682750, - "lat": 54.9356440, - "lon": -1.6344694, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE11 124" - } -}, -{ - "type": "node", - "id": 4409684469, - "lat": 52.1790601, - "lon": 1.0041689, - "tags": { - "amenity": "post_box", - "ref": "IP14 8123" - } -}, -{ - "type": "node", - "id": 4409703558, - "lat": 54.9390233, - "lon": -1.6375386, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 109" - } -}, -{ - "type": "node", - "id": 4409759846, - "lat": 54.9441826, - "lon": -1.6528887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE11 94" - } -}, -{ - "type": "node", - "id": 4409759853, - "lat": 54.9430619, - "lon": -1.6429504, - "tags": { - "amenity": "post_box", - "ref": "NE11 153" - } -}, -{ - "type": "node", - "id": 4409759854, - "lat": 54.9418341, - "lon": -1.6335792, - "tags": { - "amenity": "post_box", - "ref": "NE11 43" - } -}, -{ - "type": "node", - "id": 4409759855, - "lat": 54.9432229, - "lon": -1.6376007, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE11 125" - } -}, -{ - "type": "node", - "id": 4409759899, - "lat": 54.9464164, - "lon": -1.6405889, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 106" - } -}, -{ - "type": "node", - "id": 4409793590, - "lat": 54.9487173, - "lon": -1.6460321, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 72" - } -}, -{ - "type": "node", - "id": 4410330553, - "lat": 53.7435966, - "lon": -2.9912610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "FY8 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4410553680, - "lat": 53.7928607, - "lon": -1.5961470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 17:45", - "note": "Installed summer 2016. On RM property behind a gate which is locked when the delivery office is closed.", - "post_box:type": "pillar", - "ref": "LS12 900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 4410619758, - "lat": 51.8168302, - "lon": -4.2929124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA32 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410619818, - "lat": 51.8230928, - "lon": -4.3117578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SA32 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410619918, - "lat": 51.8297871, - "lon": -4.2881843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA31 517D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410619933, - "lat": 51.8326150, - "lon": -4.2897697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA31 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410619935, - "lat": 51.8326449, - "lon": -4.2520383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:45", - "post_box:type": "wall", - "ref": "SA32 319", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4410620013, - "lat": 51.8392718, - "lon": -4.3093476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA32 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410645012, - "lat": 51.7828517, - "lon": -4.1111978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "wall", - "ref": "SA14 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4410645013, - "lat": 51.7856748, - "lon": -4.1128776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA14 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410645014, - "lat": 51.7879362, - "lon": -4.1229668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA15 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410645015, - "lat": 51.8238580, - "lon": -4.1829887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA32 504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4410688391, - "lat": 51.3960611, - "lon": -2.6399110, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS41 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4411568263, - "lat": 51.4751340, - "lon": -2.4804672, - "tags": { - "amenity": "post_box", - "mapillary": "495282564853191", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 4412160890, - "lat": 54.6048413, - "lon": -5.8321561, - "tags": { - "addr:housename": "Parliament Buildings", - "addr:place": "Stormont", - "addr:postcode": "BT4 3XX", - "addr:street": "Massey Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00", - "description": "located in the lobby of Parliament Buildings", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT4 502" - } -}, -{ - "type": "node", - "id": 4412243866, - "lat": 57.5795801, - "lon": -3.8903257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV12 8", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4412257149, - "lat": 57.6804724, - "lon": -3.4472503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV30 98", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4412942890, - "lat": 54.6039079, - "lon": -5.8438207, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "5", - "addr:postcode": "BT4 2JT", - "addr:street": "Massey Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 320" - } -}, -{ - "type": "node", - "id": 4412942893, - "lat": 54.6009877, - "lon": -5.8536726, - "tags": { - "addr:city": "Belfast", - "addr:postcode": "BT4 3ND", - "addr:street": "Belmont Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 146D" - } -}, -{ - "type": "node", - "id": 4413641683, - "lat": 50.8121617, - "lon": -0.5230485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4413668796, - "lat": 51.0555264, - "lon": 0.0028527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4413886629, - "lat": 53.1098501, - "lon": -2.5829476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW5 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4413886630, - "lat": 53.1130452, - "lon": -2.6442193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "CW6 303", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4413886631, - "lat": 53.1170530, - "lon": -2.6540305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CW6 300", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4413886632, - "lat": 53.1186926, - "lon": -2.6455262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CW6 208", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4413886633, - "lat": 53.1272990, - "lon": -2.6320146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "ref": "CW6 420", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4413973593, - "lat": 57.1959169, - "lon": -3.0387640, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4414427664, - "lat": 52.6623348, - "lon": 0.9433105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1912", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4414427669, - "lat": 52.6686104, - "lon": 0.9450259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1908", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4414427671, - "lat": 52.6680492, - "lon": 0.9400034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR19 1907", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4414427673, - "lat": 52.6667594, - "lon": 0.9314125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1948", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4414434099, - "lat": 52.6621184, - "lon": 0.9341615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1911", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4414628297, - "lat": 54.9430390, - "lon": -1.6261964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE11 9" - } -}, -{ - "type": "node", - "id": 4414661006, - "lat": 54.9525813, - "lon": -1.6402713, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4414690201, - "lat": 54.9506298, - "lon": -1.6416160, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE11 5" - } -}, -{ - "type": "node", - "id": 4414690202, - "lat": 54.9553277, - "lon": -1.6375052, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 93" - } -}, -{ - "type": "node", - "id": 4414862942, - "lat": 51.0413175, - "lon": -2.9225415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4415150372, - "lat": 50.9321035, - "lon": -1.5312614, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415215750, - "lat": 51.1416502, - "lon": -0.0527934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415215751, - "lat": 51.1374219, - "lon": -0.0542634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415215756, - "lat": 51.1426780, - "lon": -0.0405181, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH19 75D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4415300005, - "lat": 50.9294803, - "lon": -1.5062538, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415308913, - "lat": 50.9337811, - "lon": -1.5074273, - "tags": { - "amenity": "post_box", - "collection_plate": "CPMETN-LC-NS", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "opening_hours": "Mo-Fr 12:15-18:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "SO40 670", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4415311405, - "lat": 50.9322242, - "lon": -1.5008888, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO40 706D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4415316627, - "lat": 50.9255454, - "lon": -1.5108109, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415453268, - "lat": 50.9230532, - "lon": -1.5147146, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 471D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415464750, - "lat": 50.9200511, - "lon": -1.5089546, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415527893, - "lat": 50.9991122, - "lon": -0.9451165, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU32 148D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4415534249, - "lat": 50.9980585, - "lon": -0.9456183, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415543799, - "lat": 53.7402791, - "lon": -2.0098267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "image": "https://www.geograph.org.uk/photo/6537665", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4415545028, - "lat": 51.0081737, - "lon": -0.9307854, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415593489, - "lat": 51.1275000, - "lon": 0.0073367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415593490, - "lat": 51.0687127, - "lon": 0.0249796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH18 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4415593491, - "lat": 51.0231904, - "lon": 0.0635012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415593492, - "lat": 51.1277881, - "lon": 0.0099259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4415593494, - "lat": 51.1220152, - "lon": 0.0063702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4415593495, - "lat": 51.0333200, - "lon": 0.0555437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4416203748, - "lat": 53.3033093, - "lon": -2.1807039, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4416758113, - "lat": 51.5354316, - "lon": -0.1342503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 40;NW1 690", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 40 and NW1 690" - } -}, -{ - "type": "node", - "id": 4416761218, - "lat": 52.2904411, - "lon": -1.5782433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "recently replaced", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV34 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4417356337, - "lat": 50.9923273, - "lon": -0.1043085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 57D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4417356338, - "lat": 50.9906734, - "lon": -0.1168477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417356339, - "lat": 50.9918337, - "lon": -0.1096847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417356341, - "lat": 50.9957329, - "lon": -0.0987537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417356342, - "lat": 50.9966911, - "lon": -0.1168241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417356344, - "lat": 50.9941409, - "lon": -0.1068904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4417356348, - "lat": 50.9895301, - "lon": -0.1064274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417356350, - "lat": 50.9950565, - "lon": -0.0740489, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH16 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417356352, - "lat": 50.9945531, - "lon": -0.1003738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4417404972, - "lat": 51.7834021, - "lon": -0.2244389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AL8 197D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4417404974, - "lat": 51.7877716, - "lon": -0.2278867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "AL7 209", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4417404975, - "lat": 51.7906746, - "lon": -0.2165280, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 254D" - } -}, -{ - "type": "node", - "id": 4417404976, - "lat": 51.7921701, - "lon": -0.2271202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL8 320D" - } -}, -{ - "type": "node", - "id": 4417404977, - "lat": 51.7937458, - "lon": -0.2358504, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AL8 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4417404978, - "lat": 51.7940421, - "lon": -0.2194585, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417404980, - "lat": 51.7950278, - "lon": -0.2221083, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 189D" - } -}, -{ - "type": "node", - "id": 4417404981, - "lat": 51.7969902, - "lon": -0.2320421, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL8 173", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4417770949, - "lat": 51.8231588, - "lon": -0.1948500, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL6 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4417770988, - "lat": 51.8454401, - "lon": -0.2029122, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "AL6 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418148274, - "lat": 51.7980587, - "lon": -4.1395227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA14 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418148278, - "lat": 51.7984581, - "lon": -4.1522281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA15 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418149091, - "lat": 51.8007288, - "lon": -4.1264812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA14 318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418149105, - "lat": 51.8040382, - "lon": -4.1031963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Ref is obscured by sticker", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418149106, - "lat": 51.8049208, - "lon": -4.0798963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA14 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418149107, - "lat": 51.8113231, - "lon": -4.0855028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA14 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418149113, - "lat": 51.8130125, - "lon": -4.1113927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA14 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418209842, - "lat": 52.5967910, - "lon": 0.7762007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP25 3305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418744579, - "lat": 54.9535620, - "lon": -1.6491726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4418745139, - "lat": 54.9520561, - "lon": -1.6504039, - "tags": { - "amenity": "post_box", - "ref": "NE11 122" - } -}, -{ - "type": "node", - "id": 4418775702, - "lat": 51.0070896, - "lon": -2.2046509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015310634" - } -}, -{ - "type": "node", - "id": 4418941519, - "lat": 54.9548388, - "lon": -1.6573140, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE11 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419107251, - "lat": 54.9566192, - "lon": -1.6728297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419107253, - "lat": 54.9580110, - "lon": -1.6662428, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE11 178" - } -}, -{ - "type": "node", - "id": 4419107254, - "lat": 54.9560391, - "lon": -1.6664771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE11 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419107255, - "lat": 54.9552222, - "lon": -1.6662041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE11 112" - } -}, -{ - "type": "node", - "id": 4419107256, - "lat": 54.9603354, - "lon": -1.6777089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "ref": "NE11 204", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4419107258, - "lat": 54.9619964, - "lon": -1.6700556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 180" - } -}, -{ - "type": "node", - "id": 4419207602, - "lat": 50.9166927, - "lon": -1.5191420, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 726", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419224554, - "lat": 50.9183008, - "lon": -1.4887485, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419229796, - "lat": 50.9174133, - "lon": -1.5038373, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO40 204", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4419250820, - "lat": 50.9056987, - "lon": -1.5394738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "note": "This postbox is the brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419253394, - "lat": 50.9153649, - "lon": -1.5284821, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO40 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4419346779, - "lat": 57.0293514, - "lon": -2.5145557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-02", - "collection_times": "Mo-Sa 12:00; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 344", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4419374682, - "lat": 51.6850089, - "lon": 0.0140119, - "tags": { - "amenity": "post_box", - "ref": "EN9 41", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 4419388402, - "lat": 51.6811773, - "lon": 0.0257063, - "tags": { - "amenity": "post_box", - "ref": "EN9 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 4420387412, - "lat": 54.9918354, - "lon": -1.6093493, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 161" - } -}, -{ - "type": "node", - "id": 4420905201, - "lat": 51.6583327, - "lon": -3.9083232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "post_box:type": "meter", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4420905202, - "lat": 51.6583519, - "lon": -3.9082859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00", - "post_box:type": "pillar", - "ref": "SA7 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905203, - "lat": 51.6588601, - "lon": -3.9126362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "meter", - "ref": "SA6 302" - } -}, -{ - "type": "node", - "id": 4420905204, - "lat": 51.6641730, - "lon": -3.9165837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "SA6 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905235, - "lat": 51.6701454, - "lon": -4.0354032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "post_box:type": "pillar", - "ref": "SA4 497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905247, - "lat": 51.6703989, - "lon": -3.9994816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 533D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905256, - "lat": 51.6705102, - "lon": -3.9309698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA6 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905262, - "lat": 51.6705514, - "lon": -3.8856772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA7 291D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905267, - "lat": 51.6715218, - "lon": -3.9431193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA6 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905272, - "lat": 51.7006667, - "lon": -3.8827513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA6 403D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4420905273, - "lat": 51.7018402, - "lon": -3.8755393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This is outside Coedgwilym Cemetery. Royal Mail Dataset has \"COEDGWILYM\" box NE of here with ref of SA8 394", - "post_box:type": "lamp", - "ref": "SA6 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4421869120, - "lat": 54.9542405, - "lon": -1.6849039, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE16 525" - } -}, -{ - "type": "node", - "id": 4421869121, - "lat": 54.9540047, - "lon": -1.6861113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "NE16 725D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4422051768, - "lat": 54.9538594, - "lon": -1.6784241, - "tags": { - "amenity": "post_box", - "ref": "NE16 611" - } -}, -{ - "type": "node", - "id": 4422109416, - "lat": 50.7326290, - "lon": -1.9433125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 142D", - "ref:GB:uprn": "10015316715", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4422737863, - "lat": 51.1701553, - "lon": -1.3690563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO21 271D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4423440042, - "lat": 54.9521350, - "lon": -1.6833200, - "tags": { - "amenity": "post_box", - "ref": "NE16 391" - } -}, -{ - "type": "node", - "id": 4423440133, - "lat": 54.9485269, - "lon": -1.6714145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 321" - } -}, -{ - "type": "node", - "id": 4423463032, - "lat": 54.9482467, - "lon": -1.6793097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 130" - } -}, -{ - "type": "node", - "id": 4423655730, - "lat": 54.9459864, - "lon": -1.6781823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE16 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4423701690, - "lat": 54.9452289, - "lon": -1.6717100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE16 592", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4423742766, - "lat": 53.3791288, - "lon": -1.4707657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "S1 410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424319989, - "lat": 51.3173075, - "lon": -2.5424398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "240356147950848", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS39 652D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-16" - } -}, -{ - "type": "node", - "id": 4424319990, - "lat": 51.3212980, - "lon": -2.5446705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "mapillary": "362183395352165", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS39 1110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-06-16" - } -}, -{ - "type": "node", - "id": 4424326276, - "lat": 51.3928191, - "lon": -2.5484107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS14 322D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4424630811, - "lat": 50.9934373, - "lon": 0.0345198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN22 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4424630812, - "lat": 51.0127929, - "lon": -0.0291109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "ref": "RH17 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424630814, - "lat": 51.0006478, - "lon": 0.0381768, - "tags": { - "amenity": "post_box", - "note": "post box in stone pillar with pointy roof and guidepost on top", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TN22 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4424674980, - "lat": 54.9438750, - "lon": -1.6873012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 120" - } -}, -{ - "type": "node", - "id": 4424674981, - "lat": 54.9436703, - "lon": -1.6815705, - "tags": { - "amenity": "post_box", - "ref": "NE16 695" - } -}, -{ - "type": "node", - "id": 4424704190, - "lat": 54.9413910, - "lon": -1.6715395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE16 357", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4424704191, - "lat": 54.9389208, - "lon": -1.6742759, - "tags": { - "amenity": "post_box", - "ref": "NE16 275" - } -}, -{ - "type": "node", - "id": 4424704192, - "lat": 54.9409287, - "lon": -1.6779092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424750283, - "lat": 54.9368350, - "lon": -1.6844776, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE16 650" - } -}, -{ - "type": "node", - "id": 4424750526, - "lat": 54.9381072, - "lon": -1.6931866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE16 669;NE16 668" - } -}, -{ - "type": "node", - "id": 4424776357, - "lat": 54.9364048, - "lon": -1.6959690, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424793768, - "lat": 54.9345942, - "lon": -1.6877022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4424793769, - "lat": 54.9323407, - "lon": -1.6816649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 526", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4424793770, - "lat": 54.9355820, - "lon": -1.6763399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424919838, - "lat": 54.9231169, - "lon": -1.6748318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "lamp", - "ref": "NE16 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-02-13" - } -}, -{ - "type": "node", - "id": 4424919839, - "lat": 54.9256871, - "lon": -1.6828988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 218" - } -}, -{ - "type": "node", - "id": 4424919840, - "lat": 54.9233993, - "lon": -1.6778478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 205" - } -}, -{ - "type": "node", - "id": 4424938932, - "lat": 54.9274928, - "lon": -1.6755775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE16 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424938933, - "lat": 54.9270119, - "lon": -1.6773932, - "tags": { - "amenity": "post_box", - "ref": "NE16 630" - } -}, -{ - "type": "node", - "id": 4424938934, - "lat": 54.9258959, - "lon": -1.6973966, - "tags": { - "amenity": "post_box", - "ref": "NE16 23" - } -}, -{ - "type": "node", - "id": 4424952988, - "lat": 54.9176643, - "lon": -1.6813189, - "tags": { - "amenity": "post_box", - "ref": "NE16 784" - } -}, -{ - "type": "node", - "id": 4424952989, - "lat": 54.9168148, - "lon": -1.6850666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4424972843, - "lat": 54.9129576, - "lon": -1.7067679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 413" - } -}, -{ - "type": "node", - "id": 4425031881, - "lat": 54.9018832, - "lon": -1.7237900, - "tags": { - "amenity": "post_box", - "ref": "NE16 571" - } -}, -{ - "type": "node", - "id": 4425489528, - "lat": 51.0065166, - "lon": -0.1035968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Haywards Heath Delivery Office. just slots in wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "RH16 601" - } -}, -{ - "type": "node", - "id": 4425489532, - "lat": 51.0581365, - "lon": -0.1281439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 144D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4425489533, - "lat": 51.0102870, - "lon": -0.1097438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH16 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425489536, - "lat": 51.0558876, - "lon": -0.1354412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425489537, - "lat": 51.0082816, - "lon": -0.1131626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH16 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425489539, - "lat": 51.0114594, - "lon": -0.1052191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH16 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425489540, - "lat": 51.0601055, - "lon": -0.1329144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH17 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425489541, - "lat": 51.0134503, - "lon": -0.1103010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH16 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425489544, - "lat": 51.0131067, - "lon": -0.1068512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH16 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4425581351, - "lat": 51.5626120, - "lon": -0.0520992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4425590613, - "lat": 51.3515298, - "lon": -0.5381115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT16 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4426498476, - "lat": 51.5068389, - "lon": -2.6323085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "BS10 496D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427150314, - "lat": 54.1392164, - "lon": -1.5424195, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HG4 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427179867, - "lat": 51.8740560, - "lon": -4.1735224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA32 567D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427181531, - "lat": 51.8824586, - "lon": -4.1790497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:type": "lamp", - "ref": "SA31 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427181603, - "lat": 51.8884581, - "lon": -4.1015688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "SA32 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427181625, - "lat": 51.8928900, - "lon": -4.1710635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 12:15", - "note": "Ref is partially obscured by water damage", - "post_box:type": "lamp", - "ref": "SA32 286", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4427181683, - "lat": 51.9000121, - "lon": -4.1688624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA32 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427181711, - "lat": 51.9028790, - "lon": -4.1367429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA32 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427253485, - "lat": 51.6713941, - "lon": -0.3919889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WD24 1006P" - } -}, -{ - "type": "node", - "id": 4427331537, - "lat": 54.4620733, - "lon": -0.6607562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO21 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4427423889, - "lat": 50.9282611, - "lon": 0.0742170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427423890, - "lat": 50.9777326, - "lon": -0.0151092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427423892, - "lat": 50.9955628, - "lon": -0.0009684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN22 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4427423893, - "lat": 50.9726953, - "lon": -0.0227470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 511D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4427423894, - "lat": 51.0172585, - "lon": 0.0076735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4427423895, - "lat": 51.0317650, - "lon": -0.0009600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH17 94", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4427993210, - "lat": 51.5839551, - "lon": -1.7098789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SN3 124", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4428022034, - "lat": 53.3754744, - "lon": -2.1850854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK8 389", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4428058231, - "lat": 50.9515935, - "lon": -1.8101986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP6 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4428177229, - "lat": 54.6000246, - "lon": -5.9271765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "description": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 4428247783, - "lat": 50.5570407, - "lon": -3.5982286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4428266229, - "lat": 54.8934655, - "lon": -5.0263683, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "DG9 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4428455823, - "lat": 53.2706688, - "lon": -4.1629710, - "tags": { - "amenity": "post_box", - "old_ref": "LL57 146", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL59 146", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4428706432, - "lat": 54.9079111, - "lon": -1.7231915, - "tags": { - "amenity": "post_box", - "ref": "NE16 2" - } -}, -{ - "type": "node", - "id": 4428706706, - "lat": 54.9062662, - "lon": -1.7234698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE16 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-08" - } -}, -{ - "type": "node", - "id": 4428734862, - "lat": 54.8960635, - "lon": -1.7311808, - "tags": { - "amenity": "post_box", - "ref": "NE16 315" - } -}, -{ - "type": "node", - "id": 4428854980, - "lat": 52.9561462, - "lon": -2.1596224, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4429088633, - "lat": 51.5184117, - "lon": -0.1114942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "note": "this is a meter box which now takes parcels", - "opening_hours": "Mo-Fr 13:00-18:30; Sa,Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WC1X 44P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4429111416, - "lat": 54.9071964, - "lon": -1.7330766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE16 92" - } -}, -{ - "type": "node", - "id": 4429111423, - "lat": 54.9062379, - "lon": -1.7429430, - "tags": { - "amenity": "post_box", - "ref": "NE16 49" - } -}, -{ - "type": "node", - "id": 4429111425, - "lat": 54.9046817, - "lon": -1.7409255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE16 68" - } -}, -{ - "type": "node", - "id": 4429111426, - "lat": 54.9026404, - "lon": -1.7445967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 322", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2024-02-08" - } -}, -{ - "type": "node", - "id": 4429140803, - "lat": 54.9520582, - "lon": -1.6720498, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE16 483" - } -}, -{ - "type": "node", - "id": 4429365853, - "lat": 50.3684172, - "lon": -4.1418274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL1 215;PL1 2150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4429365854, - "lat": 50.3733303, - "lon": -4.1411913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL1 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4429365855, - "lat": 50.3712901, - "lon": -4.1445444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL1 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4429365857, - "lat": 50.3723245, - "lon": -4.1441365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL1 51;PL1 5100", - "removed:amenity": "post_box", - "royal_cypher": "EIIR", - "survey:date": "2022-07-07" - } -}, -{ - "type": "node", - "id": 4429365858, - "lat": 50.3704596, - "lon": -4.1463237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL1 300D;PL1 3001D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-03" - } -}, -{ - "type": "node", - "id": 4429365860, - "lat": 50.3733327, - "lon": -4.1411443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL1 62;PL1 6200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4429365864, - "lat": 50.3684152, - "lon": -4.1417803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:15; Su off", - "drive_through": "no", - "note": "This box has been removed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL1 207P", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4429375226, - "lat": 50.7239567, - "lon": -3.5311908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EX4 117P", - "royal_cypher": "no", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 4429382671, - "lat": 50.5694602, - "lon": -3.5952064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ12 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4429404228, - "lat": 50.3991235, - "lon": -3.6941263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ9 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4430524490, - "lat": 53.8195726, - "lon": -3.0525181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 18:30; Sa-Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY1 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4430595355, - "lat": 51.1975842, - "lon": -1.8153616, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "SP4 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4430605891, - "lat": 53.1761181, - "lon": -3.0769130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "CH7 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4430612587, - "lat": 50.8181882, - "lon": -0.3919165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BN11 1650D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4430994928, - "lat": 54.9666778, - "lon": -1.6942506, - "tags": { - "amenity": "post_box", - "ref": "NE21 98" - } -}, -{ - "type": "node", - "id": 4431042597, - "lat": 53.7872333, - "lon": -2.9795094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FY4 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4431042598, - "lat": 53.7923164, - "lon": -2.9995616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY4 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4431180815, - "lat": 56.1010451, - "lon": -4.6382913, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4431757837, - "lat": 56.3910659, - "lon": -3.4188190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "is the cypher above the slot a modified Edward VIII cypher?", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 190D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4431814257, - "lat": 50.8192277, - "lon": -0.1329101, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BN2 357D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Penfold pillar box replica on Madeira Drive, Brighton" - } -}, -{ - "type": "node", - "id": 4431892096, - "lat": 59.2812172, - "lon": -2.5808754, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4431892097, - "lat": 59.2317025, - "lon": -2.6001649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr \"Times vary according to flight times\"", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW17 122" - } -}, -{ - "type": "node", - "id": 4431892102, - "lat": 59.2548304, - "lon": -2.5485441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr \"Times vary according to flight times\"", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW17 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4431902779, - "lat": 59.2452279, - "lon": -2.5702273, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW17 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4431915936, - "lat": 59.2500555, - "lon": -2.6174441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4432336099, - "lat": 54.9664508, - "lon": -1.7042623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NE21 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4432369865, - "lat": 54.9644728, - "lon": -1.7077518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE21 185;NE21 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4432623619, - "lat": 54.1234367, - "lon": -3.2172401, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA14 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4432640227, - "lat": 54.3474695, - "lon": -3.2123175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "layer": "1", - "note": "post box is in bridge wall", - "post_box:type": "wall", - "ref": "LA20 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4432647166, - "lat": 52.6269681, - "lon": 1.3304729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR7 704D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4432760625, - "lat": 54.9569236, - "lon": -1.6915734, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "NE21 729", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4432884635, - "lat": 51.0154020, - "lon": -3.1012737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "colour": "red", - "name": "Church Square", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 142" - } -}, -{ - "type": "node", - "id": 4432985982, - "lat": 52.8942701, - "lon": -2.8700202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SY12 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433038226, - "lat": 51.8308698, - "lon": -2.0538160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL53 179", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433059902, - "lat": 51.5299965, - "lon": 0.7585938, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS1 213", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433076531, - "lat": 50.9116097, - "lon": -2.4513059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 09:00", - "post_box:type": "wall", - "ref": "DT9 14", - "ref:GB:uprn": "10015465491", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433124394, - "lat": 54.2440506, - "lon": -3.0044579, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 47", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433136321, - "lat": 51.5431835, - "lon": 0.7284143, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS2 114", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433158561, - "lat": 51.5502298, - "lon": 0.6731190, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS0 130", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4433189545, - "lat": 51.0673086, - "lon": -0.1085526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4433275090, - "lat": 53.8559346, - "lon": -2.1740299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "meter", - "ref": "BB8 361", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4433275092, - "lat": 53.8559171, - "lon": -2.1741050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "BB8 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4433464017, - "lat": 53.4084510, - "lon": -2.9891773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "description": "Business post box L2 218 on Moorfields, Liverpool. It is next to L2 216", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L2 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L2 218 on Moorfields.jpg" - } -}, -{ - "type": "node", - "id": 4434623139, - "lat": 51.4722023, - "lon": -0.9571437, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG4 422", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4434623142, - "lat": 51.4711419, - "lon": -0.9531525, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-20", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "RG4 551D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4434623162, - "lat": 51.4705138, - "lon": -0.9532142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "RG4 345", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4434812044, - "lat": 53.2321244, - "lon": -4.1265585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "fixme": "collection times probably out of data", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL57 3", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4434911216, - "lat": 51.3447667, - "lon": -2.3157884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4435117552, - "lat": 50.9854434, - "lon": -0.6057112, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU28 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4435172758, - "lat": 50.9889684, - "lon": -0.5760413, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU28 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4435428118, - "lat": 53.4159133, - "lon": -2.6331175, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "WA5 383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4435446212, - "lat": 53.2537106, - "lon": -3.1417977, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "CH6 352", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4435448814, - "lat": 53.6041497, - "lon": -2.1705304, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "OL11 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4435468800, - "lat": 51.0355937, - "lon": -2.2763352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SP8 129D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4435993941, - "lat": 51.5731317, - "lon": -1.7591744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SN3 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4436508820, - "lat": 51.0146063, - "lon": 0.0710131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4436870020, - "lat": 51.9352555, - "lon": -3.8510099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:type": "wall", - "ref": "SA19 228", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4437707282, - "lat": 52.6063742, - "lon": 1.7248759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "inscription": "Franked mail only", - "opening_hours": "Mo-Fr 08:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NR30 3056" - } -}, -{ - "type": "node", - "id": 4437707300, - "lat": 52.6128463, - "lon": 1.7191498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR30 3050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4437707378, - "lat": 52.6329288, - "lon": 1.7375918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR30 3034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438070614, - "lat": 52.0871016, - "lon": -1.6465265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV36 142", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4438089580, - "lat": 52.0880406, - "lon": -1.6961734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4438105322, - "lat": 52.1132689, - "lon": -1.7073393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 116", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4438234198, - "lat": 52.6546909, - "lon": 1.7199266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4438824406, - "lat": 50.9659369, - "lon": 0.1608840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824407, - "lat": 51.0264516, - "lon": 0.0377630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824409, - "lat": 50.9403336, - "lon": 0.0615502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN22 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824410, - "lat": 50.9750852, - "lon": 0.1713409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824411, - "lat": 51.0381763, - "lon": 0.0939517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824413, - "lat": 51.0246790, - "lon": 0.0581084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824414, - "lat": 51.0238025, - "lon": 0.1108302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824415, - "lat": 50.9365314, - "lon": 0.0788564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824416, - "lat": 50.9685711, - "lon": 0.1821632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824417, - "lat": 51.0385063, - "lon": 0.0613484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438824419, - "lat": 51.0269561, - "lon": 0.0897194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956018, - "lat": 51.6386497, - "lon": -3.9783614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA5 189D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4438956027, - "lat": 51.6389187, - "lon": -4.0116215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "SA5 466", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4438956040, - "lat": 51.6404217, - "lon": -4.0141995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA5 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956042, - "lat": 51.6407599, - "lon": -3.9820313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA5 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956061, - "lat": 51.6428116, - "lon": -3.9371098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "wall", - "ref": "SA1 262", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4438956063, - "lat": 51.6431414, - "lon": -3.9268972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "SA1 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956065, - "lat": 51.6439697, - "lon": -3.9736532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA5 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4438956071, - "lat": 51.6449503, - "lon": -3.9450681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:type": "pillar", - "ref": "SA5 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4438956073, - "lat": 51.6452882, - "lon": -4.0331346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 449D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956075, - "lat": 51.6474715, - "lon": -4.0413459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 460D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956077, - "lat": 51.6476099, - "lon": -4.0369070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA4 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956078, - "lat": 51.6477318, - "lon": -4.0463540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 536D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4438956084, - "lat": 51.6580766, - "lon": -3.9016234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "SA7 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4439042696, - "lat": 51.7989495, - "lon": -0.1791930, - "tags": { - "amenity": "post_box", - "note": "Available during Morrisons opening hours only", - "post_box:type": "pillar", - "ref": "AL7 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4440311123, - "lat": 54.6335570, - "lon": -5.8678661, - "tags": { - "addr:postcode": "BT3 9LE", - "addr:street": "Airport Road West", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "description": "Franked mail only.", - "name": "Franked Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BT3 918P" - } -}, -{ - "type": "node", - "id": 4440311124, - "lat": 54.6335830, - "lon": -5.8678271, - "tags": { - "addr:postcode": "BT3 9LE", - "addr:street": "Airport Road West", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT3 917" - } -}, -{ - "type": "node", - "id": 4440833649, - "lat": 51.5449809, - "lon": -1.7422645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SN3 460" - } -}, -{ - "type": "node", - "id": 4440850180, - "lat": 51.5600568, - "lon": -1.7638596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SN3 462", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4440905006, - "lat": 53.2572387, - "lon": -2.3957362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA16 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4440926264, - "lat": 52.7503601, - "lon": 0.7117812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE32 37" - } -}, -{ - "type": "node", - "id": 4440943422, - "lat": 52.3488791, - "lon": 0.2191251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CB6 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4441068674, - "lat": 53.4321157, - "lon": -1.3552967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "S60 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4441068681, - "lat": 53.4311361, - "lon": -1.3573188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 232", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4441068685, - "lat": 53.4308564, - "lon": -1.3550821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4441068890, - "lat": 53.4324991, - "lon": -1.3574878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "restriction on slots to prevent anything thicker than a thin letter being posted in", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S60 2;S60 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4441068894, - "lat": 53.4336320, - "lon": -1.3535506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "indoor": "yes", - "location": "bottom of ramp to Tesco", - "operator": "Postbox TV", - "ref": "S65 502" - } -}, -{ - "type": "node", - "id": 4441087599, - "lat": 51.7750193, - "lon": -4.4635196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA33 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4441090950, - "lat": 58.4441748, - "lon": -3.0867399, - "tags": { - "amenity": "post_box", - "note": "Type M top has been replaced with a more standard lamp type box", - "post_box:type": "lamp", - "ref": "KW1 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4441141802, - "lat": 58.4454594, - "lon": -3.0960702, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW1 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4441159049, - "lat": 58.5578066, - "lon": -3.0859889, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4441245531, - "lat": 58.5346631, - "lon": -3.1227564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW1 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4441294040, - "lat": 50.7116979, - "lon": -2.6386397, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 157", - "ref:GB:uprn": "10015348494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4441624666, - "lat": 55.9566468, - "lon": -3.4062948, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH29 87", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4442504629, - "lat": 50.8317052, - "lon": -0.7724137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-27", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 48D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4442509235, - "lat": 50.8285753, - "lon": -0.7668494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4442511857, - "lat": 50.8296536, - "lon": -0.7588699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO19 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4442513885, - "lat": 50.8393854, - "lon": -0.7417333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 133", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4443199653, - "lat": 59.2854001, - "lon": -2.4213912, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4443978636, - "lat": 50.7248865, - "lon": -3.5217945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "wall", - "ref": "EX1 75D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4443978637, - "lat": 50.7261444, - "lon": -3.5226274, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-27", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EX1 249;EX1 2490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4443978639, - "lat": 50.7229794, - "lon": -3.5257938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EX1 62P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4443978640, - "lat": 50.7261334, - "lon": -3.5226432, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-27", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EX1 240P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4444081765, - "lat": 54.3685881, - "lon": -3.0794974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA21 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4444120973, - "lat": 57.1174581, - "lon": -2.1846374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4444510566, - "lat": 53.8057020, - "lon": -1.6237963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "LS13", - "ref": "LS13 353", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4444951928, - "lat": 53.3844884, - "lon": -1.4680049, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-08", - "check_date:collection_times": "2022-06-08", - "check_date:ref": "2022-06-08", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "post_box:type": "pillar", - "ref": "S1 1449", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4444951930, - "lat": 53.3844797, - "lon": -1.4681668, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-08", - "check_date:collection_times": "2022-06-08", - "check_date:ref": "2022-06-08", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "post_box:type": "pillar", - "ref": "S1 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4444951931, - "lat": 53.3844403, - "lon": -1.4698768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 912D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4446706364, - "lat": 51.8474931, - "lon": -4.3969593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA33 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4446706367, - "lat": 51.8523518, - "lon": -4.4261263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA32 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4447231714, - "lat": 50.7321612, - "lon": -1.9523224, - "tags": { - "amenity": "post_box", - "note": "open cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 11D", - "ref:GB:uprn": "10015322766", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4447838973, - "lat": 56.2382373, - "lon": -3.0078416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KY8 185" - } -}, -{ - "type": "node", - "id": 4448106383, - "lat": 52.1855403, - "lon": 0.8525811, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP30 2040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448121777, - "lat": 52.1990095, - "lon": 0.7198620, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP29 2200", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4448957868, - "lat": 51.0890232, - "lon": 0.0350827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH18 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957870, - "lat": 51.0936844, - "lon": 0.0354752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH18 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957873, - "lat": 51.0842085, - "lon": 0.0693013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN7 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957874, - "lat": 51.0906417, - "lon": 0.0312016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH18 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957876, - "lat": 51.0884477, - "lon": 0.0636757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957880, - "lat": 51.1030407, - "lon": 0.0323270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957881, - "lat": 51.0725517, - "lon": 0.0416769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH18 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4448957882, - "lat": 51.1125019, - "lon": 0.0285909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "RH19 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957883, - "lat": 51.0935670, - "lon": 0.0554471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH18 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957885, - "lat": 51.0992198, - "lon": 0.0333529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957887, - "lat": 51.1127364, - "lon": 0.0209102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4448957888, - "lat": 51.0763577, - "lon": 0.0764670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN7 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957890, - "lat": 51.0945522, - "lon": 0.0477888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH18 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957892, - "lat": 51.0962364, - "lon": 0.0364625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH18 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4448957895, - "lat": 51.0750149, - "lon": 0.0634031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4448957897, - "lat": 51.0913958, - "lon": 0.0392345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH18 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4449705249, - "lat": 54.6884996, - "lon": -1.2018020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TS24 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4449705250, - "lat": 54.6866710, - "lon": -1.2059813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS24 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4449705251, - "lat": 54.6849558, - "lon": -1.2116368, - "tags": { - "amenity": "post_box", - "post_box:type": "indoor_pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4449705252, - "lat": 54.6849450, - "lon": -1.2116392, - "tags": { - "amenity": "post_box", - "fixme": "inside post office, Check ref during opening hours", - "post_box:type": "indoor_pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4449705253, - "lat": 54.6932061, - "lon": -1.1987018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TS24 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4449764687, - "lat": 50.7235196, - "lon": -3.5570158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EX4 587", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4450780366, - "lat": 56.4080721, - "lon": -3.4792075, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-02", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "note": "inside the Tesco supermarket", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "PH1 89", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4450934945, - "lat": 56.0263936, - "lon": -3.4256064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 13D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450934947, - "lat": 56.0271007, - "lon": -3.4380149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 121D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450949142, - "lat": 56.0336996, - "lon": -3.4154584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 45D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450960657, - "lat": 56.0526082, - "lon": -3.4146365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 106D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450960659, - "lat": 56.0577090, - "lon": -3.4199257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 104D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450960661, - "lat": 56.0647044, - "lon": -3.4202561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 186D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450960663, - "lat": 56.0726237, - "lon": -3.4285660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 200D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450960664, - "lat": 56.0730547, - "lon": -3.4200096, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-09", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 78", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4450965817, - "lat": 56.1125778, - "lon": -3.3566147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY4 50", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4451032162, - "lat": 54.7442642, - "lon": -1.2831821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 4451032163, - "lat": 54.7413496, - "lon": -1.2767118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 4451164228, - "lat": 51.5856666, - "lon": -2.2640642, - "tags": { - "amenity": "post_box", - "mapillary": "922100195047112", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "GL9 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 4451429402, - "lat": 55.0011886, - "lon": -1.5919212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4451994339, - "lat": 57.1182177, - "lon": -2.1958024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4452380351, - "lat": 56.0820630, - "lon": -3.8690070, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4452420639, - "lat": 50.6663639, - "lon": -2.6007761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "DT3 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4453104556, - "lat": 54.9430575, - "lon": -1.7134490, - "tags": { - "amenity": "post_box", - "ref": "NE21 255" - } -}, -{ - "type": "node", - "id": 4453193422, - "lat": 54.9427485, - "lon": -1.7584009, - "tags": { - "amenity": "post_box", - "ref": "NE21 67" - } -}, -{ - "type": "node", - "id": 4453345833, - "lat": 54.9724537, - "lon": -1.7445394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE21 1D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4453426849, - "lat": 51.6631283, - "lon": 0.0346942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4453431264, - "lat": 54.9689592, - "lon": -1.7287959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 39" - } -}, -{ - "type": "node", - "id": 4453449113, - "lat": 53.3694511, - "lon": -1.5112806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S10 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4453494014, - "lat": 54.9643984, - "lon": -1.7114067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 814" - } -}, -{ - "type": "node", - "id": 4453543563, - "lat": 54.9605829, - "lon": -1.7164551, - "tags": { - "amenity": "post_box", - "ref": "NE21 5" - } -}, -{ - "type": "node", - "id": 4453543566, - "lat": 54.9627194, - "lon": -1.7148636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 77" - } -}, -{ - "type": "node", - "id": 4453549749, - "lat": 53.3800202, - "lon": -1.5015649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4453562248, - "lat": 54.9528593, - "lon": -1.7195687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 481" - } -}, -{ - "type": "node", - "id": 4453586494, - "lat": 54.9504607, - "lon": -1.7252322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 486" - } -}, -{ - "type": "node", - "id": 4453586538, - "lat": 54.9486015, - "lon": -1.7285392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 802" - } -}, -{ - "type": "node", - "id": 4453586701, - "lat": 54.9539517, - "lon": -1.7282511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "pillar", - "ref": "NE21 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4454284411, - "lat": 53.9979017, - "lon": -1.5407764, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4454790125, - "lat": 54.9565337, - "lon": -1.7099925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 133" - } -}, -{ - "type": "node", - "id": 4454790127, - "lat": 54.9558788, - "lon": -1.7143818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 210" - } -}, -{ - "type": "node", - "id": 4454840243, - "lat": 54.9503050, - "lon": -1.7304352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 542" - } -}, -{ - "type": "node", - "id": 4454840259, - "lat": 54.9513032, - "lon": -1.7372644, - "tags": { - "amenity": "post_box", - "ref": "NE21 640" - } -}, -{ - "type": "node", - "id": 4454840313, - "lat": 54.9549381, - "lon": -1.7331425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 639" - } -}, -{ - "type": "node", - "id": 4454884228, - "lat": 54.9565024, - "lon": -1.7313317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 450" - } -}, -{ - "type": "node", - "id": 4455055274, - "lat": 54.9581158, - "lon": -1.7324884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE21 211" - } -}, -{ - "type": "node", - "id": 4455055275, - "lat": 54.9571392, - "lon": -1.7249992, - "tags": { - "amenity": "post_box", - "ref": "NE21 155" - } -}, -{ - "type": "node", - "id": 4455183891, - "lat": 54.9357811, - "lon": -1.7307623, - "tags": { - "amenity": "post_box", - "ref": "NE39 342" - } -}, -{ - "type": "node", - "id": 4455183920, - "lat": 54.9321418, - "lon": -1.7313548, - "tags": { - "amenity": "post_box", - "fixme": "This isn’t visible from the road", - "ref": "NE39 390" - } -}, -{ - "type": "node", - "id": 4455198353, - "lat": 54.9277512, - "lon": -1.7392411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE39 653" - } -}, -{ - "type": "node", - "id": 4455198354, - "lat": 54.9246014, - "lon": -1.7408566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE39 228" - } -}, -{ - "type": "node", - "id": 4455198355, - "lat": 54.9255662, - "lon": -1.7461084, - "tags": { - "amenity": "post_box", - "ref": "NE39 114" - } -}, -{ - "type": "node", - "id": 4455751747, - "lat": 50.8765561, - "lon": -0.9925741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4455753827, - "lat": 50.8793819, - "lon": -0.9967348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4455879089, - "lat": 51.8708105, - "lon": -4.1895915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA32 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4456476777, - "lat": 56.3035612, - "lon": -3.0996859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY15 295D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4456890012, - "lat": 51.6626473, - "lon": -0.0696764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EN1 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 4456895085, - "lat": 56.0837982, - "lon": -3.8651837, - "tags": { - "amenity": "post_box", - "operator": "Post Office" - } -}, -{ - "type": "node", - "id": 4456953728, - "lat": 50.8554937, - "lon": -0.9700858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO9 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4456973684, - "lat": 51.7795199, - "lon": -1.4969193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX28 883", - "source": "gps_survey;photographic_survey" - } -}, -{ - "type": "node", - "id": 4457574961, - "lat": 56.2552023, - "lon": -2.9616884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KY8 194" - } -}, -{ - "type": "node", - "id": 4457599052, - "lat": 54.9198434, - "lon": -1.7426597, - "tags": { - "amenity": "post_box", - "ref": "NE39 509" - } -}, -{ - "type": "node", - "id": 4457839408, - "lat": 51.5937575, - "lon": 0.5956895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS6 299", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4458219966, - "lat": 51.0144693, - "lon": -0.1427129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH17 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4458219978, - "lat": 51.0061440, - "lon": -0.1327644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH17 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4458964027, - "lat": 51.0597495, - "lon": 0.1486233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964029, - "lat": 51.0552547, - "lon": 0.1316810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN6 68", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4458964030, - "lat": 51.0442159, - "lon": 0.1412334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964032, - "lat": 51.0293294, - "lon": 0.1033491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN22 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964034, - "lat": 51.0681220, - "lon": 0.1573889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN6 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4458964036, - "lat": 51.0625788, - "lon": 0.1582316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964037, - "lat": 51.0537206, - "lon": 0.1491424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4458964038, - "lat": 51.0357192, - "lon": 0.1412692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964040, - "lat": 51.0395704, - "lon": 0.1301187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN6 145", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4458964041, - "lat": 51.0639764, - "lon": 0.1811268, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964042, - "lat": 51.0623802, - "lon": 0.1624286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 277D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964043, - "lat": 51.0583276, - "lon": 0.1684542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964044, - "lat": 51.0645754, - "lon": 0.1535320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964045, - "lat": 51.0566123, - "lon": 0.1511687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964046, - "lat": 51.0513923, - "lon": 0.1462640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964047, - "lat": 51.0334743, - "lon": 0.1346118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964049, - "lat": 51.0583378, - "lon": 0.1620958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4458964051, - "lat": 51.0658600, - "lon": 0.1508286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN6 158D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4458964052, - "lat": 51.0557779, - "lon": 0.1790771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4459343333, - "lat": 52.1636058, - "lon": -1.8678189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B50 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4459343337, - "lat": 52.1642879, - "lon": -1.8611552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B50 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4459343339, - "lat": 52.1672442, - "lon": -1.8637580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B50 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4459343340, - "lat": 52.1687619, - "lon": -1.8530843, - "tags": { - "amenity": "post_box", - "note": "Mo-Fr collection time unreadable", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B50 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4459429242, - "lat": 51.6672606, - "lon": -4.0650745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 492D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4459462869, - "lat": 51.6665862, - "lon": -4.0572367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 503D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4459478046, - "lat": 51.6787763, - "lon": -4.0517627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 499D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4459551741, - "lat": 51.7822480, - "lon": -1.4744733, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "OX28 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps_survey;photographic_survey" - } -}, -{ - "type": "node", - "id": 4459690149, - "lat": 50.4910859, - "lon": -3.7762990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ11 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4459690156, - "lat": 50.4806210, - "lon": -3.7685447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ11 71D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4460225413, - "lat": 51.0494183, - "lon": 0.1615155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 66D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4460225414, - "lat": 51.0635803, - "lon": 0.1096773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225415, - "lat": 51.0552499, - "lon": 0.1611088, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 160D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4460225418, - "lat": 51.0413834, - "lon": 0.1677921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4460225419, - "lat": 51.0576005, - "lon": 0.1558079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225420, - "lat": 51.0445743, - "lon": 0.1542767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225421, - "lat": 51.0703661, - "lon": 0.1405527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225422, - "lat": 51.0503355, - "lon": 0.1645672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225423, - "lat": 51.0777365, - "lon": 0.1353060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225424, - "lat": 51.0496045, - "lon": 0.1577245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225425, - "lat": 51.0509465, - "lon": 0.1573587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225427, - "lat": 51.0481465, - "lon": 0.1742464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225428, - "lat": 51.0538992, - "lon": 0.1539129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225431, - "lat": 51.0445114, - "lon": 0.1688771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225432, - "lat": 51.0885232, - "lon": 0.1547858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225433, - "lat": 51.0484932, - "lon": 0.1595976, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN6 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225434, - "lat": 51.0526567, - "lon": 0.1611726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225435, - "lat": 51.0490251, - "lon": 0.1490999, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TN6 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460225436, - "lat": 51.0507677, - "lon": 0.1706481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 347D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4460225438, - "lat": 51.0374780, - "lon": 0.1636068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN6 71", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4460225439, - "lat": 51.0603702, - "lon": 0.1606203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "No collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "metal_wall", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4460225440, - "lat": 51.0442159, - "lon": 0.1642990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460392897, - "lat": 53.3463567, - "lon": -2.0858144, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460860846, - "lat": 51.2295082, - "lon": -0.7864493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "888771162502461", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU9 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 4460979785, - "lat": 51.6985139, - "lon": -3.8677542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "fixme": "check location", - "post_box:type": "lamp", - "ref": "SA8 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979788, - "lat": 51.7096429, - "lon": -3.8523347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "post_box:type": "wall", - "ref": "SA8 644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979790, - "lat": 51.7128419, - "lon": -3.8494630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA8 643D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4460979791, - "lat": 51.7140614, - "lon": -3.8466911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA8 645D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979794, - "lat": 51.7610006, - "lon": -3.7841826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA9 610", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979796, - "lat": 51.7691332, - "lon": -3.7654106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA9 584D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979797, - "lat": 51.7752552, - "lon": -3.7613165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 616D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979798, - "lat": 51.7818240, - "lon": -3.7563132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 581D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4460979800, - "lat": 51.7836707, - "lon": -3.7532396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 618D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4461269367, - "lat": 53.2499786, - "lon": -0.5065017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4461446991, - "lat": 52.0062400, - "lon": -3.2509572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4462064336, - "lat": 51.0925107, - "lon": -1.1617983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO24 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462069770, - "lat": 50.6794987, - "lon": -3.2432389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 81D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462085241, - "lat": 51.4641884, - "lon": -2.2314930, - "tags": { - "amenity": "post_box", - "note": "has enlarged slot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462088550, - "lat": 51.8906314, - "lon": -2.0599200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL52 33D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462113101, - "lat": 54.9648432, - "lon": -1.8640577, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE42 504D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462173548, - "lat": 55.0052826, - "lon": -1.6253759, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE3 171", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462173549, - "lat": 55.0004050, - "lon": -1.6190573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 129D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462306728, - "lat": 56.4663914, - "lon": -2.9837955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD3 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4462306729, - "lat": 56.4666147, - "lon": -2.9927111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD3 129D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462327205, - "lat": 56.4714554, - "lon": -2.9760170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4462327216, - "lat": 56.4751731, - "lon": -2.9860051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 80D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4462689258, - "lat": 54.4864791, - "lon": -0.6136742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO21 89;YO21 9089", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4462944625, - "lat": 54.9201512, - "lon": -1.7497173, - "tags": { - "amenity": "post_box", - "ref": "NE39 272" - } -}, -{ - "type": "node", - "id": 4463039660, - "lat": 54.9221610, - "lon": -1.7535825, - "tags": { - "amenity": "post_box", - "ref": "NE39 139" - } -}, -{ - "type": "node", - "id": 4463039661, - "lat": 54.9216478, - "lon": -1.7586498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE39 354", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4463040531, - "lat": 54.9224276, - "lon": -1.7701639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE39 284", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4463100437, - "lat": 54.9190022, - "lon": -1.7534875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE39 295" - } -}, -{ - "type": "node", - "id": 4463100438, - "lat": 54.9153040, - "lon": -1.7550896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Double check ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE39 300" - } -}, -{ - "type": "node", - "id": 4463100439, - "lat": 54.9177063, - "lon": -1.7573179, - "tags": { - "amenity": "post_box", - "ref": "NE39 299" - } -}, -{ - "type": "node", - "id": 4463100691, - "lat": 54.9204909, - "lon": -1.7655818, - "tags": { - "amenity": "post_box", - "ref": "NE39 347" - } -}, -{ - "type": "node", - "id": 4463327045, - "lat": 51.2221884, - "lon": -0.7846778, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU9 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4463345972, - "lat": 54.9087817, - "lon": -1.7694582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE39 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4463413665, - "lat": 51.2372638, - "lon": -0.7745271, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU9 158D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4463415801, - "lat": 54.9034185, - "lon": -1.7810864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE39 552" - } -}, -{ - "type": "node", - "id": 4463429155, - "lat": 54.9188133, - "lon": -1.7777594, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4463439925, - "lat": 54.9287445, - "lon": -1.7831525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE39 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4463454631, - "lat": 54.9341479, - "lon": -1.7942537, - "tags": { - "amenity": "post_box", - "ref": "NE39 384" - } -}, -{ - "type": "node", - "id": 4463497223, - "lat": 54.9350755, - "lon": -1.7829625, - "tags": { - "amenity": "post_box", - "ref": "NE39 510" - } -}, -{ - "type": "node", - "id": 4463685295, - "lat": 56.4727104, - "lon": -2.9948522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4463692709, - "lat": 56.4700602, - "lon": -2.9992159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 48D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4463697252, - "lat": 51.0163058, - "lon": -0.0851357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "RH16 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4463697253, - "lat": 51.0139294, - "lon": -0.0827157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4463733475, - "lat": 56.4593387, - "lon": -3.0197412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4463733478, - "lat": 56.4630149, - "lon": -3.0028493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 215", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4463741746, - "lat": 56.4647703, - "lon": -3.0237608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4463748972, - "lat": 56.4588864, - "lon": -3.0265108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 301D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4463748979, - "lat": 56.4604929, - "lon": -3.0302554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 263D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4464095542, - "lat": 53.0681325, - "lon": -4.0769357, - "tags": { - "amenity": "post_box", - "note": "NOT Royal Mail box, letters posted passed to Royal Mail", - "operator": "Snowdon Mountain Railway" - } -}, -{ - "type": "node", - "id": 4464499136, - "lat": 53.1165295, - "lon": -4.1194623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4464541455, - "lat": 50.7320868, - "lon": -1.9484272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 150D", - "ref:GB:uprn": "10015346284", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4464615216, - "lat": 54.9251116, - "lon": -1.7809322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE39 185", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4464617816, - "lat": 54.9224456, - "lon": -1.7621267, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE39 346" - } -}, -{ - "type": "node", - "id": 4464927772, - "lat": 51.6385758, - "lon": -0.0631560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4464927775, - "lat": 51.6399941, - "lon": -0.0636135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4465120866, - "lat": 52.4934373, - "lon": -1.8084848, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B34 567D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4465171150, - "lat": 50.9783226, - "lon": -0.0462162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4465171151, - "lat": 51.0736951, - "lon": -0.1310653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4465625252, - "lat": 55.0452992, - "lon": -1.4430882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE26 294" - } -}, -{ - "type": "node", - "id": 4465625253, - "lat": 55.0450791, - "lon": -1.4471029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 235", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4465655122, - "lat": 54.2947140, - "lon": -1.5776307, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DL8 123", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4466284854, - "lat": 54.9701655, - "lon": -1.7471828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 310" - } -}, -{ - "type": "node", - "id": 4466298763, - "lat": 54.9658906, - "lon": -1.7479204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 46" - } -}, -{ - "type": "node", - "id": 4466302146, - "lat": 54.9683635, - "lon": -1.7575528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 676" - } -}, -{ - "type": "node", - "id": 4466337605, - "lat": 54.9711956, - "lon": -1.7570830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 399" - } -}, -{ - "type": "node", - "id": 4466337675, - "lat": 54.9723694, - "lon": -1.7510899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE40 195", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4466370897, - "lat": 54.9764982, - "lon": -1.7629507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 511" - } -}, -{ - "type": "node", - "id": 4466390887, - "lat": 52.5929402, - "lon": -1.0783099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "fixme": "position approx", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LE2 745", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4466441956, - "lat": 54.9734586, - "lon": -1.7710313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE40 9" - } -}, -{ - "type": "node", - "id": 4466442727, - "lat": 54.9713018, - "lon": -1.7727836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE40 491" - } -}, -{ - "type": "node", - "id": 4466442728, - "lat": 54.9709004, - "lon": -1.7678149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE40 494" - } -}, -{ - "type": "node", - "id": 4466786355, - "lat": 50.8707260, - "lon": -0.8225648, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PO18 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4466803573, - "lat": 50.8687986, - "lon": -0.8641044, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO18 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4466880147, - "lat": 50.8490132, - "lon": -0.7469248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4466908894, - "lat": 50.8537716, - "lon": -0.7159748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4467141694, - "lat": 52.7188466, - "lon": -1.2204965, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4467648190, - "lat": 54.9622309, - "lon": -1.7890506, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE40 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4467648191, - "lat": 54.9622059, - "lon": -1.7969779, - "tags": { - "amenity": "post_box", - "ref": "NE40 660" - } -}, -{ - "type": "node", - "id": 4467725857, - "lat": 54.9642647, - "lon": -1.7821159, - "tags": { - "amenity": "post_box", - "ref": "NE40 531" - } -}, -{ - "type": "node", - "id": 4467762567, - "lat": 54.9623320, - "lon": -1.7757287, - "tags": { - "amenity": "post_box", - "ref": "NE40 117" - } -}, -{ - "type": "node", - "id": 4467762707, - "lat": 54.9583518, - "lon": -1.7727324, - "tags": { - "amenity": "post_box", - "ref": "NE40 178" - } -}, -{ - "type": "node", - "id": 4467774447, - "lat": 51.7860304, - "lon": -2.3965164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL2 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4467891632, - "lat": 54.9555413, - "lon": -1.7701508, - "tags": { - "amenity": "post_box", - "ref": "NE40 316" - } -}, -{ - "type": "node", - "id": 4467919545, - "lat": 54.9543765, - "lon": -1.7817360, - "tags": { - "amenity": "post_box", - "note": "Moved from nearSolohair", - "ref": "NE40 512" - } -}, -{ - "type": "node", - "id": 4467919567, - "lat": 54.9520906, - "lon": -1.7919929, - "tags": { - "amenity": "post_box", - "ref": "NE40 400" - } -}, -{ - "type": "node", - "id": 4467927126, - "lat": 54.9435317, - "lon": -1.8012643, - "tags": { - "amenity": "post_box", - "ref": "NE40 422" - } -}, -{ - "type": "node", - "id": 4468258659, - "lat": 54.2215301, - "lon": -0.3339272, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO14 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4468329047, - "lat": 54.1786485, - "lon": -0.3143337, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4468384920, - "lat": 54.2016554, - "lon": -0.3151338, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO14 97", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4468593788, - "lat": 51.0659366, - "lon": -0.1566447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4468594889, - "lat": 50.9913006, - "lon": -0.0516547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4468594890, - "lat": 51.0703119, - "lon": -0.1420580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "RH17 73", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4468594891, - "lat": 51.0065506, - "lon": -0.1200340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4468594892, - "lat": 51.0747780, - "lon": -0.1551352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4468594893, - "lat": 51.0052643, - "lon": -0.1166182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH16 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4468890249, - "lat": 51.5125084, - "lon": 0.4167992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS17 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-10-28" - } -}, -{ - "type": "node", - "id": 4468890250, - "lat": 51.5140450, - "lon": 0.4205141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS17 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-10-28" - } -}, -{ - "type": "node", - "id": 4468978127, - "lat": 53.6813294, - "lon": -1.3753117, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF7 201", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4469847371, - "lat": 50.9801847, - "lon": 0.1921349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 70", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4469847372, - "lat": 51.0411318, - "lon": 0.2168298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847376, - "lat": 51.0434966, - "lon": 0.2488226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847377, - "lat": 50.9839744, - "lon": 0.1788433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN22 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4469847379, - "lat": 51.0464194, - "lon": 0.2193030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847381, - "lat": 51.0453037, - "lon": 0.2688492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847382, - "lat": 50.9956331, - "lon": 0.1832747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4469847384, - "lat": 50.9656348, - "lon": 0.1659357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN22 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4469847385, - "lat": 51.0451105, - "lon": 0.2223922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 330D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847386, - "lat": 51.0584477, - "lon": 0.2569469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847387, - "lat": 50.9983476, - "lon": 0.1783023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4469847790, - "lat": 51.0325614, - "lon": 0.2146741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN6 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4469847792, - "lat": 51.0364405, - "lon": 0.2284678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN6 165", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4470116282, - "lat": 52.1938905, - "lon": -1.8526119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 11", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4470117796, - "lat": 52.1914364, - "lon": -1.8221241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4470117797, - "lat": 52.1870447, - "lon": -1.8327159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4470122591, - "lat": 52.1793212, - "lon": -1.8553459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "note": "ref not visible on collection plate.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B50 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4470122593, - "lat": 52.1723974, - "lon": -1.8530027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "note": "ref not visible on collection plate", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B50 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4470524845, - "lat": 52.9648623, - "lon": -4.0580365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL48 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4471101300, - "lat": 54.1431804, - "lon": -2.6396878, - "tags": { - "amenity": "post_box", - "ref": "LA6 124", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 4471153270, - "lat": 54.1352719, - "lon": -2.6154401, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 131" - } -}, -{ - "type": "node", - "id": 4471967209, - "lat": 52.6670436, - "lon": -3.9084024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL36 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4471967246, - "lat": 52.6775540, - "lon": -3.8806965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4472022202, - "lat": 51.2936245, - "lon": 0.0695522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "red", - "post_box:type": "wall", - "ref": "TN16 86", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4472029837, - "lat": 51.2464215, - "lon": 0.1280270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN14 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4472092358, - "lat": 51.3255515, - "lon": -0.0998495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 377", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4472092362, - "lat": 51.3211752, - "lon": -0.0900542, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CR8 70", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4472094809, - "lat": 51.3301724, - "lon": -0.0951727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4472110977, - "lat": 51.0930470, - "lon": -1.2531656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4472121663, - "lat": 51.3033164, - "lon": -0.0764619, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CR3 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4473169271, - "lat": 54.1251939, - "lon": -0.2694925, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO16 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4473299787, - "lat": 54.1005814, - "lon": -0.1863279, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO16 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4473317918, - "lat": 54.1035412, - "lon": -0.1996263, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO16 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4473956739, - "lat": 55.6500911, - "lon": -3.2866633, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EH45 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4473972790, - "lat": 55.6476819, - "lon": -3.2583415, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EH45 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4474169501, - "lat": 52.7709071, - "lon": -3.8179786, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL40 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4474318379, - "lat": 52.7638366, - "lon": -3.8654625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "note": "box number not visible", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4474318436, - "lat": 52.7822177, - "lon": -3.8391125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL40 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4474353014, - "lat": 54.1824283, - "lon": -0.3250196, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4474362336, - "lat": 54.0647184, - "lon": -0.2788747, - "tags": { - "amenity": "post_box", - "note": "not YO25 325 that Royal Mail map suggests should be near here", - "post_box:type": "lamp", - "ref": "YO25 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4474373154, - "lat": 54.0513818, - "lon": -0.3155487, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4474381361, - "lat": 54.0900314, - "lon": -0.3273635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "wall", - "ref": "YO25 390", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4477453327, - "lat": 51.5854632, - "lon": -0.8751862, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RG9 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4477511800, - "lat": 51.9057706, - "lon": -2.0703566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4477736162, - "lat": 56.0989342, - "lon": -3.5754895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 180", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4477884048, - "lat": 51.2990462, - "lon": -2.7158877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4477884049, - "lat": 51.2551119, - "lon": -2.6782289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4477999406, - "lat": 51.2961301, - "lon": -2.5209568, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4477999411, - "lat": 51.4240655, - "lon": -2.3658863, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4478189305, - "lat": 53.2477529, - "lon": -1.9109412, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SK17 76", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4478191483, - "lat": 51.5851228, - "lon": -1.4258979, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX12 1115", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4478284801, - "lat": 51.0608735, - "lon": -1.8210485, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "SP2 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4478295059, - "lat": 52.7415164, - "lon": -1.1859205, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "LE12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4478306498, - "lat": 51.0305524, - "lon": -2.2737304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "SP8 72", - "ref:GB:uprn": "10015474813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4478324053, - "lat": 51.6799234, - "lon": -1.4259134, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "OX14 1361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4478327826, - "lat": 51.9099143, - "lon": 0.2854995, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CM6 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4478894162, - "lat": 51.0994859, - "lon": -3.0032069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 320" - } -}, -{ - "type": "node", - "id": 4478997803, - "lat": 51.7153119, - "lon": -0.4419961, - "tags": { - "amenity": "post_box", - "note": "Franked Mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD4 8" - } -}, -{ - "type": "node", - "id": 4480799352, - "lat": 50.8101439, - "lon": -0.7895305, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO20 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480800766, - "lat": 52.7235298, - "lon": -4.0565465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480801302, - "lat": 50.7900104, - "lon": -0.7954868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480805125, - "lat": 50.7814698, - "lon": -0.8254211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480806846, - "lat": 50.7723491, - "lon": -0.8296319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480814741, - "lat": 50.7661211, - "lon": -0.8451990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480826038, - "lat": 50.7563043, - "lon": -0.8391245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "From Earnley Church down Drove Lane, this postbox is down the private Medmerry Park homes estate about 300 yards beyond the shut electric gate; postbox is in the patio area by the reception. When I used the postbox I walked through the pedestrian gate.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480827012, - "lat": 50.6600793, - "lon": -3.8189011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:30; Su off", - "drive_through": "no", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TQ13 197", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4480827013, - "lat": 50.6683739, - "lon": -3.8206908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4480829012, - "lat": 50.7837813, - "lon": -0.8414741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4480831419, - "lat": 50.7904342, - "lon": -0.8368176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4481632467, - "lat": 54.2975793, - "lon": -1.3437867, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4481671876, - "lat": 54.2946208, - "lon": -1.3425450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4481800941, - "lat": 50.3408472, - "lon": -4.6447414, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PL23 168", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4481833298, - "lat": 51.6873652, - "lon": -0.8888950, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX39 593", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4483146362, - "lat": 53.2774839, - "lon": -2.6409434, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CW8 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4483156551, - "lat": 53.2928007, - "lon": -4.4180330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL65 69", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4483162118, - "lat": 51.9764796, - "lon": -4.9059268, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "SA65 143", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4483508468, - "lat": 51.0804696, - "lon": -1.1720957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO24 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483508472, - "lat": 51.0874357, - "lon": -1.1778527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 143D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4483512074, - "lat": 51.0912314, - "lon": -1.2909972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO21 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483512075, - "lat": 51.1007309, - "lon": -1.2975104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483757196, - "lat": 51.0489588, - "lon": 0.2342800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483757197, - "lat": 51.0845060, - "lon": 0.1267546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483757199, - "lat": 51.0929553, - "lon": 0.0916919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN7 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4483757200, - "lat": 51.0567706, - "lon": 0.2339496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4483757201, - "lat": 51.0539024, - "lon": 0.2444062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN6 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4483757202, - "lat": 51.1179523, - "lon": 0.1129010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483757204, - "lat": 51.0790202, - "lon": 0.1028326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN7 166", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4483757205, - "lat": 51.1060025, - "lon": 0.1399595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN7 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483757206, - "lat": 51.0888051, - "lon": 0.0857232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483757208, - "lat": 51.1036530, - "lon": 0.1126626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN7 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483809790, - "lat": 51.0422678, - "lon": 0.1822918, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN6 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483809802, - "lat": 51.0460705, - "lon": 0.1936596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN6 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4483855820, - "lat": 50.9358034, - "lon": -4.0277279, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4484310934, - "lat": 53.2241002, - "lon": -2.5098366, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CW9 108D" - } -}, -{ - "type": "node", - "id": 4484387190, - "lat": 52.7851092, - "lon": 1.0061012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR20 2074", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4484390859, - "lat": 53.2270316, - "lon": -2.5065246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 114D" - } -}, -{ - "type": "node", - "id": 4484571616, - "lat": 50.9158038, - "lon": -1.4012436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO14 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485151683, - "lat": 50.9790991, - "lon": 0.0100579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 505", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4485151686, - "lat": 50.9716778, - "lon": -0.0042505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485151687, - "lat": 50.9717810, - "lon": 0.0201954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 507", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4485151793, - "lat": 50.9750744, - "lon": 0.0164249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 506D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4485151794, - "lat": 50.9722880, - "lon": -0.0131951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 510D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485151803, - "lat": 50.9814040, - "lon": -0.0186935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 504D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485151804, - "lat": 50.9710470, - "lon": 0.0099497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 508D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485151806, - "lat": 50.9758049, - "lon": 0.0157151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 585D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485338996, - "lat": 50.9700781, - "lon": 0.2475814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN21 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485910377, - "lat": 51.2330769, - "lon": -0.1221848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH1 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4485959705, - "lat": 51.6784777, - "lon": -5.0320189, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4486146294, - "lat": 50.9532630, - "lon": -1.6186519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4487620342, - "lat": 50.9564366, - "lon": -1.6440574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4487664029, - "lat": 57.1165483, - "lon": -2.2037265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB15 156D" - } -}, -{ - "type": "node", - "id": 4487873791, - "lat": 54.2857626, - "lon": -1.3364649, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4488746006, - "lat": 53.8264020, - "lon": -0.9633207, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO8 11" - } -}, -{ - "type": "node", - "id": 4488763278, - "lat": 51.1434156, - "lon": 0.2649839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "TN4 157D" - } -}, -{ - "type": "node", - "id": 4488773692, - "lat": 54.9308838, - "lon": -1.8273470, - "tags": { - "amenity": "post_box", - "ref": "NE17 701" - } -}, -{ - "type": "node", - "id": 4488860575, - "lat": 54.9223307, - "lon": -1.8134411, - "tags": { - "amenity": "post_box", - "ref": "NE17 614" - } -}, -{ - "type": "node", - "id": 4488861662, - "lat": 54.9194953, - "lon": -1.8080579, - "tags": { - "amenity": "post_box", - "ref": "NE17 330" - } -}, -{ - "type": "node", - "id": 4488890148, - "lat": 52.8579480, - "lon": 0.6656985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE31 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4488905122, - "lat": 54.9195879, - "lon": -1.8153903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE17 518" - } -}, -{ - "type": "node", - "id": 4488933209, - "lat": 54.9174807, - "lon": -1.8202550, - "tags": { - "amenity": "post_box", - "ref": "NE17 149" - } -}, -{ - "type": "node", - "id": 4488967502, - "lat": 52.5840119, - "lon": -3.8274070, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY20 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4488988816, - "lat": 54.9148940, - "lon": -1.8176307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NE17 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4488988825, - "lat": 54.9110775, - "lon": -1.8143466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE17 80" - } -}, -{ - "type": "node", - "id": 4488989208, - "lat": 54.9062557, - "lon": -1.8196217, - "tags": { - "amenity": "post_box", - "ref": "NE17 16" - } -}, -{ - "type": "node", - "id": 4488989221, - "lat": 54.9059345, - "lon": -1.8135932, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE17 303" - } -}, -{ - "type": "node", - "id": 4489032401, - "lat": 52.5784821, - "lon": -0.9418044, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4489044009, - "lat": 53.2583896, - "lon": -1.9111062, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4489051999, - "lat": 51.4715101, - "lon": -0.6104972, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SL4 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4489134497, - "lat": 52.8940337, - "lon": 0.6785691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE31 105", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4489228953, - "lat": 51.6221389, - "lon": -1.3011806, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 4489253117, - "lat": 51.9299841, - "lon": -1.3539739, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX7 187", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4489587295, - "lat": 51.5793117, - "lon": -2.0948141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN16 197D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4489601873, - "lat": 51.9879146, - "lon": -1.7020680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL56 153", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4489614805, - "lat": 51.7240491, - "lon": -3.2518027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "620696639061144", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP24 557", - "royal_cypher": "EIIR", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 4489633401, - "lat": 51.6888700, - "lon": -0.9017913, - "tags": { - "amenity": "post_box", - "note": "brick pillar has a pointy roof", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX39 528", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4489639317, - "lat": 51.5100748, - "lon": -0.8914725, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG9 54", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4490141319, - "lat": 54.9019495, - "lon": -1.8210526, - "tags": { - "amenity": "post_box", - "ref": "NE17 364" - } -}, -{ - "type": "node", - "id": 4490141353, - "lat": 54.9027873, - "lon": -1.8255502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE17 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4490141433, - "lat": 54.9038651, - "lon": -1.8183681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE17 484" - } -}, -{ - "type": "node", - "id": 4490267039, - "lat": 54.9728837, - "lon": -1.8306587, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE41 274" - } -}, -{ - "type": "node", - "id": 4490310912, - "lat": 54.9768444, - "lon": -1.8151053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE41 156" - } -}, -{ - "type": "node", - "id": 4491437890, - "lat": 56.0270710, - "lon": -3.9146059, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4492011508, - "lat": 54.9775403, - "lon": -1.8170185, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE41 116" - } -}, -{ - "type": "node", - "id": 4492011543, - "lat": 54.9789073, - "lon": -1.8208012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE41 703" - } -}, -{ - "type": "node", - "id": 4492025764, - "lat": 54.9820844, - "lon": -1.8282573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE41 304" - } -}, -{ - "type": "node", - "id": 4492220036, - "lat": 54.9658439, - "lon": -1.8312702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 530" - } -}, -{ - "type": "node", - "id": 4492220066, - "lat": 54.9553191, - "lon": -1.8462339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 646" - } -}, -{ - "type": "node", - "id": 4492260886, - "lat": 54.9579178, - "lon": -1.8476539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 610" - } -}, -{ - "type": "node", - "id": 4492261098, - "lat": 54.9591879, - "lon": -1.8436335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 187" - } -}, -{ - "type": "node", - "id": 4492281896, - "lat": 54.9612733, - "lon": -1.8527376, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE42 506" - } -}, -{ - "type": "node", - "id": 4492362260, - "lat": 50.4613144, - "lon": -4.7122726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "721101096093433", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL31 216", - "royal_cypher": "no", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 4492383589, - "lat": 51.0588034, - "lon": -1.3146635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "\"Notice. Letters which contain coin if posted as ordinary letters will be charged on delivery with a special registration fee of 8d\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "SO23 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q114050745" - } -}, -{ - "type": "node", - "id": 4492416421, - "lat": 50.9489023, - "lon": -2.5089278, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "DT9 6", - "ref:GB:uprn": "10015315238", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4492457999, - "lat": 50.6037884, - "lon": -2.4565710, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT4 41", - "ref:GB:uprn": "10015305621", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4492491535, - "lat": 52.6565598, - "lon": 1.4227102, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "NR13 1350", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4492510578, - "lat": 52.6476565, - "lon": -1.2453103, - "tags": { - "amenity": "post_box", - "note": "old stamp machine beside box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "LE6 374", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4492652608, - "lat": 54.9612963, - "lon": -1.8462820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE42 42" - } -}, -{ - "type": "node", - "id": 4493306725, - "lat": 51.6439891, - "lon": -4.8697787, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4494070494, - "lat": 54.9611280, - "lon": -1.8500719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "inside by the checkouts", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NE42 49D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4494070523, - "lat": 54.9604002, - "lon": -1.8578215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 141" - } -}, -{ - "type": "node", - "id": 4494070568, - "lat": 54.9569141, - "lon": -1.8633963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE42 527D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4494070571, - "lat": 54.9561797, - "lon": -1.8682773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 691" - } -}, -{ - "type": "node", - "id": 4494104997, - "lat": 54.9578233, - "lon": -1.8665560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 233" - } -}, -{ - "type": "node", - "id": 4494105055, - "lat": 54.9612597, - "lon": -1.8587732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 693" - } -}, -{ - "type": "node", - "id": 4494105389, - "lat": 54.9628610, - "lon": -1.8606404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 573" - } -}, -{ - "type": "node", - "id": 4494105436, - "lat": 54.9610316, - "lon": -1.8722858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 138" - } -}, -{ - "type": "node", - "id": 4494173071, - "lat": 54.9644731, - "lon": -1.8528930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 694" - } -}, -{ - "type": "node", - "id": 4494182803, - "lat": 54.9621244, - "lon": -1.8388023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE42 186" - } -}, -{ - "type": "node", - "id": 4494238022, - "lat": 54.9625412, - "lon": -1.8340813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE42 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4494510951, - "lat": 55.9829717, - "lon": -3.4576312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH52 20D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4496899617, - "lat": 50.9820134, - "lon": -1.4631045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO52 746", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4497775900, - "lat": 53.8923901, - "lon": -0.8786807, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4497777814, - "lat": 54.1616928, - "lon": -0.3957763, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4497785413, - "lat": 54.0841192, - "lon": -0.4557260, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4497804145, - "lat": 54.1156353, - "lon": -0.3969072, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4497808671, - "lat": 53.3072698, - "lon": -2.3802217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA16 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4497811089, - "lat": 54.0645741, - "lon": -0.3748227, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4497819415, - "lat": 58.6102968, - "lon": -3.5508406, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "KW14 70", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4498311323, - "lat": 50.6284592, - "lon": -2.4568213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 92D", - "ref:GB:uprn": "10015332261", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 4498311324, - "lat": 50.6296067, - "lon": -2.4628588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 25D", - "ref:GB:uprn": "10015355482", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 4498311331, - "lat": 50.6221700, - "lon": -2.4578900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "DT4 7", - "ref:GB:uprn": "10015298589", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4498711332, - "lat": 50.9466402, - "lon": -2.5155132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT9 36", - "ref:GB:uprn": "10015465387", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4498966899, - "lat": 50.8699654, - "lon": -3.2526575, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4499181790, - "lat": 51.5245423, - "lon": -0.1250024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC1N 21;WC1N 221", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499181791, - "lat": 51.5245301, - "lon": -0.1249948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "WC1N 45P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499209131, - "lat": 51.5003278, - "lon": -0.1952936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499209132, - "lat": 51.4983625, - "lon": -0.1965943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Wall box but set into railings not a wall!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W8 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499209133, - "lat": 51.4965570, - "lon": -0.1988994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499225054, - "lat": 51.4946096, - "lon": -0.1942618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 11", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499464983, - "lat": 51.6662872, - "lon": -1.7063304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SN6 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4499475320, - "lat": 51.8749545, - "lon": -1.3637968, - "tags": { - "amenity": "post_box", - "material": "wood", - "post_box:type": "wall", - "ref": "OX20 349", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4499483518, - "lat": 51.7560034, - "lon": -1.5312734, - "tags": { - "amenity": "post_box", - "note": "hard to spot is in gatepost to pathway to house facing northwards", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX18 438", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4499496584, - "lat": 52.4293054, - "lon": -1.3370808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4499523961, - "lat": 52.4533273, - "lon": -1.3608189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "note": "brick pillar has pointy roof and stamp machine attached to the side of it", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4500045915, - "lat": 50.8343614, - "lon": -1.1758450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-04-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO13 91D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4500550750, - "lat": 54.9693626, - "lon": -1.8421343, - "tags": { - "amenity": "post_box", - "ref": "NE42 699" - } -}, -{ - "type": "node", - "id": 4500553039, - "lat": 54.9700568, - "lon": -1.8637074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE42 626", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4500577270, - "lat": 54.9769932, - "lon": -1.9058296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE42 702" - } -}, -{ - "type": "node", - "id": 4501033412, - "lat": 55.5077006, - "lon": -3.6956193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML12 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4501133214, - "lat": 55.6461587, - "lon": -4.7353379, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "KA20 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4501233562, - "lat": 55.8681065, - "lon": -4.0948092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G34 1390D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4501233564, - "lat": 55.8697076, - "lon": -4.0972255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G34 304", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4501244336, - "lat": 55.8738268, - "lon": -4.0558723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML5 47D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4501286907, - "lat": 55.8676137, - "lon": -4.0440870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4501293675, - "lat": 55.8607456, - "lon": -4.0406419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ML5 22", - "royal_cypher": "scottish_crown", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4501419939, - "lat": 50.4096160, - "lon": -3.8141943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ10 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4501476811, - "lat": 53.8289995, - "lon": -1.7048382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS28 403D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4502244503, - "lat": 54.9726950, - "lon": -1.5962605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE1 111", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4502345243, - "lat": 54.9717761, - "lon": -1.6055500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:letter_size": "C5", - "post_box:type": "pillar", - "ref": "NE1 100D" - } -}, -{ - "type": "node", - "id": 4503133780, - "lat": 55.6410172, - "lon": -4.8141832, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KA22 119", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4503133788, - "lat": 55.6400317, - "lon": -4.8145131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA22 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4503138289, - "lat": 55.6402785, - "lon": -4.8021535, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA22 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4503138291, - "lat": 55.6461924, - "lon": -4.8092184, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA22 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4503138293, - "lat": 55.6466980, - "lon": -4.8047901, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA22 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4503138295, - "lat": 55.6520329, - "lon": -4.8184103, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA22 153D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4503138297, - "lat": 55.6485944, - "lon": -4.8106051, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA22 117D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4503138299, - "lat": 55.6422509, - "lon": -4.8012013, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA22 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4503138301, - "lat": 55.6458005, - "lon": -4.7991092, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "KA22 200D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4503138308, - "lat": 55.6522220, - "lon": -4.8021696, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA22 137", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4503138309, - "lat": 55.6505952, - "lon": -4.8064396, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA22 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4503138310, - "lat": 55.6560942, - "lon": -4.8167022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA22 185", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4504210903, - "lat": 54.9742822, - "lon": -1.6024322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4504551347, - "lat": 54.9671146, - "lon": -1.6180552, - "tags": { - "amenity": "post_box", - "ref": "NE1 116" - } -}, -{ - "type": "node", - "id": 4504609098, - "lat": 54.9665650, - "lon": -1.6229093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:30", - "ref": "NE1 36" - } -}, -{ - "type": "node", - "id": 4504660852, - "lat": 55.7903421, - "lon": -4.8610159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "KA30 200D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4505115198, - "lat": 51.7079062, - "lon": -4.6989598, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4505142873, - "lat": 50.9881087, - "lon": -0.7394929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4505163558, - "lat": 50.9766090, - "lon": -0.7433103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 2" - } -}, -{ - "type": "node", - "id": 4505405825, - "lat": 54.8582628, - "lon": -6.2634250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4507349482, - "lat": 52.1880560, - "lon": 0.9844161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4507349483, - "lat": 52.1909327, - "lon": 0.9802529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4507349484, - "lat": 52.1919106, - "lon": 0.9739133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4508701580, - "lat": 50.9924984, - "lon": -0.7323207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU29 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4509389797, - "lat": 54.6619288, - "lon": -2.7587166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CA11 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4510768418, - "lat": 52.2719918, - "lon": -1.5343383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4510768419, - "lat": 52.2788649, - "lon": -1.5309461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV31 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4510768420, - "lat": 52.2776017, - "lon": -1.5328780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV31 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4510768421, - "lat": 52.2788801, - "lon": -1.5261658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV31 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4510911551, - "lat": 54.6014972, - "lon": -3.1384182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CA12 1278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4511439096, - "lat": 53.8727600, - "lon": -1.7112433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "indoor": "yes", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "LS20 467", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4512251308, - "lat": 50.9829327, - "lon": -0.7475058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4513807486, - "lat": 50.9849964, - "lon": -0.7377919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU29 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4513835598, - "lat": 54.9690640, - "lon": -1.6215387, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE1 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4513835600, - "lat": 54.9692477, - "lon": -1.6177619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4513848367, - "lat": 54.9691889, - "lon": -1.6159448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4513906051, - "lat": 54.9700511, - "lon": -1.6121324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE1 1500;NE1 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4513933137, - "lat": 54.9694365, - "lon": -1.6090792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/1884449", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 139", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4514486828, - "lat": 55.7580289, - "lon": -4.8520144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "name": "Castlepark Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA29 160", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4515134810, - "lat": 54.6231421, - "lon": -1.8623844, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/2484758", - "ref": "DL13 101" - } -}, -{ - "type": "node", - "id": 4515489562, - "lat": 50.9864267, - "lon": -0.7440589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU29 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4515560367, - "lat": 54.9720865, - "lon": -1.6169601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4515560382, - "lat": 54.9708276, - "lon": -1.6185761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4515639827, - "lat": 50.9697757, - "lon": 0.2579454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4515639828, - "lat": 50.9700378, - "lon": 0.2375882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN21 42D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4515853573, - "lat": 54.2980934, - "lon": -3.0863833, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4515879903, - "lat": 55.7941360, - "lon": -4.8671366, - "tags": { - "amenity": "post_box", - "note": "left slot is \"Second Class\", middle slot is \"First Class\" right hand slot is \"Local Mail \"", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "KA30 1000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4516216482, - "lat": 55.8022112, - "lon": -4.8720049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "moved in 2015 from SW corner of crossroads", - "post_box:type": "pillar", - "ref": "KA30 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4516585397, - "lat": 51.6014030, - "lon": -0.0909394, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4516848884, - "lat": 54.9724460, - "lon": -1.6123961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 33" - } -}, -{ - "type": "node", - "id": 4516882358, - "lat": 54.9711392, - "lon": -1.6107136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 285", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4517232920, - "lat": 50.9900935, - "lon": -0.7483179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4517291505, - "lat": 54.9767061, - "lon": -1.6119654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4517306673, - "lat": 55.7635266, - "lon": -4.8531329, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KA29 145D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4517332353, - "lat": 54.9740932, - "lon": -1.6115494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4517339593, - "lat": 55.7974546, - "lon": -4.8562679, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA30 129D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4517339610, - "lat": 55.7983382, - "lon": -4.8519393, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KA30 185D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4517858759, - "lat": 55.6486938, - "lon": -4.7447367, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA20 127", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4517960425, - "lat": 51.0208694, - "lon": -0.4995604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4518128989, - "lat": 53.0221481, - "lon": -1.2237968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG15 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4518728520, - "lat": 54.9741353, - "lon": -1.6118654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE1 1192;NE1 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4519157981, - "lat": 50.9804718, - "lon": -0.7425079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4519222194, - "lat": 54.9758732, - "lon": -1.6201415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NE1 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4519228037, - "lat": 54.9811952, - "lon": -1.6169294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE1 23", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4519228067, - "lat": 54.9799551, - "lon": -1.6179241, - "tags": { - "amenity": "post_box", - "ref": "NE1 214" - } -}, -{ - "type": "node", - "id": 4519345721, - "lat": 55.7495972, - "lon": -4.8545384, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "KA29 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4519383139, - "lat": 55.7523113, - "lon": -4.8559676, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA29 59D" - } -}, -{ - "type": "node", - "id": 4519383169, - "lat": 55.7560818, - "lon": -4.8543292, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4519645692, - "lat": 51.4949047, - "lon": -2.4672251, - "tags": { - "amenity": "post_box", - "name": "Honeysuckle road", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4520815532, - "lat": 50.9810267, - "lon": -0.7468266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU29 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4522530991, - "lat": 51.3460116, - "lon": -1.9799908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4522530992, - "lat": 51.3524071, - "lon": -1.9821603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4522530993, - "lat": 51.3482354, - "lon": -1.9787958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 73", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4523030586, - "lat": 52.6752059, - "lon": 1.3707034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NR13 1367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4523280643, - "lat": 51.8460625, - "lon": -4.3075684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA31 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4523808580, - "lat": 52.1909532, - "lon": -1.9153206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4523982942, - "lat": 55.8647195, - "lon": -4.2595417, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "location": "WHSmith", - "note": "there are also 2 other collection boxes , one for parcels one for letters in WHSmiths", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "G2 1537", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4524772711, - "lat": 51.7561129, - "lon": -0.3295221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-03-02", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4524774948, - "lat": 51.7601882, - "lon": -0.3410100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4525018190, - "lat": 53.4361461, - "lon": -2.1816071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 567", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4525052689, - "lat": 56.3296156, - "lon": -3.3251351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 90D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4525052707, - "lat": 56.3340260, - "lon": -3.3132278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 203D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4525422452, - "lat": 51.4695905, - "lon": -0.4509298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "indoor": "yes", - "level": "0", - "post_box:type": "pillar", - "ref": "TW6 1100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4525490287, - "lat": 50.9152592, - "lon": -3.2194021, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX15 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4526349616, - "lat": 54.9728519, - "lon": -1.6132591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4526380156, - "lat": 54.9750981, - "lon": -1.6121050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NE1 3" - } -}, -{ - "type": "node", - "id": 4526380157, - "lat": 54.9764432, - "lon": -1.6075534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4526380159, - "lat": 54.9769660, - "lon": -1.6131654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/7189828", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 28", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4526380306, - "lat": 54.9804132, - "lon": -1.6221544, - "tags": { - "amenity": "post_box", - "ref": "NE1 215" - } -}, -{ - "type": "node", - "id": 4526380312, - "lat": 54.9770757, - "lon": -1.5967538, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE1 27" - } -}, -{ - "type": "node", - "id": 4526425625, - "lat": 55.0087368, - "lon": -1.4366470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4526839708, - "lat": 50.9175315, - "lon": -1.4452569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 408D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4526972969, - "lat": 55.8712886, - "lon": -4.8855930, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA17 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4527178074, - "lat": 50.3775995, - "lon": -4.1355863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL4 82;PL4 8200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-04" - } -}, -{ - "type": "node", - "id": 4527178079, - "lat": 50.3775704, - "lon": -4.1356024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "meter", - "ref": "PL4 196P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4527178080, - "lat": 50.3790654, - "lon": -4.1345388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL4 83;PL4 8300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-04" - } -}, -{ - "type": "node", - "id": 4528247672, - "lat": 54.3478103, - "lon": -6.6465677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4528247673, - "lat": 54.3505134, - "lon": -6.6518219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4528247674, - "lat": 54.3480848, - "lon": -6.6533894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT61 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4528538005, - "lat": 50.9770114, - "lon": -0.7615428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU29 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4528541807, - "lat": 50.9590733, - "lon": -3.2070270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA21 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4528936634, - "lat": 51.2710094, - "lon": -2.1227889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BA13 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4528985894, - "lat": 51.5111014, - "lon": -1.7868259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 407D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4528985895, - "lat": 51.5124218, - "lon": -1.7896264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN4 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4529094603, - "lat": 55.8795744, - "lon": -4.2764980, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4529094609, - "lat": 55.8812275, - "lon": -4.2897775, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4529317998, - "lat": 58.8261367, - "lon": -3.1043612, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529338423, - "lat": 59.1406989, - "lon": -2.5872925, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4529345794, - "lat": 59.0979469, - "lon": -3.2747601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 107", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529349185, - "lat": 58.9828966, - "lon": -2.9604961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:30", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "KW15 131", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529380053, - "lat": 58.9833139, - "lon": -2.9548078, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW15 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529380068, - "lat": 58.9837438, - "lon": -2.9519559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:15; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW15 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529380073, - "lat": 58.9865010, - "lon": -2.9545791, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW15 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529380074, - "lat": 58.9833039, - "lon": -2.9609398, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW15 35", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4529389645, - "lat": 58.8314863, - "lon": -3.2060671, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4529403002, - "lat": 58.9688000, - "lon": -3.2290634, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_pillar", - "post_box:type": "wall", - "ref": "KW16 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4529431416, - "lat": 58.9877763, - "lon": -2.9711128, - "tags": { - "amenity": "post_box", - "note": "plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4530363414, - "lat": 57.1000912, - "lon": -2.2659236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB14 385", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4530398900, - "lat": 52.4440848, - "lon": -2.1384929, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4530404943, - "lat": 52.4424394, - "lon": -2.1343538, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4530407643, - "lat": 52.4448366, - "lon": -2.1310297, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4531661001, - "lat": 51.9302100, - "lon": -0.2742780, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG4 118" - } -}, -{ - "type": "node", - "id": 4531661002, - "lat": 51.9381830, - "lon": -0.2686330, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-11", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SG4 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4531661003, - "lat": 51.9458753, - "lon": -0.2069800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "SG4 90" - } -}, -{ - "type": "node", - "id": 4531661004, - "lat": 51.8517000, - "lon": -0.2621080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "post_box:type": "lamp", - "ref": "SG4 67" - } -}, -{ - "type": "node", - "id": 4531661005, - "lat": 51.8992267, - "lon": -0.1128882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "SG2 255" - } -}, -{ - "type": "node", - "id": 4531849590, - "lat": 51.7244434, - "lon": -2.9162717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP15 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4532788649, - "lat": 53.4455760, - "lon": -2.1651165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Later collection (after 4pm) available at 373 Barlow Road postbox. Latest collection in the area is 18:45 at Green Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK5 311D", - "source": "survey", - "survey:date": "2016-12-05" - } -}, -{ - "type": "node", - "id": 4532827962, - "lat": 55.8238602, - "lon": -4.0448487, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4533087940, - "lat": 55.7714271, - "lon": -4.3403508, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4533094826, - "lat": 55.9618614, - "lon": -3.9543354, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4533107991, - "lat": 51.6985932, - "lon": 0.4754072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4534087663, - "lat": 55.3677108, - "lon": -3.9234901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "indoor": "yes", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "DG4 150", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4534105469, - "lat": 55.8762363, - "lon": -4.8884691, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA18 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4534121674, - "lat": 55.6352760, - "lon": -4.7936119, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA21 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4534193875, - "lat": 55.5329388, - "lon": -4.6484320, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA10 81", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4534233991, - "lat": 55.5481273, - "lon": -4.6839897, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA10 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4534324006, - "lat": 53.7468932, - "lon": -2.4538218, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB1 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4534578738, - "lat": 56.0960022, - "lon": -3.3674274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY4 88", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4535109998, - "lat": 52.4544842, - "lon": 0.0561627, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4535110011, - "lat": 52.4522171, - "lon": 0.0424541, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4536230697, - "lat": 52.9051163, - "lon": 1.0890912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR25 2500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4536301414, - "lat": 51.6947729, - "lon": -0.4130086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD25 3333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4536418221, - "lat": 50.4069263, - "lon": -4.1331044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL6 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-15" - } -}, -{ - "type": "node", - "id": 4536676357, - "lat": 59.2831231, - "lon": -2.9736739, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 67", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536676361, - "lat": 59.2926792, - "lon": -2.9248737, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 76", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536676362, - "lat": 59.2844930, - "lon": -2.9062970, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 117", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536676363, - "lat": 59.3213519, - "lon": -2.9883355, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4536676367, - "lat": 59.2493069, - "lon": -2.8611528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "post_box:type": "lamp", - "ref": "KW17 75", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536676370, - "lat": 59.3348624, - "lon": -2.9713377, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536682354, - "lat": 59.1543012, - "lon": -2.9311586, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "KW17 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536751869, - "lat": 50.8207512, - "lon": -1.0589110, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "note": "Latest collection times for the Portsmouth area.", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PO3 4001;PO3 4002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4536964080, - "lat": 59.1306652, - "lon": -3.0455834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536964081, - "lat": 59.1792899, - "lon": -3.0715801, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536964082, - "lat": 59.1683260, - "lon": -2.9955440, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4536964087, - "lat": 59.1592814, - "lon": -2.9847581, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4536964290, - "lat": 59.1405807, - "lon": -2.9743599, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4536987731, - "lat": 58.8003244, - "lon": -3.2071073, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4537000536, - "lat": 58.8063931, - "lon": -3.2040688, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 105", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4537000695, - "lat": 58.7871821, - "lon": -3.2600865, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW17 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4537001366, - "lat": 58.7833068, - "lon": -3.2350586, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4537841296, - "lat": 50.9795518, - "lon": -0.7335808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-04-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU29 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4538603033, - "lat": 55.7425821, - "lon": -4.1566049, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4538730698, - "lat": 56.0267809, - "lon": -5.3615133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PA31 20", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4538870090, - "lat": 50.5414159, - "lon": -3.7330022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4538873747, - "lat": 54.6490597, - "lon": -1.7893957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DL14 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4538880150, - "lat": 53.3018739, - "lon": -2.2374721, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SK9 639", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4538921394, - "lat": 53.3037611, - "lon": -2.2422818, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "SK9 723D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4538921400, - "lat": 53.3027289, - "lon": -2.2326614, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-24", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SK9 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540142601, - "lat": 54.2159000, - "lon": -2.9141881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 08:45", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LA11 138", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4540152800, - "lat": 53.0248223, - "lon": -4.3216156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:45", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL54 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4540248426, - "lat": 55.6830949, - "lon": -4.0689995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML10 5", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4540248429, - "lat": 55.6634817, - "lon": -4.0380525, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4540319167, - "lat": 55.6229524, - "lon": -3.6321672, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4540400650, - "lat": 52.3331858, - "lon": -2.7992657, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY8 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4540407123, - "lat": 52.3026382, - "lon": -2.9094528, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY7 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540428081, - "lat": 52.0514891, - "lon": -2.9026260, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR2 74", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4540461545, - "lat": 52.0086326, - "lon": -2.8185082, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR2 89", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4540467185, - "lat": 51.9999889, - "lon": -2.7933582, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540506883, - "lat": 51.8826126, - "lon": 0.2172055, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4540528596, - "lat": 54.3354485, - "lon": -0.4770096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO13 131", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4540539896, - "lat": 54.4389477, - "lon": -0.5457926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "YO22 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540548023, - "lat": 54.4552311, - "lon": -0.5711484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "YO22 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4540561570, - "lat": 54.4828155, - "lon": -0.6200974, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540570887, - "lat": 54.4833921, - "lon": -0.6318643, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540575808, - "lat": 54.4827128, - "lon": -0.6084379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO22 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4540579175, - "lat": 54.4865567, - "lon": -0.6315424, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 81", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4540587456, - "lat": 54.4825662, - "lon": -0.6155877, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4540597079, - "lat": 54.4360537, - "lon": -0.7245824, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4540609715, - "lat": 54.4889779, - "lon": -0.6201161, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541528052, - "lat": 54.4888392, - "lon": -0.6271758, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541528053, - "lat": 54.4884862, - "lon": -0.6351367, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541539758, - "lat": 54.4795656, - "lon": -0.6321863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO21 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541539762, - "lat": 54.4805551, - "lon": -0.6223536, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541556970, - "lat": 54.5005843, - "lon": -0.6683026, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541605154, - "lat": 54.4903505, - "lon": -0.6177889, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO21 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541648742, - "lat": 54.4583466, - "lon": -0.9544492, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541673132, - "lat": 54.4384304, - "lon": -0.7958036, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541684715, - "lat": 54.4673084, - "lon": -0.9453286, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541695903, - "lat": 55.8445917, - "lon": -3.6413032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH47 59D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4541698390, - "lat": 54.4635038, - "lon": -0.9133873, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO21 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541726329, - "lat": 54.4315179, - "lon": -0.9312069, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO21 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541748083, - "lat": 54.4684579, - "lon": -0.9088550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "post_box:type": "wall", - "ref": "YO21 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541781328, - "lat": 54.4397234, - "lon": -0.8070651, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO21 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541850184, - "lat": 54.2381160, - "lon": -0.4112764, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO11 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4541850185, - "lat": 54.2381177, - "lon": -0.4113264, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "meter", - "ref": "YO11 2002P" - } -}, -{ - "type": "node", - "id": 4542058454, - "lat": 56.4673374, - "lon": -2.8754513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4542179957, - "lat": 54.2499047, - "lon": -0.3759329, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4542192190, - "lat": 54.2004267, - "lon": -0.4195273, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO11 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4542200129, - "lat": 54.2015582, - "lon": -0.3868541, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO11 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4542233327, - "lat": 54.1316945, - "lon": -0.1797163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO15 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4542242663, - "lat": 54.0842097, - "lon": -0.1985035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO15 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4542243021, - "lat": 54.0853181, - "lon": -0.1865318, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO15 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4542359052, - "lat": 54.0642565, - "lon": -0.2423845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO15 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4543493877, - "lat": 56.4531957, - "lon": -2.9890333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "DD1 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4543493878, - "lat": 56.4537490, - "lon": -2.9957073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4543493879, - "lat": 56.4560754, - "lon": -2.9979501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4543680251, - "lat": 56.4670331, - "lon": -2.8731969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4543900606, - "lat": 55.9659538, - "lon": -4.9087485, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4544164840, - "lat": 52.8537489, - "lon": -4.6410800, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "LL53 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4544190870, - "lat": 53.6989532, - "lon": -2.2899918, - "tags": { - "amenity": "post_box", - "indoor": "no", - "post_box:type": "wall", - "ref": "BB4 566", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4545523923, - "lat": 55.9473196, - "lon": -4.9274863, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4545523928, - "lat": 55.9482236, - "lon": -4.9246460, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA23 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4545523948, - "lat": 55.9532816, - "lon": -4.9193674, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4545524798, - "lat": 55.9493711, - "lon": -4.9261212, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4545524802, - "lat": 55.9511520, - "lon": -4.9280091, - "tags": { - "amenity": "post_box", - "note": "left aperture \"Local\", right aperture \"Other Places\"", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "PA23 1000", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4545524809, - "lat": 55.9563943, - "lon": -4.9149283, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4545524832, - "lat": 55.9492750, - "lon": -4.9295728, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA23 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4545524836, - "lat": 55.9510785, - "lon": -4.9237421, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4545547197, - "lat": 55.9607322, - "lon": -4.9107492, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4545594796, - "lat": 55.9451507, - "lon": -4.9239084, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4545627035, - "lat": 55.9452318, - "lon": -4.9319975, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4545639287, - "lat": 55.9436021, - "lon": -4.9345858, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA23 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4545675691, - "lat": 54.0082581, - "lon": -1.4499755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HG5 267" - } -}, -{ - "type": "node", - "id": 4545731500, - "lat": 53.7575189, - "lon": -2.4917563, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4545741287, - "lat": 53.7526536, - "lon": -2.4619622, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BB1 86" - } -}, -{ - "type": "node", - "id": 4545741288, - "lat": 53.7526299, - "lon": -2.4619542, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BB1 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4545764420, - "lat": 53.7661618, - "lon": -2.2063700, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB10 103", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4545781545, - "lat": 53.7496553, - "lon": -2.5086904, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4545796853, - "lat": 53.7460074, - "lon": -2.5000755, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4545859660, - "lat": 55.8735171, - "lon": -4.8880096, - "tags": { - "amenity": "post_box", - "note": "the royal mail location for this box is wrong though the description of its location \"Station Road\" is correct. The post box with the reference PA17 79 is probably the one at the north end of Eglinton Terrace", - "post_box:type": "lamp", - "ref": "PA17 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4545859662, - "lat": 55.8667271, - "lon": -4.8873578, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4545859669, - "lat": 55.8691559, - "lon": -4.8826669, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4545880071, - "lat": 55.9866589, - "lon": -5.1992372, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA22 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4545888899, - "lat": 56.2230048, - "lon": -5.0319662, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA25 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4545904297, - "lat": 56.2574153, - "lon": -4.9357100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PA26 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4547153144, - "lat": 54.0703861, - "lon": -2.6959638, - "tags": { - "amenity": "post_box", - "ref": "LA2 104" - } -}, -{ - "type": "node", - "id": 4547387092, - "lat": 55.8573474, - "lon": -4.2766218, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "G3 179", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4547413079, - "lat": 56.1161979, - "lon": -5.2527015, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA32 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4547434909, - "lat": 56.1525016, - "lon": -5.1839595, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA32 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4547437747, - "lat": 56.4008904, - "lon": -5.0447741, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA33 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4547462269, - "lat": 56.3527626, - "lon": -5.0820191, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA33 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4547470631, - "lat": 55.9017026, - "lon": -5.2404122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA21 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4547474360, - "lat": 55.8929511, - "lon": -5.2453282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00, Sa 09:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PA21 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4547751741, - "lat": 54.0147791, - "lon": -2.8618238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4548098753, - "lat": 55.4355867, - "lon": -4.4640500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA6 120", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4548098755, - "lat": 55.4280668, - "lon": -4.6369812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA7 39D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4548098762, - "lat": 55.4439225, - "lon": -4.5097409, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4548098785, - "lat": 55.4329149, - "lon": -4.4635557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA6 143", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4548099489, - "lat": 55.4331821, - "lon": -4.4575506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA6 129", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4548099490, - "lat": 55.4356522, - "lon": -4.4596976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KA6 76", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4548099495, - "lat": 55.4330109, - "lon": -4.6329504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4548099498, - "lat": 55.4479857, - "lon": -4.4631338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "175992915460711", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 4548316818, - "lat": 54.1810194, - "lon": -2.6155996, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 166" - } -}, -{ - "type": "node", - "id": 4548454552, - "lat": 53.7161752, - "lon": -2.7919617, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4548482578, - "lat": 51.2057458, - "lon": -0.5257623, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4549481161, - "lat": 52.0124524, - "lon": -0.4293077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 413D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4549481162, - "lat": 52.0147521, - "lon": -0.4277279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK45 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4549481163, - "lat": 52.0212974, - "lon": -0.5006296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481164, - "lat": 52.0219251, - "lon": -0.4979589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481165, - "lat": 52.0229701, - "lon": -0.4858091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481169, - "lat": 52.0235124, - "lon": -0.4917984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK45 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481173, - "lat": 52.0241594, - "lon": -0.5076229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481176, - "lat": 52.0258687, - "lon": -0.4957628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481177, - "lat": 52.0264798, - "lon": -0.4376976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481178, - "lat": 52.0269481, - "lon": -0.4486612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481179, - "lat": 52.0271052, - "lon": -0.4902555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK45 365D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481180, - "lat": 52.0271453, - "lon": -0.4881755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481181, - "lat": 52.0289771, - "lon": -0.4601437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481182, - "lat": 52.0294334, - "lon": -0.4931536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481183, - "lat": 52.0299124, - "lon": -0.4942205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 292D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481184, - "lat": 52.0304978, - "lon": -0.4853310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549481185, - "lat": 52.0308029, - "lon": -0.4702484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 157D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549482790, - "lat": 52.0315824, - "lon": -0.4723745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549482792, - "lat": 52.0320275, - "lon": -0.4920673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549482793, - "lat": 52.0328423, - "lon": -0.4942500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "MK45 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549508262, - "lat": 52.0108110, - "lon": -0.3850217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4549508263, - "lat": 52.0109679, - "lon": -0.3800040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK45 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4549508267, - "lat": 52.0133224, - "lon": -0.3789639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4549508269, - "lat": 52.0269741, - "lon": -0.4235201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549508270, - "lat": 52.0298657, - "lon": -0.4170672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549508271, - "lat": 52.0306810, - "lon": -0.4218485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549508272, - "lat": 52.0315263, - "lon": -0.4099884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK45 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549751683, - "lat": 52.0460235, - "lon": -0.5499869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "MK43 267", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2016-12-12" - } -}, -{ - "type": "node", - "id": 4549751684, - "lat": 52.0597208, - "lon": -0.5529360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK43 410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-29" - } -}, -{ - "type": "node", - "id": 4549751685, - "lat": 52.0831908, - "lon": -0.6896603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK16 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 4549751686, - "lat": 52.0927737, - "lon": -0.6250205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "MK16 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 4549751687, - "lat": 52.0931411, - "lon": -0.6473049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 4549751688, - "lat": 52.1175558, - "lon": -0.6316199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK16 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-03" - } -}, -{ - "type": "node", - "id": 4549751689, - "lat": 52.1234504, - "lon": -0.5429515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "MK43 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-08-29" - } -}, -{ - "type": "node", - "id": 4549751690, - "lat": 52.1529640, - "lon": -0.5215005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK43 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-29" - } -}, -{ - "type": "node", - "id": 4549794786, - "lat": 51.5772942, - "lon": -0.0096885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E10 20", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4549923495, - "lat": 58.2538389, - "lon": -5.0214283, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IV27 305", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4550786295, - "lat": 55.9789135, - "lon": -3.2164640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH5 34D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4550989519, - "lat": 54.9168483, - "lon": -6.2104944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "BT43 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4551112908, - "lat": 52.5683325, - "lon": 1.3822832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR14 1439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4551528939, - "lat": 53.5677022, - "lon": -1.6420803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4551989984, - "lat": 51.3828324, - "lon": -2.3900895, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4552019967, - "lat": 51.2905883, - "lon": -2.4545101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "368516057949384", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2019-04-26", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 4552357385, - "lat": 53.4478936, - "lon": -2.2670750, - "tags": { - "amenity": "post_box", - "ref": "M16 396D" - } -}, -{ - "type": "node", - "id": 4552405955, - "lat": 54.9270834, - "lon": -1.8788680, - "tags": { - "amenity": "post_box", - "ref": "NE43 522" - } -}, -{ - "type": "node", - "id": 4552414283, - "lat": 54.9195184, - "lon": -1.9161392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 243" - } -}, -{ - "type": "node", - "id": 4552517380, - "lat": 54.9321563, - "lon": -1.9277933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 283" - } -}, -{ - "type": "node", - "id": 4552518532, - "lat": 54.9506572, - "lon": -1.8904267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 126" - } -}, -{ - "type": "node", - "id": 4552518584, - "lat": 54.9454758, - "lon": -1.8788818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 93" - } -}, -{ - "type": "node", - "id": 4552545752, - "lat": 54.9544983, - "lon": -1.8840412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 318" - } -}, -{ - "type": "node", - "id": 4552898219, - "lat": 51.0081992, - "lon": -0.1370553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4552898231, - "lat": 51.0060382, - "lon": -0.1428484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH17 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4553079054, - "lat": 53.4480750, - "lon": -2.2573081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "M16 188D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4554027112, - "lat": 54.9745405, - "lon": -1.9482677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE43 523", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4554027119, - "lat": 54.9800371, - "lon": -1.9411760, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 27" - } -}, -{ - "type": "node", - "id": 4554045081, - "lat": 54.9865861, - "lon": -1.9188513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE43 54" - } -}, -{ - "type": "node", - "id": 4554435900, - "lat": 51.0360562, - "lon": 0.0148757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4554435901, - "lat": 51.0398255, - "lon": 0.0123662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4554435902, - "lat": 51.0481951, - "lon": 0.0245994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4554436318, - "lat": 57.8976914, - "lon": -4.3200159, - "tags": { - "amenity": "post_box", - "ref": "IV24 285", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4554436319, - "lat": 57.9337859, - "lon": -4.2950372, - "tags": { - "amenity": "post_box", - "ref": "IV24 318", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4555490831, - "lat": 54.9644189, - "lon": -1.6278998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE4 144" - } -}, -{ - "type": "node", - "id": 4555574257, - "lat": 51.3206589, - "lon": -2.7899153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS25 49" - } -}, -{ - "type": "node", - "id": 4556388642, - "lat": 55.8766516, - "lon": -3.1179819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "EH18 82", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4557818001, - "lat": 56.0612316, - "lon": -3.4072509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 210", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4558017463, - "lat": 55.8696429, - "lon": -3.1229638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EH19 334", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4558023571, - "lat": 55.8718228, - "lon": -3.1261358, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2019-06-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH18 71D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4558033050, - "lat": 56.0270043, - "lon": -4.9807422, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "fence", - "post_box:type": "lamp", - "ref": "PA23 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4558074832, - "lat": 55.8833437, - "lon": -4.9699619, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA23 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4558074837, - "lat": 55.9511672, - "lon": -4.9284147, - "tags": { - "amenity": "post_box", - "note": "Meter Posting", - "post_box:type": "wall", - "ref": "PA23 4" - } -}, -{ - "type": "node", - "id": 4558074838, - "lat": 55.9536121, - "lon": -4.9286079, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PA23 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4558074856, - "lat": 55.9329887, - "lon": -4.9370622, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA23 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4558074867, - "lat": 55.9372404, - "lon": -4.9354392, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA23 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4558074869, - "lat": 55.9205852, - "lon": -4.9446582, - "tags": { - "amenity": "post_box", - "note": "front door missing", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4558096294, - "lat": 55.8630290, - "lon": -4.9792929, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA23 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4558096310, - "lat": 55.8895202, - "lon": -4.9606063, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA23 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4558096315, - "lat": 55.8969711, - "lon": -4.9524015, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA23 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4558096332, - "lat": 55.8872444, - "lon": -4.9644231, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4558549754, - "lat": 56.1599474, - "lon": -5.0941378, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA27 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4558558104, - "lat": 56.1293906, - "lon": -5.1515202, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA27 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4558603309, - "lat": 52.2162474, - "lon": 1.5777021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP16 4664", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4558675002, - "lat": 52.8074720, - "lon": -2.1175090, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ST16 1622;ST16 9622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4558675004, - "lat": 52.8074779, - "lon": -2.1174554, - "tags": { - "amenity": "post_box", - "note": "aperture blocked", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "ST16 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4558866724, - "lat": 52.1629224, - "lon": -1.8991827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WR11 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4558866725, - "lat": 52.1684483, - "lon": -1.9134705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4558939093, - "lat": 53.9082247, - "lon": -2.7739816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR3 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4558939102, - "lat": 53.9182233, - "lon": -2.7771419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR3 323" - } -}, -{ - "type": "node", - "id": 4558939106, - "lat": 53.9322599, - "lon": -2.7943445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR3 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4559207421, - "lat": 53.0962908, - "lon": -3.0008625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4559207453, - "lat": 53.0944756, - "lon": -3.0017693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4559207457, - "lat": 53.0948364, - "lon": -2.9972471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4559296127, - "lat": 52.5807774, - "lon": -0.4167673, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE8 80", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4560275010, - "lat": 53.7445083, - "lon": -2.7103817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR1 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4560320029, - "lat": 53.7621725, - "lon": -2.7357851, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "Inside Morrissons store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR2 458", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4560496448, - "lat": 52.2433946, - "lon": 0.7183251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP33 2092D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4560519886, - "lat": 52.2449679, - "lon": 0.7005312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP33 2079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4560528466, - "lat": 52.2433930, - "lon": 0.6942579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2235", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4560537771, - "lat": 52.2430398, - "lon": 0.6871473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 4560542837, - "lat": 52.2464195, - "lon": 0.6907261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "information_plate:date": "2017-01-12", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 4560551545, - "lat": 52.2517188, - "lon": 0.6913352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "location": "Inside lobby of ASDA supermarket", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "IP33 8249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4561279179, - "lat": 51.4071231, - "lon": -0.7627169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4561521469, - "lat": 50.6002671, - "lon": -1.2655724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO38 231", - "ref:GB:uprn": "10015386314", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "website": "https://www.royalmail.com/services-near-you/postbox/high-street-whitwell-po38-2aa/000PO38231" - } -}, -{ - "type": "node", - "id": 4561615018, - "lat": 53.5562878, - "lon": -3.0626923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4561742986, - "lat": 57.1201694, - "lon": -2.1873790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4561857974, - "lat": 53.5545011, - "lon": -3.0573004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4561858103, - "lat": 53.5583426, - "lon": -3.0565843, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561858851, - "lat": 53.5619605, - "lon": -3.0574365, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561860521, - "lat": 53.5644698, - "lon": -3.0578673, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561867098, - "lat": 53.5688943, - "lon": -3.0642698, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561870007, - "lat": 53.5636164, - "lon": -3.0655100, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561880935, - "lat": 53.5598788, - "lon": -3.0692721, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561883588, - "lat": 53.5657352, - "lon": -3.0711054, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561884081, - "lat": 53.5608942, - "lon": -3.0802932, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4561892843, - "lat": 53.5530974, - "lon": -3.0828666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4561896221, - "lat": 53.5511207, - "lon": -3.0833500, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4562012763, - "lat": 53.5513509, - "lon": -3.0777670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4562012764, - "lat": 53.5504465, - "lon": -3.0553603, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4562013581, - "lat": 53.5674910, - "lon": -3.0512401, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4562016914, - "lat": 53.5466333, - "lon": -3.0537544, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4562020120, - "lat": 54.9619087, - "lon": -1.6451400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 09:30", - "ref": "NE4 302" - } -}, -{ - "type": "node", - "id": 4562071301, - "lat": 51.0543368, - "lon": -3.1970073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 795", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4562731355, - "lat": 56.1261295, - "lon": -3.1606491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 132", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4562731537, - "lat": 56.1236622, - "lon": -3.1674313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 105D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4563498681, - "lat": 55.0599335, - "lon": -1.4609873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE26 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4563568468, - "lat": 54.9663521, - "lon": -1.6363105, - "tags": { - "amenity": "post_box", - "ref": "NE4 46" - } -}, -{ - "type": "node", - "id": 4563568471, - "lat": 54.9652399, - "lon": -1.6337108, - "tags": { - "amenity": "post_box", - "ref": "NE4 2" - } -}, -{ - "type": "node", - "id": 4563584484, - "lat": 54.9713190, - "lon": -1.6268033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4563688200, - "lat": 54.9706947, - "lon": -1.6316419, - "tags": { - "amenity": "post_box", - "ref": "NE4 77" - } -}, -{ - "type": "node", - "id": 4563688201, - "lat": 54.9690190, - "lon": -1.6278122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE4 156" - } -}, -{ - "type": "node", - "id": 4563755793, - "lat": 54.9691861, - "lon": -1.6368354, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-05", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 124" - } -}, -{ - "type": "node", - "id": 4564898026, - "lat": 54.9699245, - "lon": -1.6573906, - "tags": { - "amenity": "post_box", - "ref": "NE4 459" - } -}, -{ - "type": "node", - "id": 4564898028, - "lat": 54.9708186, - "lon": -1.6601911, - "tags": { - "amenity": "post_box", - "ref": "NE4 182" - } -}, -{ - "type": "node", - "id": 4564992404, - "lat": 54.9702668, - "lon": -1.6579420, - "tags": { - "amenity": "post_box", - "ref": "NE4 183" - } -}, -{ - "type": "node", - "id": 4565305483, - "lat": 51.4507074, - "lon": -0.1899013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 42" - } -}, -{ - "type": "node", - "id": 4567110783, - "lat": 51.4562474, - "lon": -0.2234454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4567145300, - "lat": 50.9722163, - "lon": -3.5800021, - "tags": { - "amenity": "post_box", - "ref": "EX16 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4567389428, - "lat": 50.9230366, - "lon": -1.4716156, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 591D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4567418650, - "lat": 50.9297886, - "lon": -1.4194661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 437", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4567455188, - "lat": 52.0907339, - "lon": -0.5014886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK43 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-08-29" - } -}, -{ - "type": "node", - "id": 4567839246, - "lat": 54.1522942, - "lon": -0.8743668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO17 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4568636903, - "lat": 53.5015649, - "lon": -2.6599944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4568957373, - "lat": 51.9936236, - "lon": -0.4553841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4568957379, - "lat": 52.0019599, - "lon": -0.4678551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Appears to be recently installed, as at date of survey (2016-12-23)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK45 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2016-12-23" - } -}, -{ - "type": "node", - "id": 4569289899, - "lat": 52.1225538, - "lon": -1.7407438, - "tags": { - "amenity": "post_box", - "note": "no collection plate (and no sign of there ever having been one) July 2017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4569289906, - "lat": 52.1454688, - "lon": -1.7382666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV37 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4569338568, - "lat": 52.1895329, - "lon": -1.7186280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4569400583, - "lat": 53.4498974, - "lon": -2.1979433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M13 371D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4569592182, - "lat": 53.7597464, - "lon": -1.5732921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 1013", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4569592183, - "lat": 53.7573277, - "lon": -1.5730818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 1015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4570678032, - "lat": 50.9555449, - "lon": 0.0365426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4570681121, - "lat": 51.0069112, - "lon": -0.0947413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4570681132, - "lat": 51.0072486, - "lon": -0.0969759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 82D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4570681135, - "lat": 50.9971691, - "lon": -0.1032965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4570863687, - "lat": 50.9991582, - "lon": -0.1014444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RH16 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4571054467, - "lat": 55.9573016, - "lon": -5.3111335, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA21 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571054843, - "lat": 56.0083768, - "lon": -5.3206902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA21 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571056896, - "lat": 55.8861932, - "lon": -5.2660429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PA21 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571076042, - "lat": 55.8887806, - "lon": -5.2393121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00, Sa 09:30", - "post_box:type": "lamp", - "ref": "PA21 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571076043, - "lat": 55.8410880, - "lon": -5.2122888, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA21 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571079966, - "lat": 55.9062462, - "lon": -5.2335291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "evidence of previous georgian wall post box behind", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PA21 10D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571079970, - "lat": 55.9105837, - "lon": -5.2244441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA21 8D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571079971, - "lat": 55.9132662, - "lon": -5.2203467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA21 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571107038, - "lat": 55.5986770, - "lon": -5.6849998, - "tags": { - "amenity": "post_box", - "note": "was an EIIR post box in Scotland - has now been replaced with Scottish Crown version", - "post_box:type": "lamp", - "ref": "PA29 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571107056, - "lat": 53.0119651, - "lon": -3.8507565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "ref": "LL24 107" - } -}, -{ - "type": "node", - "id": 4571123472, - "lat": 55.8660346, - "lon": -5.4138403, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA29 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4571132353, - "lat": 55.8634580, - "lon": -5.4156964, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA29 1000", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571143413, - "lat": 55.9927319, - "lon": -5.1967377, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA22 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4571148305, - "lat": 56.0091395, - "lon": -5.2143538, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA22 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4572185077, - "lat": 54.2435350, - "lon": -0.3890171, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 202", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4572198722, - "lat": 54.2422260, - "lon": -0.3654534, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO11 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572212963, - "lat": 54.2420727, - "lon": -0.4110729, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO11 184D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4572222989, - "lat": 54.2355943, - "lon": -0.3883397, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO11 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572302382, - "lat": 54.1904138, - "lon": -0.2871575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO14 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4572311905, - "lat": 54.0977948, - "lon": -0.2649225, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO16 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572336881, - "lat": 54.1051800, - "lon": -0.1837611, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO16 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572365824, - "lat": 54.1006633, - "lon": -0.1957343, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO16 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4572424237, - "lat": 54.0823350, - "lon": -0.2140128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO16 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572461509, - "lat": 54.0965519, - "lon": -0.2121253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO16 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572469306, - "lat": 54.1062242, - "lon": -0.1765727, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO16 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4572471037, - "lat": 54.0971858, - "lon": -0.2090233, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO16 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241834, - "lat": 51.0788745, - "lon": -0.0538417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241836, - "lat": 51.0365235, - "lon": -0.0274391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4573241838, - "lat": 51.0758350, - "lon": -0.0484067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241841, - "lat": 51.0503832, - "lon": -0.0353909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241842, - "lat": 51.0748482, - "lon": -0.0432244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH19 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241844, - "lat": 51.0460560, - "lon": -0.0446184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 91", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4573241848, - "lat": 51.0321217, - "lon": -0.0903633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4573241852, - "lat": 51.0498582, - "lon": -0.0786362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH17 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4573241863, - "lat": 51.0394333, - "lon": -0.0656883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH16 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241865, - "lat": 51.0848972, - "lon": -0.0297472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573241869, - "lat": 51.0536229, - "lon": -0.0583189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4573409784, - "lat": 54.0820873, - "lon": -0.1916489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO15 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573436153, - "lat": 54.0650363, - "lon": -0.2179317, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO15 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4573545463, - "lat": 53.4409389, - "lon": -2.1935465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 570", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4573609882, - "lat": 54.0842530, - "lon": -0.1951040, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO15 2018", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4573679649, - "lat": 51.1269498, - "lon": -3.2723648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 153", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4573854809, - "lat": 51.1252511, - "lon": -3.2861239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4573854814, - "lat": 51.1268316, - "lon": -3.2925142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 547", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4574113077, - "lat": 51.4197944, - "lon": -0.2113415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW19 56" - } -}, -{ - "type": "node", - "id": 4574172440, - "lat": 51.1191468, - "lon": -3.3612235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4574191474, - "lat": 51.0559598, - "lon": -3.3586792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4574191475, - "lat": 51.0694278, - "lon": -3.3536825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4574212793, - "lat": 51.0526593, - "lon": -3.3400141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 82", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4574212796, - "lat": 51.0542125, - "lon": -3.3219964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4574261304, - "lat": 57.5815960, - "lon": -3.8512631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV12 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4574329134, - "lat": 52.2379681, - "lon": 0.7229221, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP33 2087", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4574937996, - "lat": 51.5659920, - "lon": -1.7924903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 616", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4575033078, - "lat": 51.3871105, - "lon": -2.4397445, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4575677103, - "lat": 51.6042839, - "lon": -0.0163536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4577821321, - "lat": 50.6053749, - "lon": -3.5992690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 84D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4577894518, - "lat": 52.1832771, - "lon": 0.7669731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP30 2020D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4577894522, - "lat": 52.1561600, - "lon": 0.7823952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "note": "Set into end of bridge parapet facing road", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP30 2068", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4577894531, - "lat": 52.1632351, - "lon": 0.7732354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP30 2080", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4577894554, - "lat": 52.1709202, - "lon": 0.7640961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4577930774, - "lat": 53.4529049, - "lon": -2.1998431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M13 345D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4578045344, - "lat": 52.5840783, - "lon": -2.1262288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:apertures": "2", - "ref": "WV1 144", - "source": "survey", - "survey:date": "2012-09-05" - } -}, -{ - "type": "node", - "id": 4578052023, - "lat": 53.4599484, - "lon": -2.2250067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "M13 888" - } -}, -{ - "type": "node", - "id": 4578052024, - "lat": 53.4591686, - "lon": -2.2267102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "M13 524" - } -}, -{ - "type": "node", - "id": 4578067556, - "lat": 51.4952375, - "lon": -3.4556643, - "tags": { - "amenity": "post_box", - "ref": "CF71 102" - } -}, -{ - "type": "node", - "id": 4579780738, - "lat": 53.7585964, - "lon": -2.0183716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HX7 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4579879293, - "lat": 51.4041196, - "lon": -2.2723231, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4579954264, - "lat": 51.3999877, - "lon": -2.2981196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4580452395, - "lat": 51.0553910, - "lon": -3.1881923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 388", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4580462539, - "lat": 51.0909623, - "lon": -3.0178881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4580502946, - "lat": 53.4458460, - "lon": -2.1913657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 565", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4581156407, - "lat": 51.0197569, - "lon": -2.8789965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA10 187D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4581162163, - "lat": 51.7668511, - "lon": -0.3232758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581162164, - "lat": 51.7695001, - "lon": -0.3268145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581162172, - "lat": 51.7713184, - "lon": -0.3264070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL3 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581190521, - "lat": 50.9768235, - "lon": -2.8745370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581326255, - "lat": 50.9600784, - "lon": -2.8875779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581326267, - "lat": 50.9618489, - "lon": -2.8773802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581338057, - "lat": 50.9485712, - "lon": -2.9274328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581424991, - "lat": 50.9941349, - "lon": -3.0821056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581451551, - "lat": 51.0158229, - "lon": -3.1370862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4581545367, - "lat": 53.8362088, - "lon": -2.2564867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB12 95" - } -}, -{ - "type": "node", - "id": 4581637865, - "lat": 52.0894610, - "lon": -1.7678559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-05-13", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL55 82", - "royal_cypher": "ER", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4582773638, - "lat": 51.3586990, - "lon": -2.3636748, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4582894468, - "lat": 53.2417599, - "lon": -0.5416605, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN1 572" - } -}, -{ - "type": "node", - "id": 4583640557, - "lat": 50.9399615, - "lon": 0.1744862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00, Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN8 522", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4583640558, - "lat": 50.9327073, - "lon": 0.1767547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN8 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640560, - "lat": 50.9286788, - "lon": 0.1839263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640561, - "lat": 50.9196730, - "lon": 0.1995686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15, Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640562, - "lat": 50.9105411, - "lon": 0.2099330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640564, - "lat": 50.9069268, - "lon": 0.1953189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN8 529", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640566, - "lat": 50.8995068, - "lon": 0.1955742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 4583640568, - "lat": 50.9041862, - "lon": 0.1716251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640604, - "lat": 50.9124462, - "lon": 0.1562552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583640606, - "lat": 50.9288779, - "lon": 0.1351952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 533", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583818520, - "lat": 52.1684802, - "lon": 1.4011081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583856310, - "lat": 51.7944636, - "lon": -0.0618285, - "tags": { - "amenity": "post_box", - "note": "Franked mail only", - "post_box:type": "pillar", - "ref": "SG13 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583856311, - "lat": 51.7959441, - "lon": -0.0712974, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583856318, - "lat": 51.7992777, - "lon": -0.0677606, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583899991, - "lat": 50.9280117, - "lon": 0.1577267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 532D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583899992, - "lat": 50.8955751, - "lon": 0.0649258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 539D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4583899993, - "lat": 50.8705633, - "lon": 0.1454060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 544", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4583899994, - "lat": 50.8929581, - "lon": 0.0575265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN8 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583899995, - "lat": 50.8986967, - "lon": 0.1356050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583899997, - "lat": 50.8619164, - "lon": 0.0683038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 562", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4583899998, - "lat": 50.9152735, - "lon": 0.1219304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583899999, - "lat": 50.8968085, - "lon": 0.0713393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900001, - "lat": 50.8922813, - "lon": 0.0603295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 567D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900003, - "lat": 50.8734585, - "lon": 0.0675814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN8 563D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900005, - "lat": 50.8948752, - "lon": 0.0540426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 586D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900006, - "lat": 50.8929493, - "lon": 0.1334886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900007, - "lat": 50.8895850, - "lon": 0.0547650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 584D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900008, - "lat": 50.9083902, - "lon": 0.1285177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4583900010, - "lat": 50.8458993, - "lon": 0.0868512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4584193768, - "lat": 51.9913442, - "lon": -4.9761835, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4584196408, - "lat": 51.9923301, - "lon": -4.9791358, - "tags": { - "amenity": "post_box", - "mapillary": "1675766585949348", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4584197328, - "lat": 51.9684209, - "lon": -4.9947049, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4584237254, - "lat": 53.2346250, - "lon": -2.5174738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW9 106D" - } -}, -{ - "type": "node", - "id": 4584264025, - "lat": 53.6974937, - "lon": -2.2855957, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4584379960, - "lat": 53.2323932, - "lon": -2.5150476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW9 140D" - } -}, -{ - "type": "node", - "id": 4584680032, - "lat": 50.8329134, - "lon": -0.8560387, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585159850, - "lat": 50.9067415, - "lon": 0.0990575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585159851, - "lat": 50.8828064, - "lon": 0.0800869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN8 581D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585159852, - "lat": 50.8909809, - "lon": 0.0784122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 565", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585159853, - "lat": 50.8983630, - "lon": 0.1248997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN8 547", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4585159854, - "lat": 50.9035258, - "lon": 0.0738879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585159855, - "lat": 50.8958387, - "lon": 0.1079693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 548", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585176401, - "lat": 51.6343385, - "lon": -3.0164006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4585331648, - "lat": 56.7735792, - "lon": -2.4191348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4585354945, - "lat": 51.7698529, - "lon": -0.2979752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585519873, - "lat": 52.2439012, - "lon": -0.6313558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4585529158, - "lat": 52.2539264, - "lon": -0.6217568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN29 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4585534177, - "lat": 52.2485265, - "lon": -0.6303486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN29 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4585592076, - "lat": 53.7185285, - "lon": -2.6523715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 09:00", - "opening_hours": "Mo-Fr 09:15-17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR5 520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585592077, - "lat": 53.7185817, - "lon": -2.6522939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR5 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4585712971, - "lat": 50.6446394, - "lon": -4.1072762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4585881773, - "lat": 51.7315177, - "lon": -4.6625928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA67 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 4585881774, - "lat": 51.9943263, - "lon": -3.7962696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA20 147", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4585921223, - "lat": 51.1282664, - "lon": -3.0050624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TA6 814", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4586515971, - "lat": 52.2012856, - "lon": -0.6092510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "MK43 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2015-10-17" - } -}, -{ - "type": "node", - "id": 4586541990, - "lat": 51.4344257, - "lon": -2.1978784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-08-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "212633660614396", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN13 43D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4586547990, - "lat": 51.4335255, - "lon": -2.1926749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "843093482957038", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN13 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-09-03" - } -}, -{ - "type": "node", - "id": 4586619189, - "lat": 54.3438436, - "lon": -1.5866278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4586778050, - "lat": 57.0603356, - "lon": -3.0683876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 476", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4587181901, - "lat": 54.9687004, - "lon": -1.6444030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE4 484" - } -}, -{ - "type": "node", - "id": 4587344305, - "lat": 54.9687936, - "lon": -1.6404171, - "tags": { - "amenity": "post_box", - "check_date": "2021-01-05", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE4 67" - } -}, -{ - "type": "node", - "id": 4587523281, - "lat": 53.7696336, - "lon": -2.7049578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4587915115, - "lat": 53.7789993, - "lon": -2.4776685, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4588278483, - "lat": 53.4423232, - "lon": -2.1900523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4588432696, - "lat": 54.0277953, - "lon": -1.9260891, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BD23 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4589284576, - "lat": 54.9729088, - "lon": -1.6377054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4589518777, - "lat": 51.5245854, - "lon": -0.1899204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 10", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4589518859, - "lat": 51.5231028, - "lon": -0.1944441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 7", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 4589857498, - "lat": 52.6392564, - "lon": -1.1312107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LE1 76", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4590164206, - "lat": 52.6365741, - "lon": -1.1277272, - "tags": { - "amenity": "post_box", - "ref": "LE1 69" - } -}, -{ - "type": "node", - "id": 4590164212, - "lat": 52.6381201, - "lon": -1.1307311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "note": "currently sealed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4590543554, - "lat": 52.6341046, - "lon": -1.1042366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4590623743, - "lat": 54.9756760, - "lon": -1.6543798, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "ref": "NE4 21;NE4 1021" - } -}, -{ - "type": "node", - "id": 4590829085, - "lat": 54.9718500, - "lon": -1.6441214, - "tags": { - "amenity": "post_box", - "ref": "NE4 72" - } -}, -{ - "type": "node", - "id": 4590843725, - "lat": 54.9726700, - "lon": -1.6229579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate:date": "2017-09-15", - "collection_times": "Mo-Fr 17:45, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE4 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4592388993, - "lat": 54.9740210, - "lon": -1.6328028, - "tags": { - "amenity": "post_box", - "ref": "NE4 15" - } -}, -{ - "type": "node", - "id": 4592661701, - "lat": 51.0471408, - "lon": -3.1725451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 535" - } -}, -{ - "type": "node", - "id": 4592770291, - "lat": 51.5282783, - "lon": -0.2012829, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-24", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 25", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4593543249, - "lat": 53.5308389, - "lon": -2.6703483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 101", - "royal_cypher": "EIIR", - "survey:date": "2022-11-18", - "wikimedia_commons": "File:The Railway pub - geograph.org.uk - 4015579.jpg" - } -}, -{ - "type": "node", - "id": 4593552281, - "lat": 53.5203802, - "lon": -2.6775328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 194", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4593572957, - "lat": 53.5257724, - "lon": -2.6761902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN3 48", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4593580325, - "lat": 53.5124122, - "lon": -2.6890301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 55", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4594118729, - "lat": 53.4439130, - "lon": -2.2784865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "ref may be wrong", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M21 646", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4594243615, - "lat": 51.0222040, - "lon": -3.0629370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "name": "Heron Gate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 714D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4594554482, - "lat": 52.1469347, - "lon": -1.4014000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "CV47 99", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4594650180, - "lat": 53.4058416, - "lon": -2.9555517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type A post box L7 508 by McDowell, Stevens & Co at Holland Place, Edge Hill, Liverpool.", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L7 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Holland Place.jpg" - } -}, -{ - "type": "node", - "id": 4595004225, - "lat": 52.3164663, - "lon": -1.9058634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4595058684, - "lat": 53.5287487, - "lon": -1.6335377, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4595177106, - "lat": 52.3057953, - "lon": -1.9309749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4595177108, - "lat": 52.3070411, - "lon": -1.9348857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B98 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4595177110, - "lat": 52.3062514, - "lon": -1.9396094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "B98 9028", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4595297090, - "lat": 52.2877587, - "lon": -1.9150255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4595384607, - "lat": 52.2895519, - "lon": -1.7834289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B95 1097D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4596265198, - "lat": 53.2462420, - "lon": -0.5044335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN2 564", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4596315831, - "lat": 53.2017718, - "lon": -0.5963723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LN6 610", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4596586972, - "lat": 51.4243913, - "lon": -1.8644453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4597216905, - "lat": 51.2767028, - "lon": -1.5538403, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP11 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4597216918, - "lat": 51.2451044, - "lon": -1.5405346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4597216924, - "lat": 51.2402475, - "lon": -1.5443058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4597232306, - "lat": 51.3190371, - "lon": -1.4982665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4598017978, - "lat": 54.9776869, - "lon": -1.6302836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NE4 379", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4598500848, - "lat": 53.2228253, - "lon": -4.1356411, - "tags": { - "addr:housename": "Bangor Station.", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Post box on Bangor station, platform 1.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4598594263, - "lat": 53.5610001, - "lon": -2.9272202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4598977407, - "lat": 51.1825679, - "lon": -2.1067867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA12 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4598977408, - "lat": 51.3918755, - "lon": -2.3247483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BA2 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4598977415, - "lat": 51.1694067, - "lon": -2.0823843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "BA12 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4598977419, - "lat": 51.0837447, - "lon": -1.8545694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SP2 297", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4598977420, - "lat": 51.0743963, - "lon": -1.8177542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP2 304", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4598977421, - "lat": 51.0733793, - "lon": -1.8122410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP2 82D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4598977422, - "lat": 51.0725123, - "lon": -1.8062399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP2 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4598996314, - "lat": 51.3491258, - "lon": -1.3561720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4599359426, - "lat": 51.4330790, - "lon": -0.9057539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "name": "Postbox", - "note": "collection time due to change on 13 Feb 3017 to mo-fr 09:00 sa:. 07:00", - "operator": "Royal Mail", - "ref": "RG6 623", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4599478323, - "lat": 54.9793336, - "lon": -1.6405620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE4 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4599692585, - "lat": 54.9760194, - "lon": -1.6444586, - "tags": { - "amenity": "post_box", - "ref": "NE4 208" - } -}, -{ - "type": "node", - "id": 4599902900, - "lat": 51.3579056, - "lon": -2.3431588, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4599903939, - "lat": 51.3566513, - "lon": -2.3273645, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4600219809, - "lat": 50.9077064, - "lon": -1.3566878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO19 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4600222878, - "lat": 50.9150536, - "lon": -1.3612264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "SO18 732 is for stamped mail; SO18 733 is for franked (metered) mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "SO18 732;SO18 733", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4601219206, - "lat": 50.8202152, - "lon": -0.4024109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1663D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4601219210, - "lat": 50.8193082, - "lon": -0.3965931, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1664D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4602922828, - "lat": 56.0272097, - "lon": -3.7860578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 25D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4602922829, - "lat": 56.0253351, - "lon": -3.8121580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 126D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4602922830, - "lat": 56.0275753, - "lon": -3.8047976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 219D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4602922835, - "lat": 56.0312830, - "lon": -3.8005134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 177D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4602922836, - "lat": 56.0261162, - "lon": -3.7998315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK5 160D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4602922841, - "lat": 56.0241975, - "lon": -3.7927783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 109D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4604865692, - "lat": 53.7831975, - "lon": -2.7193982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR2 009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4604865702, - "lat": 53.7571535, - "lon": -2.7042196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "mapillary": "982746000190288", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PR1 504;PR1 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4605302504, - "lat": 51.4540557, - "lon": -0.8996583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Postbox", - "ref": "RG5 66D" - } -}, -{ - "type": "node", - "id": 4605393790, - "lat": 53.7632400, - "lon": -2.6760662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR1 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4605619863, - "lat": 53.7743606, - "lon": -2.6826663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR1 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4605619866, - "lat": 53.7783204, - "lon": -2.6987150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR2 112", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4605619869, - "lat": 53.7932914, - "lon": -2.7141648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PR2 527;PR2 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4605619874, - "lat": 53.7815975, - "lon": -2.6572072, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4605619880, - "lat": 53.7763994, - "lon": -2.6611973, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4605619893, - "lat": 53.7494286, - "lon": -2.7325515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR1 211", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4605619897, - "lat": 53.7370374, - "lon": -2.7217110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4605904662, - "lat": 51.3718302, - "lon": -2.5502378, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4605904663, - "lat": 51.3525297, - "lon": -2.5396611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "165969462759125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-05-28" - } -}, -{ - "type": "node", - "id": 4605904664, - "lat": 51.2983981, - "lon": -2.5336615, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4605904665, - "lat": 51.2012280, - "lon": -2.5394010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4605904666, - "lat": 51.1876402, - "lon": -2.5357804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4605904667, - "lat": 51.1658440, - "lon": -2.5390970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4605904670, - "lat": 50.9727618, - "lon": -2.6707727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4605904673, - "lat": 50.9355252, - "lon": -2.6389727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4605904674, - "lat": 50.9327950, - "lon": -2.6431330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4605904801, - "lat": 50.7475150, - "lon": -2.5116010, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref:GB:uprn": "10015305464" - } -}, -{ - "type": "node", - "id": 4605904802, - "lat": 50.7399312, - "lon": -2.4847053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 144D", - "ref:GB:uprn": "10015477928", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-26" - } -}, -{ - "type": "node", - "id": 4605904807, - "lat": 50.6439649, - "lon": -2.4444348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "DT3 153", - "ref:GB:uprn": "10015381793", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4605904808, - "lat": 50.6515621, - "lon": -2.4176132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DT3 38D", - "ref:GB:uprn": "10015285533", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4607433254, - "lat": 52.3484150, - "lon": -0.4016550, - "tags": { - "amenity": "post_box", - "ref": "PE28 218" - } -}, -{ - "type": "node", - "id": 4607599857, - "lat": 53.4786161, - "lon": -2.2406935, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-19", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "M1 411", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4607609437, - "lat": 53.4838466, - "lon": -2.2339638, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M4 418", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4607617072, - "lat": 53.4859438, - "lon": -2.2354739, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M4 200", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4607770184, - "lat": 52.8120362, - "lon": -0.8390491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE14 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4608394211, - "lat": 53.8456377, - "lon": -2.2050298, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BB9 175D", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4608500074, - "lat": 51.5096548, - "lon": 0.4249645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SS17 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-01-14" - } -}, -{ - "type": "node", - "id": 4608500075, - "lat": 51.5160964, - "lon": 0.4264431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS17 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-01-14" - } -}, -{ - "type": "node", - "id": 4608544275, - "lat": 53.8599068, - "lon": -2.2727928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BB12 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4608835685, - "lat": 53.4457492, - "lon": -2.1741039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 584", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4609386281, - "lat": 52.8151692, - "lon": -0.8529009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "fixme": "position approx", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE14 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4610105706, - "lat": 53.5862072, - "lon": -2.9814595, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4610351828, - "lat": 56.1020686, - "lon": -4.6404831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4610490773, - "lat": 51.7477355, - "lon": -2.2155425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-15" - } -}, -{ - "type": "node", - "id": 4610720148, - "lat": 51.7444502, - "lon": -2.2138635, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-24", - "check_date:collection_times": "2022-08-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4612701135, - "lat": 56.4565479, - "lon": -3.0140259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 160D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4612701136, - "lat": 56.4565475, - "lon": -3.0061608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD2 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4613032181, - "lat": 53.2306096, - "lon": -0.5402212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LN2 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4613052284, - "lat": 53.2297294, - "lon": -0.5387101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LN2 139", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4613057917, - "lat": 53.3399225, - "lon": -1.9398502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4613103425, - "lat": 51.0873080, - "lon": -4.0770719, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4613103454, - "lat": 51.0802520, - "lon": -4.0579960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX31 115;EX31 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 4614505031, - "lat": 54.0758059, - "lon": -2.0037943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4614531271, - "lat": 54.2269128, - "lon": -1.9288319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "post_box:type": "wall", - "ref": "DL8 112", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4614531272, - "lat": 54.2155958, - "lon": -1.9498706, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4614602103, - "lat": 51.5083870, - "lon": -3.6078701, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4614662428, - "lat": 51.8717811, - "lon": -1.9912722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL54 94D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4615831945, - "lat": 50.9966029, - "lon": -0.0277909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4616369466, - "lat": 54.9814805, - "lon": -1.5375892, - "tags": { - "amenity": "post_box", - "ref": "NE6 167" - } -}, -{ - "type": "node", - "id": 4617406143, - "lat": 53.7356739, - "lon": -1.6108003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4617406144, - "lat": 53.7370295, - "lon": -1.6130842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LS27 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4618091125, - "lat": 54.9682221, - "lon": -1.5435754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE6 454" - } -}, -{ - "type": "node", - "id": 4618160508, - "lat": 54.9738678, - "lon": -1.5894349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE6 25" - } -}, -{ - "type": "node", - "id": 4618261971, - "lat": 50.6425784, - "lon": -2.4281269, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "DT3 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4619200633, - "lat": 51.5182035, - "lon": -0.1931809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "The original collection times, which are still partially visible, have been updated via an official sticker. The ref has not been updated to include the D suffix.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 70;W2 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4619200634, - "lat": 51.5160226, - "lon": -0.1931254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 32D;W2 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4620506213, - "lat": 54.9700060, - "lon": -1.5806490, - "tags": { - "amenity": "post_box", - "ref": "NE6 130" - } -}, -{ - "type": "node", - "id": 4620914481, - "lat": 53.0455543, - "lon": -3.7971736, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4620914551, - "lat": 53.0591805, - "lon": -3.7818400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL24 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4621098722, - "lat": 53.8521679, - "lon": -2.7377248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621189036, - "lat": 52.6318010, - "lon": -1.1333705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LE1 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4621189037, - "lat": 52.6334534, - "lon": -1.1337899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 125", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4621223296, - "lat": 52.6372474, - "lon": -1.1322116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4621223304, - "lat": 52.6365594, - "lon": -1.1329397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE1 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4621464188, - "lat": 53.3816688, - "lon": -2.2483596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M22 733", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4621836663, - "lat": 53.4133214, - "lon": -2.2143079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 79D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4621912992, - "lat": 54.0911421, - "lon": -1.6930991, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4621921251, - "lat": 54.0811172, - "lon": -1.6022821, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 128", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4621933680, - "lat": 50.9387188, - "lon": -0.0219338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621933681, - "lat": 50.8987834, - "lon": 0.0399965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN8 553", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4621933682, - "lat": 50.9326483, - "lon": 0.0252642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN8 490D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4621933683, - "lat": 50.9575266, - "lon": -0.0189872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621933684, - "lat": 50.9227400, - "lon": 0.0159592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN8 487D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4621933685, - "lat": 50.9170131, - "lon": -0.0114455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621933687, - "lat": 50.9452627, - "lon": -0.0214191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN8 514", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4621933688, - "lat": 50.9051288, - "lon": 0.0374811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN8 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621934289, - "lat": 50.9352876, - "lon": 0.0064254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621934290, - "lat": 50.9723091, - "lon": -0.0394943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN8 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621934291, - "lat": 50.9242552, - "lon": 0.0199186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN8 488", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4621969515, - "lat": 54.0840972, - "lon": -1.7110349, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "HG3 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4621972047, - "lat": 54.0184561, - "lon": -1.6202288, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 134", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4621998835, - "lat": 54.0232354, - "lon": -1.7225658, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 130", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4622005468, - "lat": 54.0733529, - "lon": -1.8237843, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG3 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4622052623, - "lat": 54.1406389, - "lon": -1.5239160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HG4 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4622095174, - "lat": 52.6806360, - "lon": 1.1951434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR8 818", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4622190223, - "lat": 51.5039996, - "lon": -3.5838873, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4622353283, - "lat": 51.4463919, - "lon": -2.1087612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4622398552, - "lat": 57.6141933, - "lon": -3.1006624, - "tags": { - "amenity": "post_box", - "ref": "IV32 24" - } -}, -{ - "type": "node", - "id": 4622440631, - "lat": 50.6509570, - "lon": -4.2384526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "EX20 216D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4622460094, - "lat": 57.6103187, - "lon": -3.0944117, - "tags": { - "amenity": "post_box", - "ref": "IV32 132" - } -}, -{ - "type": "node", - "id": 4622461469, - "lat": 52.9503019, - "lon": 0.9381804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "NR23 2321", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4622484221, - "lat": 57.6111304, - "lon": -3.1000633, - "tags": { - "amenity": "post_box", - "ref": "IV32 99" - } -}, -{ - "type": "node", - "id": 4622508146, - "lat": 50.3815767, - "lon": -3.5994656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ6 196D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4622527833, - "lat": 54.7399851, - "lon": -3.0880504, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CA7 319", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4622656740, - "lat": 53.8668311, - "lon": -2.9209747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PR3 346", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4622684218, - "lat": 54.5132581, - "lon": -2.0095755, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DL12 273D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4623219657, - "lat": 54.6394286, - "lon": -1.6575217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "303145408031278", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4623579764, - "lat": 56.0618840, - "lon": -5.3389077, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA31 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4623603275, - "lat": 56.0375090, - "lon": -5.4368251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PA31 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4623634935, - "lat": 56.1956599, - "lon": -5.5068891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA31 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4623662502, - "lat": 56.0399714, - "lon": -5.4365429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA31 11", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4623791839, - "lat": 51.1258301, - "lon": -4.1551136, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4623791865, - "lat": 51.1073320, - "lon": -4.1606600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "EX33 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4623791883, - "lat": 51.1045740, - "lon": -4.1619460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "wall", - "ref": "EX33 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4623796892, - "lat": 51.0929860, - "lon": -4.1362700, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4623879956, - "lat": 51.3965513, - "lon": -0.4471122, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW17 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4623884561, - "lat": 51.3947997, - "lon": -0.4488790, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "This mailbox is a double pillar. Left TW17 307; Right TW17 3071", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TW17 307;TW17 3071", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4624166974, - "lat": 52.8055790, - "lon": -0.9096180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "obscured", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4624166988, - "lat": 52.8068798, - "lon": -0.9171704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE14 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4624277757, - "lat": 52.8011578, - "lon": -0.8876096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE14 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4624372348, - "lat": 51.5030201, - "lon": -3.5792096, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-16", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CF31 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4625261075, - "lat": 54.9716723, - "lon": -1.5863339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "NE6 117" - } -}, -{ - "type": "node", - "id": 4625262014, - "lat": 54.9712923, - "lon": -1.5692177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4625295589, - "lat": 51.4425183, - "lon": -0.0569911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4625342647, - "lat": 51.3315051, - "lon": -0.1245512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 146", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4625394644, - "lat": 51.4035243, - "lon": -0.1004082, - "tags": { - "amenity": "post_box", - "note": "post box was moved from by old post office next to school in 2016", - "post_box:type": "pillar", - "ref": "CR7 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4625411431, - "lat": 54.9720983, - "lon": -1.5773472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 115" - } -}, -{ - "type": "node", - "id": 4625412975, - "lat": 54.9759007, - "lon": -1.5785733, - "tags": { - "amenity": "post_box", - "ref": "NE6 109" - } -}, -{ - "type": "node", - "id": 4625457154, - "lat": 50.6247165, - "lon": -3.4084961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "EX8 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4625494614, - "lat": 52.0512798, - "lon": -4.3047498, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SA44 297", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4625497702, - "lat": 54.9666553, - "lon": -1.5651919, - "tags": { - "amenity": "post_box", - "ref": "NE6 75" - } -}, -{ - "type": "node", - "id": 4625534742, - "lat": 52.9294069, - "lon": -3.6768071, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL23 88", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4625555893, - "lat": 51.8648457, - "lon": 0.1345547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref:signed": "no", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4625625289, - "lat": 53.0133682, - "lon": -3.8386732, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL24 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4625628713, - "lat": 54.9795595, - "lon": -1.5664535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE6 704" - } -}, -{ - "type": "node", - "id": 4625633357, - "lat": 53.1259182, - "lon": -4.1101530, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL55 88", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4625659703, - "lat": 52.9679140, - "lon": -4.2595386, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL51 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4625697221, - "lat": 54.9739133, - "lon": -1.5640179, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE6 191" - } -}, -{ - "type": "node", - "id": 4625701546, - "lat": 52.8262045, - "lon": -3.1866710, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY10 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4625802006, - "lat": 53.5376842, - "lon": -2.9416533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4625807980, - "lat": 52.9800151, - "lon": -3.3141961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL21 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4625928030, - "lat": 53.3187082, - "lon": -3.8262447, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "LL30 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4625982624, - "lat": 52.4963883, - "lon": -2.9562318, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY9 329", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4626021011, - "lat": 52.4827003, - "lon": -2.9260274, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "SY7 406", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4626157172, - "lat": 52.6744436, - "lon": -2.8900724, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY5 402", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4626326630, - "lat": 52.0627529, - "lon": -1.3218819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "OX16 1024", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4626375370, - "lat": 51.5885632, - "lon": -1.3567409, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "OX12 1173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4626841230, - "lat": 53.4329881, - "lon": -2.1739048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 287", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4626841232, - "lat": 53.4303031, - "lon": -2.1714466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4626853042, - "lat": 53.4299767, - "lon": -2.1635083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4627020420, - "lat": 53.2740147, - "lon": -2.7690538, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WA6 176", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4627042998, - "lat": 52.5885618, - "lon": -2.1363207, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV1 165", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4628136162, - "lat": 54.9689916, - "lon": -1.5502528, - "tags": { - "amenity": "post_box", - "ref": "NE6 231" - } -}, -{ - "type": "node", - "id": 4628184762, - "lat": 51.2606925, - "lon": -0.5884178, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "The left aperture (GU2 295) is for stamped mail; the right aperture (GU2 2951) is for franked mail only.", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GU2 295;GU2 2951", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4628401929, - "lat": 54.9740030, - "lon": -1.5452136, - "tags": { - "amenity": "post_box", - "ref": "NE6 194" - } -}, -{ - "type": "node", - "id": 4628588885, - "lat": 52.8736063, - "lon": 0.6603091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE31 195" - } -}, -{ - "type": "node", - "id": 4628740474, - "lat": 51.3624776, - "lon": -0.6854748, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4628949534, - "lat": 53.6082924, - "lon": -2.9677194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:30, Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4628949554, - "lat": 53.5953677, - "lon": -2.9428187, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4629301262, - "lat": 54.9770063, - "lon": -1.5429367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE6 270" - } -}, -{ - "type": "node", - "id": 4629301275, - "lat": 54.9763731, - "lon": -1.5480700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 164" - } -}, -{ - "type": "node", - "id": 4629431190, - "lat": 54.9751649, - "lon": -1.5542692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 203" - } -}, -{ - "type": "node", - "id": 4629431230, - "lat": 54.9761241, - "lon": -1.5601283, - "tags": { - "amenity": "post_box", - "ref": "NE6 107" - } -}, -{ - "type": "node", - "id": 4629431317, - "lat": 54.9806381, - "lon": -1.5575488, - "tags": { - "amenity": "post_box", - "ref": "NE6 227" - } -}, -{ - "type": "node", - "id": 4629494330, - "lat": 54.9788242, - "lon": -1.5494328, - "tags": { - "amenity": "post_box", - "ref": "NE6 257" - } -}, -{ - "type": "node", - "id": 4630385868, - "lat": 53.7252233, - "lon": -2.7963736, - "tags": { - "amenity": "post_box", - "ref": "PR4 369" - } -}, -{ - "type": "node", - "id": 4630491053, - "lat": 53.2107382, - "lon": -4.2538551, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4631560514, - "lat": 51.5772990, - "lon": -0.7031378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4631659962, - "lat": 52.5198810, - "lon": -1.5589150, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4631742909, - "lat": 54.9844517, - "lon": -1.5426531, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE6 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4631769114, - "lat": 54.9828528, - "lon": -1.5520149, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4631856519, - "lat": 54.9799002, - "lon": -1.5715702, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "ref": "NE6 424" - } -}, -{ - "type": "node", - "id": 4631926358, - "lat": 54.9804357, - "lon": -1.5750108, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 128" - } -}, -{ - "type": "node", - "id": 4632157099, - "lat": 54.9761220, - "lon": -1.5870367, - "tags": { - "amenity": "post_box", - "ref": "NE6 721" - } -}, -{ - "type": "node", - "id": 4633510138, - "lat": 53.0321707, - "lon": -1.9536038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "pillar", - "ref": "ST10 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4633563537, - "lat": 51.3796507, - "lon": -2.3426076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BA2 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4633577189, - "lat": 54.1270548, - "lon": -1.5574135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4633577192, - "lat": 54.1094595, - "lon": -1.5872047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4633639563, - "lat": 54.1353688, - "lon": -1.5202951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/1463719", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4633733185, - "lat": 54.1202429, - "lon": -1.5946826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4633771845, - "lat": 54.1349676, - "lon": -1.5249343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4633782827, - "lat": 54.1335259, - "lon": -1.5262218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4633799313, - "lat": 53.7762122, - "lon": -0.6246063, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU15 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4634408977, - "lat": 54.9770786, - "lon": -1.5862461, - "tags": { - "amenity": "post_box", - "ref": "NE6 811" - } -}, -{ - "type": "node", - "id": 4634604584, - "lat": 52.1876128, - "lon": 0.6160562, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP29 2018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4634651957, - "lat": 52.1717811, - "lon": 0.6369296, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP29 2027" - } -}, -{ - "type": "node", - "id": 4634746098, - "lat": 54.9791938, - "lon": -1.5961303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4634749816, - "lat": 52.1473417, - "lon": 0.6275800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP29 2139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4634768389, - "lat": 50.8257960, - "lon": -1.2136269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PO14 4401;PO14 4402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4634786536, - "lat": 54.9802938, - "lon": -1.5909728, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4634826659, - "lat": 54.9800792, - "lon": -1.5864560, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE6 97", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4634882911, - "lat": 54.2466423, - "lon": -6.4925329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4635119587, - "lat": 50.4405667, - "lon": -4.4118302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL14 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4635579232, - "lat": 55.6657339, - "lon": -2.4713048, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "phone_box", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4635962106, - "lat": 51.8768776, - "lon": -2.0719666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-04-27", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4635962120, - "lat": 51.8847373, - "lon": -2.0687801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL53 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-01-26" - } -}, -{ - "type": "node", - "id": 4635991818, - "lat": 51.2432085, - "lon": -1.1183848, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4636128521, - "lat": 53.5514506, - "lon": -2.2951678, - "tags": { - "amenity": "post_box", - "ref": "M45 121D" - } -}, -{ - "type": "node", - "id": 4636410474, - "lat": 53.4658282, - "lon": -2.2828176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "M5 137", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4636417512, - "lat": 53.4660726, - "lon": -2.2817474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 232" - } -}, -{ - "type": "node", - "id": 4636433908, - "lat": 50.4052176, - "lon": -3.8546911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ10 34D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4636985945, - "lat": 52.5725226, - "lon": 1.7012780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR31 3135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4637136483, - "lat": 54.5962495, - "lon": -1.3424199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4637257156, - "lat": 54.9837194, - "lon": -1.5816752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "post_box:priority": "yes", - "post_box:type": "pillar", - "ref": "NE6 160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "sample_collection": "covid19" - } -}, -{ - "type": "node", - "id": 4637257318, - "lat": 54.9855146, - "lon": -1.5821661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 134" - } -}, -{ - "type": "node", - "id": 4637317518, - "lat": 54.9825412, - "lon": -1.5766243, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE6 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4637795815, - "lat": 54.9887240, - "lon": -1.5781159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 106" - } -}, -{ - "type": "node", - "id": 4638014078, - "lat": 57.4811198, - "lon": -3.2827749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 95", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4640821254, - "lat": 51.4851933, - "lon": -2.7684922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS20 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4641699284, - "lat": 50.9829233, - "lon": -3.2043787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "TA21 777", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4643994720, - "lat": 54.9703178, - "lon": -1.5625070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 256", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4644012923, - "lat": 54.9914897, - "lon": -1.5805841, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE6 462" - } -}, -{ - "type": "node", - "id": 4644012964, - "lat": 54.9900091, - "lon": -1.5849756, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "NE6 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-08-15" - } -}, -{ - "type": "node", - "id": 4644216645, - "lat": 54.9866655, - "lon": -1.5702753, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE6 361" - } -}, -{ - "type": "node", - "id": 4644233827, - "lat": 54.9927172, - "lon": -1.5693899, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE6 271" - } -}, -{ - "type": "node", - "id": 4644236888, - "lat": 54.9903471, - "lon": -1.5710507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 275", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4644318198, - "lat": 54.9937769, - "lon": -1.5652244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "parcel": "yes", - "post_box:type": "meter", - "ref": "NE6 703", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4644354587, - "lat": 54.9861028, - "lon": -1.5582416, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4644356191, - "lat": 54.9871655, - "lon": -1.5496255, - "tags": { - "amenity": "post_box", - "ref": "NE6 114" - } -}, -{ - "type": "node", - "id": 4644356194, - "lat": 54.9890697, - "lon": -1.5456266, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4644356195, - "lat": 54.9898479, - "lon": -1.5497131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE6 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4646293861, - "lat": 51.3482169, - "lon": -1.3735417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4646610393, - "lat": 53.1130411, - "lon": -4.2098716, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4647278722, - "lat": 54.5983345, - "lon": -5.6858230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4647383106, - "lat": 54.9924317, - "lon": -1.5122258, - "tags": { - "amenity": "post_box", - "ref": "NE28 702" - } -}, -{ - "type": "node", - "id": 4654426416, - "lat": 51.1057113, - "lon": -0.0233883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4655591346, - "lat": 54.9868545, - "lon": -1.5383543, - "tags": { - "amenity": "post_box", - "ref": "NE28 8" - } -}, -{ - "type": "node", - "id": 4655851515, - "lat": 54.9914996, - "lon": -1.4934672, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE28 704", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4655851516, - "lat": 54.9917185, - "lon": -1.4909927, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NE28 236", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4656418869, - "lat": 51.7822097, - "lon": -1.3741247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OX29 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4656475922, - "lat": 54.4221434, - "lon": -6.4446303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4656696236, - "lat": 54.9919911, - "lon": -1.5271306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4656790096, - "lat": 54.9907858, - "lon": -1.5354091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE28 581;NE28 1581", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4657194684, - "lat": 57.6389073, - "lon": -3.3033869, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IV30 10" - } -}, -{ - "type": "node", - "id": 4659926385, - "lat": 54.4345253, - "lon": -6.4653925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4659930114, - "lat": 54.4291234, - "lon": -6.4481180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4660765762, - "lat": 51.4472415, - "lon": 0.2186052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15, Sa 11:30", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA1 203" - } -}, -{ - "type": "node", - "id": 4661365327, - "lat": 50.9327891, - "lon": -1.3526751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO18 751", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4661392031, - "lat": 51.4382711, - "lon": -1.2728907, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG18 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4661614755, - "lat": 52.6032494, - "lon": -0.9747749, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LE7 86", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4661658686, - "lat": 51.2186438, - "lon": -1.3465883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG28 109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4663017902, - "lat": 51.2856259, - "lon": -2.4824307, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4663412521, - "lat": 51.4869916, - "lon": -3.2676579, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4663412524, - "lat": 51.4855421, - "lon": -3.2691168, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF5 447D" - } -}, -{ - "type": "node", - "id": 4663510011, - "lat": 51.4121443, - "lon": 0.0745787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "BR7 114", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4663617800, - "lat": 56.2985839, - "lon": -2.6591448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "KY16 356", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4663624816, - "lat": 53.7700709, - "lon": -2.6850055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4663624817, - "lat": 53.7631072, - "lon": -2.6905198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4663649728, - "lat": 52.1591618, - "lon": -2.7227382, - "tags": { - "amenity": "post_box", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4663746050, - "lat": 51.4958887, - "lon": -0.2016934, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W8 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27083281" - } -}, -{ - "type": "node", - "id": 4664110986, - "lat": 52.2207996, - "lon": -0.8016373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4664110987, - "lat": 52.2258884, - "lon": -0.8024939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4664110988, - "lat": 52.2384112, - "lon": -0.7967384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN7 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4664111389, - "lat": 52.2378149, - "lon": -0.7579475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4664111390, - "lat": 52.2013113, - "lon": -0.7352330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN7 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4664250618, - "lat": 53.1616837, - "lon": 0.2046148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE24 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4664265634, - "lat": 53.1315993, - "lon": 0.3386689, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE25 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4664322535, - "lat": 52.1876279, - "lon": -1.4161717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "note": "note on postbox says collection times will change from13/06/22 to Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV47 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4664377336, - "lat": 52.1715023, - "lon": -1.4260592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV47 226D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4664377337, - "lat": 52.1694047, - "lon": -1.4275766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV47 200", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4664377353, - "lat": 52.1652024, - "lon": -1.4314162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV47 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4664413980, - "lat": 52.1656773, - "lon": -1.4461393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV47 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4664413981, - "lat": 52.1647236, - "lon": -1.4440651, - "tags": { - "amenity": "post_box", - "note": "inside Army base", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4664748470, - "lat": 54.3194411, - "lon": -2.8236152, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "LA8 88", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4664756625, - "lat": 52.4290620, - "lon": -3.2441776, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LD7 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4664764139, - "lat": 50.6710529, - "lon": -2.3288443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT2 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4664971676, - "lat": 51.1475226, - "lon": -0.0034424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4664971682, - "lat": 51.1493183, - "lon": -0.0075683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4665367321, - "lat": 51.4127505, - "lon": -0.7255381, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4665579869, - "lat": 51.1445367, - "lon": -0.0184533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665579870, - "lat": 51.1382526, - "lon": -0.0195987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665579871, - "lat": 51.1335464, - "lon": -0.0175253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665579872, - "lat": 51.1360510, - "lon": -0.0159873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665595237, - "lat": 51.4190410, - "lon": -0.7269387, - "tags": { - "addr:city": "Bracknell", - "addr:housenumber": "110", - "addr:street": "Bullbrook Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG12 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665646414, - "lat": 53.8461567, - "lon": -1.8320130, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4665687656, - "lat": 53.1968570, - "lon": -2.8942673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "CH2 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665705389, - "lat": 53.4041440, - "lon": -2.2841704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4665774236, - "lat": 53.7570795, - "lon": -2.7041833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "description": "Priority Parcel Postbox", - "mapillary": "442949981543758", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR1 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4665899374, - "lat": 53.9233799, - "lon": -1.8333840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 821", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4666397367, - "lat": 53.4779169, - "lon": -2.2520338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "M3 364", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4666474651, - "lat": 50.8290886, - "lon": -0.3718902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1737D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4666540021, - "lat": 50.7208676, - "lon": -1.9777163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ornate surround", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH15 6D", - "ref:GB:uprn": "10015390552", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4667207718, - "lat": 53.1535604, - "lon": -0.6201476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN4 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4667572415, - "lat": 54.9917768, - "lon": -1.5312002, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 327" - } -}, -{ - "type": "node", - "id": 4668292830, - "lat": 54.9924071, - "lon": -1.4823944, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 124" - } -}, -{ - "type": "node", - "id": 4668370649, - "lat": 54.9985402, - "lon": -1.4903960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 417" - } -}, -{ - "type": "node", - "id": 4668428716, - "lat": 54.9938983, - "lon": -1.5367880, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE28 192", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4668428717, - "lat": 54.9912439, - "lon": -1.5409478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE28 7" - } -}, -{ - "type": "node", - "id": 4668428798, - "lat": 54.9947434, - "lon": -1.5250001, - "tags": { - "amenity": "post_box", - "ref": "NE28 193" - } -}, -{ - "type": "node", - "id": 4668469237, - "lat": 54.9963053, - "lon": -1.5463295, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE28 591" - } -}, -{ - "type": "node", - "id": 4668470557, - "lat": 54.9978621, - "lon": -1.5188509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 392" - } -}, -{ - "type": "node", - "id": 4668470576, - "lat": 54.9977104, - "lon": -1.5109304, - "tags": { - "amenity": "post_box", - "ref": "NE28 201" - } -}, -{ - "type": "node", - "id": 4668800139, - "lat": 51.9505788, - "lon": -2.3759331, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GL19 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4668906572, - "lat": 55.6032646, - "lon": -3.6003938, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "ML12 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4669118943, - "lat": 51.6570909, - "lon": -1.8678204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SN6 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4669441267, - "lat": 50.5226917, - "lon": -3.7454226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 237", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4669546354, - "lat": 51.6336481, - "lon": -2.0698163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SN16 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4670119098, - "lat": 53.2957023, - "lon": -3.0682515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:03; Sa 12:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "CH64 608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4670168754, - "lat": 50.7875811, - "lon": -3.6486723, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4670214702, - "lat": 51.5920553, - "lon": -2.1011545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SN16 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4670300089, - "lat": 51.5426585, - "lon": 0.6488253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS9 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4671343528, - "lat": 54.9965036, - "lon": -1.5023287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 22" - } -}, -{ - "type": "node", - "id": 4671475099, - "lat": 55.0072246, - "lon": -1.5007257, - "tags": { - "amenity": "post_box", - "ref": "NE28 701" - } -}, -{ - "type": "node", - "id": 4671475151, - "lat": 55.0052764, - "lon": -1.4956410, - "tags": { - "amenity": "post_box", - "ref": "NE28 199" - } -}, -{ - "type": "node", - "id": 4671475152, - "lat": 55.0027612, - "lon": -1.4956248, - "tags": { - "amenity": "post_box", - "ref": "NE28 586" - } -}, -{ - "type": "node", - "id": 4671588429, - "lat": 54.9973880, - "lon": -1.4972883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 587" - } -}, -{ - "type": "node", - "id": 4671676515, - "lat": 53.3645594, - "lon": -1.3023343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S26 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4672017965, - "lat": 51.2466144, - "lon": -2.4721235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA3 136" - } -}, -{ - "type": "node", - "id": 4672017966, - "lat": 51.2392158, - "lon": -2.4738045, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA3 188" - } -}, -{ - "type": "node", - "id": 4672755284, - "lat": 51.9082934, - "lon": -2.1590871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-07" - } -}, -{ - "type": "node", - "id": 4672768277, - "lat": 51.9259730, - "lon": -2.1554319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-07" - } -}, -{ - "type": "node", - "id": 4672768598, - "lat": 51.9221172, - "lon": -2.1680584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL51 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-02-07" - } -}, -{ - "type": "node", - "id": 4674398514, - "lat": 55.0150877, - "lon": -1.4981668, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4674446319, - "lat": 55.0111989, - "lon": -1.5092347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE28 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4674446326, - "lat": 55.0137879, - "lon": -1.5129682, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE28 632" - } -}, -{ - "type": "node", - "id": 4674446329, - "lat": 55.0160144, - "lon": -1.5110454, - "tags": { - "amenity": "post_box", - "ref": "NE28 703" - } -}, -{ - "type": "node", - "id": 4674543020, - "lat": 53.7249783, - "lon": -2.6973255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4674543021, - "lat": 53.7232828, - "lon": -2.7135850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4674543022, - "lat": 53.7592394, - "lon": -2.7373581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR2 487" - } -}, -{ - "type": "node", - "id": 4674548907, - "lat": 55.0164823, - "lon": -1.5196236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 681" - } -}, -{ - "type": "node", - "id": 4674548912, - "lat": 55.0092964, - "lon": -1.5139774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE28 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4674548945, - "lat": 55.0054350, - "lon": -1.5187655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 508" - } -}, -{ - "type": "node", - "id": 4674548950, - "lat": 55.0056560, - "lon": -1.5297166, - "tags": { - "amenity": "post_box", - "ref": "NE28 520" - } -}, -{ - "type": "node", - "id": 4674549011, - "lat": 55.0087185, - "lon": -1.5433457, - "tags": { - "amenity": "post_box", - "ref": "NE28 797" - } -}, -{ - "type": "node", - "id": 4674555897, - "lat": 55.0044020, - "lon": -1.5370237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE28 570" - } -}, -{ - "type": "node", - "id": 4674555908, - "lat": 55.0028351, - "lon": -1.5447391, - "tags": { - "amenity": "post_box", - "ref": "NE28 572" - } -}, -{ - "type": "node", - "id": 4674815893, - "lat": 55.0017835, - "lon": -1.5350878, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 617" - } -}, -{ - "type": "node", - "id": 4674916165, - "lat": 54.9991804, - "lon": -1.5521080, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4674916166, - "lat": 55.0080343, - "lon": -1.5523535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE28 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4674974182, - "lat": 55.5145280, - "lon": -1.6197594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE66 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4675010532, - "lat": 54.9926808, - "lon": -1.4524985, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE29 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4675010659, - "lat": 54.9956849, - "lon": -1.4647892, - "tags": { - "amenity": "post_box", - "ref": "NE29 101" - } -}, -{ - "type": "node", - "id": 4675032689, - "lat": 53.7030862, - "lon": -2.6946002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR25 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4675302477, - "lat": 50.8173666, - "lon": -3.1065960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4675632076, - "lat": 50.9894241, - "lon": -0.6751990, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4676372241, - "lat": 54.9989322, - "lon": -1.4581131, - "tags": { - "amenity": "post_box", - "ref": "NE29 71" - } -}, -{ - "type": "node", - "id": 4676405767, - "lat": 51.0847179, - "lon": -0.7043796, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-22", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 1D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4676405768, - "lat": 51.1240315, - "lon": -0.6734450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "GU8 76", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU8 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 4676472221, - "lat": 54.2342113, - "lon": -7.2612423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 12:15", - "drive_through": "no", - "name": "Corrany Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4676880475, - "lat": 51.8571560, - "lon": -2.2493973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GL1 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4676891655, - "lat": 51.8457513, - "lon": -2.2472519, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL1 75", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4676891660, - "lat": 51.8440790, - "lon": -2.2541192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL1 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4676985845, - "lat": 51.8848180, - "lon": -2.0747468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL53 140", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4676994584, - "lat": 50.7264641, - "lon": -3.5081736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "EX1 126", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677026583, - "lat": 50.2770906, - "lon": -3.8240739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677043806, - "lat": 50.7102702, - "lon": -2.4463251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT1 109", - "ref:GB:uprn": "10015441768", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677063514, - "lat": 53.9948319, - "lon": -1.5547077, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677414500, - "lat": 50.9249005, - "lon": -3.9002567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "post_box:type": "wall", - "ref": "EX37 102", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677424075, - "lat": 50.6166226, - "lon": -1.9575771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BH19 70", - "ref:GB:uprn": "10015320336", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677433588, - "lat": 56.1286904, - "lon": -3.1486821, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY1 43D" - } -}, -{ - "type": "node", - "id": 4677433820, - "lat": 56.1344919, - "lon": -3.1450839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 441", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4677433858, - "lat": 56.1318263, - "lon": -3.1447081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 109D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4677457608, - "lat": 51.0010918, - "lon": -0.8002505, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 101", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4677464249, - "lat": 51.0149477, - "lon": -0.8353445, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU31 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4677531501, - "lat": 53.4173359, - "lon": -2.9149227, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L13 714", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4677549035, - "lat": 53.3223832, - "lon": -3.1108807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VII Type A post box CH60 281 on Park West, Heswall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 281", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Park West, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 4678044055, - "lat": 51.5991958, - "lon": -0.3410786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HA3 159D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4678229623, - "lat": 51.5459772, - "lon": -0.1913582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NW6 66", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4678454633, - "lat": 56.1258464, - "lon": -3.1211483, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KY1 110" - } -}, -{ - "type": "node", - "id": 4678609492, - "lat": 52.8023138, - "lon": -0.3803689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE10 213", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4678609517, - "lat": 52.8025572, - "lon": -0.3772527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "PE10 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4678657244, - "lat": 53.0976271, - "lon": -4.0708666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4678787641, - "lat": 51.1439470, - "lon": -3.0942470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4678787663, - "lat": 51.2185537, - "lon": -3.6273497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4678787686, - "lat": 51.1755953, - "lon": -4.0444494, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4678788211, - "lat": 51.1390960, - "lon": -4.1518930, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4678788212, - "lat": 51.1734070, - "lon": -4.1907020, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4678788214, - "lat": 51.1739070, - "lon": -4.2107410, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4678939546, - "lat": 53.5734474, - "lon": -2.8805415, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "L39 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4678939547, - "lat": 53.5695619, - "lon": -2.8818243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "L39 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4680399991, - "lat": 52.5396555, - "lon": 1.4809397, - "tags": { - "amenity": "post_box", - "note": "looks like converted bag box", - "post_box:type": "lamp", - "ref": "NR14 1409", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4680523902, - "lat": 51.4202506, - "lon": 0.3076546, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4680751391, - "lat": 55.1695753, - "lon": -1.5704017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE63 670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4681122756, - "lat": 52.4763661, - "lon": -1.9588447, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 267", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4681142939, - "lat": 52.5805961, - "lon": -1.9850026, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WS1 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4681496057, - "lat": 54.6031996, - "lon": -5.6848648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4681575447, - "lat": 51.6048353, - "lon": -0.3815448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4681575450, - "lat": 51.5886861, - "lon": -0.3824069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4681757358, - "lat": 52.8275868, - "lon": 1.1358455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4683399496, - "lat": 54.9972554, - "lon": -1.5412912, - "tags": { - "amenity": "post_box", - "ref": "NE28 402" - } -}, -{ - "type": "node", - "id": 4683399497, - "lat": 54.9986221, - "lon": -1.5358494, - "tags": { - "amenity": "post_box", - "ref": "NE28 375" - } -}, -{ - "type": "node", - "id": 4683401697, - "lat": 54.9993674, - "lon": -1.4530695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4683505908, - "lat": 54.9989441, - "lon": -1.4744076, - "tags": { - "amenity": "post_box", - "ref": "NE29 47" - } -}, -{ - "type": "node", - "id": 4683506235, - "lat": 54.9991755, - "lon": -1.4628776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4683526885, - "lat": 53.7573441, - "lon": -2.7110174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4683526886, - "lat": 53.7573691, - "lon": -2.7110352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR1 501" - } -}, -{ - "type": "node", - "id": 4683761176, - "lat": 55.0067350, - "lon": -1.4481600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4684997568, - "lat": 55.0088091, - "lon": -1.4473394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE29 762;NE29 1762" - } -}, -{ - "type": "node", - "id": 4685064401, - "lat": 55.0092521, - "lon": -1.4486906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4685110103, - "lat": 55.0103929, - "lon": -1.4467627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE30 1001;NE30 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4685311970, - "lat": 52.5372960, - "lon": -0.3194645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE2 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4685339669, - "lat": 55.0077932, - "lon": -1.4535149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE29 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4688702097, - "lat": 50.3877234, - "lon": -4.9374211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR9 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 4688884405, - "lat": 54.3511522, - "lon": -6.6440811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4689108876, - "lat": 53.7155079, - "lon": -1.9382102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "HX2 204" - } -}, -{ - "type": "node", - "id": 4689538147, - "lat": 50.8540165, - "lon": -0.5529118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "note": "There is no royal cypher, postbox number or collection plate on the postbox plate.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1289" - } -}, -{ - "type": "node", - "id": 4689541500, - "lat": 50.8666112, - "lon": -0.5448971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4689547161, - "lat": 50.8559435, - "lon": -0.5779923, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN18 1344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4689560375, - "lat": 50.8558052, - "lon": -0.6921731, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4689903463, - "lat": 54.3256376, - "lon": -3.1310226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LA21 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4689921807, - "lat": 54.2818901, - "lon": -3.3751245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "LA19 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4689929227, - "lat": 54.2817328, - "lon": -3.3716924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "wall", - "ref": "LA19 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4689946896, - "lat": 54.3293965, - "lon": -3.3786859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "wall", - "ref": "LA19 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4689963359, - "lat": 54.3363340, - "lon": -2.7419508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "Parcel Postbox", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LA9 253P" - } -}, -{ - "type": "node", - "id": 4690112834, - "lat": 51.0046112, - "lon": -0.0782912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH16 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4690191720, - "lat": 51.5032090, - "lon": -0.2203269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "ref": "W12 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4690531219, - "lat": 50.3524508, - "lon": -3.5821599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 160D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4690577751, - "lat": 50.3471157, - "lon": -3.5952894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "220533042880237", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2018-06-02", - "survey:date": "2020-08-27" - } -}, -{ - "type": "node", - "id": 4690586268, - "lat": 50.2885534, - "lon": -3.7775932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ7 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4690838826, - "lat": 53.5598855, - "lon": -3.0615283, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4691334512, - "lat": 51.2745896, - "lon": -1.4496548, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP11 112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4691334513, - "lat": 51.2647958, - "lon": -1.4241014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4691334514, - "lat": 51.2547025, - "lon": -1.4045092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4691334515, - "lat": 51.2469001, - "lon": -1.3918915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 55", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4691351807, - "lat": 51.2813199, - "lon": -1.4463906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SP11 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4691351808, - "lat": 51.2774089, - "lon": -1.4515042, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP11 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4692436954, - "lat": 55.9155179, - "lon": -3.2846765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH14 594" - } -}, -{ - "type": "node", - "id": 4692516123, - "lat": 53.3995895, - "lon": -0.7756056, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN21 401", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4692516126, - "lat": 53.3995720, - "lon": -0.7756056, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN21 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692567542, - "lat": 52.3206883, - "lon": -1.4701344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4692567544, - "lat": 52.3032457, - "lon": -1.4419789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV33 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4692567545, - "lat": 52.2830949, - "lon": -1.3985048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV47 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4692641600, - "lat": 51.2813264, - "lon": -2.0142044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4692659850, - "lat": 52.2312570, - "lon": -1.0301506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN7 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692659851, - "lat": 52.2143300, - "lon": -1.0448733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4692659852, - "lat": 52.2049406, - "lon": -1.0590850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692659853, - "lat": 52.2125600, - "lon": -1.0683225, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692659854, - "lat": 52.2317874, - "lon": -1.0867721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 469D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692659856, - "lat": 52.2330437, - "lon": -1.0821909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN7 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692659859, - "lat": 52.2335232, - "lon": -1.0769572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4692659860, - "lat": 52.2365751, - "lon": -1.0591670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN7 475D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4692681768, - "lat": 52.6791776, - "lon": -2.8414714, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY5 101", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4692880422, - "lat": 52.2613128, - "lon": -1.4257636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4692953160, - "lat": 53.6953847, - "lon": -2.3275411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB4 548D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4692971714, - "lat": 54.2957663, - "lon": -2.0439501, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DL8 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692985062, - "lat": 54.3313977, - "lon": -1.8248484, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DL8 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4692993998, - "lat": 52.0657046, - "lon": -1.3392014, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "OX16 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4693030117, - "lat": 52.8191411, - "lon": 0.5166442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4693256419, - "lat": 51.7125010, - "lon": -4.6976414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4693256484, - "lat": 51.7227027, - "lon": -4.6866933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4694271513, - "lat": 52.6202302, - "lon": -1.1082568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "LE2 218", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4694319140, - "lat": 52.6339179, - "lon": -1.1004215, - "tags": { - "amenity": "post_box", - "post_box:design": "romec_pillar", - "post_box:type": "pillar", - "ref": "LE5 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4694352225, - "lat": 53.2931725, - "lon": -1.3145697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "box changed from wall to lamp approx 2019", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S21 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4694357564, - "lat": 52.3088861, - "lon": -1.7757424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:40", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B95 237", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4694380813, - "lat": 53.4405563, - "lon": -0.3118763, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "wall", - "ref": "LN7 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4694533369, - "lat": 53.5841153, - "lon": -2.6290182, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WN1 86", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4694543401, - "lat": 50.8731370, - "lon": 0.0103452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN7 432", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4694558468, - "lat": 50.8742668, - "lon": 0.0113752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN7 459", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4694558472, - "lat": 50.8707989, - "lon": 0.0067310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 434D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4694558477, - "lat": 50.8705697, - "lon": 0.0114039, - "tags": { - "access": "customers", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "yes", - "note": "Access for rail customers only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN7 471D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4694568940, - "lat": 53.9471274, - "lon": -2.7972080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PR3 66D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4695686038, - "lat": 55.0034961, - "lon": -1.4837332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NE29 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4695750647, - "lat": 55.0105652, - "lon": -1.4858631, - "tags": { - "amenity": "post_box", - "ref": "NE29 806" - } -}, -{ - "type": "node", - "id": 4695750648, - "lat": 55.0090423, - "lon": -1.4800188, - "tags": { - "amenity": "post_box", - "ref": "NE29 43" - } -}, -{ - "type": "node", - "id": 4695772030, - "lat": 54.5952632, - "lon": -5.9034849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4696268700, - "lat": 51.2991713, - "lon": -0.3331163, - "tags": { - "access": "customers", - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "description": "On platform", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT22 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4696324585, - "lat": 51.3653817, - "lon": -0.3785539, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 163D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4696338563, - "lat": 51.3617545, - "lon": -0.4136989, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4696341342, - "lat": 51.3631650, - "lon": -0.4074414, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 83D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4696347183, - "lat": 52.6342709, - "lon": -1.1494444, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4696347203, - "lat": 51.3693658, - "lon": -0.3956035, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8ND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT12 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4696351437, - "lat": 51.3706709, - "lon": -0.3985851, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 116D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4696353982, - "lat": 51.3702482, - "lon": -0.4029594, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4696408678, - "lat": 51.0522252, - "lon": -0.7189149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4696460137, - "lat": 51.3583730, - "lon": -1.9805571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 74D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4697181391, - "lat": 55.0050993, - "lon": -1.4705260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NE29 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4697181392, - "lat": 55.0082033, - "lon": -1.4675239, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4697194756, - "lat": 55.0119086, - "lon": -1.4672857, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE29 49", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4697425681, - "lat": 55.0148237, - "lon": -1.4702237, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE29 42" - } -}, -{ - "type": "node", - "id": 4697426509, - "lat": 55.0073460, - "lon": -1.4640942, - "tags": { - "amenity": "post_box", - "ref": "NE29 38" - } -}, -{ - "type": "node", - "id": 4697551306, - "lat": 55.0152609, - "lon": -1.4576995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4697551307, - "lat": 55.0102685, - "lon": -1.4575975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 33" - } -}, -{ - "type": "node", - "id": 4698167725, - "lat": 51.0077012, - "lon": -0.0835496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4698212649, - "lat": 51.3331490, - "lon": -1.9557731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4698771285, - "lat": 55.0130926, - "lon": -1.4514457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "NE29 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4698866857, - "lat": 55.0178904, - "lon": -1.4894507, - "tags": { - "amenity": "post_box", - "ref": "NE29 100" - } -}, -{ - "type": "node", - "id": 4698952391, - "lat": 55.0187935, - "lon": -1.4927014, - "tags": { - "amenity": "post_box", - "ref": "NE29 102" - } -}, -{ - "type": "node", - "id": 4698993837, - "lat": 55.0143551, - "lon": -1.4831473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4698993838, - "lat": 55.0193314, - "lon": -1.4797336, - "tags": { - "amenity": "post_box", - "ref": "NE29 62" - } -}, -{ - "type": "node", - "id": 4698993855, - "lat": 55.0225534, - "lon": -1.4805142, - "tags": { - "amenity": "post_box", - "ref": "NE29 12" - } -}, -{ - "type": "node", - "id": 4699353029, - "lat": 55.0187666, - "lon": -1.4762420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE29 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4699487847, - "lat": 55.0237902, - "lon": -1.4741374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE29 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4699487869, - "lat": 55.0212981, - "lon": -1.4658365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE29 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4699487876, - "lat": 55.0230151, - "lon": -1.4603258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE29 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4699549038, - "lat": 55.0270664, - "lon": -1.4588779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE29 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4699549042, - "lat": 55.0249841, - "lon": -1.4882162, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE29 59", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4699912586, - "lat": 52.2709173, - "lon": -0.5839867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN10 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4701203490, - "lat": 51.7628628, - "lon": -1.2177357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX3 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4702209674, - "lat": 53.0916049, - "lon": -4.2301364, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4703189687, - "lat": 54.3495252, - "lon": -6.6395777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4703494772, - "lat": 51.8690505, - "lon": -2.6877477, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4704370987, - "lat": 51.0516471, - "lon": -0.2060767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704370988, - "lat": 51.0389404, - "lon": -0.1818702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704371289, - "lat": 51.0609392, - "lon": -0.1998097, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4704521306, - "lat": 51.0804427, - "lon": -0.6235552, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU8 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704526426, - "lat": 51.5190692, - "lon": -0.2135448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "W10 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4704534443, - "lat": 52.6138791, - "lon": -2.0332541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV11 393D", - "royal_cypher": "EIIR", - "was:royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4704534661, - "lat": 51.0698371, - "lon": -0.5468601, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH14 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704534669, - "lat": 51.0686055, - "lon": -0.5650871, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RH14 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704551885, - "lat": 50.5256901, - "lon": -4.2243238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PL18 85", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4704553743, - "lat": 50.5240126, - "lon": -4.2191756, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4704555478, - "lat": 51.0307044, - "lon": -0.5037758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RH14 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704565468, - "lat": 51.0405848, - "lon": -0.5726292, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4704951525, - "lat": 54.5847850, - "lon": -5.7021150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT23 200D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4705123060, - "lat": 53.4419726, - "lon": -2.1634786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK5 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4705497275, - "lat": 52.1905578, - "lon": -1.7266242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV37 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4705516842, - "lat": 51.4913141, - "lon": -0.2657239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Pete Reed Gold Medal winner London 2012 Olympic Games Rowing Men's Fours", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 36D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4705588133, - "lat": 52.1977776, - "lon": -1.7429876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV37 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4705855286, - "lat": 53.4787773, - "lon": -0.5929200, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN21 340", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4705867664, - "lat": 53.7551500, - "lon": -2.0488592, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HX7 224", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4705879975, - "lat": 51.5596607, - "lon": 0.5508558, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS7 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4705895166, - "lat": 51.5340586, - "lon": 0.7115925, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS1 119", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4705912449, - "lat": 56.0080169, - "lon": -4.7314674, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4705912453, - "lat": 56.0148091, - "lon": -4.7276913, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4706313818, - "lat": 51.0134566, - "lon": -0.0809568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313820, - "lat": 51.0284801, - "lon": -0.0689153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313821, - "lat": 50.9711438, - "lon": -0.0948795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH16 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4706313822, - "lat": 51.0211214, - "lon": -0.0728474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313823, - "lat": 50.9876983, - "lon": -0.1035461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313824, - "lat": 50.9996265, - "lon": -0.1154254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313825, - "lat": 50.9991874, - "lon": -0.0984582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4706313826, - "lat": 50.9980416, - "lon": -0.0923463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH16 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313827, - "lat": 51.0063902, - "lon": -0.0979123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH16 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706313829, - "lat": 50.9632872, - "lon": -0.0747717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4706358835, - "lat": 55.9474013, - "lon": -4.7557639, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4706538199, - "lat": 50.9033095, - "lon": -3.3003182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4706541494, - "lat": 52.6693700, - "lon": -0.7187800, - "tags": { - "addr:street": "Edmonton Way", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE15 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4706653487, - "lat": 51.8298881, - "lon": -1.8374050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4706660634, - "lat": 52.6417323, - "lon": -4.0261139, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4706669251, - "lat": 52.6610096, - "lon": -3.9654262, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL36 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4706868771, - "lat": 52.4726834, - "lon": 1.4808154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4707038316, - "lat": 51.1301673, - "lon": 0.2629480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN1 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4707063353, - "lat": 51.4717520, - "lon": -0.0937399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4707281047, - "lat": 51.0533928, - "lon": -1.3273561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 171D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4707294001, - "lat": 51.0715998, - "lon": -1.3263183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4707296486, - "lat": 51.0631498, - "lon": -1.3208956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4707300055, - "lat": 51.0567712, - "lon": -1.3296673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO22 62D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4707456691, - "lat": 50.8511063, - "lon": -2.4836773, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 7", - "ref:GB:uprn": "10015402981", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4707475870, - "lat": 50.8367192, - "lon": -2.5801510, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 129", - "ref:GB:uprn": "10015392540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4707500697, - "lat": 50.8458994, - "lon": -2.6738834, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 115", - "ref:GB:uprn": "10015475302", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4708711490, - "lat": 52.1378165, - "lon": -0.4710006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "ref": "MK40 375", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4708760435, - "lat": 54.0323923, - "lon": -2.1523368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD23 95", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4708900903, - "lat": 50.8771221, - "lon": -2.6350262, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA22 59", - "ref:GB:uprn": "10015465287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4708912021, - "lat": 50.9086144, - "lon": -2.6550356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4708960983, - "lat": 51.3256028, - "lon": -0.4024110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KT11 105D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4708983183, - "lat": 55.5525362, - "lon": -4.5647230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA1 164", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4708984595, - "lat": 55.5493813, - "lon": -4.5620619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA1 132", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4709017394, - "lat": 51.4796451, - "lon": -0.3807200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TW5 44D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4709049666, - "lat": 53.4060848, - "lon": -2.9909475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "Type C post box L2 422 on Brunswick Street, near Castle Street, Liverpool", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "L2 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Double post box, Brunswick Street.jpg" - } -}, -{ - "type": "node", - "id": 4709049667, - "lat": 53.4060720, - "lon": -2.9909958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "description": "Business box (as Royal Mail call them), L2 426 on Brunswick Street.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L2 426", - "royal_cypher": "no", - "wikimedia_commons": "File:FMO post box on Brunswick Street.jpg" - } -}, -{ - "type": "node", - "id": 4709126839, - "lat": 50.8716343, - "lon": -2.6604067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BA22 87", - "ref:GB:uprn": "10015342652", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4709126840, - "lat": 50.8656649, - "lon": -2.6893450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BA22 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4709132862, - "lat": 50.7992776, - "lon": -2.6610276, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT8 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4709153420, - "lat": 50.7634498, - "lon": -2.6867104, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT6 77", - "ref:GB:uprn": "10015457747", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4709153421, - "lat": 50.7788274, - "lon": -2.6823598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT6 11", - "ref:GB:uprn": "10015279019", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4709161574, - "lat": 50.7775226, - "lon": -2.5780830, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 76", - "ref:GB:uprn": "10015444613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4709171663, - "lat": 50.7877707, - "lon": -2.5854162, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 38", - "ref:GB:uprn": "10015477809", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4709745109, - "lat": 51.3127376, - "lon": -0.2964184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT21 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4709747608, - "lat": 51.8549446, - "lon": -2.1965667, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4709753977, - "lat": 52.3563618, - "lon": -0.6976928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 129" - } -}, -{ - "type": "node", - "id": 4709753978, - "lat": 52.3588026, - "lon": -0.7049428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 94" - } -}, -{ - "type": "node", - "id": 4709763197, - "lat": 51.5157472, - "lon": -1.2554682, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG20 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4709776870, - "lat": 52.6192402, - "lon": -2.1299776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "124601946562539", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 4709801239, - "lat": 53.4293313, - "lon": -2.4983195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 324", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4709801240, - "lat": 53.4282815, - "lon": -2.5048044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA3 318", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4710036845, - "lat": 51.3953914, - "lon": 0.5562454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "ME7 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4710861052, - "lat": 52.4798613, - "lon": -0.4657309, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4710890400, - "lat": 51.4567541, - "lon": -0.2959938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 29", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4710899836, - "lat": 50.5314447, - "lon": -4.0678226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 557", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4710902021, - "lat": 50.8089684, - "lon": -2.4758008, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT2 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4710922118, - "lat": 50.8535592, - "lon": -2.3786911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-02-28", - "post_box:type": "wall", - "ref": "DT10 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4711707545, - "lat": 54.7375217, - "lon": -6.0419835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4713266549, - "lat": 51.6263633, - "lon": 0.2507198, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM14 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4713335322, - "lat": 51.5571184, - "lon": -0.1494754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2415397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 17D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 17D" - } -}, -{ - "type": "node", - "id": 4713366584, - "lat": 51.3860208, - "lon": -0.3428884, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT7 79", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4714358991, - "lat": 51.3659884, - "lon": -0.2600001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4715832759, - "lat": 52.4792820, - "lon": 1.7508624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3203D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4716749868, - "lat": 52.1973471, - "lon": -1.4883580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4716853498, - "lat": 52.4873788, - "lon": 1.4043494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4716948637, - "lat": 52.1582789, - "lon": -1.5097655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4716948638, - "lat": 52.1557512, - "lon": -1.5085215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV35 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4716948642, - "lat": 52.1506638, - "lon": -1.5144700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "CV35 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4716948643, - "lat": 52.1474785, - "lon": -1.5356046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4716957782, - "lat": 52.1628587, - "lon": -1.5520927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV35 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4716957783, - "lat": 52.1905949, - "lon": -1.5520431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4717283953, - "lat": 55.8096106, - "lon": -4.2789240, - "tags": { - "amenity": "post_box", - "ref": "G44 138" - } -}, -{ - "type": "node", - "id": 4717308344, - "lat": 55.8098778, - "lon": -4.2857317, - "tags": { - "amenity": "post_box", - "ref": "G46 929" - } -}, -{ - "type": "node", - "id": 4717316242, - "lat": 55.8079729, - "lon": -4.2845593, - "tags": { - "amenity": "post_box", - "ref": "G46 1384" - } -}, -{ - "type": "node", - "id": 4717325134, - "lat": 55.8081149, - "lon": -4.2875393, - "tags": { - "amenity": "post_box", - "ref": "G46 1020" - } -}, -{ - "type": "node", - "id": 4717334340, - "lat": 55.8064675, - "lon": -4.2879280, - "tags": { - "amenity": "post_box", - "ref": "G46 305" - } -}, -{ - "type": "node", - "id": 4717368862, - "lat": 51.0750334, - "lon": -1.3097229, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-25", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4717368863, - "lat": 51.0754135, - "lon": -1.3279860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4717456857, - "lat": 53.4456157, - "lon": -2.1814134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 566D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4718334254, - "lat": 51.4597374, - "lon": -0.1255853, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4718391893, - "lat": 51.5871628, - "lon": -1.4136779, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4718553645, - "lat": 50.7932606, - "lon": -0.6436102, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO22 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4718619604, - "lat": 54.3617344, - "lon": -2.8988297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "LA23 122", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4718681959, - "lat": 54.4219192, - "lon": -2.9110141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "LA23 254", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4718932335, - "lat": 57.3273037, - "lon": -2.2000741, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB41 251", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4719117157, - "lat": 52.5960607, - "lon": -1.0869929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE2 672", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4719117165, - "lat": 52.6033537, - "lon": -1.0890376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE2 781D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4719117169, - "lat": 52.6001933, - "lon": -1.0914358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE2 751", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4719839485, - "lat": 53.4833945, - "lon": -2.2631397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "M3 25" - } -}, -{ - "type": "node", - "id": 4719860575, - "lat": 53.4827255, - "lon": -2.2642316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "M5 32" - } -}, -{ - "type": "node", - "id": 4720140702, - "lat": 57.4363476, - "lon": -6.5808990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV55 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4720927357, - "lat": 56.4829194, - "lon": -2.9933180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD3 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4720991800, - "lat": 56.4541255, - "lon": -3.0156616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4721013428, - "lat": 56.4661931, - "lon": -2.9783901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD3 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4721013429, - "lat": 56.4690592, - "lon": -2.9798449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD3 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4721020211, - "lat": 51.4612651, - "lon": -0.1384254, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4721037499, - "lat": 53.3812204, - "lon": -3.0327051, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria post box CH42 220 by Handyside at the corner of Borough Road and Elmswood Road, Birkenhead", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH42 220", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Elmswood Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 4721110750, - "lat": 53.4424175, - "lon": -2.1909029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Inside Tesco Levenshulme", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4721121462, - "lat": 51.7362420, - "lon": -2.4480023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL13 183", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4721131176, - "lat": 51.7257365, - "lon": -2.4606764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL13 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4721883365, - "lat": 53.4431240, - "lon": -2.1573957, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4723109501, - "lat": 51.1198602, - "lon": -1.3389362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4723109507, - "lat": 51.1201041, - "lon": -1.3316832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO21 238", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4723120947, - "lat": 51.1000312, - "lon": -1.4011178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "mapillary": "4487084141395156", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO21 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 4723177812, - "lat": 51.5871927, - "lon": -1.4225290, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4723211009, - "lat": 52.4444176, - "lon": -2.8984101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4723211024, - "lat": 52.4302142, - "lon": -2.8946369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY7 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4723229360, - "lat": 53.0099362, - "lon": -3.3791709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4723315288, - "lat": 53.4392236, - "lon": -2.2208850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "M14 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4723315389, - "lat": 53.4379808, - "lon": -2.2223243, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "M20 282D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4723543428, - "lat": 53.5685969, - "lon": -2.1272444, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4723573580, - "lat": 53.6883523, - "lon": -2.1003157, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4723600808, - "lat": 53.7639255, - "lon": -2.4969502, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4724972729, - "lat": 52.8068768, - "lon": -2.1149784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST16 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4725063396, - "lat": 51.4005578, - "lon": -0.3483548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4726172439, - "lat": 53.5269665, - "lon": -2.2893144, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4726188014, - "lat": 53.5374421, - "lon": -2.2880887, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4726285168, - "lat": 53.5418964, - "lon": -2.5758055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 114", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4726366630, - "lat": 55.9101965, - "lon": -4.4034616, - "tags": { - "amenity": "post_box", - "ref": "G81 1106" - } -}, -{ - "type": "node", - "id": 4726478680, - "lat": 52.3743377, - "lon": -2.7483911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY7 159" - } -}, -{ - "type": "node", - "id": 4726560889, - "lat": 55.7011572, - "lon": -3.6494709, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4726775788, - "lat": 51.7140678, - "lon": -0.1148511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN6 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4726831844, - "lat": 52.5244788, - "lon": -2.7944684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4727827824, - "lat": 53.5675715, - "lon": -0.0692258, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/W3JgqvYY/DN32-6D.jpg", - "location": "Convamore Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4728010436, - "lat": 56.1336865, - "lon": -3.3741207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "description": "Set into the front of a house", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY4 87", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4728224624, - "lat": 50.7876909, - "lon": -0.6526617, - "tags": { - "amenity": "post_box", - "ref": "PO22 39" - } -}, -{ - "type": "node", - "id": 4728363017, - "lat": 52.5850721, - "lon": 1.5057713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4728427520, - "lat": 57.2636474, - "lon": -2.1880159, - "tags": { - "addr:country": "GB", - "addr:postcode": "AB21 0UA", - "addr:street": "Straloch Avenue", - "addr:village": "Newmachar", - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB21 264", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4728449431, - "lat": 57.2637204, - "lon": -2.1824164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB21 263" - } -}, -{ - "type": "node", - "id": 4728564834, - "lat": 54.5100508, - "lon": -6.0099464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4728912169, - "lat": 51.7140423, - "lon": -2.4718913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL13 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4728913637, - "lat": 51.7190408, - "lon": -2.4715308, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL13 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4728914202, - "lat": 51.7185375, - "lon": -2.4591384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL13 250D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4728914203, - "lat": 51.7153183, - "lon": -2.4575654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL13 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4728994828, - "lat": 52.5791176, - "lon": 1.6599234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR31 3160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4729051228, - "lat": 52.2966420, - "lon": -0.6910973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 80D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4729335449, - "lat": 52.2320957, - "lon": -1.5490619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CV33 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4729335450, - "lat": 52.2194554, - "lon": -1.5251264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 4729335451, - "lat": 52.2103363, - "lon": -1.5122577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4729335465, - "lat": 52.1993071, - "lon": -1.5057369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV35 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4729399415, - "lat": 51.7529350, - "lon": -2.5780859, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL15 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4729418828, - "lat": 51.3949465, - "lon": -0.3077997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "KT6 139", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4729488110, - "lat": 51.5884125, - "lon": -1.4272915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4729488111, - "lat": 51.5884191, - "lon": -1.4273223, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4729819264, - "lat": 51.5876060, - "lon": -1.4301765, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4729823170, - "lat": 51.4696793, - "lon": -0.0965907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4729848038, - "lat": 51.4667311, - "lon": -0.1005459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4730058867, - "lat": 51.4929038, - "lon": -0.2518971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4730086403, - "lat": 51.4183556, - "lon": -0.0480382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE20 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4730091286, - "lat": 51.4167019, - "lon": -0.0499997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE20 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4730205079, - "lat": 51.8834804, - "lon": -4.8470004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4730205080, - "lat": 51.8872636, - "lon": -4.8384098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4730593679, - "lat": 51.1214893, - "lon": 0.2496194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN2 331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4730593683, - "lat": 51.1223191, - "lon": 0.2459706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN4 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4730593684, - "lat": 51.1537687, - "lon": 0.2932474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4730593693, - "lat": 51.1239314, - "lon": 0.2508678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN4 95D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4730664061, - "lat": 51.4044869, - "lon": -0.2932925, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KT1 192", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4730664063, - "lat": 51.4044567, - "lon": -0.2932710, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "KT1 429" - } -}, -{ - "type": "node", - "id": 4730875194, - "lat": 51.1545627, - "lon": 0.2872451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "TN2 22", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4730875195, - "lat": 51.1545716, - "lon": 0.2872572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 341" - } -}, -{ - "type": "node", - "id": 4730913556, - "lat": 55.7917049, - "lon": -4.2954448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "361717683526233", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G76 1077", - "survey:date": "2024-03-13" - } -}, -{ - "type": "node", - "id": 4730916116, - "lat": 55.7930168, - "lon": -4.2975557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "G46 1050" - } -}, -{ - "type": "node", - "id": 4730921472, - "lat": 55.7894460, - "lon": -4.2859122, - "tags": { - "amenity": "post_box", - "ref": "G76 1068" - } -}, -{ - "type": "node", - "id": 4731324221, - "lat": 50.8260659, - "lon": -1.3924106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4731324222, - "lat": 50.8699482, - "lon": -1.3983872, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 282", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4731324223, - "lat": 50.8239953, - "lon": -1.3810366, - "tags": { - "amenity": "post_box", - "ref": "SO45 647" - } -}, -{ - "type": "node", - "id": 4731324224, - "lat": 50.8590520, - "lon": -1.3893174, - "tags": { - "amenity": "post_box", - "ref": "SO45 470" - } -}, -{ - "type": "node", - "id": 4731324225, - "lat": 50.8591233, - "lon": -1.4097120, - "tags": { - "amenity": "post_box", - "ref": "SO45 136D" - } -}, -{ - "type": "node", - "id": 4731694581, - "lat": 52.6880012, - "lon": -1.8203612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4732002441, - "lat": 51.6261101, - "lon": -0.0991126, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-12", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4732234308, - "lat": 56.0639618, - "lon": -3.4952449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 162D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4732234309, - "lat": 56.0594836, - "lon": -3.4942753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Hunt Place", - "drive_through": "no", - "operator": "Royal Mail", - "phone": "+44 3457 740740", - "post_box:type": "lamp", - "ref": "KY12 207D", - "royal_cypher": "scottish_crown", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 4732314451, - "lat": 51.5958900, - "lon": -3.3272053, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CF37 37", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4732321959, - "lat": 51.9780690, - "lon": 1.3224120, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP11 1131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4732339356, - "lat": 51.9612718, - "lon": 1.3513283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP11 1154", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4732407149, - "lat": 52.0515458, - "lon": -2.6805057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Sudbury Avenue", - "operator": "Royal Mail", - "ref": "HR1 11D" - } -}, -{ - "type": "node", - "id": 4732430238, - "lat": 52.0553583, - "lon": -2.6864793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Near Tupsley Vicarage, Church Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HR1 24D" - } -}, -{ - "type": "node", - "id": 4732858926, - "lat": 51.5086057, - "lon": -3.2269597, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-12", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4734505280, - "lat": 50.8210695, - "lon": -3.4284401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4734986859, - "lat": 51.0380365, - "lon": -0.1724489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH17 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4734986860, - "lat": 51.0193392, - "lon": -0.1701008, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4735260736, - "lat": 52.5930162, - "lon": -3.6484249, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY19 504", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4735295289, - "lat": 51.5710333, - "lon": -1.8025127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SN2 600" - } -}, -{ - "type": "node", - "id": 4735295294, - "lat": 51.5710434, - "lon": -1.8025502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "826641259325727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN2 601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-20" - } -}, -{ - "type": "node", - "id": 4735315877, - "lat": 55.1638870, - "lon": -1.6803378, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "NE61 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4735327707, - "lat": 51.4897634, - "lon": -0.2433125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 6D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4735329409, - "lat": 51.4900458, - "lon": -0.2164527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 3D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4735349250, - "lat": 51.4952552, - "lon": -0.2551373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "note": "hard to see behind flower stall", - "post_box:type": "wall", - "ref": "W4 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4735359623, - "lat": 51.5419767, - "lon": 0.2770022, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RM14 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4735367141, - "lat": 51.5170493, - "lon": 0.1938040, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "RM13 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4735367921, - "lat": 51.5171549, - "lon": 0.1921479, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4735371546, - "lat": 51.5382478, - "lon": 0.6884692, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS0 102", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4735373434, - "lat": 51.5426407, - "lon": 0.6791787, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS0 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4735382524, - "lat": 51.7323200, - "lon": -0.0245643, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EN10 119", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4735509337, - "lat": 53.9627847, - "lon": -0.3292466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "wall", - "ref": "YO25 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4737682026, - "lat": 51.1303738, - "lon": -2.9993373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 807", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-03-15" - } -}, -{ - "type": "node", - "id": 4737970847, - "lat": 53.6000781, - "lon": -2.3300596, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4738630746, - "lat": 51.0087378, - "lon": -0.2100012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738630747, - "lat": 51.0191996, - "lon": -0.1936891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738630748, - "lat": 51.0013156, - "lon": -0.1901840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738630749, - "lat": 51.0090409, - "lon": -0.2329334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738630750, - "lat": 50.9927442, - "lon": -0.1267225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH16 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738630751, - "lat": 51.0014562, - "lon": -0.2209533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH17 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738846817, - "lat": 52.8021498, - "lon": 1.1334834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 19:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4738875156, - "lat": 51.3831656, - "lon": -0.2045732, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SM3 52", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4739036367, - "lat": 51.7551833, - "lon": -0.0840136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SG13 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4739376324, - "lat": 52.6952268, - "lon": -1.4236399, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4739977700, - "lat": 53.3210818, - "lon": -3.8338344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LL30 79", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4739979765, - "lat": 53.0432483, - "lon": -3.6538737, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL24 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4739996275, - "lat": 52.9797951, - "lon": -3.3695977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL21 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4740100631, - "lat": 52.2676371, - "lon": -3.2967274, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "LD1 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4740150944, - "lat": 52.2423074, - "lon": -3.3795343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "unusual design with arched top protected under its own little wooden canopy", - "post_box:type": "lamp", - "ref": "LD1 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4740215353, - "lat": 53.9743822, - "lon": -0.9075430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "wall", - "ref": "YO41 136", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4741181421, - "lat": 50.9903536, - "lon": -0.2044911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4741181422, - "lat": 50.9677559, - "lon": -0.1945942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4741181423, - "lat": 50.9952206, - "lon": -0.2030624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH17 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4741181426, - "lat": 50.9870602, - "lon": -0.2102242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4741342925, - "lat": 52.6261735, - "lon": 1.1238349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 917D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4741346886, - "lat": 52.5810461, - "lon": 0.9768834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 969D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4741657670, - "lat": 52.2885434, - "lon": -1.3941023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 76D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4741657671, - "lat": 52.2815550, - "lon": -1.3894977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4741657672, - "lat": 52.2743454, - "lon": -1.3936189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4741693147, - "lat": 52.2526534, - "lon": -1.3806963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "mapillary": "740519989958617", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV47 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4741693148, - "lat": 52.2504790, - "lon": -1.3824343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4741818487, - "lat": 50.8284259, - "lon": -3.4203594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "name": "Bradninch East End", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX5 288" - } -}, -{ - "type": "node", - "id": 4741818488, - "lat": 50.8247743, - "lon": -3.4271277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "name": "Bradninch West End", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX5 289" - } -}, -{ - "type": "node", - "id": 4741818511, - "lat": 50.8270367, - "lon": -3.4219508, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EX5 257" - } -}, -{ - "type": "node", - "id": 4742515398, - "lat": 53.8182742, - "lon": -0.9081411, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4742810654, - "lat": 55.8824365, - "lon": -3.3429510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH14 581D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4742826472, - "lat": 55.9120177, - "lon": -3.3157180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH14 621", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4744071821, - "lat": 51.4989118, - "lon": -3.6042533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4744116200, - "lat": 50.6613917, - "lon": -3.4273189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EX8 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4744229397, - "lat": 51.4541076, - "lon": -0.3169781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW1 81D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4744256622, - "lat": 51.4623031, - "lon": -0.2849259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "TW10 1D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4744340551, - "lat": 51.6331542, - "lon": 0.0098024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E4 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4745413063, - "lat": 55.9852408, - "lon": -2.6554206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "EH40 244", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4746169281, - "lat": 53.4704457, - "lon": -2.2631596, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "M16 146D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4747606002, - "lat": 51.4350259, - "lon": -0.0986932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "ref illegible on postbox but RM site has SE27 12 https://www.royalmail.com/services-near-you/postbox/chesnut-road-ardlui-road-se27-9hb/0000SE2712", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4747606003, - "lat": 51.4362992, - "lon": -0.0973843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Large pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 17", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4749351381, - "lat": 50.7418074, - "lon": -1.9657278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4749426621, - "lat": 53.4469015, - "lon": -2.1874160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 562", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4749610835, - "lat": 54.8643270, - "lon": -2.9104657, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4749691625, - "lat": 51.9301304, - "lon": -1.7231740, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4750885133, - "lat": 53.4195776, - "lon": -2.9064863, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4751485228, - "lat": 51.5987923, - "lon": -1.4315120, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4752836171, - "lat": 51.7022946, - "lon": -0.0354248, - "tags": { - "amenity": "post_box", - "colour": "gold", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EN8 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4753259504, - "lat": 51.2878554, - "lon": -0.1485785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4753593821, - "lat": 51.6180332, - "lon": -3.9853180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "SA2 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4755011599, - "lat": 52.3685746, - "lon": -1.6643953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4755011600, - "lat": 52.3963146, - "lon": -1.6454904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV7 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4755077481, - "lat": 52.3845158, - "lon": -1.6350197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV7 66", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4755164215, - "lat": 51.9164502, - "lon": -3.8701415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA19 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4755647548, - "lat": 54.4623085, - "lon": -0.8190307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO21 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4755653011, - "lat": 54.4871856, - "lon": -0.6126723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO22 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4755923912, - "lat": 50.8304756, - "lon": -1.3883579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 08:45", - "ref": "SO45 639", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4755923913, - "lat": 50.8630474, - "lon": -1.4043788, - "tags": { - "amenity": "post_box", - "ref": "SO45 215D" - } -}, -{ - "type": "node", - "id": 4755923914, - "lat": 50.8562479, - "lon": -1.4036921, - "tags": { - "amenity": "post_box", - "ref": "SO45 176D" - } -}, -{ - "type": "node", - "id": 4756214019, - "lat": 51.7449077, - "lon": -0.3018263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL4 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4756400620, - "lat": 50.7229407, - "lon": -3.9158658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "EX20 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4757027184, - "lat": 52.8849552, - "lon": -1.4093263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "DE24 1352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4757117407, - "lat": 53.4035413, - "lon": -1.4308136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 15:30", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "S9 1600" - } -}, -{ - "type": "node", - "id": 4757135745, - "lat": 51.1489984, - "lon": -0.9754680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU34 1001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4757135746, - "lat": 51.1489940, - "lon": -0.9754754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU34 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4757155240, - "lat": 51.4519779, - "lon": -0.3819843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 12:45", - "note": "TW4 100 is for franked mail only; Each bin is for a different type of mail but collection times are the same now (Jan24)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "4", - "post_box:type": "bin", - "ref": "TW4 1;TW4 100;TW4 1001;TW4 1101", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4757360839, - "lat": 51.0732381, - "lon": -1.8033780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP2 65", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP2 65D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4757926389, - "lat": 53.1431586, - "lon": 0.2020453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE24 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4758537673, - "lat": 51.5545039, - "lon": -0.0925426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4758543421, - "lat": 56.1369045, - "lon": -3.3824500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4758543446, - "lat": 56.1335816, - "lon": -3.3799887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY4 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4758548204, - "lat": 56.1414238, - "lon": -3.3856624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 140", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4758791996, - "lat": 50.6378969, - "lon": -3.3179457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX9 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 4758839390, - "lat": 50.8171745, - "lon": -3.3768384, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX15 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4758844752, - "lat": 50.9415054, - "lon": -3.5019790, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX16 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4758853552, - "lat": 51.0975720, - "lon": -3.5393509, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TA24 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4758859831, - "lat": 51.1730321, - "lon": -3.4942011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4758916830, - "lat": 50.7116204, - "lon": -2.4248352, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT1 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4758922564, - "lat": 55.5148711, - "lon": -4.3787762, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "KA5 201" - } -}, -{ - "type": "node", - "id": 4758930853, - "lat": 55.4183249, - "lon": -5.6416567, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PA28 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4758951021, - "lat": 50.6444534, - "lon": -2.3949983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DT3 44", - "ref:GB:uprn": "10015385062", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4759726940, - "lat": 50.6114586, - "lon": -2.4673644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 26D", - "ref:GB:uprn": "10015461674", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;Bing", - "survey:date": "2022-10-27" - } -}, -{ - "type": "node", - "id": 4759774878, - "lat": 52.4467640, - "lon": -2.3371457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "WV15 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4759807920, - "lat": 53.0241430, - "lon": -2.7443721, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SY14 653", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4759825872, - "lat": 52.9688412, - "lon": -3.2102852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL20 196", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4759829251, - "lat": 51.4664862, - "lon": -1.7103514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SN8 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4759834267, - "lat": 51.8413826, - "lon": -2.1033885, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL3 207", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4759843755, - "lat": 50.7107120, - "lon": -2.4581666, - "tags": { - "amenity": "post_box", - "check:date": "2024-06-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 214D", - "ref:GB:uprn": "10015272120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4759959316, - "lat": 51.0097776, - "lon": -2.1915168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP7 110", - "ref:GB:uprn": "10015274734", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4759960410, - "lat": 51.0000966, - "lon": -2.1860022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP7 22D", - "ref:GB:uprn": "10015315682", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4759983606, - "lat": 50.9636623, - "lon": -2.2261962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SP7 26", - "ref:GB:uprn": "10015375413", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4760004674, - "lat": 51.0308065, - "lon": -2.1874561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SP7 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4760050511, - "lat": 51.0044302, - "lon": -1.9782336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-04-30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SP5 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4760150871, - "lat": 51.0004686, - "lon": -1.9874856, - "tags": { - "amenity": "post_box", - "fixme": "Is this still here?", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SP5 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4760179331, - "lat": 50.7372983, - "lon": -2.2466693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:15", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT2 74", - "ref:GB:uprn": "10015467942", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4760203484, - "lat": 51.5402048, - "lon": -3.2641118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CF15 371", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4760245933, - "lat": 50.7352904, - "lon": -1.9801444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 162D", - "ref:GB:uprn": "10015452447", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4760847103, - "lat": 52.6950120, - "lon": -1.2883591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LE67 302", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4760854621, - "lat": 50.9290722, - "lon": -3.2777239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX15 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4761789306, - "lat": 54.1214450, - "lon": -3.2207619, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA14 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4761796043, - "lat": 51.4642141, - "lon": -3.1599097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4761867967, - "lat": 53.3789287, - "lon": -1.4981803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Type G post box was replaced by more common pillar box in 2016", - "post_box:type": "pillar", - "ref": "S10 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4761885504, - "lat": 53.3669536, - "lon": -1.3084515, - "tags": { - "amenity": "post_box", - "post_box:design": "converted_bag_box", - "post_box:type": "pillar", - "ref": "S26 897", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4761897516, - "lat": 53.3946585, - "lon": -1.5025576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "converted_bag_box", - "post_box:type": "pillar", - "ref": "S6 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4761914928, - "lat": 53.3823616, - "lon": -1.4723144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S1 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4761933467, - "lat": 52.0624468, - "lon": -1.1032974, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NN13 97", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4762128346, - "lat": 53.2113216, - "lon": -0.5669511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN6 433" - } -}, -{ - "type": "node", - "id": 4762156527, - "lat": 51.4375779, - "lon": -0.4687262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW15 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4762156529, - "lat": 51.4355932, - "lon": -0.4660198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW15 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4762156530, - "lat": 51.4328559, - "lon": -0.4615861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW15 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4762156532, - "lat": 51.4337321, - "lon": -0.4650059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TW15 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4762156533, - "lat": 51.4338717, - "lon": -0.4650690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW15 174;TW15 1741", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4762156534, - "lat": 51.4359798, - "lon": -0.4679282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW15 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4762477748, - "lat": 51.2931123, - "lon": -2.1907742, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "BA14 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4763115688, - "lat": 50.7912641, - "lon": -4.4322570, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 47", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4763117038, - "lat": 52.3069636, - "lon": -0.6904081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4763126497, - "lat": 50.8317107, - "lon": -4.3760188, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 5", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4763854737, - "lat": 52.7228568, - "lon": 1.1491203, - "tags": { - "FIXME": "Update collection times", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR9 963", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4763884511, - "lat": 50.8040155, - "lon": -4.3050117, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4763893803, - "lat": 50.8863399, - "lon": -4.3618649, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4763941956, - "lat": 50.9414005, - "lon": -2.0333802, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SP5 125", - "ref:GB:uprn": "10015323042", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4763953746, - "lat": 50.6731418, - "lon": -2.1494962, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH20 91", - "ref:GB:uprn": "10015348115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4764118673, - "lat": 50.8153017, - "lon": -0.4173004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1812D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4764679831, - "lat": 50.7621541, - "lon": -4.4591110, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4764687519, - "lat": 50.8175037, - "lon": -4.3981900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4764705842, - "lat": 50.8135378, - "lon": -4.3563649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX22 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4764721372, - "lat": 50.8505111, - "lon": -4.3335703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX22 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4764724344, - "lat": 50.7707703, - "lon": -4.3030870, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4764846021, - "lat": 50.8038252, - "lon": -4.3635558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:design": "waggon_top", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX22 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4764849439, - "lat": 51.5016336, - "lon": -0.1877522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W8 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4765210996, - "lat": 51.3719414, - "lon": -2.8694023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS24 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4765210997, - "lat": 51.3757865, - "lon": -2.8513488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS24 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4765351777, - "lat": 50.7250263, - "lon": -1.9771595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 23", - "ref:GB:uprn": "10015363875", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4765388136, - "lat": 50.6055963, - "lon": -1.9552232, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH19 123", - "ref:GB:uprn": "10015359334", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4765398993, - "lat": 50.6070244, - "lon": -1.9575114, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH19 35", - "ref:GB:uprn": "10015339375", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4765424068, - "lat": 50.7758335, - "lon": -2.7530008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "wall", - "ref": "DT6 25", - "ref:GB:uprn": "10015312113", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4765464021, - "lat": 50.7619224, - "lon": -2.5910819, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT2 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4765472002, - "lat": 51.1973103, - "lon": -3.5788351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TA24 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4765528636, - "lat": 50.8749862, - "lon": -2.0320954, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref:GB:uprn": "10015399936" - } -}, -{ - "type": "node", - "id": 4765528672, - "lat": 50.9305725, - "lon": -2.0437790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DT11 79", - "ref:GB:uprn": "10015356701", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4765545745, - "lat": 51.2102829, - "lon": -3.4811051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4765561823, - "lat": 50.7024424, - "lon": -1.9226730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 128D", - "ref:GB:uprn": "10015443410", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4765592761, - "lat": 50.8582741, - "lon": -2.1658865, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "DT11 39", - "ref:GB:uprn": "10015850343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4765592762, - "lat": 50.8557497, - "lon": -2.1664981, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT11 40", - "ref:GB:uprn": "10015318640", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4766518321, - "lat": 51.3403029, - "lon": -2.7816391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS40 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4766518322, - "lat": 51.3407715, - "lon": -2.7606085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS40 290", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4766518323, - "lat": 51.3284694, - "lon": -2.7523556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS40 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4766518324, - "lat": 51.3002141, - "lon": -2.6968813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS40 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4770129162, - "lat": 52.0615783, - "lon": -1.6321617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV36 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4770129165, - "lat": 52.0635208, - "lon": -1.6325454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV36 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4770129166, - "lat": 52.0664263, - "lon": -1.6255400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 118D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4770170183, - "lat": 52.0767697, - "lon": -1.6646041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV36 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4770212317, - "lat": 52.0709800, - "lon": 1.1421011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1294", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4770425216, - "lat": 51.0157611, - "lon": -3.1402528, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TA1 565", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4770659592, - "lat": 51.0120966, - "lon": -3.1337753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 265", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4770774403, - "lat": 52.6292270, - "lon": 1.4260246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4771118079, - "lat": 56.4735984, - "lon": -2.8781315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 98D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4771317785, - "lat": 56.4733921, - "lon": -2.9276627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD4 205", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4772468985, - "lat": 55.0093669, - "lon": -1.4412518, - "tags": { - "amenity": "post_box", - "ref": "NE30 67" - } -}, -{ - "type": "node", - "id": 4772949070, - "lat": 55.0122271, - "lon": -1.4409432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 8", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4774283411, - "lat": 55.0139456, - "lon": -1.4426969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4774283412, - "lat": 55.0154832, - "lon": -1.4252128, - "tags": { - "amenity": "post_box", - "ref": "NE30 6" - } -}, -{ - "type": "node", - "id": 4774306553, - "lat": 55.0150065, - "lon": -1.4381896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE30 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4774361811, - "lat": 55.0149535, - "lon": -1.4306233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE30 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4775018589, - "lat": 51.5040162, - "lon": -0.2326792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W12 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q27085594" - } -}, -{ - "type": "node", - "id": 4775018590, - "lat": 51.5080248, - "lon": -0.2359827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4775021932, - "lat": 51.5064743, - "lon": -0.2406232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "W12 10D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4775057824, - "lat": 54.9911539, - "lon": -1.6026883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 92D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4775251754, - "lat": 52.9034134, - "lon": 1.0602283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4775950885, - "lat": 54.8801625, - "lon": -1.4386893, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4776484613, - "lat": 51.0334350, - "lon": 0.8165093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN26 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4776717191, - "lat": 51.6965946, - "lon": 0.5463768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4776759024, - "lat": 51.8300728, - "lon": 0.6929875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO5 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4776771241, - "lat": 55.0240391, - "lon": -1.4324971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE30 61" - } -}, -{ - "type": "node", - "id": 4776771242, - "lat": 55.0201149, - "lon": -1.4309325, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 44" - } -}, -{ - "type": "node", - "id": 4776850985, - "lat": 55.0239047, - "lon": -1.4276411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE30 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4776851030, - "lat": 55.0216767, - "lon": -1.4272271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "NE30 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4776851032, - "lat": 55.0194404, - "lon": -1.4219128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "NE30 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4776937488, - "lat": 56.2807350, - "lon": -3.0142029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KY15 289" - } -}, -{ - "type": "node", - "id": 4777000270, - "lat": 55.0260838, - "lon": -1.4508828, - "tags": { - "amenity": "post_box", - "ref": "NE30 66" - } -}, -{ - "type": "node", - "id": 4777000271, - "lat": 55.0244003, - "lon": -1.4432777, - "tags": { - "amenity": "post_box", - "ref": "NE30 22" - } -}, -{ - "type": "node", - "id": 4777005450, - "lat": 55.0270138, - "lon": -1.4364836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 53", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4777649547, - "lat": 53.3578760, - "lon": -3.0188303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "GVIR type B post box CH63 501 by Lion Foundry on Rosefield Avenue, Town Lane, Higher Bebington.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 501", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Town Lane, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 4778543651, - "lat": 55.0311633, - "lon": -1.4505416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE30 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4778581699, - "lat": 55.0324983, - "lon": -1.4431487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4778605992, - "lat": 55.0338100, - "lon": -1.4365096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "public", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4778762814, - "lat": 56.1091403, - "lon": -3.9687151, - "tags": { - "amenity": "post_box", - "postal_code": "FK7", - "ref": "FK7 137" - } -}, -{ - "type": "node", - "id": 4778762815, - "lat": 56.1105551, - "lon": -3.9676341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "postal_code": "FK7", - "ref": "FK7 179D" - } -}, -{ - "type": "node", - "id": 4778843522, - "lat": 55.0310487, - "lon": -1.4380617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE30 54", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4778951664, - "lat": 55.0363426, - "lon": -1.4350064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE30 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4778951684, - "lat": 55.0380676, - "lon": -1.4353033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 119", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4778951690, - "lat": 55.0393844, - "lon": -1.4369960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 292", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4779315754, - "lat": 51.3775453, - "lon": -2.3791301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA2 1018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4780617348, - "lat": 51.3155785, - "lon": -0.5681094, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "indoor": "yes", - "last_checked": "2020-02-18", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4780711267, - "lat": 51.3255497, - "lon": -0.5598560, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU21 164D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2024-01-16" - } -}, -{ - "type": "node", - "id": 4780711271, - "lat": 51.3230649, - "lon": -0.5592292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4780952551, - "lat": 56.1078624, - "lon": -3.9677742, - "tags": { - "amenity": "post_box", - "postal_code": "FK7", - "ref": "FK7 178D" - } -}, -{ - "type": "node", - "id": 4781901238, - "lat": 50.9169798, - "lon": -1.4578628, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4781901239, - "lat": 50.8134603, - "lon": -1.4757490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SO42 95", - "survey:date": "2022-02-02", - "wikimedia_commons": "File:Beaulieu, postbox № SO42 95, Hatchet Pond - geograph.org.uk - 3173021.jpg" - } -}, -{ - "type": "node", - "id": 4782266297, - "lat": 52.5685513, - "lon": 0.9259797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 938", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4782729224, - "lat": 52.6230496, - "lon": 1.4833762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4783100104, - "lat": 52.1258662, - "lon": -1.5730051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783100105, - "lat": 52.1360869, - "lon": -1.5628503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783112554, - "lat": 52.1231872, - "lon": -1.5304588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV35 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783112555, - "lat": 52.1075780, - "lon": -1.5383334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783112556, - "lat": 52.1107817, - "lon": -1.5407386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783145782, - "lat": 52.1285825, - "lon": -1.4624951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "CV35 147", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783145783, - "lat": 52.1315232, - "lon": -1.4581750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV35 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4783248721, - "lat": 55.7915121, - "lon": -4.2715491, - "tags": { - "amenity": "post_box", - "ref": "G76 616" - } -}, -{ - "type": "node", - "id": 4784711217, - "lat": 52.3724929, - "lon": -1.1200841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "ref": "NN6 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4784957969, - "lat": 51.2455554, - "lon": -0.5813932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15, Sa 13:00", - "description": "Both of these postboxes are for pre-paid parcels bought online, barcode returns and business franked mail.", - "mail:franked": "yes", - "mail:meter": "yes", - "opening_hours": "Mo-Fr 13:00-19:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "meter", - "postal_code": "GU1", - "ref": "GU1 9994P;GU1 9993P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4786288355, - "lat": 50.7107618, - "lon": -2.7612663, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-17", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT6 35", - "ref:GB:uprn": "10015470450", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4788855641, - "lat": 50.9931696, - "lon": -0.7760079, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4788971738, - "lat": 51.2328876, - "lon": -0.7725247, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU9 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4789160303, - "lat": 51.2370497, - "lon": -0.7524409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4790589413, - "lat": 51.1240009, - "lon": 1.3139677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT16 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4790825738, - "lat": 51.1473064, - "lon": -0.9740516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU34 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4791810021, - "lat": 54.7187342, - "lon": -4.4530746, - "tags": { - "amenity": "post_box", - "name": "Glasserton postbox", - "name:en": "Glasserton postbox" - } -}, -{ - "type": "node", - "id": 4792305931, - "lat": 51.7305667, - "lon": -2.8492114, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP15 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4792305933, - "lat": 51.7175742, - "lon": -2.8619878, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP15 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4792330258, - "lat": 51.7407698, - "lon": -2.8371298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP15 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4792394446, - "lat": 51.8676474, - "lon": -2.6305478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NP25 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4792406992, - "lat": 51.8043866, - "lon": -2.6216273, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL16 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4793395941, - "lat": 53.1522342, - "lon": -2.3897500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Marsh Green Road Post Box", - "ref": "CW11 80D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4793518211, - "lat": 55.3240170, - "lon": -5.6312254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4793881632, - "lat": 54.0781132, - "lon": -1.1292554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO61 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4794866620, - "lat": 52.6496757, - "lon": 1.7202481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4795205707, - "lat": 52.6989993, - "lon": 1.6816861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4795315010, - "lat": 52.3394669, - "lon": -1.4342276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795331491, - "lat": 52.3496908, - "lon": -1.4015755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795331493, - "lat": 52.3524956, - "lon": -1.3959827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795369315, - "lat": 52.3758021, - "lon": -1.3945357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV8 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795369316, - "lat": 52.3778613, - "lon": -1.3906603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV8 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795369317, - "lat": 52.3736577, - "lon": -1.4020212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV8 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795387152, - "lat": 52.3617183, - "lon": -1.4340337, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 16:16; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795387153, - "lat": 52.3671577, - "lon": -1.4491169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4795505122, - "lat": 50.9148805, - "lon": -1.5484625, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 421", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4795587752, - "lat": 52.8817374, - "lon": 1.4271878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR11 1158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4796377133, - "lat": 52.9290383, - "lon": 1.3087815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2703D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4796377141, - "lat": 52.9197499, - "lon": 1.3127898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4796445507, - "lat": 51.9283084, - "lon": -4.1625330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 12:00", - "post_box:type": "wall", - "ref": "SA32 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4796446400, - "lat": 51.9537809, - "lon": -3.9872196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "post_box:type": "wall", - "ref": "SA19 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4796446405, - "lat": 51.9577811, - "lon": -4.1313797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA32 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4796446421, - "lat": 51.9688082, - "lon": -4.1042038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "note": "SA33 is ref at site despite being well out of area.", - "post_box:type": "lamp", - "ref": "SA33 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4796848021, - "lat": 51.6175068, - "lon": -0.2272804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4796939184, - "lat": 52.3904819, - "lon": -1.3700291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CV23 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4798176698, - "lat": 51.6508750, - "lon": -0.4056649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD18 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4798176699, - "lat": 51.6545998, - "lon": -0.4055965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WD18 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4798176700, - "lat": 51.6518307, - "lon": -0.4005555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WD18 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4798787338, - "lat": 50.8239713, - "lon": -0.4152455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Coniston Road Postbox", - "name:en": "Coniston Road Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1641D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4799195388, - "lat": 52.6948359, - "lon": 0.2066348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE14 191" - } -}, -{ - "type": "node", - "id": 4799917182, - "lat": 51.8703202, - "lon": -1.3289988, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX5 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4802388135, - "lat": 56.1771313, - "lon": -3.5836227, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY13 189D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4802396645, - "lat": 56.1952177, - "lon": -3.6049523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK14 135", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4802403488, - "lat": 56.1891647, - "lon": -3.6110288, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-12", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK14 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4802470566, - "lat": 56.3120071, - "lon": -3.5864068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH2 81", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4804188221, - "lat": 56.3094187, - "lon": -3.5808605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:45", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 79", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4804202949, - "lat": 56.3404266, - "lon": -3.5347238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 82", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4804451437, - "lat": 53.2891129, - "lon": -3.3036248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 412", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4804451438, - "lat": 53.3360314, - "lon": -3.3198985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4805432649, - "lat": 53.4478867, - "lon": -2.1918517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M19 564", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4805561445, - "lat": 58.2227791, - "lon": -6.9522588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 155", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4805620066, - "lat": 52.6994547, - "lon": 1.4688045, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002896, - "lat": 52.3053692, - "lon": -0.7175566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4806002897, - "lat": 52.3064724, - "lon": -0.7147953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002898, - "lat": 52.3099199, - "lon": -0.7150208, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002899, - "lat": 52.3105791, - "lon": -0.7114537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 1073", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002900, - "lat": 52.3124259, - "lon": -0.7079122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002901, - "lat": 52.3024111, - "lon": -0.7110970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002902, - "lat": 52.3005197, - "lon": -0.7065769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002903, - "lat": 52.3070711, - "lon": -0.7017259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4806002904, - "lat": 52.3107208, - "lon": -0.6979674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002905, - "lat": 52.3077930, - "lon": -0.6950439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002906, - "lat": 52.3111078, - "lon": -0.6874936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002907, - "lat": 52.3082262, - "lon": -0.6870540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4806002908, - "lat": 52.3061182, - "lon": -0.6855635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4806698085, - "lat": 52.4442344, - "lon": -4.0266347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SY24 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4807144205, - "lat": 52.7553134, - "lon": 0.4194055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4808372235, - "lat": 51.4825762, - "lon": -2.5468135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4808455663, - "lat": 52.4853073, - "lon": -1.1581815, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LE17 146D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4809595075, - "lat": 52.3965289, - "lon": 1.1909866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7090", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4809653629, - "lat": 52.4049236, - "lon": 1.2964937, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4809653637, - "lat": 52.4018682, - "lon": 1.2942275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:10", - "note": "Collection plate partially obscured; no ref visible 2018-04", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4809780691, - "lat": 52.4506846, - "lon": 1.4153869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4809989854, - "lat": 51.2606089, - "lon": -0.9220578, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4810023885, - "lat": 52.4104127, - "lon": -1.3620797, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4810023886, - "lat": 52.4130197, - "lon": -1.3598892, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4810051155, - "lat": 52.4442214, - "lon": -1.3180305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "note": "looks like a relatively new box but the royal cypher is missing", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 9", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4810051156, - "lat": 52.4592494, - "lon": -1.2712108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4810051160, - "lat": 52.4325103, - "lon": -1.3071477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4810067489, - "lat": 52.4350725, - "lon": -1.3278858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4810310622, - "lat": 55.9456432, - "lon": -3.0382998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4810310623, - "lat": 55.9447186, - "lon": -3.0255082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH21 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4810310634, - "lat": 55.9413553, - "lon": -3.0353478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4810310635, - "lat": 55.9353912, - "lon": -3.0434336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 104", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4810310651, - "lat": 55.9392969, - "lon": -3.0476006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH21 366", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4810310652, - "lat": 55.9393085, - "lon": -3.0520339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 99D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4810310653, - "lat": 55.9391351, - "lon": -3.0547489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4811145274, - "lat": 51.6745301, - "lon": -4.1744105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "SA15 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4811145277, - "lat": 51.7019365, - "lon": -4.1325204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA14 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4811145281, - "lat": 51.7106474, - "lon": -4.1117134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "SA14 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4811194245, - "lat": 51.1540026, - "lon": -2.4170820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA4 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4811371023, - "lat": 52.6023781, - "lon": 1.7350833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR30 3020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4811381878, - "lat": 52.6046318, - "lon": 1.7325824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR30 3013", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4811714752, - "lat": 52.3553607, - "lon": -1.5614024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV8 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4812371544, - "lat": 50.8082479, - "lon": -2.4807570, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 52", - "ref:GB:uprn": "10015386468", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4812400029, - "lat": 51.2145124, - "lon": -0.7899125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU9 139D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4813429448, - "lat": 51.4455152, - "lon": -3.1776358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF64 311D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4813552512, - "lat": 57.5139268, - "lon": -2.1946675, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB53 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4813591924, - "lat": 57.5137034, - "lon": -2.1899945, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB53 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4813597333, - "lat": 57.5119513, - "lon": -2.1930128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB53 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4813981622, - "lat": 51.3254602, - "lon": -0.7067196, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4813981623, - "lat": 51.3224793, - "lon": -0.7210569, - "tags": { - "amenity": "post_box", - "mapillary": "179119437440634", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2019-10-12" - } -}, -{ - "type": "node", - "id": 4813996722, - "lat": 51.3296955, - "lon": -0.7020943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4815411003, - "lat": 51.6019460, - "lon": -3.9971126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4816312691, - "lat": 50.9818916, - "lon": -3.2211524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA21 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4816433528, - "lat": 55.8682416, - "lon": -4.2531705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G4 175", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816460656, - "lat": 56.4752391, - "lon": -3.0353254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 259D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816460666, - "lat": 56.4770012, - "lon": -3.0261203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 139D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4816460667, - "lat": 56.4752452, - "lon": -3.0185513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD2 45D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816489160, - "lat": 56.4735004, - "lon": -3.0374414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 267", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816489188, - "lat": 56.4752263, - "lon": -3.0415136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 152D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816546855, - "lat": 56.4698212, - "lon": -3.0533906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD2 64D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816546860, - "lat": 56.4723752, - "lon": -3.0470230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 270D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4816546861, - "lat": 56.4711839, - "lon": -3.0425489, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2020-02-25", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "manufacturer": "Broadwater Mouldings Limited", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:material": "plastic", - "post_box:type": "pillar", - "ref": "DD2 999", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4816552457, - "lat": 56.4626568, - "lon": -3.0547766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "DD2 68P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4816552458, - "lat": 56.4626498, - "lon": -3.0547933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 69", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4816610597, - "lat": 56.4235791, - "lon": -3.2224787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 22D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4816765974, - "lat": 55.6823621, - "lon": -4.5160304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KA3 36", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4819716357, - "lat": 55.0223668, - "lon": -1.4239150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE30 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4819716358, - "lat": 55.0199727, - "lon": -1.4584627, - "tags": { - "amenity": "post_box", - "ref": "NE30 705" - } -}, -{ - "type": "node", - "id": 4819832205, - "lat": 55.0395399, - "lon": -1.4329542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4822418236, - "lat": 55.0426336, - "lon": -1.4435537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE26 151" - } -}, -{ - "type": "node", - "id": 4822466907, - "lat": 55.0429842, - "lon": -1.4412926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE26 224", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4824662173, - "lat": 52.7510116, - "lon": 0.4718795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 275" - } -}, -{ - "type": "node", - "id": 4825095730, - "lat": 51.1417346, - "lon": -3.0681387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4825124275, - "lat": 58.2249569, - "lon": -6.9568269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 163", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4825175152, - "lat": 58.2053065, - "lon": -6.9616145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 160", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4825567201, - "lat": 52.0464052, - "lon": -1.6923831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL56 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4825567202, - "lat": 52.0444731, - "lon": -1.6785361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL56 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4825573946, - "lat": 52.0095380, - "lon": -1.6388120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV36 127", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4825573947, - "lat": 52.0153826, - "lon": -1.6183141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "note": "plate broken. no ref number 09/03/19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4825579422, - "lat": 51.6666191, - "lon": -0.3926240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 15:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WD24 1001" - } -}, -{ - "type": "node", - "id": 4826504267, - "lat": 51.0051163, - "lon": 0.2199710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826504268, - "lat": 50.9940277, - "lon": 0.2132424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN20 115", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4826504269, - "lat": 51.0007539, - "lon": 0.2188376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826550099, - "lat": 51.0179622, - "lon": 0.2540075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826550100, - "lat": 51.0147941, - "lon": 0.2453053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN20 271D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4826550101, - "lat": 51.0153680, - "lon": 0.2265419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826550102, - "lat": 51.0096066, - "lon": 0.2311188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826607218, - "lat": 51.0204454, - "lon": 0.2605569, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN20 187", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4826731972, - "lat": 51.0264073, - "lon": 0.2762736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN20 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826731973, - "lat": 51.0305861, - "lon": 0.2475420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826731974, - "lat": 51.0192904, - "lon": 0.2774490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN20 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4826834561, - "lat": 52.7698376, - "lon": 1.1663135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4827454461, - "lat": 51.2028609, - "lon": -0.7542974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU9 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4827911949, - "lat": 51.1746365, - "lon": -0.9190333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4828457389, - "lat": 53.5651156, - "lon": -1.1540539, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DN5 161", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4828473523, - "lat": 52.1561628, - "lon": -4.4404692, - "tags": { - "amenity": "post_box", - "name": "Ivy House" - } -}, -{ - "type": "node", - "id": 4828727949, - "lat": 52.6475627, - "lon": 1.7318609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4828915105, - "lat": 51.0140025, - "lon": 0.1981127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN20 125", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4829003809, - "lat": 52.6959881, - "lon": 1.7052578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR29 2928", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4829072124, - "lat": 50.7839183, - "lon": -0.6787758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-05-25", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4829073943, - "lat": 50.8093341, - "lon": -0.5511953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "BN17 1493", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN17 1493D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4829077252, - "lat": 50.8130539, - "lon": -0.5550030, - "tags": { - "amenity": "post_box", - "collection_plate": "CPMET-LC-NS", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN17 1891" - } -}, -{ - "type": "node", - "id": 4829080514, - "lat": 50.8130946, - "lon": -0.5549802, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4829086960, - "lat": 50.7840887, - "lon": -0.6807714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4829088602, - "lat": 50.7861881, - "lon": -0.6831197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4829089690, - "lat": 50.7884705, - "lon": -0.6802095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4829090692, - "lat": 50.7946685, - "lon": -0.6807835, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4829091215, - "lat": 50.7927357, - "lon": -0.6817638, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4829521106, - "lat": 52.0715730, - "lon": -1.2729583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX17 1920", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829538076, - "lat": 52.0721161, - "lon": -1.2449523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX17 1074", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829547046, - "lat": 52.0229462, - "lon": -1.1515707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "NN13 1142", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829561516, - "lat": 56.0440470, - "lon": -3.8603596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK5 75", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829562721, - "lat": 56.0237585, - "lon": -3.8371742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK5 127D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829598756, - "lat": 51.9797912, - "lon": -1.2447706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX27 618D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829663202, - "lat": 51.9822756, - "lon": -1.3278401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX15 741D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829678925, - "lat": 52.0125406, - "lon": -1.3442130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX15 1018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4829685370, - "lat": 51.2222332, - "lon": -0.7765957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "note": "double postbox with 2 references", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GU9 95;GU9 9501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4830825472, - "lat": 51.9835786, - "lon": -1.7683807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL56 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4830943465, - "lat": 55.0417250, - "lon": -1.4503033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 56" - } -}, -{ - "type": "node", - "id": 4830943485, - "lat": 55.0416281, - "lon": -1.4542769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE26 418", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4831101421, - "lat": 50.9177619, - "lon": -4.3443098, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 77", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4831175491, - "lat": 56.4656105, - "lon": -2.9684478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DD1 15D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4831175492, - "lat": 56.4667335, - "lon": -2.9644354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "note": "GVR box with modern cipherless door. Says it is DD3 but is in DD1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD3 59D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4831181478, - "lat": 51.2000772, - "lon": 0.0671408, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TN8 223", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4831296487, - "lat": 51.3740266, - "lon": -2.3666430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "325144063467128", - "name": "Bear Flat", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA2 1006", - "royal_cypher": "GVIR", - "survey:date": "2023-10-22" - } -}, -{ - "type": "node", - "id": 4831625350, - "lat": 53.2552091, - "lon": -1.1848311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S80 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4831883772, - "lat": 54.0634761, - "lon": -2.8813386, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA3 65D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4832287827, - "lat": 54.0749596, - "lon": -0.8806768, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-08", - "collection_times": "Mo-Fr 16:25; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO60 165", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4832359137, - "lat": 55.0446738, - "lon": -1.4514280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4832383638, - "lat": 55.0436595, - "lon": -1.4580455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 204", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4832417551, - "lat": 55.0470627, - "lon": -1.4540944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4832423399, - "lat": 55.0520164, - "lon": -1.4595286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 57", - "ref:GB:uprn": "10015836519" - } -}, -{ - "type": "node", - "id": 4832548003, - "lat": 55.0519077, - "lon": -1.4514932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4832549254, - "lat": 55.0488350, - "lon": -1.4500750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE26 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4832549256, - "lat": 55.0493625, - "lon": -1.4529026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 411", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4832736039, - "lat": 53.4602996, - "lon": -2.0136054, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SK14 146", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4832737564, - "lat": 55.0522587, - "lon": -1.4667123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE26 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4832737582, - "lat": 55.0542232, - "lon": -1.4623815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4832752043, - "lat": 51.4892950, - "lon": -0.0812040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE17 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4832762488, - "lat": 51.4895631, - "lon": -0.0857855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4832786004, - "lat": 51.4840232, - "lon": -0.0990182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE17 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4832802083, - "lat": 55.0549061, - "lon": -1.4531876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 589", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4832907653, - "lat": 50.7691610, - "lon": 0.2759800, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN21 799", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4832937343, - "lat": 56.4342550, - "lon": -2.9509183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DD6 124D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4832949071, - "lat": 50.2595696, - "lon": -5.0558511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR1 129D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 4832994942, - "lat": 55.0360657, - "lon": -1.4421038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE25 604", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4832994943, - "lat": 55.0385258, - "lon": -1.4452952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "NE25 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4832994944, - "lat": 55.0389731, - "lon": -1.4415062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 280", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4833001879, - "lat": 55.0329915, - "lon": -1.4594276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 381", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4833398925, - "lat": 50.8790887, - "lon": -4.4258973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 48", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4833410873, - "lat": 50.8969043, - "lon": -4.3743371, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4833414422, - "lat": 50.7456194, - "lon": -4.3652766, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4833471204, - "lat": 50.7579754, - "lon": -2.1375130, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH20 110", - "ref:GB:uprn": "10015391826", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4834378631, - "lat": 55.0398669, - "lon": -1.4520815, - "tags": { - "amenity": "post_box", - "ref": "NE25 688" - } -}, -{ - "type": "node", - "id": 4834378635, - "lat": 55.0353778, - "lon": -1.4565970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4834378642, - "lat": 55.0361011, - "lon": -1.4623401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 550", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4834378643, - "lat": 55.0393793, - "lon": -1.4583678, - "tags": { - "amenity": "post_box", - "ref": "NE25 388" - } -}, -{ - "type": "node", - "id": 4834378711, - "lat": 55.0410506, - "lon": -1.4600703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "fixme": "cannot be GVIIR, more likely EVIIR or GVIR", - "post_box:type": "pillar", - "ref": "NE25 265", - "royal_cypher": "GVIIR" - } -}, -{ - "type": "node", - "id": 4834378732, - "lat": 55.0413696, - "lon": -1.4615696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "NE25 600;NE25 1600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4834765226, - "lat": 55.0424457, - "lon": -1.4661721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE25 320" - } -}, -{ - "type": "node", - "id": 4834765227, - "lat": 55.0399964, - "lon": -1.4703633, - "tags": { - "amenity": "post_box", - "ref": "NE25 608" - } -}, -{ - "type": "node", - "id": 4834765230, - "lat": 55.0390614, - "lon": -1.4740358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE25 1409;NE25 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4834916874, - "lat": 55.0344266, - "lon": -1.4666310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4834916875, - "lat": 55.0371634, - "lon": -1.4709125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 628" - } -}, -{ - "type": "node", - "id": 4834916918, - "lat": 55.0377658, - "lon": -1.4769067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE25 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4835659730, - "lat": 51.8912061, - "lon": -1.1593364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "OX26 232" - } -}, -{ - "type": "node", - "id": 4836287097, - "lat": 52.7467718, - "lon": -1.9031378, - "tags": { - "amenity": "post_box", - "ref": "WS15 85" - } -}, -{ - "type": "node", - "id": 4836412228, - "lat": 55.0397194, - "lon": -1.4820347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 540", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4836412235, - "lat": 55.0401959, - "lon": -1.4871285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE25 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4836412329, - "lat": 55.0436418, - "lon": -1.4902863, - "tags": { - "amenity": "post_box", - "ref": "NE25 416" - } -}, -{ - "type": "node", - "id": 4836412461, - "lat": 55.0456295, - "lon": -1.4991527, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE25 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4836560126, - "lat": 52.8373830, - "lon": 1.5084824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2024-04-26", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-06-16" - } -}, -{ - "type": "node", - "id": 4836566583, - "lat": 51.6332190, - "lon": -0.1823822, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4836952569, - "lat": 51.8125713, - "lon": -1.7021515, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX18 420", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4836982434, - "lat": 51.6852743, - "lon": -1.3721173, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX13 1008", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4837079947, - "lat": 51.8039185, - "lon": -1.6055598, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX18 427", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4837085888, - "lat": 51.6668358, - "lon": -1.2832561, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX14 1023D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4837132212, - "lat": 55.0525989, - "lon": -1.6259258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE13 310D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4837221557, - "lat": 52.7649160, - "lon": -1.9315375, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "WS15 618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4837551284, - "lat": 51.4846511, - "lon": -0.2844863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "TW9 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4837670082, - "lat": 53.9531285, - "lon": -2.0213689, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4837708920, - "lat": 51.4910029, - "lon": -0.2681138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W4 41D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 4837708921, - "lat": 51.4963689, - "lon": -0.2542333, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "W4 53D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4837745143, - "lat": 54.2255601, - "lon": -0.3479927, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO11 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4837768677, - "lat": 54.1850153, - "lon": -0.3209877, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4837774236, - "lat": 54.1912441, - "lon": -0.2990960, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4838153848, - "lat": 51.8064838, - "lon": -2.2885415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838164587, - "lat": 51.7942673, - "lon": -2.2883699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "ref", - "mapillary": "852223239079260", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-07-24" - } -}, -{ - "type": "node", - "id": 4838189856, - "lat": 51.8436929, - "lon": -2.2371511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "fixme": "ref", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4838497360, - "lat": 53.2049390, - "lon": -3.0288528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH5 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838497361, - "lat": 53.2466817, - "lon": -3.1413831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH6 169" - } -}, -{ - "type": "node", - "id": 4838613056, - "lat": 52.0667215, - "lon": -2.7085495, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HR1 140", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4838662358, - "lat": 51.9286444, - "lon": -2.6113561, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR9 502", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4838671775, - "lat": 51.9532402, - "lon": -2.5858455, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR9 520", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4838719108, - "lat": 52.3543387, - "lon": -1.3339221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838784767, - "lat": 52.3911933, - "lon": -1.3369987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838784768, - "lat": 52.3911588, - "lon": -1.3121534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838784771, - "lat": 52.3901991, - "lon": -1.2815003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV21 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838818966, - "lat": 52.3774835, - "lon": -1.3108199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838818967, - "lat": 52.3802154, - "lon": -1.3056183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838818971, - "lat": 52.3790491, - "lon": -1.2968164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838818972, - "lat": 52.3761828, - "lon": -1.2947283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838832119, - "lat": 52.3257309, - "lon": -1.3482997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CV23 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838834821, - "lat": 52.3298424, - "lon": -1.3753013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838834822, - "lat": 52.3121060, - "lon": -1.3675725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838845264, - "lat": 52.3159041, - "lon": -1.4038828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838845265, - "lat": 52.3321380, - "lon": -1.4113546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838845270, - "lat": 52.3332227, - "lon": -1.4157358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 66D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4838860994, - "lat": 51.6918710, - "lon": -3.2377548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Heolddu Grove Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF81 352" - } -}, -{ - "type": "node", - "id": 4838948114, - "lat": 50.8448568, - "lon": -0.2486559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4838964409, - "lat": 50.8031917, - "lon": -0.6993054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4839177772, - "lat": 51.5787232, - "lon": 0.6005490, - "tags": { - "amenity": "post_box", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "SS6 410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839428776, - "lat": 50.8001689, - "lon": -0.6939358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4839429059, - "lat": 50.7962816, - "lon": -0.6948048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839429551, - "lat": 50.7972615, - "lon": -0.6907037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4839434307, - "lat": 50.7994789, - "lon": -0.6899634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839437028, - "lat": 50.8001791, - "lon": -0.6760508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839441128, - "lat": 50.8037847, - "lon": -0.6872168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839441373, - "lat": 50.8025710, - "lon": -0.6819195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839443860, - "lat": 50.7973446, - "lon": -0.6721348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839451152, - "lat": 50.7969733, - "lon": -0.6696510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "indoor": "yes so postbox can only be used during Tesco store opening times.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839453945, - "lat": 50.7961998, - "lon": -0.6673161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839454010, - "lat": 50.7938510, - "lon": -0.6712698, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4839455124, - "lat": 50.7910254, - "lon": -0.6714181, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839459956, - "lat": 50.7898457, - "lon": -0.6728634, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839460293, - "lat": 50.7865991, - "lon": -0.6741673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4839476646, - "lat": 50.9179744, - "lon": -0.4523555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH20 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4839692745, - "lat": 50.8696274, - "lon": -4.3067078, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 152", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4839952527, - "lat": 50.8839304, - "lon": -4.2828631, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX22 156", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4839973555, - "lat": 52.9101836, - "lon": -0.6422490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "colour": "yellow", - "inscription": "Presented to the town of Grantham from it's twin town of Sankt Augustin West Germany", - "photograph": "http://www.geograph.org.uk/photo/5286767", - "post_box:design": "german_pillar", - "post_box:type": "pillar", - "ref": "NG31 154", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4840107729, - "lat": 50.9637907, - "lon": 0.2927884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840107730, - "lat": 50.9514668, - "lon": 0.3424875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840107732, - "lat": 50.9166727, - "lon": 0.4624526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840107735, - "lat": 50.9572318, - "lon": 0.3274669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840107740, - "lat": 50.9610039, - "lon": 0.3030338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840107741, - "lat": 50.9501906, - "lon": 0.3663813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840107743, - "lat": 50.9190821, - "lon": 0.4791060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4840157788, - "lat": 50.9554447, - "lon": -0.4488050, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH20 71" - } -}, -{ - "type": "node", - "id": 4840271556, - "lat": 51.3551029, - "lon": -2.9696233, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4840689158, - "lat": 51.7317383, - "lon": -3.2980435, - "tags": { - "amenity": "post_box", - "name": "White Horse Mail Box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 4841197569, - "lat": 55.0473765, - "lon": -1.4573246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE26 408", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4841231846, - "lat": 55.0451073, - "lon": -1.4772637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 648" - } -}, -{ - "type": "node", - "id": 4841231886, - "lat": 55.0431396, - "lon": -1.4740758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE25 649" - } -}, -{ - "type": "node", - "id": 4841261055, - "lat": 55.0438314, - "lon": -1.4672922, - "tags": { - "amenity": "post_box", - "ref": "NE25 410" - } -}, -{ - "type": "node", - "id": 4841261056, - "lat": 55.0469037, - "lon": -1.4788643, - "tags": { - "amenity": "post_box", - "ref": "NE25 683" - } -}, -{ - "type": "node", - "id": 4841261094, - "lat": 55.0496146, - "lon": -1.4698105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE25 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4841261095, - "lat": 55.0499219, - "lon": -1.4763096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE25 682" - } -}, -{ - "type": "node", - "id": 4842195642, - "lat": 52.7596033, - "lon": -1.9358213, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WS15 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4842462221, - "lat": 55.8302321, - "lon": -4.0722593, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4842462255, - "lat": 55.8257550, - "lon": -4.0593443, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4842462256, - "lat": 55.8317726, - "lon": -4.0575329, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4842462291, - "lat": 55.8339957, - "lon": -4.0493641, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4842603604, - "lat": 54.2225011, - "lon": -2.7142856, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 87", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4842603624, - "lat": 54.2437217, - "lon": -2.7414409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 235" - } -}, -{ - "type": "node", - "id": 4842751925, - "lat": 50.8840996, - "lon": -4.2960621, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 163", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4842756741, - "lat": 50.8424939, - "lon": -4.2456099, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX22 161", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4842760013, - "lat": 51.4990540, - "lon": -0.1645912, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron company Stirlingshire", - "post_box:type": "pillar", - "ref": "SW3 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4842762749, - "lat": 51.4863519, - "lon": -0.1694428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SW3 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4842776305, - "lat": 51.4848077, - "lon": -0.1691369, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "post_box:type": "pillar", - "ref": "SW3 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4842781351, - "lat": 52.6999274, - "lon": 0.3868200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE34 120", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4843539456, - "lat": 52.8552528, - "lon": 0.7368122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4843588633, - "lat": 52.9014568, - "lon": 0.6853415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE31 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4844208237, - "lat": 50.9734411, - "lon": 0.2234211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN21 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4844247146, - "lat": 51.1856204, - "lon": -0.0474712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH7 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4845307421, - "lat": 55.1704234, - "lon": -1.6898598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "wall", - "ref": "NE61 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4846000373, - "lat": 50.5778566, - "lon": -3.4762301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 410D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4846347038, - "lat": 51.6238543, - "lon": -0.0487736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4846383739, - "lat": 56.7809182, - "lon": -2.6452421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD9 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4846648966, - "lat": 53.7435018, - "lon": -1.5995970, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-12-18", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS27 869", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4846648972, - "lat": 53.7521810, - "lon": -1.6014585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "LS27 765", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4847645767, - "lat": 54.5785074, - "lon": -5.9128681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4849596625, - "lat": 57.1370512, - "lon": -2.1016005, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 7RZ", - "addr:street": "Marine Place", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB11 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4849603770, - "lat": 57.1369500, - "lon": -2.1060724, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 6UB", - "addr:street": "Fonthill Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 84D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4851145767, - "lat": 50.9637998, - "lon": 0.2058492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4851145768, - "lat": 50.9433736, - "lon": 0.1865896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4851145769, - "lat": 50.9533346, - "lon": 0.2025883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN21 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4851145770, - "lat": 50.9421473, - "lon": 0.2027754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4851145771, - "lat": 50.9595240, - "lon": 0.2012128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4851145772, - "lat": 50.9437064, - "lon": 0.2208834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4851238067, - "lat": 50.9562790, - "lon": 0.2341639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4851238069, - "lat": 50.9339403, - "lon": 0.2433214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4851238075, - "lat": 50.9448299, - "lon": 0.2380982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4851238084, - "lat": 50.9380369, - "lon": 0.2384545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4851643741, - "lat": 53.3194858, - "lon": -3.2718883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH8 69" - } -}, -{ - "type": "node", - "id": 4851779308, - "lat": 50.3839520, - "lon": -4.1128080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "639917040862446", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL3 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-23" - } -}, -{ - "type": "node", - "id": 4852090240, - "lat": 52.2012919, - "lon": -1.3119679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV23 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4852090242, - "lat": 52.1999382, - "lon": -1.3071655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4852114073, - "lat": 52.2724999, - "lon": -1.2453170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 101D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4852114074, - "lat": 52.2588297, - "lon": -1.2816782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4852629719, - "lat": 51.9695582, - "lon": 1.2493518, - "tags": { - "amenity": "post_box", - "ref": "IP9 1380" - } -}, -{ - "type": "node", - "id": 4853348992, - "lat": 51.6788983, - "lon": -0.9858729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "ref": "OX9 525", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4854106678, - "lat": 50.9734700, - "lon": 0.2607317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4855405739, - "lat": 51.4684671, - "lon": -0.9620912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG4 429D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4855832992, - "lat": 50.8508650, - "lon": 0.4755919, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:place": "Bexhill Hospital, Holliers Hill", - "amenity": "post_box", - "description": "Non-standard pillar box (NSPB); wooden with no royal cipher", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "TN40 51", - "royal_cypher": "no", - "wikimedia_commons": "File:PB Bexhill Hospital TN4051.jpg" - } -}, -{ - "type": "node", - "id": 4856370708, - "lat": 57.8817399, - "lon": -4.0368209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co. Ltd. London", - "post_box:type": "wall", - "ref": "IV25 298D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4856374941, - "lat": 56.7295056, - "lon": -2.6923786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD9 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4856374950, - "lat": 56.7335884, - "lon": -2.6593310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD9 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4856374956, - "lat": 56.7497582, - "lon": -2.6455513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD9 75", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4856395074, - "lat": 57.9099239, - "lon": -4.0027033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV25 293", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4856441105, - "lat": 57.9788651, - "lon": -3.9708929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW10 74", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4856525387, - "lat": 51.9581198, - "lon": -3.9699347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA19 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4856525388, - "lat": 51.9759135, - "lon": -3.9880286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:15", - "post_box:type": "wall", - "ref": "SA19 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4856525389, - "lat": 52.0215220, - "lon": -3.9582038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:15; Su 11:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4856525390, - "lat": 52.0341592, - "lon": -3.9598361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA19 376D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4856525391, - "lat": 52.0469151, - "lon": -3.9606637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA19 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4857829621, - "lat": 54.1678973, - "lon": -2.8268510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA5 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4858193655, - "lat": 57.1372445, - "lon": -2.0691878, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 8RX", - "addr:street": "North Balnagask Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 51" - } -}, -{ - "type": "node", - "id": 4858622664, - "lat": 58.0236674, - "lon": -4.3988171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4858670653, - "lat": 52.3301894, - "lon": -2.2980551, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4859724608, - "lat": 57.1426486, - "lon": -2.0925566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4859739625, - "lat": 57.1376768, - "lon": -2.0880847, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-28", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 188", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4860700096, - "lat": 50.8161415, - "lon": -1.3667854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SO45 566D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4860782363, - "lat": 52.2836984, - "lon": -2.9945988, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4860788388, - "lat": 57.0960761, - "lon": -2.0942421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 626" - } -}, -{ - "type": "node", - "id": 4860789784, - "lat": 57.0965310, - "lon": -2.0897595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 625D" - } -}, -{ - "type": "node", - "id": 4861522502, - "lat": 51.7151763, - "lon": -0.4416641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD4 138" - } -}, -{ - "type": "node", - "id": 4862019022, - "lat": 51.4663508, - "lon": -0.9544214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG4 361D" - } -}, -{ - "type": "node", - "id": 4862189414, - "lat": 51.1669928, - "lon": 0.6298703, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN27 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-01-05" - } -}, -{ - "type": "node", - "id": 4864868472, - "lat": 51.5678365, - "lon": 0.5069907, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SS13 505" - } -}, -{ - "type": "node", - "id": 4865706334, - "lat": 50.9558309, - "lon": 0.2229016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "post_box:type": "wall", - "ref": "TN21 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4865706335, - "lat": 50.9727882, - "lon": 0.2019466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865706336, - "lat": 50.9280799, - "lon": 0.2393076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865706337, - "lat": 50.9653066, - "lon": 0.2226664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4865706338, - "lat": 50.9490357, - "lon": 0.2280486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4865735786, - "lat": 50.9316870, - "lon": 0.2451279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865735787, - "lat": 50.9213912, - "lon": 0.2287746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865735788, - "lat": 50.9166161, - "lon": 0.2422354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865735790, - "lat": 50.9092859, - "lon": 0.2254200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865782281, - "lat": 50.9389666, - "lon": 0.2985093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4865887011, - "lat": 50.9369535, - "lon": 0.3533892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865887012, - "lat": 50.9414110, - "lon": 0.3138500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4865887014, - "lat": 50.9280702, - "lon": 0.3052040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4866702993, - "lat": 52.9521900, - "lon": 0.9247680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR23 2319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-16" - } -}, -{ - "type": "node", - "id": 4866730521, - "lat": 57.1152547, - "lon": -2.1782852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "AB15 399D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4866950847, - "lat": 52.5909830, - "lon": -3.8470398, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY20 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4867734029, - "lat": 50.9734020, - "lon": 0.2494918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4867734033, - "lat": 50.9714652, - "lon": 0.2512907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 6311" - } -}, -{ - "type": "node", - "id": 4867734036, - "lat": 50.9684617, - "lon": 0.2546833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 57D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4867806335, - "lat": 53.3144695, - "lon": 0.0046091, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4867982531, - "lat": 52.1795645, - "lon": -4.2154901, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4868030137, - "lat": 50.8160724, - "lon": -0.0638983, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN2 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4868030138, - "lat": 50.8323534, - "lon": -0.0742094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4869791558, - "lat": 57.1409403, - "lon": -2.0944560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB11 110D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4870414450, - "lat": 56.1214017, - "lon": -3.7799809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK10 20D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4870653204, - "lat": 56.2217471, - "lon": -3.6266846, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-01-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "FK14 91D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4870680949, - "lat": 56.2913462, - "lon": -3.7209831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 47D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4870698987, - "lat": 56.3734343, - "lon": -3.8467298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 21D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4871560480, - "lat": 52.7809633, - "lon": 1.1252977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4872038746, - "lat": 57.1366108, - "lon": -2.0797201, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 9NR", - "addr:street": "Victoria Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 99D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4872225353, - "lat": 52.6248925, - "lon": -1.6854815, - "tags": { - "amenity": "post_box", - "ref": "B77 396" - } -}, -{ - "type": "node", - "id": 4872622785, - "lat": 57.1384041, - "lon": -2.0750821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB11 118D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4873045955, - "lat": 57.1178005, - "lon": -2.0891578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 255D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4874053372, - "lat": 50.6731281, - "lon": -4.1038983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX20 33" - } -}, -{ - "type": "node", - "id": 4874077715, - "lat": 50.6928528, - "lon": -4.0776338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 4874675090, - "lat": 57.1353074, - "lon": -2.0719390, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB11 8SB", - "addr:street": "Balnagask Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 518", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4874877622, - "lat": 56.6220490, - "lon": -3.9271058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "PH15 56", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4874990920, - "lat": 56.6938354, - "lon": -2.7784127, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4876141532, - "lat": 50.7350563, - "lon": -3.5438734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "EX4 512D" - } -}, -{ - "type": "node", - "id": 4876526282, - "lat": 57.4785835, - "lon": -4.1483057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV2 347D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4876624783, - "lat": 57.4988872, - "lon": -4.1202205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV2 317", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4876628263, - "lat": 57.4834667, - "lon": -4.0767449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 362D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4876628264, - "lat": 57.4843846, - "lon": -4.0683302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 62", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4878993452, - "lat": 57.1355860, - "lon": -2.0848109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB11 507D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4879701774, - "lat": 50.9600846, - "lon": 0.3186237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879701777, - "lat": 50.9664289, - "lon": 0.2833821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879701778, - "lat": 50.9477462, - "lon": 0.3587099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879701781, - "lat": 50.9603821, - "lon": 0.3079176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811864, - "lat": 50.9447208, - "lon": 0.2503792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811865, - "lat": 50.9596407, - "lon": 0.2742872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811867, - "lat": 50.9405681, - "lon": 0.2894274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811868, - "lat": 50.9412433, - "lon": 0.3657067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811869, - "lat": 50.9742971, - "lon": 0.2736959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811870, - "lat": 50.9769773, - "lon": 0.2834971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN21 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811871, - "lat": 50.9380599, - "lon": 0.2669351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811872, - "lat": 50.9475385, - "lon": 0.2922419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811874, - "lat": 50.9525337, - "lon": 0.3037894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811875, - "lat": 50.9894656, - "lon": 0.2869141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN21 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811876, - "lat": 50.9350384, - "lon": 0.2515091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811877, - "lat": 50.9474201, - "lon": 0.2739787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879811880, - "lat": 50.9792273, - "lon": 0.2819767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 22D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4879828534, - "lat": 52.9657330, - "lon": 0.6838144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4879890365, - "lat": 52.9598878, - "lon": 0.5792029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE36 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-16" - } -}, -{ - "type": "node", - "id": 4879893302, - "lat": 50.9926514, - "lon": 0.3150670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN21 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4879893303, - "lat": 50.9826290, - "lon": 0.3069775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4880311006, - "lat": 51.5828301, - "lon": -4.1014335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "SA3 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4880387548, - "lat": 52.2439527, - "lon": -1.3218939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV47 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4880421708, - "lat": 52.2525506, - "lon": -1.3221101, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "222168566336964", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV23 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/southam-road-cv47-8nj/00000CV237" - } -}, -{ - "type": "node", - "id": 4880444334, - "lat": 52.2761867, - "lon": -1.3457671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/napton-road-cv47-8jy/0000CV2329" - } -}, -{ - "type": "node", - "id": 4880444344, - "lat": 52.2777454, - "lon": -1.3731215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/blue-lias-ph-cv47-8jy/0000CV2310" - } -}, -{ - "type": "node", - "id": 4880499699, - "lat": 50.9654993, - "lon": 0.2482759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4880499700, - "lat": 50.9625723, - "lon": 0.2563618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4880499701, - "lat": 50.9654564, - "lon": 0.2559179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN21 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4880499705, - "lat": 50.9634994, - "lon": 0.2598501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN21 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4880499708, - "lat": 50.9604501, - "lon": 0.2538404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN21 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4880499714, - "lat": 50.9641109, - "lon": 0.2538605, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN21 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4881119048, - "lat": 50.9874274, - "lon": -1.4973634, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4881143131, - "lat": 51.0028193, - "lon": -1.4547875, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4881416321, - "lat": 52.7441514, - "lon": 0.5567816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE32 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4881817780, - "lat": 50.4395830, - "lon": -4.6741736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL22 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4882392122, - "lat": 51.4719398, - "lon": -0.1666759, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SW11 13", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4883395634, - "lat": 51.7352551, - "lon": -0.3470959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL1 258D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4883492233, - "lat": 52.5728016, - "lon": 1.3504731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4884046523, - "lat": 50.9990043, - "lon": -3.0888661, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4884475813, - "lat": 50.7231277, - "lon": -1.9159410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 50", - "ref:GB:uprn": "10015442408", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4885091558, - "lat": 50.9176191, - "lon": -0.5632968, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4885103897, - "lat": 50.9083981, - "lon": -0.5618245, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4885106467, - "lat": 50.9092580, - "lon": -0.5635617, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH20 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4886257388, - "lat": 53.4042171, - "lon": -2.3405104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 87", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4886286561, - "lat": 56.3070198, - "lon": -3.7402732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 50D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 4886448104, - "lat": 52.4337624, - "lon": 1.0847200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:design": "2010_pattern", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP22 7158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4886476722, - "lat": 52.4269605, - "lon": 1.1009179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP22 7070", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4886570462, - "lat": 57.1190493, - "lon": -2.1030946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 196D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4887588569, - "lat": 53.4320390, - "lon": -2.2697338, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4888339921, - "lat": 51.4568820, - "lon": -2.5295263, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4888360087, - "lat": 57.1300698, - "lon": -2.0940879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 627" - } -}, -{ - "type": "node", - "id": 4889472354, - "lat": 52.0629402, - "lon": 1.2384859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP5 1434" - } -}, -{ - "type": "node", - "id": 4889492742, - "lat": 54.3002523, - "lon": -2.7250414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA9 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4889492762, - "lat": 54.3498489, - "lon": -2.7585800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 250" - } -}, -{ - "type": "node", - "id": 4889492764, - "lat": 54.3537644, - "lon": -2.7615951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 98" - } -}, -{ - "type": "node", - "id": 4889492767, - "lat": 54.3549327, - "lon": -2.7590960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA9 264" - } -}, -{ - "type": "node", - "id": 4889492774, - "lat": 54.3449724, - "lon": -2.7768997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 28" - } -}, -{ - "type": "node", - "id": 4889492776, - "lat": 54.3502948, - "lon": -2.8040124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4889492783, - "lat": 54.3487149, - "lon": -2.8256082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 115" - } -}, -{ - "type": "node", - "id": 4890575088, - "lat": 52.1195642, - "lon": 0.0562491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB22 313D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4890699660, - "lat": 51.4472698, - "lon": -2.5221200, - "tags": { - "FIXME": "approximate", - "amenity": "post_box", - "mapillary": "3971765922943245", - "post_box:type": "pillar", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 4891259951, - "lat": 52.5534831, - "lon": -2.0176288, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WS10 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4891259954, - "lat": 52.5523292, - "lon": -2.0182906, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WS10 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4891260005, - "lat": 52.5689317, - "lon": -2.0334738, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WS10 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4891260012, - "lat": 52.5679457, - "lon": -2.0358114, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WS10 628", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4891714808, - "lat": 52.5381786, - "lon": -2.0113537, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B70 23", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4892205082, - "lat": 52.1595021, - "lon": 1.4458850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP12 6239" - } -}, -{ - "type": "node", - "id": 4892898426, - "lat": 51.4438265, - "lon": -2.5217988, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS15 434D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4893411990, - "lat": 55.1389537, - "lon": -1.6824052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE61 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4893416868, - "lat": 55.1706098, - "lon": -1.6873559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "NE61 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4893416869, - "lat": 55.1608273, - "lon": -1.6912555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4893421487, - "lat": 55.1695197, - "lon": -1.6908605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE61 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4893426737, - "lat": 53.4869915, - "lon": -0.9907727, - "tags": { - "amenity": "post_box", - "ref": "DN9 251" - } -}, -{ - "type": "node", - "id": 4893586720, - "lat": 56.4672952, - "lon": -3.0458763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 277D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4893587347, - "lat": 56.4718496, - "lon": -3.0201218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 138D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4894082883, - "lat": 52.3615157, - "lon": -1.2376773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV22 128D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894297582, - "lat": 52.3826969, - "lon": -1.2211621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894297583, - "lat": 52.3833511, - "lon": -1.2004946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894354531, - "lat": 52.3875869, - "lon": -1.1753370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:16; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV23 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894354535, - "lat": 52.3983970, - "lon": -1.1895175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE17 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894354536, - "lat": 52.3986663, - "lon": -1.2211549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894427056, - "lat": 52.3925424, - "lon": -1.2547916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "CV21 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894427063, - "lat": 52.3871634, - "lon": -1.2825280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV21 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894427065, - "lat": 52.3909129, - "lon": -1.4188157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV3 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894427074, - "lat": 52.3946462, - "lon": -1.4231507, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-14", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894501676, - "lat": 51.4428820, - "lon": -2.5144241, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS15 559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4894838537, - "lat": 50.9922654, - "lon": -0.3413124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "last_checked": "2022-05-28", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4894886123, - "lat": 51.8426552, - "lon": -1.3602099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "location": "Set in wall on right-hand side of archway into courtyard", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "OX20 839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895056474, - "lat": 52.8555548, - "lon": 1.0513146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4895447213, - "lat": 50.9933435, - "lon": -0.4051034, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895552483, - "lat": 51.0137576, - "lon": -1.5350006, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 563", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895553100, - "lat": 50.9696851, - "lon": -1.5855634, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895554447, - "lat": 50.9732432, - "lon": -1.5836840, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 585D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895562644, - "lat": 50.9842477, - "lon": -1.5584938, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "description": "This postbox is on the northbound side of Woodington Road set back in the bushes immediately south of the NW-bound track and public footpath.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895588921, - "lat": 51.0170908, - "lon": -1.5447812, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 483D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895990867, - "lat": 51.9129048, - "lon": -4.1087019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA32 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895990873, - "lat": 51.9150299, - "lon": -3.9501523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "note": "Only just visible through hole in fence", - "post_box:type": "lamp", - "ref": "SA19 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895990888, - "lat": 51.9223692, - "lon": -4.0516977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "SA19 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895991236, - "lat": 51.9279879, - "lon": -4.0979606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "post_box:type": "lamp", - "ref": "SA32 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895991255, - "lat": 51.9339740, - "lon": -3.9787568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA19 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4895991266, - "lat": 51.9378978, - "lon": -4.0085395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:type": "wall", - "ref": "SA19 311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4896023173, - "lat": 57.0721529, - "lon": -2.1257727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 364D" - } -}, -{ - "type": "node", - "id": 4896170151, - "lat": 51.5416503, - "lon": -0.0845882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 75;N1 175" - } -}, -{ - "type": "node", - "id": 4897298543, - "lat": 51.0224753, - "lon": -2.5579985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4897503466, - "lat": 54.2748567, - "lon": -2.7905519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 208" - } -}, -{ - "type": "node", - "id": 4897503493, - "lat": 54.2689860, - "lon": -2.7873138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 160" - } -}, -{ - "type": "node", - "id": 4897503510, - "lat": 54.2639558, - "lon": -2.7927284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 216" - } -}, -{ - "type": "node", - "id": 4897503638, - "lat": 54.2619666, - "lon": -2.8109900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4897503716, - "lat": 54.2666903, - "lon": -2.7314986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4897503806, - "lat": 54.2818290, - "lon": -2.6789489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 73" - } -}, -{ - "type": "node", - "id": 4897951384, - "lat": 51.4546592, - "lon": -2.5253903, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS5 1213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4898155357, - "lat": 51.4591203, - "lon": -2.5204359, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS15 292D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4898382590, - "lat": 51.2060658, - "lon": -1.5751813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4898426659, - "lat": 50.9981140, - "lon": -2.4549676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT9 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4898453637, - "lat": 50.8096070, - "lon": -2.7401454, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DT8 73", - "ref:GB:uprn": "10015435689", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4899728339, - "lat": 54.3139245, - "lon": -2.6355648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA8 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4899728386, - "lat": 54.3677304, - "lon": -2.5839775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 35" - } -}, -{ - "type": "node", - "id": 4899728394, - "lat": 54.3710992, - "lon": -2.7295569, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-16", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4899734195, - "lat": 54.3625176, - "lon": -2.7737039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-06-16" - } -}, -{ - "type": "node", - "id": 4899734349, - "lat": 54.3876561, - "lon": -2.8221670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 22", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4900092299, - "lat": 54.4288311, - "lon": -2.8371078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 195" - } -}, -{ - "type": "node", - "id": 4900092315, - "lat": 54.3803549, - "lon": -2.8536102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA8 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4900093265, - "lat": 54.3483395, - "lon": -2.8643020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA8 46" - } -}, -{ - "type": "node", - "id": 4900640206, - "lat": 50.7166325, - "lon": -2.9973561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT7 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4900980756, - "lat": 51.5843763, - "lon": -4.0155865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "description": "Royal Mail Mailbox. Outside Westcross shops.", - "name": "West Cross Mailbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4901521230, - "lat": 54.2990653, - "lon": -2.7988638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 6" - } -}, -{ - "type": "node", - "id": 4901521286, - "lat": 54.3133650, - "lon": -2.8526727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA8 214" - } -}, -{ - "type": "node", - "id": 4901553664, - "lat": 52.1073790, - "lon": -2.7224248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4901985821, - "lat": 57.0557183, - "lon": -2.1403659, - "tags": { - "addr:postcode": "AB12 4UF", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 533D" - } -}, -{ - "type": "node", - "id": 4902387894, - "lat": 51.6945517, - "lon": 0.5853386, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4902669754, - "lat": 51.4194529, - "lon": -0.3044276, - "tags": { - "amenity": "post_box", - "ref": "KT2 114D" - } -}, -{ - "type": "node", - "id": 4902941196, - "lat": 51.1509209, - "lon": -0.9723765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU34 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4903745846, - "lat": 52.6490099, - "lon": 1.4267582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4904100335, - "lat": 52.0067565, - "lon": -2.6141154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR1 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4904100400, - "lat": 52.0088832, - "lon": -2.6183090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HR1 217", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4904469241, - "lat": 51.8163536, - "lon": -2.2772877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "post_box:type": "pillar", - "ref": "GL2 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey + DigitalGlobe-Premium", - "source:ref": "survey" - } -}, -{ - "type": "node", - "id": 4904963207, - "lat": 50.9533787, - "lon": -1.2925988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO50 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4906003022, - "lat": 52.9153153, - "lon": 1.3079390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4906409362, - "lat": 50.7298648, - "lon": -4.6146409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4906654724, - "lat": 51.2397171, - "lon": -2.3878313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907085483, - "lat": 50.8673058, - "lon": 0.2059061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN27 908", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4907085488, - "lat": 50.8913299, - "lon": 0.1839268, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 898", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 4907085493, - "lat": 50.8827483, - "lon": 0.1687650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 895", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168049, - "lat": 50.8631246, - "lon": 0.2125235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 972", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168051, - "lat": 50.8842418, - "lon": 0.2079385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 900D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168052, - "lat": 50.8633428, - "lon": 0.2510927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 932D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168055, - "lat": 50.8660251, - "lon": 0.2541797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN27 920D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168056, - "lat": 50.8657051, - "lon": 0.2494576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 933D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168062, - "lat": 50.8563116, - "lon": 0.2413568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 1102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907168064, - "lat": 50.8745507, - "lon": 0.1731503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 897", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907211994, - "lat": 50.8928321, - "lon": 0.2023603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 899", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907392950, - "lat": 52.9417115, - "lon": 1.1286561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907621120, - "lat": 52.6426965, - "lon": 1.7291604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR30 3042D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4907671842, - "lat": 51.8334531, - "lon": -2.2803740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "GL2 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "DigitalGlobe-Standard" - } -}, -{ - "type": "node", - "id": 4907702598, - "lat": 51.4546136, - "lon": -0.9970374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 85" - } -}, -{ - "type": "node", - "id": 4908155759, - "lat": 51.8337273, - "lon": -2.3194856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 4908155787, - "lat": 51.8350794, - "lon": -2.3085982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 215", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908569079, - "lat": 50.9117595, - "lon": 0.3421329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 947D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4908569085, - "lat": 50.9227833, - "lon": 0.3364467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 946", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4908597993, - "lat": 50.8723133, - "lon": 0.3494733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4908597994, - "lat": 50.8675081, - "lon": 0.3638053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 952", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4908667563, - "lat": 52.6819769, - "lon": 1.7140912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4908830188, - "lat": 55.1616003, - "lon": -1.7079328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "NE61 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908830758, - "lat": 55.1636080, - "lon": -1.6995754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE61 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908830918, - "lat": 55.1604836, - "lon": -1.6992874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "NE61 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908832291, - "lat": 55.1616678, - "lon": -1.6828034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE61 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908833114, - "lat": 55.1594463, - "lon": -1.6786458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 185", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908837090, - "lat": 55.1553088, - "lon": -1.6779926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "NE61 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908837091, - "lat": 55.1570155, - "lon": -1.6820180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "NE61 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4908850594, - "lat": 53.3971092, - "lon": -2.3189917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Two post boxes positioned next to each other", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA15 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4908851238, - "lat": 51.8334503, - "lon": -2.2744991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "post_box:type": "pillar", - "ref": "GL2 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4909700540, - "lat": 51.8892704, - "lon": -2.3554620, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4909718316, - "lat": 51.8649121, - "lon": -2.4586027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "793308326021686", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL17 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 4909718317, - "lat": 51.8629479, - "lon": -2.4352232, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL17 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4909718318, - "lat": 51.8636850, - "lon": -2.4223539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL17 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4910513428, - "lat": 54.3235817, - "lon": -2.5286775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/6820829", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA10 114" - } -}, -{ - "type": "node", - "id": 4910513525, - "lat": 54.3438359, - "lon": -2.5780411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/2772809", - "post_box:type": "wall", - "ref": "LA10 29", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 4910513573, - "lat": 54.3054149, - "lon": -2.5854892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA10 144" - } -}, -{ - "type": "node", - "id": 4910627177, - "lat": 54.2810584, - "lon": -2.4732771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA10 31" - } -}, -{ - "type": "node", - "id": 4910815265, - "lat": 52.3973801, - "lon": 1.3058040, - "tags": { - "amenity": "post_box", - "note": "Collection plate mising 2017-06", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP20 7924", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4910832940, - "lat": 52.3699563, - "lon": 1.3035161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7067", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4911353601, - "lat": 55.9311080, - "lon": -3.8298269, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4911505850, - "lat": 54.4486237, - "lon": -3.0291818, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-19", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA22 154", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4911671652, - "lat": 51.8517651, - "lon": -2.4891595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL17 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4911678811, - "lat": 51.8124392, - "lon": -2.7113603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP25 875D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4911689931, - "lat": 51.8113055, - "lon": -2.7239967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 485D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4911691646, - "lat": 54.2491070, - "lon": -2.7743558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA7 243", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4911691695, - "lat": 54.2322541, - "lon": -2.7729823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA7 246" - } -}, -{ - "type": "node", - "id": 4911693365, - "lat": 54.2465753, - "lon": -2.7161786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA7 234" - } -}, -{ - "type": "node", - "id": 4911693466, - "lat": 54.2470313, - "lon": -2.7511342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA7 238" - } -}, -{ - "type": "node", - "id": 4911696161, - "lat": 51.8273961, - "lon": -2.7500626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "933177540853931", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP25 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-05" - } -}, -{ - "type": "node", - "id": 4911699189, - "lat": 51.8521099, - "lon": -2.8028964, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP25 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4911710628, - "lat": 51.8944500, - "lon": -2.9409637, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4911727187, - "lat": 52.0042684, - "lon": -3.0002070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 654", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4911728854, - "lat": 51.9512909, - "lon": -2.9810205, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HR2 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4911750162, - "lat": 51.9488480, - "lon": -2.7567046, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4912223184, - "lat": 51.4569061, - "lon": -0.2986147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW10 36D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4913293743, - "lat": 54.3764351, - "lon": -2.9029326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-05-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "LA23 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4913293997, - "lat": 54.3806675, - "lon": -2.9069526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA23 96", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4913293998, - "lat": 54.3783448, - "lon": -2.9129850, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "post_box:type": "wall", - "ref": "LA23 83D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4913293999, - "lat": 54.3741149, - "lon": -2.9112166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA23 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4913567602, - "lat": 55.1676235, - "lon": -1.6920226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4913567603, - "lat": 55.1676242, - "lon": -1.6920353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4913567604, - "lat": 55.1675393, - "lon": -1.6900877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4913567605, - "lat": 55.1675400, - "lon": -1.6901004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE61 1210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4913567606, - "lat": 55.1685021, - "lon": -1.6902094, - "tags": { - "amenity": "post_box", - "ref": "NE61 803" - } -}, -{ - "type": "node", - "id": 4913778389, - "lat": 51.9710857, - "lon": -2.5773104, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR1 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4913780344, - "lat": 51.9766849, - "lon": -2.5565059, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR1 450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4913806515, - "lat": 51.9493325, - "lon": -2.2275690, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 321", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4913806516, - "lat": 51.9578934, - "lon": -2.2440290, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4915262781, - "lat": 52.4767566, - "lon": 0.3823878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 94" - } -}, -{ - "type": "node", - "id": 4915297116, - "lat": 51.3751081, - "lon": -0.5249110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "I passed this postbox in October 2021 and this postbox appears to have been removed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT16 172D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4915319672, - "lat": 52.4312036, - "lon": 0.4543977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3234D" - } -}, -{ - "type": "node", - "id": 4915319673, - "lat": 52.4298985, - "lon": 0.4144100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "ref": "CB6 79" - } -}, -{ - "type": "node", - "id": 4915422366, - "lat": 54.4673419, - "lon": -0.6551617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "YO21 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4915562896, - "lat": 50.5082395, - "lon": -5.0222894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "image": "https://archive.org/details/pxl-20210917-124338157/PXL_20210917_100356485.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL28 142D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 4915580943, - "lat": 55.1663232, - "lon": -1.6811925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE61 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4915580945, - "lat": 55.1633346, - "lon": -1.6960915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "NE61 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4915580946, - "lat": 55.1690344, - "lon": -1.6942009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE61 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4915580947, - "lat": 55.1715008, - "lon": -1.6950730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "lamp", - "ref": "NE61 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4915580948, - "lat": 55.1740783, - "lon": -1.7025444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE61 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4915736587, - "lat": 51.1539328, - "lon": -0.9672938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU34 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4915751952, - "lat": 51.9412970, - "lon": -2.3624352, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL18 41", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4915769642, - "lat": 51.8649033, - "lon": -2.4892253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL17 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4916729422, - "lat": 52.0640241, - "lon": 0.1968966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB10 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4917499451, - "lat": 53.3850818, - "lon": -2.2505407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M22 728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4917659687, - "lat": 57.1447110, - "lon": -4.6813642, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH32 110D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4917778848, - "lat": 51.8557854, - "lon": -2.5273921, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL17 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4917778849, - "lat": 51.8557357, - "lon": -2.5160007, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GL17 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4917778850, - "lat": 51.8581207, - "lon": -2.5110909, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL17 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4917782247, - "lat": 51.8557596, - "lon": -2.5541097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1036623811367465", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL17 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 4917782249, - "lat": 51.8566664, - "lon": -2.5485180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1514826529410066", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL17 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-31" - } -}, -{ - "type": "node", - "id": 4917792588, - "lat": 51.7400299, - "lon": -2.5911520, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL15 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4917795937, - "lat": 51.7364355, - "lon": -2.6348599, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL15 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4919338946, - "lat": 51.7026603, - "lon": -2.2887708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL10 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4919358736, - "lat": 53.5017929, - "lon": -0.4282271, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LN7 369", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 4919362597, - "lat": 51.7240203, - "lon": -2.2320736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4919366809, - "lat": 53.4699878, - "lon": -0.4333822, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LN7 580" - } -}, -{ - "type": "node", - "id": 4919386214, - "lat": 53.4744065, - "lon": -0.4299429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LN7 96", - "source": "Dracos" - } -}, -{ - "type": "node", - "id": 4919388604, - "lat": 51.7640962, - "lon": -2.1873343, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL6 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4919512930, - "lat": 52.0932792, - "lon": -1.8324168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR11 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4919763814, - "lat": 58.0894473, - "lon": -6.6222356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 49", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4919784967, - "lat": 58.1061126, - "lon": -6.5295546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 50", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4919814256, - "lat": 51.2408403, - "lon": -0.3241892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH4 87D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4920143502, - "lat": 50.8619278, - "lon": 0.2648817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 921D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920143506, - "lat": 50.8627252, - "lon": 0.2575762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 967", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920143512, - "lat": 50.8624789, - "lon": 0.2603493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 936", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4920169095, - "lat": 57.5898752, - "lon": -6.3551881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "note": "On wall of PO. There is a sticker showing a picture of a VR wall box but this is not a royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV51 22", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4920184245, - "lat": 50.8644695, - "lon": 0.2729043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 922", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920184257, - "lat": 50.8607945, - "lon": 0.2719841, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN27 923", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920210857, - "lat": 50.8587598, - "lon": 0.2621215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 925D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920210859, - "lat": 50.8591233, - "lon": 0.2666639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 924D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920210862, - "lat": 50.8573427, - "lon": 0.2604521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 926", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920487025, - "lat": 58.0916060, - "lon": -6.5128021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 128", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4920487026, - "lat": 58.0840405, - "lon": -6.5293590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 98", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4920510234, - "lat": 58.0904891, - "lon": -6.4785251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 99", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4920510278, - "lat": 58.0182630, - "lon": -6.4362930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:45; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 95", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4920614143, - "lat": 52.7644011, - "lon": 0.4271150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920681948, - "lat": 51.2265436, - "lon": -2.6728079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4920917006, - "lat": 50.6792420, - "lon": -3.3070253, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4921147188, - "lat": 51.5049662, - "lon": -0.4695089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 4921604779, - "lat": 50.8646168, - "lon": 0.2433382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 971", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4921604781, - "lat": 50.8595676, - "lon": 0.2527380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4921651183, - "lat": 50.8573726, - "lon": 0.2568972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN27 927D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4921651187, - "lat": 50.8547674, - "lon": 0.2545608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 1100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4921651195, - "lat": 50.8536767, - "lon": 0.2526157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN27 928D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4921671018, - "lat": 50.8425704, - "lon": 0.2559464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN27 1103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4921671019, - "lat": 50.8556997, - "lon": 0.2470928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN27 930", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4921671921, - "lat": 50.8480390, - "lon": 0.2431006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN27 965D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922022056, - "lat": 52.7759959, - "lon": 0.6603867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922048745, - "lat": 51.2322671, - "lon": -2.3369410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922048746, - "lat": 51.2281296, - "lon": -2.3316336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA11 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922096928, - "lat": 52.7786511, - "lon": 0.5199583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922195369, - "lat": 51.9189340, - "lon": -4.0038465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA19 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922195371, - "lat": 51.9853673, - "lon": -3.8188845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:30", - "post_box:type": "lamp", - "ref": "SA20 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922312708, - "lat": 51.8606453, - "lon": -2.2231428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "ref": "GL1 66", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922421752, - "lat": 51.8583525, - "lon": -2.2328063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4922452269, - "lat": 51.8570387, - "lon": -2.2345729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922478547, - "lat": 51.8353880, - "lon": -2.2525326, - "tags": { - "amenity": "post_box", - "fixme": "ref", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922532565, - "lat": 55.1266486, - "lon": -1.6711930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE61 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922539757, - "lat": 55.1549749, - "lon": -1.6849335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE61 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922544518, - "lat": 55.1789083, - "lon": -1.6440882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE61 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922545877, - "lat": 55.1608878, - "lon": -1.6244967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE62 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922545878, - "lat": 55.1606541, - "lon": -1.6666536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00", - "post_box:type": "meter", - "ref": "NE61 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922548612, - "lat": 55.1732892, - "lon": -1.6255380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922551354, - "lat": 55.1788489, - "lon": -1.6506978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922560279, - "lat": 55.1872560, - "lon": -1.6620094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922560285, - "lat": 55.1810664, - "lon": -1.6447862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE61 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922561196, - "lat": 55.1972241, - "lon": -1.6484508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922733359, - "lat": 51.6629725, - "lon": -4.1613461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA15 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922733374, - "lat": 51.6728614, - "lon": -4.1657207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA15 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4922733376, - "lat": 51.6832673, - "lon": -4.1765902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA15 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922733377, - "lat": 51.6870101, - "lon": -4.1944855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "SA15 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922733378, - "lat": 51.6878266, - "lon": -4.2027728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA15 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4922927592, - "lat": 58.2953742, - "lon": -6.2958324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LH15 Gress", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922960719, - "lat": 58.3424390, - "lon": -6.2130927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "name": "Hill Street Tolsta", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 13", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922961224, - "lat": 58.3490447, - "lon": -6.2124865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "name": "North Tolsta Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922961226, - "lat": 58.3535359, - "lon": -6.2182301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "name": "New Tolsta", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 18", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4922965854, - "lat": 51.4371026, - "lon": -2.4875249, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS30 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4924594776, - "lat": 51.6192049, - "lon": -3.9307929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA1 342" - } -}, -{ - "type": "node", - "id": 4924654854, - "lat": 54.3338486, - "lon": -2.8960128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "LA23 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4924654876, - "lat": 54.2976496, - "lon": -2.9030620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Corner of collection time plate missing so Saturday collection time unknown", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA11 151D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4924676400, - "lat": 54.3645033, - "lon": -2.9208659, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-26", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "wall", - "ref": "LA23 79", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4924859344, - "lat": 51.5723463, - "lon": -4.0935159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA3 379", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4924924530, - "lat": 58.1713463, - "lon": -6.5713312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 60", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925164361, - "lat": 58.1741052, - "lon": -6.6046247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 52", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925164366, - "lat": 58.2012456, - "lon": -6.7447120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 84", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925202735, - "lat": 58.2130585, - "lon": -6.7383565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 31", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925202736, - "lat": 58.2689732, - "lon": -6.7855065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 51", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925202737, - "lat": 58.2753081, - "lon": -6.7809965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 57", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925202738, - "lat": 58.2851607, - "lon": -6.7768981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 53", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925208976, - "lat": 54.3581892, - "lon": -2.8920588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA23 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-16" - } -}, -{ - "type": "node", - "id": 4925208977, - "lat": 54.3685709, - "lon": -2.7831962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA8 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-16" - } -}, -{ - "type": "node", - "id": 4925208983, - "lat": 54.1359289, - "lon": -2.0389053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD23 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-13" - } -}, -{ - "type": "node", - "id": 4925208984, - "lat": 53.9401291, - "lon": -1.8626699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS29 846", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-06-12" - } -}, -{ - "type": "node", - "id": 4925247594, - "lat": 58.3212582, - "lon": -6.6875334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 150", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925247597, - "lat": 58.3280975, - "lon": -6.6710794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 169", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925247598, - "lat": 58.3331635, - "lon": -6.6318089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "note": "unusual to see an EIIR box in Scotland", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4925247603, - "lat": 58.3404257, - "lon": -6.5924675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LH086 Arnol", - "royal_cypher": "scottish_crown", - "source": "survet" - } -}, -{ - "type": "node", - "id": 4925270446, - "lat": 51.3036580, - "lon": -2.4988853, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4925294349, - "lat": 51.3574596, - "lon": -2.5771583, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS39 675", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4925294350, - "lat": 51.3665912, - "lon": -2.5792222, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS39 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4925294351, - "lat": 51.3518290, - "lon": -2.5659117, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS39 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4926213142, - "lat": 58.4150166, - "lon": -6.4402122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 76", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4927391661, - "lat": 57.7383104, - "lon": -6.9624705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "note": "2023-01-22: Post box still there? There had been man construction works here in the past years. 2018: ref not visible on collection plate", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4927497737, - "lat": 51.3835755, - "lon": -2.5723832, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS39 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4927535484, - "lat": 51.1659159, - "lon": -1.2351850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927550348, - "lat": 51.2320809, - "lon": -1.3453721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG28 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927552003, - "lat": 51.2507403, - "lon": -1.3975756, - "tags": { - "amenity": "post_box", - "fixme": "Check precise location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4927577172, - "lat": 51.4853308, - "lon": -1.0860901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "RG8 536D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927583470, - "lat": 51.3068331, - "lon": -1.5111138, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927583471, - "lat": 51.2949977, - "lon": -1.4848253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 86", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4927583476, - "lat": 51.2807379, - "lon": -1.4581101, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP11 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927594561, - "lat": 51.3837730, - "lon": -1.6189628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927594562, - "lat": 51.3791112, - "lon": -1.6002275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927594563, - "lat": 51.3753359, - "lon": -1.5902913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4927602967, - "lat": 51.4053216, - "lon": -2.3216177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BA1 1037", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4928402277, - "lat": 53.1677590, - "lon": -1.0542516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG22 226", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 4928775601, - "lat": 53.7696370, - "lon": -2.7203447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR2 173D" - } -}, -{ - "type": "node", - "id": 4929195922, - "lat": 51.3671057, - "lon": -0.3065746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT9 1341;KT9 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4929286610, - "lat": 53.3096203, - "lon": -4.6334188, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-18", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL65 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4929286611, - "lat": 53.3123257, - "lon": -4.6321126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL65 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-20" - } -}, -{ - "type": "node", - "id": 4929286612, - "lat": 53.3123322, - "lon": -4.6321012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL65 921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-20" - } -}, -{ - "type": "node", - "id": 4929299197, - "lat": 53.2927372, - "lon": -3.8111005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-21" - } -}, -{ - "type": "node", - "id": 4929299198, - "lat": 53.3023074, - "lon": -3.8113754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL30 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-06-21" - } -}, -{ - "type": "node", - "id": 4929299199, - "lat": 53.3132944, - "lon": -3.8138276, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL30 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4929482867, - "lat": 58.1679512, - "lon": -6.9129945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 154", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4929482871, - "lat": 58.2143416, - "lon": -6.9684023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 156", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4929615094, - "lat": 51.4380130, - "lon": -2.4934634, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS30 1070", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4931060542, - "lat": 51.3257560, - "lon": -0.2248723, - "tags": { - "amenity": "post_box", - "ref": "SM7 241" - } -}, -{ - "type": "node", - "id": 4931549081, - "lat": 50.8530040, - "lon": -0.5594313, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 4931549471, - "lat": 50.8547054, - "lon": -0.5597738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1302D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 4931555226, - "lat": 50.8501179, - "lon": -0.5604045, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1301D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4931558787, - "lat": 50.8201177, - "lon": -0.5439246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2020-10-07", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1484", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4933313697, - "lat": 50.8067549, - "lon": 0.2531129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4933364403, - "lat": 57.9008484, - "lon": -6.7697945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS3 109", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4933944748, - "lat": 51.0034930, - "lon": -0.8307386, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU31 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4933952133, - "lat": 51.0159118, - "lon": -0.9244375, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4934016530, - "lat": 52.6096694, - "lon": 0.3229639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4934022001, - "lat": 51.0125533, - "lon": -0.9359113, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is on the grass in front of some shrubbery but people passing this postbox may miss it depending on the direction of travel. This postbox is outside number 11.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU32 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4934022002, - "lat": 51.0107387, - "lon": -0.9268696, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU31 129D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4934034658, - "lat": 51.0097257, - "lon": -0.9394008, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU32 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4934034659, - "lat": 51.0059112, - "lon": -0.9452722, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4934635931, - "lat": 51.4155891, - "lon": -2.4985274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4935036751, - "lat": 52.6647853, - "lon": 0.2510977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE14 209" - } -}, -{ - "type": "node", - "id": 4935098083, - "lat": 57.0555105, - "lon": -2.3750094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 605", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4935112669, - "lat": 52.7457807, - "lon": 0.2513324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4935798922, - "lat": 53.8925032, - "lon": -0.3176961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1105769426580982", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2020-08-15" - } -}, -{ - "type": "node", - "id": 4935962154, - "lat": 51.0869431, - "lon": -3.0177239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936142531, - "lat": 51.0578382, - "lon": -1.3474623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO22 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936150933, - "lat": 51.0693459, - "lon": -1.3371259, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936174465, - "lat": 50.8832424, - "lon": -0.7958262, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936180960, - "lat": 50.9074034, - "lon": -0.7564326, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 4936195028, - "lat": 50.8567077, - "lon": -0.6595163, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936209028, - "lat": 50.8420213, - "lon": -0.6610009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936209030, - "lat": 50.8407705, - "lon": -0.6550571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4936209036, - "lat": 50.8478659, - "lon": -0.6551349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4936837154, - "lat": 52.5792109, - "lon": 1.1362220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR18 1820", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937112316, - "lat": 52.1917837, - "lon": 0.1540548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB1 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4937569294, - "lat": 56.4025874, - "lon": -4.9608877, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4937659311, - "lat": 50.8451537, - "lon": -0.6833759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937667883, - "lat": 50.8420027, - "lon": -0.6651959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937667884, - "lat": 50.8393113, - "lon": -0.6684306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937678786, - "lat": 50.8531239, - "lon": -0.7016927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO18 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937701751, - "lat": 50.8339221, - "lon": -0.7623227, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO19 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937733754, - "lat": 50.8532349, - "lon": -0.8020690, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO19 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937747535, - "lat": 50.8423092, - "lon": -0.8167461, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937747542, - "lat": 50.8409661, - "lon": -0.8134536, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO19 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4937748630, - "lat": 50.8395577, - "lon": -0.8441502, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4938122505, - "lat": 54.2157524, - "lon": -2.8060643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4938948985, - "lat": 50.6909016, - "lon": -4.0989682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "direction": "east", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4941241947, - "lat": 56.1251362, - "lon": -3.9187896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "FK9 64D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4942709367, - "lat": 53.5544915, - "lon": -2.1415908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OL9 141", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4942709371, - "lat": 53.5420147, - "lon": -2.1494618, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4942998294, - "lat": 51.0275752, - "lon": -0.7716314, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU29 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4943639486, - "lat": 52.1864637, - "lon": 0.5972540, - "tags": { - "amenity": "post_box", - "ref": "IP29 2077" - } -}, -{ - "type": "node", - "id": 4944327527, - "lat": 50.3600867, - "lon": -4.0906923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PL9 648;PL9 6480", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 4944402207, - "lat": 50.9719258, - "lon": -3.2268758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4944499485, - "lat": 51.4565601, - "lon": -0.9667177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "wikimedia_commons": "File:Postbox by the entrance - geograph.org.uk - 1982047.jpg" - } -}, -{ - "type": "node", - "id": 4944772227, - "lat": 52.4532749, - "lon": -1.9390695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B15 1248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4944775820, - "lat": 52.4532602, - "lon": -1.9423914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B15 867", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945535430, - "lat": 58.4797096, - "lon": -6.2691905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 67", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945535431, - "lat": 58.4881459, - "lon": -6.2449724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 65", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945535438, - "lat": 58.4741610, - "lon": -6.2815741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 85", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945535439, - "lat": 58.4681837, - "lon": -6.2931627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 63", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606888, - "lat": 58.4417371, - "lon": -6.3768672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 70", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606890, - "lat": 58.4381039, - "lon": -6.3892631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HS2 74", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606892, - "lat": 58.4248160, - "lon": -6.4233610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 72", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606893, - "lat": 58.4036350, - "lon": -6.4614581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 164", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606895, - "lat": 58.3961921, - "lon": -6.4740269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS2 69", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606896, - "lat": 58.3917486, - "lon": -6.4841435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "location": "Ballantrushal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 71", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945606897, - "lat": 58.3581277, - "lon": -6.5129459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "name": "Old Post Office Barvas", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LH075", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4945615673, - "lat": 52.5003438, - "lon": 1.2952763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4945660970, - "lat": 52.5539531, - "lon": 1.3985641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4945868602, - "lat": 51.2041980, - "lon": 0.7853186, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4946148031, - "lat": 55.1498822, - "lon": -1.6023597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE62 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946157215, - "lat": 55.1761528, - "lon": -1.5775506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE63 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946165003, - "lat": 55.1660493, - "lon": -1.5916362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE62 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946169507, - "lat": 55.1622722, - "lon": -1.5651984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE62 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946169508, - "lat": 55.1686078, - "lon": -1.5882620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE62 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946169938, - "lat": 55.1619469, - "lon": -1.5762883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE62 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946174758, - "lat": 55.1784626, - "lon": -1.5739310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE63 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946175059, - "lat": 55.1843580, - "lon": -1.5937002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE63 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946175350, - "lat": 55.1832700, - "lon": -1.5891619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "NE63 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946176602, - "lat": 55.1852163, - "lon": -1.5914619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE63 731D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4946177549, - "lat": 55.1728044, - "lon": -1.5355861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE63 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4947656769, - "lat": 51.9197575, - "lon": -3.7777005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:type": "wall", - "ref": "SA19 234" - } -}, -{ - "type": "node", - "id": 4947656815, - "lat": 51.9504281, - "lon": -3.6319188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "LD3 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4947656947, - "lat": 51.9818991, - "lon": -3.7065990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "wall", - "ref": "SA20 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4947656962, - "lat": 51.9872117, - "lon": -3.7174497, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 4947656972, - "lat": 51.9946158, - "lon": -3.7895841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "SA20 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4947656985, - "lat": 51.9972044, - "lon": -3.7976922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "wall", - "ref": "SA20 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4947656988, - "lat": 51.9979227, - "lon": -3.7935140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA20 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4949501153, - "lat": 52.2914487, - "lon": -1.9457302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949561195, - "lat": 51.5344143, - "lon": -0.1682094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW8 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949776341, - "lat": 54.2721254, - "lon": -2.3967485, - "tags": { - "amenity": "post_box", - "ref": "LA10 59", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949788708, - "lat": 54.2864769, - "lon": -2.1254859, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949788717, - "lat": 54.3009189, - "lon": -2.0706601, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949820549, - "lat": 54.2723685, - "lon": -1.8526872, - "tags": { - "amenity": "post_box", - "ref": "DL8 105", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949820551, - "lat": 54.2691504, - "lon": -1.7820178, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949820553, - "lat": 54.2994596, - "lon": -1.6760324, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4949820556, - "lat": 54.3020594, - "lon": -1.6706490, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4951724146, - "lat": 52.3253688, - "lon": 0.8827714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4951744294, - "lat": 52.3314822, - "lon": 0.8814289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4951780870, - "lat": 51.8270706, - "lon": -2.7784500, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4953157595, - "lat": 54.5894788, - "lon": -1.3934086, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4953597731, - "lat": 55.1369488, - "lon": -1.5761542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "NE22 5PS", - "ref": "NE22 356D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4953597765, - "lat": 55.1278762, - "lon": -1.6003078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "NE22 6JE", - "ref": "NE22 386D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4953740609, - "lat": 51.8318729, - "lon": -2.8521102, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP7 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4953761573, - "lat": 51.8238850, - "lon": -2.9443695, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP7 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4954285287, - "lat": 55.1844392, - "lon": -1.5710315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "NE63 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4954285522, - "lat": 55.1801266, - "lon": -1.5665464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE63 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4954285528, - "lat": 55.1800294, - "lon": -1.5611731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE63 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4954285548, - "lat": 55.1798902, - "lon": -1.5548280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE63 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4954285551, - "lat": 55.1832804, - "lon": -1.5690973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NE63 122;NE63 1122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4954643237, - "lat": 54.0394862, - "lon": -1.0373876, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-12", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "note": "after Strensall post office closed down the pillar box got moved next to Londis by the barrack entrance and the lamp box by the barrack entrance got moved here", - "post_box:type": "lamp", - "ref": "YO32 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4954830822, - "lat": 54.2388349, - "lon": -0.4169315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "indoor": "yes", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "YO11 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4954888538, - "lat": 54.9865755, - "lon": -1.5926766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 204", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4954906534, - "lat": 54.9881839, - "lon": -1.6085132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 79", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4954935483, - "lat": 54.2250221, - "lon": -0.5499966, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4954936078, - "lat": 54.2300851, - "lon": -0.6227185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "YO13 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4954960332, - "lat": 54.2351216, - "lon": -0.6220612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "YO13 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4954983239, - "lat": 54.2350564, - "lon": -0.6805919, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO18 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4954992472, - "lat": 54.2396399, - "lon": -0.5760690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "YO13 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4954999220, - "lat": 54.2337341, - "lon": -0.7276314, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955013205, - "lat": 55.8652168, - "lon": -4.3062435, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "In street scene of Riverside Museum", - "post_box:design": "national_standard", - "post_box:type": "pillar", - "ref": "G3 1D" - } -}, -{ - "type": "node", - "id": 4955048673, - "lat": 50.3845997, - "lon": -4.1338443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL4 66;PL4 6600D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-16" - } -}, -{ - "type": "node", - "id": 4955080604, - "lat": 50.4023937, - "lon": -4.1867073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 23:30", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "PL5 284;PL5 2840", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-18" - } -}, -{ - "type": "node", - "id": 4955087770, - "lat": 54.3009437, - "lon": -0.4419290, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO13 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4955097477, - "lat": 54.1788920, - "lon": -0.5011284, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955114052, - "lat": 54.1934426, - "lon": -0.4962142, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO12 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4955117501, - "lat": 54.1848425, - "lon": -0.4864503, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955122795, - "lat": 54.1927537, - "lon": -0.4730238, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955133818, - "lat": 54.1976434, - "lon": -0.4430345, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955239386, - "lat": 54.2701708, - "lon": -0.4159625, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO12 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4955260200, - "lat": 54.2430126, - "lon": -0.4509520, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO12 138", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4955273331, - "lat": 54.2733644, - "lon": -0.4162415, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4955285173, - "lat": 54.2947152, - "lon": -0.4160656, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4955306180, - "lat": 54.2785513, - "lon": -0.4198973, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 170", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4955674893, - "lat": 55.7275878, - "lon": -3.9294732, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4955684707, - "lat": 55.7009698, - "lon": -3.9754271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML9 51", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4955788298, - "lat": 54.2296852, - "lon": -1.3590245, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955799661, - "lat": 56.4164560, - "lon": -5.4732205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA34 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4955799671, - "lat": 56.4078019, - "lon": -5.4889818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA34 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4955808033, - "lat": 54.2397896, - "lon": -0.3981591, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO11 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955813481, - "lat": 54.2856792, - "lon": -0.4126018, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4955821129, - "lat": 54.2848572, - "lon": -0.4051050, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4955827011, - "lat": 54.2824725, - "lon": -0.4138165, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4955835987, - "lat": 54.2447718, - "lon": -0.5060723, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4955838215, - "lat": 54.3018326, - "lon": -0.5132757, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955846051, - "lat": 54.3028078, - "lon": -0.4858850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955855859, - "lat": 54.3058831, - "lon": -0.5545711, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4955864018, - "lat": 54.3002331, - "lon": -0.4479907, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO13 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4955868999, - "lat": 54.2980147, - "lon": -0.4518183, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO13 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4955948060, - "lat": 54.3194771, - "lon": -0.4429080, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4956930611, - "lat": 51.0605104, - "lon": -3.1882998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4956932774, - "lat": 51.0558434, - "lon": -3.1848268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4957436678, - "lat": 51.9301808, - "lon": -3.3245324, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD3 399", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4958147506, - "lat": 55.3025634, - "lon": -1.6129367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE61 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4958179696, - "lat": 51.6800123, - "lon": -3.7774448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA10 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4958326538, - "lat": 52.9111884, - "lon": 0.9868589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4958866640, - "lat": 51.2162871, - "lon": 0.6222776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 129" - } -}, -{ - "type": "node", - "id": 4958866641, - "lat": 51.2394198, - "lon": 0.5778363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ME17 145" - } -}, -{ - "type": "node", - "id": 4958866655, - "lat": 51.1965026, - "lon": 0.6373431, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME17 91" - } -}, -{ - "type": "node", - "id": 4959197082, - "lat": 53.2855972, - "lon": -3.4020345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL18 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4959540566, - "lat": 53.3105874, - "lon": -0.4776363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN2 616D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4959587530, - "lat": 50.3669605, - "lon": -4.1400115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL1 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 4960722464, - "lat": 50.3949385, - "lon": -4.3080935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "ref": "PL12 578", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 4960737260, - "lat": 50.3972944, - "lon": -4.3140803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 09:45; Su off", - "drive_through": "no", - "mapillary": "733560870996578", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2022-05-08", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 4960804333, - "lat": 54.2537061, - "lon": -0.4719308, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960884135, - "lat": 54.2463799, - "lon": -0.4936563, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960884137, - "lat": 54.2467325, - "lon": -0.4879274, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960893552, - "lat": 54.2985297, - "lon": -0.4577645, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960893822, - "lat": 54.3032030, - "lon": -0.4473578, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4960904821, - "lat": 54.3235128, - "lon": -0.4590932, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960908554, - "lat": 54.2343685, - "lon": -0.5219820, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960912028, - "lat": 54.3373881, - "lon": -0.4484525, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4960912030, - "lat": 54.3328703, - "lon": -0.4492224, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4961871406, - "lat": 54.3004827, - "lon": -0.4203874, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 124", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4961885209, - "lat": 54.2969720, - "lon": -0.4212774, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4961922757, - "lat": 54.3655756, - "lon": -0.4677292, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4961956403, - "lat": 54.3148039, - "lon": -0.4706984, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO13 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962021908, - "lat": 54.3715153, - "lon": -0.4771160, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4962021914, - "lat": 54.3717211, - "lon": -0.4761564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO13 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962031622, - "lat": 50.3516069, - "lon": -4.0854714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "521552879628060", - "post_box:type": "pillar", - "ref": "PL9 824D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-20" - } -}, -{ - "type": "node", - "id": 4962051249, - "lat": 53.5752944, - "lon": -2.4284579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BL1 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4962107918, - "lat": 54.3976665, - "lon": -0.4848286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO13 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962128371, - "lat": 54.3256732, - "lon": -0.4508954, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962159005, - "lat": 54.3479022, - "lon": -0.4466311, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962243322, - "lat": 54.2899737, - "lon": -0.4416742, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 179D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4962270863, - "lat": 54.2925898, - "lon": -0.4078068, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962311832, - "lat": 54.2789695, - "lon": -0.4256372, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962329913, - "lat": 54.2435199, - "lon": -0.4203305, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962393031, - "lat": 54.2393092, - "lon": -0.4223274, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 181", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4962402993, - "lat": 53.5763989, - "lon": -2.3819148, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4962447292, - "lat": 54.2754992, - "lon": -0.4162308, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO12 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4962458390, - "lat": 53.3081983, - "lon": -0.4888645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LN2 547D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962458392, - "lat": 54.2543283, - "lon": -0.4199100, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962516729, - "lat": 54.2943305, - "lon": -0.4395660, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO12 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962590927, - "lat": 54.2832426, - "lon": -0.4109656, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962679428, - "lat": 53.5768406, - "lon": -2.4263306, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4962728688, - "lat": 53.9368789, - "lon": -0.8573978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "YO41 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962761064, - "lat": 53.8659443, - "lon": -0.5000606, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "HU17 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962768485, - "lat": 53.8934386, - "lon": -0.2820753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "HU17 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4962786595, - "lat": 53.9029005, - "lon": -0.2296304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "HU11 188", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4962824326, - "lat": 51.1007800, - "lon": -1.2998334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 263" - } -}, -{ - "type": "node", - "id": 4962824328, - "lat": 51.0968962, - "lon": -1.2980048, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO23 308D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962832606, - "lat": 51.0871958, - "lon": -1.3091755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962852339, - "lat": 53.5779996, - "lon": -2.4262369, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BL1 202;BL1 2020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962859806, - "lat": 53.9166855, - "lon": -0.8065114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO42 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962869809, - "lat": 54.2414883, - "lon": -0.4208606, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962873829, - "lat": 54.2764498, - "lon": -0.4287754, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962875536, - "lat": 54.2896642, - "lon": -0.4122028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "YO12 82D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4962876283, - "lat": 51.1488804, - "lon": -1.2606007, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962876284, - "lat": 51.1534752, - "lon": -1.2726170, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO21 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962876285, - "lat": 51.1507733, - "lon": -1.2857786, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962876495, - "lat": 54.2952950, - "lon": -0.4331871, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4962877628, - "lat": 54.2836984, - "lon": -0.4222228, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962879777, - "lat": 54.2911452, - "lon": -0.4263449, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO12 155D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962887040, - "lat": 54.2843984, - "lon": -0.4166089, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 162", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4962894183, - "lat": 54.2845497, - "lon": -0.4256959, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 166D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4962894270, - "lat": 54.2879713, - "lon": -0.4422642, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO12 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4963318186, - "lat": 53.5873935, - "lon": -2.4138721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4963320964, - "lat": 53.5951883, - "lon": -2.4114943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4963761282, - "lat": 53.5801449, - "lon": -2.4305408, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4964187909, - "lat": 52.6764616, - "lon": 0.3643135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4964341254, - "lat": 53.8659693, - "lon": -0.6700477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7023448", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO43 248", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4964475848, - "lat": 51.1290223, - "lon": -1.4178256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:16; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO20 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4964806675, - "lat": 53.7470962, - "lon": -1.5938678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS27 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4964816614, - "lat": 56.4131268, - "lon": -5.4688163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA34 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4964842075, - "lat": 53.8412737, - "lon": -1.7033717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD10 217D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4964856003, - "lat": 53.9551261, - "lon": -1.0783164, - "tags": { - "access": "customers", - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45", - "indoor": "yes", - "note": "is in street scene in York Castle Museum", - "post_box:type": "wall", - "ref": "YO1 548", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4964877816, - "lat": 54.2890138, - "lon": -0.4080139, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4964896371, - "lat": 54.2936428, - "lon": -0.4224607, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO12 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4970343091, - "lat": 53.5910736, - "lon": -2.3954073, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4971044721, - "lat": 51.4594452, - "lon": -2.6689225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BS8 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4972273749, - "lat": 52.5942132, - "lon": -3.8550567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY20 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4972273750, - "lat": 52.5951347, - "lon": -3.8546785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY20 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4972533873, - "lat": 57.1159104, - "lon": -2.0922350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 193" - } -}, -{ - "type": "node", - "id": 4972639801, - "lat": 53.2957162, - "lon": -1.3943930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S21 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4972854368, - "lat": 52.5875976, - "lon": -0.9568751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:45", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LE7 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4972886935, - "lat": 54.2811807, - "lon": -0.4107806, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4972894719, - "lat": 54.2869394, - "lon": -0.4063390, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4973579816, - "lat": 51.6086272, - "lon": -1.6454710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN6 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4973734035, - "lat": 53.5618843, - "lon": -2.3708294, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4973861941, - "lat": 53.5811980, - "lon": -2.3426633, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4973907009, - "lat": 51.4697474, - "lon": -0.2633439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4973943590, - "lat": 51.4697765, - "lon": -0.2613580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4973946861, - "lat": 52.7394097, - "lon": -3.8476842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 4975660456, - "lat": 54.2941849, - "lon": -0.4473873, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4975764153, - "lat": 54.2874282, - "lon": -0.4188039, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "YO12 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4976091858, - "lat": 51.5153936, - "lon": -0.4036957, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "indoor": "yes", - "opening_hours": "During store opening hours.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB3 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4976100313, - "lat": 51.5106740, - "lon": -0.4470495, - "tags": { - "amenity": "post_box", - "collection_plate": "CPMET-NS", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 12:45-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "UB11 49" - } -}, -{ - "type": "node", - "id": 4976105997, - "lat": 51.5106926, - "lon": -0.4470184, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "UB11 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977423488, - "lat": 54.2898971, - "lon": -0.5179327, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4977507300, - "lat": 54.3105510, - "lon": -0.5483430, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO13 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4977563301, - "lat": 54.2824646, - "lon": -0.4240280, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977592985, - "lat": 54.2848635, - "lon": -0.4331556, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "YO12 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977707901, - "lat": 54.2740473, - "lon": -0.4251947, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO12 174", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4977716613, - "lat": 53.7447116, - "lon": -0.3419710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "note": "refs not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4977738747, - "lat": 54.3013202, - "lon": -0.4141556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO12 145", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4977752300, - "lat": 54.2984113, - "lon": -0.4423656, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977771780, - "lat": 54.2840192, - "lon": -0.4303864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977779185, - "lat": 54.2930282, - "lon": -0.4318739, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO12 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977816829, - "lat": 54.1994563, - "lon": -0.3223368, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO14 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977922195, - "lat": 54.2785813, - "lon": -0.4377392, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO12 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4977933570, - "lat": 54.2415272, - "lon": -0.4251277, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO12 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4977967793, - "lat": 51.3080826, - "lon": -2.5100407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BS39 326D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 4978203964, - "lat": 55.2593047, - "lon": -1.6605281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE61 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978205509, - "lat": 55.2447485, - "lon": -1.6261931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE61 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978205512, - "lat": 55.2696172, - "lon": -1.6419357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "NE61 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978208286, - "lat": 55.2148884, - "lon": -1.5880428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:type": "lamp", - "ref": "NE61 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978208287, - "lat": 55.2244055, - "lon": -1.6370427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "NE61 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978234760, - "lat": 55.2332629, - "lon": -1.5432438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE61 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978235110, - "lat": 55.2207237, - "lon": -1.5564674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NE61 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4978235116, - "lat": 55.2223820, - "lon": -1.5597109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE61 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4979385414, - "lat": 51.9513574, - "lon": -3.3947004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45" - } -}, -{ - "type": "node", - "id": 4979388226, - "lat": 51.9446118, - "lon": -3.3851298, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 4979649030, - "lat": 52.4400816, - "lon": -1.8866182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "B14 296", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4980013341, - "lat": 54.0164373, - "lon": -1.0741528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:design": "romec_pillar", - "post_box:type": "pillar", - "ref": "YO32 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4980829167, - "lat": 53.7430050, - "lon": -0.3356614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HU1 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4980845928, - "lat": 52.3142902, - "lon": -0.7011053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 1070" - } -}, -{ - "type": "node", - "id": 4980855676, - "lat": 53.5919524, - "lon": -0.9918113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN8 544", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4982807867, - "lat": 52.0444912, - "lon": -2.7391164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "name": "Whitefriars Raod", - "operator": "Royal Mail", - "ref": "HR2 28" - } -}, -{ - "type": "node", - "id": 4982846223, - "lat": 52.0412732, - "lon": -2.7458802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "name": "Stanbrook Road", - "operator": "Royal Mail", - "ref": "HR2 46" - } -}, -{ - "type": "node", - "id": 4983400312, - "lat": 52.7558147, - "lon": -3.8705295, - "tags": { - "amenity": "post_box", - "note": "ref not visible", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4983752010, - "lat": 53.1054124, - "lon": -3.9121829, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL24 133D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4983799720, - "lat": 53.1511136, - "lon": -3.8397029, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL27 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4984100118, - "lat": 51.5063941, - "lon": -0.1393659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1A 4D;SW1A 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4984549378, - "lat": 52.2927112, - "lon": -1.9550610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 4984613322, - "lat": 51.5944934, - "lon": -1.4130334, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4984713458, - "lat": 53.5674807, - "lon": -2.3071486, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4985192414, - "lat": 52.7429570, - "lon": -3.8857933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL40 86D", - "ref:cadw": "5062", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikidata": "Q29484639" - } -}, -{ - "type": "node", - "id": 4985192418, - "lat": 52.7423124, - "lon": -3.8797241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL40 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4985227508, - "lat": 52.7454706, - "lon": -3.8827195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL40 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4986512651, - "lat": 53.5807143, - "lon": -2.3852868, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4987042922, - "lat": 51.7630164, - "lon": -3.9935246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA18 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4987920617, - "lat": 51.6523195, - "lon": -0.0789697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPMET-NS", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "opening_hours": "Mo-Fr 15:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EN1 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4987926246, - "lat": 55.6482960, - "lon": -4.6893100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KA13 118D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4987926604, - "lat": 51.6523221, - "lon": -0.0789130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "colour": "gold", - "description": "This is a gold postbox to celebrate Charlotte Dujardin Gold medal winner London 2012 Olympic Games Equestrian: Dressage-Team.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN1 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4988121776, - "lat": 52.5876231, - "lon": 1.6777165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4988140371, - "lat": 52.6387831, - "lon": 1.5935924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 4988261017, - "lat": 51.8905667, - "lon": -3.2385609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LD3 394D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4988463317, - "lat": 51.6786672, - "lon": -0.4256004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD17 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4988472985, - "lat": 51.6678777, - "lon": -0.4031614, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "WD17 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4988483626, - "lat": 51.6611986, - "lon": -0.3942281, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD17 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4989131723, - "lat": 53.5762010, - "lon": -2.3904261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 4991345591, - "lat": 56.1233229, - "lon": -3.1315337, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KY1 99" - } -}, -{ - "type": "node", - "id": 4991345597, - "lat": 56.1297889, - "lon": -3.1219541, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KY1 21" - } -}, -{ - "type": "node", - "id": 4991346444, - "lat": 56.1285718, - "lon": -3.1267301, - "tags": { - "amenity": "post_box", - "ref": "KY1 53" - } -}, -{ - "type": "node", - "id": 4991873831, - "lat": 53.6616985, - "lon": -2.7805628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PR26 129", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 4992541840, - "lat": 56.1404133, - "lon": -3.0846527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 4992542363, - "lat": 56.1579404, - "lon": -3.0687980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 4992542380, - "lat": 56.1505226, - "lon": -3.0896390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 50", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 4992618312, - "lat": 51.2940660, - "lon": 0.1668030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "mapillary": "374217930642599", - "post_box:type": "pillar", - "ref": "TN13 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-22" - } -}, -{ - "type": "node", - "id": 4993398311, - "lat": 51.5855713, - "lon": 0.0815993, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG6 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4995161595, - "lat": 52.8722431, - "lon": -3.0006789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 4998249058, - "lat": 51.4770434, - "lon": -0.9768614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG4 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 4999081594, - "lat": 54.1346897, - "lon": -1.8198752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "wall", - "ref": "HG3 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 4999592339, - "lat": 55.9537004, - "lon": -3.1789997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH7 175D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5000047916, - "lat": 52.2990546, - "lon": -1.2800694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5000047918, - "lat": 52.3074893, - "lon": -1.2709804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5000047919, - "lat": 52.2895167, - "lon": -1.2626877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5000053695, - "lat": 52.2869716, - "lon": -1.2120886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN11 1054D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5000249244, - "lat": 52.2887309, - "lon": 0.1200743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB4 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000339237, - "lat": 55.2412332, - "lon": -1.6179112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "NE61 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000348048, - "lat": 55.2372040, - "lon": -1.6155159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE61 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000348049, - "lat": 55.2372739, - "lon": -1.6177033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE61 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000350197, - "lat": 55.2397437, - "lon": -1.6091879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "NE61 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000368620, - "lat": 55.2448603, - "lon": -1.7046645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "NE61 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000368621, - "lat": 55.2248135, - "lon": -1.7049483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "post_box:type": "lamp", - "ref": "NE61 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000378276, - "lat": 55.2151604, - "lon": -1.6855182, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5000393523, - "lat": 55.2013680, - "lon": -1.6959152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5002006218, - "lat": 52.7791313, - "lon": 1.2871458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5002071248, - "lat": 55.2223907, - "lon": -1.7253289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5002205853, - "lat": 55.9934481, - "lon": -3.8761549, - "tags": { - "amenity": "post_box", - "note": "information plate missing (5/2/23)", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5002614472, - "lat": 53.5245023, - "lon": -2.4189877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00" - } -}, -{ - "type": "node", - "id": 5002859550, - "lat": 53.3894005, - "lon": -2.7255642, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 41", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 5003155022, - "lat": 50.7946544, - "lon": -0.6215939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5003750699, - "lat": 53.4778114, - "lon": -2.5766087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5003751313, - "lat": 53.5287275, - "lon": -2.6123925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 21", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5003752900, - "lat": 53.5212941, - "lon": -2.5991575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 188", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5003978300, - "lat": 55.7999876, - "lon": -4.8594060, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5006510220, - "lat": 52.9004549, - "lon": -2.1560307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST15 366" - } -}, -{ - "type": "node", - "id": 5006523007, - "lat": 53.4865509, - "lon": -2.2784426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5006523237, - "lat": 53.5143990, - "lon": -2.3440903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5006966064, - "lat": 53.5575341, - "lon": -2.4498090, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5007455060, - "lat": 52.8961958, - "lon": -2.3369491, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5007980054, - "lat": 53.3172004, - "lon": -3.4955232, - "tags": { - "amenity": "post_box", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5008037374, - "lat": 52.2988466, - "lon": -0.0471379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5008252642, - "lat": 53.2193374, - "lon": -2.4938831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "ref": "CW10 153" - } -}, -{ - "type": "node", - "id": 5008311991, - "lat": 52.3114357, - "lon": 0.0224071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 450D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5008334317, - "lat": 53.3184608, - "lon": -3.4972409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5008357618, - "lat": 52.3016876, - "lon": -0.0043932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB24 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5008423053, - "lat": 55.0206693, - "lon": -3.1567844, - "tags": { - "amenity": "post_box", - "ref": "DG11 21", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5009468669, - "lat": 51.5997339, - "lon": -0.1815464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 5011976404, - "lat": 54.1778196, - "lon": -0.2702005, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO14 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5012089701, - "lat": 52.5519217, - "lon": -0.3217380, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "PE2 227" - } -}, -{ - "type": "node", - "id": 5012246958, - "lat": 52.7892229, - "lon": -0.3638129, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5013335575, - "lat": 52.4010590, - "lon": -2.0071131, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5013360028, - "lat": 52.4033140, - "lon": -2.0261219, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B45 1328D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5013391263, - "lat": 52.4090288, - "lon": -2.0043142, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B45 1326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5013999157, - "lat": 51.4014992, - "lon": -0.2673271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "KT3 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5014417812, - "lat": 53.9402984, - "lon": -0.1877963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "YO25 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5014564967, - "lat": 51.2310988, - "lon": -2.3247057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "BA11 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5014735982, - "lat": 58.2492317, - "lon": -3.4218984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW6 44", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5014800531, - "lat": 58.2833155, - "lon": -3.3670827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5015938991, - "lat": 50.0492113, - "lon": -5.6310938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR19 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5016229780, - "lat": 56.0008952, - "lon": -3.7766774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5016504004, - "lat": 51.3853661, - "lon": -2.3801116, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5016945030, - "lat": 50.9587292, - "lon": -1.4867853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO51 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5016971459, - "lat": 51.0097806, - "lon": -1.4247915, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 499D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5016973075, - "lat": 51.0034851, - "lon": -1.4080174, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5017506717, - "lat": 51.1154077, - "lon": -0.0298433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5017506719, - "lat": 51.1217270, - "lon": -0.0165520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5017544124, - "lat": 51.1206974, - "lon": 0.0005552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5017544128, - "lat": 51.1202556, - "lon": -0.0050690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5017544132, - "lat": 51.1264963, - "lon": -0.0063440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5017554756, - "lat": 51.1224071, - "lon": -0.0075807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 47", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5017597192, - "lat": 53.8548080, - "lon": -2.8710848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5017709621, - "lat": 53.2131294, - "lon": -4.2695580, - "tags": { - "amenity": "post_box", - "description": "Built into signal box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5017913567, - "lat": 54.2256278, - "lon": -0.5907181, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO13 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5017990668, - "lat": 54.2488696, - "lon": -0.7712046, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5017999183, - "lat": 54.2438159, - "lon": -0.7861048, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5018003295, - "lat": 54.2473737, - "lon": -0.7915977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "YO18 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5018003306, - "lat": 54.2492307, - "lon": -0.7930168, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO18 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5018213343, - "lat": 54.3454475, - "lon": -1.4736935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL7 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5018350082, - "lat": 54.7054190, - "lon": -1.5700400, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5019935710, - "lat": 54.8935806, - "lon": -1.7106850, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5020997216, - "lat": 55.1620366, - "lon": -3.2471144, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG11 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5021028864, - "lat": 54.1396045, - "lon": -1.5294864, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG4 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5021604917, - "lat": 53.5601270, - "lon": -2.4286197, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5022729826, - "lat": 52.7538200, - "lon": -3.9424780, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5022944985, - "lat": 50.8091501, - "lon": 0.2563174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 812", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5022956387, - "lat": 50.8054186, - "lon": 0.2589857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 811", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5022956388, - "lat": 50.8045937, - "lon": 0.2541091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 810D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5023032911, - "lat": 55.8949160, - "lon": -3.0686738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5023078577, - "lat": 51.5040055, - "lon": 0.4268636, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5025842337, - "lat": 55.4743483, - "lon": -2.6888468, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "TD9 55", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5026448807, - "lat": 51.0199085, - "lon": -2.5366570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5026461548, - "lat": 52.2768073, - "lon": 0.3307452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB25 249" - } -}, -{ - "type": "node", - "id": 5026475542, - "lat": 52.2878838, - "lon": 0.3284268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "ref": "CB25 246" - } -}, -{ - "type": "node", - "id": 5026475543, - "lat": 52.2826931, - "lon": 0.3338002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "ref": "CB25 244" - } -}, -{ - "type": "node", - "id": 5026481400, - "lat": 52.2719840, - "lon": 0.3273426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB25 242", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5026825589, - "lat": 57.4188160, - "lon": -3.3583134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Sa 12:15", - "manufacturer": "None", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 157", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5026825593, - "lat": 57.4060868, - "lon": -3.3620491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Fr 15:30; Sa 12:45", - "manufacturer": "Ludlow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "AB37 175", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5026873707, - "lat": 57.4730117, - "lon": -3.2205150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB38 38", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5026873709, - "lat": 57.4685084, - "lon": -3.2237953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Fr 12:30; Sa 10:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 119", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5026873710, - "lat": 57.4670170, - "lon": -3.2231301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Sa 09:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 143", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5027101738, - "lat": 52.4637560, - "lon": -2.7264038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5027938610, - "lat": 51.8998631, - "lon": -1.9482111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "GL54 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5029365764, - "lat": 57.1293915, - "lon": -2.1175701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB10 117D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5030223958, - "lat": 50.7973415, - "lon": 0.2806825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 835D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5030286175, - "lat": 50.7971350, - "lon": 0.2636684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 847", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5030290730, - "lat": 50.8003910, - "lon": 0.2791101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 830D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5030296063, - "lat": 50.8025023, - "lon": 0.2713423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 838D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5030468301, - "lat": 50.5667387, - "lon": -4.9184003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-09", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5030468302, - "lat": 50.5651213, - "lon": -4.9193437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/padstow-2021-09-16/2021-09-16_15-17-36_20210916_15_31_42.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL27 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 5030502806, - "lat": 50.5699057, - "lon": -4.9165677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/padstow-2021-09-16/2021-09-16_15-17-36_20210916_15_20_25.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL27 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 5030538810, - "lat": 57.6626734, - "lon": -2.6043303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 610" - } -}, -{ - "type": "node", - "id": 5030801053, - "lat": 51.1745863, - "lon": 0.4910211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 33D" - } -}, -{ - "type": "node", - "id": 5030801058, - "lat": 51.1736453, - "lon": 0.4967250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN12 287", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5030801078, - "lat": 51.1639325, - "lon": 0.5526664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN12 84D" - } -}, -{ - "type": "node", - "id": 5031541606, - "lat": 51.1192067, - "lon": -0.0136582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 119D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031541607, - "lat": 51.1131667, - "lon": -0.0136683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031541608, - "lat": 51.1159206, - "lon": -0.0106312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031541610, - "lat": 51.1138137, - "lon": -0.0070524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031646358, - "lat": 53.7532816, - "lon": -2.8980812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR4 426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031646363, - "lat": 53.7530695, - "lon": -2.8602111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR4 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700444, - "lat": 51.1320800, - "lon": -0.0304733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700445, - "lat": 51.1368297, - "lon": -0.0097874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700446, - "lat": 51.1361695, - "lon": -0.0245221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH19 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5031700447, - "lat": 51.1337411, - "lon": -0.0247519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 45D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5031700449, - "lat": 51.1341578, - "lon": -0.0065504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2022-01-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700450, - "lat": 51.1361940, - "lon": -0.0321066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700451, - "lat": 51.1279557, - "lon": -0.0285163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700452, - "lat": 51.1308864, - "lon": -0.0114462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700455, - "lat": 51.1524155, - "lon": -0.0482571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700457, - "lat": 51.1255676, - "lon": -0.0275299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700460, - "lat": 51.1304494, - "lon": -0.0272116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700461, - "lat": 51.1339651, - "lon": -0.0135535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700462, - "lat": 51.1499534, - "lon": -0.0449143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700464, - "lat": 51.1439554, - "lon": -0.0696102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031700465, - "lat": 51.1288556, - "lon": -0.0147722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH19 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031754891, - "lat": 51.1370964, - "lon": 0.0535497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031754892, - "lat": 51.1130310, - "lon": 0.0417523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031754893, - "lat": 51.1239052, - "lon": 0.0283788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031754894, - "lat": 51.1368968, - "lon": 0.0260107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031754896, - "lat": 51.1453517, - "lon": 0.0410167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH19 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5031850968, - "lat": 55.0349874, - "lon": -1.5125084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE27 475D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031851568, - "lat": 55.0432823, - "lon": -1.5369701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE27 478D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031851994, - "lat": 55.0440438, - "lon": -1.5267073, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE27 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-15" - } -}, -{ - "type": "node", - "id": 5031853732, - "lat": 55.0375105, - "lon": -1.5093903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE27 473", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031856003, - "lat": 55.0383189, - "lon": -1.5041372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "NE27 483D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031858273, - "lat": 55.0363646, - "lon": -1.5000361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE27 795D", - "ref:date": "31/05/2017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031861429, - "lat": 55.0306317, - "lon": -1.5070789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE27 482D", - "ref:date": "31/05/2017", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031862582, - "lat": 55.0276147, - "lon": -1.5063541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE27 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031862670, - "lat": 55.0331670, - "lon": -1.5007751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE27 477D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031874017, - "lat": 55.0310161, - "lon": -1.4876768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NE27 480D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031879266, - "lat": 55.0339467, - "lon": -1.5042277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE27 481", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5031881539, - "lat": 55.0357590, - "lon": -1.5198865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE27 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5033114762, - "lat": 51.6679229, - "lon": -4.0417908, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5033215407, - "lat": 54.5057476, - "lon": -1.7298692, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL11 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5033228084, - "lat": 51.4774372, - "lon": -2.7071209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS20 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5033266060, - "lat": 51.9184072, - "lon": -2.4509457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL18 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5033287907, - "lat": 52.0160755, - "lon": -3.8131415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA20 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5033287915, - "lat": 52.0180725, - "lon": -3.8349222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA20 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5033292253, - "lat": 52.0235600, - "lon": -3.8807770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "SA19 328", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5033292267, - "lat": 52.0277543, - "lon": -3.9476986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "post_box:type": "lamp", - "ref": "SA19 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5033292276, - "lat": 52.0337946, - "lon": -3.9024889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA19 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5033292281, - "lat": 52.0348370, - "lon": -3.9353813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5033292421, - "lat": 52.0416835, - "lon": -3.9326726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA19 239D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5033292423, - "lat": 52.0442332, - "lon": -3.7944262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:45", - "post_box:type": "lamp", - "ref": "SA20 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5033292424, - "lat": 52.0448849, - "lon": -3.8198443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 08:15", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5033292426, - "lat": 52.0782562, - "lon": -3.7743682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "SA20 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5034164014, - "lat": 52.3771377, - "lon": -0.7737834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "post_box:type": "wall", - "ref": "NN14 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5034187822, - "lat": 52.3739970, - "lon": -0.7759986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NN14 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5034659826, - "lat": 54.8223683, - "lon": -1.5976788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH2 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5035165068, - "lat": 50.3481404, - "lon": -3.5780419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ6 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2021-10-20" - } -}, -{ - "type": "node", - "id": 5035458690, - "lat": 57.5247257, - "lon": -3.2081862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "manufacturer": "Abbot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 26", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5035614273, - "lat": 52.7839805, - "lon": -0.1549485, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE11 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5036730560, - "lat": 52.6583489, - "lon": -0.6690261, - "tags": { - "addr:country": "GB", - "addr:street": "Ketton Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-01-22", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "contact:phone": "+44 3457 740740", - "contact:tty": "+44 345 6000606", - "contact:website": "www.royalmail.com", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "priority_postbox": "yes", - "ref": "LE15 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5036804890, - "lat": 52.0118422, - "lon": 1.1667106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP9 1190", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5037491458, - "lat": 51.5748535, - "lon": -0.3751101, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5037491469, - "lat": 51.5678059, - "lon": -0.3576638, - "tags": { - "amenity": "post_box", - "check_date": "2022-01-04" - } -}, -{ - "type": "node", - "id": 5037491484, - "lat": 51.5736797, - "lon": -0.3774391, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5037491492, - "lat": 51.5743153, - "lon": -0.3713676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 11:30", - "ref": "HA2 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5037514486, - "lat": 50.3500856, - "lon": -3.5797727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 161D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2017-08-08" - } -}, -{ - "type": "node", - "id": 5037708366, - "lat": 56.0019744, - "lon": -3.7844771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5039278006, - "lat": 50.3511232, - "lon": -3.5820688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "TQ6 888;TQ6 8888", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2017-08-08" - } -}, -{ - "type": "node", - "id": 5040151890, - "lat": 52.9302704, - "lon": -4.1401298, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5041750826, - "lat": 52.2170427, - "lon": -1.8240576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B49 83", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5041858278, - "lat": 52.2124763, - "lon": -1.8755637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B49 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5041858279, - "lat": 52.2203453, - "lon": -1.8686275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5041858280, - "lat": 52.2229757, - "lon": -1.8664458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5041858283, - "lat": 52.2239718, - "lon": -1.8509378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5041878178, - "lat": 53.8336221, - "lon": -1.7836355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD18 901D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5042815894, - "lat": 53.2391711, - "lon": -0.5451241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN1 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5043235239, - "lat": 51.0493701, - "lon": -3.1128679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "colour": "red", - "direction": "E", - "name": "Nailsbourne", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA2 302", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5043418318, - "lat": 54.1470506, - "lon": -1.5305102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=fb78a964-f594-41df-bde3-ddd255493521&cp=54.14709~-1.530622&lvl=19&dir=162.19344&pi=-1.227&style=x&mo=z.0&v=2&sV=2&form=S00027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5044870534, - "lat": 50.9233526, - "lon": -3.4931718, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5044947108, - "lat": 50.9786069, - "lon": -3.4902245, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5045030994, - "lat": 50.8463684, - "lon": -0.1812830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 251" - } -}, -{ - "type": "node", - "id": 5045296426, - "lat": 51.4812825, - "lon": -0.6103821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "description": "There are three postbox slots in the wall and this is postbox A.", - "note": "This postbox is for second class mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL4 97" - } -}, -{ - "type": "node", - "id": 5045297458, - "lat": 51.4812771, - "lon": -0.6104232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "Of the three postbox slots in the wall, this is postbox B. And this postbox slot is for First class & International mail.", - "mapillary": "915218072913954", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "SL4 971", - "survey:date": "2023-05-26" - } -}, -{ - "type": "node", - "id": 5045297802, - "lat": 51.4812730, - "lon": -0.6104545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "description": "Of the three postbox slots in the wall this is postbox C and is for local mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL4 972" - } -}, -{ - "type": "node", - "id": 5045305092, - "lat": 51.4826418, - "lon": -0.6077450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL4 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5045309484, - "lat": 51.4847871, - "lon": -0.6071692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL4 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5045309626, - "lat": 51.4841498, - "lon": -0.6081341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL4 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5045392404, - "lat": 51.3673648, - "lon": -1.6783494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5045491861, - "lat": 51.2393463, - "lon": -2.9047948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA9 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5045511564, - "lat": 51.7447315, - "lon": -2.2180376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "name": "Stroud Post Office Russell St", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 255", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5046028629, - "lat": 50.9660367, - "lon": -0.1243969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028632, - "lat": 50.9537875, - "lon": -0.1274868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028633, - "lat": 50.9594062, - "lon": -0.1226370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028635, - "lat": 50.9544287, - "lon": -0.1294707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028636, - "lat": 50.9696024, - "lon": -0.1172178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5046028641, - "lat": 50.9629267, - "lon": -0.1065350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH15 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028644, - "lat": 50.9534311, - "lon": -0.1255017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028645, - "lat": 50.9588446, - "lon": -0.1269729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 127D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5046028648, - "lat": 50.9466899, - "lon": -0.1074091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028649, - "lat": 50.9649825, - "lon": -0.1190946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "last_checked": "2021-06-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5046028650, - "lat": 50.9568097, - "lon": -0.1327109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028651, - "lat": 50.9554631, - "lon": -0.1302812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RH15 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028656, - "lat": 50.9746597, - "lon": -0.1161703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH15 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046028657, - "lat": 50.9570616, - "lon": -0.1340285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5046160641, - "lat": 53.2470288, - "lon": -0.5508238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5046191369, - "lat": 51.6081370, - "lon": -0.3654969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA5 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5046308303, - "lat": 54.5840079, - "lon": -1.4034659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5046308648, - "lat": 54.5896817, - "lon": -1.3719727, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5046643196, - "lat": 53.3975977, - "lon": -2.3517829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA14 17", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5047230909, - "lat": 51.4211977, - "lon": -2.1346697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5048430056, - "lat": 53.8194849, - "lon": -1.7704553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD9 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5048440999, - "lat": 53.7919593, - "lon": -1.7531781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD1 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5048656781, - "lat": 53.4738769, - "lon": -2.5637160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5048773734, - "lat": 53.8313040, - "lon": -2.7703436, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PR4 343" - } -}, -{ - "type": "node", - "id": 5048779944, - "lat": 53.7791673, - "lon": -2.7373597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 64" - } -}, -{ - "type": "node", - "id": 5049492481, - "lat": 50.7727243, - "lon": 0.1005387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1081", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5049529345, - "lat": 50.7715613, - "lon": 0.1029123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5049612641, - "lat": 50.8930323, - "lon": -1.0195981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO8 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5049723266, - "lat": 51.0400573, - "lon": -1.1029075, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "last_checked": "2021-01-02", - "note": "This postbox in a wall set back from the A272 main road, just west of the bus stop and bus shelter.", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO24 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5049732688, - "lat": 50.9322087, - "lon": -1.2011951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:45", - "post_box:type": "wall", - "ref": "SO32 399", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5050067621, - "lat": 53.5136013, - "lon": -2.4510969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5050070539, - "lat": 53.5463041, - "lon": -2.6225394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 22" - } -}, -{ - "type": "node", - "id": 5050072816, - "lat": 53.5456124, - "lon": -2.6262145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 6", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 5050909984, - "lat": 53.3342440, - "lon": -4.2479013, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5051354255, - "lat": 53.2984093, - "lon": -4.5301287, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5051724632, - "lat": 52.2722666, - "lon": 1.4532164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP17 4658", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5052234722, - "lat": 51.4516071, - "lon": -0.1280456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5052262113, - "lat": 55.6155429, - "lon": -3.4112265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ML12 3D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5052262114, - "lat": 55.6136096, - "lon": -3.4103487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-08-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML12 28D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5052273835, - "lat": 55.7182827, - "lon": -3.3377040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH46 23", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5053520603, - "lat": 51.6017144, - "lon": -4.1442558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA3 660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5053704145, - "lat": 51.5742836, - "lon": -4.1630827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA3 370", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5053704146, - "lat": 51.6270135, - "lon": -4.0662100, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA4 454D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5053704147, - "lat": 51.6314206, - "lon": -4.0323978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5053958142, - "lat": 54.1556891, - "lon": -3.1865960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA15 43" - } -}, -{ - "type": "node", - "id": 5053958143, - "lat": 54.1578886, - "lon": -3.1743866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA15 45" - } -}, -{ - "type": "node", - "id": 5053958147, - "lat": 54.1529733, - "lon": -3.1759184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA15 149" - } -}, -{ - "type": "node", - "id": 5053958148, - "lat": 54.1501380, - "lon": -3.1786948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA15 141" - } -}, -{ - "type": "node", - "id": 5053958159, - "lat": 54.1500894, - "lon": -3.1824047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA15 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5053958161, - "lat": 54.1473028, - "lon": -3.1817069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA15 136" - } -}, -{ - "type": "node", - "id": 5054059653, - "lat": 54.1882712, - "lon": -3.1937148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA16 81" - } -}, -{ - "type": "node", - "id": 5054059658, - "lat": 54.1864082, - "lon": -3.2059424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA16 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5054059660, - "lat": 54.1827015, - "lon": -3.2082423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA16 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5054174267, - "lat": 54.3043493, - "lon": -3.1968024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA20 33" - } -}, -{ - "type": "node", - "id": 5054174281, - "lat": 54.2923541, - "lon": -3.2021726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA20 138" - } -}, -{ - "type": "node", - "id": 5054174292, - "lat": 54.2942894, - "lon": -3.1568407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA20 24" - } -}, -{ - "type": "node", - "id": 5054298566, - "lat": 52.2897922, - "lon": 0.1743846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45", - "mail:meter": "yes", - "mail:stamped": "no", - "opening_hours": "Mo-Fr 13:00-17:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "CB25 513", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5054917346, - "lat": 53.0779434, - "lon": -0.8095834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "name": "Newark Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NG24 228", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5055324762, - "lat": 54.0842114, - "lon": -1.7626045, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5055752154, - "lat": 51.4553046, - "lon": -0.1348283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5055784104, - "lat": 51.4532848, - "lon": -0.1297811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5056447608, - "lat": 53.3512875, - "lon": -4.2376183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL72 234", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5056824493, - "lat": 52.7428417, - "lon": 0.9823953, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5060412792, - "lat": 52.3875438, - "lon": -1.5388131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 322D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5061001881, - "lat": 50.7893235, - "lon": -0.6378740, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "name": "Wansford Way", - "ref": "PO22 72" - } -}, -{ - "type": "node", - "id": 5061089675, - "lat": 51.0472793, - "lon": -1.3413679, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO22 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061686957, - "lat": 51.4025106, - "lon": -0.3428307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT8 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5061690370, - "lat": 50.9620949, - "lon": -0.1504822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690371, - "lat": 50.9542479, - "lon": -0.1542042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690372, - "lat": 50.9626815, - "lon": -0.1389040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5061690373, - "lat": 50.9605715, - "lon": -0.1529978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690375, - "lat": 50.9646734, - "lon": -0.1358585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690376, - "lat": 50.9552331, - "lon": -0.1561698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690378, - "lat": 50.9672617, - "lon": -0.1384750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690379, - "lat": 50.9672581, - "lon": -0.1384313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH15 141" - } -}, -{ - "type": "node", - "id": 5061690380, - "lat": 50.9628363, - "lon": -0.0935595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH15 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690381, - "lat": 50.9660255, - "lon": -0.1442107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5061690382, - "lat": 50.9631669, - "lon": -0.1297230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5062058871, - "lat": 52.0546997, - "lon": -3.8200294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA20 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5062058919, - "lat": 52.0606622, - "lon": -3.9401651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "262a", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5062059245, - "lat": 52.0735171, - "lon": -3.7914761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SA20 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5062059256, - "lat": 52.0806005, - "lon": -3.9098562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "post_box:type": "wall", - "ref": "SA19 209", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5062521538, - "lat": 51.2020327, - "lon": 0.4760667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN12 34" - } -}, -{ - "type": "node", - "id": 5062944249, - "lat": 51.4038284, - "lon": -0.3375894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Mounted in internal wall in \"Serving Place\" passage by old Royal Kitchens", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KT8 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5063048211, - "lat": 53.4292165, - "lon": -1.3580181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:type": "meter", - "ref": "S60 288P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5063048218, - "lat": 53.4292164, - "lon": -1.3579870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 11:30", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "S60 2779", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063048219, - "lat": 53.4292156, - "lon": -1.3580460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "S60 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063640726, - "lat": 50.9502875, - "lon": -0.1482842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063640727, - "lat": 50.9491177, - "lon": -0.1364940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH15 111D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5063640729, - "lat": 50.9462098, - "lon": -0.1291547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5063640732, - "lat": 50.9572731, - "lon": -0.1361327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5063640733, - "lat": 50.9549188, - "lon": -0.1485007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063640734, - "lat": 50.9468781, - "lon": -0.1330401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063640736, - "lat": 50.9531570, - "lon": -0.1367738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063640739, - "lat": 50.9589595, - "lon": -0.1413582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH15 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5063640740, - "lat": 50.9477657, - "lon": -0.1417006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH15 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063640741, - "lat": 50.9591347, - "lon": -0.1308013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH15 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5063640745, - "lat": 50.9613285, - "lon": -0.1439211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5063924964, - "lat": 52.0359194, - "lon": -1.7328852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "435952194521232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-07-05" - } -}, -{ - "type": "node", - "id": 5064712973, - "lat": 50.8104849, - "lon": -0.5382344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1495", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5064970762, - "lat": 52.1877954, - "lon": -0.0312500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5065011353, - "lat": 52.2478102, - "lon": 0.0129292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5065011354, - "lat": 52.2559459, - "lon": 0.0188838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:15", - "mail:meter": "yes", - "mail:stamped": "no", - "note": "This postbox accepts parcels", - "opening_hours": "Mo-Fr 15:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CB23 211P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5065149268, - "lat": 51.1646129, - "lon": -1.6901886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5065180968, - "lat": 51.1616055, - "lon": -1.6909128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5066053017, - "lat": 57.0464226, - "lon": -2.1245281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5066577782, - "lat": 51.8562201, - "lon": -2.3526918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "post_box:type": "wall", - "ref": "GL2 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5066635853, - "lat": 51.8024056, - "lon": -2.3711966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "wall", - "ref": "GL14 269", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5066673873, - "lat": 51.7901002, - "lon": -2.4871431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL14 130D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5067568202, - "lat": 51.1554432, - "lon": -1.7107511, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5067599569, - "lat": 51.1445359, - "lon": -1.7149977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SP4 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5067629896, - "lat": 51.1352835, - "lon": -1.7190197, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 422D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5067629905, - "lat": 51.1400849, - "lon": -1.7228740, - "tags": { - "amenity": "post_box", - "note": "Not very accessible - was buried in nettles at time of writing", - "post_box:type": "lamp", - "ref": "SP4 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5069050910, - "lat": 56.8127891, - "lon": -2.6239091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD9 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5069330815, - "lat": 54.1327931, - "lon": -1.0401608, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-30", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5069380544, - "lat": 51.6813835, - "lon": -0.0982171, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "EN2 113", - "source": "gps+mapnoter" - } -}, -{ - "type": "node", - "id": 5069413583, - "lat": 53.0757647, - "lon": -2.2615018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 47" - } -}, -{ - "type": "node", - "id": 5069628322, - "lat": 53.9314644, - "lon": -1.3838647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS22 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5069639333, - "lat": 53.9294026, - "lon": -1.3894810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS22 454", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5070184206, - "lat": 54.0917053, - "lon": -0.6583830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "YO17 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5070225235, - "lat": 54.0979397, - "lon": -0.7110178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:20; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "YO17", - "ref": "YO17 115" - } -}, -{ - "type": "node", - "id": 5070448372, - "lat": 51.5278505, - "lon": -2.6804321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5070471532, - "lat": 54.0325017, - "lon": -0.9414868, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5070985359, - "lat": 51.1324070, - "lon": -1.7248106, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5071540748, - "lat": 51.7208878, - "lon": -2.9852843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5071812220, - "lat": 54.1319907, - "lon": -0.7973067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15", - "note": "on the platform", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "YO17 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5071831695, - "lat": 54.2305548, - "lon": -1.0069722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO62 299", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5071851643, - "lat": 54.1932606, - "lon": -0.8707631, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5071866911, - "lat": 54.0342211, - "lon": -0.6340476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "YO25 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5071988512, - "lat": 51.0549949, - "lon": -2.7407026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA11 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5071988513, - "lat": 51.0547421, - "lon": -2.7365948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA11 430D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5072290716, - "lat": 53.4618120, - "lon": -1.9579258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK14 167" - } -}, -{ - "type": "node", - "id": 5072290717, - "lat": 53.4634519, - "lon": -1.9556249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK14 165" - } -}, -{ - "type": "node", - "id": 5072293584, - "lat": 53.4455456, - "lon": -1.9517206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK13 112" - } -}, -{ - "type": "node", - "id": 5072420231, - "lat": 53.0512023, - "lon": -0.8257584, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NG24 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5072969877, - "lat": 51.0985356, - "lon": -1.6992076, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5072969878, - "lat": 51.1000439, - "lon": -1.7051192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP5 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5073729236, - "lat": 52.2524857, - "lon": -2.6463957, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5075693377, - "lat": 53.0192513, - "lon": -2.5960358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "ref": "CW5 224" - } -}, -{ - "type": "node", - "id": 5075830578, - "lat": 51.2673610, - "lon": 0.3864802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME18 136D" - } -}, -{ - "type": "node", - "id": 5075830579, - "lat": 51.2278160, - "lon": 0.3318358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN11 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5075830580, - "lat": 51.2487108, - "lon": 0.3555452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME18 149" - } -}, -{ - "type": "node", - "id": 5075830582, - "lat": 51.2312188, - "lon": 0.4062924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ME18 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5075830587, - "lat": 51.2139871, - "lon": 0.3777075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 155D" - } -}, -{ - "type": "node", - "id": 5075830589, - "lat": 51.2128537, - "lon": 0.3940817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 56D" - } -}, -{ - "type": "node", - "id": 5076855473, - "lat": 51.0130059, - "lon": -1.6471658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5077434536, - "lat": 50.3700268, - "lon": -4.4892964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL13 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5077803545, - "lat": 52.6514874, - "lon": -0.4786876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5077973596, - "lat": 52.4018161, - "lon": -1.5115881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV1 121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5077973891, - "lat": 51.0890516, - "lon": -1.6690864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP5 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5077991781, - "lat": 51.0925220, - "lon": -1.6484723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5078596634, - "lat": 52.6478807, - "lon": -0.4996540, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5078596649, - "lat": 52.6533705, - "lon": -0.4899715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PE9 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5078849501, - "lat": 52.6533675, - "lon": -0.4790443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5079112136, - "lat": 52.6224176, - "lon": -0.3950526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE9 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5079116438, - "lat": 52.3873662, - "lon": -3.8815853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SY23 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5079321474, - "lat": 52.3920817, - "lon": -3.9331679, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5079366727, - "lat": 52.1744239, - "lon": 0.0449844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079395854, - "lat": 52.1538261, - "lon": 0.0493067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB23 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079446631, - "lat": 52.1870194, - "lon": -0.0129929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB23 506", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5079748603, - "lat": 51.1222246, - "lon": -1.6359973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079760741, - "lat": 51.1150320, - "lon": -1.6172594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079841739, - "lat": 51.1272142, - "lon": -1.6237798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079841772, - "lat": 50.8454555, - "lon": -0.6057745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079842771, - "lat": 50.8439709, - "lon": -0.6142872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079854782, - "lat": 51.1266562, - "lon": -1.5739390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079858036, - "lat": 51.1463111, - "lon": -1.5947945, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079858144, - "lat": 51.1342534, - "lon": -1.5819293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5079947906, - "lat": 50.7332857, - "lon": -2.7564827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref:GB:uprn": "10015337993", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5081607232, - "lat": 52.5692031, - "lon": -2.1056613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV2 442", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5081629693, - "lat": 51.4428473, - "lon": -1.5989479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5081946530, - "lat": 51.4085473, - "lon": -0.8504330, - "tags": { - "addr:city": "Wokingham", - "addr:postcode": "RG41 2TD", - "addr:street": "Meadow Road", - "amenity": "post_box", - "drive_through": "no", - "mapillary": "610963683563497", - "operator": "Royal Mail", - "post_box:type": "pillar", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 5082172608, - "lat": 53.7851613, - "lon": -1.0676551, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "YO8 2025" - } -}, -{ - "type": "node", - "id": 5082176845, - "lat": 52.6498742, - "lon": -0.4778965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 5082512198, - "lat": 50.7379269, - "lon": -1.9271604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 217D", - "ref:GB:uprn": "10015280780", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5082534619, - "lat": 50.9208764, - "lon": -3.2983714, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5082550966, - "lat": 56.4641131, - "lon": -2.9763468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "DD1 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5082550967, - "lat": 56.4713618, - "lon": -2.8930736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD5 147D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5082552774, - "lat": 56.4665391, - "lon": -2.9525314, - "tags": { - "amenity": "post_box", - "check_date": "2021-11-07", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD4 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5082566013, - "lat": 53.0791002, - "lon": -2.9079732, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL13 36" - } -}, -{ - "type": "node", - "id": 5082579964, - "lat": 56.4231493, - "lon": -2.9803184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 262D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5082579965, - "lat": 56.4254263, - "lon": -2.9774753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD6 233", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5082579966, - "lat": 56.4459705, - "lon": -2.8802631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD6 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5082579968, - "lat": 56.4439707, - "lon": -2.8741975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 150D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5082579970, - "lat": 56.4410580, - "lon": -2.8691643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 247", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5082579971, - "lat": 56.4509616, - "lon": -2.8843014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 126D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5082581477, - "lat": 56.2915611, - "lon": -3.2368240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY14 312D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5082608321, - "lat": 53.0853465, - "lon": -2.8776629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5082659408, - "lat": 53.4797834, - "lon": -2.2405807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "M2 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5082682840, - "lat": 53.1225799, - "lon": -2.8061298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5082683984, - "lat": 53.1366194, - "lon": -2.7892479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5082862854, - "lat": 51.4690065, - "lon": 0.1209825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5083896655, - "lat": 52.2548340, - "lon": -0.1207105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB23 455", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5083956543, - "lat": 52.2518619, - "lon": -0.1174727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB23 456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5084695926, - "lat": 53.6487839, - "lon": -2.1331667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL12 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5085628802, - "lat": 52.6746985, - "lon": 1.6679855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5085986436, - "lat": 53.7893490, - "lon": -2.8860818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR4 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5087338618, - "lat": 52.3857053, - "lon": -1.5755027, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CV4 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5087338620, - "lat": 52.3885629, - "lon": -1.5728795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:00; Sa,Su off", - "drive_through": "yes", - "mail:franked": "only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV4 217", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5087378383, - "lat": 51.2163514, - "lon": -0.7512870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5088895551, - "lat": 53.6446998, - "lon": -1.7417501, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5090580432, - "lat": 51.8020356, - "lon": -3.8238730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "wall", - "ref": "SA9 587", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5091207537, - "lat": 50.9947544, - "lon": 0.3765268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091207538, - "lat": 50.9952643, - "lon": 0.4292256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091207541, - "lat": 50.9847117, - "lon": 0.3507582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091207542, - "lat": 50.9780074, - "lon": 0.3928720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091207551, - "lat": 50.9993023, - "lon": 0.3906249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091207556, - "lat": 50.9862567, - "lon": 0.3355783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091207563, - "lat": 51.0022783, - "lon": 0.3678883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091217078, - "lat": 52.8994203, - "lon": -3.5722116, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL23 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091277806, - "lat": 52.9991006, - "lon": -3.4587568, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL21 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091285987, - "lat": 53.0079393, - "lon": -3.4440529, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL21 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091422380, - "lat": 51.0240486, - "lon": 0.4139205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN19 85D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5091422381, - "lat": 51.0226686, - "lon": 0.4213998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091422382, - "lat": 51.0204637, - "lon": 0.4357858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091422384, - "lat": 51.0090216, - "lon": 0.4409580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091422386, - "lat": 51.0080873, - "lon": 0.4358543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN19 96", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5091547135, - "lat": 53.5372693, - "lon": -2.0101360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "OL3 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "Geograph" - } -}, -{ - "type": "node", - "id": 5091547156, - "lat": 53.5353915, - "lon": -2.0049928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "OL3 39D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5091779416, - "lat": 53.0495933, - "lon": -3.3022221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5091789391, - "lat": 53.0779127, - "lon": -3.2732660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL15 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5092258855, - "lat": 51.0032891, - "lon": 0.4057905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Id not available. Label damaged", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5092410848, - "lat": 53.0645031, - "lon": -3.2209387, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL11 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5092438434, - "lat": 53.0948101, - "lon": -3.1950876, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "CH7 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5092559632, - "lat": 53.6152969, - "lon": -2.1355368, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5092559640, - "lat": 53.5897712, - "lon": -2.0880657, - "tags": { - "amenity": "post_box", - "fixme": "location approx", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5092559650, - "lat": 53.5826433, - "lon": -2.0911966, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5092559685, - "lat": 53.5624264, - "lon": -2.1034278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "location approx", - "mapillary": "768422574795201", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2024-02-20" - } -}, -{ - "type": "node", - "id": 5093010521, - "lat": 51.7742935, - "lon": -3.6587056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA10 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5093010639, - "lat": 51.7767646, - "lon": -3.6621290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA10 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5093010661, - "lat": 51.7793643, - "lon": -3.6778437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5093151064, - "lat": 53.1160702, - "lon": -2.9380435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL12 13" - } -}, -{ - "type": "node", - "id": 5094257366, - "lat": 51.1278622, - "lon": 0.2614459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 27", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5094257370, - "lat": 51.1269950, - "lon": 0.2662559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5094257371, - "lat": 51.1310959, - "lon": 0.2624247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5094257372, - "lat": 51.1298021, - "lon": 0.2625516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN1 1811;TN1 1822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5094257373, - "lat": 51.1331254, - "lon": 0.2717716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 62D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5094405019, - "lat": 51.1383892, - "lon": 0.2693033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN1 110D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5094405121, - "lat": 51.1366435, - "lon": 0.2668438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5094672007, - "lat": 51.7682821, - "lon": -3.7742287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "SA9 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5094673890, - "lat": 51.7996593, - "lon": -3.7176343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "SA9 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5094674233, - "lat": 51.8018934, - "lon": -3.7069475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA9 568", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5094725073, - "lat": 51.7711002, - "lon": -3.7526522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:45", - "post_box:type": "wall", - "ref": "SA9 577", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5094725074, - "lat": 51.7738301, - "lon": -3.7641553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA9 619D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5094725081, - "lat": 51.7959743, - "lon": -3.7007991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "SA9 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5095120196, - "lat": 52.6576724, - "lon": -2.0174011, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5095120197, - "lat": 52.6575541, - "lon": -2.0346972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5095120198, - "lat": 52.6601946, - "lon": -2.0361525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5095424918, - "lat": 51.7913892, - "lon": -3.6765988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "post_box:type": "lamp", - "ref": "SA10 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5095425043, - "lat": 51.7917619, - "lon": -3.6701256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA10 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5095425102, - "lat": 51.7928645, - "lon": -3.6843300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "SA10 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5095567678, - "lat": 52.5740992, - "lon": -2.1265126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5095623069, - "lat": 51.4718596, - "lon": -0.1227330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW9 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5096005886, - "lat": 52.3997500, - "lon": -1.5123071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV3 291D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5096065216, - "lat": 53.3964877, - "lon": -0.9640913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN10 90", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5096281849, - "lat": 53.5229197, - "lon": -1.1348298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN1 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5096281858, - "lat": 53.5229109, - "lon": -1.1362615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN1 17;DN1 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5097655283, - "lat": 53.4114377, - "lon": -0.9609907, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5098184843, - "lat": 51.7757986, - "lon": -3.6974346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA11 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5098218590, - "lat": 51.7380731, - "lon": -3.7493459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA10 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5098218600, - "lat": 51.7665294, - "lon": -3.7111897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "SA10 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5098218601, - "lat": 51.7710153, - "lon": -3.7040355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA11 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5098406003, - "lat": 50.8637796, - "lon": -0.0783632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Collection times correct as of 18th June 2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN1 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5098544576, - "lat": 56.8514526, - "lon": -2.5748548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB30 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5098557943, - "lat": 57.2059643, - "lon": -2.6377105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 422", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5098737599, - "lat": 57.2317890, - "lon": -2.6852582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB33 539", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5098737601, - "lat": 57.2339760, - "lon": -2.7075649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 538", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5098737613, - "lat": 57.2298541, - "lon": -2.7001443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB33 630", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5098767687, - "lat": 57.2005200, - "lon": -2.5900356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB51 420", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5098791178, - "lat": 53.3954596, - "lon": -4.3286520, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5098837103, - "lat": 57.2438015, - "lon": -2.7285723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 421", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5099827343, - "lat": 51.1324198, - "lon": 0.2597898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN1 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5100888752, - "lat": 50.8035719, - "lon": 0.3030465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 879", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5101098366, - "lat": 52.0828466, - "lon": -4.6574079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA43 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5101444047, - "lat": 52.4067359, - "lon": -1.5056263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5101444052, - "lat": 52.4091076, - "lon": -1.5000772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5103083498, - "lat": 51.2890838, - "lon": -0.3546347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT22 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5103083499, - "lat": 51.2908268, - "lon": -0.3489282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5103380176, - "lat": 52.0883423, - "lon": -4.6547703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA43 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5103599257, - "lat": 52.3960054, - "lon": -1.5501077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV5 277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survery" - } -}, -{ - "type": "node", - "id": 5104105560, - "lat": 52.0962584, - "lon": 0.2898455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5104113955, - "lat": 52.0979610, - "lon": 0.2841394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB21 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5104114150, - "lat": 52.0976209, - "lon": 0.2799617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB21 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5104125991, - "lat": 51.6512167, - "lon": -0.1964628, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN5 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5104140161, - "lat": 51.4621152, - "lon": -0.3621508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW3 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5105616679, - "lat": 51.4527518, - "lon": -1.0362210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5106084752, - "lat": 52.4870160, - "lon": -1.9307577, - "tags": { - "amenity": "post_box", - "commons": "Post box B66 52", - "historic": "memorial", - "memorial": "plaque", - "note": "post box in brick wall, plaque attached to front of box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B66 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q39799627" - } -}, -{ - "type": "node", - "id": 5107555266, - "lat": 52.7840827, - "lon": 0.5176167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5107643437, - "lat": 52.0891927, - "lon": -4.6465814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "note": "Located inside store, near entrance.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA43 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5107739035, - "lat": 51.5025052, - "lon": -0.3198816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 30D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5108969333, - "lat": 51.1206846, - "lon": 0.2666879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 283D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5108969334, - "lat": 51.1243651, - "lon": 0.2725348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5108969335, - "lat": 51.1246505, - "lon": 0.2634771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 82D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5108969336, - "lat": 51.1189265, - "lon": 0.2713095, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN2 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5109039101, - "lat": 51.1141046, - "lon": -2.9777460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5109069462, - "lat": 51.1313128, - "lon": 0.2536594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 45D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5109233742, - "lat": 50.8262129, - "lon": -3.2950804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "name": "Colliton Cross", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX14 3LQ", - "ref": "EX14 384" - } -}, -{ - "type": "node", - "id": 5109240994, - "lat": 53.0085308, - "lon": -1.4368567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "DE56 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5109274053, - "lat": 50.8132566, - "lon": -3.2358438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "name": "Awliscombe", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EX14 3PP", - "ref": "EX14 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5109832921, - "lat": 51.5166045, - "lon": -0.3388331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 17" - } -}, -{ - "type": "node", - "id": 5109838959, - "lat": 55.8452349, - "lon": -3.1928490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH26 97", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5109848072, - "lat": 55.8478515, - "lon": -3.1651226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH25 167", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5111351491, - "lat": 53.3169277, - "lon": -3.7768838, - "tags": { - "amenity": "post_box", - "ref": "LL30 150" - } -}, -{ - "type": "node", - "id": 5111406387, - "lat": 50.8053372, - "lon": -3.2213746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15", - "name": "Ashfield Cross", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX14 3NX", - "ref": "EX14 252" - } -}, -{ - "type": "node", - "id": 5111732185, - "lat": 50.5351578, - "lon": -4.4031881, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5112332593, - "lat": 52.6212958, - "lon": 0.9770845, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5113557456, - "lat": 51.6184682, - "lon": -1.2391834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5113564102, - "lat": 50.8452621, - "lon": -3.3218716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "name": "Dulford", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX15 2ED", - "ref": "EX15 263" - } -}, -{ - "type": "node", - "id": 5113564116, - "lat": 50.8655769, - "lon": -3.3251122, - "tags": { - "addr:city": "Cullompton", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "name": "Kentisbeare Post Office", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "EX15 2AD", - "ref": "EX15 279" - } -}, -{ - "type": "node", - "id": 5113564140, - "lat": 50.8588647, - "lon": -3.3352424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "name": "Kentismoor", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "EX15 2BS", - "ref": "EX15 325" - } -}, -{ - "type": "node", - "id": 5113623485, - "lat": 57.0210939, - "lon": -2.1613743, - "tags": { - "addr:city": "Muchalls", - "addr:country": "GB", - "addr:postcode": "AB39 3RD", - "addr:street": "Marine Terrace", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5113757594, - "lat": 52.1635147, - "lon": 1.4961475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "post_box:type": "wall", - "ref": "IP17 4637", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5114761203, - "lat": 52.8617048, - "lon": 0.5449779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5114924585, - "lat": 50.9697504, - "lon": -3.2497222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Pitt Farm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA21 9PY", - "ref": "TA21 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5114984868, - "lat": 54.3864655, - "lon": -2.8928377, - "tags": { - "amenity": "post_box", - "ref": "LA23 124" - } -}, -{ - "type": "node", - "id": 5114984875, - "lat": 54.3525640, - "lon": -2.9181971, - "tags": { - "amenity": "post_box", - "ref": "LA23 206" - } -}, -{ - "type": "node", - "id": 5114984885, - "lat": 54.3498061, - "lon": -2.9068885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "LA23 120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5115033609, - "lat": 52.6478810, - "lon": 1.2624038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "description": "For pre-paid parcels bought online, barcode returns and business franked mail", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "NR3 342P" - } -}, -{ - "type": "node", - "id": 5115292543, - "lat": 54.6284748, - "lon": -5.9400216, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "2", - "addr:postcode": "BT15 5DU", - "addr:street": "Chichester Park North", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT15 327" - } -}, -{ - "type": "node", - "id": 5115292544, - "lat": 54.6309458, - "lon": -5.9463281, - "tags": { - "addr:city": "Belfast", - "addr:housenumber": "140", - "addr:postcode": "BT15 5EX", - "addr:street": "Cavehill Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT15 169" - } -}, -{ - "type": "node", - "id": 5115403645, - "lat": 54.0862386, - "lon": -1.7597033, - "tags": { - "amenity": "post_box", - "note": "is very low", - "post_box:type": "wall", - "ref": "HG3 152", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5115707680, - "lat": 57.6045354, - "lon": -7.1623549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 08:00", - "drive_through": "yes", - "post_box:type": "lamp", - "ref": "HS6 28" - } -}, -{ - "type": "node", - "id": 5115937819, - "lat": 52.4728625, - "lon": -0.6546679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN14 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5115981000, - "lat": 50.8016456, - "lon": 0.2635656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 842D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5115981010, - "lat": 50.8055386, - "lon": 0.2631972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN22 839D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5116655407, - "lat": 55.0205867, - "lon": -1.5376085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE12 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 5116655408, - "lat": 55.0241693, - "lon": -1.5371096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5116655409, - "lat": 55.0252017, - "lon": -1.5501076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE12 394", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5116655410, - "lat": 55.0216400, - "lon": -1.5657556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 399", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5116656760, - "lat": 55.0323212, - "lon": -1.5614077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE12 391D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5117473546, - "lat": 53.2546817, - "lon": -1.7479195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SK17 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5117653308, - "lat": 50.7279700, - "lon": -1.8631144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45", - "opening_hours": "Mo-Fr 11:00-18:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH1 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118076749, - "lat": 50.9743195, - "lon": -3.2461790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "name": "Oaken Ground", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA21 9BY", - "ref": "TA21 372" - } -}, -{ - "type": "node", - "id": 5118076813, - "lat": 50.9734328, - "lon": -3.2431944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "name": "Rockwell Green Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TA21 9BT", - "ref": "TA21 360" - } -}, -{ - "type": "node", - "id": 5118159622, - "lat": 52.0362435, - "lon": 0.7265648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CO10 1002D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5118171625, - "lat": 50.7264403, - "lon": -1.8404881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:45, Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH1 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118190534, - "lat": 50.7339989, - "lon": -1.8440459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH1 82", - "ref:GB:uprn": "10015324016", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118200261, - "lat": 52.0357080, - "lon": 0.7219783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CO10 1021D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5118243786, - "lat": 52.0407650, - "lon": 0.7272629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1026D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 5118350064, - "lat": 50.7358500, - "lon": -1.8696674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 104", - "ref:GB:uprn": "10015290749", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118472699, - "lat": 50.7372259, - "lon": -1.8822127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH3 183", - "ref:GB:uprn": "10015323866", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118491187, - "lat": 50.7079304, - "lon": -1.9105809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH13 309", - "ref:GB:uprn": "10015600177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118492582, - "lat": 50.7089912, - "lon": -1.9074296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "mapillary": "293890252517601", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH13 169", - "ref:GB:uprn": "10015432272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 5118498938, - "lat": 50.7131556, - "lon": -1.9124282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH13 148", - "ref:GB:uprn": "10015346355", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118502323, - "lat": 50.7161707, - "lon": -1.9129977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH13 105", - "ref:GB:uprn": "10015319424", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5118503982, - "lat": 50.7139474, - "lon": -1.9065930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BH13 83", - "ref:GB:uprn": "10015352664", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5119333421, - "lat": 52.6268110, - "lon": -1.5788111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B79 134" - } -}, -{ - "type": "node", - "id": 5119333896, - "lat": 52.6303805, - "lon": -1.5826149, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B79 276" - } -}, -{ - "type": "node", - "id": 5119703191, - "lat": 52.0372635, - "lon": 0.7353001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CO10 1015D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703192, - "lat": 52.0371922, - "lon": 0.7432026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO10 1108D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703193, - "lat": 52.0353623, - "lon": 0.7477730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO10 1018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703202, - "lat": 52.0389023, - "lon": 0.7472078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO10 1137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703203, - "lat": 52.0412971, - "lon": 0.7494126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO10 1127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703204, - "lat": 52.0445710, - "lon": 0.7547723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO10 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703205, - "lat": 52.0482695, - "lon": 0.7439348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO10 1122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703206, - "lat": 52.0518122, - "lon": 0.7343838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CO10 1119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703207, - "lat": 52.0482105, - "lon": 0.7293560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CO10 1115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119703211, - "lat": 52.0447904, - "lon": 0.7273789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO10 1028D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-20" - } -}, -{ - "type": "node", - "id": 5119745441, - "lat": 57.0660207, - "lon": -2.1321074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 549D" - } -}, -{ - "type": "node", - "id": 5120060238, - "lat": 56.5818880, - "lon": -2.7341529, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5120060239, - "lat": 56.5864915, - "lon": -2.7138486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD11 318", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5120104441, - "lat": 56.5555236, - "lon": -2.6494704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5120128337, - "lat": 52.5088715, - "lon": -2.0663260, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5120374743, - "lat": 52.6528209, - "lon": -3.9784026, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL36 118", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5120449545, - "lat": 52.8528956, - "lon": -4.0944469, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL46 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5120597522, - "lat": 54.1242849, - "lon": -0.5240560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "YO17 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5122324302, - "lat": 55.4540965, - "lon": -2.6343901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD9 32" - } -}, -{ - "type": "node", - "id": 5122338781, - "lat": 53.3533533, - "lon": -1.9970463, - "tags": { - "amenity": "post_box", - "mapillary": "2898946133758435", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 5122759288, - "lat": 52.1452339, - "lon": 0.1566979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5122774242, - "lat": 52.1471208, - "lon": 0.1498214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 486", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5123868540, - "lat": 50.8648258, - "lon": 0.5888616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN34 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868541, - "lat": 50.8657496, - "lon": 0.5890171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868543, - "lat": 50.8632446, - "lon": 0.5879422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN34 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868546, - "lat": 50.8612363, - "lon": 0.5895630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868547, - "lat": 50.8592453, - "lon": 0.5876693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN34 36D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868548, - "lat": 50.8581503, - "lon": 0.5922659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TN34 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-08-28" - } -}, -{ - "type": "node", - "id": 5123868549, - "lat": 50.8578417, - "lon": 0.5941401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN34 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868550, - "lat": 50.8599958, - "lon": 0.5962350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN35 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-05-20" - } -}, -{ - "type": "node", - "id": 5123868553, - "lat": 50.8637144, - "lon": 0.6082727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN35 244D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868554, - "lat": 50.8750674, - "lon": 0.6634933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN35 233D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868555, - "lat": 50.8768149, - "lon": 0.6673631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN35 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868556, - "lat": 50.8933112, - "lon": 0.6919046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN35 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5123868558, - "lat": 50.8559144, - "lon": 0.5805923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TN34 2131;TN34 2132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5123868559, - "lat": 50.8556714, - "lon": 0.5783177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN34 9993", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 5123938677, - "lat": 50.8541285, - "lon": 0.5751300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 68D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-05-21" - } -}, -{ - "type": "node", - "id": 5123938678, - "lat": 50.8589968, - "lon": 0.5832852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 5123938679, - "lat": 50.8573605, - "lon": 0.5823792, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-08", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 5123938680, - "lat": 50.8564385, - "lon": 0.5834985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-01-08", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 135", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5123938685, - "lat": 50.8632598, - "lon": 0.5862290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN34 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2017-09-22" - } -}, -{ - "type": "node", - "id": 5124065963, - "lat": 54.7112546, - "lon": -3.4327216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA15 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5124876370, - "lat": 52.3140560, - "lon": -1.8052917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5124925058, - "lat": 54.0692542, - "lon": -1.5011020, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5125391140, - "lat": 50.8021987, - "lon": 0.2531803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 888D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5126250613, - "lat": 54.0401752, - "lon": -0.3338630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "wall", - "ref": "YO25 336", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5126257531, - "lat": 54.0289658, - "lon": -0.3484943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO25 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5126455832, - "lat": 54.2325278, - "lon": -1.4147764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "YO7 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5126509328, - "lat": 52.7289465, - "lon": 1.1586993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5126575496, - "lat": 55.0285375, - "lon": -1.5800420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 388", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5126593727, - "lat": 55.0202572, - "lon": -1.5828004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE12 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5126613300, - "lat": 55.0151199, - "lon": -1.5752681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NE12 384" - } -}, -{ - "type": "node", - "id": 5126625602, - "lat": 55.0184318, - "lon": -1.5678759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE12 400;NE12 1400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5126726192, - "lat": 50.7510169, - "lon": -3.4043176, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5127253079, - "lat": 51.1181890, - "lon": -0.8448476, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5127900710, - "lat": 52.4756920, - "lon": -2.7195279, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5128009806, - "lat": 53.9999011, - "lon": -1.4188816, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "HG5 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5128074068, - "lat": 53.9223831, - "lon": -1.5802391, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5128196821, - "lat": 54.0574604, - "lon": -1.6105816, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5128196825, - "lat": 54.0457424, - "lon": -1.6088407, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5128945569, - "lat": 52.1835478, - "lon": 0.2215946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "CB21 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-09-25" - } -}, -{ - "type": "node", - "id": 5129551125, - "lat": 51.1870147, - "lon": -0.8150697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "has just ER rather than EVIIR updated to reflect this", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 63D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 5129666621, - "lat": 54.0571212, - "lon": -1.6931950, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5129680856, - "lat": 54.0724303, - "lon": -0.2491110, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO16 39" - } -}, -{ - "type": "node", - "id": 5129715187, - "lat": 53.7373212, - "lon": -1.3121638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF10 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5130864404, - "lat": 54.2873926, - "lon": -1.4006865, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5131756457, - "lat": 57.4113419, - "lon": -7.3345879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5131832901, - "lat": 51.5210413, - "lon": -0.1250631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "right slot (WC1B 208 is for \"Franked Mail\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WC1B 208D;WC1B 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5131932875, - "lat": 51.4834834, - "lon": -0.5218868, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL3 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5131951097, - "lat": 51.5464701, - "lon": -0.5311422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL0 203", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5131972514, - "lat": 51.8507823, - "lon": -4.3372163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA31 442D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5133481549, - "lat": 54.5055951, - "lon": -1.7067159, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5133519380, - "lat": 54.1690103, - "lon": -0.6576473, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5133560919, - "lat": 54.1898504, - "lon": -0.5352290, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5133642585, - "lat": 54.2469203, - "lon": -0.9170233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5133960151, - "lat": 52.0888122, - "lon": -4.6493545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA43 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5133960155, - "lat": 52.0907938, - "lon": -4.6495235, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5133960157, - "lat": 52.0903236, - "lon": -4.6519700, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5134031726, - "lat": 51.5851915, - "lon": -0.5489853, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL9 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5134034508, - "lat": 52.3786076, - "lon": -3.8464413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SY23 223" - } -}, -{ - "type": "node", - "id": 5134099883, - "lat": 54.0967697, - "lon": -0.8755602, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5134110560, - "lat": 54.0610330, - "lon": -0.9103140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5134132872, - "lat": 54.2015948, - "lon": -0.8523350, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5134150552, - "lat": 54.1315338, - "lon": -0.7832166, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5134666405, - "lat": 53.3604722, - "lon": -2.2699661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M90 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5135555189, - "lat": 51.1446833, - "lon": 0.3248467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5135555192, - "lat": 51.1415178, - "lon": 0.3261664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5135598696, - "lat": 51.1470117, - "lon": 0.3436033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5135598697, - "lat": 51.1461954, - "lon": 0.3315008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN2 100D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5135598699, - "lat": 51.1450733, - "lon": 0.3371933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN2 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5135675629, - "lat": 51.4491434, - "lon": -1.0291248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "COCKENY HILL", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 5135686375, - "lat": 57.7314509, - "lon": -5.7034764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5135760730, - "lat": 51.1417957, - "lon": 0.3305028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN2 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5135760731, - "lat": 51.1399979, - "lon": 0.3339250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN2 297D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5135924834, - "lat": 52.5047175, - "lon": -1.8881947, - "tags": { - "amenity": "post_box", - "note": "plate says B6 2151", - "post_box:type": "pillar", - "ref": "B6 151", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5136390974, - "lat": 54.4657669, - "lon": -0.6776380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO21 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5137287222, - "lat": 52.3142412, - "lon": 1.6646577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP18 5551", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5137328101, - "lat": 54.2525083, - "lon": -0.9955682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO62 264D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5137348050, - "lat": 54.2543398, - "lon": -0.9944579, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5137350794, - "lat": 54.2540940, - "lon": -1.0025926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO62 466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5137378335, - "lat": 54.2496956, - "lon": -1.0600327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "YO62 516D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5137474018, - "lat": 54.2509354, - "lon": -1.1200555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO62 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-09-30" - } -}, -{ - "type": "node", - "id": 5137475021, - "lat": 54.2582531, - "lon": -1.1173366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5137488246, - "lat": 54.3011141, - "lon": -1.1670961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO62 274", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5137488253, - "lat": 54.2973082, - "lon": -1.1681786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:type": "wall", - "ref": "YO62 300", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5137508143, - "lat": 54.2655459, - "lon": -1.1570038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:15", - "post_box:type": "lamp", - "ref": "YO62 284" - } -}, -{ - "type": "node", - "id": 5137547150, - "lat": 54.2657506, - "lon": -1.0228916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO62 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5137572632, - "lat": 54.3650077, - "lon": -1.0370590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "YO62 304", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5137577813, - "lat": 54.3173025, - "lon": -0.9819462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 451", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5137583713, - "lat": 54.3043205, - "lon": -0.8803494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 452D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5139169999, - "lat": 54.2379760, - "lon": -0.8780552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5139184687, - "lat": 54.3328775, - "lon": -1.1895894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5139196852, - "lat": 54.2997207, - "lon": -0.8883192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 288", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5139639425, - "lat": 52.1131650, - "lon": 0.0554811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB22 315", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5139651981, - "lat": 52.1151142, - "lon": 0.0589505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB22 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5139660329, - "lat": 52.1270378, - "lon": 0.0334127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB22 219", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5139756801, - "lat": 51.4411089, - "lon": -0.1071765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW2 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5139764859, - "lat": 50.8292772, - "lon": -0.5777794, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5139776376, - "lat": 50.8140446, - "lon": -0.4770123, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5139783744, - "lat": 50.8073241, - "lon": -0.4759177, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1473D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5139786620, - "lat": 50.8038164, - "lon": -0.4771285, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is inside the triangular greenery between Seaview Avenue and South Strand. One has to walk along the footpath going into the centre of the triangle and the postbox is a wall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN16 1474D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5139794812, - "lat": 50.8120290, - "lon": -0.4926533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN16 1479D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5139962095, - "lat": 52.5253954, - "lon": 1.5896273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5140109679, - "lat": 52.0818772, - "lon": -4.6633075, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5140224473, - "lat": 57.7196676, - "lon": -7.1726723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS6 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5140273031, - "lat": 53.2455795, - "lon": -1.2946740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5140813516, - "lat": 51.7722691, - "lon": 0.0548029, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "CM19 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5140821256, - "lat": 51.7832659, - "lon": 0.1398182, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5141080319, - "lat": 52.5035395, - "lon": 1.4368118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5141146828, - "lat": 54.2602925, - "lon": -0.9506126, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO62 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141153668, - "lat": 54.1473790, - "lon": -1.0096748, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5141171412, - "lat": 54.2798823, - "lon": -0.8714563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141432618, - "lat": 50.1842164, - "lon": -5.5733795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR26 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5141432619, - "lat": 50.1913467, - "lon": -5.5672023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR26 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-07-21" - } -}, -{ - "type": "node", - "id": 5141432620, - "lat": 50.1893635, - "lon": -5.5196986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR26 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5141432921, - "lat": 50.1970983, - "lon": -5.4958758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR26 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-11-01" - } -}, -{ - "type": "node", - "id": 5141432922, - "lat": 50.2054062, - "lon": -5.5004784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5141432923, - "lat": 50.2090507, - "lon": -5.4912973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR26 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5141549499, - "lat": 50.1579881, - "lon": -5.4664640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "information_plate:date": "2017-07-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-11-01" - } -}, -{ - "type": "node", - "id": 5141549501, - "lat": 50.1540790, - "lon": -5.4698094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR20 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-11-01" - } -}, -{ - "type": "node", - "id": 5141549508, - "lat": 50.1785412, - "lon": -5.5027874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR20 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-11-01" - } -}, -{ - "type": "node", - "id": 5141549509, - "lat": 50.1710646, - "lon": -5.5077557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR20 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-11-01" - } -}, -{ - "type": "node", - "id": 5141549510, - "lat": 50.1328900, - "lon": -5.5652377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1019229523034950", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR20 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5141549511, - "lat": 50.1265771, - "lon": -5.5668088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR20 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5141549512, - "lat": 50.1132789, - "lon": -5.5737644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR20 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5141549821, - "lat": 50.1195815, - "lon": -5.5785146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TR20 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5141549822, - "lat": 50.1296008, - "lon": -5.6057189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR20 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5141583566, - "lat": 53.9933513, - "lon": -1.5463921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 5141741140, - "lat": 50.1028458, - "lon": -5.5605264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR20 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5141747244, - "lat": 52.2656819, - "lon": 1.5760135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "IP17 4653", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5141747245, - "lat": 52.2879500, - "lon": 1.6078500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "IP17 4677", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5141747246, - "lat": 52.2709400, - "lon": 1.5853300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "IP17 4683", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5141764259, - "lat": 50.7053391, - "lon": -3.7126708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX6 111", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5141817974, - "lat": 56.4394804, - "lon": -2.9372167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 121D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5141840935, - "lat": 54.2590997, - "lon": -3.2159170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 08:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA20 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141894084, - "lat": 50.7621524, - "lon": -1.2986122, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2017-10-01", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO31 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/cowes-post-office-po32-6ra/0000PO3147" - } -}, -{ - "type": "node", - "id": 5141919798, - "lat": 54.2652759, - "lon": -0.9206908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "YO62 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141933658, - "lat": 54.2265014, - "lon": -0.8750749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141970889, - "lat": 54.2108574, - "lon": -0.9027110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141972004, - "lat": 54.1658171, - "lon": -0.9483960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "wall", - "ref": "YO62 325", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5141989596, - "lat": 54.1593501, - "lon": -1.0276650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "YO62 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5142053650, - "lat": 53.9358337, - "lon": -0.9044304, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5142131227, - "lat": 54.4039201, - "lon": -2.1667772, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5142167049, - "lat": 53.9558715, - "lon": -0.5323990, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5142268212, - "lat": 51.2122221, - "lon": -1.4896169, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5142298190, - "lat": 51.2855724, - "lon": -0.9092313, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5142314850, - "lat": 51.2820574, - "lon": -0.9625561, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG27 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5142780124, - "lat": 53.5222634, - "lon": -1.1391897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:14", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN1 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5143220769, - "lat": 53.7621249, - "lon": -1.3095139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5143306415, - "lat": 53.6876849, - "lon": -0.5907335, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5143477021, - "lat": 54.6292642, - "lon": -1.5754047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL5 98" - } -}, -{ - "type": "node", - "id": 5143741311, - "lat": 56.5425243, - "lon": -3.4835452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 150D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5144695711, - "lat": 58.3474216, - "lon": -3.1627729, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5144791490, - "lat": 53.7521525, - "lon": -0.5755316, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5145089396, - "lat": 54.2243001, - "lon": -1.7661239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HG4 4" - } -}, -{ - "type": "node", - "id": 5146118850, - "lat": 53.8957300, - "lon": -0.2443018, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5147417515, - "lat": 51.5327560, - "lon": -0.7201171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SL6 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5147934757, - "lat": 50.8828414, - "lon": -2.7480073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "854193449328801", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5147995421, - "lat": 52.1249621, - "lon": 0.1767754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5148005551, - "lat": 51.7611949, - "lon": -2.3069921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-10-04" - } -}, -{ - "type": "node", - "id": 5148016961, - "lat": 51.5269246, - "lon": -0.7255846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "SL6 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5148016963, - "lat": 51.5226368, - "lon": -0.7232672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SL1 2401;SL1 2402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5148044032, - "lat": 52.1212327, - "lon": 0.2388642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5148060192, - "lat": 52.1478863, - "lon": 0.1924208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB22 554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5148134095, - "lat": 50.7469535, - "lon": -3.4105332, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "EX5 7BD", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5148570052, - "lat": 51.4122110, - "lon": -0.2804340, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5149891470, - "lat": 52.4710406, - "lon": 1.2288165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5150138939, - "lat": 51.5668403, - "lon": -0.5015621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB9 63D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5150524339, - "lat": 51.2910538, - "lon": -0.4189667, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KT24 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5150569957, - "lat": 51.2888640, - "lon": -0.8314516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45", - "opening_hours": "Mo-Fr 12:00-18:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "GU51 10" - } -}, -{ - "type": "node", - "id": 5150576893, - "lat": 51.2888305, - "lon": -0.8314221, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU51 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5150594473, - "lat": 51.3043746, - "lon": -0.6364605, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU24 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5150921812, - "lat": 52.4019187, - "lon": -1.9716078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B31 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5151260842, - "lat": 50.3820541, - "lon": -3.9856018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 695", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5151471869, - "lat": 54.5290047, - "lon": -1.8371053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "ref": "DL12 201" - } -}, -{ - "type": "node", - "id": 5151471870, - "lat": 54.5295417, - "lon": -1.8385367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00; Su off", - "ref": "DL12 223" - } -}, -{ - "type": "node", - "id": 5153629785, - "lat": 54.9925667, - "lon": -1.6064310, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 81", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5154012765, - "lat": 50.7935216, - "lon": -0.6666050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "last_checked": "2022-04-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 108", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154109520, - "lat": 56.0101375, - "lon": -3.7239958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 158", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5154109821, - "lat": 56.0105218, - "lon": -3.7281176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 125D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5154162531, - "lat": 56.0203236, - "lon": -3.7201837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5154207127, - "lat": 52.4230036, - "lon": -0.8021533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154207135, - "lat": 52.4230391, - "lon": -0.7983170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 13D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154207136, - "lat": 52.4214502, - "lon": -0.7926202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154234676, - "lat": 52.4785507, - "lon": -0.7078265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN18 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154234681, - "lat": 52.4913684, - "lon": -0.6836998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NN17 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154234683, - "lat": 52.4850562, - "lon": -0.6862936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN18 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154259191, - "lat": 52.4362053, - "lon": -0.6877730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 41", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154259194, - "lat": 52.4379656, - "lon": -0.6855074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN14 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154309726, - "lat": 52.4116010, - "lon": -0.7121480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154309729, - "lat": 52.4095931, - "lon": -0.6871310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:14; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN16 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154309745, - "lat": 52.3843677, - "lon": -0.6979218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5154416289, - "lat": 51.5002110, - "lon": -0.1591673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 12;SW1X 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5155535308, - "lat": 51.4976273, - "lon": -0.1592576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 47;SW1X 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5155549221, - "lat": 53.9528927, - "lon": -2.7704694, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PR3 243" - } -}, -{ - "type": "node", - "id": 5155550629, - "lat": 52.6809539, - "lon": 0.8558840, - "tags": { - "amenity": "post_box", - "fixme": "Is this a real box? It does not have a plate on it and has exceptionally fancy painting.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5156306950, - "lat": 52.8097909, - "lon": -0.7317995, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5156313389, - "lat": 53.9838532, - "lon": -1.7097877, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5157815065, - "lat": 51.2195959, - "lon": -0.1617063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15", - "description": "This is a private postbox.", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 5157835152, - "lat": 51.2619555, - "lon": -0.1372524, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 291D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5157841775, - "lat": 51.2638944, - "lon": -0.1453692, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5157847501, - "lat": 51.2607310, - "lon": -0.1446182, - "tags": { - "amenity": "post_box", - "amenity_1": "disused", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5157855368, - "lat": 51.2389906, - "lon": -0.1337619, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5157862739, - "lat": 51.2374467, - "lon": -0.1643880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 5160393433, - "lat": 50.3851426, - "lon": -3.9719098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5161030005, - "lat": 52.7151260, - "lon": 1.6868032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5161738275, - "lat": 51.8348104, - "lon": -1.4852209, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5162698475, - "lat": 53.3670943, - "lon": -2.7398293, - "tags": { - "amenity": "post_box", - "ref": "WA8 43D" - } -}, -{ - "type": "node", - "id": 5162891573, - "lat": 51.2431752, - "lon": -0.8314333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU10 76D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5162983677, - "lat": 55.5407333, - "lon": -4.6559181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KA10 3" - } -}, -{ - "type": "node", - "id": 5162983678, - "lat": 55.5439039, - "lon": -4.6566155, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA10 5" - } -}, -{ - "type": "node", - "id": 5162983679, - "lat": 55.5442984, - "lon": -4.6617814, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KA10 1000" - } -}, -{ - "type": "node", - "id": 5162983680, - "lat": 55.5438481, - "lon": -4.6644838, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA10 14" - } -}, -{ - "type": "node", - "id": 5162983681, - "lat": 55.5428917, - "lon": -4.6694177, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA10 12" - } -}, -{ - "type": "node", - "id": 5162983682, - "lat": 55.5458819, - "lon": -4.6644607, - "tags": { - "amenity": "post_box", - "post_box:type": "indoor_pillar", - "ref": "KA10 161" - } -}, -{ - "type": "node", - "id": 5163141835, - "lat": 51.2226127, - "lon": -2.4572033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA3 148D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5163141836, - "lat": 51.2237180, - "lon": -2.4470190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA3 200D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5163141837, - "lat": 51.2234761, - "lon": -2.4421615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA3 260D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5163271810, - "lat": 54.2276270, - "lon": -1.3797364, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO7 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5163623167, - "lat": 56.3392894, - "lon": -5.1594412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA33 36", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 5164561932, - "lat": 57.3235338, - "lon": -7.3677113, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5164561983, - "lat": 57.6176365, - "lon": -7.1967141, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HS6 16" - } -}, -{ - "type": "node", - "id": 5165041153, - "lat": 50.7252517, - "lon": -3.9577333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 170", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5165491323, - "lat": 52.0720571, - "lon": 0.1782227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB10 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5165612243, - "lat": 52.5922080, - "lon": -2.1529534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5166227606, - "lat": 50.1730640, - "lon": -5.4903895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR27 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5166259075, - "lat": 50.1646620, - "lon": -5.4349534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5166263156, - "lat": 50.1645215, - "lon": -5.4568811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "mapillary": "469481172703829", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-06-30" - } -}, -{ - "type": "node", - "id": 5166382937, - "lat": 56.1555092, - "lon": -3.9523637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "FK9 80D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5167486915, - "lat": 51.5324165, - "lon": -0.3104917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "post_box:type": "pillar", - "ref": "UB6 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5167503024, - "lat": 52.7558494, - "lon": 0.3947306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE30 5555;PE30 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5167503028, - "lat": 52.7515988, - "lon": 0.3987806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE30 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5167796213, - "lat": 50.8016796, - "lon": 0.2578347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN21 814", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5167796479, - "lat": 53.5136266, - "lon": -1.1445731, - "tags": { - "amenity": "post_box", - "ref": "DN4 34D" - } -}, -{ - "type": "node", - "id": 5167973832, - "lat": 52.0156591, - "lon": -1.3775450, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5168244688, - "lat": 54.1031030, - "lon": -0.9001463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO60 369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5168250677, - "lat": 53.7407275, - "lon": -1.2556421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 742", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5168258948, - "lat": 54.1303250, - "lon": -1.4337557, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5168261178, - "lat": 54.3795280, - "lon": -2.0250224, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5168265130, - "lat": 54.2056432, - "lon": -1.6838159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HG4 31" - } -}, -{ - "type": "node", - "id": 5168276271, - "lat": 54.3489717, - "lon": -0.5204883, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5168300832, - "lat": 54.0420512, - "lon": -1.4072708, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5168572729, - "lat": 52.7476254, - "lon": 0.4057010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5169334120, - "lat": 54.3762156, - "lon": -1.6062833, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5169356643, - "lat": 50.8075486, - "lon": 0.2706973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 840D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5169964019, - "lat": 51.7897205, - "lon": -3.7481034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Post Office", - "post_box:type": "lamp", - "ref": "SA9 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5169982763, - "lat": 51.7909724, - "lon": -3.7384985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "SA9 572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5169982849, - "lat": 51.8026041, - "lon": -3.6950995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA9 566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5170086526, - "lat": 52.5236376, - "lon": -1.4615208, - "tags": { - "amenity": "post_box", - "name": "CV11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5170333529, - "lat": 54.0932032, - "lon": -1.3325545, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-27", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5170404005, - "lat": 54.4007836, - "lon": -1.8394584, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5172851422, - "lat": 53.0539565, - "lon": -3.8890847, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL25 15" - } -}, -{ - "type": "node", - "id": 5173015251, - "lat": 51.5729605, - "lon": -0.4984136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB9 64D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5173192165, - "lat": 53.9659452, - "lon": -1.3512969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 460" - } -}, -{ - "type": "node", - "id": 5173371189, - "lat": 50.3562223, - "lon": -4.7140606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "GPS" - } -}, -{ - "type": "node", - "id": 5173615164, - "lat": 52.0400457, - "lon": -1.3611607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "OX15 1130D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5173780598, - "lat": 54.4755697, - "lon": -1.0650910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO21 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5173819632, - "lat": 54.4440512, - "lon": -1.2001857, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5173851918, - "lat": 54.4215399, - "lon": -1.2366604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TS9 152" - } -}, -{ - "type": "node", - "id": 5173851962, - "lat": 54.3325293, - "lon": -1.5084335, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5173875549, - "lat": 54.3335552, - "lon": -1.5649744, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5173938509, - "lat": 54.0153852, - "lon": -0.2244684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO25 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5173991872, - "lat": 53.9866444, - "lon": -0.5371796, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO25 330", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5174004468, - "lat": 53.8984248, - "lon": -0.4052578, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5174021126, - "lat": 53.8957033, - "lon": -0.4588912, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5174023143, - "lat": 53.9201067, - "lon": -0.4601935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5174046936, - "lat": 53.9673993, - "lon": -0.4366873, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5174049374, - "lat": 53.9315307, - "lon": -0.4379942, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO25 396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5174993387, - "lat": 53.8422314, - "lon": -0.4314427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HU17 296;HU17 2296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5175067527, - "lat": 54.3513418, - "lon": -6.6585072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT61 17", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5175132203, - "lat": 53.4622053, - "lon": -1.9673369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-06-11", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK13 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5175366914, - "lat": 50.7510525, - "lon": -3.3851650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "drive_through": "no", - "name": "Oriental Restaurant", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 2EN", - "ref": "EX5 387" - } -}, -{ - "type": "node", - "id": 5176845224, - "lat": 54.3494547, - "lon": -6.6549329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT61 20", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5177183598, - "lat": 51.5883555, - "lon": -2.7597865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP26 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2017-10-19" - } -}, -{ - "type": "node", - "id": 5177314449, - "lat": 50.3842043, - "lon": -4.5598460, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "gps" - } -}, -{ - "type": "node", - "id": 5178195159, - "lat": 54.3796972, - "lon": -2.0773158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DL11 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5178217668, - "lat": 53.3926581, - "lon": -2.2272339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK8 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5178266924, - "lat": 54.3154360, - "lon": -1.8933097, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL8 66" - } -}, -{ - "type": "node", - "id": 5178613886, - "lat": 52.0737269, - "lon": 0.3854574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5178628718, - "lat": 52.0577934, - "lon": 0.3599608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5179219846, - "lat": 53.8653480, - "lon": -0.1345719, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5179225338, - "lat": 54.0114067, - "lon": -1.9248234, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5180404667, - "lat": 54.1474589, - "lon": -1.3523381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "YO61 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5180788485, - "lat": 52.0643452, - "lon": -4.6030811, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5180998260, - "lat": 53.9213739, - "lon": -0.7085566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO42 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5181128607, - "lat": 54.4793062, - "lon": -6.2292996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT67 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5181261536, - "lat": 54.4793019, - "lon": -6.2301861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT67 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5181407505, - "lat": 54.4748119, - "lon": -6.2379583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT67 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5181407507, - "lat": 54.4809144, - "lon": -6.2262491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT67 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5181407509, - "lat": 54.4919000, - "lon": -6.2148200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "fixme": "Position?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT67 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5181854750, - "lat": 51.4189445, - "lon": 0.1172445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5182104083, - "lat": 53.8853414, - "lon": -1.2654670, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5182300684, - "lat": 51.0123777, - "lon": -3.1209862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "indoor": "yes", - "name": "Musgrove Park Hospital Old Building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA1 25" - } -}, -{ - "type": "node", - "id": 5182300686, - "lat": 51.0113174, - "lon": -3.1191759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "covered": "yes", - "drive_through": "no", - "indoor": "no", - "name": "Musgrove Park Hospital New Building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA1 681" - } -}, -{ - "type": "node", - "id": 5182300689, - "lat": 51.0119781, - "lon": -3.1179526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "drive_through": "no", - "name": "Parkfield Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "TA1 5BY", - "ref": "TA1 507" - } -}, -{ - "type": "node", - "id": 5182715305, - "lat": 51.2768568, - "lon": -1.0574331, - "tags": { - "amenity": "post_box", - "postal_code": "RG24", - "ref": "RG24 317" - } -}, -{ - "type": "node", - "id": 5183951125, - "lat": 51.5326294, - "lon": -3.5754774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "CF32 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5184013006, - "lat": 50.1944791, - "lon": -5.3878571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5184013015, - "lat": 50.1961183, - "lon": -5.4056597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5184013230, - "lat": 50.1956350, - "lon": -5.4083647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5184013231, - "lat": 50.1954036, - "lon": -5.4130237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 116D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5184013232, - "lat": 50.1905144, - "lon": -5.3990990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 147", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5184013233, - "lat": 50.1902371, - "lon": -5.4065408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5184013234, - "lat": 50.1907851, - "lon": -5.4105901, - "tags": { - "amenity": "post_box", - "check_date": "2021-06-27", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5184013235, - "lat": 50.1851511, - "lon": -5.4084022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 136D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 5184013237, - "lat": 50.1888336, - "lon": -5.4176599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-08-11" - } -}, -{ - "type": "node", - "id": 5184013238, - "lat": 50.2068598, - "lon": -5.3927381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-08-11" - } -}, -{ - "type": "node", - "id": 5186064792, - "lat": 51.0118157, - "lon": -3.1061851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 333" - } -}, -{ - "type": "node", - "id": 5186234423, - "lat": 53.1565855, - "lon": -4.1666286, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5186366157, - "lat": 54.6147101, - "lon": -5.8705667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT3 849", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5188060441, - "lat": 52.7815506, - "lon": -0.2006954, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5188446499, - "lat": 53.3704367, - "lon": -1.4584747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S2 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5188567511, - "lat": 53.7082593, - "lon": -0.6353543, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5188912324, - "lat": 52.1420502, - "lon": 0.3478141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB21 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5188935307, - "lat": 52.1375057, - "lon": 0.3642147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 533", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5188939716, - "lat": 52.1323674, - "lon": 0.3858612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB21 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5189181916, - "lat": 55.1600676, - "lon": -6.8824305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5189252609, - "lat": 55.1663188, - "lon": -6.8248165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "fixme": "location approximate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5189379937, - "lat": 53.7769079, - "lon": -2.7159078, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PR2 127" - } -}, -{ - "type": "node", - "id": 5189379938, - "lat": 53.7756824, - "lon": -2.7224281, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PR2 285D" - } -}, -{ - "type": "node", - "id": 5189443139, - "lat": 55.1351484, - "lon": -6.6822671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "geograph:id": "2864039", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT51 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:detail": "Geograph" - } -}, -{ - "type": "node", - "id": 5189643277, - "lat": 51.5523081, - "lon": 0.0178498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5189682936, - "lat": 51.4266390, - "lon": 0.0966486, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5191066304, - "lat": 54.2126396, - "lon": -1.4381262, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5191379427, - "lat": 51.5637283, - "lon": 0.0709263, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5191560233, - "lat": 51.4203365, - "lon": 0.1103329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5192059712, - "lat": 53.5379192, - "lon": -2.4254281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5192106266, - "lat": 53.5484060, - "lon": -2.4292234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 5192106687, - "lat": 53.5314087, - "lon": -2.4236533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5192106842, - "lat": 53.5337698, - "lon": -2.4216510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5194923631, - "lat": 53.7690424, - "lon": -1.5834904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 922", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5194999634, - "lat": 53.7487877, - "lon": -1.6023557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS27 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5194999636, - "lat": 53.7585274, - "lon": -1.5936264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS27 451", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5194999638, - "lat": 53.7618762, - "lon": -1.5875191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 716D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5194999641, - "lat": 53.7638891, - "lon": -1.5863543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS27 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5195551709, - "lat": 50.1189400, - "lon": -5.5395354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 1520", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5195551710, - "lat": 50.1189598, - "lon": -5.5395435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR18 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-10-24" - } -}, -{ - "type": "node", - "id": 5195706365, - "lat": 50.1581995, - "lon": -5.0151659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR2 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 5195706366, - "lat": 50.1569373, - "lon": -5.0214359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 215D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2017-10-27" - } -}, -{ - "type": "node", - "id": 5195713190, - "lat": 50.1552994, - "lon": -5.0725438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-19", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR11 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 5195713191, - "lat": 50.1553069, - "lon": -5.0725387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-06-19", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR11 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 5195713192, - "lat": 50.1548184, - "lon": -5.0685731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 67D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5196143450, - "lat": 51.3130338, - "lon": -0.9360693, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG27 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "source:geometry": "GPS (Vespucci)" - } -}, -{ - "type": "node", - "id": 5196150828, - "lat": 51.3260794, - "lon": -0.9530793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5196150829, - "lat": 51.3180825, - "lon": -0.9477375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "post_box:type": "lamp", - "ref": "RG27 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5196412024, - "lat": 51.2896343, - "lon": 0.5294787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME14 262", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5196574656, - "lat": 52.2879924, - "lon": -1.7483267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B95 79", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5196673681, - "lat": 54.9936972, - "lon": -1.6088775, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 176", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 5196718498, - "lat": 55.6553706, - "lon": -3.1967851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH45 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5196718500, - "lat": 55.6581729, - "lon": -3.1987688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH45 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5197001303, - "lat": 55.6518855, - "lon": -3.1879925, - "tags": { - "amenity": "post_box", - "collection_plate": "WNS-LC", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH45 142", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5197042595, - "lat": 55.6429769, - "lon": -3.1824396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 149D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197042596, - "lat": 55.6449355, - "lon": -3.1824852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 56D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197042599, - "lat": 55.6446661, - "lon": -3.1768746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 30D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197042600, - "lat": 55.6457065, - "lon": -3.1870142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197042601, - "lat": 55.6437277, - "lon": -3.1895703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH45 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5197042602, - "lat": 55.6460889, - "lon": -3.1990037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH45 163D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197048545, - "lat": 55.7198192, - "lon": -3.2040060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH45 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5197893914, - "lat": 55.8325404, - "lon": -3.2232508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EH26 139", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5197893915, - "lat": 55.8344855, - "lon": -3.2274820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH26 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5197893916, - "lat": 55.8286708, - "lon": -3.2447045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH26 19D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197919820, - "lat": 55.8425900, - "lon": -3.2153369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH26 278", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5197920321, - "lat": 55.8351648, - "lon": -3.2208194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5198830175, - "lat": 57.5532396, - "lon": -7.3342169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS6 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5198886439, - "lat": 53.5159641, - "lon": -1.1284062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN1 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5199004573, - "lat": 53.5536014, - "lon": -2.4302015, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5199922061, - "lat": 55.0289138, - "lon": -7.2975665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5199922062, - "lat": 55.0394215, - "lon": -7.2774809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5200243628, - "lat": 52.7692119, - "lon": 0.4415002, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5200503310, - "lat": 53.2047104, - "lon": -2.4987379, - "tags": { - "amenity": "post_box", - "ref": "CW7 216" - } -}, -{ - "type": "node", - "id": 5201077487, - "lat": 56.1266288, - "lon": -3.2030673, - "tags": { - "amenity": "post_box", - "ref": "KY2 2" - } -}, -{ - "type": "node", - "id": 5201079021, - "lat": 56.1243985, - "lon": -3.2017899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY2 337" - } -}, -{ - "type": "node", - "id": 5201079144, - "lat": 56.1320306, - "lon": -3.1971244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 154D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5202316962, - "lat": 50.3312030, - "lon": -4.2017900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL10 580", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-12" - } -}, -{ - "type": "node", - "id": 5202317591, - "lat": 50.3334117, - "lon": -4.2014616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL10 704", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-12" - } -}, -{ - "type": "node", - "id": 5202528560, - "lat": 56.1260307, - "lon": -3.1835688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 129" - } -}, -{ - "type": "node", - "id": 5202531293, - "lat": 56.1303119, - "lon": -3.1927287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 146", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5204361474, - "lat": 52.1968907, - "lon": -0.0721552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB23 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5204369265, - "lat": 52.1905759, - "lon": -0.0641001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB23 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5207357493, - "lat": 57.4724442, - "lon": -7.3874535, - "tags": { - "amenity": "post_box", - "ref": "U46 Medways" - } -}, -{ - "type": "node", - "id": 5207866632, - "lat": 54.3285858, - "lon": -1.4302848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DL7 46", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 5208950055, - "lat": 55.7073935, - "lon": -4.7195222, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5209102220, - "lat": 52.2488778, - "lon": -1.1481875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5209103021, - "lat": 52.2489209, - "lon": -1.1481778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN11 547", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5209173514, - "lat": 52.2429930, - "lon": 0.4041219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB8 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5209264208, - "lat": 54.0134364, - "lon": -1.4680964, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HG5 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5209264218, - "lat": 54.0093246, - "lon": -1.4742415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HG5 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5209274145, - "lat": 54.0146627, - "lon": -1.3670120, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG5 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5209289477, - "lat": 54.0195936, - "lon": -1.4626305, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HG5 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5209297543, - "lat": 51.4830541, - "lon": -2.4850043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5210202262, - "lat": 52.6706246, - "lon": -1.1054619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LE4 559", - "royal_cypher": "yes", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 5210206979, - "lat": 53.5320315, - "lon": -1.1447137, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5210319584, - "lat": 55.4302622, - "lon": -1.6164628, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5211410227, - "lat": 53.7624208, - "lon": -0.3281523, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5212268726, - "lat": 56.1096057, - "lon": -3.7537006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK10 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5212268729, - "lat": 56.1074460, - "lon": -3.7500326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK10 33", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5212310582, - "lat": 53.9134962, - "lon": -1.9375250, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5214787334, - "lat": 53.7687803, - "lon": -1.5312799, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5216019785, - "lat": 53.8767643, - "lon": -1.6616339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS19 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5216256446, - "lat": 54.3770557, - "lon": -1.6308911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5216460065, - "lat": 56.1858061, - "lon": -3.9649162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "FK15 142", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5216478281, - "lat": 51.2020819, - "lon": -3.4916377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5216650914, - "lat": 50.9787162, - "lon": -2.9653444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TA3 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5216651600, - "lat": 54.2628598, - "lon": -1.8836622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DL8 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5216850737, - "lat": 51.5884123, - "lon": -0.1504093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5217196229, - "lat": 53.9089803, - "lon": -1.3419516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS23 707" - } -}, -{ - "type": "node", - "id": 5217196255, - "lat": 53.9239782, - "lon": -1.3269322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS23 239" - } -}, -{ - "type": "node", - "id": 5217230757, - "lat": 51.5852832, - "lon": -0.1322090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5217790260, - "lat": 54.5191625, - "lon": -1.8889700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.geograph.org.uk/photo/1529091", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5218413911, - "lat": 55.7081914, - "lon": -4.7217459, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KA24 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5218417832, - "lat": 51.4259223, - "lon": 0.1122493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "151538176943102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 72", - "survey:date": "2019-09-05" - } -}, -{ - "type": "node", - "id": 5218426242, - "lat": 51.4292551, - "lon": 0.1136917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA14 245" - } -}, -{ - "type": "node", - "id": 5218429443, - "lat": 51.4272993, - "lon": 0.1076276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA14 73" - } -}, -{ - "type": "node", - "id": 5218432542, - "lat": 51.4249444, - "lon": 0.1059429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 79" - } -}, -{ - "type": "node", - "id": 5218690614, - "lat": 52.2689141, - "lon": 0.3671086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218711177, - "lat": 52.2665205, - "lon": 0.3687498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218715617, - "lat": 52.3919585, - "lon": -1.2479464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV21 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218715620, - "lat": 52.3947747, - "lon": -1.2370031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV23 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218715734, - "lat": 52.2622249, - "lon": 0.3714866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB8 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218717434, - "lat": 52.2594687, - "lon": 0.3966826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "opening_hours": "Mo-Fr 13:00-17:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "CB8 34", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218720511, - "lat": 52.2647064, - "lon": 0.3917934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB8 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218741583, - "lat": 52.2428191, - "lon": 0.3998574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB8 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218742466, - "lat": 52.2524697, - "lon": 0.3951600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5218775130, - "lat": 52.2448198, - "lon": 0.4052205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "CB8 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5219357143, - "lat": 53.1523836, - "lon": -2.1778055, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5219663965, - "lat": 50.5439762, - "lon": -4.9174232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL27 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5220195050, - "lat": 50.9549040, - "lon": -0.1411231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH15 140" - } -}, -{ - "type": "node", - "id": 5220411945, - "lat": 56.1809374, - "lon": -3.9714775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "FK15 41", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5220653046, - "lat": 53.8288132, - "lon": -1.9533833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5220657325, - "lat": 53.8313931, - "lon": -1.9557022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD22 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5221915465, - "lat": 54.3962675, - "lon": -1.6165406, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5221957321, - "lat": 54.2575832, - "lon": -1.8999622, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5222404653, - "lat": 54.2448135, - "lon": -1.1596815, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5222413280, - "lat": 54.1834303, - "lon": -1.2363981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "YO7 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5222415526, - "lat": 54.1702540, - "lon": -1.3002314, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5223499622, - "lat": 52.3496437, - "lon": -1.6957551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B93 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5223877330, - "lat": 57.7217883, - "lon": -7.1656806, - "tags": { - "amenity": "post_box", - "ref": "HS6 19" - } -}, -{ - "type": "node", - "id": 5224769941, - "lat": 53.6100302, - "lon": -1.9074080, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5224817820, - "lat": 54.0651638, - "lon": -2.2762434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD24 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5224962189, - "lat": 54.2253288, - "lon": -1.5130059, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5225001941, - "lat": 54.2232212, - "lon": -1.4686791, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5225001953, - "lat": 54.2174683, - "lon": -1.4548741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "ref": "YO7 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5225446764, - "lat": 51.3401160, - "lon": -0.2583129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPMET-NS", - "collection_times": "Mo-Fr 18:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KT17 319P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5225455779, - "lat": 51.3355554, - "lon": -0.2624430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN-LC", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT17 500", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5225465810, - "lat": 51.3341704, - "lon": -0.2684710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5225469975, - "lat": 51.2418503, - "lon": -0.3261424, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH4 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5226754264, - "lat": 55.9175790, - "lon": -4.3072885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5226823016, - "lat": 51.6930499, - "lon": -0.0379642, - "tags": { - "amenity": "post_box", - "ref": "EN8 74" - } -}, -{ - "type": "node", - "id": 5226952640, - "lat": 53.3707745, - "lon": -2.7392059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 36", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5228196356, - "lat": 50.2550107, - "lon": -5.1964721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5229304539, - "lat": 53.8428656, - "lon": -1.8608249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5230859546, - "lat": 52.0883884, - "lon": 0.4164067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230866382, - "lat": 52.0887473, - "lon": 0.4088894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230878474, - "lat": 52.0934991, - "lon": 0.4192201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB9 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230884274, - "lat": 52.0917905, - "lon": 0.4304874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230913093, - "lat": 52.0787644, - "lon": 0.4277609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230940660, - "lat": 52.0843835, - "lon": 0.4366033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230946263, - "lat": 52.0848363, - "lon": 0.4390892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB9 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230955040, - "lat": 52.0828257, - "lon": 0.4385722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CB9 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230959335, - "lat": 52.0809379, - "lon": 0.4359984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB9 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230962837, - "lat": 52.0795684, - "lon": 0.4428271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB9 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230971918, - "lat": 52.0736613, - "lon": 0.4459421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB9 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5230978391, - "lat": 52.0781677, - "lon": 0.4382147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB9 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5231577970, - "lat": 52.7525035, - "lon": -3.9621444, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5233169499, - "lat": 54.1643276, - "lon": -1.6452190, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5233169570, - "lat": 54.1645992, - "lon": -1.6414987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HG4 22" - } -}, -{ - "type": "node", - "id": 5233186717, - "lat": 54.1368344, - "lon": -1.6149930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HG4 23" - } -}, -{ - "type": "node", - "id": 5233256424, - "lat": 54.0766196, - "lon": -1.7225038, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5233256436, - "lat": 54.0685841, - "lon": -1.7086525, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5233624010, - "lat": 57.0705197, - "lon": -3.9903247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH21 42", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5233992873, - "lat": 53.9692815, - "lon": -0.3558244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "wall", - "ref": "YO25 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5234611368, - "lat": 53.5859502, - "lon": -2.4079563, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5234710772, - "lat": 53.5909701, - "lon": -2.4125881, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5234865422, - "lat": 53.5817124, - "lon": -2.4284854, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5235520398, - "lat": 53.5716095, - "lon": -2.4101447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5236044458, - "lat": 51.0315269, - "lon": 0.4627858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5236044472, - "lat": 51.0267891, - "lon": 0.4812947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5236044479, - "lat": 51.0152441, - "lon": 0.4531314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5236044493, - "lat": 51.0183709, - "lon": 0.4652567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN19 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5236062812, - "lat": 51.0078816, - "lon": 0.4754319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN19 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5236714052, - "lat": 52.3991662, - "lon": -1.5267412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 173", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5236714054, - "lat": 52.3927625, - "lon": -1.5318146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5236974580, - "lat": 52.3781958, - "lon": -0.6899365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 158" - } -}, -{ - "type": "node", - "id": 5237543906, - "lat": 51.4316147, - "lon": -0.5048440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW18 507", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 5237577427, - "lat": 51.4623347, - "lon": -0.5796723, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SL4 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 5238507200, - "lat": 51.8366745, - "lon": -4.1997768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "SA32 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5238508521, - "lat": 51.8490938, - "lon": -4.2022974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "SA31 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5238545777, - "lat": 56.1617529, - "lon": -3.9514636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK9 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5238626614, - "lat": 56.1844586, - "lon": -3.9539008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK15 103D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5239397131, - "lat": 55.1232087, - "lon": -6.4682191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey (view from T-junction)" - } -}, -{ - "type": "node", - "id": 5239812969, - "lat": 54.0450225, - "lon": -2.1621355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BD23 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5239812970, - "lat": 54.0061249, - "lon": -2.1531524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD23 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5239930670, - "lat": 54.3816767, - "lon": -1.4830568, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5239930674, - "lat": 54.4165594, - "lon": -1.5604879, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5239939534, - "lat": 54.3986476, - "lon": -1.5753822, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5240129164, - "lat": 51.0781509, - "lon": -1.3342166, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 265D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5240132237, - "lat": 51.0760786, - "lon": -1.3371291, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO22 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5240155096, - "lat": 56.4616414, - "lon": -3.0742496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "DD2 24D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5240155102, - "lat": 56.4702940, - "lon": -3.0305918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 65D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5240155226, - "lat": 56.4673778, - "lon": -3.0385204, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD2 165", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5241308983, - "lat": 50.2717735, - "lon": -5.1463058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR4 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5241448881, - "lat": 55.9368985, - "lon": -3.3911638, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH28 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5241474657, - "lat": 54.2832412, - "lon": -0.7033453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO18 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5241540893, - "lat": 53.5432903, - "lon": -2.4119198, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5242004041, - "lat": 53.8736491, - "lon": -1.4888727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 188" - } -}, -{ - "type": "node", - "id": 5242004045, - "lat": 53.8264724, - "lon": -1.2781893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 753" - } -}, -{ - "type": "node", - "id": 5242004046, - "lat": 53.9162761, - "lon": -1.4930140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5242004058, - "lat": 53.8492728, - "lon": -1.2639924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 574", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5242004069, - "lat": 53.8989516, - "lon": -1.2959934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS24 772" - } -}, -{ - "type": "node", - "id": 5242004082, - "lat": 53.8899030, - "lon": -1.4476592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 985" - } -}, -{ - "type": "node", - "id": 5242424992, - "lat": 50.3656028, - "lon": -3.7210257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5242425424, - "lat": 53.5776379, - "lon": -2.3671366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5242425447, - "lat": 53.5698453, - "lon": -2.3627937, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5243099840, - "lat": 52.0751506, - "lon": 0.4524460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "Non-standard box at petrol station. No royal cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "CB9 61", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243132884, - "lat": 52.0702151, - "lon": 0.4687796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243152143, - "lat": 52.0783547, - "lon": 0.4641881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB9 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243152313, - "lat": 52.0671408, - "lon": 0.4767435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243167021, - "lat": 52.0770721, - "lon": 0.4589867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243171924, - "lat": 52.0808821, - "lon": 0.4612596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243175679, - "lat": 52.0838198, - "lon": 0.4528508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243176380, - "lat": 52.0827470, - "lon": 0.4487063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243195560, - "lat": 52.0842272, - "lon": 0.4455615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243195561, - "lat": 52.0863582, - "lon": 0.4472189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243201352, - "lat": 52.0920989, - "lon": 0.4446480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB9 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243205168, - "lat": 52.0900283, - "lon": 0.4360491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB9 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5243422641, - "lat": 53.3825834, - "lon": -1.4621080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 16:00", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S1 1614", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5243424383, - "lat": 53.5470441, - "lon": -2.4344035, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5243424419, - "lat": 53.5467565, - "lon": -2.4276581, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5243424689, - "lat": 53.5523629, - "lon": -2.3984626, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5243565287, - "lat": 53.8975571, - "lon": -0.6817438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "image": "https://www.geograph.org.uk/photo/7023834", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "YO43 347", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5243565288, - "lat": 53.8938264, - "lon": -0.5297390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5243565292, - "lat": 53.8768119, - "lon": -0.6494970, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO43 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5243565299, - "lat": 53.8425549, - "lon": -0.6328727, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO43 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5243600814, - "lat": 53.8504017, - "lon": -0.9264428, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5244505591, - "lat": 53.6919079, - "lon": -1.6329101, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5244533300, - "lat": 51.4969796, - "lon": -0.1292080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 77;SW1P 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-02-18" - } -}, -{ - "type": "node", - "id": 5244533301, - "lat": 51.4960374, - "lon": -0.1275746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "information_plate_date": "2016-08-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW1P 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2017-11-20" - } -}, -{ - "type": "node", - "id": 5244533304, - "lat": 51.4975513, - "lon": -0.1287569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1P 83;SW1P 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-02-18" - } -}, -{ - "type": "node", - "id": 5244668904, - "lat": 54.2776420, - "lon": -1.5502350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DL8 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5244700287, - "lat": 53.7308348, - "lon": -1.9382158, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "HX2 195", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5244745862, - "lat": 54.0572317, - "lon": -1.9597264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BD23 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5244929435, - "lat": 54.3155923, - "lon": -0.5179738, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5245274657, - "lat": 53.6022656, - "lon": -2.5538805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BL6 42", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5245331965, - "lat": 53.6088109, - "lon": -2.1085888, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5245662581, - "lat": 53.4277263, - "lon": -2.7099407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 36", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5245892951, - "lat": 51.4821813, - "lon": -0.5800062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL3 171D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 5246635350, - "lat": 53.5845568, - "lon": -2.4473876, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5246772400, - "lat": 53.2537986, - "lon": -2.1290790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK11 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5246840731, - "lat": 53.5648327, - "lon": -2.4418768, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5247243116, - "lat": 52.5844880, - "lon": -1.9817943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WS1 35;WS1 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5247355029, - "lat": 52.3360524, - "lon": -1.4095222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV23 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5247389723, - "lat": 53.7971155, - "lon": -1.2335622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS25 344D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5247404522, - "lat": 52.3736306, - "lon": -1.5022515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 336D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5247443429, - "lat": 53.7277252, - "lon": -2.4906810, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5247553394, - "lat": 53.7424787, - "lon": -2.5040087, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB2 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5247571635, - "lat": 54.1397072, - "lon": -2.7211522, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA6 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5247606856, - "lat": 51.6324633, - "lon": -2.0350297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN16 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5247913867, - "lat": 51.0863652, - "lon": -1.1710954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5247913869, - "lat": 51.0837643, - "lon": -1.1694998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO24 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5248145936, - "lat": 53.8476280, - "lon": -1.8377696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:type": "pillar", - "ref": "BD16 645", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5248165215, - "lat": 53.7996585, - "lon": -1.7854536, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5248225689, - "lat": 51.6051514, - "lon": -2.7626298, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5248225707, - "lat": 51.6110396, - "lon": -2.7663527, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NP26 452", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 5248233982, - "lat": 54.0237255, - "lon": -1.6061039, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5248264260, - "lat": 53.8354978, - "lon": -2.2104804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "BB9 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5248394235, - "lat": 51.1417679, - "lon": 0.2640786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5248394236, - "lat": 51.1433344, - "lon": 0.2685412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5248394237, - "lat": 51.1418410, - "lon": 0.2687059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5248394238, - "lat": 51.1410061, - "lon": 0.2602392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN4 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5248412709, - "lat": 52.4238704, - "lon": -1.6956394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B92 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5248455175, - "lat": 51.1162886, - "lon": 0.2522454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 16D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5248455176, - "lat": 51.1188660, - "lon": 0.2575318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 4", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5248455177, - "lat": 51.1165085, - "lon": 0.2433722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN2 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5248464866, - "lat": 53.5781682, - "lon": -2.4175560, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5248583036, - "lat": 53.5659099, - "lon": -2.4456192, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5248583039, - "lat": 53.5669360, - "lon": -2.4437939, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5248892711, - "lat": 51.5965195, - "lon": -0.1133873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "ref": "N22 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5248984434, - "lat": 53.5423352, - "lon": -1.2750751, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5249052993, - "lat": 53.9624390, - "lon": -2.2611453, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5249394210, - "lat": 55.8936760, - "lon": -3.0646719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 214D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5249394218, - "lat": 55.8957721, - "lon": -3.0737773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 357D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5249412440, - "lat": 55.8929605, - "lon": -3.0727250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH22 150", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5249412454, - "lat": 55.8863087, - "lon": -3.0520226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 341D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5249488548, - "lat": 55.8793402, - "lon": -3.0477233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5249488560, - "lat": 55.8751920, - "lon": -3.0421373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 276", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5249488567, - "lat": 55.8722073, - "lon": -3.0628212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 188D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5249488577, - "lat": 55.8648280, - "lon": -3.0663791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH22 171D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5249488584, - "lat": 55.8686418, - "lon": -3.0690580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH22 117D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5249488585, - "lat": 55.8722742, - "lon": -3.0774258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5249488587, - "lat": 55.8846987, - "lon": -3.0857474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 42D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5249488605, - "lat": 55.8866344, - "lon": -3.0746739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH22 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5249657591, - "lat": 56.0286802, - "lon": -3.8432996, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "FK5 76D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5249989878, - "lat": 52.3932432, - "lon": -2.4791336, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DY14 118", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5250225220, - "lat": 56.0657012, - "lon": -3.8763612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK7 150", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5250225382, - "lat": 56.0886745, - "lon": -3.9085036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK7 44D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5251025795, - "lat": 53.9408829, - "lon": -2.3445004, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5251086587, - "lat": 53.8964460, - "lon": -2.3899661, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5251251994, - "lat": 54.3770471, - "lon": -2.1399466, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5251284842, - "lat": 54.4880425, - "lon": -1.8715186, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5251284869, - "lat": 54.4406715, - "lon": -1.7194131, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5252322345, - "lat": 53.5772007, - "lon": -2.3872571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322346, - "lat": 53.5786269, - "lon": -2.3930516, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322347, - "lat": 53.5744913, - "lon": -2.3755651, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322348, - "lat": 53.5808207, - "lon": -2.3920512, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5252322349, - "lat": 53.5838357, - "lon": -2.3929778, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322350, - "lat": 53.5853041, - "lon": -2.3944210, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322351, - "lat": 53.5841013, - "lon": -2.3853927, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322353, - "lat": 53.5864182, - "lon": -2.3831222, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252322354, - "lat": 53.5870290, - "lon": -2.3755942, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5252816895, - "lat": 53.1906674, - "lon": -2.8927300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria Type A post box CH1 98 by Handyside on Goss Street, Chester.", - "manufacturer": "Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 98", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Goss Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 5253040068, - "lat": 57.5835941, - "lon": -4.0710391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 70", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5253227496, - "lat": 51.8593033, - "lon": -4.3300471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "SA31 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5254320919, - "lat": 53.4703471, - "lon": -2.9555208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box L9 607 by McDowell, Stevens & Co. on Warbreck Moor just south of Melling Road.", - "manufacturer": "McDowell, Stevens & Co.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L9 607", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Warbreck Moor.jpg" - } -}, -{ - "type": "node", - "id": 5254571344, - "lat": 52.0229013, - "lon": 0.2386093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:20; Sa 12:00", - "note": "non-standard box inside post office - no royal cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CB10 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5254742737, - "lat": 52.0321222, - "lon": 0.2428074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB10 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5254754514, - "lat": 53.5722431, - "lon": -1.8083348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HD9 185D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5254777445, - "lat": 53.5845506, - "lon": -1.8245510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 65", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5254827260, - "lat": 53.5897413, - "lon": -1.7963417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "HD9 189D" - } -}, -{ - "type": "node", - "id": 5254838763, - "lat": 56.0907891, - "lon": -3.9137502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK7 149", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5254852238, - "lat": 53.7489440, - "lon": -2.0206690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5254852240, - "lat": 53.7478956, - "lon": -2.0211786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5254852249, - "lat": 53.7419490, - "lon": -2.0040983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5254857305, - "lat": 53.7614835, - "lon": -2.0061281, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5254880657, - "lat": 57.4882242, - "lon": -7.2218035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:30", - "drive_through": "yes", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5254880681, - "lat": 57.4974320, - "lon": -7.2689932, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5254880694, - "lat": 57.4992174, - "lon": -7.2489493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:30", - "drive_through": "yes", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5254896399, - "lat": 54.1211342, - "lon": -2.2910430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BD24 72D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5255638684, - "lat": 53.5082027, - "lon": -2.3590494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5256340495, - "lat": 53.5708576, - "lon": -2.4046164, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5256340496, - "lat": 53.5742372, - "lon": -2.4118310, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5256340498, - "lat": 53.5745505, - "lon": -2.4159423, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5256340505, - "lat": 53.5800109, - "lon": -2.4111711, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5256340508, - "lat": 53.5784724, - "lon": -2.4143572, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-24" - } -}, -{ - "type": "node", - "id": 5256721690, - "lat": 53.5889204, - "lon": -1.7047727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 172D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5256880435, - "lat": 51.6880360, - "lon": -1.0194032, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5256902173, - "lat": 51.6903138, - "lon": -0.9753118, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5258391809, - "lat": 50.8148302, - "lon": -0.4395288, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BN12 1805D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5258396121, - "lat": 50.8127959, - "lon": -0.4316592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN12 1807D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5258397123, - "lat": 50.8131308, - "lon": -0.4268467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1808D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5258401302, - "lat": 50.8157805, - "lon": -0.4310521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1826", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5258426397, - "lat": 50.8161355, - "lon": -0.4296655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN12 1806D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5258436783, - "lat": 50.8309306, - "lon": -0.2136518, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 673D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5258587731, - "lat": 50.2398590, - "lon": -5.2191617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5259181523, - "lat": 51.4337242, - "lon": -2.6191694, - "tags": { - "amenity": "post_box", - "ref": "BS3 009" - } -}, -{ - "type": "node", - "id": 5259369530, - "lat": 53.4490853, - "lon": -2.9124638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "GR type B post box L11 210 by Carron Company at the Dog & Gun Post Office, Croxteth.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Dog & Gun Post Office.jpg" - } -}, -{ - "type": "node", - "id": 5260214731, - "lat": 54.2996638, - "lon": -2.1697678, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5260236377, - "lat": 54.3890866, - "lon": -1.9416840, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5260255035, - "lat": 54.3798748, - "lon": -1.8820794, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5260619622, - "lat": 53.9086393, - "lon": -2.2871306, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5260676888, - "lat": 53.8330049, - "lon": -2.5142011, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5260676893, - "lat": 53.8018074, - "lon": -2.4935693, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5261625163, - "lat": 50.1720294, - "lon": -5.1122366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR10 73D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5261677605, - "lat": 51.0972006, - "lon": 0.1767545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN3 87", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5261677607, - "lat": 51.1397662, - "lon": 0.1718702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261677608, - "lat": 51.1410009, - "lon": 0.1407846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261677610, - "lat": 51.1112561, - "lon": 0.1710864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TN3 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261677612, - "lat": 51.1309685, - "lon": 0.2044759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261677613, - "lat": 51.1469435, - "lon": 0.1623398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN11 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261677614, - "lat": 51.1178755, - "lon": 0.1848090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5261677615, - "lat": 51.1310111, - "lon": 0.2118228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5261677617, - "lat": 51.1413168, - "lon": 0.1809984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5261677619, - "lat": 51.1101752, - "lon": 0.1839320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN3 73D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5261679821, - "lat": 51.1447028, - "lon": 0.1946094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261679822, - "lat": 51.1129382, - "lon": 0.1886824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN3 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5261679823, - "lat": 51.1143481, - "lon": 0.1858682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN3 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261679826, - "lat": 51.1460624, - "lon": 0.1731116, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5261772615, - "lat": 51.1298986, - "lon": 0.1558479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 176", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5261964781, - "lat": 51.5934041, - "lon": 0.6644996, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5262057908, - "lat": 52.8515538, - "lon": -4.5147226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "Post Office" - } -}, -{ - "type": "node", - "id": 5262159659, - "lat": 57.5056596, - "lon": -4.4545215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV6 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5262256930, - "lat": 50.2230321, - "lon": -5.2147331, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5262573213, - "lat": 55.6087997, - "lon": -4.6814533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA11 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5262712339, - "lat": 50.2477473, - "lon": -5.2211590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5262727123, - "lat": 50.2396083, - "lon": -5.2321191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "concrete_pillar", - "post_box:type": "wall", - "ref": "TR15 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5262867718, - "lat": 56.0011368, - "lon": -3.7960694, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK1 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5263713459, - "lat": 54.2458026, - "lon": -0.7774909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "YO18 137;YO18 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5263732377, - "lat": 50.2480834, - "lon": -5.2842258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR16 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5263735669, - "lat": 50.2460497, - "lon": -5.2704952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5263739484, - "lat": 50.2432510, - "lon": -5.2645250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5263743637, - "lat": 50.2359110, - "lon": -5.2612927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5264966290, - "lat": 51.6035637, - "lon": -2.9097301, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5264966291, - "lat": 51.6043841, - "lon": -2.9056343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5264966292, - "lat": 51.6074368, - "lon": -2.8985251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5264966684, - "lat": 51.5156799, - "lon": -3.0570397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5265579484, - "lat": 51.4963013, - "lon": -3.1802087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-07-20" - } -}, -{ - "type": "node", - "id": 5265579487, - "lat": 51.4924003, - "lon": -3.1718932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5265679598, - "lat": 51.4919202, - "lon": -3.2137786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 260D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5265735884, - "lat": 51.4645288, - "lon": -3.1678927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5265735888, - "lat": 51.4668456, - "lon": -3.1792036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 185D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5265735892, - "lat": 51.4737744, - "lon": -3.1871872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5266359752, - "lat": 53.2952316, - "lon": -3.7240587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL29 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5266777189, - "lat": 51.1026141, - "lon": -1.3704090, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "note": "This postbox is on the northbound side of this lane and is set back in the hedge.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5267902633, - "lat": 50.2305335, - "lon": -5.2482512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5267912291, - "lat": 50.2319618, - "lon": -5.2570713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5267912292, - "lat": 50.2334812, - "lon": -5.2604229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5267960979, - "lat": 54.3474944, - "lon": -6.6522701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT61 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5267994647, - "lat": 50.2371432, - "lon": -5.2696146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5267994649, - "lat": 50.2275194, - "lon": -5.2684061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5267994650, - "lat": 50.2286358, - "lon": -5.2602189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR15 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5267994651, - "lat": 50.2262243, - "lon": -5.2597749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR15 103", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5268054073, - "lat": 50.2399515, - "lon": -5.2485399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5268343760, - "lat": 53.0824433, - "lon": -0.4289644, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5268359790, - "lat": 50.7777837, - "lon": -2.2814570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5268395834, - "lat": 52.4052696, - "lon": 0.2539543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB6 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5268618022, - "lat": 51.3491832, - "lon": -0.5084261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 183D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5268618023, - "lat": 51.3450980, - "lon": -0.5116820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT15 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5268774129, - "lat": 51.3890462, - "lon": -2.6848851, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5268801300, - "lat": 51.1823978, - "lon": -2.6924241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA5 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5268862747, - "lat": 50.9739194, - "lon": -2.7134153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5268882296, - "lat": 51.3991970, - "lon": -0.3679283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 156D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5268888663, - "lat": 51.3839571, - "lon": 0.0426129, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5268963379, - "lat": 50.2464793, - "lon": -4.8080450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5270862919, - "lat": 51.1256889, - "lon": -2.7315648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "303498009255372", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 5270862920, - "lat": 51.0938175, - "lon": -2.7313302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1225951384899216", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA11 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-04-17" - } -}, -{ - "type": "node", - "id": 5270942546, - "lat": 50.8297439, - "lon": -2.8566650, - "tags": { - "amenity": "post_box", - "mapillary": "135347035809374", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT8 107", - "ref:GB:uprn": "10015335689", - "source": "survey", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 5270942548, - "lat": 50.7936163, - "lon": -2.8840893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "587841136410531", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 5270942549, - "lat": 50.7397269, - "lon": -2.9640741, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5270942550, - "lat": 50.7448349, - "lon": -2.9658863, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5272425691, - "lat": 53.4569820, - "lon": -2.2259993, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5272434616, - "lat": 53.5214124, - "lon": -1.1267083, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "DN1 324" - } -}, -{ - "type": "node", - "id": 5272436445, - "lat": 53.5214204, - "lon": -1.1267285, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN1 19" - } -}, -{ - "type": "node", - "id": 5272497279, - "lat": 54.1469899, - "lon": -2.4698148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 140" - } -}, -{ - "type": "node", - "id": 5272748581, - "lat": 50.2366564, - "lon": -5.2330359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR15 17D", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2020-10-20" - } -}, -{ - "type": "node", - "id": 5272753330, - "lat": 50.2353387, - "lon": -5.2290427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5272753680, - "lat": 50.2335326, - "lon": -5.2314913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5272753681, - "lat": 50.2325098, - "lon": -5.2311024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5272760724, - "lat": 50.2296783, - "lon": -5.2242389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR15 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5272765878, - "lat": 50.2296839, - "lon": -5.2199359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR15 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5272805209, - "lat": 53.5258011, - "lon": -1.1567476, - "tags": { - "amenity": "post_box", - "ref": "DN5 225" - } -}, -{ - "type": "node", - "id": 5272806824, - "lat": 53.5288017, - "lon": -1.1517992, - "tags": { - "amenity": "post_box", - "ref": "DN5 32" - } -}, -{ - "type": "node", - "id": 5272921642, - "lat": 53.9066659, - "lon": -2.7126058, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5272977475, - "lat": 53.8529348, - "lon": -2.3969351, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5273468188, - "lat": 53.5152330, - "lon": -1.1367635, - "tags": { - "amenity": "post_box", - "ref": "DN1 8D" - } -}, -{ - "type": "node", - "id": 5274155988, - "lat": 54.4608626, - "lon": -1.3214462, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5274258793, - "lat": 50.3066429, - "lon": -5.1560766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5274258794, - "lat": 50.3117254, - "lon": -5.1693011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5274260961, - "lat": 50.3143558, - "lon": -5.1773786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5274276222, - "lat": 50.3093632, - "lon": -5.2031128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR5 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5274313695, - "lat": 52.5832145, - "lon": -1.9795361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WS1 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5274460024, - "lat": 54.2731369, - "lon": -1.2486098, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5274460026, - "lat": 54.2498112, - "lon": -1.2496263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "YO7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5274473908, - "lat": 51.4818393, - "lon": 0.0367620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE7 15;SE7 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5275328581, - "lat": 53.7114288, - "lon": -1.9067261, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5275627470, - "lat": 54.4886944, - "lon": -1.1323334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5276313285, - "lat": 53.5215871, - "lon": -1.1381763, - "tags": { - "amenity": "post_box", - "ref": "DN1 507D" - } -}, -{ - "type": "node", - "id": 5277881739, - "lat": 51.2317616, - "lon": -2.3207003, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "painted to celebrate Ted Lewis-Clark winning christmas stamp competition in 2017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BA11 82;BA11 1082", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5278523378, - "lat": 55.6140030, - "lon": -2.8188232, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD1 148D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5278545352, - "lat": 53.2922510, - "lon": -0.0186247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "LN11 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5278571341, - "lat": 52.1278356, - "lon": -0.2997960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SG19 56" - } -}, -{ - "type": "node", - "id": 5278587159, - "lat": 51.2211255, - "lon": -0.4498197, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "GU5 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5278738377, - "lat": 51.4247092, - "lon": -2.4594864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5278738380, - "lat": 51.4435537, - "lon": -2.4919424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5282380705, - "lat": 50.7702698, - "lon": -0.8808752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5282382482, - "lat": 50.7660232, - "lon": -0.8711733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5282384388, - "lat": 50.7692543, - "lon": -0.8729732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5282407443, - "lat": 50.8389515, - "lon": -0.6466468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5282414708, - "lat": 50.7661405, - "lon": -0.8639535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5286156263, - "lat": 57.7034210, - "lon": -3.3698418, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5287703902, - "lat": 50.4122034, - "lon": -4.2111382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 626D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5288119579, - "lat": 52.7538415, - "lon": 1.3095953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5288218216, - "lat": 50.5806549, - "lon": -4.3675199, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5289235313, - "lat": 51.2438557, - "lon": 0.0061973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5289235314, - "lat": 51.2425195, - "lon": 0.0117550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5289295596, - "lat": 52.3697396, - "lon": 1.2485663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5289670919, - "lat": 51.8336399, - "lon": -2.5469190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5292310439, - "lat": 52.4173865, - "lon": -2.5073665, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DY14 132", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5292394006, - "lat": 51.7020947, - "lon": -3.0172142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5292394159, - "lat": 51.6838481, - "lon": -3.1183375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1980155109008178", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-08-19" - } -}, -{ - "type": "node", - "id": 5292555215, - "lat": 51.5775854, - "lon": -3.0471457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5292555216, - "lat": 51.5792839, - "lon": -3.0619629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5292555220, - "lat": 51.5953533, - "lon": -3.1502464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5294139421, - "lat": 51.9383740, - "lon": -2.1554513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "GL51 162D" - } -}, -{ - "type": "node", - "id": 5294696529, - "lat": 53.5405281, - "lon": -1.6460975, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 978D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5296579339, - "lat": 51.7434637, - "lon": -1.9735131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015286808" - } -}, -{ - "type": "node", - "id": 5297393934, - "lat": 50.1887372, - "lon": -5.1779851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5298149722, - "lat": 53.8627063, - "lon": -2.1194837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BB8 350D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5298277374, - "lat": 50.3586135, - "lon": -3.6446236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:45; Sa 07:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 37", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5298490456, - "lat": 56.1178788, - "lon": -3.1783773, - "tags": { - "amenity": "post_box", - "ref": "KY2 139" - } -}, -{ - "type": "node", - "id": 5298580647, - "lat": 56.1176377, - "lon": -3.1712732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 408D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5298761188, - "lat": 53.9928687, - "lon": -1.5374506, - "tags": { - "amenity": "post_box", - "note": "is on platform 1", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5299251377, - "lat": 51.6093740, - "lon": -3.9808126, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5299388694, - "lat": 56.6455442, - "lon": -2.8892667, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5299575831, - "lat": 52.3983952, - "lon": 0.2710162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "opening_hours": "Mo-Fr 15:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CB7 50", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5299590052, - "lat": 56.6440478, - "lon": -2.8652148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DD8 13D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5299676238, - "lat": 52.4126904, - "lon": 0.2788687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5299676239, - "lat": 52.4039655, - "lon": 0.2764305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB7 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5300957968, - "lat": 56.6667323, - "lon": -2.9926076, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5301037633, - "lat": 56.6757501, - "lon": -3.0059342, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5301085051, - "lat": 54.1414598, - "lon": -1.0881911, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-09", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5301181166, - "lat": 53.7231547, - "lon": -1.7135555, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5301276774, - "lat": 53.7929733, - "lon": -1.8765573, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5301974831, - "lat": 53.4767493, - "lon": -3.0054283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5302640570, - "lat": 52.1415030, - "lon": 0.7302278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "IP29 2104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5304692487, - "lat": 53.5711489, - "lon": -2.4933299, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5304706595, - "lat": 53.5732783, - "lon": -2.4860689, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5304992932, - "lat": 51.3942889, - "lon": -0.9557252, - "tags": { - "amenity": "post_box", - "ref": "RG7 92D" - } -}, -{ - "type": "node", - "id": 5306885766, - "lat": 52.4445691, - "lon": 1.2303896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7093", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5306887494, - "lat": 51.6297262, - "lon": 0.3416636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5307049574, - "lat": 53.5863239, - "lon": -2.4756652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5308838603, - "lat": 52.3027367, - "lon": 0.9338018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5308838743, - "lat": 52.3000455, - "lon": 0.9110686, - "tags": { - "amenity": "post_box", - "note": "In brick pillar actingasgate post at end of wall to house garden", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP31 2046" - } -}, -{ - "type": "node", - "id": 5309175446, - "lat": 51.6337228, - "lon": -0.9990263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX49 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5309175469, - "lat": 51.6208380, - "lon": -0.9750365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "OX49 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5310371038, - "lat": 51.1642668, - "lon": -0.1637127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH6 286", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5310476066, - "lat": 53.2364868, - "lon": -0.6313326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5310476417, - "lat": 52.4089799, - "lon": -1.5125887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "ground floor of WH Smith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "CV1 477", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5310476418, - "lat": 52.4073743, - "lon": -1.5130537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "surve" - } -}, -{ - "type": "node", - "id": 5310476419, - "lat": 52.4071078, - "lon": -1.5107398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "WN", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "note": "two brass wall plates with a single collection sign to the right of them. Marked \"FIRST CLASS\" & \"SECOND CLASS\". The left aperture is for first class; the right aperture is for second class.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "CV1 457", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5310692760, - "lat": 54.7846952, - "lon": -7.4720120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5311734409, - "lat": 51.1476166, - "lon": 0.2186701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311734412, - "lat": 51.1516801, - "lon": 0.2256341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311734413, - "lat": 51.1339155, - "lon": 0.2053343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311734414, - "lat": 51.1518472, - "lon": 0.2168023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5311734417, - "lat": 51.1415383, - "lon": 0.2116065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311734418, - "lat": 51.1532291, - "lon": 0.2188844, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN3 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311778310, - "lat": 53.5913770, - "lon": -0.6503102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN15 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5311824153, - "lat": 52.6933473, - "lon": 0.3732535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE34 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311911938, - "lat": 51.1698932, - "lon": 0.2154051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN3 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311911941, - "lat": 51.1711973, - "lon": 0.2476785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311911942, - "lat": 51.1667477, - "lon": 0.2485467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 312", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5311911944, - "lat": 51.1653391, - "lon": 0.2521762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311911946, - "lat": 51.1587127, - "lon": 0.2462068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311911948, - "lat": 51.1563781, - "lon": 0.2345557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 74", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5311911949, - "lat": 51.1696602, - "lon": 0.2506209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5311948588, - "lat": 56.7793840, - "lon": -3.1021245, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5312291937, - "lat": 53.5770677, - "lon": -2.4345465, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5312291938, - "lat": 53.5775086, - "lon": -2.4325891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "130304566147552", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-01-17" - } -}, -{ - "type": "node", - "id": 5312291939, - "lat": 53.5752317, - "lon": -2.4318450, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-24" - } -}, -{ - "type": "node", - "id": 5312291940, - "lat": 53.5779292, - "lon": -2.4292700, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5312291941, - "lat": 53.5820673, - "lon": -2.4302250, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5312291942, - "lat": 53.5806287, - "lon": -2.4288601, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5312291943, - "lat": 53.5795938, - "lon": -2.4257850, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5312291944, - "lat": 53.5755402, - "lon": -2.4249762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BL2 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5313458564, - "lat": 51.7333891, - "lon": -1.7043628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 104D" - } -}, -{ - "type": "node", - "id": 5313774619, - "lat": 52.6872442, - "lon": -2.0317914, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5314643876, - "lat": 51.4510926, - "lon": -1.0241642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5315018671, - "lat": 51.0096944, - "lon": -3.5271344, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA22 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5315018673, - "lat": 51.0208330, - "lon": -3.5333611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA22 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5315032988, - "lat": 51.0056988, - "lon": -3.4540603, - "tags": { - "amenity": "post_box", - "colour": "red", - "direction": "S", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX16 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5315039133, - "lat": 51.0407530, - "lon": -3.3229056, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5315042845, - "lat": 56.1898085, - "lon": -4.0527239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK16 163", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5315058727, - "lat": 52.7461331, - "lon": -1.4828503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE65 612", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5315467222, - "lat": 51.5370020, - "lon": -0.1362592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 48D" - } -}, -{ - "type": "node", - "id": 5317036373, - "lat": 51.7046910, - "lon": -2.1873054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5317106408, - "lat": 51.8991200, - "lon": -2.3552410, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL19 112", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5317108669, - "lat": 51.9122190, - "lon": -2.3717245, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL19 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5317128413, - "lat": 56.7183352, - "lon": -2.9377300, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5317164382, - "lat": 51.9100978, - "lon": -2.4598244, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR9 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5317191932, - "lat": 51.8874913, - "lon": -2.5745586, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR9 518", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5317201005, - "lat": 51.7928856, - "lon": -2.7619699, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5317211510, - "lat": 51.7194815, - "lon": -2.8091633, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP15 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5317214194, - "lat": 51.8470049, - "lon": -2.6717806, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR9 587", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5317232675, - "lat": 51.7743462, - "lon": -2.8081615, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5318122941, - "lat": 53.3367508, - "lon": -2.2152285, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5319066903, - "lat": 51.4303026, - "lon": -0.0936115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE27 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5319123430, - "lat": 56.1163899, - "lon": -3.8092308, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5319126688, - "lat": 54.6628331, - "lon": -5.9278115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 474" - } -}, -{ - "type": "node", - "id": 5321114229, - "lat": 53.1154311, - "lon": -0.7729845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5322235520, - "lat": 50.2199279, - "lon": -5.2935176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR14 100" - } -}, -{ - "type": "node", - "id": 5322530424, - "lat": 53.6910747, - "lon": -1.7912029, - "tags": { - "addr:city": "Brighouse", - "addr:country": "GB", - "addr:postcode": "HD6 3NF", - "addr:street": "Church Street", - "addr:suburb": "Rastrick", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HD6 294" - } -}, -{ - "type": "node", - "id": 5322530428, - "lat": 53.6885585, - "lon": -1.7939828, - "tags": { - "addr:city": "Brighouse", - "addr:country": "GB", - "addr:postcode": "HD6 3NE", - "addr:street": "Chapel Croft", - "addr:suburb": "Rastrick", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5322531846, - "lat": 53.7018350, - "lon": -1.7814767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5322630443, - "lat": 51.1317419, - "lon": -1.0493071, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5322851402, - "lat": 56.6085184, - "lon": -3.0031247, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5323271157, - "lat": 51.4289229, - "lon": -0.1007224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5323523067, - "lat": 51.1341452, - "lon": 0.2419085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 212D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5323523070, - "lat": 51.1371083, - "lon": 0.2388474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5323523071, - "lat": 51.1343348, - "lon": 0.2255803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN3 230D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5323523072, - "lat": 51.1225392, - "lon": 0.2256358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5323523074, - "lat": 51.1300634, - "lon": 0.2181648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5325213825, - "lat": 51.4444017, - "lon": -1.0250403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-01-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "2824267224555187", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG30 388D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5325639475, - "lat": 53.5880037, - "lon": -2.3585717, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5327704132, - "lat": 52.8654024, - "lon": -1.8005991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ST14 71" - } -}, -{ - "type": "node", - "id": 5327737729, - "lat": 54.0185230, - "lon": -2.1394237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5328163564, - "lat": 51.3116490, - "lon": -1.5002708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5328170467, - "lat": 51.3203053, - "lon": -1.4791350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP11 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5328238237, - "lat": 51.2318008, - "lon": -1.2998830, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG28 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5328238238, - "lat": 51.2346022, - "lon": -1.2968172, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG28 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5330136923, - "lat": 51.5013489, - "lon": -3.1757730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Shirley Road Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5330136945, - "lat": 51.5064078, - "lon": -3.1483810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5331165288, - "lat": 51.5548428, - "lon": -2.2420532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN14 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5331165298, - "lat": 51.5901694, - "lon": -2.1270213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5331165301, - "lat": 51.5835547, - "lon": -2.0979106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN16", - "ref": "SN16 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5331165349, - "lat": 51.6000151, - "lon": -2.0474026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5331165352, - "lat": 51.6136422, - "lon": -1.9537948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5331165360, - "lat": 51.6208851, - "lon": -1.9234577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5332057608, - "lat": 55.7460429, - "lon": -3.9791252, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5332060546, - "lat": 55.7676918, - "lon": -4.0098197, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5332089977, - "lat": 56.3289653, - "lon": -3.8313576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH5 66D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5332987042, - "lat": 53.7865171, - "lon": -1.7546579, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5333360661, - "lat": 53.6032849, - "lon": -2.3889796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5333637396, - "lat": 53.6023444, - "lon": -2.3390728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5335338198, - "lat": 50.7657303, - "lon": -1.4425511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 128" - } -}, -{ - "type": "node", - "id": 5335559627, - "lat": 54.3687250, - "lon": -2.6482368, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA8 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5335755012, - "lat": 53.5646400, - "lon": -2.5020443, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5335837505, - "lat": 54.3437621, - "lon": -2.9298512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA23 127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5335837508, - "lat": 54.3528886, - "lon": -2.9240762, - "tags": { - "amenity": "post_box", - "ref": "LA23 126" - } -}, -{ - "type": "node", - "id": 5335837509, - "lat": 54.3270317, - "lon": -2.8992612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA23 107D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5335837510, - "lat": 54.3068577, - "lon": -2.9122785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "wall", - "ref": "LA23 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642121, - "lat": 51.0795047, - "lon": 0.2960083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642122, - "lat": 51.0992966, - "lon": 0.3395523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN3 137", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5336642123, - "lat": 51.0891700, - "lon": 0.2666548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5336642124, - "lat": 51.1021367, - "lon": 0.2969798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN3 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642125, - "lat": 51.1003047, - "lon": 0.3920077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN3 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642126, - "lat": 51.0971854, - "lon": 0.3604400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN3 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642127, - "lat": 51.0826725, - "lon": 0.2702687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642128, - "lat": 51.1041551, - "lon": 0.2944955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN3 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642130, - "lat": 51.0951112, - "lon": 0.3805504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN3 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5336642131, - "lat": 51.0844380, - "lon": 0.2877238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN3 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5337201459, - "lat": 52.0783360, - "lon": -1.2182607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "OX17 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5337336224, - "lat": 52.6331145, - "lon": -1.1361471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "LE1 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5338998759, - "lat": 56.8724709, - "lon": -5.4496110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30, Sa 09:15", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PH37 64", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5339334443, - "lat": 50.3788306, - "lon": -4.1581133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1149408485807781", - "post_box:type": "pillar", - "ref": "PL3 162D", - "royal_cypher": "GR", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 5339981362, - "lat": 56.5880170, - "lon": -2.5260148, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5340880722, - "lat": 53.5208880, - "lon": -2.4663640, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5341136546, - "lat": 52.5831510, - "lon": 1.3519345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5342341175, - "lat": 52.3743489, - "lon": 0.4747829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "IP28 2233" - } -}, -{ - "type": "node", - "id": 5342579293, - "lat": 52.3890663, - "lon": 0.2068582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5343007273, - "lat": 53.5804660, - "lon": -2.4048805, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5343155371, - "lat": 54.5742856, - "lon": -1.2760960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5343775300, - "lat": 52.6294248, - "lon": -1.1234543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "Two boxes next to each do have different reference numbers, unknown reason.", - "post_box:type": "pillar", - "postal_code": "LE1", - "ref": "LE1 816", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5344504033, - "lat": 53.6106669, - "lon": -2.4436717, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5345012056, - "lat": 53.5788420, - "lon": -2.5267857, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5345777562, - "lat": 50.9850805, - "lon": -2.5379329, - "tags": { - "amenity": "post_box", - "mapillary": "1173574586730958", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT9 43D", - "survey:date": "2022-04-17" - } -}, -{ - "type": "node", - "id": 5347017943, - "lat": 53.4266956, - "lon": -2.9235754, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "L13 248", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5349696330, - "lat": 51.4700583, - "lon": -0.4485214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "indoor": "yes", - "level": "5", - "post_box:type": "pillar", - "ref": "TW6 1128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851499, - "lat": 51.1541884, - "lon": 0.2505710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851500, - "lat": 51.1582596, - "lon": 0.2507050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851501, - "lat": 51.1554238, - "lon": 0.2653234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851503, - "lat": 51.1543544, - "lon": 0.2706941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 328D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851505, - "lat": 51.1518497, - "lon": 0.2706440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851507, - "lat": 51.1547102, - "lon": 0.2647709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 262D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5350851509, - "lat": 51.1534330, - "lon": 0.2605936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5350851512, - "lat": 51.1620619, - "lon": 0.2609311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN4 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5351326587, - "lat": 50.8675064, - "lon": -0.0882074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "note": "Collection times correct as of 18th July 2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 352", - "ref:GB:uprn": "10015386316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5351610264, - "lat": 51.2391404, - "lon": 0.0074620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5351770742, - "lat": 51.2465808, - "lon": 0.0034025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH8 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5351770743, - "lat": 51.2453604, - "lon": 0.0073699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5351770744, - "lat": 51.2428711, - "lon": 0.0014760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH8 101D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5351770745, - "lat": 51.2399836, - "lon": 0.0031195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5352818122, - "lat": 56.4762724, - "lon": -2.9486986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 161", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5352818123, - "lat": 56.4745477, - "lon": -2.9411676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD4 28D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5352818124, - "lat": 56.4685983, - "lon": -2.9356255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5352818125, - "lat": 56.4674522, - "lon": -2.9437056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD4 3D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5352835427, - "lat": 56.0520934, - "lon": -3.7732073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 178", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5357134159, - "lat": 53.5644349, - "lon": -2.3516874, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5357568277, - "lat": 56.6141245, - "lon": -2.9517088, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5359540649, - "lat": 51.5052809, - "lon": -0.0890016, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "colour": "gray", - "note": "3 postboxes/apertures within the Post Office, only one postbox number on the very right one", - "ref": "SE1 5", - "royal_cypher": "no", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 5361339824, - "lat": 54.4948448, - "lon": -6.2094230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT67 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5364429026, - "lat": 54.1983044, - "lon": -2.8319997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LA5 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5364429065, - "lat": 54.1945954, - "lon": -2.8460728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 92" - } -}, -{ - "type": "node", - "id": 5364429086, - "lat": 54.1695552, - "lon": -2.8039894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5364429097, - "lat": 54.1766640, - "lon": -2.8104443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 63" - } -}, -{ - "type": "node", - "id": 5364729142, - "lat": 54.2356689, - "lon": -2.5717705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA6 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5364880093, - "lat": 51.0812860, - "lon": -0.8091675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5366227147, - "lat": 51.0399021, - "lon": -1.7276163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 397D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5367008697, - "lat": 51.1645877, - "lon": -0.8862850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "324153789148967", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-11-13" - } -}, -{ - "type": "node", - "id": 5367145350, - "lat": 51.1541675, - "lon": -0.8785468, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "description": "This postbox is very discreet and is easy to miss. This postbox is located in the wall of Wheatley House between two of the columns in the wall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU35 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5367626023, - "lat": 51.1173371, - "lon": 0.2484173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN2 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5367626024, - "lat": 51.1160608, - "lon": 0.2638314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 240D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5367626025, - "lat": 51.1217898, - "lon": 0.2412955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 313D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5367626026, - "lat": 51.1138981, - "lon": 0.2566089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN2 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5367773111, - "lat": 51.1233118, - "lon": 0.2781455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN2 267D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5367773112, - "lat": 51.1366535, - "lon": 0.2906361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5367773113, - "lat": 51.1237737, - "lon": 0.2548163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN2 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5367773114, - "lat": 51.1212200, - "lon": 0.2799470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN2 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5368629941, - "lat": 51.5431679, - "lon": 0.2024529, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5368815339, - "lat": 51.1988385, - "lon": -0.6211352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU7 65D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2018-01-27" - } -}, -{ - "type": "node", - "id": 5368909332, - "lat": 52.5356163, - "lon": -1.4514630, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5369004665, - "lat": 52.3954030, - "lon": -1.7399473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1057", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5369004666, - "lat": 52.3945699, - "lon": -1.7382383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5369004667, - "lat": 52.3928035, - "lon": -1.7347320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "I expected to find B93 109 here but it is definitely 19D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5369695225, - "lat": 53.1860294, - "lon": -2.8828878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5370514274, - "lat": 57.1557231, - "lon": -7.3704864, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5370514304, - "lat": 57.1677251, - "lon": -7.3712850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "HS8 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5370514332, - "lat": 57.2395063, - "lon": -7.3874266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:45; Sa 08:00", - "old_ref": "U073", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS8 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5371116332, - "lat": 57.1471095, - "lon": -2.1367985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 101D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5371185170, - "lat": 54.9995272, - "lon": -1.6121959, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 202", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5371185171, - "lat": 54.9988655, - "lon": -1.6078314, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE2 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5371185172, - "lat": 54.9972420, - "lon": -1.6054213, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 223", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5371185173, - "lat": 54.9961879, - "lon": -1.6097095, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE2 186" - } -}, -{ - "type": "node", - "id": 5371185174, - "lat": 54.9950791, - "lon": -1.6122833, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 179", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 5371185175, - "lat": 54.9949987, - "lon": -1.5995836, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 178", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 5371185176, - "lat": 54.9913296, - "lon": -1.5981326, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NE2 177", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5371185177, - "lat": 54.9906977, - "lon": -1.6015609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5371185178, - "lat": 54.9893425, - "lon": -1.6023396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 190", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5371185179, - "lat": 54.9874515, - "lon": -1.5944023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE2 195D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5371185180, - "lat": 54.9849855, - "lon": -1.5900327, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE2 415" - } -}, -{ - "type": "node", - "id": 5371185181, - "lat": 54.9839667, - "lon": -1.5976456, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE2 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5371185182, - "lat": 54.9770743, - "lon": -1.6009366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "NE2 122" - } -}, -{ - "type": "node", - "id": 5371185183, - "lat": 54.9841311, - "lon": -1.6057939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "NE2 91", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5371185184, - "lat": 54.9842170, - "lon": -1.6114466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5371185185, - "lat": 54.9857023, - "lon": -1.6100684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5371185186, - "lat": 54.9859744, - "lon": -1.6014482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 35", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5371185187, - "lat": 54.9846332, - "lon": -1.6021604, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE2 185" - } -}, -{ - "type": "node", - "id": 5371185188, - "lat": 54.9835929, - "lon": -1.6237969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NE2 120", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5371185189, - "lat": 54.9801519, - "lon": -1.6336470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "post_box:type": "meter", - "ref": "NE2 433", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5372328740, - "lat": 50.3247637, - "lon": -3.7294006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5373236106, - "lat": 56.7650494, - "lon": -3.3306347, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 195D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5374664542, - "lat": 53.9181105, - "lon": -2.0165229, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BD20 124" - } -}, -{ - "type": "node", - "id": 5376164662, - "lat": 56.4725229, - "lon": -2.9564964, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5378186417, - "lat": 53.9171167, - "lon": -2.0061573, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5378186546, - "lat": 51.4123124, - "lon": -0.1448206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5380733354, - "lat": 53.5723639, - "lon": -2.4219722, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5381096946, - "lat": 51.8217643, - "lon": -2.2749451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Inside Asda Kingsway entrance", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL2 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5382479998, - "lat": 54.7319040, - "lon": -1.4774957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 5382509414, - "lat": 53.4379933, - "lon": -2.2743335, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5382940501, - "lat": 52.4782336, - "lon": 1.6495934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5383982125, - "lat": 52.5999243, - "lon": -2.1718466, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV6 53D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5385236130, - "lat": 52.5981383, - "lon": -2.1689697, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WV6 180" - } -}, -{ - "type": "node", - "id": 5385257453, - "lat": 53.7965436, - "lon": -2.3315569, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5388046872, - "lat": 51.3073015, - "lon": -1.0866589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG24 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5393207720, - "lat": 50.2427562, - "lon": -5.2149935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5393216921, - "lat": 50.2380481, - "lon": -5.2173898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5393221783, - "lat": 50.2380476, - "lon": -5.2359461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5393374648, - "lat": 50.2259349, - "lon": -5.2209542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5393430564, - "lat": 51.0691217, - "lon": -0.3042762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5394295727, - "lat": 56.3188981, - "lon": -3.0234137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 279D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5394295737, - "lat": 56.3189198, - "lon": -3.0185652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY15 268", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5394552263, - "lat": 56.3176230, - "lon": -3.0121460, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 13", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5394552264, - "lat": 56.3176374, - "lon": -3.0121408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5394552433, - "lat": 56.3194380, - "lon": -3.0099474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY15 267", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5394555508, - "lat": 54.2508055, - "lon": -2.8478145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA11 157" - } -}, -{ - "type": "node", - "id": 5395269444, - "lat": 53.0989319, - "lon": -2.0350181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST13 709" - } -}, -{ - "type": "node", - "id": 5395326203, - "lat": 53.3644448, - "lon": -2.7368829, - "tags": { - "amenity": "post_box", - "ref": "WA8 20D" - } -}, -{ - "type": "node", - "id": 5395404199, - "lat": 53.3769052, - "lon": -2.7242169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 40", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5395538683, - "lat": 53.3667670, - "lon": -2.7283858, - "tags": { - "amenity": "post_box", - "ref": "WA8 18" - } -}, -{ - "type": "node", - "id": 5396147210, - "lat": 51.0605503, - "lon": -0.3548147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5396989382, - "lat": 51.5047031, - "lon": -0.1047076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "note": "3 apertures on the front wall of the Post Office. Only one plate with ref and collection times. Middle aperture currently (27/01/23) blocked up https://www.royalmail.com/services-near-you shows ref SE1 34 and SE1 234 at this location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "SE1 34", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 5398449448, - "lat": 54.7529801, - "lon": -5.7095275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "geograph:id": "723028", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 5398483975, - "lat": 54.7516055, - "lon": -5.7119898, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "geograph:id": "2627214", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 5398824083, - "lat": 54.2090459, - "lon": -2.7743545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA7 228", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5398875929, - "lat": 53.6985708, - "lon": -1.1148603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "wall", - "ref": "DN14 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5398889511, - "lat": 53.7031150, - "lon": -1.1080820, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5401624727, - "lat": 54.2106730, - "lon": -2.8055649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "LA7 204" - } -}, -{ - "type": "node", - "id": 5403401406, - "lat": 53.5489458, - "lon": -2.4168567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5404903696, - "lat": 51.1504190, - "lon": 0.2621019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5404959869, - "lat": 51.1557262, - "lon": 0.2779919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5404959871, - "lat": 51.1456195, - "lon": 0.2681238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5404959872, - "lat": 51.1457062, - "lon": 0.2875816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5404959874, - "lat": 51.1505415, - "lon": 0.2746996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5404959876, - "lat": 51.1486434, - "lon": 0.2884682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5404959878, - "lat": 51.1468656, - "lon": 0.2733232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN4 104D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5405009919, - "lat": 51.1418062, - "lon": 0.2836394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405013321, - "lat": 51.1446568, - "lon": 0.2815073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN2 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5405013323, - "lat": 51.1464638, - "lon": 0.2867840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405022854, - "lat": 51.1433724, - "lon": 0.2981184, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN2 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405345386, - "lat": 53.0995935, - "lon": -2.0395394, - "tags": { - "amenity": "post_box", - "check_date": "2021-05-14", - "post_box:type": "pillar", - "ref": "ST13 761", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405515963, - "lat": 52.0939223, - "lon": -1.0188765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405515964, - "lat": 52.0867038, - "lon": -1.0249478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405515965, - "lat": 52.0839777, - "lon": -1.0299959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN12 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5405515966, - "lat": 52.0917861, - "lon": -1.0261895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN12 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5406030901, - "lat": 55.9988011, - "lon": -3.7800022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "FK1 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5407648570, - "lat": 54.6404442, - "lon": -5.9321817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5408557304, - "lat": 51.6308050, - "lon": 0.3289857, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "CM15 19;CM15 1900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5408679462, - "lat": 51.7984186, - "lon": -4.9714991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5409686457, - "lat": 54.2450721, - "lon": -3.1732947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA17 66" - } -}, -{ - "type": "node", - "id": 5410075346, - "lat": 55.9620266, - "lon": -2.9782174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "EH32 153D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5410136504, - "lat": 51.5941700, - "lon": -0.3359036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "HA3 291;HA3 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5410937979, - "lat": 52.0867809, - "lon": -4.6522004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA43 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5414870593, - "lat": 54.2314322, - "lon": -3.1815241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA17 122", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5414870850, - "lat": 54.2300095, - "lon": -3.1771424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA17 32" - } -}, -{ - "type": "node", - "id": 5415064178, - "lat": 53.7325298, - "lon": -1.9484639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "HX2 197", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5415656598, - "lat": 53.2030654, - "lon": -0.5383346, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5415656599, - "lat": 53.1990214, - "lon": -0.5290535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5415656600, - "lat": 53.1932148, - "lon": -0.5309294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5415656601, - "lat": 53.1907314, - "lon": -0.5290959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5415656602, - "lat": 53.1906307, - "lon": -0.5366387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5416877198, - "lat": 51.5756114, - "lon": -4.0004430, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5418215718, - "lat": 50.1089304, - "lon": -5.3342445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "mapillary": "170792405500472", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2022-09-04" - } -}, -{ - "type": "node", - "id": 5418345304, - "lat": 52.8606174, - "lon": 1.2554468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5419733575, - "lat": 53.3879981, - "lon": -2.5982572, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA1 998", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5419733576, - "lat": 53.3880343, - "lon": -2.5982674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA1 360" - } -}, -{ - "type": "node", - "id": 5419739727, - "lat": 51.1533338, - "lon": 0.2418146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN3 303D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5419739731, - "lat": 51.1769585, - "lon": 0.2597648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN4 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5419739737, - "lat": 51.1396169, - "lon": 0.2854587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN2 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5420878142, - "lat": 53.3869618, - "lon": -2.5957750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA1 7", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5421331730, - "lat": 55.9974970, - "lon": -3.8338016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK1 39D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5421466744, - "lat": 54.2444484, - "lon": -2.8601053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA11 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5423388684, - "lat": 56.1156720, - "lon": -3.9185136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK7 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5423388685, - "lat": 56.1157084, - "lon": -3.9185120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown", - "text": "Franked mail only." - } -}, -{ - "type": "node", - "id": 5424321208, - "lat": 54.2500426, - "lon": -2.8733106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA11 158" - } -}, -{ - "type": "node", - "id": 5425113343, - "lat": 54.2069577, - "lon": -2.3636389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 154" - } -}, -{ - "type": "node", - "id": 5427460400, - "lat": 51.3482660, - "lon": -0.5015883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT15 47;KT15 4701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5427701070, - "lat": 50.1082878, - "lon": -5.2656023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5429365446, - "lat": 53.0636890, - "lon": -2.1617857, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5430002790, - "lat": 50.8226183, - "lon": -0.3921748, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1666", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5430003505, - "lat": 50.8238632, - "lon": -0.3880737, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1718D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5430008738, - "lat": 50.8195380, - "lon": -0.3919576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1668", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5430025284, - "lat": 56.3749206, - "lon": -3.0990882, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KY15 297", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 5431407645, - "lat": 50.8446069, - "lon": -0.2240056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 664D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5432426842, - "lat": 54.1735555, - "lon": -2.9263901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA11 112" - } -}, -{ - "type": "node", - "id": 5432883128, - "lat": 53.5843895, - "lon": -2.4247136, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5433313536, - "lat": 52.6928608, - "lon": 1.3131210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5433919056, - "lat": 52.2251898, - "lon": -1.3887322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV47 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5433963526, - "lat": 53.5942740, - "lon": -2.4767261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5434178261, - "lat": 50.8256706, - "lon": -0.2977920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1378", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5434183535, - "lat": 52.8112600, - "lon": 1.5387297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR12 1220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5434186481, - "lat": 50.8243682, - "lon": -0.3033426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1377D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5434188985, - "lat": 50.8227628, - "lon": -0.3109355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1376D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5434189497, - "lat": 50.8229653, - "lon": -0.3119059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5434223064, - "lat": 50.8221495, - "lon": -0.3162818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5434253747, - "lat": 50.8114039, - "lon": -0.3722467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1829", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5434253748, - "lat": 50.8114116, - "lon": -0.3723239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPMET-NS", - "collection_times": "Mo-Fr 18:15", - "opening_hours": "Mo-Fr 12:30-18:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN11 1825", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5434286868, - "lat": 50.8107254, - "lon": -0.3748377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1635D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5434305022, - "lat": 51.4252074, - "lon": -0.0985051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5434315367, - "lat": 53.5919360, - "lon": -2.4771848, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5434838069, - "lat": 51.7102862, - "lon": -1.7918243, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5434892516, - "lat": 50.7170394, - "lon": -3.0705470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5435105886, - "lat": 53.5707641, - "lon": -2.4382364, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5435704720, - "lat": 53.5960815, - "lon": -2.4499376, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5435808253, - "lat": 53.4239300, - "lon": -2.9358916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR post box L6 353 by Carron Company at the corner of Dorset Road & West Derby Road", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Dorset Road.jpg" - } -}, -{ - "type": "node", - "id": 5436093414, - "lat": 52.3850886, - "lon": -1.8838608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B47 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5436093415, - "lat": 52.3755911, - "lon": -1.8750529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B47 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5436897294, - "lat": 51.9461842, - "lon": -5.0876581, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5438126942, - "lat": 54.1477608, - "lon": -2.7641716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 103" - } -}, -{ - "type": "node", - "id": 5438126966, - "lat": 54.1456685, - "lon": -2.7686778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA5 72" - } -}, -{ - "type": "node", - "id": 5438127167, - "lat": 54.1416702, - "lon": -2.7761245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA5 76" - } -}, -{ - "type": "node", - "id": 5438290364, - "lat": 56.4806508, - "lon": -3.4487420, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH1 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5438315930, - "lat": 57.0814895, - "lon": -4.0454203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH21 48D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5438391079, - "lat": 57.5492939, - "lon": -4.2616788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IV8 159", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5438422385, - "lat": 56.1065115, - "lon": -3.3447508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY4 54D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5438582817, - "lat": 56.8157674, - "lon": -5.1149565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5440479520, - "lat": 51.3967144, - "lon": -2.3929436, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5441024790, - "lat": 50.8466246, - "lon": -2.6866776, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 21", - "ref:GB:uprn": "10015296503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5441084344, - "lat": 50.8010206, - "lon": -2.5866587, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 108", - "ref:GB:uprn": "10015459353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5441228215, - "lat": 51.5141434, - "lon": -0.0708115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E1 81P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5441363841, - "lat": 50.8035091, - "lon": -2.4222252, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT2 19", - "ref:GB:uprn": "10015468546", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5441363843, - "lat": 50.7969039, - "lon": -2.4199963, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5442412148, - "lat": 53.5815136, - "lon": -2.4462510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5442689475, - "lat": 53.5672227, - "lon": -2.4385463, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5443126795, - "lat": 50.8366814, - "lon": -0.7657773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO19 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5444017681, - "lat": 56.4141963, - "lon": -5.4721484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA34 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5445273213, - "lat": 52.7743927, - "lon": 0.8635774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5445913237, - "lat": 57.5014104, - "lon": -4.2469870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "IV1", - "ref": "IV1 79", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5446709373, - "lat": 54.5157123, - "lon": -5.8845986, - "tags": { - "addr:street": "Church Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5448451759, - "lat": 51.5702632, - "lon": 0.2586011, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5448964839, - "lat": 51.4064078, - "lon": -0.6759718, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SL5 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5450562333, - "lat": 51.7919847, - "lon": -3.8832913, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA18 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5451038691, - "lat": 55.9514480, - "lon": -3.2808164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH12 545", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5451926019, - "lat": 51.4475657, - "lon": -0.9988935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG30 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Parkside Road 2019-06-17 20.38.04.jpg" - } -}, -{ - "type": "node", - "id": 5452192244, - "lat": 50.7823231, - "lon": -0.6790464, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5453876543, - "lat": 53.6012844, - "lon": -2.4388894, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5453965803, - "lat": 53.2237118, - "lon": -3.2570769, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5454782367, - "lat": 53.3663022, - "lon": -1.3986464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5456202902, - "lat": 53.6051935, - "lon": -2.4283660, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5457416699, - "lat": 53.9916615, - "lon": -2.7890940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5457420250, - "lat": 55.8015553, - "lon": -4.3270686, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5457420259, - "lat": 55.8031364, - "lon": -4.3322683, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5457468472, - "lat": 57.5719446, - "lon": -3.8726713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV12 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5457666711, - "lat": 56.4121138, - "lon": -5.4727198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA34 38", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5457677009, - "lat": 56.0398103, - "lon": -5.4401764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA31 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5458677013, - "lat": 53.5989308, - "lon": -2.4329450, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5459285704, - "lat": 53.1023694, - "lon": -1.0338951, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5460588725, - "lat": 55.4340269, - "lon": -2.7887647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5460605223, - "lat": 55.8634681, - "lon": -3.1013982, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2019-06-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH19 242D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5461745058, - "lat": 53.6044955, - "lon": -2.4417519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5462828597, - "lat": 51.3915578, - "lon": -0.6324326, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL5 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5462830871, - "lat": 51.3918166, - "lon": -0.6334347, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL5 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5464663209, - "lat": 50.3729538, - "lon": -4.1504470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "980655852590211", - "post_box:type": "pillar", - "ref": "PL1 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 5465497627, - "lat": 53.0658729, - "lon": -0.8323646, - "tags": { - "amenity": "post_box", - "mapillary": "3741202062674082", - "post_box:type": "lamp", - "ref": "NG24 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Mapillary; survey", - "source:position": "Mapillary 2017-04-05", - "survey:date": "2020-02-03" - } -}, -{ - "type": "node", - "id": 5465794372, - "lat": 54.3155928, - "lon": -1.8216478, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5465794375, - "lat": 54.3096279, - "lon": -1.8268585, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5466361145, - "lat": 53.5814378, - "lon": -2.7063617, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5467371999, - "lat": 51.7461421, - "lon": -0.4861197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HP1 105" - } -}, -{ - "type": "node", - "id": 5468273448, - "lat": 50.8154602, - "lon": -0.3757488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1672D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5468280033, - "lat": 50.8136775, - "lon": -0.3766188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN11 1727D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5468283475, - "lat": 50.8114427, - "lon": -0.3788491, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1633", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5468287221, - "lat": 50.8099407, - "lon": -0.3789733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1631", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5468289060, - "lat": 50.8104986, - "lon": -0.3826570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1630D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5468291677, - "lat": 50.8123480, - "lon": -0.3826463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1629D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5468294357, - "lat": 50.8134147, - "lon": -0.3850495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1627D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5468316290, - "lat": 50.8405031, - "lon": -0.4046394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1763D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5468320632, - "lat": 50.8380640, - "lon": -0.4091060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1758D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5468325088, - "lat": 50.8356702, - "lon": -0.4109378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5469494436, - "lat": 53.9457912, - "lon": -2.5196250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BB7 447", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5471684315, - "lat": 53.6237663, - "lon": -2.9149221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "L40 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471691021, - "lat": 53.6099014, - "lon": -2.9341608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "L40 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471691022, - "lat": 53.6125129, - "lon": -2.9204349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "L40 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471696945, - "lat": 53.6238019, - "lon": -2.9611698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR8 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471696946, - "lat": 53.6186629, - "lon": -2.9421777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR8 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471696948, - "lat": 53.6278152, - "lon": -2.9632893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR8 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471715896, - "lat": 53.6819317, - "lon": -2.9183842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR9 143", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471719007, - "lat": 53.6776099, - "lon": -2.9276328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR9 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471720840, - "lat": 53.6866663, - "lon": -2.9138223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR9 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471720841, - "lat": 53.6816687, - "lon": -2.9168591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR9 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471724906, - "lat": 53.6746667, - "lon": -2.9222077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR9 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471730395, - "lat": 53.6691240, - "lon": -2.9067390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR9 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471730396, - "lat": 53.6738830, - "lon": -2.9172332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR9 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471735044, - "lat": 53.6663576, - "lon": -2.9189170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR9 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5471774300, - "lat": 55.8733592, - "lon": -4.3138880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G11 210D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5471793953, - "lat": 53.7794298, - "lon": -2.9362390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5473782727, - "lat": 53.6029777, - "lon": -2.4325753, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5475771234, - "lat": 53.8720180, - "lon": -1.7023569, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 496D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5475771246, - "lat": 53.8742058, - "lon": -1.7128506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS20 490", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5475771256, - "lat": 53.8780839, - "lon": -1.7078805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 503D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 5475771259, - "lat": 53.8761682, - "lon": -1.7064267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS20 501", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5477879832, - "lat": 53.6054937, - "lon": -2.4223081, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5478689009, - "lat": 55.0732892, - "lon": -1.6905735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NE13 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5478943870, - "lat": 50.2135882, - "lon": -5.3018545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR14 87", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5479782781, - "lat": 53.7325105, - "lon": -1.9424630, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5481355239, - "lat": 53.8172145, - "lon": -1.9570013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5482106156, - "lat": 53.4247514, - "lon": -1.5726746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "lamp", - "postal_code": "S6", - "ref": "S6 642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5482895707, - "lat": 51.6009388, - "lon": -0.2718508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 750D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5482895850, - "lat": 51.6025133, - "lon": -0.3074136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:30", - "ref": "HA7 801" - } -}, -{ - "type": "node", - "id": 5482899185, - "lat": 51.6059464, - "lon": -0.2741076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 754D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5482956488, - "lat": 50.8767165, - "lon": -0.0072264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5485090672, - "lat": 53.6685316, - "lon": -1.9729844, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5486285783, - "lat": 53.3854534, - "lon": -1.5082535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "postal_code": "S10", - "ref": "S10 408", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5487219515, - "lat": 53.7320849, - "lon": -2.7686912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5488483110, - "lat": 54.9648347, - "lon": -1.6089221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE8 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5489666572, - "lat": 50.8192499, - "lon": -0.3788836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1670D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5489672021, - "lat": 50.8212509, - "lon": -0.3794934, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1720D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5489673008, - "lat": 50.8224627, - "lon": -0.3829125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1719D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5489675921, - "lat": 50.8258605, - "lon": -0.3856670, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1717D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489686220, - "lat": 50.8293521, - "lon": -0.3904398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1654D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489688128, - "lat": 50.8289822, - "lon": -0.3945540, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1655D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5489690140, - "lat": 50.8297723, - "lon": -0.3996623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN13 1744D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5489719137, - "lat": 50.8306305, - "lon": -0.3920491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1657", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5489727948, - "lat": 50.8305643, - "lon": -0.3871810, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1713D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489731167, - "lat": 50.8337207, - "lon": -0.3860903, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1712D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489733730, - "lat": 50.8343687, - "lon": -0.3918334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1761D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5489747182, - "lat": 50.8713388, - "lon": -0.4076182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1790D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5489749332, - "lat": 50.8685934, - "lon": -0.4069589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1787", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489781748, - "lat": 50.8635182, - "lon": -0.4083039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1788D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5489790896, - "lat": 50.8276548, - "lon": -0.3693915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1675D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489792838, - "lat": 50.8298565, - "lon": -0.3669347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN14 1736D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489813862, - "lat": 50.8324744, - "lon": -0.3706727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1732D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5489817470, - "lat": 50.8305721, - "lon": -0.3750118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1728D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5491304102, - "lat": 50.3277774, - "lon": -3.7486879, - "tags": { - "amenity": "post_box", - "fixme": "Not on Royal Mail database but was visible on 2017 Google Streetview. Needs a survey to confirm that this is still in place", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TQ9 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5491503693, - "lat": 53.3760156, - "lon": -1.4739563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:apertures": "1", - "post_box:type": "wall", - "postal_code": "S1", - "ref": "S1 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5491823347, - "lat": 53.4107039, - "lon": -1.3948625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:apertures": "1", - "post_box:type": "pillar", - "postal_code": "S9", - "ref": "S9 339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5494353645, - "lat": 52.3342155, - "lon": -1.4031964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5494946911, - "lat": 51.0674647, - "lon": -0.3214013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:00-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "Not shown" - } -}, -{ - "type": "node", - "id": 5494981479, - "lat": 51.0694587, - "lon": -0.3316049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH12 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5494984894, - "lat": 51.0769827, - "lon": -0.3184144, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5497592873, - "lat": 56.0595348, - "lon": -3.5795922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5497675124, - "lat": 56.0329209, - "lon": -3.4744830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY11 33D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5501395213, - "lat": 53.6076535, - "lon": -2.4310335, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5501691697, - "lat": 52.0930799, - "lon": -1.1381224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "944438886097822", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN13 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-03-16" - } -}, -{ - "type": "node", - "id": 5501691698, - "lat": 52.0888980, - "lon": -1.1444719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN13 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5501691699, - "lat": 52.0864038, - "lon": -1.1416348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN13 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502238060, - "lat": 50.8811617, - "lon": -0.6018823, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "description": "This postbox is on the southbound side of the lane in the northern corner of the church wall.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN18 1330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502243553, - "lat": 50.8838668, - "lon": -0.5925762, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN18 1329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502246261, - "lat": 50.9273377, - "lon": -0.6034983, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502247278, - "lat": 50.9253835, - "lon": -0.6135071, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "note": "This postbox is of a brand new EIIR design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502251066, - "lat": 50.9333563, - "lon": -0.5574366, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502252007, - "lat": 50.9362797, - "lon": -0.5473021, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5502254006, - "lat": 50.9424174, - "lon": -0.5381986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5502257026, - "lat": 50.9481323, - "lon": -0.5263780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5503318808, - "lat": 51.4502804, - "lon": -0.9952330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Postbox on Westcote Road (geograph 4114567).jpg" - } -}, -{ - "type": "node", - "id": 5503320161, - "lat": 51.4517663, - "lon": -0.9979923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG30 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Postbox on Tilehurst Road - geograph.org.uk - 996156.jpg" - } -}, -{ - "type": "node", - "id": 5503869674, - "lat": 55.7630127, - "lon": -3.6974077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML11 73D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5503869686, - "lat": 55.7650182, - "lon": -3.6885537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML11 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5503869696, - "lat": 55.7689114, - "lon": -3.6852575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML11 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5504048994, - "lat": 50.8181045, - "lon": -0.3867024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1653", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5504061241, - "lat": 50.8181410, - "lon": -0.3783474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1724", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5504063110, - "lat": 50.8168694, - "lon": -0.3831152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1726D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5504064797, - "lat": 50.8165639, - "lon": -0.3941021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1649D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5504064821, - "lat": 50.8168691, - "lon": -0.3877984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1651D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5504066935, - "lat": 50.8140605, - "lon": -0.3969135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN11 1621D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5504904016, - "lat": 54.0158392, - "lon": -2.1798407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD23 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 5504907096, - "lat": 54.0296261, - "lon": -2.1514485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5505946419, - "lat": 53.5223801, - "lon": -1.1307900, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN1 351;DN1 997", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5506076803, - "lat": 53.5197364, - "lon": -1.1204542, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DN2 36D" - } -}, -{ - "type": "node", - "id": 5506214456, - "lat": 53.1933586, - "lon": -2.8929712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "description": "QEII Type C post box by Machan Company at Northgate Street Post Office, Chester, shared by CH1 97 and CH1 2002.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH1 97;CH1 2002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:Postbox at Northgate Street Post Office, Chester" - } -}, -{ - "type": "node", - "id": 5506420734, - "lat": 51.4564842, - "lon": -0.9850031, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5506433367, - "lat": 55.6956095, - "lon": -3.6910257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML11 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5506469768, - "lat": 55.5947935, - "lon": -3.7888496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML11 20D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5506489074, - "lat": 55.5572422, - "lon": -3.8448526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ML11 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5506510742, - "lat": 56.1378277, - "lon": -3.2592383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY5 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5506538280, - "lat": 55.5534860, - "lon": -3.8438878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ML11 75D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5506538296, - "lat": 55.5569051, - "lon": -3.8478729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ML11 79D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5506544279, - "lat": 56.1999075, - "lon": -3.3146981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5506544281, - "lat": 56.2167459, - "lon": -3.3371944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY13 125", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5506544299, - "lat": 56.2688214, - "lon": -3.3966898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The Postbox number has been reused for this location, the ref was last used at the Wall Box outside the Post Office in South Street, Perth before it closed.", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 400", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5506556438, - "lat": 55.5797884, - "lon": -3.8073830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML11 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5507887243, - "lat": 53.5989143, - "lon": -1.6102894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5507906536, - "lat": 51.2902388, - "lon": -0.3165276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5507966442, - "lat": 53.6527532, - "lon": -2.6178092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "815303399116315", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR6 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5507991414, - "lat": 53.5748022, - "lon": -1.6863238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD8 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5508061925, - "lat": 54.5351234, - "lon": -1.2042159, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5508716302, - "lat": 53.6121357, - "lon": -2.4285573, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5509472893, - "lat": 50.8189893, - "lon": -0.3875107, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1669D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5509477927, - "lat": 50.8225821, - "lon": -0.4034842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN13 1662D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509480616, - "lat": 50.8222162, - "lon": -0.3962447, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1665D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509481896, - "lat": 50.8251889, - "lon": -0.3981108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1661D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5509482952, - "lat": 50.8250733, - "lon": -0.4050058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1746D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509484083, - "lat": 50.8245404, - "lon": -0.4101344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1748D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509485694, - "lat": 50.8223716, - "lon": -0.4061523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1747D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509487129, - "lat": 51.1516969, - "lon": -2.4616134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA4 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509487130, - "lat": 51.1509827, - "lon": -2.4422841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA4 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509487131, - "lat": 51.1528208, - "lon": -2.4383935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA4 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509489138, - "lat": 50.8197252, - "lon": -0.4108990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509525201, - "lat": 50.9956868, - "lon": -3.0028322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509525203, - "lat": 51.0073992, - "lon": -2.9946944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5509525204, - "lat": 51.0170822, - "lon": -2.9827063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "3981274365271933", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-02-05", - "survey:date": "2020-07-02" - } -}, -{ - "type": "node", - "id": 5509572334, - "lat": 52.4752771, - "lon": -2.0394391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "B65 441", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5511698371, - "lat": 50.2371744, - "lon": -5.2225355, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5511963648, - "lat": 53.6096163, - "lon": -2.4316713, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5513335828, - "lat": 53.7234559, - "lon": -1.7764009, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5515818277, - "lat": 53.1755697, - "lon": -2.8656550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 277D" - } -}, -{ - "type": "node", - "id": 5516229378, - "lat": 52.7734265, - "lon": 1.0467991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5516634043, - "lat": 56.6743837, - "lon": -3.0076091, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5517353547, - "lat": 53.5919874, - "lon": -2.4513925, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5517929295, - "lat": 53.6020238, - "lon": -2.4349523, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5518234449, - "lat": 51.9958168, - "lon": -2.1377737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL20 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5518913117, - "lat": 52.0069889, - "lon": -2.1617274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL20 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5518984413, - "lat": 52.3647016, - "lon": -1.7068574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B93 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5518984414, - "lat": 52.3787037, - "lon": -1.7557801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5518984415, - "lat": 52.3847188, - "lon": -1.7621955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B93 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5518988525, - "lat": 52.3847607, - "lon": -1.7522596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1279D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5518988526, - "lat": 52.3896139, - "lon": -1.7526982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 782", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5518988527, - "lat": 52.3902038, - "lon": -1.7449660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B93 1295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5518988528, - "lat": 52.3872682, - "lon": -1.7314567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "not a traditional pillar but that seemed the closest description. A rectangular section outdoor box by the shop door.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "B93 4100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5520541738, - "lat": 52.0616142, - "lon": -2.2182894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WR8 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5520895379, - "lat": 52.4685345, - "lon": 1.3615684, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5522051538, - "lat": 51.3488068, - "lon": -1.4052093, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5522411214, - "lat": 53.0748796, - "lon": -3.1010585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL11 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5523035730, - "lat": 50.8157600, - "lon": -0.4013335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN11 1647D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5523038563, - "lat": 50.8177497, - "lon": -0.3976402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1648D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5523200726, - "lat": 51.3951366, - "lon": -3.2716771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5523525949, - "lat": 57.4127067, - "lon": -6.1941929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV51 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5523608230, - "lat": 53.1114757, - "lon": -0.3275834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5524625120, - "lat": 53.5563189, - "lon": -3.0634538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5525743436, - "lat": 53.5797968, - "lon": -2.4015912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525744489, - "lat": 53.5893836, - "lon": -2.4082680, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525859644, - "lat": 53.5912825, - "lon": -2.4071862, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525862777, - "lat": 53.5973194, - "lon": -2.4109492, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525864068, - "lat": 53.6006830, - "lon": -2.4085910, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525866763, - "lat": 53.5983155, - "lon": -2.4171457, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525892923, - "lat": 53.5809579, - "lon": -2.4178750, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5525956827, - "lat": 53.5861279, - "lon": -2.4224500, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525963926, - "lat": 53.5883483, - "lon": -2.4265795, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5525963927, - "lat": 53.5883307, - "lon": -2.4265678, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5526032193, - "lat": 53.5998705, - "lon": -2.4272281, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5526035950, - "lat": 53.5998008, - "lon": -2.4342725, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5526045229, - "lat": 53.6116350, - "lon": -2.4332899, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5526047935, - "lat": 53.6100156, - "lon": -2.4231636, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5526338187, - "lat": 52.6765736, - "lon": -2.4485815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TF3 330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5526338188, - "lat": 52.6755629, - "lon": -2.4515757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TF3 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5526343404, - "lat": 51.4737460, - "lon": -0.2161391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5526459533, - "lat": 51.3280759, - "lon": -1.3799670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5528752125, - "lat": 51.4505608, - "lon": -0.2388183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5528874802, - "lat": 52.7100525, - "lon": -2.8057515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SY3 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5528901981, - "lat": 51.6014846, - "lon": -0.1792108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 5530373298, - "lat": 51.5444434, - "lon": -0.1747069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 22:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 41", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5530373299, - "lat": 51.5466556, - "lon": -0.1720855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5531000479, - "lat": 53.6073602, - "lon": -2.4813101, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5532111594, - "lat": 52.6647893, - "lon": -2.4388529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TF3 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5532114976, - "lat": 52.6768095, - "lon": -2.4467486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "wooden_indoor", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5532122330, - "lat": 51.7240085, - "lon": -0.8317094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5532725380, - "lat": 51.5352826, - "lon": -0.3939886, - "tags": { - "amenity": "post_box", - "check_date": "2022-12-27" - } -}, -{ - "type": "node", - "id": 5534049463, - "lat": 52.6392601, - "lon": -2.4399209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TF7 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5534074852, - "lat": 52.5454638, - "lon": 1.3101363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR15 1501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5534697644, - "lat": 50.7952049, - "lon": -1.1233574, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-28", - "check_date:collection_times": "2022-06-28", - "check_date:ref": "2022-06-28", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO12 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5534697645, - "lat": 50.7952083, - "lon": -1.1233266, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-28", - "check_date:collection_times": "2022-06-28", - "check_date:ref": "2022-06-28", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "PO12 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5534780239, - "lat": 50.8031387, - "lon": -1.1493695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PO12 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5534780240, - "lat": 50.8023407, - "lon": -1.1439132, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5534791464, - "lat": 50.7986210, - "lon": -1.1429402, - "tags": { - "amenity": "post_box", - "note": "Probably a VR pillar box.", - "post_box:type": "pillar", - "ref": "PO12 13", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5536381493, - "lat": 55.9962514, - "lon": -3.7718518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 228D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5536571953, - "lat": 51.0820729, - "lon": -1.1652455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536571984, - "lat": 51.0861146, - "lon": -1.1624278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761675, - "lat": 52.3070322, - "lon": -0.7246900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761676, - "lat": 52.2855063, - "lon": -0.7299498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 75" - } -}, -{ - "type": "node", - "id": 5536761677, - "lat": 52.2890699, - "lon": -0.7232416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN8 34" - } -}, -{ - "type": "node", - "id": 5536761678, - "lat": 52.2866425, - "lon": -0.7091680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 1076", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761679, - "lat": 52.2865728, - "lon": -0.7047115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761680, - "lat": 52.2899600, - "lon": -0.7049797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5536761681, - "lat": 52.2938718, - "lon": -0.6994450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5536761682, - "lat": 52.2970780, - "lon": -0.7116222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5536761683, - "lat": 52.2950111, - "lon": -0.7156402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761684, - "lat": 52.2975553, - "lon": -0.7189393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761685, - "lat": 52.3004882, - "lon": -0.7203636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761686, - "lat": 52.2989955, - "lon": -0.7264012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761687, - "lat": 52.3050018, - "lon": -0.7365346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 1053", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761688, - "lat": 52.3103038, - "lon": -0.7344854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN8 1062" - } -}, -{ - "type": "node", - "id": 5536761689, - "lat": 52.3103497, - "lon": -0.7344613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761690, - "lat": 52.3108105, - "lon": -0.7216644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 1052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761691, - "lat": 52.3140417, - "lon": -0.7144184, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761692, - "lat": 52.3165398, - "lon": -0.7184082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 1056" - } -}, -{ - "type": "node", - "id": 5536761693, - "lat": 52.3176055, - "lon": -0.7043991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 3" - } -}, -{ - "type": "node", - "id": 5536761694, - "lat": 52.3157798, - "lon": -0.6895128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5536761695, - "lat": 52.3154379, - "lon": -0.6857470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 138" - } -}, -{ - "type": "node", - "id": 5536761696, - "lat": 52.3243380, - "lon": -0.6883755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 1054", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761697, - "lat": 52.3179292, - "lon": -0.6829647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5536761698, - "lat": 52.3179498, - "lon": -0.6829011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "NN8 1060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5536761699, - "lat": 52.3122224, - "lon": -0.6776655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN8 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536761700, - "lat": 52.3057358, - "lon": -0.6804979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN8 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5536774529, - "lat": 52.3654526, - "lon": -0.6906296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5536774533, - "lat": 52.3651202, - "lon": -0.6784208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5536774534, - "lat": 52.3661804, - "lon": -0.6765797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN15 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5536805209, - "lat": 52.3349613, - "lon": -0.7245918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN9 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5537212616, - "lat": 51.0668115, - "lon": 0.2958569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537240324, - "lat": 51.0619490, - "lon": 0.3197850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN5 265D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5537254535, - "lat": 51.0660740, - "lon": 0.3285926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN5 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537365928, - "lat": 51.0376346, - "lon": 0.3383716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 195", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5537365929, - "lat": 51.0464405, - "lon": 0.3314619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537365930, - "lat": 51.0577843, - "lon": 0.3449608, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537365931, - "lat": 51.0604656, - "lon": 0.3362808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537365932, - "lat": 51.0624658, - "lon": 0.3390560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537365934, - "lat": 51.0471200, - "lon": 0.3783485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537365935, - "lat": 51.0441795, - "lon": 0.3576754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 142", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5537403565, - "lat": 52.2401442, - "lon": 0.6910041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP33 2256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 5537403566, - "lat": 52.2405598, - "lon": 0.7008103, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-19", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2097", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5537403567, - "lat": 52.2471143, - "lon": 0.7217663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP33 2050", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2018-04-07" - } -}, -{ - "type": "node", - "id": 5537433470, - "lat": 50.7949421, - "lon": -1.1440721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5537433474, - "lat": 50.7969982, - "lon": -1.1352316, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO12 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537453875, - "lat": 51.0199923, - "lon": 0.3639053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5537453876, - "lat": 51.0315680, - "lon": 0.3756066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537453878, - "lat": 51.0450322, - "lon": 0.4142310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537453879, - "lat": 51.0499741, - "lon": 0.4046666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5537453880, - "lat": 51.0464450, - "lon": 0.4079783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 305", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5538298134, - "lat": 55.1195140, - "lon": -1.6623741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE61 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5538321187, - "lat": 52.3289156, - "lon": -0.7104701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN9 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5538361551, - "lat": 52.3208636, - "lon": -0.7526429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5538396485, - "lat": 52.3601961, - "lon": -0.7391391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN14 817D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5538396487, - "lat": 52.3943367, - "lon": -0.6037687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN14 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5538689316, - "lat": 50.8102818, - "lon": -0.5298002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN17 1460D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5538711137, - "lat": 55.9998374, - "lon": -3.7864369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5538725603, - "lat": 55.8315873, - "lon": -4.2588785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "G42 246D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5538725604, - "lat": 55.8316091, - "lon": -4.2612577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G42 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5538725605, - "lat": 55.8299716, - "lon": -4.2562044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G42 652D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5538725607, - "lat": 55.8372074, - "lon": -4.2604925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G42 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5538725608, - "lat": 55.8363525, - "lon": -4.2531252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G42 788", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5538725609, - "lat": 55.8295709, - "lon": -4.2481416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G42 517D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5538739548, - "lat": 55.9692938, - "lon": -3.1850991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH6 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5538811576, - "lat": 51.5983252, - "lon": -0.1996016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5538811577, - "lat": 51.5967090, - "lon": -0.1980555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00" - } -}, -{ - "type": "node", - "id": 5539285765, - "lat": 52.4984930, - "lon": -1.7905951, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B34 374", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5539287526, - "lat": 52.5011333, - "lon": -1.7641398, - "tags": { - "amenity": "post_box", - "ref": "B36 314" - } -}, -{ - "type": "node", - "id": 5540096919, - "lat": 50.8313119, - "lon": -0.3428419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540117156, - "lat": 50.8282641, - "lon": -0.3327625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1418D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540120621, - "lat": 50.8260202, - "lon": -0.3324854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1393D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540123876, - "lat": 50.8319479, - "lon": -0.3263128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540136867, - "lat": 50.8354885, - "lon": -0.3271286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1386D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540138840, - "lat": 50.8336888, - "lon": -0.3218909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1385D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5540151477, - "lat": 50.8109624, - "lon": -0.3674957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is inside Chatsworth Hotel on the right hand side of the entrance foyer.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1705D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5540205520, - "lat": 50.8138449, - "lon": -0.3706906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "opening_hours": "Mo-Fr 12:30-18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN11 1818P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5540217696, - "lat": 50.8138308, - "lon": -0.3708623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "note": "Both apertures have the same reference number.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BN11 1819", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540258057, - "lat": 52.4943207, - "lon": -1.7501132, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B37 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5540734944, - "lat": 54.0867142, - "lon": -2.8028266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA2 175" - } -}, -{ - "type": "node", - "id": 5540734957, - "lat": 54.0840267, - "lon": -2.8023281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 103" - } -}, -{ - "type": "node", - "id": 5540734961, - "lat": 54.0779411, - "lon": -2.8024478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 147" - } -}, -{ - "type": "node", - "id": 5540961765, - "lat": 50.8091789, - "lon": -1.1378132, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5540961781, - "lat": 50.8088984, - "lon": -1.1326043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO12 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5541008736, - "lat": 50.8127601, - "lon": -1.1382397, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5541021575, - "lat": 50.8149361, - "lon": -1.1515903, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5541131230, - "lat": 56.7474088, - "lon": -3.5349989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 131", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5541179386, - "lat": 56.6173872, - "lon": -3.2236414, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH11 84D", - "royal_cypher": "EVIIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5541179388, - "lat": 56.6383204, - "lon": -3.1169678, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5541192155, - "lat": 54.5581580, - "lon": -5.9703774, - "tags": { - "addr:street": "Finwood Park", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5543934563, - "lat": 56.4093447, - "lon": -2.9106149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 301", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5543994145, - "lat": 56.2139165, - "lon": -2.7326432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY10 221D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5544436607, - "lat": 53.2593149, - "lon": -2.5274052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "ref": "CW8 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5544911040, - "lat": 50.3207731, - "lon": -5.1761923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5544911041, - "lat": 50.3272210, - "lon": -5.1730211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5544989396, - "lat": 50.3374371, - "lon": -5.1681164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR6 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5544989397, - "lat": 50.3329129, - "lon": -5.1613764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR6 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545009369, - "lat": 50.3405759, - "lon": -5.1584441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR6 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545011301, - "lat": 50.3427164, - "lon": -5.1597776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR6 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545071240, - "lat": 50.3459707, - "lon": -5.1572351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR6 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545101706, - "lat": 50.3425487, - "lon": -5.1507341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR6 166D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545101707, - "lat": 50.3417425, - "lon": -5.1533247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR6 123D", - "royal_cypher": "GR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545101709, - "lat": 50.3379519, - "lon": -5.1517034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR6 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545325982, - "lat": 50.3279498, - "lon": -5.1505238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR6 114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545384339, - "lat": 50.3376241, - "lon": -5.1416834, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5545395018, - "lat": 50.3325950, - "lon": -5.1372931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR6 66D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545494367, - "lat": 50.3504601, - "lon": -5.1265416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR4 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5545547378, - "lat": 50.3459255, - "lon": -5.1191285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5546266993, - "lat": 50.9291523, - "lon": -3.2473035, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5546267000, - "lat": 50.9169027, - "lon": -3.2800144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX15 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5546493033, - "lat": 51.8599465, - "lon": -4.3333742, - "tags": { - "amenity": "post_box", - "ref": "SA31 268D" - } -}, -{ - "type": "node", - "id": 5547634244, - "lat": 52.9770465, - "lon": -1.8932451, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5547857474, - "lat": 52.0463067, - "lon": -2.1730974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL20 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5547872674, - "lat": 52.0234911, - "lon": -2.1580089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "GL20 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5548439371, - "lat": 51.0898510, - "lon": -2.5229153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5548603696, - "lat": 51.1116425, - "lon": -2.4554363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA10 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5548603697, - "lat": 51.1005408, - "lon": -2.4684504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5548603699, - "lat": 51.0920326, - "lon": -2.4911472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5548821555, - "lat": 51.5359288, - "lon": -3.0734387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5548987337, - "lat": 52.5023245, - "lon": 1.2985673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549010692, - "lat": 50.8183923, - "lon": -1.1639674, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO13 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549010693, - "lat": 50.8168646, - "lon": -1.1657886, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO13 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549042823, - "lat": 52.4338571, - "lon": 1.1902327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549118129, - "lat": 52.4881311, - "lon": 1.2293594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR15 1553", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549118189, - "lat": 52.4888595, - "lon": 1.2338441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "NR15 1550" - } -}, -{ - "type": "node", - "id": 5549118334, - "lat": 52.4860732, - "lon": 1.2217473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1559", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549118372, - "lat": 52.4851539, - "lon": 1.2280218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1549", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549118377, - "lat": 52.4871071, - "lon": 1.2243355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5549143903, - "lat": 52.4837799, - "lon": 1.2333425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR15 1548", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5549153477, - "lat": 50.8247986, - "lon": -1.1651422, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO13 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5549501505, - "lat": 54.8635866, - "lon": -1.4371130, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5550562534, - "lat": 50.1375274, - "lon": -5.4076255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5550633688, - "lat": 50.1282270, - "lon": -5.3905736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR20 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5550782223, - "lat": 53.4789870, - "lon": -1.5656112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "S36 930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5550913412, - "lat": 53.1147943, - "lon": -4.2683440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5551497430, - "lat": 56.1305783, - "lon": -3.9522119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5552060558, - "lat": 50.8073856, - "lon": -1.2029278, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO13 244D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5552080852, - "lat": 50.8018072, - "lon": -1.1982232, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO13 247D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5552216962, - "lat": 53.5656926, - "lon": -2.4338182, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5552634914, - "lat": 51.5355580, - "lon": -3.1316078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5552836019, - "lat": 50.9276593, - "lon": -2.8457768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5554161643, - "lat": 53.5765072, - "lon": -2.4913358, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5554161803, - "lat": 53.5802252, - "lon": -2.5036912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5554162975, - "lat": 53.5734153, - "lon": -2.4992145, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5554191481, - "lat": 53.5668503, - "lon": -2.4820528, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5554192413, - "lat": 53.5705716, - "lon": -2.4771399, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5554194850, - "lat": 53.5724782, - "lon": -2.4723100, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5556308199, - "lat": 53.5658711, - "lon": -2.3814629, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5556313421, - "lat": 53.5643284, - "lon": -2.3749535, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5556315010, - "lat": 53.5614702, - "lon": -2.3819739, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5556315266, - "lat": 53.5594844, - "lon": -2.3741445, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5556747806, - "lat": 52.3814156, - "lon": -1.7515158, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 5557552089, - "lat": 50.7904058, - "lon": -1.1562279, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO12 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5557662184, - "lat": 50.7881898, - "lon": -1.1383322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO12 26D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5557865609, - "lat": 58.3572796, - "lon": -3.8973690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "old_ref": "TH057", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5558701568, - "lat": 53.5565920, - "lon": -2.3746773, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558708331, - "lat": 53.5579328, - "lon": -2.3682497, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558708402, - "lat": 53.5641895, - "lon": -2.3710994, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558708915, - "lat": 53.5605701, - "lon": -2.3597946, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558708916, - "lat": 53.5615433, - "lon": -2.3643586, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558714476, - "lat": 53.5674565, - "lon": -2.3726294, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558723331, - "lat": 53.5720706, - "lon": -2.3670077, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558724409, - "lat": 53.5697544, - "lon": -2.3601269, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5558741316, - "lat": 52.4208629, - "lon": 1.2498312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP21 7064", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5558741521, - "lat": 52.4115363, - "lon": 1.2823854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7056", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5560608198, - "lat": 58.5608436, - "lon": -3.9315417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 13:00", - "description": "This postbox has the latest collection in this area", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW14 59", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5560626102, - "lat": 58.4464450, - "lon": -3.8929300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "note": "reference not visible", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5560626109, - "lat": 58.4937674, - "lon": -3.8973758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "old_ref": "TH051", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5561547852, - "lat": 53.3789639, - "lon": -1.4428088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "1", - "post_box:type": "pillar", - "postal_code": "S1", - "ref": "S2 515D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5562647576, - "lat": 55.9921711, - "lon": -3.9293748, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5562647586, - "lat": 55.9895864, - "lon": -4.0055267, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 5562829959, - "lat": 55.9431052, - "lon": -4.0523127, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5562829960, - "lat": 55.9438265, - "lon": -4.0461720, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5563488732, - "lat": 53.4840746, - "lon": -2.2166785, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5564043376, - "lat": 53.5571739, - "lon": -2.4395921, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5564043377, - "lat": 53.5592919, - "lon": -2.4204775, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5564043379, - "lat": 53.5584172, - "lon": -2.4126356, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5564852666, - "lat": 55.9385517, - "lon": -4.1172934, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5564852695, - "lat": 55.9345281, - "lon": -4.1219768, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5564852697, - "lat": 55.9328060, - "lon": -4.1487490, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5565159941, - "lat": 54.9692594, - "lon": -2.3303545, - "tags": { - "amenity": "post_box", - "ref": "NE47 350" - } -}, -{ - "type": "node", - "id": 5565159946, - "lat": 54.9686974, - "lon": -2.3241607, - "tags": { - "amenity": "post_box", - "ref": "NE47 149" - } -}, -{ - "type": "node", - "id": 5565380058, - "lat": 52.4837032, - "lon": 1.0856240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1614", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5565946328, - "lat": 53.4783422, - "lon": -1.3835519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5566133792, - "lat": 51.6011030, - "lon": -0.2761243, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566148697, - "lat": 51.5979866, - "lon": -0.2118545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5566178352, - "lat": 53.5726470, - "lon": -2.4274029, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566184064, - "lat": 51.5824639, - "lon": -0.2309399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 05:15, Sa 12:00", - "colour": "red", - "manufacturer:wikidata": "Q125385728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW4 46" - } -}, -{ - "type": "node", - "id": 5566187401, - "lat": 53.5632167, - "lon": -2.4282319, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566191422, - "lat": 53.5649779, - "lon": -2.4284872, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5566191427, - "lat": 53.5677939, - "lon": -2.4288666, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566194574, - "lat": 53.5698668, - "lon": -2.4308421, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566207928, - "lat": 50.7996509, - "lon": 0.0633618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN9 597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5566295470, - "lat": 53.5820011, - "lon": -2.4383671, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566297505, - "lat": 53.5855367, - "lon": -2.4376745, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5566303888, - "lat": 53.5832781, - "lon": -2.4334612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5566308074, - "lat": 53.5844410, - "lon": -2.4294314, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5567349786, - "lat": 53.7188725, - "lon": -0.5037332, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5568189004, - "lat": 54.3355351, - "lon": -1.4196181, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 5569039152, - "lat": 53.5668203, - "lon": -2.4182892, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5569299189, - "lat": 52.3227700, - "lon": -2.0074837, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B60 283" - } -}, -{ - "type": "node", - "id": 5569386203, - "lat": 51.9798384, - "lon": -3.8090550, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5569735272, - "lat": 52.6551200, - "lon": -1.1183591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE4 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5569910654, - "lat": 57.5209453, - "lon": -4.0111142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 59", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5570379962, - "lat": 53.4336127, - "lon": -1.3929831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S61 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5571100516, - "lat": 50.8696681, - "lon": 0.3380868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:type": "lamp", - "ref": "BN27 968", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572015443, - "lat": 50.7686362, - "lon": 0.1164508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN25 1061", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5572015444, - "lat": 50.7667159, - "lon": 0.1111990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1078D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572055032, - "lat": 50.7805313, - "lon": 0.1273969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN25 1074", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572055034, - "lat": 50.7766763, - "lon": 0.1282820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1073", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572055035, - "lat": 50.7758970, - "lon": 0.1258117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1071D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5572055036, - "lat": 50.7745426, - "lon": 0.1311171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1070D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5572055037, - "lat": 50.7713859, - "lon": 0.1295614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1064", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572055038, - "lat": 50.7686566, - "lon": 0.1288614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1063", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572055039, - "lat": 50.7683563, - "lon": 0.1228398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1062D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5572345968, - "lat": 56.0099323, - "lon": -3.7852504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:14; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5572345969, - "lat": 56.0059544, - "lon": -3.7845135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5572895301, - "lat": 53.3752760, - "lon": -1.4291819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S2 672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5574481908, - "lat": 54.3789218, - "lon": -3.0017184, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA22 155" - } -}, -{ - "type": "node", - "id": 5574788783, - "lat": 52.6248096, - "lon": 1.0713677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 915", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5574788790, - "lat": 52.6754485, - "lon": 1.0655480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5574804947, - "lat": 52.7022012, - "lon": 1.0576003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 958", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5574804948, - "lat": 52.7137441, - "lon": 0.9883766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2042", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5575135951, - "lat": 53.2141602, - "lon": -1.8501049, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5575504926, - "lat": 51.3856184, - "lon": -0.2899757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5575701012, - "lat": 53.5613656, - "lon": -2.4411442, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5575900102, - "lat": 51.5164075, - "lon": 0.1000200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5575946369, - "lat": 52.5572553, - "lon": -0.3077331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE2 328D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5577365898, - "lat": 51.2851971, - "lon": -1.6442370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5577365899, - "lat": 51.2852617, - "lon": -1.6519672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5577365914, - "lat": 51.3055365, - "lon": -1.6517714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5577365918, - "lat": 51.3015002, - "lon": -1.6583267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5577435166, - "lat": 51.3813001, - "lon": -1.5997204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5578289879, - "lat": 51.6446012, - "lon": -1.0036323, - "tags": { - "amenity": "post_box", - "note": "collection plate missing 30/05/23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5579179966, - "lat": 53.3155712, - "lon": -1.2602109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S26 193D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5579253227, - "lat": 50.8353884, - "lon": -0.4204589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1755D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5579254232, - "lat": 50.8400523, - "lon": -0.4183101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1821D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579279538, - "lat": 50.8377083, - "lon": -0.4150375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1756", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579292421, - "lat": 50.8382103, - "lon": -0.4037410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1757D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5579293435, - "lat": 50.8379748, - "lon": -0.3990286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1824D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579297139, - "lat": 50.8402843, - "lon": -0.3993787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1765D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5579305755, - "lat": 50.8350895, - "lon": -0.3988830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1760", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579319031, - "lat": 50.8315055, - "lon": -0.4059511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1752D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579319235, - "lat": 50.8304232, - "lon": -0.4119072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1751D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5579322003, - "lat": 50.8267223, - "lon": -0.4117835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN13 1749D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579323334, - "lat": 51.5880880, - "lon": -1.5786383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN7 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579323339, - "lat": 50.3453765, - "lon": -4.6182892, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL23 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579323340, - "lat": 50.3404330, - "lon": -4.6265852, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL23 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579323341, - "lat": 50.3336787, - "lon": -4.7593462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579331942, - "lat": 50.8208520, - "lon": -0.4137503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1642D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579386883, - "lat": 52.4945870, - "lon": -1.7461621, - "tags": { - "amenity": "post_box", - "fixme": "Suspect this is B37 977?" - } -}, -{ - "type": "node", - "id": 5579403007, - "lat": 51.3865094, - "lon": -1.6467328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5579647980, - "lat": 50.7209283, - "lon": -3.9564987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 171D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5579650433, - "lat": 50.7324561, - "lon": -3.9666817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 186D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5580386452, - "lat": 51.6191855, - "lon": -0.3134690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 843" - } -}, -{ - "type": "node", - "id": 5580406483, - "lat": 51.6378352, - "lon": -0.3508589, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5580523424, - "lat": 53.1979030, - "lon": -2.5075476, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CW7 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5580562997, - "lat": 51.5161864, - "lon": -0.0160725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5581076265, - "lat": 52.5577683, - "lon": -0.2405290, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5581141795, - "lat": 51.4623104, - "lon": -0.2937819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5581591364, - "lat": 51.0721140, - "lon": -3.1980387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:00", - "colour": "red", - "direction": "WSW", - "drive_through": "no", - "name": "Eastcombe", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3HU", - "ref": "TA4 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5582058476, - "lat": 52.7626367, - "lon": 1.1119659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "NR10 1025", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5583912085, - "lat": 50.8823491, - "lon": 0.0186538, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BN7 469D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5583928810, - "lat": 50.9009565, - "lon": -0.2022131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN45 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5583928815, - "lat": 50.9197959, - "lon": -0.1958710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN6 422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5583933222, - "lat": 50.9328874, - "lon": -0.1764719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5583933223, - "lat": 50.9296984, - "lon": -0.1686680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BN6 406D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5585867689, - "lat": 51.5312128, - "lon": -3.2245879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CF14 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5585867690, - "lat": 51.5325201, - "lon": -3.2185194, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CF14 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5585867691, - "lat": 51.5282819, - "lon": -3.2188574, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CF14 333", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5586180371, - "lat": 53.0584601, - "lon": -0.9716222, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5587894878, - "lat": 53.3826677, - "lon": -3.0237938, - "tags": { - "amenity": "post_box", - "description": "King George V type A post box CH42 85 at Holt Hill Post Office, Birkenhead,", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Holt Hill Post Office, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 5587915340, - "lat": 53.3866610, - "lon": -3.0221754, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type B post box CH41 75 by Andrew Handyside and Company at the entrance to Argyle Industrial Estate, Argyle Street South, Tranmere, Birkenhead.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH41 75", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Argyle Industrial Estate, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 5587967459, - "lat": 53.3768360, - "lon": -3.0266256, - "tags": { - "amenity": "post_box", - "description": "George V Type A post box CH42 74 by McDowell Stevens on Greenway Road at junction of Hawthorne Road, with pouch box.", - "manufacturer": "McDowell Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Greenway Road, Tranmere.jpg" - } -}, -{ - "type": "node", - "id": 5589455163, - "lat": 55.9724770, - "lon": -4.0578045, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5590913628, - "lat": 51.2510810, - "lon": -0.1168531, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5591201166, - "lat": 51.5721724, - "lon": -3.1655501, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CF83 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5591206779, - "lat": 54.4439333, - "lon": -0.9763095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO21 41", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5591995877, - "lat": 52.4793661, - "lon": -1.9602925, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B17 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5592540673, - "lat": 51.7405731, - "lon": -0.9361748, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5592780650, - "lat": 53.4242966, - "lon": -2.1695786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5592785855, - "lat": 53.4265318, - "lon": -2.1721974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK4 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5592789170, - "lat": 53.4293339, - "lon": -2.1779848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 83" - } -}, -{ - "type": "node", - "id": 5594245671, - "lat": 54.1240827, - "lon": -3.2021073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA13 100" - } -}, -{ - "type": "node", - "id": 5594965323, - "lat": 50.3669136, - "lon": -4.1456680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL1 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5595065071, - "lat": 52.5205399, - "lon": 0.2493405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5595314619, - "lat": 53.8156272, - "lon": -1.7854307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 198", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5599304308, - "lat": 53.0761395, - "lon": -2.4400317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW2 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5599794689, - "lat": 53.3971089, - "lon": -2.3190139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Two post boxes positioned next to each other", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA15 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5599806679, - "lat": 51.5305057, - "lon": -0.0560863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5600200374, - "lat": 53.6857191, - "lon": -2.6066083, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-23", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 68", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5600586450, - "lat": 52.2389072, - "lon": -1.7980485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:05; Sa 07:10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5600995311, - "lat": 53.2444479, - "lon": -2.4409873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "CW9 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5602208497, - "lat": 51.2939236, - "lon": -2.4260571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5602825921, - "lat": 54.5936148, - "lon": -2.1298529, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5602825922, - "lat": 54.6005243, - "lon": -2.1124363, - "tags": { - "amenity": "post_box", - "ref": "DL12 174" - } -}, -{ - "type": "node", - "id": 5602978951, - "lat": 54.7370887, - "lon": -2.1499490, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519585", - "ref": "DL13 44" - } -}, -{ - "type": "node", - "id": 5602978984, - "lat": 54.7427056, - "lon": -2.2084125, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519605", - "ref": "DL13 135" - } -}, -{ - "type": "node", - "id": 5603137543, - "lat": 50.8119212, - "lon": -0.8462986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO18 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5605060735, - "lat": 54.8731989, - "lon": -2.3410191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE47 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5605060745, - "lat": 54.9193513, - "lon": -2.3482220, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5605437001, - "lat": 52.6085517, - "lon": -0.9629517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00; Su off", - "mapillary": "790009085240900", - "ref": "LE7 686" - } -}, -{ - "type": "node", - "id": 5605629983, - "lat": 53.8273319, - "lon": -0.4407120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HU17 268D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5605768521, - "lat": 51.0371552, - "lon": -2.8294785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TA10 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5606990323, - "lat": 51.4426151, - "lon": -1.0178236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "ref": "RG30 494D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5606990332, - "lat": 51.4423413, - "lon": -1.0107279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "fixme": "Unclear if priority, sticker missing?", - "note": "Priority postbox", - "ref": "RG30 477" - } -}, -{ - "type": "node", - "id": 5607296226, - "lat": 54.8675514, - "lon": -4.4437308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "888310261783882", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG8 19", - "survey:date": "2021-07-11" - } -}, -{ - "type": "node", - "id": 5607799154, - "lat": 51.6526331, - "lon": -3.0208678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "indoor": "yes", - "note": "inside W H Smith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NP44 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5607799155, - "lat": 51.6479922, - "lon": -3.0245449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NP44 299D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5607799156, - "lat": 51.6456954, - "lon": -3.0193919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP44 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5610138688, - "lat": 51.6540524, - "lon": -3.0226475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NP44 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5610138691, - "lat": 51.6552254, - "lon": -3.0214167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP44 825", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5610138693, - "lat": 51.6531880, - "lon": -3.0205887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP44 923", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5610181442, - "lat": 54.9909442, - "lon": -2.0483659, - "tags": { - "amenity": "post_box", - "ref": "NE46 4" - } -}, -{ - "type": "node", - "id": 5610181444, - "lat": 55.0035723, - "lon": -2.0210194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5610225081, - "lat": 55.0382168, - "lon": -1.8589841, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5610225084, - "lat": 55.1358159, - "lon": -1.8913418, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-19", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE61 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5610225094, - "lat": 55.2997056, - "lon": -2.0548722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "929125770994876", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NE65 211", - "survey:date": "2020-08-16" - } -}, -{ - "type": "node", - "id": 5610929962, - "lat": 53.5480740, - "lon": -2.4002688, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5611423961, - "lat": 51.6138963, - "lon": 0.5242865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5611424828, - "lat": 51.6137231, - "lon": 0.5310242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5611425241, - "lat": 51.6143760, - "lon": 0.5347632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5612353745, - "lat": 51.2865499, - "lon": -2.4657104, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5613757927, - "lat": 51.5606216, - "lon": 0.7036487, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5614178233, - "lat": 52.2240576, - "lon": -1.8774851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5614178234, - "lat": 52.2287924, - "lon": -1.8804660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5614220768, - "lat": 52.2329277, - "lon": -1.8244684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5614921461, - "lat": 52.0112200, - "lon": -3.7747130, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:type": "lamp", - "ref": "SA20 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5614946035, - "lat": 52.0685675, - "lon": -3.9868113, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5614985399, - "lat": 51.6051991, - "lon": -1.8286034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "764038507595844", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN25 101D", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 5614987045, - "lat": 52.2175941, - "lon": -3.9348704, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY25 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5616859190, - "lat": 52.8715478, - "lon": -3.1029376, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5617299048, - "lat": 51.1110167, - "lon": -0.2164081, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5617834875, - "lat": 51.5837533, - "lon": -3.0149681, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "mapillary": "461864094915994", - "note": "This post-box was set fire to by Lady Rhondda, Suffragette, in 1913", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GR", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 5618032686, - "lat": 54.4856324, - "lon": -0.9783292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO21 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5618083232, - "lat": 51.4659786, - "lon": -0.2933310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW9 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5618288678, - "lat": 56.1161567, - "lon": -3.9096643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "FK7 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5618498270, - "lat": 52.1792971, - "lon": -4.3482390, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5619414191, - "lat": 53.5376608, - "lon": -2.3816560, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5622226997, - "lat": 51.5321731, - "lon": -3.1117031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5623088632, - "lat": 57.6062016, - "lon": -3.6265820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 75D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5624623705, - "lat": 51.5849822, - "lon": 0.1633862, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5624961671, - "lat": 53.4166526, - "lon": -2.1896465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5624974996, - "lat": 53.4118570, - "lon": -2.1846030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5624981429, - "lat": 53.4115493, - "lon": -2.1757807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 13:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5624985787, - "lat": 53.4115593, - "lon": -2.1757869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SK4 4000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5624990200, - "lat": 53.4159391, - "lon": -2.1771215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 133", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5625271722, - "lat": 50.8231140, - "lon": 0.3842707, - "tags": { - "addr:city": "Pevensey", - "addr:street": "Coast Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN24 991", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Coast Road BN24991.jpg" - } -}, -{ - "type": "node", - "id": 5625271723, - "lat": 50.8262451, - "lon": 0.3944976, - "tags": { - "addr:city": "Pevensey", - "addr:street": "Normans Bay Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN24 981", - "ref:GB:uprn": "10015271107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:PB Normans Bay Road BN24981.jpg" - } -}, -{ - "type": "node", - "id": 5625550734, - "lat": 51.9385206, - "lon": -1.5542503, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX7 862D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5626410327, - "lat": 51.8261339, - "lon": -0.3348433, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 290D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5626463094, - "lat": 51.4107827, - "lon": -0.6740543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SL5 46;SL5 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5626609063, - "lat": 51.2550174, - "lon": -1.6068301, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5627192995, - "lat": 52.3515168, - "lon": 0.4585297, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2169", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5627709010, - "lat": 53.9628797, - "lon": -0.3218706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO25 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5628207696, - "lat": 51.0604016, - "lon": 0.4257806, - "tags": { - "amenity": "post_box", - "note": "Its a new box but is sealed off?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 316", - "ref:GB:uprn": "10015446763", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5628207697, - "lat": 51.0528925, - "lon": 0.4547701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5628207698, - "lat": 51.0550865, - "lon": 0.4419526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN5 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5628207699, - "lat": 51.0499735, - "lon": 0.4228190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN5 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5628207700, - "lat": 51.0335160, - "lon": 0.4002986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN5 173", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5628825274, - "lat": 53.4815622, - "lon": -2.2414910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "M2 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5628937843, - "lat": 52.4101264, - "lon": -1.2981971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5628937858, - "lat": 52.4066516, - "lon": -1.3065341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5628937864, - "lat": 52.4118067, - "lon": -1.3182595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5628987319, - "lat": 52.4211602, - "lon": -1.2492666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5628987928, - "lat": 52.4141906, - "lon": -1.2444205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5629566468, - "lat": 51.2296766, - "lon": -3.8374816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX35 333", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5629586135, - "lat": 51.2116332, - "lon": -3.8626853, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX35 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5629884926, - "lat": 53.7933169, - "lon": -1.7595774, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5630303099, - "lat": 57.1518825, - "lon": -2.1689141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB16 191D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5630303106, - "lat": 57.1562108, - "lon": -2.1616036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB16 200", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5630469602, - "lat": 51.4586621, - "lon": -0.9980286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 2130" - } -}, -{ - "type": "node", - "id": 5630469603, - "lat": 51.4586306, - "lon": -0.9980337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "note": "nit a duplicate, there are 2 separate refs", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 213" - } -}, -{ - "type": "node", - "id": 5630516857, - "lat": 51.4499641, - "lon": -1.0165825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "141337548227506", - "post_box:type": "pillar", - "ref": "RG30 569D", - "survey:date": "2021-10-23" - } -}, -{ - "type": "node", - "id": 5630530836, - "lat": 51.4491620, - "lon": -1.0177054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG30 121" - } -}, -{ - "type": "node", - "id": 5630652676, - "lat": 53.3632084, - "lon": -1.5084909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "S11 1505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5630999965, - "lat": 52.8135015, - "lon": -4.7035652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5631167651, - "lat": 55.8911027, - "lon": -3.8863378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML6 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5631167666, - "lat": 55.8886997, - "lon": -3.8847721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML6 43D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5631196227, - "lat": 55.9176618, - "lon": -3.9125410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML6 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5631196229, - "lat": 55.9095132, - "lon": -3.8858590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML6 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5631242833, - "lat": 53.3609566, - "lon": -1.5080428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "S11 389", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5631861023, - "lat": 53.5952905, - "lon": -2.5872937, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5632800890, - "lat": 51.3000677, - "lon": -0.1229326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 464", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 5632810104, - "lat": 51.3260056, - "lon": -0.1309791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 94", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5632814148, - "lat": 51.3196234, - "lon": -0.1314399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 596", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5632819834, - "lat": 51.3175580, - "lon": -0.1279434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5632822898, - "lat": 51.3151011, - "lon": -0.1245556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 398", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5632826989, - "lat": 51.3227769, - "lon": -0.1353993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 418", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5632850101, - "lat": 52.1811511, - "lon": -1.9019239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 74", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5632850102, - "lat": 52.1760776, - "lon": -1.9027438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B49 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5632852154, - "lat": 52.1892086, - "lon": -1.8710097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5632852155, - "lat": 52.1890479, - "lon": -1.8723928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B49 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5632996606, - "lat": 51.3246765, - "lon": -0.1384761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR5 267", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5633016071, - "lat": 51.3166350, - "lon": -0.1358744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CR5 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5633584977, - "lat": 56.1667246, - "lon": -3.4586488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY13 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5633584985, - "lat": 56.2075340, - "lon": -3.4593791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY13 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5633706966, - "lat": 52.4579845, - "lon": 1.0448746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR16 1658", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5633813339, - "lat": 51.1995931, - "lon": -3.4706631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 5633813341, - "lat": 51.2024519, - "lon": -3.4770253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 1D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5633813342, - "lat": 51.2053038, - "lon": -3.4812391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5633867786, - "lat": 51.2167717, - "lon": -3.9276512, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX31 51", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5634113741, - "lat": 52.0628078, - "lon": -1.3641463, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5634113744, - "lat": 52.0594766, - "lon": -1.3642593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3872530009509860", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2020-09-07" - } -}, -{ - "type": "node", - "id": 5635244786, - "lat": 53.4162411, - "lon": -2.1529072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5635257957, - "lat": 53.5274395, - "lon": -2.2545224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M25 590D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5635283831, - "lat": 53.5302432, - "lon": -2.2667179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M25 433D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5635741812, - "lat": 52.2695865, - "lon": -1.8930928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B80 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5636006553, - "lat": 52.5513283, - "lon": -0.2135792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5636032193, - "lat": 50.9901961, - "lon": -2.6264976, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5636173859, - "lat": 50.7417401, - "lon": -2.2764082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 146", - "ref:GB:uprn": "10015378765", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5636188712, - "lat": 51.1663487, - "lon": -3.9775685, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX31 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5636188713, - "lat": 51.1706407, - "lon": -3.9783222, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX31 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5636189579, - "lat": 51.1478053, - "lon": -3.9134814, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX31 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5636207262, - "lat": 51.0967948, - "lon": -3.8784206, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "EX32 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5636230598, - "lat": 51.0859347, - "lon": -3.7241037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX36 144", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5636233132, - "lat": 51.0404292, - "lon": -3.5504361, - "tags": { - "amenity": "post_box", - "note": "No visible reference", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5638262500, - "lat": 51.3136220, - "lon": -0.1316004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 445", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5638267000, - "lat": 51.3078100, - "lon": -0.1283022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 440", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5638267368, - "lat": 51.3107421, - "lon": -0.1281654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 343", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5638273731, - "lat": 51.3112101, - "lon": -0.1338882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 424", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5638416180, - "lat": 52.3400100, - "lon": 1.2418247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7092", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5638437800, - "lat": 53.3786784, - "lon": -1.9491746, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5638456809, - "lat": 53.1720139, - "lon": -4.1521347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL57 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5640082818, - "lat": 50.8021688, - "lon": -1.8906482, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5640438833, - "lat": 53.3231299, - "lon": -1.8664533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SK17 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5640438852, - "lat": 53.3929677, - "lon": -2.0259019, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5640438853, - "lat": 53.3940356, - "lon": -2.0428956, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5640438854, - "lat": 53.4097509, - "lon": -2.0531105, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5640439392, - "lat": 53.6521674, - "lon": -2.6318049, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-22", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5640482073, - "lat": 53.8710265, - "lon": -2.2171821, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5640563062, - "lat": 55.4231282, - "lon": -2.8059276, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5640563063, - "lat": 55.4273844, - "lon": -2.7888717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5640730878, - "lat": 53.4188809, - "lon": -2.1008778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK6 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5641948286, - "lat": 51.6841342, - "lon": -1.2655829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OX14 938", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5641997746, - "lat": 51.3047739, - "lon": -0.1446762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CR5 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5641998280, - "lat": 51.3035147, - "lon": -0.1433889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR5 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5641999010, - "lat": 51.3113871, - "lon": -0.1399242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642001728, - "lat": 51.3092376, - "lon": -0.1433145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 336", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642549183, - "lat": 51.3532934, - "lon": -0.1007376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642565662, - "lat": 51.3552869, - "lon": -0.0976244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642567859, - "lat": 51.3566487, - "lon": -0.0978336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642572952, - "lat": 51.3585164, - "lon": -0.0949067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 92", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642575333, - "lat": 51.3596501, - "lon": -0.0975601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642586147, - "lat": 51.3622142, - "lon": -0.0940477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5642589983, - "lat": 51.3616476, - "lon": -0.0900743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CR2 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5643022674, - "lat": 52.6726817, - "lon": -0.7296952, - "tags": { - "addr:street": "Station Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE15 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5643604848, - "lat": 51.5084038, - "lon": -2.5384241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "BS34 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5644130782, - "lat": 51.3226015, - "lon": -0.1282936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644144910, - "lat": 51.3032469, - "lon": -0.1223085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 444", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644175203, - "lat": 51.3004280, - "lon": -0.1171956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644194943, - "lat": 51.3043720, - "lon": -0.1077810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644211115, - "lat": 51.3038693, - "lon": -0.1162084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 453", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644231466, - "lat": 53.6987073, - "lon": -2.5447471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 86", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644238989, - "lat": 53.6659749, - "lon": -2.6092744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 42D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5644856967, - "lat": 54.9542532, - "lon": -4.4463368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG8 14", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5645022243, - "lat": 53.0016848, - "lon": -3.0622095, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5645023446, - "lat": 53.0035308, - "lon": -3.0618742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5645031166, - "lat": 52.9996831, - "lon": -3.0567346, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5645035789, - "lat": 52.9973114, - "lon": -3.0614826, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5645043167, - "lat": 52.9997209, - "lon": -3.0729407, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5645048695, - "lat": 53.0024537, - "lon": -3.0678418, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5645654728, - "lat": 52.9737246, - "lon": -0.8650650, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5645839412, - "lat": 53.4121093, - "lon": -1.5682585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "wall", - "ref": "S6 342", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5645978453, - "lat": 51.2938216, - "lon": -0.1440504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR5 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5645983521, - "lat": 51.2910941, - "lon": -0.1436575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "CR5 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5645995128, - "lat": 51.2948441, - "lon": -0.1575963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR5 489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5645997149, - "lat": 51.2899537, - "lon": -0.1566681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CR5 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5646001705, - "lat": 51.2887687, - "lon": -0.1693632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45; Su off", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CR5 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5646017942, - "lat": 51.3211962, - "lon": -0.1379332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CR5 237;CR5 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5646019701, - "lat": 51.3261419, - "lon": -0.1379332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5646022192, - "lat": 51.3283107, - "lon": -0.1343659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CR5 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5647082711, - "lat": 51.1743794, - "lon": -0.0173792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH7 109", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5647495273, - "lat": 51.3329110, - "lon": -0.1233712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 189", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5647520077, - "lat": 51.3296296, - "lon": -0.1206159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR8 593", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey" - } -}, -{ - "type": "node", - "id": 5647913684, - "lat": 53.6559828, - "lon": -2.6189254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "288049306190118", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR6 16", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5647983396, - "lat": 51.4151213, - "lon": 0.1290650, - "tags": { - "amenity": "post_box", - "check_date": "2023-07-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 103D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5650181164, - "lat": 51.4509163, - "lon": -0.0855894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650301744, - "lat": 51.1090567, - "lon": -1.0685384, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU34 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5650301745, - "lat": 51.1162443, - "lon": -1.0783848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2146894188812019", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-12" - } -}, -{ - "type": "node", - "id": 5650301746, - "lat": 51.1209367, - "lon": -1.0623774, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU34 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5650301747, - "lat": 51.1087048, - "lon": -1.0435604, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU34 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650301748, - "lat": 51.1140520, - "lon": -1.0363814, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5650363908, - "lat": 53.6595994, - "lon": -2.6743220, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650400821, - "lat": 51.3414974, - "lon": -0.1222215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 166", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650404731, - "lat": 50.8452484, - "lon": -0.9103330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO10 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5650404879, - "lat": 51.3441882, - "lon": -0.1263547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 179", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650412634, - "lat": 51.3458144, - "lon": -0.1289952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 288", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650418356, - "lat": 51.3428089, - "lon": -0.1314637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650421020, - "lat": 51.3413406, - "lon": -0.1279177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 199", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650427235, - "lat": 51.3417274, - "lon": -0.1317508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650427295, - "lat": 51.3418761, - "lon": -0.1402214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 153", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650429621, - "lat": 51.3389455, - "lon": -0.1438617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 239", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650433554, - "lat": 51.3336727, - "lon": -0.1380142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 170", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5650437754, - "lat": 51.3296918, - "lon": -0.1355207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 302", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651550750, - "lat": 52.4237361, - "lon": -0.5200019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN14 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651576545, - "lat": 52.4011763, - "lon": -0.5499384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651851611, - "lat": 51.4254084, - "lon": -0.9165896, - "tags": { - "amenity": "post_box", - "name": "Meldreth Way Postbox", - "ref": "RG6 614" - } -}, -{ - "type": "node", - "id": 5651973862, - "lat": 51.3228560, - "lon": -0.1447916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 432D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651980341, - "lat": 51.3236002, - "lon": -0.1524294, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 502D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651980960, - "lat": 53.6484290, - "lon": -2.6250873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "note": "Inside Morrisons foyer", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 75", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651982564, - "lat": 51.3283867, - "lon": -0.1499834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR5 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651988908, - "lat": 51.3258372, - "lon": -0.1550364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 421", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651994222, - "lat": 51.3217248, - "lon": -0.1522218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 358D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5651995338, - "lat": 51.3199959, - "lon": -0.1565437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 353D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652008896, - "lat": 51.3143833, - "lon": -0.1569302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 441D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652166626, - "lat": 55.7305706, - "lon": -3.8259874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5652497728, - "lat": 51.3589795, - "lon": -0.0855352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 305D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652500859, - "lat": 51.3519967, - "lon": -0.0851666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 348D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652510115, - "lat": 51.3665545, - "lon": -0.1014875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652531552, - "lat": 51.4917925, - "lon": -0.1611325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 8", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652534320, - "lat": 50.7640060, - "lon": 0.2881186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 739D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652535447, - "lat": 50.7624881, - "lon": 0.2852599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 735", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652545095, - "lat": 51.3944777, - "lon": -0.1143990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5652546654, - "lat": 51.3923099, - "lon": -0.1172212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654145915, - "lat": 51.4457636, - "lon": -0.1580848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654150562, - "lat": 51.4473901, - "lon": -0.1562905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 31", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654167273, - "lat": 51.4490607, - "lon": -0.1478078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654181761, - "lat": 51.4447624, - "lon": -0.1419417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654240139, - "lat": 51.7580064, - "lon": 0.1132801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM18 66", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654257373, - "lat": 51.1034623, - "lon": -0.2220159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "note": "Per photo 25/5/15 this is definitely RH10 not RH11, but the Royal Mail database (and all logic!) would suggest it should be RH11.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 142", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654316837, - "lat": 51.4023408, - "lon": -0.1610632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654583288, - "lat": 51.0849739, - "lon": -1.3891654, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5654584786, - "lat": 53.5915728, - "lon": -2.2995232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BL9 6;BL9 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654593086, - "lat": 51.0766624, - "lon": -1.3800169, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5654617846, - "lat": 51.0735931, - "lon": -1.4843886, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO20 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5654626122, - "lat": 51.1931678, - "lon": -0.1045407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654632019, - "lat": 50.8695643, - "lon": 0.0088544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 433D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654655023, - "lat": 50.8695968, - "lon": 0.0018156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN7 583D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654666271, - "lat": 51.1359633, - "lon": -0.2108945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654672304, - "lat": 51.0830279, - "lon": -1.5166449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "478404440749079", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SO20 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 5654675580, - "lat": 51.0872926, - "lon": -1.5133013, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO20 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5654681971, - "lat": 51.0965308, - "lon": -1.5118020, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO20 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5654685942, - "lat": 51.1051737, - "lon": -1.5054197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "mapillary": "668279181129844", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SO20 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 5654689727, - "lat": 51.1146474, - "lon": -1.5023230, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5654691330, - "lat": 51.3337419, - "lon": -0.1159420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654696515, - "lat": 51.2930202, - "lon": -0.3280779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT22 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5654938947, - "lat": 57.6181178, - "lon": -7.5076792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HS6 37" - } -}, -{ - "type": "node", - "id": 5656237179, - "lat": 51.3794276, - "lon": -0.0819133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5656242742, - "lat": 51.3806497, - "lon": -0.0884311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 103", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5656244236, - "lat": 51.3765793, - "lon": -0.0852490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 140D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5656249254, - "lat": 51.3787580, - "lon": -0.0791453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CR0 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5656858573, - "lat": 53.2749305, - "lon": -1.7736752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "SK17 164D" - } -}, -{ - "type": "node", - "id": 5657071021, - "lat": 53.5877741, - "lon": -2.5302805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BL6 208", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5657134654, - "lat": 53.6353457, - "lon": -2.6613012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 88", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5657390723, - "lat": 53.1996191, - "lon": -3.0102972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH5 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5657390724, - "lat": 53.2000703, - "lon": -2.9974220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH5 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5658213325, - "lat": 51.6538454, - "lon": -0.2016528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BARNET P.O", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5658550323, - "lat": 51.4572571, - "lon": -0.9983259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5659104303, - "lat": 53.6564355, - "lon": -2.6583910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "indoor": "yes", - "note": "Inside Store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 81", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5659255513, - "lat": 53.8375958, - "lon": -1.7986671, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5659255752, - "lat": 53.8336249, - "lon": -1.7877141, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5659297325, - "lat": 51.4691802, - "lon": 0.0159799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE3 26", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5659298372, - "lat": 51.4621549, - "lon": 0.0099182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5659300793, - "lat": 53.6494258, - "lon": -2.6171547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "242514197666004", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 64", - "royal_cypher": "EIIR", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5659323755, - "lat": 53.6480403, - "lon": -2.6138476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 19", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5659455744, - "lat": 51.0657282, - "lon": -0.3571321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5660381022, - "lat": 56.0178706, - "lon": -3.8289512, - "tags": { - "amenity": "post_box", - "ref": "FK5 224" - } -}, -{ - "type": "node", - "id": 5660381023, - "lat": 56.0178742, - "lon": -3.8220128, - "tags": { - "amenity": "post_box", - "ref": "FK5 226" - } -}, -{ - "type": "node", - "id": 5660381026, - "lat": 56.0206818, - "lon": -3.8257084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK5 98D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 5660381027, - "lat": 56.0225255, - "lon": -3.8288243, - "tags": { - "amenity": "post_box", - "ref": "FK5 70" - } -}, -{ - "type": "node", - "id": 5660381028, - "lat": 56.0203200, - "lon": -3.8333928, - "tags": { - "amenity": "post_box", - "ref": "FK5 152" - } -}, -{ - "type": "node", - "id": 5660582876, - "lat": 52.1172845, - "lon": -0.3112114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG19 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-05-26" - } -}, -{ - "type": "node", - "id": 5661018102, - "lat": 55.0459604, - "lon": -1.6436863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "mail:stamped": "yes", - "note": "All Loose Mail", - "post_box:type": "pillar", - "ref": "NE13 1753", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5661184304, - "lat": 51.7328576, - "lon": 0.4734888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times:signed": "no", - "drive_through": "no", - "indoor": "yes", - "level": "1", - "note": "One of three indoor boxes by the Posr Office counter on the first floor of WHSmith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5661184305, - "lat": 51.7328344, - "lon": 0.4734777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times:signed": "no", - "drive_through": "no", - "indoor": "yes", - "level": "1", - "note": "One of three indoor boxes by the Posr Office counter on the first floor of WHSmith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5661184306, - "lat": 51.7328458, - "lon": 0.4734839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times:signed": "no", - "drive_through": "no", - "indoor": "yes", - "level": "1", - "note": "One of three indoor boxes by the Posr Office counter on the first floor of WHSmith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5661186369, - "lat": 55.9800790, - "lon": -4.2211622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "ref": "G66 198", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5661601629, - "lat": 50.3522287, - "lon": -3.5896432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "https://www.mapillary.com/app/?lat=50.35221674484233&lng=-3.589686909693842&z=17&pKey=arEJFTDzRtwmTs5-7XycAQ&focus=photo;survey;streetlevel imagery;aerial imagery", - "survey:date": "2018-05-29" - } -}, -{ - "type": "node", - "id": 5661601630, - "lat": 50.3522643, - "lon": -3.5867605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "306122354307133", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 154D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "https://www.mapillary.com/app/?lat=50.35217739180694&lng=-3.586799763146403&z=17&pKey=GC9CEnqOaixc-jOgkHbbjQ&focus=photo;survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2018-05-29", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 5661625321, - "lat": 55.0459571, - "lon": -1.6436784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "mail:meter": "yes", - "note": "Meter pouches only", - "post_box:type": "pillar", - "ref": "NE13 753", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5661677741, - "lat": 53.2045996, - "lon": 0.1453192, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5662291032, - "lat": 50.3803870, - "lon": -3.6912990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ9 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "https://www.mapillary.com/app/?lat=50.38036128976417&lng=-3.69145813398407&z=17&pKey=oiLsH4gU6lnwOgZ4La7sPw&focus=photo;survey;streetlevel imagery;aerial imagery", - "survey:date": "2021-11-15" - } -}, -{ - "type": "node", - "id": 5662938264, - "lat": 51.7362037, - "lon": 0.4920305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM2 176" - } -}, -{ - "type": "node", - "id": 5663032649, - "lat": 53.6748003, - "lon": -2.6591527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "indoor": "yes", - "note": "Instore Tesco", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5663177928, - "lat": 53.5490060, - "lon": -2.5241919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BL5 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5663320485, - "lat": 53.6811227, - "lon": -2.6626731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 78", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5663774586, - "lat": 53.7922479, - "lon": -2.7059627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR2 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5663876639, - "lat": 53.7967902, - "lon": -2.7143848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR2 448" - } -}, -{ - "type": "node", - "id": 5663908195, - "lat": 51.3262133, - "lon": -0.1207283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5663911117, - "lat": 51.3259569, - "lon": -0.1182026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 439", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5663912405, - "lat": 51.3282040, - "lon": -0.1172150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 200", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5663916699, - "lat": 51.3306898, - "lon": -0.1127591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 446D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5664654410, - "lat": 52.3070845, - "lon": 0.3846077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB7 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5664714996, - "lat": 52.3311723, - "lon": 0.3349518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB7 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5664723830, - "lat": 52.3324159, - "lon": 0.3310545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB7 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5664728714, - "lat": 52.3330105, - "lon": 0.3377538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CB7 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5664739300, - "lat": 52.3520855, - "lon": 0.3227954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB7 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5665784802, - "lat": 51.5075763, - "lon": -3.2281977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF14 349", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5665812898, - "lat": 51.0923160, - "lon": -3.2570111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:00", - "drive_through": "no", - "name": "Dean's Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA4 3QN", - "ref": "TA4 520" - } -}, -{ - "type": "node", - "id": 5665817364, - "lat": 51.0841568, - "lon": -3.2464320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "name": "Lydeard St. Lawrence Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3SB", - "ref": "TA4 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5666889481, - "lat": 52.9246476, - "lon": -1.4913990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Sticker saying collections during delivery rounds from 23 January 2023", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5666889482, - "lat": 52.9245212, - "lon": -1.4870111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Shares pillar with DE1 110", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5666930888, - "lat": 51.3726824, - "lon": -0.0859425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5666960277, - "lat": 52.9151326, - "lon": -1.4661348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 13:15", - "note": "Second Class", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE1 796", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5667121082, - "lat": 52.9245327, - "lon": -1.4870509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Shares pillar with DE1 7", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5667261927, - "lat": 54.0415428, - "lon": -2.7405963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 27" - } -}, -{ - "type": "node", - "id": 5667261958, - "lat": 54.0725636, - "lon": -2.7200872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "LA2 77" - } -}, -{ - "type": "node", - "id": 5667261969, - "lat": 54.0980520, - "lon": -2.6545464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 91" - } -}, -{ - "type": "node", - "id": 5667422138, - "lat": 52.9340552, - "lon": -1.4738803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Reference has a D on the end", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 66D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5667506167, - "lat": 51.4649762, - "lon": -0.2641800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW14 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5667559370, - "lat": 51.3628036, - "lon": -0.1023056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667562375, - "lat": 51.3647111, - "lon": -0.1043387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 346D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667565932, - "lat": 51.3609731, - "lon": -0.1065811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667567823, - "lat": 51.3571594, - "lon": -0.1041832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667567972, - "lat": 51.3552615, - "lon": -0.1033874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667571198, - "lat": 51.3504985, - "lon": -0.1046505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 301D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667574016, - "lat": 51.3497395, - "lon": -0.1077669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667581304, - "lat": 51.3463208, - "lon": -0.1093043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 269D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667583107, - "lat": 51.3441710, - "lon": -0.1091703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 328D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667589171, - "lat": 51.3412889, - "lon": -0.1122229, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5667591093, - "lat": 51.3450058, - "lon": -0.1111192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 404D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5669468416, - "lat": 53.6492697, - "lon": -2.6227020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "4482080111825541", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5669510286, - "lat": 52.9271868, - "lon": -1.4979889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 95" - } -}, -{ - "type": "node", - "id": 5669724451, - "lat": 53.8311810, - "lon": -2.2007744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BB9 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5669784478, - "lat": 51.3847446, - "lon": -0.0863076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 12D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5669790268, - "lat": 51.3837773, - "lon": -0.0772287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 292", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5669801553, - "lat": 51.3805071, - "lon": -0.0726137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CR0 520;CR0 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5669838511, - "lat": 53.6591424, - "lon": -2.6306382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR6 2" - } -}, -{ - "type": "node", - "id": 5669838512, - "lat": 53.6631460, - "lon": -2.6256171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 87" - } -}, -{ - "type": "node", - "id": 5669838513, - "lat": 53.6612388, - "lon": -2.6217252, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 106", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5670388395, - "lat": 51.3503471, - "lon": -0.0894179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 135D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5670391408, - "lat": 51.3453597, - "lon": -0.0918158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 185D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5670392983, - "lat": 51.3483160, - "lon": -0.0945088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5670402731, - "lat": 51.3432102, - "lon": -0.0948077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 224D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5670404685, - "lat": 51.3408326, - "lon": -0.0975428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5670408054, - "lat": 51.3430275, - "lon": -0.0998603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 314D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5671853219, - "lat": 54.0378601, - "lon": -2.8987626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5671853220, - "lat": 54.0170921, - "lon": -2.8938646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 08:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5671853423, - "lat": 54.0205503, - "lon": -2.8836188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA3 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5671853424, - "lat": 53.9968804, - "lon": -2.8759859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5671853425, - "lat": 54.0108283, - "lon": -2.8570823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5671906587, - "lat": 54.0541490, - "lon": -2.8889979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5671906588, - "lat": 54.0561132, - "lon": -2.8925572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LA3 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5671906589, - "lat": 54.0465206, - "lon": -2.8881437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA3 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5671906590, - "lat": 54.0390404, - "lon": -2.8955841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5672286256, - "lat": 56.8250732, - "lon": -5.0865117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5672286257, - "lat": 56.8343077, - "lon": -5.0856688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5672286258, - "lat": 56.8360923, - "lon": -5.0979496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 34D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5672286259, - "lat": 56.8369912, - "lon": -5.1031793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PH33 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5672286260, - "lat": 56.8376920, - "lon": -5.1056177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5672286265, - "lat": 56.8460070, - "lon": -5.0960050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5672618801, - "lat": 51.3578995, - "lon": -0.0784701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 304D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5672675590, - "lat": 51.3612928, - "lon": -0.0835576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 139D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5672683070, - "lat": 51.3625567, - "lon": -0.0846976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR2 75", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5672980570, - "lat": 52.8537465, - "lon": 1.0590662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5673063209, - "lat": 51.4131996, - "lon": -0.7512859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "RG12 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5673488584, - "lat": 51.3556580, - "lon": -0.0998378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5673499286, - "lat": 51.3472091, - "lon": -0.1006563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 365D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5673502220, - "lat": 51.3460470, - "lon": -0.1036097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5673510958, - "lat": 51.3415263, - "lon": -0.1096844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 216", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5673583381, - "lat": 53.2513875, - "lon": -3.1382687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "ref": "CH6 179" - } -}, -{ - "type": "node", - "id": 5673665665, - "lat": 53.6538121, - "lon": -2.6310037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "mapillary": "2204719572998651", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PR7 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5673665666, - "lat": 53.6538085, - "lon": -2.6310556, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-27", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR7 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5673682272, - "lat": 53.6534300, - "lon": -2.6250324, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-24", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5673682273, - "lat": 53.6521562, - "lon": -2.6250404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "904846353392529", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 22" - } -}, -{ - "type": "node", - "id": 5673692276, - "lat": 51.3817504, - "lon": -2.3657043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5674497070, - "lat": 53.6543105, - "lon": -2.6541861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45", - "mapillary": "326908712105801", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR7 136", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5674868532, - "lat": 52.8036979, - "lon": 0.7699254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5676098663, - "lat": 51.4751356, - "lon": -0.2397969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5676212632, - "lat": 53.6561971, - "lon": -2.6246247, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-11-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5676212700, - "lat": 53.6684698, - "lon": -2.6038805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR6 131" - } -}, -{ - "type": "node", - "id": 5676213625, - "lat": 53.6713015, - "lon": -2.6138315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 115", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5677419858, - "lat": 51.6298711, - "lon": -0.0907488, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5678061210, - "lat": 57.2716495, - "lon": -7.3976099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS8 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5678110641, - "lat": 51.4737957, - "lon": -0.2494323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW13 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5678239621, - "lat": 51.3945464, - "lon": -2.8342679, - "tags": { - "amenity": "post_box", - "ref": "BS49 222" - } -}, -{ - "type": "node", - "id": 5678259533, - "lat": 51.3928104, - "lon": -2.8277684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "463479348089489", - "ref": "BS49 1D", - "source:position": "Mapillary 2020-07-18", - "survey:date": "2020-07-18" - } -}, -{ - "type": "node", - "id": 5678507071, - "lat": 50.4444064, - "lon": -4.5596360, - "tags": { - "amenity": "post_box", - "mapillary": "557124328786221", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2021-06-22" - } -}, -{ - "type": "node", - "id": 5678528384, - "lat": 54.0622057, - "lon": -2.8450557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa-Su off", - "note": "For franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LA3 245" - } -}, -{ - "type": "node", - "id": 5678528385, - "lat": 54.0621916, - "lon": -2.8450150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA3 244" - } -}, -{ - "type": "node", - "id": 5678661676, - "lat": 51.3501392, - "lon": -2.9767469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "colour": "red", - "description": "Postbox for pre-franked business mail only.", - "direction": "S", - "drive_through": "no", - "name": "The Boulevard Business Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BS23 1NA", - "ref": "BS23 4000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5679066072, - "lat": 57.1370672, - "lon": -7.3871728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5679083664, - "lat": 57.1303554, - "lon": -7.3853848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5679328070, - "lat": 55.1648656, - "lon": -1.8241492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NE61 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5679328072, - "lat": 55.1359897, - "lon": -1.7600951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "NE61 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5679687963, - "lat": 52.0648757, - "lon": -0.3166308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:type": "wall", - "ref": "SG18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5680221482, - "lat": 52.4499010, - "lon": -3.5396093, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY18 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5680230472, - "lat": 52.5316924, - "lon": -3.6792505, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY19 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5681022452, - "lat": 52.3822753, - "lon": -1.8222325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B90 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5681266013, - "lat": 57.0701225, - "lon": -7.2955101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS8 81", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5681336652, - "lat": 51.2816618, - "lon": -0.1572357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5681593387, - "lat": 53.6576960, - "lon": -2.6857683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PR7 31" - } -}, -{ - "type": "node", - "id": 5682453508, - "lat": 53.2443743, - "lon": -0.5378446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LN1 131D" - } -}, -{ - "type": "node", - "id": 5682453509, - "lat": 53.2421863, - "lon": -0.5464543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN1 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682490034, - "lat": 53.7705926, - "lon": -2.7277531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5682723303, - "lat": 51.3406201, - "lon": -0.1072262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682733739, - "lat": 51.3312491, - "lon": -0.1271349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 370", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682733872, - "lat": 51.3337204, - "lon": -0.1269566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682809537, - "lat": 51.3310100, - "lon": -0.1047849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682809722, - "lat": 51.3339564, - "lon": -0.1334275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 290", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682810932, - "lat": 51.3377888, - "lon": -0.1294704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 221D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682817888, - "lat": 51.3397459, - "lon": -0.1212141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682819432, - "lat": 51.3361388, - "lon": -0.1260505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682828871, - "lat": 51.3357023, - "lon": -0.1213610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682843895, - "lat": 51.3302929, - "lon": -0.1064441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682893319, - "lat": 51.3291940, - "lon": -0.1075926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 125D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682915100, - "lat": 51.3268452, - "lon": -0.1062912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 236", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2019-03-21" - } -}, -{ - "type": "node", - "id": 5682915786, - "lat": 51.3263606, - "lon": -0.1085875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682918517, - "lat": 51.3206276, - "lon": -0.1070063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682919751, - "lat": 51.3231437, - "lon": -0.1079126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR8 534D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682923131, - "lat": 51.3140780, - "lon": -0.1068059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 242D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682937846, - "lat": 51.3159675, - "lon": -0.1157900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 548", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682938587, - "lat": 51.3194558, - "lon": -0.1160538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 427", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5682990946, - "lat": 53.1363943, - "lon": -2.3556953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW11 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5683003834, - "lat": 57.5831883, - "lon": -3.8500857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV12 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5683003835, - "lat": 57.5865923, - "lon": -3.8848391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV12 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5683476841, - "lat": 52.2483804, - "lon": -3.3064771, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5684741959, - "lat": 52.9322980, - "lon": -1.4714908, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE1 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5685208733, - "lat": 52.8988202, - "lon": -1.4596600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE24 232D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5685231434, - "lat": 52.9024790, - "lon": -1.4390294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5685231435, - "lat": 52.9061584, - "lon": -1.4503249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5685452934, - "lat": 52.2370762, - "lon": 0.4242160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB8 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5685452935, - "lat": 52.2415061, - "lon": 0.4192445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB8 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5685999561, - "lat": 51.2901500, - "lon": -0.0927482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686002190, - "lat": 51.2947713, - "lon": -0.0936245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 411D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686012485, - "lat": 51.2976309, - "lon": -0.0914051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 227", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686024824, - "lat": 51.2963588, - "lon": -0.0885093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686027265, - "lat": 51.2922454, - "lon": -0.0866918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686030279, - "lat": 51.2922196, - "lon": -0.0900180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686044607, - "lat": 51.2873311, - "lon": -0.0889069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686051595, - "lat": 51.2850598, - "lon": -0.0955943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5686322961, - "lat": 52.1825452, - "lon": -3.3200437, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5686340175, - "lat": 52.2303562, - "lon": -3.3837919, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD1 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5687431797, - "lat": 53.6682791, - "lon": -2.6255018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PR6 141", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5687431798, - "lat": 53.6683061, - "lon": -2.6255313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR6 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5687461853, - "lat": 53.6536442, - "lon": -2.6375838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "PR7 138", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5687461854, - "lat": 53.6536291, - "lon": -2.6375757, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-28", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR7 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5687875906, - "lat": 52.9240845, - "lon": -1.4388910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 486", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5687875907, - "lat": 52.9204672, - "lon": -1.4364987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE21 258D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5688466514, - "lat": 57.1476224, - "lon": -2.1736032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5689919037, - "lat": 52.6894837, - "lon": -1.1522544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE7 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5691321300, - "lat": 52.9031656, - "lon": -1.5186200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE23 40D" - } -}, -{ - "type": "node", - "id": 5691321301, - "lat": 52.8987834, - "lon": -1.5193206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE23 776" - } -}, -{ - "type": "node", - "id": 5691631906, - "lat": 51.3048288, - "lon": -0.1513739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR5 422D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5691657835, - "lat": 51.3141018, - "lon": -0.1515177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR5 350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5691766737, - "lat": 52.3635361, - "lon": -3.1177273, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD7 221", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5691805542, - "lat": 52.3359059, - "lon": -3.2126060, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5691805552, - "lat": 52.3413175, - "lon": -3.1931940, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5691811650, - "lat": 52.3631660, - "lon": -3.3353135, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5691851123, - "lat": 51.9902472, - "lon": -1.7035776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GL56 166;GL56 1166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5693112135, - "lat": 53.4059427, - "lon": -1.5806045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:00; Sa 11:00", - "post_box:type": "wall", - "ref": "S6 162", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5693129005, - "lat": 53.8698455, - "lon": -1.7157700, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 497D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693729090, - "lat": 51.3366068, - "lon": -0.0884622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 373", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693729667, - "lat": 51.3410092, - "lon": -0.0860750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693729682, - "lat": 51.3417755, - "lon": -0.0836965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 268D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693731837, - "lat": 51.3400304, - "lon": -0.0873315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 325D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693733833, - "lat": 51.3406972, - "lon": -0.0815904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 379D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693737529, - "lat": 51.3455869, - "lon": -0.0649302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 339", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693746421, - "lat": 51.3419535, - "lon": -0.0774808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR2 359", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693746430, - "lat": 51.3414955, - "lon": -0.0730232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 382D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693749130, - "lat": 51.3453142, - "lon": -0.0695588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 368", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693752784, - "lat": 51.3481006, - "lon": -0.0652363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 340D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693754277, - "lat": 51.3527076, - "lon": -0.0672872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 434", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693754962, - "lat": 51.3512521, - "lon": -0.0691474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR2 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693757254, - "lat": 51.3558696, - "lon": -0.0725097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 341D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5693846505, - "lat": 52.0826643, - "lon": -4.6830210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Listed as 586 not 576 on osm.mathmos.net/postboxes but definitely 576 (photo). Info plate on postbox dated 2023-03-08.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 576D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-20" - } -}, -{ - "type": "node", - "id": 5694525046, - "lat": 54.4184594, - "lon": -6.4434466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "location approximate (based on Geograph description \"on Thomas St opposite George St\")", - "geograph:id": "3468573", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT62 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 5694720465, - "lat": 53.2581683, - "lon": -1.3939655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S43 112", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5694941876, - "lat": 51.4712577, - "lon": -0.2497521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5694941877, - "lat": 51.4701932, - "lon": -0.2552669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW13 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5695185328, - "lat": 51.3586979, - "lon": -0.1496860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "drive_through": "no", - "note": "One of four gold 2012 Olympic postboxes in Wallington dedicated to para-athlete David Weir. \"This box has been painted gold by Royal Mail to celebrate David Weir, Gold Medal winner, London 2012 Paralympic Games. Athletics: Track - Men's 5000m, T54\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 106", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5695227251, - "lat": 55.7673535, - "lon": -1.9965213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TD15 44D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5695469881, - "lat": 52.0816916, - "lon": -4.6801157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5696058255, - "lat": 50.5334282, - "lon": -3.5501872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5696058285, - "lat": 50.5378168, - "lon": -3.5506310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 136D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5696302857, - "lat": 51.4678227, - "lon": -0.2582436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW14 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5696578851, - "lat": 52.9224084, - "lon": -1.5207305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE22 569D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5696776265, - "lat": 51.3480010, - "lon": -0.1474900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 75", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5696939757, - "lat": 53.8043479, - "lon": -1.9281138, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BD22 82D", - "royal_cypher": "EIIR", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 5697093514, - "lat": 53.2337425, - "lon": -2.5992194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CW8 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5698015546, - "lat": 53.8829636, - "lon": -1.3568111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS23 778" - } -}, -{ - "type": "node", - "id": 5700411139, - "lat": 52.3129784, - "lon": -0.5880207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 135" - } -}, -{ - "type": "node", - "id": 5700411140, - "lat": 52.3098037, - "lon": -0.5913278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN10 101" - } -}, -{ - "type": "node", - "id": 5700411141, - "lat": 52.3103891, - "lon": -0.5974540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 134" - } -}, -{ - "type": "node", - "id": 5700411142, - "lat": 52.3081966, - "lon": -0.6005439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 125" - } -}, -{ - "type": "node", - "id": 5700411143, - "lat": 52.3058694, - "lon": -0.5945948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 83" - } -}, -{ - "type": "node", - "id": 5700411144, - "lat": 52.2998878, - "lon": -0.5971348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 99" - } -}, -{ - "type": "node", - "id": 5700411145, - "lat": 52.3018049, - "lon": -0.6020963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 133" - } -}, -{ - "type": "node", - "id": 5700411146, - "lat": 52.2967385, - "lon": -0.6245443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 1069" - } -}, -{ - "type": "node", - "id": 5700411147, - "lat": 52.2921895, - "lon": -0.6065279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 32" - } -}, -{ - "type": "node", - "id": 5700411148, - "lat": 52.2951801, - "lon": -0.5870149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 118" - } -}, -{ - "type": "node", - "id": 5700411149, - "lat": 52.2924946, - "lon": -0.5952814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 3" - } -}, -{ - "type": "node", - "id": 5700411150, - "lat": 52.2918138, - "lon": -0.5907244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN10 44" - } -}, -{ - "type": "node", - "id": 5700411151, - "lat": 52.2888361, - "lon": -0.5834556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 113" - } -}, -{ - "type": "node", - "id": 5700411152, - "lat": 52.2894407, - "lon": -0.5908665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 35" - } -}, -{ - "type": "node", - "id": 5700411153, - "lat": 52.2860945, - "lon": -0.6085047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 119" - } -}, -{ - "type": "node", - "id": 5700411154, - "lat": 52.2838696, - "lon": -0.6130376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 129" - } -}, -{ - "type": "node", - "id": 5700411155, - "lat": 52.2821253, - "lon": -0.6094220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 142" - } -}, -{ - "type": "node", - "id": 5700411156, - "lat": 52.2822484, - "lon": -0.6073460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 14" - } -}, -{ - "type": "node", - "id": 5700411157, - "lat": 52.2816068, - "lon": -0.6007907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 126" - } -}, -{ - "type": "node", - "id": 5700411158, - "lat": 52.2869091, - "lon": -0.5933690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 49" - } -}, -{ - "type": "node", - "id": 5700411159, - "lat": 52.2830147, - "lon": -0.5881548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 1072" - } -}, -{ - "type": "node", - "id": 5700411160, - "lat": 52.2847080, - "lon": -0.5957133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 114" - } -}, -{ - "type": "node", - "id": 5700411161, - "lat": 52.2843996, - "lon": -0.5922210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 104" - } -}, -{ - "type": "node", - "id": 5700411162, - "lat": 52.2813664, - "lon": -0.5957320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN10 1075" - } -}, -{ - "type": "node", - "id": 5700411163, - "lat": 52.2761192, - "lon": -0.6015873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 52" - } -}, -{ - "type": "node", - "id": 5700411164, - "lat": 52.2822561, - "lon": -0.5353557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN10 29" - } -}, -{ - "type": "node", - "id": 5700411165, - "lat": 52.2744633, - "lon": -0.5576728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 79" - } -}, -{ - "type": "node", - "id": 5700411166, - "lat": 52.2651929, - "lon": -0.5752641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN10 112" - } -}, -{ - "type": "node", - "id": 5700437893, - "lat": 52.3380695, - "lon": -0.6444195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 120" - } -}, -{ - "type": "node", - "id": 5700437894, - "lat": 52.3404178, - "lon": -0.6482658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 46" - } -}, -{ - "type": "node", - "id": 5700437895, - "lat": 52.3388839, - "lon": -0.6550974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 41" - } -}, -{ - "type": "node", - "id": 5700437896, - "lat": 52.3372189, - "lon": -0.6545824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 91" - } -}, -{ - "type": "node", - "id": 5700437897, - "lat": 52.3377695, - "lon": -0.6604859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 8" - } -}, -{ - "type": "node", - "id": 5700437898, - "lat": 52.3394755, - "lon": -0.7049462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 88" - } -}, -{ - "type": "node", - "id": 5700437899, - "lat": 52.3207747, - "lon": -0.7058729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 143" - } -}, -{ - "type": "node", - "id": 5700519976, - "lat": 52.3156232, - "lon": -0.5478787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 73" - } -}, -{ - "type": "node", - "id": 5700519977, - "lat": 52.3501755, - "lon": -0.5357873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 1068" - } -}, -{ - "type": "node", - "id": 5700519978, - "lat": 52.3479423, - "lon": -0.5332781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 58" - } -}, -{ - "type": "node", - "id": 5700519979, - "lat": 52.3455812, - "lon": -0.5296424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 106" - } -}, -{ - "type": "node", - "id": 5700519980, - "lat": 52.3451757, - "lon": -0.5408862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 87" - } -}, -{ - "type": "node", - "id": 5700519981, - "lat": 52.3429087, - "lon": -0.5342987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 71" - } -}, -{ - "type": "node", - "id": 5700519982, - "lat": 52.3434764, - "lon": -0.5370399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 86" - } -}, -{ - "type": "node", - "id": 5700519983, - "lat": 52.3409873, - "lon": -0.5368830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 56" - } -}, -{ - "type": "node", - "id": 5700519984, - "lat": 52.3397492, - "lon": -0.5428416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN9 57" - } -}, -{ - "type": "node", - "id": 5700519985, - "lat": 52.3418058, - "lon": -0.5464652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 107" - } -}, -{ - "type": "node", - "id": 5700519986, - "lat": 52.3382268, - "lon": -0.5463928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 70" - } -}, -{ - "type": "node", - "id": 5700519987, - "lat": 52.3367289, - "lon": -0.5595906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 1078" - } -}, -{ - "type": "node", - "id": 5700519988, - "lat": 52.3333887, - "lon": -0.5673328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 136" - } -}, -{ - "type": "node", - "id": 5700519989, - "lat": 52.3376778, - "lon": -0.6005627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 109" - } -}, -{ - "type": "node", - "id": 5700519990, - "lat": 52.3287443, - "lon": -0.6161691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 77" - } -}, -{ - "type": "node", - "id": 5700519991, - "lat": 52.3274428, - "lon": -0.6067948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN9 69" - } -}, -{ - "type": "node", - "id": 5700519992, - "lat": 52.3299147, - "lon": -0.6073299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 48" - } -}, -{ - "type": "node", - "id": 5700519993, - "lat": 52.3222240, - "lon": -0.6154288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN9 47" - } -}, -{ - "type": "node", - "id": 5701715454, - "lat": 50.8031708, - "lon": -0.8280996, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 145D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5702558079, - "lat": 55.7879559, - "lon": -4.3434824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5702769522, - "lat": 50.7729346, - "lon": -0.8976416, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO20 147", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO20 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 5702945117, - "lat": 52.0620705, - "lon": 0.1912569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB10 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5703152016, - "lat": 51.4361125, - "lon": -0.3055254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5703152017, - "lat": 51.4362586, - "lon": -0.3202085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW10 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5703271002, - "lat": 51.9695430, - "lon": -1.6281880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL56 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5703320887, - "lat": 57.4812167, - "lon": -7.2269227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5703422869, - "lat": 50.9844479, - "lon": -1.7097531, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5706139526, - "lat": 51.3795302, - "lon": -0.1558934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5706146467, - "lat": 51.3811632, - "lon": -0.1551992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5706163923, - "lat": 52.2261407, - "lon": 0.9377644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP14 8064", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5706168170, - "lat": 52.1974697, - "lon": 0.9857081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP14 8040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5706170559, - "lat": 51.3837647, - "lon": -0.1892867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5706274218, - "lat": 52.2211621, - "lon": 0.9654529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP14 8084", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5706280188, - "lat": 52.2196717, - "lon": 0.9720726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP14 8061", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5706348155, - "lat": 50.2800786, - "lon": -5.2103781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5706404429, - "lat": 52.2196471, - "lon": 0.9440810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8032", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5706462125, - "lat": 52.2246570, - "lon": 0.9347470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5706551519, - "lat": 52.2368956, - "lon": 0.9132542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP30 2127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5706683814, - "lat": 52.2897727, - "lon": 0.8728445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "fixme": "this box appears to have been removed", - "inscription": "Letters Only", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2076", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5707481906, - "lat": 57.4699647, - "lon": -7.3556045, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5708777457, - "lat": 51.2936491, - "lon": -0.0971708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 137D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5708780909, - "lat": 51.3050761, - "lon": -0.0862519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5708799194, - "lat": 51.3123533, - "lon": -0.0844630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 338", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5708809185, - "lat": 51.3147019, - "lon": -0.0831455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5708862656, - "lat": 51.3089614, - "lon": -0.0798646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5708867640, - "lat": 51.3084693, - "lon": -0.0774028, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-18", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 442", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5709507947, - "lat": 52.8943587, - "lon": -1.4177865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 561", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5709507948, - "lat": 52.8911649, - "lon": -1.4142820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 761", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5709507949, - "lat": 52.8888849, - "lon": -1.4218834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DE24 709", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5709579642, - "lat": 57.7230454, - "lon": -3.2895628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IV31 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5709613963, - "lat": 57.6629255, - "lon": -3.0195823, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5709613966, - "lat": 57.6768607, - "lon": -2.9738853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "503597475370042", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "survey:date": "2024-07-07" - } -}, -{ - "type": "node", - "id": 5709613967, - "lat": 57.6787324, - "lon": -2.9599694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB56 66" - } -}, -{ - "type": "node", - "id": 5709613972, - "lat": 57.7024139, - "lon": -2.8584567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5709650167, - "lat": 57.6814121, - "lon": -2.6912317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB45 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5709650170, - "lat": 57.6984264, - "lon": -2.0694098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5709801095, - "lat": 53.3647646, - "lon": -0.4288279, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5710860738, - "lat": 53.6482466, - "lon": -2.6287566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "517125232641638", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5711438369, - "lat": 53.4088794, - "lon": -2.1596307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5712010665, - "lat": 53.3917299, - "lon": -1.4738517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "S3 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5712010666, - "lat": 53.3917197, - "lon": -1.4738052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S3 1226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5712048546, - "lat": 51.3097301, - "lon": -0.1717321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR5 259", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5712053426, - "lat": 51.3042627, - "lon": -0.1694922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR5 319D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5712066408, - "lat": 53.2264444, - "lon": -4.2906278, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5712072365, - "lat": 51.2920806, - "lon": -0.2036746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5712443278, - "lat": 50.4450048, - "lon": -4.5334080, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5713007752, - "lat": 51.6301373, - "lon": -0.9493960, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG9 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5713015267, - "lat": 51.6450677, - "lon": -1.0104767, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX49 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5713036761, - "lat": 51.6521625, - "lon": -1.0365638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX49 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5713534672, - "lat": 52.4401988, - "lon": -2.6717263, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5713751476, - "lat": 51.3362383, - "lon": -0.0764706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 589", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713765635, - "lat": 51.3335062, - "lon": -0.0764957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713768606, - "lat": 51.3300522, - "lon": -0.0782190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 449", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713769330, - "lat": 51.3258419, - "lon": -0.0693808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 419", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713770857, - "lat": 51.3246450, - "lon": -0.0657107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 461D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713783691, - "lat": 51.3196908, - "lon": -0.0645424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 192", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713785037, - "lat": 51.3155811, - "lon": -0.0614003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 381", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713787129, - "lat": 51.3041387, - "lon": -0.0538426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 584D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713788137, - "lat": 51.3115666, - "lon": -0.0459768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713788746, - "lat": 51.3120826, - "lon": -0.0567224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713792037, - "lat": 51.3052820, - "lon": -0.0468992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 511D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713793282, - "lat": 51.3070189, - "lon": -0.0436773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713833171, - "lat": 51.3097204, - "lon": -0.0552262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "CR6 393" - } -}, -{ - "type": "node", - "id": 5713836273, - "lat": 51.3063555, - "lon": -0.0589889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 345D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713838998, - "lat": 51.3035120, - "lon": -0.0679032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713840109, - "lat": 51.3069705, - "lon": -0.0718814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 209D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5713903941, - "lat": 51.2833614, - "lon": -0.0781571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 407", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "streetlevel imagery;survey" - } -}, -{ - "type": "node", - "id": 5714086340, - "lat": 57.0936613, - "lon": -2.1081122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 219" - } -}, -{ - "type": "node", - "id": 5714114658, - "lat": 53.3493421, - "lon": -0.3976167, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5714715760, - "lat": 54.3441966, - "lon": -1.1245198, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5715168149, - "lat": 51.3839857, - "lon": -0.1580862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715212981, - "lat": 51.3533345, - "lon": -0.1344569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "colour": "gold", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate David Weir, Gold Medal winner London 2012 Paralympic Games. Athletics: Track - Mens 1500m, T54", - "note": "This is a gold Olympic postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715540834, - "lat": 52.0168230, - "lon": 1.0696942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP8 1251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5715672926, - "lat": 53.1822297, - "lon": -3.2045002, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5715686037, - "lat": 55.1528667, - "lon": -1.8549004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "post_box:type": "lamp", - "ref": "NE61 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686038, - "lat": 55.1621959, - "lon": -1.8569952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "NE61 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686042, - "lat": 55.1699773, - "lon": -1.8622503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "wall", - "ref": "NE61 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686045, - "lat": 55.1605959, - "lon": -1.9052519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "NE61 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686046, - "lat": 55.1532319, - "lon": -1.9560214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "wall", - "ref": "NE61 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686049, - "lat": 55.1653001, - "lon": -1.9599400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "NE61 197", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686051, - "lat": 55.1728462, - "lon": -1.9384755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "lamp", - "ref": "NE61 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686052, - "lat": 55.1868509, - "lon": -1.9332630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "NE61 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686053, - "lat": 55.1866056, - "lon": -1.9636653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "post_box:type": "wall", - "ref": "NE61 57", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686054, - "lat": 55.2081290, - "lon": -1.9998486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "NE61 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686055, - "lat": 55.2001928, - "lon": -1.9196627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NE61 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686056, - "lat": 55.2093017, - "lon": -1.9318928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "NE61 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686057, - "lat": 55.2282937, - "lon": -1.9082848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "NE61 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686058, - "lat": 55.2396802, - "lon": -1.9237336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "NE61 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686059, - "lat": 55.1934012, - "lon": -1.8787810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "NE61 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715686063, - "lat": 55.2065805, - "lon": -1.8455513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "NE61 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5715857871, - "lat": 53.4539914, - "lon": -2.1731070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M18 548D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5715875883, - "lat": 53.0256924, - "lon": -3.5618615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL21 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5716139347, - "lat": 52.1405555, - "lon": -3.0242389, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR3 177", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5716139492, - "lat": 53.0237174, - "lon": -3.5606760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL21 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5716142742, - "lat": 52.1270205, - "lon": -3.0549663, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR3 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5716156981, - "lat": 51.6277347, - "lon": -2.6792881, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP16 704D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5717692627, - "lat": 56.5856495, - "lon": -2.8959252, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5718538684, - "lat": 52.0503949, - "lon": -1.7812014, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL55 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5718552396, - "lat": 52.3508808, - "lon": 0.2220339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB6 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5718552955, - "lat": 57.6942255, - "lon": -2.0109190, - "tags": { - "addr:city": "Fraserburgh", - "addr:country": "GB", - "addr:postcode": "AB43 9JE", - "addr:street": "Charlotte Street", - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5718563528, - "lat": 57.5241641, - "lon": -2.0008715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB42 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5718563544, - "lat": 57.4769519, - "lon": -2.0023898, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5718564029, - "lat": 55.9839721, - "lon": -3.9939715, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5718665677, - "lat": 51.4276530, - "lon": -2.1300790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN15 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5718678457, - "lat": 51.2341378, - "lon": -1.3141751, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG28 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5718757978, - "lat": 53.3911136, - "lon": -2.2402706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK8 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5719753380, - "lat": 51.4386701, - "lon": -1.0720720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG7 587D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5719767766, - "lat": 51.6042006, - "lon": -0.3056570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "ref": "HA7 820" - } -}, -{ - "type": "node", - "id": 5720295299, - "lat": 51.5975010, - "lon": -0.3314385, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "HA3 434D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5720374088, - "lat": 51.5997424, - "lon": -0.3236843, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 358", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5720380089, - "lat": 51.6027650, - "lon": -0.3136600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "drive_through": "no", - "ref": "HA7 825", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5720868679, - "lat": 53.6670207, - "lon": -2.7767514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR26 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5721043193, - "lat": 50.8332513, - "lon": -0.8512006, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PO18 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5721376321, - "lat": 50.7984964, - "lon": -0.8645739, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO20 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 5721376322, - "lat": 50.8052262, - "lon": -0.8667652, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO20 3", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 5721406267, - "lat": 50.7769256, - "lon": -0.8935592, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO20 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5721406268, - "lat": 50.7819474, - "lon": -0.8922395, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 5721406270, - "lat": 50.7866838, - "lon": -0.8863708, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PO20 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 5721406271, - "lat": 50.7871484, - "lon": -0.8712727, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PO20 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5721411615, - "lat": 50.8123194, - "lon": -0.7580003, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is only visible when facing eastwards along this road. This postbox is in the wall at the property named \"The Old Post Office\".", - "old_ref": "PO20 90", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PO20 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5721537391, - "lat": 54.1588604, - "lon": -0.8977789, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5721546939, - "lat": 54.2180580, - "lon": -1.2900689, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5722513609, - "lat": 53.6676856, - "lon": -2.7726933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR26 420", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5722579186, - "lat": 52.8908103, - "lon": 0.9869470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5722635663, - "lat": 52.6218372, - "lon": 0.5284515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5722701403, - "lat": 53.6865085, - "lon": -2.6708284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 142" - } -}, -{ - "type": "node", - "id": 5723559929, - "lat": 53.6601894, - "lon": -2.7732942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR26 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5723559930, - "lat": 53.6640869, - "lon": -2.7757189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR26 187", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5723846496, - "lat": 53.6321959, - "lon": -2.6691762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 98" - } -}, -{ - "type": "node", - "id": 5723846498, - "lat": 53.6260861, - "lon": -2.6794310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR7 69" - } -}, -{ - "type": "node", - "id": 5724216652, - "lat": 53.6458406, - "lon": -2.6772054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 93" - } -}, -{ - "type": "node", - "id": 5724225549, - "lat": 50.8194003, - "lon": -0.6100532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5724225550, - "lat": 50.8208221, - "lon": -0.6130708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5724225551, - "lat": 50.8268027, - "lon": -0.6101778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-12", - "old_ref": "BN18 1313", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1313D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5724240108, - "lat": 50.8162791, - "lon": -0.5979006, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN18 1347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5724271195, - "lat": 50.8137074, - "lon": -0.5795087, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BN18 1890", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5724271196, - "lat": 50.8136990, - "lon": -0.5795315, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN18 1424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5724271197, - "lat": 50.8251997, - "lon": -0.5888911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-12", - "old_ref": "BN18 1348", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1348D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5724271198, - "lat": 50.8227217, - "lon": -0.5806272, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-12", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5724281416, - "lat": 50.8345642, - "lon": -0.6376348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5724291194, - "lat": 53.6411771, - "lon": -2.6340634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 6", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5724291195, - "lat": 53.6390948, - "lon": -2.6405302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 111", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5724291196, - "lat": 53.6403001, - "lon": -2.6444355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR7 13", - "source": "survey;Mapillary" - } -}, -{ - "type": "node", - "id": 5725236840, - "lat": 54.3509325, - "lon": -7.6434741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5726044739, - "lat": 52.8856896, - "lon": -1.4160329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE24 751", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5726484843, - "lat": 51.4605508, - "lon": -1.0371338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "mapillary": "402869424765709", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG31 617", - "survey:date": "2021-10-23" - } -}, -{ - "type": "node", - "id": 5726603197, - "lat": 51.5373220, - "lon": -3.7253177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "ref": "SA13 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5726704892, - "lat": 51.4594953, - "lon": -3.6148294, - "tags": { - "amenity": "post_box", - "note": "ref just about visible where black print transferred to plastic", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 39" - } -}, -{ - "type": "node", - "id": 5726729561, - "lat": 51.4127951, - "lon": -3.5476145, - "tags": { - "amenity": "post_box", - "mapillary": "564137251429429", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF61 73", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 5726748117, - "lat": 51.4063190, - "lon": -3.5312309, - "tags": { - "amenity": "post_box", - "mapillary": "4381374018626648", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 5728183901, - "lat": 52.2091296, - "lon": 0.0915263, - "tags": { - "amenity": "post_box", - "operator": "Cavendish Laboratory / Royal Mail" - } -}, -{ - "type": "node", - "id": 5728515654, - "lat": 52.3167924, - "lon": 1.2659841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 8142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5729081781, - "lat": 53.6448239, - "lon": -2.6237623, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;mapillary" - } -}, -{ - "type": "node", - "id": 5729081782, - "lat": 53.6424468, - "lon": -2.6293749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5729081783, - "lat": 53.6395519, - "lon": -2.6284978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 128" - } -}, -{ - "type": "node", - "id": 5729081785, - "lat": 53.6374560, - "lon": -2.6369534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 123" - } -}, -{ - "type": "node", - "id": 5730360269, - "lat": 51.4909433, - "lon": -3.1524059, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5730586272, - "lat": 52.2407022, - "lon": -1.9428624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B96 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5730586274, - "lat": 52.2512562, - "lon": -1.9879927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B96 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5730587851, - "lat": 52.1438131, - "lon": -1.9271481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5730811598, - "lat": 52.7163358, - "lon": 0.5122764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731145256, - "lat": 51.0836188, - "lon": -0.8193297, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731271540, - "lat": 50.9640118, - "lon": 0.3969246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5731271542, - "lat": 50.9520158, - "lon": 0.4072456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731271543, - "lat": 50.9622252, - "lon": 0.4070535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 185D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5731271544, - "lat": 50.9685807, - "lon": 0.4083932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 183", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5731271545, - "lat": 50.9640481, - "lon": 0.3781809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731324749, - "lat": 51.3523537, - "lon": -0.4294405, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT12 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731326015, - "lat": 51.3581188, - "lon": -0.4280802, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 124D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5731800274, - "lat": 52.6626347, - "lon": 1.6552690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731855582, - "lat": 51.0426688, - "lon": -0.7243842, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU27 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731855583, - "lat": 51.0303260, - "lon": -0.7326829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "This postbox is on the A286 southbound side approximately 8 metres south of the property numbered \"308 Henley Common\".", - "old_ref": "GU27 19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-08-13" - } -}, -{ - "type": "node", - "id": 5731866069, - "lat": 52.5780406, - "lon": 1.3393752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731866591, - "lat": 51.0668660, - "lon": -0.7242984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "old_ref": "GU27 68", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 5731866592, - "lat": 51.0627109, - "lon": -0.7199961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is mounted by a wooden pole although this wooden pole is difficult to see because vegetation has overgrown it.", - "old_ref": "GU27 71", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "GU27 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 5731866594, - "lat": 51.0579351, - "lon": -0.7197198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "This postbox is on the northbound side at an oblique angle at a bearing of approx 315 degrees.", - "note": "This postbox is only clearly visible in the northbound direction; to access it northbound it is approximately 100 metres past the turning Copyhold Lane.", - "note_1": "To access it southbound, slow down at the properties Knap Cottage and Forest Cottage, there is another property and at the property on the LHS named 'Highlands' it is in a few feet on the RHS.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU27 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey_point": "2022-08-15" - } -}, -{ - "type": "node", - "id": 5731867995, - "lat": 54.2387149, - "lon": -1.3364823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "YO7 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731867999, - "lat": 54.2374442, - "lon": -1.3316011, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO7 12" - } -}, -{ - "type": "node", - "id": 5731868001, - "lat": 54.2347754, - "lon": -1.3323918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "YO7 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731911216, - "lat": 53.4809629, - "lon": -2.2153541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M4 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731920486, - "lat": 52.6716429, - "lon": 0.8107889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731971873, - "lat": 51.6147183, - "lon": -0.3250627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 818" - } -}, -{ - "type": "node", - "id": 5731971888, - "lat": 51.6049541, - "lon": -0.3399051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA3 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731971889, - "lat": 51.6100715, - "lon": -0.3395106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "ref": "HA3 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5731975488, - "lat": 52.7084927, - "lon": 1.3205514, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5732259486, - "lat": 52.9451058, - "lon": -1.1794722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:manufacturer": "Romec", - "post_box:type": "pillar", - "ref": "NG7 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5732693931, - "lat": 54.0918066, - "lon": -1.3814726, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5732812393, - "lat": 51.0818800, - "lon": -0.7399008, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_120D,_Marley_Lane,_Haslemere,_West_Sussex.jpg" - } -}, -{ - "type": "node", - "id": 5732812394, - "lat": 51.0767422, - "lon": -0.7395816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU27 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-09-10", - "wikimedia_commons": "File:Post_Box_GU27_15D,_Marley_Lane,_Linchmere,_Haslemere,_West_Sussex.jpg" - } -}, -{ - "type": "node", - "id": 5732812395, - "lat": 51.0805303, - "lon": -0.7568778, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-20", - "note": "This postbox is of a brand new (2010s) EIIR lamp design. I am not sure of the official name for this design of postbox.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5732812414, - "lat": 51.0715532, - "lon": -0.7605645, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GU27 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5733928700, - "lat": 51.4904141, - "lon": -3.2265116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 280D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5735027054, - "lat": 57.7576848, - "lon": -4.0077534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV19 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5735027064, - "lat": 57.7781252, - "lon": -3.9936779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IV19 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5735082251, - "lat": 54.6880648, - "lon": -5.8964261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 75" - } -}, -{ - "type": "node", - "id": 5735084025, - "lat": 57.6472745, - "lon": -4.2612335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5735084026, - "lat": 57.6708006, - "lon": -4.1772824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV7 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5735872724, - "lat": 52.0317370, - "lon": -2.8048397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 10:00; Su off", - "name": "Croft Road" - } -}, -{ - "type": "node", - "id": 5736504541, - "lat": 50.9156183, - "lon": -4.4884110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX23 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5736504558, - "lat": 50.7857582, - "lon": -4.5353254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX23 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5736504559, - "lat": 50.8747617, - "lon": -4.4846021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1603332283846219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey", - "survey:date": "2024-04-20" - } -}, -{ - "type": "node", - "id": 5736940595, - "lat": 51.4612397, - "lon": 0.0289222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5737583013, - "lat": 57.2041220, - "lon": -2.2890637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB21 323", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5737718530, - "lat": 50.7992805, - "lon": 0.2667909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 843", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5738743937, - "lat": 53.4037888, - "lon": -1.4977153, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 680D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5739084913, - "lat": 53.4013363, - "lon": -1.5054378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 318", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5739084915, - "lat": 53.3952403, - "lon": -1.4846649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "S3 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5739084916, - "lat": 53.3953205, - "lon": -1.4847779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "meter", - "ref": "S3 1229", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5739966483, - "lat": 51.0957714, - "lon": -0.6998152, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is in the wall of the property named \"West Grays\".", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5739966486, - "lat": 51.0950977, - "lon": -0.6909746, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5739966487, - "lat": 51.0862355, - "lon": -0.6876366, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5739966488, - "lat": 51.0844008, - "lon": -0.6962830, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5739974297, - "lat": 51.0940878, - "lon": -0.7237324, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_33D_Stoatley_Rise,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 5739974299, - "lat": 51.0915129, - "lon": -0.7165669, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is a bit set back in the bushes of the property named \"Seven Oaks\".", - "last_checked": "2020-09-22", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5739974300, - "lat": 51.0930170, - "lon": -0.7185034, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 115D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5739974302, - "lat": 51.0965901, - "lon": -0.7148905, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 130", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post_Box_GU27_130,_High_Lane,_High_Lane_Estate,_Haslemere.jpg" - } -}, -{ - "type": "node", - "id": 5739974303, - "lat": 51.0990552, - "lon": -0.7145686, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5740856753, - "lat": 53.3829746, - "lon": -1.5072588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "wall", - "ref": "S10 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5741826649, - "lat": 51.2826441, - "lon": -0.0962118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 425D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5741828977, - "lat": 51.2804084, - "lon": -0.0991951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5741834997, - "lat": 51.2778368, - "lon": -0.1034637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 283D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5741838727, - "lat": 51.2808963, - "lon": -0.1053466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5741839235, - "lat": 51.2829165, - "lon": -0.1183883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 387", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5741843821, - "lat": 51.2784783, - "lon": -0.1203841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5741922634, - "lat": 55.0028228, - "lon": -3.5737004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "DG1 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5743341643, - "lat": 52.4105852, - "lon": -1.5221570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-07-17", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743710354, - "lat": 51.3882199, - "lon": -0.1113507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743710355, - "lat": 51.3892222, - "lon": -0.1112316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743719746, - "lat": 51.3957339, - "lon": -0.1123219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 243D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743722521, - "lat": 51.3973685, - "lon": -0.1156974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743740212, - "lat": 51.4002903, - "lon": -0.1177488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 206", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743757477, - "lat": 51.3959208, - "lon": -0.1189951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 326D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743757478, - "lat": 51.3969408, - "lon": -0.1219640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743758992, - "lat": 51.3889140, - "lon": -0.1208614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 308", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5743931402, - "lat": 53.4888195, - "lon": -2.2738065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "mapillary": "644126869819528", - "operator": "Royal Mail", - "ref": "M5 690", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5744198741, - "lat": 51.4549356, - "lon": -0.9750173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "drive_through": "no", - "mapillary": "946127436154907", - "post_box:type": "pillar", - "ref": "RG1 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-12-21" - } -}, -{ - "type": "node", - "id": 5744493524, - "lat": 51.0051021, - "lon": -0.9384762, - "tags": { - "amenity": "post_box", - "collection_plate": "CP6D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU32 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5744978449, - "lat": 53.6675224, - "lon": -2.6716679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1448844195464236", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 15", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5745001336, - "lat": 51.2803662, - "lon": -0.8432556, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745001367, - "lat": 51.2791759, - "lon": -0.8444023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:45", - "post_box:type": "pillar", - "ref": "GU51 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745080107, - "lat": 51.0649410, - "lon": -1.5323541, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO20 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5745101315, - "lat": 51.1382354, - "lon": -1.5933274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745101316, - "lat": 51.1269449, - "lon": -1.5695804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745119404, - "lat": 51.1702056, - "lon": -1.6223750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745119414, - "lat": 51.1627938, - "lon": -1.6272318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745125497, - "lat": 51.1886387, - "lon": -1.5825892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745133575, - "lat": 51.1928228, - "lon": -1.6091377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745605449, - "lat": 51.1811037, - "lon": 0.3886924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN12 2321;TN12 2322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5745605465, - "lat": 51.1991574, - "lon": 0.3949870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 24" - } -}, -{ - "type": "node", - "id": 5745858740, - "lat": 51.2813494, - "lon": -0.8418435, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU51 691", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746089473, - "lat": 51.4321954, - "lon": -3.2289391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5746531722, - "lat": 50.9732120, - "lon": 0.5358609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN32 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531724, - "lat": 50.9568554, - "lon": 0.4964766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531725, - "lat": 50.9848745, - "lon": 0.5369372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531729, - "lat": 51.0064040, - "lon": 0.5380138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531730, - "lat": 50.9622125, - "lon": 0.5295411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531733, - "lat": 50.9815257, - "lon": 0.4727092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531734, - "lat": 50.9624572, - "lon": 0.5508190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531736, - "lat": 51.0097397, - "lon": 0.5160392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5746531737, - "lat": 50.9848663, - "lon": 0.4689613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531738, - "lat": 50.9620504, - "lon": 0.4551463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531739, - "lat": 50.9722560, - "lon": 0.5579135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531740, - "lat": 51.0001436, - "lon": 0.4986705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531741, - "lat": 50.9847489, - "lon": 0.4622703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531742, - "lat": 50.9566080, - "lon": 0.4701246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5746531746, - "lat": 50.9841116, - "lon": 0.4587321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 211D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5746531747, - "lat": 50.9534635, - "lon": 0.4800017, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531749, - "lat": 50.9922084, - "lon": 0.5558177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531754, - "lat": 50.9906629, - "lon": 0.4772270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN32 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531755, - "lat": 50.9645346, - "lon": 0.4809507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5746531757, - "lat": 51.0009956, - "lon": 0.5400864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN32 256D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 5746531758, - "lat": 50.9864158, - "lon": 0.4747641, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5747063202, - "lat": 51.1485860, - "lon": -1.7092913, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5747078968, - "lat": 51.1283808, - "lon": -1.7321733, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SP4 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5747078988, - "lat": 51.1157964, - "lon": -1.7446241, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5747078989, - "lat": 51.1191386, - "lon": -1.7474860, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP4 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5747098220, - "lat": 51.2850579, - "lon": -0.0792459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR3 590D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747103718, - "lat": 51.2902929, - "lon": -0.0760734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 120", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747105874, - "lat": 51.2951011, - "lon": -0.0714641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 431D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747107731, - "lat": 51.2968503, - "lon": -0.0723574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 43D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747108149, - "lat": 51.2917729, - "lon": -0.0770962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 366D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747112153, - "lat": 51.2881531, - "lon": -0.0805670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 550D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747116316, - "lat": 51.2810879, - "lon": -0.0776219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "yes", - "note": "The royal cypher has mostly worn off but is certainly EIIR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 594", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747124178, - "lat": 51.2796890, - "lon": -0.0794863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747135190, - "lat": 51.2746772, - "lon": -0.0827613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747149337, - "lat": 51.2726814, - "lon": -0.0784129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747193724, - "lat": 51.2796364, - "lon": -0.0750188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "CR3 161;CR3 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747201358, - "lat": 51.2731798, - "lon": -0.0722025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 509D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747205806, - "lat": 51.2759284, - "lon": -0.0716950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5747217937, - "lat": 51.5022177, - "lon": -3.2263197, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF14 348D" - } -}, -{ - "type": "node", - "id": 5749038456, - "lat": 52.6807008, - "lon": 0.7623609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5749099061, - "lat": 53.3540422, - "lon": -1.4868403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S7 824", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5750065105, - "lat": 54.0730852, - "lon": -1.9970579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-19" - } -}, -{ - "type": "node", - "id": 5750267372, - "lat": 51.0837048, - "lon": -1.7692199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5750284393, - "lat": 51.0628728, - "lon": -1.5828413, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SP5 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5750337017, - "lat": 51.0029044, - "lon": -1.5673975, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5750337018, - "lat": 51.0135437, - "lon": -1.5745130, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5751102597, - "lat": 52.7691351, - "lon": 1.2541862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5751449507, - "lat": 51.2122635, - "lon": -3.4739810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5751991913, - "lat": 51.3246528, - "lon": -0.1008933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR8 157", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752030244, - "lat": 51.3198628, - "lon": -0.0988448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 63D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752031440, - "lat": 51.3129366, - "lon": -0.0990593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 193D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752036077, - "lat": 51.3176047, - "lon": -0.0895590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "CR8 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752047906, - "lat": 51.3217732, - "lon": -0.0955200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CR8 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752059645, - "lat": 51.3275061, - "lon": -0.0942206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 435D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752060522, - "lat": 51.3283506, - "lon": -0.0730158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 375", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752072578, - "lat": 51.3374438, - "lon": -0.0825208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 369D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752073328, - "lat": 51.3334271, - "lon": -0.0831136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 460D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752075079, - "lat": 51.3323156, - "lon": -0.0895335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 500D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752095746, - "lat": 51.3331975, - "lon": -0.0989514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 337", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752101763, - "lat": 51.3381384, - "lon": -0.1059003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR8 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752315223, - "lat": 52.3904573, - "lon": 0.1479793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752323035, - "lat": 52.4065304, - "lon": 0.1192189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB6 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5752712513, - "lat": 51.2867807, - "lon": -0.8356342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU51 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5753455480, - "lat": 51.6417598, - "lon": -1.8561361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN6 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5753478391, - "lat": 51.1677833, - "lon": 0.6221437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN27 1411;TN27 1412", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-05" - } -}, -{ - "type": "node", - "id": 5753480653, - "lat": 52.8602519, - "lon": 1.4430676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR28 2829", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:date": "2016-06-23" - } -}, -{ - "type": "node", - "id": 5754099761, - "lat": 53.6362395, - "lon": -2.6692948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "932272287548149", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 84" - } -}, -{ - "type": "node", - "id": 5754475223, - "lat": 50.8447686, - "lon": -0.1923227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "BN3 369D" - } -}, -{ - "type": "node", - "id": 5754896817, - "lat": 54.1052456, - "lon": -1.0780644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "wall", - "priority": "yes", - "ref": "YO61 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5756177801, - "lat": 53.6440877, - "lon": -2.6432419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "face plate with ref and times missing", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5756177802, - "lat": 53.6485204, - "lon": -2.6442289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR7 91" - } -}, -{ - "type": "node", - "id": 5756331850, - "lat": 54.1031925, - "lon": -1.1029724, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5758009812, - "lat": 51.0257487, - "lon": 0.5667137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "TN18 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5758349255, - "lat": 52.4025813, - "lon": 1.1673262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5758405601, - "lat": 52.7682799, - "lon": 1.4094351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5758992825, - "lat": 52.1440846, - "lon": -1.8795299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5758992826, - "lat": 52.1372349, - "lon": -1.8867115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WR11 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5760113751, - "lat": 53.6230370, - "lon": -2.6252657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5760113806, - "lat": 53.6103819, - "lon": -2.6308554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 53" - } -}, -{ - "type": "node", - "id": 5760137781, - "lat": 52.7255100, - "lon": 1.1604772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5760379994, - "lat": 51.5980929, - "lon": 0.4463187, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5760402173, - "lat": 51.3983621, - "lon": -0.0763274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5760820429, - "lat": 53.8540664, - "lon": -0.4428600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5761226278, - "lat": 51.4582693, - "lon": -0.9794126, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RG1 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5761681783, - "lat": 53.0069452, - "lon": -0.9823495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG14 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5762408857, - "lat": 51.3785620, - "lon": -2.3557732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "BA1 501", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5762417889, - "lat": 51.3752994, - "lon": -2.3495384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BA2 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5762433477, - "lat": 51.3736823, - "lon": -2.3402844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Mounted in stone pillarsitting above stone wall.", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "BA2 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5762433479, - "lat": 51.3749303, - "lon": -2.3314980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA2 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5763102890, - "lat": 51.3799146, - "lon": -2.3298725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA2 1026", - "ref:duplicates": "2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5763626220, - "lat": 52.8621706, - "lon": 1.3951970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "name": "Front Street Post Office", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR28 2810", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5764000264, - "lat": 52.7556544, - "lon": 0.2520369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5764083965, - "lat": 52.7644701, - "lon": 0.7730207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE32 73" - } -}, -{ - "type": "node", - "id": 5764683534, - "lat": 51.0826449, - "lon": -1.8679360, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SP2 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5764685143, - "lat": 51.0788120, - "lon": -1.8436208, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SP2 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5764690432, - "lat": 51.1760405, - "lon": -2.1436885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA12 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5764696920, - "lat": 51.1989994, - "lon": -2.1562164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5764706434, - "lat": 51.2489783, - "lon": -2.2085041, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA13 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5765448914, - "lat": 53.7568021, - "lon": -2.7160759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "570009477296232", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 8" - } -}, -{ - "type": "node", - "id": 5765579583, - "lat": 51.1029195, - "lon": -3.5631695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5765697438, - "lat": 53.7539648, - "lon": -2.7160258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "241851951023661", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR1 18", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5765820044, - "lat": 51.5348302, - "lon": -0.1477681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 56D" - } -}, -{ - "type": "node", - "id": 5766114511, - "lat": 53.6767192, - "lon": -2.6162383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 65", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5766155948, - "lat": 51.1461296, - "lon": -0.4842203, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5766237708, - "lat": 53.1897526, - "lon": -2.9401508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "412491297619834", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CH1 384D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-08-15", - "survey:date": "2022-08-15" - } -}, -{ - "type": "node", - "id": 5766465632, - "lat": 54.9453061, - "lon": -3.9345803, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5766632411, - "lat": 54.9663467, - "lon": -4.4874794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5766632418, - "lat": 55.1441603, - "lon": -4.8309811, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5766666925, - "lat": 55.2326503, - "lon": -4.8498187, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5766666929, - "lat": 55.3258041, - "lon": -4.6419335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA19 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5766680566, - "lat": 52.7150441, - "lon": -2.8098795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SY3 388D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5766734814, - "lat": 51.3961217, - "lon": -2.3224100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "BA2 241D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5766734819, - "lat": 51.3922095, - "lon": -2.3335710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BA2 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5766740473, - "lat": 51.3889734, - "lon": -2.3416835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA2 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5766741193, - "lat": 51.3868894, - "lon": -2.3457287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BA2 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5766913500, - "lat": 51.2651096, - "lon": -2.2468383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5766913501, - "lat": 51.2688930, - "lon": -2.2349576, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BA13 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5766917480, - "lat": 51.2849052, - "lon": -2.2990192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA2 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5766920742, - "lat": 51.2991482, - "lon": -2.3223176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA2 318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5767451969, - "lat": 52.3859074, - "lon": 0.2277000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB6 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5767452065, - "lat": 52.3859258, - "lon": 0.2277330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CB6 37P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5767468558, - "lat": 52.3547080, - "lon": 0.1794127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5767559528, - "lat": 52.3403153, - "lon": 0.1206101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB6 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5767772855, - "lat": 51.5692421, - "lon": 0.7037736, - "tags": { - "amenity": "post_box", - "level": "0" - } -}, -{ - "type": "node", - "id": 5768857922, - "lat": 55.5758508, - "lon": -4.4278783, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5768857924, - "lat": 55.5970468, - "lon": -4.3903791, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5768857930, - "lat": 55.6542737, - "lon": -4.4456761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "ref": "KA3 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5768934558, - "lat": 53.1866320, - "lon": -3.4119869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5769127366, - "lat": 50.7977304, - "lon": 0.2731999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 845D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5769202633, - "lat": 52.3384054, - "lon": -0.1584676, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5770300142, - "lat": 52.7067616, - "lon": 0.8243484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5771265276, - "lat": 50.8442655, - "lon": -0.0959769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 190D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5771351109, - "lat": 51.1057909, - "lon": -0.2064592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 110", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771360695, - "lat": 51.1125509, - "lon": -0.2122232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771388957, - "lat": 51.1346454, - "lon": -0.1790336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "opening_hours": "Mo-Fr 12:30-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH10 150", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771393885, - "lat": 51.1304494, - "lon": -0.1734945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771399894, - "lat": 51.1379135, - "lon": -0.1647830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771410053, - "lat": 51.1400340, - "lon": -0.1685068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 15:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "meter", - "ref": "RH10 169;RH10 170", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771410054, - "lat": 51.1400064, - "lon": -0.1686128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 15:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "meter", - "ref": "RH10 167;RH10 168", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490481, - "lat": 51.4303335, - "lon": -0.1116868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "collection plate damaged but RMNY confirms ref https://www.royalmail.com/services-near-you/postbox/thurlby-road-uffington-road-se27-0rn/0000SE2726 has pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490482, - "lat": 51.4273197, - "lon": -0.1115456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "Short door style", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490483, - "lat": 51.4245248, - "lon": -0.1088214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490484, - "lat": 51.4278012, - "lon": -0.1042691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490485, - "lat": 51.4295462, - "lon": -0.1062915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "note": "stick obscures ref but RM site confirms https://www.royalmail.com/services-near-you/postbox/thornlaw-road-casewick-road-se27-0sa/0000SE2725", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 25", - "ref:signed": "no", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490486, - "lat": 51.4294967, - "lon": -0.1090033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 24", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490487, - "lat": 51.4321905, - "lon": -0.1093378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490489, - "lat": 51.4241072, - "lon": -0.1013279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490490, - "lat": 51.4282151, - "lon": -0.0956025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490491, - "lat": 51.4358628, - "lon": -0.0939535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490492, - "lat": 51.4287113, - "lon": -0.0913324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "has pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771490497, - "lat": 51.4318280, - "lon": -0.0892199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "not very upright!", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771504191, - "lat": 53.8977511, - "lon": -1.5909644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 112" - } -}, -{ - "type": "node", - "id": 5771678684, - "lat": 51.1411436, - "lon": -0.1577351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5771784079, - "lat": 51.5574360, - "lon": -2.1865287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "532021044568057", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN16 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 5773418869, - "lat": 53.8262317, - "lon": -0.3951389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5773801321, - "lat": 56.0460970, - "lon": -4.9100052, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5774348404, - "lat": 51.5819666, - "lon": -2.1097197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "277246214337800", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN16 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 5774680336, - "lat": 51.2970292, - "lon": -1.9858742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5775053022, - "lat": 51.5149173, - "lon": -0.1631254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 48;W2 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775057969, - "lat": 51.3393830, - "lon": -0.0718322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 410D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775063826, - "lat": 51.3419823, - "lon": -0.0647289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR2 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775094192, - "lat": 51.3436946, - "lon": -0.0558755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 416", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775096279, - "lat": 51.3399933, - "lon": -0.0588119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 385D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775101167, - "lat": 51.3372365, - "lon": -0.0544421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 296D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5775105290, - "lat": 51.3432876, - "lon": -0.0495858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775134467, - "lat": 51.3500617, - "lon": -0.0513943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR2 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5775139261, - "lat": 51.3486240, - "lon": -0.0454688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 354", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5776786444, - "lat": 52.7737032, - "lon": -1.2901322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LE12 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5777255194, - "lat": 50.7736954, - "lon": -2.4050336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 137", - "ref:GB:uprn": "10015371584", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5777433438, - "lat": 51.5932357, - "lon": -0.3099103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "ref": "HA3 378D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5777642679, - "lat": 51.5646212, - "lon": -2.0364001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5777642680, - "lat": 51.5697280, - "lon": -2.0712876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN16 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5777644362, - "lat": 53.9005210, - "lon": -2.7741458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR3 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5777790395, - "lat": 51.5639626, - "lon": -2.0033634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5777805324, - "lat": 51.5657533, - "lon": -1.9645464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN15 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5778995176, - "lat": 51.3999153, - "lon": 0.1728998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR8 488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5779352336, - "lat": 51.5517495, - "lon": 0.0059357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 34", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5779444885, - "lat": 52.8901125, - "lon": 1.1283151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5779554044, - "lat": 52.4567637, - "lon": 0.3057536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB6 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5779993498, - "lat": 53.7508646, - "lon": -2.7134085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR1 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5780241095, - "lat": 53.7371722, - "lon": -2.7049052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR1 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5780330650, - "lat": 53.7346884, - "lon": -2.7097754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR1 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5780413762, - "lat": 53.7465981, - "lon": -2.7292147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR1 309" - } -}, -{ - "type": "node", - "id": 5780413777, - "lat": 53.7417474, - "lon": -2.7279943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR1 192" - } -}, -{ - "type": "node", - "id": 5780413808, - "lat": 53.7334220, - "lon": -2.7201173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR1 441" - } -}, -{ - "type": "node", - "id": 5781025898, - "lat": 50.7581099, - "lon": -1.2878888, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-13", - "check_date:collection_times": "2021-04-13", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO32 2512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "website": "https://www.royalmail.com/services-near-you/postbox/east-cowes-post-office-po32-6ra/00PO322512" - } -}, -{ - "type": "node", - "id": 5781573388, - "lat": 53.7617819, - "lon": -2.7057494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR1 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5781633510, - "lat": 52.9974857, - "lon": -2.1977422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "ST4 259" - } -}, -{ - "type": "node", - "id": 5781677226, - "lat": 51.4954868, - "lon": -0.1554077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1X 69;SW1X 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5781791384, - "lat": 51.5473442, - "lon": 0.0019231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5781791407, - "lat": 51.5511253, - "lon": 0.0082669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E15 11", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5781791420, - "lat": 51.5521834, - "lon": 0.0020254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5782288183, - "lat": 53.4711126, - "lon": -2.2900392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 20", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5783045618, - "lat": 51.2970199, - "lon": -0.8271571, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU51 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5784745843, - "lat": 53.4120583, - "lon": -1.4186209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "meter", - "ref": "S9 2149", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5784745844, - "lat": 53.4120755, - "lon": -1.4186947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S9 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5784763000, - "lat": 51.4275934, - "lon": -0.0866728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "has Pouch attached", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 2", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5786048704, - "lat": 52.3045721, - "lon": -2.5462331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "WR15 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "observation;bing" - } -}, -{ - "type": "node", - "id": 5786933407, - "lat": 50.8176311, - "lon": -0.1066966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 300", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5787374793, - "lat": 52.0542636, - "lon": -4.6593793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5787850048, - "lat": 51.4314508, - "lon": -2.8326970, - "tags": { - "amenity": "post_box", - "fixme": "approximate" - } -}, -{ - "type": "node", - "id": 5789493659, - "lat": 53.4830110, - "lon": -2.2685963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "460675288355774", - "note": "Ref Num obscured by tape by Royal Mail. Believed to be M6 26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M6 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5790608607, - "lat": 53.6656205, - "lon": -2.6414341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR7 60", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5790608608, - "lat": 53.6724614, - "lon": -2.6770833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PR7 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5790645138, - "lat": 54.2791929, - "lon": -1.7280192, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6596562", - "ref": "HG4 75", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 5790687940, - "lat": 55.5975945, - "lon": -1.8335683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE70 108D" - } -}, -{ - "type": "node", - "id": 5792791069, - "lat": 51.4091831, - "lon": 0.1122062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 385D", - "ref:GB:uprn": "10015470244", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5792791070, - "lat": 51.4065147, - "lon": 0.1148730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR5 666", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5792791110, - "lat": 51.4011919, - "lon": 0.1168095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 146", - "ref:GB:uprn": "10015279895", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5793759612, - "lat": 52.0804136, - "lon": -4.6843882, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5794473646, - "lat": 54.2270329, - "lon": -1.3474116, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5794557375, - "lat": 53.7546937, - "lon": -2.6934447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR1 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5794622057, - "lat": 56.1244603, - "lon": -4.0825955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 158", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5796495737, - "lat": 51.2830897, - "lon": -0.0351092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 553D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495738, - "lat": 51.2899861, - "lon": -0.0287535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 335D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495739, - "lat": 51.2984312, - "lon": -0.0340874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495740, - "lat": 51.2914929, - "lon": -0.0335275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495744, - "lat": 51.2871381, - "lon": -0.0358267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 342D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495745, - "lat": 51.2879752, - "lon": -0.0429109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 121D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495748, - "lat": 51.2964466, - "lon": -0.0489455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 278", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796495749, - "lat": 51.2903411, - "lon": -0.0515730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796514547, - "lat": 51.3129158, - "lon": -0.0333365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796514548, - "lat": 51.3168087, - "lon": -0.0293937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 167D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796514550, - "lat": 51.3185578, - "lon": -0.0406726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 386", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796514551, - "lat": 51.3240130, - "lon": -0.0424484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR6 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796689377, - "lat": 51.6800805, - "lon": -3.6286325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5796709919, - "lat": 51.6522373, - "lon": -3.6493090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA13 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5796818700, - "lat": 55.3425728, - "lon": -1.6120018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE65 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796855938, - "lat": 50.3592780, - "lon": -5.1435303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TR6 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5796866215, - "lat": 52.5330922, - "lon": -2.4357968, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5796952495, - "lat": 51.3826453, - "lon": 0.1207756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 323", - "ref:GB:uprn": "10015435935", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5796952496, - "lat": 51.3869013, - "lon": 0.1317512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR5 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5796952497, - "lat": 51.3933651, - "lon": 0.1158636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 322", - "ref:GB:uprn": "10015415950", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5796952498, - "lat": 51.3903975, - "lon": 0.1184978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 449D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5796952499, - "lat": 51.3872955, - "lon": 0.1137701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR5 147", - "ref:GB:uprn": "10015389738", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5798146053, - "lat": 52.3010321, - "lon": 1.0775953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP23 7173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5798746169, - "lat": 53.4638492, - "lon": -2.3460423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M17 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5798908971, - "lat": 52.6767521, - "lon": 1.3119046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5799617189, - "lat": 51.7604661, - "lon": -2.4913672, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL15 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5799617190, - "lat": 51.7559320, - "lon": -2.5027344, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL15 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5799668753, - "lat": 51.1666300, - "lon": -0.1690478, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "postal_code": "RH6 7NA" - } -}, -{ - "type": "node", - "id": 5799976029, - "lat": 52.5422825, - "lon": -0.2972375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE2 226D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5800792880, - "lat": 52.5913685, - "lon": -2.1188110, - "tags": { - "amenity": "post_box", - "source": "visual survey;estimate" - } -}, -{ - "type": "node", - "id": 5801513114, - "lat": 51.5475509, - "lon": 0.0058036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5801915100, - "lat": 57.1626730, - "lon": -2.1588550, - "tags": { - "addr:postcode": "AB16 5SR", - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB16 182D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 5802407446, - "lat": 51.9025183, - "lon": 0.9010363, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5802520098, - "lat": 52.3608728, - "lon": -3.4265542, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LD6 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5802532473, - "lat": 51.6987874, - "lon": -2.6822385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP16 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5802532474, - "lat": 51.6991033, - "lon": -2.6911797, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP16 421D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5804244072, - "lat": 54.8627797, - "lon": -6.2810643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5804489916, - "lat": 57.1654241, - "lon": -2.1626671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB16 184" - } -}, -{ - "type": "node", - "id": 5804706668, - "lat": 51.3650065, - "lon": 0.2095002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA4 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 5804706669, - "lat": 51.4197102, - "lon": 0.1264604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 5804706670, - "lat": 51.3810613, - "lon": 0.2208929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA4 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 5804706671, - "lat": 51.4169209, - "lon": 0.1246859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 338D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 5804706672, - "lat": 51.4259105, - "lon": 0.1355760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA14 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 5804706673, - "lat": 51.4044774, - "lon": 0.2376551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA4 307D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 5804733413, - "lat": 53.4811059, - "lon": -2.2446679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "mapillary": "472840330718089", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "M2 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5805244693, - "lat": 51.3722731, - "lon": 0.2182940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA4 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-02" - } -}, -{ - "type": "node", - "id": 5805244694, - "lat": 51.4233579, - "lon": 0.1313910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA14 399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 5805244695, - "lat": 51.3701043, - "lon": 0.2081352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "318407693114690", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DA4 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-16" - } -}, -{ - "type": "node", - "id": 5805244696, - "lat": 51.4306295, - "lon": 0.1398836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA14 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-08-01" - } -}, -{ - "type": "node", - "id": 5805244697, - "lat": 51.3849576, - "lon": 0.2258197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "W.T. Allen & Co, London", - "post_box:type": "wall", - "ref": "DA4 349D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-07-07" - } -}, -{ - "type": "node", - "id": 5805486122, - "lat": 51.7075563, - "lon": -2.7210481, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP16 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5806746609, - "lat": 53.4337043, - "lon": -2.8809768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L12 185" - } -}, -{ - "type": "node", - "id": 5806782192, - "lat": 55.7143091, - "lon": -2.1481541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "wall", - "ref": "TD15 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5807414267, - "lat": 51.3553356, - "lon": -0.0906171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 115", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5807414271, - "lat": 51.3556321, - "lon": -0.0862290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 344D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5807414275, - "lat": 51.3477991, - "lon": -0.0772107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 332D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5807414276, - "lat": 51.3475357, - "lon": -0.0836407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5808978257, - "lat": 51.3504786, - "lon": -0.1449251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5809020708, - "lat": 51.3540952, - "lon": -0.1291645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate David Weir, Gold Medal winner London 2012 Paralympic Games. Athletics: Road - Men's Marathon, T54", - "note": "This is a gold Olympic postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5809433377, - "lat": 52.3663810, - "lon": -2.0343497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B60 720D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5809534838, - "lat": 57.1636603, - "lon": -2.1700653, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 7SD", - "addr:street": "Springhill Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB16 181D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "digitalglobe;survey;knowledge" - } -}, -{ - "type": "node", - "id": 5810244384, - "lat": 51.9378010, - "lon": 0.1985702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM22 42D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5810538865, - "lat": 50.8889837, - "lon": -0.1930372, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "ref": "BN45 343" - } -}, -{ - "type": "node", - "id": 5810655067, - "lat": 57.1419736, - "lon": -4.6862354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH32 90D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5811743557, - "lat": 52.2313422, - "lon": -2.6620737, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR6 927", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5813583894, - "lat": 56.2576436, - "lon": -4.5777837, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5813926738, - "lat": 51.8017824, - "lon": 1.1944532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO15 112" - } -}, -{ - "type": "node", - "id": 5814531366, - "lat": 53.4687525, - "lon": -2.1909804, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "delivery panel sign missing", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5815763943, - "lat": 53.6425541, - "lon": -2.6042224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 77", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5816104689, - "lat": 52.2354969, - "lon": 0.7259468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP33 2061D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5816133930, - "lat": 51.0783791, - "lon": -2.3379130, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5816555477, - "lat": 51.3345814, - "lon": -1.7669171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5816674506, - "lat": 52.1302332, - "lon": -0.7771844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MK16 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5816708202, - "lat": 53.5137212, - "lon": -2.4104686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5818162193, - "lat": 51.4566092, - "lon": -0.9708183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RG1 6260D;RG1 626D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5820150740, - "lat": 50.5401506, - "lon": -3.5036932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ14 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 5820362640, - "lat": 51.2763551, - "lon": -2.3921967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5821459859, - "lat": 53.0594289, - "lon": -2.6173773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW5 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5821459860, - "lat": 53.0546758, - "lon": -2.6384971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW5 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5821575619, - "lat": 52.1069088, - "lon": -3.6392510, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "LD5 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5822642124, - "lat": 53.6346626, - "lon": -2.7095306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "318183256360741", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 100", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5822878235, - "lat": 53.6427036, - "lon": -2.7219406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 63" - } -}, -{ - "type": "node", - "id": 5823071935, - "lat": 51.5434961, - "lon": 0.0052879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "description": "MORRISONS SUPERMARKET", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E15 8", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5823587454, - "lat": 53.6460593, - "lon": -2.7245879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Bradley Wiggins Gold Medal winner London 2012 Olympic games Cycling: Road - Mens Time Trial", - "note": "Gold Painted", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR7 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5824090520, - "lat": 52.0465424, - "lon": -4.5911372, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA43 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5824402435, - "lat": 57.4635812, - "lon": -4.2113484, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-16", - "collection_times": "Mo-Fr 17:15; Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 101", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5824402436, - "lat": 57.4526812, - "lon": -4.2143760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mail:meter": "no", - "mail:stamped": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 457", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5824497284, - "lat": 51.4143509, - "lon": 0.1229156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:30", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DA14 4001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5824497285, - "lat": 51.4143445, - "lon": 0.1228947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5824534243, - "lat": 52.0712727, - "lon": -0.7739681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "MK14 193" - } -}, -{ - "type": "node", - "id": 5825821715, - "lat": 51.8135681, - "lon": -4.4958007, - "tags": { - "access": "yes", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA33 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5825985548, - "lat": 51.4219016, - "lon": 0.1105531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5826482676, - "lat": 52.3557096, - "lon": -3.7979677, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5827798709, - "lat": 54.1363549, - "lon": -1.5265256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5827802683, - "lat": 54.0918824, - "lon": -1.5025118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HG3 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5827802684, - "lat": 54.0914262, - "lon": -1.4976557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HG3 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5827821366, - "lat": 54.1217295, - "lon": -1.5243530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HG4 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5827825458, - "lat": 54.1428071, - "lon": -1.4992435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HG4 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5827841973, - "lat": 54.8364876, - "lon": -1.5878161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-11-20", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH2 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5828739001, - "lat": 55.0476093, - "lon": -1.6238261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE13 311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5829225681, - "lat": 51.8223355, - "lon": -3.0154563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5830058954, - "lat": 53.9070372, - "lon": -0.7284168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "post_box:type": "wall", - "ref": "YO42 352", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5830551213, - "lat": 53.3754651, - "lon": -1.4548252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "S2 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5832083923, - "lat": 53.4065774, - "lon": -1.4131947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S9 1211" - } -}, -{ - "type": "node", - "id": 5832083924, - "lat": 53.4065776, - "lon": -1.4131361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S9 1210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5832165151, - "lat": 51.3583422, - "lon": -0.0892790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 107", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5832778569, - "lat": 52.3548998, - "lon": -1.6518945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV8 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5832778570, - "lat": 52.3549062, - "lon": -1.6518948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV8 390", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5832959991, - "lat": 52.0335119, - "lon": 1.1340546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 1422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5832967355, - "lat": 52.0321059, - "lon": 1.1287646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5832968197, - "lat": 57.2236248, - "lon": -2.1759620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5833033420, - "lat": 52.0469654, - "lon": 1.1485737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5833039261, - "lat": 52.0488436, - "lon": 1.1508831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP2 1138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5833325211, - "lat": 50.8420872, - "lon": -0.4187046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1786D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5833335497, - "lat": 50.8468268, - "lon": -0.4032223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1779D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5833349835, - "lat": 50.8443671, - "lon": -0.4023760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN13 1764D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5833364048, - "lat": 50.8394313, - "lon": -0.3929302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1775D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5833405388, - "lat": 50.8340391, - "lon": -0.3681707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5833480741, - "lat": 54.1354390, - "lon": -6.4849183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5833539016, - "lat": 51.8925845, - "lon": -3.2419451, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-25", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD3 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5833545414, - "lat": 58.3520016, - "lon": -6.5220940, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5834101496, - "lat": 55.1059596, - "lon": -4.1649154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "mapillary": "193203946673468", - "note": "reference number obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5834194924, - "lat": 51.8978257, - "lon": 0.7859554, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 5834974026, - "lat": 56.3195851, - "lon": -2.8378665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 346", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5836238803, - "lat": 53.5135699, - "lon": -2.2713448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "M7 456D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5836647292, - "lat": 52.0614179, - "lon": 1.1507095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1007", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836661124, - "lat": 52.0652147, - "lon": 1.1520565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1059", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836662105, - "lat": 52.0711513, - "lon": 1.1567455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836662106, - "lat": 52.0718393, - "lon": 1.1498815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1303", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836665185, - "lat": 52.0692357, - "lon": 1.1531289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836699996, - "lat": 52.0693630, - "lon": 1.1355783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836702506, - "lat": 52.0647017, - "lon": 1.1417477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP1 1104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836709851, - "lat": 52.0675698, - "lon": 1.1487557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP1 1097", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836751048, - "lat": 52.0463682, - "lon": 1.1422152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836751049, - "lat": 52.0364413, - "lon": 1.1298808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 1041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836751050, - "lat": 52.0384310, - "lon": 1.1322047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1288", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5836752309, - "lat": 52.0395017, - "lon": 1.1232386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 1169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836753362, - "lat": 52.0433280, - "lon": 1.1234942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836755682, - "lat": 52.0421964, - "lon": 1.1280837, - "tags": { - "amenity": "post_box", - "note": "plate mostly missing Aug 2018", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836757859, - "lat": 52.0467397, - "lon": 1.1313423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP2 8133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5836762193, - "lat": 52.0479689, - "lon": 1.1306098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5838336640, - "lat": 56.6429252, - "lon": -2.6398528, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5838365310, - "lat": 57.3071885, - "lon": -2.1296080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5838999679, - "lat": 53.4572883, - "lon": -2.1671287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M18 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5839118059, - "lat": 55.9759370, - "lon": -2.7077496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH41 10D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5839771387, - "lat": 51.6453194, - "lon": -0.1894043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5839799037, - "lat": 56.6191011, - "lon": -2.6448282, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5839822086, - "lat": 56.5941614, - "lon": -2.6434790, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5840032906, - "lat": 52.3411886, - "lon": -0.8235119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 119", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5840032907, - "lat": 52.3428668, - "lon": -0.8188111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NN6 568D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5840237623, - "lat": 51.2873744, - "lon": 0.3375251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN15 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5840237624, - "lat": 51.2879634, - "lon": 0.3497914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN15 246", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5840237625, - "lat": 51.2465785, - "lon": 0.3059303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN11 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5840593240, - "lat": 50.9615666, - "lon": -0.5081401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "description": "This postbox is a private postbox inside the Tesco store.", - "post_box:type": "indoor" - } -}, -{ - "type": "node", - "id": 5840595789, - "lat": 50.9678105, - "lon": -0.4887513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5840596501, - "lat": 50.7740211, - "lon": -0.8651246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5840598816, - "lat": 50.7754104, - "lon": -0.8674406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5840603641, - "lat": 50.7912035, - "lon": -0.8610012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO20 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5840611392, - "lat": 50.7875418, - "lon": -0.8516287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5841240581, - "lat": 51.0214645, - "lon": -3.9615028, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5841571477, - "lat": 53.0228296, - "lon": -0.8952199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG23 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5841581077, - "lat": 53.0389256, - "lon": -0.8774724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG23 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5841597376, - "lat": 53.0719316, - "lon": -0.8174084, - "tags": { - "amenity": "post_box", - "mapillary": "379615793361027", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG24 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2015-12-03", - "survey:date": "2019-08-13" - } -}, -{ - "type": "node", - "id": 5843891015, - "lat": 53.2697010, - "lon": -4.2665429, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LL77 55" - } -}, -{ - "type": "node", - "id": 5844092924, - "lat": 50.8126527, - "lon": -0.3877364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1626D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5844684880, - "lat": 53.7930829, - "lon": -2.2960648, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BB12 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5844684881, - "lat": 53.7961620, - "lon": -2.2976862, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB12 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5844684882, - "lat": 53.7988219, - "lon": -2.3086524, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB12 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5844684883, - "lat": 53.8006492, - "lon": -2.3223183, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BB12 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5846100862, - "lat": 54.1242163, - "lon": -2.6922617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 101" - } -}, -{ - "type": "node", - "id": 5846532938, - "lat": 54.1560825, - "lon": -2.6015722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA6 136" - } -}, -{ - "type": "node", - "id": 5846641875, - "lat": 51.5808326, - "lon": -0.3267821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 67", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5847107924, - "lat": 53.2483881, - "lon": -3.9673828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL33 290D" - } -}, -{ - "type": "node", - "id": 5847400059, - "lat": 51.2111830, - "lon": -2.6424915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA5 17D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5847401707, - "lat": 51.2086050, - "lon": -2.6470748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-27", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BA5 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5847401808, - "lat": 51.2074178, - "lon": -2.6533806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA5 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-08-21" - } -}, -{ - "type": "node", - "id": 5848405585, - "lat": 51.4499904, - "lon": -2.4636465, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5848696116, - "lat": 51.3837294, - "lon": -0.1031801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 162", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5849720631, - "lat": 50.7954941, - "lon": -0.6855024, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5849727866, - "lat": 50.7969791, - "lon": -0.6394140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5849730397, - "lat": 50.7981777, - "lon": -0.6329826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO22 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5851339251, - "lat": 50.4089953, - "lon": -4.9437203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR8 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5851779865, - "lat": 51.2179149, - "lon": -0.2680680, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5851819832, - "lat": 51.4149288, - "lon": -0.7364769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "RG12 206" - } -}, -{ - "type": "node", - "id": 5851822296, - "lat": 51.4171603, - "lon": -0.7386589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG12 48", - "source": "survey;Esri World Imagery (Clarity) Beta;Mapillary Images" - } -}, -{ - "type": "node", - "id": 5851927067, - "lat": 50.8106246, - "lon": -0.3869197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1611D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5851940801, - "lat": 50.8076860, - "lon": -0.3853568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Post Office Ltd", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1614D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_date": "2022-12-02" - } -}, -{ - "type": "node", - "id": 5851990803, - "lat": 51.4151554, - "lon": -0.7415906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG12 165" - } -}, -{ - "type": "node", - "id": 5852151162, - "lat": 51.6604757, - "lon": -0.5100548, - "tags": { - "amenity": "post_box", - "ref": "WD3 253" - } -}, -{ - "type": "node", - "id": 5852151638, - "lat": 51.6541731, - "lon": -0.5197518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "ref": "WD3 144", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5852151905, - "lat": 51.6561891, - "lon": -0.5201125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD3 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5852151908, - "lat": 51.6591176, - "lon": -0.5221604, - "tags": { - "amenity": "post_box", - "ref": "WD3 331D" - } -}, -{ - "type": "node", - "id": 5852358485, - "lat": 53.9502113, - "lon": -2.1634457, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD23 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5852376054, - "lat": 51.4167793, - "lon": -0.7509066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "mapillary": "834853010744891", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG12 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5852376055, - "lat": 51.4163063, - "lon": -0.7475479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG12 224", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5852376056, - "lat": 51.4162966, - "lon": -0.7474880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "RG12 225", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5854531320, - "lat": 51.2592311, - "lon": 0.3076172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN15 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5854531329, - "lat": 51.2100380, - "lon": 0.3432912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN11 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5854531334, - "lat": 51.2515418, - "lon": 0.3075435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN11 148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5854531338, - "lat": 51.2137313, - "lon": 0.3002661, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN10 340" - } -}, -{ - "type": "node", - "id": 5854715730, - "lat": 51.7635032, - "lon": -1.8262283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL7 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5854759572, - "lat": 51.2117963, - "lon": -2.6465128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5854759582, - "lat": 51.2764393, - "lon": -2.5777665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5854923440, - "lat": 51.4152218, - "lon": -2.5410104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5856532888, - "lat": 53.4788052, - "lon": -1.5734127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S36 462D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5856934864, - "lat": 52.2931873, - "lon": -1.8902463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 163D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5856934875, - "lat": 52.2955900, - "lon": -1.8900800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5856941782, - "lat": 52.3056707, - "lon": -1.9020888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5856941783, - "lat": 52.3034907, - "lon": -1.8996288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5856961432, - "lat": 51.2884475, - "lon": -0.1018447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 591D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5857010108, - "lat": 53.4303120, - "lon": -1.4912407, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 693" - } -}, -{ - "type": "node", - "id": 5857044263, - "lat": 53.4110029, - "lon": -1.5045372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "S6 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5857044267, - "lat": 53.3917119, - "lon": -1.4840294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 77D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5857232527, - "lat": 51.7916675, - "lon": -4.9448895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA62 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5857241455, - "lat": 53.3734425, - "lon": -1.4385558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 748D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5857241456, - "lat": 53.3686474, - "lon": -1.4408571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S2 557", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5857241457, - "lat": 53.3836583, - "lon": -1.4515467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5857271371, - "lat": 55.8655283, - "lon": -4.0188872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ML5 1D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5857279612, - "lat": 50.9535587, - "lon": -0.4844061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of the new modern EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5857379647, - "lat": 53.3835865, - "lon": -1.4462015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "pillar", - "ref": "S2 572D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5858808213, - "lat": 53.3734066, - "lon": -1.4465711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5858811220, - "lat": 53.3742311, - "lon": -1.4322101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 793D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5858814873, - "lat": 53.3768844, - "lon": -1.4235974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 268D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5858818614, - "lat": 53.3716427, - "lon": -1.4190323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5858818615, - "lat": 53.3671786, - "lon": -1.4237440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S2 484", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5858826811, - "lat": 53.3655269, - "lon": -1.4283929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "S2 494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5858832922, - "lat": 53.3604454, - "lon": -1.4290149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "post_box:type": "pillar", - "ref": "S12 488", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5858844075, - "lat": 53.3763985, - "lon": -1.4515843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S2 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5858896706, - "lat": 53.3748044, - "lon": -1.4750116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S1 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5859028539, - "lat": 54.2640798, - "lon": -0.7236769, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5859038231, - "lat": 54.2573259, - "lon": -0.7695105, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5859055645, - "lat": 54.2231986, - "lon": -0.7706504, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5859058877, - "lat": 51.7447790, - "lon": -1.8902036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5859159279, - "lat": 55.7776219, - "lon": -4.0786649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5859615735, - "lat": 52.0478976, - "lon": 1.1809498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP3 1091", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5859615736, - "lat": 52.0497494, - "lon": 1.1713247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1039", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5859622129, - "lat": 51.7236617, - "lon": -0.5331943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5860800082, - "lat": 53.3872925, - "lon": -1.4626202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "yes", - "name": "Post box Inside Pharmacy", - "post_box:type": "pillar", - "ref": "S3 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5860814319, - "lat": 53.3922056, - "lon": -1.4822534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 1624D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5860840339, - "lat": 53.3948868, - "lon": -1.4742680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "S3 1222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5860843642, - "lat": 53.3949249, - "lon": -1.4743231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "meter", - "ref": "S3 1223P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5860926976, - "lat": 53.3919728, - "lon": -1.4642869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S3 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5860946552, - "lat": 55.8240142, - "lon": -4.2757902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "G41 130D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5860959649, - "lat": 53.3925438, - "lon": -1.4576578, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-20", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S4 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5861062699, - "lat": 53.0424792, - "lon": -1.3761047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "DE5 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5862060238, - "lat": 55.7666848, - "lon": -4.0768301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5862060352, - "lat": 55.7838656, - "lon": -4.0864377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5862284449, - "lat": 50.8517157, - "lon": 0.5504518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN38 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5862284450, - "lat": 50.8508623, - "lon": 0.5513154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN38 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5862284451, - "lat": 50.8528946, - "lon": 0.5682334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5862284452, - "lat": 50.8519155, - "lon": 0.5623125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5862284453, - "lat": 50.8509060, - "lon": 0.5554697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN38 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5863108542, - "lat": 50.8512741, - "lon": 0.5376937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN38 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5863108543, - "lat": 50.8528380, - "lon": 0.5463010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN38 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5863185870, - "lat": 51.6278077, - "lon": 0.2910278, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5863218615, - "lat": 53.3857504, - "lon": -1.4365134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S9 1214" - } -}, -{ - "type": "node", - "id": 5863374708, - "lat": 53.8742185, - "lon": -1.7596498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS20 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863472711, - "lat": 50.7070103, - "lon": -2.6124224, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015325531" - } -}, -{ - "type": "node", - "id": 5863613936, - "lat": 53.3918111, - "lon": -1.4093019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "S9 1218", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5863613937, - "lat": 53.3917982, - "lon": -1.4091736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "post_box:type": "pillar", - "ref": "S9 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863826197, - "lat": 57.0794892, - "lon": -2.3446110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 480", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5863880492, - "lat": 51.2460249, - "lon": 0.2990960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN11 316", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5863880493, - "lat": 51.2583890, - "lon": 0.2964616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN15 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863880495, - "lat": 51.2294115, - "lon": 0.2438113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN11 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863880497, - "lat": 51.2040110, - "lon": 0.2715219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN10 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863880500, - "lat": 51.2350758, - "lon": 0.2473896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN11 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863880502, - "lat": 51.2085954, - "lon": 0.2586290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN11 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863880505, - "lat": 51.2088165, - "lon": 0.3540881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN11 97D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5863880507, - "lat": 51.2168934, - "lon": 0.2400027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN11 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5863880508, - "lat": 51.2182782, - "lon": 0.3942664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN12 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5864537236, - "lat": 52.1230670, - "lon": -1.3582327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX17 1062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5865348657, - "lat": 54.5926409, - "lon": -5.6939686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5865721108, - "lat": 53.7648339, - "lon": -2.6710664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "485248736240240", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR1 91", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5865987133, - "lat": 53.7538922, - "lon": -2.6132856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 162" - } -}, -{ - "type": "node", - "id": 5866062120, - "lat": 53.7058291, - "lon": -2.5735956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 61" - } -}, -{ - "type": "node", - "id": 5866085724, - "lat": 50.8546230, - "lon": 0.5737373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN34 195D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5866085725, - "lat": 50.8589076, - "lon": 0.5650385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5866085726, - "lat": 50.8571659, - "lon": 0.5651440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5866085727, - "lat": 50.8548530, - "lon": 0.5639370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN37 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5866085728, - "lat": 50.8535915, - "lon": 0.5651064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN37 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5866115891, - "lat": 50.8523716, - "lon": 0.5602344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "TN37 1372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 5866115892, - "lat": 50.8518247, - "lon": 0.5574154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN38 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5866359185, - "lat": 51.3745549, - "lon": -0.4077952, - "tags": { - "amenity": "post_box", - "collection_plate": "CP15D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "KT12 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5866394898, - "lat": 50.8093556, - "lon": -0.5408771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5866431132, - "lat": 52.6617343, - "lon": -3.9868730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5869002064, - "lat": 51.1977476, - "lon": 0.2798646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN9 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5869002065, - "lat": 51.1909481, - "lon": 0.3198449, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN11 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5869002066, - "lat": 51.2076755, - "lon": 0.3006746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN10 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5869002067, - "lat": 51.2768733, - "lon": 0.4352073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME19 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5869002068, - "lat": 51.1854291, - "lon": 0.2841590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN9 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5869002069, - "lat": 51.2079017, - "lon": 0.3711905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5869461569, - "lat": 53.8826141, - "lon": -0.7998069, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5869461578, - "lat": 53.8839795, - "lon": -0.8019351, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5869542043, - "lat": 52.3721616, - "lon": -1.9562967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B48 1194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5871981758, - "lat": 53.0001396, - "lon": -2.7063968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 745" - } -}, -{ - "type": "node", - "id": 5871981759, - "lat": 52.9817806, - "lon": -2.7105777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 676", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5871981761, - "lat": 53.0031984, - "lon": -2.7113302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 624", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5873131370, - "lat": 56.3607465, - "lon": -3.6327819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH7 48", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 5873370863, - "lat": 51.3403839, - "lon": 0.1112847, - "tags": { - "amenity": "post_box", - "name": "Pratts Bottom Post Box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5874179728, - "lat": 53.3148732, - "lon": -3.4754030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5875519686, - "lat": 55.1066497, - "lon": -1.5820950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "postal_code": "NE23 3AW", - "ref": "NE23 472D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5876807173, - "lat": 52.9964272, - "lon": -2.7151690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 699", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5876807174, - "lat": 53.0151491, - "lon": -2.7139934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 07:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5879209003, - "lat": 52.2055748, - "lon": 0.4257258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5879369162, - "lat": 53.2147214, - "lon": -2.5641929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 76D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5879740112, - "lat": 50.8192882, - "lon": -0.6127387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5879968693, - "lat": 51.3659547, - "lon": -1.5725510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5879976678, - "lat": 51.3521940, - "lon": -1.6167444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5879993309, - "lat": 51.3397763, - "lon": -1.7661595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SN9 62;SN9 620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5880895678, - "lat": 51.7383760, - "lon": -2.1003217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5881245551, - "lat": 52.6724619, - "lon": -0.3052058, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5882912468, - "lat": 51.5663936, - "lon": -2.8205790, - "tags": { - "amenity": "post_box", - "ref": "NP26 283" - } -}, -{ - "type": "node", - "id": 5883047052, - "lat": 53.6570846, - "lon": -0.5924593, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 5884061510, - "lat": 51.0665474, - "lon": -4.0486316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX32 235" - } -}, -{ - "type": "node", - "id": 5884288299, - "lat": 51.9161034, - "lon": -2.5789338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "HR9 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5884897364, - "lat": 52.5505763, - "lon": -0.2974923, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 5885971972, - "lat": 51.2020536, - "lon": -0.4046863, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH5 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5888668601, - "lat": 51.4090969, - "lon": -0.1062933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668603, - "lat": 51.4044021, - "lon": -0.1020326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 129D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668604, - "lat": 51.4000750, - "lon": -0.1032409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 376D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668605, - "lat": 51.3994625, - "lon": -0.1059929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668606, - "lat": 51.4013693, - "lon": -0.1095120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668607, - "lat": 51.3991379, - "lon": -0.1117730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 178", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668608, - "lat": 51.4017851, - "lon": -0.1138088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR7 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668609, - "lat": 51.4045770, - "lon": -0.1100846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668610, - "lat": 51.4029071, - "lon": -0.1138417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 65D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668611, - "lat": 51.4056520, - "lon": -0.1135419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668612, - "lat": 51.4072498, - "lon": -0.1159465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "fixme": "Faceplate missing on survey 06/09/18. Spoke to postman who said it was still in use and he had reported the faceplate missing twice. I believe this to be SW16 66.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668613, - "lat": 51.4084603, - "lon": -0.1168531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 40", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668614, - "lat": 51.4099846, - "lon": -0.1149540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 273D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5888668615, - "lat": 51.4021544, - "lon": -0.0932043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 143D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5890179263, - "lat": 51.2115619, - "lon": -0.4647605, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU5 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5890310954, - "lat": 51.5031781, - "lon": -3.1913249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5890743505, - "lat": 53.4450205, - "lon": -1.5506330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5890743508, - "lat": 53.4075984, - "lon": -1.4511463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S5 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5890743511, - "lat": 53.4827319, - "lon": -1.5962769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S36 1275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5891231811, - "lat": 51.7540639, - "lon": 0.4932390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CM1 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5891653992, - "lat": 50.3918921, - "lon": -4.0278368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 59D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5893058951, - "lat": 51.2544285, - "lon": -0.9373791, - "tags": { - "amenity": "post_box", - "mapillary": "3104936616404835", - "post_box:type": "pillar", - "survey:date": "2020-06-03" - } -}, -{ - "type": "node", - "id": 5893178266, - "lat": 51.3754899, - "lon": -0.1180940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CR0 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5893313614, - "lat": 52.5432694, - "lon": -0.3015895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE2 101", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5894250164, - "lat": 51.8823276, - "lon": -2.4640194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GL17 5", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5894590358, - "lat": 51.4957527, - "lon": -3.1894174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5894604724, - "lat": 51.0128012, - "lon": -3.3753602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:00", - "colour": "red", - "direction": "NW", - "name": "Venn Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 189" - } -}, -{ - "type": "node", - "id": 5894605700, - "lat": 50.9903613, - "lon": -3.4892723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "colour": "red", - "direction": "E", - "name": "South Molton Road | Bampton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX16 31" - } -}, -{ - "type": "node", - "id": 5894943907, - "lat": 50.8051871, - "lon": 0.2723932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN22 841D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5895101760, - "lat": 51.7989574, - "lon": -0.8028884, - "tags": { - "amenity": "post_box", - "ref": "HP21 34D" - } -}, -{ - "type": "node", - "id": 5895142163, - "lat": 51.1843870, - "lon": -0.4630941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU5 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5895936696, - "lat": 51.6569264, - "lon": -0.2731633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WD6 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5895936714, - "lat": 51.6578884, - "lon": -0.2715038, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-02-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD6 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5895954084, - "lat": 51.5123553, - "lon": -3.2292381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5896692341, - "lat": 52.4414271, - "lon": -4.0321116, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5896711326, - "lat": 50.4489958, - "lon": -4.4993640, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5897218745, - "lat": 57.1278129, - "lon": -2.6877712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-09-10", - "collection_times": "Mo-Fr 14:45; Sa 11:45", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB31 483", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5897218746, - "lat": 57.0926605, - "lon": -2.5747544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Fr 14:30; Sa 12:00; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 218", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5898982454, - "lat": 51.4804617, - "lon": -0.3366059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5902378092, - "lat": 51.9080129, - "lon": 0.9326389, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5902378098, - "lat": 51.9063830, - "lon": 0.9278700, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO4 442D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5902378105, - "lat": 51.9027109, - "lon": 0.9303845, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5902604558, - "lat": 56.0540014, - "lon": -3.3769722, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY11 29" - } -}, -{ - "type": "node", - "id": 5902844404, - "lat": 50.7792735, - "lon": -0.7263961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "last_checked": "2021-05-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO21 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5903446885, - "lat": 51.8186137, - "lon": -3.0665293, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5904437545, - "lat": 53.0920150, - "lon": -2.7463398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5904445309, - "lat": 50.8689146, - "lon": 0.5565462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 72" - } -}, -{ - "type": "node", - "id": 5904452037, - "lat": 53.0501834, - "lon": -2.7458035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 621" - } -}, -{ - "type": "node", - "id": 5904925920, - "lat": 50.4168826, - "lon": -4.5143549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL14 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5905967348, - "lat": 53.1644481, - "lon": -2.2241809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW12 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5906336130, - "lat": 53.1144490, - "lon": -2.7969659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5906351802, - "lat": 53.0948766, - "lon": -2.7764080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5906359181, - "lat": 53.0840669, - "lon": -2.7621526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 36" - } -}, -{ - "type": "node", - "id": 5907134574, - "lat": 56.8166937, - "lon": -5.1114482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5907134576, - "lat": 56.8088600, - "lon": -5.1152213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 10", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5907134577, - "lat": 56.8121444, - "lon": -5.1180518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PH33 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5907134578, - "lat": 56.8393532, - "lon": -5.1001132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 25D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5907134579, - "lat": 56.8418458, - "lon": -5.1004370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PH33 32D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5907134580, - "lat": 56.8451600, - "lon": -5.1339848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH33 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5907293789, - "lat": 56.1589668, - "lon": -3.0641980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 82D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5907947389, - "lat": 53.4153628, - "lon": -1.4111705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "level": "0", - "post_box:type": "pillar", - "ref": "S9 1612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5907958823, - "lat": 53.4163598, - "lon": -1.4131816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "level": "0", - "post_box:type": "pillar", - "ref": "S9 1251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5907977662, - "lat": 53.4119754, - "lon": -1.4127479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "S9 1609", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5907977663, - "lat": 53.4119748, - "lon": -1.4127126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S9 1610", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5907977664, - "lat": 53.4119731, - "lon": -1.4126828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "S9 1608", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5908286518, - "lat": 52.3414278, - "lon": -1.8559641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "not the ref I was expecting to find here. Ref confirmed 16/09/20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B95 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5908398650, - "lat": 53.6475723, - "lon": -2.3929065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BL7 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5908398652, - "lat": 53.6590126, - "lon": -2.3860634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5908398653, - "lat": 53.6730676, - "lon": -2.3858221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5910160174, - "lat": 51.2408772, - "lon": -0.2030925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "opening_hours": "Mo-Fr 10:00-18:00; Sa-Su off", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH2 398", - "royal_cypher": "no", - "source": "survey", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 5910161333, - "lat": 51.5011319, - "lon": -3.2212599, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5910284827, - "lat": 55.7770850, - "lon": -4.0866577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5910569698, - "lat": 51.7019908, - "lon": -0.9045877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX39 477", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5910569771, - "lat": 51.7002350, - "lon": -0.9075730, - "tags": { - "amenity": "post_box", - "ref": "OX39 531D" - } -}, -{ - "type": "node", - "id": 5910570481, - "lat": 51.7009620, - "lon": -0.9172389, - "tags": { - "amenity": "post_box", - "ref": "OX39 500" - } -}, -{ - "type": "node", - "id": 5910570614, - "lat": 51.7047314, - "lon": -0.9126127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX39 530" - } -}, -{ - "type": "node", - "id": 5912264804, - "lat": 51.4881021, - "lon": -2.7529117, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS20 700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5912694414, - "lat": 55.7715877, - "lon": -4.0685885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5916710367, - "lat": 51.5369759, - "lon": 0.7121764, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS1 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5917139043, - "lat": 52.5447911, - "lon": -0.2861344, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 5917851221, - "lat": 51.6032893, - "lon": -0.2705459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 751D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5918675483, - "lat": 57.0206136, - "lon": -4.2288417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH20 31" - } -}, -{ - "type": "node", - "id": 5918675788, - "lat": 57.0181282, - "lon": -4.2518404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH20 30" - } -}, -{ - "type": "node", - "id": 5919351956, - "lat": 50.8004682, - "lon": -0.0396959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN2 159", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919355186, - "lat": 50.7993284, - "lon": -0.0330789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN2 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919356931, - "lat": 50.8064448, - "lon": -0.0226333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "last_checked": "2022-05-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919359210, - "lat": 50.8003459, - "lon": -0.0289951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-05-21", - "note": "This is a recent design of lamp posbox, say 2010s.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN2 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919365460, - "lat": 50.8038469, - "lon": -0.0279990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-05-21", - "old_ref": "BN2 163", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 163D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919367343, - "lat": 50.8034058, - "lon": -0.0332525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 164", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919367369, - "lat": 50.8046517, - "lon": -0.0395382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 158", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919372844, - "lat": 50.8082400, - "lon": -0.0341751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN2 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919373611, - "lat": 50.8103834, - "lon": -0.0318973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN2 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919374519, - "lat": 50.8117991, - "lon": -0.0342727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 167", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919375672, - "lat": 50.8095564, - "lon": -0.0382710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN2 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919376334, - "lat": 52.6267435, - "lon": -0.9952481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "image": "https://www.mapillary.com/app/?lat=52.626783214558486&lng=-0.9952875506141936&z=17&pKey=MfEfU0jdHULiSROiCvl0Wg", - "mapillary": "MfEfU0jdHULiSROiCvl0Wg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE7 589D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5919376610, - "lat": 50.8095572, - "lon": -0.0435707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN2 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919379285, - "lat": 50.8077559, - "lon": -0.0470234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919383331, - "lat": 50.8064778, - "lon": -0.0401983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 157", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919384483, - "lat": 50.8047280, - "lon": -0.0439286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 156", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919387781, - "lat": 50.8045027, - "lon": -0.0485829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN2 170", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919388031, - "lat": 50.8018299, - "lon": -0.0484842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN2 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919388444, - "lat": 50.8031663, - "lon": -0.0524917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN2 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919390807, - "lat": 50.8078397, - "lon": -0.0553820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN2 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919390808, - "lat": 50.8094408, - "lon": -0.0516561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 222", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5919394081, - "lat": 50.8034939, - "lon": -0.0569722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN2 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920038465, - "lat": 50.8284098, - "lon": -0.1288669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN2 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920237731, - "lat": 50.8259886, - "lon": -0.1272687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN2 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920243492, - "lat": 50.8277610, - "lon": -0.1249083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920250954, - "lat": 50.8269225, - "lon": -0.1175373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920254060, - "lat": 50.8291435, - "lon": -0.1192555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920254787, - "lat": 50.8270845, - "lon": -0.1204587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920266759, - "lat": 50.8315321, - "lon": -0.1177976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN2 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920275977, - "lat": 50.8313006, - "lon": -0.1220158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 203D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920275978, - "lat": 50.8317685, - "lon": -0.1255508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 198D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920275979, - "lat": 50.8339299, - "lon": -0.1197590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 197", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920290003, - "lat": 50.8358096, - "lon": -0.1304470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN2 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5920292802, - "lat": 50.8347401, - "lon": -0.1296219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN2 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5921491029, - "lat": 56.0961475, - "lon": -3.9306784, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5922027650, - "lat": 53.1412769, - "lon": -2.8114599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 247D" - } -}, -{ - "type": "node", - "id": 5923028658, - "lat": 53.4266504, - "lon": -1.3537632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "VR box but no cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S60 6", - "royal_cypher": "no", - "source": "gps survey" - } -}, -{ - "type": "node", - "id": 5923779038, - "lat": 53.3828636, - "lon": -1.4785106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S1 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5923836959, - "lat": 52.5794996, - "lon": -0.2386492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 86D" - } -}, -{ - "type": "node", - "id": 5924212523, - "lat": 53.0387604, - "lon": -2.7491028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 677", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5924276902, - "lat": 53.0210993, - "lon": -2.7662201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY14 701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5924373680, - "lat": 53.0206960, - "lon": -2.7605166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30; Su off", - "drive_through": "no", - "note": "Collections and Identification information for this Post Box are incorrect. Actual reference on the box is for a Porthmadog post box (LL51 63) and collections refer to that area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5924911340, - "lat": 51.3625854, - "lon": -0.1343382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5925234608, - "lat": 51.0862607, - "lon": -3.3117718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "colour": "red", - "direction": "NE", - "name": "Rectory | Brompton Ralph", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TA4 2RY", - "ref": "TA4 519" - } -}, -{ - "type": "node", - "id": 5925917092, - "lat": 53.4055007, - "lon": -3.1531551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH47 494 by Machan of Scotland on Bennets Lane, Meols.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH47 494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bennets Lane, Meols.jpg" - } -}, -{ - "type": "node", - "id": 5925919110, - "lat": 51.8149071, - "lon": -0.3533819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "AL5 132;AL5 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5925919162, - "lat": 51.8184475, - "lon": -0.3574940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "post_box:type": "pillar", - "ref": "AL5 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5925919163, - "lat": 51.8253401, - "lon": -0.3614161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5926093603, - "lat": 51.5939206, - "lon": -0.3881915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5926879651, - "lat": 53.6898448, - "lon": -1.5162233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF2 277" - } -}, -{ - "type": "node", - "id": 5927114164, - "lat": 51.2773093, - "lon": -0.0859232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 34", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927114165, - "lat": 51.2643284, - "lon": -0.0906453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927114166, - "lat": 51.2698212, - "lon": -0.0923860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927114167, - "lat": 51.2716042, - "lon": -0.0881103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR3 223D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927119551, - "lat": 51.0802280, - "lon": -3.3079318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "colour": "red", - "direction": "NE", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 2RU", - "ref": "TA4 305" - } -}, -{ - "type": "node", - "id": 5927131371, - "lat": 51.3109590, - "lon": -0.0722909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR6 384D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927131372, - "lat": 51.2995532, - "lon": -0.0686592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927131373, - "lat": 51.2943993, - "lon": -0.0774542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CR3 448D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927131374, - "lat": 51.2971901, - "lon": -0.0796536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR3 205D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5927354117, - "lat": 51.1083542, - "lon": -3.2748421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:00", - "colour": "red", - "direction": "WNW", - "drive_through": "no", - "name": "Higher Vexford", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3QF", - "ref": "TA4 102" - } -}, -{ - "type": "node", - "id": 5927358583, - "lat": 51.0963938, - "lon": -3.2792843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "colour": "red", - "drive_through": "no", - "name": "Willett", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA4 3QB", - "ref": "TA4 111" - } -}, -{ - "type": "node", - "id": 5927394706, - "lat": 51.0811921, - "lon": -3.2808090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:00", - "colour": "red", - "drive_through": "no", - "name": "Tolland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5927402515, - "lat": 51.0542093, - "lon": -3.2462009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "colour": "red", - "direction": "N", - "drive_through": "no", - "name": "Northway", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5927404949, - "lat": 51.0924502, - "lon": -3.3010754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "colour": "red", - "direction": "WSW", - "drive_through": "no", - "name": "Rook's Nest", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5927407933, - "lat": 51.0698261, - "lon": -3.2456036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "colour": "red", - "drive_through": "no", - "name": "Pyleigh Cross", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5927612774, - "lat": 53.1366086, - "lon": -1.9872835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "ST13 749", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5928687669, - "lat": 53.4366631, - "lon": -1.9693563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5928687670, - "lat": 53.4400449, - "lon": -1.9699258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5928927377, - "lat": 51.3404716, - "lon": 0.5263272, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "mail:stamped": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5928927378, - "lat": 51.3358833, - "lon": 0.5267785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5928968255, - "lat": 51.3414765, - "lon": 0.5359623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ME5 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5929170564, - "lat": 51.2952304, - "lon": -0.2143501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 5929170582, - "lat": 51.2929745, - "lon": -0.2130908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 5929268798, - "lat": 51.2970543, - "lon": -0.1899567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 5929268799, - "lat": 51.2975977, - "lon": -0.1987597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT20 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 5929268800, - "lat": 51.2947666, - "lon": -0.2019274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 5929268801, - "lat": 51.2996370, - "lon": -0.2157998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT20 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-09-25" - } -}, -{ - "type": "node", - "id": 5930084091, - "lat": 57.1139175, - "lon": -2.6474865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-16", - "collection_times": "Mo-Sa 11:45; Su off", - "manufacturer": "Abbot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 353", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5930115215, - "lat": 51.8319521, - "lon": -1.8409798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5930125114, - "lat": 51.7572901, - "lon": -1.8498927, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL7 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5930197684, - "lat": 51.4125474, - "lon": -2.6105659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5930214116, - "lat": 52.1303986, - "lon": 0.4902959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB9 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5930215609, - "lat": 52.1252540, - "lon": 0.4501100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CB9 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5930260184, - "lat": 52.1789498, - "lon": 0.3732464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5930303724, - "lat": 51.6059409, - "lon": -1.8646529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN5 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5931238139, - "lat": 52.8300118, - "lon": -4.1106689, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 5931441518, - "lat": 59.2568461, - "lon": -2.5954865, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5932580976, - "lat": 51.0236619, - "lon": -0.4495157, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH14 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5932603307, - "lat": 51.0244904, - "lon": -0.4512149, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH14 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5932646653, - "lat": 51.0229566, - "lon": -0.4517783, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH14 501", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5932674661, - "lat": 51.0156859, - "lon": -0.4621284, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH14 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5932693324, - "lat": 51.0131469, - "lon": -0.4472502, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is on the eastbound side of Daux Avenue, and is discreet. It is poking out of a wooden fence.", - "note": "This postbox is a lamp shape but in the wall of a wooden fence.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_fence", - "post_box:type": "lamp", - "ref": "RH14 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935203631, - "lat": 51.4150685, - "lon": -2.5996694, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS13 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935233223, - "lat": 50.8035207, - "lon": -0.8251639, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "description": "This postbox is tucked away and is easy to miss. This postbox is west of Egremont Bridge and is on the western corner of the building C5 and is immediately east of J C Solicitors.", - "note": "This is the approximate location for this postbox and I have given the description of its location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935253612, - "lat": 50.7949978, - "lon": -0.8283012, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "note": "This postbox is of the brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935268530, - "lat": 50.7976525, - "lon": -0.8397851, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935280981, - "lat": 50.7939639, - "lon": -0.8357880, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935743149, - "lat": 51.5862598, - "lon": -1.8775705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935748105, - "lat": 51.5005366, - "lon": -1.8724126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5935754998, - "lat": 51.1944793, - "lon": -1.7593856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SP4 251D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5936526189, - "lat": 51.6084753, - "lon": -0.3694439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5936827773, - "lat": 52.6267773, - "lon": -1.0005259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5937030556, - "lat": 53.7703130, - "lon": -1.5590662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5937030557, - "lat": 53.7690267, - "lon": -1.5641919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS11 671" - } -}, -{ - "type": "node", - "id": 5937030558, - "lat": 53.7654290, - "lon": -1.5682366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS11 659" - } -}, -{ - "type": "node", - "id": 5937792467, - "lat": 51.4562392, - "lon": -0.2319953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5937875657, - "lat": 51.4576490, - "lon": -0.2246186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5938525626, - "lat": 51.6338900, - "lon": -0.4674865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5938847396, - "lat": 53.1238517, - "lon": -2.3295277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "CW11 157D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5939695896, - "lat": 51.3483327, - "lon": -0.1561406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 120D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5939695897, - "lat": 51.3558189, - "lon": -0.1677465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 143D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5939695898, - "lat": 51.3574493, - "lon": -0.1734599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5939851691, - "lat": 52.2195689, - "lon": 0.0882669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB3 122D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5940215196, - "lat": 51.0990401, - "lon": -2.4272302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA10 82", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5940215197, - "lat": 51.1072119, - "lon": -2.3970714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA10 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940371790, - "lat": 52.7501993, - "lon": 0.3971453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371791, - "lat": 52.7512907, - "lon": 0.3950411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371792, - "lat": 52.7537726, - "lon": 0.3937751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE30 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371793, - "lat": 52.7531917, - "lon": 0.3955582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE30 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371794, - "lat": 52.7546775, - "lon": 0.3963456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "note": "Inside the WHSmith", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371796, - "lat": 52.7558760, - "lon": 0.4000193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE30 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371797, - "lat": 52.7574187, - "lon": 0.4007924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE30 6004", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371798, - "lat": 52.7564364, - "lon": 0.4045683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371799, - "lat": 52.7573325, - "lon": 0.4124781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE30 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940371800, - "lat": 52.7583738, - "lon": 0.3964949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2018-09-15" - } -}, -{ - "type": "node", - "id": 5940431553, - "lat": 53.4083185, - "lon": -1.4343031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S4 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940492157, - "lat": 52.3280935, - "lon": 0.5924220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940503390, - "lat": 53.3996915, - "lon": -1.4340061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "S9 1227", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5940552587, - "lat": 51.0807906, - "lon": -2.4663878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "128648433342534", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA9 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-13" - } -}, -{ - "type": "node", - "id": 5940555185, - "lat": 53.1602724, - "lon": -2.2390853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "ref": "CW12 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940560975, - "lat": 51.0945729, - "lon": -2.6822332, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5940560976, - "lat": 51.0851488, - "lon": -2.6561272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA11 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5940560977, - "lat": 51.0770556, - "lon": -2.6523131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA11 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940607383, - "lat": 52.3006769, - "lon": 0.5806498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940642534, - "lat": 52.3009885, - "lon": 0.5198309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940660582, - "lat": 52.3097560, - "lon": 0.4584352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CB7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940662786, - "lat": 53.4022849, - "lon": -1.4444030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:45", - "post_box:type": "pillar", - "ref": "S4 1157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940662787, - "lat": 53.3983785, - "lon": -1.4443175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S4 1233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940662788, - "lat": 53.4022504, - "lon": -1.4444596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S4 1158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940688727, - "lat": 53.3937936, - "lon": -1.4463098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S4 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940856075, - "lat": 53.1587772, - "lon": -2.2210296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "ref": "CW12 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940902874, - "lat": 56.1096267, - "lon": -3.3557298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY4 136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5940902997, - "lat": 56.0843600, - "lon": -3.3753148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY4 102", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940942551, - "lat": 52.9985881, - "lon": -2.9910751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL13 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5940946455, - "lat": 56.1016273, - "lon": -3.3591510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY4 181", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940946476, - "lat": 56.1018892, - "lon": -3.3546955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY4 114D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940946790, - "lat": 56.1082705, - "lon": -3.3374177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY4 18D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940946797, - "lat": 56.1072662, - "lon": -3.3413557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 55D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940946803, - "lat": 56.1090608, - "lon": -3.3429412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY4 51", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940946806, - "lat": 56.1127463, - "lon": -3.3446213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY4 16", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5940946817, - "lat": 56.1109704, - "lon": -3.3504914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 84D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5940990540, - "lat": 56.2122194, - "lon": -3.3304548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 134D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5941008653, - "lat": 52.9992536, - "lon": -2.9005880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL13 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5941047952, - "lat": 52.9657007, - "lon": -2.7331349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY13 723D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5941049724, - "lat": 53.3790829, - "lon": -1.4708063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S1 1270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5942575232, - "lat": 53.3787828, - "lon": -1.4942466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S10 1619D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5942575234, - "lat": 53.3784296, - "lon": -1.4930688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "wall", - "ref": "S10 1510" - } -}, -{ - "type": "node", - "id": 5942639959, - "lat": 53.3706248, - "lon": -1.4908556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 232D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5942659193, - "lat": 53.3719564, - "lon": -1.4872062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5942739248, - "lat": 53.3754927, - "lon": -1.4835106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S3 705", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5942739253, - "lat": 53.3744092, - "lon": -1.4810922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S3 140D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5942835434, - "lat": 53.4911465, - "lon": -2.1952574, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5942984102, - "lat": 51.6162622, - "lon": -1.1595297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX10 1101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5942984103, - "lat": 51.6123286, - "lon": -1.1602063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX10 1100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5942984104, - "lat": 51.6118462, - "lon": -1.1528802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "OX10 1094D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5943314560, - "lat": 53.3416275, - "lon": -1.3524460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S20 1620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5943415656, - "lat": 53.3385827, - "lon": -1.3498642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 1615D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5943415658, - "lat": 53.3364583, - "lon": -1.3563277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 545D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5943503240, - "lat": 53.3313609, - "lon": -1.3504474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S20 1092", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5943503241, - "lat": 53.3372195, - "lon": -1.3458820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S20 1087D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5943523688, - "lat": 53.3287850, - "lon": -1.3498275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S20 1091D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5943679376, - "lat": 53.3467527, - "lon": -1.3826974, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S12 17" - } -}, -{ - "type": "node", - "id": 5943679377, - "lat": 53.3475475, - "lon": -1.3771948, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S12 781" - } -}, -{ - "type": "node", - "id": 5943717393, - "lat": 53.3590082, - "lon": -1.4221825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S12 348", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5943717394, - "lat": 53.3485945, - "lon": -1.4007427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S12 632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5944491421, - "lat": 52.0045671, - "lon": 0.2074175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB11 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5944572963, - "lat": 52.0190996, - "lon": 0.2207273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB11 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5944830851, - "lat": 52.0091230, - "lon": 0.1285914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "CB11 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5945023186, - "lat": 51.9961475, - "lon": 0.1020066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5945054728, - "lat": 51.9923523, - "lon": 0.1060358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB11 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5945069274, - "lat": 51.9836582, - "lon": 0.1171395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5945089846, - "lat": 51.9735686, - "lon": 0.1328431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5945107038, - "lat": 51.9739167, - "lon": 0.1464339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB11 92", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5945178397, - "lat": 51.9983830, - "lon": 0.1472442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5946580049, - "lat": 51.4822106, - "lon": -3.1424949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5946580075, - "lat": 51.4830341, - "lon": -3.1504986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5948123727, - "lat": 51.4901708, - "lon": -3.1494780, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 5948300613, - "lat": 53.0031376, - "lon": -2.7359835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY13 730", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5948353450, - "lat": 53.7361757, - "lon": -2.9587131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY8 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5948357229, - "lat": 53.3823886, - "lon": -1.4683805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-08", - "check_date:collection_times": "2023-06-20", - "check_date:ref": "2022-06-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This is one post box, with one side blocked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 3199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948407993, - "lat": 53.3816502, - "lon": -1.4642338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "post_box:type": "bin", - "ref": "S1 1622", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5948648572, - "lat": 53.3648769, - "lon": -1.4458725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 962", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948685955, - "lat": 53.3440900, - "lon": -1.4226220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S12 692D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948731383, - "lat": 53.3473537, - "lon": -1.4174942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "S12 773", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948762068, - "lat": 53.3476999, - "lon": -1.4068356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 794D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948806741, - "lat": 53.3427647, - "lon": -1.4146028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S12 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948853686, - "lat": 53.3372908, - "lon": -1.4202652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "pillar", - "ref": "S12 881", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948874395, - "lat": 53.3398588, - "lon": -1.4249578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 825D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948893565, - "lat": 53.3415163, - "lon": -1.4327298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S12 782D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948936250, - "lat": 53.3444830, - "lon": -1.4266510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S12 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5948954450, - "lat": 53.3565372, - "lon": -1.4272415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 595", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5949081666, - "lat": 53.2090455, - "lon": -2.8927847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH2 377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5949081667, - "lat": 53.2108713, - "lon": -2.8937451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Wall box situated on reverse of own brick pillar. Facing away from road.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH2 398D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5949169289, - "lat": 53.1630621, - "lon": -2.2124287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "CW12 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5949687662, - "lat": 51.4853307, - "lon": -2.7773671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS20 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5950602502, - "lat": 51.7481029, - "lon": -1.2613146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX1 931D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5951339156, - "lat": 53.2053204, - "lon": -2.8987620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 465D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5951399712, - "lat": 53.2030847, - "lon": -2.8998860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5951401722, - "lat": 51.5118531, - "lon": -0.1478433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1K 285;W1K 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5951985474, - "lat": 53.3908973, - "lon": -1.3731607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S60 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5952311973, - "lat": 51.4592759, - "lon": -0.2297731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5952326341, - "lat": 55.0133459, - "lon": -3.4231934, - "tags": { - "amenity": "post_box", - "ref": "DG1 114" - } -}, -{ - "type": "node", - "id": 5952371272, - "lat": 55.0665447, - "lon": -3.9456961, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DG7 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5953244507, - "lat": 53.4107806, - "lon": -1.5163171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5954033327, - "lat": 51.4571494, - "lon": -0.2309132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5954115414, - "lat": 51.4470711, - "lon": -0.3221326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW1 89D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5954915686, - "lat": 51.4092850, - "lon": -1.5204964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2156215261212344", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG17 152D", - "royal_cypher": "EIIR", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 5956697304, - "lat": 52.3656975, - "lon": -1.2506646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "487900999924977", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV22 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-12" - } -}, -{ - "type": "node", - "id": 5959499215, - "lat": 50.7688589, - "lon": -3.4128710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "EX5 3DA", - "ref": "EX5 49", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5959929146, - "lat": 51.3695222, - "lon": -0.0332141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 454D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5959929173, - "lat": 51.3696700, - "lon": -0.0300514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5961067734, - "lat": 53.2192111, - "lon": -3.3992273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5961425620, - "lat": 52.9234937, - "lon": -2.7303422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "667550557892462", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY13 715", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 5962063647, - "lat": 53.0352980, - "lon": -2.9931193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL13 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5963880832, - "lat": 55.7218764, - "lon": -2.1792358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "postal_code": "TD15", - "ref": "TD15 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5963959685, - "lat": 54.9360042, - "lon": -3.9332511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 15:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG7 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5964030928, - "lat": 55.7424196, - "lon": -2.1125562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TD15 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5964050339, - "lat": 54.8700449, - "lon": -1.4390068, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5964835194, - "lat": 51.0714981, - "lon": -0.3592038, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "This postbox is very discreet and is not easily visible when walking along Old Guildford Road. This postbox is in the wall on the left hand side of the sheltered walkway into house number 38 before the resident's private door.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH12 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5964908189, - "lat": 51.0754219, - "lon": -0.3291355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 95", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5964935032, - "lat": 51.0653887, - "lon": -0.3687771, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This is a brand new EIIR lamp design postbox.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH12 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5965045735, - "lat": 50.8596139, - "lon": -0.4032916, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BN14 1820", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5965045736, - "lat": 50.8551940, - "lon": -0.4012451, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BN14 1766D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5965045737, - "lat": 50.8538343, - "lon": -0.4017171, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BN14 1620D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5965045743, - "lat": 50.8496373, - "lon": -0.4001400, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BN14 1823D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5965045744, - "lat": 50.8461309, - "lon": -0.3978159, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BN14 1773D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5965083587, - "lat": 50.8433652, - "lon": -0.2786091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5966152289, - "lat": 53.4246148, - "lon": -1.5386532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "wall", - "ref": "S35 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5966173505, - "lat": 53.4361346, - "lon": -1.5389982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "S35 548", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5966173920, - "lat": 51.3842971, - "lon": -0.0498316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5966188730, - "lat": 53.4503808, - "lon": -1.5534381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S35 620", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5966199667, - "lat": 53.4570096, - "lon": -1.5540940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S36 663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5966222575, - "lat": 53.4876387, - "lon": -1.6202109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "post_box:type": "wall", - "ref": "S36 689", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5966230921, - "lat": 53.4920125, - "lon": -1.6436543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "S36 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5966233102, - "lat": 51.3833952, - "lon": -0.0440690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 390", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 5966233129, - "lat": 51.3859321, - "lon": -0.0406468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 417", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5966246264, - "lat": 53.5104172, - "lon": -1.6842094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S36 760", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5966517107, - "lat": 52.5134070, - "lon": -2.7069848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY6 307", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5966790541, - "lat": 53.0482212, - "lon": -2.7681403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5967127384, - "lat": 53.5914521, - "lon": -1.6486431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 390D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5967188241, - "lat": 57.6064879, - "lon": -3.6076603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV36 123D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 5967521316, - "lat": 53.3922374, - "lon": -1.4971749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S6 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5967740167, - "lat": 50.8478007, - "lon": -0.2145123, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN41 692", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5967748322, - "lat": 50.8435681, - "lon": -0.2107720, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN41 656", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5967763446, - "lat": 50.8712066, - "lon": -0.0074579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 439D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5968732220, - "lat": 52.9709898, - "lon": -2.6807653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY13 679D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5968732221, - "lat": 52.9690292, - "lon": -2.6825916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "note": "no other post boxes in vicinity assumed removed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SY13 766", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-12-12" - } -}, -{ - "type": "node", - "id": 5968892005, - "lat": 52.9697018, - "lon": -2.6790503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY13 669D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5969577456, - "lat": 51.5016546, - "lon": -0.3069403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5969577457, - "lat": 51.4992510, - "lon": -0.3250294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5969630932, - "lat": 51.5096606, - "lon": -0.3277123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "W13 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5969630933, - "lat": 51.5101672, - "lon": -0.3239263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5969630934, - "lat": 51.5110737, - "lon": -0.3179329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W13 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5969630935, - "lat": 51.5067663, - "lon": -0.3175799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "mapillary": "515505482814496", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-02-15" - } -}, -{ - "type": "node", - "id": 5969667250, - "lat": 51.5040162, - "lon": -0.3332564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 14", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5969667251, - "lat": 51.5025235, - "lon": -0.3308706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5969667252, - "lat": 51.5044527, - "lon": -0.3263108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5969667253, - "lat": 51.5070822, - "lon": -0.3264557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "397648641855715", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-13" - } -}, -{ - "type": "node", - "id": 5969667254, - "lat": 51.5067208, - "lon": -0.3240229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W13 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5969667255, - "lat": 51.5083076, - "lon": -0.3229929, - "tags": { - "amenity": "post_box", - "mapillary": "517380709632354", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-02-15" - } -}, -{ - "type": "node", - "id": 5969954079, - "lat": 51.5049336, - "lon": -0.3406312, - "tags": { - "amenity": "post_box", - "mapillary": "235356208059449", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2021-06-14" - } -}, -{ - "type": "node", - "id": 5969954080, - "lat": 51.5042123, - "lon": -0.3374420, - "tags": { - "amenity": "post_box", - "mapillary": "5957844340899812", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2021-04-27" - } -}, -{ - "type": "node", - "id": 5969990935, - "lat": 51.4928036, - "lon": -0.3047861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1624795767933304", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 201", - "survey:date": "2023-03-16" - } -}, -{ - "type": "node", - "id": 5969990936, - "lat": 51.4917282, - "lon": -0.3113495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "956320771811168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 207", - "survey:date": "2021-01-08" - } -}, -{ - "type": "node", - "id": 5969990937, - "lat": 51.5019421, - "lon": -0.3229543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "W13 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5969990938, - "lat": 51.5088493, - "lon": -0.3372422, - "tags": { - "amenity": "post_box", - "mapillary": "509957590829036", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 8", - "survey:date": "2022-05-01" - } -}, -{ - "type": "node", - "id": 5969990939, - "lat": 51.5093318, - "lon": -0.3390688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 12" - } -}, -{ - "type": "node", - "id": 5970490338, - "lat": 51.4476982, - "lon": -0.3288272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW1 1431;TW1 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5970490343, - "lat": 51.4482846, - "lon": -0.3289427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa-Su off", - "drive_through": "no", - "image": "https://archive.org/details/twickenham-2019-02-17/Twickenham%202019-02-17/DSCN8737.JPG", - "opening_hours": "Mo-Fr 12:00-18:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TW1 144", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5970579482, - "lat": 51.4545123, - "lon": -0.3401333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW2 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5972243162, - "lat": 55.6690226, - "lon": -3.7617684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "ML11 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5973359456, - "lat": 53.5897863, - "lon": -1.6427427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5974551656, - "lat": 53.3676394, - "lon": -1.3716690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "S13 1002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974551657, - "lat": 53.4213099, - "lon": -1.5095499, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "S6 1212" - } -}, -{ - "type": "node", - "id": 5974551658, - "lat": 53.3671868, - "lon": -1.3674720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 925D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974602752, - "lat": 53.3721923, - "lon": -1.3729337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S13 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974602754, - "lat": 53.3717271, - "lon": -1.3690700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "post_box:type": "parcel", - "ref": "S13 1215", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5974602756, - "lat": 53.3716938, - "lon": -1.3691160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "S13 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974621381, - "lat": 53.3702146, - "lon": -1.3758566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 754D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5974642249, - "lat": 53.0172555, - "lon": -2.7770445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 735", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974654406, - "lat": 53.0182518, - "lon": -2.7697647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY14 649D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5974665911, - "lat": 53.3713495, - "lon": -1.3846645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S13 167D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5974665912, - "lat": 53.3692788, - "lon": -1.3867102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "S13 979", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974704359, - "lat": 53.3703371, - "lon": -1.3920523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S13 491D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5974704361, - "lat": 53.3734724, - "lon": -1.3902084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S13 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5974718430, - "lat": 53.0265838, - "lon": -2.7260638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 708", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 5974795821, - "lat": 53.3717697, - "lon": -1.3975144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 744D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5974832925, - "lat": 53.3772288, - "lon": -1.3952000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S13 333D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 5974850091, - "lat": 53.3760506, - "lon": -1.3967722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S13 1551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5975032457, - "lat": 53.3808085, - "lon": -1.4044281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 768D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5975032458, - "lat": 53.3813450, - "lon": -1.3995177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "post_box:type": "pillar", - "ref": "S9 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5975110512, - "lat": 53.3838861, - "lon": -1.4035778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S9 625D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5975218445, - "lat": 50.6023213, - "lon": -3.6082061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5975535212, - "lat": 53.3888599, - "lon": -1.4031798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S9 1025D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5975598253, - "lat": 53.3957297, - "lon": -1.3840203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "post_box:type": "pillar", - "ref": "S9 1093", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5975598254, - "lat": 53.3957264, - "lon": -1.3839269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S9 1094", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5975693026, - "lat": 53.3994006, - "lon": -1.4092537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "S9 1216P" - } -}, -{ - "type": "node", - "id": 5975693027, - "lat": 53.3994363, - "lon": -1.4092409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "post_box:type": "pillar", - "ref": "S9 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5976124571, - "lat": 53.1233291, - "lon": -2.6862774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Set in brick pillar built on to chimney stack", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW6 198D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 5976127097, - "lat": 51.6141577, - "lon": -0.7634076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 5976299274, - "lat": 51.4233843, - "lon": -0.3386626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 207", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5976966895, - "lat": 51.4904389, - "lon": -0.3092802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "675708143938885", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 220", - "survey:date": "2022-11-22" - } -}, -{ - "type": "node", - "id": 5976967445, - "lat": 51.4929790, - "lon": -0.3001848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5977916473, - "lat": 53.4544517, - "lon": -2.2625113, - "tags": { - "amenity": "post_box", - "ref": "M16 104D" - } -}, -{ - "type": "node", - "id": 5977961746, - "lat": 53.2770917, - "lon": -2.9169930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 335D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5977998379, - "lat": 51.5004192, - "lon": -0.3291193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5977998380, - "lat": 51.4971412, - "lon": -0.2983501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW8 210" - } -}, -{ - "type": "node", - "id": 5978002838, - "lat": 53.2750934, - "lon": -2.9085129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5978034802, - "lat": 51.5125399, - "lon": -0.3256000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 7", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 5978034803, - "lat": 51.5064520, - "lon": -0.3003323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5978043459, - "lat": 53.2697951, - "lon": -2.9093733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 484D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5978061434, - "lat": 51.5170207, - "lon": -0.3192937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5978753924, - "lat": 53.1730026, - "lon": -2.1972598, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-19", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "CW12 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5980033877, - "lat": 51.5238713, - "lon": -0.7091264, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-01-19", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SL6 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5980054574, - "lat": 51.5570083, - "lon": -0.6999815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SL6 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5981247233, - "lat": 50.7149290, - "lon": -2.4440157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "DT1 2000", - "ref:GB:uprn": "10015464766", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5981247249, - "lat": 50.7149193, - "lon": -2.4439983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "DT1 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5981251674, - "lat": 56.7033659, - "lon": -3.7345932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PH16 24", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5981251675, - "lat": 56.7033604, - "lon": -3.7345798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PH16 23", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5981719691, - "lat": 55.7772874, - "lon": -4.0973987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 5981850949, - "lat": 51.5517666, - "lon": -0.8698189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG9 4", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5982687826, - "lat": 53.9816341, - "lon": -0.8918389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5982695359, - "lat": 53.9836944, - "lon": -0.9133973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5982985427, - "lat": 51.7357054, - "lon": -2.1322677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL6 59D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5983095377, - "lat": 51.4713433, - "lon": -2.7758111, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 5983445284, - "lat": 53.1833605, - "lon": -3.4225366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5983457585, - "lat": 53.1835096, - "lon": -3.4187900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "No collection times are displayed on this box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 84" - } -}, -{ - "type": "node", - "id": 5983457586, - "lat": 53.1846642, - "lon": -3.4169284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5983475560, - "lat": 53.2010292, - "lon": -3.4626204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL16 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5983858001, - "lat": 56.4580698, - "lon": -2.9698490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "reproduction_penfold", - "post_box:type": "pillar", - "ref": "DD1 200D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5984122605, - "lat": 51.8241624, - "lon": 0.4308132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM3 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5984135604, - "lat": 53.7404433, - "lon": -2.9451071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 5986195930, - "lat": 53.3580708, - "lon": -1.4092102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5986195931, - "lat": 53.3546410, - "lon": -1.4123441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5986195932, - "lat": 53.3520533, - "lon": -1.4194066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 719D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5986195933, - "lat": 53.3549949, - "lon": -1.4212528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 658D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 5986235188, - "lat": 53.3613722, - "lon": -1.4170121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S13 846D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5986979941, - "lat": 51.7560930, - "lon": 0.4950278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM1 463", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 5986979945, - "lat": 51.7512928, - "lon": 0.5004700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CM1 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5987018130, - "lat": 53.2824121, - "lon": -3.6607901, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5987022060, - "lat": 51.7547897, - "lon": 0.4886899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM1 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5987064617, - "lat": 51.7502567, - "lon": 0.4930403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM1 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5988712570, - "lat": 52.1595809, - "lon": -4.4332546, - "tags": { - "amenity": "post_box", - "description": "pole mounted", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 5991726928, - "lat": 50.8691957, - "lon": -0.0034668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5991726930, - "lat": 50.8691450, - "lon": -0.0099161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5991752094, - "lat": 50.8686130, - "lon": 0.0020023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 435D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5991822627, - "lat": 50.9219382, - "lon": 0.3587133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN27 945" - } -}, -{ - "type": "node", - "id": 5991857956, - "lat": 54.5091817, - "lon": -1.1201340, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 5993647600, - "lat": 53.2728046, - "lon": -2.9116485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "indoor": "yes", - "note": "In foyer of Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "CH65 617", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5995871551, - "lat": 51.5159134, - "lon": -0.0385888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 14D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5995940250, - "lat": 51.3187778, - "lon": -0.1908727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SM7 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5996142973, - "lat": 51.3242727, - "lon": -0.1962625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5996143003, - "lat": 51.3230688, - "lon": -0.1996016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SM7 265;SM7 365", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5996458732, - "lat": 50.9239576, - "lon": 0.4803645, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN33 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5996514005, - "lat": 50.9195854, - "lon": 0.5866554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN35 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5996514019, - "lat": 50.9237558, - "lon": 0.5469990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5996543196, - "lat": 50.9275632, - "lon": 0.8307365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN31 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5996681070, - "lat": 51.3249930, - "lon": -0.2071225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5996876067, - "lat": 50.7500076, - "lon": -3.4202276, - "tags": { - "amenity": "post_box", - "colour": "red", - "direction": "SSE", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 5997231396, - "lat": 51.3535001, - "lon": -0.6898643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "216015403399678", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU19 122", - "survey:date": "2020-09-30" - } -}, -{ - "type": "node", - "id": 5997249915, - "lat": 51.3594493, - "lon": -0.6845036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU19 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 5997415877, - "lat": 51.3220041, - "lon": -0.2053323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5997664500, - "lat": 51.3148190, - "lon": -0.2112171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998084931, - "lat": 51.3132995, - "lon": -0.2167458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT20 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998451035, - "lat": 51.9799458, - "lon": 0.2139870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB11 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998453544, - "lat": 51.9840139, - "lon": 0.2143821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB11 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998465703, - "lat": 51.9834192, - "lon": 0.2081998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998473806, - "lat": 51.9786166, - "lon": 0.1838140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB11 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998483572, - "lat": 53.3791688, - "lon": -0.7638871, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 5998628292, - "lat": 51.9753449, - "lon": 0.1198822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CB11 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998672006, - "lat": 51.9644246, - "lon": 0.1211434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB11 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998672007, - "lat": 51.9590168, - "lon": 0.1226197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB11 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998676000, - "lat": 51.3239109, - "lon": -0.2130631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 254D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998699095, - "lat": 51.9485054, - "lon": 0.1975928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "CB11 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998699096, - "lat": 51.9543250, - "lon": 0.2029628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998701250, - "lat": 51.9503101, - "lon": 0.2173711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5998704628, - "lat": 51.9621197, - "lon": 0.2378512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB11 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999058974, - "lat": 51.3272558, - "lon": -0.2149647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 213", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999183771, - "lat": 51.3290128, - "lon": -0.2130710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999183991, - "lat": 51.3282105, - "lon": -0.2021155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999184026, - "lat": 51.3321158, - "lon": -0.1809777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999768479, - "lat": 51.3246024, - "lon": -0.0074839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR6 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999900174, - "lat": 51.3530127, - "lon": -0.0603061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR2 522", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 5999992929, - "lat": 53.3663690, - "lon": -1.5068425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 259D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6000020403, - "lat": 53.3668447, - "lon": -1.4819170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "S7 150", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6000020404, - "lat": 53.3647586, - "lon": -1.4819275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S7 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6000041885, - "lat": 53.3693795, - "lon": -1.4792136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6000079441, - "lat": 53.3678832, - "lon": -1.4756197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S2 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6000084290, - "lat": 53.3700073, - "lon": -1.4731276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6000119718, - "lat": 53.3736397, - "lon": -1.4660771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "S2 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6001279046, - "lat": 53.1852244, - "lon": -3.4289394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6001279047, - "lat": 53.2447906, - "lon": -3.4450851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3115203745279425", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL17 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 6001360389, - "lat": 52.2801236, - "lon": -1.9408480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6001360396, - "lat": 52.2775475, - "lon": -1.9424257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6001392582, - "lat": 52.8038375, - "lon": -2.1218365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST16 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6001394465, - "lat": 52.2830923, - "lon": -1.9502652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6001994777, - "lat": 53.2896061, - "lon": -2.5324761, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CW9 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6003111676, - "lat": 53.1691886, - "lon": -2.2110349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6004365271, - "lat": 51.5662173, - "lon": 0.2358378, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6005094220, - "lat": 51.5088568, - "lon": -0.0098779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6005428050, - "lat": 53.3222183, - "lon": -1.4751546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 785D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005450588, - "lat": 53.3223547, - "lon": -1.4802612, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S8 786", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005450589, - "lat": 53.3226038, - "lon": -1.4866239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 788D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005452856, - "lat": 53.3202217, - "lon": -1.4916420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 729D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005501475, - "lat": 53.3218158, - "lon": -1.4995241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S17 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005501476, - "lat": 53.3242734, - "lon": -1.4922601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 787D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005501477, - "lat": 53.3272302, - "lon": -1.4935119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 878D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005562402, - "lat": 53.3320293, - "lon": -1.4894771, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S8 627" - } -}, -{ - "type": "node", - "id": 6005562404, - "lat": 53.3347200, - "lon": -1.4857771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 1167" - } -}, -{ - "type": "node", - "id": 6005562406, - "lat": 53.3270462, - "lon": -1.4831112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S8 549D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6005562407, - "lat": 53.3275435, - "lon": -1.4881396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S8 669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 6005574848, - "lat": 53.3291092, - "lon": -1.4825996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S8 653D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6005574849, - "lat": 53.3320982, - "lon": -1.4817863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S8 1111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6005602004, - "lat": 53.3353108, - "lon": -1.4819107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S8 1625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6007459195, - "lat": 53.4203870, - "lon": -3.0447461, - "tags": { - "amenity": "post_box", - "description": "QEII type C double aperture post box CH45 432 and CH 9432 outside Wallasey Post Office, Liscard", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CH45", - "ref": "CH45 432;CH45 9432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Liscard roundabout.jpg" - } -}, -{ - "type": "node", - "id": 6007806540, - "lat": 51.9835399, - "lon": 0.2624966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007809070, - "lat": 51.9778964, - "lon": 0.2632396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB11 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007813466, - "lat": 51.9741718, - "lon": 0.2693226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007817112, - "lat": 51.9640322, - "lon": 0.2989586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007821660, - "lat": 51.9616789, - "lon": 0.2911631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007869591, - "lat": 51.9869762, - "lon": 0.2871557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The plate is CB11 but CB10 41 would be more logical", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB11 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007875812, - "lat": 51.9876197, - "lon": 0.2863597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CB10 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6007999163, - "lat": 56.0601234, - "lon": -3.5329165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 113", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6008287610, - "lat": 52.2742745, - "lon": -1.9505676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B97 107D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6008337822, - "lat": 52.2990479, - "lon": -1.9246789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6008348721, - "lat": 52.3014172, - "lon": -1.9067549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "B97 203", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6008367139, - "lat": 52.3042344, - "lon": -1.8801439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6008668869, - "lat": 56.5512109, - "lon": -3.4529015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 154", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6008668912, - "lat": 56.5476826, - "lon": -3.4689693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 106", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6009533803, - "lat": 51.3483536, - "lon": -0.4945551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6009533806, - "lat": 51.3443826, - "lon": -0.5028659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6009893386, - "lat": 53.5128841, - "lon": -2.2801143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6009896953, - "lat": 53.4219889, - "lon": -3.0299358, - "tags": { - "amenity": "post_box", - "description": "George VI post box CH44 105 by Carron Company at King Street post office, Wallasey", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "Bing Streetside;survey", - "wikimedia_commons": "File:Post box at King Street post office, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 6012325937, - "lat": 53.0440755, - "lon": -3.0067337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00; Su off", - "drive_through": "no", - "note": "In foyer of Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL13 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6013674865, - "lat": 52.5831131, - "lon": -0.2374140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-03", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6014712622, - "lat": 52.2495742, - "lon": -2.7693332, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HR6 926", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6014790131, - "lat": 53.0085416, - "lon": -2.8338290, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "Lamp box mounted to wall of building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6014816429, - "lat": 53.1839530, - "lon": -2.8435016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "wall box situated in own brick pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 371D" - } -}, -{ - "type": "node", - "id": 6015018656, - "lat": 53.3792199, - "lon": -1.5159495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S10 979", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6015102445, - "lat": 54.5099426, - "lon": -5.8921821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "geograph:id": "2823187", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT8 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 6015193747, - "lat": 50.4129509, - "lon": -4.1683476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "drive_through": "no", - "post_box:apertures": "2", - "ref": "PL5 308;PL5 3080", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-18" - } -}, -{ - "type": "node", - "id": 6015201549, - "lat": 52.2264982, - "lon": -2.7339810, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "visual survey" - } -}, -{ - "type": "node", - "id": 6015591317, - "lat": 51.5058977, - "lon": 0.0156721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "mapillary": "1208193069638843", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E16 13P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6016216679, - "lat": 50.3961989, - "lon": -4.1622504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mapillary": "169888782135673", - "post_box:type": "pillar", - "ref": "PL2 258", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 6018416466, - "lat": 51.0942299, - "lon": -0.1202050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH11 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6022347668, - "lat": 51.4060270, - "lon": -0.2810321, - "tags": { - "amenity": "post_box", - "ref": "KT1 155D" - } -}, -{ - "type": "node", - "id": 6022565384, - "lat": 53.5014343, - "lon": -1.6077199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "S36 587", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6022819151, - "lat": 51.3824750, - "lon": -0.1308716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 13:00; Su off", - "drive_through": "no", - "opening_hours": "Mo-Fr 12:30-19:30; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CR9 605P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2018-10-29" - } -}, -{ - "type": "node", - "id": 6022819152, - "lat": 51.3824900, - "lon": -0.1308575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CR9 598;CR9 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6022819180, - "lat": 51.3763446, - "lon": -0.1306849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR0 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6022882710, - "lat": 51.3710634, - "lon": -0.1320471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6022915329, - "lat": 52.4315071, - "lon": -1.6923972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B92 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6023349764, - "lat": 51.3697783, - "lon": -0.1149123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CR0 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6023507333, - "lat": 52.4246493, - "lon": -1.7023314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "B92 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6025065853, - "lat": 53.5209580, - "lon": -1.6191809, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6025065855, - "lat": 53.5221245, - "lon": -1.6130375, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S36 297D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6025103558, - "lat": 53.5233196, - "lon": -1.6278479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S36 298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6027084131, - "lat": 53.6276318, - "lon": -2.6544455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "675437456579523", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR7 66" - } -}, -{ - "type": "node", - "id": 6027205903, - "lat": 53.6249018, - "lon": -2.6525196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "298627761666909", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 90", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6027365389, - "lat": 53.6143953, - "lon": -2.6534745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "mapillary": "4124702540925621", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 43", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6027764791, - "lat": 52.2274627, - "lon": 0.3928443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6027768972, - "lat": 52.2268318, - "lon": 0.3687125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6027769748, - "lat": 52.2315797, - "lon": 0.3808242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6027800907, - "lat": 52.2821871, - "lon": 0.3769973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CB8 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6028018405, - "lat": 53.6203000, - "lon": -2.6637997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 137" - } -}, -{ - "type": "node", - "id": 6028263792, - "lat": 51.4184650, - "lon": -2.6683366, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6028345590, - "lat": 52.5829308, - "lon": -0.2612278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:royal_cypher": "{crown/GR/POST OFFICE} (/means linebreak)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE3 225D" - } -}, -{ - "type": "node", - "id": 6028349682, - "lat": 52.5726424, - "lon": -0.2542560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE3 50D" - } -}, -{ - "type": "node", - "id": 6028350186, - "lat": 52.5757122, - "lon": -0.2571598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE3 25" - } -}, -{ - "type": "node", - "id": 6028368614, - "lat": 52.5779169, - "lon": -0.2789239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE3 105" - } -}, -{ - "type": "node", - "id": 6028374980, - "lat": 52.5797063, - "lon": -0.2737137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "last_checked": "2020-12-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE3 117" - } -}, -{ - "type": "node", - "id": 6028391433, - "lat": 52.5739360, - "lon": -0.2644614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE3 184" - } -}, -{ - "type": "node", - "id": 6028394830, - "lat": 52.5784542, - "lon": -0.2594952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "ref": "PE3 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6028399655, - "lat": 52.5814129, - "lon": -0.2586792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "ref": "PE3 197" - } -}, -{ - "type": "node", - "id": 6028404193, - "lat": 52.5854268, - "lon": -0.2708158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:15", - "operator": "Royal Mail", - "ref": "PE3 206" - } -}, -{ - "type": "node", - "id": 6028526936, - "lat": 53.6243431, - "lon": -2.6637427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6028526937, - "lat": 53.6222611, - "lon": -2.6605669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 62" - } -}, -{ - "type": "node", - "id": 6028526938, - "lat": 53.6201118, - "lon": -2.6701304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 112" - } -}, -{ - "type": "node", - "id": 6028526939, - "lat": 53.6159649, - "lon": -2.6739378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 40" - } -}, -{ - "type": "node", - "id": 6028526940, - "lat": 53.6105498, - "lon": -2.6744802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "154247196635520", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6029294739, - "lat": 53.3805623, - "lon": -1.4692185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:ref": "2022-06-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 236;S1 2369", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6029294740, - "lat": 53.3805942, - "lon": -1.4693743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:ref": "2022-06-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S1 2366;S1 2367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6029324046, - "lat": 51.1197321, - "lon": 0.8904437, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN25 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6029371438, - "lat": 53.3565364, - "lon": -1.4871845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S7 752D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6029396250, - "lat": 53.3523808, - "lon": -1.4954013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S7 331D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6029642708, - "lat": 53.2405901, - "lon": -0.5116475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LN2 608" - } -}, -{ - "type": "node", - "id": 6030401295, - "lat": 53.1936754, - "lon": -3.4146999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6031483188, - "lat": 53.5217118, - "lon": -1.6370286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 776D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6031501505, - "lat": 53.5319495, - "lon": -1.6269364, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 591D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6031665616, - "lat": 50.1903597, - "lon": -5.4136069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR27 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 6032700626, - "lat": 51.3958038, - "lon": -0.1273480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 316D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6033019361, - "lat": 51.4104842, - "lon": -0.1409119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6033019724, - "lat": 51.4124662, - "lon": -0.1428789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 38D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6033805951, - "lat": 51.4031301, - "lon": -0.1562766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR4 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6034181251, - "lat": 56.2921761, - "lon": -5.6542363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "PA34 152D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6034694351, - "lat": 57.1440352, - "lon": -5.8207666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "note": "Located in front of shop entrance." - } -}, -{ - "type": "node", - "id": 6034905801, - "lat": 51.4050176, - "lon": -0.1750088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CR4 62", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6035200524, - "lat": 51.3995225, - "lon": -0.1813850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR4 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6035339515, - "lat": 51.3973161, - "lon": -0.1732392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6036182537, - "lat": 53.7948661, - "lon": -1.3324906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 477" - } -}, -{ - "type": "node", - "id": 6036182538, - "lat": 53.8015347, - "lon": -1.3660397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036182539, - "lat": 53.7967462, - "lon": -1.3743451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 826", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036182540, - "lat": 53.7955172, - "lon": -1.3675766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036182541, - "lat": 53.7903553, - "lon": -1.3700737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS25 87", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6036182542, - "lat": 53.7812034, - "lon": -1.3695399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 635" - } -}, -{ - "type": "node", - "id": 6036182556, - "lat": 53.7851554, - "lon": -1.3836510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 470" - } -}, -{ - "type": "node", - "id": 6036182557, - "lat": 53.7896098, - "lon": -1.3833728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 875" - } -}, -{ - "type": "node", - "id": 6036182558, - "lat": 53.7924376, - "lon": -1.3821745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 61" - } -}, -{ - "type": "node", - "id": 6036182559, - "lat": 53.7966849, - "lon": -1.3869562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS25 259" - } -}, -{ - "type": "node", - "id": 6036182561, - "lat": 53.7899718, - "lon": -1.3901105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 797" - } -}, -{ - "type": "node", - "id": 6036182562, - "lat": 53.7925212, - "lon": -1.3973692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS25 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036182563, - "lat": 53.7902721, - "lon": -1.3974564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS25 863", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036182564, - "lat": 53.7869192, - "lon": -1.4007126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS25 31" - } -}, -{ - "type": "node", - "id": 6036182565, - "lat": 53.7898950, - "lon": -1.4199936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS25 280", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6036357405, - "lat": 53.3920548, - "lon": -1.5334682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S6 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036361624, - "lat": 53.3927226, - "lon": -1.5291625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 935D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6036389828, - "lat": 53.3964482, - "lon": -1.5158883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S6 210D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6036400250, - "lat": 53.4003858, - "lon": -1.5117879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S6 456D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6036517779, - "lat": 51.3953557, - "lon": -0.1601478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6037157147, - "lat": 53.2577838, - "lon": -3.4411251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:00", - "note": "Large wall box set in wall of former post office", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "LL17 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6037208875, - "lat": 53.3909367, - "lon": -1.5521852, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S6 803" - } -}, -{ - "type": "node", - "id": 6037478038, - "lat": 51.0465586, - "lon": -0.1190380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH17 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6037912023, - "lat": 51.3951231, - "lon": 0.0183724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR2 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6037963238, - "lat": 53.3885387, - "lon": -1.5061442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6037963239, - "lat": 53.3906819, - "lon": -1.5030207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6039058714, - "lat": 53.3777503, - "lon": -3.0338110, - "tags": { - "amenity": "post_box", - "description": "QEII post box CH42 440 by Carron Company outside the former Singleton Avenue post office, actually on Borough Road; with attached pouch box.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Singleton Avenue Post Office, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 6039150784, - "lat": 53.7615769, - "lon": -1.3900822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS26 209" - } -}, -{ - "type": "node", - "id": 6039151693, - "lat": 53.7647056, - "lon": -1.3737376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 270" - } -}, -{ - "type": "node", - "id": 6039151694, - "lat": 53.7673516, - "lon": -1.3630839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 449" - } -}, -{ - "type": "node", - "id": 6039151695, - "lat": 53.7701981, - "lon": -1.3505124, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 506" - } -}, -{ - "type": "node", - "id": 6039151697, - "lat": 53.7711651, - "lon": -1.3599202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 450" - } -}, -{ - "type": "node", - "id": 6039151698, - "lat": 53.7709891, - "lon": -1.3804391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 953" - } -}, -{ - "type": "node", - "id": 6039486483, - "lat": 53.8362289, - "lon": -1.3419937, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 823" - } -}, -{ - "type": "node", - "id": 6039486484, - "lat": 53.8319030, - "lon": -1.3428030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 229" - } -}, -{ - "type": "node", - "id": 6039487786, - "lat": 53.8287774, - "lon": -1.3430201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 637" - } -}, -{ - "type": "node", - "id": 6039487787, - "lat": 53.8243112, - "lon": -1.3433696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 230" - } -}, -{ - "type": "node", - "id": 6039836744, - "lat": 52.4221202, - "lon": -1.6405543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6039963517, - "lat": 51.9512834, - "lon": -1.8652792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL54 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6042279976, - "lat": 52.4466983, - "lon": -1.0934995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE17 202" - } -}, -{ - "type": "node", - "id": 6042279982, - "lat": 52.4437980, - "lon": -1.0952181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE17 199" - } -}, -{ - "type": "node", - "id": 6042307577, - "lat": 52.2636792, - "lon": 0.5209029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042324223, - "lat": 52.2112149, - "lon": 0.5576599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042331842, - "lat": 52.2049783, - "lon": 0.5580898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042339602, - "lat": 52.1924793, - "lon": 0.5699758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042340765, - "lat": 52.1875229, - "lon": 0.5583910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042350733, - "lat": 52.2048972, - "lon": 0.5525079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042411961, - "lat": 52.1974186, - "lon": 0.4872918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042414833, - "lat": 52.2705461, - "lon": 0.4931144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042416709, - "lat": 52.2510761, - "lon": 0.4825052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6042908330, - "lat": 52.6057353, - "lon": -1.6534987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "B77 182" - } -}, -{ - "type": "node", - "id": 6042957340, - "lat": 51.9874851, - "lon": -1.9112120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "GL54 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6042959027, - "lat": 54.2751786, - "lon": -0.6866649, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO18 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6044216113, - "lat": 54.6453520, - "lon": -5.8166195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "fixme": "check location (not visible on Mapillary", - "geograph:id": "5536788", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 6044714910, - "lat": 51.7321673, - "lon": -4.7168948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA68 74", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-07" - } -}, -{ - "type": "node", - "id": 6044980415, - "lat": 54.8975921, - "lon": -4.0466094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6044980431, - "lat": 54.9607119, - "lon": -4.0603563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DG7 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6045128527, - "lat": 52.5119464, - "lon": -1.4420849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 6045128528, - "lat": 52.5088055, - "lon": -1.4439559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV11 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6045128529, - "lat": 52.5111537, - "lon": -1.4501500, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-26", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV11 130", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6047526370, - "lat": 53.8516758, - "lon": -1.4687475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS17 911", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6047526371, - "lat": 53.8523652, - "lon": -1.4773916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS17 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6047526372, - "lat": 53.8548222, - "lon": -1.4843425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 237" - } -}, -{ - "type": "node", - "id": 6047526373, - "lat": 53.8579554, - "lon": -1.5099569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 996" - } -}, -{ - "type": "node", - "id": 6047526374, - "lat": 53.8597232, - "lon": -1.5248613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 15" - } -}, -{ - "type": "node", - "id": 6047526375, - "lat": 53.8505196, - "lon": -1.5135156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 789" - } -}, -{ - "type": "node", - "id": 6047526376, - "lat": 53.8494809, - "lon": -1.5267509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 803" - } -}, -{ - "type": "node", - "id": 6047526377, - "lat": 53.8559621, - "lon": -1.5389449, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 279" - } -}, -{ - "type": "node", - "id": 6047526378, - "lat": 53.8589417, - "lon": -1.5344368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 85" - } -}, -{ - "type": "node", - "id": 6047526379, - "lat": 53.8617724, - "lon": -1.5278788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 40" - } -}, -{ - "type": "node", - "id": 6047526380, - "lat": 53.8618523, - "lon": -1.5411691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 782" - } -}, -{ - "type": "node", - "id": 6047526381, - "lat": 53.8622050, - "lon": -1.5628722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 123" - } -}, -{ - "type": "node", - "id": 6047526382, - "lat": 53.8627428, - "lon": -1.5546352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 835" - } -}, -{ - "type": "node", - "id": 6047526383, - "lat": 53.8601265, - "lon": -1.5545842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 931" - } -}, -{ - "type": "node", - "id": 6047526384, - "lat": 53.8581816, - "lon": -1.5580617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 804" - } -}, -{ - "type": "node", - "id": 6047527785, - "lat": 53.8563600, - "lon": -1.5628320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 399" - } -}, -{ - "type": "node", - "id": 6047527786, - "lat": 53.8543927, - "lon": -1.5628883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 997" - } -}, -{ - "type": "node", - "id": 6047527787, - "lat": 53.8520812, - "lon": -1.5556665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS17 303" - } -}, -{ - "type": "node", - "id": 6047527788, - "lat": 53.8489287, - "lon": -1.5452313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 906" - } -}, -{ - "type": "node", - "id": 6047527789, - "lat": 53.8486771, - "lon": -1.5611355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 898", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6047527790, - "lat": 53.8451468, - "lon": -1.5592767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 899", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6047578892, - "lat": 53.3795331, - "lon": -1.5199681, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-11", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "S10 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6047656161, - "lat": 53.7257608, - "lon": -1.8111319, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6049071496, - "lat": 51.3569130, - "lon": -2.7602533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS40 529" - } -}, -{ - "type": "node", - "id": 6049267174, - "lat": 53.7061896, - "lon": -2.3249952, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6049630339, - "lat": 53.3961546, - "lon": -1.5106024, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 1068" - } -}, -{ - "type": "node", - "id": 6051203068, - "lat": 52.8587753, - "lon": -2.7230072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY4 115D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6051606699, - "lat": 51.3627604, - "lon": -0.6908575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "mapillary": "3619905164901573", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU19 229", - "survey:date": "2020-09-29" - } -}, -{ - "type": "node", - "id": 6052366041, - "lat": 53.4032769, - "lon": -1.4681218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S4 1069", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6052681136, - "lat": 52.5960869, - "lon": -1.6875920, - "tags": { - "amenity": "post_box", - "ref": "B77 40" - } -}, -{ - "type": "node", - "id": 6052829629, - "lat": 52.6575974, - "lon": 0.0238198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE13 23" - } -}, -{ - "type": "node", - "id": 6053076976, - "lat": 52.0518785, - "lon": 1.1873579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP3 1139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6053429923, - "lat": 50.2012540, - "lon": -5.0134393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR2 209D" - } -}, -{ - "type": "node", - "id": 6053545481, - "lat": 52.8735772, - "lon": 0.6269566, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6053545482, - "lat": 52.8098275, - "lon": 0.5614750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 204" - } -}, -{ - "type": "node", - "id": 6054633183, - "lat": 53.3616396, - "lon": -2.9977423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "description": "QEII Type C post box CH62 107 by Lion Foundry of Kirkintilloch at New Ferry Post Office.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH62 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing Streetside (incidental to checking other data)", - "wikimedia_commons": "Category:Post box at New Ferry Post Office" - } -}, -{ - "type": "node", - "id": 6055048488, - "lat": 50.7378542, - "lon": -2.7570954, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref:GB:uprn": "10015441747" - } -}, -{ - "type": "node", - "id": 6055863627, - "lat": 51.4705023, - "lon": 0.1604122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 269D", - "source": "survey;own_photo" - } -}, -{ - "type": "node", - "id": 6055987254, - "lat": 51.0247897, - "lon": -0.3510581, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30, Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6057280013, - "lat": 51.0816941, - "lon": -0.3170788, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6057458776, - "lat": 51.0570163, - "lon": -0.3137087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323971, - "lat": 53.9413731, - "lon": -1.3907214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS22 912" - } -}, -{ - "type": "node", - "id": 6058323972, - "lat": 53.9398566, - "lon": -1.3875563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS22 850", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323973, - "lat": 53.9380899, - "lon": -1.3908461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323974, - "lat": 53.9367454, - "lon": -1.3798289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 893", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323976, - "lat": 53.9363396, - "lon": -1.3886554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323977, - "lat": 53.9346082, - "lon": -1.3833788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS22 458", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6058323978, - "lat": 53.9333813, - "lon": -1.3888720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS22 534", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323979, - "lat": 53.9330671, - "lon": -1.3779581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323980, - "lat": 53.9345214, - "lon": -1.3713826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 638" - } -}, -{ - "type": "node", - "id": 6058323981, - "lat": 53.9298255, - "lon": -1.3767920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS22 924", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323982, - "lat": 53.9273496, - "lon": -1.3820511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS22 547", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058323983, - "lat": 53.9322104, - "lon": -1.3971010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 482", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6058323984, - "lat": 53.9338471, - "lon": -1.4036402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS22 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058324987, - "lat": 53.9294113, - "lon": -1.3984233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 465" - } -}, -{ - "type": "node", - "id": 6058324988, - "lat": 53.9262239, - "lon": -1.4031534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 185" - } -}, -{ - "type": "node", - "id": 6058324989, - "lat": 53.9183007, - "lon": -1.4105395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 409" - } -}, -{ - "type": "node", - "id": 6058324990, - "lat": 53.9140856, - "lon": -1.4079840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS22 876" - } -}, -{ - "type": "node", - "id": 6058324991, - "lat": 53.9002998, - "lon": -1.4739758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 934" - } -}, -{ - "type": "node", - "id": 6058324992, - "lat": 53.9062541, - "lon": -1.4314789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 731" - } -}, -{ - "type": "node", - "id": 6058324993, - "lat": 53.9092096, - "lon": -1.4153762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS22 476" - } -}, -{ - "type": "node", - "id": 6058324994, - "lat": 53.8961947, - "lon": -1.4344506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS17 870" - } -}, -{ - "type": "node", - "id": 6058324995, - "lat": 53.8902627, - "lon": -1.4419140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS17 138" - } -}, -{ - "type": "node", - "id": 6058324996, - "lat": 53.8862925, - "lon": -1.4394732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 944" - } -}, -{ - "type": "node", - "id": 6058324997, - "lat": 53.8784839, - "lon": -1.4584123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 832" - } -}, -{ - "type": "node", - "id": 6058324998, - "lat": 53.8819212, - "lon": -1.4666212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS17 533" - } -}, -{ - "type": "node", - "id": 6058324999, - "lat": 53.8535763, - "lon": -1.5231480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS17 139" - } -}, -{ - "type": "node", - "id": 6058325260, - "lat": 51.8813227, - "lon": -1.5972733, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6058325263, - "lat": 51.8929112, - "lon": -1.6058950, - "tags": { - "amenity": "post_box", - "note": "looks like the Hovis type post post box has been replaced with a more modern type", - "post_box:type": "lamp", - "ref": "OX7 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058339524, - "lat": 52.0194917, - "lon": -1.2320568, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX17 1068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058379385, - "lat": 51.6056761, - "lon": -1.1618071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX10 1096", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6058400161, - "lat": 51.7735939, - "lon": -1.6599269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "OX18 565", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6058643894, - "lat": 52.1842154, - "lon": 0.4701039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058715078, - "lat": 52.1412955, - "lon": 0.5195287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058717873, - "lat": 52.1507089, - "lon": 0.5334501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058719371, - "lat": 52.1438508, - "lon": 0.5537846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CB8 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058731233, - "lat": 52.1509877, - "lon": 0.5907012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058734384, - "lat": 52.1637698, - "lon": 0.5787258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CB8 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058779233, - "lat": 50.9594641, - "lon": -0.0070891, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN8 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058838214, - "lat": 50.9907707, - "lon": -0.2461544, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058845799, - "lat": 50.9487594, - "lon": -0.1981039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN6 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6058848909, - "lat": 50.9440343, - "lon": -0.1657511, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BN6 390", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6058893469, - "lat": 52.1582017, - "lon": 0.5697619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058895771, - "lat": 52.1603374, - "lon": 0.5546345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058899230, - "lat": 52.1642383, - "lon": 0.5451302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058899232, - "lat": 52.1677534, - "lon": 0.5490009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB8 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058900741, - "lat": 52.1737884, - "lon": 0.5751923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058903500, - "lat": 52.1723116, - "lon": 0.5507509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB8 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6058986180, - "lat": 50.9186091, - "lon": -0.0458772, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN7 473D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6059015288, - "lat": 51.0830738, - "lon": -0.2028072, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH11 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6059016674, - "lat": 51.0707007, - "lon": -0.2336124, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6059017465, - "lat": 51.0452178, - "lon": -0.2831581, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6059017466, - "lat": 51.0486487, - "lon": -0.2641109, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6059026546, - "lat": 51.0082000, - "lon": -0.3063244, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6059026547, - "lat": 51.0155572, - "lon": -0.3023355, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6061520041, - "lat": 51.6137927, - "lon": -0.1122878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N13 8" - } -}, -{ - "type": "node", - "id": 6061637362, - "lat": 51.3608252, - "lon": -0.1921937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SM1 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6061637363, - "lat": 51.3600388, - "lon": -0.1930180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa-Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SM1 622", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6061637368, - "lat": 51.3670104, - "lon": -0.1947599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SM1 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6061637369, - "lat": 51.3660319, - "lon": -0.1940663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "opening_hours": "Mo-Fr 14:00-18:00; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SM1 621", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6061637370, - "lat": 51.3660349, - "lon": -0.1940526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SM1 272;SM1 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6061637371, - "lat": 51.3668725, - "lon": -0.1900394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6061654228, - "lat": 52.3941677, - "lon": -1.4944376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV3 47D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6062119753, - "lat": 55.7522592, - "lon": -3.8803574, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6062119762, - "lat": 55.7325595, - "lon": -3.8433754, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6062140423, - "lat": 53.1230964, - "lon": -0.8120092, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG23 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6063801262, - "lat": 53.4006815, - "lon": -1.4652086, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-15", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "S3 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6063811838, - "lat": 53.4009376, - "lon": -1.4618657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "S4 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6063827040, - "lat": 53.8614845, - "lon": -1.8105152, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD16 618D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6063830467, - "lat": 53.4042744, - "lon": -1.4599616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S5 675D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6063855651, - "lat": 53.4085931, - "lon": -1.4609019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S5 810D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6063905885, - "lat": 53.4095194, - "lon": -1.4559797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "indoor": "yes", - "note": "In the foyer of the Huntsman Building", - "post_box:type": "wall", - "ref": "S5 1199", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6064760219, - "lat": 51.0113778, - "lon": -0.3325523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6064760220, - "lat": 51.0108479, - "lon": -0.3215352, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6064785929, - "lat": 51.0235932, - "lon": -0.3526233, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6064794618, - "lat": 50.9841048, - "lon": -0.4087311, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RH13 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6064904421, - "lat": 50.8203292, - "lon": -0.5088900, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8-LC", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN16 1888", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6064911582, - "lat": 50.8203138, - "lon": -0.5088209, - "tags": { - "amenity": "post_box", - "collection_plate": "CPMET-LC-NS", - "collection_times": "Mo-Fr 18:15; Sa off", - "opening_hours": "Mo-Fr 12:00-18:15", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "BN16 1507" - } -}, -{ - "type": "node", - "id": 6064929940, - "lat": 53.4080821, - "lon": -1.4452589, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "pillar", - "ref": "S4 46", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6064931538, - "lat": 50.9635557, - "lon": -0.3567043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6064935684, - "lat": 50.9909091, - "lon": -0.2758759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6064936185, - "lat": 50.9602864, - "lon": -0.3025012, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RH13 168D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6065145525, - "lat": 51.5262739, - "lon": -0.7213715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SL6 26D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6065169735, - "lat": 51.8677940, - "lon": -3.0213339, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NP7 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6065180505, - "lat": 50.6739433, - "lon": -3.8264759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "This used to be a rare VR lamp box affixed to a concrete post", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial imagery;streetlevel imagery;survey" - } -}, -{ - "type": "node", - "id": 6066203277, - "lat": 53.3973472, - "lon": -1.4518334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S4 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6066552959, - "lat": 51.4370327, - "lon": -1.0766100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG7 119" - } -}, -{ - "type": "node", - "id": 6067234927, - "lat": 53.7457503, - "lon": -1.6454507, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF17 228" - } -}, -{ - "type": "node", - "id": 6067234928, - "lat": 53.7561117, - "lon": -1.6221239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "LS27 347" - } -}, -{ - "type": "node", - "id": 6067712087, - "lat": 54.1667349, - "lon": -0.2540616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO14 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6067728197, - "lat": 54.1557513, - "lon": -1.8455991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "lamp", - "ref": "HG3 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6067763873, - "lat": 53.8802055, - "lon": -0.7050310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO43 360D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6067785773, - "lat": 54.0069605, - "lon": -0.2550570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "wall", - "ref": "YO25 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6067829196, - "lat": 54.1603776, - "lon": -0.6975898, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6067829200, - "lat": 54.1660552, - "lon": -0.7081275, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO17 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6068968317, - "lat": 51.3534501, - "lon": -0.1810611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6068968320, - "lat": 51.3436686, - "lon": -0.1972778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6068973583, - "lat": 52.3821093, - "lon": -1.8117774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6068973584, - "lat": 52.3859311, - "lon": -1.8004822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1255D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6069129726, - "lat": 51.3690390, - "lon": 1.1282268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "postal_code": "CT6", - "ref": "CT6 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6069373774, - "lat": 53.4117404, - "lon": -1.4966705, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "S6 1228P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6069417876, - "lat": 51.0710175, - "lon": -0.3077631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH12 140P" - } -}, -{ - "type": "node", - "id": 6069423737, - "lat": 51.0729952, - "lon": -0.3048499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH12 149D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6069593546, - "lat": 51.4823390, - "lon": 0.2938801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6070110200, - "lat": 53.3459917, - "lon": -1.3938899, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S12 737" - } -}, -{ - "type": "node", - "id": 6070313119, - "lat": 53.3425558, - "lon": -1.3968932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "S12 767D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6070343790, - "lat": 53.3456418, - "lon": -1.4024757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 657D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070361038, - "lat": 53.3520898, - "lon": -1.3974033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 801D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070390422, - "lat": 53.3501368, - "lon": -1.3907385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 967D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070403314, - "lat": 53.3456972, - "lon": -1.3873001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S12 783", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070453512, - "lat": 53.3522194, - "lon": -1.3881472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S12 1020", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070453513, - "lat": 53.3423513, - "lon": -1.3863516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S12 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070513080, - "lat": 53.4020261, - "lon": -1.4961194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "S6 249" - } -}, -{ - "type": "node", - "id": 6070543529, - "lat": 53.3886893, - "lon": -1.4925089, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 94" - } -}, -{ - "type": "node", - "id": 6070546961, - "lat": 53.3898600, - "lon": -1.4861591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "S6 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070549434, - "lat": 53.3747666, - "lon": -1.5059745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S10 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6070672181, - "lat": 53.9754558, - "lon": -0.2296830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO25 356D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070682340, - "lat": 53.9403406, - "lon": -0.2872912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "YO25 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070764921, - "lat": 53.4227422, - "lon": -1.5216689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "S35 495D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6070764922, - "lat": 53.4086042, - "lon": -1.5206872, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 195", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6070766998, - "lat": 54.0770484, - "lon": -0.2298723, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO16 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6070785638, - "lat": 54.0935711, - "lon": -0.2155615, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO16 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6070806202, - "lat": 54.4278162, - "lon": -0.7342000, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6071335668, - "lat": 53.3598434, - "lon": -1.4374233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "S2 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6071385641, - "lat": 51.3674455, - "lon": -0.1528260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM6 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6071470162, - "lat": 53.4171682, - "lon": -2.2200163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "M20 597D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6071514039, - "lat": 53.3966351, - "lon": -3.0395312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QEII post box CH41 263 by Lion Foundry outside the post office near Park Road North.", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Duke Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 6072438368, - "lat": 52.5986593, - "lon": -1.0828014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LE2 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6072582802, - "lat": 53.3661660, - "lon": -1.4064796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 809", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6072623701, - "lat": 53.3297664, - "lon": -1.4657613, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S8 660" - } -}, -{ - "type": "node", - "id": 6072855276, - "lat": 53.4272622, - "lon": -3.0605826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "George V post box by Carron Company CH45 468 at the junction of Claremount Road & Taunton Road, Wallasey.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 468", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Taunton Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 6072857190, - "lat": 53.4248955, - "lon": -3.0547460, - "tags": { - "amenity": "post_box", - "description": "George V post box CH45 313 on Belvidere Road, Wallsey; between Halton Road & Bowden Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 313", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Belvidere Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 6072857191, - "lat": 53.4291089, - "lon": -3.0577457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II post box CH45 286 on Lyndhurst Road at its junction with Rolleston Drive, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Lyndhurst Road.jpg" - } -}, -{ - "type": "node", - "id": 6073649230, - "lat": 53.4195285, - "lon": -3.0522439, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH44 193 by Handyside on Wallasey Road near to Newlands Drive and Westwood Grove", - "manufacturer": "Andrew Handyside & Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 193", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Wallasey Road.jpg" - } -}, -{ - "type": "node", - "id": 6073890213, - "lat": 51.4408160, - "lon": -0.0291889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE6 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6074778597, - "lat": 55.8612822, - "lon": -4.2620288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "note": "Box faceplate marked G2 293 and G2 293A but PO List has this as G2 2930", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "G2 293;G2 293A", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6076077535, - "lat": 51.4688440, - "lon": -2.2851951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "371662901208055", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 6076105861, - "lat": 53.4672772, - "lon": -2.2189230, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-14", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M12 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6077645185, - "lat": 51.3842298, - "lon": -0.1690186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 246D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6077645191, - "lat": 51.3782762, - "lon": -0.1786629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6077645192, - "lat": 51.3738407, - "lon": -0.1801940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 148D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6077919341, - "lat": 51.3082840, - "lon": 0.3093936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TN15 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6079658182, - "lat": 51.4630349, - "lon": -2.3103663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6079734102, - "lat": 57.1655821, - "lon": -2.1021000, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "A.Handyside & Co Ltd\nDerby & London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 6080035716, - "lat": 52.7538577, - "lon": -1.2163729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6081533751, - "lat": 50.8197535, - "lon": -0.5467201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6081940973, - "lat": 53.3616301, - "lon": -1.5618890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S10 254D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6081940974, - "lat": 53.3723281, - "lon": -1.5594841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S10 904", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6082002623, - "lat": 53.3747150, - "lon": -1.5395724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "S10 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6082455087, - "lat": 53.2770305, - "lon": -2.8983124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "note": "next to in-store Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 614", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6082455088, - "lat": 53.2770082, - "lon": -2.8983462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "note": "next to in-store Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 616", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6082463319, - "lat": 50.2576730, - "lon": -5.2650248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR16 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6082463320, - "lat": 50.2606566, - "lon": -5.2824479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Now a Romec lamp box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "wall", - "ref": "TR16 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2020-10-28" - } -}, -{ - "type": "node", - "id": 6082612968, - "lat": 50.2344329, - "lon": -5.2907244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6082631689, - "lat": 50.2343203, - "lon": -5.3247110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR14 111", - "survey:date": "2020-10-25" - } -}, -{ - "type": "node", - "id": 6082683109, - "lat": 50.2218743, - "lon": -5.3351711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR14 117", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6082700421, - "lat": 50.2090719, - "lon": -5.3426824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6082726520, - "lat": 50.2042702, - "lon": -5.3638082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6083247363, - "lat": 50.8076321, - "lon": -0.5326776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1462", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6083261781, - "lat": 50.8107705, - "lon": -0.5339716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1461D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6083341332, - "lat": 50.8135591, - "lon": -0.5161328, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN16 1442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6083412257, - "lat": 51.3754497, - "lon": -0.1607412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6083412259, - "lat": 51.3745241, - "lon": -0.1603926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM5 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6083839459, - "lat": 53.7766855, - "lon": -2.7308131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 177" - } -}, -{ - "type": "node", - "id": 6083839467, - "lat": 53.7839715, - "lon": -2.7612563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR4 434" - } -}, -{ - "type": "node", - "id": 6083839468, - "lat": 53.7801129, - "lon": -2.7561970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 213" - } -}, -{ - "type": "node", - "id": 6084704177, - "lat": 53.8476029, - "lon": -1.8267927, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD16 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6085536145, - "lat": 51.4656467, - "lon": -0.0137467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE13 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6086177799, - "lat": 53.3470607, - "lon": -1.4928662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6086491695, - "lat": 51.1238672, - "lon": -0.2054706, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH11 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6087280867, - "lat": 53.4228237, - "lon": -1.4552656, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6087293930, - "lat": 53.4358952, - "lon": -1.4779327, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 762" - } -}, -{ - "type": "node", - "id": 6087860510, - "lat": 50.9502038, - "lon": 0.7363208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN31 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6087860554, - "lat": 50.9496117, - "lon": 0.7337387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN31 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6088128268, - "lat": 52.4184949, - "lon": -1.7072538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B92 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6088128270, - "lat": 52.4374024, - "lon": -1.7052242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B92 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6088413035, - "lat": 50.4351285, - "lon": -3.5706274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ3 126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6088592099, - "lat": 54.3468254, - "lon": -6.6491105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6088663316, - "lat": 50.8630552, - "lon": -3.1354272, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6088708979, - "lat": 50.7535414, - "lon": -2.2186071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH20 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6088917691, - "lat": 52.4147929, - "lon": -1.5098160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6088917692, - "lat": 52.4078025, - "lon": -1.4922359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV1 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6088967741, - "lat": 53.3229510, - "lon": -3.4817104, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6089248351, - "lat": 51.6985051, - "lon": -3.4185081, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6090495332, - "lat": 53.4575550, - "lon": -1.4430917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6090495333, - "lat": 53.4484298, - "lon": -1.4193253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6090495334, - "lat": 53.4557667, - "lon": -1.4364138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "wall", - "ref": "S61 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6090495335, - "lat": 53.4595980, - "lon": -1.4385000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S61 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6090501754, - "lat": 53.4551968, - "lon": -1.4155231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S61 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6091142220, - "lat": 53.4565391, - "lon": -1.4577089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S35 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6091142221, - "lat": 53.3599370, - "lon": -1.4936956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 71", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6092867659, - "lat": 52.6085383, - "lon": -0.4380522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE8" - } -}, -{ - "type": "node", - "id": 6093059434, - "lat": 50.2878670, - "lon": -5.2317416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093069962, - "lat": 50.2913356, - "lon": -5.2171540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093155655, - "lat": 50.2831928, - "lon": -5.2078015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR4 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093170467, - "lat": 50.2687953, - "lon": -5.1969032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR16 64D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093170468, - "lat": 50.2675955, - "lon": -5.1836771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR4 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093196834, - "lat": 50.3045738, - "lon": -5.2125715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR5 102D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093199220, - "lat": 50.3139360, - "lon": -5.2170542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6093459916, - "lat": 53.8276288, - "lon": -0.8549233, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6093478936, - "lat": 53.9318148, - "lon": -1.2103892, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6093611420, - "lat": 53.3339528, - "lon": -1.3920077, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S12 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6093778303, - "lat": 53.3568219, - "lon": -1.5195676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 485", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6093778304, - "lat": 53.4161660, - "lon": -1.3957917, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S9 690" - } -}, -{ - "type": "node", - "id": 6093782668, - "lat": 53.4123548, - "lon": -1.3908423, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S9 866" - } -}, -{ - "type": "node", - "id": 6093791572, - "lat": 53.4033585, - "lon": -1.3711527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6094809593, - "lat": 53.3497721, - "lon": -1.5640515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "post_box:type": "wall", - "ref": "S11 191", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6094853783, - "lat": 55.2976482, - "lon": -1.7101888, - "tags": { - "amenity": "post_box", - "note": "there is no plate on box to give reference or collection times, there is just a sticker saying to look in nearby window for collection times, but that window is now a hairdressers and has no times", - "post_box:type": "wall", - "ref": "none on box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6094857108, - "lat": 53.3402774, - "lon": -1.5559150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "post_box:type": "lamp", - "ref": "S11 516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6095241172, - "lat": 53.3954747, - "lon": -1.3647904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6095241173, - "lat": 53.3933221, - "lon": -1.3620250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "S60 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6095245854, - "lat": 53.4023271, - "lon": -1.5210774, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S6 608", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6095254332, - "lat": 53.3813027, - "lon": -1.5118431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S10 231", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6095410926, - "lat": 50.3120131, - "lon": -5.1992442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR5 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6096561899, - "lat": 51.5465694, - "lon": -0.1580586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6096807944, - "lat": 53.3279947, - "lon": -1.5287625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S17 845", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6096819139, - "lat": 53.3196646, - "lon": -1.5397148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "S17 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6096837688, - "lat": 53.3264634, - "lon": -1.5405663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S17 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6096841875, - "lat": 51.3139534, - "lon": -2.5749402, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6096841876, - "lat": 51.3327424, - "lon": -2.5904443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS39 514D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6096911298, - "lat": 51.4241989, - "lon": -2.6902735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "360116149219573", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BS48 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 6096925648, - "lat": 53.4305452, - "lon": -1.4146651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6096933398, - "lat": 53.4281399, - "lon": -1.4179867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6096940887, - "lat": 53.4315255, - "lon": -1.4199012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6096958602, - "lat": 53.4225128, - "lon": -1.4213789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S9 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6097106528, - "lat": 50.3601609, - "lon": -3.8292910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL21 698", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6097109740, - "lat": 50.4839974, - "lon": -3.7047034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TQ9 104D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6097118030, - "lat": 51.9416343, - "lon": 0.6510793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CO9 57D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6097164990, - "lat": 53.6199776, - "lon": -1.8585694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HD7 75D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6097639290, - "lat": 53.7536579, - "lon": -1.2309082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 744", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6099786984, - "lat": 54.1114088, - "lon": -3.2597783, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6099807756, - "lat": 54.1112758, - "lon": -3.2492117, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6100114283, - "lat": 53.4130836, - "lon": -1.4715978, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6100140565, - "lat": 53.4164958, - "lon": -1.4710938, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 551" - } -}, -{ - "type": "node", - "id": 6100246581, - "lat": 51.2551979, - "lon": -0.8492389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU52 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6100917356, - "lat": 53.4791305, - "lon": -1.5105368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S35 151", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6100917357, - "lat": 53.4856780, - "lon": -1.5145752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 738D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6100917358, - "lat": 53.4903247, - "lon": -1.5375409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S35 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6100959646, - "lat": 53.4691127, - "lon": -1.4617016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S35 303", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6100969367, - "lat": 53.4740675, - "lon": -1.4636051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S35 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6101004257, - "lat": 53.4279538, - "lon": -1.4942358, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 720" - } -}, -{ - "type": "node", - "id": 6101004258, - "lat": 53.4762793, - "lon": -1.4516752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 797", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6101004259, - "lat": 53.4318157, - "lon": -1.4955056, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S6 835" - } -}, -{ - "type": "node", - "id": 6101004260, - "lat": 53.4811435, - "lon": -1.4452264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S62 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6101411826, - "lat": 54.8320601, - "lon": -1.3381258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:letter_size": "C4", - "ref": "SR7 144" - } -}, -{ - "type": "node", - "id": 6103830969, - "lat": 51.5544617, - "lon": -0.1446556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "ref": "NW5 9D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 9D" - } -}, -{ - "type": "node", - "id": 6103830974, - "lat": 51.5555749, - "lon": -0.1542351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 9D" - } -}, -{ - "type": "node", - "id": 6105866284, - "lat": 51.4795740, - "lon": -0.1990025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 06:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6106079688, - "lat": 53.9761699, - "lon": -1.4589063, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6109263374, - "lat": 53.1638760, - "lon": -2.2144579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "colour": "gold", - "description": "gold post box in honour of 1964 Olympic gold medallist Ann Packer, for Congleton's 750th anniversary", - "ref": "CW12 999", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "subject:wikidata": "Q241891", - "subject:wikipedia": "Ann Packer" - } -}, -{ - "type": "node", - "id": 6109617734, - "lat": 52.3778954, - "lon": -1.4644444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CV3 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6109628978, - "lat": 53.4261856, - "lon": -1.4831454, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S5 743" - } -}, -{ - "type": "node", - "id": 6109647182, - "lat": 53.1677205, - "lon": -2.2143700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW12 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6109673884, - "lat": 53.2688998, - "lon": -3.7963526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL28 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6109701720, - "lat": 53.1692426, - "lon": -2.2011302, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6109726263, - "lat": 52.3345674, - "lon": -1.1786695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6109768285, - "lat": 53.1636981, - "lon": -2.2064216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6109768680, - "lat": 53.1626550, - "lon": -2.2084522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "ref": "CW12 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6109911173, - "lat": 50.9415804, - "lon": -2.6390607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6109996109, - "lat": 50.7984625, - "lon": 0.3074452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN23 881", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110056796, - "lat": 53.4095200, - "lon": -1.3392074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110056797, - "lat": 53.4069052, - "lon": -1.3444997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 320", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110056798, - "lat": 53.4060032, - "lon": -1.3321226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110074928, - "lat": 53.4100268, - "lon": -1.3185884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110074931, - "lat": 53.4045269, - "lon": -1.3256001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "S60 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110074932, - "lat": 53.4094813, - "lon": -1.3265143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110074934, - "lat": 53.4070862, - "lon": -1.3246768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110081585, - "lat": 53.4069415, - "lon": -1.3137874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S60 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110084246, - "lat": 53.4190063, - "lon": -1.3230832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6110084247, - "lat": 53.4143922, - "lon": -1.3209131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 230D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6110105795, - "lat": 53.4175198, - "lon": -1.3323133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "S60 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6110105796, - "lat": 53.4212586, - "lon": -1.3364606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110108872, - "lat": 53.4254520, - "lon": -1.3503004, - "tags": { - "amenity": "post_box", - "comment": "Plate missing. VR box but no cypher.", - "post_box:type": "pillar", - "ref": "S60 124", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6110108873, - "lat": 53.4237784, - "lon": -1.3413221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6110120151, - "lat": 53.4240268, - "lon": -1.3589907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6110176477, - "lat": 51.0246616, - "lon": -3.2544866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TA4 403", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6110184795, - "lat": 51.1279836, - "lon": -3.2909768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "TA4 412", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6110222391, - "lat": 50.7251461, - "lon": -2.9361254, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6110723804, - "lat": 53.2351445, - "lon": -2.4063417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "mapillary": "1440761306804138", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WA16 7", - "survey:date": "2024-05-19" - } -}, -{ - "type": "node", - "id": 6110741598, - "lat": 53.2357835, - "lon": -2.3877074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ref": "WA16 89" - } -}, -{ - "type": "node", - "id": 6110751653, - "lat": 53.2377138, - "lon": -2.3837819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 31", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6110766347, - "lat": 53.2276553, - "lon": -2.3855493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "mapillary": "1237489630561050", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CW4 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-19" - } -}, -{ - "type": "node", - "id": 6110801953, - "lat": 53.2146772, - "lon": -2.3284580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "CW4 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110810303, - "lat": 53.2006562, - "lon": -2.2849314, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-19", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "ref": "CW12 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6110818393, - "lat": 51.5506492, - "lon": -0.4711582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB8 14", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6111656903, - "lat": 53.4220794, - "lon": -1.3190468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111656904, - "lat": 53.4194798, - "lon": -1.3088816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S60 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111672708, - "lat": 53.4386620, - "lon": -1.3160327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "S65 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111672709, - "lat": 53.4360831, - "lon": -1.3141577, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "lamp", - "ref": "S65 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111672710, - "lat": 53.4328367, - "lon": -1.3118049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S65 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111684499, - "lat": 53.4445678, - "lon": -1.3101431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6111684500, - "lat": 53.4389735, - "lon": -1.3121673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S65 169", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6111696839, - "lat": 53.4251665, - "lon": -1.3323758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111716462, - "lat": 53.4296829, - "lon": -1.3321481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6111716464, - "lat": 53.4257658, - "lon": -1.3267336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S65 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6111741775, - "lat": 53.4317233, - "lon": -1.3251809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "S65 195", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6111741776, - "lat": 53.4343993, - "lon": -1.3270413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 115", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6112407299, - "lat": 53.4535499, - "lon": -1.2962633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S65 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6112407300, - "lat": 53.4488248, - "lon": -1.2995741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6112754809, - "lat": 52.6135968, - "lon": -0.2868117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 19:30; Sa 18:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE4 500" - } -}, -{ - "type": "node", - "id": 6112936059, - "lat": 53.3262609, - "lon": -2.2349722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK9 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6112950188, - "lat": 53.3284507, - "lon": -2.2297868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "ref": "SK9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6112964488, - "lat": 53.4825588, - "lon": -1.1380289, - "tags": { - "amenity": "post_box", - "ref": "DN11 67" - } -}, -{ - "type": "node", - "id": 6115072408, - "lat": 53.2825773, - "lon": -2.2365397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK9 128" - } -}, -{ - "type": "node", - "id": 6116249779, - "lat": 51.3769908, - "lon": -0.8556504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "RG40 76;RG40 760", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6117023396, - "lat": 53.4189835, - "lon": -1.4481163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "S5 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6117126064, - "lat": 53.4418210, - "lon": -1.4582767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S35 637", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6119725414, - "lat": 53.5253371, - "lon": -1.6300388, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-07-20", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "S36 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-02-12" - } -}, -{ - "type": "node", - "id": 6119858533, - "lat": 51.9125889, - "lon": -3.8909659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:30", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SA19 220", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6119888108, - "lat": 51.5512325, - "lon": 0.0317054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6119888165, - "lat": 51.5526028, - "lon": 0.0279388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 2D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6120043831, - "lat": 53.3326100, - "lon": -1.3388739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "S20 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120043834, - "lat": 53.3301063, - "lon": -1.3967054, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S12 619D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120043837, - "lat": 53.3454019, - "lon": -1.3352251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S20 476D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120043839, - "lat": 53.3557885, - "lon": -1.3925208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120058141, - "lat": 53.3275501, - "lon": -1.3399951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "S20 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120058142, - "lat": 53.3258665, - "lon": -1.3528731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120068167, - "lat": 53.3267301, - "lon": -1.3591851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 725D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120068168, - "lat": 53.3290391, - "lon": -1.3659334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 703", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120086467, - "lat": 53.3329500, - "lon": -1.3797786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 956", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6120086468, - "lat": 53.3443235, - "lon": -1.3725693, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S12 384", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6120086470, - "lat": 53.3302974, - "lon": -1.3724782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S20 224", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6120086471, - "lat": 53.3421124, - "lon": -1.3779837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S20 936", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6120221355, - "lat": 52.1150577, - "lon": -3.6294126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LD5 151", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6120231640, - "lat": 52.1032169, - "lon": -3.6438503, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6121758851, - "lat": 53.1915457, - "lon": -2.8842044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 13:15; Su off", - "drive_through": "no", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CH1", - "ref": "CH1 41;CH1 2000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Foregate Street, Chester" - } -}, -{ - "type": "node", - "id": 6122154879, - "lat": 53.4156743, - "lon": -2.9642480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria Type B post box L6 15 on Everton Road, Everton, at Lytton Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Everton Road.jpg" - } -}, -{ - "type": "node", - "id": 6122248556, - "lat": 53.3719655, - "lon": -1.5204727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S10 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6122424492, - "lat": 51.4323615, - "lon": -2.7587181, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "BS48 1071", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6122645151, - "lat": 55.0054415, - "lon": -1.6005401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 281D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6123382994, - "lat": 51.9778172, - "lon": -2.8837762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 08:45; Su off", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6124189191, - "lat": 53.7889593, - "lon": -1.2539394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 746" - } -}, -{ - "type": "node", - "id": 6124189192, - "lat": 53.7953332, - "lon": -1.2591008, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 743" - } -}, -{ - "type": "node", - "id": 6124189193, - "lat": 53.7987800, - "lon": -1.2525165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 367" - } -}, -{ - "type": "node", - "id": 6124189194, - "lat": 53.7994798, - "lon": -1.2492348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 908" - } -}, -{ - "type": "node", - "id": 6124189195, - "lat": 53.7974492, - "lon": -1.2437618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 246" - } -}, -{ - "type": "node", - "id": 6124189196, - "lat": 53.7939099, - "lon": -1.2285925, - "tags": { - "amenity": "post_box", - "note": "right hand slot might be for franked mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LS25 276;LS25 1276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124189197, - "lat": 53.8100728, - "lon": -1.2099914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 19" - } -}, -{ - "type": "node", - "id": 6124189198, - "lat": 53.7874283, - "lon": -1.2324013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124189209, - "lat": 53.7791609, - "lon": -1.2463877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 708" - } -}, -{ - "type": "node", - "id": 6124189210, - "lat": 53.7781505, - "lon": -1.2532427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS25 740" - } -}, -{ - "type": "node", - "id": 6124189211, - "lat": 53.7757009, - "lon": -1.2589538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 337" - } -}, -{ - "type": "node", - "id": 6124189212, - "lat": 53.7667952, - "lon": -1.2634143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 327", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6124189213, - "lat": 53.7631201, - "lon": -1.2384658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 696" - } -}, -{ - "type": "node", - "id": 6124189214, - "lat": 53.7611810, - "lon": -1.2520847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 311" - } -}, -{ - "type": "node", - "id": 6124189215, - "lat": 53.7576933, - "lon": -1.2327426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 929" - } -}, -{ - "type": "node", - "id": 6124189216, - "lat": 53.7434749, - "lon": -1.2617272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS25 857", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124189217, - "lat": 53.7189592, - "lon": -1.2927456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF11 407" - } -}, -{ - "type": "node", - "id": 6124189221, - "lat": 53.7276021, - "lon": -1.3367647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF10 315" - } -}, -{ - "type": "node", - "id": 6124189222, - "lat": 53.7636108, - "lon": -1.3797846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS25 952" - } -}, -{ - "type": "node", - "id": 6124189223, - "lat": 53.7715245, - "lon": -1.3698860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS25 689" - } -}, -{ - "type": "node", - "id": 6124308386, - "lat": 51.4346317, - "lon": -2.7541821, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS48 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124857320, - "lat": 53.3186055, - "lon": -1.5169236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S17 843D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124859320, - "lat": 53.3136797, - "lon": -1.5284332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S17 745D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124859321, - "lat": 53.3207425, - "lon": -1.5168562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S17 796D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6124885567, - "lat": 53.3159870, - "lon": -1.5326137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "S17 490", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125062095, - "lat": 52.3574964, - "lon": -1.7310552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "B94 154", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6125275495, - "lat": 57.1159209, - "lon": -2.1155948, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 508" - } -}, -{ - "type": "node", - "id": 6125361543, - "lat": 51.4377722, - "lon": -2.7483060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125421078, - "lat": 51.4359079, - "lon": -2.7442981, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS48 685", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125666934, - "lat": 53.3160569, - "lon": -1.5203654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S17 893", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125668728, - "lat": 53.3117073, - "lon": -1.5335470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S17 980", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125670283, - "lat": 53.3175578, - "lon": -1.5248309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S17 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125698569, - "lat": 53.2953497, - "lon": -1.5357610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 668" - } -}, -{ - "type": "node", - "id": 6125698570, - "lat": 53.3453289, - "lon": -1.5280509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S11 792", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125716320, - "lat": 53.3010485, - "lon": -1.4874462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 952D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125716321, - "lat": 53.2992946, - "lon": -1.5017507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125720952, - "lat": 53.3058815, - "lon": -1.4939714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125725708, - "lat": 53.3013326, - "lon": -1.4750773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "S18 161;S18 18161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125725709, - "lat": 53.3092781, - "lon": -1.4777778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 522" - } -}, -{ - "type": "node", - "id": 6125732555, - "lat": 53.2976190, - "lon": -1.4759331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 953" - } -}, -{ - "type": "node", - "id": 6125732556, - "lat": 53.2940015, - "lon": -1.4694470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125734304, - "lat": 53.2976890, - "lon": -1.4679375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6125736978, - "lat": 53.2915613, - "lon": -1.4600464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S18 821" - } -}, -{ - "type": "node", - "id": 6126276616, - "lat": 52.9207273, - "lon": 1.2483090, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6126794363, - "lat": 53.1445786, - "lon": -4.2716666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection": "17:15", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "location": "inside_store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6126907242, - "lat": 52.2755202, - "lon": 0.7090688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP28 2101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127073827, - "lat": 53.4068501, - "lon": -1.3681641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 99", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6127073828, - "lat": 53.4068318, - "lon": -1.3741435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127073829, - "lat": 53.4736941, - "lon": -1.5700348, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S36 599D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127073830, - "lat": 53.4747099, - "lon": -1.5733769, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S36 928", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127073831, - "lat": 53.4000369, - "lon": -1.3729349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127073833, - "lat": 53.4049311, - "lon": -1.3628133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127085213, - "lat": 53.4082200, - "lon": -1.3594186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S60 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6127106226, - "lat": 53.4291630, - "lon": -1.3881905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 112", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6127106227, - "lat": 53.4293635, - "lon": -1.3989336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127111269, - "lat": 53.4284704, - "lon": -1.3810702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127121098, - "lat": 53.4409364, - "lon": -1.3896247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127121099, - "lat": 53.4360124, - "lon": -1.3787063, - "tags": { - "amenity": "post_box", - "comment": "plate missing", - "post_box:type": "lamp", - "ref": "S61 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127121100, - "lat": 53.4351666, - "lon": -1.3694992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6127131064, - "lat": 53.4432920, - "lon": -1.3923677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S61 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127131066, - "lat": 53.4433431, - "lon": -1.3863839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127139903, - "lat": 53.4459087, - "lon": -1.3932386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127142165, - "lat": 53.4428456, - "lon": -1.4063728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S61 79D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6127142166, - "lat": 53.4397277, - "lon": -1.3993335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6127182725, - "lat": 53.4471244, - "lon": -1.4023049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127182727, - "lat": 53.4520459, - "lon": -1.3657067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "S61 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6127182728, - "lat": 53.4552328, - "lon": -1.3687194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6127182729, - "lat": 53.4568298, - "lon": -1.3738642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127182730, - "lat": 53.4505252, - "lon": -1.3814336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S61 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127182731, - "lat": 53.4538975, - "lon": -1.3902054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127182732, - "lat": 53.4499762, - "lon": -1.3924807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127189321, - "lat": 53.4475061, - "lon": -1.3744727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127189322, - "lat": 53.4533186, - "lon": -1.3625677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6127561471, - "lat": 51.6868658, - "lon": -0.0015119, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "EN9 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6128125506, - "lat": 55.6999133, - "lon": -2.0021430, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD15 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6128125515, - "lat": 55.7123026, - "lon": -2.0562847, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD15 38", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6128125516, - "lat": 55.7119884, - "lon": -2.0986394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6128269680, - "lat": 53.1614234, - "lon": -2.2227551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6129392044, - "lat": 53.5247371, - "lon": -0.4234898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "LN7 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6129426582, - "lat": 53.4970858, - "lon": -0.3212451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LN7 435" - } -}, -{ - "type": "node", - "id": 6129426909, - "lat": 53.4946492, - "lon": -0.3141591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LN7 521" - } -}, -{ - "type": "node", - "id": 6129426912, - "lat": 53.4947768, - "lon": -0.3209743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN7 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6129444918, - "lat": 53.5514822, - "lon": -0.4881722, - "tags": { - "amenity": "post_box", - "note": "stamped mail in left slot and franked mail in right slot", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6129444951, - "lat": 53.5521068, - "lon": -0.4921955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "DN20 312", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6130122210, - "lat": 53.5925209, - "lon": -2.4562342, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6130564104, - "lat": 53.4687534, - "lon": -1.5082765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "S35 1775D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6130624582, - "lat": 53.2507821, - "lon": -2.4849931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6130957060, - "lat": 51.7248633, - "lon": -4.2559426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6130972095, - "lat": 51.7616000, - "lon": -4.2067032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6132702825, - "lat": 53.5769737, - "lon": -2.4473693, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6132731904, - "lat": 53.4952808, - "lon": -1.4237360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S74 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6132904919, - "lat": 53.3622778, - "lon": -1.4593692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S2 681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6132955454, - "lat": 53.3584848, - "lon": -1.4486711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 682", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6133233097, - "lat": 53.3487011, - "lon": -1.4487695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S14 855", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6133236746, - "lat": 53.3529666, - "lon": -1.4484109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "S14 854", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6133272457, - "lat": 53.3504108, - "lon": -1.4436276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S14 870", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6133281627, - "lat": 53.3437270, - "lon": -1.4371213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S14 839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6133607113, - "lat": 53.3613509, - "lon": -1.3990408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6133620243, - "lat": 53.3651137, - "lon": -1.3920572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 877", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6133620244, - "lat": 53.3629876, - "lon": -1.3952120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S13 758", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6134814960, - "lat": 53.3246321, - "lon": -1.3648236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S20 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134823454, - "lat": 53.3257486, - "lon": -1.3628122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S20 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134823455, - "lat": 53.3257262, - "lon": -1.3627916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S20 5889", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134855235, - "lat": 53.3248054, - "lon": -1.3436928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S20 1253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134920406, - "lat": 53.3236072, - "lon": -1.3462282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 734D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134920407, - "lat": 53.3217327, - "lon": -1.3497570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S20 1026D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134944694, - "lat": 53.3196224, - "lon": -1.3536413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "S20 969", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134944695, - "lat": 53.3231619, - "lon": -1.3560161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134955944, - "lat": 53.3216533, - "lon": -1.3622255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S20 250D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6134964630, - "lat": 53.3196115, - "lon": -1.3404588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 968", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6134975110, - "lat": 53.3237645, - "lon": -1.3169023, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S21 554" - } -}, -{ - "type": "node", - "id": 6134975111, - "lat": 53.3252533, - "lon": -1.3235051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6135446495, - "lat": 53.3611980, - "lon": -1.4755999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "post_box:type": "pillar", - "ref": "S8 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6135446496, - "lat": 53.3612451, - "lon": -1.4755652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:type": "meter", - "ref": "S8 1224", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6135731512, - "lat": 50.6461406, - "lon": -2.4233195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6137105671, - "lat": 53.5634423, - "lon": -2.4770274, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6137731250, - "lat": 53.5208890, - "lon": -2.1344738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OL8 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 6137795201, - "lat": 53.4225751, - "lon": -1.3659458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "post_box:type": "meter", - "ref": "S60 291", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6137815055, - "lat": 53.4293325, - "lon": -1.3536017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S60 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6137815056, - "lat": 53.4287018, - "lon": -1.3554707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:00", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "S60 188;S60 189", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6137829476, - "lat": 53.4320383, - "lon": -1.3515358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6137829477, - "lat": 53.4335520, - "lon": -1.3492445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6137842886, - "lat": 53.4366777, - "lon": -1.3495225, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "pillar", - "ref": "S65 129", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6137941386, - "lat": 51.0339602, - "lon": -0.5551060, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "old_ref": "RH14 54", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH14 54D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6138825070, - "lat": 52.0774422, - "lon": -4.6567721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6138939390, - "lat": 50.4125429, - "lon": -3.8579320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ10 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6139115375, - "lat": 53.2361984, - "lon": -2.4885496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 6139115376, - "lat": 53.2589140, - "lon": -2.4593538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW9 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139246243, - "lat": 53.4776556, - "lon": -1.4152427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "wall", - "ref": "S62 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6139261385, - "lat": 53.4678065, - "lon": -1.3718863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "S62 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139261386, - "lat": 53.4786404, - "lon": -1.3982275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S62 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6139263108, - "lat": 53.4752828, - "lon": -1.3674719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291902, - "lat": 53.4714083, - "lon": -1.3476752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S62 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291903, - "lat": 53.4721369, - "lon": -1.3576241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "pillar", - "ref": "S62 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291904, - "lat": 53.4632585, - "lon": -1.3319940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S62 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291905, - "lat": 53.4690982, - "lon": -1.3240227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291906, - "lat": 53.4679795, - "lon": -1.3311280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S62 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291909, - "lat": 53.4648632, - "lon": -1.3400560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S62 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291910, - "lat": 53.4653602, - "lon": -1.3493141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6139291911, - "lat": 53.4681247, - "lon": -1.3476689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S62 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6140011727, - "lat": 53.3560896, - "lon": -1.5046493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 834", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6140085960, - "lat": 53.4167763, - "lon": -1.4172969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "S9 1219", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6140240419, - "lat": 51.6290576, - "lon": -2.6707104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 406", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6140240427, - "lat": 51.6266732, - "lon": -2.6713005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 840D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6140262818, - "lat": 53.9164288, - "lon": -1.2766752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 573", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6140262819, - "lat": 53.8975302, - "lon": -1.3179718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 976" - } -}, -{ - "type": "node", - "id": 6140262820, - "lat": 53.8816447, - "lon": -1.2345078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 645" - } -}, -{ - "type": "node", - "id": 6140262821, - "lat": 53.8675558, - "lon": -1.2724158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 569" - } -}, -{ - "type": "node", - "id": 6140262822, - "lat": 53.8739046, - "lon": -1.2867174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 910" - } -}, -{ - "type": "node", - "id": 6140262823, - "lat": 53.8761824, - "lon": -1.2975776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 821" - } -}, -{ - "type": "node", - "id": 6140262824, - "lat": 53.8614568, - "lon": -1.2311916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 572" - } -}, -{ - "type": "node", - "id": 6140262825, - "lat": 53.8551402, - "lon": -1.2139262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS24 990" - } -}, -{ - "type": "node", - "id": 6140262826, - "lat": 53.8183146, - "lon": -1.2550217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS24 751", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6140262827, - "lat": 53.8263419, - "lon": -1.2270771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS24 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6140262828, - "lat": 53.8260688, - "lon": -1.2101839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS24 68", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6140280443, - "lat": 52.8464089, - "lon": -2.7329377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "mapillary": "634898197758226", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "SY4 83", - "survey:date": "2021-12-21" - } -}, -{ - "type": "node", - "id": 6141142984, - "lat": 53.4335637, - "lon": -1.3340028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6141160396, - "lat": 53.3843383, - "lon": -3.0238342, - "tags": { - "amenity": "post_box", - "description": "EIIR lamp box pier CH42 206 on Elm Grove, Tranmere. replaced a nearby wall box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH42 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Elm Grove, Tranmere.jpg" - } -}, -{ - "type": "node", - "id": 6141168487, - "lat": 53.4397855, - "lon": -1.3258312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S65 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6141168488, - "lat": 53.4367231, - "lon": -1.3450538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6141168489, - "lat": 53.4380437, - "lon": -1.3409017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6141168490, - "lat": 53.4348428, - "lon": -1.3393073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6141188212, - "lat": 53.4748750, - "lon": -1.5929463, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S36 479" - } -}, -{ - "type": "node", - "id": 6141188213, - "lat": 53.4789237, - "lon": -1.5863023, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 293" - } -}, -{ - "type": "node", - "id": 6141188214, - "lat": 53.4772983, - "lon": -1.5835726, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S36 827" - } -}, -{ - "type": "node", - "id": 6141188215, - "lat": 53.4801530, - "lon": -1.5780349, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 279" - } -}, -{ - "type": "node", - "id": 6141188216, - "lat": 53.4357580, - "lon": -1.3216344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S65 44", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6141194155, - "lat": 53.4802065, - "lon": -1.5993669, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 621" - } -}, -{ - "type": "node", - "id": 6141194156, - "lat": 53.4787091, - "lon": -1.5937267, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 241" - } -}, -{ - "type": "node", - "id": 6141199722, - "lat": 53.4761604, - "lon": -1.6005834, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S36 899" - } -}, -{ - "type": "node", - "id": 6141219385, - "lat": 53.4673635, - "lon": -1.5931472, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S36 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6141309449, - "lat": 52.7834413, - "lon": -2.5814333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TF6 181", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6141421850, - "lat": 54.2770088, - "lon": -0.4138141, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "inside Spar shop", - "post_box:type": "indoor_box", - "ref": "YO12 208" - } -}, -{ - "type": "node", - "id": 6141515486, - "lat": 53.2274511, - "lon": -3.8380393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL32 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6142010379, - "lat": 53.5886257, - "lon": -2.3519842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6142443355, - "lat": 53.3738893, - "lon": -1.5133057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S10 76D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6143805603, - "lat": 53.1986226, - "lon": -2.9159685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "note": "In foyer of Asda", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 667", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6144647227, - "lat": 53.3607093, - "lon": -1.3940802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S13 882", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6144800971, - "lat": 53.3745676, - "lon": -3.0319594, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type A post box CH42 171 at Prenton Road East, Birkenhead at its junction iwth Borough Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 171", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Prenton Road East, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 6144966253, - "lat": 53.4118530, - "lon": -1.4558246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "wall", - "ref": "S5 442", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6145606450, - "lat": 53.9141780, - "lon": -1.3141188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS23 256" - } -}, -{ - "type": "node", - "id": 6145606451, - "lat": 53.9203123, - "lon": -1.3255182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LS23 4" - } -}, -{ - "type": "node", - "id": 6145606452, - "lat": 53.9203439, - "lon": -1.3255182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS23 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145606453, - "lat": 53.9087071, - "lon": -1.3560793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS23 462" - } -}, -{ - "type": "node", - "id": 6145606454, - "lat": 53.9027485, - "lon": -1.3643029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS23 984" - } -}, -{ - "type": "node", - "id": 6145606462, - "lat": 53.9056210, - "lon": -1.3604684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS23 930" - } -}, -{ - "type": "node", - "id": 6145606463, - "lat": 53.9069217, - "lon": -1.3538343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS23 302" - } -}, -{ - "type": "node", - "id": 6145606464, - "lat": 53.9030455, - "lon": -1.3504225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS23 690" - } -}, -{ - "type": "node", - "id": 6145606465, - "lat": 53.9018398, - "lon": -1.3375211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS23 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145606466, - "lat": 53.8951879, - "lon": -1.3531208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS23 965", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145606467, - "lat": 53.8928708, - "lon": -1.3501214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS23 705", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145606468, - "lat": 53.8848871, - "lon": -1.3532770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS23 46" - } -}, -{ - "type": "node", - "id": 6145606469, - "lat": 53.8807338, - "lon": -1.3499759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS23 706" - } -}, -{ - "type": "node", - "id": 6145880922, - "lat": 53.3476012, - "lon": -1.3672403, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "S12 412" - } -}, -{ - "type": "node", - "id": 6145887754, - "lat": 53.3414135, - "lon": -1.3644382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145911979, - "lat": 53.3376448, - "lon": -1.3614015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 971", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145916746, - "lat": 53.3363425, - "lon": -1.3748762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 1633D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145919725, - "lat": 53.3242090, - "lon": -1.3704675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S20 1621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145966827, - "lat": 53.3267434, - "lon": -1.3033710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S21 367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145966832, - "lat": 53.3156555, - "lon": -1.3170962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S21 609", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6145966833, - "lat": 53.3162750, - "lon": -1.3241292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S21 1143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6145978116, - "lat": 53.3172113, - "lon": -1.2974574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S21 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6146003450, - "lat": 53.3575149, - "lon": -1.3040938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S26 1108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146003451, - "lat": 53.3413884, - "lon": -1.2956412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "S26 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146398567, - "lat": 53.3600557, - "lon": -1.3292042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "RM has this as S26 307D", - "post_box:type": "pillar", - "ref": "S26 1629D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146431989, - "lat": 53.3621481, - "lon": -1.3258418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S26 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146431992, - "lat": 53.3583903, - "lon": -1.3143877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S26 219", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146431993, - "lat": 53.3601873, - "lon": -1.3240419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S26 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146446755, - "lat": 53.3666787, - "lon": -1.3222632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "RM shows this as S26 1629", - "post_box:type": "wall", - "ref": "S26 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146446756, - "lat": 53.3617595, - "lon": -1.3045045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "S26 1019", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146446758, - "lat": 53.3631387, - "lon": -1.3175779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S26 831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146454663, - "lat": 53.3696337, - "lon": -1.3205585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S26 579", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6146459239, - "lat": 53.3726439, - "lon": -1.3186880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S26 447", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6146618739, - "lat": 53.9831591, - "lon": -0.3243815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO25 332", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6147215206, - "lat": 53.9739271, - "lon": -1.4120530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 756" - } -}, -{ - "type": "node", - "id": 6147215207, - "lat": 53.9754127, - "lon": -1.3476089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS22 340" - } -}, -{ - "type": "node", - "id": 6147215208, - "lat": 53.9591326, - "lon": -1.4074007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS22 453" - } -}, -{ - "type": "node", - "id": 6147267098, - "lat": 54.2077836, - "lon": -2.8113430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA7 242" - } -}, -{ - "type": "node", - "id": 6147522926, - "lat": 54.5539899, - "lon": -1.2584187, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6148083271, - "lat": 53.5591480, - "lon": -2.4846917, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6149516887, - "lat": 53.5570415, - "lon": -2.4911579, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6151001625, - "lat": 53.3241832, - "lon": -1.6406826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S32 626", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6151009356, - "lat": 53.2682191, - "lon": -1.6247991, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S32 201" - } -}, -{ - "type": "node", - "id": 6151010460, - "lat": 53.3320084, - "lon": -1.6497206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S32 575D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6151022235, - "lat": 53.2697002, - "lon": -1.6420780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "note": "Re-located from old Post Office, Main Street in 2015", - "post_box:type": "wall", - "ref": "S32 200", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 6151022236, - "lat": 53.2668148, - "lon": -1.6332920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "post_box:type": "pillar", - "ref": "S32 564D" - } -}, -{ - "type": "node", - "id": 6151040773, - "lat": 53.2755735, - "lon": -1.6560235, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S32 562D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6151040774, - "lat": 53.2731434, - "lon": -1.6501262, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S32 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6151197881, - "lat": 50.0970478, - "lon": -5.2081401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6151722533, - "lat": 53.4303875, - "lon": -1.4020977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6151737957, - "lat": 51.6164902, - "lon": -1.3002129, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6151737958, - "lat": 51.6281543, - "lon": -1.3197286, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6151737959, - "lat": 51.6233863, - "lon": -1.3238901, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6151862790, - "lat": 53.1808652, - "lon": -2.9334074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6151862791, - "lat": 53.1808536, - "lon": -2.9333931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH4 420" - } -}, -{ - "type": "node", - "id": 6151862792, - "lat": 53.1767733, - "lon": -2.9377344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 388D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6152135542, - "lat": 53.1934422, - "lon": -2.9227094, - "tags": { - "addr:postcode": "CH1 4PA", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "yes", - "note": "Posting bank. 1st Class & 2nd Class Mail. 1st Class & 2nd Class Meter Mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "bin" - } -}, -{ - "type": "node", - "id": 6152354864, - "lat": 53.4491227, - "lon": -1.3437871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "meter", - "ref": "S62 299", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6152557866, - "lat": 51.5907808, - "lon": -2.9919281, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 6152557868, - "lat": 51.5946250, - "lon": -2.9739098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6152557870, - "lat": 51.5945993, - "lon": -2.9683055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6154108275, - "lat": 53.3982515, - "lon": -2.6241785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA5 326" - } -}, -{ - "type": "node", - "id": 6154112794, - "lat": 57.9726285, - "lon": -3.9834984, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW10 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6154112833, - "lat": 57.9783972, - "lon": -3.9637527, - "tags": { - "amenity": "post_box", - "note": "reputedly the oldest operational postbox in Scotland", - "post_box:type": "wall", - "ref": "KW10 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6154112857, - "lat": 57.9731520, - "lon": -3.9764718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "post_box:type": "wall", - "ref": "KW10 62", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6154112858, - "lat": 57.9751402, - "lon": -3.9703242, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KW10 77", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154163742, - "lat": 58.1163968, - "lon": -3.6509775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "KW8 86", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154163750, - "lat": 58.0820004, - "lon": -3.7449484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW8 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154163761, - "lat": 58.1771084, - "lon": -3.8647681, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW8 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154235985, - "lat": 58.2031337, - "lon": -3.4789460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW7 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154243466, - "lat": 53.1496165, - "lon": -2.1808145, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-07", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "CW12 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154248770, - "lat": 53.1537540, - "lon": -2.1856313, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CW12 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6154292231, - "lat": 50.9447663, - "lon": -2.5198613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "795210924525503", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref:GB:uprn": "10015353812", - "royal_cypher": "GR", - "survey:date": "2021-06-16" - } -}, -{ - "type": "node", - "id": 6154317405, - "lat": 53.3617298, - "lon": -1.3096133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "S26 665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154335614, - "lat": 53.3626246, - "lon": -1.2874395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S26 708", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6154343685, - "lat": 53.3506303, - "lon": -1.2549982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S26 888", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154343686, - "lat": 53.3597508, - "lon": -1.2722980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "lamp", - "ref": "S26 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154343687, - "lat": 53.3761578, - "lon": -1.3191263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S26 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154404426, - "lat": 53.3406477, - "lon": -1.2712178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S26 187", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6154404427, - "lat": 53.3415185, - "lon": -1.2657798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "comment": "plate shows S25 364", - "post_box:type": "pillar", - "ref": "S26 346", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6154404430, - "lat": 53.3408486, - "lon": -1.2548498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S26 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154408247, - "lat": 53.3410301, - "lon": -1.2843032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S26 661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154408248, - "lat": 53.3409741, - "lon": -1.2765391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S21 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154412514, - "lat": 53.3455721, - "lon": -1.2283525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S25 932", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154412515, - "lat": 53.3368560, - "lon": -1.2382282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "S26 468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154415774, - "lat": 53.3491170, - "lon": -1.2243540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154431187, - "lat": 53.3626244, - "lon": -1.2067957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 1317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154431188, - "lat": 53.3622891, - "lon": -1.2144301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 933", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154431189, - "lat": 53.3594716, - "lon": -1.2109458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 1318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154431190, - "lat": 53.3558042, - "lon": -1.2127764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 1036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154431191, - "lat": 53.3548401, - "lon": -1.2231121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S25 220", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6154444613, - "lat": 53.3693250, - "lon": -1.2193437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S25 598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154444614, - "lat": 53.3703482, - "lon": -1.2006792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S25 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154444615, - "lat": 53.3633680, - "lon": -1.1975554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S25 617", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154444616, - "lat": 53.3657285, - "lon": -1.2030350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 531", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6154459270, - "lat": 53.3687685, - "lon": -1.2104805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S25 6839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154459271, - "lat": 53.3687393, - "lon": -1.2104972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S25 683", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154459272, - "lat": 53.3709636, - "lon": -1.2089902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 688", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6154459274, - "lat": 53.3723223, - "lon": -1.2108532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S25 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154459280, - "lat": 53.3785284, - "lon": -1.2112358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S25 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6154568547, - "lat": 58.2763439, - "lon": -3.3842425, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW5 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154572594, - "lat": 58.3018940, - "lon": -3.2850173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "Type M postbox has been replaced with more modern design though the Type M plinth has remained", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW3 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154575681, - "lat": 58.5714159, - "lon": -3.5464506, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW14 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154621573, - "lat": 58.5884744, - "lon": -3.5397397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "KW14 6D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154621574, - "lat": 58.5875421, - "lon": -3.5228390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW14 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154622112, - "lat": 58.5956759, - "lon": -3.5235606, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW14 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154622132, - "lat": 58.5916001, - "lon": -3.5124722, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KW14 10", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6154622134, - "lat": 58.5934660, - "lon": -3.5076388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KW14 13D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154622146, - "lat": 58.5945339, - "lon": -3.5192877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KW14 69", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154622149, - "lat": 58.5933277, - "lon": -3.5220477, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-12", - "collection_times": "Mo-Fr 16:00; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KW14 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6154627174, - "lat": 58.6091213, - "lon": -3.5534190, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6154632008, - "lat": 58.6225998, - "lon": -3.3428140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "post_box:type": "lamp", - "ref": "KW14 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154639499, - "lat": 58.6412062, - "lon": -3.3416305, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW14 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154644592, - "lat": 58.6225968, - "lon": -3.2814548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "KW14 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154808356, - "lat": 58.9792405, - "lon": -2.9584386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 13:30", - "post_box:type": "lamp", - "ref": "KW15 113", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154808367, - "lat": 58.9783214, - "lon": -2.9603970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW15 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154808373, - "lat": 58.9879993, - "lon": -2.9822200, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW15 31" - } -}, -{ - "type": "node", - "id": 6154808376, - "lat": 58.9776559, - "lon": -2.9415542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:15; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW15 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154808377, - "lat": 58.9786143, - "lon": -2.9555424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW15 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154808383, - "lat": 58.9758233, - "lon": -2.9583877, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "post_box:type": "wall", - "ref": "KW15 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154810088, - "lat": 58.9813439, - "lon": -2.9425775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 14:15", - "note": "box number illegible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6154810091, - "lat": 58.9798834, - "lon": -2.9528928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW15 23", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6155370889, - "lat": 51.1070696, - "lon": -1.8217255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155383370, - "lat": 51.0904204, - "lon": -1.8129239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP1 272", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6155419631, - "lat": 51.0672098, - "lon": -1.7820362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155419632, - "lat": 51.0693740, - "lon": -1.7806944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155419633, - "lat": 51.0671146, - "lon": -1.7749921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155453064, - "lat": 53.4105518, - "lon": -2.2217471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M20 599", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6155523770, - "lat": 53.4518584, - "lon": -1.3441609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S62 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155523771, - "lat": 53.4557288, - "lon": -1.3441691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155548314, - "lat": 53.4554847, - "lon": -1.3409234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6155555344, - "lat": 53.4605019, - "lon": -1.3363111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S62 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6157400482, - "lat": 51.0712329, - "lon": -0.8911919, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6157410662, - "lat": 51.0729802, - "lon": -0.8848186, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6157419069, - "lat": 51.0419171, - "lon": -0.8838453, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6157504182, - "lat": 53.7693650, - "lon": -2.7351608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PR2 10" - } -}, -{ - "type": "node", - "id": 6157504183, - "lat": 53.7634325, - "lon": -2.7479376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PR2 330" - } -}, -{ - "type": "node", - "id": 6157504184, - "lat": 53.7666141, - "lon": -2.7547888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "ref": "PR2 372" - } -}, -{ - "type": "node", - "id": 6157577255, - "lat": 52.6312054, - "lon": -0.5525612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE9 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6157953345, - "lat": 58.9953097, - "lon": -3.0851195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW15 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6157981506, - "lat": 58.8009939, - "lon": -3.1599558, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6158032174, - "lat": 58.9954431, - "lon": -3.2928959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW16 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6158032176, - "lat": 58.9666125, - "lon": -3.2955912, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "KW16 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6158032177, - "lat": 58.9699874, - "lon": -3.2942144, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6158032178, - "lat": 58.9708614, - "lon": -3.2867257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "note": "ref not visible", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6158032181, - "lat": 58.9559688, - "lon": -3.3019141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW16 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6158032184, - "lat": 58.9868532, - "lon": -3.2107395, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW16 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6158032285, - "lat": 58.9958969, - "lon": -3.1834363, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW16 4" - } -}, -{ - "type": "node", - "id": 6158032287, - "lat": 58.9621193, - "lon": -3.3033927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "post_box:type": "wall", - "ref": "KW16 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6158556157, - "lat": 51.0902137, - "lon": -1.1624851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO24 212", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6158724728, - "lat": 51.0511660, - "lon": -1.7529875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP5 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6159375635, - "lat": 51.4680781, - "lon": -0.5997691, - "tags": { - "amenity": "post_box", - "fixme": "There are two post boxes side by side here", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SL4 62", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6159391811, - "lat": 52.2353400, - "lon": 1.5817200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "ref": "IP16 4681" - } -}, -{ - "type": "node", - "id": 6159862037, - "lat": 54.1271825, - "lon": -1.5193055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6159862038, - "lat": 54.1288036, - "lon": -1.5095163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HG4 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6159983042, - "lat": 51.4068951, - "lon": -0.4061320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983043, - "lat": 51.4034404, - "lon": -0.4132198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW16 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983044, - "lat": 51.4176437, - "lon": -0.4303779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "TW16 252", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983045, - "lat": 51.4247347, - "lon": -0.4231480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW16 235", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983046, - "lat": 51.4232420, - "lon": -0.4275455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW16 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983047, - "lat": 51.4195832, - "lon": -0.4203410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TW16 236;TW16 2361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983048, - "lat": 51.4254624, - "lon": -0.4193285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW16 244", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983049, - "lat": 51.4270042, - "lon": -0.4126069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6159983050, - "lat": 51.4290273, - "lon": -0.4211772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW16 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6160029506, - "lat": 53.5762128, - "lon": -2.1016127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00" - } -}, -{ - "type": "node", - "id": 6160395972, - "lat": 54.1269041, - "lon": -1.4896884, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG4 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6160431742, - "lat": 54.2120336, - "lon": -1.6243362, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HG4 70", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6161370620, - "lat": 51.3967993, - "lon": -0.9660032, - "tags": { - "amenity": "post_box", - "ref": "RG7 415D" - } -}, -{ - "type": "node", - "id": 6162077599, - "lat": 57.1762071, - "lon": -2.1870077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6162086755, - "lat": 57.1784564, - "lon": -2.1870887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6162104885, - "lat": 52.0392539, - "lon": 1.1931706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP3 1431D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6162388564, - "lat": 52.0372388, - "lon": 1.1951316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1316", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6163328416, - "lat": 52.0405311, - "lon": 1.1852547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6163386086, - "lat": 52.0407792, - "lon": 1.1896447, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-06", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IP3 1085", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6164126636, - "lat": 51.4072182, - "lon": -0.9502932, - "tags": { - "amenity": "post_box", - "mapillary": "3095534567344002", - "post_box:type": "pillar", - "survey:date": "2021-11-01" - } -}, -{ - "type": "node", - "id": 6164876743, - "lat": 51.4051102, - "lon": -3.4853068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF61 59D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6165390235, - "lat": 51.4108960, - "lon": -0.6583769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL5 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6165683473, - "lat": 51.2935451, - "lon": -0.3509715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6165683474, - "lat": 51.2929641, - "lon": -0.3453239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6165799133, - "lat": 51.4082087, - "lon": -3.4807859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "mapillary": "563995074926090", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF61 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6166323749, - "lat": 52.3813755, - "lon": -1.4611023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV3 475", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6166323750, - "lat": 52.3813807, - "lon": -1.4610870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 13:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6166323751, - "lat": 52.3811083, - "lon": -1.4712182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6166482965, - "lat": 53.6551263, - "lon": -0.5988853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "name": "Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DN15 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 6166588685, - "lat": 52.3858550, - "lon": -1.4689550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV3 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6166700408, - "lat": 51.5491979, - "lon": -3.5893924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 118D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6166700474, - "lat": 52.3913673, - "lon": -1.4849333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CV3 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6166751654, - "lat": 51.3260177, - "lon": -0.7463995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU15 64", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6167012242, - "lat": 51.5165263, - "lon": -0.6596356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6167030011, - "lat": 53.8981813, - "lon": -1.7201154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 699" - } -}, -{ - "type": "node", - "id": 6167030012, - "lat": 53.9076872, - "lon": -1.6803771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 845", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6167030013, - "lat": 53.9096259, - "lon": -1.6696630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS21 882" - } -}, -{ - "type": "node", - "id": 6167030014, - "lat": 53.9006040, - "lon": -1.6192804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS21 495" - } -}, -{ - "type": "node", - "id": 6167030015, - "lat": 53.8990971, - "lon": -1.6069959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS21 439" - } -}, -{ - "type": "node", - "id": 6167130147, - "lat": 51.4481545, - "lon": -0.7244733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG42 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6167173943, - "lat": 51.5340078, - "lon": -0.6540646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL1 143D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6167198741, - "lat": 53.8041277, - "lon": -2.7604024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 226" - } -}, -{ - "type": "node", - "id": 6167198768, - "lat": 53.8152364, - "lon": -2.7971375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "ref": "PR4 238" - } -}, -{ - "type": "node", - "id": 6167202222, - "lat": 51.5393280, - "lon": -0.6513928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL1 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6167869189, - "lat": 56.0639752, - "lon": -3.5064299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 407D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6168928725, - "lat": 52.2267572, - "lon": 0.6720170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "IP29 2334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6168928726, - "lat": 52.2234972, - "lon": 0.6712090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP29 2201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6169154483, - "lat": 53.3209414, - "lon": -1.2766473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S26 194", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6169238228, - "lat": 53.3005908, - "lon": -1.4948718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 1041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6169238230, - "lat": 53.3241736, - "lon": -1.2611712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "S26 618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6169353692, - "lat": 51.7005428, - "lon": -2.2208594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "gold", - "drive_through": "no", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Pete Reed Gold Medal winner London 2012 Olympic Games Rowing: Men's Fours", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Pete Reed's gold postbox in Watledge Road, Nailsworth, Gloucestershire (3).jpg" - } -}, -{ - "type": "node", - "id": 6169761841, - "lat": 51.4855303, - "lon": -0.0810189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "no collection plate on 3rd July 2022 to confirm times/ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_d", - "post_box:type": "pillar", - "ref": "SE5 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6169800387, - "lat": 51.4810558, - "lon": -0.1016608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6171628670, - "lat": 51.5219163, - "lon": -2.5715063, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-11", - "collection_times": "Mo-Fr 19:00; Sa 14:00", - "post_box:type": "wall", - "ref": "BS34 2000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6172378308, - "lat": 52.6234746, - "lon": -1.1348670, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LE2 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6172378391, - "lat": 52.6193163, - "lon": -1.1334968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE2 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6172575003, - "lat": 51.3129037, - "lon": -0.7460216, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-18", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6172575005, - "lat": 51.3210470, - "lon": -0.7372092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6172575010, - "lat": 51.3248298, - "lon": -0.7279135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6172825561, - "lat": 51.2233099, - "lon": -0.9674008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6172828071, - "lat": 52.6179448, - "lon": -1.1350656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "LE2 846", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6173047771, - "lat": 50.4282617, - "lon": -3.6842894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6173232634, - "lat": 53.2744983, - "lon": -2.4965761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 73" - } -}, -{ - "type": "node", - "id": 6173779171, - "lat": 55.0098780, - "lon": -1.6206576, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date:collection_times": "2022-10-13", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:priority": "yes", - "post_box:type": "pillar", - "ref": "NE3 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19" - } -}, -{ - "type": "node", - "id": 6174856562, - "lat": 53.1008609, - "lon": -1.3883384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 711" - } -}, -{ - "type": "node", - "id": 6174871048, - "lat": 58.5014746, - "lon": -6.2599915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 141", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6175106763, - "lat": 54.5890668, - "lon": -5.8838549, - "tags": { - "addr:street": "Grand Parade", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6175239304, - "lat": 53.8664361, - "lon": -1.7190566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS20 492", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6175302633, - "lat": 52.3236966, - "lon": -1.8931145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "B98 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6175644282, - "lat": 52.3473154, - "lon": -1.8800911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B48 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6175887442, - "lat": 51.3483170, - "lon": -2.0832686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN12 183", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6176445613, - "lat": 51.6900423, - "lon": -1.4142349, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX13 1168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6176445614, - "lat": 51.6876794, - "lon": -1.4331070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX13 1241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6176459256, - "lat": 51.7085631, - "lon": -1.3634419, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX13 1077", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6176459266, - "lat": 51.7041746, - "lon": -1.3715999, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX13 1164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6176548661, - "lat": 52.3324134, - "lon": -1.8697149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6176625452, - "lat": 53.7665656, - "lon": -2.7649179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "PR2 430" - } -}, -{ - "type": "node", - "id": 6176625453, - "lat": 53.7697286, - "lon": -2.7610065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "PR2 282" - } -}, -{ - "type": "node", - "id": 6176815011, - "lat": 51.2830363, - "lon": -0.2455227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6176989385, - "lat": 51.9024610, - "lon": -1.0624927, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX27 344D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6177428711, - "lat": 52.5304431, - "lon": 0.0870644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE15 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6177434392, - "lat": 52.6651578, - "lon": -0.2557381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:design": "hovis", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "PE6 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6177981959, - "lat": 53.1929947, - "lon": -2.8778509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH3 666", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6178025906, - "lat": 53.3687908, - "lon": -2.3675746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 111", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 6178351873, - "lat": 52.6965207, - "lon": 0.6774908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "note": "Priority Postbox white sticker related to supporting NHS", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178419739, - "lat": 52.7083478, - "lon": 0.6462662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:45", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE32 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747025, - "lat": 53.9574647, - "lon": -1.8557031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 843" - } -}, -{ - "type": "node", - "id": 6178747032, - "lat": 53.9428926, - "lon": -1.8831146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 853" - } -}, -{ - "type": "node", - "id": 6178747033, - "lat": 53.9468732, - "lon": -1.8794078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 847", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747034, - "lat": 53.9434554, - "lon": -1.8784985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 851", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747035, - "lat": 53.9411845, - "lon": -1.8586094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 808", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6178747036, - "lat": 53.9377939, - "lon": -1.8308205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747037, - "lat": 53.9377062, - "lon": -1.8148470, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 830" - } -}, -{ - "type": "node", - "id": 6178747042, - "lat": 53.9270858, - "lon": -1.8401027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS29 825", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6178747043, - "lat": 53.9250090, - "lon": -1.8368612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 819", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6178747044, - "lat": 53.9203453, - "lon": -1.8300238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 807D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6178747045, - "lat": 53.9235030, - "lon": -1.8292867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 823", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 6178747046, - "lat": 53.9248036, - "lon": -1.8316805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS29 804", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 6178747047, - "lat": 53.9264959, - "lon": -1.8292330, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LS29 811", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747048, - "lat": 53.9297935, - "lon": -1.8303528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 826", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6178747049, - "lat": 53.9232503, - "lon": -1.8123914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 875" - } -}, -{ - "type": "node", - "id": 6178747050, - "lat": 53.9236822, - "lon": -1.8071571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 841" - } -}, -{ - "type": "node", - "id": 6178747051, - "lat": 53.9287768, - "lon": -1.8029682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS29 840" - } -}, -{ - "type": "node", - "id": 6178747052, - "lat": 53.9268015, - "lon": -1.7953447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 835", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747053, - "lat": 53.9207436, - "lon": -1.7883360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LS29 834" - } -}, -{ - "type": "node", - "id": 6178747054, - "lat": 53.9137428, - "lon": -1.7597840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LS29 865", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747055, - "lat": 53.9123766, - "lon": -1.7467967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 866", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178747056, - "lat": 53.9121996, - "lon": -1.7417780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LS29 867", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6178773467, - "lat": 51.5299001, - "lon": -1.0100471, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6179301263, - "lat": 53.5558226, - "lon": -2.5238259, - "tags": { - "amenity": "post_box", - "ref": "BL5 95" - } -}, -{ - "type": "node", - "id": 6180489068, - "lat": 51.4450712, - "lon": 0.2167000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DA1 5001;DA1 5002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6180496700, - "lat": 51.4128787, - "lon": 0.1227473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA14 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6180980671, - "lat": 55.4233123, - "lon": -5.7341657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA28 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6181810243, - "lat": 55.2072235, - "lon": -6.6579613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "position approximte", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT56 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 6181855607, - "lat": 51.4193979, - "lon": -0.4306360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW16 238D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6181885070, - "lat": 54.5331779, - "lon": -5.8287271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "geograph:id": "3951256", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "BT23 783", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 6182019659, - "lat": 52.2588490, - "lon": 0.6955817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP32 2268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6182045397, - "lat": 51.4044412, - "lon": -2.4549922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS31 311D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6182055416, - "lat": 52.2634441, - "lon": 0.7036392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP32 2244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6182283292, - "lat": 59.2212278, - "lon": -2.6676098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6183547802, - "lat": 53.3625338, - "lon": -1.4674701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S2 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6183660852, - "lat": 51.9279043, - "lon": -1.2522894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "last_checked": "2020-08-27", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX25 950", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6183972625, - "lat": 52.2552272, - "lon": 0.6982323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP32 2205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6184531707, - "lat": 52.0371674, - "lon": -0.3278813, - "tags": { - "amenity": "post_box", - "note": "Probably a EVIIR, judging by the apparent age but for some reason no actual numerals stamped on the box.", - "post_box:type": "wall", - "ref": "SG17 11D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 6184531708, - "lat": 52.0384866, - "lon": -0.3333530, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG17 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6184531715, - "lat": 52.0373733, - "lon": -0.3393735, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG17 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6184534346, - "lat": 52.0390698, - "lon": -0.2974302, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG17 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6184536332, - "lat": 52.0471849, - "lon": -0.2664232, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG18 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6184536333, - "lat": 52.0473168, - "lon": -0.2735451, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG18 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6184541664, - "lat": 52.0762998, - "lon": -0.2077150, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG18 13", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6184544211, - "lat": 52.0960973, - "lon": -0.1766342, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG19 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6185457150, - "lat": 53.5451667, - "lon": -2.4709538, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6185526372, - "lat": 52.2650166, - "lon": 0.7045672, - "tags": { - "amenity": "post_box", - "note": "Collection plate missing as of 2019-01-02", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP32 2230", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6185527656, - "lat": 52.3256073, - "lon": -0.1273160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6185565067, - "lat": 51.9312707, - "lon": -2.1808425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL19 331D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6185569275, - "lat": 52.2615059, - "lon": 0.6996416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP32 2250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6185573733, - "lat": 51.9067570, - "lon": -2.2127996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6186186353, - "lat": 51.4174909, - "lon": -0.4247101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 14:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TW16 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 6186366536, - "lat": 51.2843620, - "lon": -0.7256085, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6186802288, - "lat": 52.1239729, - "lon": -1.4547181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX15 1083", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6186812198, - "lat": 52.1608412, - "lon": -1.4196774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6186879801, - "lat": 52.5400110, - "lon": -0.2631571, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6186957329, - "lat": 51.2791932, - "lon": -0.7257472, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "drive_through": "no", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU12 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6187179793, - "lat": 53.3723499, - "lon": -2.3611516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA14 23", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6187722804, - "lat": 53.6226704, - "lon": -1.4103994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 54" - } -}, -{ - "type": "node", - "id": 6187722805, - "lat": 53.6143766, - "lon": -1.4364658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 126" - } -}, -{ - "type": "node", - "id": 6187722806, - "lat": 53.6495570, - "lon": -1.5279277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WF4 239" - } -}, -{ - "type": "node", - "id": 6187734611, - "lat": 52.0966879, - "lon": 0.6683723, - "tags": { - "amenity": "post_box", - "ref": "CO10 1009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6187967498, - "lat": 53.4098450, - "lon": -1.6138683, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S6 651" - } -}, -{ - "type": "node", - "id": 6188209189, - "lat": 52.5723946, - "lon": -0.2406834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE1 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6188363892, - "lat": 54.6677456, - "lon": -5.9123362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 637" - } -}, -{ - "type": "node", - "id": 6188370616, - "lat": 54.7183851, - "lon": -6.2122757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 23" - } -}, -{ - "type": "node", - "id": 6188632870, - "lat": 53.3857170, - "lon": -1.3550143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6188659386, - "lat": 53.3896899, - "lon": -1.3477671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S60 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6190136074, - "lat": 51.3628543, - "lon": -0.1775448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6190332329, - "lat": 54.6581508, - "lon": -5.9248820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 2" - } -}, -{ - "type": "node", - "id": 6191119273, - "lat": 51.0710245, - "lon": -1.2380170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6191145511, - "lat": 51.0896221, - "lon": -1.2959250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6192113429, - "lat": 54.6566302, - "lon": -5.9190545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 812" - } -}, -{ - "type": "node", - "id": 6193242292, - "lat": 53.1704609, - "lon": -3.4864074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6193546692, - "lat": 50.5339074, - "lon": -4.1305170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL19 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6193565204, - "lat": 52.5751274, - "lon": -0.2384819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6195181779, - "lat": 55.0199885, - "lon": -1.5075602, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6195289221, - "lat": 54.6927753, - "lon": -5.8694804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT38 183" - } -}, -{ - "type": "node", - "id": 6195374571, - "lat": 54.6642340, - "lon": -5.9178131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 460" - } -}, -{ - "type": "node", - "id": 6195588660, - "lat": 52.3198187, - "lon": -1.7698508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B95 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6196390585, - "lat": 51.4229906, - "lon": -0.4772753, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6197698707, - "lat": 55.5655713, - "lon": -1.7591234, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE70 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6198156633, - "lat": 53.4280811, - "lon": -1.4866047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "indoor": "yes", - "level": "0", - "post_box:type": "pillar", - "ref": "S5 998", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6202881284, - "lat": 53.5896932, - "lon": -2.5226469, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6203457147, - "lat": 51.1459315, - "lon": -0.1810421, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6204150297, - "lat": 50.8503005, - "lon": -0.1782172, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 249", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6205257054, - "lat": 53.2606801, - "lon": -2.5150168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "ref": "CW9 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6205841003, - "lat": 51.7457064, - "lon": -2.6511452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL15 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6206003972, - "lat": 51.0590915, - "lon": -2.8569508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6206252089, - "lat": 56.4476985, - "lon": -2.8835464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 192D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6206288735, - "lat": 56.4234442, - "lon": -2.9849486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 79D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6206288736, - "lat": 56.4334806, - "lon": -2.9472569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 122D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6206288739, - "lat": 56.4442976, - "lon": -2.9342482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DD6 87D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6207314234, - "lat": 51.4143142, - "lon": -0.9022647, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6207498411, - "lat": 53.5896071, - "lon": -2.5342262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6207526914, - "lat": 53.7265568, - "lon": -2.6931658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "mapillary": "1203600403396519", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6213895354, - "lat": 52.3084905, - "lon": -1.9594589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6214256199, - "lat": 54.5887549, - "lon": -5.9475389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6214473548, - "lat": 51.4120372, - "lon": -2.5469955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6215345870, - "lat": 50.8009799, - "lon": -3.4371979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "colour": "red", - "name": "Beare", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "EX5 3JZ", - "ref": "EX5 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6216085398, - "lat": 53.2392597, - "lon": -2.9017044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6216158146, - "lat": 53.2231498, - "lon": -2.8819605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6218381958, - "lat": 52.7415605, - "lon": -3.8899476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL40 32D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6219558623, - "lat": 52.6835115, - "lon": 1.4446005, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6220889463, - "lat": 52.9923330, - "lon": -2.6772362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 6221508944, - "lat": 53.6287280, - "lon": -2.4404100, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6221563458, - "lat": 51.4394386, - "lon": 0.7730540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 14" - } -}, -{ - "type": "node", - "id": 6221622636, - "lat": 51.0160222, - "lon": -0.3474778, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6221639295, - "lat": 51.0339276, - "lon": -0.3509048, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH13 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6222638074, - "lat": 53.4459385, - "lon": -1.3433219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S60 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6222750344, - "lat": 53.4292758, - "lon": -1.3680448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S60 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6222835212, - "lat": 53.4333224, - "lon": -1.3565437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S60 465", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6222992741, - "lat": 52.2435026, - "lon": 0.5808073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP29 2123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6225158263, - "lat": 53.6263153, - "lon": -2.4388726, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6225208462, - "lat": 51.5964116, - "lon": -0.1932878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N3 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6225298786, - "lat": 54.6679250, - "lon": -5.9268503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 62" - } -}, -{ - "type": "node", - "id": 6225527343, - "lat": 54.2375776, - "lon": -3.0600713, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA12 13" - } -}, -{ - "type": "node", - "id": 6226595110, - "lat": 53.5988421, - "lon": -2.5478570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6227013640, - "lat": 53.6006044, - "lon": -2.5461745, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6227753309, - "lat": 53.5994595, - "lon": -2.5516790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "823642512543487", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2024-05-29" - } -}, -{ - "type": "node", - "id": 6228577121, - "lat": 53.9748453, - "lon": -0.9261364, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6230634452, - "lat": 53.5459893, - "lon": -2.5198655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BL5 142" - } -}, -{ - "type": "node", - "id": 6232044525, - "lat": 52.3134239, - "lon": -1.9683671, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B97 204" - } -}, -{ - "type": "node", - "id": 6232081780, - "lat": 52.3432400, - "lon": -2.0609945, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B61 1038" - } -}, -{ - "type": "node", - "id": 6232095498, - "lat": 52.2908684, - "lon": -1.9774524, - "tags": { - "amenity": "post_box", - "ref": "B97 127" - } -}, -{ - "type": "node", - "id": 6232107528, - "lat": 52.2802784, - "lon": -1.9745869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B97 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6233159397, - "lat": 51.5396300, - "lon": -3.5964074, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6233258001, - "lat": 51.5866651, - "lon": -0.2026905, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6233803420, - "lat": 52.3056904, - "lon": -1.3478301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 79", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6233803421, - "lat": 52.2994599, - "lon": -1.3369283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV23 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "website": "https://www.royalmail.com/services-near-you/postbox/hill-cv23-8ed/0000CV2326" - } -}, -{ - "type": "node", - "id": 6233831197, - "lat": 52.2890472, - "lon": -1.3374807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6234311284, - "lat": 51.4344674, - "lon": -0.9700517, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG2 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6235485440, - "lat": 53.5988188, - "lon": -2.5384459, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6235693030, - "lat": 54.2913892, - "lon": -1.5847239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6235693031, - "lat": 54.2935310, - "lon": -1.5827408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6236872003, - "lat": 51.5230440, - "lon": -1.1402908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "post_box:type": "wall", - "ref": "RG9 454", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6236872016, - "lat": 51.4926174, - "lon": -1.0878705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG8 241", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6236872018, - "lat": 51.4891930, - "lon": -1.0861431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG8 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6236872019, - "lat": 51.4854195, - "lon": -1.0904787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:00, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG8 62", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "GPS Survey;survey" - } -}, -{ - "type": "node", - "id": 6236929799, - "lat": 51.5509052, - "lon": -1.1497356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX10 1107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6236929801, - "lat": 51.5477264, - "lon": -1.1487659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX10 1218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6238497673, - "lat": 51.5707225, - "lon": -1.1565125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX10 1095", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6238537548, - "lat": 51.6009390, - "lon": -1.1211164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 21:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX10 1080D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6238611801, - "lat": 51.6312148, - "lon": -1.1418595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX10 488", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 6238729601, - "lat": 51.1180461, - "lon": -0.0743702, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH10 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240584608, - "lat": 51.0214119, - "lon": -2.9645166, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 693D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240765270, - "lat": 54.1274448, - "lon": -0.8160421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "YO17 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240792351, - "lat": 53.8393445, - "lon": -0.9300594, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6240792354, - "lat": 53.8899466, - "lon": -0.9184932, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240795165, - "lat": 53.9327180, - "lon": -0.8378950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO42 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240798495, - "lat": 54.0134226, - "lon": -0.8839382, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6240798950, - "lat": 54.0825255, - "lon": -1.0163992, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240802133, - "lat": 54.0948923, - "lon": -0.8821518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO60 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6240811424, - "lat": 54.1166279, - "lon": -1.1075809, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6240813768, - "lat": 54.0796326, - "lon": -1.1063424, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6240818142, - "lat": 54.1253618, - "lon": -1.1609190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "YO61 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6241050932, - "lat": 53.4863416, - "lon": -2.1961911, - "tags": { - "amenity": "post_box", - "ref": "M11 288D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6241225446, - "lat": 52.2732804, - "lon": -2.7298404, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR6 957", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6242323699, - "lat": 54.7149892, - "lon": -6.2202375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 15" - } -}, -{ - "type": "node", - "id": 6242482953, - "lat": 54.7021303, - "lon": -1.2228767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6242482956, - "lat": 54.7021205, - "lon": -1.2228215, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6242618805, - "lat": 56.1354869, - "lon": -3.8413110, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6242669467, - "lat": 56.1003760, - "lon": -3.9136899, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6242669468, - "lat": 56.1061076, - "lon": -3.9292203, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6244907824, - "lat": 53.5931890, - "lon": -2.5431824, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6244907837, - "lat": 53.5962806, - "lon": -2.5429670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6245256185, - "lat": 57.6040818, - "lon": -3.6925472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV36 80", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6245314889, - "lat": 57.6424708, - "lon": -3.3316057, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6245524920, - "lat": 53.2484784, - "lon": -2.0307811, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SK11 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6248207045, - "lat": 51.0207951, - "lon": -1.5644480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO51 485", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6248293632, - "lat": 56.3333686, - "lon": -2.7881881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 357D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6248843882, - "lat": 52.3096200, - "lon": -1.9468266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 35" - } -}, -{ - "type": "node", - "id": 6250475157, - "lat": 50.4247305, - "lon": -3.8288785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ10 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6252100809, - "lat": 53.9163082, - "lon": -0.7831732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO42 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6253617402, - "lat": 56.0054833, - "lon": -4.7290423, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6253617420, - "lat": 56.0024055, - "lon": -4.7248513, - "tags": { - "amenity": "post_box", - "ref": "G84 24" - } -}, -{ - "type": "node", - "id": 6254107558, - "lat": 57.6465642, - "lon": -3.3093651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV30 7D", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6254184885, - "lat": 56.0037615, - "lon": -3.7679437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FK2 33D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6254216978, - "lat": 52.6370205, - "lon": -1.1583770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6254218520, - "lat": 52.6312809, - "lon": -1.1393360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE2 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6254507499, - "lat": 50.7834568, - "lon": -0.7288994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-04", - "old_ref": "PO21 95", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6254585302, - "lat": 56.0411849, - "lon": -3.3667906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 125", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6254630379, - "lat": 53.5284280, - "lon": -1.4627060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S70 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6255600974, - "lat": 51.4256230, - "lon": -0.7250551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6256092104, - "lat": 51.2729875, - "lon": -0.0273440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CR3 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6256257245, - "lat": 53.5691958, - "lon": -1.6997062, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6257235035, - "lat": 53.3833767, - "lon": -2.3547940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA14 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6257235037, - "lat": 53.3816138, - "lon": -2.3609507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 33", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6257235042, - "lat": 53.3793208, - "lon": -2.3636091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 12", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6257235046, - "lat": 53.3778975, - "lon": -2.3621255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA14 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6257703715, - "lat": 53.1737997, - "lon": -2.2539579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW12 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6258585682, - "lat": 54.6766715, - "lon": -5.8923455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 256" - } -}, -{ - "type": "node", - "id": 6259327855, - "lat": 50.3807439, - "lon": -4.1396168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "861550004811876", - "post_box:type": "pillar", - "ref": "PL4 58D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-04" - } -}, -{ - "type": "node", - "id": 6259332257, - "lat": 50.3712282, - "lon": -4.1248491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL4 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6259714974, - "lat": 52.3759477, - "lon": -0.7216917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 800" - } -}, -{ - "type": "node", - "id": 6260514598, - "lat": 54.1119452, - "lon": -0.5762021, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-28", - "collection_times": "Mo-Fr 17:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "YO17 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6262464503, - "lat": 54.1821561, - "lon": -7.3604026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 6262464505, - "lat": 54.1820443, - "lon": -7.3548113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 6262662160, - "lat": 50.8379446, - "lon": -0.5784367, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1316", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6262678730, - "lat": 50.8486327, - "lon": -0.5739044, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6262683060, - "lat": 50.8496221, - "lon": -0.5679381, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6262698571, - "lat": 50.8530358, - "lon": -0.5655699, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1321D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6262705384, - "lat": 50.8550043, - "lon": -0.5340935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN18 1296D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6262706054, - "lat": 53.3232047, - "lon": -0.0866216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6263006534, - "lat": 53.7073567, - "lon": -0.8077191, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6263628791, - "lat": 50.3788975, - "lon": -5.1150809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6263628793, - "lat": 50.3842714, - "lon": -5.1211859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box design post box mounted in what looks like a brick pillar buried in a hedge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR8 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6263628802, - "lat": 50.3871066, - "lon": -5.1411312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6263794409, - "lat": 53.6137131, - "lon": -2.5910132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "933363157504465", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 97" - } -}, -{ - "type": "node", - "id": 6263794410, - "lat": 53.6114731, - "lon": -2.5786261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "mapillary": "1071111960046196", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 45" - } -}, -{ - "type": "node", - "id": 6263820655, - "lat": 50.3887765, - "lon": -5.1132018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6264895517, - "lat": 53.6708504, - "lon": -2.7018152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "5457985390940727", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6264895518, - "lat": 53.6629396, - "lon": -2.7125085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "mapillary": "314128343404566", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6265718262, - "lat": 53.5544600, - "lon": -2.4152553, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6267688936, - "lat": 52.3376892, - "lon": -2.2451309, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DY11 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6267693241, - "lat": 52.3652077, - "lon": -2.1943903, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6267697800, - "lat": 52.3196823, - "lon": -2.3107945, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6267705092, - "lat": 52.3703628, - "lon": -2.1870915, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6267713803, - "lat": 52.3351036, - "lon": -2.2864250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY13 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6267724973, - "lat": 52.3363579, - "lon": -2.0758886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B61 1333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6268062862, - "lat": 53.6092722, - "lon": -2.5514357, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6268219724, - "lat": 51.2878471, - "lon": -0.7250223, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "drive_through": "no", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6268474966, - "lat": 51.3946356, - "lon": -0.0986905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR7 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6268482336, - "lat": 54.9022202, - "lon": -1.5784757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 258", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6269425519, - "lat": 53.6224882, - "lon": -2.6119204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "mapillary": "234600671750108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR7 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269451659, - "lat": 53.6267530, - "lon": -2.5882794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "mapillary": "207000537641481", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR6 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269451660, - "lat": 53.6205458, - "lon": -2.5929763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "600710937997723", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR6 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269451661, - "lat": 53.6151185, - "lon": -2.6006645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "507562040606976", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR6 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269596015, - "lat": 53.1889600, - "lon": -2.8574524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "wall box situated in own brick pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269754935, - "lat": 53.0505341, - "lon": -2.6726164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY14 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269754937, - "lat": 53.0570213, - "lon": -2.7004938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY14 647", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6269754938, - "lat": 53.0845302, - "lon": -2.7771354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 48" - } -}, -{ - "type": "node", - "id": 6269754942, - "lat": 53.0319153, - "lon": -2.6998075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-18" - } -}, -{ - "type": "node", - "id": 6269754946, - "lat": 53.0369023, - "lon": -2.6886228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269770545, - "lat": 53.0788110, - "lon": -2.7270759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269876976, - "lat": 53.0824365, - "lon": -2.7482409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 415D" - } -}, -{ - "type": "node", - "id": 6269876978, - "lat": 53.0767200, - "lon": -2.7535993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6269876980, - "lat": 53.1058189, - "lon": -2.7268141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:45; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 236", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6271074734, - "lat": 53.2002697, - "lon": -2.5038924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW7 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6272128850, - "lat": 52.4977242, - "lon": -1.7511830, - "tags": { - "amenity": "post_box", - "ref": "B36 153", - "source": "driveby" - } -}, -{ - "type": "node", - "id": 6272128871, - "lat": 52.5026378, - "lon": -1.7956056, - "tags": { - "amenity": "post_box", - "ref": "B36 592", - "source": "driveby" - } -}, -{ - "type": "node", - "id": 6272128878, - "lat": 52.5016884, - "lon": -1.7820216, - "tags": { - "amenity": "post_box", - "ref": "B36 759", - "source": "driveby" - } -}, -{ - "type": "node", - "id": 6273099884, - "lat": 50.8142904, - "lon": -0.3883865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Probably a VR vintage postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1624D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6273931598, - "lat": 55.0075567, - "lon": -1.6149992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 187D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 6274731027, - "lat": 54.7038395, - "lon": -6.1758747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 28" - } -}, -{ - "type": "node", - "id": 6275451311, - "lat": 56.1423996, - "lon": -3.2524136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY5 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6275553589, - "lat": 54.6998657, - "lon": -6.1056212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT39 689" - } -}, -{ - "type": "node", - "id": 6276186316, - "lat": 53.6024969, - "lon": -2.5415854, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6276862106, - "lat": 53.2823478, - "lon": -2.9075210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 472D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6276862108, - "lat": 53.2810448, - "lon": -2.9113633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 337D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6276877059, - "lat": 53.2813269, - "lon": -2.9194354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH65 536D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6278277937, - "lat": 53.6093746, - "lon": -2.6042553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "993469351395378", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR7 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6278836230, - "lat": 53.3383184, - "lon": -1.1910360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "S81 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6279027418, - "lat": 53.3260621, - "lon": -1.1656636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6279031189, - "lat": 52.7558268, - "lon": 0.8899555, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6281332887, - "lat": 52.2899258, - "lon": -1.2014593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN11 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6281332888, - "lat": 52.2896510, - "lon": -1.1782038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN11 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6281423161, - "lat": 53.5871263, - "lon": -1.6459763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6281618159, - "lat": 53.5669075, - "lon": -2.4543104, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6282366880, - "lat": 53.5753409, - "lon": -2.5589619, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6282566867, - "lat": 53.4437083, - "lon": -1.4591403, - "tags": { - "amenity": "post_box", - "check_date": "2022-06-09", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S35 1252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6282972266, - "lat": 53.5898304, - "lon": -1.6579281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 446D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283002632, - "lat": 53.5575176, - "lon": -2.3985501, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6283384531, - "lat": 52.5252991, - "lon": -1.3477059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE10 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283439058, - "lat": 52.5388187, - "lon": -1.3557220, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-07", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "note": "ref not visible. bottom of label has crumbled away 16/02/19", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283439059, - "lat": 52.5358766, - "lon": -1.3596784, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-13", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE10 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283439075, - "lat": 52.5307408, - "lon": -1.3720464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-07-12", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LE10 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283490890, - "lat": 52.4769825, - "lon": -1.4153161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV12 574D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283490891, - "lat": 52.4790064, - "lon": -1.4222295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV12 572D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283490892, - "lat": 52.4645778, - "lon": -1.4129051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283515581, - "lat": 52.4588293, - "lon": -1.4331103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV7 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6283515583, - "lat": 52.4306307, - "lon": -1.4844049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 6284361649, - "lat": 53.5545729, - "lon": -2.4017679, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6285405633, - "lat": 53.1074651, - "lon": -2.1522495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ST8 411", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6285408697, - "lat": 53.0946038, - "lon": -2.0795340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST9 183" - } -}, -{ - "type": "node", - "id": 6285408698, - "lat": 53.0882771, - "lon": -2.0578620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "ST9 256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6285408699, - "lat": 53.0909965, - "lon": -2.0416498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "ST13 743" - } -}, -{ - "type": "node", - "id": 6285483837, - "lat": 53.5591027, - "lon": -2.4038752, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6286187863, - "lat": 53.3665904, - "lon": -0.9611117, - "tags": { - "amenity": "post_box", - "geograph:id": "265448", - "post_box:type": "wall", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 6286381665, - "lat": 53.5924325, - "lon": -1.6213305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 387D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6286404796, - "lat": 53.5937184, - "lon": -1.6196065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD8 134", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6286718799, - "lat": 51.4376093, - "lon": -0.9623676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "RG2 402D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6286816161, - "lat": 55.7884093, - "lon": -4.8651599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "KA30 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6286816162, - "lat": 55.7969993, - "lon": -4.8665547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "has (non-functioning) stamp machine attached", - "post_box:type": "pillar", - "ref": "KA30 66", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6289415133, - "lat": 51.0898990, - "lon": -1.1638668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO24 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6289700124, - "lat": 53.6235923, - "lon": -2.6064727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "826744837920531", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6289700125, - "lat": 53.6200376, - "lon": -2.6018366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "469574530936736", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR6 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6289966536, - "lat": 54.7156469, - "lon": -6.2126371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 88" - } -}, -{ - "type": "node", - "id": 6290622152, - "lat": 53.5489654, - "lon": -2.4092960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6292028624, - "lat": 54.7300072, - "lon": -1.7519643, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6292180532, - "lat": 50.8596248, - "lon": -0.1563983, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6292188637, - "lat": 50.8598677, - "lon": -0.1580893, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6292192226, - "lat": 50.8615845, - "lon": -0.1658259, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6292222103, - "lat": 50.8424396, - "lon": -0.1683261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "As at 20.02.2019 there is a Royal Mail sticker saying that from 31.12.2018 the collection times are Monday to Friday 09.00 and Saturday 07.00, which I have added on this edit. But the postbox notice has not yet replaced the reference number with BN3 242D.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6292225954, - "lat": 50.8378977, - "lon": -0.1633109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 239D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6292232202, - "lat": 50.8398416, - "lon": -0.1609284, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6292237401, - "lat": 50.8377144, - "lon": -0.1674351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6294158546, - "lat": 51.3597920, - "lon": -0.2060028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6294380805, - "lat": 51.4363935, - "lon": -0.9679227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "RG2 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6294463148, - "lat": 53.1987945, - "lon": -2.8808697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6294464616, - "lat": 51.3484968, - "lon": -1.6703564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6294464618, - "lat": 51.3536296, - "lon": -1.6716814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "312721624525803", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN8 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-28" - } -}, -{ - "type": "node", - "id": 6294464619, - "lat": 51.3511403, - "lon": -1.6672289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6294464620, - "lat": 51.3478917, - "lon": -1.6631815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 37D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6294487621, - "lat": 51.3487666, - "lon": -1.7026770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6294492379, - "lat": 51.3404532, - "lon": -1.7708132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6294548010, - "lat": 50.8486609, - "lon": -0.1526606, - "tags": { - "amenity": "post_box", - "ref": "BN1 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6296204129, - "lat": 51.2886931, - "lon": -1.9740918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6296204130, - "lat": 51.2994760, - "lon": -1.9666386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6296208498, - "lat": 51.4382908, - "lon": -0.9709015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:30", - "post_box:type": "pillar", - "ref": "RG2 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6297130514, - "lat": 53.5395062, - "lon": -2.4020552, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6297140587, - "lat": 51.2788269, - "lon": -2.0973359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA13 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6297170946, - "lat": 51.0410794, - "lon": -1.7023230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6297692589, - "lat": 52.4796761, - "lon": -1.4735335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CV12 581", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6297845755, - "lat": 52.4040213, - "lon": -1.4867256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6297845756, - "lat": 52.4034157, - "lon": -1.4844435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 116D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6297858574, - "lat": 52.4461351, - "lon": -1.4171461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6297889014, - "lat": 52.4763762, - "lon": -1.4237597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV12 571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6297889015, - "lat": 52.4780059, - "lon": -1.4315708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV12 569D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6298299325, - "lat": 52.0552882, - "lon": -4.6328993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6298753758, - "lat": 51.0623300, - "lon": -1.7753005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6299096887, - "lat": 50.6092053, - "lon": -1.9570758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 229", - "ref:GB:uprn": "10015306278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6299519173, - "lat": 50.8621657, - "lon": -0.1354187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 73" - } -}, -{ - "type": "node", - "id": 6300009393, - "lat": 50.8586350, - "lon": -0.1644036, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 321", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6300009449, - "lat": 50.8585499, - "lon": -0.1619820, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6300022085, - "lat": 50.8568583, - "lon": -0.1637362, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 318D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6300027148, - "lat": 52.2699440, - "lon": 0.7134916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP28 2241D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6300160491, - "lat": 52.2437969, - "lon": 0.6816040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6300196175, - "lat": 52.2381887, - "lon": 0.6849696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP33 2002", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6300196182, - "lat": 52.2365413, - "lon": 0.6876589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "note": "Reference number on collection plate is obscured by lower frame", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6300216587, - "lat": 53.7358510, - "lon": -2.7295936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR1 370" - } -}, -{ - "type": "node", - "id": 6300879078, - "lat": 53.2100577, - "lon": -2.0311870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK11 64" - } -}, -{ - "type": "node", - "id": 6300885844, - "lat": 53.2547918, - "lon": -2.6789687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA6 328" - } -}, -{ - "type": "node", - "id": 6301006055, - "lat": 53.4428720, - "lon": -1.9491598, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6301585358, - "lat": 54.9534254, - "lon": -4.4820705, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG8 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "ss" - } -}, -{ - "type": "node", - "id": 6301607095, - "lat": 52.3329793, - "lon": -1.2968487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "confirmed this is definitely CV23 7 and not CV22 131. 11/06/22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV23 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6301946156, - "lat": 53.4101982, - "lon": -2.8556679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L36 649D" - } -}, -{ - "type": "node", - "id": 6301963369, - "lat": 51.0806903, - "lon": -1.7879444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6301963370, - "lat": 51.0793187, - "lon": -1.7913857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP1 324", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 324D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6301963371, - "lat": 51.0785048, - "lon": -1.7969620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "old_ref": "SP1 165", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6301963372, - "lat": 51.0871620, - "lon": -1.7982149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6302318390, - "lat": 56.8442601, - "lon": -3.1057622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD8 64" - } -}, -{ - "type": "node", - "id": 6302327185, - "lat": 56.7329846, - "lon": -2.7591564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD9 60" - } -}, -{ - "type": "node", - "id": 6304371487, - "lat": 51.7368370, - "lon": -0.0664637, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "EN10 104" - } -}, -{ - "type": "node", - "id": 6304469179, - "lat": 53.4092380, - "lon": -2.8425439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L36 181D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6306063542, - "lat": 53.0365336, - "lon": -2.2232959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6306914962, - "lat": 53.1994176, - "lon": -2.8788250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6307176735, - "lat": 51.0909494, - "lon": -1.7996979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6308548815, - "lat": 52.4010739, - "lon": -1.5634135, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV4 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6308596733, - "lat": 52.4090140, - "lon": -1.5713037, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV4 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6308596739, - "lat": 52.4111384, - "lon": -1.5989431, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-19", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV4 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6308622122, - "lat": 52.3931307, - "lon": -1.5911958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6308965931, - "lat": 51.0760066, - "lon": -1.7944394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6308965932, - "lat": 51.0826837, - "lon": -1.8019737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6310886012, - "lat": 53.6251941, - "lon": -2.5655544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BL6 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6311195534, - "lat": 52.3954416, - "lon": -1.9741825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B31 930D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6311195535, - "lat": 52.3955919, - "lon": -1.9846285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B31 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6311264620, - "lat": 54.6484753, - "lon": -5.6359969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 867", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6311518680, - "lat": 53.4083295, - "lon": -2.8471702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L36 709" - } -}, -{ - "type": "node", - "id": 6311518695, - "lat": 53.4104256, - "lon": -2.8397593, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L36 627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6311804692, - "lat": 51.5255577, - "lon": -0.1431401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 73D" - } -}, -{ - "type": "node", - "id": 6312240342, - "lat": 53.5451638, - "lon": -2.3909150, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6312647047, - "lat": 50.8771953, - "lon": 0.0149158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BN7 589", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6312819129, - "lat": 52.4031862, - "lon": -1.4545652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312819130, - "lat": 52.4014316, - "lon": -1.4511046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6312819134, - "lat": 52.3967186, - "lon": -1.4514058, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312819136, - "lat": 52.3941206, - "lon": -1.4554195, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312864012, - "lat": 52.3911032, - "lon": -1.4469440, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312864013, - "lat": 52.3928399, - "lon": -1.4433874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CV3 184", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312864021, - "lat": 52.3931725, - "lon": -1.4425704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312904485, - "lat": 52.3972166, - "lon": -1.4440643, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312904487, - "lat": 52.3971872, - "lon": -1.4355454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CV3 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6312930849, - "lat": 52.3934203, - "lon": -1.4150789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV3 372D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6313214971, - "lat": 51.8662531, - "lon": -1.9463061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL54 275D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6313338966, - "lat": 53.5810362, - "lon": -1.6390842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 184", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6314039940, - "lat": 53.5923615, - "lon": -1.8587896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 304D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6314469427, - "lat": 53.5936526, - "lon": -1.8488842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD9 466", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6314489306, - "lat": 50.3942014, - "lon": -4.1583467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "mapillary": "1022247548555596", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-15" - } -}, -{ - "type": "node", - "id": 6314964753, - "lat": 51.8771583, - "lon": -1.7237344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6314968396, - "lat": 51.8591522, - "lon": -1.7645811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6315090150, - "lat": 52.5105307, - "lon": -2.0856939, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6315656602, - "lat": 52.4860291, - "lon": 0.5220731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6315745129, - "lat": 51.1292051, - "lon": -3.9777784, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6315745897, - "lat": 51.1208877, - "lon": -3.9813701, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6315984995, - "lat": 53.5933947, - "lon": -1.8447322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "pillar", - "ref": "HD9 443" - } -}, -{ - "type": "node", - "id": 6316058812, - "lat": 52.5292377, - "lon": 0.3879250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6316058828, - "lat": 52.5249232, - "lon": 0.3861349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6316487174, - "lat": 53.4179124, - "lon": -1.2169935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S66 82D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6316574141, - "lat": 52.2890114, - "lon": -1.9424794, - "tags": { - "amenity": "post_box", - "note": "aperture blocked and plate missing/removed (04/04/19)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6316574144, - "lat": 52.2861268, - "lon": -1.9440830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6316786235, - "lat": 54.7154876, - "lon": -6.2194247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT41 64" - } -}, -{ - "type": "node", - "id": 6318116782, - "lat": 54.9122915, - "lon": -4.6071831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DG8 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6318757680, - "lat": 53.4210026, - "lon": -1.1863100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "S66 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6319486559, - "lat": 51.0735335, - "lon": -1.8061594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SP2 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6319971303, - "lat": 54.6647680, - "lon": -5.9115558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 766" - } -}, -{ - "type": "node", - "id": 6319975511, - "lat": 54.6608692, - "lon": -5.9163377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 247" - } -}, -{ - "type": "node", - "id": 6321524476, - "lat": 52.5997265, - "lon": -2.7556315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY5 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6321935076, - "lat": 54.6635143, - "lon": -5.6670633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6322012939, - "lat": 51.3352724, - "lon": 0.1778000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN14 286D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6323003742, - "lat": 50.8512692, - "lon": -0.1889877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "There is a sticker saying that from 31.12.2018 the collection times are 9am Mon-Fri and 7am Sat but the postbox notice has not yet been updated. Plus the ref should be BN3 127D and the collection plate CP1D.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 127", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6323009310, - "lat": 52.4664494, - "lon": -4.0179148, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6323156753, - "lat": 54.6899303, - "lon": -5.9101554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 480" - } -}, -{ - "type": "node", - "id": 6323511826, - "lat": 52.4870901, - "lon": -0.5422392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE8 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6323511827, - "lat": 52.4830534, - "lon": -0.4807974, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6323511828, - "lat": 52.4811609, - "lon": -0.4748572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE8 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6325003576, - "lat": 53.5439699, - "lon": -2.3877350, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6325309959, - "lat": 52.5028932, - "lon": -0.4990751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6325309960, - "lat": 52.5002867, - "lon": -0.4929046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6325326568, - "lat": 53.5948290, - "lon": -1.8607932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 125D" - } -}, -{ - "type": "node", - "id": 6325384537, - "lat": 54.8694640, - "lon": -6.5082265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT44 77" - } -}, -{ - "type": "node", - "id": 6325747756, - "lat": 52.5916263, - "lon": -2.1761433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6326499485, - "lat": 51.8946366, - "lon": -2.0997633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL51 99", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6327473652, - "lat": 52.6185403, - "lon": 1.4859413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "NR13 1328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6327662078, - "lat": 53.2143230, - "lon": -2.1817458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "ref": "SK11 56" - } -}, -{ - "type": "node", - "id": 6327662079, - "lat": 53.2018038, - "lon": -2.1323880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK11 209" - } -}, -{ - "type": "node", - "id": 6327662080, - "lat": 53.2424838, - "lon": -2.7197317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WA6 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6327662081, - "lat": 53.2435993, - "lon": -2.7300018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA6 123" - } -}, -{ - "type": "node", - "id": 6327662082, - "lat": 53.2870337, - "lon": -2.7139804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WA6 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6327662083, - "lat": 53.2891312, - "lon": -2.7200051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "WA6 201" - } -}, -{ - "type": "node", - "id": 6327662084, - "lat": 53.2931392, - "lon": -2.7203993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA6 99" - } -}, -{ - "type": "node", - "id": 6327662185, - "lat": 53.2949345, - "lon": -2.7276504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA6 148;WA6 1148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6327662186, - "lat": 53.2987989, - "lon": -2.7192719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "WA6 281" - } -}, -{ - "type": "node", - "id": 6327727124, - "lat": 52.6185889, - "lon": 1.4769114, - "tags": { - "amenity": "post_box", - "barcode": "BOX004938", - "check_date:collection_times": "2023-01-19", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "NR13 1335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6327857717, - "lat": 52.0296026, - "lon": -1.5723285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV36 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6327857718, - "lat": 52.0099850, - "lon": -1.5304205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV36 120", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6328114288, - "lat": 54.6536283, - "lon": -5.9219530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT36 285" - } -}, -{ - "type": "node", - "id": 6328531869, - "lat": 51.8934852, - "lon": 0.9206819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "CO4 283D" - } -}, -{ - "type": "node", - "id": 6328722707, - "lat": 52.5096538, - "lon": -2.0838031, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6330433420, - "lat": 53.1957631, - "lon": -2.5033955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW7 195" - } -}, -{ - "type": "node", - "id": 6331085073, - "lat": 53.5956074, - "lon": -1.8503568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 459D" - } -}, -{ - "type": "node", - "id": 6331456394, - "lat": 56.1649642, - "lon": -3.0582016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 88D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6331507118, - "lat": 52.3963560, - "lon": -1.7985279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331507119, - "lat": 52.3963745, - "lon": -1.7985582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B90 9022", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331507120, - "lat": 52.3640610, - "lon": -1.7808758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "note": "an odd sort of postbox. Not the usual pillar but that's probably the closest description", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "B94 1479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331593917, - "lat": 51.1926691, - "lon": -0.1634748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "498206932279679", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH1 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 6331593918, - "lat": 51.1979756, - "lon": -0.1652678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa-Su off", - "drive_through": "no", - "opening_hours": "Mo-Fr 12:00-18:00; Sa-Su off", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "RH1 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331593919, - "lat": 51.2010267, - "lon": -0.1688732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331692051, - "lat": 51.1976551, - "lon": 0.1856677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6331780442, - "lat": 56.5306227, - "lon": -3.0696060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD3 204D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331780443, - "lat": 56.5322039, - "lon": -3.0166631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DD3 730D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331780444, - "lat": 56.5335254, - "lon": -2.9628513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD4 998D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331817457, - "lat": 56.9778426, - "lon": -2.5743374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 644", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6331907586, - "lat": 57.0856447, - "lon": -2.2480144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB12 337", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6333879527, - "lat": 52.2819760, - "lon": 1.0264615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8065D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6335167843, - "lat": 53.4545591, - "lon": -2.0648330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SK14 100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6335803555, - "lat": 52.3633037, - "lon": 0.0956043, - "tags": { - "amenity": "post_box", - "ref": "CB6 56" - } -}, -{ - "type": "node", - "id": 6335806065, - "lat": 52.5045261, - "lon": 0.2925158, - "tags": { - "amenity": "post_box", - "ref": "CB6 77" - } -}, -{ - "type": "node", - "id": 6335816280, - "lat": 52.4446355, - "lon": 0.2540478, - "tags": { - "amenity": "post_box", - "ref": "CB6 81" - } -}, -{ - "type": "node", - "id": 6335827323, - "lat": 52.4972394, - "lon": 0.3530965, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB6 83" - } -}, -{ - "type": "node", - "id": 6335832766, - "lat": 52.4706763, - "lon": 0.2645514, - "tags": { - "amenity": "post_box", - "ref": "CB6 84" - } -}, -{ - "type": "node", - "id": 6337460616, - "lat": 51.4427606, - "lon": -1.0607353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG31 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6337700981, - "lat": 53.5882716, - "lon": -1.8458842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 385D", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 6337710686, - "lat": 53.5875711, - "lon": -1.8401456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 350D", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 6337764812, - "lat": 53.5921482, - "lon": -1.8384531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD9 123D", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 6337764813, - "lat": 53.5921800, - "lon": -1.8386596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD9 460D", - "source": "Bing; survey" - } -}, -{ - "type": "node", - "id": 6337994256, - "lat": 52.6013890, - "lon": -2.1656351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6338234285, - "lat": 52.0446139, - "lon": 0.3192710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 21", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6338234869, - "lat": 52.0607686, - "lon": 0.3289477, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB10 22" - } -}, -{ - "type": "node", - "id": 6338238338, - "lat": 52.0547822, - "lon": 0.3132381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 23:15", - "mapillary": "190835956758153", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB10 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-05" - } -}, -{ - "type": "node", - "id": 6338530138, - "lat": 50.7814916, - "lon": -0.6857432, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-24", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 1401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6338534123, - "lat": 50.7815239, - "lon": -0.6857244, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-04-24", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 1402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6338630033, - "lat": 52.3903371, - "lon": -1.7893164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6338657846, - "lat": 50.8696168, - "lon": 0.5309194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6339459650, - "lat": 52.0511720, - "lon": 0.3038173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CB10 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6339472312, - "lat": 52.0321901, - "lon": 0.4170940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CB10 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6339477657, - "lat": 52.0275307, - "lon": 0.3978458, - "tags": { - "amenity": "post_box", - "ref": "CB10 26" - } -}, -{ - "type": "node", - "id": 6339483039, - "lat": 52.0170131, - "lon": 0.3793206, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB10 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6339489306, - "lat": 52.0042792, - "lon": 0.3735671, - "tags": { - "amenity": "post_box", - "ref": "CB10 28" - } -}, -{ - "type": "node", - "id": 6339493362, - "lat": 51.9907490, - "lon": 0.3738756, - "tags": { - "amenity": "post_box", - "ref": "CB10 29" - } -}, -{ - "type": "node", - "id": 6339508900, - "lat": 51.9972297, - "lon": 0.3871554, - "tags": { - "amenity": "post_box", - "ref": "CB10 32" - } -}, -{ - "type": "node", - "id": 6339513472, - "lat": 52.0121266, - "lon": 0.3492246, - "tags": { - "amenity": "post_box", - "ref": "CB10 33" - } -}, -{ - "type": "node", - "id": 6339515164, - "lat": 52.0111012, - "lon": 0.3396176, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CB10 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6339517298, - "lat": 52.0112499, - "lon": 0.3267304, - "tags": { - "amenity": "post_box", - "ref": "CB10 35" - } -}, -{ - "type": "node", - "id": 6339970990, - "lat": 52.0218239, - "lon": 0.2912539, - "tags": { - "amenity": "post_box", - "ref": "CB10 36" - } -}, -{ - "type": "node", - "id": 6339975611, - "lat": 52.0192681, - "lon": 0.2827257, - "tags": { - "amenity": "post_box", - "ref": "CB10 37" - } -}, -{ - "type": "node", - "id": 6340174631, - "lat": 52.0285668, - "lon": 0.3536689, - "tags": { - "amenity": "post_box", - "ref": "CB10 101" - } -}, -{ - "type": "node", - "id": 6340205037, - "lat": 51.9911470, - "lon": 0.3987880, - "tags": { - "amenity": "post_box", - "ref": "CB10 104" - } -}, -{ - "type": "node", - "id": 6340205064, - "lat": 51.9764611, - "lon": 0.4170355, - "tags": { - "amenity": "post_box", - "ref": "CB10 105" - } -}, -{ - "type": "node", - "id": 6340217190, - "lat": 52.0576718, - "lon": 0.2365580, - "tags": { - "amenity": "post_box", - "ref": "CB10 116" - } -}, -{ - "type": "node", - "id": 6340249740, - "lat": 52.0546644, - "lon": 0.4238693, - "tags": { - "amenity": "post_box", - "ref": "CB9 29" - } -}, -{ - "type": "node", - "id": 6340591015, - "lat": 54.6773309, - "lon": -5.9106918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 374" - } -}, -{ - "type": "node", - "id": 6340606912, - "lat": 50.7989966, - "lon": -0.6850193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6340606931, - "lat": 50.7849156, - "lon": -0.6751532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "description": "This postbox is in Morrisons just inside the entrance.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6340609772, - "lat": 50.7978641, - "lon": -0.6821585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6341261268, - "lat": 53.5428672, - "lon": -2.2889918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M25 434" - } -}, -{ - "type": "node", - "id": 6341262415, - "lat": 51.4535711, - "lon": -0.4285687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6341344161, - "lat": 52.4190039, - "lon": -2.3456586, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DY12 159" - } -}, -{ - "type": "node", - "id": 6341545142, - "lat": 53.3731213, - "lon": -2.1722329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SK7 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6341691085, - "lat": 55.4762125, - "lon": -2.5573175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "458888908542857", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TD8 78", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2020-05-07" - } -}, -{ - "type": "node", - "id": 6341772074, - "lat": 52.1441586, - "lon": 0.7883822, - "tags": { - "amenity": "post_box", - "ref": "IP30 2067" - } -}, -{ - "type": "node", - "id": 6341772075, - "lat": 52.1270782, - "lon": 0.7978014, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6341816281, - "lat": 52.1061686, - "lon": 0.7931300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1065D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6341874462, - "lat": 52.0054040, - "lon": -1.2818678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX17 1136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survry" - } -}, -{ - "type": "node", - "id": 6341882938, - "lat": 53.3431111, - "lon": -2.2499704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK9 727", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6341974522, - "lat": 52.0491353, - "lon": -1.3357826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX16 1114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6341974523, - "lat": 52.0542222, - "lon": -1.3485551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX16 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6341974524, - "lat": 52.0545374, - "lon": -1.3571152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX16 1112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6341974525, - "lat": 52.0426829, - "lon": -1.3876179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX15 1070D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 6342158306, - "lat": 54.5529327, - "lon": -5.9995720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT17 142" - } -}, -{ - "type": "node", - "id": 6342810146, - "lat": 50.3783284, - "lon": -4.1455265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "PL4 844;PL4 8440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-19" - } -}, -{ - "type": "node", - "id": 6342973317, - "lat": 53.4188221, - "lon": -2.8775060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L14 513" - } -}, -{ - "type": "node", - "id": 6343494042, - "lat": 52.4046098, - "lon": -1.5825508, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 413D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6343494043, - "lat": 52.4030273, - "lon": -1.5720643, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6343494044, - "lat": 52.3944551, - "lon": -1.5595959, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-02-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6343818119, - "lat": 51.8274559, - "lon": -2.2790100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL2 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-03-17" - } -}, -{ - "type": "node", - "id": 6344705033, - "lat": 51.5499929, - "lon": -1.6970574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN4 131", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6344720039, - "lat": 52.3352795, - "lon": 0.7762036, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6344722142, - "lat": 52.3663434, - "lon": -2.8682175, - "tags": { - "amenity": "post_box", - "ref": "SY7 286", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6344846438, - "lat": 52.0567838, - "lon": 0.3988497, - "tags": { - "amenity": "post_box", - "ref": "CB9 30" - } -}, -{ - "type": "node", - "id": 6345026427, - "lat": 52.2702528, - "lon": 0.8213402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP31 2225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6345295115, - "lat": 52.0486117, - "lon": 0.4082510, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB9 31" - } -}, -{ - "type": "node", - "id": 6345300155, - "lat": 52.0413501, - "lon": 0.4418288, - "tags": { - "amenity": "post_box", - "ref": "CB9 32" - } -}, -{ - "type": "node", - "id": 6345480130, - "lat": 51.0648989, - "lon": -0.3798095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6345888761, - "lat": 51.8603150, - "lon": -1.6009891, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "OX7 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6345888762, - "lat": 51.8543857, - "lon": -1.5938638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX7 933D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6346204401, - "lat": 51.4454302, - "lon": -0.9854127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "description": "Coley Park Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6347511394, - "lat": 52.1107548, - "lon": 0.7973949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO10 1019D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6347518825, - "lat": 52.8422512, - "lon": -0.1254193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE11 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6347555363, - "lat": 52.1047914, - "lon": 0.7946911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6347600158, - "lat": 52.0451032, - "lon": 0.4464884, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CB9 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6347610593, - "lat": 52.0410547, - "lon": 0.4502099, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CB9 34" - } -}, -{ - "type": "node", - "id": 6347614788, - "lat": 52.0484791, - "lon": 0.4647837, - "tags": { - "amenity": "post_box", - "ref": "CB9 35" - } -}, -{ - "type": "node", - "id": 6347632467, - "lat": 52.0937935, - "lon": 0.4836409, - "tags": { - "amenity": "post_box", - "ref": "CB9 40" - } -}, -{ - "type": "node", - "id": 6347637238, - "lat": 52.1114917, - "lon": 0.4974825, - "tags": { - "amenity": "post_box", - "ref": "CB9 41" - } -}, -{ - "type": "node", - "id": 6347649241, - "lat": 52.1004506, - "lon": 0.4750568, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CB9 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6347656933, - "lat": 52.1065788, - "lon": 0.4579107, - "tags": { - "amenity": "post_box", - "ref": "CB9 44" - } -}, -{ - "type": "node", - "id": 6348142013, - "lat": 55.0654024, - "lon": -6.5627981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT53 57" - } -}, -{ - "type": "node", - "id": 6348333196, - "lat": 51.8191994, - "lon": -2.4808643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL14 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6348340353, - "lat": 51.7919632, - "lon": -2.4995157, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL14 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6348349249, - "lat": 51.7750565, - "lon": -2.5580710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL15 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6349097881, - "lat": 52.2503906, - "lon": 0.8193619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6349113187, - "lat": 52.2513890, - "lon": 0.8114639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6349530974, - "lat": 51.6161013, - "lon": -2.5180407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "description": "New Post Box replacing one in wall of Anchor Pub 200 m along Park Road. March 2019", - "mapillary": "452004593360880", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-17" - } -}, -{ - "type": "node", - "id": 6349612419, - "lat": 55.4730027, - "lon": -2.5497609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "wall", - "ref": "TD8 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6349838311, - "lat": 52.3888369, - "lon": -1.6200486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV7 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6349838312, - "lat": 52.3991144, - "lon": -1.6133859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV7 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 6349871856, - "lat": 51.5963304, - "lon": 0.6228463, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6350032542, - "lat": 52.1753090, - "lon": -0.1737898, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG19 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6350066686, - "lat": 52.1940909, - "lon": -0.2073362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE19 132" - } -}, -{ - "type": "node", - "id": 6351122595, - "lat": 53.5914788, - "lon": -1.6530042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD8 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6351816567, - "lat": 51.4146071, - "lon": 0.0066870, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6352983122, - "lat": 52.1070024, - "lon": -1.3824895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "OX17 1052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6352983123, - "lat": 52.1254659, - "lon": -1.3998562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "OX17 1065", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6353139245, - "lat": 54.6704779, - "lon": -5.9199041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 796" - } -}, -{ - "type": "node", - "id": 6353163302, - "lat": 54.6731680, - "lon": -5.9114691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 149" - } -}, -{ - "type": "node", - "id": 6353197138, - "lat": 54.6647652, - "lon": -5.9070192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 40" - } -}, -{ - "type": "node", - "id": 6353823344, - "lat": 53.0724020, - "lon": -2.2583733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 497" - } -}, -{ - "type": "node", - "id": 6353823345, - "lat": 53.0698962, - "lon": -2.2586230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST7 302", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6353823346, - "lat": 53.1966146, - "lon": -2.4693973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "ref": "CW10 158" - } -}, -{ - "type": "node", - "id": 6353823347, - "lat": 53.2103167, - "lon": -2.4894967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "ref": "CW10 211" - } -}, -{ - "type": "node", - "id": 6353823349, - "lat": 53.2601741, - "lon": -2.4956688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6353823350, - "lat": 53.2569289, - "lon": -2.4846869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 46" - } -}, -{ - "type": "node", - "id": 6353823351, - "lat": 53.2554431, - "lon": -2.4784908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 07:00", - "ref": "CW9 29" - } -}, -{ - "type": "node", - "id": 6353823352, - "lat": 53.3010609, - "lon": -2.5277051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW9 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6353823353, - "lat": 53.3216683, - "lon": -2.5582297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WA4 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6354241666, - "lat": 52.1990948, - "lon": 0.6094170, - "tags": { - "amenity": "post_box", - "ref": "IP29 2187" - } -}, -{ - "type": "node", - "id": 6354640751, - "lat": 52.2060265, - "lon": 0.5888144, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP29 2121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6355493038, - "lat": 51.4430136, - "lon": -2.7894779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6355537638, - "lat": 52.9057497, - "lon": 1.0898868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "indoor": "yes", - "note": "http://www.budgensofholt.co.uk/pop-up-post-office-to-open-in-bakers-larners-of-holt/", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NR25 2500", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6356191301, - "lat": 53.4448333, - "lon": -1.9338201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 23:45", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6356726464, - "lat": 52.2274496, - "lon": -1.9248096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:00", - "note": "collection times seem unlikely for a small village. Postobx appears to be in someone's front garden", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S014", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6356726466, - "lat": 52.2239329, - "lon": -1.9191414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B49 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6356736275, - "lat": 52.2252825, - "lon": -1.8649708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "B50 9004", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6356762552, - "lat": 51.4570033, - "lon": -0.1924822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW18 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6356762553, - "lat": 51.4546229, - "lon": -0.1885088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6356844993, - "lat": 52.0284242, - "lon": -1.3046754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX17 1156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survry" - } -}, -{ - "type": "node", - "id": 6357075170, - "lat": 51.4428647, - "lon": -2.7938129, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6357127572, - "lat": 56.0070946, - "lon": -3.6108059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EH51 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6357842395, - "lat": 53.1612748, - "lon": -2.9908252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH4 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358503933, - "lat": 52.1910579, - "lon": 0.6149844, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IP29 2146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358503934, - "lat": 52.1608925, - "lon": 0.6382637, - "tags": { - "amenity": "post_box", - "ref": "IP29 2223" - } -}, -{ - "type": "node", - "id": 6358518209, - "lat": 52.2365042, - "lon": 0.5777718, - "tags": { - "amenity": "post_box", - "ref": "IP29 2264" - } -}, -{ - "type": "node", - "id": 6358518210, - "lat": 52.2226322, - "lon": 0.5688293, - "tags": { - "amenity": "post_box", - "ref": "IP29 2039" - } -}, -{ - "type": "node", - "id": 6358529606, - "lat": 52.2431112, - "lon": 0.6192074, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP29 2210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6358610581, - "lat": 53.2675778, - "lon": -2.6936955, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA6 95" - } -}, -{ - "type": "node", - "id": 6358610582, - "lat": 53.2686587, - "lon": -2.7097762, - "tags": { - "amenity": "post_box", - "ref": "WA6 197" - } -}, -{ - "type": "node", - "id": 6358610583, - "lat": 53.2576402, - "lon": -2.6948149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 09:00", - "ref": "WA6 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358681108, - "lat": 53.2869818, - "lon": -2.7204622, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WA6 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358681109, - "lat": 53.2833105, - "lon": -2.7096644, - "tags": { - "amenity": "post_box", - "ref": "WA6 15" - } -}, -{ - "type": "node", - "id": 6358681110, - "lat": 53.2916797, - "lon": -2.7118094, - "tags": { - "amenity": "post_box", - "ref": "WA6 291" - } -}, -{ - "type": "node", - "id": 6358681111, - "lat": 53.3010961, - "lon": -2.7175010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WA6 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358681112, - "lat": 53.2877482, - "lon": -2.7328325, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WA6 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358681113, - "lat": 53.2884617, - "lon": -2.7031252, - "tags": { - "amenity": "post_box", - "ref": "WA6 125" - } -}, -{ - "type": "node", - "id": 6358686506, - "lat": 53.3006987, - "lon": -2.7076384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA6 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6358697170, - "lat": 53.2525693, - "lon": -2.6501777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WA6 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358697172, - "lat": 53.2455405, - "lon": -2.6603969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "WA6 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358697173, - "lat": 53.2459722, - "lon": -2.6472589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "WA6 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358697177, - "lat": 53.2423479, - "lon": -2.6679469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:00", - "ref": "WA6 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6358719159, - "lat": 53.2628387, - "lon": -2.7761663, - "tags": { - "amenity": "post_box", - "ref": "WA6 221" - } -}, -{ - "type": "node", - "id": 6358719160, - "lat": 53.2633168, - "lon": -2.7907039, - "tags": { - "amenity": "post_box", - "ref": "WA6 288" - } -}, -{ - "type": "node", - "id": 6358719161, - "lat": 53.2617518, - "lon": -2.7724163, - "tags": { - "amenity": "post_box", - "ref": "WA6 300" - } -}, -{ - "type": "node", - "id": 6358719162, - "lat": 53.2662132, - "lon": -2.7726981, - "tags": { - "amenity": "post_box", - "ref": "WA6 60" - } -}, -{ - "type": "node", - "id": 6358740164, - "lat": 53.0268452, - "lon": -1.5064119, - "tags": { - "amenity": "post_box", - "ref": "DE56 431" - } -}, -{ - "type": "node", - "id": 6360172911, - "lat": 52.5036789, - "lon": -1.9171220, - "tags": { - "amenity": "post_box", - "ref": "B20 253" - } -}, -{ - "type": "node", - "id": 6360278987, - "lat": 52.6095684, - "lon": 0.2436654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE14 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6360303517, - "lat": 51.5153443, - "lon": -3.2189550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "192238899568784", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 6360544222, - "lat": 52.4347214, - "lon": -1.7594383, - "tags": { - "amenity": "post_box", - "ref": "B92 1370" - } -}, -{ - "type": "node", - "id": 6360548482, - "lat": 52.4091442, - "lon": -1.7358990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "B92 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360548497, - "lat": 52.4379570, - "lon": -1.7239556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 07:00", - "note": "expected B92 9027 here but plate says otherwise", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B92 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360692528, - "lat": 52.4885102, - "lon": -1.8701704, - "tags": { - "amenity": "post_box", - "ref": "B7 493" - } -}, -{ - "type": "node", - "id": 6360692529, - "lat": 52.4868561, - "lon": -1.8770804, - "tags": { - "amenity": "post_box", - "ref": "B7 389" - } -}, -{ - "type": "node", - "id": 6360692530, - "lat": 52.4891183, - "lon": -1.8723868, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B7 1074", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6360692532, - "lat": 52.4929264, - "lon": -1.8724666, - "tags": { - "amenity": "post_box", - "ref": "B7 557" - } -}, -{ - "type": "node", - "id": 6360722970, - "lat": 52.3364483, - "lon": -2.2699756, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6360825649, - "lat": 53.6656753, - "lon": -2.6353823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "note": "Inside Main Entrance to Hospital", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR7 1", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892139, - "lat": 51.2504477, - "lon": -0.0559944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH9 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892140, - "lat": 51.2409830, - "lon": -0.0572889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH9 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892141, - "lat": 51.2559248, - "lon": -0.0658337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH9 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892142, - "lat": 51.2544728, - "lon": -0.0664918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH9 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892147, - "lat": 51.2447612, - "lon": -0.0698560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH9 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892148, - "lat": 51.2453434, - "lon": -0.0652475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH9 246D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6360892149, - "lat": 51.2466494, - "lon": -0.0573715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH9 276D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6361858536, - "lat": 54.6722706, - "lon": -5.8995890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 436" - } -}, -{ - "type": "node", - "id": 6362152604, - "lat": 54.3255947, - "lon": -5.7022719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT30 60" - } -}, -{ - "type": "node", - "id": 6362221993, - "lat": 51.7016874, - "lon": -2.6845613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP16 441D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6362732003, - "lat": 52.3133032, - "lon": -1.9406630, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B97 98" - } -}, -{ - "type": "node", - "id": 6362834790, - "lat": 55.8244485, - "lon": -4.2098141, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6363116579, - "lat": 52.4774905, - "lon": -1.8512664, - "tags": { - "amenity": "post_box", - "ref": "B9 357" - } -}, -{ - "type": "node", - "id": 6363127619, - "lat": 52.4831019, - "lon": -1.8486564, - "tags": { - "amenity": "post_box", - "ref": "B9 186" - } -}, -{ - "type": "node", - "id": 6363127620, - "lat": 52.4818218, - "lon": -1.8364783, - "tags": { - "amenity": "post_box", - "ref": "B9 37" - } -}, -{ - "type": "node", - "id": 6363127621, - "lat": 52.4791928, - "lon": -1.8563787, - "tags": { - "amenity": "post_box", - "ref": "B9 285" - } -}, -{ - "type": "node", - "id": 6363127625, - "lat": 52.4830740, - "lon": -1.8270028, - "tags": { - "amenity": "post_box", - "ref": "B9 494" - } -}, -{ - "type": "node", - "id": 6363150620, - "lat": 52.3985602, - "lon": -1.7901542, - "tags": { - "amenity": "post_box", - "ref": "B91 59" - } -}, -{ - "type": "node", - "id": 6363159326, - "lat": 52.4173438, - "lon": -1.7575392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B91 752D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6363193749, - "lat": 52.4716027, - "lon": -1.8809908, - "tags": { - "amenity": "post_box", - "ref": "B12 653" - } -}, -{ - "type": "node", - "id": 6363193752, - "lat": 52.4725964, - "lon": -1.8871034, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B12 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6363301670, - "lat": 51.3787908, - "lon": -0.3694252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 169", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6363768726, - "lat": 51.7076109, - "lon": -1.9622889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL7 132D" - } -}, -{ - "type": "node", - "id": 6363768727, - "lat": 51.7068802, - "lon": -1.9681978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6366042896, - "lat": 52.3428787, - "lon": -1.9378105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B48 1339", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6366077592, - "lat": 52.3315132, - "lon": -1.8575214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6367427797, - "lat": 52.3602942, - "lon": -2.2015080, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6367458078, - "lat": 51.6777076, - "lon": -0.0045021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN9 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6367484286, - "lat": 52.3458865, - "lon": -2.1233936, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "B61 294" - } -}, -{ - "type": "node", - "id": 6368000265, - "lat": 53.2196413, - "lon": -2.8880004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Wall box situated on reverse of own brick pillar. Facing away from road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6370390573, - "lat": 50.7132222, - "lon": -2.4289682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 1", - "ref:GB:uprn": "10015410851", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6370512556, - "lat": 51.4924005, - "lon": -2.7575469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS20 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6370588309, - "lat": 52.5008132, - "lon": -1.9229718, - "tags": { - "amenity": "post_box", - "ref": "B19 36" - } -}, -{ - "type": "node", - "id": 6370588310, - "lat": 52.4997291, - "lon": -1.9206603, - "tags": { - "amenity": "post_box", - "ref": "B19 313" - } -}, -{ - "type": "node", - "id": 6370659400, - "lat": 52.5986989, - "lon": -1.6167358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "569680470754652", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "B78 47", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 6372191347, - "lat": 51.1719323, - "lon": -1.7605577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SP4 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6372793677, - "lat": 52.3313013, - "lon": -1.3641130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV23 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6373049950, - "lat": 50.8508271, - "lon": -0.2004290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 130D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6373065652, - "lat": 50.8525515, - "lon": -0.1980387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 129", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6373065667, - "lat": 50.8528030, - "lon": -0.1938891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6373070654, - "lat": 50.8679558, - "lon": -0.1247398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "indoor": "yes", - "opening_hours": "This postbox is inside the store entrance so can only be used during store opening hours plus Sunday browsing time.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 363", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6373896615, - "lat": 51.9949688, - "lon": -2.8855446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15; Su off", - "operator": "Royal Mail", - "ref": "HR2 7" - } -}, -{ - "type": "node", - "id": 6374249051, - "lat": 50.7032618, - "lon": -2.4321774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6374374615, - "lat": 52.0401001, - "lon": -2.1934958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "GL20 28" - } -}, -{ - "type": "node", - "id": 6374374617, - "lat": 52.0380664, - "lon": -2.1841830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "wall", - "ref": "GL20 43" - } -}, -{ - "type": "node", - "id": 6374557325, - "lat": 51.4500734, - "lon": -0.1864930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 8" - } -}, -{ - "type": "node", - "id": 6374557326, - "lat": 51.4483194, - "lon": -0.1916747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW18 25" - } -}, -{ - "type": "node", - "id": 6374557327, - "lat": 51.4473903, - "lon": -0.1990000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6374557328, - "lat": 51.4466698, - "lon": -0.1895805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6374671437, - "lat": 50.8374540, - "lon": -0.8144367, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO19 373D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 6376583424, - "lat": 52.2326860, - "lon": 0.7203102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP33 2052", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6376585201, - "lat": 51.9304935, - "lon": -1.2787068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX25 794D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6376853797, - "lat": 51.1586146, - "lon": -3.1857857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6377855451, - "lat": 50.6335837, - "lon": -2.4643395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT3 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 6378576628, - "lat": 51.3882071, - "lon": 0.1086153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 141D", - "ref:GB:uprn": "10015319883", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6378576629, - "lat": 51.3895277, - "lon": 0.1061128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 289", - "ref:GB:uprn": "10015436767", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6378693827, - "lat": 53.1589316, - "lon": -1.2213920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00" - } -}, -{ - "type": "node", - "id": 6379515435, - "lat": 54.1840693, - "lon": -2.9196183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6380948771, - "lat": 51.7876711, - "lon": -1.5025051, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6382153239, - "lat": 54.7133732, - "lon": -6.2104302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT41 22" - } -}, -{ - "type": "node", - "id": 6383053356, - "lat": 53.5709712, - "lon": -2.3438716, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6383156500, - "lat": 50.0217371, - "lon": -5.2159036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Penhale Crossroads", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-10-14" - } -}, -{ - "type": "node", - "id": 6383156501, - "lat": 50.0257952, - "lon": -5.2310332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383156503, - "lat": 50.0250664, - "lon": -5.2444833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR12 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383156504, - "lat": 50.0214481, - "lon": -5.2484163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Thin Letters only, no packets", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383221067, - "lat": 50.0277939, - "lon": -5.2496083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR12 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6383221068, - "lat": 50.0302583, - "lon": -5.2498324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "The Commons Mullion", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383358914, - "lat": 50.0464593, - "lon": -5.2454164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383378834, - "lat": 50.0483874, - "lon": -5.2359682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383411451, - "lat": 50.0476727, - "lon": -5.2245482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR12 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383430763, - "lat": 50.0546618, - "lon": -5.2244870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383432597, - "lat": 50.0711018, - "lon": -5.2395504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00; Su off", - "description": "Gilly Hill", - "drive_through": "no", - "fixme": "Needs a survey to check if this is still here", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383508996, - "lat": 50.0823440, - "lon": -5.2372573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383508997, - "lat": 50.0763922, - "lon": -5.2217043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383509004, - "lat": 50.0709590, - "lon": -5.2105996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383509005, - "lat": 50.0790552, - "lon": -5.2071222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383530287, - "lat": 50.0574609, - "lon": -5.1865799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6383551013, - "lat": 50.8491853, - "lon": -0.2110031, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN41 691D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6383556685, - "lat": 50.8465515, - "lon": -0.2102748, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN41 655D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6384338984, - "lat": 51.4851056, - "lon": -2.7843073, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS20 566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6384511263, - "lat": 53.8687720, - "lon": -0.1997828, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6385102077, - "lat": 52.8565371, - "lon": -3.0577535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY11 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6385596497, - "lat": 52.3390974, - "lon": -2.2749296, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DY13 630" - } -}, -{ - "type": "node", - "id": 6385765521, - "lat": 51.3223232, - "lon": -0.5814660, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6386563087, - "lat": 54.6569844, - "lon": -5.9094521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 708" - } -}, -{ - "type": "node", - "id": 6386563101, - "lat": 54.6554368, - "lon": -5.9117838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 631" - } -}, -{ - "type": "node", - "id": 6387819092, - "lat": 51.2213849, - "lon": -0.6624513, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2021-03-05", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU3 79D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2019-03-30" - } -}, -{ - "type": "node", - "id": 6387994856, - "lat": 51.0144052, - "lon": -3.1032894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TA1 53;TA1 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6388070360, - "lat": 54.1228826, - "lon": -6.3371317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT35 84" - } -}, -{ - "type": "node", - "id": 6388177940, - "lat": 51.2611130, - "lon": -0.2068345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT20 104", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6388180693, - "lat": 51.2681019, - "lon": -0.2119985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6388180694, - "lat": 51.2740608, - "lon": -0.2111539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6388277934, - "lat": 51.2784595, - "lon": -0.1891604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CR5 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6388277936, - "lat": 51.2762082, - "lon": -0.2163860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT20 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6389376512, - "lat": 53.2602807, - "lon": -0.3069560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6390942671, - "lat": 51.2648899, - "lon": -0.2130058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT20 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6390942672, - "lat": 51.2862443, - "lon": -0.2082867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6390942673, - "lat": 51.2840160, - "lon": -0.2137155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KT20 138D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6391274300, - "lat": 51.2915634, - "lon": -0.2350518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT20 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6391274301, - "lat": 51.2919333, - "lon": -0.2367542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT20 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6391274337, - "lat": 51.2965120, - "lon": -0.2431201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6391274347, - "lat": 51.2966367, - "lon": -0.2376040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 168D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6392005353, - "lat": 50.7188546, - "lon": -1.9799194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 18", - "ref:GB:uprn": "10015406062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6394101176, - "lat": 51.5595573, - "lon": 0.1960064, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "mapillary": "725246318752044", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-06-25" - } -}, -{ - "type": "node", - "id": 6394527619, - "lat": 51.4001784, - "lon": -0.1963922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527622, - "lat": 51.3958558, - "lon": -0.1920484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527623, - "lat": 51.3919325, - "lon": -0.1913174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 186D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527625, - "lat": 51.3896483, - "lon": -0.1878038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 187D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527626, - "lat": 51.3943413, - "lon": -0.1876133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527637, - "lat": 51.3975210, - "lon": -0.1863017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527643, - "lat": 51.3942107, - "lon": -0.1825211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6394527644, - "lat": 51.3957571, - "lon": -0.1792475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 189", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6397112512, - "lat": 54.6853231, - "lon": -5.9060900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 811" - } -}, -{ - "type": "node", - "id": 6397239263, - "lat": 53.7738757, - "lon": -2.7155523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR2 164" - } -}, -{ - "type": "node", - "id": 6397259155, - "lat": 51.4672796, - "lon": -2.7483315, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS20 354" - } -}, -{ - "type": "node", - "id": 6397909367, - "lat": 51.5344159, - "lon": 0.1930107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6397909368, - "lat": 51.5510514, - "lon": 0.1919057, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6397987829, - "lat": 51.6420614, - "lon": -2.1543549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL8 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "gps;survey" - } -}, -{ - "type": "node", - "id": 6398248667, - "lat": 53.3751773, - "lon": -2.2528732, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6398632245, - "lat": 52.4588714, - "lon": -1.7435353, - "tags": { - "amenity": "post_box", - "ref": "B37 21" - } -}, -{ - "type": "node", - "id": 6398632246, - "lat": 52.4685024, - "lon": -1.7328054, - "tags": { - "amenity": "post_box", - "ref": "B37 1" - } -}, -{ - "type": "node", - "id": 6398632247, - "lat": 52.4660453, - "lon": -1.7475743, - "tags": { - "amenity": "post_box", - "ref": "B37 602" - } -}, -{ - "type": "node", - "id": 6398641831, - "lat": 52.4668686, - "lon": -1.7219434, - "tags": { - "amenity": "post_box", - "ref": "B37 9010" - } -}, -{ - "type": "node", - "id": 6398681707, - "lat": 52.4336717, - "lon": -2.0053074, - "tags": { - "amenity": "post_box", - "ref": "B32 727" - } -}, -{ - "type": "node", - "id": 6398719174, - "lat": 52.4551930, - "lon": -1.9739175, - "tags": { - "amenity": "post_box", - "ref": "B32 1282" - } -}, -{ - "type": "node", - "id": 6398763797, - "lat": 52.4605532, - "lon": -1.9821246, - "tags": { - "amenity": "post_box", - "ref": "B32 346" - } -}, -{ - "type": "node", - "id": 6398763803, - "lat": 52.4573693, - "lon": -1.9912369, - "tags": { - "amenity": "post_box", - "ref": "B32 364" - } -}, -{ - "type": "node", - "id": 6399496343, - "lat": 53.4793263, - "lon": -2.2369411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "M1 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6399697458, - "lat": 51.4519661, - "lon": -2.7689315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS20 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6399697528, - "lat": 51.4536208, - "lon": -2.7490751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS20 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6400088265, - "lat": 53.2016394, - "lon": -2.5072418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "ref": "CW7 173" - } -}, -{ - "type": "node", - "id": 6400240810, - "lat": 52.4463110, - "lon": -1.9046823, - "tags": { - "amenity": "post_box", - "ref": "B13 774" - } -}, -{ - "type": "node", - "id": 6400240813, - "lat": 52.4445797, - "lon": -1.9012973, - "tags": { - "amenity": "post_box", - "ref": "B13 190" - } -}, -{ - "type": "node", - "id": 6400266909, - "lat": 52.4622132, - "lon": -1.9252429, - "tags": { - "amenity": "post_box", - "ref": "B15 100" - } -}, -{ - "type": "node", - "id": 6400324600, - "lat": 52.4726989, - "lon": -1.8772058, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B10 86" - } -}, -{ - "type": "node", - "id": 6400324602, - "lat": 52.4734389, - "lon": -1.8444528, - "tags": { - "amenity": "post_box", - "ref": "B10 1308" - } -}, -{ - "type": "node", - "id": 6400324603, - "lat": 52.4717299, - "lon": -1.8512763, - "tags": { - "amenity": "post_box", - "ref": "B10 228" - } -}, -{ - "type": "node", - "id": 6400324604, - "lat": 52.4734305, - "lon": -1.8647635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "B3 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6400351118, - "lat": 52.4652857, - "lon": -1.9618734, - "tags": { - "amenity": "post_box", - "ref": "B17 437" - } -}, -{ - "type": "node", - "id": 6400351132, - "lat": 52.4685488, - "lon": -1.9631367, - "tags": { - "amenity": "post_box", - "ref": "B17 603" - } -}, -{ - "type": "node", - "id": 6400351178, - "lat": 52.4599041, - "lon": -1.9462257, - "tags": { - "amenity": "post_box", - "ref": "B17 4244" - } -}, -{ - "type": "node", - "id": 6400382690, - "lat": 52.4666222, - "lon": -1.9710706, - "tags": { - "amenity": "post_box", - "ref": "B17 497" - } -}, -{ - "type": "node", - "id": 6400382691, - "lat": 52.4607952, - "lon": -1.9725079, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "B17 1414" - } -}, -{ - "type": "node", - "id": 6400610012, - "lat": 52.4761933, - "lon": -1.9495431, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B16 189", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6400610014, - "lat": 52.4719622, - "lon": -1.9477743, - "tags": { - "amenity": "post_box", - "ref": "B16 112" - } -}, -{ - "type": "node", - "id": 6400626576, - "lat": 52.3920071, - "lon": -1.9737858, - "tags": { - "amenity": "post_box", - "ref": "B31 432" - } -}, -{ - "type": "node", - "id": 6400626577, - "lat": 52.4334349, - "lon": -1.9789555, - "tags": { - "amenity": "post_box", - "ref": "B31 193" - } -}, -{ - "type": "node", - "id": 6401508809, - "lat": 51.7151179, - "lon": -2.2254828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 80D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6402553291, - "lat": 52.0438975, - "lon": -0.7506807, - "tags": { - "amenity": "post_box", - "barcode": "POC008109", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "drive_through": "no", - "note": "Located inside Post Office. Reference Code not present on plate.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6402577095, - "lat": 51.2713711, - "lon": 0.1910752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN13 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6402577096, - "lat": 51.2703003, - "lon": 0.1918767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN13 1422", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6402577097, - "lat": 51.2715081, - "lon": 0.1874814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN13 56D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6402697655, - "lat": 51.3117948, - "lon": 0.1816761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TN14 258D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-13" - } -}, -{ - "type": "node", - "id": 6402704045, - "lat": 51.2615607, - "lon": -0.0085951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH8 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2019-04-13" - } -}, -{ - "type": "node", - "id": 6402704046, - "lat": 51.2871900, - "lon": 0.0440419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "information_plate:date": "2017-03-29", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN16 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-13" - } -}, -{ - "type": "node", - "id": 6402916340, - "lat": 51.6921614, - "lon": -3.0012792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6402976703, - "lat": 51.6183971, - "lon": -3.0098073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6403058783, - "lat": 51.4849845, - "lon": -2.7590617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS20 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6404939730, - "lat": 52.3328878, - "lon": -2.2931934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DY13 143D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6405104423, - "lat": 51.4909084, - "lon": -2.7159532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "BS20 416" - } -}, -{ - "type": "node", - "id": 6405104425, - "lat": 51.4904606, - "lon": -2.7235157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "post_box:type": "pillar", - "ref": "BS20 601" - } -}, -{ - "type": "node", - "id": 6405221980, - "lat": 50.7195565, - "lon": -2.2886646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6406143218, - "lat": 54.2184564, - "lon": -2.1916209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BD23 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6406155585, - "lat": 52.4344996, - "lon": -1.4951907, - "tags": { - "amenity": "post_box", - "source": "OpenStreetCam survey" - } -}, -{ - "type": "node", - "id": 6406323728, - "lat": 52.3776247, - "lon": -1.9217278, - "tags": { - "amenity": "post_box", - "ref": "B38 201" - } -}, -{ - "type": "node", - "id": 6406323738, - "lat": 52.3944981, - "lon": -1.9360316, - "tags": { - "amenity": "post_box", - "ref": "B38 422" - } -}, -{ - "type": "node", - "id": 6406323751, - "lat": 52.4001512, - "lon": -1.9381071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "131584199067355", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B38 436", - "survey:date": "2021-04-08" - } -}, -{ - "type": "node", - "id": 6406323765, - "lat": 52.4055969, - "lon": -1.9276127, - "tags": { - "amenity": "post_box", - "ref": "B38 669" - } -}, -{ - "type": "node", - "id": 6406323780, - "lat": 52.3882779, - "lon": -1.9065324, - "tags": { - "amenity": "post_box", - "ref": "B38 1042" - } -}, -{ - "type": "node", - "id": 6406323789, - "lat": 52.3976536, - "lon": -1.9466590, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B38 324" - } -}, -{ - "type": "node", - "id": 6406347823, - "lat": 52.5172524, - "lon": -1.7966646, - "tags": { - "amenity": "post_box", - "ref": "B35 8008" - } -}, -{ - "type": "node", - "id": 6406870620, - "lat": 52.4242800, - "lon": -1.9504859, - "tags": { - "amenity": "post_box", - "ref": "B30 387" - } -}, -{ - "type": "node", - "id": 6406870622, - "lat": 52.4191534, - "lon": -1.9509579, - "tags": { - "amenity": "post_box", - "ref": "B30 4188" - } -}, -{ - "type": "node", - "id": 6406899219, - "lat": 52.4224661, - "lon": -1.9377518, - "tags": { - "amenity": "post_box", - "ref": "B30 539" - } -}, -{ - "type": "node", - "id": 6406899220, - "lat": 52.4253423, - "lon": -1.9137136, - "tags": { - "amenity": "post_box", - "ref": "B30 34" - } -}, -{ - "type": "node", - "id": 6406899222, - "lat": 52.4136195, - "lon": -1.9255424, - "tags": { - "amenity": "post_box", - "ref": "B30 9013" - } -}, -{ - "type": "node", - "id": 6406899223, - "lat": 52.4249293, - "lon": -1.9369793, - "tags": { - "amenity": "post_box", - "ref": "B30 756" - } -}, -{ - "type": "node", - "id": 6406899224, - "lat": 52.4330032, - "lon": -1.9190726, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B30 808", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6407041975, - "lat": 52.5096565, - "lon": -1.9587332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B21 555", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6407041979, - "lat": 52.5073904, - "lon": -1.9365996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B21 108" - } -}, -{ - "type": "node", - "id": 6407082983, - "lat": 52.5388942, - "lon": -1.8622109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "ref": "B23 1154", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6407143034, - "lat": 51.4644631, - "lon": -0.0154038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE13 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6407225796, - "lat": 52.4210374, - "lon": -1.5725528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 456D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6407225797, - "lat": 52.4154263, - "lon": -1.5717311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6407225798, - "lat": 52.4115206, - "lon": -1.5711445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6407523725, - "lat": 52.4088591, - "lon": -1.5638739, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 405D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6407641218, - "lat": 51.8602100, - "lon": -2.2360641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6407641219, - "lat": 51.8545975, - "lon": -2.2364182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6407641220, - "lat": 51.8570626, - "lon": -2.2394558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 6407646687, - "lat": 51.8616862, - "lon": -2.2425125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL1 40", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 6407674216, - "lat": 50.7096421, - "lon": -2.4396249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 31D", - "ref:GB:uprn": "10015614673", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6407795972, - "lat": 50.7269208, - "lon": -2.3250541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 152", - "ref:GB:uprn": "10015468127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6407815220, - "lat": 50.6355961, - "lon": -2.0882982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 183", - "ref:GB:uprn": "10015464301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6407815221, - "lat": 50.6344070, - "lon": -2.0772059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 108D", - "ref:GB:uprn": "10015471113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6407825243, - "lat": 50.6767095, - "lon": -2.3871231, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6408840848, - "lat": 52.4969549, - "lon": -1.8798777, - "tags": { - "amenity": "post_box", - "ref": "B6 264" - } -}, -{ - "type": "node", - "id": 6408840857, - "lat": 52.4952070, - "lon": -1.8954062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "B6 8003" - } -}, -{ - "type": "node", - "id": 6408840859, - "lat": 52.4952184, - "lon": -1.8954035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "B6 8002" - } -}, -{ - "type": "node", - "id": 6408840865, - "lat": 52.4952315, - "lon": -1.8953995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "B6 8001" - } -}, -{ - "type": "node", - "id": 6408840870, - "lat": 52.5084754, - "lon": -1.8992427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B6 199" - } -}, -{ - "type": "node", - "id": 6408875446, - "lat": 52.4299154, - "lon": -1.9597199, - "tags": { - "amenity": "post_box", - "ref": "B29 72" - } -}, -{ - "type": "node", - "id": 6408875450, - "lat": 52.4361001, - "lon": -1.9350817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B29 864", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6408875454, - "lat": 52.4263042, - "lon": -1.9738467, - "tags": { - "amenity": "post_box", - "ref": "B29 377" - } -}, -{ - "type": "node", - "id": 6408963123, - "lat": 52.4012000, - "lon": -1.8836956, - "tags": { - "amenity": "post_box", - "ref": "B14 662" - } -}, -{ - "type": "node", - "id": 6408963126, - "lat": 52.4068503, - "lon": -1.8802449, - "tags": { - "amenity": "post_box", - "ref": "B14 772" - } -}, -{ - "type": "node", - "id": 6408963130, - "lat": 52.4042602, - "lon": -1.8845592, - "tags": { - "amenity": "post_box", - "fixme": "approx location", - "ref": "B14 547" - } -}, -{ - "type": "node", - "id": 6408963132, - "lat": 52.4063512, - "lon": -1.8868874, - "tags": { - "amenity": "post_box", - "ref": "B14 328" - } -}, -{ - "type": "node", - "id": 6408963134, - "lat": 52.4074312, - "lon": -1.8837224, - "tags": { - "amenity": "post_box", - "ref": "B14 1083" - } -}, -{ - "type": "node", - "id": 6408969466, - "lat": 52.4169661, - "lon": -1.9022497, - "tags": { - "amenity": "post_box", - "ref": "B14 822" - } -}, -{ - "type": "node", - "id": 6409164693, - "lat": 52.4680538, - "lon": -1.9908647, - "tags": { - "amenity": "post_box", - "ref": "B68 676" - } -}, -{ - "type": "node", - "id": 6409164694, - "lat": 52.4836804, - "lon": -2.0164255, - "tags": { - "amenity": "post_box", - "ref": "B68 197" - } -}, -{ - "type": "node", - "id": 6409209487, - "lat": 51.5141885, - "lon": -3.1906311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6409209489, - "lat": 51.5107874, - "lon": -3.1821205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6409210780, - "lat": 52.3951304, - "lon": -1.8547530, - "tags": { - "amenity": "post_box", - "ref": "B90 157" - } -}, -{ - "type": "node", - "id": 6409210781, - "lat": 52.3779538, - "lon": -1.8109471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B90 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6409210782, - "lat": 52.3958604, - "lon": -1.8492818, - "tags": { - "amenity": "post_box", - "ref": "B90 125" - } -}, -{ - "type": "node", - "id": 6409210783, - "lat": 52.3867472, - "lon": -1.8334510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B90 1427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6409224139, - "lat": 52.6456117, - "lon": -1.6244033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B79 112" - } -}, -{ - "type": "node", - "id": 6409227652, - "lat": 52.6386059, - "lon": -1.6357612, - "tags": { - "amenity": "post_box", - "ref": "B79 93" - } -}, -{ - "type": "node", - "id": 6409258985, - "lat": 52.3720624, - "lon": -1.8939771, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B47 155" - } -}, -{ - "type": "node", - "id": 6409258986, - "lat": 52.3693537, - "lon": -1.8748380, - "tags": { - "amenity": "post_box", - "ref": "B47 40" - } -}, -{ - "type": "node", - "id": 6409258987, - "lat": 52.3876855, - "lon": -1.8798689, - "tags": { - "amenity": "post_box", - "ref": "B47 1380" - } -}, -{ - "type": "node", - "id": 6409258988, - "lat": 52.3589909, - "lon": -1.8893458, - "tags": { - "amenity": "post_box", - "ref": "B47 3" - } -}, -{ - "type": "node", - "id": 6409258989, - "lat": 52.3643109, - "lon": -1.8886585, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B47 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6409258990, - "lat": 52.3771910, - "lon": -1.8846376, - "tags": { - "amenity": "post_box", - "ref": "B47 263" - } -}, -{ - "type": "node", - "id": 6409412620, - "lat": 51.5173298, - "lon": -3.1901108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6409607623, - "lat": 50.7795854, - "lon": 0.1136394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1057D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6409635525, - "lat": 50.7818994, - "lon": 0.1165641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1056D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6409679741, - "lat": 51.2354310, - "lon": -0.0788328, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410011956, - "lat": 55.8245276, - "lon": -3.2605382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH26 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6410075213, - "lat": 55.7979571, - "lon": -3.0926701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH23 67", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6410075214, - "lat": 55.7722976, - "lon": -3.1352690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH23 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6410156210, - "lat": 55.8526979, - "lon": -3.0117331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH23 63", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6410156211, - "lat": 55.8454354, - "lon": -3.0465214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH23 268D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6410161325, - "lat": 50.6358615, - "lon": -2.4695715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 6410161335, - "lat": 50.6376524, - "lon": -2.4700927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 99D", - "ref:GB:uprn": "10015335663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 6410180510, - "lat": 50.6429243, - "lon": -2.4806464, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT3 73D", - "ref:GB:uprn": "10015315215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410207881, - "lat": 50.6425353, - "lon": -2.5510277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "DT3 68D", - "ref:GB:uprn": "10015415209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6410208085, - "lat": 50.6404778, - "lon": -2.5465456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "post_box:type": "lamp", - "ref": "DT3 141", - "ref:GB:uprn": "10015477811", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410223475, - "lat": 50.6547332, - "lon": -2.5520307, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "DT3 77", - "ref:GB:uprn": "10015298698", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6410224959, - "lat": 50.6958783, - "lon": -2.7140468, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 71", - "ref:GB:uprn": "10015408292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410233801, - "lat": 50.7266389, - "lon": -2.7691475, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 63", - "ref:GB:uprn": "10015408406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410245435, - "lat": 50.7319666, - "lon": -2.8185672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DT6 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410256903, - "lat": 50.7440926, - "lon": -2.8516938, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT6 42", - "ref:GB:uprn": "10015325238", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6410256904, - "lat": 50.7408185, - "lon": -2.8452665, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DT6 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6410464348, - "lat": 51.5236336, - "lon": -2.5821140, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS34 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6410472100, - "lat": 50.7585010, - "lon": -2.7257574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "DT6 37", - "ref:GB:uprn": "10015368598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6411497166, - "lat": 51.6193405, - "lon": -3.1794450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6411868586, - "lat": 52.4155003, - "lon": -1.8884213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B14 588D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6412028856, - "lat": 52.4879350, - "lon": -1.7938665, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 326", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6412028860, - "lat": 52.4855274, - "lon": -1.7869678, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B33 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6412040335, - "lat": 52.5389499, - "lon": -1.9240581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B42 644", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6412040336, - "lat": 52.5289313, - "lon": -1.9164682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B42 166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6412176886, - "lat": 50.7678228, - "lon": -4.2158784, - "tags": { - "amenity": "post_box", - "name": "Westcroft Farm" - } -}, -{ - "type": "node", - "id": 6412443546, - "lat": 51.4620383, - "lon": -0.9884276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 658", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6412443547, - "lat": 51.4620860, - "lon": -0.9884552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 509", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6412563555, - "lat": 51.6138312, - "lon": -3.1592909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6413611692, - "lat": 50.8126872, - "lon": -0.1020409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN2 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6414863898, - "lat": 52.3746764, - "lon": -2.3317192, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6415058392, - "lat": 50.8178350, - "lon": -0.4505166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN12 1792D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6415078457, - "lat": 50.8085753, - "lon": -0.4989881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1436", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6415216108, - "lat": 51.7715620, - "lon": -2.6270333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6415216109, - "lat": 51.7703471, - "lon": -2.6234056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6415216125, - "lat": 51.7567829, - "lon": -2.6324138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL15 133D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6415308209, - "lat": 51.7903016, - "lon": -2.6141292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6415901697, - "lat": 50.6505578, - "lon": -2.0784974, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-10", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "BH20 97", - "ref:GB:uprn": "10015355305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6415940521, - "lat": 50.7125210, - "lon": -2.4422661, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 59D", - "ref:GB:uprn": "10015736272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6416171659, - "lat": 52.8163625, - "lon": -1.4519274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 766", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6416171661, - "lat": 52.8234697, - "lon": -1.4284120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE73 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6416171667, - "lat": 52.8228088, - "lon": -1.4247846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE73 1367D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6416339161, - "lat": 51.4166965, - "lon": -0.5081180, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6416464414, - "lat": 52.8961187, - "lon": -0.6629358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NG31 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6416619028, - "lat": 52.5429053, - "lon": -0.2890107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6416749334, - "lat": 52.7435618, - "lon": -1.4863630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "ref": "LE65 865", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6416777558, - "lat": 52.6097479, - "lon": -2.1310110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "543099366777875", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "OpenStreetCam survey", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 6416874256, - "lat": 52.4063118, - "lon": -0.8174649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 30" - } -}, -{ - "type": "node", - "id": 6416874257, - "lat": 52.3969004, - "lon": -0.8003846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 820" - } -}, -{ - "type": "node", - "id": 6416874258, - "lat": 52.3737644, - "lon": -0.8162954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 292" - } -}, -{ - "type": "node", - "id": 6416874259, - "lat": 52.3833755, - "lon": -0.7808313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN14 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6416874260, - "lat": 52.3689146, - "lon": -0.7756144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 160" - } -}, -{ - "type": "node", - "id": 6416874261, - "lat": 52.3636970, - "lon": -0.7394153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 80" - } -}, -{ - "type": "node", - "id": 6417371618, - "lat": 52.4407180, - "lon": -0.8033511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 168" - } -}, -{ - "type": "node", - "id": 6417371619, - "lat": 52.4378337, - "lon": -0.8085358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 811" - } -}, -{ - "type": "node", - "id": 6417371621, - "lat": 52.4448512, - "lon": -0.8350146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 787" - } -}, -{ - "type": "node", - "id": 6417371622, - "lat": 52.4438670, - "lon": -0.8268821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 87" - } -}, -{ - "type": "node", - "id": 6417371623, - "lat": 52.4477938, - "lon": -0.8232880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 108" - } -}, -{ - "type": "node", - "id": 6417371624, - "lat": 52.4416042, - "lon": -0.8210725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 85" - } -}, -{ - "type": "node", - "id": 6417371625, - "lat": 52.4229515, - "lon": -0.7877916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 75" - } -}, -{ - "type": "node", - "id": 6417371626, - "lat": 52.4243091, - "lon": -0.7958892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 97" - } -}, -{ - "type": "node", - "id": 6417371627, - "lat": 52.4222318, - "lon": -0.8123419, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 794" - } -}, -{ - "type": "node", - "id": 6417371628, - "lat": 52.4185627, - "lon": -0.8025035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 16" - } -}, -{ - "type": "node", - "id": 6417371629, - "lat": 52.4029434, - "lon": -0.7739192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6417408273, - "lat": 52.4351210, - "lon": -0.6924310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 169" - } -}, -{ - "type": "node", - "id": 6417408274, - "lat": 52.4417668, - "lon": -0.7044770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 24" - } -}, -{ - "type": "node", - "id": 6417408275, - "lat": 52.4374527, - "lon": -0.7603513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 42" - } -}, -{ - "type": "node", - "id": 6417408276, - "lat": 52.4393478, - "lon": -0.7689169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 171" - } -}, -{ - "type": "node", - "id": 6417510067, - "lat": 50.6209806, - "lon": -2.0085333, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH19 191", - "ref:GB:uprn": "10015414597", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6417510069, - "lat": 50.6231775, - "lon": -2.0238286, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH19 137", - "ref:GB:uprn": "10015391844", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6417518029, - "lat": 50.6128470, - "lon": -1.9671328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BH19 184", - "ref:GB:uprn": "10015455885", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6417518030, - "lat": 50.6110151, - "lon": -1.9714766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2017-07-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 33D", - "ref:GB:uprn": "10015465805", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6417518031, - "lat": 50.6077385, - "lon": -1.9704728, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH19 216", - "ref:GB:uprn": "10015392561", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6417518037, - "lat": 50.6105751, - "lon": -1.9756709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BH19 74", - "ref:GB:uprn": "10015448871", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6417518038, - "lat": 50.6096790, - "lon": -1.9823241, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH19 84D", - "ref:GB:uprn": "10015455547", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6417565276, - "lat": 53.5626804, - "lon": -2.4169794, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6417786798, - "lat": 51.8287952, - "lon": -2.5059088, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6417947824, - "lat": 52.6846506, - "lon": -1.8029841, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6418394430, - "lat": 50.6232477, - "lon": -1.9636679, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH19 205D", - "ref:GB:uprn": "10015349716", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6418394431, - "lat": 50.6272238, - "lon": -1.9701134, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH19 107", - "ref:GB:uprn": "10015776776", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418468210, - "lat": 52.8832424, - "lon": -0.6863494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "NG32 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418603944, - "lat": 51.8197295, - "lon": -2.5009453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6418603945, - "lat": 51.8168512, - "lon": -2.5023535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6418603946, - "lat": 51.8169109, - "lon": -2.4953073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6418603970, - "lat": 51.8283004, - "lon": -2.5017205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6418933588, - "lat": 50.6138618, - "lon": -1.9589862, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BH19 317D", - "ref:GB:uprn": "10015455907", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418933589, - "lat": 50.6132933, - "lon": -1.9619474, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH19 140D", - "ref:GB:uprn": "10015383099", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6418933590, - "lat": 50.6176803, - "lon": -1.9625139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5437960426270889", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH19 215D", - "ref:GB:uprn": "10015270149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-30" - } -}, -{ - "type": "node", - "id": 6418964648, - "lat": 50.6078568, - "lon": -1.9630303, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH19 117D", - "ref:GB:uprn": "10015333967", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418964655, - "lat": 50.6070016, - "lon": -1.9465369, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH19 118", - "ref:GB:uprn": "10015413372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418964659, - "lat": 50.6077649, - "lon": -1.9554804, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH19 124", - "ref:GB:uprn": "10015455754", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418964660, - "lat": 50.6053042, - "lon": -1.9578244, - "tags": { - "amenity": "post_box", - "note": "Probably a Victorian vintage postbox", - "post_box:type": "pillar", - "ref": "BH19 122D", - "ref:GB:uprn": "10015396837", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6418964661, - "lat": 50.6031806, - "lon": -1.9547778, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BH19 116", - "ref:GB:uprn": "10015422456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6418964662, - "lat": 50.6019132, - "lon": -1.9578999, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BH19 174D", - "ref:GB:uprn": "10015359524", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6419103574, - "lat": 53.1968039, - "lon": -2.8801009, - "tags": { - "access": "customers", - "amenity": "post_box", - "check_date": "2024-06-08", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type PB58 post box CH1 480 on the concourse of Chester railway station. This postbox is just inside the ticket barriers.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "CH1 480D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Chester railway station.jpg" - } -}, -{ - "type": "node", - "id": 6419109625, - "lat": 51.1198269, - "lon": -0.9006970, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6419136892, - "lat": 51.1216778, - "lon": -0.8637094, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU35 106D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6419165539, - "lat": 51.1188780, - "lon": -0.8777482, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6419169695, - "lat": 51.1066823, - "lon": -0.8787895, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU35 181D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6419205800, - "lat": 54.1417608, - "lon": -0.8390484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6419390730, - "lat": 52.4445336, - "lon": -1.4923044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6419419385, - "lat": 52.9212208, - "lon": -0.6400893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6419425566, - "lat": 52.9454684, - "lon": -0.6189312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NG32 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6421094778, - "lat": 51.2716400, - "lon": -0.1524405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH1 199D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421094779, - "lat": 51.2615705, - "lon": -0.1820038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH2 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421094780, - "lat": 51.2461800, - "lon": -0.2043681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH2 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421094781, - "lat": 51.2415545, - "lon": -0.2118927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH2 97D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421094783, - "lat": 51.2405181, - "lon": -0.2144639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH2 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421094784, - "lat": 51.2483965, - "lon": -0.2199320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH2 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421100885, - "lat": 51.2493122, - "lon": -0.2069689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH2 164D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421100887, - "lat": 51.2487444, - "lon": -0.1772625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH1 298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421100893, - "lat": 51.2602667, - "lon": -0.1550990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH1 341D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6421100894, - "lat": 51.2589044, - "lon": -0.1560948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH1 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;survey" - } -}, -{ - "type": "node", - "id": 6421311197, - "lat": 51.5997533, - "lon": -0.5612557, - "tags": { - "amenity": "post_box", - "ref": "SL9 112" - } -}, -{ - "type": "node", - "id": 6421373576, - "lat": 51.7113793, - "lon": -2.2181915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6422022182, - "lat": 52.4035676, - "lon": -0.6039047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN14 72", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6422022183, - "lat": 52.3823437, - "lon": -0.6445266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "pillar is on side of bus shelter", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN14 46" - } -}, -{ - "type": "node", - "id": 6422022184, - "lat": 52.3865089, - "lon": -0.6461509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 12" - } -}, -{ - "type": "node", - "id": 6422022185, - "lat": 52.4286099, - "lon": -0.5786698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 137" - } -}, -{ - "type": "node", - "id": 6422022186, - "lat": 52.4589873, - "lon": -0.6099665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 818" - } -}, -{ - "type": "node", - "id": 6423274368, - "lat": 57.0964786, - "lon": -2.2713047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB14 220", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6423693924, - "lat": 51.6051201, - "lon": 0.5168626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "ref": "SS12 309" - } -}, -{ - "type": "node", - "id": 6424129886, - "lat": 52.3663252, - "lon": -0.5534450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 60" - } -}, -{ - "type": "node", - "id": 6424129887, - "lat": 52.3522149, - "lon": -0.5932932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN14 58" - } -}, -{ - "type": "node", - "id": 6424129888, - "lat": 52.3643813, - "lon": -0.5916122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 56" - } -}, -{ - "type": "node", - "id": 6424129889, - "lat": 52.3846893, - "lon": -0.5863524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 172" - } -}, -{ - "type": "node", - "id": 6424129890, - "lat": 52.3807617, - "lon": -0.5771497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 71" - } -}, -{ - "type": "node", - "id": 6424129891, - "lat": 52.3963227, - "lon": -0.5243611, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 809" - } -}, -{ - "type": "node", - "id": 6424129892, - "lat": 52.3970445, - "lon": -0.5280921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 146" - } -}, -{ - "type": "node", - "id": 6424129893, - "lat": 52.4010901, - "lon": -0.5296505, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 66" - } -}, -{ - "type": "node", - "id": 6424129894, - "lat": 52.3953652, - "lon": -0.5327779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 812" - } -}, -{ - "type": "node", - "id": 6424129895, - "lat": 52.3967859, - "lon": -0.5386788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN14 113" - } -}, -{ - "type": "node", - "id": 6424129896, - "lat": 52.3920229, - "lon": -0.5399394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Cypher = [Crown] EIIR on perforated steel plate below slot. Small cast iron box on top of black pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 68" - } -}, -{ - "type": "node", - "id": 6424129897, - "lat": 52.3974014, - "lon": -0.5467391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN14 70" - } -}, -{ - "type": "node", - "id": 6424129898, - "lat": 52.4224679, - "lon": -0.4962546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN14 74" - } -}, -{ - "type": "node", - "id": 6424129899, - "lat": 52.4282484, - "lon": -0.5244429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NN14 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6424232616, - "lat": 52.3416485, - "lon": -0.9871039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 234" - } -}, -{ - "type": "node", - "id": 6424232617, - "lat": 52.3422516, - "lon": -0.9912640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 7" - } -}, -{ - "type": "node", - "id": 6424232619, - "lat": 52.3748050, - "lon": -1.0164955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 160" - } -}, -{ - "type": "node", - "id": 6424232620, - "lat": 52.3704508, - "lon": -1.0247648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 272" - } -}, -{ - "type": "node", - "id": 6424232621, - "lat": 52.3589826, - "lon": -1.0532069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 206" - } -}, -{ - "type": "node", - "id": 6424232622, - "lat": 52.3586017, - "lon": -1.0807666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 15" - } -}, -{ - "type": "node", - "id": 6424232623, - "lat": 52.3953980, - "lon": -0.9886475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 496" - } -}, -{ - "type": "node", - "id": 6424232624, - "lat": 52.4211342, - "lon": -0.8418717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 590" - } -}, -{ - "type": "node", - "id": 6424232625, - "lat": 52.4131494, - "lon": -0.8636928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 120" - } -}, -{ - "type": "node", - "id": 6424232626, - "lat": 52.4061318, - "lon": -0.9177688, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 145" - } -}, -{ - "type": "node", - "id": 6424232627, - "lat": 52.3026713, - "lon": -0.9008628, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN6 564", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6424232628, - "lat": 52.3053315, - "lon": -0.8936772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NN6 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6424232630, - "lat": 52.3210961, - "lon": -0.8373722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 134" - } -}, -{ - "type": "node", - "id": 6424232631, - "lat": 52.3308990, - "lon": -0.8101103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN6 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6424237602, - "lat": 51.3839622, - "lon": 0.1092921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BR6 137D", - "ref:GB:uprn": "10015412727", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6424237603, - "lat": 51.3818227, - "lon": 0.1097962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR5 507D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6424253302, - "lat": 52.0759569, - "lon": -1.0248198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN12 562" - } -}, -{ - "type": "node", - "id": 6424253303, - "lat": 52.1309509, - "lon": -1.1257580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 364" - } -}, -{ - "type": "node", - "id": 6424253304, - "lat": 52.1677958, - "lon": -1.1113358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN12 241" - } -}, -{ - "type": "node", - "id": 6424303289, - "lat": 52.1590066, - "lon": -0.9660110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 370" - } -}, -{ - "type": "node", - "id": 6424303290, - "lat": 52.1602818, - "lon": -0.9805754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 372" - } -}, -{ - "type": "node", - "id": 6424303291, - "lat": 52.1321701, - "lon": -0.9885147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN12 1", - "website": "https://www.royalmail.com/services-near-you/postbox/towcester-sub-post-office-nn12-6bt/00000NN121" - } -}, -{ - "type": "node", - "id": 6424303292, - "lat": 52.1320639, - "lon": -0.9928733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN12 482" - } -}, -{ - "type": "node", - "id": 6424303293, - "lat": 52.1302700, - "lon": -1.0005806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN12 315" - } -}, -{ - "type": "node", - "id": 6424303294, - "lat": 52.1283757, - "lon": -0.9977764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 421" - } -}, -{ - "type": "node", - "id": 6424303295, - "lat": 52.1266665, - "lon": -0.9928398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN12 340" - } -}, -{ - "type": "node", - "id": 6424303296, - "lat": 52.1206245, - "lon": -0.9883337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 422" - } -}, -{ - "type": "node", - "id": 6424387850, - "lat": 51.0065056, - "lon": -1.1815922, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO32 784", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6424398796, - "lat": 51.0664716, - "lon": -1.2166715, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "last_checked": "2021-09-04", - "note": "This postbox is a lamp attached to a telegraph pole.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO24 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6424971585, - "lat": 56.4441599, - "lon": -3.2303344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH14 171", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6425529061, - "lat": 51.4916908, - "lon": 0.0297428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6425731584, - "lat": 52.0257927, - "lon": 0.5916362, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6425786790, - "lat": 51.5764551, - "lon": 0.1919297, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6426201565, - "lat": 51.4496627, - "lon": 0.2862864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA9 301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6426691104, - "lat": 56.6127195, - "lon": -3.0620944, - "tags": { - "amenity": "post_box", - "ref": "DD8 58" - } -}, -{ - "type": "node", - "id": 6426768694, - "lat": 56.8735234, - "lon": -2.4114535, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6426865157, - "lat": 52.6331345, - "lon": 1.1846457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6426891801, - "lat": 52.6382311, - "lon": 1.1473177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6427436837, - "lat": 51.3115844, - "lon": 0.3202826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN15 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-04-19" - } -}, -{ - "type": "node", - "id": 6427449658, - "lat": 53.6669459, - "lon": -2.5853229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 49" - } -}, -{ - "type": "node", - "id": 6427449659, - "lat": 53.6714437, - "lon": -2.5908101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR6 3" - } -}, -{ - "type": "node", - "id": 6427584263, - "lat": 52.6243269, - "lon": 1.1193788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR9 922", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6427592917, - "lat": 52.6143498, - "lon": 1.1207881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR18 1818", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6427630413, - "lat": 52.5941263, - "lon": 1.1019184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "note": "Ref on collection plate is obscured", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6427838249, - "lat": 52.0421121, - "lon": 0.5976970, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6428294351, - "lat": 51.3997966, - "lon": -0.0332853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6428664024, - "lat": 51.8926905, - "lon": 0.6144271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM77 50", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6428664026, - "lat": 51.9013816, - "lon": 0.6239757, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6429184001, - "lat": 50.8140935, - "lon": -0.3620084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1686D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6429188546, - "lat": 50.8140717, - "lon": -0.3608873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1685D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6429190363, - "lat": 50.8148006, - "lon": -0.3550691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1698D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6429192975, - "lat": 50.8244672, - "lon": -0.3566913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8-LC-NS", - "collection_times": "Mo-Fr 18:15; Sa off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN14 1828", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6429205449, - "lat": 53.8507020, - "lon": -1.8407806, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6429205455, - "lat": 53.8588273, - "lon": -1.8466558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "absent" - } -}, -{ - "type": "node", - "id": 6429212814, - "lat": 57.1205753, - "lon": -2.1192902, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB12 5UN", - "addr:street": "Leggart Place", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 146D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6429238539, - "lat": 50.8242013, - "lon": -0.3563992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1816", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6429241079, - "lat": 50.8206355, - "lon": -0.3636278, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1740D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6429246041, - "lat": 50.8210722, - "lon": -0.3684674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1739D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6429255676, - "lat": 50.8070876, - "lon": -0.3923259, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1608D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6429259456, - "lat": 50.8066140, - "lon": -0.3993810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1604D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6429262568, - "lat": 50.8103802, - "lon": -0.3993647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN11 1605", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6429333687, - "lat": 51.1467192, - "lon": -1.2833659, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SO21 176", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6429336030, - "lat": 51.1497638, - "lon": -1.2448132, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6429352321, - "lat": 51.1773504, - "lon": -1.2200618, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6429352322, - "lat": 51.1782231, - "lon": -1.1996596, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SO21 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6429393344, - "lat": 53.7966788, - "lon": -1.7571880, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests this should be BD1 156/1156", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BD1 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6431848807, - "lat": 52.0599418, - "lon": -1.1772510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 100" - } -}, -{ - "type": "node", - "id": 6431848808, - "lat": 52.0707406, - "lon": -1.1011192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN13 92" - } -}, -{ - "type": "node", - "id": 6431848809, - "lat": 52.0720748, - "lon": -1.0823357, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NN13 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6431848810, - "lat": 52.0557529, - "lon": -1.0773361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN13 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6431848811, - "lat": 52.0504531, - "lon": -1.1151052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 109" - } -}, -{ - "type": "node", - "id": 6431848812, - "lat": 52.0339639, - "lon": -1.1422214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NN13 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6431848813, - "lat": 52.0296488, - "lon": -1.1464191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN13 24" - } -}, -{ - "type": "node", - "id": 6431848814, - "lat": 52.0298435, - "lon": -1.1465102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NN13 428" - } -}, -{ - "type": "node", - "id": 6431848815, - "lat": 52.0275306, - "lon": -1.1491361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN13 124" - } -}, -{ - "type": "node", - "id": 6431848816, - "lat": 52.0252589, - "lon": -1.1481839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 86" - } -}, -{ - "type": "node", - "id": 6431848817, - "lat": 52.0237735, - "lon": -1.1493668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN13 123" - } -}, -{ - "type": "node", - "id": 6431848818, - "lat": 52.0254473, - "lon": -1.1395397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN13 1141" - } -}, -{ - "type": "node", - "id": 6431848819, - "lat": 52.0179470, - "lon": -1.0945505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN13 104" - } -}, -{ - "type": "node", - "id": 6431848820, - "lat": 52.0051046, - "lon": -1.0882500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 105" - } -}, -{ - "type": "node", - "id": 6431848821, - "lat": 51.9994755, - "lon": -1.1158124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 43" - } -}, -{ - "type": "node", - "id": 6431848822, - "lat": 52.0064453, - "lon": -1.1980891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN13 103" - } -}, -{ - "type": "node", - "id": 6432528474, - "lat": 52.3914418, - "lon": -0.7459853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 823" - } -}, -{ - "type": "node", - "id": 6432528475, - "lat": 52.3909925, - "lon": -0.7378925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 810" - } -}, -{ - "type": "node", - "id": 6432528476, - "lat": 52.3956038, - "lon": -0.7363006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 157", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6432528477, - "lat": 52.3788625, - "lon": -0.7196032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 179" - } -}, -{ - "type": "node", - "id": 6432528478, - "lat": 52.3788977, - "lon": -0.7195093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN15 802" - } -}, -{ - "type": "node", - "id": 6432528479, - "lat": 52.3820601, - "lon": -0.7180971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432528480, - "lat": 52.3858156, - "lon": -0.7146263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6432528481, - "lat": 52.3852639, - "lon": -0.7234105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 143", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6432528482, - "lat": 52.3886845, - "lon": -0.7278255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 3" - } -}, -{ - "type": "node", - "id": 6432528483, - "lat": 52.3888858, - "lon": -0.7160787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 76", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6432528484, - "lat": 52.3928426, - "lon": -0.7221828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6432531185, - "lat": 52.3954340, - "lon": -0.7255845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432531186, - "lat": 52.3957108, - "lon": -0.7195683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 174" - } -}, -{ - "type": "node", - "id": 6432531187, - "lat": 52.3940304, - "lon": -0.7152553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 101" - } -}, -{ - "type": "node", - "id": 6432531188, - "lat": 52.3932473, - "lon": -0.7122062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 98" - } -}, -{ - "type": "node", - "id": 6432531189, - "lat": 52.3891433, - "lon": -0.7100186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 139" - } -}, -{ - "type": "node", - "id": 6432531190, - "lat": 52.3935632, - "lon": -0.7018429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 178" - } -}, -{ - "type": "node", - "id": 6432531191, - "lat": 52.3908215, - "lon": -0.6972402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 184" - } -}, -{ - "type": "node", - "id": 6432531192, - "lat": 52.3965633, - "lon": -0.6971544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 816" - } -}, -{ - "type": "node", - "id": 6432531193, - "lat": 52.3943635, - "lon": -0.6897408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 67" - } -}, -{ - "type": "node", - "id": 6432531194, - "lat": 52.3903452, - "lon": -0.6865087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 822" - } -}, -{ - "type": "node", - "id": 6432531195, - "lat": 52.3776820, - "lon": -0.6958723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 128" - } -}, -{ - "type": "node", - "id": 6432531196, - "lat": 52.3757858, - "lon": -0.6966716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 819" - } -}, -{ - "type": "node", - "id": 6432531197, - "lat": 52.3763409, - "lon": -0.6893197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 814" - } -}, -{ - "type": "node", - "id": 6432531198, - "lat": 52.3809647, - "lon": -0.6869245, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 109" - } -}, -{ - "type": "node", - "id": 6432531199, - "lat": 52.3798563, - "lon": -0.6735510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 123" - } -}, -{ - "type": "node", - "id": 6432531200, - "lat": 52.3694305, - "lon": -0.6713945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 48" - } -}, -{ - "type": "node", - "id": 6432531201, - "lat": 52.3658570, - "lon": -0.6820160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN15 33" - } -}, -{ - "type": "node", - "id": 6432531202, - "lat": 52.3639186, - "lon": -0.6789650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432531203, - "lat": 52.3601407, - "lon": -0.6794170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN15 37" - } -}, -{ - "type": "node", - "id": 6432531204, - "lat": 52.3611923, - "lon": -0.6877962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN15 788" - } -}, -{ - "type": "node", - "id": 6432531205, - "lat": 52.3583175, - "lon": -0.6830728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN15 149" - } -}, -{ - "type": "node", - "id": 6432648638, - "lat": 52.4198133, - "lon": -0.7235668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NN16 795", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432648639, - "lat": 52.4172835, - "lon": -0.7192062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 797", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6432648640, - "lat": 52.4139183, - "lon": -0.7300115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN16 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6432648641, - "lat": 52.4138193, - "lon": -0.7254396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6432648642, - "lat": 52.4132623, - "lon": -0.7215893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 100", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6432648643, - "lat": 52.4093732, - "lon": -0.7289976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432648648, - "lat": 52.4060007, - "lon": -0.7288474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN16 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6432648649, - "lat": 52.4035562, - "lon": -0.7310053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 05:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6432648650, - "lat": 52.4099868, - "lon": -0.7225160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 6" - } -}, -{ - "type": "node", - "id": 6432648651, - "lat": 52.4077116, - "lon": -0.7205949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 9" - } -}, -{ - "type": "node", - "id": 6432648656, - "lat": 52.4036805, - "lon": -0.7221559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 38" - } -}, -{ - "type": "node", - "id": 6432648657, - "lat": 52.4102005, - "lon": -0.7184825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 31" - } -}, -{ - "type": "node", - "id": 6432648658, - "lat": 52.4069189, - "lon": -0.7140409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN16 102" - } -}, -{ - "type": "node", - "id": 6432648659, - "lat": 52.4096019, - "lon": -0.7075467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 144" - } -}, -{ - "type": "node", - "id": 6432648660, - "lat": 52.4175384, - "lon": -0.6971902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN16 79" - } -}, -{ - "type": "node", - "id": 6432648661, - "lat": 52.4073558, - "lon": -0.7066910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 154" - } -}, -{ - "type": "node", - "id": 6432648662, - "lat": 52.4042541, - "lon": -0.7065757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN16 90" - } -}, -{ - "type": "node", - "id": 6432648663, - "lat": 52.4036838, - "lon": -0.7122794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 27" - } -}, -{ - "type": "node", - "id": 6432648664, - "lat": 52.4017368, - "lon": -0.7219293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 118" - } -}, -{ - "type": "node", - "id": 6432648665, - "lat": 52.4026725, - "lon": -0.7176679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 10" - } -}, -{ - "type": "node", - "id": 6432648666, - "lat": 52.4012693, - "lon": -0.7124390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6432648667, - "lat": 52.3983601, - "lon": -0.7154102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 124" - } -}, -{ - "type": "node", - "id": 6432648668, - "lat": 52.4003634, - "lon": -0.7208419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 11" - } -}, -{ - "type": "node", - "id": 6432648669, - "lat": 52.3984327, - "lon": -0.7239433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 32" - } -}, -{ - "type": "node", - "id": 6432648670, - "lat": 52.3973816, - "lon": -0.7248978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 28" - } -}, -{ - "type": "node", - "id": 6432648671, - "lat": 52.4006760, - "lon": -0.7258621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 107", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6432648672, - "lat": 52.3980968, - "lon": -0.7280535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:45", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NN16 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432648673, - "lat": 52.4004060, - "lon": -0.7289252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432648674, - "lat": 52.4104915, - "lon": -0.7408856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 796" - } -}, -{ - "type": "node", - "id": 6432648675, - "lat": 52.4060124, - "lon": -0.7440904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 06:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 180", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6432648676, - "lat": 52.4059682, - "lon": -0.7441092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 06:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN16 801", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6432648677, - "lat": 52.3997039, - "lon": -0.7428834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 161" - } -}, -{ - "type": "node", - "id": 6432648678, - "lat": 52.3964033, - "lon": -0.7395555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6432666949, - "lat": 52.4912381, - "lon": -0.4782426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432666950, - "lat": 52.4898611, - "lon": -0.4759021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:09", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6432666951, - "lat": 52.4866973, - "lon": -0.4727141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE8 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6432800196, - "lat": 51.7928595, - "lon": -2.0840798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL53 86D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6432800198, - "lat": 51.7963816, - "lon": -2.0745950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL53 137", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6433249924, - "lat": 52.2679276, - "lon": -1.1200556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 55" - } -}, -{ - "type": "node", - "id": 6433249925, - "lat": 52.2461174, - "lon": -1.2115592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 154" - } -}, -{ - "type": "node", - "id": 6433249926, - "lat": 52.2304789, - "lon": -1.1825001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 1203" - } -}, -{ - "type": "node", - "id": 6433249927, - "lat": 52.1988278, - "lon": -1.2204386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN11 165" - } -}, -{ - "type": "node", - "id": 6433249928, - "lat": 52.1689095, - "lon": -1.2103549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6433249930, - "lat": 52.1719150, - "lon": -1.2206773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 449" - } -}, -{ - "type": "node", - "id": 6433249931, - "lat": 52.1759977, - "lon": -1.2457439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 161" - } -}, -{ - "type": "node", - "id": 6433249932, - "lat": 52.1744622, - "lon": -1.2453121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 591" - } -}, -{ - "type": "node", - "id": 6433373279, - "lat": 54.6607484, - "lon": -5.6673667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "BT20 4JP", - "ref": "BT20 252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6433613234, - "lat": 52.2543739, - "lon": -1.1675870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 1204" - } -}, -{ - "type": "node", - "id": 6433613235, - "lat": 52.2530718, - "lon": -1.1654601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 347" - } -}, -{ - "type": "node", - "id": 6433613236, - "lat": 52.2487663, - "lon": -1.1701781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 553" - } -}, -{ - "type": "node", - "id": 6433613237, - "lat": 52.2501933, - "lon": -1.1573705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 299" - } -}, -{ - "type": "node", - "id": 6433613238, - "lat": 52.2524232, - "lon": -1.1588752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 224" - } -}, -{ - "type": "node", - "id": 6433613239, - "lat": 52.2583373, - "lon": -1.1602646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6433613240, - "lat": 52.2582289, - "lon": -1.1568368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 429" - } -}, -{ - "type": "node", - "id": 6433613241, - "lat": 52.2554739, - "lon": -1.1547178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 554" - } -}, -{ - "type": "node", - "id": 6433613242, - "lat": 52.2532984, - "lon": -1.1514777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 346" - } -}, -{ - "type": "node", - "id": 6433613243, - "lat": 52.2600086, - "lon": -1.1546159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN11 348" - } -}, -{ - "type": "node", - "id": 6433613244, - "lat": 52.2625138, - "lon": -1.1477011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 314" - } -}, -{ - "type": "node", - "id": 6433757438, - "lat": 52.0119126, - "lon": -4.8871341, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6434026662, - "lat": 51.3834512, - "lon": -1.4919573, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG17 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434070068, - "lat": 52.2644977, - "lon": -1.1833920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NN11 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434070069, - "lat": 52.2644772, - "lon": -1.1835060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN11 546", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6434070070, - "lat": 52.2560207, - "lon": -1.1743368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN11 350" - } -}, -{ - "type": "node", - "id": 6434070071, - "lat": 52.2539141, - "lon": -1.1795980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 342" - } -}, -{ - "type": "node", - "id": 6434070072, - "lat": 52.2494855, - "lon": -1.1758912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 344" - } -}, -{ - "type": "node", - "id": 6434070073, - "lat": 52.2592920, - "lon": -1.1734329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 304" - } -}, -{ - "type": "node", - "id": 6434070074, - "lat": 52.2593297, - "lon": -1.1703886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 243" - } -}, -{ - "type": "node", - "id": 6434194858, - "lat": 51.5104160, - "lon": -1.5340573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG17 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434194860, - "lat": 51.5062308, - "lon": -1.5258108, - "tags": { - "amenity": "post_box", - "mapillary": "300962575084661", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RG17 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434194861, - "lat": 51.5026806, - "lon": -1.5204851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434194862, - "lat": 51.4946832, - "lon": -1.5048708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "368339265041747", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG17 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 6434194868, - "lat": 51.4920723, - "lon": -1.5004006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "339841231235868", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG17 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 6434200860, - "lat": 52.2767797, - "lon": -1.1569950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 592" - } -}, -{ - "type": "node", - "id": 6434200861, - "lat": 52.2767010, - "lon": -1.1621395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 576" - } -}, -{ - "type": "node", - "id": 6434200862, - "lat": 52.2739389, - "lon": -1.1591609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 584" - } -}, -{ - "type": "node", - "id": 6434200863, - "lat": 52.2724610, - "lon": -1.1647412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 548" - } -}, -{ - "type": "node", - "id": 6434200865, - "lat": 52.2703987, - "lon": -1.1688088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 131" - } -}, -{ - "type": "node", - "id": 6434200866, - "lat": 52.2668475, - "lon": -1.1679974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 323" - } -}, -{ - "type": "node", - "id": 6434200867, - "lat": 52.2657411, - "lon": -1.1653742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 189" - } -}, -{ - "type": "node", - "id": 6434200868, - "lat": 52.2626837, - "lon": -1.1710726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 289" - } -}, -{ - "type": "node", - "id": 6434200869, - "lat": 52.2609321, - "lon": -1.1659107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 169" - } -}, -{ - "type": "node", - "id": 6434200870, - "lat": 52.2710101, - "lon": -1.1825243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN11 545" - } -}, -{ - "type": "node", - "id": 6434200871, - "lat": 52.2709896, - "lon": -1.1824948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 536" - } -}, -{ - "type": "node", - "id": 6434200872, - "lat": 52.2668180, - "lon": -1.1791152, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 593" - } -}, -{ - "type": "node", - "id": 6434210559, - "lat": 51.5269269, - "lon": -1.5235725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434214643, - "lat": 53.6039462, - "lon": -1.8505982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 86" - } -}, -{ - "type": "node", - "id": 6434223806, - "lat": 51.5986669, - "lon": -1.6547372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN6 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434233714, - "lat": 51.4501709, - "lon": -1.1323147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN6 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434240660, - "lat": 51.5051368, - "lon": -1.2031183, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG8 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434279629, - "lat": 51.5123023, - "lon": -1.3621786, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG20 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434293101, - "lat": 51.4909850, - "lon": -1.3401708, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG20 188D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6434310850, - "lat": 51.4632438, - "lon": -1.3165784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "RG20 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434310851, - "lat": 51.4738020, - "lon": -1.3153687, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG20 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434310852, - "lat": 51.4842141, - "lon": -1.3228601, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG20 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434316256, - "lat": 51.4415022, - "lon": -1.2962992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RG18 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434321116, - "lat": 53.7689199, - "lon": -2.7103999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6434626837, - "lat": 53.8258907, - "lon": -1.7726793, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6435293524, - "lat": 51.3732722, - "lon": 0.1216315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR5 505D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6435293525, - "lat": 51.3787501, - "lon": 0.1213263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 458", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6435293526, - "lat": 51.3696962, - "lon": 0.1225709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6435293527, - "lat": 51.3708772, - "lon": 0.1137969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6435293528, - "lat": 51.3772020, - "lon": 0.1157455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6435492921, - "lat": 51.3075729, - "lon": -2.5026693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2" - } -}, -{ - "type": "node", - "id": 6436068877, - "lat": 53.7591478, - "lon": -2.7173453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6436068878, - "lat": 53.7591716, - "lon": -2.7174097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR1 493" - } -}, -{ - "type": "node", - "id": 6436438909, - "lat": 52.5609065, - "lon": -1.9054706, - "tags": { - "amenity": "post_box", - "ref": "B43 1062" - } -}, -{ - "type": "node", - "id": 6436438910, - "lat": 52.5582258, - "lon": -1.9105802, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B43 1014" - } -}, -{ - "type": "node", - "id": 6436438911, - "lat": 52.5513435, - "lon": -1.9093912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "ref": "B43 1416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6436440228, - "lat": 52.5499314, - "lon": -1.9272367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B43 1013" - } -}, -{ - "type": "node", - "id": 6436442074, - "lat": 52.0573771, - "lon": -2.7158917, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6436451246, - "lat": 52.5245054, - "lon": -1.6438027, - "tags": { - "amenity": "post_box", - "ref": "B46 197" - } -}, -{ - "type": "node", - "id": 6436865285, - "lat": 51.5104837, - "lon": -0.1870757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 52;W2 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6436865286, - "lat": 51.5122316, - "lon": -0.1910535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 60;W2 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6436865287, - "lat": 51.5125440, - "lon": -0.1863607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 76;W2 276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6436955783, - "lat": 51.4831627, - "lon": -1.6185348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6436988994, - "lat": 51.4428840, - "lon": -1.6049239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6436988995, - "lat": 51.4420724, - "lon": -1.6067129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 102D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6438148299, - "lat": 52.5355060, - "lon": -1.6787085, - "tags": { - "amenity": "post_box", - "ref": "B46 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6438155590, - "lat": 52.5321486, - "lon": -1.6618540, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B46 154" - } -}, -{ - "type": "node", - "id": 6438900261, - "lat": 52.0405489, - "lon": -2.7007094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6438900262, - "lat": 52.0389520, - "lon": -2.6912806, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6438983192, - "lat": 52.5139766, - "lon": -1.6836626, - "tags": { - "amenity": "post_box", - "ref": "B46 19" - } -}, -{ - "type": "node", - "id": 6438983198, - "lat": 52.5210258, - "lon": -1.6803396, - "tags": { - "amenity": "post_box", - "ref": "B46 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6438997242, - "lat": 52.4951389, - "lon": -1.8197178, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B8 765", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6438997243, - "lat": 52.4940619, - "lon": -1.8193411, - "tags": { - "amenity": "post_box", - "ref": "B8 430" - } -}, -{ - "type": "node", - "id": 6439007633, - "lat": 52.4927237, - "lon": -1.8271580, - "tags": { - "amenity": "post_box", - "ref": "B8 362", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6439007634, - "lat": 52.4932657, - "lon": -1.8326941, - "tags": { - "amenity": "post_box", - "ref": "B8 184" - } -}, -{ - "type": "node", - "id": 6439009981, - "lat": 52.4873195, - "lon": -1.8321417, - "tags": { - "amenity": "post_box", - "ref": "B8 185" - } -}, -{ - "type": "node", - "id": 6439009982, - "lat": 52.4870924, - "lon": -1.8233280, - "tags": { - "amenity": "post_box", - "ref": "B8 416" - } -}, -{ - "type": "node", - "id": 6439048294, - "lat": 52.4925719, - "lon": -1.8527499, - "tags": { - "amenity": "post_box", - "ref": "B8 879" - } -}, -{ - "type": "node", - "id": 6439048298, - "lat": 52.4880316, - "lon": -1.8411462, - "tags": { - "amenity": "post_box", - "ref": "B8 282" - } -}, -{ - "type": "node", - "id": 6439048299, - "lat": 52.4868377, - "lon": -1.8597174, - "tags": { - "amenity": "post_box", - "ref": "B8 1346" - } -}, -{ - "type": "node", - "id": 6439048301, - "lat": 52.4961530, - "lon": -1.8514026, - "tags": { - "amenity": "post_box", - "ref": "B8 93" - } -}, -{ - "type": "node", - "id": 6439048304, - "lat": 52.4915249, - "lon": -1.8588725, - "tags": { - "amenity": "post_box", - "ref": "B8 98" - } -}, -{ - "type": "node", - "id": 6439048309, - "lat": 52.4886213, - "lon": -1.8504960, - "tags": { - "amenity": "post_box", - "ref": "B8 116" - } -}, -{ - "type": "node", - "id": 6439048312, - "lat": 52.4964490, - "lon": -1.8450422, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B8 346", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6439048313, - "lat": 52.4839172, - "lon": -1.8563010, - "tags": { - "amenity": "post_box", - "ref": "B8 204" - } -}, -{ - "type": "node", - "id": 6439048317, - "lat": 52.4931400, - "lon": -1.8572015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "B8 964", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6439048320, - "lat": 52.4881835, - "lon": -1.8450000, - "tags": { - "amenity": "post_box", - "ref": "B8 314" - } -}, -{ - "type": "node", - "id": 6439051002, - "lat": 52.4925882, - "lon": -1.8440109, - "tags": { - "amenity": "post_box", - "ref": "B8 816" - } -}, -{ - "type": "node", - "id": 6439630004, - "lat": 53.4119788, - "lon": -2.8399149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L36 930" - } -}, -{ - "type": "node", - "id": 6439650994, - "lat": 51.5893379, - "lon": -1.5291850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX12 1166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6439650995, - "lat": 51.5868065, - "lon": -1.5315065, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX12 1139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6439666368, - "lat": 51.6355247, - "lon": -1.5091597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6439666369, - "lat": 51.6316882, - "lon": -1.5053979, - "tags": { - "amenity": "post_box", - "historic": "milestone", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6439670502, - "lat": 51.7769094, - "lon": -1.5227129, - "tags": { - "amenity": "post_box", - "old_ref": "SN7 436D", - "post_box:type": "lamp", - "ref": "OX29 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6439681842, - "lat": 51.8717230, - "lon": -1.4809924, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX7 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6440281750, - "lat": 52.3767179, - "lon": -1.9443577, - "tags": { - "amenity": "post_box", - "fixme": "disused?", - "ref": "B48 6" - } -}, -{ - "type": "node", - "id": 6440286692, - "lat": 52.5326327, - "lon": -1.7813341, - "tags": { - "amenity": "post_box", - "ref": "B76 1209" - } -}, -{ - "type": "node", - "id": 6440305907, - "lat": 52.5877454, - "lon": -1.8255665, - "tags": { - "amenity": "post_box", - "ref": "B75 556" - } -}, -{ - "type": "node", - "id": 6440305908, - "lat": 52.5869383, - "lon": -1.8261962, - "tags": { - "amenity": "post_box", - "ref": "B75 8012" - } -}, -{ - "type": "node", - "id": 6440305909, - "lat": 52.5964767, - "lon": -1.8294524, - "tags": { - "amenity": "post_box", - "ref": "B75 794" - } -}, -{ - "type": "node", - "id": 6440311060, - "lat": 52.5664830, - "lon": -1.7869998, - "tags": { - "amenity": "post_box", - "ref": "B75 953" - } -}, -{ - "type": "node", - "id": 6440405631, - "lat": 51.2835471, - "lon": -2.4927270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6440738910, - "lat": 50.7699001, - "lon": 0.1104585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN25 1066D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6440751449, - "lat": 50.7696974, - "lon": 0.1061370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN25 1079D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6441395081, - "lat": 52.5811104, - "lon": 0.9919289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR9 933D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6441739834, - "lat": 51.2357883, - "lon": -2.5041481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6442142323, - "lat": 54.6813751, - "lon": -5.8840431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 145" - } -}, -{ - "type": "node", - "id": 6442444917, - "lat": 52.9430005, - "lon": 0.4912506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE36 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-05-01" - } -}, -{ - "type": "node", - "id": 6442444918, - "lat": 52.7257975, - "lon": 0.6738903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE32 354", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2019-04-30" - } -}, -{ - "type": "node", - "id": 6442464220, - "lat": 52.3957612, - "lon": -1.9983205, - "tags": { - "amenity": "post_box", - "ref": "B45 190" - } -}, -{ - "type": "node", - "id": 6442464222, - "lat": 52.3965535, - "lon": -2.0058138, - "tags": { - "amenity": "post_box", - "ref": "B45 1197" - } -}, -{ - "type": "node", - "id": 6442487774, - "lat": 53.2333091, - "lon": -4.5159077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL64 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6442487778, - "lat": 53.2236246, - "lon": -4.5067497, - "tags": { - "amenity": "post_box", - "ref": "LL64 104" - } -}, -{ - "type": "node", - "id": 6442487780, - "lat": 53.2357547, - "lon": -4.5129342, - "tags": { - "amenity": "post_box", - "ref": "LL64 161" - } -}, -{ - "type": "node", - "id": 6442492726, - "lat": 53.3001814, - "lon": -4.2367734, - "tags": { - "amenity": "post_box", - "ref": "LL76 191" - } -}, -{ - "type": "node", - "id": 6442507107, - "lat": 53.3622053, - "lon": -4.2997577, - "tags": { - "amenity": "post_box", - "ref": "LL70 261" - } -}, -{ - "type": "node", - "id": 6442547980, - "lat": 52.4274266, - "lon": -1.9015818, - "tags": { - "amenity": "post_box", - "ref": "B14 1089" - } -}, -{ - "type": "node", - "id": 6442547981, - "lat": 52.4292979, - "lon": -1.8926882, - "tags": { - "amenity": "post_box", - "ref": "B14 919" - } -}, -{ - "type": "node", - "id": 6442547982, - "lat": 52.4322266, - "lon": -1.8931704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "B14 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6442547983, - "lat": 52.4357339, - "lon": -1.8954854, - "tags": { - "amenity": "post_box", - "ref": "B14 170" - } -}, -{ - "type": "node", - "id": 6442547984, - "lat": 52.4286354, - "lon": -1.8981812, - "tags": { - "amenity": "post_box", - "ref": "B14 619" - } -}, -{ - "type": "node", - "id": 6442554974, - "lat": 52.4128938, - "lon": -1.9748139, - "tags": { - "amenity": "post_box", - "ref": "B31 546" - } -}, -{ - "type": "node", - "id": 6442566506, - "lat": 52.3916173, - "lon": -1.9601909, - "tags": { - "amenity": "post_box", - "ref": "B31 854" - } -}, -{ - "type": "node", - "id": 6442566509, - "lat": 52.3936568, - "lon": -1.9571117, - "tags": { - "amenity": "post_box", - "ref": "B31 692" - } -}, -{ - "type": "node", - "id": 6442566510, - "lat": 52.3954848, - "lon": -1.9791405, - "tags": { - "amenity": "post_box", - "ref": "B31 360" - } -}, -{ - "type": "node", - "id": 6442568228, - "lat": 51.8891322, - "lon": 0.9003887, - "tags": { - "amenity": "post_box", - "post_box:apertures": "3" - } -}, -{ - "type": "node", - "id": 6442583256, - "lat": 52.4130933, - "lon": -1.9521532, - "tags": { - "amenity": "post_box", - "ref": "B31 998" - } -}, -{ - "type": "node", - "id": 6442583260, - "lat": 52.4027675, - "lon": -1.9673013, - "tags": { - "amenity": "post_box", - "ref": "B31 536" - } -}, -{ - "type": "node", - "id": 6442583261, - "lat": 52.4065540, - "lon": -1.9600700, - "tags": { - "amenity": "post_box", - "ref": "B31 1418" - } -}, -{ - "type": "node", - "id": 6442583262, - "lat": 52.4202163, - "lon": -1.9560656, - "tags": { - "amenity": "post_box", - "ref": "B31 459" - } -}, -{ - "type": "node", - "id": 6442975329, - "lat": 52.4775878, - "lon": -1.9754019, - "tags": { - "amenity": "post_box", - "ref": "B67 348" - } -}, -{ - "type": "node", - "id": 6442975369, - "lat": 52.4771070, - "lon": -1.9705172, - "tags": { - "amenity": "post_box", - "ref": "B67 820" - } -}, -{ - "type": "node", - "id": 6442981179, - "lat": 52.6239898, - "lon": 1.0814477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 924", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6443002997, - "lat": 52.4751780, - "lon": -1.9730674, - "tags": { - "amenity": "post_box", - "ref": "B67 1288" - } -}, -{ - "type": "node", - "id": 6443002998, - "lat": 52.4710329, - "lon": -1.9762749, - "tags": { - "amenity": "post_box", - "ref": "B67 230" - } -}, -{ - "type": "node", - "id": 6443007068, - "lat": 52.5945044, - "lon": 1.0163240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 918", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6443013684, - "lat": 52.5893375, - "lon": 1.0278735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6443032393, - "lat": 52.4728359, - "lon": -2.0815129, - "tags": { - "amenity": "post_box", - "ref": "B64 341" - } -}, -{ - "type": "node", - "id": 6443032399, - "lat": 52.4751578, - "lon": -2.0675730, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B64 193", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6443032401, - "lat": 52.4667642, - "lon": -2.0709581, - "tags": { - "amenity": "post_box", - "ref": "B64 407" - } -}, -{ - "type": "node", - "id": 6443032402, - "lat": 52.4703835, - "lon": -2.0850133, - "tags": { - "amenity": "post_box", - "ref": "B64 136" - } -}, -{ - "type": "node", - "id": 6443038395, - "lat": 52.5804280, - "lon": 1.0241373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR18 1836", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6443161783, - "lat": 52.0605033, - "lon": -0.7474682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "MK14 520;MK14 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-05-02" - } -}, -{ - "type": "node", - "id": 6443260863, - "lat": 52.4752982, - "lon": -1.9693798, - "tags": { - "amenity": "post_box", - "ref": "B66 2105" - } -}, -{ - "type": "node", - "id": 6443260871, - "lat": 52.4753114, - "lon": -1.9693852, - "tags": { - "amenity": "post_box", - "ref": "B66 105" - } -}, -{ - "type": "node", - "id": 6443322150, - "lat": 52.4921747, - "lon": -1.9588920, - "tags": { - "amenity": "post_box", - "ref": "B66 387" - } -}, -{ - "type": "node", - "id": 6443322525, - "lat": 52.4882841, - "lon": -1.9609828, - "tags": { - "amenity": "post_box", - "ref": "B66 497" - } -}, -{ - "type": "node", - "id": 6443322689, - "lat": 52.4876430, - "lon": -1.9520653, - "tags": { - "amenity": "post_box", - "ref": "B66 1160" - } -}, -{ - "type": "node", - "id": 6443371386, - "lat": 52.5256023, - "lon": -1.9966793, - "tags": { - "amenity": "post_box", - "ref": "B71 36" - } -}, -{ - "type": "node", - "id": 6443371389, - "lat": 52.5295643, - "lon": -1.9849907, - "tags": { - "amenity": "post_box", - "ref": "B71 62" - } -}, -{ - "type": "node", - "id": 6443371409, - "lat": 52.5300080, - "lon": -1.9893221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "244617437562670", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B71 21", - "survey:date": "2021-09-05" - } -}, -{ - "type": "node", - "id": 6443371420, - "lat": 52.5285590, - "lon": -1.9958639, - "tags": { - "amenity": "post_box", - "ref": "B71 40" - } -}, -{ - "type": "node", - "id": 6443390710, - "lat": 52.5455538, - "lon": -1.9752319, - "tags": { - "amenity": "post_box", - "ref": "B71 80" - } -}, -{ - "type": "node", - "id": 6443390713, - "lat": 52.5504110, - "lon": -1.9736122, - "tags": { - "amenity": "post_box", - "ref": "B71 85" - } -}, -{ - "type": "node", - "id": 6443421599, - "lat": 52.5316819, - "lon": -1.9983632, - "tags": { - "amenity": "post_box", - "ref": "B71 60" - } -}, -{ - "type": "node", - "id": 6443421602, - "lat": 52.5349059, - "lon": -1.9890029, - "tags": { - "amenity": "post_box", - "ref": "B71 50" - } -}, -{ - "type": "node", - "id": 6443421607, - "lat": 52.5401657, - "lon": -1.9819403, - "tags": { - "amenity": "post_box", - "ref": "B71 45" - } -}, -{ - "type": "node", - "id": 6443421608, - "lat": 52.5368802, - "lon": -1.9831712, - "tags": { - "amenity": "post_box", - "ref": "B71 29" - } -}, -{ - "type": "node", - "id": 6443421610, - "lat": 52.5357282, - "lon": -1.9971723, - "tags": { - "amenity": "post_box", - "ref": "B71 66" - } -}, -{ - "type": "node", - "id": 6443433699, - "lat": 52.5405996, - "lon": -2.0030037, - "tags": { - "amenity": "post_box", - "ref": "B71 76" - } -}, -{ - "type": "node", - "id": 6443433701, - "lat": 52.5432033, - "lon": -2.0073274, - "tags": { - "amenity": "post_box", - "ref": "B71 77" - } -}, -{ - "type": "node", - "id": 6443433702, - "lat": 52.5360415, - "lon": -2.0066515, - "tags": { - "amenity": "post_box", - "ref": "B71 79" - } -}, -{ - "type": "node", - "id": 6443433703, - "lat": 52.5454509, - "lon": -1.9967485, - "tags": { - "amenity": "post_box", - "ref": "B71 53" - } -}, -{ - "type": "node", - "id": 6443433704, - "lat": 52.5451590, - "lon": -2.0018504, - "tags": { - "amenity": "post_box", - "ref": "B71 14" - } -}, -{ - "type": "node", - "id": 6443936859, - "lat": 50.3287967, - "lon": -4.6362519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL23 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6444134720, - "lat": 55.8401254, - "lon": -4.2772999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "OS_Town_Plans Glasgow 1894" - } -}, -{ - "type": "node", - "id": 6444760988, - "lat": 52.4078352, - "lon": -1.4957419, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "ref": "CV1 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6445836085, - "lat": 50.3755814, - "lon": -4.5415404, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6446506604, - "lat": 53.2424027, - "lon": -2.1902666, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-03", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "post_box:type": "wall", - "ref": "SK11 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6446681994, - "lat": 52.4962371, - "lon": -0.6955773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 110" - } -}, -{ - "type": "node", - "id": 6446684564, - "lat": 52.4741313, - "lon": -2.0397956, - "tags": { - "amenity": "post_box", - "ref": "B65 9021" - } -}, -{ - "type": "node", - "id": 6446684573, - "lat": 52.4930089, - "lon": -2.0585305, - "tags": { - "amenity": "post_box", - "ref": "B65 1233" - } -}, -{ - "type": "node", - "id": 6446684574, - "lat": 52.4756359, - "lon": -2.0425851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "ref": "B65 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6446684576, - "lat": 52.4816053, - "lon": -2.0575863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B65 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6446703757, - "lat": 52.4906170, - "lon": -2.0190445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ref": "B69 977", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6446703758, - "lat": 52.5038092, - "lon": -2.0173117, - "tags": { - "amenity": "post_box", - "ref": "B69 1444" - } -}, -{ - "type": "node", - "id": 6446714356, - "lat": 52.5086988, - "lon": -2.0259554, - "tags": { - "amenity": "post_box", - "ref": "B69 171" - } -}, -{ - "type": "node", - "id": 6448644643, - "lat": 52.8210560, - "lon": -2.1095802, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6449764215, - "lat": 50.7510596, - "lon": -1.8424449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "description": "BH8 279 for stamped mail; BH8 5279 for franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH8 279;BH8 5279", - "ref:GB:uprn": "10015409894", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6450383987, - "lat": 52.6922173, - "lon": -1.1575981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE7 567D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6450394131, - "lat": 52.7136179, - "lon": -1.1384958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "LE7 263D", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 6450407363, - "lat": 55.9835850, - "lon": -3.3920462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH30 191", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6450417639, - "lat": 55.9884434, - "lon": -3.4135334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EH30 235", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6450443511, - "lat": 56.0808365, - "lon": -3.4034657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY11 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6450447571, - "lat": 56.0770960, - "lon": -3.4194987, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 59D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6450509133, - "lat": 56.2299890, - "lon": -3.3413941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 422", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6451523806, - "lat": 52.7801693, - "lon": -2.1970933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6451529910, - "lat": 52.7820928, - "lon": -2.2028067, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6451950746, - "lat": 53.4671055, - "lon": -1.1424051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN11 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6452002949, - "lat": 51.9193009, - "lon": -2.6122503, - "tags": { - "amenity": "post_box", - "ref": "HR9 562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6452223252, - "lat": 52.4845737, - "lon": -0.7049462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 147" - } -}, -{ - "type": "node", - "id": 6452223253, - "lat": 52.4819047, - "lon": -0.7076418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 176" - } -}, -{ - "type": "node", - "id": 6452223254, - "lat": 52.4802401, - "lon": -0.7064241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 799" - } -}, -{ - "type": "node", - "id": 6452223255, - "lat": 52.4842356, - "lon": -0.7164717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 159" - } -}, -{ - "type": "node", - "id": 6452223256, - "lat": 52.4887256, - "lon": -0.7246122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 165" - } -}, -{ - "type": "node", - "id": 6452223257, - "lat": 52.4823817, - "lon": -0.7229599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 162" - } -}, -{ - "type": "node", - "id": 6452223258, - "lat": 52.4845852, - "lon": -0.7274660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 163" - } -}, -{ - "type": "node", - "id": 6452223259, - "lat": 52.4820533, - "lon": -0.7316959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 40" - } -}, -{ - "type": "node", - "id": 6452223260, - "lat": 52.4800294, - "lon": -0.7285738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 173" - } -}, -{ - "type": "node", - "id": 6452223261, - "lat": 52.4800376, - "lon": -0.7174695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 177" - } -}, -{ - "type": "node", - "id": 6452223264, - "lat": 52.4761152, - "lon": -0.7187516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 164" - } -}, -{ - "type": "node", - "id": 6452223265, - "lat": 52.4746661, - "lon": -0.7391471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 62" - } -}, -{ - "type": "node", - "id": 6452223266, - "lat": 52.4711893, - "lon": -0.7255214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 182" - } -}, -{ - "type": "node", - "id": 6452223267, - "lat": 52.4643362, - "lon": -0.7341313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 739" - } -}, -{ - "type": "node", - "id": 6452223268, - "lat": 52.4643117, - "lon": -0.7340723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN18 804" - } -}, -{ - "type": "node", - "id": 6452223269, - "lat": 52.4615401, - "lon": -0.7187676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN18 136" - } -}, -{ - "type": "node", - "id": 6452223270, - "lat": 52.4637266, - "lon": -0.7228982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 14" - } -}, -{ - "type": "node", - "id": 6452223271, - "lat": 52.4646908, - "lon": -0.7271013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 793" - } -}, -{ - "type": "node", - "id": 6452223272, - "lat": 52.4679638, - "lon": -0.7229278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 792" - } -}, -{ - "type": "node", - "id": 6452223273, - "lat": 52.4701632, - "lon": -0.7013467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 103" - } -}, -{ - "type": "node", - "id": 6452223274, - "lat": 52.4739063, - "lon": -0.7068694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 102" - } -}, -{ - "type": "node", - "id": 6452223275, - "lat": 52.4823514, - "lon": -0.7013319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 153" - } -}, -{ - "type": "node", - "id": 6452223276, - "lat": 52.4816237, - "lon": -0.6951857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 151" - } -}, -{ - "type": "node", - "id": 6452223277, - "lat": 52.4775087, - "lon": -0.6727624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN18 138" - } -}, -{ - "type": "node", - "id": 6452223279, - "lat": 52.4626693, - "lon": -0.6858999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN18 15" - } -}, -{ - "type": "node", - "id": 6452379185, - "lat": 52.4932054, - "lon": -0.6295332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 148" - } -}, -{ - "type": "node", - "id": 6452379186, - "lat": 52.4953839, - "lon": -0.6369495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6452379187, - "lat": 52.4974291, - "lon": -0.6389532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN17 29" - } -}, -{ - "type": "node", - "id": 6452379188, - "lat": 52.4955112, - "lon": -0.6445000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 96" - } -}, -{ - "type": "node", - "id": 6452379189, - "lat": 52.5085414, - "lon": -0.7049355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN17 803" - } -}, -{ - "type": "node", - "id": 6452379190, - "lat": 52.5085104, - "lon": -0.7048684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 183" - } -}, -{ - "type": "node", - "id": 6452379191, - "lat": 52.5092997, - "lon": -0.6938446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 184" - } -}, -{ - "type": "node", - "id": 6452379192, - "lat": 52.4943526, - "lon": -0.6781000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 790" - } -}, -{ - "type": "node", - "id": 6452379193, - "lat": 52.4890098, - "lon": -0.6777030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 119" - } -}, -{ - "type": "node", - "id": 6452379194, - "lat": 52.4909582, - "lon": -0.6820375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN17 99" - } -}, -{ - "type": "node", - "id": 6452379195, - "lat": 52.4892140, - "lon": -0.6864631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 83" - } -}, -{ - "type": "node", - "id": 6452379196, - "lat": 52.4849233, - "lon": -0.6951830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 155" - } -}, -{ - "type": "node", - "id": 6452379197, - "lat": 52.4890572, - "lon": -0.7024035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 821" - } -}, -{ - "type": "node", - "id": 6452379198, - "lat": 52.4906985, - "lon": -0.6960815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 127" - } -}, -{ - "type": "node", - "id": 6452379199, - "lat": 52.5000720, - "lon": -0.6899875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 108" - } -}, -{ - "type": "node", - "id": 6452379200, - "lat": 52.4984750, - "lon": -0.6991580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 126" - } -}, -{ - "type": "node", - "id": 6452379201, - "lat": 52.4962992, - "lon": -0.7061411, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 738" - } -}, -{ - "type": "node", - "id": 6452379202, - "lat": 52.5021831, - "lon": -0.7090178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 141" - } -}, -{ - "type": "node", - "id": 6452379203, - "lat": 52.5003757, - "lon": -0.7226944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 189" - } -}, -{ - "type": "node", - "id": 6452379204, - "lat": 52.4997160, - "lon": -0.7154176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 142" - } -}, -{ - "type": "node", - "id": 6452379205, - "lat": 52.4947013, - "lon": -0.7194489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 145" - } -}, -{ - "type": "node", - "id": 6452379206, - "lat": 52.4962738, - "lon": -0.7234266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 150" - } -}, -{ - "type": "node", - "id": 6452445675, - "lat": 51.5141090, - "lon": -0.2049442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6452445676, - "lat": 51.5173563, - "lon": -0.1910616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "The original collection times, which are still partially visible, have been updated via an official sticker. The ref has not been updated to include the D suffix.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 67;W2 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6452445677, - "lat": 51.5170390, - "lon": -0.1881564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "The original collection times, which are still partially visible, have been updated via an official sticker. The ref has not been updated to include the D suffix.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 46;W2 246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6452453031, - "lat": 52.5045995, - "lon": -0.6545931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NN17 805" - } -}, -{ - "type": "node", - "id": 6452453032, - "lat": 52.5045669, - "lon": -0.6545663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 791" - } -}, -{ - "type": "node", - "id": 6452498792, - "lat": 52.5662143, - "lon": -0.6416126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 91" - } -}, -{ - "type": "node", - "id": 6452498793, - "lat": 52.5548060, - "lon": -0.6019306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 133" - } -}, -{ - "type": "node", - "id": 6452498794, - "lat": 52.5370961, - "lon": -0.5817577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6452498795, - "lat": 52.5235245, - "lon": -0.6053343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 132" - } -}, -{ - "type": "node", - "id": 6452498796, - "lat": 52.5166526, - "lon": -0.5908638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 130" - } -}, -{ - "type": "node", - "id": 6452558023, - "lat": 52.5365814, - "lon": -0.6740257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN17 92" - } -}, -{ - "type": "node", - "id": 6452558024, - "lat": 52.5389421, - "lon": -0.6756941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN17 117" - } -}, -{ - "type": "node", - "id": 6452558025, - "lat": 52.5659991, - "lon": -0.6491576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NN17 36" - } -}, -{ - "type": "node", - "id": 6452674137, - "lat": 52.5512211, - "lon": -1.8736521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "ref": "B44 646", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6452674140, - "lat": 52.5433626, - "lon": -1.9026889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "ref": "B44 341", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6452785998, - "lat": 52.5491822, - "lon": -1.8585498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "ref": "B73 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6452786000, - "lat": 52.5639537, - "lon": -1.8799277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "B73 345", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6452786004, - "lat": 52.5483967, - "lon": -1.8598945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "post_box:type": "pillar", - "ref": "B73 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6452786009, - "lat": 52.5467443, - "lon": -1.8563191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B73 582", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6452789097, - "lat": 52.5657930, - "lon": -1.8243802, - "tags": { - "amenity": "post_box", - "ref": "B73 4632" - } -}, -{ - "type": "node", - "id": 6452789098, - "lat": 52.5658059, - "lon": -1.8243960, - "tags": { - "amenity": "post_box", - "ref": "B73 632" - } -}, -{ - "type": "node", - "id": 6454218537, - "lat": 51.5584558, - "lon": 0.2091458, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6455154552, - "lat": 50.7760847, - "lon": 0.0930984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1048", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6455337930, - "lat": 50.7777871, - "lon": 0.0982894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN25 1050D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6455337932, - "lat": 50.7754478, - "lon": 0.0985881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1082", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6455337934, - "lat": 50.7812707, - "lon": 0.0967009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1049D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6455397806, - "lat": 50.7716022, - "lon": 0.1009706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN25 1085", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6455454167, - "lat": 50.7701968, - "lon": 0.1013084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1080D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6456188359, - "lat": 52.1361896, - "lon": -1.6037731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV37 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6456433253, - "lat": 52.3989495, - "lon": -0.5335665, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 84" - } -}, -{ - "type": "node", - "id": 6456433254, - "lat": 52.4403060, - "lon": -0.8138815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 167", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6456433255, - "lat": 52.4255342, - "lon": -0.8059877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN14 116" - } -}, -{ - "type": "node", - "id": 6456433256, - "lat": 52.1262943, - "lon": -1.0034734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN12 561" - } -}, -{ - "type": "node", - "id": 6456433257, - "lat": 52.2159475, - "lon": -0.9514332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 6456433258, - "lat": 52.2159606, - "lon": -0.9514090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6456433259, - "lat": 52.2159787, - "lon": -0.9513876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 6456433260, - "lat": 52.2280943, - "lon": -0.8975530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN4 74" - } -}, -{ - "type": "node", - "id": 6456433261, - "lat": 52.2520324, - "lon": -0.8103195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN3 191" - } -}, -{ - "type": "node", - "id": 6456488924, - "lat": 52.4042713, - "lon": -0.7266319, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 8", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6456488925, - "lat": 52.4769337, - "lon": -0.7105467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN17 807", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6456488926, - "lat": 52.2642736, - "lon": -1.1705375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN11 300" - } -}, -{ - "type": "node", - "id": 6456488927, - "lat": 52.2519437, - "lon": -1.1696443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 246" - } -}, -{ - "type": "node", - "id": 6456488928, - "lat": 52.2573013, - "lon": -1.1466068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN11 326" - } -}, -{ - "type": "node", - "id": 6456587258, - "lat": 51.5152284, - "lon": -3.5053473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 144D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6457648382, - "lat": 51.6681158, - "lon": -3.2974286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3768146800109919", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-07-27" - } -}, -{ - "type": "node", - "id": 6457649487, - "lat": 51.6604042, - "lon": -3.2898206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "477737958343349", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-07-27" - } -}, -{ - "type": "node", - "id": 6461104386, - "lat": 52.6070103, - "lon": 1.0870360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR9 921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6461462704, - "lat": 52.5709991, - "lon": 0.8275885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP25 3318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6461752519, - "lat": 51.7645308, - "lon": -2.8538208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6462959155, - "lat": 53.5298819, - "lon": -2.2023135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6462959156, - "lat": 53.5262160, - "lon": -2.1953713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6463169764, - "lat": 51.5536110, - "lon": 0.2067789, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6463753545, - "lat": 53.1953722, - "lon": -2.5068931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW7 171" - } -}, -{ - "type": "node", - "id": 6464734065, - "lat": 53.6002242, - "lon": -2.3865088, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6464913658, - "lat": 54.5442694, - "lon": -6.0115625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT17 751" - } -}, -{ - "type": "node", - "id": 6465103838, - "lat": 54.7142026, - "lon": -6.2182441, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 19" - } -}, -{ - "type": "node", - "id": 6465391724, - "lat": 54.7078420, - "lon": -6.2102259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 40" - } -}, -{ - "type": "node", - "id": 6465730596, - "lat": 54.7052267, - "lon": -5.8701807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT38 308" - } -}, -{ - "type": "node", - "id": 6465764438, - "lat": 54.6975423, - "lon": -5.8533566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT38 521" - } -}, -{ - "type": "node", - "id": 6465769722, - "lat": 54.7106070, - "lon": -5.8515310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT38 494" - } -}, -{ - "type": "node", - "id": 6465787843, - "lat": 54.6468401, - "lon": -6.7468813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT80 4" - } -}, -{ - "type": "node", - "id": 6466791281, - "lat": 52.2806639, - "lon": -1.9516024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B97 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6466805047, - "lat": 52.2826557, - "lon": -1.9682800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B97 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6466839988, - "lat": 52.2692998, - "lon": -1.9394432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B96 47D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6466839989, - "lat": 52.2649254, - "lon": -1.9368296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B96 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6466839991, - "lat": 52.2605907, - "lon": -1.9397972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B96 65", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6466840002, - "lat": 52.2580169, - "lon": -1.9373324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B96 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6466890438, - "lat": 52.2386509, - "lon": -1.9266680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B96 28", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6467702370, - "lat": 53.8209634, - "lon": -1.7753976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 135", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6468523842, - "lat": 51.5958161, - "lon": 0.6169095, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6468730712, - "lat": 51.2802278, - "lon": -1.7120191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6468730721, - "lat": 51.2816749, - "lon": -1.7061183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6468765672, - "lat": 51.2739422, - "lon": -1.8001698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6469671360, - "lat": 51.4472331, - "lon": -0.9915895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Ashley Road near junction with Berkeley Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 541D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6469723363, - "lat": 51.4500709, - "lon": -0.9447461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside 47 Hamilton Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6469769509, - "lat": 53.6596070, - "lon": -1.7997952, - "tags": { - "amenity": "post_box", - "description": "2 Oakfield Road", - "operator": "Royal Mail", - "ref": "HD2 150" - } -}, -{ - "type": "node", - "id": 6470152766, - "lat": 50.8136063, - "lon": -0.1043153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "description": "This postbox is in Asda inside the outside entrance doors and is on the right hand side immediately before the second set of doors.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "BN2 372", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6470614151, - "lat": 51.4104030, - "lon": -0.0257085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 197D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6470614152, - "lat": 51.4095407, - "lon": -0.0252733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BR3 194;BR3 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6470614159, - "lat": 51.4081028, - "lon": -0.0253547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 189", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6470624369, - "lat": 51.4043210, - "lon": -0.0251016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 240D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6470911324, - "lat": 51.3249417, - "lon": -1.8980786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN10 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6470936836, - "lat": 51.3559303, - "lon": -1.8987424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6470978294, - "lat": 51.3703414, - "lon": -1.7926715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6471073484, - "lat": 50.8328206, - "lon": -0.1519773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 146D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6471077234, - "lat": 50.8332087, - "lon": -0.1565482, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 147D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6471079471, - "lat": 50.8345550, - "lon": -0.1599077, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 148", - "ref:signed": "no", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6471089895, - "lat": 51.3551354, - "lon": -1.7373325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6471089896, - "lat": 51.3533934, - "lon": -1.7487594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6471089897, - "lat": 51.3667912, - "lon": -1.7741244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6471282888, - "lat": 53.7129315, - "lon": -1.7460400, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2018-09-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD6 284D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6471894591, - "lat": 50.8351423, - "lon": -0.1667953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 325D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6471906318, - "lat": 50.8361210, - "lon": -0.1705031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Royal Mail has put a sticker on this postbox saying that from 31.12.2018 the last collection is Mon-Fri 9am and Sat 7am. But the postbox notice has not been updated. The ref should now be BN3 327D and the collection plate should be CP1D.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 327", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6472366785, - "lat": 51.4477321, - "lon": -0.9576562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "Inside Royal Berkshire Hospital South Block, near Jamaica Blue coffee shop", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "RG1 543" - } -}, -{ - "type": "node", - "id": 6472481095, - "lat": 51.6787477, - "lon": -2.3221683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL11 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6472481103, - "lat": 51.6842834, - "lon": -2.3054796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL11 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6472481111, - "lat": 51.6865619, - "lon": -2.3018173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL11 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6472788207, - "lat": 51.4422108, - "lon": -0.9315263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "BP Petrol Station, opp Three Tuns, Wokingham Road", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "RG6 503D" - } -}, -{ - "type": "node", - "id": 6473321166, - "lat": 52.3376222, - "lon": -2.0720569, - "tags": { - "amenity": "post_box", - "ref": "B61 873" - } -}, -{ - "type": "node", - "id": 6473321168, - "lat": 52.3406933, - "lon": -2.0716760, - "tags": { - "amenity": "post_box", - "ref": "B61 4020" - } -}, -{ - "type": "node", - "id": 6473321169, - "lat": 52.3254046, - "lon": -2.0724108, - "tags": { - "amenity": "post_box", - "ref": "B61 1155" - } -}, -{ - "type": "node", - "id": 6473321171, - "lat": 52.3298994, - "lon": -2.0673142, - "tags": { - "amenity": "post_box", - "ref": "B61 563" - } -}, -{ - "type": "node", - "id": 6473321172, - "lat": 52.3292468, - "lon": -2.0726953, - "tags": { - "amenity": "post_box", - "ref": "B61 773" - } -}, -{ - "type": "node", - "id": 6473321174, - "lat": 52.3251652, - "lon": -2.0763699, - "tags": { - "amenity": "post_box", - "ref": "B61 1095" - } -}, -{ - "type": "node", - "id": 6473321175, - "lat": 52.3341950, - "lon": -2.0661220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "B61 282D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6473765798, - "lat": 53.8409936, - "lon": -1.7670589, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6743519", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD17 951", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6473782302, - "lat": 51.4283255, - "lon": -2.5856525, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS4 1136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6473973705, - "lat": 54.7106457, - "lon": -6.1777052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 56" - } -}, -{ - "type": "node", - "id": 6474142241, - "lat": 54.7298697, - "lon": -6.2323800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 14" - } -}, -{ - "type": "node", - "id": 6474882004, - "lat": 52.3530947, - "lon": -2.0805845, - "tags": { - "amenity": "post_box", - "ref": "B61 13" - } -}, -{ - "type": "node", - "id": 6474882011, - "lat": 52.3554564, - "lon": -2.0981782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B61 206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6474882013, - "lat": 52.3476490, - "lon": -2.0998835, - "tags": { - "amenity": "post_box", - "ref": "B61 290" - } -}, -{ - "type": "node", - "id": 6474882015, - "lat": 52.3232635, - "lon": -2.1211016, - "tags": { - "amenity": "post_box", - "ref": "B61 295" - } -}, -{ - "type": "node", - "id": 6475794686, - "lat": 53.6081703, - "lon": -2.3905252, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6477915362, - "lat": 51.5568730, - "lon": 0.4821108, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6478077143, - "lat": 51.0858081, - "lon": -0.7395641, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-20", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU27 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_27D,_Liphook_Road,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 6478079072, - "lat": 52.3083345, - "lon": -1.9680604, - "tags": { - "amenity": "post_box", - "ref": "B97 193" - } -}, -{ - "type": "node", - "id": 6478079073, - "lat": 52.3139221, - "lon": -1.9609543, - "tags": { - "amenity": "post_box", - "ref": "B97 206" - } -}, -{ - "type": "node", - "id": 6478079074, - "lat": 52.3127694, - "lon": -1.9670242, - "tags": { - "amenity": "post_box", - "ref": "B97 205" - } -}, -{ - "type": "node", - "id": 6478079075, - "lat": 52.3125839, - "lon": -1.9608607, - "tags": { - "amenity": "post_box", - "ref": "B97 207" - } -}, -{ - "type": "node", - "id": 6478090875, - "lat": 52.3028237, - "lon": -1.9422040, - "tags": { - "amenity": "post_box", - "ref": "B97 68" - } -}, -{ - "type": "node", - "id": 6478090876, - "lat": 52.2991399, - "lon": -1.9442676, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B97 67" - } -}, -{ - "type": "node", - "id": 6478097755, - "lat": 52.3133503, - "lon": -1.9386543, - "tags": { - "amenity": "post_box", - "ref": "B97 8010" - } -}, -{ - "type": "node", - "id": 6478116405, - "lat": 51.0898668, - "lon": -0.7436192, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_67D,_Woolmer_Hill_Road,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 6478116406, - "lat": 51.0880925, - "lon": -0.7385806, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-20", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 57D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post_Box_GU27_57D,_Hindhead_Road,_Haslemere.jpg" - } -}, -{ - "type": "node", - "id": 6478436649, - "lat": 53.6089199, - "lon": -2.3944824, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6479004056, - "lat": 51.7482761, - "lon": 0.7523080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM9 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6479731669, - "lat": 52.3476187, - "lon": -2.2742654, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6480603059, - "lat": 52.6676399, - "lon": -0.7251573, - "tags": { - "amenity": "post_box", - "check_date": "2021-09-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 3457 740740", - "post_box:type": "wall", - "ref": "LE15 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102324", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 6480721790, - "lat": 51.3999319, - "lon": -0.2394012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6480791737, - "lat": 51.0909181, - "lon": -0.7490543, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "last_checked": "2020-09-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post_Box_GU27_102,_Woolmer_Hill_Road,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 6482058063, - "lat": 53.6075049, - "lon": -2.4008999, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6482205981, - "lat": 51.4432703, - "lon": -2.8057998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6482379097, - "lat": 54.7199304, - "lon": -6.2216931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 20" - } -}, -{ - "type": "node", - "id": 6482535536, - "lat": 50.9845066, - "lon": -3.0892566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6482558420, - "lat": 50.4766002, - "lon": -3.5286009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6482558422, - "lat": 50.4779107, - "lon": -3.5263413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45, Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 6482579145, - "lat": 50.4836869, - "lon": -3.5246711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 6482610342, - "lat": 50.4860579, - "lon": -3.5275086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TQ1 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6482615702, - "lat": 50.4851884, - "lon": -3.5244156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 26D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 6482635466, - "lat": 50.4780861, - "lon": -3.5155913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 6482638569, - "lat": 50.4779826, - "lon": -3.5138132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 6482681006, - "lat": 50.9818639, - "lon": -3.1082284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6482764088, - "lat": 55.1256427, - "lon": -6.0427512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT44 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6482909490, - "lat": 50.4794680, - "lon": -3.5255159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6483487547, - "lat": 52.0145276, - "lon": -4.8536878, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6483535488, - "lat": 56.3638447, - "lon": -3.0850272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 291", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6483541419, - "lat": 56.3761489, - "lon": -3.0291125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY15 300", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6483619272, - "lat": 56.4039734, - "lon": -3.0059519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 181D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6483619275, - "lat": 56.4021106, - "lon": -3.0136999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DD6 242", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6483673009, - "lat": 56.4108358, - "lon": -3.0424672, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-30", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DD6 67D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6483733438, - "lat": 51.0883788, - "lon": -0.7351881, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-20", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6483733439, - "lat": 51.0856985, - "lon": -0.7305022, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "last_checked": "2020-08-20", - "note": "This postbox is for Parcels & Franked Mail and is a Parcel Postbox.", - "old_ref": "GU27 6", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "GU27 6P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6485455352, - "lat": 51.4832978, - "lon": -0.9950277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Outside 1 Silverthorne Drive", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG4 386D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6486059338, - "lat": 51.3693338, - "lon": -0.1950051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6486080302, - "lat": 52.3221278, - "lon": -2.0730653, - "tags": { - "amenity": "post_box", - "ref": "B60 1298" - } -}, -{ - "type": "node", - "id": 6486080309, - "lat": 52.3231868, - "lon": -2.0557306, - "tags": { - "amenity": "post_box", - "ref": "B60 547" - } -}, -{ - "type": "node", - "id": 6486080312, - "lat": 52.3172520, - "lon": -2.0648555, - "tags": { - "amenity": "post_box", - "ref": "B60 1210" - } -}, -{ - "type": "node", - "id": 6486080313, - "lat": 52.3194228, - "lon": -2.0571522, - "tags": { - "amenity": "post_box", - "ref": "B60 1381" - } -}, -{ - "type": "node", - "id": 6486080314, - "lat": 52.3229737, - "lon": -2.0629028, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B60 959", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6486080315, - "lat": 52.3192129, - "lon": -2.0572541, - "tags": { - "amenity": "post_box", - "ref": "B60 9005" - } -}, -{ - "type": "node", - "id": 6486080316, - "lat": 52.3159169, - "lon": -2.0635954, - "tags": { - "amenity": "post_box", - "ref": "B60 1407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6486080317, - "lat": 52.3282652, - "lon": -2.0563260, - "tags": { - "amenity": "post_box", - "ref": "B60 183" - } -}, -{ - "type": "node", - "id": 6486128018, - "lat": 51.3692060, - "lon": -0.1914514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SM1 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6486128020, - "lat": 51.3695994, - "lon": -0.1808141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 147", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6486281096, - "lat": 54.1930300, - "lon": -2.9105021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "image": "https://www.geograph.org.uk/photo/2331803", - "post_box:type": "pillar", - "ref": "LA11 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6486281097, - "lat": 54.1930198, - "lon": -2.9105021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "image": "https://www.geograph.org.uk/photo/2331803", - "post_box:type": "pillar", - "ref": "LA11 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6486642861, - "lat": 54.1466456, - "lon": -0.8209525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO17 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6486699415, - "lat": 54.1388225, - "lon": -0.8089146, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6487447647, - "lat": 53.6300188, - "lon": -2.3837991, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6487690337, - "lat": 54.1816221, - "lon": -2.9409163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "lamp", - "ref": "LA11 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6487690352, - "lat": 54.1833435, - "lon": -2.9461926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA11 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6488100605, - "lat": 52.3352081, - "lon": -2.0504580, - "tags": { - "amenity": "post_box", - "ref": "B60 184" - } -}, -{ - "type": "node", - "id": 6488100618, - "lat": 52.3339462, - "lon": -2.0463327, - "tags": { - "amenity": "post_box", - "ref": "B60 197" - } -}, -{ - "type": "node", - "id": 6488100619, - "lat": 52.3310728, - "lon": -2.0106056, - "tags": { - "amenity": "post_box", - "ref": "B60 201" - } -}, -{ - "type": "node", - "id": 6488100626, - "lat": 52.3360874, - "lon": -2.0618266, - "tags": { - "amenity": "post_box", - "ref": "B60 1137" - } -}, -{ - "type": "node", - "id": 6488100628, - "lat": 52.3287970, - "lon": -2.0167762, - "tags": { - "amenity": "post_box", - "ref": "B60 250" - } -}, -{ - "type": "node", - "id": 6488100641, - "lat": 52.3292589, - "lon": -2.0024706, - "tags": { - "amenity": "post_box", - "ref": "B60 5000" - } -}, -{ - "type": "node", - "id": 6488100643, - "lat": 52.3279742, - "lon": -2.0362441, - "tags": { - "amenity": "post_box", - "ref": "B60 46" - } -}, -{ - "type": "node", - "id": 6488190313, - "lat": 57.4268384, - "lon": -1.9120275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6488318823, - "lat": 52.2793571, - "lon": -1.9043498, - "tags": { - "amenity": "post_box", - "ref": "B80 32" - } -}, -{ - "type": "node", - "id": 6488318827, - "lat": 52.2917236, - "lon": -1.8838767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "B80 18" - } -}, -{ - "type": "node", - "id": 6488318828, - "lat": 52.2822666, - "lon": -1.8916336, - "tags": { - "amenity": "post_box", - "ref": "B80 86" - } -}, -{ - "type": "node", - "id": 6489193114, - "lat": 54.2741224, - "lon": -2.5805084, - "tags": { - "amenity": "post_box", - "ref": "LA6 86" - } -}, -{ - "type": "node", - "id": 6490365098, - "lat": 54.1751646, - "lon": -2.9622993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA11 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6490365106, - "lat": 54.1744986, - "lon": -2.9692769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "LA11 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6490365138, - "lat": 54.1746274, - "lon": -2.9741433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "LA11 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6490448870, - "lat": 52.8220075, - "lon": -2.1370185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ST16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6490450751, - "lat": 52.8066145, - "lon": -2.1910060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "ST18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6490451647, - "lat": 51.5356253, - "lon": -0.1052001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa off", - "operator": "private", - "post_box:type": "pillar", - "ref": "none", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6490451648, - "lat": 51.5355502, - "lon": -0.1052162, - "tags": { - "amenity": "post_box", - "note": "not in use;aperture blocked", - "post_box:type": "pillar", - "ref": "none", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6490451649, - "lat": 51.5334350, - "lon": -0.1033448, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-01", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "N1 40P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6490458882, - "lat": 52.8294546, - "lon": -2.1330549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ST16", - "ref": "ST161RR" - } -}, -{ - "type": "node", - "id": 6490458883, - "lat": 52.8276294, - "lon": -2.1335947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "ST16" - } -}, -{ - "type": "node", - "id": 6490458884, - "lat": 52.8255242, - "lon": -2.1402720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "ST16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6490874586, - "lat": 51.0867645, - "lon": -0.7323302, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2020-08-20", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post_Box_GU27_24D,_The_Meads,_Haslemere,_Surrey.jpg" - } -}, -{ - "type": "node", - "id": 6491285371, - "lat": 54.1776048, - "lon": -2.9743181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LA11 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6491285373, - "lat": 54.1794723, - "lon": -2.9761471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "LA11 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6492368898, - "lat": 55.5363682, - "lon": -3.6756679, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6494466668, - "lat": 52.7248748, - "lon": 1.3760897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "06/04/2023", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR12 1226D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6495301481, - "lat": 52.5994029, - "lon": -1.8404318, - "tags": { - "amenity": "post_box", - "ref": "B74 1201", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6495333979, - "lat": 52.5859529, - "lon": -1.8403335, - "tags": { - "amenity": "post_box", - "ref": "B74 842" - } -}, -{ - "type": "node", - "id": 6495346834, - "lat": 52.5745571, - "lon": -1.8776210, - "tags": { - "amenity": "post_box", - "ref": "B74 1086" - } -}, -{ - "type": "node", - "id": 6495346835, - "lat": 52.5894787, - "lon": -1.8718456, - "tags": { - "amenity": "post_box", - "ref": "B74 405" - } -}, -{ - "type": "node", - "id": 6495346836, - "lat": 52.6027333, - "lon": -1.8662679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "ref": "B74 1069", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6495360240, - "lat": 52.2817620, - "lon": -1.9319044, - "tags": { - "amenity": "post_box", - "ref": "B98 182" - } -}, -{ - "type": "node", - "id": 6495360243, - "lat": 52.2831733, - "lon": -1.9384013, - "tags": { - "amenity": "post_box", - "ref": "B98 181" - } -}, -{ - "type": "node", - "id": 6495519098, - "lat": 52.2851909, - "lon": -1.9290073, - "tags": { - "amenity": "post_box", - "ref": "B98 162" - } -}, -{ - "type": "node", - "id": 6495519099, - "lat": 52.2944079, - "lon": -1.9251825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6495519100, - "lat": 52.2781115, - "lon": -1.9157384, - "tags": { - "amenity": "post_box", - "ref": "B98 189" - } -}, -{ - "type": "node", - "id": 6495519106, - "lat": 52.2920194, - "lon": -1.9233049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Survey" - } -}, -{ - "type": "node", - "id": 6495519107, - "lat": 52.2844198, - "lon": -1.9149316, - "tags": { - "amenity": "post_box", - "ref": "B98 156" - } -}, -{ - "type": "node", - "id": 6495519124, - "lat": 52.2890082, - "lon": -1.9236692, - "tags": { - "amenity": "post_box", - "ref": "B98 152" - } -}, -{ - "type": "node", - "id": 6495519125, - "lat": 52.2940538, - "lon": -1.9331218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B98 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6495519141, - "lat": 52.2839177, - "lon": -1.9246353, - "tags": { - "amenity": "post_box", - "ref": "B98 161" - } -}, -{ - "type": "node", - "id": 6496075706, - "lat": 54.1794119, - "lon": -0.8556327, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6496421452, - "lat": 51.3952161, - "lon": -0.2402113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6497581789, - "lat": 51.3866902, - "lon": 1.3754770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT9 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6497581790, - "lat": 51.3817173, - "lon": 1.3612914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CT9 59D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6497581791, - "lat": 51.3592956, - "lon": 1.3993567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CT10 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6497944303, - "lat": 52.3145463, - "lon": -1.8932645, - "tags": { - "amenity": "post_box", - "ref": "B98 176" - } -}, -{ - "type": "node", - "id": 6497944304, - "lat": 52.3120065, - "lon": -1.9045475, - "tags": { - "amenity": "post_box", - "ref": "B98 169" - } -}, -{ - "type": "node", - "id": 6497944305, - "lat": 52.3128692, - "lon": -1.9111887, - "tags": { - "amenity": "post_box", - "ref": "B98 170" - } -}, -{ - "type": "node", - "id": 6497944306, - "lat": 52.3145659, - "lon": -1.8932914, - "tags": { - "amenity": "post_box", - "ref": "B98 9029" - } -}, -{ - "type": "node", - "id": 6497944307, - "lat": 52.3188385, - "lon": -1.8977063, - "tags": { - "amenity": "post_box", - "ref": "B98 183" - } -}, -{ - "type": "node", - "id": 6497969956, - "lat": 52.3224815, - "lon": -1.8666732, - "tags": { - "amenity": "post_box", - "ref": "B98 97" - } -}, -{ - "type": "node", - "id": 6497969958, - "lat": 52.3142729, - "lon": -1.8674317, - "tags": { - "amenity": "post_box", - "ref": "B98 13" - } -}, -{ - "type": "node", - "id": 6498044625, - "lat": 52.3035948, - "lon": -1.9393238, - "tags": { - "amenity": "post_box", - "ref": "B98 42" - } -}, -{ - "type": "node", - "id": 6498064592, - "lat": 52.3064446, - "lon": -1.9257396, - "tags": { - "amenity": "post_box", - "ref": "B98 103" - } -}, -{ - "type": "node", - "id": 6498064596, - "lat": 52.3110707, - "lon": -1.9265656, - "tags": { - "amenity": "post_box", - "ref": "B98 124" - } -}, -{ - "type": "node", - "id": 6498064599, - "lat": 52.3017216, - "lon": -1.9257246, - "tags": { - "amenity": "post_box", - "ref": "B98 111" - } -}, -{ - "type": "node", - "id": 6498139906, - "lat": 52.2957639, - "lon": -1.8963321, - "tags": { - "amenity": "post_box", - "ref": "B98 159" - } -}, -{ - "type": "node", - "id": 6498139908, - "lat": 52.2972369, - "lon": -1.9019862, - "tags": { - "amenity": "post_box", - "ref": "B98 158" - } -}, -{ - "type": "node", - "id": 6498139909, - "lat": 52.2902350, - "lon": -1.8901564, - "tags": { - "amenity": "post_box", - "ref": "B98 9031" - } -}, -{ - "type": "node", - "id": 6498139911, - "lat": 52.3010161, - "lon": -1.8889353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B98 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6498139915, - "lat": 52.3059858, - "lon": -1.8926682, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B98 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6498139916, - "lat": 52.2902612, - "lon": -1.8901430, - "tags": { - "amenity": "post_box", - "ref": "B98 201" - } -}, -{ - "type": "node", - "id": 6498139917, - "lat": 52.3034372, - "lon": -1.8947013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B98 165" - } -}, -{ - "type": "node", - "id": 6498139918, - "lat": 52.2924191, - "lon": -1.8997441, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B98 160" - } -}, -{ - "type": "node", - "id": 6498206037, - "lat": 52.5091691, - "lon": -1.8480581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "616169399559333", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B24 521", - "survey:date": "2021-07-17" - } -}, -{ - "type": "node", - "id": 6498206040, - "lat": 52.5114350, - "lon": -1.8345073, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B24 376", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6498206041, - "lat": 52.5196529, - "lon": -1.8342367, - "tags": { - "amenity": "post_box", - "ref": "B24 311" - } -}, -{ - "type": "node", - "id": 6498206043, - "lat": 52.5091217, - "lon": -1.8539935, - "tags": { - "amenity": "post_box", - "ref": "B24 268" - } -}, -{ - "type": "node", - "id": 6498206044, - "lat": 52.5095055, - "lon": -1.8380935, - "tags": { - "amenity": "post_box", - "ref": "B24 228" - } -}, -{ - "type": "node", - "id": 6498206045, - "lat": 52.5154017, - "lon": -1.8367496, - "tags": { - "amenity": "post_box", - "ref": "B24 280" - } -}, -{ - "type": "node", - "id": 6498206047, - "lat": 52.5104523, - "lon": -1.8427768, - "tags": { - "amenity": "post_box", - "ref": "B24 344" - } -}, -{ - "type": "node", - "id": 6498570164, - "lat": 51.9691863, - "lon": -2.8075767, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR2 366", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6498571792, - "lat": 51.9670874, - "lon": -2.6763162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "HR2 487", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6500015451, - "lat": 51.7963009, - "lon": -2.4238486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL2 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6502218065, - "lat": 50.8411525, - "lon": -0.0906610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 191", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6502220127, - "lat": 50.8424104, - "lon": -0.0965738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 192", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6502228158, - "lat": 50.8379143, - "lon": -0.1147663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 195D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6502355637, - "lat": 50.9805256, - "lon": -2.7802261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6502501409, - "lat": 52.3541592, - "lon": 0.0357891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE28 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6502716684, - "lat": 50.8684313, - "lon": -0.0886715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 349D", - "ref:GB:uprn": "10015320677", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6502726668, - "lat": 50.8641383, - "lon": -0.0871409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Collection times correct as of 18th June 2021", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 348D", - "ref:GB:uprn": "10015479128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6504273876, - "lat": 51.4376850, - "lon": -0.2206203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6504482476, - "lat": 52.0561032, - "lon": 1.2339964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP5 1369" - } -}, -{ - "type": "node", - "id": 6504482480, - "lat": 52.0606933, - "lon": 1.2332846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP5 1343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6504482482, - "lat": 52.0641960, - "lon": 1.2508907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP5 1256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6504482483, - "lat": 52.0404315, - "lon": 1.2421362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1264" - } -}, -{ - "type": "node", - "id": 6504493311, - "lat": 54.9569823, - "lon": -1.6667203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE11 50D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6504512810, - "lat": 52.0644605, - "lon": 1.2209395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP5 1057", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6504532448, - "lat": 52.0614639, - "lon": 1.1989112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP4 1296", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6504533948, - "lat": 51.2340823, - "lon": -1.3421054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG28 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6506254503, - "lat": 51.5090683, - "lon": -0.0024006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6506996663, - "lat": 52.0005026, - "lon": -2.1772872, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL20 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6507033685, - "lat": 51.9285872, - "lon": -2.3819505, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL18 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6507051640, - "lat": 51.8926453, - "lon": -2.5192039, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "HR9 537", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6507187293, - "lat": 52.0204287, - "lon": -3.9208813, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA19 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6507838989, - "lat": 53.5837615, - "lon": -2.5213072, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6508698259, - "lat": 51.5088711, - "lon": -0.0159731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6508850218, - "lat": 55.8707238, - "lon": -4.3162479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30" - } -}, -{ - "type": "node", - "id": 6509144734, - "lat": 55.8741051, - "lon": -4.3178102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "G11 858D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6509996306, - "lat": 52.3559357, - "lon": -3.8471299, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6509996307, - "lat": 52.3387766, - "lon": -3.8479856, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY25 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6510007100, - "lat": 52.3872456, - "lon": -3.9787178, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6510018585, - "lat": 52.4222424, - "lon": -3.2223080, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD7 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6510646609, - "lat": 53.1928281, - "lon": -2.5040875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CW7 174" - } -}, -{ - "type": "node", - "id": 6510823915, - "lat": 52.4994553, - "lon": -1.7993302, - "tags": { - "amenity": "post_box", - "ref": "B34 544" - } -}, -{ - "type": "node", - "id": 6510846387, - "lat": 52.4998515, - "lon": -1.7728329, - "tags": { - "amenity": "post_box", - "ref": "B34 929" - } -}, -{ - "type": "node", - "id": 6510936085, - "lat": 52.4946150, - "lon": -1.7778964, - "tags": { - "amenity": "post_box", - "ref": "B34 115" - } -}, -{ - "type": "node", - "id": 6510936086, - "lat": 52.4933314, - "lon": -1.7690298, - "tags": { - "amenity": "post_box", - "ref": "B34 963" - } -}, -{ - "type": "node", - "id": 6510936088, - "lat": 52.4956991, - "lon": -1.7587462, - "tags": { - "amenity": "post_box", - "ref": "B34 945" - } -}, -{ - "type": "node", - "id": 6510936092, - "lat": 52.4910985, - "lon": -1.7634506, - "tags": { - "amenity": "post_box", - "ref": "B34 1305" - } -}, -{ - "type": "node", - "id": 6510936094, - "lat": 52.4962513, - "lon": -1.7653927, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B34 928" - } -}, -{ - "type": "node", - "id": 6510936099, - "lat": 52.4984033, - "lon": -1.7592237, - "tags": { - "amenity": "post_box", - "ref": "B34 1019" - } -}, -{ - "type": "node", - "id": 6510936102, - "lat": 52.4924638, - "lon": -1.7745281, - "tags": { - "amenity": "post_box", - "ref": "B34 911" - } -}, -{ - "type": "node", - "id": 6510936103, - "lat": 52.4999396, - "lon": -1.7633325, - "tags": { - "amenity": "post_box", - "ref": "B34 1242" - } -}, -{ - "type": "node", - "id": 6512048805, - "lat": 51.4555244, - "lon": -0.2967618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6512224335, - "lat": 51.3979920, - "lon": -0.2445135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6512735947, - "lat": 52.2682181, - "lon": -2.8441105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR6 958D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6512744620, - "lat": 52.2366625, - "lon": -2.8218609, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "post_box:type": "lamp", - "ref": "HR6 968", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6512744621, - "lat": 52.2470552, - "lon": -2.8213634, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HR6 985", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6512956342, - "lat": 52.0721642, - "lon": 0.6431332, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6513496998, - "lat": 51.4542418, - "lon": -0.2993606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6513496999, - "lat": 51.4593399, - "lon": -0.2932919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "pillar", - "ref": "TW10 4", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6513497000, - "lat": 51.4517958, - "lon": -0.2979124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6513497001, - "lat": 51.4585191, - "lon": -0.2913385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6513497002, - "lat": 51.4633251, - "lon": -0.2826242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW10 135D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6514063196, - "lat": 54.7112565, - "lon": -6.2175140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT41 24" - } -}, -{ - "type": "node", - "id": 6515159563, - "lat": 52.9288222, - "lon": 1.1368597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "post_box:type": "pillar", - "ref": "NR25 2532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6515166339, - "lat": 51.4546567, - "lon": -0.3117336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6515296157, - "lat": 53.0208110, - "lon": -1.4796949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE56 1383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6515361396, - "lat": 53.4351947, - "lon": -2.2137817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "M14 631", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 6516422146, - "lat": 53.1063850, - "lon": -1.3424117, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DE55 398" - } -}, -{ - "type": "node", - "id": 6517924092, - "lat": 53.1968770, - "lon": -2.5145334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "ref": "CW7 888" - } -}, -{ - "type": "node", - "id": 6518472404, - "lat": 54.6436437, - "lon": -5.9224719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT37 591" - } -}, -{ - "type": "node", - "id": 6518507311, - "lat": 55.2007675, - "lon": -6.2604265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT54 121" - } -}, -{ - "type": "node", - "id": 6518538416, - "lat": 55.1995287, - "lon": -6.1842414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT54 68" - } -}, -{ - "type": "node", - "id": 6518540486, - "lat": 55.1998790, - "lon": -6.1944113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT54 122" - } -}, -{ - "type": "node", - "id": 6518540774, - "lat": 51.5004052, - "lon": 0.0063372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Romec", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE10 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6518541848, - "lat": 55.2003929, - "lon": -6.2340258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT54 94" - } -}, -{ - "type": "node", - "id": 6518542183, - "lat": 55.2027630, - "lon": -6.2525505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT54 147" - } -}, -{ - "type": "node", - "id": 6518550086, - "lat": 55.1994944, - "lon": -6.2591466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT54 85" - } -}, -{ - "type": "node", - "id": 6518558272, - "lat": 55.2003170, - "lon": -6.2521125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT54 84" - } -}, -{ - "type": "node", - "id": 6519024174, - "lat": 52.1221272, - "lon": -3.0004263, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR3 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6519036526, - "lat": 55.7051037, - "lon": -4.7057088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6519043270, - "lat": 50.8325726, - "lon": -0.2783241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6519054138, - "lat": 50.8324900, - "lon": -0.2697135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa off", - "opening_hours": "Mo-Fr 13:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6519054489, - "lat": 51.9981932, - "lon": -2.7832780, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6519061390, - "lat": 50.8318062, - "lon": -0.2757311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "note": "There is a postbox sticker stating that from 28.01.2019 the last collection will be 09:00 Mon-Fri and 07:00 Sat. But the postbox notice has not been updated. The ref should be BN43 1539D and the CP should be CP1D.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6519067407, - "lat": 50.8328175, - "lon": -0.2690432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6519076162, - "lat": 51.9741308, - "lon": -2.7516326, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 728" - } -}, -{ - "type": "node", - "id": 6520019563, - "lat": 55.2057918, - "lon": -6.2406490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT54 83" - } -}, -{ - "type": "node", - "id": 6520090234, - "lat": 54.7424754, - "lon": -5.7947823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT38 4" - } -}, -{ - "type": "node", - "id": 6520586162, - "lat": 52.8017723, - "lon": -2.1614635, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6521200233, - "lat": 50.8148990, - "lon": 0.0484793, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BN9 617", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6521696877, - "lat": 54.6959618, - "lon": -5.9092764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 146" - } -}, -{ - "type": "node", - "id": 6521767745, - "lat": 55.7018049, - "lon": -4.7257863, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6521808924, - "lat": 51.9667346, - "lon": -2.7397639, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 655", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6521824559, - "lat": 51.9265515, - "lon": -2.7346576, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6521833031, - "lat": 51.9451759, - "lon": -2.7339864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6521833056, - "lat": 51.9566652, - "lon": -2.7361804, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6522019276, - "lat": 50.8379836, - "lon": -0.2548030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6522028187, - "lat": 50.8407444, - "lon": -0.2433754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 683D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6522039316, - "lat": 51.8709453, - "lon": 0.6857536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "postal_code": "CO6 1TR", - "ref": "CO6 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6524900143, - "lat": 52.8712951, - "lon": -1.6352476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DE65 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6524900145, - "lat": 52.8750510, - "lon": -1.6845790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DE65 59D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6524900146, - "lat": 52.8636091, - "lon": -1.6826767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DE65 565D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6525323396, - "lat": 55.6007027, - "lon": -4.5207850, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6525415167, - "lat": 55.4031895, - "lon": -4.1824024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6528084038, - "lat": 51.4861093, - "lon": -0.2377993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6528410979, - "lat": 52.4954722, - "lon": -1.7428352, - "tags": { - "amenity": "post_box", - "ref": "B36 1189" - } -}, -{ - "type": "node", - "id": 6528441694, - "lat": 52.5114484, - "lon": -1.7544948, - "tags": { - "amenity": "post_box", - "ref": "B36 1228" - } -}, -{ - "type": "node", - "id": 6528441698, - "lat": 52.5021671, - "lon": -1.7540098, - "tags": { - "amenity": "post_box", - "ref": "B36 1240" - } -}, -{ - "type": "node", - "id": 6528441704, - "lat": 52.5071805, - "lon": -1.7703273, - "tags": { - "amenity": "post_box", - "ref": "B36 906" - } -}, -{ - "type": "node", - "id": 6528441708, - "lat": 52.5094169, - "lon": -1.7675003, - "tags": { - "amenity": "post_box", - "ref": "B36 970" - } -}, -{ - "type": "node", - "id": 6528444156, - "lat": 52.5042206, - "lon": -1.7706852, - "tags": { - "amenity": "post_box", - "ref": "B36 696" - } -}, -{ - "type": "node", - "id": 6528444159, - "lat": 52.5050890, - "lon": -1.7643665, - "tags": { - "amenity": "post_box", - "ref": "B36 1092" - } -}, -{ - "type": "node", - "id": 6528831383, - "lat": 53.8361041, - "lon": -1.7217401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 17:00", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6529180845, - "lat": 51.8668693, - "lon": -2.7323905, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6530534903, - "lat": 53.4277505, - "lon": -2.2688631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6532069918, - "lat": 52.5025408, - "lon": -1.7728142, - "tags": { - "amenity": "post_box", - "ref": "B36 340" - } -}, -{ - "type": "node", - "id": 6532104078, - "lat": 52.4986124, - "lon": -1.8164775, - "tags": { - "amenity": "post_box", - "ref": "B36 735" - } -}, -{ - "type": "node", - "id": 6532104079, - "lat": 52.4969958, - "lon": -1.8088973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B36 657", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6532104082, - "lat": 52.5008949, - "lon": -1.8105174, - "tags": { - "amenity": "post_box", - "ref": "B36 902" - } -}, -{ - "type": "node", - "id": 6532104083, - "lat": 52.5013867, - "lon": -1.8029149, - "tags": { - "amenity": "post_box", - "ref": "B36 368" - } -}, -{ - "type": "node", - "id": 6532104084, - "lat": 52.5031969, - "lon": -1.7842698, - "tags": { - "amenity": "post_box", - "ref": "B36 1091" - } -}, -{ - "type": "node", - "id": 6532120386, - "lat": 52.5014209, - "lon": -1.8232045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "B36 852", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6532180189, - "lat": 52.7978879, - "lon": -1.6047069, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1021" - } -}, -{ - "type": "node", - "id": 6532180190, - "lat": 52.8036348, - "lon": -1.6163113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DE15 1091" - } -}, -{ - "type": "node", - "id": 6532180191, - "lat": 52.8033072, - "lon": -1.6018789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "602878767372962", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DE15 1043", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 6532304399, - "lat": 52.2538943, - "lon": -1.9833485, - "tags": { - "amenity": "post_box", - "ref": "B96 130" - } -}, -{ - "type": "node", - "id": 6532304408, - "lat": 52.2613252, - "lon": -1.9540693, - "tags": { - "amenity": "post_box", - "ref": "B96 6" - } -}, -{ - "type": "node", - "id": 6532304409, - "lat": 52.2472080, - "lon": -1.9325051, - "tags": { - "amenity": "post_box", - "ref": "B96 63" - } -}, -{ - "type": "node", - "id": 6532709086, - "lat": 54.7197376, - "lon": -6.2081522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 6" - } -}, -{ - "type": "node", - "id": 6532715696, - "lat": 54.7066630, - "lon": -6.2241006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 16" - } -}, -{ - "type": "node", - "id": 6532990966, - "lat": 53.8826525, - "lon": -0.9478039, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6533635935, - "lat": 52.3815809, - "lon": -2.4768003, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6533691681, - "lat": 53.3952147, - "lon": -1.3616949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "S60 426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6533801536, - "lat": 53.0465683, - "lon": -2.2962713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6533851443, - "lat": 53.4712792, - "lon": -1.4716722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "S35 1217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6533891057, - "lat": 51.0652158, - "lon": -1.6868708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6534000899, - "lat": 51.9603408, - "lon": -1.9641864, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6534050828, - "lat": 52.7840176, - "lon": -1.1218701, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6534317876, - "lat": 55.8165061, - "lon": -4.3617712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G53 1036D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6534409725, - "lat": 53.0421105, - "lon": -2.9947310, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6535011984, - "lat": 53.6292248, - "lon": -2.7097580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "mapillary": "309626864109518", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR7 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6535074485, - "lat": 53.6488384, - "lon": -2.7298987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1415603418776490", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR7 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6535250387, - "lat": 55.6319041, - "lon": -2.0847614, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-11", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD15 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6535482668, - "lat": 53.6160349, - "lon": -2.7041575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "mapillary": "304892601218534", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WN6 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6535491427, - "lat": 53.6235882, - "lon": -2.7283819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "mapillary": "1245218442563864", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6535832049, - "lat": 55.8152507, - "lon": -4.3522684, - "tags": { - "amenity": "post_box", - "note": "plate missing 09/06/2019", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6535832050, - "lat": 55.8181298, - "lon": -4.3528760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G53 1102", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6535857593, - "lat": 53.0753818, - "lon": -2.3403004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW2 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6535857594, - "lat": 53.0680483, - "lon": -2.3529280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW2 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6536551090, - "lat": 51.7004464, - "lon": -2.2062137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6538391205, - "lat": 51.5464051, - "lon": -0.8248477, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SL6 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6539104400, - "lat": 55.7226113, - "lon": -1.9837960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:priority": "yes", - "post_box:type": "lamp", - "ref": "TD15 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6539120757, - "lat": 55.6515041, - "lon": -1.9735185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6539464368, - "lat": 51.5021063, - "lon": -0.3161677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "196098042415401", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-05-05" - } -}, -{ - "type": "node", - "id": 6539828958, - "lat": 53.6165320, - "lon": -2.1588336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "fixme": "may have gone when post office closed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "OL16 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6539828964, - "lat": 53.6163649, - "lon": -2.1579770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OL16 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6540428301, - "lat": 51.6380143, - "lon": -1.2405438, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX14 1052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540428302, - "lat": 51.6240115, - "lon": -1.1994249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX11 1186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540679931, - "lat": 51.8291906, - "lon": -1.4237568, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "OX29 293", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540843922, - "lat": 51.9606602, - "lon": -1.7495808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL56 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540863890, - "lat": 50.7794360, - "lon": -0.7206736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2021-05-04", - "old_ref": "PO21 113", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6540865224, - "lat": 52.0163789, - "lon": -1.7622462, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL56 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540866343, - "lat": 51.9000464, - "lon": -1.5276629, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX7 363D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540866344, - "lat": 51.8967006, - "lon": -1.5144175, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX7 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540892492, - "lat": 50.7773357, - "lon": -0.7107295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "last_checked": "2021-05-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PO21 75D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6540960626, - "lat": 52.2586919, - "lon": -2.0318176, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "B96 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6540986817, - "lat": 52.3276616, - "lon": -2.2319064, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DY11 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6542041491, - "lat": 51.5193402, - "lon": -2.2017958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6544280634, - "lat": 53.1904625, - "lon": -2.5071473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW7 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6544491979, - "lat": 51.5258647, - "lon": -2.0782359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "346292920251992", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-31" - } -}, -{ - "type": "node", - "id": 6546007677, - "lat": 52.5445275, - "lon": -2.2772062, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WV5 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6546013934, - "lat": 52.6956052, - "lon": -2.3581311, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF11 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6547829146, - "lat": 50.9642250, - "lon": 0.1342524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN22 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6548561263, - "lat": 52.4194934, - "lon": -2.1398923, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6549078662, - "lat": 51.5581873, - "lon": -2.0477942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "mapillary": "191563236772177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN15 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 6550123416, - "lat": 51.4567430, - "lon": -0.3011872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 39D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6550123417, - "lat": 51.4584168, - "lon": -0.2896455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW10 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6551045711, - "lat": 51.3891816, - "lon": -0.3260794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 143D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6551063713, - "lat": 51.3930668, - "lon": -0.3325726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 108D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6551379521, - "lat": 56.1618607, - "lon": -3.3258721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 175D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6551379524, - "lat": 56.1648865, - "lon": -3.3258789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY5 174", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6551379525, - "lat": 56.1636432, - "lon": -3.3310689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY5 173D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6551379526, - "lat": 56.1620967, - "lon": -3.3345176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 182D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6551379532, - "lat": 56.1573846, - "lon": -3.3217918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY5 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6551379544, - "lat": 56.1557582, - "lon": -3.3247444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY5 198D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6551379551, - "lat": 56.1500262, - "lon": -3.3243190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY5 68D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6551379560, - "lat": 56.1473270, - "lon": -3.3254661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "note": "royal_cypher looks like it should be EIIR, but the II is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY5 145", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 6553168107, - "lat": 52.3440501, - "lon": -2.4207927, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6553287254, - "lat": 53.5078423, - "lon": -1.3905366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S73 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6553840512, - "lat": 52.7346424, - "lon": -2.4055190, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF10 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6553845945, - "lat": 52.7537985, - "lon": -2.3901808, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "TF10 283", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6553929246, - "lat": 51.3952813, - "lon": -0.3369132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 47", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6554087570, - "lat": 52.8514248, - "lon": -2.4368002, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TF9 444", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6554719712, - "lat": 52.5757307, - "lon": 1.2834745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR14 1463", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6554769499, - "lat": 52.5869313, - "lon": 1.2997572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR14 1467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6554769504, - "lat": 52.5686516, - "lon": 1.2961684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR14 1460", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6554890179, - "lat": 52.5024769, - "lon": -1.8630572, - "tags": { - "amenity": "post_box", - "ref": "B7 64" - } -}, -{ - "type": "node", - "id": 6554909197, - "lat": 52.5046692, - "lon": -1.8568061, - "tags": { - "amenity": "post_box", - "ref": "B7 843" - } -}, -{ - "type": "node", - "id": 6555149728, - "lat": 52.3972080, - "lon": 1.1859410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6555837377, - "lat": 52.0297390, - "lon": -4.2085463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA39 243" - } -}, -{ - "type": "node", - "id": 6555949528, - "lat": 52.8728405, - "lon": -2.4644324, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TF9 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6555957011, - "lat": 52.8825855, - "lon": -2.4719936, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6555965371, - "lat": 52.9052213, - "lon": -2.4848725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "TF9 440", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6555965372, - "lat": 52.9040320, - "lon": -2.4839160, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TF9 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6555973444, - "lat": 52.9829424, - "lon": -2.5627944, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY13 724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6555974756, - "lat": 53.1192173, - "lon": -2.7725405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 71D" - } -}, -{ - "type": "node", - "id": 6555985419, - "lat": 53.1804333, - "lon": -2.8181380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6555985421, - "lat": 53.1654433, - "lon": -2.8069384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6556206308, - "lat": 51.7606485, - "lon": -2.1500015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6556218244, - "lat": 51.7523505, - "lon": -2.1738572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "drive_through": "no", - "ele": "297", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL6 76D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery", - "wikimedia_commons": "File:Royal Mail post box - GL6 76D.jpg" - } -}, -{ - "type": "node", - "id": 6556299344, - "lat": 52.5391765, - "lon": 1.2576339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6556299346, - "lat": 52.5372025, - "lon": 1.2604264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1518D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6557806325, - "lat": 52.4621102, - "lon": -1.7484034, - "tags": { - "amenity": "post_box", - "ref": "B37 44" - } -}, -{ - "type": "node", - "id": 6557855754, - "lat": 52.4804576, - "lon": -1.7214475, - "tags": { - "amenity": "post_box", - "ref": "B37 1174" - } -}, -{ - "type": "node", - "id": 6557856872, - "lat": 52.4799205, - "lon": -1.7326995, - "tags": { - "amenity": "post_box", - "ref": "B37 1205" - } -}, -{ - "type": "node", - "id": 6557958260, - "lat": 52.4826772, - "lon": -1.7509324, - "tags": { - "amenity": "post_box", - "ref": "B37 1152" - } -}, -{ - "type": "node", - "id": 6557958280, - "lat": 52.4833523, - "lon": -1.7414513, - "tags": { - "amenity": "post_box", - "ref": "B37 1123" - } -}, -{ - "type": "node", - "id": 6558013792, - "lat": 52.4922923, - "lon": -1.7556717, - "tags": { - "amenity": "post_box", - "ref": "B37 1063" - } -}, -{ - "type": "node", - "id": 6558013799, - "lat": 52.4845949, - "lon": -1.7549557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:14; Sa 10:45", - "ref": "B37 1009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6558013801, - "lat": 52.4887189, - "lon": -1.7534777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "B37 1085", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6560012378, - "lat": 52.5374246, - "lon": -2.0261391, - "tags": { - "amenity": "post_box", - "ref": "B70 54" - } -}, -{ - "type": "node", - "id": 6560013490, - "lat": 52.5375836, - "lon": -2.0183168, - "tags": { - "amenity": "post_box", - "ref": "B70 58" - } -}, -{ - "type": "node", - "id": 6560013757, - "lat": 52.5350194, - "lon": -2.0210165, - "tags": { - "amenity": "post_box", - "ref": "B70 65" - } -}, -{ - "type": "node", - "id": 6560570459, - "lat": 51.4836617, - "lon": -0.2863908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TW9 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6560570460, - "lat": 51.4674495, - "lon": -0.2799917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6560670019, - "lat": 52.1668235, - "lon": 0.1247993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CB2 198" - } -}, -{ - "type": "node", - "id": 6561100285, - "lat": 51.4600920, - "lon": -0.3049190, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-07", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "level": "1", - "ref": "TW9 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6561266265, - "lat": 52.5290092, - "lon": -2.0270265, - "tags": { - "amenity": "post_box", - "ref": "B70 15" - } -}, -{ - "type": "node", - "id": 6561293302, - "lat": 52.5250521, - "lon": -2.0238269, - "tags": { - "amenity": "post_box", - "ref": "B70 9017" - } -}, -{ - "type": "node", - "id": 6561293322, - "lat": 52.5220443, - "lon": -2.0268326, - "tags": { - "amenity": "post_box", - "ref": "B70 4" - } -}, -{ - "type": "node", - "id": 6561539697, - "lat": 52.3293033, - "lon": -2.2652234, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6561738323, - "lat": 50.8473655, - "lon": -2.7709338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "683704339765605", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT8 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-23" - } -}, -{ - "type": "node", - "id": 6561746980, - "lat": 50.8625551, - "lon": -3.1353454, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX14 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6561793312, - "lat": 50.7880887, - "lon": -3.3229663, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX5 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6561823618, - "lat": 50.8004021, - "lon": -3.6083288, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EX17 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6561914323, - "lat": 51.3923149, - "lon": -0.2230914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW20 22", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6562458634, - "lat": 53.1911234, - "lon": -2.4962971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CW7 176", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6562516748, - "lat": 51.5728700, - "lon": -1.8785830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 32D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6563224282, - "lat": 53.6902952, - "lon": -2.5610499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR6 52", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6563226808, - "lat": 53.6933509, - "lon": -2.5564603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "309898627251822", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR6 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6563819346, - "lat": 51.4657126, - "lon": -0.2866615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6564778408, - "lat": 50.5966839, - "lon": -3.4940658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX7 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6564780041, - "lat": 50.6602147, - "lon": -3.2980261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX9 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6565743792, - "lat": 50.8203396, - "lon": 0.2508452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN26 1037D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6565743793, - "lat": 50.8010905, - "lon": 0.2742894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 837D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6565743794, - "lat": 50.7837695, - "lon": 0.2675811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 819", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6565746782, - "lat": 50.7107524, - "lon": -2.7476549, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6565812342, - "lat": 50.7058954, - "lon": -2.3897181, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT2 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6566719508, - "lat": 57.4834421, - "lon": -4.1761847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 140", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6567320410, - "lat": 52.5263187, - "lon": -2.1947390, - "tags": { - "amenity": "post_box", - "source": "visual survey" - } -}, -{ - "type": "node", - "id": 6567320428, - "lat": 52.5281916, - "lon": -2.1945901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WV5 114D" - } -}, -{ - "type": "node", - "id": 6567337539, - "lat": 52.5285253, - "lon": -2.2129297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "ref": "WV5 466", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6567337917, - "lat": 52.5255925, - "lon": -2.2091813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 08:00", - "note": "franked mail only", - "ref": "WV5 611", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6567422278, - "lat": 51.2074204, - "lon": -3.4699612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6567523672, - "lat": 51.8233510, - "lon": -1.8185807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6567577682, - "lat": 51.2058975, - "lon": -3.4716044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 6567619785, - "lat": 51.2062511, - "lon": -3.4750089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6567619787, - "lat": 51.2089809, - "lon": -3.4745287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA24 5D" - } -}, -{ - "type": "node", - "id": 6567651670, - "lat": 56.2062881, - "lon": -2.7655294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY10 207D" - } -}, -{ - "type": "node", - "id": 6568646415, - "lat": 51.5171204, - "lon": 0.2930554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6568737064, - "lat": 51.5236372, - "lon": 0.2970733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6569467303, - "lat": 50.7768212, - "lon": 0.2980561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN22 751", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6569736386, - "lat": 52.5125540, - "lon": -2.0051296, - "tags": { - "amenity": "post_box", - "ref": "B70 35" - } -}, -{ - "type": "node", - "id": 6569736392, - "lat": 52.5087971, - "lon": -2.0039054, - "tags": { - "amenity": "post_box", - "ref": "B70 9016" - } -}, -{ - "type": "node", - "id": 6569736408, - "lat": 52.5070630, - "lon": -1.9855160, - "tags": { - "amenity": "post_box", - "ref": "B70 25" - } -}, -{ - "type": "node", - "id": 6569736421, - "lat": 52.5171806, - "lon": -2.0219593, - "tags": { - "amenity": "post_box", - "ref": "B70 24" - } -}, -{ - "type": "node", - "id": 6570106132, - "lat": 52.5214314, - "lon": -1.9864442, - "tags": { - "amenity": "post_box", - "ref": "B70 13" - } -}, -{ - "type": "node", - "id": 6570106133, - "lat": 52.5186781, - "lon": -1.9942929, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B70 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6570733785, - "lat": 52.7826300, - "lon": -2.1145356, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6570744660, - "lat": 54.3292969, - "lon": -1.7601842, - "tags": { - "amenity": "post_box", - "ref": "DL8 88" - } -}, -{ - "type": "node", - "id": 6570744661, - "lat": 54.2801112, - "lon": -1.6345973, - "tags": { - "amenity": "post_box", - "ref": "DL8 73" - } -}, -{ - "type": "node", - "id": 6570847528, - "lat": 54.3887880, - "lon": -1.6500794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6571124599, - "lat": 54.7101182, - "lon": -5.8271745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT38 268" - } -}, -{ - "type": "node", - "id": 6571200416, - "lat": 51.3662650, - "lon": -0.7951746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG45 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6571267463, - "lat": 52.3351604, - "lon": -3.8487929, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY25 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6571267480, - "lat": 52.3349716, - "lon": -3.8521034, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY25 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6571267481, - "lat": 52.3270393, - "lon": -3.8626676, - "tags": { - "amenity": "post_box", - "name": "Allt Goch", - "post_box:type": "wall", - "ref": "SY25 27" - } -}, -{ - "type": "node", - "id": 6571923878, - "lat": 53.5420440, - "lon": -2.5198702, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BL5 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6572205790, - "lat": 52.7242764, - "lon": -2.7497633, - "tags": { - "amenity": "post_box", - "postal_code": "SY1", - "ref": "SY1 554" - } -}, -{ - "type": "node", - "id": 6572625211, - "lat": 51.4346498, - "lon": -2.7534122, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "ref": "BS48 711" - } -}, -{ - "type": "node", - "id": 6573199100, - "lat": 51.8310650, - "lon": -3.6853807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA9 579D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6573235938, - "lat": 55.0593554, - "lon": -4.5834580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG8 67", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6573303095, - "lat": 55.7421187, - "lon": -2.5843975, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6573525265, - "lat": 54.6876243, - "lon": -5.8822738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 45" - } -}, -{ - "type": "node", - "id": 6573535771, - "lat": 52.4378321, - "lon": -3.5236703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY18 558D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6573535777, - "lat": 52.4492016, - "lon": -3.5425879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY18 549D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6573551084, - "lat": 52.3311235, - "lon": -3.3893546, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6574941991, - "lat": 50.4835758, - "lon": -3.5584990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6574949224, - "lat": 50.4855764, - "lon": -3.5593189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 229D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6575126647, - "lat": 50.4851101, - "lon": -3.5405482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 6575145305, - "lat": 52.3632054, - "lon": -1.8292856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "B94 237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6575145309, - "lat": 52.3602620, - "lon": -1.8412268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6575145312, - "lat": 52.3715876, - "lon": -1.8214725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "B94 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6575145316, - "lat": 52.3533902, - "lon": -1.8635022, - "tags": { - "amenity": "post_box", - "ref": "B94 1104" - } -}, -{ - "type": "node", - "id": 6575145333, - "lat": 52.3674967, - "lon": -1.8610936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "note": "I have upgraded the postbox tag.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B94 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6575360121, - "lat": 55.8078044, - "lon": -2.4921653, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TD11 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6575577997, - "lat": 54.7010951, - "lon": -5.8744063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT38 448" - } -}, -{ - "type": "node", - "id": 6576746954, - "lat": 53.0547393, - "lon": -2.1934292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST6 507D" - } -}, -{ - "type": "node", - "id": 6576798888, - "lat": 50.4773937, - "lon": -3.5603383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 216D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6576861173, - "lat": 51.7554827, - "lon": -2.0803684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6577137331, - "lat": 53.5429804, - "lon": -2.5554439, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6577822174, - "lat": 54.2005146, - "lon": -1.4586769, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6578296428, - "lat": 51.5712738, - "lon": -1.8635388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SN5 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6578525727, - "lat": 54.6849091, - "lon": -5.8911561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT37 748" - } -}, -{ - "type": "node", - "id": 6578976703, - "lat": 51.4398325, - "lon": -0.1327757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW2 42" - } -}, -{ - "type": "node", - "id": 6579578699, - "lat": 51.5266511, - "lon": -0.0633919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 3", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6579806203, - "lat": 55.0120287, - "lon": -4.0962589, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6579907951, - "lat": 50.9346406, - "lon": -1.4333528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6579932227, - "lat": 50.9338352, - "lon": -1.4338805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Reference not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6580153000, - "lat": 53.4031412, - "lon": -2.1872214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6580313237, - "lat": 51.8865745, - "lon": -2.0493139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 101" - } -}, -{ - "type": "node", - "id": 6580442156, - "lat": 52.3260556, - "lon": -3.3607771, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6580443409, - "lat": 51.4575809, - "lon": -0.3200924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 156D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6580586406, - "lat": 51.3311007, - "lon": -0.7787320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU17 57" - } -}, -{ - "type": "node", - "id": 6580597984, - "lat": 52.2918696, - "lon": -3.2468019, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6580599889, - "lat": 52.2946289, - "lon": -3.2595491, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6581829764, - "lat": 52.5141343, - "lon": -2.0593842, - "tags": { - "amenity": "post_box", - "ref": "B69 109" - } -}, -{ - "type": "node", - "id": 6581862762, - "lat": 51.5788719, - "lon": 0.0017983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E11 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6581886481, - "lat": 52.5140172, - "lon": -2.0468130, - "tags": { - "amenity": "post_box", - "ref": "B69 102" - } -}, -{ - "type": "node", - "id": 6581886484, - "lat": 52.5159645, - "lon": -2.0375702, - "tags": { - "amenity": "post_box", - "ref": "B69 1429" - } -}, -{ - "type": "node", - "id": 6582797742, - "lat": 52.1665997, - "lon": -3.6643535, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD5 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6584477722, - "lat": 52.5066713, - "lon": -2.0414725, - "tags": { - "amenity": "post_box", - "ref": "B69 1117" - } -}, -{ - "type": "node", - "id": 6584477723, - "lat": 52.5051580, - "lon": -2.0446883, - "tags": { - "amenity": "post_box", - "ref": "B69 32" - } -}, -{ - "type": "node", - "id": 6584477724, - "lat": 52.5092733, - "lon": -2.0470988, - "tags": { - "amenity": "post_box", - "ref": "B69 1118" - } -}, -{ - "type": "node", - "id": 6584703512, - "lat": 52.7458931, - "lon": -1.4950424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "LE65 609D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6585218451, - "lat": 52.3755042, - "lon": -3.8557667, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY23 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6585224581, - "lat": 52.5905074, - "lon": -3.8524179, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY20 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6585276435, - "lat": 52.5882668, - "lon": -3.6450389, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY19 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6585366049, - "lat": 52.2829408, - "lon": -3.3367136, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LD1 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6585366502, - "lat": 52.5880892, - "lon": -3.5790056, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY19 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6585413125, - "lat": 52.5025774, - "lon": -3.3392805, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SY16 594D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6586591702, - "lat": 53.2753528, - "lon": -2.7601671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA6 283", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6586591704, - "lat": 53.2656483, - "lon": -2.7538988, - "tags": { - "amenity": "post_box", - "ref": "WA6 230" - } -}, -{ - "type": "node", - "id": 6586591707, - "lat": 53.2570241, - "lon": -2.7483474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WA6 1000", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6586591735, - "lat": 53.2679421, - "lon": -2.7627500, - "tags": { - "amenity": "post_box", - "ref": "WA6 84" - } -}, -{ - "type": "node", - "id": 6586591746, - "lat": 53.2619422, - "lon": -2.7557177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA6 218", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6586591749, - "lat": 53.2771338, - "lon": -2.7640214, - "tags": { - "amenity": "post_box", - "ref": "WA6 186" - } -}, -{ - "type": "node", - "id": 6586591755, - "lat": 53.2783756, - "lon": -2.7585175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "ref": "WA6 353" - } -}, -{ - "type": "node", - "id": 6586591761, - "lat": 53.2656812, - "lon": -2.7661551, - "tags": { - "amenity": "post_box", - "ref": "WA6 232" - } -}, -{ - "type": "node", - "id": 6586591762, - "lat": 53.2795593, - "lon": -2.7498602, - "tags": { - "amenity": "post_box", - "ref": "WA6 278" - } -}, -{ - "type": "node", - "id": 6586592863, - "lat": 53.2674048, - "lon": -2.7726440, - "tags": { - "amenity": "post_box", - "ref": "WA6 376" - } -}, -{ - "type": "node", - "id": 6587008576, - "lat": 53.2482428, - "lon": -2.7929794, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WA6 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6587008580, - "lat": 53.2498077, - "lon": -2.8017556, - "tags": { - "amenity": "post_box", - "ref": "WA6 187" - } -}, -{ - "type": "node", - "id": 6587008583, - "lat": 53.2429370, - "lon": -2.8002849, - "tags": { - "amenity": "post_box", - "ref": "WA6 266" - } -}, -{ - "type": "node", - "id": 6587048091, - "lat": 53.2529900, - "lon": -2.7903634, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA6 168" - } -}, -{ - "type": "node", - "id": 6587401627, - "lat": 52.7440514, - "lon": -1.4764467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "LE65 602D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6587401628, - "lat": 52.7477222, - "lon": -1.4787352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "LE65 598D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6588486363, - "lat": 53.3173190, - "lon": -3.4800410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6588754908, - "lat": 53.7125457, - "lon": -2.6366772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR5 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6588892511, - "lat": 53.3327091, - "lon": -2.7488495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA7 36" - } -}, -{ - "type": "node", - "id": 6588892516, - "lat": 53.3273008, - "lon": -2.7569630, - "tags": { - "amenity": "post_box", - "note": "looks disused?", - "ref": "WA7 21" - } -}, -{ - "type": "node", - "id": 6589430609, - "lat": 53.3287868, - "lon": -2.7176961, - "tags": { - "amenity": "post_box", - "ref": "WA7 37" - } -}, -{ - "type": "node", - "id": 6589430625, - "lat": 53.3193540, - "lon": -2.7391887, - "tags": { - "amenity": "post_box", - "ref": "WA7 8" - } -}, -{ - "type": "node", - "id": 6589474990, - "lat": 53.3342623, - "lon": -2.7172442, - "tags": { - "amenity": "post_box", - "ref": "WA7 76" - } -}, -{ - "type": "node", - "id": 6590642155, - "lat": 53.3170397, - "lon": -2.7035409, - "tags": { - "amenity": "post_box", - "ref": "WA7 90" - } -}, -{ - "type": "node", - "id": 6590642158, - "lat": 53.3106427, - "lon": -2.6948183, - "tags": { - "amenity": "post_box", - "ref": "WA7 53" - } -}, -{ - "type": "node", - "id": 6590642159, - "lat": 53.3128638, - "lon": -2.6803720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA7 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6590642160, - "lat": 53.3258818, - "lon": -2.7078269, - "tags": { - "amenity": "post_box", - "ref": "WA7 57" - } -}, -{ - "type": "node", - "id": 6590642161, - "lat": 53.3135433, - "lon": -2.6918518, - "tags": { - "amenity": "post_box", - "ref": "WA7 81" - } -}, -{ - "type": "node", - "id": 6591357738, - "lat": 53.3204429, - "lon": -2.6515772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA7 87", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6591357748, - "lat": 53.3267724, - "lon": -2.6594518, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "WA7 71" - } -}, -{ - "type": "node", - "id": 6591357757, - "lat": 53.3234688, - "lon": -2.6646081, - "tags": { - "amenity": "post_box", - "ref": "WA7 62" - } -}, -{ - "type": "node", - "id": 6591924888, - "lat": 51.4323203, - "lon": -0.3384386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW11 193D" - } -}, -{ - "type": "node", - "id": 6592066718, - "lat": 51.4935875, - "lon": -0.1506527, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-13", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1W 88;SW1W 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6593271462, - "lat": 53.3851641, - "lon": -1.3773229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6593275666, - "lat": 50.7723653, - "lon": -0.8753896, - "tags": { - "amenity": "post_box", - "ref": "PO20 375" - } -}, -{ - "type": "node", - "id": 6593275669, - "lat": 50.7679735, - "lon": -0.8811188, - "tags": { - "amenity": "post_box", - "fixme": "is this post box still here?", - "ref": "PO20 143" - } -}, -{ - "type": "node", - "id": 6593380985, - "lat": 59.8733400, - "lon": -1.3072887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6593429773, - "lat": 50.8724267, - "lon": -1.5732315, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO43 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "support": "ground" - } -}, -{ - "type": "node", - "id": 6593448499, - "lat": 51.4421069, - "lon": -0.1594005, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW12 29" - } -}, -{ - "type": "node", - "id": 6593449156, - "lat": 51.4439525, - "lon": -0.1603991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW12 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6593509498, - "lat": 54.2824876, - "lon": -2.8995334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "LA11 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6593740744, - "lat": 52.2629520, - "lon": 0.9994105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP14 8066", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6594404816, - "lat": 52.4561802, - "lon": -2.4243311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WV16 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6594589007, - "lat": 50.7994092, - "lon": 0.2767100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 836D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6594589008, - "lat": 50.7959484, - "lon": 0.2741375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN22 846D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6595063526, - "lat": 50.8031524, - "lon": 0.2846263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 832D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6595074275, - "lat": 50.8673712, - "lon": -1.5756930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6595105019, - "lat": 51.0681005, - "lon": -1.2984434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SO23 267", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6595194420, - "lat": 51.4526239, - "lon": -0.3089215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6595194421, - "lat": 51.4515861, - "lon": -0.3248250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 99", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6595897684, - "lat": 51.9261369, - "lon": -2.8451705, - "tags": { - "amenity": "post_box", - "ref": "HR2 126", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6595906268, - "lat": 51.9377918, - "lon": -2.8093819, - "tags": { - "amenity": "post_box", - "ref": "HR2 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6596018013, - "lat": 50.8063332, - "lon": -0.7823792, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "PO20 33", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6596018020, - "lat": 50.7813017, - "lon": -0.7899336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6596302048, - "lat": 52.1775207, - "lon": 1.3412410, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6288" - } -}, -{ - "type": "node", - "id": 6597586992, - "lat": 51.2871128, - "lon": -0.7201222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GU16 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6597598800, - "lat": 51.2924780, - "lon": -0.7339838, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-04", - "old_ref": "GU16 108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 108D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6597604881, - "lat": 51.3016947, - "lon": -0.7430909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GU14 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6597695450, - "lat": 51.3089059, - "lon": -0.7520706, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "GU14 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6597714202, - "lat": 51.3893767, - "lon": -0.6772242, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL5 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6597714203, - "lat": 51.3732421, - "lon": -0.6732747, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU20 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6598712490, - "lat": 56.3068993, - "lon": -3.0526426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "KY15 299D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6598930990, - "lat": 53.4628225, - "lon": -1.4656376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "S35 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6600124825, - "lat": 51.5151578, - "lon": -0.4753194, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6600571597, - "lat": 50.7374690, - "lon": -0.7869239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-01", - "old_ref": "PO20 115", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6600571601, - "lat": 50.7348715, - "lon": -0.8038234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6600571602, - "lat": 50.7344170, - "lon": -0.7876427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-05", - "old_ref": "PO20 226", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 226D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6600571606, - "lat": 50.7401862, - "lon": -0.7812310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-01", - "old_ref": "PO20 227", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6600571635, - "lat": 50.7402666, - "lon": -0.7848264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2023-09-30", - "old_ref": "PO20 213", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6600571647, - "lat": 50.7343763, - "lon": -0.7917838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-05", - "old_ref": "PO20 187", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO20 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6601073653, - "lat": 56.7182297, - "lon": -3.9303683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH16 111", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6601110045, - "lat": 56.7165473, - "lon": -3.8570695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH16 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6601110047, - "lat": 56.7279554, - "lon": -3.8275197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PH16 112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6601133481, - "lat": 51.4910276, - "lon": -0.6520960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SL4 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601143731, - "lat": 51.4842722, - "lon": -0.6176111, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL4 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601162526, - "lat": 51.5175844, - "lon": -0.7245579, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SL6 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601162527, - "lat": 51.5073552, - "lon": -0.6947914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "SL6 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601162831, - "lat": 52.3007875, - "lon": 0.6294876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP28 2110", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6601165021, - "lat": 51.5047165, - "lon": -0.7557647, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SL6 201D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6601165022, - "lat": 51.5057041, - "lon": -0.7510038, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SL6 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601165023, - "lat": 51.5076982, - "lon": -0.7421485, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL6 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601167210, - "lat": 56.6527496, - "lon": -3.6680757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH9 21", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6601167211, - "lat": 56.6249885, - "lon": -3.8887061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH15 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6601188875, - "lat": 51.5001501, - "lon": -0.8642842, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG10 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601227713, - "lat": 52.3228617, - "lon": 0.6806422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:15", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP28 2217", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6601232029, - "lat": 51.4638003, - "lon": -0.9116587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "RG4 437", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601254194, - "lat": 51.3254361, - "lon": -0.7745656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GU17 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6601254195, - "lat": 51.3285988, - "lon": -0.7872739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "GU17 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6602111964, - "lat": 53.4804647, - "lon": -2.2462079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M2 246D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6602140875, - "lat": 53.4825125, - "lon": -2.2321343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M1 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6602220916, - "lat": 51.6911422, - "lon": -1.6404176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "mapillary": "469883667426343", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL7 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6602799686, - "lat": 52.4201490, - "lon": -3.0303113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY7 383D" - } -}, -{ - "type": "node", - "id": 6604921495, - "lat": 50.4917903, - "lon": -3.5392303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-12-03" - } -}, -{ - "type": "node", - "id": 6604929689, - "lat": 50.4882271, - "lon": -3.5410050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6606544206, - "lat": 53.4909793, - "lon": -1.1375573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6606557809, - "lat": 53.4936451, - "lon": -1.1490012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6606566680, - "lat": 51.3443682, - "lon": -0.8023553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 107" - } -}, -{ - "type": "node", - "id": 6606566681, - "lat": 51.3443464, - "lon": -0.8023633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "GU47 123P" - } -}, -{ - "type": "node", - "id": 6608929273, - "lat": 50.7941219, - "lon": 0.3268706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN23 1160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6608929277, - "lat": 50.8076441, - "lon": 0.3445376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN24 988D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608929281, - "lat": 50.8160331, - "lon": 0.3604666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN24 985D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999785, - "lat": 50.8195424, - "lon": 0.3662527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "BN24 984", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999791, - "lat": 50.8065507, - "lon": 0.3391617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN24 989", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999794, - "lat": 50.8189998, - "lon": 0.3701741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN24 982D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999799, - "lat": 50.8122930, - "lon": 0.3512707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN24 986", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999803, - "lat": 50.8101509, - "lon": 0.3456567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN24 987D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999807, - "lat": 50.8189566, - "lon": 0.3630949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BN24 983D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6608999808, - "lat": 50.7997029, - "lon": 0.3310224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN23 1163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6609010591, - "lat": 50.7971304, - "lon": 0.3346705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN23 1162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6609174168, - "lat": 50.7943983, - "lon": 0.3178683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN23 889D" - } -}, -{ - "type": "node", - "id": 6609176434, - "lat": 50.7936080, - "lon": 0.3185023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN23 995D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6609176437, - "lat": 50.7927012, - "lon": 0.3197957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN23 891D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6609230817, - "lat": 51.5819637, - "lon": -2.9735767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6609839569, - "lat": 53.8438959, - "lon": -1.7418943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6611418191, - "lat": 51.9499735, - "lon": -1.1994087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 07:30; Su off", - "drive_through": "no", - "last_checked": "2020-10-18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX27 947", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6612202783, - "lat": 51.7168170, - "lon": -2.6672959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP16 413", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6612791330, - "lat": 51.8927770, - "lon": -2.9689968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP7 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-10-27", - "wikimedia_commons": "File:Queen Elizabeth II postbox in Pandy, Monmouthshire - geograph.org.uk - 5619415.jpg" - } -}, -{ - "type": "node", - "id": 6612791331, - "lat": 51.8802878, - "lon": -2.9807295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-01" - } -}, -{ - "type": "node", - "id": 6612791332, - "lat": 51.8756763, - "lon": -2.9294979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "information_plate:date": "2016-08-01", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-01" - } -}, -{ - "type": "node", - "id": 6612791333, - "lat": 51.8532579, - "lon": -2.9176681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-01" - } -}, -{ - "type": "node", - "id": 6612792868, - "lat": 52.1487591, - "lon": -3.1466282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR5 676", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-03" - } -}, -{ - "type": "node", - "id": 6612808844, - "lat": 57.6836821, - "lon": -2.6897205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB45 30D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6612810637, - "lat": 52.6136583, - "lon": -3.1255205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY21 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-06" - } -}, -{ - "type": "node", - "id": 6612810644, - "lat": 52.5644853, - "lon": -3.1449035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY15 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-06" - } -}, -{ - "type": "node", - "id": 6612826747, - "lat": 52.7855549, - "lon": -3.0927560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY22 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 6612836648, - "lat": 52.8054677, - "lon": -3.0978334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY10 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 6612842637, - "lat": 53.2647950, - "lon": -3.3891763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-09" - } -}, -{ - "type": "node", - "id": 6612850029, - "lat": 53.2205628, - "lon": -3.3534128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-07-09" - } -}, -{ - "type": "node", - "id": 6614860296, - "lat": 52.6993698, - "lon": -4.0567848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "LL38 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6614860297, - "lat": 52.8593858, - "lon": -4.1110821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "post_box:type": "pillar", - "ref": "LL46 70" - } -}, -{ - "type": "node", - "id": 6614860298, - "lat": 52.8594360, - "lon": -4.1083087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL46 85", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6614887205, - "lat": 55.3535305, - "lon": -4.7869167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA19 134", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6614998496, - "lat": 51.4568216, - "lon": -0.3151002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6616265236, - "lat": 51.6105343, - "lon": 0.0222947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6617230126, - "lat": 51.4107601, - "lon": -0.0777004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE19 43", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6617295300, - "lat": 51.4172764, - "lon": -0.1265834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6617295301, - "lat": 51.4407281, - "lon": -0.1254943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW2 32", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6617295302, - "lat": 51.4458514, - "lon": -0.0952228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6617480042, - "lat": 53.3615882, - "lon": -2.5050989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 191", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6618681961, - "lat": 50.4783198, - "lon": -3.5486115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6618685151, - "lat": 50.4736600, - "lon": -3.5311626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6618685152, - "lat": 50.4728030, - "lon": -3.5344806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6618704686, - "lat": 50.4752214, - "lon": -3.5359948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 6618704687, - "lat": 50.4780800, - "lon": -3.5432816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 6620721537, - "lat": 53.0006596, - "lon": -2.2339758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6622232925, - "lat": 51.6388691, - "lon": 0.0617290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG10 21", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6627277450, - "lat": 51.6442428, - "lon": 0.0571530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG10 24" - } -}, -{ - "type": "node", - "id": 6631418541, - "lat": 50.4882930, - "lon": -3.5309850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6631631236, - "lat": 51.8803617, - "lon": -5.2658223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SA62 235", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6631869362, - "lat": 52.4812027, - "lon": -0.4668294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE8 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6633072975, - "lat": 52.6099222, - "lon": 1.0230354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR9 932", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6634165259, - "lat": 51.3962021, - "lon": -0.0464567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "fixme": "RM 2013 data suggests BR3 226", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR3 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6634168369, - "lat": 57.1195112, - "lon": -2.1673517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "GR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB15 356D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 6634188101, - "lat": 57.1217127, - "lon": -2.1576440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB15 339D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6634997225, - "lat": 52.3840586, - "lon": 1.1256220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP22 7152", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6634997226, - "lat": 52.4165425, - "lon": 1.1183153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP22 7109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6634997227, - "lat": 52.4132145, - "lon": 1.1368378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6634997228, - "lat": 52.3834079, - "lon": 1.1547514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP21 7148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6634997229, - "lat": 52.3754443, - "lon": 1.1533404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7135", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6635169130, - "lat": 57.7751104, - "lon": -5.5968361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV22 232", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6635534309, - "lat": 53.7357091, - "lon": -2.4605245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "BB2 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6636031926, - "lat": 53.1524358, - "lon": -3.3114626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6636157150, - "lat": 53.1402037, - "lon": -3.1944884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "note": "ref not visible", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6637098397, - "lat": 53.5658290, - "lon": -2.5411209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BL5 200" - } -}, -{ - "type": "node", - "id": 6637133131, - "lat": 52.3670552, - "lon": 1.1463067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6637133132, - "lat": 52.3658224, - "lon": 1.1552907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "IP21 7053D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6637133134, - "lat": 52.3684425, - "lon": 1.1604792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP21 8132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6637133135, - "lat": 52.3854788, - "lon": 1.1766547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP21 7147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6637566699, - "lat": 51.4528362, - "lon": 0.2885564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA9 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6639922598, - "lat": 50.8575314, - "lon": 0.3843284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6639946573, - "lat": 50.8695639, - "lon": 0.4049706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6639946574, - "lat": 50.8594482, - "lon": 0.3986843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "post_box:type": "lamp", - "ref": "TN33 170" - } -}, -{ - "type": "node", - "id": 6639970618, - "lat": 50.8750564, - "lon": 0.4157920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN33 158D" - } -}, -{ - "type": "node", - "id": 6639980465, - "lat": 50.8888754, - "lon": 0.4121563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 133D" - } -}, -{ - "type": "node", - "id": 6639987496, - "lat": 50.8896034, - "lon": 0.4175992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "TN33 9" - } -}, -{ - "type": "node", - "id": 6639987498, - "lat": 50.8877093, - "lon": 0.4218248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN33 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6640004071, - "lat": 50.9016813, - "lon": 0.4085045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6640034267, - "lat": 50.9425547, - "lon": 0.4335134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6640048748, - "lat": 50.9103941, - "lon": 0.3911754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6640055314, - "lat": 50.9039268, - "lon": 0.3926190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6641949949, - "lat": 50.7780204, - "lon": 0.2652631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 761D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6644144169, - "lat": 51.5028712, - "lon": -2.5589673, - "tags": { - "access": "private", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00", - "indoor": "yes", - "note": "Beyond security barriers next to restaurant staircase in CFB. Access for employees and visitors only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "R683 MOD Abbey Wood", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6644820859, - "lat": 52.9863029, - "lon": -3.9291860, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey (from car)" - } -}, -{ - "type": "node", - "id": 6644820861, - "lat": 52.9812665, - "lon": -3.9299393, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey (from car)" - } -}, -{ - "type": "node", - "id": 6644966695, - "lat": 51.4096248, - "lon": -0.2317402, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-11", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW20 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6646808487, - "lat": 50.7096709, - "lon": -1.9929068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BH15 299", - "ref:GB:uprn": "10015289780", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6646885675, - "lat": 52.9398303, - "lon": -3.6312143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "265660923246145", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey (from car)", - "survey:date": "2024-03-02" - } -}, -{ - "type": "node", - "id": 6647300420, - "lat": 50.8662310, - "lon": -2.1644858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref:GB:uprn": "10015315728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6649511895, - "lat": 51.4162771, - "lon": -1.1479050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 124D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6650746429, - "lat": 51.7493430, - "lon": -1.2126125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "ref": "OX3 671" - } -}, -{ - "type": "node", - "id": 6651863330, - "lat": 50.9528090, - "lon": -0.4058395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6651863331, - "lat": 50.9145820, - "lon": -0.3740044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6652040179, - "lat": 51.6581493, - "lon": -1.5795945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6652040184, - "lat": 51.6586514, - "lon": -1.5827004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6652071087, - "lat": 51.6574849, - "lon": -1.5882950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN7 120D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6652660137, - "lat": 53.3185833, - "lon": -3.8235742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6652746358, - "lat": 53.3224098, - "lon": -3.8297174, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-21", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "LL30 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6652746359, - "lat": 53.3224313, - "lon": -3.8297556, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-21", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:type": "pillar", - "ref": "LL30 994", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6652758198, - "lat": 53.3215094, - "lon": -3.8248484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL30 9147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6653004895, - "lat": 53.3210431, - "lon": -3.8108717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "LL30 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6653236384, - "lat": 51.5979768, - "lon": -2.7519846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6653326408, - "lat": 51.5953021, - "lon": -2.7473160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6653877248, - "lat": 51.7062944, - "lon": -1.3406644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 6653939337, - "lat": 53.5564931, - "lon": -2.4564949, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6653939343, - "lat": 53.5498676, - "lon": -2.4551221, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6653945939, - "lat": 53.5600963, - "lon": -2.4566448, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6654811277, - "lat": 56.2269377, - "lon": -3.4193270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY13 153", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6654811278, - "lat": 56.2256255, - "lon": -3.4263906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY13 137D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6654811279, - "lat": 56.2135476, - "lon": -3.4335325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY13 415D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6655127049, - "lat": 53.5624551, - "lon": -2.4357797, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6655293542, - "lat": 52.4065189, - "lon": 1.1932399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP21 7099", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6655293543, - "lat": 52.3980668, - "lon": 1.2112471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP21 7115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6655293544, - "lat": 52.3986434, - "lon": 1.2307873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP21 7050", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6655293545, - "lat": 52.3869792, - "lon": 1.2018196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 8244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6655293548, - "lat": 52.3611610, - "lon": 1.1274847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP21 7059", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6655842355, - "lat": 54.9013389, - "lon": -1.5647106, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DH3 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6655996648, - "lat": 53.3044439, - "lon": -3.7460491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6655996652, - "lat": 53.3162240, - "lon": -3.8208496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LL30 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6655996653, - "lat": 53.3152047, - "lon": -3.8132525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LL30 29D" - } -}, -{ - "type": "node", - "id": 6655996657, - "lat": 53.3148452, - "lon": -3.7698059, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL30 51" - } -}, -{ - "type": "node", - "id": 6657198145, - "lat": 51.8926977, - "lon": -1.1681060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "OX26 300" - } -}, -{ - "type": "node", - "id": 6658114706, - "lat": 56.2126737, - "lon": -2.9604902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 214D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6658220049, - "lat": 54.5017497, - "lon": -5.7923672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6658393212, - "lat": 57.4735723, - "lon": -7.3781599, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HS7 68" - } -}, -{ - "type": "node", - "id": 6658393221, - "lat": 57.4738978, - "lon": -7.3720677, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6658579866, - "lat": 51.4245290, - "lon": -0.3328679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "TW11 192" - } -}, -{ - "type": "node", - "id": 6658820889, - "lat": 55.6763295, - "lon": -2.1019346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Confirmed scottish_crown box in England.", - "post_box:type": "lamp", - "ref": "TD15 27D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6658901201, - "lat": 50.9301420, - "lon": -0.3905438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6659389299, - "lat": 56.1674475, - "lon": -3.0571374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 113", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6662821664, - "lat": 53.2017607, - "lon": -1.9632912, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SK17 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6665106848, - "lat": 52.6239116, - "lon": -1.4015405, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6668192989, - "lat": 53.0465857, - "lon": -1.9705251, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "ST10 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6668246409, - "lat": 50.7752305, - "lon": 0.2837987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal MailR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 779D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6668246410, - "lat": 50.7770342, - "lon": 0.2812754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal MailR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 778D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6668251567, - "lat": 50.7761567, - "lon": 0.3018119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 749D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6670550992, - "lat": 50.9324478, - "lon": -0.3896884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH20 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6670562214, - "lat": 50.9437451, - "lon": -0.3886655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6672551246, - "lat": 53.1160299, - "lon": -2.4686140, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW1 175", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6672776463, - "lat": 50.7952108, - "lon": -0.6977767, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO21 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6673317587, - "lat": 56.7658982, - "lon": -3.8472378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH18 41", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6676147147, - "lat": 52.0657347, - "lon": -1.3249644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "OX16 1016D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6677793734, - "lat": 50.3769276, - "lon": -3.9377913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 809", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6679770658, - "lat": 52.3512425, - "lon": 1.1128235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6679770660, - "lat": 52.3462986, - "lon": 1.1030955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6679942104, - "lat": 50.8259353, - "lon": -2.8878658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "TA20 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6680328351, - "lat": 56.2761161, - "lon": -3.2657585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Smith & Hawkes, Birmingham", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY14 315D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6680328352, - "lat": 56.2777623, - "lon": -3.2710518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KY14 318", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6680353892, - "lat": 51.4264547, - "lon": -0.3404343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW11 202" - } -}, -{ - "type": "node", - "id": 6680353898, - "lat": 51.4259315, - "lon": -0.3379840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "colour": "Gold", - "description": "Celebrating Sir Mo Farah's double gold medals at the 2012 London Olympics", - "ref": "TW12 181" - } -}, -{ - "type": "node", - "id": 6680978533, - "lat": 53.7282581, - "lon": -1.8633833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HX3 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6681001884, - "lat": 53.7289214, - "lon": -1.8683856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HX3 187D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6681072583, - "lat": 53.0740958, - "lon": -0.8145629, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6681122418, - "lat": 53.5898294, - "lon": -1.6874292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6681260482, - "lat": 50.9059096, - "lon": -3.9508702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6681303541, - "lat": 53.5435382, - "lon": -1.5651713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "pillar", - "ref": "S75 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6681947438, - "lat": 54.9426792, - "lon": -1.6453525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6682180318, - "lat": 50.7865159, - "lon": -0.7190493, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "last_checked": "2021-05-04", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO21 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6682180319, - "lat": 50.7805805, - "lon": -0.7157233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6682180320, - "lat": 50.7839435, - "lon": -0.7112628, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO21 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6682180321, - "lat": 50.7866240, - "lon": -0.7083821, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO21 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6682180326, - "lat": 50.7912493, - "lon": -0.7037097, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO21 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6682220178, - "lat": 50.7508548, - "lon": -0.7821335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "last_checked": "2021-05-01", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO20 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6682267188, - "lat": 50.7808417, - "lon": -0.8980371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PO20 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 6683519044, - "lat": 53.1901258, - "lon": -2.5094566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW7 210D" - } -}, -{ - "type": "node", - "id": 6684255764, - "lat": 51.3097538, - "lon": -2.0494903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN10 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6684995070, - "lat": 55.8755962, - "lon": -4.3188772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 6685416592, - "lat": 52.7501101, - "lon": -1.3678798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 6685601998, - "lat": 51.2166271, - "lon": -1.4736179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6685601999, - "lat": 51.2129712, - "lon": -1.4360976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6685608656, - "lat": 51.2893883, - "lon": -1.8028528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "452269489818475", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SN9 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 6685618109, - "lat": 51.3311848, - "lon": -1.9407606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6685653514, - "lat": 51.3530560, - "lon": -1.9968490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SN10 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6685653515, - "lat": 51.3521187, - "lon": -1.9952947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689749556, - "lat": 51.3787253, - "lon": -2.0333424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN15 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689768980, - "lat": 51.5285360, - "lon": -0.7060214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Not the exact location, but pretty close", - "ref": "SL6 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689769993, - "lat": 51.3634256, - "lon": -2.0316969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689773650, - "lat": 51.4521065, - "lon": -2.1058372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN15 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689782061, - "lat": 51.4105616, - "lon": -2.0510115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689795968, - "lat": 51.4573149, - "lon": -2.1130174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SN15 1;SN15 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689800275, - "lat": 51.5262260, - "lon": -2.3070779, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "GL9 87", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6689817313, - "lat": 51.5114122, - "lon": -2.2368901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 81", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6689817314, - "lat": 51.4956889, - "lon": -2.2202881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN14 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689817315, - "lat": 51.4860410, - "lon": -2.1933302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "fixme": "Survey required to determine if collection plate still has multiple times (Mo-Fr 10:30, 17:00) or whether it now has a single time for Mo-Fr and whether the times (Mo-Fr and Sa) are up to date.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 148", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6689847679, - "lat": 51.7737271, - "lon": -3.3609715, - "tags": { - "amenity": "post_box", - "note": "Appears quite old, probably Victorian or Edwardian", - "post_box:type": "wall", - "ref": "CF48 61", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6689852298, - "lat": 51.8859207, - "lon": -2.7325635, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HR2 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689878013, - "lat": 51.6991499, - "lon": -2.7128506, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP16 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6689878014, - "lat": 51.7038634, - "lon": -2.6805957, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP16 451D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6690434298, - "lat": 52.3011321, - "lon": -1.9460967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6690473803, - "lat": 53.5571170, - "lon": -2.4640212, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6690916008, - "lat": 53.7739930, - "lon": -2.6895449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 339", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6690919914, - "lat": 53.2920981, - "lon": -0.6364979, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6690938778, - "lat": 53.7719275, - "lon": -2.6799184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR1 435", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6691733549, - "lat": 51.1675712, - "lon": -0.3096447, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6694495402, - "lat": 54.5403167, - "lon": -5.9611169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6694861906, - "lat": 53.5013135, - "lon": -1.4944829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "S75 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6695688576, - "lat": 54.7244003, - "lon": -1.5881735, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6695850955, - "lat": 51.3783076, - "lon": -2.5303417, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS39 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695857865, - "lat": 51.4037253, - "lon": -2.5155325, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS31 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695857866, - "lat": 51.4115855, - "lon": -2.5108963, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS31 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695857867, - "lat": 51.4127691, - "lon": -2.5054270, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS31 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695857868, - "lat": 51.4162934, - "lon": -2.5052020, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS31 323", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6695857869, - "lat": 51.4183989, - "lon": -2.5074195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "BS31 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695872787, - "lat": 51.3608971, - "lon": -2.5071888, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BS39 93", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6695872833, - "lat": 51.2417022, - "lon": -2.3631240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695888944, - "lat": 51.2214882, - "lon": -2.3210818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA11 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695888946, - "lat": 51.2290133, - "lon": -2.3233211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA11 5D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6695888948, - "lat": 51.2318562, - "lon": -2.3324946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6695912162, - "lat": 51.0661901, - "lon": -1.7863646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP1 162", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6698243301, - "lat": 53.1585240, - "lon": -1.2261203, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6698590888, - "lat": 51.1947489, - "lon": 0.2608285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN9 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6698590890, - "lat": 51.1933998, - "lon": 0.2654695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN9 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698590891, - "lat": 51.1903829, - "lon": 0.2662650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN9 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698590892, - "lat": 51.1872184, - "lon": 0.2584989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN9 142D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6698590894, - "lat": 51.1849430, - "lon": 0.2607026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN9 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698654267, - "lat": 51.2029671, - "lon": 0.2746845, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN9 131D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6698654269, - "lat": 51.2032160, - "lon": 0.2836273, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN9 114D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6698654270, - "lat": 51.2022371, - "lon": 0.2747138, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN10 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698654271, - "lat": 51.1946644, - "lon": 0.2741548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "TN9 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698654272, - "lat": 51.2036210, - "lon": 0.2776906, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-05-27", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "TN10 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698654273, - "lat": 51.1970252, - "lon": 0.2754397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "post_box:type": "pillar", - "ref": "TN9 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698684013, - "lat": 51.1965401, - "lon": 0.2835965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "TN9 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698684018, - "lat": 51.1965062, - "lon": 0.2836100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00", - "post_box:type": "meter", - "ref": "TN9 31" - } -}, -{ - "type": "node", - "id": 6698727922, - "lat": 51.1907558, - "lon": 0.2836407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "TN9 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6698727925, - "lat": 51.1889213, - "lon": 0.2871375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN9 176D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6699340673, - "lat": 55.9942759, - "lon": -4.5786261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G83 68D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6699342366, - "lat": 56.0013371, - "lon": -4.5898054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "G83 50D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6699342367, - "lat": 56.0016471, - "lon": -4.5922723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "G83 91D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6699380611, - "lat": 57.1244404, - "lon": -2.1046799, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB12 5AR", - "addr:street": "Abbotswell Crescent", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 178D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6700513362, - "lat": 54.9804036, - "lon": -1.4876336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "NE32 787D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6701044182, - "lat": 53.5624695, - "lon": -1.6841286, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 238", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6701051660, - "lat": 53.2257041, - "lon": -4.1628150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LL59 42;LL59 942", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6702317690, - "lat": 51.9857961, - "lon": -2.9386765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 09:30", - "ref": "HR2 392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6702374701, - "lat": 51.9465581, - "lon": -2.8880820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:00", - "ref": "HR2 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6703488263, - "lat": 52.1395844, - "lon": -0.1188515, - "tags": { - "amenity": "post_box", - "ref": "SG19 227" - } -}, -{ - "type": "node", - "id": 6703488894, - "lat": 51.8956872, - "lon": -5.2849370, - "tags": { - "amenity": "post_box", - "fixme": "couldnt find this box, does it still exist?", - "ref": "SA62 60" - } -}, -{ - "type": "node", - "id": 6703488919, - "lat": 51.8796933, - "lon": -5.3008281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "ref": "SA62 61" - } -}, -{ - "type": "node", - "id": 6703488921, - "lat": 51.8989908, - "lon": -5.2466334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "SA62 24" - } -}, -{ - "type": "node", - "id": 6703500048, - "lat": 52.2594038, - "lon": -0.1691610, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PE19 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6703533254, - "lat": 52.1523127, - "lon": -0.1905525, - "tags": { - "amenity": "post_box", - "ref": "SG19 347" - } -}, -{ - "type": "node", - "id": 6703533260, - "lat": 52.1605522, - "lon": -0.2065001, - "tags": { - "amenity": "post_box", - "ref": "SG19 343" - } -}, -{ - "type": "node", - "id": 6703540053, - "lat": 53.3200950, - "lon": -3.4802944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6703542385, - "lat": 52.1572510, - "lon": -0.1910997, - "tags": { - "amenity": "post_box", - "ref": "SG19 349" - } -}, -{ - "type": "node", - "id": 6703542386, - "lat": 52.1547137, - "lon": -0.1989371, - "tags": { - "amenity": "post_box", - "ref": "SG19 346" - } -}, -{ - "type": "node", - "id": 6703542387, - "lat": 52.1544619, - "lon": -0.1924945, - "tags": { - "amenity": "post_box", - "ref": "SG19 342" - } -}, -{ - "type": "node", - "id": 6703542415, - "lat": 52.1571787, - "lon": -0.1947717, - "tags": { - "amenity": "post_box", - "ref": "SG19 350" - } -}, -{ - "type": "node", - "id": 6703631243, - "lat": 57.0768845, - "lon": -2.8930977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 479", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6703631248, - "lat": 57.0681490, - "lon": -2.7850825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB34 234", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6703716305, - "lat": 57.0511918, - "lon": -2.4931289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-08-16", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 215", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6703716319, - "lat": 57.0514475, - "lon": -2.5037949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB31 539", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6704190466, - "lat": 57.0592441, - "lon": -2.4916891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 100", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6704190467, - "lat": 57.0585239, - "lon": -2.4843271, - "tags": { - "addr:city": "Banchory", - "addr:country": "GB", - "addr:postcode": "AB31 5WA", - "addr:street": "Scolty Place", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 393", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6704190476, - "lat": 57.0565772, - "lon": -2.4968311, - "tags": { - "addr:city": "Banchory", - "addr:country": "GB", - "addr:postcode": "AB31 5XL", - "addr:street": "Woodside Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 321", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6704238532, - "lat": 55.8001767, - "lon": -3.9697202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6705418547, - "lat": 51.2149220, - "lon": 0.2775361, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN10 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6705434336, - "lat": 51.2178047, - "lon": 0.2744692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN10 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6706009768, - "lat": 51.2202080, - "lon": 0.2780037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN10 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6706009769, - "lat": 51.2205440, - "lon": 0.2869209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN10 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6706009771, - "lat": 51.2143525, - "lon": 0.2920769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN10 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6706009772, - "lat": 51.2111537, - "lon": 0.2977712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN10 326D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6706759685, - "lat": 51.2064009, - "lon": 0.2922647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN10 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6706759686, - "lat": 51.2049635, - "lon": 0.2864746, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN10 303D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6706759687, - "lat": 51.2088844, - "lon": 0.2808891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "TN10 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6708302169, - "lat": 51.6787860, - "lon": -2.3472472, - "tags": { - "addr:street": "Rosebery Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL11 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6709811970, - "lat": 50.2214029, - "lon": -5.0891034, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR3 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6710801490, - "lat": 57.1272456, - "lon": -2.0901623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB12 585", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6710929513, - "lat": 57.1264961, - "lon": -2.0920253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 587", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6710929514, - "lat": 57.1265027, - "lon": -2.0919983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB12 903P" - } -}, -{ - "type": "node", - "id": 6711064000, - "lat": 53.5274874, - "lon": -1.6494814, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 480D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6711064001, - "lat": 53.5269441, - "lon": -1.6536701, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S36 294D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6711064002, - "lat": 53.5295486, - "lon": -1.6501759, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "street_lamp", - "post_box:type": "lamp", - "ref": "S36 54D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6711887930, - "lat": 50.1872724, - "lon": -5.4140184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR27 238D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2018-10-31" - } -}, -{ - "type": "node", - "id": 6712035075, - "lat": 57.1250147, - "lon": -2.0881616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 68D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6712183630, - "lat": 51.4104715, - "lon": -0.7520302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG12 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6712217228, - "lat": 53.5074665, - "lon": -1.5659855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "S35 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6716204624, - "lat": 54.8839048, - "lon": -7.1665899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT47 109" - } -}, -{ - "type": "node", - "id": 6716238956, - "lat": 54.7203211, - "lon": -6.1987585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT41 57" - } -}, -{ - "type": "node", - "id": 6716405138, - "lat": 57.6906068, - "lon": -4.1805775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV18 9D" - } -}, -{ - "type": "node", - "id": 6717817260, - "lat": 50.2611735, - "lon": -5.2879625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR16 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 6717858215, - "lat": 55.9453842, - "lon": -4.7507663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "note": "in entrance lobby of Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "PA15 125", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6718435126, - "lat": 53.4512401, - "lon": -2.0405982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "Bing Streetside" - } -}, -{ - "type": "node", - "id": 6719001064, - "lat": 52.9697811, - "lon": -2.3277167, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6719093308, - "lat": 57.1369401, - "lon": -7.3248035, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6719531328, - "lat": 53.8325174, - "lon": -1.7657117, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6719999754, - "lat": 53.1806061, - "lon": -1.2549745, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6720028009, - "lat": 50.7649652, - "lon": 0.2852350, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 736D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6720504824, - "lat": 51.0961482, - "lon": -0.5173678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6720621710, - "lat": 53.7103692, - "lon": -2.6424479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR5 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6720654444, - "lat": 51.1012005, - "lon": -0.5229052, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU6 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6720943306, - "lat": 53.4150148, - "lon": -2.4563123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "477751566867453", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "WA3 223", - "royal_cypher": "EIIR", - "survey:date": "2020-03-26" - } -}, -{ - "type": "node", - "id": 6720943308, - "lat": 53.4151205, - "lon": -2.4613081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6721118699, - "lat": 53.5980254, - "lon": -1.9286665, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD7 60D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6721197773, - "lat": 57.5427711, - "lon": -3.7694039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV12 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6721197774, - "lat": 57.5343102, - "lon": -3.6525900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV36 88", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6726232009, - "lat": 53.8499274, - "lon": -1.7599621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6726367739, - "lat": 53.8489159, - "lon": -1.7668481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD17 914", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6727297168, - "lat": 53.5644922, - "lon": -2.4702448, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6727534098, - "lat": 52.1890606, - "lon": 1.4729860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6727534099, - "lat": 52.1786836, - "lon": 1.4900315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4691", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6727534100, - "lat": 52.1803743, - "lon": 1.4990866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "wall", - "ref": "IP17 4632", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6727534101, - "lat": 52.1714634, - "lon": 1.5045811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "post_box:type": "lamp", - "ref": "IP17 4436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6728186986, - "lat": 53.8522074, - "lon": -1.7461596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6728186987, - "lat": 53.8491826, - "lon": -1.7505364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6731292651, - "lat": 51.5598298, - "lon": -0.4689150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB10 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6732344987, - "lat": 52.2113271, - "lon": 1.5518329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:type": "wall", - "ref": "IP16 4610", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6732344988, - "lat": 52.2101913, - "lon": 1.5743011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "lamp", - "ref": "IP16 4639", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6732344989, - "lat": 52.2060616, - "lon": 1.5896957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP16 4688", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6732344990, - "lat": 52.1996178, - "lon": 1.5781662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "IP16 4665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6732344991, - "lat": 52.1935799, - "lon": 1.5628561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "post_box:type": "lamp", - "ref": "IP17 4669", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6732344992, - "lat": 52.1951188, - "lon": 1.5573885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6732344993, - "lat": 52.1927668, - "lon": 1.5586276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4647", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6732344994, - "lat": 52.1913660, - "lon": 1.5606272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "IP17 4676", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6733234898, - "lat": 57.1195964, - "lon": -2.1134799, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB12 5RB", - "addr:street": "Faulds Gate", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 198D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6733298084, - "lat": 57.1211984, - "lon": -2.1096244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 623D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6733435335, - "lat": 53.8452689, - "lon": -1.7731281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD17 954D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6733435336, - "lat": 53.8437673, - "lon": -1.7798650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6735259660, - "lat": 52.2032442, - "lon": 1.4895031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6735259661, - "lat": 52.2120789, - "lon": 1.4910319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "post_box:type": "wall", - "ref": "IP17 4615", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6735259662, - "lat": 52.2136582, - "lon": 1.4821887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP17 4692D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6735259663, - "lat": 52.2178225, - "lon": 1.4792638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP17 8208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6735271285, - "lat": 52.2175760, - "lon": 1.4840662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP17 4684D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6735271295, - "lat": 52.2176196, - "lon": 1.4910413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IP17 4626D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6735271296, - "lat": 52.2133312, - "lon": 1.4926171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "IP17 8220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6735271298, - "lat": 52.2135041, - "lon": 1.5001294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4662", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6735324447, - "lat": 52.3559258, - "lon": 1.6215683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "NR34 3465" - } -}, -{ - "type": "node", - "id": 6738182920, - "lat": 53.1926348, - "lon": -2.5140922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 207D" - } -}, -{ - "type": "node", - "id": 6738576309, - "lat": 51.1987014, - "lon": 0.5231928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 132" - } -}, -{ - "type": "node", - "id": 6739227621, - "lat": 53.2219335, - "lon": -2.7860083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 105D" - } -}, -{ - "type": "node", - "id": 6740094259, - "lat": 57.0612381, - "lon": -2.5599217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-08", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 428", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6741986145, - "lat": 55.8023036, - "lon": -2.2079268, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TD11 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6742176081, - "lat": 53.2010920, - "lon": -2.3563846, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-07", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "two apertures, CW4 140 and CW4 1140", - "ref": "CW4 140", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6742314262, - "lat": 53.6225248, - "lon": -1.8965404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD7 380" - } -}, -{ - "type": "node", - "id": 6742499574, - "lat": 51.6388453, - "lon": -2.6739263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6742519753, - "lat": 51.3868266, - "lon": -2.2811319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA15 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6742575377, - "lat": 54.9475829, - "lon": -1.3643665, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6742694922, - "lat": 52.9689323, - "lon": 0.8490178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NR23 2306", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6742936389, - "lat": 54.7362437, - "lon": -2.1805930, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DL13 111" - } -}, -{ - "type": "node", - "id": 6743603317, - "lat": 53.4566281, - "lon": -2.1810391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M18 549", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6743729140, - "lat": 53.4169052, - "lon": -1.2786683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S66 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6743784157, - "lat": 53.4213805, - "lon": -1.2811749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "S66 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6743823802, - "lat": 53.4242709, - "lon": -1.2724299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 166D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6743833496, - "lat": 53.4235728, - "lon": -1.2646258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6743869345, - "lat": 53.4279129, - "lon": -1.2700076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 164D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6743998182, - "lat": 53.4242157, - "lon": -1.2583449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S66 179D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6744054311, - "lat": 53.4204422, - "lon": -1.2872920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6744672561, - "lat": 50.7956756, - "lon": 0.3210596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "indoor": "yes", - "note": "Located inside ASDA", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wooden_box", - "ref": "BN23 874", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795670, - "lat": 53.5755906, - "lon": -1.6481748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795671, - "lat": 53.5887766, - "lon": -1.6492909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795672, - "lat": 53.5951001, - "lon": -1.6526700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795673, - "lat": 53.5804586, - "lon": -1.6648572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 209", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795674, - "lat": 53.5953929, - "lon": -1.6725444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795675, - "lat": 53.5970997, - "lon": -1.6855563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795676, - "lat": 53.5989859, - "lon": -1.6940187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795678, - "lat": 53.5956559, - "lon": -1.7073971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795679, - "lat": 53.5939458, - "lon": -1.6989747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 79D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6745795680, - "lat": 53.5667845, - "lon": -1.6962955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6746052565, - "lat": 54.9959238, - "lon": -2.3905939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "NE47 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6747124995, - "lat": 55.7413699, - "lon": -4.1962677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "inside supermarket", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G75 1506", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6747129703, - "lat": 56.3308455, - "lon": -3.7288593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH3 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6747129704, - "lat": 56.3844334, - "lon": -3.6320208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 100", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6753061472, - "lat": 51.1798247, - "lon": 0.5520697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN12 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6753843147, - "lat": 54.1358089, - "lon": -3.1781655, - "tags": { - "amenity": "post_box", - "ref": "LA13 44" - } -}, -{ - "type": "node", - "id": 6753843160, - "lat": 54.1241468, - "lon": -3.1739385, - "tags": { - "amenity": "post_box", - "ref": "LA13 97" - } -}, -{ - "type": "node", - "id": 6753843165, - "lat": 54.1423183, - "lon": -3.1566078, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA13 48", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6753843509, - "lat": 54.0872470, - "lon": -3.1604659, - "tags": { - "amenity": "post_box", - "ref": "LA13 80" - } -}, -{ - "type": "node", - "id": 6753843510, - "lat": 54.0842321, - "lon": -3.1703856, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA13 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6754040242, - "lat": 51.4285192, - "lon": -0.3547426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW12 227" - } -}, -{ - "type": "node", - "id": 6754216385, - "lat": 52.9530201, - "lon": -3.0630317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1242639123022757", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 6754340602, - "lat": 53.7273039, - "lon": -1.5525648, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2019-05-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "WF3 170D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6754346054, - "lat": 53.5734941, - "lon": -1.7294902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6754459031, - "lat": 51.0396844, - "lon": -3.1543685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "colour": "red", - "direction": "ESE", - "location": "outdoor", - "name": "Norton Manor Camp", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TA2 6PF", - "ref": "TA2 458" - } -}, -{ - "type": "node", - "id": 6754528603, - "lat": 53.7219399, - "lon": -1.1935860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6754567943, - "lat": 53.8428004, - "lon": -1.7753323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6755551480, - "lat": 54.1136039, - "lon": -3.1893937, - "tags": { - "amenity": "post_box", - "ref": "LA13 82" - } -}, -{ - "type": "node", - "id": 6755551481, - "lat": 54.1140801, - "lon": -3.1850728, - "tags": { - "amenity": "post_box", - "ref": "LA13 121" - } -}, -{ - "type": "node", - "id": 6755853881, - "lat": 54.4835761, - "lon": -6.0192252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6757409984, - "lat": 54.1207478, - "lon": -3.1884183, - "tags": { - "amenity": "post_box", - "ref": "LA13 73" - } -}, -{ - "type": "node", - "id": 6757448804, - "lat": 54.1301312, - "lon": -3.2031597, - "tags": { - "amenity": "post_box", - "ref": "LA13 91" - } -}, -{ - "type": "node", - "id": 6757448805, - "lat": 54.1301909, - "lon": -3.2110561, - "tags": { - "amenity": "post_box", - "ref": "LA13 26" - } -}, -{ - "type": "node", - "id": 6757448806, - "lat": 54.1250797, - "lon": -3.2106806, - "tags": { - "amenity": "post_box", - "ref": "LA13 63" - } -}, -{ - "type": "node", - "id": 6757448808, - "lat": 54.1327974, - "lon": -3.2083862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LA13 9" - } -}, -{ - "type": "node", - "id": 6757448991, - "lat": 54.1109833, - "lon": -3.2081895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "LA13 20", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6757449002, - "lat": 54.1169686, - "lon": -3.1916745, - "tags": { - "amenity": "post_box", - "ref": "LA13 28" - } -}, -{ - "type": "node", - "id": 6757449003, - "lat": 54.1134939, - "lon": -3.2030256, - "tags": { - "amenity": "post_box", - "ref": "LA13 89" - } -}, -{ - "type": "node", - "id": 6757449007, - "lat": 54.1211879, - "lon": -3.1830301, - "tags": { - "amenity": "post_box", - "ref": "LA13 34" - } -}, -{ - "type": "node", - "id": 6757449014, - "lat": 54.1176698, - "lon": -3.2076121, - "tags": { - "amenity": "post_box", - "ref": "LA13 108" - } -}, -{ - "type": "node", - "id": 6757449016, - "lat": 54.1165536, - "lon": -3.1995119, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA13 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6757449020, - "lat": 54.1218573, - "lon": -3.2159704, - "tags": { - "amenity": "post_box", - "ref": "LA13 2" - } -}, -{ - "type": "node", - "id": 6757449034, - "lat": 54.1118400, - "lon": -3.2003380, - "tags": { - "amenity": "post_box", - "ref": "LA13 49" - } -}, -{ - "type": "node", - "id": 6757959573, - "lat": 54.7994917, - "lon": -2.3651879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA9 252D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6758044179, - "lat": 53.6862592, - "lon": -1.2148312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6759033360, - "lat": 50.9228815, - "lon": -3.5010396, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6759746290, - "lat": 51.0418023, - "lon": 0.1580398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN6 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6760478483, - "lat": 54.5693349, - "lon": -1.9284419, - "tags": { - "amenity": "post_box", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6760507269, - "lat": 53.8474515, - "lon": -1.7924206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6760507270, - "lat": 53.8477821, - "lon": -1.7796353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6760507271, - "lat": 53.8531533, - "lon": -1.7664950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6761377630, - "lat": 53.5649460, - "lon": -2.4585627, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6761616569, - "lat": 53.5985801, - "lon": -1.7029058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 452D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6761818165, - "lat": 53.2843067, - "lon": -3.5824785, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 6761829616, - "lat": 53.2734511, - "lon": -2.4601461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6762147038, - "lat": 52.6068207, - "lon": -3.0010327, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6762147041, - "lat": 52.5980080, - "lon": -2.9970805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6762570057, - "lat": 53.3903126, - "lon": -3.0192878, - "tags": { - "amenity": "post_box", - "description": "Double (Type C) QE II post box in Grange Road East outside the former Argyle Street Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "postal_code": "CH41", - "ref": "CH41 422;CH41 423", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Type C post box CH41 422 & 423 at Post Office House.jpg" - } -}, -{ - "type": "node", - "id": 6763812435, - "lat": 54.3916717, - "lon": -1.4473035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "661959118885334", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "survey:date": "2023-08-09" - } -}, -{ - "type": "node", - "id": 6764002287, - "lat": 53.8287806, - "lon": -1.8218569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD16 627D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6764875019, - "lat": 53.4222323, - "lon": -3.0596813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH45 401 by Carron Company on Claremount Road, Wallasey at junction with Broadway Avenue.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 401", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Claremount Road.jpg" - } -}, -{ - "type": "node", - "id": 6764875021, - "lat": 53.4335202, - "lon": -3.0579636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria post box CH45 191 by Handyside on Warren Drive, New Brighton, Merseyside. Described by RM as Linksway but it's actually closer to Zetland Road.", - "manufacturer": "Andrew Handyside and Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 191", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Warren Drive near Linksway.jpg" - } -}, -{ - "type": "node", - "id": 6765028036, - "lat": 54.4821700, - "lon": -1.5559660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6765093363, - "lat": 54.5254196, - "lon": -1.6246624, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6766522700, - "lat": 53.7912275, - "lon": -2.6859346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 460" - } -}, -{ - "type": "node", - "id": 6766524981, - "lat": 53.3535666, - "lon": -2.9927760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "description": "GVIR type B post box CH62 208 on Bolton Road West, Port Sunlight.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 208", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wikimedia_commons": "File:Post box at Bolton Road West, Port Sunlight.jpg" - } -}, -{ - "type": "node", - "id": 6766612528, - "lat": 51.8991881, - "lon": 1.1382129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "CO12 63" - } -}, -{ - "type": "node", - "id": 6766626278, - "lat": 53.4381147, - "lon": -3.0512692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II wall mounted post box CH45 241 on Wellington Road at its junction with Portland Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH45 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box on Wellington Road at Portland Street.jpg" - } -}, -{ - "type": "node", - "id": 6766648486, - "lat": 53.3533408, - "lon": -2.9975738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "description": "GR type B post box CH62 373 by McDowell, Stevens on The Causeway, Port Sunlight.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 373", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on The Causeway, Port Sunlight.jpg" - } -}, -{ - "type": "node", - "id": 6767234517, - "lat": 53.4313922, - "lon": -3.0338390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II pole mounted post box CH45 155 on Magazine Brow opposite Mariner's Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH45 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Magazine Brow.jpg" - } -}, -{ - "type": "node", - "id": 6768531485, - "lat": 53.5691026, - "lon": -2.4589323, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6769498189, - "lat": 53.7861601, - "lon": -1.4058331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6770089020, - "lat": 57.1241442, - "lon": -2.1097813, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 550D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6772668486, - "lat": 51.4977854, - "lon": -0.1667884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW3 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6772844699, - "lat": 53.5863623, - "lon": -1.6297503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD8 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6773233167, - "lat": 51.4221775, - "lon": -0.5325786, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6774181563, - "lat": 55.9105719, - "lon": -3.0170976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "EH21 232", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6774182439, - "lat": 55.9181781, - "lon": -3.0335341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH21 337D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6774182440, - "lat": 55.9200550, - "lon": -3.0359381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH21 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6774421057, - "lat": 55.9422126, - "lon": -3.0520923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "note": "two apertures with same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EH21 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6774421059, - "lat": 55.9433871, - "lon": -3.0477291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EH21 6", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6774440892, - "lat": 55.9323229, - "lon": -3.0418839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EH21 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6775858058, - "lat": 51.6212979, - "lon": -0.1939359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6775912281, - "lat": 51.6234307, - "lon": -0.1925990, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6779698812, - "lat": 57.0918113, - "lon": -2.1450489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 350" - } -}, -{ - "type": "node", - "id": 6779724152, - "lat": 57.0630582, - "lon": -2.1388474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 10:45", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB12 13" - } -}, -{ - "type": "node", - "id": 6780377848, - "lat": 52.4899227, - "lon": -2.9985741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SY9 451D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6780689909, - "lat": 52.3456312, - "lon": 1.1597224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP23 7121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6780689911, - "lat": 52.3568784, - "lon": 1.1788866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP21 7120D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6780689915, - "lat": 52.3692417, - "lon": 1.2403269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP21 7176D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6780689920, - "lat": 52.3729453, - "lon": 1.2215070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7063D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6780711011, - "lat": 53.2614442, - "lon": -2.5090249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "meter", - "ref": "CW9 556P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6780711012, - "lat": 53.2615101, - "lon": -2.5089981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CW9 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6781178485, - "lat": 51.4851169, - "lon": -0.1661425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SW3 30D" - } -}, -{ - "type": "node", - "id": 6781612669, - "lat": 51.1525180, - "lon": -1.4422218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6781612670, - "lat": 51.1574987, - "lon": -1.4400767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO20 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6781612671, - "lat": 51.1597753, - "lon": -1.4269298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6781612672, - "lat": 51.1615193, - "lon": -1.4147177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO20 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6781629898, - "lat": 51.1372071, - "lon": -1.4658380, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO20 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6781638959, - "lat": 52.2730891, - "lon": 1.4987251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP17 4628", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6781651238, - "lat": 51.1115650, - "lon": -1.3415122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO21 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6781653769, - "lat": 51.0833594, - "lon": -1.3291700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO22 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6781653770, - "lat": 51.0739388, - "lon": -1.3310650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO22 297D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6783835081, - "lat": 50.9886374, - "lon": -3.1221976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6783835083, - "lat": 50.9903368, - "lon": -3.1355251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6783839013, - "lat": 53.8634988, - "lon": -0.9526058, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6783839472, - "lat": 50.9910308, - "lon": -3.1793539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6783839473, - "lat": 50.9997318, - "lon": -3.1801953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6783868268, - "lat": 53.8421963, - "lon": -1.7965679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6784270321, - "lat": 56.0683817, - "lon": -3.7697722, - "tags": { - "amenity": "post_box", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 120" - } -}, -{ - "type": "node", - "id": 6784474586, - "lat": 53.5712465, - "lon": -2.4509238, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6786681303, - "lat": 50.4354653, - "lon": -4.2616922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL12 851", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6788754601, - "lat": 54.2756855, - "lon": -2.9830072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LA12 46", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6788796361, - "lat": 54.2922394, - "lon": -3.0314045, - "tags": { - "amenity": "post_box", - "ref": "LA12 23" - } -}, -{ - "type": "node", - "id": 6788804024, - "lat": 54.3002589, - "lon": -3.0138652, - "tags": { - "amenity": "post_box", - "ref": "LA12 72" - } -}, -{ - "type": "node", - "id": 6789052177, - "lat": 57.1014020, - "lon": -2.2003210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 701" - } -}, -{ - "type": "node", - "id": 6789187826, - "lat": 56.6829188, - "lon": -5.1006084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6789813472, - "lat": 51.6447680, - "lon": 0.0681911, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6790398513, - "lat": 58.2433940, - "lon": -5.2024421, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6790466926, - "lat": 53.3078045, - "lon": -3.4698415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6790466927, - "lat": 53.3211242, - "lon": -3.4865614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6790670740, - "lat": 53.3155823, - "lon": -3.4844150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6790670741, - "lat": 53.3141225, - "lon": -3.4892466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6791301174, - "lat": 51.6220594, - "lon": -3.9914394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6791564729, - "lat": 52.2648819, - "lon": 1.5112825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP17 4680D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6791607886, - "lat": 52.1943955, - "lon": 0.1367046, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-12", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB1 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792084259, - "lat": 58.3902023, - "lon": -3.1357780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW1 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6792202372, - "lat": 53.3206213, - "lon": -3.4899542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL18 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792202373, - "lat": 53.3213026, - "lon": -3.4883101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792202374, - "lat": 53.3227773, - "lon": -3.4905221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792431546, - "lat": 53.3242586, - "lon": -3.4843244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792431547, - "lat": 53.3256506, - "lon": -3.4800748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792431548, - "lat": 53.3264251, - "lon": -3.4743335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792431549, - "lat": 53.3226808, - "lon": -3.4753658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792431550, - "lat": 53.3200830, - "lon": -3.4769341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792431551, - "lat": 53.2885225, - "lon": -3.4705017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL18 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792431553, - "lat": 53.2915489, - "lon": -3.4658003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL18 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792431554, - "lat": 53.2898855, - "lon": -3.4600777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL18 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792431555, - "lat": 53.2970685, - "lon": -3.4651105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL18 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6792599914, - "lat": 53.3190156, - "lon": -3.4725688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792599915, - "lat": 53.3165351, - "lon": -3.4689376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792599916, - "lat": 53.3223549, - "lon": -3.4702759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792599917, - "lat": 53.3107332, - "lon": -3.4717294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6792599918, - "lat": 53.3089571, - "lon": -3.4757002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6792599919, - "lat": 53.3100305, - "lon": -3.4656833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6793383901, - "lat": 53.3141345, - "lon": -3.4938768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6793383902, - "lat": 53.3163785, - "lon": -3.5019946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6793383903, - "lat": 53.3196135, - "lon": -3.4975121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6793383904, - "lat": 53.3214627, - "lon": -3.4936301, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL18 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6793508433, - "lat": 53.3126714, - "lon": -3.5142300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6793508434, - "lat": 53.3082112, - "lon": -3.5266469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6793508435, - "lat": 53.3083813, - "lon": -3.5198358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6793508436, - "lat": 53.3042758, - "lon": -3.5173877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6793508437, - "lat": 53.3016646, - "lon": -3.5160313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6793959446, - "lat": 53.8368883, - "lon": -1.7724782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6793959447, - "lat": 53.8445271, - "lon": -1.7577701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6794060981, - "lat": 51.1341287, - "lon": 0.8779634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "note": "in lobby of Asda store", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "TN24 67", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6795195861, - "lat": 52.5699823, - "lon": -0.2534410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE3 347" - } -}, -{ - "type": "node", - "id": 6795758609, - "lat": 52.2682858, - "lon": 1.5068500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP17 4674", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6795861232, - "lat": 52.2905752, - "lon": 1.5802771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "ref": "IP17 4635", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6795905549, - "lat": 53.5729011, - "lon": -2.4442311, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6796010583, - "lat": 50.1161600, - "lon": -5.2949168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TR13 113D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6796088216, - "lat": 50.4035065, - "lon": -5.0720865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "TR7 111D", - "royal_cypher": "no", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6796089573, - "lat": 57.1363479, - "lon": -2.1147281, - "tags": { - "addr:postcode": "AB10 7FN", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6796102123, - "lat": 57.1252750, - "lon": -2.1203523, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 174D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6796102431, - "lat": 55.8508488, - "lon": -4.1984753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "G31 272", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6796111619, - "lat": 50.7386679, - "lon": -3.9567184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "note": "Odd rectangular pillar box with domed top. Did have faint royal cypher above slot now covered by priority box sticker", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "EX20 14", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6796650895, - "lat": 55.9307479, - "lon": -4.3543527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 3090", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6797154994, - "lat": 56.6069780, - "lon": -4.1748127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH15 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6797499554, - "lat": 53.4988825, - "lon": -1.4260836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S74 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6797499555, - "lat": 53.5003781, - "lon": -1.4488890, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2018-01-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S74 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6797499556, - "lat": 53.4996043, - "lon": -1.4547174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S74 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6797499557, - "lat": 53.4972915, - "lon": -1.4642561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "S74 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6800346460, - "lat": 50.9235137, - "lon": -2.6159297, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6801402733, - "lat": 53.5906134, - "lon": -2.4741105, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6802069534, - "lat": 53.5057336, - "lon": -1.5654829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 1462D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6805685006, - "lat": 54.2607601, - "lon": -2.9646759, - "tags": { - "amenity": "post_box", - "ref": "LA12 75" - } -}, -{ - "type": "node", - "id": 6805689316, - "lat": 54.2857793, - "lon": -3.0839932, - "tags": { - "amenity": "post_box", - "ref": "LA12 76" - } -}, -{ - "type": "node", - "id": 6805818501, - "lat": 53.8076140, - "lon": -1.7977774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD9 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6805895348, - "lat": 52.2394996, - "lon": 0.7371074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP32 2289" - } -}, -{ - "type": "node", - "id": 6805916062, - "lat": 52.2515950, - "lon": 0.7347887, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP32 2277" - } -}, -{ - "type": "node", - "id": 6806167153, - "lat": 56.8005342, - "lon": -5.1361717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:30; Sa 14:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6806411833, - "lat": 51.3142160, - "lon": -0.1456334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CR5 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6808029842, - "lat": 51.0687017, - "lon": -1.2935808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "description": "As one enters the store this postbox is to the right of the main entrance.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO21 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6808165152, - "lat": 58.0171764, - "lon": -3.8549718, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW9 60", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6809847630, - "lat": 51.5867958, - "lon": -4.0009163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA3 66", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 6810222435, - "lat": 53.3002877, - "lon": -3.0473884, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CH64 366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6810222436, - "lat": 53.3073890, - "lon": -3.0090067, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CH64 364", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6810231521, - "lat": 53.3010916, - "lon": -2.9889880, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CH64 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6810231522, - "lat": 53.2972669, - "lon": -2.9769114, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CH66 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6810246725, - "lat": 53.3162188, - "lon": -3.0941507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "VR Type C wall box CH60 226 by W. T. Allen & Company at Gayton Hall, on Gayton Farm Road.", - "manufacturer": "W.T. Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH60 226", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Gayton Hall.jpg" - } -}, -{ - "type": "node", - "id": 6810259212, - "lat": 53.3281298, - "lon": -3.1057204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII wall-mounted lamp box CH60 280 on Queens Drive, Heswall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Queens Drive, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 6810274138, - "lat": 53.3344693, - "lon": -3.1151343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "QEII lamp box pier CH60 299 at the junction of Oldfield Road and Oldfield Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Oldfield Road, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 6810277311, - "lat": 53.3589448, - "lon": -3.1633879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH48 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box in Caldy Village context.jpg" - } -}, -{ - "type": "node", - "id": 6810314193, - "lat": 50.1869374, - "lon": -5.1140635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6810314705, - "lat": 50.6944154, - "lon": -3.1812637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX10 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6810335939, - "lat": 50.2751839, - "lon": -4.8480313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6810518836, - "lat": 51.3192953, - "lon": -2.2108348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "This postbox is inside Asda immediately inside the store entrance.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA14 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6811793378, - "lat": 52.1499426, - "lon": 0.7460593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP29 2023", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6811845020, - "lat": 52.1596920, - "lon": 0.7149597, - "tags": { - "amenity": "post_box", - "ref": "IP29 2081" - } -}, -{ - "type": "node", - "id": 6811845036, - "lat": 52.1550058, - "lon": 0.7249615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP29 2130", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6812492322, - "lat": 53.4897506, - "lon": -2.2185557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6813114339, - "lat": 53.3935586, - "lon": -3.1836765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VII Type B wall box CH47 274 on Marine Road, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH47 274", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Marine Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 6813114340, - "lat": 53.3872688, - "lon": -3.1840265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "Queen Victoria Type B post box CH47 178 by Andrew Handyside at the entrance of Royal Liverpool Golf Club, Meols Drive, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 178", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Royal Liverpool Golf Club.jpg" - } -}, -{ - "type": "node", - "id": 6813114341, - "lat": 53.3817877, - "lon": -3.1852010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "description": "QEII lamp box pier CH47 252 on Meols Drive at Leas Park, Hoylake.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH47 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Leas Park, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 6813183643, - "lat": 53.4047890, - "lon": -3.1618638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "red", - "description": "EIIR Type B post box CH47 120 with pouch box on Meols Parade.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Meols Parade.jpg" - } -}, -{ - "type": "node", - "id": 6813183644, - "lat": 53.4010520, - "lon": -3.1717799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "description": "EIIR Type B post box CH47 475 on Meols Parade at Wynstay Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Wynstay Road, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 6813926523, - "lat": 52.9625100, - "lon": 0.6369026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE31 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-16" - } -}, -{ - "type": "node", - "id": 6813933434, - "lat": 54.8990367, - "lon": -5.8603478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT40 727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6813933435, - "lat": 54.8774577, - "lon": -5.8324622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT40 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6813933436, - "lat": 54.8575408, - "lon": -5.8134386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT40 698", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6813933442, - "lat": 54.8476385, - "lon": -5.8291148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT40 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6813938752, - "lat": 54.9889902, - "lon": -5.9930091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT44 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6813949943, - "lat": 55.1881985, - "lon": -6.6323894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT56 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6813976981, - "lat": 52.9319087, - "lon": 1.2676830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-04-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "NR27 2746D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6813992103, - "lat": 52.9340136, - "lon": 1.2801379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR27 2743D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-18" - } -}, -{ - "type": "node", - "id": 6814012297, - "lat": 52.8845350, - "lon": 1.4202967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "information_plate:date": "2016-09-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NR11 1159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6814051847, - "lat": 52.7890437, - "lon": 1.6019795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NR12 1222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2019-09-18" - } -}, -{ - "type": "node", - "id": 6814269827, - "lat": 52.2393474, - "lon": -0.8956479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN1 402" - } -}, -{ - "type": "node", - "id": 6814503738, - "lat": 53.6199362, - "lon": -2.4305696, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6815897831, - "lat": 51.1918638, - "lon": 0.2708293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TN9 25D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6816153206, - "lat": 55.1907472, - "lon": -6.6560090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT56 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6816173446, - "lat": 55.1978594, - "lon": -6.6723503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT56 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6816182479, - "lat": 50.8890038, - "lon": -1.5790647, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6816183238, - "lat": 50.9008729, - "lon": -1.5997239, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6816184814, - "lat": 50.8724158, - "lon": -1.5885678, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6816192415, - "lat": 50.9044922, - "lon": -1.6060674, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6816193439, - "lat": 55.1880389, - "lon": -6.7182422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT55 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6816206322, - "lat": 55.1718286, - "lon": -6.7106375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT55 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6817149292, - "lat": 53.6148610, - "lon": -2.4247275, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6817385942, - "lat": 57.0685851, - "lon": -2.1512823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "AB12 911P" - } -}, -{ - "type": "node", - "id": 6817385943, - "lat": 57.0686106, - "lon": -2.1513888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB12 613" - } -}, -{ - "type": "node", - "id": 6817475993, - "lat": 53.3014410, - "lon": -3.4093923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL18 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6818027927, - "lat": 57.0625894, - "lon": -2.1389346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 536D" - } -}, -{ - "type": "node", - "id": 6818125702, - "lat": 57.0568336, - "lon": -2.1156913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB12 534D" - } -}, -{ - "type": "node", - "id": 6818278677, - "lat": 56.5114264, - "lon": -5.4933394, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA34 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6818278678, - "lat": 56.5221532, - "lon": -5.4976115, - "tags": { - "amenity": "post_box", - "ref": "PA34 46" - } -}, -{ - "type": "node", - "id": 6818278679, - "lat": 56.5098366, - "lon": -5.5139318, - "tags": { - "amenity": "post_box", - "ref": "PA34 39" - } -}, -{ - "type": "node", - "id": 6818305435, - "lat": 56.5384986, - "lon": -5.4723678, - "tags": { - "amenity": "post_box", - "ref": "PA34 48" - } -}, -{ - "type": "node", - "id": 6818305508, - "lat": 56.5524427, - "lon": -5.4479361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA34 91", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6819603567, - "lat": 53.6151726, - "lon": -2.4189695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6821286655, - "lat": 52.6746426, - "lon": 0.9025614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1938", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6821286668, - "lat": 52.6788521, - "lon": 0.9221855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1937", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6822307639, - "lat": 57.8779353, - "lon": -4.0268614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV25 338D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6823603397, - "lat": 51.5230878, - "lon": -0.7137868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6824165051, - "lat": 51.4489218, - "lon": -2.1401382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SN14 353D" - } -}, -{ - "type": "node", - "id": 6825091091, - "lat": 53.2019475, - "lon": -2.5136107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "ref": "CW7 222" - } -}, -{ - "type": "node", - "id": 6828753371, - "lat": 54.4738119, - "lon": -7.6325610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT94 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6828753372, - "lat": 54.2165379, - "lon": -7.3911595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT92 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6828923532, - "lat": 54.3438531, - "lon": -6.4813355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT60 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6828941430, - "lat": 53.5925182, - "lon": -1.6098455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 364D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6828941431, - "lat": 53.5941469, - "lon": -1.6114937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6828941432, - "lat": 53.5923179, - "lon": -1.6185965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD8 190D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6828941433, - "lat": 53.5954694, - "lon": -1.6172487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6828957250, - "lat": 54.3464391, - "lon": -6.7757361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT60 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6829055336, - "lat": 54.3556481, - "lon": -6.4144385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT62 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6829077220, - "lat": 54.4420368, - "lon": -6.3059056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT66 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6829565935, - "lat": 53.8203983, - "lon": -1.7216358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6830324663, - "lat": 51.3070361, - "lon": -0.7549802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU14 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6830469218, - "lat": 51.3430350, - "lon": -0.8299651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU46 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6831040031, - "lat": 51.3311673, - "lon": -0.7937270, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-03-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU17 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6832778882, - "lat": 54.6295589, - "lon": -5.9136878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "description": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BT3 380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6832778883, - "lat": 54.6295595, - "lon": -5.9137411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT3 915", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6832778884, - "lat": 54.6235589, - "lon": -5.9159499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT3 823", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6832780463, - "lat": 54.4971101, - "lon": -6.1381001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT28 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6832829485, - "lat": 54.6138250, - "lon": -5.9197942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "description": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BT3 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6832899783, - "lat": 54.2094084, - "lon": -2.9457842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:type": "wall", - "ref": "LA11 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6832934273, - "lat": 54.2245999, - "lon": -2.9398573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "post_box:type": "wall", - "ref": "LA11 133", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6833060205, - "lat": 53.3890706, - "lon": -3.0921218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box CH49 428 on Manor Drive, Upton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 428", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Manor Drive, Upton.jpg" - } -}, -{ - "type": "node", - "id": 6833060206, - "lat": 53.3883378, - "lon": -3.1014827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B wall post box CH49 442 by Derby Casting Limited at Upland Road on Moreton Road, Upton.", - "manufacturer": "Derby Castings Limited, Derby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH49 442", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Upland Road, Upton.jpg" - } -}, -{ - "type": "node", - "id": 6833060207, - "lat": 53.3932158, - "lon": -3.0984446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH49 575 by Carronade on the corner of Ronaldsway and Manor Drive, Upton. Was formerly on Crosby Close at the far end of Ronaldsway.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 575", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Ronaldsway, Upton.jpg" - } -}, -{ - "type": "node", - "id": 6833950458, - "lat": 53.4588275, - "lon": -2.9975671, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L20 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6833950459, - "lat": 53.4508123, - "lon": -2.9909232, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "L20 679", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6833950460, - "lat": 53.4412794, - "lon": -2.9944906, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "L20 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6833950461, - "lat": 53.4412586, - "lon": -2.9944584, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "L20 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6837605452, - "lat": 56.3763014, - "lon": -3.9823490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH6 9D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6837923045, - "lat": 56.5916603, - "lon": -3.3404592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH10 5", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6838217776, - "lat": 53.3248206, - "lon": -3.4864256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6838385553, - "lat": 51.1002064, - "lon": -0.8643395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6838465957, - "lat": 52.5755604, - "lon": -0.3850184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE5 67" - } -}, -{ - "type": "node", - "id": 6838941431, - "lat": 51.0829996, - "lon": -1.9773426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6838972691, - "lat": 51.1814641, - "lon": -1.6776252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6838978414, - "lat": 51.0592375, - "lon": -1.9966860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP3 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6838983099, - "lat": 51.1182866, - "lon": -1.8864848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP2 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6838983100, - "lat": 51.1205478, - "lon": -1.8804914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP2 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6839212722, - "lat": 53.3914201, - "lon": -3.0958057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH49 407 on Upton Park Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Upton Park Drive.jpg" - } -}, -{ - "type": "node", - "id": 6841957522, - "lat": 50.7347959, - "lon": -0.8062361, - "tags": { - "amenity": "post_box", - "note": "This postbox is painted in yellow.", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6841991088, - "lat": 53.8651210, - "lon": -0.8197069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO42 254D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6842025861, - "lat": 54.2465005, - "lon": -1.4699513, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "YO7 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6842035764, - "lat": 54.2320655, - "lon": -1.4723069, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6842044003, - "lat": 54.2347726, - "lon": -1.4560162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "YO7 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6842142785, - "lat": 54.3114646, - "lon": -1.2818221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "post_box:type": "wall", - "ref": "YO7 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6843737250, - "lat": 53.2032894, - "lon": -2.5081886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 214" - } -}, -{ - "type": "node", - "id": 6843861066, - "lat": 51.2738694, - "lon": -0.7714897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "GU14 330;GU14 3301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6844653893, - "lat": 51.3467549, - "lon": -0.6819428, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6846508502, - "lat": 54.6236952, - "lon": -2.0685604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6846787007, - "lat": 54.5451728, - "lon": -1.8385296, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6846884671, - "lat": 54.5467481, - "lon": -1.7360197, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6848869323, - "lat": 50.9594366, - "lon": -1.3474077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 273", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6848869324, - "lat": 50.9659587, - "lon": -1.3442253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SO50 742", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6851139332, - "lat": 57.4447555, - "lon": -3.1250342, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6852122109, - "lat": 53.6095940, - "lon": -2.4082978, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6853401733, - "lat": 56.3796155, - "lon": -3.3031621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Derby Castings Limited, Derby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 132D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6853401739, - "lat": 56.3752927, - "lon": -3.3033764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 197", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 6853799139, - "lat": 53.4082611, - "lon": -2.1401503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK1 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6853799140, - "lat": 53.4057548, - "lon": -2.1343893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK2 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6853819784, - "lat": 57.6645156, - "lon": -3.1086102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "comment": "box actually in window", - "post_box:type": "wall", - "ref": "IV32 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6853851288, - "lat": 53.4217056, - "lon": -2.1656435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK4 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6854066556, - "lat": 57.1375901, - "lon": -2.1199186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 3D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6854084497, - "lat": 57.1361514, - "lon": -2.1229823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB10 94D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6854133561, - "lat": 57.1312454, - "lon": -2.1380052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6854207485, - "lat": 57.1286933, - "lon": -2.1275145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB10 81D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6854473357, - "lat": 53.3932248, - "lon": -3.0754357, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type B post box CH43 175 on Upton Road near Vyner Road South, Bidston.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 175", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Upton Road near Vyner Road South.jpg" - } -}, -{ - "type": "node", - "id": 6854611086, - "lat": 54.5549743, - "lon": -1.9711429, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6855601415, - "lat": 56.1250102, - "lon": -3.3066162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY5 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6855608413, - "lat": 52.5901136, - "lon": -0.2839283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE3 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6855802913, - "lat": 53.3152390, - "lon": -3.8347274, - "tags": { - "amenity": "post_box", - "ref": "LL30 53" - } -}, -{ - "type": "node", - "id": 6855802914, - "lat": 53.3185606, - "lon": -3.8340636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LL30 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6855802915, - "lat": 53.3213156, - "lon": -3.8385871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LL30 137", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6855802916, - "lat": 53.3228665, - "lon": -3.8328820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "ref": "LL30 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6855802919, - "lat": 53.3186752, - "lon": -3.8075244, - "tags": { - "amenity": "post_box", - "ref": "LL30 65" - } -}, -{ - "type": "node", - "id": 6855802920, - "lat": 53.3206411, - "lon": -3.8081333, - "tags": { - "amenity": "post_box", - "ref": "LL30 36" - } -}, -{ - "type": "node", - "id": 6855802921, - "lat": 53.3220189, - "lon": -3.8121003, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LL30 81", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6855880396, - "lat": 53.3123955, - "lon": -3.7731198, - "tags": { - "amenity": "post_box", - "ref": "LL30 21" - } -}, -{ - "type": "node", - "id": 6855880397, - "lat": 53.3166531, - "lon": -3.7647781, - "tags": { - "amenity": "post_box", - "ref": "LL30 40" - } -}, -{ - "type": "node", - "id": 6855880398, - "lat": 53.3187096, - "lon": -3.7677526, - "tags": { - "amenity": "post_box", - "ref": "LL30 43" - } -}, -{ - "type": "node", - "id": 6855880399, - "lat": 53.3204168, - "lon": -3.7713575, - "tags": { - "amenity": "post_box", - "ref": "LL30 11" - } -}, -{ - "type": "node", - "id": 6855880400, - "lat": 53.3152158, - "lon": -3.7741470, - "tags": { - "amenity": "post_box", - "ref": "LL30 139" - } -}, -{ - "type": "node", - "id": 6855880401, - "lat": 53.3189804, - "lon": -3.7906453, - "tags": { - "amenity": "post_box", - "ref": "LL30 7" - } -}, -{ - "type": "node", - "id": 6855880402, - "lat": 53.3234801, - "lon": -3.7910074, - "tags": { - "amenity": "post_box", - "ref": "LL30 10" - } -}, -{ - "type": "node", - "id": 6857210365, - "lat": 51.9653879, - "lon": 1.3522360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP11 1444" - } -}, -{ - "type": "node", - "id": 6859087546, - "lat": 51.5158750, - "lon": -3.2249639, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "ref": "CF14 3250" - } -}, -{ - "type": "node", - "id": 6859137556, - "lat": 51.5564516, - "lon": -0.1412149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW5 8D" - } -}, -{ - "type": "node", - "id": 6859150969, - "lat": 55.8164294, - "lon": -4.3027563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 6860016812, - "lat": 51.1160872, - "lon": -1.0309936, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6860821475, - "lat": 52.2034955, - "lon": 0.7051108, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP29 2056", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6860821476, - "lat": 52.2171478, - "lon": 0.6720319, - "tags": { - "amenity": "post_box", - "ref": "IP29 2030" - } -}, -{ - "type": "node", - "id": 6860821477, - "lat": 52.2150224, - "lon": 0.6857550, - "tags": { - "amenity": "post_box", - "ref": "IP29 2194" - } -}, -{ - "type": "node", - "id": 6860875998, - "lat": 52.2123207, - "lon": 0.7185530, - "tags": { - "amenity": "post_box", - "ref": "IP29 2142" - } -}, -{ - "type": "node", - "id": 6860876009, - "lat": 52.2161615, - "lon": 0.7307533, - "tags": { - "amenity": "post_box", - "ref": "IP29 2009" - } -}, -{ - "type": "node", - "id": 6861151252, - "lat": 54.1579649, - "lon": -2.7347968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "post_box:type": "wall", - "ref": "LA6 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6861372740, - "lat": 53.3114540, - "lon": -3.7541686, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861372741, - "lat": 53.3106744, - "lon": -3.7487546, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861372742, - "lat": 53.3112304, - "lon": -3.7435967, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861372743, - "lat": 53.3125193, - "lon": -3.7438575, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861372744, - "lat": 53.3133682, - "lon": -3.7486111, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861372745, - "lat": 53.3149754, - "lon": -3.7496424, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861387519, - "lat": 53.3020614, - "lon": -3.7598375, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861387520, - "lat": 53.3047910, - "lon": -3.7620825, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861387521, - "lat": 53.3019524, - "lon": -3.7493889, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861387522, - "lat": 53.3073265, - "lon": -3.7474564, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861387523, - "lat": 53.3080926, - "lon": -3.7440527, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493235, - "lat": 53.2977193, - "lon": -3.7296969, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493236, - "lat": 53.2933825, - "lon": -3.7366498, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493237, - "lat": 53.2974945, - "lon": -3.7343524, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493238, - "lat": 53.2992362, - "lon": -3.7314825, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6861493239, - "lat": 53.2954297, - "lon": -3.7422422, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493240, - "lat": 53.2971803, - "lon": -3.7433204, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493241, - "lat": 53.2922843, - "lon": -3.7544274, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493242, - "lat": 53.2952390, - "lon": -3.7599152, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493243, - "lat": 53.2935107, - "lon": -3.7616560, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6861493244, - "lat": 53.2918915, - "lon": -3.7623453, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6863404877, - "lat": 51.8976389, - "lon": 0.9181859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6863965005, - "lat": 56.7034507, - "lon": -2.4774268, - "tags": { - "amenity": "post_box", - "mapillary": "2461121147391340", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6863965009, - "lat": 56.7104826, - "lon": -2.4682081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "DD10 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6864906220, - "lat": 53.2811814, - "lon": -3.7927921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL31 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864906221, - "lat": 53.2857377, - "lon": -3.7961063, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906222, - "lat": 53.2870846, - "lon": -3.8001430, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906223, - "lat": 53.2838155, - "lon": -3.8000284, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906224, - "lat": 53.2837751, - "lon": -3.8035826, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL31 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864906225, - "lat": 53.2872562, - "lon": -3.8077176, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6864906227, - "lat": 53.2909608, - "lon": -3.8136466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6864906228, - "lat": 53.2902128, - "lon": -3.8177222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6864906229, - "lat": 53.2931484, - "lon": -3.8160566, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6864906230, - "lat": 53.2902321, - "lon": -3.8225663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL31 72", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6864906235, - "lat": 53.2921224, - "lon": -3.8249856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6864906236, - "lat": 53.2951981, - "lon": -3.8343063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL31 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864906237, - "lat": 53.2958457, - "lon": -3.8341346, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LL31 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6864906238, - "lat": 53.2957407, - "lon": -3.8377368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LL31 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864906239, - "lat": 53.3011653, - "lon": -3.8260612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906240, - "lat": 53.3028628, - "lon": -3.8246799, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906241, - "lat": 53.3036570, - "lon": -3.8308811, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906242, - "lat": 53.3059104, - "lon": -3.8307035, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6864906243, - "lat": 53.3039279, - "lon": -3.8155764, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LL30 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864940000, - "lat": 53.1049978, - "lon": -4.2969015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL54 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6864954873, - "lat": 53.2873273, - "lon": -3.8468874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864954875, - "lat": 53.2854601, - "lon": -3.8382881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864954876, - "lat": 53.2790555, - "lon": -3.8417816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL32 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864954877, - "lat": 53.2761911, - "lon": -3.8304225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "LL32 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6864988367, - "lat": 53.5437323, - "lon": -1.3166802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S63 228D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6865933932, - "lat": 53.2430299, - "lon": -2.5192628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW9 220" - } -}, -{ - "type": "node", - "id": 6868281948, - "lat": 53.1410373, - "lon": -4.2699480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6870009092, - "lat": 51.5047456, - "lon": -0.3331414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "1128187874352796", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "W7 29", - "survey:date": "2021-04-27" - } -}, -{ - "type": "node", - "id": 6872681184, - "lat": 53.1971483, - "lon": -2.8821657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:30", - "description": "The centre of three boxes at the same location, this QEII Type K box CH1 430 is on Station Road, Chester.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box 2, Station Road, Chester.jpg" - } -}, -{ - "type": "node", - "id": 6872723092, - "lat": 53.1962216, - "lon": -2.8849053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type A post box CH1 14 by McDowell & Stevens on Brook Street at the junction with the A56 Hoole Road.", - "drive_through": "no", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Post box on Brook Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 6872723100, - "lat": 53.1971427, - "lon": -2.8821488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:30", - "description": "The right of three boxes at the same location, this Parcel Postbox CH1 473 is on Station Road, Chester.", - "drive_through": "no", - "note": "Parcel Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH1 473P", - "royal_cypher": "no", - "wikimedia_commons": "File:Business post box on Station Road, Chester.jpg" - } -}, -{ - "type": "node", - "id": 6873017430, - "lat": 54.5173569, - "lon": -5.8884241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6873636568, - "lat": 51.0557101, - "lon": -0.1260046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH17 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6873844518, - "lat": 53.1904544, - "lon": -2.8881000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "description": "QEII Type C box by Machan at the former St John Street main post office, Chester, shared by CH1 241 and CH1 2003.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH1 241;CH1 2003", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:Post box at Chester Post Office" - } -}, -{ - "type": "node", - "id": 6874966363, - "lat": 51.8995981, - "lon": 0.9309183, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6875131017, - "lat": 53.1862863, - "lon": -2.8892394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Wall box type A on the Bridgegate, Chester, lacking a royal cypher.", - "geograph:id": "1275669", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:manufacturer": "Smith & Hawkes Birmingham", - "post_box:type": "wall", - "ref": "CH1 30", - "royal_cypher": "no", - "source": "survey", - "source:ref": "Geograph", - "wikimedia_commons": "Category:Post box at Bridgegate, Chester" - } -}, -{ - "type": "node", - "id": 6875260067, - "lat": 53.0450422, - "lon": -2.9924526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LL13 133P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6875260068, - "lat": 53.0450443, - "lon": -2.9924213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL13 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6875943140, - "lat": 53.1098903, - "lon": -4.2045209, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6875989505, - "lat": 53.0553258, - "lon": -0.7830920, - "tags": { - "amenity": "post_box", - "check_date": "2022-08-26", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6877223883, - "lat": 53.0609732, - "lon": -1.5669143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE4 714", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6877704317, - "lat": 53.1843678, - "lon": -2.8878865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Presumably old enamelled GR post box at entrance to former Post Office opposite is not in use. See https://www.geograph.org.uk/photo/751275", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6877704318, - "lat": 53.1828221, - "lon": -2.8883665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH4 77D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6877704319, - "lat": 53.1806879, - "lon": -2.8920927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6877704320, - "lat": 53.1948901, - "lon": -2.8927623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6877704321, - "lat": 53.1952521, - "lon": -2.8859910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "This QEII Type A box CH1 424 by McDowall and Stevens is actually over the road from the post office on Brook Street, Chester.", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "File:Post box at Brook Street Post Office, Chester.jpg" - } -}, -{ - "type": "node", - "id": 6878954917, - "lat": 52.9866007, - "lon": -3.0390946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6878954931, - "lat": 52.9745096, - "lon": -3.0956286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6878954933, - "lat": 52.9888991, - "lon": -3.0379829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6878954935, - "lat": 52.9802353, - "lon": -3.0767999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6878954940, - "lat": 52.9827493, - "lon": -3.0697354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6878954949, - "lat": 52.9735023, - "lon": -3.1318783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6879360930, - "lat": 57.4168565, - "lon": -1.8503622, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-18", - "collection_times": "Mo-Fr 14:45; Sa 12:00", - "note": "ref difficult to read", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB42 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6879761673, - "lat": 51.4760280, - "lon": -3.1790886, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6879783399, - "lat": 51.4751688, - "lon": -3.1787674, - "tags": { - "amenity": "post_box", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6879840617, - "lat": 53.7181060, - "lon": -1.1666538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6880984822, - "lat": 52.3155518, - "lon": 1.6728135, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP18 5552" - } -}, -{ - "type": "node", - "id": 6881071995, - "lat": 52.3183618, - "lon": 1.5986627, - "tags": { - "amenity": "post_box", - "ref": "IP19 8171" - } -}, -{ - "type": "node", - "id": 6881075576, - "lat": 52.3353703, - "lon": 1.6730453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP18 5540" - } -}, -{ - "type": "node", - "id": 6881077301, - "lat": 52.3351196, - "lon": 1.6690077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP18 5517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6881077305, - "lat": 52.3390528, - "lon": 1.6657111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IP18 5538" - } -}, -{ - "type": "node", - "id": 6881077324, - "lat": 52.3479524, - "lon": 1.6395537, - "tags": { - "amenity": "post_box", - "note": "The Royal Mail database has the position of this incorrect at the junction to the east where there is an abandoned large wall box. The real box is definitely at this location, and is a much smaller stainless steel lamp-box mounted on a metal pier.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP18 5539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6881077329, - "lat": 52.3411716, - "lon": 1.6694932, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP18 5530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6881077337, - "lat": 52.3354358, - "lon": 1.6633161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP18 5565" - } -}, -{ - "type": "node", - "id": 6881077359, - "lat": 52.3362768, - "lon": 1.6553525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP18 5543" - } -}, -{ - "type": "node", - "id": 6881109913, - "lat": 52.3231205, - "lon": 1.4577166, - "tags": { - "amenity": "post_box", - "ref": "IP19 5511" - } -}, -{ - "type": "node", - "id": 6881109925, - "lat": 52.3229227, - "lon": 1.4813756, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "IP19 5557", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6881267345, - "lat": 51.7362215, - "lon": -1.7895592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 73", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6881867845, - "lat": 53.1723496, - "lon": -2.8979346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6881867864, - "lat": 53.1238404, - "lon": -2.9334023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6882131590, - "lat": 50.2187803, - "lon": -5.2023385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6882255463, - "lat": 50.2154935, - "lon": -5.2013778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR16 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6882600747, - "lat": 52.3419791, - "lon": 1.5161908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP19 5520" - } -}, -{ - "type": "node", - "id": 6882600749, - "lat": 52.3396389, - "lon": 1.4998431, - "tags": { - "amenity": "post_box", - "ref": "IP19 5524" - } -}, -{ - "type": "node", - "id": 6882600750, - "lat": 52.3370135, - "lon": 1.4989526, - "tags": { - "amenity": "post_box", - "ref": "IP19 5504" - } -}, -{ - "type": "node", - "id": 6882600751, - "lat": 52.3457022, - "lon": 1.5025041, - "tags": { - "amenity": "post_box", - "ref": "IP19 5428" - } -}, -{ - "type": "node", - "id": 6882600753, - "lat": 52.3493035, - "lon": 1.5023536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP19 5510" - } -}, -{ - "type": "node", - "id": 6882600754, - "lat": 52.3361483, - "lon": 1.4941622, - "tags": { - "amenity": "post_box", - "ref": "IP19 5516" - } -}, -{ - "type": "node", - "id": 6882600755, - "lat": 52.3572950, - "lon": 1.5117996, - "tags": { - "amenity": "post_box", - "ref": "IP19 5506" - } -}, -{ - "type": "node", - "id": 6882600756, - "lat": 52.3439587, - "lon": 1.5090456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP19 5522" - } -}, -{ - "type": "node", - "id": 6882600757, - "lat": 52.3433556, - "lon": 1.4990867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP19 5564" - } -}, -{ - "type": "node", - "id": 6882600758, - "lat": 52.3491329, - "lon": 1.5068329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP19 5529" - } -}, -{ - "type": "node", - "id": 6882600759, - "lat": 52.3324283, - "lon": 1.5085627, - "tags": { - "amenity": "post_box", - "ref": "IP19 5507" - } -}, -{ - "type": "node", - "id": 6882600760, - "lat": 52.3343520, - "lon": 1.4988721, - "tags": { - "amenity": "post_box", - "ref": "IP19 5532" - } -}, -{ - "type": "node", - "id": 6882600761, - "lat": 52.3456660, - "lon": 1.5043973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP19 5550" - } -}, -{ - "type": "node", - "id": 6882600762, - "lat": 52.3398734, - "lon": 1.5027022, - "tags": { - "amenity": "post_box", - "ref": "IP19 5545" - } -}, -{ - "type": "node", - "id": 6883402065, - "lat": 53.5449717, - "lon": -1.7328596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD9 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6883637768, - "lat": 53.0340582, - "lon": -3.0149321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6884771191, - "lat": 53.5931842, - "lon": -2.4314233, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6884891775, - "lat": 53.5911805, - "lon": -2.4307603, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6885169373, - "lat": 52.3913347, - "lon": 1.4391363, - "tags": { - "amenity": "post_box", - "ref": "IP19 5501" - } -}, -{ - "type": "node", - "id": 6885172615, - "lat": 52.3811758, - "lon": 1.4445573, - "tags": { - "amenity": "post_box", - "ref": "IP19 5525" - } -}, -{ - "type": "node", - "id": 6885172644, - "lat": 52.3783149, - "lon": 1.4064615, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP19 5544", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6885805078, - "lat": 52.6583340, - "lon": -0.4923832, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6886246131, - "lat": 50.2118303, - "lon": -5.2534372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR16 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 6886708302, - "lat": 53.0070179, - "lon": -3.0434629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6886708319, - "lat": 52.9991952, - "lon": -3.0419930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6886708323, - "lat": 53.0039529, - "lon": -3.0429598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6886884679, - "lat": 52.8704020, - "lon": -3.0279926, - "tags": { - "amenity": "post_box", - "fixme": "location approximate", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6887211000, - "lat": 50.9761377, - "lon": -3.2534273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6888835244, - "lat": 52.4064388, - "lon": 1.3048857, - "tags": { - "amenity": "post_box", - "ref": "IP20 7011" - } -}, -{ - "type": "node", - "id": 6888835256, - "lat": 52.4029829, - "lon": 1.3065648, - "tags": { - "amenity": "post_box", - "ref": "IP20 7168" - } -}, -{ - "type": "node", - "id": 6893688762, - "lat": 52.4219729, - "lon": -1.5284182, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-09", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 218D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6896130184, - "lat": 56.5679916, - "lon": -2.5798787, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6896501851, - "lat": 55.6845175, - "lon": -2.0020912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD15 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6898435168, - "lat": 52.5754976, - "lon": -0.3527927, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE5 332" - } -}, -{ - "type": "node", - "id": 6899257830, - "lat": 53.5694203, - "lon": -0.6274686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN16 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6901034743, - "lat": 53.1418426, - "lon": -3.8012803, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6901034744, - "lat": 53.1394723, - "lon": -3.7951486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL26 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6901034749, - "lat": 53.1111518, - "lon": -3.7825973, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6901886016, - "lat": 51.9990210, - "lon": -2.9431940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "HR1 264", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6901922329, - "lat": 52.0128078, - "lon": -2.9722711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "HR2 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6903936537, - "lat": 57.0778226, - "lon": -4.0536940, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-03-03", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH21 44D", - "royal_cypher": "EVIIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6904059517, - "lat": 51.5730405, - "lon": 0.2064850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6904841886, - "lat": 51.0722103, - "lon": -4.0483740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX32 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6906531115, - "lat": 53.7802268, - "lon": -2.8970010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR4 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6906635650, - "lat": 51.8704525, - "lon": 0.1547523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "ref": "CM23 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6907184208, - "lat": 54.9600298, - "lon": -4.4831880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DG8 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6910518773, - "lat": 53.5102524, - "lon": -1.7039721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate:date": "2017-07-19", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S36 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6911753046, - "lat": 54.8673062, - "lon": -1.4415494, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6912850196, - "lat": 53.5255216, - "lon": -1.6670069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6912865880, - "lat": 56.5695432, - "lon": -5.7538453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA80 130" - } -}, -{ - "type": "node", - "id": 6913091579, - "lat": 52.7681744, - "lon": 0.5494371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6914007939, - "lat": 54.4119025, - "lon": -7.1702785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 16:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BT76 109" - } -}, -{ - "type": "node", - "id": 6914065516, - "lat": 54.7117925, - "lon": -5.8198687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT38 356" - } -}, -{ - "type": "node", - "id": 6914860957, - "lat": 56.4110905, - "lon": -5.4745206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA34 1000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6914860959, - "lat": 56.4148636, - "lon": -5.4694654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PA34 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6915049954, - "lat": 50.8537303, - "lon": 0.5278150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN38 247D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6915140042, - "lat": 52.7208622, - "lon": 0.5789401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6916621971, - "lat": 56.0378810, - "lon": -3.5010044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY11 158", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6916798682, - "lat": 52.4409029, - "lon": -0.5135069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00", - "fixme": "resurvey", - "note": "Driveby. there's a Saturday collection, didn't note the time.", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6916840603, - "lat": 54.6551352, - "lon": -7.7617085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT81 126" - } -}, -{ - "type": "node", - "id": 6916848506, - "lat": 54.6773233, - "lon": -7.7205946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT81 131" - } -}, -{ - "type": "node", - "id": 6916869588, - "lat": 54.7069708, - "lon": -7.7096554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT81 125" - } -}, -{ - "type": "node", - "id": 6916977977, - "lat": 54.7505842, - "lon": -5.9951469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT39 228" - } -}, -{ - "type": "node", - "id": 6917023541, - "lat": 52.5692843, - "lon": -0.2437869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6917132961, - "lat": 54.6637226, - "lon": -5.6439546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 772", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6917155023, - "lat": 54.6753576, - "lon": -5.9150131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 405" - } -}, -{ - "type": "node", - "id": 6918644188, - "lat": 54.2303262, - "lon": -3.0995871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "post_box:type": "wall", - "ref": "LA12 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6918836769, - "lat": 54.9724191, - "lon": -2.0007477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE45 160D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6919691196, - "lat": 51.3313725, - "lon": -0.5026406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU22 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey", - "source_1": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 6920022308, - "lat": 54.2446011, - "lon": -2.9329198, - "tags": { - "amenity": "post_box", - "ref": "LA11 122" - } -}, -{ - "type": "node", - "id": 6920047457, - "lat": 54.2361714, - "lon": -2.9301346, - "tags": { - "amenity": "post_box", - "ref": "LA11 123" - } -}, -{ - "type": "node", - "id": 6920047539, - "lat": 54.2381430, - "lon": -2.9216721, - "tags": { - "amenity": "post_box", - "ref": "LA11 148" - } -}, -{ - "type": "node", - "id": 6920047540, - "lat": 54.2332097, - "lon": -2.9134388, - "tags": { - "amenity": "post_box", - "ref": "LA11 144" - } -}, -{ - "type": "node", - "id": 6921302706, - "lat": 56.0989181, - "lon": -3.4059857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 21", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 6923643490, - "lat": 53.8465598, - "lon": -1.7650509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6925582344, - "lat": 53.5928193, - "lon": -2.4388957, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6926631286, - "lat": 52.6562353, - "lon": 0.7754266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6926631415, - "lat": 52.6661163, - "lon": 0.7327198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6926781261, - "lat": 55.0028179, - "lon": -1.5719824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6932019535, - "lat": 50.4471155, - "lon": -5.0045061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 6932456388, - "lat": 52.1403266, - "lon": 1.1999180, - "tags": { - "amenity": "post_box", - "ref": "IP6 1111" - } -}, -{ - "type": "node", - "id": 6932456416, - "lat": 52.1304287, - "lon": 1.1956640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1014", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6932456431, - "lat": 52.1525394, - "lon": 1.2059959, - "tags": { - "amenity": "post_box", - "ref": "IP6 1292" - } -}, -{ - "type": "node", - "id": 6932774693, - "lat": 51.5347996, - "lon": -0.2039201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6932774694, - "lat": 51.5363143, - "lon": -0.1972488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW6 38D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6935123152, - "lat": 52.1692194, - "lon": 1.1414301, - "tags": { - "amenity": "post_box", - "ref": "IP6 1277" - } -}, -{ - "type": "node", - "id": 6935123165, - "lat": 52.1727099, - "lon": 1.1460083, - "tags": { - "amenity": "post_box", - "ref": "IP6 1174" - } -}, -{ - "type": "node", - "id": 6937080904, - "lat": 52.1109591, - "lon": 0.9491673, - "tags": { - "amenity": "post_box", - "ref": "IP7 1428" - } -}, -{ - "type": "node", - "id": 6937080938, - "lat": 52.1028909, - "lon": 0.9533702, - "tags": { - "amenity": "post_box", - "ref": "IP7 1326" - } -}, -{ - "type": "node", - "id": 6937106905, - "lat": 52.0916541, - "lon": 0.8691829, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP7 1235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6937673333, - "lat": 52.5925701, - "lon": -0.2346347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 231", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6937769179, - "lat": 52.1094330, - "lon": 0.9111947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP7 1350", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6937785047, - "lat": 52.1045735, - "lon": 0.9104985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1449" - } -}, -{ - "type": "node", - "id": 6938002811, - "lat": 52.6843091, - "lon": -1.7762154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 6938040892, - "lat": 51.2800299, - "lon": -1.0389349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "RG24 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6939602187, - "lat": 52.5886145, - "lon": -0.2398810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron, Scotland (?)", - "material": "cast_iron", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 132D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6939926681, - "lat": 51.3732342, - "lon": -1.0376997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG7 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6939944198, - "lat": 54.0937210, - "lon": -6.1902518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 6939991989, - "lat": 51.3494389, - "lon": -1.0428929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG7 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6940016500, - "lat": 51.4011945, - "lon": -0.8754559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG41 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6940059604, - "lat": 51.3960704, - "lon": -0.8810373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG41 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6940124292, - "lat": 51.3546714, - "lon": -0.8888412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG27 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6940124294, - "lat": 51.3546932, - "lon": -0.9020484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1049683312837108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG27 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-10-01" - } -}, -{ - "type": "node", - "id": 6940124295, - "lat": 51.3632949, - "lon": -0.8987660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1446111899567203", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG40 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-20" - } -}, -{ - "type": "node", - "id": 6940124296, - "lat": 51.3752061, - "lon": -0.8858854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1206754603242418", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG40 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-13" - } -}, -{ - "type": "node", - "id": 6940143433, - "lat": 51.3418473, - "lon": -0.8601174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG27 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6940283874, - "lat": 51.3992810, - "lon": -0.2030741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 196D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6940401236, - "lat": 51.2970891, - "lon": -0.8710708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG27 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6942704759, - "lat": 51.4054135, - "lon": -2.3173038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "mapillary": "1098917527505863", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA1 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 6942736324, - "lat": 51.3960379, - "lon": -2.1700648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SN12 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6942958776, - "lat": 51.3761574, - "lon": -0.1927191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6943235433, - "lat": 53.5420580, - "lon": -1.5241005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S75 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6943810603, - "lat": 51.1785502, - "lon": -0.9223567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 16", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 6943810606, - "lat": 51.1827141, - "lon": -0.9181765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6943810608, - "lat": 51.1913334, - "lon": -0.9133177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU34 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6943810609, - "lat": 51.1942583, - "lon": -0.9173477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "letters_only": "yes", - "mapillary": "2537218979764716", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-07-16" - } -}, -{ - "type": "node", - "id": 6945151386, - "lat": 51.5003560, - "lon": -2.5601167, - "tags": { - "addr:street": "Long Down Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS16 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6945406723, - "lat": 51.4945291, - "lon": -0.1859682, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW7 1D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6946141394, - "lat": 53.4505470, - "lon": -2.1164827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "Bing Streetside" - } -}, -{ - "type": "node", - "id": 6948094610, - "lat": 53.2408726, - "lon": -2.5159201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW9 143" - } -}, -{ - "type": "node", - "id": 6948573995, - "lat": 51.4143048, - "lon": 0.0204016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "BR1 52" - } -}, -{ - "type": "node", - "id": 6949611716, - "lat": 54.4961312, - "lon": -7.3201316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "BT78 151" - } -}, -{ - "type": "node", - "id": 6952801849, - "lat": 51.7220547, - "lon": 0.4492100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "parcel_mail_in": "yes", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 6953564751, - "lat": 51.2298248, - "lon": -0.4650677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "letters_only": "yes", - "note": "stuck on the corner of the building", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "GU5 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6958284052, - "lat": 50.4028041, - "lon": -4.6061154, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 6958965937, - "lat": 53.5230437, - "lon": -2.7158987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "historic:period": "1815- 1919", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN5 41", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 6959041844, - "lat": 53.5338307, - "lon": -2.6624026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "historic:period": "1914 - 1951", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN5 201", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6959187292, - "lat": 53.5389509, - "lon": -2.6541733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 33", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6961397188, - "lat": 51.5208046, - "lon": -0.1164731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WC1X 38D;WC1X 238D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6961570185, - "lat": 51.5704703, - "lon": -0.0955335, - "tags": { - "amenity": "post_box", - "mapillary": "149788541000050", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-01" - } -}, -{ - "type": "node", - "id": 6961659803, - "lat": 51.1628922, - "lon": -0.5877417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964204094, - "lat": 51.9774294, - "lon": 1.2553216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1099", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964204129, - "lat": 51.9892697, - "lon": 1.2083893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP9 1186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964204137, - "lat": 51.9805320, - "lon": 1.2343690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP9 1105", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6964204138, - "lat": 51.9961395, - "lon": 1.2120554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1129" - } -}, -{ - "type": "node", - "id": 6964204143, - "lat": 51.9654208, - "lon": 1.2650173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_pillar", - "post_box:type": "lamp", - "ref": "IP9 1030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964204152, - "lat": 51.9612612, - "lon": 1.2643826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1240" - } -}, -{ - "type": "node", - "id": 6964268812, - "lat": 52.0038990, - "lon": 1.0884190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1033", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964268821, - "lat": 51.9693056, - "lon": 1.1174193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP9 1140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964268831, - "lat": 51.9716002, - "lon": 1.1681290, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP9 1270" - } -}, -{ - "type": "node", - "id": 6964268859, - "lat": 51.9960365, - "lon": 1.0821719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964270831, - "lat": 52.0042812, - "lon": 1.0346412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964270833, - "lat": 51.9664779, - "lon": 1.1437583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP9 1090" - } -}, -{ - "type": "node", - "id": 6964270846, - "lat": 51.9723039, - "lon": 1.1928345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IP9 1161" - } -}, -{ - "type": "node", - "id": 6964270853, - "lat": 51.9654835, - "lon": 1.2244559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6964664020, - "lat": 52.1013532, - "lon": -2.1312097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WR8 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6966123590, - "lat": 53.1930944, - "lon": -2.4913323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 191" - } -}, -{ - "type": "node", - "id": 6966123591, - "lat": 53.1930743, - "lon": -2.4913377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 213P" - } -}, -{ - "type": "node", - "id": 6966341093, - "lat": 51.5567171, - "lon": -0.1302547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 31", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6966661520, - "lat": 51.0917768, - "lon": 1.1963260, - "tags": { - "amenity": "post_box", - "ref": "CT19 181" - } -}, -{ - "type": "node", - "id": 6967483250, - "lat": 52.5920111, - "lon": -0.2443412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "ref": "PE1 228" - } -}, -{ - "type": "node", - "id": 6967866332, - "lat": 51.6150889, - "lon": -3.9629468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6970375393, - "lat": 53.6006590, - "lon": -2.0967501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6974988127, - "lat": 54.5913117, - "lon": -1.9233159, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5919378", - "ref": "DL12 109" - } -}, -{ - "type": "node", - "id": 6975277776, - "lat": 53.0253288, - "lon": -2.2321362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 6975285522, - "lat": 53.2048015, - "lon": -3.5387322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 54", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6976982130, - "lat": 54.6689211, - "lon": -5.9738855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 14:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT36 1" - } -}, -{ - "type": "node", - "id": 6981065485, - "lat": 51.4941704, - "lon": -0.1756832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-07-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW7 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6981518588, - "lat": 51.0186599, - "lon": -3.8369424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX36 152D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6982711724, - "lat": 53.5535603, - "lon": -1.4780381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "S70 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6982711726, - "lat": 53.5535694, - "lon": -1.4779859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "S70 2951", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6982811987, - "lat": 53.5474533, - "lon": -1.4833804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S70 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6982811993, - "lat": 53.5498886, - "lon": -1.4823965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "colour": "red", - "indoor": "yes", - "material": "plastic", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S70 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 6982811995, - "lat": 53.5480927, - "lon": -1.4766034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S70 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6982887601, - "lat": 53.5518746, - "lon": -1.4827660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 19:00; Sa 12:45", - "colour": "red", - "material": "metal", - "note": "Although Royal Mail data has the LH and RH apertures with different refs (S70 43 & S70 431) the plates on both sides were identical on the ground so that is what has been mapped here. Further reading: https://osm.mathmos.net/postboxes/progress/S/S70", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "S70 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-03-01" - } -}, -{ - "type": "node", - "id": 6982887611, - "lat": 53.5518338, - "lon": -1.4828621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 19:00; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "S70 439P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-03-01" - } -}, -{ - "type": "node", - "id": 6982939343, - "lat": 53.5438250, - "lon": -1.4946974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6982939348, - "lat": 53.5445992, - "lon": -1.4844733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6983010261, - "lat": 53.5522247, - "lon": -1.4924982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6983010265, - "lat": 53.5533148, - "lon": -1.4885193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S70 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 6983021964, - "lat": 53.5574261, - "lon": -1.4769107, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "lamp", - "ref": "S71 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6983069165, - "lat": 53.5649650, - "lon": -1.4802249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6983069166, - "lat": 53.5618995, - "lon": -1.4808835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6983561806, - "lat": 50.8176369, - "lon": -1.5932201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6984656152, - "lat": 53.5455658, - "lon": -1.5376316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "post_box:type": "meter", - "ref": "S75 263P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6984656155, - "lat": 53.5454892, - "lon": -1.5252945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 141D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6984878749, - "lat": 52.2337113, - "lon": 0.1471096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "note": "This postbox accepts parcels. This appears to be a temporary replacement for the postbox that was located near the Innovation Centre but is not accessible due to demolition works.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CB4 184P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 6984893883, - "lat": 53.4580050, - "lon": -1.4343152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S61 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6985158004, - "lat": 52.3185541, - "lon": -2.4099954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "None", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6985465149, - "lat": 53.3690433, - "lon": -2.5823666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 52", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 6985755846, - "lat": 53.4211344, - "lon": -2.9483656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type B post box L6 511 on West Derby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 511", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on West Derby Road.jpg" - } -}, -{ - "type": "node", - "id": 6987583096, - "lat": 54.1784238, - "lon": -6.3376155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6987583098, - "lat": 54.1792343, - "lon": -6.3333125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6987583197, - "lat": 54.1810510, - "lon": -6.3293129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6987705910, - "lat": 50.9457966, - "lon": -3.2761719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA21 371", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 6988144904, - "lat": 53.4572545, - "lon": -2.0711527, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SK14 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6988340241, - "lat": 50.9539445, - "lon": -3.2660479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA21 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6989274833, - "lat": 54.7993629, - "lon": -1.5764582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH1 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6990409170, - "lat": 52.0414482, - "lon": 0.8842710, - "tags": { - "amenity": "post_box", - "ref": "IP7 1295" - } -}, -{ - "type": "node", - "id": 6990409184, - "lat": 52.0501679, - "lon": 0.9048749, - "tags": { - "amenity": "post_box", - "mapillary": "1192181521530953", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP7 1170", - "survey:date": "2022-04-23" - } -}, -{ - "type": "node", - "id": 6990645312, - "lat": 53.2670830, - "lon": -1.0691355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "colour": "dark_green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6991105234, - "lat": 50.9147224, - "lon": -1.3549938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO18 691D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6991227175, - "lat": 53.0442787, - "lon": -3.9214113, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 6993401251, - "lat": 52.0379473, - "lon": 0.9579399, - "tags": { - "amenity": "post_box", - "ref": "IP7 1022" - } -}, -{ - "type": "node", - "id": 6993401265, - "lat": 52.0393727, - "lon": 0.9657772, - "tags": { - "amenity": "post_box", - "ref": "IP7 1417" - } -}, -{ - "type": "node", - "id": 6993401267, - "lat": 52.0415703, - "lon": 0.9641893, - "tags": { - "amenity": "post_box", - "ref": "IP7 1451" - } -}, -{ - "type": "node", - "id": 6993401272, - "lat": 52.0412933, - "lon": 0.9591468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "IP7 1260", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 6993437791, - "lat": 52.0476810, - "lon": 0.9560140, - "tags": { - "amenity": "post_box", - "ref": "IP7 1028" - } -}, -{ - "type": "node", - "id": 6993437802, - "lat": 52.0478524, - "lon": 0.9495713, - "tags": { - "amenity": "post_box", - "ref": "IP7 1056" - } -}, -{ - "type": "node", - "id": 6993437809, - "lat": 52.0419275, - "lon": 0.9572321, - "tags": { - "amenity": "post_box", - "ref": "IP7 1423" - } -}, -{ - "type": "node", - "id": 6993437811, - "lat": 52.0516265, - "lon": 0.9642430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP7 1405" - } -}, -{ - "type": "node", - "id": 6993437815, - "lat": 52.0510251, - "lon": 0.9538748, - "tags": { - "amenity": "post_box", - "ref": "IP7 8221" - } -}, -{ - "type": "node", - "id": 6993437818, - "lat": 52.0490660, - "lon": 0.9661242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP7 1385" - } -}, -{ - "type": "node", - "id": 6993437831, - "lat": 52.0471957, - "lon": 0.9592272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP7 1153" - } -}, -{ - "type": "node", - "id": 6993437835, - "lat": 52.0509500, - "lon": 0.9599354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP7 1147" - } -}, -{ - "type": "node", - "id": 6993437836, - "lat": 52.0481492, - "lon": 0.9625961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP7 1118" - } -}, -{ - "type": "node", - "id": 6993437844, - "lat": 52.0436857, - "lon": 0.9535510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "IP7 1443" - } -}, -{ - "type": "node", - "id": 6993437852, - "lat": 52.0517155, - "lon": 0.9450174, - "tags": { - "amenity": "post_box", - "ref": "IP7 1400" - } -}, -{ - "type": "node", - "id": 6993437857, - "lat": 52.0458265, - "lon": 0.9604557, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "image": "https://www.flickr.com/photos/200873507@N03/53905631776", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP7 1158D" - } -}, -{ - "type": "node", - "id": 6997433709, - "lat": 50.9548452, - "lon": -3.2489798, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 6997464849, - "lat": 53.3715485, - "lon": -2.5816993, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6997588531, - "lat": 51.0934957, - "lon": -1.6544070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP5 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 6997588532, - "lat": 51.0916276, - "lon": -1.6404444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 393", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 6997621454, - "lat": 51.1974594, - "lon": -1.7238826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP4 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6997621455, - "lat": 51.1992990, - "lon": -1.7295098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6997631747, - "lat": 51.2387972, - "lon": -1.6329925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "last_checked": "2021-12-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP11 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 6997631748, - "lat": 51.2346475, - "lon": -1.6614488, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP9 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6997638750, - "lat": 51.2417904, - "lon": -1.4170057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 6997646698, - "lat": 51.2559758, - "lon": -0.9724456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG29 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7000940312, - "lat": 54.1756156, - "lon": -6.3377702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 05:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "bt34194a", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7001101527, - "lat": 52.0051542, - "lon": 0.9880391, - "tags": { - "amenity": "post_box", - "ref": "IP7 1298" - } -}, -{ - "type": "node", - "id": 7001101528, - "lat": 52.0018221, - "lon": 0.9678209, - "tags": { - "amenity": "post_box", - "ref": "IP7 1414" - } -}, -{ - "type": "node", - "id": 7001605790, - "lat": 53.7296266, - "lon": -2.6597837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR5 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7002757979, - "lat": 51.3140136, - "lon": -0.7438333, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7004238020, - "lat": 51.3477900, - "lon": -0.7264110, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU15 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7006000798, - "lat": 50.9561820, - "lon": -3.2207903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7006148217, - "lat": 52.0550795, - "lon": 0.9206139, - "tags": { - "amenity": "post_box", - "ref": "IP7 1390" - } -}, -{ - "type": "node", - "id": 7006148218, - "lat": 52.0573786, - "lon": 0.9653320, - "tags": { - "amenity": "post_box", - "ref": "IP7 1286" - } -}, -{ - "type": "node", - "id": 7006148222, - "lat": 52.0359704, - "lon": 0.9130237, - "tags": { - "amenity": "post_box", - "ref": "IP7 1368" - } -}, -{ - "type": "node", - "id": 7006148226, - "lat": 52.0551224, - "lon": 0.9420123, - "tags": { - "amenity": "post_box", - "ref": "IP7 1250" - } -}, -{ - "type": "node", - "id": 7006152252, - "lat": 52.0440777, - "lon": 0.9615500, - "tags": { - "amenity": "post_box", - "ref": "IP7 1429" - } -}, -{ - "type": "node", - "id": 7006158838, - "lat": 53.6951446, - "lon": -2.4676698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7008429185, - "lat": 55.1679294, - "lon": -3.5359491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "survey:date": "2019-11-25" - } -}, -{ - "type": "node", - "id": 7008554963, - "lat": 53.3754229, - "lon": -1.4951262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "Parcel Drop Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "S10 1232", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7009082086, - "lat": 51.5679640, - "lon": -0.0991650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N4 5" - } -}, -{ - "type": "node", - "id": 7016559400, - "lat": 53.3754161, - "lon": -1.4951415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "S10 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7018045278, - "lat": 50.9673105, - "lon": -3.1875002, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7020533131, - "lat": 56.2084127, - "lon": -2.8290423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY9 248D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7020761243, - "lat": 50.9617162, - "lon": -3.1663750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7022237481, - "lat": 51.0239030, - "lon": -2.8650166, - "tags": { - "amenity": "post_box", - "mapillary": "848295939098301", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA10 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-27" - } -}, -{ - "type": "node", - "id": 7022573865, - "lat": 50.7864392, - "lon": -1.3665728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7022688996, - "lat": 54.8227322, - "lon": -1.7443693, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/1419423", - "ref": "DH7 101" - } -}, -{ - "type": "node", - "id": 7023921877, - "lat": 50.8421212, - "lon": -1.3940540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO45 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7023934269, - "lat": 50.8245051, - "lon": -1.3619596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO45 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7025641099, - "lat": 54.8715308, - "lon": -1.4602214, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7026768744, - "lat": 51.6251545, - "lon": -3.9412674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA1 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7027062344, - "lat": 53.0895789, - "lon": -2.4336514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW2 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7029436433, - "lat": 52.1498012, - "lon": 0.8788629, - "tags": { - "amenity": "post_box", - "ref": "IP7 1315" - } -}, -{ - "type": "node", - "id": 7031051307, - "lat": 52.2686910, - "lon": 1.3451947, - "tags": { - "amenity": "post_box", - "ref": "IP13 6259" - } -}, -{ - "type": "node", - "id": 7031051374, - "lat": 52.3103496, - "lon": 1.3353112, - "tags": { - "amenity": "post_box", - "ref": "IP13 6238" - } -}, -{ - "type": "node", - "id": 7031051377, - "lat": 52.2801847, - "lon": 1.3429058, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP13 6234" - } -}, -{ - "type": "node", - "id": 7031051861, - "lat": 52.2798862, - "lon": 1.3158961, - "tags": { - "amenity": "post_box", - "ref": "IP13 6332" - } -}, -{ - "type": "node", - "id": 7031085288, - "lat": 52.2837780, - "lon": 1.2826968, - "tags": { - "amenity": "post_box", - "ref": "IP13 6389" - } -}, -{ - "type": "node", - "id": 7037083239, - "lat": 52.1235072, - "lon": 0.7474800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1040D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7037231145, - "lat": 56.4105043, - "lon": -5.4695153, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7037993985, - "lat": 50.4320736, - "lon": -3.5664120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TQ4 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7039636391, - "lat": 51.3502994, - "lon": -2.9725648, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS23 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7040216691, - "lat": 51.6164949, - "lon": -0.5532072, - "tags": { - "amenity": "post_box", - "ref": "SL9 271" - } -}, -{ - "type": "node", - "id": 7040539613, - "lat": 52.3278200, - "lon": 1.1456082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7040539615, - "lat": 52.3243017, - "lon": 1.1472536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP23 7086", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7040539616, - "lat": 52.3203291, - "lon": 1.1511600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP23 7010D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7040539617, - "lat": 52.3203907, - "lon": 1.1458229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "IP23 7208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7040539620, - "lat": 52.3137685, - "lon": 1.1556727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7040539621, - "lat": 52.3320056, - "lon": 1.1868485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP23 7113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7040589311, - "lat": 51.3508761, - "lon": -0.7205196, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU15 79D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7040705378, - "lat": 55.7826259, - "lon": -2.0099408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 72D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 7040778776, - "lat": 53.3768726, - "lon": -1.1568714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7040808952, - "lat": 53.3238282, - "lon": -1.2181965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "S80 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7040994630, - "lat": 51.4456003, - "lon": -0.4104678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7041693217, - "lat": 50.9894513, - "lon": -3.2143291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7041693233, - "lat": 50.9882517, - "lon": -3.2033568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7042090361, - "lat": 52.2214187, - "lon": 1.3517480, - "tags": { - "amenity": "post_box", - "ref": "IP13 6355" - } -}, -{ - "type": "node", - "id": 7042090382, - "lat": 52.2314816, - "lon": 1.3054371, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP13 6313" - } -}, -{ - "type": "node", - "id": 7042107806, - "lat": 52.2206381, - "lon": 1.3371572, - "tags": { - "amenity": "post_box", - "ref": "IP13 8247" - } -}, -{ - "type": "node", - "id": 7042107826, - "lat": 52.2189630, - "lon": 1.3431863, - "tags": { - "amenity": "post_box", - "ref": "IP13 6245" - } -}, -{ - "type": "node", - "id": 7042107857, - "lat": 52.2272005, - "lon": 1.3323560, - "tags": { - "amenity": "post_box", - "ref": "IP13 6324" - } -}, -{ - "type": "node", - "id": 7042136514, - "lat": 52.2591132, - "lon": 1.2492906, - "tags": { - "amenity": "post_box", - "ref": "IP13 6230" - } -}, -{ - "type": "node", - "id": 7042136515, - "lat": 52.2223776, - "lon": 1.2701172, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "IP13 6338" - } -}, -{ - "type": "node", - "id": 7042136520, - "lat": 52.2345228, - "lon": 1.2740796, - "tags": { - "amenity": "post_box", - "ref": "IP13 6263" - } -}, -{ - "type": "node", - "id": 7042136524, - "lat": 52.2522207, - "lon": 1.2509699, - "tags": { - "amenity": "post_box", - "ref": "IP13 6377" - } -}, -{ - "type": "node", - "id": 7042136530, - "lat": 52.2202262, - "lon": 1.2657272, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP13 6341" - } -}, -{ - "type": "node", - "id": 7042140848, - "lat": 52.2427637, - "lon": 1.2475118, - "tags": { - "amenity": "post_box", - "ref": "IP13 6251" - } -}, -{ - "type": "node", - "id": 7042269177, - "lat": 56.0396813, - "lon": -3.4133095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY11 115D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7042269178, - "lat": 56.0353329, - "lon": -3.4235394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 437D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7042323817, - "lat": 51.4518541, - "lon": -0.2070759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7044566106, - "lat": 51.6934480, - "lon": 0.1001223, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7045271881, - "lat": 51.3705105, - "lon": -2.4009696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7046731551, - "lat": 53.3477833, - "lon": -1.6896575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "post_box:type": "pillar", - "ref": "S33 727", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7047288005, - "lat": 52.2700773, - "lon": 1.2703832, - "tags": { - "amenity": "post_box", - "ref": "IP13 6257" - } -}, -{ - "type": "node", - "id": 7047288009, - "lat": 52.2729954, - "lon": 1.2399999, - "tags": { - "amenity": "post_box", - "ref": "IP13 6366" - } -}, -{ - "type": "node", - "id": 7047288029, - "lat": 52.2666929, - "lon": 1.2587485, - "tags": { - "amenity": "post_box", - "ref": "IP13 6303" - } -}, -{ - "type": "node", - "id": 7047288033, - "lat": 52.2700583, - "lon": 1.2511061, - "tags": { - "amenity": "post_box", - "ref": "IP13 6304" - } -}, -{ - "type": "node", - "id": 7047288055, - "lat": 52.2821892, - "lon": 1.2527798, - "tags": { - "amenity": "post_box", - "ref": "IP13 6309" - } -}, -{ - "type": "node", - "id": 7047294440, - "lat": 52.2334504, - "lon": 1.4078374, - "tags": { - "amenity": "post_box", - "ref": "IP13 6365" - } -}, -{ - "type": "node", - "id": 7047294441, - "lat": 52.2138522, - "lon": 1.3424237, - "tags": { - "amenity": "post_box", - "ref": "IP13 6285" - } -}, -{ - "type": "node", - "id": 7047294445, - "lat": 52.2307497, - "lon": 1.3962610, - "tags": { - "amenity": "post_box", - "ref": "IP13 6270" - } -}, -{ - "type": "node", - "id": 7047969325, - "lat": 51.5631772, - "lon": -0.6194791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL2 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7049310882, - "lat": 52.2271878, - "lon": 1.1782805, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7049322398, - "lat": 52.2244454, - "lon": 1.1739394, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7049554487, - "lat": 51.5155809, - "lon": -0.1898945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 74D;W2 274D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7052502463, - "lat": 52.1735461, - "lon": 1.3971677, - "tags": { - "amenity": "post_box", - "ref": "IP13 6249" - } -}, -{ - "type": "node", - "id": 7054133520, - "lat": 52.2341396, - "lon": 0.8317225, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IP30 2137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7054133539, - "lat": 52.2261435, - "lon": 0.7902430, - "tags": { - "amenity": "post_box", - "ref": "IP30 2149" - } -}, -{ - "type": "node", - "id": 7054133565, - "lat": 52.2269605, - "lon": 0.8312639, - "tags": { - "amenity": "post_box", - "ref": "IP30 2016" - } -}, -{ - "type": "node", - "id": 7054234201, - "lat": 54.5399941, - "lon": -1.4152175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7054514250, - "lat": 50.3972591, - "lon": -3.5143329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1177962485962031", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2019-10-01", - "survey:date": "2019-10-01" - } -}, -{ - "type": "node", - "id": 7054514252, - "lat": 50.3973729, - "lon": -3.5133863, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7055845732, - "lat": 51.6130726, - "lon": -3.9679112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7056459402, - "lat": 52.3884354, - "lon": -2.2441470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "471805738479392", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 7056872523, - "lat": 52.1268572, - "lon": -0.2167492, - "tags": { - "amenity": "post_box", - "ref": "SG19 220" - } -}, -{ - "type": "node", - "id": 7056872525, - "lat": 52.1280065, - "lon": -0.2235729, - "tags": { - "amenity": "post_box", - "ref": "SG19 225" - } -}, -{ - "type": "node", - "id": 7056872528, - "lat": 52.1311285, - "lon": -0.2115244, - "tags": { - "amenity": "post_box", - "ref": "SG19 230" - } -}, -{ - "type": "node", - "id": 7056872529, - "lat": 52.1315584, - "lon": -0.2067925, - "tags": { - "amenity": "post_box", - "ref": "SG19 352" - } -}, -{ - "type": "node", - "id": 7056872556, - "lat": 52.1274796, - "lon": -0.2138419, - "tags": { - "amenity": "post_box", - "ref": "SG19 238" - } -}, -{ - "type": "node", - "id": 7056892871, - "lat": 52.1254334, - "lon": -0.2376754, - "tags": { - "amenity": "post_box", - "ref": "SG19 226" - } -}, -{ - "type": "node", - "id": 7056892872, - "lat": 52.1451070, - "lon": -0.2468369, - "tags": { - "amenity": "post_box", - "ref": "SG19 232" - } -}, -{ - "type": "node", - "id": 7056892873, - "lat": 52.1140041, - "lon": -0.2279444, - "tags": { - "amenity": "post_box", - "ref": "SG19 237" - } -}, -{ - "type": "node", - "id": 7056892874, - "lat": 52.1111935, - "lon": -0.2120970, - "tags": { - "amenity": "post_box", - "ref": "SG19 221" - } -}, -{ - "type": "node", - "id": 7057140519, - "lat": 50.4031928, - "lon": -3.5651457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ4 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7057140522, - "lat": 50.3989386, - "lon": -3.5606104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7057252873, - "lat": 51.8513916, - "lon": -2.0502008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL53 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7057279377, - "lat": 51.5204292, - "lon": -0.5559388, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SL3 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7057281489, - "lat": 51.5622535, - "lon": -0.5841476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL2 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7057281490, - "lat": 51.5650934, - "lon": -0.5894773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL2 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7057284712, - "lat": 51.1874900, - "lon": -0.4801765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7057333269, - "lat": 51.5176912, - "lon": -0.5898580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL2 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7057351568, - "lat": 51.4983780, - "lon": -0.5922284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL3 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7057374942, - "lat": 51.3937283, - "lon": -0.5751085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU25 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7066174297, - "lat": 52.1705218, - "lon": -0.2923583, - "tags": { - "amenity": "post_box", - "ref": "SG19 233" - } -}, -{ - "type": "node", - "id": 7066174368, - "lat": 52.1637940, - "lon": -0.3019576, - "tags": { - "amenity": "post_box", - "ref": "SG19 223" - } -}, -{ - "type": "node", - "id": 7066175342, - "lat": 52.1429172, - "lon": -0.2905404, - "tags": { - "amenity": "post_box", - "ref": "SG19 113" - } -}, -{ - "type": "node", - "id": 7066194510, - "lat": 51.2873133, - "lon": -0.8479708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU51 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7066449313, - "lat": 52.1151836, - "lon": -0.3195674, - "tags": { - "amenity": "post_box", - "ref": "SG19 114" - } -}, -{ - "type": "node", - "id": 7066449319, - "lat": 52.1127845, - "lon": -0.2831874, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG19 106" - } -}, -{ - "type": "node", - "id": 7066464949, - "lat": 52.1305204, - "lon": -0.2990073, - "tags": { - "amenity": "post_box", - "ref": "SG19 105" - } -}, -{ - "type": "node", - "id": 7066464950, - "lat": 52.1335105, - "lon": -0.2995540, - "tags": { - "amenity": "post_box", - "ref": "SG19 102" - } -}, -{ - "type": "node", - "id": 7066464957, - "lat": 52.1326335, - "lon": -0.2918112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SG19 112", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7066464962, - "lat": 52.1356745, - "lon": -0.2849258, - "tags": { - "amenity": "post_box", - "ref": "SG19 1" - } -}, -{ - "type": "node", - "id": 7066464967, - "lat": 52.1329228, - "lon": -0.2943507, - "tags": { - "amenity": "post_box", - "ref": "SG19 109" - } -}, -{ - "type": "node", - "id": 7066464973, - "lat": 52.1253969, - "lon": -0.2945174, - "tags": { - "amenity": "post_box", - "ref": "SG19 117" - } -}, -{ - "type": "node", - "id": 7066464980, - "lat": 52.1354901, - "lon": -0.2848722, - "tags": { - "amenity": "post_box", - "ref": "SG19 116" - } -}, -{ - "type": "node", - "id": 7066464981, - "lat": 52.1364148, - "lon": -0.2966733, - "tags": { - "amenity": "post_box", - "ref": "SG19 104" - } -}, -{ - "type": "node", - "id": 7076234979, - "lat": 51.6225784, - "lon": -2.3563182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL12 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7077661301, - "lat": 53.5500771, - "lon": -1.4702823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7077734775, - "lat": 53.5366329, - "lon": -1.4788342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7077734778, - "lat": 53.5415518, - "lon": -1.4788123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7077753141, - "lat": 53.5448728, - "lon": -1.4754023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S70 48D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7077753142, - "lat": 53.5486795, - "lon": -1.4718345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "S70 52D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "http://pberry.me.uk/osm/node/7077753142.jpeg", - "source:date": "2023-02-04" - } -}, -{ - "type": "node", - "id": 7077753143, - "lat": 53.5421494, - "lon": -1.4718736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7078285121, - "lat": 50.9669988, - "lon": -1.4227151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7078362041, - "lat": 50.9885761, - "lon": -1.4943834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 501", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7079481737, - "lat": 51.0637729, - "lon": -1.7911443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7079481739, - "lat": 51.0673109, - "lon": -1.7911014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7079498681, - "lat": 51.0789539, - "lon": -1.7720175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP1 431D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7079498682, - "lat": 51.0765490, - "lon": -1.7744122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7079511291, - "lat": 51.0736009, - "lon": -1.7727122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP1 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7079511312, - "lat": 51.0712663, - "lon": -1.7773403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 328D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7079511315, - "lat": 51.0710552, - "lon": -1.7871720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Although no royal_cypher but probably a Victorian era postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 75D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7080308687, - "lat": 52.0516627, - "lon": 1.1925653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP3 1093D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7080638280, - "lat": 52.9056295, - "lon": -2.1485612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST15 221" - } -}, -{ - "type": "node", - "id": 7080892197, - "lat": 51.5328551, - "lon": -0.9157222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG9 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7080905771, - "lat": 51.5335750, - "lon": -0.9127252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG9 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7080943043, - "lat": 52.0499261, - "lon": 1.1978794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1377", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7082571529, - "lat": 51.3912156, - "lon": -0.9743723, - "tags": { - "amenity": "post_box", - "mapillary": "265814808685429", - "post_box:type": "pillar", - "ref": "RG7 284", - "survey:date": "2021-11-01" - } -}, -{ - "type": "node", - "id": 7083270670, - "lat": 51.0497683, - "lon": -1.6784807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7083278240, - "lat": 51.0798680, - "lon": -1.6979603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7083297199, - "lat": 51.0945224, - "lon": -1.7246631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7083796194, - "lat": 51.0258725, - "lon": -1.4672019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 535D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7084132595, - "lat": 51.4871285, - "lon": -0.1712733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7084512063, - "lat": 53.8531369, - "lon": -1.7732580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7084620520, - "lat": 53.8503321, - "lon": -1.7739935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7085501270, - "lat": 51.3912379, - "lon": 0.1104641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 379", - "ref:GB:uprn": "10015417199", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7085947262, - "lat": 51.8135070, - "lon": 1.0181757, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CO7 438" - } -}, -{ - "type": "node", - "id": 7089341491, - "lat": 51.4970409, - "lon": -0.1611434, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 8;SW1X 108", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7089375185, - "lat": 51.4990545, - "lon": -0.1612068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 73D;SW1X 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7089382910, - "lat": 51.0774752, - "lon": -2.8482163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA10 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7089395058, - "lat": 53.8536547, - "lon": -1.7621398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD17 964D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7089395059, - "lat": 53.8532283, - "lon": -1.7615700, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7089412850, - "lat": 51.0750805, - "lon": -2.8013366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7089412851, - "lat": 51.0890614, - "lon": -2.8068977, - "tags": { - "amenity": "post_box", - "mapillary": "490096339000585", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-03-13", - "survey:date": "2020-03-13" - } -}, -{ - "type": "node", - "id": 7089412852, - "lat": 51.0757723, - "lon": -2.8208846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA10 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7089482817, - "lat": 52.0603404, - "lon": 1.2183005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP5 1166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7089841373, - "lat": 51.6739142, - "lon": -4.1614294, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "description": "Postbox is located on Platform 2 of Llanelli railway station the eastbound platform.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SA15 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7090509742, - "lat": 52.0553200, - "lon": 1.2168353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 8253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7090793259, - "lat": 53.8558916, - "lon": -1.7682606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7091286249, - "lat": 53.8539315, - "lon": -1.7535220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7092977948, - "lat": 53.9767893, - "lon": -1.9073780, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7093111565, - "lat": 51.0351789, - "lon": -2.8350748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA10 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7093178039, - "lat": 51.0474681, - "lon": -2.7790944, - "tags": { - "amenity": "post_box", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7094155211, - "lat": 51.7081185, - "lon": -0.3670684, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-08", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "AL2 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7095283875, - "lat": 51.1460402, - "lon": -3.1304504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7095351637, - "lat": 51.1589687, - "lon": -3.1213765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7095362431, - "lat": 51.1750005, - "lon": -3.1802979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA5 132", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7095362432, - "lat": 51.1764849, - "lon": -3.2066781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7095735766, - "lat": 53.5194279, - "lon": -1.4744327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7096017428, - "lat": 51.5768004, - "lon": -2.9463356, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7096017429, - "lat": 51.5753159, - "lon": -2.9495197, - "tags": { - "amenity": "post_box", - "mapillary": "288679166039670", - "post_box:type": "meter", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 7096028589, - "lat": 53.5123692, - "lon": -1.4806629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "wall", - "ref": "S70 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7096039892, - "lat": 53.5027628, - "lon": -1.4795831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7096196288, - "lat": 51.3589060, - "lon": 1.3785901, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "CT9 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7096254801, - "lat": 51.3778978, - "lon": 1.3552967, - "tags": { - "amenity": "post_box", - "check_date": "2021-08-11", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CT9 79", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7096276217, - "lat": 51.3806809, - "lon": 1.3771143, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "old_ref": "CT9 93", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CT9 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-11" - } -}, -{ - "type": "node", - "id": 7096389353, - "lat": 51.5599903, - "lon": -0.2969341, - "tags": { - "amenity": "post_box", - "ref": "HA9 9" - } -}, -{ - "type": "node", - "id": 7096389354, - "lat": 51.5627002, - "lon": -0.3006079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7096457170, - "lat": 51.4037002, - "lon": -0.9644314, - "tags": { - "amenity": "post_box", - "mapillary": "339924414521990", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG7 195D", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 7096548164, - "lat": 53.1925930, - "lon": -2.4457401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW10 140D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7096861240, - "lat": 51.4842454, - "lon": 0.1649197, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "735487360455758", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 153", - "survey:date": "2021-03-21" - } -}, -{ - "type": "node", - "id": 7097795527, - "lat": 51.4850250, - "lon": 0.1733943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1214758862299677", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA8 155", - "survey:date": "2021-06-18" - } -}, -{ - "type": "node", - "id": 7097795808, - "lat": 51.4740824, - "lon": 0.1785960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA8 405" - } -}, -{ - "type": "node", - "id": 7097820152, - "lat": 51.4735134, - "lon": 0.1953874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA8 391" - } -}, -{ - "type": "node", - "id": 7097820167, - "lat": 51.4810633, - "lon": 0.1811712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Survey needed to confirm whether this double box is DA8 2111 and 2222", - "mapillary": "833435715303126", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "DA8 2111" - } -}, -{ - "type": "node", - "id": 7097823987, - "lat": 51.4794703, - "lon": 0.1810142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA8 401" - } -}, -{ - "type": "node", - "id": 7097823988, - "lat": 51.4794118, - "lon": 0.1810142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA8 402" - } -}, -{ - "type": "node", - "id": 7097842794, - "lat": 51.4799411, - "lon": 0.1838988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Survey to confirm exact location within store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA8 408" - } -}, -{ - "type": "node", - "id": 7098669703, - "lat": 55.8221523, - "lon": -3.8020071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML7 144", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098669727, - "lat": 55.8149568, - "lon": -3.7879993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML7 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7098669729, - "lat": 55.8124302, - "lon": -3.7765704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML7 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7098669730, - "lat": 55.8190512, - "lon": -3.7771618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML7 96D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098736413, - "lat": 55.8008264, - "lon": -3.8235547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML7 138D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7098736414, - "lat": 55.8004058, - "lon": -3.8355576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML7 105", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098736432, - "lat": 55.8259913, - "lon": -3.8284168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML7 161", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098775552, - "lat": 55.7824766, - "lon": -3.8810720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML2 92", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098775556, - "lat": 55.7867562, - "lon": -3.8792078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML2 154", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098775564, - "lat": 55.7896543, - "lon": -3.8851932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML2 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7098799981, - "lat": 55.7909282, - "lon": -3.8591979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML2 85D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7098801593, - "lat": 55.7879457, - "lon": -3.8672016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ML2 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7098801594, - "lat": 55.7870154, - "lon": -3.8723015, - "tags": { - "amenity": "post_box", - "note": "ref number and collection times label is missing", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7099462673, - "lat": 51.2477645, - "lon": 1.1234305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CT4 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7099496341, - "lat": 51.2000085, - "lon": 1.0570228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CT4 232" - } -}, -{ - "type": "node", - "id": 7099615273, - "lat": 51.1069858, - "lon": 1.2119942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT18 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7099633310, - "lat": 52.1273942, - "lon": 0.8161417, - "tags": { - "amenity": "post_box", - "ref": "CO10 1035" - } -}, -{ - "type": "node", - "id": 7099728468, - "lat": 53.4916124, - "lon": -1.4893973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "meter", - "ref": "S75 285P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7099936392, - "lat": 51.0743930, - "lon": 1.0930994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT21 129" - } -}, -{ - "type": "node", - "id": 7099938442, - "lat": 51.0726084, - "lon": 1.0938396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT21 125" - } -}, -{ - "type": "node", - "id": 7099943203, - "lat": 51.0773667, - "lon": 1.0877075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT21 130D" - } -}, -{ - "type": "node", - "id": 7099946433, - "lat": 51.0822689, - "lon": 1.1685701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT20 24" - } -}, -{ - "type": "node", - "id": 7099963387, - "lat": 51.0821496, - "lon": 1.1459389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CT20 45" - } -}, -{ - "type": "node", - "id": 7099979177, - "lat": 51.0802142, - "lon": 1.1328643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT20 68" - } -}, -{ - "type": "node", - "id": 7099984213, - "lat": 51.0891216, - "lon": 1.1223977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT20 93" - } -}, -{ - "type": "node", - "id": 7100022813, - "lat": 51.0766809, - "lon": 1.1459993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CT20 152" - } -}, -{ - "type": "node", - "id": 7100038565, - "lat": 51.4327529, - "lon": 0.7723247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME12 59" - } -}, -{ - "type": "node", - "id": 7100187564, - "lat": 51.3652864, - "lon": 0.5001928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME1 329" - } -}, -{ - "type": "node", - "id": 7100215592, - "lat": 51.2722570, - "lon": 0.5132943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ME16 10" - } -}, -{ - "type": "node", - "id": 7100217201, - "lat": 51.3753938, - "lon": 0.5105330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "ME1 281", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7100286539, - "lat": 51.2813935, - "lon": 0.9469370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME13 42" - } -}, -{ - "type": "node", - "id": 7100291865, - "lat": 51.2410928, - "lon": 0.7994753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ME13 54" - } -}, -{ - "type": "node", - "id": 7100316183, - "lat": 51.2487659, - "lon": 0.7849136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME13 31" - } -}, -{ - "type": "node", - "id": 7101642457, - "lat": 55.6492486, - "lon": -3.1985085, - "tags": { - "amenity": "post_box", - "postal_code": "EH45", - "ref": "EH45 7", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7101776094, - "lat": 51.5051690, - "lon": -0.2085468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W11 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7103679427, - "lat": 53.8979452, - "lon": -1.5490767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:30", - "post_box:type": "lamp", - "ref": "LS17 865", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7103705156, - "lat": 53.9150727, - "lon": -1.6926592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LS21 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7103714114, - "lat": 53.9021022, - "lon": -1.6818177, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7104862422, - "lat": 51.7891602, - "lon": 1.1519994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "mapillary": "218231813160259", - "post_box:type": "pillar", - "ref": "CO15 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Mapillary", - "survey:date": "2019-12-26" - } -}, -{ - "type": "node", - "id": 7107294126, - "lat": 52.6478422, - "lon": -0.4802541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "collection_times:covid19": "Sa; Su", - "note": "on Platform 1 of Stamford Station", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE9 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7107777287, - "lat": 51.4663340, - "lon": -0.0456602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE14 12", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7107860484, - "lat": 53.1923125, - "lon": -1.3129702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S44 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7107916214, - "lat": 51.2452266, - "lon": 0.0596423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN8 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7109783989, - "lat": 53.5483992, - "lon": -1.5049451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7110432162, - "lat": 52.0780510, - "lon": -0.0562617, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG8 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7110432163, - "lat": 52.0672539, - "lon": -0.0882363, - "tags": { - "amenity": "post_box", - "ref": "SG8 396" - } -}, -{ - "type": "node", - "id": 7110432164, - "lat": 52.1333535, - "lon": -0.0127429, - "tags": { - "amenity": "post_box", - "ref": "SG8 286" - } -}, -{ - "type": "node", - "id": 7110458342, - "lat": 52.0746569, - "lon": -0.1363176, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 270" - } -}, -{ - "type": "node", - "id": 7110458343, - "lat": 52.0827603, - "lon": -0.1339008, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 501" - } -}, -{ - "type": "node", - "id": 7110458344, - "lat": 52.0804526, - "lon": -0.1346840, - "tags": { - "amenity": "post_box", - "ref": "SG8 303" - } -}, -{ - "type": "node", - "id": 7110474391, - "lat": 52.1177487, - "lon": -0.0898933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-07-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "SG8", - "ref": "SG8 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7110510893, - "lat": 51.5421705, - "lon": -1.7913818, - "tags": { - "addr:street": "Trevello Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7111549851, - "lat": 51.1888274, - "lon": -1.9019283, - "tags": { - "amenity": "post_box", - "mapillary": "932151740942700", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-09-05" - } -}, -{ - "type": "node", - "id": 7112637058, - "lat": 52.3648724, - "lon": -1.6804943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV8 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7112707324, - "lat": 52.0772082, - "lon": 0.0156257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG8 500" - } -}, -{ - "type": "node", - "id": 7112707326, - "lat": 52.0783129, - "lon": 0.0120449, - "tags": { - "amenity": "post_box", - "ref": "SG8 278" - } -}, -{ - "type": "node", - "id": 7112707327, - "lat": 52.0830221, - "lon": 0.0234096, - "tags": { - "amenity": "post_box", - "ref": "SG8 474" - } -}, -{ - "type": "node", - "id": 7115315771, - "lat": 55.1324486, - "lon": -1.7089903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "note": "Surveyed on 2018-06-09, data removed, so now replaced.", - "post_box:type": "lamp", - "ref": "NE61 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7117585204, - "lat": 51.1455509, - "lon": 0.9287590, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7117588137, - "lat": 51.2075097, - "lon": 0.9429435, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7118001319, - "lat": 51.1742194, - "lon": 0.8727828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN25 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7119145854, - "lat": 53.1903530, - "lon": -2.4857888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 186D" - } -}, -{ - "type": "node", - "id": 7119216450, - "lat": 53.5607891, - "lon": -1.4746991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S71 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7119693769, - "lat": 53.5664523, - "lon": -1.4895572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S75 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7119771062, - "lat": 53.5609234, - "lon": -1.4907606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7119771066, - "lat": 53.5638719, - "lon": -1.4949248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "S75 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7119820383, - "lat": 53.5585767, - "lon": -1.4991168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S75 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7119853386, - "lat": 53.5587318, - "lon": -1.4961840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7121873177, - "lat": 52.0084500, - "lon": -0.0193753, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG8 732", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7121875548, - "lat": 52.0392096, - "lon": 0.1082628, - "tags": { - "amenity": "post_box", - "ref": "SG8 416" - } -}, -{ - "type": "node", - "id": 7121876481, - "lat": 51.0714486, - "lon": 1.0823650, - "tags": { - "amenity": "post_box", - "collection_plate": "WN", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "last_checked": "2023-04-26", - "note": "Post Box incorporated within shop front", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CT21 206", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7122083634, - "lat": 53.5607130, - "lon": -1.5053177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "wall", - "ref": "S75 178", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7122084488, - "lat": 51.0818951, - "lon": 1.0121074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CT21 172" - } -}, -{ - "type": "node", - "id": 7122095938, - "lat": 53.5564654, - "lon": -1.5019481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "S75 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7122127734, - "lat": 53.5673689, - "lon": -1.5330160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "pillar", - "ref": "S75 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7122969831, - "lat": 53.5408705, - "lon": -1.4488623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S70 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123011358, - "lat": 53.5942480, - "lon": -1.5116503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "pillar", - "ref": "S75 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123012898, - "lat": 53.5311019, - "lon": -1.4684584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "pillar", - "ref": "S70 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123032607, - "lat": 53.5982292, - "lon": -1.4549247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:type": "pillar", - "ref": "S71 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123046443, - "lat": 53.5957735, - "lon": -1.3855186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "wall", - "ref": "S72 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7123065645, - "lat": 53.5770119, - "lon": -1.4180827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S72 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123247370, - "lat": 53.5464267, - "lon": -1.3172786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S63 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123279823, - "lat": 53.5443979, - "lon": -1.3065905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "S63 152", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7123317967, - "lat": 53.5018075, - "lon": -1.2868926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 227", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7123335213, - "lat": 53.5028110, - "lon": -1.3433153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "S63 221", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7123336450, - "lat": 53.5043192, - "lon": -1.3579378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S63 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123365289, - "lat": 53.5122561, - "lon": -1.3794837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "S73 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123379159, - "lat": 53.4467247, - "lon": -1.2018279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "location": "53.45951 -1.19242", - "post_box:type": "pillar", - "ref": "S66 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7123382576, - "lat": 53.3448984, - "lon": -1.1664909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123435921, - "lat": 53.2971592, - "lon": -1.3329792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "comment": "box now lamp not wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S21 544", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123466694, - "lat": 53.3598740, - "lon": -1.1215869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "S81 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123476094, - "lat": 53.3102471, - "lon": -1.1031977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123476106, - "lat": 53.3760991, - "lon": -1.0616205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "S81 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7123488953, - "lat": 53.2527286, - "lon": -1.1779207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "S80 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7123583621, - "lat": 51.5831777, - "lon": -0.3357945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 63", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7123738606, - "lat": 53.2157925, - "lon": -3.5057635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Post is leaning at a precarious angle", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7124679485, - "lat": 51.4585157, - "lon": -1.0027514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "RG30 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7125926287, - "lat": 54.5535764, - "lon": -1.3547133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7126582251, - "lat": 53.1705628, - "lon": -3.5066119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "note": "Box LL16 72 confirmed by survey (17.2.21) but not on the Royal Mail list.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7126620739, - "lat": 53.1689941, - "lon": -3.5268417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "note": "Box LL16 34 confirmed by survey (17.2.21) but not on Royal Mail list. Set in short section of wall, rest demolished.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7126694002, - "lat": 53.6832144, - "lon": -2.6534262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "mapillary": "487668059111110", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR7 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7126932784, - "lat": 56.1026975, - "lon": -3.2599346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7127137596, - "lat": 55.6694883, - "lon": -2.0102888, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "TD15 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7127137627, - "lat": 55.6692011, - "lon": -2.0170454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7127167352, - "lat": 52.8520141, - "lon": -0.3486724, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7130647916, - "lat": 52.0595228, - "lon": -0.0323906, - "tags": { - "amenity": "post_box", - "ref": "SG8 102" - } -}, -{ - "type": "node", - "id": 7130647919, - "lat": 52.0579923, - "lon": -0.0327235, - "tags": { - "amenity": "post_box", - "ref": "SG8 1" - } -}, -{ - "type": "node", - "id": 7130647928, - "lat": 52.0454501, - "lon": -0.0282253, - "tags": { - "amenity": "post_box", - "ref": "SG8 373" - } -}, -{ - "type": "node", - "id": 7130823737, - "lat": 53.4543022, - "lon": -1.3815944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S61 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7130947422, - "lat": 52.0173918, - "lon": -0.0545517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SG8 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7130957385, - "lat": 52.0375660, - "lon": -0.0803430, - "tags": { - "amenity": "post_box", - "ref": "SG8 307" - } -}, -{ - "type": "node", - "id": 7131175198, - "lat": 53.3703396, - "lon": -1.2116588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "S25 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7131175203, - "lat": 53.3872552, - "lon": -1.2197948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S25 536D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7131629017, - "lat": 56.6912022, - "lon": -5.9413196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7132187500, - "lat": 51.2132299, - "lon": -1.3577785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7132209807, - "lat": 51.2840144, - "lon": -1.5744795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7132270092, - "lat": 51.5951775, - "lon": -0.3289090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-05-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA3 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7132270093, - "lat": 51.6034166, - "lon": -0.3182052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "ref": "HA7 822D" - } -}, -{ - "type": "node", - "id": 7132956695, - "lat": 53.5148421, - "lon": -1.4467350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S74 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7132956698, - "lat": 53.5059828, - "lon": -1.4425203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "indoor": "yes", - "post_box:type": "pillar", - "ref": "S74 1623", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7132956706, - "lat": 53.5052290, - "lon": -1.4478660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S74 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7137151923, - "lat": 51.5356001, - "lon": 0.1284490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 194", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7137786782, - "lat": 51.3180558, - "lon": -1.4612729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7137808662, - "lat": 51.3567367, - "lon": -1.3798732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7138967588, - "lat": 53.0579219, - "lon": -2.2101682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ST6 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7139216966, - "lat": 51.5021952, - "lon": -3.1741297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Ty-Draw Road Postbox" - } -}, -{ - "type": "node", - "id": 7139443132, - "lat": 51.5273946, - "lon": -0.3199834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 16D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7140105699, - "lat": 53.5342044, - "lon": -1.4573923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7141112036, - "lat": 51.2780522, - "lon": 1.0823445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "level": "0", - "operator": "Royal Mail", - "ref": "CT1 4" - } -}, -{ - "type": "node", - "id": 7141112037, - "lat": 51.2780522, - "lon": 1.0823740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "indoor": "yes", - "level": "1", - "note:collection_times": "Additional collections may be made throughout the day until the last time shown.", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "CT1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7141713770, - "lat": 56.4937090, - "lon": -3.0545382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD2 70", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7141825097, - "lat": 56.4970191, - "lon": -3.0671027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 137", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7141833952, - "lat": 56.5037286, - "lon": -3.1311545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "note": "hinged flap over aperture", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD2 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7141846328, - "lat": 51.5874722, - "lon": 0.1789449, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7146843838, - "lat": 51.7490104, - "lon": 0.4830223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 450D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7147106203, - "lat": 51.6962198, - "lon": -2.2165796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL6 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7147379489, - "lat": 51.5010257, - "lon": -0.1765574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "mapillary": "332345735639106", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW7 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-05-26" - } -}, -{ - "type": "node", - "id": 7148872579, - "lat": 51.0847488, - "lon": 0.6918814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN30 221", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-05" - } -}, -{ - "type": "node", - "id": 7148872580, - "lat": 51.0788895, - "lon": 0.6956286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN30 175", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7149290145, - "lat": 51.5917908, - "lon": -0.3298715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-01-24", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7151997585, - "lat": 51.4963076, - "lon": -0.1668752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 21D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7154213999, - "lat": 51.4552106, - "lon": -2.4337031, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7154214000, - "lat": 51.4713497, - "lon": -2.4265428, - "tags": { - "amenity": "post_box", - "mapillary": "888341022068302", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 7154240978, - "lat": 51.6120190, - "lon": -0.2842892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA8 767D" - } -}, -{ - "type": "node", - "id": 7154447994, - "lat": 51.3633986, - "lon": -0.3132790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 316D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7155090208, - "lat": 56.5238759, - "lon": -3.2960062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH13 128D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 7155123097, - "lat": 51.7420861, - "lon": -2.3233187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7157412189, - "lat": 51.0766897, - "lon": 1.1364086, - "tags": { - "amenity": "post_box", - "note": "Restricted access. Unable to verify reference code.", - "operator": "Royal Mail", - "ref": "CT20 73" - } -}, -{ - "type": "node", - "id": 7157579171, - "lat": 51.0538594, - "lon": -2.7282799, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "mapillary": "934437210727350", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-07-28" - } -}, -{ - "type": "node", - "id": 7158530890, - "lat": 50.9092030, - "lon": 0.5030966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TN33 198" - } -}, -{ - "type": "node", - "id": 7158628911, - "lat": 51.1398858, - "lon": 0.8398514, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 336", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 7158662435, - "lat": 51.1302212, - "lon": 0.8530323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN23 318" - } -}, -{ - "type": "node", - "id": 7158663078, - "lat": 51.1381484, - "lon": 0.8450968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN23 331" - } -}, -{ - "type": "node", - "id": 7158666003, - "lat": 51.1271285, - "lon": 0.8482431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN23 91" - } -}, -{ - "type": "node", - "id": 7158667943, - "lat": 51.1190875, - "lon": 0.8585479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TN23 84" - } -}, -{ - "type": "node", - "id": 7158684624, - "lat": 51.1196769, - "lon": 0.8747366, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN23 18", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-04-10" - } -}, -{ - "type": "node", - "id": 7158716694, - "lat": 51.1181027, - "lon": 0.8634500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "TN23 85" - } -}, -{ - "type": "node", - "id": 7158896685, - "lat": 51.1363905, - "lon": 0.8659223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN23 226" - } -}, -{ - "type": "node", - "id": 7159087912, - "lat": 51.6817158, - "lon": -3.3782306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF45 260" - } -}, -{ - "type": "node", - "id": 7160182839, - "lat": 51.1867289, - "lon": 1.2296887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "note": "Reference transferred from former Post Office on Church Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 117", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7160598029, - "lat": 51.7988545, - "lon": -2.2058049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7160880815, - "lat": 50.4813109, - "lon": -4.3764102, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7161269153, - "lat": 51.7514320, - "lon": 0.5145082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7162560931, - "lat": 53.0655769, - "lon": -2.0316443, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7163412301, - "lat": 51.7594008, - "lon": -2.2407773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7164286897, - "lat": 50.5228491, - "lon": -4.2812187, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7164351413, - "lat": 51.7638275, - "lon": -2.2398973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7167514616, - "lat": 51.7924808, - "lon": -2.1197180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7167762963, - "lat": 50.2562043, - "lon": -5.1563332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR4 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7168766251, - "lat": 51.5187524, - "lon": -1.5436575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7170258017, - "lat": 51.8008966, - "lon": -2.1253734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7170439906, - "lat": 53.8229194, - "lon": -1.7739375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7170576980, - "lat": 53.8235246, - "lon": -1.7641202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7170584570, - "lat": 52.2165062, - "lon": 0.8929905, - "tags": { - "amenity": "post_box", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7171375198, - "lat": 53.4956101, - "lon": -1.4502021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S74 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7171375202, - "lat": 53.4968829, - "lon": -1.4593808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S74 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7172003867, - "lat": 51.4530854, - "lon": -0.3679566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7172115267, - "lat": 51.4507641, - "lon": -0.3638504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-06-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 129D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 7172941072, - "lat": 57.1372527, - "lon": -2.1354803, - "tags": { - "addr:postcode": "AB15 4UE", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "AB15 125D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7173004867, - "lat": 53.5036998, - "lon": -2.0267978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7173083818, - "lat": 57.1408332, - "lon": -2.1197505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "A. Handyside & Co Ltd, Derby & London", - "post_box:type": "pillar", - "ref": "AB10 91D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7175952046, - "lat": 53.8257195, - "lon": -1.7792752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7175952047, - "lat": 53.8286094, - "lon": -1.7805172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7176074186, - "lat": 53.8179351, - "lon": -1.7173089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD2 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7176179923, - "lat": 51.7308320, - "lon": -2.2427201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL5 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7176199038, - "lat": 51.7336884, - "lon": -2.2400900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7177349471, - "lat": 53.5561122, - "lon": -1.4469931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7177457270, - "lat": 51.6620572, - "lon": -2.1024579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL8 177", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7177470857, - "lat": 51.6832861, - "lon": -2.1039150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 58", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7177471063, - "lat": 51.6871638, - "lon": -2.1401026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL8 114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7177736957, - "lat": 51.1473136, - "lon": 1.3764980, - "tags": { - "amenity": "post_box", - "ref": "CT15 79" - } -}, -{ - "type": "node", - "id": 7177741069, - "lat": 51.1653371, - "lon": 1.2412796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT15 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7177771025, - "lat": 51.1859703, - "lon": 1.4043564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "CT14 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7177788617, - "lat": 51.2685887, - "lon": 1.3830280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT13 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7177894123, - "lat": 54.0613128, - "lon": -2.1530729, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BD23 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2020-02-01" - } -}, -{ - "type": "node", - "id": 7179373253, - "lat": 51.7892074, - "lon": 0.8161377, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7179456310, - "lat": 51.4034991, - "lon": -0.5662930, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7179456315, - "lat": 51.3968796, - "lon": -0.5660474, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7179671436, - "lat": 51.6087038, - "lon": -0.2686529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 752D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7179736335, - "lat": 51.2395755, - "lon": -0.1696841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 17:00; Su off", - "drive_through": "no", - "indoor": "yes", - "note": "Inside WH Smith / Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "RH1 18", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7179796441, - "lat": 51.2406325, - "lon": -0.1643899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "mail:meter": "yes", - "mail:parcel": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH1 11P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7179796442, - "lat": 51.2406441, - "lon": -0.1643758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00; Su off", - "drive_through": "no", - "mail:meter": "yes", - "mail:parcel": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH1 13P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7179835983, - "lat": 51.2498042, - "lon": -0.1596650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "drive_through": "no", - "mail:meter": "yes", - "mail:parcel": "yes", - "mail:stamped": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH1 64P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7179835984, - "lat": 51.2549282, - "lon": -0.1545022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH1 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7179889688, - "lat": 53.1885412, - "lon": -4.0786459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7180861685, - "lat": 50.9497521, - "lon": -2.5872960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT9 16", - "ref:GB:uprn": "10015289493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7180907967, - "lat": 52.0731897, - "lon": -2.9966256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:15", - "post_box:type": "wall", - "ref": "HR3 107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7180927159, - "lat": 52.0575291, - "lon": -2.9951195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 09:15", - "post_box:type": "wall", - "ref": "HR3 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7181775135, - "lat": 50.3645212, - "lon": -4.2979865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30, Sa 11:00", - "mapillary": "1417976825354727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL11 652", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-08-29", - "survey:date": "2022-08-29" - } -}, -{ - "type": "node", - "id": 7182037214, - "lat": 53.9697257, - "lon": -1.9418449, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7182495217, - "lat": 51.7589162, - "lon": -2.2478641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7182495218, - "lat": 51.7514139, - "lon": -2.2538975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL6 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7182605873, - "lat": 50.3297825, - "lon": -4.2108557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:45; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL10 790", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 7182764339, - "lat": 51.7708251, - "lon": -2.3260291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7182782310, - "lat": 51.7179798, - "lon": -2.3395347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7182783072, - "lat": 51.7533144, - "lon": -2.3151970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL10 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7185614477, - "lat": 51.6015531, - "lon": -0.4090292, - "tags": { - "amenity": "post_box", - "check_date": "2023-02-28", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "drive_through": "no", - "ref": "HA6 470", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7185614478, - "lat": 51.5819780, - "lon": -0.3388378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-08-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7191791517, - "lat": 52.4997819, - "lon": -1.6417113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "B46 927", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 7191944722, - "lat": 50.2285921, - "lon": -5.2272968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7193272746, - "lat": 51.2246838, - "lon": -0.2092516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH2 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7193272747, - "lat": 51.2257152, - "lon": -0.2131596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH2 146D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7193332768, - "lat": 51.2590988, - "lon": -0.1413899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 287D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7193332769, - "lat": 51.2607105, - "lon": -0.1339481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH1 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7193756730, - "lat": 51.2677476, - "lon": -0.1355980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH1 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7193756731, - "lat": 51.2596275, - "lon": -0.1227308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH1 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7193851395, - "lat": 51.1140057, - "lon": -3.1524163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7194852786, - "lat": 51.2948729, - "lon": 0.9585762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ME13 10" - } -}, -{ - "type": "node", - "id": 7194985841, - "lat": 51.4935347, - "lon": 0.1388774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA18 417", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7195020358, - "lat": 51.4935969, - "lon": 0.1337162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DA18 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7195282788, - "lat": 51.4998511, - "lon": -0.2079477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W14 11", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7197003305, - "lat": 50.9139596, - "lon": -0.5071914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7197007500, - "lat": 50.9249858, - "lon": -0.4234940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7197007501, - "lat": 50.9242241, - "lon": -0.4361017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 99", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7197007502, - "lat": 50.9217252, - "lon": -0.4445896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7197012200, - "lat": 50.9187205, - "lon": -0.4581454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH20 28", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7197073366, - "lat": 50.9591477, - "lon": -0.4241150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7197073367, - "lat": 50.9543380, - "lon": -0.4367441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH20 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7197276721, - "lat": 51.0148336, - "lon": -0.2616124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7198134396, - "lat": 51.0401463, - "lon": -2.9316140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7198176962, - "lat": 51.6007237, - "lon": -2.9809697, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7200017574, - "lat": 51.5864428, - "lon": -2.9451468, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7200458402, - "lat": 50.8004681, - "lon": -2.9361849, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7200469949, - "lat": 50.8058195, - "lon": -2.9504953, - "tags": { - "amenity": "post_box", - "mapillary": "197658152200666", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-05-07" - } -}, -{ - "type": "node", - "id": 7200498495, - "lat": 50.7980272, - "lon": -2.9495820, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7201403217, - "lat": 50.8546761, - "lon": -0.1765023, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "collection_times_checked": "2020-02-04", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN3 368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7201411362, - "lat": 50.8364959, - "lon": -0.0751097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "collection_times_checked": "2020-02-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7202024763, - "lat": 53.6202446, - "lon": -1.8021662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD4 115D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 7203673024, - "lat": 51.5701051, - "lon": -0.2999735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA9 352", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7203719258, - "lat": 51.5860975, - "lon": -0.3336652, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-12", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "ref": "HA1 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7204829839, - "lat": 50.9563824, - "lon": -0.2840298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7204842108, - "lat": 50.9331916, - "lon": -0.3437128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN44 1564", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7204842109, - "lat": 50.9472377, - "lon": -0.3525040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7204857363, - "lat": 50.9662771, - "lon": -0.2412674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN5 1354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7204857364, - "lat": 50.9499241, - "lon": -0.2403004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7204891412, - "lat": 51.1459056, - "lon": -0.4384232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU6 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7207462117, - "lat": 55.7877791, - "lon": -4.2888616, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7208748229, - "lat": 52.4059290, - "lon": -1.5659253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV4 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7208761534, - "lat": 52.4374054, - "lon": -1.5916559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV5 352", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7209315778, - "lat": 54.2322550, - "lon": -3.1867882, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7209521029, - "lat": 51.1422928, - "lon": -0.5064453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU6 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7209580277, - "lat": 51.0471518, - "lon": -0.5019423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH14 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7215080626, - "lat": 51.3019913, - "lon": -0.5399302, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-02-13", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 118D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7216583365, - "lat": 53.5681919, - "lon": -1.4308678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7216941466, - "lat": 53.5565979, - "lon": -2.6170079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN1 227", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7217200170, - "lat": 51.0533595, - "lon": -1.8066026, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP2 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7217200171, - "lat": 51.0537106, - "lon": -1.8023808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP2 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7217200172, - "lat": 51.0542164, - "lon": -1.7987879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP2 432D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7217200173, - "lat": 51.0542000, - "lon": -1.7945601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP2 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7217238480, - "lat": 51.0735501, - "lon": -1.9247800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7217238481, - "lat": 51.0820497, - "lon": -1.9199893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7217291858, - "lat": 51.0644337, - "lon": -1.7847905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SP1 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7218780985, - "lat": 53.1485165, - "lon": -1.5357167, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7221330728, - "lat": 51.0336625, - "lon": -1.8237452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7221488157, - "lat": 51.0337827, - "lon": -1.8407746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7227113076, - "lat": 54.3476667, - "lon": -1.4269110, - "tags": { - "amenity": "post_box", - "ref": "DL6 114D" - } -}, -{ - "type": "node", - "id": 7227332524, - "lat": 50.8789314, - "lon": 0.5695230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "328446008697536", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN34 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 7227355599, - "lat": 50.8627932, - "lon": 0.5832516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "TN34 39" - } -}, -{ - "type": "node", - "id": 7227357816, - "lat": 50.8732143, - "lon": 0.6089749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN35 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7227432123, - "lat": 53.5462156, - "lon": -1.4254786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7227432125, - "lat": 53.5462610, - "lon": -1.4361400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 171D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7228252407, - "lat": 51.2366792, - "lon": 0.1856775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "ref": "TN14 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7228384423, - "lat": 50.9767707, - "lon": 0.9655755, - "tags": { - "amenity": "post_box", - "fixme": "Post Box may have been moved from former Post Office at 10 The Parade. Survey needed to confirm reference (suspected TN28 229)" - } -}, -{ - "type": "node", - "id": 7229826263, - "lat": 53.5467443, - "lon": -1.4155797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "wall", - "ref": "S71 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231539481, - "lat": 51.4234661, - "lon": 0.1720771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA2 302", - "survey:date": "2020-11-14" - } -}, -{ - "type": "node", - "id": 7231546249, - "lat": 51.0319919, - "lon": -1.9035403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231546259, - "lat": 51.0351557, - "lon": -1.8962335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SP5 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231546260, - "lat": 51.0395383, - "lon": -1.8685381, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231614814, - "lat": 51.0268864, - "lon": -1.9442287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231614815, - "lat": 51.0264089, - "lon": -1.9345205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231690227, - "lat": 51.0178010, - "lon": -2.0211276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7231703238, - "lat": 51.0000512, - "lon": -2.0766291, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP7 93D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7234104013, - "lat": 51.4605491, - "lon": -3.4524710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF71 26" - } -}, -{ - "type": "node", - "id": 7234106264, - "lat": 51.6800436, - "lon": -2.2216502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL6 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7234183102, - "lat": 51.7419350, - "lon": -2.2252751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 79D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7234183103, - "lat": 51.7414137, - "lon": -2.2285388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL5 71", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7234187060, - "lat": 51.7429597, - "lon": -2.1937281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7234187061, - "lat": 51.7529010, - "lon": -2.2059526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7234198161, - "lat": 51.7593122, - "lon": -2.1890672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Royal Mail's own data appears to indicate this box is in Randwick. However, the name of the box indicated that it should be in The Vatch, and so it has proved to be. #surveyme", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL6 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7235535538, - "lat": 51.2508426, - "lon": 1.3917808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 07:30", - "mapillary": "345197080313760", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CT14 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-19" - } -}, -{ - "type": "node", - "id": 7237521710, - "lat": 51.0748733, - "lon": 1.0898003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CT21 103" - } -}, -{ - "type": "node", - "id": 7237560259, - "lat": 51.0740900, - "lon": 1.1006066, - "tags": { - "amenity": "post_box", - "ref": "CT21 194" - } -}, -{ - "type": "node", - "id": 7237619855, - "lat": 51.1770972, - "lon": 1.0364894, - "tags": { - "amenity": "post_box", - "ref": "TN25 272" - } -}, -{ - "type": "node", - "id": 7237627182, - "lat": 51.0795209, - "lon": 1.1784983, - "tags": { - "amenity": "post_box", - "level": "1", - "note": "located at foot of travelator from car park", - "ref": "CT20 399" - } -}, -{ - "type": "node", - "id": 7237627339, - "lat": 51.1218737, - "lon": 1.0434593, - "tags": { - "amenity": "post_box", - "ref": "TN25 267" - } -}, -{ - "type": "node", - "id": 7237644297, - "lat": 51.0786413, - "lon": 1.1791340, - "tags": { - "amenity": "post_box", - "note": "located in rear section of shop", - "ref": "CT20 16" - } -}, -{ - "type": "node", - "id": 7238480086, - "lat": 53.4979686, - "lon": 0.0571703, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Fen Walk", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN36 250" - } -}, -{ - "type": "node", - "id": 7238522531, - "lat": 51.4784349, - "lon": -0.1938177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "SW6 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7238534928, - "lat": 51.4742160, - "lon": -0.1922552, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW6 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7241901007, - "lat": 53.1403367, - "lon": -1.8044600, - "tags": { - "amenity": "post_box", - "ref": "SK17 20D" - } -}, -{ - "type": "node", - "id": 7243156974, - "lat": 51.3095904, - "lon": -0.2412890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243275438, - "lat": 51.3073832, - "lon": -0.2337258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 9D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243275449, - "lat": 51.3066311, - "lon": -0.2295479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243280099, - "lat": 51.3034447, - "lon": -0.2389186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243280106, - "lat": 51.3019114, - "lon": -0.2420118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243369849, - "lat": 51.3018110, - "lon": -0.2278653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 204D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243369870, - "lat": 51.2998779, - "lon": -0.2323337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 203D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243468940, - "lat": 51.2985081, - "lon": -0.2245950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243468941, - "lat": 51.3060982, - "lon": -0.2211520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243505359, - "lat": 51.3092898, - "lon": -0.2220839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243505361, - "lat": 51.3118748, - "lon": -0.2230398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 147D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7243505368, - "lat": 51.3100411, - "lon": -0.2351938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 200D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7245123962, - "lat": 50.7831295, - "lon": -0.6913340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO21 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7245650142, - "lat": 51.1977056, - "lon": -0.4433423, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7247409053, - "lat": 50.8483843, - "lon": -0.1323830, - "tags": { - "amenity": "post_box", - "ref": "BN1 265D" - } -}, -{ - "type": "node", - "id": 7248585222, - "lat": 51.0575811, - "lon": -0.3275566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7248585234, - "lat": 51.0634117, - "lon": -0.3301890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "post_box:type": "indoor", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7248902905, - "lat": 51.4353904, - "lon": -0.5353193, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7250084584, - "lat": 50.7837111, - "lon": -0.6969231, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PO21 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7252890967, - "lat": 53.5199001, - "lon": -1.4008540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S73 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7252890973, - "lat": 53.5191170, - "lon": -1.3962572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S73 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7252890978, - "lat": 53.5175777, - "lon": -1.3994107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S73 149D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7252890980, - "lat": 53.5228051, - "lon": -1.3987065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "S73 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7253031667, - "lat": 53.5186131, - "lon": -1.4103772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S73 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7253082887, - "lat": 53.5163430, - "lon": -1.4165946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S73 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7253091592, - "lat": 53.5221557, - "lon": -1.4156168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7253091593, - "lat": 53.5082179, - "lon": -1.4114213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S73 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7253172192, - "lat": 52.6838237, - "lon": -1.2659637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE67 492D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7253172208, - "lat": 52.6898689, - "lon": -1.2769641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "LE67 102D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7253172209, - "lat": 52.6911232, - "lon": -1.2825274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE67 617", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7253172211, - "lat": 52.6868622, - "lon": -1.2746797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE67 820D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7253699368, - "lat": 53.5327618, - "lon": -1.4521461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7254993128, - "lat": 55.8269028, - "lon": -4.2716633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7254993132, - "lat": 55.8359910, - "lon": -4.2708311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 406D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7254993133, - "lat": 55.8351723, - "lon": -4.2726798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 82D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7254993134, - "lat": 55.8341902, - "lon": -4.2765006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 331D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7254993135, - "lat": 55.8333930, - "lon": -4.2820059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "G41 182D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7254993136, - "lat": 55.8345231, - "lon": -4.2904240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G41 330D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7255053404, - "lat": 55.8302872, - "lon": -4.2953633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G41 745D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7255053405, - "lat": 55.8280403, - "lon": -4.2912541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "G41 226D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7255053408, - "lat": 55.8281194, - "lon": -4.2835414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 227", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7255053416, - "lat": 55.8272072, - "lon": -4.2769003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 628D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7255053418, - "lat": 55.8229659, - "lon": -4.2788824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G41 453D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7255100785, - "lat": 55.8537469, - "lon": -3.8296151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ML7 119", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7255104835, - "lat": 55.8457053, - "lon": -3.8644926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML7 160D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7255130585, - "lat": 55.8544859, - "lon": -3.7956912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML7 124", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7255130586, - "lat": 55.8106735, - "lon": -3.8384449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML7 102", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7256026394, - "lat": 53.4935690, - "lon": -2.2891091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7256524372, - "lat": 54.5622290, - "lon": -1.3391957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS18 358D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7256591483, - "lat": 50.7541835, - "lon": -2.6141465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT2 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7259564059, - "lat": 50.8593947, - "lon": -2.5120175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT2 5", - "ref:GB:uprn": "10015296906", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7259564060, - "lat": 50.8623803, - "lon": -2.5000910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 198", - "ref:GB:uprn": "10015283608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7259648048, - "lat": 51.9382397, - "lon": -3.3012229, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7259648951, - "lat": 50.8414421, - "lon": -2.5458214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 28", - "ref:GB:uprn": "10015309794", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7260321774, - "lat": 53.2195369, - "lon": -2.6409727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ref": "CW8 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7260892509, - "lat": 53.5409777, - "lon": -1.4354439, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "colour": "red", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S70 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-11-17" - } -}, -{ - "type": "node", - "id": 7260892513, - "lat": 53.5099470, - "lon": -1.3771336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7260892519, - "lat": 53.5375079, - "lon": -1.3400568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "S72 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7261427820, - "lat": 53.5462457, - "lon": -1.3624238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "S72 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7262782637, - "lat": 53.4421724, - "lon": -2.2187280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "M14 388", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7266266728, - "lat": 53.4050393, - "lon": -0.7825583, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7273082225, - "lat": 51.0809477, - "lon": -0.8036577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7273106502, - "lat": 51.0825789, - "lon": -0.7951158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU30 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7273788825, - "lat": 53.0527864, - "lon": -2.9967483, - "tags": { - "amenity": "post_box", - "ref": "LL11 27" - } -}, -{ - "type": "node", - "id": 7274062007, - "lat": 53.0443335, - "lon": -3.0016469, - "tags": { - "amenity": "post_box", - "ref": "LL13 12D" - } -}, -{ - "type": "node", - "id": 7274102875, - "lat": 53.0433136, - "lon": -2.9862000, - "tags": { - "amenity": "post_box", - "ref": "LL13 264D" - } -}, -{ - "type": "node", - "id": 7274143759, - "lat": 53.0403503, - "lon": -2.9963952, - "tags": { - "amenity": "post_box", - "ref": "LL13 21D" - } -}, -{ - "type": "node", - "id": 7274601732, - "lat": 53.0471182, - "lon": -2.9945283, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL11 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7276463158, - "lat": 51.0927856, - "lon": -2.2674564, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7277249730, - "lat": 51.4346958, - "lon": -0.5302851, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7277249731, - "lat": 51.4346885, - "lon": -0.5303052, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7277249746, - "lat": 51.4342965, - "lon": -0.5283461, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7277249747, - "lat": 51.4335794, - "lon": -0.5238332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 7278258711, - "lat": 50.3667197, - "lon": -3.6367830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7281801024, - "lat": 52.6752839, - "lon": 0.9269714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1949", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7282330912, - "lat": 53.5202716, - "lon": -1.3719931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S73 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7282395902, - "lat": 53.5348275, - "lon": -1.3612894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7282395909, - "lat": 53.5357402, - "lon": -1.3654803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S73 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7282519092, - "lat": 53.5338395, - "lon": -1.3758231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S73 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7282535676, - "lat": 53.5270903, - "lon": -1.3880764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 66D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7282535679, - "lat": 53.5296811, - "lon": -1.3880931, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S73 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7282612685, - "lat": 51.4312793, - "lon": -2.1863164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-08-12", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7283245725, - "lat": 53.5261147, - "lon": -1.4149871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S73 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7283245729, - "lat": 53.5259369, - "lon": -1.4053814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S73 69", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7283245735, - "lat": 53.5297892, - "lon": -1.4107523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S73 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7283245739, - "lat": 53.5322703, - "lon": -1.4166415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S73 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7283245750, - "lat": 53.5402739, - "lon": -1.3789305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7283245752, - "lat": 53.5284252, - "lon": -1.4181678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S73 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7283245756, - "lat": 53.5371872, - "lon": -1.3784624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 196", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7283284863, - "lat": 51.4312784, - "lon": -2.1863091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SN13 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7284616364, - "lat": 52.0694480, - "lon": -2.8990033, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7284712615, - "lat": 53.5381766, - "lon": -1.3731578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7284985541, - "lat": 53.5191407, - "lon": -2.2609786, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7286313268, - "lat": 54.6099424, - "lon": -1.0518802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TS10 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7286315836, - "lat": 51.1956130, - "lon": -3.4570643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 628D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 7288698226, - "lat": 51.5652348, - "lon": 0.0650825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 22D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7289660779, - "lat": 55.0051412, - "lon": -7.2795627, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT47 136" - } -}, -{ - "type": "node", - "id": 7292272015, - "lat": 51.5073749, - "lon": -0.2051899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7293223204, - "lat": 51.2029065, - "lon": -3.4708831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 7293223206, - "lat": 51.1997679, - "lon": -3.4652692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA24 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS survey" - } -}, -{ - "type": "node", - "id": 7296398943, - "lat": 51.4749729, - "lon": -2.4930425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BS15 1068D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7296483541, - "lat": 51.8825135, - "lon": 0.5817813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7296496050, - "lat": 52.9773838, - "lon": -2.1041354, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7296529460, - "lat": 50.9246339, - "lon": -1.4261188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 330D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7296626170, - "lat": 53.7927636, - "lon": -2.6964073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "streetlevel_imagery" - } -}, -{ - "type": "node", - "id": 7297075233, - "lat": 51.8813868, - "lon": 0.5736858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 74" - } -}, -{ - "type": "node", - "id": 7297075234, - "lat": 51.8810964, - "lon": 0.5685862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 25" - } -}, -{ - "type": "node", - "id": 7297075235, - "lat": 51.8864327, - "lon": 0.5699522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 97" - } -}, -{ - "type": "node", - "id": 7297075236, - "lat": 51.8801931, - "lon": 0.5659766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 2" - } -}, -{ - "type": "node", - "id": 7297075237, - "lat": 51.8775217, - "lon": 0.5695430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 59" - } -}, -{ - "type": "node", - "id": 7297075238, - "lat": 51.8743841, - "lon": 0.5762545, - "tags": { - "amenity": "post_box", - "ref": "CM7 77" - } -}, -{ - "type": "node", - "id": 7297075239, - "lat": 51.8720014, - "lon": 0.5814001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 99" - } -}, -{ - "type": "node", - "id": 7297075240, - "lat": 51.8696758, - "lon": 0.5777770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM7 98" - } -}, -{ - "type": "node", - "id": 7297075241, - "lat": 51.8699688, - "lon": 0.5702166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM77 518" - } -}, -{ - "type": "node", - "id": 7297137769, - "lat": 50.3762621, - "lon": -3.6600082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7297137770, - "lat": 50.3710215, - "lon": -3.6759033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7297546665, - "lat": 56.1264404, - "lon": -4.1713782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK8 160", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7297590718, - "lat": 56.1718298, - "lon": -4.3661910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK8 153", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297590719, - "lat": 56.1780843, - "lon": -4.3784970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK8 77", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297590720, - "lat": 56.1761195, - "lon": -4.3874717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK8 144", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297590722, - "lat": 56.1882149, - "lon": -4.4913107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "FK8 159", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297590723, - "lat": 56.1850498, - "lon": -4.4535948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK8 93", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297590724, - "lat": 56.1814272, - "lon": -4.4128343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "FK8 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297619010, - "lat": 56.0732226, - "lon": -4.4690202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G63 941", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7297619011, - "lat": 56.1494393, - "lon": -4.6412224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "G63 593", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7297795377, - "lat": 51.5190884, - "lon": -0.1409348, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1W 39;W1W 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7297856303, - "lat": 51.6100409, - "lon": -2.7606420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "859822216197541", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP26 455D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-19" - } -}, -{ - "type": "node", - "id": 7297870990, - "lat": 51.6080635, - "lon": -2.7427253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP26 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7299288979, - "lat": 50.7838807, - "lon": -0.6869942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "PO21 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7299288980, - "lat": 50.7885228, - "lon": -0.6879772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "PO21 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7299412171, - "lat": 51.0590211, - "lon": -0.3372035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH12 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "wikimedia_commons": "File:Blackbridge_Lane_post_box.jpg" - } -}, -{ - "type": "node", - "id": 7299412172, - "lat": 51.0530138, - "lon": -0.3466237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH13 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7299710346, - "lat": 51.6198745, - "lon": -3.9490143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA1 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7300687821, - "lat": 51.6175019, - "lon": -2.8550881, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP26 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7300687822, - "lat": 51.6134498, - "lon": -2.7981824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP26 438", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7300715602, - "lat": 51.6950844, - "lon": -2.9039305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP15 351D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7300715603, - "lat": 51.7070647, - "lon": -2.9070881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP15 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7300720925, - "lat": 51.6721027, - "lon": -2.9087082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP15 342", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7300720926, - "lat": 51.6652157, - "lon": -2.9075012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP15 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7300788597, - "lat": 56.1330250, - "lon": -3.1529207, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY1 16" - } -}, -{ - "type": "node", - "id": 7300788617, - "lat": 56.1448003, - "lon": -3.1512200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY1 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7301404965, - "lat": 50.6513971, - "lon": -1.1611689, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2020-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "337301101072290", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PO36 13", - "ref:GB:uprn": "10015417577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-07-05", - "website": "https://www.royalmail.com/services-near-you/postbox/leisure-centre-po36-9lt/0000PO3613" - } -}, -{ - "type": "node", - "id": 7302433023, - "lat": 50.7803830, - "lon": -0.6882307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "pillar", - "ref": "PO21 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7304612974, - "lat": 51.7986418, - "lon": -2.9971728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7304612975, - "lat": 51.7925997, - "lon": -3.0095282, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7304620362, - "lat": 51.7659754, - "lon": -2.9625481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7304620363, - "lat": 51.7576388, - "lon": -2.9444540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-09-05", - "wikimedia_commons": "File:Queen Elizabeth II postbox surrounded by nettles, Llanfair Kilgeddin, Monmouthshire - geograph.org.uk - 5391830.jpg" - } -}, -{ - "type": "node", - "id": 7304639368, - "lat": 51.8677644, - "lon": -3.2086395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP8 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7304639369, - "lat": 51.8668448, - "lon": -3.1748973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP8 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7307388221, - "lat": 51.6040216, - "lon": -0.3353169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 261D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7307507583, - "lat": 51.8550544, - "lon": -3.0146537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7307507584, - "lat": 51.8734916, - "lon": -2.9970863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7307532387, - "lat": 51.8891443, - "lon": -3.0018123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7308674631, - "lat": 51.0034282, - "lon": -0.2839402, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7308674632, - "lat": 51.0042712, - "lon": -0.2674998, - "tags": { - "amenity": "post_box", - "ref": "RH13 89" - } -}, -{ - "type": "node", - "id": 7310565013, - "lat": 51.7742054, - "lon": 0.4664251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7310663304, - "lat": 51.7743050, - "lon": -2.9090390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7310663305, - "lat": 51.7863836, - "lon": -2.9661047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7310713388, - "lat": 51.6971239, - "lon": -2.8312081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "317649013271748", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP15 361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-23" - } -}, -{ - "type": "node", - "id": 7310713390, - "lat": 51.7115343, - "lon": -2.8540682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP15 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7310713391, - "lat": 51.7264691, - "lon": -2.8321257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP15 364", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7314744487, - "lat": 51.6478156, - "lon": -2.7659065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP16 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7318693705, - "lat": 51.4743926, - "lon": -2.1519041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7319319066, - "lat": 51.6819034, - "lon": -2.1671030, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL8 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7319344399, - "lat": 52.9232871, - "lon": -4.1313846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL49 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7319374092, - "lat": 51.1397239, - "lon": -3.1732813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA5 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7320183780, - "lat": 51.4324857, - "lon": -0.5168774, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7320509179, - "lat": 51.5906911, - "lon": -0.3215187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "HA3 281", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7321803584, - "lat": 51.4922452, - "lon": -0.0064409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E14 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7323788135, - "lat": 54.9984510, - "lon": -6.4087737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7324143219, - "lat": 51.1304217, - "lon": -0.8075944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU35 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7325261214, - "lat": 54.0632863, - "lon": -2.7878088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LA1 201P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7325261215, - "lat": 54.0565215, - "lon": -2.7921822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LA1 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7325965821, - "lat": 54.0718243, - "lon": -2.8668335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "LA4 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7325965822, - "lat": 54.0718477, - "lon": -2.8668325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Parcel Postbox", - "post_box:type": "meter", - "ref": "LA4 249P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7326169120, - "lat": 51.5988728, - "lon": -2.9448365, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7326737130, - "lat": 53.6813099, - "lon": -1.3049273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "WF8 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7326737131, - "lat": 53.6936803, - "lon": -1.3113720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 11" - } -}, -{ - "type": "node", - "id": 7326737132, - "lat": 53.6916453, - "lon": -1.3108335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7326976524, - "lat": 51.1528517, - "lon": -0.7983349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 70D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7326984538, - "lat": 50.9525113, - "lon": 0.5841163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN31 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7328673323, - "lat": 51.3612598, - "lon": -2.0277309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7328888156, - "lat": 50.7349647, - "lon": -3.5081283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX4 434D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7330324563, - "lat": 51.1692852, - "lon": -0.7994995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 60D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7330324564, - "lat": 51.1621841, - "lon": -0.8047660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7330324565, - "lat": 51.1658719, - "lon": -0.7961574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7332987064, - "lat": 51.1784186, - "lon": -0.7952904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7332987081, - "lat": 51.1734141, - "lon": -0.7974439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7333622067, - "lat": 51.1801442, - "lon": -0.8115654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7335370678, - "lat": 56.8431490, - "lon": -2.2823177, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "DD10 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7337267583, - "lat": 51.2216408, - "lon": -0.7167173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7337267584, - "lat": 51.2075654, - "lon": -0.7280223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7337433981, - "lat": 51.2128544, - "lon": -0.7828289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU9 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7340914374, - "lat": 50.9710671, - "lon": -2.9987253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA3 553" - } -}, -{ - "type": "node", - "id": 7340963519, - "lat": 50.9777583, - "lon": -2.9976086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "drive_through": "no", - "mapillary": "968018447074285", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA3 263", - "survey:date": "2020-01-28" - } -}, -{ - "type": "node", - "id": 7340963520, - "lat": 50.9756119, - "lon": -2.9905126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TA3 15" - } -}, -{ - "type": "node", - "id": 7341061378, - "lat": 51.0742509, - "lon": -0.6456786, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 50", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7341089309, - "lat": 51.0801515, - "lon": -0.6964310, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7341096257, - "lat": 51.0572122, - "lon": -0.6426305, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU28 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7341218981, - "lat": 51.0538661, - "lon": -0.6436125, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU28 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7341361215, - "lat": 51.0236447, - "lon": -0.5094960, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7341406933, - "lat": 51.1959432, - "lon": -0.6924569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU8 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7341658187, - "lat": 53.6467596, - "lon": -1.7859368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "ref": "HD1 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7341658188, - "lat": 53.6467787, - "lon": -1.7859355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:15", - "ref": "HD1 271", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7341828937, - "lat": 51.1477615, - "lon": -0.6493346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU8 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7343197293, - "lat": 50.9669966, - "lon": -3.0145251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:00", - "drive_through": "no", - "mapillary": "541779920144852", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TA3 180", - "survey:date": "2020-03-11" - } -}, -{ - "type": "node", - "id": 7344876560, - "lat": 51.5993883, - "lon": -0.3307503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 311D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7344876561, - "lat": 51.6011585, - "lon": -0.3339327, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-17", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 205D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7344876562, - "lat": 51.5954820, - "lon": -0.3403398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7352725171, - "lat": 53.5335103, - "lon": -1.7155140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate:date": "2019-05-07", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S36 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7356625335, - "lat": 53.2236745, - "lon": -2.5444809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW8 144", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7357286237, - "lat": 53.0123160, - "lon": -2.2160467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7359394692, - "lat": 51.0061948, - "lon": -1.4776094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO51 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7362763272, - "lat": 51.2310772, - "lon": -0.7621640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU9 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7366373657, - "lat": 51.6952827, - "lon": -0.2329758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EN6 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7366561148, - "lat": 51.4446825, - "lon": -2.7482028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS48 316D" - } -}, -{ - "type": "node", - "id": 7366879633, - "lat": 50.3650261, - "lon": -4.6171309, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7369564162, - "lat": 51.4802195, - "lon": -1.1129241, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7370243193, - "lat": 51.5960402, - "lon": -0.3206660, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-05-02", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 359", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7371561061, - "lat": 51.3687886, - "lon": -0.3661521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "ref": "KT10 360" - } -}, -{ - "type": "node", - "id": 7371769874, - "lat": 51.3229602, - "lon": -0.2738838, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "KT18 149" - } -}, -{ - "type": "node", - "id": 7371769875, - "lat": 51.3190801, - "lon": -0.2708931, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "KT18 194" - } -}, -{ - "type": "node", - "id": 7371769876, - "lat": 51.3213122, - "lon": -0.2779811, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "KT18 160" - } -}, -{ - "type": "node", - "id": 7371769877, - "lat": 51.3189719, - "lon": -0.2761979, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "KT18 205" - } -}, -{ - "type": "node", - "id": 7372250956, - "lat": 52.1539488, - "lon": 1.0468935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP6 1371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7373669636, - "lat": 56.1633140, - "lon": -3.6794279, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7373836359, - "lat": 51.5858153, - "lon": -0.3299292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7374572821, - "lat": 53.4977473, - "lon": -1.5614220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7374572823, - "lat": 53.5080717, - "lon": -1.5429406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7374879054, - "lat": 53.4708955, - "lon": -2.2736764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "SANDIWAY", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7374958466, - "lat": 53.4706799, - "lon": -2.2804636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "CRAVEN DRIVE", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7374978757, - "lat": 53.4695528, - "lon": -2.2841895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "MERCHANT QUAY", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M50 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7374997382, - "lat": 53.4743924, - "lon": -2.2773886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "PHEOBE STREET", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7375030601, - "lat": 53.4766373, - "lon": -2.2835825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "BROADWAY", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7375055243, - "lat": 53.4776421, - "lon": -2.2786342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "GOODIERS DRIVE", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "M5 354", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7375545861, - "lat": 51.4431450, - "lon": -0.9989187, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7375723002, - "lat": 51.4470863, - "lon": -0.9957170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG30 395D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box in Kenilworth Avenue 2020-06-26 08.03.47.jpg" - } -}, -{ - "type": "node", - "id": 7376265497, - "lat": 51.3055085, - "lon": -0.5440327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 183", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7376765330, - "lat": 51.4380882, - "lon": -2.7584937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 555D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7378983982, - "lat": 53.4759836, - "lon": -2.2943563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "description": "BROADWAY", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M50 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7379841699, - "lat": 50.3858785, - "lon": -4.9307425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "It's a lamp box design post box but it is embedded in a pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pillar", - "post_box:type": "lamp", - "ref": "TR9 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7379868115, - "lat": 50.3949839, - "lon": -4.9333400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7379902891, - "lat": 51.6022107, - "lon": -0.3228614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 803D" - } -}, -{ - "type": "node", - "id": 7379902892, - "lat": 51.6046775, - "lon": -0.3214971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 832D" - } -}, -{ - "type": "node", - "id": 7379902894, - "lat": 51.6014022, - "lon": -0.3186060, - "tags": { - "amenity": "post_box", - "check_date": "2022-05-31", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7379902895, - "lat": 51.5955339, - "lon": -0.3125327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 317", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7379902896, - "lat": 51.5945182, - "lon": -0.3172073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 328" - } -}, -{ - "type": "node", - "id": 7379946591, - "lat": 50.3939745, - "lon": -4.9294844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR9 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7380322236, - "lat": 50.3637118, - "lon": -4.9793064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR8 58D", - "royal_cypher": "EVIIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7380322257, - "lat": 50.3744896, - "lon": -4.9653782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR8 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7380356609, - "lat": 53.4751071, - "lon": -1.4927654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "wall", - "ref": "S35 4744", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7380356610, - "lat": 53.4710358, - "lon": -1.4998994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S35 707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7380435666, - "lat": 53.4837974, - "lon": -1.6000651, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 405" - } -}, -{ - "type": "node", - "id": 7380435667, - "lat": 53.5218728, - "lon": -1.7521374, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-07-20", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 698", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7380435668, - "lat": 53.5277488, - "lon": -1.7337563, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-07-19", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7380435669, - "lat": 53.5167697, - "lon": -1.7640688, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-09-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S36 667D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7380435670, - "lat": 53.4745719, - "lon": -1.5796677, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 684", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7380702437, - "lat": 53.5421453, - "lon": -1.5906759, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S36 746" - } -}, -{ - "type": "node", - "id": 7380702438, - "lat": 53.5385652, - "lon": -1.6043831, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S36 422" - } -}, -{ - "type": "node", - "id": 7380876685, - "lat": 51.4551348, - "lon": -0.1532260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00" - } -}, -{ - "type": "node", - "id": 7380877285, - "lat": 51.4527749, - "lon": -0.1514549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW4 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7380889285, - "lat": 51.4531758, - "lon": -0.1546533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW12 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7383263513, - "lat": 53.2237924, - "lon": -1.4476303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S40 287", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7383263514, - "lat": 53.2293824, - "lon": -1.4430714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S40 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7383263516, - "lat": 53.3533304, - "lon": -1.1133875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "S81 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7383263518, - "lat": 53.2295603, - "lon": -1.4349925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S40 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7383263519, - "lat": 53.3200685, - "lon": -1.1107704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7383263520, - "lat": 53.2191051, - "lon": -1.4329682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S40 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7383362836, - "lat": 51.5568053, - "lon": 0.2203421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7384405252, - "lat": 50.4024132, - "lon": -4.9119301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR9 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7384414482, - "lat": 50.3962396, - "lon": -4.9403885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR9 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7384414483, - "lat": 50.3784220, - "lon": -4.9474113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 10:00; Su off", - "drive_through": "no", - "note": "Lamp box design post box embedded in a stone wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR9 29", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7386020891, - "lat": 50.8531819, - "lon": -0.1406486, - "tags": { - "amenity": "post_box", - "ref": "BN1 280D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7386048820, - "lat": 50.8508131, - "lon": -0.1352487, - "tags": { - "amenity": "post_box", - "ref": "BN1 281D" - } -}, -{ - "type": "node", - "id": 7392181896, - "lat": 51.6044487, - "lon": -0.3281224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 143", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7392220800, - "lat": 50.9257079, - "lon": -2.9165609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 580" - } -}, -{ - "type": "node", - "id": 7392653314, - "lat": 53.7150060, - "lon": -0.1484954, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HU12 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7392843759, - "lat": 53.8374333, - "lon": -1.0758956, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "YO19 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7392857046, - "lat": 53.4794775, - "lon": -2.2869097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "ECCLES NEW ROAD", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M5 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7393542762, - "lat": 50.7722404, - "lon": -4.1233031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7394483595, - "lat": 52.0407622, - "lon": -4.4668753, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6210395", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7394614366, - "lat": 52.7837590, - "lon": 1.1378346, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7395688354, - "lat": 53.5915815, - "lon": -0.2087349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN41 128" - } -}, -{ - "type": "node", - "id": 7396228822, - "lat": 50.8113182, - "lon": -0.5143316, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-16", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN16 1505D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7396251173, - "lat": 50.8092721, - "lon": -0.5170380, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-03-16", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN16 1446D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7397939364, - "lat": 50.8458323, - "lon": -0.1480114, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN1 286D" - } -}, -{ - "type": "node", - "id": 7398096387, - "lat": 50.8524381, - "lon": -0.1546456, - "tags": { - "amenity": "post_box", - "ref": "BN1 310D" - } -}, -{ - "type": "node", - "id": 7398149511, - "lat": 50.8478074, - "lon": -0.1467034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN1 287", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 7398718204, - "lat": 50.7245318, - "lon": -1.9375849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 38", - "ref:GB:uprn": "10015804006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7398718218, - "lat": 50.7250454, - "lon": -1.9491734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BH14 190;BH14 189", - "ref:GB:uprn": "10015814028", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7398718223, - "lat": 50.7250246, - "lon": -1.9420909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 14", - "ref:GB:uprn": "10015406059", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7401625270, - "lat": 53.7539014, - "lon": -2.0310622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7401685943, - "lat": 50.5428146, - "lon": -4.1596378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7401757856, - "lat": 51.3421836, - "lon": -0.7443673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "778342503041359", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU15 16D", - "survey:date": "2020-09-29" - } -}, -{ - "type": "node", - "id": 7401757867, - "lat": 51.3436764, - "lon": -0.7362473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU15 4D" - } -}, -{ - "type": "node", - "id": 7401796466, - "lat": 51.6080138, - "lon": -0.3361826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7404778561, - "lat": 50.8515852, - "lon": -0.1461425, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN1 269D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 7404823542, - "lat": 50.8562000, - "lon": -0.1400739, - "tags": { - "amenity": "post_box", - "ref": "BN1 271" - } -}, -{ - "type": "node", - "id": 7404824997, - "lat": 50.8547001, - "lon": -0.1444828, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN1 279D" - } -}, -{ - "type": "node", - "id": 7404889190, - "lat": 50.8546593, - "lon": -0.1358160, - "tags": { - "amenity": "post_box", - "ref": "BN1 270D" - } -}, -{ - "type": "node", - "id": 7406382918, - "lat": 53.4848792, - "lon": -2.3081803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M5 312" - } -}, -{ - "type": "node", - "id": 7406382919, - "lat": 53.4817269, - "lon": -2.3020247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M5 138" - } -}, -{ - "type": "node", - "id": 7406382920, - "lat": 53.4803032, - "lon": -2.2930124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M5 244" - } -}, -{ - "type": "node", - "id": 7406382921, - "lat": 53.4841745, - "lon": -2.3212641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "ECCLES NEW ROAD", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "M5 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7406382922, - "lat": 53.4818977, - "lon": -2.2884902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M5 847" - } -}, -{ - "type": "node", - "id": 7406382923, - "lat": 53.4832073, - "lon": -2.2810806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "M5 30" - } -}, -{ - "type": "node", - "id": 7410019351, - "lat": 50.8407362, - "lon": -0.1352585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 293D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7410099221, - "lat": 50.8403376, - "lon": -0.1273766, - "tags": { - "amenity": "post_box", - "ref": "BN1 261D" - } -}, -{ - "type": "node", - "id": 7410128840, - "lat": 50.8427311, - "lon": -0.1259483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 262D" - } -}, -{ - "type": "node", - "id": 7410142235, - "lat": 50.8453357, - "lon": -0.1253450, - "tags": { - "amenity": "post_box", - "ref": "BN1 264" - } -}, -{ - "type": "node", - "id": 7410164909, - "lat": 50.8473453, - "lon": -0.1309382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BN1 259D" - } -}, -{ - "type": "node", - "id": 7412374439, - "lat": 51.2374094, - "lon": -0.7946983, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU9 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7412554649, - "lat": 55.0673407, - "lon": -6.9351459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 16" - } -}, -{ - "type": "node", - "id": 7412556704, - "lat": 55.1406561, - "lon": -6.9441249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT49 22" - } -}, -{ - "type": "node", - "id": 7412557260, - "lat": 55.1279838, - "lon": -6.9517483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 7" - } -}, -{ - "type": "node", - "id": 7412562765, - "lat": 55.0770792, - "lon": -6.9650210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 14:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 29" - } -}, -{ - "type": "node", - "id": 7412571787, - "lat": 55.0870822, - "lon": -7.0042822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 10" - } -}, -{ - "type": "node", - "id": 7412577948, - "lat": 55.0501837, - "lon": -6.9510966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT49 11" - } -}, -{ - "type": "node", - "id": 7412577993, - "lat": 55.0522934, - "lon": -6.9512651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT49 30" - } -}, -{ - "type": "node", - "id": 7412579772, - "lat": 55.0562353, - "lon": -6.9386044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 19" - } -}, -{ - "type": "node", - "id": 7412590429, - "lat": 55.0528786, - "lon": -6.9493491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT49 1" - } -}, -{ - "type": "node", - "id": 7412600457, - "lat": 55.0502130, - "lon": -6.9281612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 28" - } -}, -{ - "type": "node", - "id": 7412600694, - "lat": 55.0458676, - "lon": -6.9382793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 24" - } -}, -{ - "type": "node", - "id": 7412614885, - "lat": 55.0528122, - "lon": -6.9373734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT49 15" - } -}, -{ - "type": "node", - "id": 7415257569, - "lat": 52.4523693, - "lon": 1.4410061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR35 3502" - } -}, -{ - "type": "node", - "id": 7416741103, - "lat": 53.4910420, - "lon": -2.2382859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7417433420, - "lat": 54.6961781, - "lon": -5.9508229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 512" - } -}, -{ - "type": "node", - "id": 7417436865, - "lat": 54.6561913, - "lon": -5.9339153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 47" - } -}, -{ - "type": "node", - "id": 7417490326, - "lat": 54.7231027, - "lon": -6.2070890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 21" - } -}, -{ - "type": "node", - "id": 7417512416, - "lat": 54.7263737, - "lon": -6.2216406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT41 62" - } -}, -{ - "type": "node", - "id": 7417555636, - "lat": 54.7142021, - "lon": -6.2067671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT41 54" - } -}, -{ - "type": "node", - "id": 7417649635, - "lat": 54.6049548, - "lon": -5.9226630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT1 14" - } -}, -{ - "type": "node", - "id": 7417761795, - "lat": 51.2397865, - "lon": -2.9836593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7417845240, - "lat": 54.6610016, - "lon": -5.9411309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT36 43" - } -}, -{ - "type": "node", - "id": 7417943712, - "lat": 54.6661826, - "lon": -5.9505983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 644" - } -}, -{ - "type": "node", - "id": 7417972239, - "lat": 54.6809177, - "lon": -5.9183643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT36 873" - } -}, -{ - "type": "node", - "id": 7418045303, - "lat": 54.6481498, - "lon": -5.9228202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 341" - } -}, -{ - "type": "node", - "id": 7418110139, - "lat": 54.6887410, - "lon": -5.9484721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 144" - } -}, -{ - "type": "node", - "id": 7418683196, - "lat": 50.9302492, - "lon": -2.9169526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 86" - } -}, -{ - "type": "node", - "id": 7418906430, - "lat": 50.9366279, - "lon": -2.8837774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 22" - } -}, -{ - "type": "node", - "id": 7419509514, - "lat": 52.3562276, - "lon": -1.2259622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7419814417, - "lat": 51.4298639, - "lon": -2.7459022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 611D" - } -}, -{ - "type": "node", - "id": 7419814418, - "lat": 51.4250286, - "lon": -2.7524832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7419814425, - "lat": 51.4315634, - "lon": -2.7633337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 580D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7420317415, - "lat": 56.5631640, - "lon": -2.5801596, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7422318373, - "lat": 53.5168404, - "lon": -2.8050441, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA11 18" - } -}, -{ - "type": "node", - "id": 7422356059, - "lat": 53.5176944, - "lon": -2.7893894, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 120" - } -}, -{ - "type": "node", - "id": 7422356060, - "lat": 53.5176684, - "lon": -2.7953835, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA11 47" - } -}, -{ - "type": "node", - "id": 7422382701, - "lat": 52.8005247, - "lon": 1.0981152, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7422769909, - "lat": 54.8065097, - "lon": -1.5568674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH1 303" - } -}, -{ - "type": "node", - "id": 7423347645, - "lat": 53.4808826, - "lon": -2.2739983, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "M5 218" - } -}, -{ - "type": "node", - "id": 7423720182, - "lat": 53.4284715, - "lon": -2.4356242, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "M44 489" - } -}, -{ - "type": "node", - "id": 7423722581, - "lat": 52.5749860, - "lon": -0.2737758, - "tags": { - "amenity": "post_box", - "ref": "PE3 233" - } -}, -{ - "type": "node", - "id": 7423791023, - "lat": 53.4382613, - "lon": -2.4283876, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M44 483" - } -}, -{ - "type": "node", - "id": 7426213510, - "lat": 52.4468941, - "lon": -0.1115515, - "tags": { - "amenity": "post_box", - "mapillary": "307578207486076", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-19" - } -}, -{ - "type": "node", - "id": 7427926313, - "lat": 52.5837221, - "lon": -0.2506463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "collections:priority": "yes", - "collections:weekends": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 49", - "source:collection_times": "official stickers + regular plate" - } -}, -{ - "type": "node", - "id": 7428161595, - "lat": 54.0201376, - "lon": -0.6647646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "YO25 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7428730584, - "lat": 52.5720584, - "lon": -0.2674424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "ref": "PE3 373", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7430760539, - "lat": 51.5655943, - "lon": 0.0559500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7430760540, - "lat": 51.5639842, - "lon": 0.0597811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 32D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 7430760541, - "lat": 51.5608782, - "lon": 0.0604650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7430760542, - "lat": 51.5626578, - "lon": 0.0638674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7430760543, - "lat": 51.5591410, - "lon": 0.0668536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7430760544, - "lat": 51.5541709, - "lon": 0.0572072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 7", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7430760545, - "lat": 51.5484258, - "lon": 0.0575066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7430760546, - "lat": 51.5479035, - "lon": 0.0531759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7433721704, - "lat": 51.4605669, - "lon": -0.1686397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7433931719, - "lat": 50.8388618, - "lon": -0.1790333, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-29", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "BN3 329D" - } -}, -{ - "type": "node", - "id": 7434619525, - "lat": 55.9908477, - "lon": -3.7315350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "FK2 11D" - } -}, -{ - "type": "node", - "id": 7434910057, - "lat": 54.1196666, - "lon": -0.5436504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO17 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7435012481, - "lat": 50.9199244, - "lon": -2.9118627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 533" - } -}, -{ - "type": "node", - "id": 7435012482, - "lat": 50.9231806, - "lon": -2.9127822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 98" - } -}, -{ - "type": "node", - "id": 7435012483, - "lat": 50.9273139, - "lon": -2.9171810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 579" - } -}, -{ - "type": "node", - "id": 7435012484, - "lat": 50.9282579, - "lon": -2.9134272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA19 95", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7435031185, - "lat": 50.9267581, - "lon": -2.9090197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA19 242" - } -}, -{ - "type": "node", - "id": 7435031186, - "lat": 50.9285110, - "lon": -2.9078045, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 459" - } -}, -{ - "type": "node", - "id": 7435031187, - "lat": 50.9305088, - "lon": -2.9245273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA19 434" - } -}, -{ - "type": "node", - "id": 7435458363, - "lat": 50.6831916, - "lon": -2.1745600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 73", - "ref:GB:uprn": "10015474211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS+GLONASS" - } -}, -{ - "type": "node", - "id": 7435648908, - "lat": 51.6131938, - "lon": -0.3135708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HA7 810" - } -}, -{ - "type": "node", - "id": 7435648909, - "lat": 51.6114224, - "lon": -0.3218318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA7 806", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7435648910, - "lat": 51.6104370, - "lon": -0.3284367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA7 816", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7435689364, - "lat": 52.5913771, - "lon": -0.2792149, - "tags": { - "amenity": "post_box", - "ref": "PE3 339" - } -}, -{ - "type": "node", - "id": 7435689365, - "lat": 52.5869687, - "lon": -0.2673408, - "tags": { - "amenity": "post_box", - "ref": "PE3 267" - } -}, -{ - "type": "node", - "id": 7435689366, - "lat": 52.5905566, - "lon": -0.2686659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PE3 278" - } -}, -{ - "type": "node", - "id": 7435689367, - "lat": 52.5820907, - "lon": -0.2707902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note:royal_cypher": "EIIR plus crown. Crown and II are half-height and fit within the full height of the letters ER", - "post_box:type": "lamp", - "ref": "PE3 340D" - } -}, -{ - "type": "node", - "id": 7435726588, - "lat": 54.5639384, - "lon": -1.3522503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS19 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7435726589, - "lat": 54.5614987, - "lon": -1.3486138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS18 332D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7437781107, - "lat": 54.8581527, - "lon": -1.8588603, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7438141710, - "lat": 54.8740008, - "lon": -1.8422795, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7438749923, - "lat": 57.4209712, - "lon": -4.6661519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV4 328", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7439177720, - "lat": 52.5878612, - "lon": -0.2468086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE1 52;PE1 5200", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7440153190, - "lat": 51.5583084, - "lon": -0.0687355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "postal_code": "N16", - "ref": "N16 18", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 7440239079, - "lat": 51.6038946, - "lon": -0.3559141, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-15", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7440239080, - "lat": 51.5983970, - "lon": -0.3446659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7443390391, - "lat": 52.5724073, - "lon": -0.2431924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "description": "Double pillar", - "last_checked": "2022-09-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "PE1 134;PE1 1340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7443696721, - "lat": 51.6115900, - "lon": -0.1151580, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7443862122, - "lat": 51.6096566, - "lon": -0.1167805, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7445047563, - "lat": 51.3964817, - "lon": -0.2488651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 289D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7445116054, - "lat": 52.0335476, - "lon": -4.4662508, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7447962774, - "lat": 51.6109530, - "lon": -0.1222064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7448914530, - "lat": 54.0408900, - "lon": -1.4366864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7448950765, - "lat": 53.3683932, - "lon": -1.5139848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S11 364", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7448950766, - "lat": 53.3652263, - "lon": -1.5259581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S11 802D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7448995421, - "lat": 54.0592041, - "lon": -1.4425198, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7449758579, - "lat": 50.7363876, - "lon": -2.0414817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 208", - "ref:GB:uprn": "10015328368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7449770852, - "lat": 50.7415814, - "lon": -2.0284595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7449770866, - "lat": 50.7407705, - "lon": -2.0367307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 282D", - "ref:GB:uprn": "10015464725", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7450256717, - "lat": 53.9762914, - "lon": -0.4933743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "wall", - "ref": "YO25 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7450399388, - "lat": 54.0193028, - "lon": -0.4959429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "post_box:type": "wall", - "ref": "YO25 392", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7450436687, - "lat": 54.0123247, - "lon": -0.4791578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:15", - "post_box:type": "lamp", - "ref": "YO25 326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7450443804, - "lat": 52.5992874, - "lon": -0.2730479, - "tags": { - "amenity": "post_box", - "ref": "PE3 302" - } -}, -{ - "type": "node", - "id": 7450443805, - "lat": 52.6036320, - "lon": -0.2865039, - "tags": { - "amenity": "post_box", - "ref": "PE3 305" - } -}, -{ - "type": "node", - "id": 7450443806, - "lat": 52.6047967, - "lon": -0.2804193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE3 304" - } -}, -{ - "type": "node", - "id": 7450457039, - "lat": 54.0487049, - "lon": -0.6309041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "YO25 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7450532794, - "lat": 54.0714295, - "lon": -0.5764899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "post_box:type": "wall", - "ref": "YO25 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7450557439, - "lat": 54.0079595, - "lon": -0.4600473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "YO25 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7450593594, - "lat": 54.0589666, - "lon": -1.0862312, - "tags": { - "amenity": "post_box", - "note": "is possibly a private collection box for holiday park visitors", - "post_box:type": "lamp", - "ref": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7450607744, - "lat": 54.0202667, - "lon": -0.3272566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "YO25 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7453112702, - "lat": 51.3107100, - "lon": 0.1993140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN14 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7454430182, - "lat": 52.3776638, - "lon": 1.1059943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP22 7004D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7454994899, - "lat": 51.4186088, - "lon": -2.7481350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 122D" - } -}, -{ - "type": "node", - "id": 7454994906, - "lat": 51.4245361, - "lon": -2.7396867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS48 273D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7457097487, - "lat": 50.8461610, - "lon": -0.1428147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 288D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7459168329, - "lat": 53.6233250, - "lon": -1.8066663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD4 216" - } -}, -{ - "type": "node", - "id": 7459178337, - "lat": 53.6120384, - "lon": -1.8280381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD4 177" - } -}, -{ - "type": "node", - "id": 7460546512, - "lat": 52.0408747, - "lon": -4.4789177, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7460657021, - "lat": 51.4604094, - "lon": -1.0351438, - "tags": { - "amenity": "post_box", - "mapillary": "625793871898132", - "post_box:type": "pillar", - "ref": "RG30 244", - "survey:date": "2021-12-18" - } -}, -{ - "type": "node", - "id": 7460657022, - "lat": 51.4581700, - "lon": -1.0328332, - "tags": { - "amenity": "post_box", - "ref": "RG30 197" - } -}, -{ - "type": "node", - "id": 7460677219, - "lat": 51.9926264, - "lon": 0.3931616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CB10 30" - } -}, -{ - "type": "node", - "id": 7462811814, - "lat": 50.8591719, - "lon": -0.1541087, - "tags": { - "amenity": "post_box", - "ref": "BN1 312D" - } -}, -{ - "type": "node", - "id": 7463903056, - "lat": 53.5400157, - "lon": -1.5310331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 198D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7467373196, - "lat": 51.5834634, - "lon": -0.3306532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7468219955, - "lat": 51.5174039, - "lon": -0.7345625, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7472290319, - "lat": 51.5925601, - "lon": -0.3135729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 280", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7474105607, - "lat": 51.2680324, - "lon": -1.0792996, - "tags": { - "amenity": "post_box", - "note": "replaces https://www.openstreetmap.org/node/353113745/history", - "postal_code": "RG21", - "ref": "RG21 365" - } -}, -{ - "type": "node", - "id": 7474111201, - "lat": 51.2680307, - "lon": -1.0793855, - "tags": { - "amenity": "post_box", - "note": "replaces https://www.openstreetmap.org/node/353114314/history", - "postal_code": "RG21", - "ref": "RG21 216" - } -}, -{ - "type": "node", - "id": 7474181574, - "lat": 51.4260659, - "lon": -2.7594674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS48 431D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7474296640, - "lat": 50.7595190, - "lon": -2.0021745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 103D", - "ref:GB:uprn": "10015807672", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474325250, - "lat": 50.7612182, - "lon": -2.0109289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 77", - "ref:GB:uprn": "10015388460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474356393, - "lat": 50.7670091, - "lon": -1.9953727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 128D", - "ref:GB:uprn": "10015320464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474356404, - "lat": 50.7654003, - "lon": -1.9997250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 43D", - "ref:GB:uprn": "10015712456", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474373783, - "lat": 50.7647098, - "lon": -1.9918292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH18 42D", - "ref:GB:uprn": "10015416747", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474384186, - "lat": 50.7676786, - "lon": -1.9919050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 21D", - "ref:GB:uprn": "10015290728", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474384196, - "lat": 50.7633127, - "lon": -1.9866244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH18 58D", - "ref:GB:uprn": "10015364532", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474396418, - "lat": 50.7578893, - "lon": -1.9923382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 83D", - "ref:GB:uprn": "10015346177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474396427, - "lat": 50.7615431, - "lon": -1.9914262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7474678168, - "lat": 50.7381523, - "lon": -2.8976872, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref:GB:uprn": "10015428389" - } -}, -{ - "type": "node", - "id": 7475453660, - "lat": 51.3520357, - "lon": -2.9044006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7476840849, - "lat": 53.2111970, - "lon": -3.5007401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7477084554, - "lat": 51.6125759, - "lon": -0.3261184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 846" - } -}, -{ - "type": "node", - "id": 7478499913, - "lat": 51.0963434, - "lon": 0.5349549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "TN17 9991" - } -}, -{ - "type": "node", - "id": 7482782522, - "lat": 51.0163380, - "lon": -3.0896923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA1 90" - } -}, -{ - "type": "node", - "id": 7482823013, - "lat": 51.4367657, - "lon": -2.6938954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS8 268" - } -}, -{ - "type": "node", - "id": 7485708362, - "lat": 51.5254025, - "lon": 0.0285269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7485708363, - "lat": 51.5273370, - "lon": 0.0238520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7486239561, - "lat": 51.5239874, - "lon": 0.0257303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7486454223, - "lat": 52.8126914, - "lon": 1.1688468, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7486492599, - "lat": 53.3934981, - "lon": -2.0730186, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7488100178, - "lat": 51.5212524, - "lon": 0.0009294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E16 2P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7488418209, - "lat": 51.5467619, - "lon": 0.0298336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7488418244, - "lat": 51.5462432, - "lon": 0.0237579, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 17D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7489334855, - "lat": 55.9849275, - "lon": -3.7147897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK2 117D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7490611592, - "lat": 50.7390222, - "lon": -2.9006347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT6 24", - "ref:GB:uprn": "10015327769", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7490611593, - "lat": 50.7356208, - "lon": -2.9008479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref:GB:uprn": "10015278983" - } -}, -{ - "type": "node", - "id": 7490626765, - "lat": 51.5995447, - "lon": -0.3155879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 360", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7490626766, - "lat": 51.5975697, - "lon": -0.3075172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 824", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7490696892, - "lat": 54.8114961, - "lon": -1.7677089, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DH7 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7492484081, - "lat": 53.1912765, - "lon": -2.5345534, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7493911257, - "lat": 53.1786980, - "lon": -2.5276286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW7 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7494664450, - "lat": 53.1441223, - "lon": -2.5016326, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7494826592, - "lat": 51.6105583, - "lon": -3.2799433, - "tags": { - "amenity": "post_box", - "colour": "red", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7495502245, - "lat": 53.0615148, - "lon": -0.3802662, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7495525755, - "lat": 51.6474292, - "lon": -0.5285565, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7498258712, - "lat": 51.5907290, - "lon": -0.3452941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 432", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7498258713, - "lat": 51.5926115, - "lon": -0.3467785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:15", - "drive_through": "no", - "ref": "HA2 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7498753686, - "lat": 51.5380723, - "lon": -0.0015832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E15 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7499407548, - "lat": 50.7534907, - "lon": -1.9878910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH18 122D", - "ref:GB:uprn": "10015435737", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7499407549, - "lat": 50.7488455, - "lon": -1.9922698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 246D", - "ref:GB:uprn": "10015409430", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7499407550, - "lat": 50.7475466, - "lon": -1.9840545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 164D", - "ref:GB:uprn": "10015439496", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7499407554, - "lat": 50.7424556, - "lon": -1.9965100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH17 506P" - } -}, -{ - "type": "node", - "id": 7499407555, - "lat": 50.7415420, - "lon": -2.0048218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 7", - "ref:GB:uprn": "10015345008", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7499421189, - "lat": 50.7478274, - "lon": -2.0068727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 270D", - "ref:GB:uprn": "10015399389" - } -}, -{ - "type": "node", - "id": 7499536545, - "lat": 50.7435800, - "lon": -1.9880842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH17 511P", - "ref:GB:uprn": "10015807257", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7499536546, - "lat": 50.7428680, - "lon": -1.9990464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7500239066, - "lat": 53.5577588, - "lon": -1.7555219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 263", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7500944423, - "lat": 53.9317299, - "lon": -0.8155787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "YO42 161D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7501482639, - "lat": 53.6317560, - "lon": -1.7068473, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7502004383, - "lat": 53.6334701, - "lon": -1.7112348, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7502565983, - "lat": 53.7526427, - "lon": -2.7353744, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7502565984, - "lat": 53.7504682, - "lon": -2.7380656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PR1 356", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7502639796, - "lat": 51.4029661, - "lon": -0.2111985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7503056997, - "lat": 51.8259237, - "lon": -0.3464373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7503056998, - "lat": 51.8248249, - "lon": -0.3402824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7503056999, - "lat": 51.8272523, - "lon": -0.3217575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AL5 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7503227623, - "lat": 51.8001521, - "lon": -0.3634970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL5 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7503227624, - "lat": 51.8220498, - "lon": -0.3577038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "AL5 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7503599884, - "lat": 51.4378993, - "lon": -2.7523273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS48 618D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7503750877, - "lat": 53.8347649, - "lon": -0.8032977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "image": "https://www.geograph.org.uk/photo/7024144", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7504277589, - "lat": 50.7581042, - "lon": -2.0780186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH16 60;BH16 7060", - "ref:GB:uprn": "10015341809", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7504277594, - "lat": 50.7517407, - "lon": -2.0884222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 245D", - "ref:GB:uprn": "10015454335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7508322037, - "lat": 51.5748438, - "lon": 0.0181663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7508322038, - "lat": 51.5766553, - "lon": 0.0097384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E11 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7508322051, - "lat": 51.5801957, - "lon": 0.0323229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 47D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7508322054, - "lat": 51.5741883, - "lon": 0.0314624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E11 45", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7508322058, - "lat": 51.5549295, - "lon": 0.0402170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7508775973, - "lat": 51.4014810, - "lon": -0.2361149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7511388120, - "lat": 52.6308031, - "lon": -1.9667943, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WS3 139D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 7511388121, - "lat": 52.6236596, - "lon": -1.9655870, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WS3 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 7511388122, - "lat": 52.6158658, - "lon": -1.9535414, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "WS4 138D", - "royal_cypher": "ER", - "source": "GPS Survey" - } -}, -{ - "type": "node", - "id": 7511777560, - "lat": 51.4334199, - "lon": -2.7660083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS48 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7511777561, - "lat": 51.4278439, - "lon": -2.7764064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS48 657", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7512325172, - "lat": 51.4441404, - "lon": -2.7336907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS48 194" - } -}, -{ - "type": "node", - "id": 7512525342, - "lat": 53.5654891, - "lon": -1.7605086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7512525343, - "lat": 53.5785253, - "lon": -1.7627919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HD9 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7514603831, - "lat": 51.8096770, - "lon": -0.3257286, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7514603832, - "lat": 51.8083487, - "lon": -0.3325184, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7514603833, - "lat": 51.8053432, - "lon": -0.3343780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7514603834, - "lat": 51.8025989, - "lon": -0.3348257, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL5 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7514603835, - "lat": 51.8084483, - "lon": -0.3480601, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AL5 150D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7514603836, - "lat": 51.7936969, - "lon": -0.3611100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL5 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7515295542, - "lat": 52.5241439, - "lon": -1.4540854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7515419417, - "lat": 52.5797216, - "lon": -1.9739864, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-25", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "post_box:type": "pillar", - "ref": "WS1 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7515419418, - "lat": 52.5810706, - "lon": -1.9780362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "WS1 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7515419420, - "lat": 52.5857670, - "lon": -1.9810124, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-25", - "collection_times": "Mo-Fr 19:30; Sa 13:00", - "post_box:type": "wall", - "ref": "WS1 626", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7518296171, - "lat": 51.6932647, - "lon": -3.0075881, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7518296172, - "lat": 51.6958699, - "lon": -3.0051688, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7519437602, - "lat": 53.4431827, - "lon": -2.2515656, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7523866496, - "lat": 51.4413533, - "lon": -2.7293786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS48 378", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7526392042, - "lat": 54.1884065, - "lon": -0.8792152, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7526777034, - "lat": 51.7865437, - "lon": -0.0416078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SG13 10D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7526777035, - "lat": 51.7855830, - "lon": -0.0436664, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG13 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7526777036, - "lat": 51.7779520, - "lon": -0.0272740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG13 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7526777037, - "lat": 51.7931390, - "lon": -0.0763476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG13 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7526777038, - "lat": 51.7900680, - "lon": -0.0793301, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SG13 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7526777039, - "lat": 51.7829430, - "lon": -0.0832694, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG13 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7526777040, - "lat": 51.7938025, - "lon": -0.0826094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SG13 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7526846966, - "lat": 50.2186819, - "lon": -5.2889206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR14 92" - } -}, -{ - "type": "node", - "id": 7526846967, - "lat": 50.2134247, - "lon": -5.2994737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TR14 134;TR14 1340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7526846971, - "lat": 50.2146773, - "lon": -5.2933596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR14 99", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7526846972, - "lat": 50.2116757, - "lon": -5.2874185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR14 91" - } -}, -{ - "type": "node", - "id": 7526846973, - "lat": 50.2169199, - "lon": -5.2857974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR14 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7526847085, - "lat": 51.8086264, - "lon": -0.0941536, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SG14 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7526847086, - "lat": 51.8043715, - "lon": -0.0816776, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SG14 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7527471613, - "lat": 51.6131596, - "lon": -0.3318487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7527471624, - "lat": 51.6166664, - "lon": -0.3303067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 841", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7527831057, - "lat": 51.6311130, - "lon": -0.0963719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "N21 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7528397212, - "lat": 53.3972529, - "lon": -2.0271327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45, Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SK6 78" - } -}, -{ - "type": "node", - "id": 7528706383, - "lat": 51.8492248, - "lon": -0.2193886, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AL6 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7528706386, - "lat": 51.8161517, - "lon": -0.1530865, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AL6 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7529708732, - "lat": 53.3903531, - "lon": -2.0554016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7529713274, - "lat": 54.2208606, - "lon": -1.2736603, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7529907683, - "lat": 51.6879620, - "lon": -3.0073770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NP4 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7530118656, - "lat": 53.5630949, - "lon": -1.5792360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S75 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7530118657, - "lat": 53.5605157, - "lon": -1.5951598, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-04-10", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S75 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7531919208, - "lat": 53.2300860, - "lon": -3.4739777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL17 45" - } -}, -{ - "type": "node", - "id": 7532490218, - "lat": 53.6929576, - "lon": -1.3084466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WF8 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7532490219, - "lat": 53.6929520, - "lon": -1.3084353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7532903947, - "lat": 52.4541804, - "lon": -1.5058540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV6 428", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7535448668, - "lat": 51.2094443, - "lon": -1.0518537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7535452877, - "lat": 51.1739550, - "lon": -1.1314877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1009295244529372", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-24" - } -}, -{ - "type": "node", - "id": 7535471699, - "lat": 51.2046887, - "lon": -1.0799680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG25 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7535471701, - "lat": 51.2005456, - "lon": -1.0943473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "651706362578028", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG25 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-05" - } -}, -{ - "type": "node", - "id": 7535471707, - "lat": 51.1924971, - "lon": -1.0938913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "RG25 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7535474678, - "lat": 51.2272692, - "lon": -1.0635643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG25 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7535494646, - "lat": 51.2292785, - "lon": -1.0002943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG25 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7535637267, - "lat": 51.4777290, - "lon": -3.2080813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF11 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7537917771, - "lat": 53.8312326, - "lon": -1.7833636, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 7538636465, - "lat": 51.4889578, - "lon": -2.7663204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS20 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7538710503, - "lat": 52.3144550, - "lon": -0.2254339, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7538901766, - "lat": 51.5705042, - "lon": -0.3121712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA0 349D" - } -}, -{ - "type": "node", - "id": 7540304045, - "lat": 51.6110842, - "lon": 0.1087701, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7541901001, - "lat": 51.8374461, - "lon": -0.2664635, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AL6 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7543397182, - "lat": 55.9910612, - "lon": -3.7414680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "FK2 128D" - } -}, -{ - "type": "node", - "id": 7543987782, - "lat": 53.9080464, - "lon": -2.9611832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "FY6 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7544434658, - "lat": 50.7862090, - "lon": -0.6918423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PO21 40D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7544911800, - "lat": 53.4838910, - "lon": -1.4017530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S62 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7546409677, - "lat": 50.0829292, - "lon": -5.1269722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR12 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7546415703, - "lat": 52.0676167, - "lon": 1.2011014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP4 1223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7548544927, - "lat": 53.1604383, - "lon": -2.1992546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 26" - } -}, -{ - "type": "node", - "id": 7549436554, - "lat": 53.8097756, - "lon": -1.7780174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 55D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7550015120, - "lat": 51.4911950, - "lon": -2.7688682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS20 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7551180138, - "lat": 51.3865479, - "lon": -0.3011379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7551286461, - "lat": 51.3303045, - "lon": -0.7823872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU17 43D" - } -}, -{ - "type": "node", - "id": 7551505134, - "lat": 53.4597248, - "lon": -1.3430932, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S62 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7551607438, - "lat": 51.7684194, - "lon": -2.2177054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL6 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7551958056, - "lat": 51.7657055, - "lon": -0.2478540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL10 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7551958057, - "lat": 51.7402216, - "lon": -0.2624001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL4 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7552356436, - "lat": 53.4013234, - "lon": -2.0536038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SK6 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7553606956, - "lat": 53.1634447, - "lon": -2.2194938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CW12 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7553923706, - "lat": 51.4861043, - "lon": -2.7651724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS20 642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7554070822, - "lat": 50.9855160, - "lon": -3.2420166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "drive_through": "no", - "note": "This is a parcel post box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel" - } -}, -{ - "type": "node", - "id": 7554209003, - "lat": 51.7735747, - "lon": -2.3632615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7555719042, - "lat": 51.7543097, - "lon": -2.2224249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL6 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7555803282, - "lat": 51.7781565, - "lon": -2.3487931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7555917563, - "lat": 51.3935184, - "lon": 0.0504148, - "tags": { - "amenity": "post_box", - "fixme": "RM 2013 data suggests BR1 492", - "ref": "BR2 492" - } -}, -{ - "type": "node", - "id": 7556520485, - "lat": 54.8246792, - "lon": -1.4815678, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7557447534, - "lat": 51.1444677, - "lon": -0.1457271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH10 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557447535, - "lat": 51.1347996, - "lon": -0.1674007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RH10 161P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7557447536, - "lat": 51.1347987, - "lon": -0.1673672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH10 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557447537, - "lat": 51.1271831, - "lon": -0.1869553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH10 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7557447538, - "lat": 51.1257851, - "lon": -0.2010436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH11 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557453768, - "lat": 50.9715783, - "lon": -0.1858811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "RH17 16P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7557453769, - "lat": 50.9942422, - "lon": -0.1612058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH17 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557524082, - "lat": 50.7834110, - "lon": 0.0797300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "last_checked": "2022-06-01", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1042", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7557524083, - "lat": 50.7880387, - "lon": 0.0761613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN25 1041D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557524084, - "lat": 50.7905185, - "lon": 0.0878826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1044", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557525805, - "lat": 50.7971969, - "lon": 0.0858213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN25 1043D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7557986196, - "lat": 51.2070048, - "lon": -0.7948592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU9 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7560898792, - "lat": 51.4869629, - "lon": -2.7749786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS20 217", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7561064087, - "lat": 51.3192787, - "lon": 0.7388673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "note": "this is reinstatement of post box added to map by paulbiv in 2016, but deleted by PAL3001 in Changeset #85384963 in 2020 - maybe not understanding the difference between a bus stop named after a post box and the post box itself", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME10 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7563575747, - "lat": 51.4883356, - "lon": -2.7763499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS20 236", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7564230911, - "lat": 50.7779166, - "lon": 0.1209709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN25 1092D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7564230912, - "lat": 50.7822179, - "lon": 0.1301368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1075D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7564230913, - "lat": 50.7731076, - "lon": 0.1237719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN25 1069D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7564230914, - "lat": 50.7793544, - "lon": 0.1178482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1077D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7564230915, - "lat": 50.7818465, - "lon": 0.1236820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN25 1076D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7564230916, - "lat": 50.7841444, - "lon": 0.1165983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1055D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7564230917, - "lat": 50.7839172, - "lon": 0.1086053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1054", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7564230918, - "lat": 50.7844959, - "lon": 0.0961914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1086D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7564230919, - "lat": 50.7813624, - "lon": 0.0916886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1040D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7564230920, - "lat": 50.7856019, - "lon": 0.1009785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1091", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7564230921, - "lat": 50.7875817, - "lon": 0.1059513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN25 1052D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7564230923, - "lat": 50.7793450, - "lon": 0.1036875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-06-01", - "note": "From my photo taken on Wednesday 01.06.2022 the collection plate (CP) is not clear.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1051D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7567412824, - "lat": 51.7262874, - "lon": -2.3768392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7567421191, - "lat": 51.7053347, - "lon": -2.4195354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL13 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7567426866, - "lat": 51.7187753, - "lon": -2.3818417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL2 188", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7570213085, - "lat": 51.4928857, - "lon": -0.1595547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW3 12", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 7571485387, - "lat": 52.0370630, - "lon": -4.4575838, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7572169318, - "lat": 52.3884762, - "lon": -1.7561328, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Believed B93 149. Survey required to confirm reference and exact position", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7572536264, - "lat": 51.0620939, - "lon": -1.8172986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SP2 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7573517280, - "lat": 51.0198696, - "lon": -0.7461490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU29 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7574828639, - "lat": 51.7370394, - "lon": -0.2198432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7574828640, - "lat": 51.7342098, - "lon": -0.2116003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "AL9 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7574828641, - "lat": 51.7176917, - "lon": -0.2001152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "post_box:type": "pillar", - "ref": "AL9 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7574828642, - "lat": 51.7219098, - "lon": -0.1868485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "post_box:type": "pillar", - "ref": "AL9 206", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7574828643, - "lat": 51.7331864, - "lon": -0.1872706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "post_box:type": "wall", - "ref": "AL9 170", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7574828644, - "lat": 51.7618150, - "lon": -0.1538677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL9 171D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7575252170, - "lat": 53.9519965, - "lon": -2.0135567, - "tags": { - "amenity": "post_box", - "ref": "BD23 130", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7575259786, - "lat": 50.9135612, - "lon": -3.2362753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX15 275" - } -}, -{ - "type": "node", - "id": 7575738973, - "lat": 53.5228916, - "lon": -1.7077154, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-07-20", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S36 730", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7576303524, - "lat": 51.1949592, - "lon": -1.3867101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7576303525, - "lat": 51.1895919, - "lon": -1.3996907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7576303526, - "lat": 51.1767552, - "lon": -1.4174536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP11 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7576308061, - "lat": 51.2178932, - "lon": -1.3745277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG28 181", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7576391562, - "lat": 54.4365086, - "lon": -0.8626898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO21 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7577849136, - "lat": 57.2930655, - "lon": -2.3676842, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7578981125, - "lat": 51.2429397, - "lon": -1.2710170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG25 95D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7580278517, - "lat": 52.4268733, - "lon": -1.4614259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV2 438D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7580278518, - "lat": 52.4201737, - "lon": -1.4685962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV2 359D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 7580278519, - "lat": 52.4187317, - "lon": -1.4650890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV2 272D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7580278521, - "lat": 52.4171462, - "lon": -1.4602855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV2 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7580278525, - "lat": 52.4207243, - "lon": -1.4521804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV2 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7580603384, - "lat": 54.6697366, - "lon": -5.9570608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 514" - } -}, -{ - "type": "node", - "id": 7580644085, - "lat": 54.6687358, - "lon": -5.9491587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT36 806" - } -}, -{ - "type": "node", - "id": 7580980242, - "lat": 51.1188810, - "lon": -0.0839451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "RH10 62D" - } -}, -{ - "type": "node", - "id": 7581483506, - "lat": 50.6998024, - "lon": -1.9285291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 196D", - "ref:GB:uprn": "10015416085", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7581483507, - "lat": 50.7029737, - "lon": -1.9254800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 233D", - "ref:GB:uprn": "10015310517", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7581483508, - "lat": 51.0916097, - "lon": -0.5576339, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7589841678, - "lat": 52.4718323, - "lon": -1.5692007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CV7 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7589884812, - "lat": 52.4676152, - "lon": -1.5460035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CV7 346D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7589884813, - "lat": 52.4613980, - "lon": -1.5309484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV7 357", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7589884816, - "lat": 52.4603715, - "lon": -1.5357390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CV7 189D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7590056358, - "lat": 53.4777477, - "lon": -1.3203533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7590056360, - "lat": 53.4831644, - "lon": -1.3154389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7592969526, - "lat": 54.2590771, - "lon": -3.1019061, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7593488095, - "lat": 53.0582926, - "lon": -1.9595863, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "ST10 250", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7593651054, - "lat": 53.8276953, - "lon": -1.4567275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7593715029, - "lat": 53.8225919, - "lon": -1.4603308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7593995044, - "lat": 51.6152606, - "lon": -0.3174462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA7 852" - } -}, -{ - "type": "node", - "id": 7597729000, - "lat": 51.3842162, - "lon": -0.2168553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM4 274", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7598200638, - "lat": 52.4807146, - "lon": -0.8131545, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7598597311, - "lat": 51.5010333, - "lon": -0.1629962, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "red", - "manufacturer": "Machan Eng Scotland", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW7 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7598904639, - "lat": 50.6955725, - "lon": -2.1218575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH20 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7599851923, - "lat": 58.2151823, - "lon": -6.3734881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7600000604, - "lat": 51.6973685, - "lon": -0.2340194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600000605, - "lat": 51.7036157, - "lon": -0.1815628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600000606, - "lat": 51.7022412, - "lon": -0.1876711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600000607, - "lat": 51.7036099, - "lon": -0.1922151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 245D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7600000608, - "lat": 51.6987405, - "lon": -0.1904244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "EN6 317;EN6 318", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7600000609, - "lat": 51.6959831, - "lon": -0.1929747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600000610, - "lat": 51.6946503, - "lon": -0.1879478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7600000611, - "lat": 51.6909048, - "lon": -0.1832324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600000612, - "lat": 51.6900469, - "lon": -0.1861600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EN6 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600000613, - "lat": 51.6933170, - "lon": -0.1924494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 246", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7600000614, - "lat": 51.6914608, - "lon": -0.1976879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 122", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600000615, - "lat": 51.6940091, - "lon": -0.2045162, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 148", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7600000616, - "lat": 51.7047649, - "lon": -0.2024670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "parcel", - "ref": "EN6 500P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7600000617, - "lat": 51.7020596, - "lon": -0.2036885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 110", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600000618, - "lat": 51.6978218, - "lon": -0.2043515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600000619, - "lat": 51.6958385, - "lon": -0.2081402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 172", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7600000620, - "lat": 51.7009914, - "lon": -0.2086614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600000621, - "lat": 51.7238128, - "lon": -0.2228153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL9 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600444209, - "lat": 53.2138125, - "lon": -2.3760844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "ref": "CW4 13" - } -}, -{ - "type": "node", - "id": 7600566708, - "lat": 51.1502475, - "lon": -0.9193057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7600566709, - "lat": 51.1365928, - "lon": -0.9293036, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU34 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7600576752, - "lat": 51.0979781, - "lon": -0.8535916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600576753, - "lat": 51.0979132, - "lon": -0.8303462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU30 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7600576754, - "lat": 51.0906209, - "lon": -0.8167622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-02-06", - "mapillary": "541346987208454", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU30 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-02" - } -}, -{ - "type": "node", - "id": 7600728966, - "lat": 51.4010535, - "lon": -0.2499629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7600862260, - "lat": 53.1790871, - "lon": -2.2875442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "ref": "CW12 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 7600891084, - "lat": 53.4603814, - "lon": -2.6421424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7600939692, - "lat": 51.4076217, - "lon": -0.2048886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7603592005, - "lat": 51.6983645, - "lon": -2.3419902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7603592010, - "lat": 51.7091096, - "lon": -2.3180566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7603592012, - "lat": 51.7072891, - "lon": -2.3278549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL11 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7603914083, - "lat": 51.3667280, - "lon": -0.9508981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7603970988, - "lat": 54.9062944, - "lon": -6.6675241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT46 245" - } -}, -{ - "type": "node", - "id": 7605069878, - "lat": 53.3854403, - "lon": -2.5832436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA1 335", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7605385569, - "lat": 52.4246837, - "lon": 1.2234606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30, Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7605401610, - "lat": 52.4411256, - "lon": 1.1993916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR15 1533", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7605801228, - "lat": 54.6406446, - "lon": -5.8228301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 52D" - } -}, -{ - "type": "node", - "id": 7605801229, - "lat": 54.6404894, - "lon": -5.8189519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 702D" - } -}, -{ - "type": "node", - "id": 7605801232, - "lat": 54.6447215, - "lon": -5.8245000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT18 272D" - } -}, -{ - "type": "node", - "id": 7605801235, - "lat": 54.6395322, - "lon": -5.8274409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT18 184D" - } -}, -{ - "type": "node", - "id": 7605801236, - "lat": 54.6415405, - "lon": -5.8295899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 273D" - } -}, -{ - "type": "node", - "id": 7605801237, - "lat": 54.6423799, - "lon": -5.8335039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT18 214" - } -}, -{ - "type": "node", - "id": 7605801238, - "lat": 54.6412536, - "lon": -5.8410357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT18 103D" - } -}, -{ - "type": "node", - "id": 7606514903, - "lat": 51.4211404, - "lon": -2.1988151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:15", - "drive_through": "no", - "note": "Franked Mail and Parcels", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7606514904, - "lat": 51.4211515, - "lon": -2.1988151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7606514905, - "lat": 51.4236416, - "lon": -2.1951547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7606681631, - "lat": 52.5271049, - "lon": -0.4405924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE8 161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7607057842, - "lat": 51.2538346, - "lon": -0.9410556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG29 2200", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7607057843, - "lat": 51.2575489, - "lon": -0.9330210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG29 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7607068051, - "lat": 51.2732562, - "lon": -0.9264202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG29 358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7607087743, - "lat": 51.1930892, - "lon": -0.8514015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7607109951, - "lat": 51.2140852, - "lon": -0.8531208, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7607112181, - "lat": 51.1672956, - "lon": -0.8598133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "907686470325205", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU34 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-21" - } -}, -{ - "type": "node", - "id": 7608269355, - "lat": 51.3897571, - "lon": -0.1966944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 185", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7608269356, - "lat": 51.3856081, - "lon": -0.1993096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 167D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7608439846, - "lat": 53.4474075, - "lon": -2.2519916, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7608787047, - "lat": 51.8958771, - "lon": -1.4791739, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7608823906, - "lat": 55.9936485, - "lon": -3.7406389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "FK2 169D" - } -}, -{ - "type": "node", - "id": 7609619688, - "lat": 51.6507751, - "lon": -0.5157851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "WD3 47" - } -}, -{ - "type": "node", - "id": 7609627103, - "lat": 51.6543930, - "lon": -0.5184776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD3 189" - } -}, -{ - "type": "node", - "id": 7610049532, - "lat": 51.5774716, - "lon": -1.4493449, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7610049533, - "lat": 51.5743036, - "lon": -1.4512140, - "tags": { - "amenity": "post_box", - "mapillary": "458190455280828", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2019-07-11" - } -}, -{ - "type": "node", - "id": 7610660848, - "lat": 50.8806727, - "lon": -0.5427383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN18 1200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7611514037, - "lat": 51.9062143, - "lon": -1.1470688, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-21", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "OX26 887", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7612326919, - "lat": 54.3534819, - "lon": -2.7262977, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "LA9 27", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7612416688, - "lat": 54.2143367, - "lon": -2.8674798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA11 147D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 7612620374, - "lat": 53.5709636, - "lon": -2.6944821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WN6 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "inference", - "source:location": "Bing Streetside" - } -}, -{ - "type": "node", - "id": 7613396542, - "lat": 51.4285211, - "lon": -2.5519639, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BS4 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7613424557, - "lat": 52.5738448, - "lon": -1.9963484, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7613513810, - "lat": 50.8024132, - "lon": -0.5788918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN17 1427D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7613543257, - "lat": 50.7920276, - "lon": -0.6355669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO22 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7613543261, - "lat": 50.7912993, - "lon": -0.6307738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO22 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7613547351, - "lat": 50.7948048, - "lon": -0.6165715, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7613547352, - "lat": 50.7930500, - "lon": -0.6101932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7613547353, - "lat": 50.7918555, - "lon": -0.6046816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO22 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7613576855, - "lat": 50.7830100, - "lon": -0.6676628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7613585901, - "lat": 50.7888632, - "lon": -0.7113051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO21 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7615219811, - "lat": 51.7709996, - "lon": -0.0792740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG13 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7615219812, - "lat": 51.7594949, - "lon": -0.1026160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG13 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7615219813, - "lat": 51.7609301, - "lon": -0.1249467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SG13 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7615219814, - "lat": 51.7539827, - "lon": -0.1298578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SG13 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7615219815, - "lat": 51.7695873, - "lon": -0.1385575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SG13 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7615709571, - "lat": 51.5829230, - "lon": -0.2993378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA3 489D" - } -}, -{ - "type": "node", - "id": 7615868179, - "lat": 50.7881209, - "lon": -0.7011093, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "PO21 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7616090775, - "lat": 51.1876831, - "lon": -0.8878095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "956541368742630", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-19" - } -}, -{ - "type": "node", - "id": 7616120434, - "lat": 54.7222656, - "lon": -6.2272515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT41 25" - } -}, -{ - "type": "node", - "id": 7616229984, - "lat": 51.6524867, - "lon": -2.0997513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL8 170", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7616334482, - "lat": 52.4432910, - "lon": 1.1067076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP22 7106", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7617752794, - "lat": 54.6321083, - "lon": -5.8335040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 579D" - } -}, -{ - "type": "node", - "id": 7617793292, - "lat": 54.6338835, - "lon": -5.8449701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7617793293, - "lat": 54.6331139, - "lon": -5.8370108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT18 371" - } -}, -{ - "type": "node", - "id": 7617793294, - "lat": 54.6362312, - "lon": -5.8333419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT18 332D" - } -}, -{ - "type": "node", - "id": 7617793295, - "lat": 54.6374072, - "lon": -5.8301262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT18 67D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7617793296, - "lat": 54.6381855, - "lon": -5.8392975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 606D" - } -}, -{ - "type": "node", - "id": 7617793297, - "lat": 54.6407534, - "lon": -5.8360605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT18 1;BT18 1001", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7617793300, - "lat": 54.6461089, - "lon": -5.8120304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 29D" - } -}, -{ - "type": "node", - "id": 7618018840, - "lat": 51.0788814, - "lon": -1.7828402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP1 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7618018845, - "lat": 51.0851900, - "lon": -1.7779847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046770, - "lat": 51.7296305, - "lon": -0.3194026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046771, - "lat": 51.7221737, - "lon": -0.3140190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 494", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7618046772, - "lat": 51.7241597, - "lon": -0.3066824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 69", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7618046777, - "lat": 51.7215521, - "lon": -0.3026993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046778, - "lat": 51.7282774, - "lon": -0.3001548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046779, - "lat": 51.7248978, - "lon": -0.2965763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046780, - "lat": 51.7233379, - "lon": -0.2967489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 493", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046781, - "lat": 51.7230097, - "lon": -0.2988768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046782, - "lat": 51.7198544, - "lon": -0.2966908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 297D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046783, - "lat": 51.7190406, - "lon": -0.2847342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618046784, - "lat": 51.7195415, - "lon": -0.2907736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7618084085, - "lat": 51.7122514, - "lon": -0.2859858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AL2 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7619277219, - "lat": 55.0095194, - "lon": -1.6562287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7619732347, - "lat": 51.8109617, - "lon": -0.0317128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SG12 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7619732348, - "lat": 51.8145719, - "lon": -0.0373704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SG12 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7619732349, - "lat": 51.8388409, - "lon": -0.0291209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "SG12 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7619732350, - "lat": 51.8245223, - "lon": -0.1265250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG14 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7619867885, - "lat": 51.6768460, - "lon": -2.3018140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL11 291", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7620213385, - "lat": 53.2246846, - "lon": -3.4217310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7620383391, - "lat": 53.2475075, - "lon": -3.3797386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7620383396, - "lat": 53.2464948, - "lon": -3.3758300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL17 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7620590898, - "lat": 54.3335170, - "lon": -7.6631114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "310448543785962", - "note": "Box added when Culkey Post Office transferred to Spar in 2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BT74 117" - } -}, -{ - "type": "node", - "id": 7620665040, - "lat": 50.7179305, - "lon": -2.1908806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 131", - "ref:GB:uprn": "10015285429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7620665093, - "lat": 50.7334164, - "lon": -2.2149360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7620665135, - "lat": 50.7556263, - "lon": -2.2127259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 195D", - "ref:GB:uprn": "10015345363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7620763560, - "lat": 50.9329407, - "lon": -0.5173042, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH20 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7620903686, - "lat": 50.9361228, - "lon": -0.4523090, - "tags": { - "amenity": "post_box", - "fixme": "Since this postbox is in the RH20 postal district, near Pulborough, surely this postbox should be RH20 87?", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG20 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7620903687, - "lat": 50.9369098, - "lon": -0.4622633, - "tags": { - "amenity": "post_box", - "fixme": "Since this postbox is in the RH20 not RG20 postal district, surely this postbox is numbered RH20 116D?", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG20 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7621812253, - "lat": 51.3887005, - "lon": -0.2129781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SM4 275", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7623979671, - "lat": 52.4532378, - "lon": -1.8540900, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "B11 1" - } -}, -{ - "type": "node", - "id": 7623979672, - "lat": 52.4559475, - "lon": -1.8621341, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "B11 100" - } -}, -{ - "type": "node", - "id": 7624028638, - "lat": 51.3688388, - "lon": -0.7924015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG45 37", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 7627573889, - "lat": 50.9937893, - "lon": -0.3619199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7627573891, - "lat": 50.9851517, - "lon": -0.3709220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7627694506, - "lat": 51.0690462, - "lon": -0.3919297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7629070649, - "lat": 54.6641382, - "lon": -5.7661366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 260" - } -}, -{ - "type": "node", - "id": 7629140321, - "lat": 54.6582722, - "lon": -5.7744156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 138" - } -}, -{ - "type": "node", - "id": 7629141037, - "lat": 54.6566232, - "lon": -5.7845314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 652D" - } -}, -{ - "type": "node", - "id": 7629590164, - "lat": 52.6012408, - "lon": -2.0087438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-12-02", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS2 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "ground survey" - } -}, -{ - "type": "node", - "id": 7630622651, - "lat": 51.0807938, - "lon": -0.4531241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7630622659, - "lat": 51.0856900, - "lon": -0.4594153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7631681161, - "lat": 51.3739682, - "lon": -0.3582672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 171" - } -}, -{ - "type": "node", - "id": 7631681162, - "lat": 51.3830147, - "lon": -0.3466336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "KT7 153" - } -}, -{ - "type": "node", - "id": 7631983994, - "lat": 51.6577800, - "lon": -0.5011532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD3 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7632349804, - "lat": 51.2739954, - "lon": -0.2736830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT18 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7632409007, - "lat": 54.6539523, - "lon": -5.8157235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 119D" - } -}, -{ - "type": "node", - "id": 7632409008, - "lat": 54.6538921, - "lon": -5.8107298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT18 185" - } -}, -{ - "type": "node", - "id": 7632409009, - "lat": 54.6155619, - "lon": -5.8097531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 490" - } -}, -{ - "type": "node", - "id": 7632434126, - "lat": 51.3609962, - "lon": -0.3354878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "KT10 179D" - } -}, -{ - "type": "node", - "id": 7632689290, - "lat": 53.5291499, - "lon": -1.4712276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7632689291, - "lat": 53.5324737, - "lon": -1.4778780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7632689292, - "lat": 53.5346046, - "lon": -1.4757024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "pillar", - "ref": "S70 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7632746715, - "lat": 53.5687183, - "lon": -1.4726860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 34D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7632746716, - "lat": 53.5624555, - "lon": -1.4695636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7632746718, - "lat": 53.5607575, - "lon": -1.4594037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7632746720, - "lat": 53.5614479, - "lon": -1.4539761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 82D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7632790209, - "lat": 50.2183734, - "lon": -5.3014397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "description": "Outside the post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR14 93", - "source": "survey", - "survey:date": "2020-06-18" - } -}, -{ - "type": "node", - "id": 7632790212, - "lat": 50.2137075, - "lon": -5.3055697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR14 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2020-06-18" - } -}, -{ - "type": "node", - "id": 7632790215, - "lat": 50.2100986, - "lon": -5.3006264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "On the wall behind lamp post", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR14 80D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2020-06-18" - } -}, -{ - "type": "node", - "id": 7632790216, - "lat": 50.2077344, - "lon": -5.3047409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "description": "On the wall next to telegraph pole", - "mapillary": "427289649811668", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR14 89", - "source": "survey", - "survey:date": "2020-06-18" - } -}, -{ - "type": "node", - "id": 7632790217, - "lat": 50.2156702, - "lon": -5.3089721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2020-06-18" - } -}, -{ - "type": "node", - "id": 7632790219, - "lat": 50.2174496, - "lon": -5.3060753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "Near the junction", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR14 101", - "source": "survey", - "survey:date": "2020-06-18" - } -}, -{ - "type": "node", - "id": 7632790222, - "lat": 50.2111195, - "lon": -5.3068966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Behind the car parking area", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-03-20" - } -}, -{ - "type": "node", - "id": 7632790223, - "lat": 50.2153325, - "lon": -5.2990241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "On the wall near the entrance to Camborne Conservative Club", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR14 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery", - "survey:date": "2024-06-21" - } -}, -{ - "type": "node", - "id": 7632790246, - "lat": 53.5666458, - "lon": -1.4531158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S71 72", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7632790247, - "lat": 53.5546563, - "lon": -1.4420829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7633002385, - "lat": 52.7420286, - "lon": 0.4106454, - "tags": { - "addr:city": "King's Lynn", - "addr:street": "Hansa Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 451", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7633003985, - "lat": 52.7421164, - "lon": 0.4106969, - "tags": { - "addr:city": "King's Lynn", - "addr:street": "Hansa Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30; Su off", - "post_box:type": "pillar", - "ref": "PE30 509P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7633697873, - "lat": 51.1041199, - "lon": -0.4640137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH12 160", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7633746005, - "lat": 51.1253415, - "lon": -0.4061595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7636527473, - "lat": 52.4313527, - "lon": -1.5278128, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "last_checked": "2020-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 245", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7636544498, - "lat": 52.4289212, - "lon": -1.5263634, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7636809633, - "lat": 51.1028457, - "lon": -0.4403503, - "tags": { - "amenity": "post_box", - "note": "Yes it is explicitly marked 'ER'.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH12 100", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 7636809634, - "lat": 51.0974386, - "lon": -0.4443881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH12 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7637667770, - "lat": 51.0733694, - "lon": -1.7877639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638244466, - "lat": 52.3199433, - "lon": 1.2204914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7021", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638281095, - "lat": 52.3102684, - "lon": 1.2179500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP21 7095", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638284942, - "lat": 52.3376616, - "lon": 1.2115723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638296926, - "lat": 52.3137087, - "lon": 1.1950090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP21 7091", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638320007, - "lat": 52.3549390, - "lon": 1.2474134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638636434, - "lat": 53.2230323, - "lon": -3.5267388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638678092, - "lat": 52.7822489, - "lon": 1.4129250, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638678093, - "lat": 52.8033662, - "lon": 1.4181637, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7638755544, - "lat": 51.9527826, - "lon": -1.5407224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX7 359", - "wheelchair": "limited" - } -}, -{ - "type": "node", - "id": 7638896181, - "lat": 53.2206584, - "lon": -3.5500614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "note": "Very low down, partly hidden by hedge", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7638907228, - "lat": 53.2187758, - "lon": -3.5629540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7638907230, - "lat": 53.2301532, - "lon": -3.5658880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL22 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7640345011, - "lat": 51.7383414, - "lon": -2.3725185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7640345012, - "lat": 51.7310988, - "lon": -2.3786023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7640580989, - "lat": 51.0815960, - "lon": -1.7951737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7640591120, - "lat": 52.2976314, - "lon": 1.0091079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP14 8047", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7640615309, - "lat": 52.3023686, - "lon": 0.9444603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7640644104, - "lat": 52.3209086, - "lon": 0.9514167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP22 7195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7643789726, - "lat": 52.1994517, - "lon": -2.1904334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "outdoor": "yes", - "ref": "WR4 90" - } -}, -{ - "type": "node", - "id": 7643789727, - "lat": 52.2046307, - "lon": -2.1706591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WR4 527" - } -}, -{ - "type": "node", - "id": 7644003314, - "lat": 50.7276236, - "lon": -3.5234384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "EX4 604;EX4 6040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7644058614, - "lat": 51.3468608, - "lon": -0.8079145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7644600432, - "lat": 53.3598124, - "lon": -1.5011824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S11 811", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7644733356, - "lat": 50.9837308, - "lon": -0.4394612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7644733357, - "lat": 50.9928422, - "lon": -0.4354352, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "RH14 104", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7644733358, - "lat": 51.0039954, - "lon": -0.4273389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH14 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7645832539, - "lat": 52.4229535, - "lon": 1.2410789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7645836740, - "lat": 52.4132756, - "lon": 1.2423813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7645860890, - "lat": 52.4537360, - "lon": 1.1757461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1531", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7647102233, - "lat": 51.9518864, - "lon": 0.3474641, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7647102252, - "lat": 51.9546089, - "lon": 0.3427494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM6 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7647119423, - "lat": 53.0246184, - "lon": -2.1608775, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7647119424, - "lat": 53.0234826, - "lon": -2.1673446, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7648886807, - "lat": 51.4755611, - "lon": -2.5022842, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7649834048, - "lat": 52.5866659, - "lon": -1.1296015, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 7651620729, - "lat": 54.6286898, - "lon": -5.8406693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT18 764D" - } -}, -{ - "type": "node", - "id": 7652056592, - "lat": 51.6449936, - "lon": -2.6656464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP16 442D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7653057441, - "lat": 53.4398231, - "lon": -1.2788279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S65 126D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7653422485, - "lat": 51.5005702, - "lon": -0.1683525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW7 37" - } -}, -{ - "type": "node", - "id": 7653838744, - "lat": 51.8886419, - "lon": -2.0439774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 18" - } -}, -{ - "type": "node", - "id": 7653972696, - "lat": 51.0141214, - "lon": -1.7498763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7656371309, - "lat": 51.4710728, - "lon": -2.5049798, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7656696711, - "lat": 53.4072106, - "lon": -1.4382692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S4 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7656842428, - "lat": 52.3426861, - "lon": 1.2859527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP21 7192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7656860368, - "lat": 51.8681734, - "lon": 0.5566071, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7656867280, - "lat": 52.3565133, - "lon": 1.2813284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7100D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7656869083, - "lat": 52.3877827, - "lon": 1.2747855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7656890357, - "lat": 54.1318814, - "lon": -1.4049612, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7657364221, - "lat": 50.9935361, - "lon": -1.7674155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 323", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658023136, - "lat": 51.7159242, - "lon": -2.6319880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "322925373608935", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL15 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 7658309651, - "lat": 51.9701219, - "lon": -2.8961259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7658431799, - "lat": 51.3769976, - "lon": -0.2549263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658431800, - "lat": 51.3627974, - "lon": -0.2466421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT17 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658431802, - "lat": 51.3635775, - "lon": -0.2485661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 139", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658431803, - "lat": 51.3782506, - "lon": -0.2482775, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 266D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658431804, - "lat": 51.3700829, - "lon": -0.2643389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 280", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658431805, - "lat": 51.3673468, - "lon": -0.2485100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 161D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658431806, - "lat": 51.3727397, - "lon": -0.2547493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 331D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658431807, - "lat": 51.3750446, - "lon": -0.2522598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 324D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7658478011, - "lat": 51.3644010, - "lon": -0.2581960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "KT19 351D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7658478012, - "lat": 51.3631851, - "lon": -0.2546867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 148D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7658496364, - "lat": 52.2462127, - "lon": 1.4078003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4608", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496365, - "lat": 52.2711110, - "lon": 1.4514010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP17 4631D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7658496366, - "lat": 52.2730403, - "lon": 1.4677048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "IP17 4630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496367, - "lat": 52.2790059, - "lon": 1.4548597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP17 4622D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496368, - "lat": 52.2894079, - "lon": 1.4297877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP17 4624", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7658496369, - "lat": 52.2898320, - "lon": 1.4714599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP17 4634", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496370, - "lat": 52.2373191, - "lon": 1.4887078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:45", - "post_box:type": "lamp", - "ref": "IP17 4618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496371, - "lat": 52.2309611, - "lon": 1.4944370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "post_box:type": "lamp", - "ref": "IP17 4646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496372, - "lat": 52.2287942, - "lon": 1.4471939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "IP17 4655", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496373, - "lat": 52.2229550, - "lon": 1.4339136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "IP17 4650", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658496374, - "lat": 52.2268576, - "lon": 1.4315600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 09:45", - "post_box:type": "wall", - "ref": "IP17 4605", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7658496375, - "lat": 52.2288312, - "lon": 1.4389233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "IP17 4648", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7658988444, - "lat": 57.8056395, - "lon": -4.0680261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV19 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7659396839, - "lat": 51.3772198, - "lon": -0.2795117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 339", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7659396840, - "lat": 51.3776279, - "lon": -0.2787157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT5 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7659396841, - "lat": 51.3808472, - "lon": -0.2779064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 259", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659396842, - "lat": 51.3819266, - "lon": -0.2702715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7659396843, - "lat": 51.3839274, - "lon": -0.2715777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659396844, - "lat": 51.3869354, - "lon": -0.2721128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 232D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659420099, - "lat": 51.3853909, - "lon": -0.2631448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659420103, - "lat": 51.3894328, - "lon": -0.2670776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 282D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659420115, - "lat": 51.3884846, - "lon": -0.2616951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 300", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7659420116, - "lat": 51.3868848, - "lon": -0.2565412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 307", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659424311, - "lat": 51.3901290, - "lon": -0.2621739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659424312, - "lat": 51.3908814, - "lon": -0.2584456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659448347, - "lat": 50.2280371, - "lon": -5.0319297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7659487719, - "lat": 51.3838839, - "lon": -0.2558921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659487720, - "lat": 51.3792945, - "lon": -0.2540280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 278D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7659533961, - "lat": 51.3706711, - "lon": -0.2715093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7659533970, - "lat": 51.3606409, - "lon": -0.2532247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT19 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7659601214, - "lat": 51.5813686, - "lon": -0.3447141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 19" - } -}, -{ - "type": "node", - "id": 7659668154, - "lat": 50.7053286, - "lon": -1.9221967, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-07-05", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 251", - "ref:GB:uprn": "10015316198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7660916273, - "lat": 51.4876135, - "lon": -3.2050841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF11 209D" - } -}, -{ - "type": "node", - "id": 7661260202, - "lat": 53.1470482, - "lon": -3.4898604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7661815362, - "lat": 51.0114065, - "lon": -1.6514077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7661911425, - "lat": 51.0097240, - "lon": -1.6314791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7661960960, - "lat": 50.9997719, - "lon": -1.5849535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 516D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7669756839, - "lat": 55.8232665, - "lon": -4.2886568, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G43 286", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 7669756840, - "lat": 55.8261565, - "lon": -4.2857269, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G43 853", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 7671789873, - "lat": 51.3959027, - "lon": -0.2000915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM4 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7671809565, - "lat": 51.4018906, - "lon": -0.2395186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "KT3 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7671860327, - "lat": 51.3455651, - "lon": -0.7978495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7672022848, - "lat": 51.2465677, - "lon": -1.4589313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7672022850, - "lat": 51.2389479, - "lon": -1.4565173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7672058543, - "lat": 51.2476259, - "lon": -1.4920163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7676380055, - "lat": 51.7899989, - "lon": -2.5993422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7676380072, - "lat": 51.7843519, - "lon": -2.6004928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7677092773, - "lat": 51.5304776, - "lon": -3.1438456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7677093774, - "lat": 51.5293755, - "lon": -3.1517607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7680524152, - "lat": 52.7239562, - "lon": -2.4322271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "ref": "TF2 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7680993038, - "lat": 51.4408218, - "lon": 0.1945876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DA1 239D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7681253499, - "lat": 51.3410057, - "lon": -2.7875753, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7681253500, - "lat": 51.3360193, - "lon": -2.7918117, - "tags": { - "amenity": "post_box", - "mapillary": "1601254000080357", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "survey:date": "2020-07-18" - } -}, -{ - "type": "node", - "id": 7681364390, - "lat": 50.7270988, - "lon": -1.9296611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 47D", - "ref:GB:uprn": "10015402858", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7681364391, - "lat": 50.7081143, - "lon": -1.9196329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 295D", - "ref:GB:uprn": "10015309790", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7681364392, - "lat": 50.7054848, - "lon": -1.9372525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 63", - "ref:GB:uprn": "10015409627", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7681364393, - "lat": 50.7091388, - "lon": -1.9263481, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 205D", - "ref:GB:uprn": "10015274788", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7681364394, - "lat": 50.7160711, - "lon": -1.9224058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH13 153", - "ref:GB:uprn": "10015322896", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7681364395, - "lat": 50.7201713, - "lon": -1.9286844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 128", - "ref:GB:uprn": "10015439484", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7681364396, - "lat": 50.7131447, - "lon": -1.9260331, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-02-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 303D", - "ref:GB:uprn": "10015440724", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7681364397, - "lat": 50.7281648, - "lon": -1.9262805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 26D", - "ref:GB:uprn": "10015357928", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683284881, - "lat": 50.6784585, - "lon": -2.2236022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 375D", - "ref:GB:uprn": "10015368308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7683298501, - "lat": 50.6161503, - "lon": -2.0632050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BH20 201", - "ref:GB:uprn": "10015385186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7683298506, - "lat": 50.6479732, - "lon": -2.0328576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 86", - "ref:GB:uprn": "10015394912", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683298507, - "lat": 50.6442727, - "lon": -2.0172730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH20 193", - "ref:GB:uprn": "10015454747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7683298514, - "lat": 50.6425571, - "lon": -2.1035972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH20 190", - "ref:GB:uprn": "10015441383", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7683313385, - "lat": 53.0611707, - "lon": -1.6416974, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7683336046, - "lat": 54.9907255, - "lon": -1.8348330, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683388059, - "lat": 51.7317925, - "lon": -0.3573551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL2 147D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683388060, - "lat": 51.7215432, - "lon": -0.3636137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AL2 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683388061, - "lat": 51.7268651, - "lon": -0.3597077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "note": "Reference obscured July 2020", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683388062, - "lat": 51.7296805, - "lon": -0.3608269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AL2 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683388063, - "lat": 51.7218161, - "lon": -0.4107200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD5 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683388074, - "lat": 51.7341071, - "lon": -0.3578486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AL2 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683956805, - "lat": 50.7176796, - "lon": -1.9634894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 46D", - "ref:GB:uprn": "10015480072", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956806, - "lat": 50.7232102, - "lon": -1.9511435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 154D", - "ref:GB:uprn": "10015366226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956807, - "lat": 50.7087128, - "lon": -1.9459107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH14 43", - "ref:GB:uprn": "10015354554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683956808, - "lat": 50.7269256, - "lon": -1.9547719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 172D", - "ref:GB:uprn": "10015280015", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956809, - "lat": 50.7266870, - "lon": -1.9512564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 55D", - "ref:GB:uprn": "10015309623", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956810, - "lat": 50.7223747, - "lon": -1.9354390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 52D", - "ref:GB:uprn": "10015319855", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7683956811, - "lat": 50.7247622, - "lon": -1.9580448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 62D", - "ref:GB:uprn": "10015326302", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956812, - "lat": 50.7288643, - "lon": -1.9637119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 148", - "ref:GB:uprn": "10015284921", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683956813, - "lat": 50.7296474, - "lon": -1.9576813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 279D", - "ref:GB:uprn": "10015286270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956814, - "lat": 50.7185349, - "lon": -1.9530964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "note": "Arrow to post office on top", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956815, - "lat": 50.7210660, - "lon": -1.9375372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 130D", - "ref:GB:uprn": "10015326503", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683956816, - "lat": 50.7227295, - "lon": -1.9539363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 156D", - "ref:GB:uprn": "10015814527", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956817, - "lat": 50.7262388, - "lon": -1.9623202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 132", - "ref:GB:uprn": "10015373053", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7683956818, - "lat": 50.7214977, - "lon": -1.9579044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 157D", - "ref:GB:uprn": "10015394560", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7683956819, - "lat": 50.7248927, - "lon": -1.9534580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 13", - "ref:GB:uprn": "10015446683", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7683956820, - "lat": 50.7221040, - "lon": -1.9476005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683956821, - "lat": 50.7225741, - "lon": -1.9594289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 3D", - "ref:GB:uprn": "10015333465", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7683956822, - "lat": 50.7171254, - "lon": -1.9598189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 160D", - "ref:GB:uprn": "10015327348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7683999085, - "lat": 51.8967147, - "lon": -2.0397167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 123" - } -}, -{ - "type": "node", - "id": 7684678145, - "lat": 52.3860099, - "lon": 1.2996890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP21 7110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7684698056, - "lat": 52.4107750, - "lon": 1.3263158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IP20 7128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7684704034, - "lat": 52.3799203, - "lon": 1.3336113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7072", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7684724283, - "lat": 52.4091786, - "lon": 1.3423209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7684729313, - "lat": 52.4205953, - "lon": 1.3592546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7032", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7684741090, - "lat": 52.3890640, - "lon": 1.3374156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7684845920, - "lat": 50.1938681, - "lon": -5.2929935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "description": "Near the bin in the conish hedge/wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR14 125", - "source": "survey", - "survey:date": "2020-06-30" - } -}, -{ - "type": "node", - "id": 7684845921, - "lat": 50.2216200, - "lon": -5.2838941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "In the house wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR14 97D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery", - "survey:date": "2020-06-21" - } -}, -{ - "type": "node", - "id": 7684845922, - "lat": 50.2232161, - "lon": -5.2871467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR14 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2020-06-21" - } -}, -{ - "type": "node", - "id": 7684845923, - "lat": 50.2233198, - "lon": -5.2811676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "In the wall, on the side of Warrior Warehouse", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR14 83D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery", - "survey:date": "2020-06-21" - } -}, -{ - "type": "node", - "id": 7684845924, - "lat": 50.2087902, - "lon": -5.2876465, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "description": "On the junction", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR14 114", - "source": "survey", - "survey:date": "2020-06-30" - } -}, -{ - "type": "node", - "id": 7684845927, - "lat": 50.2062959, - "lon": -5.2852821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Outside the shop on the junction with Tolcarne Road with the bus stop", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR14 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2024-03-20" - } -}, -{ - "type": "node", - "id": 7684845931, - "lat": 50.1957999, - "lon": -5.2771658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "description": "Outside Mc Colls", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR14 126", - "source": "survey", - "survey:date": "2020-06-30" - } -}, -{ - "type": "node", - "id": 7685111855, - "lat": 53.3965414, - "lon": -3.1507961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH47 108 at Barnhey Crescent, Meols, and not Barn Hey, Hoylake as Royal Mail seem to think.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Barnhey Crescent, Meols.jpg" - } -}, -{ - "type": "node", - "id": 7685135150, - "lat": 51.2465635, - "lon": -0.7481683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU12 58D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7685213074, - "lat": 53.3722356, - "lon": -3.1738844, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH48 119 and pouch box by Carron Company on Monks Way, West Kirby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Monks Way, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685247136, - "lat": 53.3763576, - "lon": -3.1805853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 115", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:Post box at Redhouse Lane, West Kirby" - } -}, -{ - "type": "node", - "id": 7685314351, - "lat": 53.3787031, - "lon": -3.1867921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "description": "QE II post box CH48 240 at junction of Meols Drive & Pinfold Lane, West Kirby. Some websites show this at the junction of Leas Park, but this is incorrect. RM call this Lowood, which is a house some distance away.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Pinfold Lane, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685321984, - "lat": 53.3784412, - "lon": -3.1687978, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH48 158 by Carron Company at the junction of Greenbank Road & Gilroy Road, West Kirby. There is no no sign of the post office that used to be at this location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Gilroy Road, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685330944, - "lat": 53.3646087, - "lon": -3.1795736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II post box CH48 179 on Sandy Lane, West Kirby, next to West Kirby Sailing Club.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at The Hydro, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685364633, - "lat": 53.3683519, - "lon": -3.1719846, - "tags": { - "amenity": "post_box", - "description": "Lamp box pier at junction of Village Road and Devonshire Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Devonshire Road, West Kirby" - } -}, -{ - "type": "node", - "id": 7685387355, - "lat": 53.3669304, - "lon": -3.1791682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier on Hilbre Road between Mostyn Avenue and Victoria Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Hilbre Road, West Kirby" - } -}, -{ - "type": "node", - "id": 7685401283, - "lat": 53.3709367, - "lon": -3.1772090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II pole mounted post box CH48 253 at the junction of Grosvenor Avenue & Carpenters Lane, West Kirby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Carpenters Lane, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685473508, - "lat": 53.1658752, - "lon": -3.3772655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "note": "Royal cypher obscured by COVID-19 priority sticker but probably EIIR", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 61" - } -}, -{ - "type": "node", - "id": 7685473520, - "lat": 53.1608179, - "lon": -3.3782296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Not on Robert Whittaker's list.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7685473521, - "lat": 53.1635459, - "lon": -3.4022026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7685473522, - "lat": 53.1617254, - "lon": -3.4106824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7685473523, - "lat": 53.1488012, - "lon": -3.4207047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7685473524, - "lat": 53.1503505, - "lon": -3.3964050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "note": "Reference number is obscured by damage and staining on the front plate but is believed to be LL16 13.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7685473525, - "lat": 53.1540766, - "lon": -3.3686418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "note": "Wall box is mounted in a circular stone rubble pillar dated 1977. Royal cypher is obscured by COVID-19 priority sticker but probably EIIR.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 2" - } -}, -{ - "type": "node", - "id": 7685473527, - "lat": 53.1811045, - "lon": -3.3903357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7685503561, - "lat": 53.3658409, - "lon": -3.1409466, - "tags": { - "amenity": "post_box", - "description": "QE II wall mounted post box CH48 348 near Torpenhow Cottage, Montgomery Hill, Frankby, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH48 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Montgomery Hill, Frankby.jpg" - } -}, -{ - "type": "node", - "id": 7685537692, - "lat": 53.3690112, - "lon": -3.1662036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH48 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Gourleys Lane, West Kirby" - } -}, -{ - "type": "node", - "id": 7685682660, - "lat": 53.3612940, - "lon": -3.1650425, - "tags": { - "amenity": "post_box", - "description": "QE II pole mounted post box CH48 347 at the junction of Kings Drive & Thorsway, Caldy.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Kings Drive, Caldy.jpg" - } -}, -{ - "type": "node", - "id": 7685701784, - "lat": 53.3607065, - "lon": -3.1483930, - "tags": { - "amenity": "post_box", - "description": "QE II pole mounted post box CH48 452 on Caldy Road near to the roundabout on Telegraph Road; one of the newer lamp box pier types.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box near Caldy roundabout.jpg" - } -}, -{ - "type": "node", - "id": 7685742280, - "lat": 53.3724409, - "lon": -3.1360517, - "tags": { - "amenity": "post_box", - "description": "George VI post box CH48 383 at the village green, Frankby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 383", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:Post box at Frankby Green" - } -}, -{ - "type": "node", - "id": 7685799824, - "lat": 53.3555778, - "lon": -3.1602844, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH48 433 mounted on a telegraph pole, Croft Drive East, Caldy. Near entrance to Mill Hey Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH48 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Croft Drive East, Caldy.jpg" - } -}, -{ - "type": "node", - "id": 7685813454, - "lat": 53.3660483, - "lon": -3.1606182, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH48 451", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Boundary Road, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685847650, - "lat": 53.3751076, - "lon": -3.1497098, - "tags": { - "amenity": "post_box", - "description": "George V post box CH48 605 with pouch box at the junction of Springfield Avenue & Meadow Road, Newton, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 605", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Meadow Road, Newton, Wirral.jpg" - } -}, -{ - "type": "node", - "id": 7685857976, - "lat": 53.3733576, - "lon": -3.1648533, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH48 556 with pouch box by Carron Company at the bottom of Beacon Drive, West Kirby, although Royal Mail think its nearer the top.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH48 556", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Beacon Drive, West Kirby.jpg" - } -}, -{ - "type": "node", - "id": 7685953096, - "lat": 50.6095229, - "lon": -1.9595308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7685953097, - "lat": 50.6095179, - "lon": -1.9595167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH19 578P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7685953098, - "lat": 50.6420336, - "lon": -1.9527914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH19 79", - "ref:GB:uprn": "10015420602", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7685963562, - "lat": 51.0817810, - "lon": -1.6991720, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7687071739, - "lat": 53.4514838, - "lon": -2.2801880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7688265418, - "lat": 54.6485067, - "lon": -5.7986847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "BT18 155", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7688273291, - "lat": 51.6388175, - "lon": 0.0566443, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7689084112, - "lat": 53.4352966, - "lon": -3.0356013, - "tags": { - "amenity": "post_box", - "description": "Edward VII post box CH45 100 on Kirkland Road, New Brighton at its junction with Dalmorton Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH45 100", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Kirkland Road, New Brighton.jpg" - } -}, -{ - "type": "node", - "id": 7689087161, - "lat": 53.4251312, - "lon": -3.0663262, - "tags": { - "amenity": "post_box", - "description": "QEII pole-mounted post box CH45 39 on Village Way, Wallasey Village, near junction with Wallasey Village.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH45 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Village Way, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7689099122, - "lat": 53.4194515, - "lon": -3.0474797, - "tags": { - "amenity": "post_box", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH45 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box near Cecil Road.jpg" - } -}, -{ - "type": "node", - "id": 7689100867, - "lat": 53.4269646, - "lon": -3.0419590, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH45 111 by Handyside on Rake Lane, Wallasey, at junction of Zig Zag Road.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 111", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Rake Lane, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7689125000, - "lat": 53.4351119, - "lon": -3.0419392, - "tags": { - "amenity": "post_box", - "description": "George V post box CH45 113 on Rowson Street next to Molyneux Drive. Made by Carron & Co.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Rowson Street, New Brighton.jpg" - } -}, -{ - "type": "node", - "id": 7689166545, - "lat": 53.4231572, - "lon": -3.0645321, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH45 146 at Wallasey Village roundabout. Royal Mail describe this as The Village Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Wallasey Village roundabout.jpg" - } -}, -{ - "type": "node", - "id": 7689167418, - "lat": 53.4331352, - "lon": -3.0462929, - "tags": { - "amenity": "post_box", - "description": "George V post CH45 137 by Carron Company on Field Road next to junction with Carlton Road, New Brighton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Field Road, Wallasey 1.jpg" - } -}, -{ - "type": "node", - "id": 7689169188, - "lat": 53.4261872, - "lon": -3.0346864, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH45 132 by Handyside on Seabank Road near Caithness Drive", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 132", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Seabank Road near Caithness Drive.jpg" - } -}, -{ - "type": "node", - "id": 7689205783, - "lat": 53.4328958, - "lon": -3.0429241, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH45 200 on Rowson Street at corner of Cardigan Road. Royal Mail list this as Upper Brighton Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Rowson Street - Cardigan Road.jpg" - } -}, -{ - "type": "node", - "id": 7689217810, - "lat": 53.4324487, - "lon": -3.0401487, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH45 217 on the corner of Magazine Lane/Seabank Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 217", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Magazine Lane.jpg" - } -}, -{ - "type": "node", - "id": 7689319917, - "lat": 51.7308542, - "lon": -0.6901243, - "tags": { - "amenity": "post_box", - "fixme": "Suspect this box has taken reference HP16 90: survey required to confirm details", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7689647064, - "lat": 51.3660553, - "lon": 0.2763568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7690977154, - "lat": 53.4279711, - "lon": -3.0716643, - "tags": { - "amenity": "post_box", - "description": "Edward VII post box CH45 256 on Stanley Avenue, Wallasey, near junction of Groveland Avenue. Royal Mail list this as Groveland Road, but that is a little distance away.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 256", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Stanley Avenue, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7691091868, - "lat": 53.4223556, - "lon": -3.0712199, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH45 307 on Leasowe Road near (but not at) the railway station.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box near Wallasey Village Station.jpg" - } -}, -{ - "type": "node", - "id": 7691175451, - "lat": 53.4208655, - "lon": -3.0456439, - "tags": { - "amenity": "post_box", - "description": "A little further up from CH45 430, this metered mail (Franked Mail only) post box is CH45 4300.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH45 4300", - "royal_cypher": "no", - "wikimedia_commons": "File:FMO post box on Seaview Road.jpg" - } -}, -{ - "type": "node", - "id": 7691216386, - "lat": 53.4259104, - "lon": -3.0733201, - "tags": { - "amenity": "post_box", - "description": "Post box and drop box CH45 462 on the corner of Green Lane and Bangor Road, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 462", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:Post box on Green Lane, Wallasey" - } -}, -{ - "type": "node", - "id": 7691586681, - "lat": 53.4369401, - "lon": -3.0556083, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH45 539 by Carron Company on Warren Drive near to Portland Street.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH45 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Warren Drive near Portland Street.jpg" - } -}, -{ - "type": "node", - "id": 7691636091, - "lat": 53.4349819, - "lon": -3.0656181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "QE II pole mounted post box CH45 541 on Sandcliffe Road, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH45 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Sandcliffe Road.jpg" - } -}, -{ - "type": "node", - "id": 7692286846, - "lat": 52.5486869, - "lon": -0.3044338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE2 323" - } -}, -{ - "type": "node", - "id": 7692686926, - "lat": 53.4124108, - "lon": -3.0258773, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 69 outside Borough Road post office, Seacombe.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Borough Road, Seacombe.jpg" - } -}, -{ - "type": "node", - "id": 7692687038, - "lat": 53.4082824, - "lon": -3.0258218, - "tags": { - "amenity": "post_box", - "description": "Edward VII post box CH44 26 and drop box on Wheatland Lane, Seacombe", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 26", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Wheatland Lane, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692688295, - "lat": 53.4104199, - "lon": -3.0185292, - "tags": { - "amenity": "post_box", - "description": "George VI post box CH44 49 on Borough Road East, Seacombe, near to Ferryside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 49", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Seacombe View.jpg" - } -}, -{ - "type": "node", - "id": 7692712941, - "lat": 53.4157215, - "lon": -3.0307978, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 79 by Carron Company at Rivington Road/Liscard Road, Wallasey.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Rivington Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692712966, - "lat": 53.4172715, - "lon": -3.0254096, - "tags": { - "amenity": "post_box", - "description": "Egremont Post Office is gone, but this Victorian post box CH44 106 remains.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 106", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Egremont Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7692719588, - "lat": 53.4194933, - "lon": -3.0609062, - "tags": { - "amenity": "post_box", - "description": "George VI drop box and post box CH44 92 at the corner of Wallacre Road & Clare Crescent, Wallasey. RM list this as \"The Breck\", but that's some distance away.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 92", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Wallacre Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692730529, - "lat": 53.4091132, - "lon": -3.0246748, - "tags": { - "amenity": "post_box", - "description": "George V post box CH44 103 by Carron Company outside Wheatland Lane post office, which is actually in St Paul's Road, Seacombe.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Wheatland Lane post office.jpg" - } -}, -{ - "type": "node", - "id": 7692750422, - "lat": 53.4145604, - "lon": -3.0228678, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH44 153 at junction of Brighton Street/Kenilworth Road, Seacombe, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 153", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Kenilworth Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692755684, - "lat": 53.4234006, - "lon": -3.0308079, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 192 by Carron Company at Maddock Road/Seabank Road, Egremont, Wallasey.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Maddock Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692757101, - "lat": 53.4193509, - "lon": -3.0341320, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 135 by Carron Company on Serpentine Road, Wallasey, near to Bristol Avenue.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Bristol Avenue, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692759833, - "lat": 53.4194235, - "lon": -3.0318273, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH44 149 on Comely Bank Road, Wallasey at its junction with Rice Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 149", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Comely Bank Road.jpg" - } -}, -{ - "type": "node", - "id": 7692765625, - "lat": 53.4187633, - "lon": -3.0430690, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 195 by Carron Company on Mill Lane next to car park for Cherry Tree shopping centre.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Mill Lane, Liscard.jpg" - } -}, -{ - "type": "node", - "id": 7692771521, - "lat": 53.4167543, - "lon": -3.0314296, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH 44 154 by Carron Company on Church Street, Wallasey, opposite Water Street.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Church Street, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692781904, - "lat": 53.4119848, - "lon": -3.0294741, - "tags": { - "amenity": "post_box", - "description": "Victorian post box CH44 189 by Andrew Handyside at York Road/Poulton Road, Wallasey.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 189", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at York Road, Poulton.jpg" - } -}, -{ - "type": "node", - "id": 7692824705, - "lat": 53.4167804, - "lon": -3.0343155, - "tags": { - "amenity": "post_box", - "description": "QE II Type K post box CH44 196 by Carron Company at the junction of Serpentine Road and Liscard Road, Wallasey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH44 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Serpentine Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692831788, - "lat": 53.4114544, - "lon": -3.0223506, - "tags": { - "amenity": "post_box", - "description": "QE II pole mounted post box CH44 202 on Stanley Street; RM list this as Hatherly Street, but it may have been moved.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH44 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stanley Street, Seacombe.jpg" - } -}, -{ - "type": "node", - "id": 7692833155, - "lat": 53.4118032, - "lon": -3.0451749, - "tags": { - "amenity": "post_box", - "description": "QE II post CH44 204 box by Carron Company on Poulton Road, Wallasey.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box near Claughton Drive, Poulton.jpg" - } -}, -{ - "type": "node", - "id": 7692834400, - "lat": 53.4127888, - "lon": -3.0217457, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 212 by Carron Company on Leopold Street, Seacombe.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Leopold Street, Seacombe.jpg" - } -}, -{ - "type": "node", - "id": 7692844366, - "lat": 53.4137056, - "lon": -3.0512135, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 277 by Carron Company on Station Road, Liscard.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Station Road, Liscard.jpg" - } -}, -{ - "type": "node", - "id": 7692847737, - "lat": 53.4413679, - "lon": -2.2124675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M14 147D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7692848281, - "lat": 53.4178115, - "lon": -3.0401892, - "tags": { - "amenity": "post_box", - "description": "QE II double C-Type post box CH44 214 at the entrance to Central Park, Liscard. Originally at Central Park post office, but that appears to be long gone.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH44 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Central Park, Liscard.jpg" - } -}, -{ - "type": "node", - "id": 7692853524, - "lat": 53.4114523, - "lon": -3.0514011, - "tags": { - "amenity": "post_box", - "description": "George V post box CH44 234 by Carron Company on Limekiln Lane/Poulton Bridge Road, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 234", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Limekiln Lane, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692859236, - "lat": 53.4157038, - "lon": -3.0574167, - "tags": { - "amenity": "post_box", - "description": "Edward VII wall mounted post box CH44 246 at the junction of Breck Road and Cliff Road, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH44 246", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Breck Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692859547, - "lat": 53.4194751, - "lon": -3.0558504, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 294 on Wallasey Road outside Wallasey Road post office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Wallasey Road Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7692861000, - "lat": 53.4093589, - "lon": -3.0417422, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 247 by Carron Company on Gorsey Lane, Poulton, Wallasey.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Gorsey Lane, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692867396, - "lat": 53.4195288, - "lon": -3.0369735, - "tags": { - "amenity": "post_box", - "description": "Wall mounted George V post box CH44 258 on Martin's Lane near to Empress Road, Liscard.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH44 258", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Martin's Lane, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692879172, - "lat": 53.4236427, - "lon": -3.0342217, - "tags": { - "amenity": "post_box", - "description": "Edward VII post box CH44 283 on Manor Road, Wallasey, near junction with Stringhey Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 283", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:Post box at Stringhey Road, Egremont" - } -}, -{ - "type": "node", - "id": 7692880763, - "lat": 53.4145617, - "lon": -3.0360615, - "tags": { - "amenity": "post_box", - "description": "Edward VII post box CH44 290 at the junction of Silverbeech Road and Ladyewood Road, Poulton, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 290", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Ladyewood Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692902996, - "lat": 53.4171572, - "lon": -3.0460996, - "tags": { - "amenity": "post_box", - "description": "George VI post box CH44 320 by Carron Company at the corner of Mill Lane & Rullerton Road, Wallasey.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 320", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Rullerton Road.jpg" - } -}, -{ - "type": "node", - "id": 7692915112, - "lat": 53.4122325, - "lon": -3.0395301, - "tags": { - "amenity": "post_box", - "description": "George V post box CH44 306 on Poulton Road, Wallasey at Clifford Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 306", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Clifford Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692921131, - "lat": 53.4170794, - "lon": -3.0537444, - "tags": { - "amenity": "post_box", - "description": "George V post box CH44 399 by Carron Company and drop box at corner of Willoughby Road/Station Road, Wallasey", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 399", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Willoughby Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692921691, - "lat": 53.4166234, - "lon": -3.0502155, - "tags": { - "amenity": "post_box", - "description": "George V post box CH44 321 at the junction of Cliff Road and Marlowe Road, Wallasey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 321", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Cliff Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692942598, - "lat": 53.4098745, - "lon": -3.0291504, - "tags": { - "amenity": "post_box", - "description": "EIIR pillar box on Oakdale Orad, Secombe, near Lucerne Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Oakdale Road, Wallasey" - } -}, -{ - "type": "node", - "id": 7692950057, - "lat": 53.4142321, - "lon": -3.0288785, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 616 at the Shell petrol station on Liscard Road, Seacombe. I was told that it was taken out of service in about May 2015, and the slot is sealed.", - "disused:amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "CH44 616", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box at Liscard Road petrol station.jpg" - } -}, -{ - "type": "node", - "id": 7692950861, - "lat": 53.4120511, - "lon": -3.0342902, - "tags": { - "amenity": "post_box", - "description": "George V post box CH44 444 on Poulton Road- Royal Mail list this as Somerville Road Post Office, but there is no post office here now, and there does not appear to be a Somerville Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 444", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Poulton Road.jpg" - } -}, -{ - "type": "node", - "id": 7692959782, - "lat": 53.4206472, - "lon": -3.0648745, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH44 530 by Carron Company on Folly Lane, Wallasey Village", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH44 530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Folly Lane, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7692963369, - "lat": 53.4096184, - "lon": -3.0160886, - "tags": { - "amenity": "post_box", - "description": "Queen Elizabeth II type PB58 post box CH44 540 inside Seacombe Ferry Terminal.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH44 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Seacombe Ferry Terminal.jpg" - } -}, -{ - "type": "node", - "id": 7693200108, - "lat": 51.1424308, - "lon": -1.4795766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO20 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7693287320, - "lat": 50.8791109, - "lon": -1.5815659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 74D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7694442750, - "lat": 53.3941928, - "lon": -3.0323101, - "tags": { - "amenity": "post_box", - "description": "King George V Type A/B post box CH41 6 at The Queens pub, Park Road East, Birkenhead. Formerly a Penfold.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 6", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at The Queens pub, Park Road East, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7694450472, - "lat": 53.5944590, - "lon": -2.4442588, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7694452163, - "lat": 53.3966820, - "lon": -3.0195004, - "tags": { - "amenity": "post_box", - "description": "QEII post box CH41 4 at the junction of Taylor Street and Bridge Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Taylor Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7694458092, - "lat": 53.3949120, - "lon": -3.0253944, - "tags": { - "amenity": "post_box", - "description": "George V Type A post box CH41 5 at Oak Gardens, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Oak Gardens, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7694642557, - "lat": 53.3989963, - "lon": -3.0324050, - "tags": { - "amenity": "post_box", - "description": "George V post box CH41 20 outside the depot on Cleveland Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at corporation depot, Cleveland Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7694657717, - "lat": 53.3982028, - "lon": -3.0454387, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH41 21 on Laird Street near Cavendish Street, Birkenhead North.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Cavendish Street, Birkenhead North.jpg" - } -}, -{ - "type": "node", - "id": 7694670898, - "lat": 53.4012404, - "lon": -3.0346899, - "tags": { - "amenity": "post_box", - "description": "QEII Type K postbox CH41 27 on Corporation Road near Duke Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Corporation Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7694703599, - "lat": 53.3952149, - "lon": -3.0562004, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH41 37 at Upton Road Post Office, Claughton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Upton Road Post Office, Claughton.jpg" - } -}, -{ - "type": "node", - "id": 7694735833, - "lat": 53.3985397, - "lon": -3.0357044, - "tags": { - "amenity": "post_box", - "description": "QEII Type K post box CH41 41 on Price Street at Arthur Street, Birkenhead North", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH41 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Price Street at Arthur Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695272831, - "lat": 53.3854569, - "lon": -1.4093882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "S9 1300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7695343597, - "lat": 53.3968815, - "lon": -3.0116301, - "tags": { - "amenity": "post_box", - "description": "QE II postbox CH41 59 by Carron Company at the Birkenhead LDO on Pacific Road, Woodside.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH41 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Pacific Road, Woodside.jpg" - } -}, -{ - "type": "node", - "id": 7695351130, - "lat": 53.3933235, - "lon": -3.0176673, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH41 99 by Carron Company at the junction of Price Street and Hamilton Square, Birkenhead.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Type A post box on Price Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695375461, - "lat": 53.4004864, - "lon": -3.0536780, - "tags": { - "amenity": "post_box", - "description": "QEII type A post box CH41 117 at site of the former Laird Street Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Laird Street Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7695420936, - "lat": 53.3962564, - "lon": -3.0116392, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type A post box CH41 122 by Handyside in Woodside Business Park, Birkenhead.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 122", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Woodside Business Park.jpg" - } -}, -{ - "type": "node", - "id": 7695458765, - "lat": 53.3868612, - "lon": -3.0337522, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH41 163 on Oxton Road at Oak Bank, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Oak Bank, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695543666, - "lat": 53.3910612, - "lon": -3.0106260, - "tags": { - "amenity": "post_box", - "description": "QE II type A post box CH41 291 at the junction of Church Street and Ivy Street, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Monks Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7695556259, - "lat": 53.3877252, - "lon": -3.0255943, - "tags": { - "amenity": "post_box", - "description": "QE II Type B post box CH41 168 on Lowwood Grove, the Woodlands, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH41 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Lowwood Grove, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695560057, - "lat": 53.3927312, - "lon": -3.0132416, - "tags": { - "amenity": "post_box", - "description": "Edward VII type B post box CH41 242 by Andrew Handyside & Co. at the junction of Chester Road & Brandon Street, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH41 242", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:Post box on Brandon Street, Birkenhead" - } -}, -{ - "type": "node", - "id": 7695576491, - "lat": 53.3870700, - "lon": -3.0293589, - "tags": { - "amenity": "post_box", - "description": "King George VI Type A post box CH41 172 on Whetstone Lane, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 172", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Birkenhead YMCA.jpg" - } -}, -{ - "type": "node", - "id": 7695584536, - "lat": 53.3925386, - "lon": -3.0155941, - "tags": { - "amenity": "post_box", - "description": "QE II post box at the corner of Hamilton Square and Hamilton Street opposite Duncan Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Hamilton Street Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7695585201, - "lat": 53.3923300, - "lon": -3.0321420, - "tags": { - "amenity": "post_box", - "description": "King George V Type A post box CH41 203 on Craven Street at Gladstone Close, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Craven Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695588827, - "lat": 53.3955422, - "lon": -3.0359649, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH41 245 on Newling Street, Birkenhead North", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Newling Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695614156, - "lat": 53.3975896, - "lon": -3.0506342, - "tags": { - "amenity": "post_box", - "description": "King Edward VII Type A post box CH41 284 at Mallaby Street, Birkenhead North End.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 284", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Mallaby Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695616452, - "lat": 53.3942000, - "lon": -3.0140830, - "tags": { - "amenity": "post_box", - "description": "Business box CH41 390 by Hamilton Square station, opposite John Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH41 3900", - "royal_cypher": "no", - "wikimedia_commons": "Category:Business post box on Hamilton Street" - } -}, -{ - "type": "node", - "id": 7695622869, - "lat": 53.3970207, - "lon": -3.0589106, - "tags": { - "amenity": "post_box", - "description": "King George V Type A post box CH41 314 at the junction of Woodsorrel Road and Bidston Avenue, Claughton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 314", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Woodsorrel Road, Claughton.jpg" - } -}, -{ - "type": "node", - "id": 7695656735, - "lat": 53.3985316, - "lon": -3.0356735, - "tags": { - "amenity": "post_box", - "description": "No royal cypher on this FMO/Business box CH41 411 on Price Street/Arthur Street, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH41 411", - "royal_cypher": "no", - "wikimedia_commons": "File:Business post box at Price Street Business Centre, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695656767, - "lat": 53.3883120, - "lon": -3.0316563, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH41 460 on Oxton Road, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 460", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Old Charing Cross Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7695681068, - "lat": 53.4043315, - "lon": -3.0703108, - "tags": { - "amenity": "post_box", - "description": "King George V Type A post box CH41 450 on Hoylake Road at Hurrell Road, Birkenhead. Replaced a Penfold formerly at this location.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 450", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Hoylake Road at Hurrell Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695688139, - "lat": 53.4020111, - "lon": -3.0624906, - "tags": { - "amenity": "post_box", - "description": "King George VI Type A post box CH41 425 at Hoylake Road post office, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 425", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Hoylake Road post office, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695746186, - "lat": 51.5270145, - "lon": -0.1614245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "the left aperture is blocked up, the left collection plate is missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box NW1 59D" - } -}, -{ - "type": "node", - "id": 7695899418, - "lat": 53.3903424, - "lon": -3.0229991, - "tags": { - "amenity": "post_box", - "description": "QEII Type B post box CH41 463 at the eastern entrance to Birkenhead Market.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH41 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Birkenhead Market.jpg" - } -}, -{ - "type": "node", - "id": 7695908293, - "lat": 53.3989508, - "lon": -3.0223870, - "tags": { - "amenity": "post_box", - "description": "QEII post box CH41 619 by Machan by the roundabout at the south of Tower Road, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH41 619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Tower Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695916964, - "lat": 53.3933364, - "lon": -3.0177505, - "tags": { - "amenity": "post_box", - "description": "Post box CH41 999 at the corner of Hamilton Square", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH41 999", - "royal_cypher": "no", - "wikimedia_commons": "File:Business post box on Price Street, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7695979887, - "lat": 51.6207006, - "lon": -2.1778614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL8 179D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7695979888, - "lat": 51.6112525, - "lon": -2.1959895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL8 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7695979889, - "lat": 51.6128418, - "lon": -2.1980376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL8 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7697544457, - "lat": 51.4093571, - "lon": -0.2587259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 260D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7697544458, - "lat": 51.4038282, - "lon": -0.2498089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 158", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7697544459, - "lat": 51.4032530, - "lon": -0.2550439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7697544460, - "lat": 51.4046952, - "lon": -0.2572725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7697544461, - "lat": 51.4020462, - "lon": -0.2563991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7697550668, - "lat": 51.3994475, - "lon": -0.2554112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT3 255", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7699205485, - "lat": 51.5147072, - "lon": -0.1542568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1H 12;W1H 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7699820456, - "lat": 55.8230458, - "lon": -4.2054389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7700298191, - "lat": 53.4057647, - "lon": -3.0359115, - "tags": { - "amenity": "post_box", - "description": "EIIR parcels and franked mail post box CH41 977 at the entrance of Wirral Business Centre, Dock Road, Wallasey.", - "latitude": "-3.03589", - "longitude": "53.40568", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH41 977", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Business post box at Wirral Business Centre, Dock Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7700300823, - "lat": 53.4056618, - "lon": -3.0358913, - "tags": { - "amenity": "post_box", - "description": "EIIR Type K post box CH41 97 at entrance to Wirral Business Centre, Dock Road, Wallasey.", - "latitude": "-3.03589", - "longitude": "53.40565", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH41 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Wirral Business Centre, Dock Road, Wallasey.jpg" - } -}, -{ - "type": "node", - "id": 7700362609, - "lat": 53.3893076, - "lon": -3.0242713, - "tags": { - "amenity": "post_box", - "description": "EIIR type PB58 box inside WH Smith/Borough Pavement post office, Birkenhead. No collection plate so it's anyone's guess when its emptied.", - "indoor": "yes", - "latitude": "-3.02426", - "longitude": "53.38930", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH41 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in WH Smith, Borough Pavement.jpg" - } -}, -{ - "type": "node", - "id": 7700418996, - "lat": 53.3857392, - "lon": -3.0248699, - "tags": { - "amenity": "post_box", - "description": "VR wall box CH41 9 by Smith & Hawkes on Clifton Road, Birkenhead. RM list this as a Penfold.", - "latitude": "-3.02483", - "longitude": "53.38576", - "manufacturer": "Smith & Hawkes, Birmingham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH41 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Clifton Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7700450638, - "lat": 53.3838664, - "lon": -3.0192192, - "tags": { - "amenity": "post_box", - "description": "EIIR lamp box pier CH41 183 on Hinderton Road, Tranmere.", - "latitude": "-3.01911", - "longitude": "53.38384", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH41 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7700556155, - "lat": 51.4009232, - "lon": 0.0386984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "ref": "BR1 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7700869723, - "lat": 51.6116934, - "lon": -0.4250679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "HA6 214" - } -}, -{ - "type": "node", - "id": 7700884696, - "lat": 51.6062279, - "lon": -0.4232925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7702022570, - "lat": 53.3828124, - "lon": -3.0274463, - "tags": { - "amenity": "post_box", - "description": "Edward VII Type A post box CH42 10 by Andrew Handyside & Co on Victoria Road/Derby Road, Birkenhead.", - "latitude": "-3.02740", - "longitude": "53.38284N", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Victoria Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7702029135, - "lat": 53.3751243, - "lon": -3.0215258, - "tags": { - "amenity": "post_box", - "description": "QEII Type K post box CH42 2 on Well Lane, Rock Ferry, on the edge of Victoria Park.", - "latitude": "-3.02152", - "longitude": "53.37512", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH42 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Well Lane, Rock Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7702045441, - "lat": 53.3708592, - "lon": -3.0394501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "description": "QE II pole-mounted lamp box CH42 28 on Prenton Lane, Prenton, Birkenhead.", - "latitude": "-3.03917", - "longitude": "53.37099N", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH42 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Prenton Lane.jpg" - } -}, -{ - "type": "node", - "id": 7702289903, - "lat": 53.3737197, - "lon": -3.0081409, - "tags": { - "amenity": "post_box", - "description": "QEII Type B post box CH42 56 on New Chester Road near Bedford Road, which replaced a Penfold type.", - "latitude": "-3.00763", - "longitude": "53.37314", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH42 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on New Chester Road at Bedford Road.jpg" - } -}, -{ - "type": "node", - "id": 7702320152, - "lat": 52.3577560, - "lon": -1.1891879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV23 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7702350935, - "lat": 53.3757619, - "lon": -3.0154656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "George VI Type A post box CH42 77 by Carron Company at former Tranmere Post Office, Old Chester Road, Rock Ferry. The post office has moved nearby to a small shopping estate.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at former Tranmere Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7702365375, - "lat": 53.3785852, - "lon": -3.0163644, - "tags": { - "amenity": "post_box", - "description": "QEII Type A/B post box CH42 86 by Carron Company on Union Street, Tranmere.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH42 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Union Street, Tranmere.jpg" - } -}, -{ - "type": "node", - "id": 7702391033, - "lat": 53.3697756, - "lon": -3.0048508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "George VI Type A post box CH42 88 made by McDowall & Stevens at the former Rock Ferry Post Office, King Street.", - "manufacturer": "McDowall & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 88", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:Post box at former Rock Ferry Post Office" - } -}, -{ - "type": "node", - "id": 7702403187, - "lat": 53.3721096, - "lon": -3.0112120, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH42 93 next to Rock Ferry Station.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bedford Road, Rock Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7702847033, - "lat": 53.3759181, - "lon": -3.0099612, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH42 182 by Carron Company on New Chester Road at St Paul's Road, Rock Ferry.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on New Chester Road at St Paul's Road.jpg" - } -}, -{ - "type": "node", - "id": 7702851692, - "lat": 53.3649765, - "lon": -3.0076296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "description": "Queen Victoria Type A post box CH42 151 on Highfield South, Rock Ferry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 151", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Highfield South, Rock Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7702851739, - "lat": 53.3775116, - "lon": -3.0313172, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type A post box CH42 167 on Greenbank Road, Prenton, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 167", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Greenbank Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7702862055, - "lat": 53.3848416, - "lon": -3.0298517, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type A post box CH42 188 on Willmer Road, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 188", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Willmer Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7702894377, - "lat": 53.3675432, - "lon": -3.0440862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "description": "George V Type B post box CH42 207 with pouch box at the corner of Golflinks Road and Prenton Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH42 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Golflinks Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7702923924, - "lat": 51.5577152, - "lon": -0.3529472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB5 42" - } -}, -{ - "type": "node", - "id": 7703203842, - "lat": 53.3810020, - "lon": -3.0372838, - "tags": { - "amenity": "post_box", - "description": "George V Type A post box CH42 249 on Carlton Road, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 249", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Carlton Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7703266904, - "lat": 53.3762060, - "lon": -3.0367419, - "tags": { - "amenity": "post_box", - "description": "George V post box CH42 325 at the corner of Singleton Avenue and Highpark Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH42 325", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Singleton Avenue, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7703268863, - "lat": 53.3713403, - "lon": -3.0460067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "QEII Type A post box CH42 312 at junction of Waterpark Road and Bryanston Road , Prenton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Bryanston Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7703271374, - "lat": 53.3737068, - "lon": -3.0438490, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-30", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "description": "QEII post box CH42 300 by Carron Company near the former Woodchurch Lane Post Office, now a betting shop.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Woodchurch Lane Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7703304376, - "lat": 53.3736795, - "lon": -3.0398806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type A post box CH42 511 at Woodchurch Lane/Wharfedale Avenue, Prenton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at the corner of Woodchurch Lane & Wharfedale Avenue, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7703334176, - "lat": 53.3650469, - "lon": -3.0008631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "EIIR pillar box CH42 580 by Carron Company on Hassal Road, Rock Ferry", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH42 580", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Hassal Road, Rock Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7703359080, - "lat": 53.3736852, - "lon": -3.0438383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "description": "Business box CH42 732 near the former Woodchurch Lane Post Office (which became a betting office on closure). No regnal cypher.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH42 732", - "royal_cypher": "no", - "wikimedia_commons": "File:FMO post box at Woodchurch Lane Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7703645819, - "lat": 50.8095193, - "lon": -0.3705832, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BN11 1703D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7703645826, - "lat": 50.8101843, - "lon": -0.3673442, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "BN11 1704D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7703645837, - "lat": 50.8082390, - "lon": -0.3800790, - "tags": { - "amenity": "post_box", - "note": "Collection plate missing as of 2020-07 and 2022-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7703792667, - "lat": 53.1319429, - "lon": -1.2451249, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7705254485, - "lat": 50.2000064, - "lon": -5.3040335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "description": "Opisite the entrence to Pendarves House", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR14 119", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 7705254489, - "lat": 50.2038449, - "lon": -5.2904480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "description": "In the wall at the end of the wall next to drive way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TR14 118", - "source": "survey", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 7705254531, - "lat": 50.2059311, - "lon": -5.2960311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Mounted inside/on a block pillerat bottom of a drive way", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR14 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 7705316958, - "lat": 53.2414751, - "lon": -0.4546386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7705350005, - "lat": 51.4037466, - "lon": 0.2467981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co, London", - "post_box:type": "wall", - "ref": "DA4 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7705524569, - "lat": 52.2926200, - "lon": 1.1609405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7043" - } -}, -{ - "type": "node", - "id": 7705547060, - "lat": 52.3047804, - "lon": 1.2421786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP21 7034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7705614988, - "lat": 52.2974667, - "lon": 1.0841266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP23 7062", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7706024184, - "lat": 50.7215441, - "lon": -1.9673145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 22", - "ref:GB:uprn": "10015407148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706038761, - "lat": 50.7265804, - "lon": -1.5843661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO41 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042585, - "lat": 50.7151886, - "lon": -1.9830966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH15 301P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7706042586, - "lat": 50.7136958, - "lon": -1.9767411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH15 247", - "ref:GB:uprn": "10015376080", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042587, - "lat": 50.7186437, - "lon": -1.9755717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH15 9D", - "ref:GB:uprn": "10015463302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042588, - "lat": 50.7201007, - "lon": -1.9746476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH15 24P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7706042589, - "lat": 50.7200973, - "lon": -1.9746771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 39", - "ref:GB:uprn": "10015329642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042590, - "lat": 50.7223592, - "lon": -1.9728586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH15 7037;BH15 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042591, - "lat": 50.7230885, - "lon": -1.9764501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH15 32D", - "ref:GB:uprn": "10015400489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042592, - "lat": 50.7282171, - "lon": -1.9732556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 57D", - "ref:GB:uprn": "10015369412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042595, - "lat": 50.7335472, - "lon": -1.9725354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 147D", - "ref:GB:uprn": "10015290060", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7706042596, - "lat": 50.7369092, - "lon": -1.9594516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 80D", - "ref:GB:uprn": "10015342764", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042597, - "lat": 50.7375034, - "lon": -1.9557676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 280D", - "ref:GB:uprn": "10015387018", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042598, - "lat": 50.7412513, - "lon": -1.9481514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 41D", - "ref:GB:uprn": "10015294656", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7706042599, - "lat": 50.7366622, - "lon": -1.9522069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 292D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7706042600, - "lat": 50.7340454, - "lon": -1.9593108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 25D", - "ref:GB:uprn": "10015287478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706042601, - "lat": 50.7321143, - "lon": -1.9636318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 185", - "ref:GB:uprn": "10015472491", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7706042602, - "lat": 50.7278606, - "lon": -1.9699873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH15 182D", - "ref:GB:uprn": "10015422834", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7706042603, - "lat": 50.7251762, - "lon": -1.9664173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 138", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7706042604, - "lat": 50.7228151, - "lon": -1.9639242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 145", - "ref:GB:uprn": "10015420668", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7706514142, - "lat": 53.3661176, - "lon": -3.0138534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "EVIIIR type A post box CH42 295 by McDowell & Stevens at Dacre Hill Post Office, Rock Ferry, Wirral.", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 295", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Dacre Hill PO.jpg" - } -}, -{ - "type": "node", - "id": 7706551622, - "lat": 53.3713970, - "lon": -3.0300694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EVIIR type A post box CH42 270 by McDowell & Stevens on the corner of Irvine Road and Borough Road, Tranmere", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 270", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Irvine Road, Tranmere.jpg" - } -}, -{ - "type": "node", - "id": 7706573825, - "lat": 53.3718060, - "lon": -3.0025782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "GR type A post box CH42 3 at the entrance to Rock Park on Rock Lane East.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Rock Park, Rock Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7706597832, - "lat": 53.3717500, - "lon": -3.0266822, - "tags": { - "amenity": "post_box", - "description": "GVIR type A post box CH42 293 by Carron Company at Allcot Avenue/Mount Road, Tranmere.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 293", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Allcot Avenue, Tranmere.jpg" - } -}, -{ - "type": "node", - "id": 7706601222, - "lat": 53.3739616, - "lon": -3.0250081, - "tags": { - "amenity": "post_box", - "description": "EIIR type A post box CH42 257 by Carron Company on Bebington Road near junction of Mount Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH42 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Bebington Road.jpg" - } -}, -{ - "type": "node", - "id": 7706897431, - "lat": 50.4302784, - "lon": -3.6832043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ9 9;TQ9 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7707411902, - "lat": 50.7420544, - "lon": -1.6738595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH25 202D" - } -}, -{ - "type": "node", - "id": 7707472101, - "lat": 51.3608971, - "lon": 1.4135800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "CT10 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7710790811, - "lat": 57.3210846, - "lon": -3.4042171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Fr 11:00; Sa 11:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 159", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7711736331, - "lat": 55.1656162, - "lon": -6.7870159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT51 96" - } -}, -{ - "type": "node", - "id": 7711736343, - "lat": 55.1663573, - "lon": -6.7968616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT51 135" - } -}, -{ - "type": "node", - "id": 7712176533, - "lat": 57.4729814, - "lon": -4.1887314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "mail:meter": "yes", - "mail:parcel": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IV2 1241P" - } -}, -{ - "type": "node", - "id": 7712176534, - "lat": 57.4729687, - "lon": -4.1887032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "IV2 124", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7712475317, - "lat": 53.5666578, - "lon": -0.6347562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN16 777", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7713289100, - "lat": 53.3920453, - "lon": -3.0560866, - "tags": { - "amenity": "post_box", - "description": "QEII Type B post box CH43 7 on Tollemache Road near Shrewsbury Road, with pouch box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Tollemache Road, Claughton.jpg" - } -}, -{ - "type": "node", - "id": 7713318551, - "lat": 53.3875184, - "lon": -3.0453529, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH43 8 at the junction of Palm Grove and Devonshire Road, Oxton, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH43 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Palm Grove, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7713855602, - "lat": 51.2049672, - "lon": -4.0415947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7714350456, - "lat": 51.3483871, - "lon": 1.3859624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 07:15", - "ref": "CT12 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7714350457, - "lat": 51.3493160, - "lon": 1.3228715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "note": "Reference reused from previous location at \"Pinks Corner\".", - "ref": "CT12 142" - } -}, -{ - "type": "node", - "id": 7714803311, - "lat": 53.3833140, - "lon": -3.0542403, - "tags": { - "amenity": "post_box", - "description": "QE II lamp box pier CH43 34 at Ulverscroft, Bidston Road, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Ulverscroft, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7714804425, - "lat": 53.3881068, - "lon": -3.0511396, - "tags": { - "amenity": "post_box", - "description": "QEII wall mounted lamp box CH43 35 at the corner of Grosvenor Place and Manor Hill, Claughton, Birkenhead", - "note": "Lamp box mounted as a wall box, probably replacing a type B or C wall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH43 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Grosvenor Place, Claughton.jpg" - } -}, -{ - "type": "node", - "id": 7715479465, - "lat": 51.6238475, - "lon": -2.6700680, - "tags": { - "amenity": "post_box", - "mapillary": "323575825905422", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP16 399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2019-05-01", - "survey:date": "2020-09-26" - } -}, -{ - "type": "node", - "id": 7716116535, - "lat": 53.3841940, - "lon": -3.0562945, - "tags": { - "amenity": "post_box", - "description": "QEII wall-mounted lamp box CH43 60 on Beresford Road, Birkenhead at junction of Bidston Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Beresford Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7716132131, - "lat": 53.3854884, - "lon": -3.0519730, - "tags": { - "amenity": "post_box", - "description": "King George VI Type B post box CH43 62 on Shrewsbury Road at Beresford Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Shrewsbury Road at Beresford Road.jpg" - } -}, -{ - "type": "node", - "id": 7716140257, - "lat": 53.3837188, - "lon": -3.0521296, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH43 82 on Wellington Road, Birkenhead", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH43 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Wellington Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7716154488, - "lat": 53.4041527, - "lon": -3.0797233, - "tags": { - "amenity": "post_box", - "description": "King George VI Type B post box CH43 76 at the junction of School Lane & Bidston Village Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at the junction of School Lane & Bidston Village Road.jpg" - } -}, -{ - "type": "node", - "id": 7716190208, - "lat": 53.3874254, - "lon": -3.0378965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH43 94 on Alfred Road, between Grange Mount and Westbourne Road, with attached pouch box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Alfred Road, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7716367310, - "lat": 53.3892940, - "lon": -3.0426937, - "tags": { - "amenity": "post_box", - "description": "QE II lamp box pier CH43 156 at the corner of St Andrew's Road and Slatey Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at St Andrew's Road, Birkenhead" - } -}, -{ - "type": "node", - "id": 7716517381, - "lat": 53.3881741, - "lon": -3.0594786, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type B post box CH43 160 on Bidston Road at Howbeck Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 160", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Bidston Road at Howbeck Road.jpg" - } -}, -{ - "type": "node", - "id": 7716517630, - "lat": 53.3834080, - "lon": -3.0455043, - "tags": { - "amenity": "post_box", - "description": "VR type B pillar on the corner of Columbia Road/Shrewsbury Roadm, Oxton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 159", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box on Columbia Road, Birkenhead" - } -}, -{ - "type": "node", - "id": 7716539474, - "lat": 53.3889668, - "lon": -3.0546665, - "tags": { - "amenity": "post_box", - "description": "Queen Victoria Type B post box CH43 161 at the junction of Shrewsbury Road and Howbeck Road - St Aiden's College, which was across the road, is long gone.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 161", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box at St Aiden's College, Birkenhead" - } -}, -{ - "type": "node", - "id": 7716866380, - "lat": 53.3901092, - "lon": -3.0357716, - "tags": { - "amenity": "post_box", - "description": "Victorian Type A/B post box CH43 170 on Park Road South at junction of Alvanley Place, Claughton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH43 170", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box at Alvanley Place, Birkenhead" - } -}, -{ - "type": "node", - "id": 7716882057, - "lat": 53.3796292, - "lon": -3.0452355, - "tags": { - "amenity": "post_box", - "description": "VR type B post box CH43 173 on Mount Pleasant, Oxton, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "CH43", - "ref": "CH43 173", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Mount Pleasant, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7716926860, - "lat": 53.3904111, - "lon": -3.0498727, - "tags": { - "amenity": "post_box", - "description": "Edward VII wall mounted post box CH43 199 on Egerton Road, Claughton, at its junction with Manor Hill.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH43 199", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Egerton Road, Claughton.jpg" - } -}, -{ - "type": "node", - "id": 7716936711, - "lat": 53.3941201, - "lon": -3.0640472, - "tags": { - "amenity": "post_box", - "description": "George V wall mounted type B post box CH43 190 on the wall of Flaybrick Reservoir, Upton Road, Claughton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH43 190", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Flaybrick Reservoir.jpg" - } -}, -{ - "type": "node", - "id": 7716958459, - "lat": 53.3904044, - "lon": -3.0695759, - "tags": { - "amenity": "post_box", - "description": "Edward VII Type B post box CH43 250 at the corner of Noctorum Lane and Vyner Road South.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 250", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Noctorum Lane.jpg" - } -}, -{ - "type": "node", - "id": 7717002163, - "lat": 53.3712944, - "lon": -3.0599887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI post box CH43 251 by Carron Company at the corner of Woodchurch Road and Holmlands Drive, Birkenhead.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH43 251", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Holmlands Drive, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7717012387, - "lat": 53.3919108, - "lon": -3.0607510, - "tags": { - "amenity": "post_box", - "description": "QEII lamp box pier CH43 288 which replaced the wall-mounted box opposite in June 2018.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Ashburton Road, Birkenhead" - } -}, -{ - "type": "node", - "id": 7717085320, - "lat": 53.3652240, - "lon": -3.0659557, - "tags": { - "amenity": "post_box", - "description": "QE II Type A post box CH43 404 outside Prenton Delivery Office; twinned with an adjacent FMO box.", - "name": "Prenton Delivery Office (2)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH43 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Type A post box outside Prenton Delivery Office, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7717086323, - "lat": 53.3669982, - "lon": -3.0519446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type K post box CH43 304 on Bramwell Road, Prenton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH43 304", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bramwell Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7717098877, - "lat": 53.3872182, - "lon": -3.0832339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "description": "George V Type B post box CH43 385 on the verge opposite the post office in Bidston.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 385", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Coniston Avenue Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7717100693, - "lat": 53.4077060, - "lon": -3.0703764, - "tags": { - "amenity": "post_box", - "description": "QE II post box CH43 323 situated just inside the entrance of Tesco Extra, Bidston Moss.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH43 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Tesco, Bidston Moss.jpg" - } -}, -{ - "type": "node", - "id": 7717115912, - "lat": 53.3697527, - "lon": -3.0679977, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH43 400 on Durley Drive, Prenton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH43 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Durley Drive, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7717129423, - "lat": 53.3727513, - "lon": -3.0520861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH43 409 by Carron Company at the corner of Gresford Avenue & Woodchurch Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 409", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Gresford Avenue, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7717129424, - "lat": 53.3938476, - "lon": -3.0513540, - "tags": { - "amenity": "post_box", - "description": "George V Type B post box CH43 464 on Park Road West, Claughton, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 464", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Park Road West, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7717145292, - "lat": 53.3701692, - "lon": -3.0534545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI Type B post box CH43 492 by Carron Company on Waterpark Road, Prenton, Merseyside.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 492", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Waterpark Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7717161996, - "lat": 53.3666737, - "lon": -3.0595961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type B post box CH43 531 by Carron Company at the corner of Boswell Road and Prenton Dell Road, Prenton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 531", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Boswell Road, Prenton.jpg" - } -}, -{ - "type": "node", - "id": 7717173567, - "lat": 53.3674484, - "lon": -3.0562388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "description": "QEII Type B post box CH43 577 by Carron Company at Prenton Dell Post Office.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 577", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Prenton Dell Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7717244612, - "lat": 53.3822328, - "lon": -3.0428940, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH43 734 at Mount Road, Oxton Village, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH43 734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Mount Road, Oxton Village.jpg" - } -}, -{ - "type": "node", - "id": 7717573905, - "lat": 51.5427829, - "lon": -2.2846639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL9 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7717863828, - "lat": 52.4090820, - "lon": -1.5365870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2022-07-17", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7717890506, - "lat": 52.4128694, - "lon": -1.5313374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "description": "This postbox is just inside Morrisons store entrance, on the right hand side.", - "indoor": "yes", - "last_checked": "2020-06-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 178", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7717898082, - "lat": 51.4144586, - "lon": -0.3174434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 124D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7718173635, - "lat": 51.5911437, - "lon": -0.4003135, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7720263857, - "lat": 53.2950414, - "lon": -1.3295489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S21 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7720480624, - "lat": 53.2959139, - "lon": -1.3296206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S21 543D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7722019353, - "lat": 52.4098194, - "lon": -1.5453599, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-06-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7722378673, - "lat": 51.1733508, - "lon": -0.5958112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "RM 2013 suggests GU8 30 here, with GU8 40 at Milford Station", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7722415986, - "lat": 51.1339053, - "lon": -0.5701610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7722471733, - "lat": 51.0966579, - "lon": -0.3980217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7722477559, - "lat": 51.0926222, - "lon": -0.3302490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7725407737, - "lat": 52.4064975, - "lon": -1.4837503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CV2 71D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7725658388, - "lat": 51.1243300, - "lon": -0.3039930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7725660535, - "lat": 51.1627320, - "lon": -0.2573922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7726448801, - "lat": 53.3949402, - "lon": -3.0794786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "description": "EIIR lamp box post box CH43 731 by Machan on Broadheath Avenue, Beechwood, Birkenhead.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 731", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Broadheath Avenue, Beechwood.jpg" - } -}, -{ - "type": "node", - "id": 7726482857, - "lat": 53.3954144, - "lon": -3.0847796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "description": "EIIR type B post box CH43 71 outside The Fender Post Office, Beechwood, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at The Fender Post Office, Beechwood.jpg" - } -}, -{ - "type": "node", - "id": 7726576749, - "lat": 53.3872619, - "lon": -3.0786700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "EIIR type B post box CH43 586 by Carron Company on Windermere Road, Noctorum.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 586", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Windermere Road, Noctorum.jpg" - } -}, -{ - "type": "node", - "id": 7726683210, - "lat": 53.3825620, - "lon": -3.0805183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "EIIR type B post box CH43 134 by Carron Company on Noctorum Way near St Peter's Way. Listed by Royal Mail as Newstead Way.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at St Peters Way, Noctorum.jpg" - } -}, -{ - "type": "node", - "id": 7726699436, - "lat": 51.7296301, - "lon": -2.0767207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7727158634, - "lat": 53.3780457, - "lon": -3.0611325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "description": "EIIR type B post box CH43 141 by Carron Company at junction of Hargrave Avenue and Townfield Lane, Oxton", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Hargrave Avenue, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7727199961, - "lat": 53.3781733, - "lon": -3.0636064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "description": "EIIR pillar box CH43 33 by ROMEC at the entrance to Townfield Close, Oxton. Replaced a type K inside the shops area in October 2018.", - "manufacturer": "ROMEC", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH43 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Townfield Lane Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7727221221, - "lat": 53.3740156, - "lon": -3.0655452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "description": "EIIR lamp box pier CH43 66 by Carronade on Holmlands Drive at Holmlands Crescent, Oxton.", - "manufacturer": "Carron Company", - "note": "Carronade marque", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Holmlands Crescent, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7727230671, - "lat": 53.3745384, - "lon": -3.0559931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "description": "EIIR type B post box CH43 72 by Carron Company at Tabley Close on Holm Lane, Oxton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH43 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Holm Lane, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7727269404, - "lat": 53.3787772, - "lon": -3.0498847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "EIIR lamp box pier CH43 157 on Talbot Road at Ringwood, Oxton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH43 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Talbot Road, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7727292758, - "lat": 53.3773436, - "lon": -3.0413587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "description": "GVIR type C wall box CH43 278 on Birch Road, Oxton at Birch Road Vets.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH43 278", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Birch Road, Oxton.jpg" - } -}, -{ - "type": "node", - "id": 7727369944, - "lat": 51.4055836, - "lon": -0.2674496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 119", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7727369945, - "lat": 51.4090537, - "lon": -0.2693094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 205D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7727369946, - "lat": 51.4039880, - "lon": -0.2757961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 318D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7727369947, - "lat": 51.4027766, - "lon": -0.2725621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7727369948, - "lat": 51.3929910, - "lon": -0.2624086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7727369949, - "lat": 51.4016228, - "lon": -0.2608214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 69D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7727369950, - "lat": 51.3998901, - "lon": -0.2622523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7727369951, - "lat": 51.3999947, - "lon": -0.2686601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7727369952, - "lat": 51.3980117, - "lon": -0.2677321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 301", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7727369953, - "lat": 51.3975126, - "lon": -0.2727579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 228D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7727369954, - "lat": 51.3947019, - "lon": -0.2664761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7727369955, - "lat": 51.3964219, - "lon": -0.2606678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT3 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7728403828, - "lat": 52.4331041, - "lon": -0.2789327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 82" - } -}, -{ - "type": "node", - "id": 7729073024, - "lat": 53.1933495, - "lon": -3.5630914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 59", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7729124209, - "lat": 53.3860143, - "lon": -2.6027337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "last_checked": "2020-01-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7729226719, - "lat": 53.4055108, - "lon": -2.1627635, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2024-04-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK3 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7729239696, - "lat": 53.1786740, - "lon": -3.6003825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7729239698, - "lat": 53.1567816, - "lon": -3.5909614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7729239699, - "lat": 53.1644591, - "lon": -3.5589532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 08:00", - "note": "Set in pebbledashed brick pillar", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 56", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7729255292, - "lat": 51.2169956, - "lon": -0.3888096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7729315473, - "lat": 51.1994719, - "lon": -0.7790663, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7729501393, - "lat": 51.4357934, - "lon": 0.2110047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DA1 212D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7731265000, - "lat": 50.8381603, - "lon": -0.3114115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7731265046, - "lat": 50.8211517, - "lon": -0.3727455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN14 1742D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7731265063, - "lat": 50.8198404, - "lon": -0.3273621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-05", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN15 1410D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7731265241, - "lat": 50.8142099, - "lon": -0.3474453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN11 1694D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-05-11", - "wikimedia_commons": "File:Looking across Brighton Road towards Heatherstone Road - geograph.org.uk - 1984005.jpg" - } -}, -{ - "type": "node", - "id": 7731265246, - "lat": 50.8130211, - "lon": -0.3528016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1695D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7731265256, - "lat": 50.8126717, - "lon": -0.3588426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1699D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7731265323, - "lat": 50.8076738, - "lon": -0.3969897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN11 1607D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7731265328, - "lat": 50.8037694, - "lon": -0.4478500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN12 1801D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 7731265331, - "lat": 50.8040066, - "lon": -0.4720232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN16 1471D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7731681440, - "lat": 53.1408114, - "lon": -1.2520453, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7731855312, - "lat": 52.6272778, - "lon": 1.0334169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7732331080, - "lat": 53.0921966, - "lon": -1.1781041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 15:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG15 38" - } -}, -{ - "type": "node", - "id": 7732430790, - "lat": 51.2615078, - "lon": -0.6058121, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-04", - "old_ref": "GU3 223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU3 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7732449535, - "lat": 51.2315510, - "lon": -0.6634136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU3 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7733300697, - "lat": 50.8090573, - "lon": -0.3748535, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN11 1616D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7733791305, - "lat": 56.0353475, - "lon": -3.8129206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK5 175D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7734700661, - "lat": 50.7323421, - "lon": -1.9847192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 176D", - "ref:GB:uprn": "10015303832", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7734700662, - "lat": 50.7349657, - "lon": -1.9863859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 289D", - "ref:GB:uprn": "10015342783", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7736050886, - "lat": 51.5124881, - "lon": -0.2302399, - "tags": { - "amenity": "post_box", - "ref": "W12 33D" - } -}, -{ - "type": "node", - "id": 7736348930, - "lat": 51.3905416, - "lon": -0.4243000, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7737454967, - "lat": 51.5854423, - "lon": -2.1740709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN16 210", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7737495454, - "lat": 51.6020047, - "lon": -2.1202328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN16 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7737806072, - "lat": 56.0674796, - "lon": -4.4771835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "G63 1242", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7737830254, - "lat": 53.3496012, - "lon": -2.9792373, - "tags": { - "amenity": "post_box", - "description": "QEII lamp box pier CH62 30 on South View, Bromborough Pool. Was formerly sited on Manor Place.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on South View, Bromborough Pool.jpg" - } -}, -{ - "type": "node", - "id": 7737852364, - "lat": 53.3108577, - "lon": -2.9610083, - "tags": { - "amenity": "post_box", - "description": "QEII lamp box pier CH62 48 at Eastham Mews, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Eastham Mews.jpg" - } -}, -{ - "type": "node", - "id": 7737864494, - "lat": 53.3221073, - "lon": -2.9853383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "QEII Type A post box CH62 45 outside Allport Road Post Office, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Allport Road Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7737895405, - "lat": 53.3561523, - "lon": -3.0037115, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH62 114 at Bebington Post Office, Bebington Road, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Bebington Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7737896084, - "lat": 53.3597249, - "lon": -2.9990340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "description": "QEII Type A post box CH62 142 at New Ferry Precinct, Bebington Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at New Ferry Precinct.jpg" - } -}, -{ - "type": "node", - "id": 7737906359, - "lat": 53.3358713, - "lon": -2.9805243, - "tags": { - "amenity": "post_box", - "description": "QEII Type B post box CH62 129 at Woodslee on Spital Road, Bromborough", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Woodslee on Spital Road, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7737909808, - "lat": 53.3494969, - "lon": -2.9977604, - "tags": { - "amenity": "post_box", - "description": "QEII Type A post box CH62 185 outside the former Port Sunlight Post Office, now the Tudor Rose tea room.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Port Sunlight Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7737923139, - "lat": 53.3375493, - "lon": -2.9766263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off; Su off", - "description": "EIIR business box CH62 202 on the corner of Thursby Road and Caldbeck Road, Croft Industrial Estate, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH62 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Business post box at Croft Industrial Estate, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7737940187, - "lat": 53.3375680, - "lon": -2.9766033, - "tags": { - "amenity": "post_box", - "description": "QEII Type K post box made by Machan Engineering on the corner of Caldbeck Road and Thursby Road, Croft Industrial Estate, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH62 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Croft Industrial Estate, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7737941378, - "lat": 53.3320572, - "lon": -2.9769404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45; Su off", - "description": "QEII Type A post box CH62 297 at Bromborough Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Bromborough Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7737960214, - "lat": 53.3099490, - "lon": -2.9745538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII lamp box pier CH62 279 on Sutherland Drive, Eastham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Sutherland Drive, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 7737999503, - "lat": 53.3345344, - "lon": -2.9862813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII pole-mounted post box CH62 309 on Central Avenue, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Central Avenue, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738010238, - "lat": 53.3425955, - "lon": -2.9828668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type A post box CH62 375 on Coronation Drive, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Coronation Drive, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738012183, - "lat": 53.3290865, - "lon": -2.9780552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type B post box CH62 491 on June Avenue, Bromborough", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on June Avenue, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738022403, - "lat": 53.3450049, - "lon": -2.9800225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George VI Type A post box CH62 420 made by McDowall, Stevens & Co, Falkirk on Port Causeway, Bromborough at ithe junction of Eastern Avenue", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 420", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Port Causeway, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738031636, - "lat": 53.3186719, - "lon": -2.9763713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George V Type B post box CH62 436 by Carron Company at the junction of Raeburn Avenue and Kilburn Avenue, Eastham.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 436", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Raeburn Avenue, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 7738033283, - "lat": 53.3168846, - "lon": -2.9616870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George V Type B post box CH62 482 by Carron Company at Carlett Park (on St John's Road), Eastham, Merseyside.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 482", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Carlett Park.jpg" - } -}, -{ - "type": "node", - "id": 7738035485, - "lat": 53.3167482, - "lon": -2.9684617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George V Type B postbox CH62 423 by Carron Company on Heygarth Road, Eastham", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 423", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Heygarth Road, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 7738036254, - "lat": 53.3334167, - "lon": -2.9829157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII pole-mounted lamp box CH62 453 on Croft Lane, Bromborough. Mounted on a sewer vent.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Croft Lane, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738043306, - "lat": 53.3137465, - "lon": -2.9651245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George VI Type B post box CH62 456 on Bridle Road, Eastham, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 456", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Bridle Road, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 7738046237, - "lat": 53.3249780, - "lon": -2.9769757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George V Type B post box CH62 469 on Allport Lane, Bromborough, near junction of Allport Road. Not to be confused with the other opposite the Co-op.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 469", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Allport Lane near Allport Road, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738058530, - "lat": 53.3314840, - "lon": -2.9887881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type B post box CH62 495 on Eccleston Avenue, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 495", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Eccleston Avenue, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7738292231, - "lat": 51.2058835, - "lon": -0.6392214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU7 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7738346143, - "lat": 51.0190631, - "lon": -3.4755501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7739240444, - "lat": 53.3285983, - "lon": -2.9852116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "King George VI Type B post box CH62 510 on Ashfield Road, Bromborough.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 510", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Ashfield Road, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7739251239, - "lat": 53.3064332, - "lon": -2.9726915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type B post box CH62 540 on Clifton Avenue, Mill Park, Eastham, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 540", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Postbox at Clifton Avenue, Mill Park.jpg" - } -}, -{ - "type": "node", - "id": 7739262003, - "lat": 53.3252932, - "lon": -2.9714657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type B post box CH62 588 by Carron Company at Woodyear Road, Bromborough. Actually on Allport Road/New Chester Road", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Woodyear Road, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7739280527, - "lat": 53.3081010, - "lon": -2.9799773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII lamp box pier CH62 602 on Argyle Avenue, Eastham, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Argyle Avenue, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 7739297341, - "lat": 53.3309042, - "lon": -2.9779864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:30; Su off", - "description": "King George VI Type A post box CH62 733 on Allport Lane, Bromborough", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH62 733", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Allport Lane, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7741025879, - "lat": 51.8907121, - "lon": -2.0351297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7741027098, - "lat": 51.8865874, - "lon": -2.0442165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 371", - "source": "local knowledge" - } -}, -{ - "type": "node", - "id": 7741533141, - "lat": 53.3233871, - "lon": -2.9519959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "EIIR lamp box pier CH62 130 by Machan at the entrance to Queen Elizabeth II Dock, Eastham, Merseyside.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH62 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Eastham Docks.jpg" - } -}, -{ - "type": "node", - "id": 7741664691, - "lat": 53.3451304, - "lon": -2.9792982, - "tags": { - "amenity": "post_box", - "description": "Internal private post box CH62 838 in the foyer of Cereal Partners Worldwide, Port Causeway, Bromborough. The white plate sets out that postings are not considered private, and the smaller above it bears the Royal Mail reference number. RM descirbe this a", - "indoor": "yes", - "operator": "Private", - "ref": "CH62 838", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box at Cereal Partners Worldwide.jpg" - } -}, -{ - "type": "node", - "id": 7741709055, - "lat": 53.3555576, - "lon": -2.9890213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "EIIR type B post box CH62 588 by Carron Company on Bolton Road East, New Ferry.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 588", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Lewisham Road, New Ferry.jpg" - } -}, -{ - "type": "node", - "id": 7741740023, - "lat": 53.3643156, - "lon": -2.9938142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "description": "Tilted VR type B post box CH62 144 by Andrew Handyside & Co on New Ferry Road, New Ferry, Wirral.", - "manufacturer": "Andrew Handyside & Co.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH62 144", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on New Ferry Road.jpg" - } -}, -{ - "type": "node", - "id": 7741984420, - "lat": 51.5842943, - "lon": -0.3240424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 171D" - } -}, -{ - "type": "node", - "id": 7742135242, - "lat": 51.4163038, - "lon": -0.2550392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 102D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7742135243, - "lat": 51.4136750, - "lon": -0.2712337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7742135244, - "lat": 51.4157451, - "lon": -0.2809044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KT2 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7742135283, - "lat": 51.4084866, - "lon": -0.2740728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 226", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7743435823, - "lat": 53.5195916, - "lon": -2.2658085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7744390593, - "lat": 52.4641499, - "lon": 1.1797227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1534", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7745398329, - "lat": 54.3113392, - "lon": -1.8314524, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL8 122" - } -}, -{ - "type": "node", - "id": 7746634879, - "lat": 51.3336118, - "lon": -0.2659564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "ref": "KT19 1110" - } -}, -{ - "type": "node", - "id": 7747159440, - "lat": 53.1591902, - "lon": -4.2801672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7749924378, - "lat": 53.4426242, - "lon": -1.3036273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S65 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7750103719, - "lat": 51.4440067, - "lon": 0.2226298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA1 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7750285509, - "lat": 51.5709132, - "lon": -0.1114304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N4 9" - } -}, -{ - "type": "node", - "id": 7750334644, - "lat": 53.3509789, - "lon": -3.0446787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00; Su off", - "description": "King Edward VII Type B wall-mounted post box CH63 24 at the corner of Rest Hill Road, Storeton", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH63 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box in Storeton.jpg" - } -}, -{ - "type": "node", - "id": 7750355292, - "lat": 53.3618859, - "lon": -3.0106042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "description": "QEII Type A post box CH63 12 at the corner of Old Chester Road and Town Lane, Woodhey.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Woodhey, Birkenhead.jpg" - } -}, -{ - "type": "node", - "id": 7750390069, - "lat": 53.3495596, - "lon": -3.0011948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "description": "King George V Type B post box CH63 127 at the junction of Bromborough Road and Ellens Lane, Bebington", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Ellens Lane, Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7750396266, - "lat": 53.3408709, - "lon": -3.0041573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "description": "QEII type A post box CH63 125 in the Lancelyn Precinct off Spital Road. The post office has gone.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Old Lancelyn Court Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7750445686, - "lat": 53.0330361, - "lon": -4.2680550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 7750478768, - "lat": 53.3670607, - "lon": -3.0280066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "VR type B post box CH63 143 by Andrew Handyside & co on Thornton Road, Higher Bebington.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Thornton Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7750838288, - "lat": 53.3514710, - "lon": -3.0044077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "description": "QE II Type A post box CH63 238 on The Village, Bebington near Heath Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Heath Road, Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7751182355, - "lat": 53.4157824, - "lon": -1.3420702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S60 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7751485182, - "lat": 53.3319319, - "lon": -3.0212372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "description": "George V wall type A box CH63 449 made by McDowall, Stevens & Co, Falkirk, alongside the B5151 Clatterbridge Road at Clatterbridge Hospital.", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "CH63 449", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box CH63 449 at Clatterbridge Hospital.jpg" - } -}, -{ - "type": "node", - "id": 7751489034, - "lat": 53.3197285, - "lon": -2.9545772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII lamp box pier CH63 435 by Carron Company on Ferry Road at Mayfield Road, Eastham. An outlier of the rest of CH63 as everything surrounding it is in CH62.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH63 435", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Mayfield Drive, Eastham.jpg" - } -}, -{ - "type": "node", - "id": 7751703070, - "lat": 53.3503524, - "lon": -3.0217912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00; Su off", - "description": "King George V Type B wall box CH63 437 on Heath Road opposite Gorseyville Road, Higher Bebington.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH63 437", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Gorseyville Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7751940619, - "lat": 53.3642551, - "lon": -3.0151873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "George V type B post box CH63 461 by Carron Company on Old Chester Road near junction of King's Lane.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 461", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Old Chester Road near King's Lane.jpg" - } -}, -{ - "type": "node", - "id": 7751941312, - "lat": 53.3640505, - "lon": -3.0320744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "description": "George V Type B post box CH63 445 by Carron Company at Gayton Avenue, Higher Bebington.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 445", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Gayton Avenue, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7752023802, - "lat": 53.3497132, - "lon": -3.0246622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45; Su off", - "description": "King George VI Type B post box CH63 504 at the junction of Ferns Road and Brackenwood Road, Higher Bebington.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 504", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Bracken Lane, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7752593237, - "lat": 53.3577129, - "lon": -3.0313231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "QEII Type B post box CH63 553 at the corner of Mill Road and Mount Road, Higher Bebington.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 553", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Mill Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7752638018, - "lat": 53.1827197, - "lon": -3.3356487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752638020, - "lat": 53.1825046, - "lon": -3.3139766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752638039, - "lat": 53.1764558, - "lon": -3.3092479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "note": "Ref number obscured by damage from corrosion. Believed to be LL16 27.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7752638040, - "lat": 53.1606792, - "lon": -3.3151925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752638041, - "lat": 53.1728934, - "lon": -3.3364428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752638042, - "lat": 53.1738966, - "lon": -3.3386591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752638043, - "lat": 53.1752265, - "lon": -3.3363742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752638044, - "lat": 53.1796092, - "lon": -3.3270633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752651355, - "lat": 53.3496524, - "lon": -3.0029131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "description": "QEII Type A post box CH63 730 on Church Road, Bebington Village.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 730", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Church Road, Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7752807120, - "lat": 50.9430149, - "lon": -0.0780825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 397", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752807121, - "lat": 50.9208000, - "lon": -0.0786639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN6 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7752807122, - "lat": 50.9104601, - "lon": -0.0611134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "note:ref": "Survey of post box shows BN8 481 but this is nowhere near BN8, so must assume it is a mistake", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN7 481", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7753393292, - "lat": 50.8643543, - "lon": -0.1383940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 71D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7753393293, - "lat": 50.8673451, - "lon": -0.1540507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN1 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753393295, - "lat": 50.8632209, - "lon": -0.1502426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588396, - "lat": 50.8081755, - "lon": 0.0356982, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 616", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588397, - "lat": 50.8412244, - "lon": 0.0040568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 572D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588398, - "lat": 50.8474679, - "lon": 0.0002186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 573", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7753588399, - "lat": 50.8573206, - "lon": -0.0115831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588400, - "lat": 50.8592499, - "lon": -0.0251417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN7 1241D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588401, - "lat": 50.8625488, - "lon": -0.0064467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 575D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588402, - "lat": 50.8655782, - "lon": -0.0034399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 587D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753588403, - "lat": 50.8703781, - "lon": -0.0110547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 438D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7753588404, - "lat": 50.8651136, - "lon": -0.0422810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 580D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590370, - "lat": 50.7719661, - "lon": 0.0997393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BN25 1094D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590371, - "lat": 50.7741194, - "lon": 0.1044814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1093D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590372, - "lat": 50.7738442, - "lon": 0.1068371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1059D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590373, - "lat": 50.7747580, - "lon": 0.1109214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN25 1067D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590374, - "lat": 50.7725097, - "lon": 0.1116778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1065D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590375, - "lat": 50.7766377, - "lon": 0.1085195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1058D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7753590376, - "lat": 50.7798496, - "lon": 0.1093731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1053D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7753590377, - "lat": 50.7764032, - "lon": 0.0874528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN25 1047D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754306780, - "lat": 50.7977954, - "lon": 0.0431943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 613D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754306781, - "lat": 50.7899107, - "lon": 0.0315589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 609", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344985, - "lat": 50.7925718, - "lon": 0.0342545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN9 623D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344986, - "lat": 50.7938951, - "lon": 0.0391535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 612D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344987, - "lat": 50.7937663, - "lon": 0.0512892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 602D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344988, - "lat": 50.7956622, - "lon": 0.0461662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN9 614D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7754344989, - "lat": 50.7938417, - "lon": 0.0436576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 611D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344990, - "lat": 50.7937126, - "lon": 0.0473185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN9 619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344991, - "lat": 50.7938765, - "lon": 0.0481094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BN9 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344992, - "lat": 50.7920174, - "lon": 0.0465839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 610D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344993, - "lat": 50.7896614, - "lon": 0.0503907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 608D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344994, - "lat": 50.7892460, - "lon": 0.0479143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 607D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344995, - "lat": 50.7896029, - "lon": 0.0439668, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 606D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344996, - "lat": 50.7886813, - "lon": 0.0381826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344997, - "lat": 50.7846277, - "lon": 0.0465591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 604D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344998, - "lat": 50.7837434, - "lon": 0.0560072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN9 615D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754344999, - "lat": 50.7911692, - "lon": 0.0559562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN9 599D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7754345000, - "lat": 50.7952061, - "lon": 0.0555224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-06-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 598D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7754345001, - "lat": 50.7962001, - "lon": 0.0559482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "BN9 620P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7754345002, - "lat": 50.7998763, - "lon": 0.0583783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN9 622D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754345003, - "lat": 50.8040125, - "lon": 0.0564001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 594D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754345004, - "lat": 50.8080814, - "lon": 0.0559106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN9 590", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754345005, - "lat": 50.8059364, - "lon": 0.0576185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN9 591D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7754345006, - "lat": 50.8065009, - "lon": 0.0655927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 592D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754345007, - "lat": 50.8040541, - "lon": 0.0636830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN9 593D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7754345009, - "lat": 50.8003654, - "lon": 0.0684124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN9 596D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7754387771, - "lat": 50.8590870, - "lon": 0.1868707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN26 966", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7755490872, - "lat": 51.8093559, - "lon": -2.2693266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7757009271, - "lat": 53.2445535, - "lon": -4.1297657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7757009273, - "lat": 53.2510662, - "lon": -4.1437805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL59 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7757009274, - "lat": 53.2424672, - "lon": -4.1454459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL59 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7757009275, - "lat": 53.2371171, - "lon": -4.1535955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL59 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7757052138, - "lat": 51.6505089, - "lon": -0.1864693, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7759266244, - "lat": 50.9180898, - "lon": -3.4456244, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX16 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7759304149, - "lat": 50.9215381, - "lon": -3.4191161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 59", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7760723887, - "lat": 53.5415541, - "lon": -2.6652393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 211", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7761697798, - "lat": 53.3074050, - "lon": -4.0947716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL58 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7762315621, - "lat": 53.3372016, - "lon": -3.0448283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00; Su off", - "description": "GR Type B post box CH63 18 in Brimstage village, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box in Brimstage.jpg" - } -}, -{ - "type": "node", - "id": 7762366317, - "lat": 53.3354579, - "lon": -3.0022181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "description": "GVIR type B post box CH63 509 by Carron Company on Warren Hey, Spital.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 509", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Warren Hey, Spital.jpg" - } -}, -{ - "type": "node", - "id": 7762373059, - "lat": 53.3379156, - "lon": -3.0045632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "EIIR type B post box CH63 600 by Carron Company at Dibbins Hey off Poulton Road, Spital.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Poulton Road, Spital.jpg" - } -}, -{ - "type": "node", - "id": 7767136961, - "lat": 51.8153605, - "lon": -0.8344260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7767797210, - "lat": 53.3615308, - "lon": -3.0272944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 11:45; Su off", - "description": "EIIR type A post box CH63 499 on Broadway, Higher Bebington. The Post Office has gone.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Broadway Post Office, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7768143618, - "lat": 51.5879942, - "lon": -0.1607219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N2 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7768143622, - "lat": 51.5918868, - "lon": -0.1659735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "N2 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7768143625, - "lat": 51.5940696, - "lon": -0.1684330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:45", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N2 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7768143626, - "lat": 51.5934731, - "lon": -0.1669202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "N2 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7768143630, - "lat": 51.5903271, - "lon": -0.1640238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N2 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7768143638, - "lat": 51.5908068, - "lon": -0.1674547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "post_box:type": "wall", - "ref": "N2 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7768143640, - "lat": 51.5878914, - "lon": -0.1640441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "N2 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7768259786, - "lat": 51.1610062, - "lon": -3.3211201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA4 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7769435947, - "lat": 53.3529495, - "lon": -3.0204948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30; Su off", - "description": "GR type B post box CH63 490 by Carron Company on Holmeville Road, Higher Bebington.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH63 490", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Holmville Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7769533260, - "lat": 53.3541532, - "lon": -3.0093809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00", - "description": "EIIR lamp box pier CH63 126 by Carron Company on Acres Road, Higher Bebington. Replaced Type C wall box across the road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH63 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Acres Road, Higher Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7769682972, - "lat": 53.3456396, - "lon": -3.0114655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "EIIR type A post box CH63 498 by Carron Company at Cross Lane Post Office (no longer operating).", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH63 498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Cross Lane Post Office, Lower Bebington.jpg" - } -}, -{ - "type": "node", - "id": 7769895210, - "lat": 51.4596626, - "lon": -0.3699759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW3 27" - } -}, -{ - "type": "node", - "id": 7769895211, - "lat": 51.4626255, - "lon": -0.3669705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW3 8" - } -}, -{ - "type": "node", - "id": 7769895212, - "lat": 51.4667370, - "lon": -0.3710380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW3 24" - } -}, -{ - "type": "node", - "id": 7770244590, - "lat": 53.1043987, - "lon": -4.0838788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7771436082, - "lat": 50.9469242, - "lon": -0.0939055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BN6 398", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7771436083, - "lat": 50.9162324, - "lon": 0.0323493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN8 485D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7771454213, - "lat": 51.4501379, - "lon": 0.2134140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7771498787, - "lat": 50.9321284, - "lon": -0.1098713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 385", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7771498788, - "lat": 50.9355751, - "lon": -0.0940610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7771511077, - "lat": 50.9662741, - "lon": -0.1716138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN6 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7771561620, - "lat": 50.9242786, - "lon": -0.1462803, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "last_checked": "2021-06-11", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN6 395", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7772871682, - "lat": 51.4487524, - "lon": -0.1786023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW18 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7772871683, - "lat": 51.4522210, - "lon": -0.1578359, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-03", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7772871684, - "lat": 51.4509409, - "lon": -0.1622346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW12 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7773986583, - "lat": 53.3189988, - "lon": -2.9898696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box CH63 571 by Carron Company at the junction of Birkdale Road and Brookhurst Road, Bromborough.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH63 571", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Birkdale Avenue, Bromborough.jpg" - } -}, -{ - "type": "node", - "id": 7774031788, - "lat": 53.3186874, - "lon": -3.0010452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH63 344 on Blakeley Road jcn Raby Drive, Raby Mere, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH63 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Raby Drive, Raby Mere.jpg" - } -}, -{ - "type": "node", - "id": 7774045669, - "lat": 53.3233715, - "lon": -3.0064734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "description": "EIIR lamp box pier CH63 324 in a seating area to the north of the lake.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH63 324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Raby Mere Road.jpg" - } -}, -{ - "type": "node", - "id": 7774348374, - "lat": 52.9605987, - "lon": -1.9575647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST10 425", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7774349267, - "lat": 52.9449435, - "lon": -1.9779236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "ST10 1006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7774362569, - "lat": 52.9217685, - "lon": -1.9780064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ST10 123", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7774374858, - "lat": 52.9147663, - "lon": -2.0301519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST10 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7774381390, - "lat": 52.9155969, - "lon": -2.0061183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST10 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7775334146, - "lat": 53.3494857, - "lon": -1.6891110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "ref": "S33 533", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7775625250, - "lat": 54.5764010, - "lon": -1.2354604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TS1 4;TS1 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7775701700, - "lat": 51.5892063, - "lon": -0.1581234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N2 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7775724255, - "lat": 54.9559110, - "lon": -1.6445476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NE11 90" - } -}, -{ - "type": "node", - "id": 7776532546, - "lat": 51.3708071, - "lon": -0.3060032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 218D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532547, - "lat": 51.3688794, - "lon": -0.3091179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 238D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532548, - "lat": 51.3680597, - "lon": -0.3131620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 357D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532549, - "lat": 51.3654377, - "lon": -0.3141202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 343D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776532550, - "lat": 51.3618228, - "lon": -0.2865089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532551, - "lat": 51.3607564, - "lon": -0.2888390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 268D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532552, - "lat": 51.3582760, - "lon": -0.2997275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532553, - "lat": 51.3649349, - "lon": -0.2918914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 326D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776532554, - "lat": 51.3659556, - "lon": -0.2878614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776532555, - "lat": 51.3630517, - "lon": -0.2939795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 305D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776532556, - "lat": 51.3639309, - "lon": -0.3021441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 333D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776532558, - "lat": 51.3265302, - "lon": -0.3274290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT22 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776532559, - "lat": 51.3403493, - "lon": -0.3187953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532560, - "lat": 51.3632677, - "lon": -0.3084762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 275", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532561, - "lat": 51.3741714, - "lon": -0.3038011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 376D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776532562, - "lat": 51.3696455, - "lon": -0.2989188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 342D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776532563, - "lat": 51.3690575, - "lon": -0.2908564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KT9 377P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7776532564, - "lat": 51.3690577, - "lon": -0.2908359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT9 378", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776581724, - "lat": 50.9526086, - "lon": -0.1956685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN6 376", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776581725, - "lat": 50.9564154, - "lon": -0.1880872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN6 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776594733, - "lat": 51.3830339, - "lon": -0.2779721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776594734, - "lat": 51.3821377, - "lon": -0.2822961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 207", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776594735, - "lat": 51.3810163, - "lon": -0.2828778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT6 3341;KT6 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776594736, - "lat": 51.3737011, - "lon": -0.2970500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 293D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776594737, - "lat": 51.3750579, - "lon": -0.2849029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 341D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7776594738, - "lat": 51.3784792, - "lon": -0.2854474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776594739, - "lat": 51.3739696, - "lon": -0.2889477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776594740, - "lat": 51.3756975, - "lon": -0.2997959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT6 295D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776594741, - "lat": 51.3802525, - "lon": -0.2961092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 106D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7776617480, - "lat": 50.8745091, - "lon": 0.0213182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 463D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776617481, - "lat": 50.8803604, - "lon": 0.0191919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 465D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776617482, - "lat": 50.8830787, - "lon": 0.0108522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776617483, - "lat": 50.8834751, - "lon": 0.0073459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776617484, - "lat": 50.8791970, - "lon": 0.0163305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 429", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7776684435, - "lat": 50.8811241, - "lon": -0.0114195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN7 442D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684436, - "lat": 50.8780394, - "lon": 0.0025642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 453D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684437, - "lat": 50.8802733, - "lon": 0.0003728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 454D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684438, - "lat": 50.8831485, - "lon": -0.0047421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN7 455D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684439, - "lat": 50.8804129, - "lon": -0.0033890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 456D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684440, - "lat": 50.8768361, - "lon": 0.0011902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN7 452D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684441, - "lat": 50.8774614, - "lon": -0.0044779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684453, - "lat": 50.8743066, - "lon": -0.0007322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 446D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684454, - "lat": 50.8741852, - "lon": -0.0022785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776684455, - "lat": 50.8727486, - "lon": 0.0013009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN7 448D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776698085, - "lat": 50.8764303, - "lon": 0.0202540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN7 464D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776767409, - "lat": 50.9308821, - "lon": -0.1749323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN6 1229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776767410, - "lat": 50.9272749, - "lon": -0.1637864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7776767426, - "lat": 50.9323668, - "lon": -0.1635088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 391D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7777462132, - "lat": 52.9337703, - "lon": -1.9348990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ST14 362", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7777476141, - "lat": 52.8810150, - "lon": -2.0047507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST18 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7777476143, - "lat": 52.8896128, - "lon": -2.0208889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST18 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7777476144, - "lat": 52.8857197, - "lon": -2.0319960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ST18 234D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7777482615, - "lat": 52.8990206, - "lon": -1.9612527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ST14 83", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7777499844, - "lat": 52.9503663, - "lon": -1.9279262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST10 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7777499845, - "lat": 52.9491623, - "lon": -1.9182619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST10 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7778316160, - "lat": 52.4325699, - "lon": -1.0315095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN6 22" - } -}, -{ - "type": "node", - "id": 7778712919, - "lat": 53.2645868, - "lon": -4.0949759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL58 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7781824086, - "lat": 50.5506286, - "lon": -4.9642626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:15", - "ref": "PL28 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7783583632, - "lat": 51.4153693, - "lon": -1.7536320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SN8 81D" - } -}, -{ - "type": "node", - "id": 7785238741, - "lat": 55.4179564, - "lon": -2.8899984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD9 68", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7785579313, - "lat": 55.4254861, - "lon": -2.7844561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "note": "The royal cypher is ER. There is a gap where II may have been, but was removed?", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TD9 80", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 7785786621, - "lat": 50.9464822, - "lon": -0.2332985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 378D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7785786622, - "lat": 50.9305647, - "lon": -0.2239980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786623, - "lat": 50.9419936, - "lon": -0.2208437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786632, - "lat": 50.9311644, - "lon": -0.2135206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786633, - "lat": 50.9372796, - "lon": -0.2024851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786634, - "lat": 50.9332561, - "lon": -0.1999010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 418D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786635, - "lat": 50.9413632, - "lon": -0.1785386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 407D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786636, - "lat": 50.9340538, - "lon": -0.1825337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "BN6 404D is the ref on the box, although it is probably a misprint", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN6 404D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7785786652, - "lat": 50.9352252, - "lon": -0.1885191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785786684, - "lat": 50.9372586, - "lon": -0.1826638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN6 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7785807485, - "lat": 50.9364811, - "lon": -0.1793345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN6 409", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7788428741, - "lat": 54.3588511, - "lon": -0.9111692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "priority": "yes", - "ref": "YO18 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7788535918, - "lat": 53.0053424, - "lon": -1.8758458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST10 442", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7788539088, - "lat": 57.5262007, - "lon": -4.0365542, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-01-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7788539094, - "lat": 57.5069755, - "lon": -4.0047070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "IV12 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7792296600, - "lat": 55.5302867, - "lon": -2.9056511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD7 132", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7792670558, - "lat": 53.2367009, - "lon": -1.7049240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DE45 1281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795136383, - "lat": 52.4608831, - "lon": 1.5647263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR34 3469D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795142423, - "lat": 52.4584463, - "lon": 1.5694993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3476D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7795142427, - "lat": 52.4548416, - "lon": 1.5716605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3477D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795142435, - "lat": 52.4574939, - "lon": 1.5631277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "NR34 3475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795142438, - "lat": 52.4574281, - "lon": 1.5641590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR34 3400", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7795142445, - "lat": 52.4636870, - "lon": 1.5639646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3468", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795457138, - "lat": 51.4498062, - "lon": -3.4152749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 158D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7795496592, - "lat": 54.2647768, - "lon": -0.9116574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795496607, - "lat": 54.2745241, - "lon": -0.9393083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO62 549D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7795610761, - "lat": 51.6130707, - "lon": -2.9752016, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "mapillary": "4478930725474746", - "name": "Home Farm Green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP18 210D", - "royal_cypher": "EIIR", - "survey:date": "2020-09-26", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610762, - "lat": 51.6186625, - "lon": -2.9713151, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "colour": "red", - "covered": "no", - "drive_through": "no", - "name": "Anthony Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610763, - "lat": 51.6156215, - "lon": -2.9665998, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "colour": "red", - "covered": "no", - "drive_through": "no", - "name": "Lodge Avenue Caerleon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610764, - "lat": 51.6179256, - "lon": -2.9667741, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610765, - "lat": 51.6193703, - "lon": -2.9634294, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "name": "College Glade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610766, - "lat": 51.6177649, - "lon": -2.9594168, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "name": "Forge Close", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP18 211D", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610767, - "lat": 51.6134609, - "lon": -2.9610644, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "name": "Lodge Road Caerleon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610768, - "lat": 51.6128614, - "lon": -2.9566685, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "name": "Goldcroft Common", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610769, - "lat": 51.6102134, - "lon": -2.9557744, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "name": "The Museum Caerleon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "NP18 222D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610770, - "lat": 51.6147643, - "lon": -2.9539796, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7795610771, - "lat": 51.6095325, - "lon": -2.9538056, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "name": "Caerleon Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP18 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wheelchair": "yes", - "wikidata": "Q29503031" - } -}, -{ - "type": "node", - "id": 7796378069, - "lat": 53.0406663, - "lon": -1.9396220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "ST10 496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7796378070, - "lat": 53.0282026, - "lon": -1.9210973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ST10 1005", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7796378096, - "lat": 52.9725554, - "lon": -1.8920289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ST10 98", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7796622931, - "lat": 51.2475698, - "lon": 1.2321955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT3 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7797451502, - "lat": 51.4223621, - "lon": -1.7346387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 54D" - } -}, -{ - "type": "node", - "id": 7797635423, - "lat": 52.5714339, - "lon": -1.9972291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WS", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7798444316, - "lat": 54.5779743, - "lon": -5.9467793, - "tags": { - "addr:city": "Belfast", - "addr:street": "Windsor Park", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT9 250D" - } -}, -{ - "type": "node", - "id": 7798634217, - "lat": 55.7823430, - "lon": -2.2159335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TD11 25" - } -}, -{ - "type": "node", - "id": 7799210606, - "lat": 54.7604768, - "lon": -2.2265392, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7799355138, - "lat": 53.9508803, - "lon": -0.8491205, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7799398834, - "lat": 53.9912296, - "lon": -0.8324961, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7799423071, - "lat": 54.1880629, - "lon": -1.6071266, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HG4 50" - } -}, -{ - "type": "node", - "id": 7799442720, - "lat": 55.9523954, - "lon": -2.9876226, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH32 100", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7804004139, - "lat": 50.7537813, - "lon": -1.5484540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 201" - } -}, -{ - "type": "node", - "id": 7805271303, - "lat": 51.7469699, - "lon": 0.4395553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 405" - } -}, -{ - "type": "node", - "id": 7807085954, - "lat": 50.7537299, - "lon": -1.5340464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO41 139" - } -}, -{ - "type": "node", - "id": 7810688076, - "lat": 51.3634442, - "lon": 0.0817585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7810963429, - "lat": 57.4722390, - "lon": -4.1642388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "IV2 350", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7810973582, - "lat": 51.0829801, - "lon": -0.8195908, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-02-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU30 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7811070415, - "lat": 51.6684336, - "lon": -0.3977858, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-31", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD24 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7811070416, - "lat": 51.6883781, - "lon": -0.3840672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WD25 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7812354826, - "lat": 53.1938087, - "lon": -1.9966632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK17 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7812364897, - "lat": 53.0488277, - "lon": -1.8471882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ST10 376", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7813223033, - "lat": 51.5909395, - "lon": -0.1537401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N2 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7814068438, - "lat": 52.3984163, - "lon": -2.2690918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY11 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7814104355, - "lat": 54.5860130, - "lon": -0.9766915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7814116910, - "lat": 54.4794870, - "lon": -1.0482422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO21 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7814116911, - "lat": 54.4558462, - "lon": -1.0943051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TS9 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7814116912, - "lat": 54.4603507, - "lon": -1.0807157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TS9 62", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 7814116923, - "lat": 50.5520872, - "lon": -4.1453606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7815498667, - "lat": 53.4283701, - "lon": -1.2165761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42838 -1.21653", - "post_box:type": "pillar", - "ref": "S66 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7815966302, - "lat": 51.8738043, - "lon": 0.1348144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7815966303, - "lat": 51.8747098, - "lon": 0.1357464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7817016524, - "lat": 51.0750589, - "lon": -0.8034409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "WNE-LC", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "last_checked": "2020-08-11", - "note": "This postbox has the latest collection in this area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU30 999", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7817067731, - "lat": 51.1244627, - "lon": -0.0784090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "RH10 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7817076142, - "lat": 51.1170113, - "lon": -0.1071543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "RH10 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7817113811, - "lat": 51.1443836, - "lon": -0.0910838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "post_box:type": "lamp", - "ref": "RH10 36" - } -}, -{ - "type": "node", - "id": 7821212899, - "lat": 50.8050689, - "lon": -1.4726571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO42 105" - } -}, -{ - "type": "node", - "id": 7821212900, - "lat": 50.7773843, - "lon": -1.4367181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SO42 41" - } -}, -{ - "type": "node", - "id": 7821312048, - "lat": 51.1210893, - "lon": -0.8080013, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU35 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7821333984, - "lat": 51.2374906, - "lon": -0.8590886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7821353530, - "lat": 51.2538575, - "lon": -0.8487030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU52 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7821370154, - "lat": 51.2655149, - "lon": -0.8606552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU51 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7823310876, - "lat": 52.0535167, - "lon": -4.6250592, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7823763477, - "lat": 53.3369537, - "lon": -3.4069807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL19 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7823763480, - "lat": 53.3355711, - "lon": -3.4054581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "Two identical pillar boxes at this location, neighbouring box is LL19 44", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL19 441", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7823763481, - "lat": 53.3355653, - "lon": -3.4054499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "Two identical pillar boxes at this location, neighbouring box is LL19 441", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL19 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7823763483, - "lat": 53.3341978, - "lon": -3.4045151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL19 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7823926304, - "lat": 53.2357925, - "lon": -3.4304279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7823926305, - "lat": 53.2303144, - "lon": -3.4306592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7824454118, - "lat": 51.3019454, - "lon": -1.1866770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG26 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7825634496, - "lat": 50.4418281, - "lon": -3.5789044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 212D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7826250372, - "lat": 53.9934926, - "lon": -2.7943797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "LA2 179D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7826261310, - "lat": 55.7655452, - "lon": -2.0777522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TD15 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7826290751, - "lat": 56.1312628, - "lon": -3.7828549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "FK10 1" - } -}, -{ - "type": "node", - "id": 7826483532, - "lat": 52.1538951, - "lon": 1.3933365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP13 6302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483533, - "lat": 52.1264343, - "lon": 1.3495105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP13 6214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483535, - "lat": 52.1203066, - "lon": 1.3541454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "IP13 8238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483536, - "lat": 52.1207019, - "lon": 1.3449025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP13 6375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483537, - "lat": 52.1300049, - "lon": 1.3135716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "pillar", - "ref": "IP13 6272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483538, - "lat": 52.1466853, - "lon": 1.3129319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:00", - "post_box:type": "wall", - "ref": "IP13 6276", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483539, - "lat": 52.1442361, - "lon": 1.3533729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "IP13 6253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483540, - "lat": 52.1424526, - "lon": 1.3611232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "IP13 6266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483541, - "lat": 52.1521836, - "lon": 1.3577724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP13 6351D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483542, - "lat": 52.1550536, - "lon": 1.3612328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP13 6381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483543, - "lat": 52.1577396, - "lon": 1.3686320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP13 6255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483544, - "lat": 52.1777387, - "lon": 1.3786300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IP13 6380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483545, - "lat": 52.1447167, - "lon": 1.4166704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:45", - "post_box:type": "lamp", - "ref": "IP13 6367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7826483546, - "lat": 52.1512311, - "lon": 1.3980854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "IP13 6256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827711096, - "lat": 51.4097929, - "lon": -0.2923863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 23D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7827748719, - "lat": 51.4048790, - "lon": -0.3041612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7827748722, - "lat": 51.3988639, - "lon": -0.3029424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 4D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7827793717, - "lat": 50.7977344, - "lon": -0.0134110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-05-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 639D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7827793718, - "lat": 50.7944809, - "lon": -0.0137396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN10 642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827793719, - "lat": 50.7926827, - "lon": -0.0080768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN10 629", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7827793720, - "lat": 50.7955557, - "lon": -0.0061664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BN10 637D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796498, - "lat": 50.7920928, - "lon": -0.0025508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN10 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796499, - "lat": 50.7884096, - "lon": 0.0141567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 626D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796500, - "lat": 50.7905520, - "lon": 0.0206007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796544, - "lat": 50.8052915, - "lon": -0.0039911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN10 632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 7827796552, - "lat": 50.8007451, - "lon": 0.0020385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN10 631D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796553, - "lat": 50.7991876, - "lon": 0.0045390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN10 634D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796555, - "lat": 50.7974707, - "lon": 0.0002675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN10 635D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827796560, - "lat": 50.7956143, - "lon": 0.0010326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN10 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7827797655, - "lat": 51.7249245, - "lon": -0.0919108, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7827861582, - "lat": 50.8146823, - "lon": -0.0655358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN2 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7827861583, - "lat": 50.8127813, - "lon": -0.0639439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN2 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7827896088, - "lat": 50.8121940, - "lon": -0.0621481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Collection plate states Mo-Fr 16:30, Sa 11:15, but label overrides stating \"the last collection from this postbox will be made no earlier than 9am Monday to Friday and 7am on Saturday\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-30" - } -}, -{ - "type": "node", - "id": 7827911894, - "lat": 50.8620765, - "lon": -0.0873046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN1 346D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7828684590, - "lat": 50.9354723, - "lon": 0.5323427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7829002383, - "lat": 51.4117756, - "lon": 0.0036047, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7829012985, - "lat": 51.4173008, - "lon": 0.0017028, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7829217052, - "lat": 51.4636281, - "lon": -0.3313644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 277", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7830451003, - "lat": 53.3208716, - "lon": -3.0450735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "GVIR wall box type B made by W.T. Allen of London at the now-closed post office in Thornton Hough, Wirral", - "manufacturer": "W. T. Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH63 334", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Thornton Hough Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7830677514, - "lat": 53.0258195, - "lon": -2.0651697, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7830677541, - "lat": 53.0260129, - "lon": -2.0651166, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7830776631, - "lat": 50.9607848, - "lon": -2.2713670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT10 6", - "ref:GB:uprn": "10015473809", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7830788092, - "lat": 50.9523349, - "lon": -2.0034331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 70D", - "ref:GB:uprn": "10015479380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7830794623, - "lat": 50.9475432, - "lon": -2.2527539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP7 10", - "ref:GB:uprn": "10015358635", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7830801051, - "lat": 50.9431538, - "lon": -2.1977089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 145", - "ref:GB:uprn": "10015319057", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7831929433, - "lat": 53.0245658, - "lon": -2.0883434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "300542468775343", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-09-01" - } -}, -{ - "type": "node", - "id": 7833789101, - "lat": 51.6299387, - "lon": -1.2954948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-21", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX14 1206D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7833799826, - "lat": 51.6271458, - "lon": -1.2996462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX14 1048", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7834970534, - "lat": 51.4761192, - "lon": -1.6182129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 140" - } -}, -{ - "type": "node", - "id": 7835220905, - "lat": 50.7989824, - "lon": -3.9848882, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7835863130, - "lat": 54.6890949, - "lon": -1.2096770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "TS24 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7835863131, - "lat": 54.6773011, - "lon": -1.2089361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "TS25 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7835865582, - "lat": 54.1994696, - "lon": -2.1147446, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7836160972, - "lat": 53.8647374, - "lon": -0.6597578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7836162652, - "lat": 53.7985779, - "lon": -0.6437568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/7024177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "YO43 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7837019910, - "lat": 52.0431407, - "lon": -2.6031911, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HR1 102" - } -}, -{ - "type": "node", - "id": 7837786171, - "lat": 56.1611843, - "lon": -4.8962764, - "tags": { - "amenity": "post_box", - "fixme": "Exact location along the road incorrect", - "post_box:type": "wall", - "ref": "PA24 3" - } -}, -{ - "type": "node", - "id": 7837918638, - "lat": 51.5719097, - "lon": -2.2128639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SN16 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7837941013, - "lat": 51.5441828, - "lon": -2.2330840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN14 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7838167872, - "lat": 50.8102137, - "lon": -2.7469327, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT8 45", - "ref:GB:uprn": "10015468759", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7840676179, - "lat": 51.4360527, - "lon": -0.4556654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TW15 160D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7840863698, - "lat": 52.2861815, - "lon": 1.0612428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP23 7156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7840896160, - "lat": 52.2973901, - "lon": 0.9335268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2015", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7840934120, - "lat": 52.2826348, - "lon": 0.9982002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8083", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7840964447, - "lat": 52.3002684, - "lon": 0.9393632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7841050123, - "lat": 50.8457563, - "lon": -0.2362018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN42 680D" - } -}, -{ - "type": "node", - "id": 7841098699, - "lat": 50.8403548, - "lon": -0.2330364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "last_checked": "2022-03-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 679", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7841107019, - "lat": 51.5282550, - "lon": -0.4495697, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7841407706, - "lat": 50.9459789, - "lon": -2.5347533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT9 74D", - "ref:GB:uprn": "10015395954", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7841407707, - "lat": 50.9491405, - "lon": -2.5308177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT9 63D", - "ref:GB:uprn": "10015412225", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7841407709, - "lat": 50.9498466, - "lon": -2.5217047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT9 20", - "ref:GB:uprn": "10015448326", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7842249744, - "lat": 50.3286961, - "lon": -3.6004489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "401596317502351", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 353D", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2020-08-24", - "survey:date": "2020-08-27" - } -}, -{ - "type": "node", - "id": 7843937283, - "lat": 55.5964106, - "lon": -1.8066897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 08:30", - "mapillary": "219478214459568", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NE70 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-09-03" - } -}, -{ - "type": "node", - "id": 7844262414, - "lat": 51.6167178, - "lon": 0.0446306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7844695940, - "lat": 50.9545887, - "lon": -2.5743007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT9 1", - "ref:GB:uprn": "10015303997", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7844695953, - "lat": 50.9472875, - "lon": -2.5634310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 32", - "ref:GB:uprn": "10015445508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7844716989, - "lat": 50.9504635, - "lon": -2.6223180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA21 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7844716990, - "lat": 50.9468321, - "lon": -2.6203251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA21 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7845231531, - "lat": 51.6456167, - "lon": -0.3842593, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-12-08", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "WD19 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7845793654, - "lat": 53.3944284, - "lon": -3.1531802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box CH47 81 on The Ridgeway, Meols.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH47 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at The Ridgeway, Meols.jpg" - } -}, -{ - "type": "node", - "id": 7845907494, - "lat": 53.3992787, - "lon": -3.1671718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria Type C wall box CH47 121 at Ethelbert Road, Meols.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH47 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box at Ethelbert Road, Meols.jpg" - } -}, -{ - "type": "node", - "id": 7845972536, - "lat": 52.7125681, - "lon": 0.9491954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2023-02-16", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2029D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7845989841, - "lat": 53.4008309, - "lon": -3.1624797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier post box CH47 261 by Machan & Co. on Kings Avenue, Meols.", - "manufacturer": "Machan Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH47 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Kings Avenue, Meols.jpg" - } -}, -{ - "type": "node", - "id": 7846053007, - "lat": 53.3649724, - "lon": -3.1545904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Pole-mounted lamp box CH47 316 by Carron Company (Carronade) at the junction of Column Road and Grange Cross Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH47 316", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Lower Caldy" - } -}, -{ - "type": "node", - "id": 7846059649, - "lat": 53.4025135, - "lon": -3.1543529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "QEII Type B post box CH47 322 by Carron Company on Park Road, Meols.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Park Road, Meols.jpg" - } -}, -{ - "type": "node", - "id": 7846083028, - "lat": 53.3681852, - "lon": -3.1624234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier CH 47 393 on Grammar School Lane. Replaced a type C wall box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH47 393", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Grammar School Lane, West Kirby" - } -}, -{ - "type": "node", - "id": 7846396886, - "lat": 51.4981515, - "lon": -0.1615536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 61;SW1X 161" - } -}, -{ - "type": "node", - "id": 7846507157, - "lat": 53.3980696, - "lon": -3.1623670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type B post box CH47 474 by Carron Company with pouch box on Queens Avenue, Meols", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 474", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Queens Avenue, Meols.jpg" - } -}, -{ - "type": "node", - "id": 7846532617, - "lat": 53.3998504, - "lon": -3.1557529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "QEII Type C post box CH47 439 by Machan outside Meols Post Office, Station Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH47 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Meols Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7846575707, - "lat": 53.3705616, - "lon": -3.1576019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH47 569 at Covertside, Newton, Merseyside.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 569", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Covertside, Newton, Merseyside.jpg" - } -}, -{ - "type": "node", - "id": 7846777554, - "lat": 50.7500777, - "lon": -3.5062839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX4 436D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7846861276, - "lat": 53.3801788, - "lon": -3.1029510, - "tags": { - "amenity": "post_box", - "description": "Wall mounted box without regal cypher CH49 15 inside Sainsbury supermarket, Upton, Merseyside.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH49 15", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box CH49 15 in Sainsbury, Upton.jpg" - } -}, -{ - "type": "node", - "id": 7846882682, - "lat": 53.3836795, - "lon": -3.1080745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII pole-mounted lamp box CH49 53 on Whitelands Meadow, Greasby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Whitelands Meadow, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7846890338, - "lat": 53.3758528, - "lon": -3.1277381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "King George V Type B post box CH49 57 on Greasby Road at Hillcrest Drive.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Hillcrest Drive, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7846901278, - "lat": 53.3661288, - "lon": -3.1229454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "description": "Edward VII wall-mounted Type C post box CH49 176 at Irby Mill roundabout.", - "manufacturer": "W.T. Allen & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH49 176", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Irby Mill.jpg" - } -}, -{ - "type": "node", - "id": 7846902064, - "lat": 53.3803924, - "lon": -3.1148356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QEII Type C post box CH49 64 at Wood Lane, Greasby", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH49 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Wood Lane, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7846905659, - "lat": 53.3763288, - "lon": -3.0945232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type B wall-mounted post box CH49 104 at the corner of Atherton Drive and Woodland Road, Woodchurch.", - "manufacturer": "W.T. Allen & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH49 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Glebe Park, Woodchurch.jpg" - } -}, -{ - "type": "node", - "id": 7846941403, - "lat": 53.3873520, - "lon": -3.0963976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V Type B post box CH49 180 by Carron Company at the crossroads of South Drive, West Drive, Heath Drive and Church Road, Upton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on South Drive, Upton, Merseyside.jpg" - } -}, -{ - "type": "node", - "id": 7847002213, - "lat": 53.3844644, - "lon": -3.1034546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "George VI Type B post box CH49 243 with pouch box on Welton Avenue, Upton, Merseyside", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 243", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Welton Avenue, Upton.jpg" - } -}, -{ - "type": "node", - "id": 7847047439, - "lat": 53.3695525, - "lon": -3.0883482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "George VI post box CH49 380 by Carron Company at the corner of Common Field Road and Church Lane, Woodchurch, Birkenhead.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 380", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Arrowe Park.jpg" - } -}, -{ - "type": "node", - "id": 7847250988, - "lat": 53.3949088, - "lon": -3.0950607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box CH49 388 on Norwich Drive, Upton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH49 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Norwich Drive, Upton.jpg" - } -}, -{ - "type": "node", - "id": 7847262273, - "lat": 55.3096619, - "lon": -1.9119454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE65 245D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7847276947, - "lat": 53.3843507, - "lon": -3.1103184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI Type B post box CH49 457 on the corner of Cortsway and Kirkway, Greasby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 457", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:Post box on Cortsway" - } -}, -{ - "type": "node", - "id": 7847285407, - "lat": 53.3704868, - "lon": -3.0794194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V post box CH49 397 on the corner of Ackers Road and Common Field Road in Woodchurch, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 397", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Ackers Road, Woodchurch.jpg" - } -}, -{ - "type": "node", - "id": 7847291583, - "lat": 53.3770988, - "lon": -3.1206258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "QEII Type K post box with pouch box outside Greasby Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH49 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Greasby Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7847314460, - "lat": 53.3803724, - "lon": -3.1212313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier CH49 478 by Carron Company on Hambledon Road, Greasby. Formerly listed as Bromsgrove Road and has been moved", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Hambledon Drive, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7847407705, - "lat": 53.3748522, - "lon": -3.0802371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI post box CH49 523 on New Hey Road, Woodchurch at its junction with Ganney's Meadow Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 523", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on New Hey Road, Woodchurch.jpg" - } -}, -{ - "type": "node", - "id": 7847422959, - "lat": 53.3752588, - "lon": -3.1122372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "George V Type B post box CH49 488 at Caulfield Drive, Greasby.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 488", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Caulfield Drive, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7847430616, - "lat": 53.3763351, - "lon": -3.0852739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QE II post box CH49 527 outside Woodchurch Post Office on Hoole Road, although the Post Office is now closed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 527", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Woodchurch Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7847431491, - "lat": 57.7019104, - "lon": -3.4580783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV30 23D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7847454849, - "lat": 53.3743748, - "lon": -3.1189075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier post box CH49 546 on Howell Drive, Greasby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Howell Drive, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7847457276, - "lat": 53.3777136, - "lon": -3.1078557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH49 577 on Appleton Drive, Greasby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 557", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Appleton Drive, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7847491285, - "lat": 53.3791160, - "lon": -3.0981553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QEII Type B post box CH49 550 by Carron Company at Upton LDO, near junction of Arrowe Park Road and Leeswood Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Upton LDO.jpg" - } -}, -{ - "type": "node", - "id": 7847499028, - "lat": 53.3722584, - "lon": -3.1238920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII lamp box pier post box CH49 511 at Danefield Road, Greasby", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Danefield Road, Greasby.jpg" - } -}, -{ - "type": "node", - "id": 7847506191, - "lat": 53.3736916, - "lon": -3.0928476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "QEII post box CH49 561 by Carron Company on Poll Hill (Pool Lane) opposite Sherry Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Poll Hill, Woodchurch.jpg" - } -}, -{ - "type": "node", - "id": 7847682337, - "lat": 51.1978388, - "lon": -2.1820321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7847682338, - "lat": 51.1966432, - "lon": -2.1834174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7847693001, - "lat": 51.2004099, - "lon": -2.1869503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "old_ref": "BA12 15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7847697455, - "lat": 51.1962346, - "lon": -2.1900399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-08-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7848520083, - "lat": 53.3807044, - "lon": -3.0866450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH49 582 by Carron Company at the junction of Carr Bridge Road and New Hey Road, Woodchurch, Merseyside.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 582", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Carr Bridge Road.jpg" - } -}, -{ - "type": "node", - "id": 7848534164, - "lat": 53.3795565, - "lon": -3.0913572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box CH49 583 by Carron Company on Leeswood Road, Woodchurch, Merseyside.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 583", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Leeswood Road.jpg" - } -}, -{ - "type": "node", - "id": 7848547994, - "lat": 53.3777868, - "lon": -3.0843786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII post box CH49 589 at Ferny Brow Road at the junction of New Hey Road, Woodchurch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 589", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Ferny Brow Road.jpg" - } -}, -{ - "type": "node", - "id": 7848587670, - "lat": 53.3701116, - "lon": -3.0767999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QEII Type PB58 post box at the entrance to Asda, Woodchurch Road, Birkenhead.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "indoor_pillar", - "ref": "CH49 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Asda, Woodchurch.jpg" - } -}, -{ - "type": "node", - "id": 7849356937, - "lat": 54.9974342, - "lon": -1.6649092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7850839636, - "lat": 53.3905138, - "lon": -3.1735512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH47 584 by Carron Company on Carr Lane, junction of Carham Road, Hoylake.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH47 584", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Carr Lane, Hoylake.jpg" - } -}, -{ - "type": "node", - "id": 7850856633, - "lat": 50.9615555, - "lon": -2.6656142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA21 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7850910089, - "lat": 50.7248035, - "lon": -3.4876145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7851046814, - "lat": 50.9845033, - "lon": -2.7663204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA12 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7851046815, - "lat": 50.9829228, - "lon": -2.7499683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA12 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7851311398, - "lat": 51.0190762, - "lon": -2.8482855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7851351246, - "lat": 51.0059798, - "lon": -2.9243059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA3 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7851351247, - "lat": 51.0156591, - "lon": -2.8944863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA10 386", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7851355564, - "lat": 51.0004454, - "lon": -3.0123018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA3 530", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7851355565, - "lat": 50.9964177, - "lon": -2.9897296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "215647367750099", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA3 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 7851355566, - "lat": 51.0012193, - "lon": -2.9779038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2728096210665252", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA3 440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 7851395805, - "lat": 50.3146799, - "lon": -5.2057058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR5 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Bing;image;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7851419485, - "lat": 51.6168035, - "lon": -0.1809431, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 7852912546, - "lat": 51.0067851, - "lon": -3.0425728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7853658181, - "lat": 53.3713402, - "lon": -3.1531382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QE II post box CH48 215 and pouch box by Carron Company at Newton Post Office, Newton Cross Lane, Newton, Wirral.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH48 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Newton Post Office, Merseyside" - } -}, -{ - "type": "node", - "id": 7853954918, - "lat": 51.0224495, - "lon": -3.0681179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA1 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7853954919, - "lat": 51.0165208, - "lon": -3.0696167, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA1 602D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854263325, - "lat": 51.1693560, - "lon": -2.9719539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854263326, - "lat": 51.1668661, - "lon": -2.9861894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA6 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854375020, - "lat": 51.2049433, - "lon": -2.9961509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA9 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854375026, - "lat": 51.2033241, - "lon": -2.9868597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA9 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854415994, - "lat": 51.2162550, - "lon": -2.9823603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA9 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854919982, - "lat": 51.2520023, - "lon": -2.9984146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA8 150", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7854919983, - "lat": 51.2458647, - "lon": -2.9920819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA8 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854919984, - "lat": 51.2453307, - "lon": -2.9828283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA8 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854964463, - "lat": 52.6324849, - "lon": -0.4058552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE9 52" - } -}, -{ - "type": "node", - "id": 7854979786, - "lat": 51.2372531, - "lon": -2.9867343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA8 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854979787, - "lat": 51.2315422, - "lon": -2.9913551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA8 198D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7854986439, - "lat": 51.3254489, - "lon": -2.9227385, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS24 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7854986440, - "lat": 51.3244434, - "lon": -2.9330345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BS24 1112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7854990579, - "lat": 51.4290001, - "lon": -2.7787860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS48 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7855952566, - "lat": 51.6207328, - "lon": 0.0826304, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7856694296, - "lat": 56.0602113, - "lon": -5.4856846, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7856981669, - "lat": 55.7393364, - "lon": -4.2042485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G75 1236", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7857267550, - "lat": 53.3890536, - "lon": -3.1245777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR lamp box CH46 17 by Machan of Scotland next to the Saughall pub in Saughall Massie, Wirral.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH46 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Saughall Massie.jpg" - } -}, -{ - "type": "node", - "id": 7857275972, - "lat": 53.3878196, - "lon": -3.1135539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH49 16 by Carron Compnay formerly at Overchurch Post Office, which is no more.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Overchurch Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7857312053, - "lat": 53.3882123, - "lon": -3.1196929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box CH49 576 by Lion Foundry of Kirkintilloch on Saughall Massie Road opposite Kingfisher Way.", - "manufacturer": "Lion Foundry, Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH49 576", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Saughall Massie Road.jpg" - } -}, -{ - "type": "node", - "id": 7857334061, - "lat": 53.3871273, - "lon": -3.1054626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box CH49 532 on Kirkway, Upton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH49 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Kirkway, Upton.jpg" - } -}, -{ - "type": "node", - "id": 7857335519, - "lat": 53.3911424, - "lon": -3.1041607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH49 315 on Moreton Road at Doncaster Drive, Upton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Moreton Road, Upton.jpg" - } -}, -{ - "type": "node", - "id": 7857392041, - "lat": 53.3890657, - "lon": -3.1081879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box CH49 326 on Royden Road, Overchurch, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH49 326", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Royden Road, Overchurch.jpg" - } -}, -{ - "type": "node", - "id": 7857553297, - "lat": 51.4385697, - "lon": -2.8584580, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-04", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "post_box:type": "wall", - "ref": "BS21 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7857691020, - "lat": 50.7339487, - "lon": -1.9516390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 45", - "ref:GB:uprn": "10015803439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857691021, - "lat": 50.7380381, - "lon": -1.9448007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 181D", - "ref:GB:uprn": "10015319665", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7857691022, - "lat": 50.7393863, - "lon": -1.9413742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 127D", - "ref:GB:uprn": "10015807038", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857691023, - "lat": 50.7427946, - "lon": -1.9415525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 218D", - "ref:GB:uprn": "10015807933", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7857691024, - "lat": 50.7413841, - "lon": -1.9343635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 165D", - "ref:GB:uprn": "10015376493", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7857691025, - "lat": 50.7383402, - "lon": -1.9333805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH12 53D", - "ref:GB:uprn": "10015453800", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857691026, - "lat": 50.7355554, - "lon": -1.9384378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 158", - "ref:GB:uprn": "10015326243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857691027, - "lat": 50.7337271, - "lon": -1.9373897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 44D", - "ref:GB:uprn": "10015806466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857691028, - "lat": 50.7289842, - "lon": -1.9432936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 30", - "ref:GB:uprn": "10015458941", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857691029, - "lat": 50.7289425, - "lon": -1.9401833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH14 49D", - "ref:GB:uprn": "10015354636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711988, - "lat": 50.7342593, - "lon": -1.9253305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 261D", - "ref:GB:uprn": "10015439987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711990, - "lat": 50.7397822, - "lon": -1.9196221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711992, - "lat": 50.7404204, - "lon": -1.9277083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 227D", - "ref:GB:uprn": "10015342886", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711993, - "lat": 50.7443149, - "lon": -1.9208271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711994, - "lat": 50.7415526, - "lon": -1.9134396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711995, - "lat": 50.7524704, - "lon": -1.9346318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711996, - "lat": 50.7488175, - "lon": -1.9370545, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711997, - "lat": 50.7487042, - "lon": -1.9318872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711998, - "lat": 50.7460682, - "lon": -1.9353734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7857711999, - "lat": 50.7459315, - "lon": -1.9424631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 163", - "ref:GB:uprn": "10015356540", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7857712000, - "lat": 50.7485884, - "lon": -1.9457334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH12 7296;BH12 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7859431271, - "lat": 52.7489213, - "lon": 0.4042291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE30 10" - } -}, -{ - "type": "node", - "id": 7859431272, - "lat": 52.7467209, - "lon": 0.4022349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "PE30 14" - } -}, -{ - "type": "node", - "id": 7859431273, - "lat": 52.7427038, - "lon": 0.3956990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "PE30 15" - } -}, -{ - "type": "node", - "id": 7859595340, - "lat": 50.7379379, - "lon": -1.9164591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH12 400", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7859595717, - "lat": 50.7765991, - "lon": -2.1466953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7859595721, - "lat": 50.7785343, - "lon": -2.1345730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 125", - "ref:GB:uprn": "10015387973", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7859628216, - "lat": 50.8150096, - "lon": -2.2310142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 42D", - "ref:GB:uprn": "10015458673", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7859628242, - "lat": 50.8022742, - "lon": -2.2328223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT11 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7859628243, - "lat": 50.7998009, - "lon": -2.2332233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT11 58", - "ref:GB:uprn": "10013293281", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7860293822, - "lat": 51.1388076, - "lon": 0.3931679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860293823, - "lat": 51.1315780, - "lon": 0.4217963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860293824, - "lat": 51.1376803, - "lon": 0.3691002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860293825, - "lat": 51.1328394, - "lon": 0.4014490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "TN12 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860293826, - "lat": 51.1344108, - "lon": 0.3599505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "post_box:type": "lamp", - "ref": "TN12 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860371297, - "lat": 51.1460406, - "lon": 0.4357659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860371299, - "lat": 51.1606158, - "lon": 0.4466466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN12 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860371303, - "lat": 51.1554981, - "lon": 0.4410900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860371304, - "lat": 51.1387683, - "lon": 0.4289375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "TN12 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7860499104, - "lat": 51.1874472, - "lon": 0.4418710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN12 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860499106, - "lat": 51.1877063, - "lon": 0.4550467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "wall", - "ref": "TN12 81", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7860499107, - "lat": 51.1846682, - "lon": 0.4122233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860499108, - "lat": 51.1955721, - "lon": 0.4534986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "wall", - "ref": "TN12 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860499110, - "lat": 51.1906443, - "lon": 0.4182285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "wall", - "ref": "TN12 30" - } -}, -{ - "type": "node", - "id": 7860499112, - "lat": 51.1808898, - "lon": 0.4543587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860499113, - "lat": 51.1810436, - "lon": 0.4877034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "TN12 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7860631959, - "lat": 53.3993908, - "lon": -3.1162589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "King George V Type B post box CH46 90 on Hoylake Road, Moreton, near Francis Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Francis Avenue, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7860677100, - "lat": 53.4170375, - "lon": -3.1028273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George VI Type B post box CH46 95 at Wakefield Drive, Leasowe.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 95", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Wakefield Drive, Leasowe.jpg" - } -}, -{ - "type": "node", - "id": 7860754554, - "lat": 51.1753637, - "lon": 0.4928597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 32D" - } -}, -{ - "type": "node", - "id": 7860816489, - "lat": 53.4151752, - "lon": -3.1142539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QEII Type K post box CH46 147 by Carron Company at Mereheath, Moreton", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH46 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Mereheath, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7861004799, - "lat": 53.4187627, - "lon": -3.0923017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King Edward VII Type B post box CH46 259 at Leasoweside, Leasowe.", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 259", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Leasoweside.jpg" - } -}, -{ - "type": "node", - "id": 7861011576, - "lat": 53.3971636, - "lon": -3.1098066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type B post box CH46 416 by Carron Company on Rosslyn Drive at junction of Upton Road, Moreton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 416", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Rosslyn Drive, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7861084225, - "lat": 53.4019244, - "lon": -3.1054061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "King George V Type B post box CH46 427 at the junction of Hoylake Road and Chapelhill Road, Moreton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 427", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Chapelhill Road, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7861143277, - "lat": 50.8680652, - "lon": -2.2565082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT11 60D", - "ref:GB:uprn": "10015405842", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7861143280, - "lat": 50.8394959, - "lon": -2.2571848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2021-09-14", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DT11 59D", - "ref:GB:uprn": "10015282814", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7861143281, - "lat": 50.8269196, - "lon": -2.2313204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 36D", - "ref:GB:uprn": "10015269284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7861283659, - "lat": 51.1468820, - "lon": 0.4601453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "TN12 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7861283660, - "lat": 51.1406023, - "lon": 0.4510453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7861283661, - "lat": 51.1376502, - "lon": 0.4341133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 61D" - } -}, -{ - "type": "node", - "id": 7861283662, - "lat": 51.1312755, - "lon": 0.4471014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "TN12 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7862043434, - "lat": 51.8417007, - "lon": -2.2264414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "mapillary": "810544136242932", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL4 30", - "source": "survey", - "survey:date": "2020-08-01" - } -}, -{ - "type": "node", - "id": 7862603718, - "lat": 52.2748686, - "lon": 1.0246387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862604901, - "lat": 52.2682181, - "lon": 1.0217419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP14 8007D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862622815, - "lat": 51.5195795, - "lon": -0.3226119, - "tags": { - "amenity": "post_box", - "ref": "W13 33" - } -}, -{ - "type": "node", - "id": 7862622820, - "lat": 51.5217036, - "lon": -0.3203685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "W13 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7862649756, - "lat": 52.2649771, - "lon": 1.0148326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP14 8004", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7862671615, - "lat": 52.2603021, - "lon": 0.9886401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862752808, - "lat": 52.2707081, - "lon": 0.9767492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8095", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862773476, - "lat": 50.8865708, - "lon": -2.2983735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 165", - "ref:GB:uprn": "10015432193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862821990, - "lat": 50.8718333, - "lon": -2.3034972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 167", - "ref:GB:uprn": "10015375188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862821991, - "lat": 50.8748576, - "lon": -2.3072831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 149", - "ref:GB:uprn": "10015465827", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7862822001, - "lat": 50.8806777, - "lon": -2.2923745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 19", - "ref:GB:uprn": "10015296116", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7862921426, - "lat": 50.8795786, - "lon": -2.3614436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 18", - "ref:GB:uprn": "10015455821", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862921428, - "lat": 50.8974133, - "lon": -2.3308758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862983332, - "lat": 50.9221766, - "lon": -2.3520760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 7D", - "ref:GB:uprn": "10015410904", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7862983345, - "lat": 50.9222240, - "lon": -2.3632273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7862983346, - "lat": 50.9320693, - "lon": -2.4063599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 88D", - "ref:GB:uprn": "10015341900", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7862983357, - "lat": 50.9368454, - "lon": -2.4074864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 136", - "ref:GB:uprn": "10015378928", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7863025520, - "lat": 50.9122172, - "lon": -2.3949424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 10:45; Sa 11:00", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 47", - "ref:GB:uprn": "10015362350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7863025563, - "lat": 50.9303155, - "lon": -2.3868862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT10 171", - "ref:GB:uprn": "10015279420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7863025579, - "lat": 50.8949836, - "lon": -2.3929576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT10 51", - "ref:GB:uprn": "10015770200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7863072977, - "lat": 52.0076334, - "lon": -2.2280229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL20 58", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7863121204, - "lat": 52.0250547, - "lon": -2.2394038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL20 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7864010072, - "lat": 52.2754033, - "lon": 0.9459722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP31 2138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7864066981, - "lat": 52.2761967, - "lon": 0.9280906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2012", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7864142210, - "lat": 52.2839862, - "lon": 0.9168731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP31 2126", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7864295866, - "lat": 51.5284539, - "lon": -0.1431980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-03-20", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 17" - } -}, -{ - "type": "node", - "id": 7864589926, - "lat": 52.9649075, - "lon": 0.6368476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 08:00,15:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HST129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7865840869, - "lat": 52.5399185, - "lon": -2.1203624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Ref not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7865840871, - "lat": 52.5304055, - "lon": -2.1041680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY1 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7865884257, - "lat": 52.5364622, - "lon": -2.1117376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 7865884260, - "lat": 52.5440071, - "lon": -2.1227814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY3 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7865884261, - "lat": 52.5417693, - "lon": -2.1301976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY3 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7866045011, - "lat": 53.4113092, - "lon": -3.1028161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "GR Type B post box CH46 448 at the junction of Reeds Lane and Birket Avenue. The post office is now inside a convenience store.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 448", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Leasowe Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7866084796, - "lat": 53.4142924, - "lon": -3.0980731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR Type B post box CH46 506 at the junction of Twickenham Drive and Castleway North, Leasowe.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 506", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Twickenham Drive, Leasowe.jpg" - } -}, -{ - "type": "node", - "id": 7866102298, - "lat": 53.4164853, - "lon": -3.0947084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH46 585 by Machan of Scotland on Hudson Road, Leasowe.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH46 585", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Hudson Road, Leasowe.jpg" - } -}, -{ - "type": "node", - "id": 7866133907, - "lat": 53.4151784, - "lon": -3.0906376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "description": "EIIR Type B post box CH46 554 by Carron Company at the front of the former Oyster Catcher pub. The post office is long gone.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 554", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Twickenham Drive Post Office, Leasowe.jpg" - } -}, -{ - "type": "node", - "id": 7866145257, - "lat": 53.4148132, - "lon": -3.0861670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH46 555 by Carron Company on Grant Road, Leasowe.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Grant Road, Leasowe.jpg" - } -}, -{ - "type": "node", - "id": 7866218495, - "lat": 53.4040003, - "lon": -3.1207003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH46 455 at the site of former post office, now a beauty salon. Replaced a Type B box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH46 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Town Meadow Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7866237747, - "lat": 53.4017684, - "lon": -3.1343276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR lamp box pier CH46 346 by Lion Foundry of Kirkintilloch on Millhouse Lane at Tanworth Grove.", - "manufacturer": "Lion Foundry, Kirkintilloch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH46 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Tanworth Grove, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7866274133, - "lat": 53.4032616, - "lon": -3.1275063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR Type B post box CH46 524 by Carron Company on Bermuda Road, Moreton, at junction of Town Meadow Lane.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 524", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Bermuda Road at Town Meadow Lane.jpg" - } -}, -{ - "type": "node", - "id": 7866505665, - "lat": 52.5405283, - "lon": -2.1467921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY3 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7867322166, - "lat": 53.3978876, - "lon": -3.1275248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box CH46 98 on Millhouse Lane at corner of Garrick Avenue, Moreton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Millhouse Lane, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7867388999, - "lat": 53.3946066, - "lon": -3.1299081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box CH46 197 by Carron Company on Garden Hey Road, Moreton. RM list this as Saughall Massie Road, but that's quite a distance away.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 197", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Garden Hey Road, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7867606236, - "lat": 53.3938540, - "lon": -3.1250205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box CH46 438 by Carron Company on Saughall Road, Moreton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 438", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Saughall Road, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7867614275, - "lat": 53.5735119, - "lon": -1.4188618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S72 75D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7867684575, - "lat": 53.3941356, - "lon": -3.1195271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box CH46 473 by Abbot Engineering, Paisley on Childwall Avenue, Moreton.", - "manufacturer": "Abbot Engineering, Paisley", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH46 473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Childwall Avenue, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7867761186, - "lat": 53.3939884, - "lon": -3.1137522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "GVIR type B post box CH46 177 by Carron Company on the corner of Borrowdale Road and Raby Road, Moreton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 177", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Borrowdale Road, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7867930157, - "lat": 53.3988721, - "lon": -3.1059716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR lamp box pier CH46 578 on Sandbrook Lane, Moreton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH46 578", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Sandbrook Lane, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7868279687, - "lat": 53.3979563, - "lon": -3.1001131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR Type B post box CH46 603 next to former Chapel Hill Post Office, Moreton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 603", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Chapel Hill Post Office, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7868329121, - "lat": 53.4008332, - "lon": -3.0972695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR Type B post box CH46 598 by Carron Company on Stavordale Road, Moreton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 598", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stavordale Road, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7868784318, - "lat": 53.4036447, - "lon": -3.1011503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR Type B post box CH46 513 outside former post office on Hoylake Road, Moreton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 513", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Yew Tree Post Office, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7868794147, - "lat": 53.4050792, - "lon": -3.0988246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR type B post box CH46 58 on Reeds Lane at junction with Avondale Avenue, Moreton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Reeds Lane, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7868846153, - "lat": 53.4057480, - "lon": -3.1039712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box CH46 211 by Carron Company on Danger Lane, Moreton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH46 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Danger Lane, Moreton.jpg" - } -}, -{ - "type": "node", - "id": 7869130708, - "lat": 53.4613553, - "lon": -1.9948388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "758246288587947", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-09-08" - } -}, -{ - "type": "node", - "id": 7869659599, - "lat": 53.7031923, - "lon": -1.8631791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7869932771, - "lat": 52.5808809, - "lon": -0.2478596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-04", - "ref": "PE1 22D" - } -}, -{ - "type": "node", - "id": 7870075317, - "lat": 50.3707060, - "lon": -4.8059110, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7870468500, - "lat": 51.1890633, - "lon": -0.4138578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH5 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7871045509, - "lat": 53.7539954, - "lon": -2.7316173, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7872621608, - "lat": 53.4589580, - "lon": -1.9869091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7873121904, - "lat": 52.5838237, - "lon": -0.2430393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 102D" - } -}, -{ - "type": "node", - "id": 7874013095, - "lat": 51.9942231, - "lon": -1.9493249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL54 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7875397657, - "lat": 51.6555899, - "lon": -0.5224296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WD3 330D" - } -}, -{ - "type": "node", - "id": 7875397658, - "lat": 51.6571394, - "lon": -0.5253966, - "tags": { - "amenity": "post_box", - "ref": "WD3 243D" - } -}, -{ - "type": "node", - "id": 7876290911, - "lat": 52.3017625, - "lon": 1.3661541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP13 6292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7877545464, - "lat": 53.3322778, - "lon": -3.0972681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box CH60 216 on Pensby Road, Heswall near Grange Mount.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 216", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Pensby Road near Grange Mount.jpg" - } -}, -{ - "type": "node", - "id": 7877789172, - "lat": 53.3287713, - "lon": -3.1028112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "description": "EIIR Type PB58 fibreglass post box CH60 231 in Tesco supermarket, Heswall, Merseyside. It's tucked away in a corner.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH60 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Tesco, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7877791684, - "lat": 51.8545062, - "lon": -1.7115652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7877800430, - "lat": 53.3197253, - "lon": -3.1046910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH60 228 at the bottom of Station Road, Heswall., where Davenport Road and Riverbank Road meet", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at former Heswall Station.jpg" - } -}, -{ - "type": "node", - "id": 7877812756, - "lat": 51.8788100, - "lon": -1.7486192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL54 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7877817098, - "lat": 53.3212656, - "lon": -3.0924871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH60 232 by Carron Company, Stirlingshire on Sandstone Way, Dawstone Road, Heswall. Listed by RM as Beechfield, but that's some distance away.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Sandstone Walk, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7877852365, - "lat": 53.3300802, - "lon": -3.1014397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Edward VII wall mounted Type C post box CH60 328 on Tower Road South, Heswall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "CH60 328", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Poll Hill, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878027756, - "lat": 53.3189540, - "lon": -3.0834973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "GVIR Type B post box CH60 417 by Carron Company on Oaksway at junction of Gayton Lane, with large pouch box.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH60 417", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Gayton Lane.jpg" - } -}, -{ - "type": "node", - "id": 7878040912, - "lat": 53.3225075, - "lon": -3.1021725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "The post office has closed but this EIIR Type A box CH60 384 remains at the front of a hair salon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 384", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Lower Heswall Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7878043477, - "lat": 53.3295582, - "lon": -3.0873420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH60 402 on Milner Road, Heswall. Has been moved.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 402", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Milner Road, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878142363, - "lat": 53.3251954, - "lon": -3.0908793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR Type A post box CH60 471 opposite the church on Boundary Lane, Heswall. Replaced a Penfold.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 471", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Boundary Lane, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878173111, - "lat": 53.8231642, - "lon": -1.8605982, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7878186521, - "lat": 53.3326151, - "lon": -3.0934624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR pole mounted lamp box CH60 514 on Shrewsbury Road near Heather Road, Heswall, Merseyside", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH60 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Heather Road, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878186525, - "lat": 53.3331948, - "lon": -3.1070956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box CH60 548 at the corner of Telegraph Road and Quarry Road East, Heswall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH60 548", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Quarry Hill, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878190745, - "lat": 53.3276873, - "lon": -3.0861243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box (with large aperture) CH60 566 by Carron Company with pouch box at the junction of Border Road and Tudor Way.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH60 566", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Border Road, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878215769, - "lat": 53.3331504, - "lon": -3.0771907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QEII Type B post box CH60 545 on Whitehouse Lane, Heswall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH60 545", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Whitehouse Lane, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7878734617, - "lat": 50.2602438, - "lon": -4.9154685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7878734664, - "lat": 50.2217879, - "lon": -4.9418423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7878734695, - "lat": 50.1673448, - "lon": -5.0159991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "This post box is a lamp box that's been embedded into the wall of a building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR2 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7879893198, - "lat": 50.2644405, - "lon": -4.9449473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR2 157D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7879909042, - "lat": 50.2327169, - "lon": -4.8998594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 7879952184, - "lat": 51.5976413, - "lon": -0.1418080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N10 16D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7879981901, - "lat": 51.5948871, - "lon": -0.1459762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 2D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7880539680, - "lat": 53.3582967, - "lon": -3.0888288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box CH61 186 at the junction of Arrowe Park Road, Barnston Road and Thingwall Road East.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Thingwall Corner.jpg" - } -}, -{ - "type": "node", - "id": 7880541164, - "lat": 51.5827095, - "lon": -1.6002341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN6 391", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7880559269, - "lat": 51.4068594, - "lon": -1.3351973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "206258275138583", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG14 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-29" - } -}, -{ - "type": "node", - "id": 7880582226, - "lat": 53.3439507, - "lon": -3.0941781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "King George V Type B post box CH61 222 by Carron Company outside Pensby post office on Pensby Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH61 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Pensby Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7880583142, - "lat": 53.3376271, - "lon": -3.1030772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR pole-mounted lamp box CH41 229 near Pensall Drive (Royal Mail call it Quarry Road) on Irby Road, Heswall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Pensall Drive, Heswall.jpg" - } -}, -{ - "type": "node", - "id": 7880603742, - "lat": 53.3461020, - "lon": -3.0830564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box CH61 398 attached to a telephone pole at Dale Brow, Barnston Road, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Dale Brow, Barnston.jpg" - } -}, -{ - "type": "node", - "id": 7880665872, - "lat": 53.3419537, - "lon": -3.1100586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "QEII Type A post box CH61 515 by Carron Company outside Irby Road post office, Pensby.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Irby Road post office, Pensby.jpg" - } -}, -{ - "type": "node", - "id": 7880684230, - "lat": 53.3481840, - "lon": -3.1164507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type B post box CH61 487 on Irby Road at Porto Hey Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH61 487", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Porto Hey Road.jpg" - } -}, -{ - "type": "node", - "id": 7880702221, - "lat": 51.4615422, - "lon": -3.4464253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF71 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7880702222, - "lat": 51.4630529, - "lon": -3.4528895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7880715690, - "lat": 51.4519786, - "lon": -3.6098349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7880730274, - "lat": 53.3535768, - "lon": -3.0928352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "EIIR Type A post box CH61 552 at Thingwall post office.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 552", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Thingwall post office.jpg" - } -}, -{ - "type": "node", - "id": 7880733936, - "lat": 53.3485296, - "lon": -3.1024688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type A post box CH61 568 by Carron Company at No. 71 Ridgewood Drive, Pensby, Wirral, although RM list it as Ridgeway Drive.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 568", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Ridgewood Drive, Pensby.jpg" - } -}, -{ - "type": "node", - "id": 7880739809, - "lat": 53.3434514, - "lon": -3.1058133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box CH61 528 by Carron Company at Barleyfields, Pensby, Wirral", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Barleyfields, Pensby.jpg" - } -}, -{ - "type": "node", - "id": 7880745724, - "lat": 53.3398688, - "lon": -3.0981089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH61 525 by Carron Company on Kylemore Drive, Pensby, near Hillfield Drive.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH61 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Kylemore Drive.jpg" - } -}, -{ - "type": "node", - "id": 7880886315, - "lat": 53.3455340, - "lon": -3.1026844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type A post box CH61 570 by Carron Company at Fishers Lane, Pensby, Wirral.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 570", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Fishers Lane, Pensby.jpg" - } -}, -{ - "type": "node", - "id": 7880900018, - "lat": 53.3547794, - "lon": -3.0882139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Elizabeth II Type A post box CH61 594 at the corner of Howards Road and Colemere Drive, Thingwall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 594", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Howards Road, Thingwall.jpg" - } -}, -{ - "type": "node", - "id": 7880906692, - "lat": 53.3476819, - "lon": -3.0948605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR type A post box CH61 593 in front of the shops at the junction of Giils Lane and Pensby Road, Pensby, Wirral.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH61 593", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Gills Lane, Pensby.jpg" - } -}, -{ - "type": "node", - "id": 7881378608, - "lat": 54.7472637, - "lon": -1.4084327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7881852972, - "lat": 54.8980606, - "lon": -1.5769262, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-12", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH3 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7881852974, - "lat": 54.5693736, - "lon": -1.1989655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS3 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7881857394, - "lat": 54.5944360, - "lon": -1.2916268, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7881985269, - "lat": 53.6325469, - "lon": -1.6965481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7881998166, - "lat": 51.3271415, - "lon": -1.2423992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG20 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7881998167, - "lat": 51.3288188, - "lon": -1.2502058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG20 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7882042405, - "lat": 51.2209750, - "lon": -1.2242594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG25 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7884817146, - "lat": 51.2003357, - "lon": -0.6039567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU7 112", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7884917591, - "lat": 51.2365082, - "lon": -0.5456430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU1 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885047433, - "lat": 51.3448991, - "lon": -0.6713355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU18 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885076796, - "lat": 51.3398090, - "lon": -0.7432622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU15 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885076797, - "lat": 51.3446859, - "lon": -0.7425032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU15 66D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7885076798, - "lat": 51.3371439, - "lon": -0.7006198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU18 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7885098007, - "lat": 51.3188858, - "lon": -0.7468350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885098008, - "lat": 51.3194101, - "lon": -0.7502782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU15 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885098009, - "lat": 51.3212557, - "lon": -0.7525957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU15 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7885098010, - "lat": 51.3261300, - "lon": -0.7545859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU15 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885098011, - "lat": 51.3284932, - "lon": -0.7518634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU15 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7885098012, - "lat": 51.3310633, - "lon": -0.7476752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU15 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7888225966, - "lat": 52.7528835, - "lon": -1.4872057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "LE65 649D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7888323085, - "lat": 54.5496842, - "lon": -1.9049863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7891492360, - "lat": 51.2026050, - "lon": -0.6259102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU7 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7893049649, - "lat": 52.3692463, - "lon": -1.2527507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "848690305716689", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CV22 71D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7893049650, - "lat": 52.3857593, - "lon": -1.2647476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "mapillary": "936475350449836", - "note": "collection times from 2018.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV21 301" - } -}, -{ - "type": "node", - "id": 7894347316, - "lat": 54.5203623, - "lon": -0.7667376, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7894846120, - "lat": 51.5806735, - "lon": -2.1955385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7895473133, - "lat": 51.5245228, - "lon": 0.2064008, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7896426289, - "lat": 53.4473975, - "lon": -2.2067039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:GB:uprn": "10015345862", - "source": "Note;Bing Streetside", - "source:uprn": "Open UPRN" - } -}, -{ - "type": "node", - "id": 7896894934, - "lat": 51.0943862, - "lon": -0.7040215, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-10", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU27 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7896903745, - "lat": 51.4184118, - "lon": -0.3159599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TW11 183", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7897034177, - "lat": 51.5917763, - "lon": -0.3512542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7897034178, - "lat": 51.5862125, - "lon": -0.3502701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 138" - } -}, -{ - "type": "node", - "id": 7897034179, - "lat": 51.5855896, - "lon": -0.3567693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA1 147D" - } -}, -{ - "type": "node", - "id": 7898764024, - "lat": 51.8258112, - "lon": -2.6284942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL16 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7898778609, - "lat": 51.7140938, - "lon": -2.6564473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP16 396", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7898998139, - "lat": 52.3228154, - "lon": -2.7417809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY8 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7899000071, - "lat": 52.2288127, - "lon": -2.7393625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR6 892", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7899095733, - "lat": 51.4511583, - "lon": -2.5481297, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7899641766, - "lat": 52.4642183, - "lon": 1.1885063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR15 1535", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7899885525, - "lat": 53.4448598, - "lon": -2.1989061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 7900048144, - "lat": 50.6828043, - "lon": -3.4654764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX3 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7900270047, - "lat": 51.0399649, - "lon": 0.5330259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN18 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7900270048, - "lat": 51.0760422, - "lon": 0.6982019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN30 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900270049, - "lat": 51.0616842, - "lon": 0.8327469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN26 14D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7900270050, - "lat": 51.0447564, - "lon": 0.5270780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN18 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900270051, - "lat": 51.0698942, - "lon": 0.6991774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN30 217D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7900270052, - "lat": 51.0578568, - "lon": 0.8378202, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN26 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 7900270053, - "lat": 51.0734694, - "lon": 0.6995473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN30 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900270054, - "lat": 51.0388099, - "lon": 0.4855979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN18 279D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7900270055, - "lat": 51.0663098, - "lon": 0.6735265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN30 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900270056, - "lat": 51.0728065, - "lon": 0.7763230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN26 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900270057, - "lat": 51.0706913, - "lon": 0.7600102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN26 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900270058, - "lat": 51.0466918, - "lon": 0.5119776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "TN18 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900307026, - "lat": 51.5187764, - "lon": 0.1901270, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7900730004, - "lat": 55.0002334, - "lon": -1.5879950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 300D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7900730005, - "lat": 54.9968399, - "lon": -1.5807021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Add ref from ground survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-01-02" - } -}, -{ - "type": "node", - "id": 7900730015, - "lat": 54.9968988, - "lon": -1.6846277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7900730018, - "lat": 55.0121884, - "lon": -1.6413061, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7902975082, - "lat": 51.5196334, - "lon": 0.1970216, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 7902994692, - "lat": 51.5215444, - "lon": 0.2107268, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7903006947, - "lat": 51.5153293, - "lon": 0.2023046, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7903430307, - "lat": 51.3921454, - "lon": -0.2843182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 277D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7903430308, - "lat": 51.3936040, - "lon": -0.2816762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7903430309, - "lat": 51.3952512, - "lon": -0.2768724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 249D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 7903430310, - "lat": 51.3908203, - "lon": -0.2775570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 270D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7903430311, - "lat": 51.3868605, - "lon": -0.2758464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 294D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7903532241, - "lat": 50.8328759, - "lon": -0.6346136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7903593922, - "lat": 58.0237159, - "lon": -3.8576441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:30", - "post_box:type": "wall", - "ref": "KW9 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7903593935, - "lat": 58.0108212, - "lon": -3.8548624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KW9 81", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7903593949, - "lat": 58.0126704, - "lon": -3.8530551, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW9 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7905575959, - "lat": 50.9114528, - "lon": 0.4927592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7906139718, - "lat": 53.4498743, - "lon": -1.9520911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "SK13 110D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 7906673476, - "lat": 52.5269633, - "lon": -2.7757142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY6 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7906673478, - "lat": 52.5189401, - "lon": -2.7716862, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY6 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7906673479, - "lat": 52.5127400, - "lon": -2.7617573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY6 67", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7906689913, - "lat": 54.8440818, - "lon": -1.9368070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DH8 165" - } -}, -{ - "type": "node", - "id": 7906778085, - "lat": 52.3766995, - "lon": -2.7253785, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY8 142" - } -}, -{ - "type": "node", - "id": 7906896738, - "lat": 52.4492765, - "lon": -2.7643946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY7 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7906896739, - "lat": 52.4440832, - "lon": -2.7584037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY8 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7906902959, - "lat": 52.4716218, - "lon": -2.7735718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY7 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7911034879, - "lat": 52.5988323, - "lon": -3.0343857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY15 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7911041875, - "lat": 52.6149307, - "lon": -3.0551065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY21 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7911048904, - "lat": 52.6482858, - "lon": -3.1221972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY21 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7911048905, - "lat": 52.6330889, - "lon": -3.0955884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY21 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7911065157, - "lat": 52.6637433, - "lon": -3.1491467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY21 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7911157360, - "lat": 51.3839802, - "lon": -0.3044093, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "support": "tower" - } -}, -{ - "type": "node", - "id": 7911157361, - "lat": 51.3870007, - "lon": -0.3072390, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 274D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7911157362, - "lat": 51.3839617, - "lon": -0.3090870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 248D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7911157363, - "lat": 51.3806430, - "lon": -0.3066006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 80D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7911157364, - "lat": 51.3830490, - "lon": -0.3000520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7911166114, - "lat": 51.3869660, - "lon": -0.2808166, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 223", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "support": "tower" - } -}, -{ - "type": "node", - "id": 7911166116, - "lat": 51.3841727, - "lon": -0.2835712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT5 314D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7911237513, - "lat": 52.7182303, - "lon": -3.3036574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY22 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7911368515, - "lat": 51.5197558, - "lon": 0.1912237, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7911368522, - "lat": 51.5257728, - "lon": 0.2148990, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7911368524, - "lat": 51.5242287, - "lon": 0.1904713, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7913647500, - "lat": 50.8354745, - "lon": -0.2239444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 675D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7913910545, - "lat": 53.1496471, - "lon": -3.3664142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "note": "Ref number is hard to read because of corrosion damage but believed to be LL16 15.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 15", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7914382367, - "lat": 52.9663353, - "lon": -3.1667802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL20 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7914394824, - "lat": 58.4415753, - "lon": -3.0966441, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW1 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7914408938, - "lat": 58.4432833, - "lon": -3.0930417, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-13", - "collection_times": "Mo-Fr 15:45; Sa 13:00", - "note:ref": "two identical wall boxes side by side with the same references", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW1 27", - "ref:duplicates": "2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7914408939, - "lat": 58.4432917, - "lon": -3.0930593, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-13", - "collection_times": "Mo-Fr 15:45; Sa 13:00", - "note:ref": "two identical wall boxes side by side with the same references", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW1 27", - "ref:duplicates": "2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7914414466, - "lat": 52.9723369, - "lon": -3.1750019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL20 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7914436041, - "lat": 58.4454047, - "lon": -3.0938247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KW1 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7914445421, - "lat": 52.9932806, - "lon": -3.1904930, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL20 186", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7914592590, - "lat": 52.8627031, - "lon": -3.7047529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL23 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7917888626, - "lat": 54.7951553, - "lon": -1.6704295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 469D" - } -}, -{ - "type": "node", - "id": 7918490915, - "lat": 52.3705883, - "lon": -3.8396063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY22 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7918571674, - "lat": 52.3770401, - "lon": -3.8510730, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY23 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7920462218, - "lat": 51.4562647, - "lon": -2.5086242, - "tags": { - "amenity": "post_box", - "mapillary": "814433772820139", - "post_box:type": "pillar", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 7921204489, - "lat": 52.3806496, - "lon": -1.2302865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV23 46" - } -}, -{ - "type": "node", - "id": 7921589464, - "lat": 51.8517381, - "lon": -2.9403326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7921599046, - "lat": 51.7868714, - "lon": -2.8209865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP25 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7921600904, - "lat": 51.8346633, - "lon": -2.9005955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7921600953, - "lat": 51.7359547, - "lon": -2.6460784, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL15 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7921607562, - "lat": 51.7661476, - "lon": -2.7941168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP25 542", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7921618163, - "lat": 51.7445411, - "lon": -2.7245752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP25 539", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7921618170, - "lat": 51.7464024, - "lon": -2.7256367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP25 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7923112824, - "lat": 52.1115778, - "lon": -1.4590574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 7923112825, - "lat": 52.0735907, - "lon": -1.3935965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX15 1071", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7923628033, - "lat": 51.5420149, - "lon": -0.1455675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 35D" - } -}, -{ - "type": "node", - "id": 7924106674, - "lat": 52.8613596, - "lon": -3.0323615, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7924294638, - "lat": 50.8342111, - "lon": -0.1812232, - "tags": { - "addr:housenumber": "187", - "addr:street": "Havelock Road", - "amenity": "post_box", - "building": "house", - "collection_times": "Mo-Fr 17:00, Sa 11:30", - "note": "COVID priority postbox", - "operator": "Royal Mail", - "ref": "BN3 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924767951, - "lat": 51.1879967, - "lon": 0.5475251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "post_box:type": "lamp", - "ref": "TN12 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924767953, - "lat": 51.1393015, - "lon": 0.4105681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7924767954, - "lat": 51.1507489, - "lon": 0.3869778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7924767955, - "lat": 51.1527588, - "lon": 0.3719089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "lamp", - "ref": "TN12 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924767956, - "lat": 51.1433409, - "lon": 0.3636253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "wall", - "ref": "TN12 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7924846449, - "lat": 51.1699373, - "lon": 0.5490662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN12 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924846450, - "lat": 51.1780240, - "lon": 0.5452466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924846451, - "lat": 51.1699199, - "lon": 0.5526087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN12 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924958524, - "lat": 51.1597822, - "lon": 0.5523355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "TN12 3121;TN12 3122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924958525, - "lat": 51.1419653, - "lon": 0.5340969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "TN12 297", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924958526, - "lat": 51.1615705, - "lon": 0.5491418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN12 339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7924958527, - "lat": 51.1530562, - "lon": 0.5300115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "wall", - "ref": "TN12 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7924958528, - "lat": 51.1786376, - "lon": 0.5843301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN12 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7925161892, - "lat": 51.3714767, - "lon": -0.2283867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT4 3451;KT4 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7925161893, - "lat": 51.3725992, - "lon": -0.2263355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM3 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7925161894, - "lat": 51.3794230, - "lon": -0.2237606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT4 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7925161895, - "lat": 51.3804534, - "lon": -0.2266185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7925322402, - "lat": 51.4393669, - "lon": -3.1731954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "heritage": "yes", - "mapillary": "193033782692772", - "post_box:type": "pillar", - "ref": "CF64 1", - "royal_cypher": "EIIR", - "survey:date": "2021-06-27", - "wikidata": "Q29491424" - } -}, -{ - "type": "node", - "id": 7925514733, - "lat": 58.4407514, - "lon": -3.1025930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:45", - "post_box:type": "wall", - "ref": "KW1 5", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7925583560, - "lat": 58.4426352, - "lon": -3.0896128, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-13", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW1 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7925598621, - "lat": 58.4439922, - "lon": -3.1566169, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7925669198, - "lat": 58.5472093, - "lon": -3.3127992, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7925676671, - "lat": 52.4579634, - "lon": 1.5609380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3474D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7925700340, - "lat": 58.5448105, - "lon": -3.2067902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7925722908, - "lat": 58.5292363, - "lon": -3.2628269, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW1 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7925761429, - "lat": 58.2270425, - "lon": -3.4500642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "wall", - "ref": "KW3 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7925816685, - "lat": 51.5027986, - "lon": -0.2808381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "764520717584780", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-02-02" - } -}, -{ - "type": "node", - "id": 7925816785, - "lat": 51.5011783, - "lon": -0.2850887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "112276721244345", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-10-20" - } -}, -{ - "type": "node", - "id": 7925884824, - "lat": 52.0633575, - "lon": 1.1949768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP4 8230" - } -}, -{ - "type": "node", - "id": 7925884825, - "lat": 52.0727499, - "lon": 1.1874750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "phone": "+443457 740740", - "post_box:type": "pillar", - "ref": "IP4 1328D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "website": "https://www.royalmail.com/" - } -}, -{ - "type": "node", - "id": 7926211117, - "lat": 51.8782883, - "lon": -2.1034244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 368D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 7926396205, - "lat": 53.0154824, - "lon": -0.9582574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG14 318", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7926412478, - "lat": 53.0847536, - "lon": -1.1710317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG15 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7926442561, - "lat": 53.0198631, - "lon": -0.9882723, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NG14 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7928309323, - "lat": 51.4756724, - "lon": -0.0527693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7928663329, - "lat": 52.0453650, - "lon": 0.8421611, - "tags": { - "addr:street": "Mill Green Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO10 446" - } -}, -{ - "type": "node", - "id": 7928902067, - "lat": 53.0940281, - "lon": -0.8450353, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG23 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7928939130, - "lat": 52.7561594, - "lon": -1.4761021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15; Su off", - "post_box:type": "lamp", - "ref": "LE65 812", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7928939132, - "lat": 52.7522771, - "lon": -1.4736265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "LE65 599D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7928939134, - "lat": 52.7487295, - "lon": -1.4735058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "LE65 774D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7928952592, - "lat": 53.1231876, - "lon": -0.8386155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG23 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7928964095, - "lat": 52.8611358, - "lon": -3.0581820, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7929448063, - "lat": 53.2004710, - "lon": -0.8109974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NG23 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7929511541, - "lat": 52.0442640, - "lon": 0.8318085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CO10 104" - } -}, -{ - "type": "node", - "id": 7929591572, - "lat": 53.8521819, - "lon": -1.9324811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7929591576, - "lat": 53.8446628, - "lon": -1.9581554, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7929591580, - "lat": 53.8684285, - "lon": -1.9287604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD22 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7930551561, - "lat": 51.0378123, - "lon": 0.5461429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN18 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7931090976, - "lat": 51.5400164, - "lon": 0.1438612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM9 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7931402225, - "lat": 53.7777781, - "lon": -0.9472678, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7931611645, - "lat": 51.1395520, - "lon": 0.6882974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN27 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7931611646, - "lat": 51.1762456, - "lon": 0.7654108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN27 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7931611647, - "lat": 51.1396663, - "lon": 0.6678651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "TN27 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7931611648, - "lat": 51.1555021, - "lon": 0.7203098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN27 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7931861328, - "lat": 51.5181215, - "lon": -0.3618816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7931861329, - "lat": 51.5159075, - "lon": -0.3560851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 159", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7931877360, - "lat": 51.4720205, - "lon": -2.4864610, - "tags": { - "amenity": "post_box", - "mapillary": "377169293722056", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-04-22" - } -}, -{ - "type": "node", - "id": 7931898529, - "lat": 51.1087927, - "lon": 0.5616725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "pillar", - "ref": "TN17 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932073033, - "lat": 52.7496228, - "lon": -1.4833272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "LE65 681D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932073035, - "lat": 52.7511138, - "lon": -1.4796143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00; Su off", - "post_box:type": "lamp", - "ref": "LE65 869", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932073043, - "lat": 52.7421787, - "lon": -1.4761402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "lamp", - "ref": "LE65 597D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932073044, - "lat": 52.7401849, - "lon": -1.4811772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "post_box:type": "pillar", - "ref": "LE65 614", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932599275, - "lat": 53.7633232, - "lon": -0.9418081, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932620230, - "lat": 53.1673136, - "lon": -0.7329237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NG23 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7932643976, - "lat": 53.1516621, - "lon": -0.7567263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG23 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7932682556, - "lat": 53.0605557, - "lon": -0.8422861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG24 51D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7934807617, - "lat": 51.5302607, - "lon": 0.1416825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7935055759, - "lat": 54.8787933, - "lon": -4.8853422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG9 42" - } -}, -{ - "type": "node", - "id": 7935170695, - "lat": 51.1753931, - "lon": 0.7535988, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7935371385, - "lat": 51.5080974, - "lon": -0.2726630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 12:00", - "indoor": "yes", - "ref": "W3 19" - } -}, -{ - "type": "node", - "id": 7935374635, - "lat": 52.5962848, - "lon": -0.2459944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Cypher= E[ ]R where [ ] represents a crown set over roman II. Red cast iron on black steel pillar ('lamp' type?)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 224D" - } -}, -{ - "type": "node", - "id": 7935761756, - "lat": 52.9973857, - "lon": -0.9942181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG14 201D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7935885948, - "lat": 53.0117426, - "lon": -1.0099461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NG14 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7935885949, - "lat": 53.0070121, - "lon": -0.9991564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG14 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7936849023, - "lat": 54.4314245, - "lon": -5.4790363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT22 462" - } -}, -{ - "type": "node", - "id": 7939277179, - "lat": 57.4509203, - "lon": -4.2157447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 364", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7939457655, - "lat": 57.8112618, - "lon": -4.0528316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "description": "This Postbox has the latest collection in this area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "IV19 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939472869, - "lat": 58.4533844, - "lon": -3.0875505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW1 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939560637, - "lat": 58.9766716, - "lon": -2.9454870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:15; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW15 24", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939560657, - "lat": 58.9770492, - "lon": -2.9480944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW15 126", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939598741, - "lat": 58.9636422, - "lon": -3.3016330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW16 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939598764, - "lat": 59.0041441, - "lon": -3.1107919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW17 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939598776, - "lat": 58.9536486, - "lon": -2.9024895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "note": "box number illegible", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939598779, - "lat": 58.9333428, - "lon": -2.7568223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW17 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939598784, - "lat": 58.8963896, - "lon": -2.9092842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KW17 128", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939791285, - "lat": 59.0081474, - "lon": -3.1193672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW17 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939791286, - "lat": 59.0966879, - "lon": -3.3234642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW17 60", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939791297, - "lat": 59.1317022, - "lon": -3.3029956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 14:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW17 100", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939855178, - "lat": 51.0377453, - "lon": -0.8835033, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-24", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU33 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7939860487, - "lat": 58.6297220, - "lon": -3.1551160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW1 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939860490, - "lat": 58.8444972, - "lon": -2.9169144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW15 30", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939860491, - "lat": 58.8460708, - "lon": -2.9145419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939860492, - "lat": 58.8258323, - "lon": -2.9603541, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7939860493, - "lat": 58.9637362, - "lon": -3.2970786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW16 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7939871158, - "lat": 58.5929381, - "lon": -3.3913086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW14 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7939871163, - "lat": 58.5914957, - "lon": -3.3862138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW14 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7940116237, - "lat": 51.2194186, - "lon": -3.5784838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TA24 92", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7940153032, - "lat": 51.3633967, - "lon": -0.2398565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7940153033, - "lat": 51.3656927, - "lon": -0.2415551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 96D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7941547585, - "lat": 53.1925812, - "lon": -2.8879813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "description": "QEII Type PB58 internal post box CH1 17 at Tesco, Frodsham Street, Chester.", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH1 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Tesco, Frodsham Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7941597544, - "lat": 53.1966840, - "lon": -2.9020629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B wall box CH1 25 by W. T. Allen & Company at Cambrian View Chester", - "manufacturer": "W.T. Allen & Co", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "CH1 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Cambrian View, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7941786027, - "lat": 53.1959072, - "lon": -2.8886323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Queen Victoria Type A post box CH1 31 made by Handyside & Co. on St Anne Street, Chester.", - "manufacturer": "Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on St Anne Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7941847667, - "lat": 51.4517609, - "lon": -2.5130539, - "tags": { - "amenity": "post_box", - "mapillary": "1608462066152248", - "post_box:type": "pillar", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 7941862483, - "lat": 53.1905662, - "lon": -2.9002415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type B post box CH1 46 by Carron Company on New Crane Street, Chester.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH1 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on New Crane Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7942164282, - "lat": 53.1897260, - "lon": -2.8950029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type K post box CH1 95 at the former Westgate Street Post Office, Chester. This box replaced a wall-mounted box set into the wall, as can be seen from the wider view of the post office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Watergate Street Post Office.jpg" - } -}, -{ - "type": "node", - "id": 7942238198, - "lat": 51.4496453, - "lon": -2.5076943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7942897044, - "lat": 50.8979345, - "lon": -0.5392901, - "tags": { - "access": "opening_hours", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "16/12/2019", - "collection_times": "Not collected", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN18 1346D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7944355101, - "lat": 53.1965606, - "lon": -2.8995546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type K post box CH1 103 on Garden Lane at Cambrian Road, Chester.", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Garden Lane, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7944378415, - "lat": 53.1943528, - "lon": -2.9045748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type K post box CH1 119 outside Jesmond Court, Sealand Road, Chester.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Jesmond Court, Sealand Road.jpg" - } -}, -{ - "type": "node", - "id": 7944394901, - "lat": 53.1982038, - "lon": -2.9022171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "description": "QEII Type K post box CH1 163 on Cheyney Road at Sydney Road, Chester.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 163", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Sydney Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7944413479, - "lat": 53.1952290, - "lon": -2.8808783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George VI Type B post box CH1 161 by Lion Foundry at Queens Road, off City Road, Chester.", - "drive_through": "no", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CH1 161", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Queens Road, City Road, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7944428908, - "lat": 53.1898928, - "lon": -2.8964879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type A wall box CH1 187 by Allied Ironfounders Ltd of Falkirk, at Stanley Place, Chester.", - "manufacturer": "Allied Ironfounders Ltd of Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "CH1 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Stanley Place, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7944494671, - "lat": 51.8459395, - "lon": -1.4769650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7944517556, - "lat": 53.1947105, - "lon": -2.9129784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "description": "EIIR Type K post box CH1 249 on Bumpers Way at Sealand Road Retail Park, Chester.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH1 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box K on Bumpers Way, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7944645251, - "lat": 53.1946836, - "lon": -2.9130256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "description": "Uncyphered FMO box CH1 399, one of a group on Bumpers Way, Sealand Road Retail Park.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH1 399", - "royal_cypher": "no", - "wikimedia_commons": "File:Business box on Bumpers Way, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7944656078, - "lat": 53.8624708, - "lon": -1.9182324, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BD21 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7944656080, - "lat": 53.8650300, - "lon": -1.9137386, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BD21 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7944692563, - "lat": 53.8602482, - "lon": -1.9162002, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BD21 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7944826485, - "lat": 53.7458911, - "lon": -2.0096087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "HX7 183", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7945629998, - "lat": 51.9532718, - "lon": -2.1198015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL52 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7946344974, - "lat": 51.3771863, - "lon": -0.2059742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SM3 620P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 7946344975, - "lat": 51.3771989, - "lon": -0.2059950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SM3 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7947307546, - "lat": 53.1880385, - "lon": -2.8921010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa off", - "description": "Uncyphered business post box CH1 481 on Grosvenor Street, Chester. To its left is CH1 402", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CH1 481", - "royal_cypher": "no", - "wikimedia_commons": "File:Business box on Grosvenor Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7947356349, - "lat": 53.1889539, - "lon": -2.8888994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box CH1 412 on Pepper Street, Chester.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CH1 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Pepper Street, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7947502907, - "lat": 53.1945721, - "lon": -2.8827112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH1 487 by Machan at Thackeray Towers, Chester.", - "drive_through": "no", - "manufacturer": "Machan, Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Thackeray Towers, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7947520484, - "lat": 53.1947366, - "lon": -2.9129290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "description": "EIIR Wall box type A CH1 2491 by Carron Company on Bumpers Way, Sealand Road Retail Park, Chester.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CH1 2491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Wall box on Bumpers Way, Chester.jpg" - } -}, -{ - "type": "node", - "id": 7948008658, - "lat": 52.6224145, - "lon": -0.3836028, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7948656676, - "lat": 51.3192443, - "lon": 0.7110032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "ref": "ME9 129" - } -}, -{ - "type": "node", - "id": 7948899018, - "lat": 53.1009675, - "lon": -1.2640554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "gold", - "olympics:2012": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG17 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7948977474, - "lat": 51.1598084, - "lon": -0.6568189, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7949039579, - "lat": 51.1572658, - "lon": -0.6593283, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU8 63", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7949057227, - "lat": 51.1570357, - "lon": -0.6483831, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7949173807, - "lat": 51.8860613, - "lon": -2.0930114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL50 186D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7951156515, - "lat": 51.1739103, - "lon": -0.6145880, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU7 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7951231729, - "lat": 51.1840955, - "lon": -0.6143193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-26", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU7 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7952499253, - "lat": 54.1486171, - "lon": -0.8431657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "YO17 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7952510343, - "lat": 54.2796291, - "lon": -1.2801226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:type": "wall", - "ref": "YO7 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7952737183, - "lat": 51.5342892, - "lon": 0.1359321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 156", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7952748160, - "lat": 51.5405373, - "lon": 0.1481733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "RM10 166;RM10 1660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7964031181, - "lat": 51.6448682, - "lon": -3.0599160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7964177989, - "lat": 51.6430937, - "lon": -3.0537674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 7965729167, - "lat": 53.5877512, - "lon": -2.4658405, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7965729170, - "lat": 53.5884797, - "lon": -2.4625315, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7965729365, - "lat": 53.5836458, - "lon": -2.4645130, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7965729366, - "lat": 53.5847520, - "lon": -2.4777507, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7965729367, - "lat": 53.5846868, - "lon": -2.4693643, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7965729368, - "lat": 53.5874153, - "lon": -2.4549079, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7966867060, - "lat": 52.5827466, - "lon": -1.9887894, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7968536403, - "lat": 51.7232047, - "lon": -2.1707168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7968576917, - "lat": 51.9278812, - "lon": -1.8565596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7968596265, - "lat": 51.9371142, - "lon": -1.8604250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL54 115D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7969185681, - "lat": 52.9841152, - "lon": -0.5350786, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7969214065, - "lat": 53.5839598, - "lon": -2.4572507, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7969214066, - "lat": 53.5799635, - "lon": -2.4614591, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7969531796, - "lat": 53.8455313, - "lon": -1.9475754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7969531797, - "lat": 53.8437052, - "lon": -1.9457197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7969531798, - "lat": 53.8698623, - "lon": -1.9405733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7970205833, - "lat": 52.1767523, - "lon": -4.3754694, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7972202203, - "lat": 51.9957106, - "lon": -4.9684761, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 7973598326, - "lat": 51.1892168, - "lon": 0.2786715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN9 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598327, - "lat": 51.1783402, - "lon": 0.3655281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598328, - "lat": 51.2142717, - "lon": 0.3120241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598329, - "lat": 51.1833873, - "lon": 0.3575093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "wall", - "ref": "TN12 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598330, - "lat": 51.2247997, - "lon": 0.3131457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "wall", - "ref": "TN11 99", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7973598331, - "lat": 51.1815792, - "lon": 0.3440797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7973598332, - "lat": 51.2204043, - "lon": 0.3252860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598333, - "lat": 51.1732096, - "lon": 0.3483833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7973598334, - "lat": 51.2300630, - "lon": 0.3434183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "604728790671822", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN11 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-13" - } -}, -{ - "type": "node", - "id": 7973598335, - "lat": 51.2336973, - "lon": 0.3567455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:type": "lamp", - "ref": "TN11 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598336, - "lat": 51.2252659, - "lon": 0.3784040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN12 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598337, - "lat": 51.2096222, - "lon": 0.3805419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN12 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7973598339, - "lat": 51.2094436, - "lon": 0.3951188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "TN12 349D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7973598340, - "lat": 51.1882576, - "lon": 0.3700908, - "tags": { - "amenity": "post_box", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is in the wall at Evans Farm.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN12 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 7973647662, - "lat": 51.5941752, - "lon": -0.1502719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 19D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7973789098, - "lat": 56.4602761, - "lon": -2.9940312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD1 32", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7973946839, - "lat": 56.4726511, - "lon": -2.9707222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7973946841, - "lat": 56.4693895, - "lon": -2.9690310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7973946842, - "lat": 56.4675693, - "lon": -2.9732609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7973976624, - "lat": 56.3840254, - "lon": -2.9934046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY15 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7973976638, - "lat": 56.3716253, - "lon": -2.9654530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 386D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7973976654, - "lat": 56.3798207, - "lon": -2.9293555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KY16 91D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7973995593, - "lat": 56.3875546, - "lon": -2.9291278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY16 359D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7973995594, - "lat": 56.3939284, - "lon": -2.9056834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY16 368", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7973995595, - "lat": 56.4154819, - "lon": -2.9141336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY16 300", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 7975015689, - "lat": 50.8193284, - "lon": -0.3332839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "This postbox is for pre-paid parcels bought online, barcode returns and business franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN15 1865P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7975084800, - "lat": 51.5613760, - "lon": 0.2390782, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7977040344, - "lat": 50.8279905, - "lon": -0.2866354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1537D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7977082547, - "lat": 50.8279113, - "lon": -0.2809394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1536D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7977092599, - "lat": 50.8290205, - "lon": -0.2720425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1535", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7978554708, - "lat": 53.2574065, - "lon": -2.9524477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "description": "EIIR lamp box pier CH1 312 by Machan, Scotland on Rectory Close, Capenhurst. Listed by RM as Penfold Close, but has been moved across Capenhurst Lane to here.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Rectory Lane, Capenhurst.jpg" - } -}, -{ - "type": "node", - "id": 7978632270, - "lat": 53.2581102, - "lon": -2.9758073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "description": "EIIR lamp box pier CH1 492 by Machan, Scotland on Walden Drive, Two Mills, Cheshire.", - "manufacturer": "Machan, Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 492", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Walden Drive, Two Mills.jpg" - } -}, -{ - "type": "node", - "id": 7978644136, - "lat": 53.2502347, - "lon": -2.9672551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "description": "EIIR lamp box pier CH1 72 by Carron Company at Woodbank, Two Mills, Cheshire. Nearby house is The Old Post Office.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Woodbank, Two Mills.jpg" - } -}, -{ - "type": "node", - "id": 7978996821, - "lat": 51.5287610, - "lon": -1.1510622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "961760608944375", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG8 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-07" - } -}, -{ - "type": "node", - "id": 7979001267, - "lat": 51.4958864, - "lon": -1.0634282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 08:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG8 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7981833121, - "lat": 50.8295213, - "lon": -0.2607763, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN43 1532D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7981927782, - "lat": 50.8344663, - "lon": -0.2670293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-01", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN43 1530D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7982004059, - "lat": 50.8343049, - "lon": -0.2374003, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 689", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7982038892, - "lat": 50.8364892, - "lon": -0.2342942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 686D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7982170051, - "lat": 50.8366964, - "lon": -0.2296022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 676D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7982229863, - "lat": 50.8338133, - "lon": -0.2185935, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN41 671D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7982391531, - "lat": 50.8319073, - "lon": -0.2263989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-05", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN42 688D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7983035011, - "lat": 50.9637039, - "lon": -0.2411282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN5 1352D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7983190549, - "lat": 50.9311902, - "lon": -0.2982214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1366", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7983190550, - "lat": 50.9286912, - "lon": -0.2720263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN5 1365D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7983190556, - "lat": 50.9277034, - "lon": -0.2761723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN5 1370D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7983190563, - "lat": 50.9298019, - "lon": -0.2785360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1369D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7983190577, - "lat": 50.9324293, - "lon": -0.2845716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1367", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7983190578, - "lat": 50.9336354, - "lon": -0.2801748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7983190584, - "lat": 50.9344282, - "lon": -0.2745804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1372D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7983202593, - "lat": 50.9312114, - "lon": -0.2724347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN5 1371", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7983202594, - "lat": 50.9371631, - "lon": -0.2715616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN5 1350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7985717963, - "lat": 50.7989108, - "lon": -0.0106745, - "tags": { - "amenity": "post_box", - "note": "Collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7985719823, - "lat": 50.8931399, - "lon": -0.2083842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN45 342D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7985719884, - "lat": 50.8975225, - "lon": -0.2075621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN45 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7985743003, - "lat": 50.8625467, - "lon": -0.1308207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN1 274", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7986248951, - "lat": 50.8179890, - "lon": -0.0729639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "colour": "red", - "description": "In front of Ovingdean Village Store", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7986248974, - "lat": 50.8158436, - "lon": -0.0761828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BN2 213D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7986248975, - "lat": 50.8129113, - "lon": -0.0678183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-05-07", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 7988831580, - "lat": 50.5238082, - "lon": -3.6081105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Unusually it is a VR royal_cypher box with an EIIR royal_cypher door. Recorded as a VR box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 7990039086, - "lat": 52.2189366, - "lon": -4.1686545, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7990243530, - "lat": 50.8294140, - "lon": -0.0594759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7990243531, - "lat": 50.8253175, - "lon": -0.0634856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7990271674, - "lat": 50.8275959, - "lon": -0.0638077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7990273183, - "lat": 50.8379257, - "lon": -0.0717276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7990273184, - "lat": 50.8305316, - "lon": -0.0696960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN2 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7990283685, - "lat": 50.8342482, - "lon": -0.0652669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7991553102, - "lat": 52.1578528, - "lon": -2.8705449, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7992256116, - "lat": 53.5815984, - "lon": -2.4550182, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7993266095, - "lat": 52.5833643, - "lon": -1.9885287, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7993657225, - "lat": 53.0741591, - "lon": -1.3830151, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 7994822832, - "lat": 51.4328419, - "lon": -0.1805221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW17 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "support": "wall_mounted" - } -}, -{ - "type": "node", - "id": 7994897392, - "lat": 51.3152946, - "lon": -0.9241819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7995088320, - "lat": 51.2070414, - "lon": -0.7496077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "5071103336352226", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-03" - } -}, -{ - "type": "node", - "id": 7995088343, - "lat": 51.2109046, - "lon": -0.7577827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7995135463, - "lat": 51.1651772, - "lon": -0.7495453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU10 32D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 7995912250, - "lat": 50.7259810, - "lon": -1.9158885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 361D", - "ref:GB:uprn": "10015420886", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7995912251, - "lat": 50.7272230, - "lon": -1.9222400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH12 1D", - "ref:GB:uprn": "10015321330", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 7995979300, - "lat": 50.7308996, - "lon": -1.9140069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BH12 500;BH12 5500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996025443, - "lat": 52.5960477, - "lon": -0.8433945, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 7996224756, - "lat": 51.7476928, - "lon": -3.3779447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF47 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 7996589940, - "lat": 50.9182983, - "lon": 0.4741801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996589941, - "lat": 50.9177270, - "lon": 0.4822435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN33 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996589942, - "lat": 50.9406137, - "lon": 0.4501528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996589943, - "lat": 50.9294568, - "lon": 0.4731253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN33 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996635764, - "lat": 50.9375338, - "lon": 0.5044020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996635765, - "lat": 50.9451202, - "lon": 0.5088262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996635767, - "lat": 50.9315001, - "lon": 0.4928723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 197", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7996963042, - "lat": 51.4287240, - "lon": -0.5131190, - "tags": { - "amenity": "post_box", - "mapillary": "501324714237642", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-02-22" - } -}, -{ - "type": "node", - "id": 7997558230, - "lat": 52.2792452, - "lon": 0.8946683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP31 2034", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7997575672, - "lat": 50.9070446, - "lon": -4.5495169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX23 35D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 7997611070, - "lat": 53.1333781, - "lon": -3.3328010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7997650064, - "lat": 53.0911809, - "lon": -3.3286293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7997650065, - "lat": 53.0802396, - "lon": -3.3231939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7997674108, - "lat": 53.1097302, - "lon": -3.3273500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL15 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7997674120, - "lat": 53.1112097, - "lon": -3.3204332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL15 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 7997742087, - "lat": 54.9933085, - "lon": -1.5797158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE7 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 7997958290, - "lat": 53.2537626, - "lon": -2.9217566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier CH1 343 by Machan, Scotland, at Kinnington Way, Backford Cross.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Kinnington Way, Backford Cross.jpg" - } -}, -{ - "type": "node", - "id": 7998204143, - "lat": 50.7179182, - "lon": -1.9823670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH15 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8001111702, - "lat": 54.3154932, - "lon": -2.1807319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DL8 48" - } -}, -{ - "type": "node", - "id": 8002419853, - "lat": 52.1213052, - "lon": -0.9918886, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8004521550, - "lat": 53.3530062, - "lon": -2.9058274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II post box L19 362 outside the port office at Garston Docks.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L19 362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Port of Garston.jpg" - } -}, -{ - "type": "node", - "id": 8006510514, - "lat": 51.4598947, - "lon": -2.4777563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BS30 1060", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8006962371, - "lat": 53.2716941, - "lon": -1.4480781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "S41 201P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8009430026, - "lat": 53.4052980, - "lon": -2.9894720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "Double G type post box L2 322 on Lord Street near to Derby Square.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "L2 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box, Lord Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8010424391, - "lat": 50.4153849, - "lon": -5.0757413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2020-10-16" - } -}, -{ - "type": "node", - "id": 8010767231, - "lat": 53.4059440, - "lon": -2.9959094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa off", - "description": "Brass post box L3 94 inside the Royal Liver Building, Liverpool", - "note": "Listed by RM as a Penfold, which I consider unlikely. Also, the cypher cannot be anything but VR but the building dates to 1908, so I suspect the box was originally sited elsewhere.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L3 94", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box, Royal Liver Building.jpg" - } -}, -{ - "type": "node", - "id": 8012703485, - "lat": 50.4156012, - "lon": -5.0874623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR7 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery", - "survey:date": "2024-02-16" - } -}, -{ - "type": "node", - "id": 8012984259, - "lat": 51.4587252, - "lon": -2.4712483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "910723326237358", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS30 679D", - "royal_cypher": "EIIR", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 8014564789, - "lat": 51.4420306, - "lon": -0.2131565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 19", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8015726438, - "lat": 53.4125834, - "lon": -2.9817056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa off", - "description": "EIIR post mounted post box L2 295 outside the student union shop, Liverpool John Moores University, Byrom Street.", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L3 295", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at LJMU, Byrom Street.jpg" - } -}, -{ - "type": "node", - "id": 8015867554, - "lat": 53.3808043, - "lon": -2.9739030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa off", - "description": "EIIR business post box L3 998 next to 999", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L3 998", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box L3 998 at South Harrington Building.jpg" - } -}, -{ - "type": "node", - "id": 8015878907, - "lat": 53.3808297, - "lon": -2.9739325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "description": "EIIR type A box L3 999 at South Harrington Buildng, Sefton Street, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L3 999", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L3 999 at South Harrington Building.jpg" - } -}, -{ - "type": "node", - "id": 8016019405, - "lat": 51.2057217, - "lon": -3.4778354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA24 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8016195467, - "lat": 50.8742925, - "lon": -2.5375291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1082813063146995", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT9 68", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 8016626341, - "lat": 53.6050290, - "lon": -1.7119979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD8 127", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8017988815, - "lat": 53.6978273, - "lon": -1.2660782, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF11 163" - } -}, -{ - "type": "node", - "id": 8018086324, - "lat": 50.8778033, - "lon": 0.5022530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 254D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018086325, - "lat": 50.8860567, - "lon": 0.4637193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 108", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8018086326, - "lat": 50.8804411, - "lon": 0.4866605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN33 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018086327, - "lat": 50.9058472, - "lon": 0.4523938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018086328, - "lat": 50.8915088, - "lon": 0.4412751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN33 106D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8018145334, - "lat": 51.3582186, - "lon": -0.2143829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SM3 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018227788, - "lat": 50.9364102, - "lon": 0.5412881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018227789, - "lat": 50.9030466, - "lon": 0.4774213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018227790, - "lat": 50.8892779, - "lon": 0.4973127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN33 107D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8018227791, - "lat": 50.9324607, - "lon": 0.4819555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018227792, - "lat": 50.9156614, - "lon": 0.5002451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "TN33 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018227793, - "lat": 50.8942791, - "lon": 0.5026201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 188", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8018227795, - "lat": 50.9222435, - "lon": 0.5119207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN33 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018227796, - "lat": 50.9056713, - "lon": 0.5102316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN33 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018651696, - "lat": 51.5885841, - "lon": -0.1555443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "N2 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8018770819, - "lat": 51.1988121, - "lon": 0.1698218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "wall", - "ref": "TN11 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770820, - "lat": 51.1551319, - "lon": 0.2004723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770821, - "lat": 51.1686657, - "lon": 0.1782714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN11 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770822, - "lat": 51.2030136, - "lon": 0.1772535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN11 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770823, - "lat": 51.1841217, - "lon": 0.1800628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 300D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770824, - "lat": 51.1717355, - "lon": 0.1809367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "TN11 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770825, - "lat": 51.1567482, - "lon": 0.1748328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 290D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8018770826, - "lat": 51.1920782, - "lon": 0.1780075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770827, - "lat": 51.1661769, - "lon": 0.1958591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN11 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8018770828, - "lat": 51.1628272, - "lon": 0.1770352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN11 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8019677349, - "lat": 51.0955088, - "lon": -2.0446867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8019708508, - "lat": 51.0964465, - "lon": -2.1056213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 308D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8021809957, - "lat": 52.4564873, - "lon": 1.4345140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "window", - "post_box:type": "wall", - "ref": "NR35 3500" - } -}, -{ - "type": "node", - "id": 8021959927, - "lat": 50.7196524, - "lon": -2.0290345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8022652963, - "lat": 51.6808926, - "lon": -2.0838027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8022706847, - "lat": 51.5882799, - "lon": -2.1000560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN16 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8022754926, - "lat": 51.7289485, - "lon": -2.2746496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "GL10 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8023528937, - "lat": 51.0896159, - "lon": -2.2745870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA12 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8024633769, - "lat": 53.4261913, - "lon": -2.9520396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L4 48 on Breck Road, Anfield, at the front of Holy Trinity church and next to the Newall memorial fountain,", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Richmond Park, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 8024668623, - "lat": 53.4314987, - "lon": -2.9718681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type K post box L4 113 on Royal Street at Everton Valley, Kirkdale, Liverpool. Was formerly a type B which has been replaced.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L4 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Royal Street, Kirkdale, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8024926575, - "lat": 53.4455542, - "lon": -2.9402718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V type B post box L4 117 on Richard Kelly Drive at junction with Philbeach Road, Walton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Philbeach Road, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8024938146, - "lat": 53.4397000, - "lon": -2.9779368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L4 157 by Carron Company on Westminster Road, Walton, near junction of Leighton Street.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Westminster Road at Leighton Street.jpg" - } -}, -{ - "type": "node", - "id": 8024938611, - "lat": 53.4417971, - "lon": -2.9708929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "description": "EIIR Type A post box L4 270 on County Road, Walton, Liverpool. Near junction of Chepstow Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L4 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on County Road, Walton, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8025001147, - "lat": 53.4306096, - "lon": -2.9581424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L4 299 on the corner of Anfield Road and Arkles Lane opposite Wylva Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Wylva Road, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 8025154660, - "lat": 53.4332844, - "lon": -2.9732429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Anonymous type B post box L4 327 by Handyside & Co. on Walton Road near Waller Close., Liverpool.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 327", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box on Walton Road, Kirkdale, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8025169322, - "lat": 53.4332768, - "lon": -2.9807590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Anonymous Type B post box L4 326 on Fonthill Road, Kirkdale, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 326", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box on Fonthill Road.jpg" - } -}, -{ - "type": "node", - "id": 8025188018, - "lat": 53.4430533, - "lon": -2.9607195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Cypherless type B post box L4 339 on Church Road, Walton, Liverpool, near the site of now-demolished Walton railway station.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 339", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box at Walton Station, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8025209270, - "lat": 50.2321704, - "lon": -5.2853546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "description": "Outside Adeladie Stores next to the green charity donation bin", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR14 130", - "source": "survey", - "survey:date": "2020-10-20" - } -}, -{ - "type": "node", - "id": 8025449384, - "lat": 53.4372996, - "lon": -2.9799302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V type B post box L4 431 by Carron Company at the corner of Rumney Road and Garnett Avenue, Kirkdale, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 431", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Rumney Road, Kirkdale.jpg" - } -}, -{ - "type": "node", - "id": 8025481137, - "lat": 53.4420681, - "lon": -2.9402185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "Cypherless type PB58 post box L4 462 in ASDA, Utting Avenue, Liverpool 4.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "L4 462", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box in ASDA, Utting Avenue.jpg" - } -}, -{ - "type": "node", - "id": 8025508899, - "lat": 53.4410520, - "lon": -2.9665151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:00", - "description": "EIIR Type A post box L4 472 on City Road, Walton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L4 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on City Road, Walton, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8025804129, - "lat": 53.4380271, - "lon": -2.9442278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L4 507 in Clubmoor at the junction of Utting Avenue and Cherry Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Clubmoor.jpg" - } -}, -{ - "type": "node", - "id": 8025820844, - "lat": 51.7782815, - "lon": -1.6465103, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8025827028, - "lat": 53.4447481, - "lon": -2.9688164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "EIIR Type K post box L4 558 outside Walton post office, County Road, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L4 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Walton post office, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8025954908, - "lat": 53.4450849, - "lon": -2.9612217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "George V Type B post box L4 608 on Walton Village, Walton, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 608", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Walton Village, Walton, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8025966716, - "lat": 53.4281857, - "lon": -2.9587347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type K post box L4 584 on Oakfield Road, Anfield, near Hawkesworth Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L4 584", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Oakfield Road, Anfield.jpg" - } -}, -{ - "type": "node", - "id": 8025988091, - "lat": 53.4424485, - "lon": -2.9757388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI type B post box L4 610 post box by Carron Company at the junction of Hale Road and Roxburgh Street, Walton, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 610", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Hale Road, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8026147958, - "lat": 53.4471271, - "lon": -2.9731788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L4 705 by Carron Company onn Stuart Road, Walton near to Breeze Hill.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 705", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stuart Road, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8026162923, - "lat": 53.4443367, - "lon": -2.9557634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "VR type B post box L4 730 by Handyside Company on Walton Hall Avenue, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 730", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Walton Hall Avenue.jpg" - } -}, -{ - "type": "node", - "id": 8026181367, - "lat": 53.4405975, - "lon": -2.9458746, - "tags": { - "amenity": "post_box", - "description": "King Edward VII Type B post box L4 710 on Queens Drive/Curtis Road, Clubmoor, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 710", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8026195438, - "lat": 53.4352457, - "lon": -2.9504784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type B Post box L4 735 outside Utting Avenue Post Box, Anfield, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 735", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Utting Avenue Post Office" - } -}, -{ - "type": "node", - "id": 8026196650, - "lat": 53.4390407, - "lon": -2.9376217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L4 749 by Carron Company on Flemington Avenue, Walton, near Queens Drive.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 749", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Flemington Avenue.jpg" - } -}, -{ - "type": "node", - "id": 8026209881, - "lat": 53.4400716, - "lon": -2.9503288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QE II Type B post box L4 853 on Crosgrove Road (off Cherry Lane) Walton, Liverpool", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 853", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Crosgrove Road, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8026210118, - "lat": 53.4439796, - "lon": -2.9432724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "QEII Type B post box L4 886 by Carron Company on Grandison Road, Walton, with adjacent pouch box.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L4 886", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box on Grandison Road, Walton" - } -}, -{ - "type": "node", - "id": 8026242020, - "lat": 53.4390191, - "lon": -2.9710273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "QEII Type A post box L4 963 by Carron Company at County Road post office, Walton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L4 963", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at County Road Post Office, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8026668472, - "lat": 51.2013813, - "lon": -2.3751095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8026668473, - "lat": 51.1925504, - "lon": -2.3616743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8026670197, - "lat": 51.5703969, - "lon": -0.1328364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N19 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8026699858, - "lat": 51.3041740, - "lon": -2.4063016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8027879096, - "lat": 53.4228397, - "lon": -2.9731188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L5 109 on Netherfield Road North, Everton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Netherfield Road North.jpg" - } -}, -{ - "type": "node", - "id": 8027881088, - "lat": 53.4214444, - "lon": -2.9861612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "description": "EIIR Type B post box L5 112 on Silvester Street, Vauxhall, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Silvester Street, Vauxhall.jpg" - } -}, -{ - "type": "node", - "id": 8028008168, - "lat": 53.4340548, - "lon": -2.9853363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Anonymous Type B post box L5 116 by Handyside & Co on Stanley Road near Melrose Road.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 116", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box at Melrose Road, Kirkdale.jpg" - } -}, -{ - "type": "node", - "id": 8028084759, - "lat": 53.4229008, - "lon": -2.9693934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "description": "EIIR Type A post box L5 138 by McDowall Stevens on Heyworth Street near Hamilton Road.", - "manufacturer": "McDowell Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L5 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Heyworth Street, Everton.jpg" - } -}, -{ - "type": "node", - "id": 8030586767, - "lat": 53.4268904, - "lon": -2.9792056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L5 168 at Marwood Tower, Everton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Great Homer Street at Marwood Tower.jpg" - } -}, -{ - "type": "node", - "id": 8032651167, - "lat": 50.3883786, - "lon": -3.6486026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TQ9", - "ref": "TQ9 59", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8032751170, - "lat": 53.4260812, - "lon": -2.9845490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George V Type B post box L5 273 by Carron Company on Boundary Road, Kirkdale at junction of Heriot Street.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 273", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Boundary Road, Kirkdale.jpg" - } -}, -{ - "type": "node", - "id": 8032805676, - "lat": 53.5052059, - "lon": -2.2601443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2194019727401710", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-02-26" - } -}, -{ - "type": "node", - "id": 8032902814, - "lat": 53.4299162, - "lon": -2.9979091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR Type B post box L5 297 by Carron Company at Sandon Dock, on Regent Road, Kirkdale. Currently out of service due to road resurfacing and closure.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Sandon Dock.jpg" - } -}, -{ - "type": "node", - "id": 8033220281, - "lat": 53.4237252, - "lon": -2.9621978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIRI Type K post box L5 533 at the junction of Hamilton Road & Breckfield Road North, Everton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L5 533", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Hamilton Road, Everton.jpg" - } -}, -{ - "type": "node", - "id": 8033227494, - "lat": 53.4319692, - "lon": -2.9845424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "King George V Type B post box L5 576 by Carron Company on Stanley Road at Easby Road Post Office.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 576", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Easby Road Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8033230999, - "lat": 53.4185930, - "lon": -2.9866039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King Edward VII Type B post box L5 703 made by McDowall & Stevens on Burlington Street, Vauxhall, Liverpool.", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L5 703", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Burlington Street, Vauxhall.jpg" - } -}, -{ - "type": "node", - "id": 8035200825, - "lat": 53.4633261, - "lon": -2.9646066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "George V post box L9 27 on Orrell Lane at Endbourne Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Endbourne Road.jpg" - } -}, -{ - "type": "node", - "id": 8035369176, - "lat": 53.4500864, - "lon": -2.9659400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L9 274 on the corner of Gladstone Road on Rice Lane, Walton, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Gladstone Road, Walton, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8035376828, - "lat": 53.4628784, - "lon": -2.9700797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR Type A post box L9 245 outside Moss Lane Post Office, Orrell Park, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L9 245", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Moss Lane Post Office, Orrell Park.jpg" - } -}, -{ - "type": "node", - "id": 8035463320, - "lat": 53.4615138, - "lon": -2.9613446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "EIIR post box L9 467 by Carron Company on Rice Lane near Orrell Lane.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L9 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Rice Lane at Orrell Lane.jpg" - } -}, -{ - "type": "node", - "id": 8035773822, - "lat": 53.4643697, - "lon": -2.9585234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "George V post box L9 564 by McDowell & Stevens at Walton Vale post office, Warbreck Moor", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L9 564", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Walton Vale post office.jpg" - } -}, -{ - "type": "node", - "id": 8035796134, - "lat": 53.4655462, - "lon": -2.9694985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "King Edward VII Type B post box L9 711 by McDowell, Stevens & Co. on Orrell Lane at Wembley Gardens, Orrell Park, Liverpool.", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 711", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Postbox at Wembley Gardens, Orrell Park.jpg" - } -}, -{ - "type": "node", - "id": 8035853804, - "lat": 53.4801037, - "lon": -2.9529886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "description": "EIIR Type K post box L9 807 on Ormskirk Road at the junction with Topham Drive.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L9 807", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Ormskirk Road, Aintree.jpg" - } -}, -{ - "type": "node", - "id": 8037343932, - "lat": 51.5921839, - "lon": -0.1568530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N2 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8037911949, - "lat": 51.6429414, - "lon": -0.1526631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 136D" - } -}, -{ - "type": "node", - "id": 8038390913, - "lat": 51.3229721, - "lon": -2.3750133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "BA2 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8040630579, - "lat": 52.9244363, - "lon": -0.1811896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE20 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8040998641, - "lat": 51.6555323, - "lon": -0.5172738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "WD3 57D" - } -}, -{ - "type": "node", - "id": 8041100068, - "lat": 51.5136523, - "lon": -2.2024067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN14 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8041112568, - "lat": 51.4892657, - "lon": -2.1932799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SN14 69D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8041146789, - "lat": 51.4635400, - "lon": -2.2000612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "mapillary": "4627438430699099", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN14 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 8042933615, - "lat": 51.9413830, - "lon": -1.6475764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL56 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8043090529, - "lat": 51.1496813, - "lon": -2.7561629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8043373783, - "lat": 53.2612106, - "lon": 0.1777318, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LN13 970", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8043421936, - "lat": 53.2571441, - "lon": 0.1788575, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8043753580, - "lat": 53.4144056, - "lon": -2.9490928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "VR type B post box L6 392 by Handyside & Co. on the corner of Molyneux Road and Hannam Road, Kensington, Liverpool.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 392", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "Category:Post box on Molyneux Road, Kensington, Liverpool" - } -}, -{ - "type": "node", - "id": 8043794960, - "lat": 53.4251840, - "lon": -2.9445602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box L6 145 mounted in the wall of Lower Breck Road, Anfield, opposite Breckside Park. Replaced an earlier Wall Box Type B, as can be seen by the brickwork.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L6 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Lower Breck Road.jpg" - } -}, -{ - "type": "node", - "id": 8043805872, - "lat": 53.4153708, - "lon": -2.9557715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "description": "King George V Type B post box L6 238 on the corner of Farnworth Street and Boaler Street, Kensington, Liverpool. The door seems to have been refurbished or replaced.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 238", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Farnworth Street & Boaler Street.jpg" - } -}, -{ - "type": "node", - "id": 8043821158, - "lat": 53.4108452, - "lon": -2.9676459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI post box L6 251 post box by McDowell, Stevens & Co. on Moss Street, Liverpool", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L6 251", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Moss Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8043825291, - "lat": 53.4222760, - "lon": -2.9439305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type B post box L6 262 on the corner of Rocky Lane and Thurnham Street, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Thurnham Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8044342076, - "lat": 53.4160997, - "lon": -2.9396265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box by Carron Company at the junction of Elstree Road and Elm Vale, Fairfield, Liverpool 6.", - "manufacturer": "Carron Company", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 479", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8044367720, - "lat": 53.4199059, - "lon": -2.9459581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King Edward VII Type B post box L6 458 by Handyside Co. at the corner of Denman Drive and Strathmore Road, Newsham Park, Tuebrook, Liverpool.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 458", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box on Denman Drive, Tuebrook.jpg" - } -}, -{ - "type": "node", - "id": 8044416757, - "lat": 53.4157875, - "lon": -2.9374281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR wall mounted lamp box L6 187 at Prospect Vale (actually Fairfield Crescent), Liverpool L6.", - "post_box:type": "wall", - "ref": "L6 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Prospect Vale, Fairfield.jpg" - } -}, -{ - "type": "node", - "id": 8044457582, - "lat": 53.4168052, - "lon": -2.9484158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "Edward VII Type B post box L6 515 by Handyside at Boaler Street Post Office, Kensington, Liverpool", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L6 515", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Boaler Street Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8044531589, - "lat": 53.4227532, - "lon": -2.9401829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR Type A post box L6 525 on Rocky Lane near junction of Lower Breck Road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L6 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Lower Breck, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8045150515, - "lat": 50.9473686, - "lon": -2.5133613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "456999159169472", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT9 70D", - "ref:GB:uprn": "10015287506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-11-04", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 8045214889, - "lat": 50.8275954, - "lon": -2.4806061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT2 112", - "ref:GB:uprn": "10015396300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-08-09" - } -}, -{ - "type": "node", - "id": 8045220561, - "lat": 50.8366384, - "lon": -2.4847394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DT2 89", - "ref:GB:uprn": "10015309746", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8046855922, - "lat": 51.9143444, - "lon": -2.7352173, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8047801091, - "lat": 52.9054506, - "lon": -2.1558990, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8048236642, - "lat": 53.4691433, - "lon": -2.9329973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box L9 425 by Carron Company on Signal Works Road, Fazakerley.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 425", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Signal Works Road.jpg" - } -}, -{ - "type": "node", - "id": 8048332140, - "lat": 53.4696016, - "lon": -2.9369621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box L9 6 by Machan on West Orchard Lane, Fazakerley", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on West Orchard Lane.jpg" - } -}, -{ - "type": "node", - "id": 8048404625, - "lat": 53.4684563, - "lon": -2.9414036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR type B post box L9 512 at Fazakerley Post Office, Longmoor Lane.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Fazakerley Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8048409322, - "lat": 53.4679225, - "lon": -2.9446122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "VR type B post box L9 437 by Handyside on Longmoor Lane opposite Seeds Lane", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 437", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Longmoor Lane.jpg" - } -}, -{ - "type": "node", - "id": 8048525929, - "lat": 53.4664396, - "lon": -2.9504156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EVIIR type B post box L9 470 by Handyside & Co on Longmoor Lane at Ancient Meadow, Fazakerley.", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 470", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "File:Post box at Ancient Meadow, Fazakerley.jpg" - } -}, -{ - "type": "node", - "id": 8048598676, - "lat": 53.4652524, - "lon": -2.9491480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L9 896 on Sandy Lane, Fazakerley", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 896", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Sandy Lane, Fazakerley.jpg" - } -}, -{ - "type": "node", - "id": 8048629775, - "lat": 53.4646471, - "lon": -2.9425635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L9 82 by Machan at Whitewood Park, Fazakerley", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L9 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Whitewood Park.jpg" - } -}, -{ - "type": "node", - "id": 8048655644, - "lat": 50.7249202, - "lon": -1.9855274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 54D", - "ref:GB:uprn": "10015274089", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8048655645, - "lat": 50.7196405, - "lon": -2.0068744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "BH15 249D", - "ref:GB:uprn": "10015804925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8048655646, - "lat": 50.7179734, - "lon": -2.0140319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 67D", - "ref:GB:uprn": "10015275140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8048655647, - "lat": 50.7134253, - "lon": -2.0150886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 179", - "ref:GB:uprn": "10015321679", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8048655648, - "lat": 50.7157185, - "lon": -2.0222864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 248", - "ref:GB:uprn": "10015298730", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8048752017, - "lat": 51.2414438, - "lon": -2.8073991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS28 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8048839650, - "lat": 51.2681015, - "lon": -2.7916629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3210949569211139", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS27 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 8048901908, - "lat": 53.9886097, - "lon": -1.5402089, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8050019876, - "lat": 53.4605166, - "lon": -2.9468492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR type K post box L9 725 on Brookfield Drive, Fazakerley.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L9 725", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Brookfield Drive, Fazakerley.jpg" - } -}, -{ - "type": "node", - "id": 8050100915, - "lat": 53.4605178, - "lon": -2.9468673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Business box L9 727 on Brookfield Drive, Fazakerley, next to L9 725.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L9 727", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box at Graylaw Industrial Estate.jpg" - } -}, -{ - "type": "node", - "id": 8050288485, - "lat": 53.4608104, - "lon": -2.9658749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "VR type B post box L9 719 by Andrew Handyside & Co at the junction of Devonfield Road and Thornfield Road, Orrell Par", - "manufacturer": "Andrew Handyside & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 719", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikimedia_commons": "File:Post box on Devonfield Road, Orrell Park.jpg" - } -}, -{ - "type": "node", - "id": 8058835773, - "lat": 54.2172831, - "lon": -2.8958885, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA11 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8058835780, - "lat": 54.2155909, - "lon": -2.8934977, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA11 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8058887637, - "lat": 54.1977736, - "lon": -2.9389784, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA11 136" - } -}, -{ - "type": "node", - "id": 8060608802, - "lat": 51.3355084, - "lon": -2.5944056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS39 1108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8060608803, - "lat": 51.3274612, - "lon": -2.6104479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS39 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8060627451, - "lat": 51.3010960, - "lon": -2.6528657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS40 463", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8062321554, - "lat": 52.3723406, - "lon": 0.4782587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP28 2275D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8062448961, - "lat": 53.4556635, - "lon": -2.9279131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L9 798 by Carron Company on Higher Lane/Long Lane, Norris Green.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L9 798", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Higher Lane, Norris Green.jpg" - } -}, -{ - "type": "node", - "id": 8062475511, - "lat": 53.4569603, - "lon": -2.9465154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L9 827 by Carron Company on Long Lane at Hanson Road", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L9 827", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Hanson Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8062710387, - "lat": 53.4511023, - "lon": -2.9366653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR type A post box L9 759 by Carron Company outside Stopgate LanePost Office", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L9 759", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Stopgate Lane Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8062728085, - "lat": 53.4524276, - "lon": -2.9501607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L9 406 by Carronade on Blackthorne Road, Walton, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L9 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Blackthorne Road.jpg" - } -}, -{ - "type": "node", - "id": 8062830752, - "lat": 54.5254598, - "lon": -1.5624350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "ref": "DL3 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8062830753, - "lat": 54.5191018, - "lon": -1.5991008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "post_box:type": "wall", - "ref": "DL3 87", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8063206361, - "lat": 51.0612121, - "lon": 0.5067960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "TN18 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8063206362, - "lat": 51.0744026, - "lon": 0.5104089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "TN18 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8063206363, - "lat": 51.0208037, - "lon": 0.5481439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN18 276D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8063206364, - "lat": 51.0551252, - "lon": 0.5029613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN18 292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8063206365, - "lat": 51.0495683, - "lon": 0.5318826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN18 267D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8063267295, - "lat": 54.0446592, - "lon": -2.7953231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "post_box:type": "meter", - "ref": "LA1 222P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8063441835, - "lat": 51.6037811, - "lon": -2.2057562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GL8 191D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8063719750, - "lat": 53.4515055, - "lon": -2.9568293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L9 25 on Cavendish Drive, Walton.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L9 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Cavendish Drive, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8063724267, - "lat": 53.4545731, - "lon": -2.9616105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "GR type B post box L9 601 by McDowell, Stevens & Co on Rice Lane, Walton, at its junction with Fazakerley Road.", - "manufacturer": "McDowell, Stevens & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 601", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Rice Lane at Fazakerley Road.jpg" - } -}, -{ - "type": "node", - "id": 8063739175, - "lat": 53.4554264, - "lon": -2.9581395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "EIIIR Type B post box L9 478 by CarronCompany on Birchdale Road/Fazakerley Road, Walton.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 478", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Birchdale Road, Walton.jpg" - } -}, -{ - "type": "node", - "id": 8063836947, - "lat": 53.4561409, - "lon": -2.9715533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George VI type B wall box by W.T. Allen & Co on Hornby Road, Walton, Liverpool", - "manufacturer": "W.T. Allen & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "L9 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Hornby Road, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8064945839, - "lat": 55.8159602, - "lon": -4.2339853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8065621644, - "lat": 51.0938978, - "lon": 0.5231535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN17 159D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8066148146, - "lat": 56.4648762, - "lon": -2.9935089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 54", - "royal_cypher": "scottish_crown", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 8066957918, - "lat": 51.6476668, - "lon": -0.5230887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "WD3 26D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8068600366, - "lat": 51.3758515, - "lon": -2.5421950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS39 192", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8068672879, - "lat": 51.3859552, - "lon": -2.4828803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS31 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8068686189, - "lat": 51.3789687, - "lon": -2.5095250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS39 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8068686190, - "lat": 51.3744828, - "lon": -2.5181450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BS39 384D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8069189522, - "lat": 52.6988612, - "lon": 0.2893721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8070292739, - "lat": 50.9999799, - "lon": -2.5841629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2972683832995383", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA22 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-03-12", - "survey:date": "2022-04-15" - } -}, -{ - "type": "node", - "id": 8070887875, - "lat": 53.4095263, - "lon": -2.9653234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR type PB58 post box in the main atrium of Royal Liverpool University Hospital.", - "disused": "yes", - "note": "Moved to new Royal?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "L7 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Royal Liverpool University Hospital.jpg" - } -}, -{ - "type": "node", - "id": 8070914854, - "lat": 53.4056723, - "lon": -2.9306338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa off", - "description": "EIIR business box L7 58 on Dryden Road, Wavertree Technology park. Next to L7 28", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "L7 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box L7 58 on Dryden Road.jpg" - } -}, -{ - "type": "node", - "id": 8071225661, - "lat": 53.4060607, - "lon": -2.9482956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L7 86 on Durning Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Durning Road.jpg" - } -}, -{ - "type": "node", - "id": 8071513551, - "lat": 50.8596738, - "lon": -0.1457338, - "tags": { - "amenity": "post_box", - "ref": "BN1 275" - } -}, -{ - "type": "node", - "id": 8071525925, - "lat": 50.8610581, - "lon": -0.1361526, - "tags": { - "amenity": "post_box", - "ref": "BN1 273D" - } -}, -{ - "type": "node", - "id": 8071527411, - "lat": 50.8579832, - "lon": -0.1428836, - "tags": { - "amenity": "post_box", - "ref": "BN1 277D" - } -}, -{ - "type": "node", - "id": 8071575613, - "lat": 50.8634604, - "lon": -0.1264540, - "tags": { - "amenity": "post_box", - "ref": "BN1 74D" - } -}, -{ - "type": "node", - "id": 8071649107, - "lat": 54.3811774, - "lon": -1.9916008, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8071656870, - "lat": 54.4072146, - "lon": -1.7457221, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8071684650, - "lat": 53.4137927, - "lon": -2.9354578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "King George VI TYPE b post box L7 126 by Carron Company on Prescot Road at junction of Holland Street.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Holland Street.jpg" - } -}, -{ - "type": "node", - "id": 8071720114, - "lat": 53.3986640, - "lon": -2.9490606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "description": "EIIR type B post box L7 118 by Carron Company on Earle Road, Liverpool near its junction with Smithdown Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Earle Road.jpg" - } -}, -{ - "type": "node", - "id": 8071728460, - "lat": 53.4086432, - "lon": -2.9483074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR type A post box L7 242 by Carron Company on Holt Road, Kensington, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L7 242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Holt Road.jpg" - } -}, -{ - "type": "node", - "id": 8071757890, - "lat": 53.4116003, - "lon": -2.9564789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "description": "EIIR type B post box L7 156 by Carron Company at the end of Empress Road, Kensington, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:Post box at Empress Road, Liverpool" - } -}, -{ - "type": "node", - "id": 8071839729, - "lat": 53.4105892, - "lon": -2.9367139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "description": "Queen Elizabeth II Type K post box L7 359 on Laurel Road, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L7 359", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Laurel Road.jpg" - } -}, -{ - "type": "node", - "id": 8071922450, - "lat": 53.4103028, - "lon": -2.9302768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "George VI type B post box L7 510 on Edge Lane; the post office outside which it stood is long gone.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 510", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Edge Lane post office, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8071968137, - "lat": 53.4118754, - "lon": -2.9513710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI type B post box L7 519 by Carron Company on Kensington, Liverpool.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L7 519", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Kensington, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8072279328, - "lat": 53.4107388, - "lon": -2.9650066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "Queen Elizabeth II Type PB58 post box L7 682 in Prescot Street post office, Liverpool.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "L7 682", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Prescot Street post office.jpg" - } -}, -{ - "type": "node", - "id": 8072307956, - "lat": 53.4130100, - "lon": -2.9405676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "King George VI post box L7 536 outside the former Fairfield post office, closed in 2012.", - "manufacturer": "McDowall, Steven & Co", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L7 536", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Fairfield Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8073140115, - "lat": 53.7337897, - "lon": -1.9562855, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8073177377, - "lat": 51.0601988, - "lon": -0.3221947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-31", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8075683344, - "lat": 51.6537090, - "lon": -0.5308134, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8075719517, - "lat": 53.2824452, - "lon": -1.8669449, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8077543191, - "lat": 50.8589889, - "lon": -0.1084979, - "tags": { - "amenity": "post_box", - "ref": "BN1 228D" - } -}, -{ - "type": "node", - "id": 8077589082, - "lat": 50.8652498, - "lon": -0.1157944, - "tags": { - "amenity": "post_box", - "ref": "BN1 230D" - } -}, -{ - "type": "node", - "id": 8077592344, - "lat": 50.8627883, - "lon": -0.1125160, - "tags": { - "amenity": "post_box", - "ref": "BN1 231" - } -}, -{ - "type": "node", - "id": 8077746405, - "lat": 50.8604611, - "lon": -0.0860307, - "tags": { - "amenity": "post_box", - "ref": "BN1 347D" - } -}, -{ - "type": "node", - "id": 8077891703, - "lat": 50.8559609, - "lon": -0.1071593, - "tags": { - "amenity": "post_box", - "ref": "BN1 232" - } -}, -{ - "type": "node", - "id": 8078378806, - "lat": 50.8234314, - "lon": -0.5473466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-07", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1508D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8078448946, - "lat": 51.0196672, - "lon": -2.6015027, - "tags": { - "amenity": "post_box", - "mapillary": "485640776086745", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-10-30", - "survey:date": "2020-10-30" - } -}, -{ - "type": "node", - "id": 8079476053, - "lat": 51.5274104, - "lon": 0.1825981, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8081043245, - "lat": 50.8375893, - "lon": -0.2389481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN42 684D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8081096704, - "lat": 50.8439599, - "lon": -0.2393110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN42 681D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8081138500, - "lat": 50.8428413, - "lon": -0.2314270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN42 678D" - } -}, -{ - "type": "node", - "id": 8081169080, - "lat": 50.8409782, - "lon": -0.2378487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN42 682" - } -}, -{ - "type": "node", - "id": 8081303779, - "lat": 51.8940600, - "lon": 0.2152783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8081359500, - "lat": 51.5236973, - "lon": 0.1784028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM13 170", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8081720357, - "lat": 50.8420403, - "lon": -0.2261699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN42 677", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8084127724, - "lat": 55.7656410, - "lon": -4.1517446, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8084231252, - "lat": 50.9538210, - "lon": -2.5072955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8088083516, - "lat": 54.5447537, - "lon": -3.5909640, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "note": "There are two separate wall boxes here", - "post_box:type": "wall", - "ref": "CA28 1006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8088158242, - "lat": 54.9769584, - "lon": -1.6131631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "drive_through": "no", - "image": "https://www.geograph.org.uk/photo/7189828", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE1 777P", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8088660727, - "lat": 51.1318657, - "lon": -0.6326576, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8088782475, - "lat": 51.1144566, - "lon": -0.6316245, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8088809206, - "lat": 51.1138610, - "lon": -0.6338452, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-17", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8088899726, - "lat": 51.1044196, - "lon": -0.6915684, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2020-09-17", - "note": "This postbox is in a wall although the foliage has overgrown the edges of this postbox.", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU27 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8088946695, - "lat": 51.0162655, - "lon": -3.1033059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8088946696, - "lat": 51.0139188, - "lon": -3.1062645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8089196465, - "lat": 51.0193606, - "lon": -3.1034697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8089330927, - "lat": 53.3732797, - "lon": -2.2062737, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8089636015, - "lat": 50.8256581, - "lon": -0.3274175, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-29", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BN15 1416D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8089713344, - "lat": 50.9409686, - "lon": -2.0723082, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 78", - "ref:GB:uprn": "10024720031", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8089719779, - "lat": 50.9357560, - "lon": -2.0604368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 86", - "ref:GB:uprn": "10015426364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8089726701, - "lat": 50.8236812, - "lon": -0.3376307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "This postbox is for parcels & franked mail. This postbox is for pre-paid parcels bought online, barcode returns and business franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BN15 1864P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8089739297, - "lat": 50.9524278, - "lon": -2.2050722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 97D", - "ref:GB:uprn": "10015409686", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8090479283, - "lat": 53.4406619, - "lon": -2.9256369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "EIIR post box L11 191 by Carron Company at Norris Green post office, Broad Lane.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L11 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Norris Green post office.jpg" - } -}, -{ - "type": "node", - "id": 8091173181, - "lat": 52.5723894, - "lon": -0.2581194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE3 348D" - } -}, -{ - "type": "node", - "id": 8091249538, - "lat": 53.4383247, - "lon": -2.9132989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR Type A post box L11 266 by Carron Company at Muirhead Post Office, Norris Green, Liverpool. Missing most of the collection plate when surveyed.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L11 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Muirhead Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8091298637, - "lat": 50.9834252, - "lon": -2.2228123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP7 45", - "ref:GB:uprn": "10015275774", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8091462229, - "lat": 51.0194664, - "lon": -2.2401407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 118", - "ref:GB:uprn": "10015471894", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8091462230, - "lat": 51.0095020, - "lon": -2.2395211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1060611574783388", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP7 12", - "ref:GB:uprn": "10015315546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-07" - } -}, -{ - "type": "node", - "id": 8091462231, - "lat": 51.0041089, - "lon": -2.2320485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 122", - "ref:GB:uprn": "10015352499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8091467269, - "lat": 53.4457033, - "lon": -2.9309580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "GR type B post box L11 568 by Carron Company on Townsend Avenue at Netherwood Road, Norris Green.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 568", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Netherwood Road.jpg" - } -}, -{ - "type": "node", - "id": 8091496673, - "lat": 53.4539619, - "lon": -2.9211059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR type B post box L11 640 on East Lancashire Road at Stockmoor Road, Norris Green.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 640", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Stockmoor Road.jpg" - } -}, -{ - "type": "node", - "id": 8091512074, - "lat": 52.0626559, - "lon": -2.7060714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8091512075, - "lat": 52.0636892, - "lon": -2.7090469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HR1 631D" - } -}, -{ - "type": "node", - "id": 8091539852, - "lat": 53.4436763, - "lon": -2.9143022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L11 962 on Stalisfield Avenue, Norris Green.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "L11 962", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stalisfield Avenue.jpg" - } -}, -{ - "type": "node", - "id": 8091565952, - "lat": 53.4422708, - "lon": -2.9311001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "description": "EIIR Type K post box L11 970 at the Utting Avenue East end of Broadway, Norris Green.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L11 970", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Broadway, Norris Green.jpg" - } -}, -{ - "type": "node", - "id": 8093520308, - "lat": 51.4060795, - "lon": -0.3527467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 93D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8093710412, - "lat": 54.5596644, - "lon": -1.3225796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8093748729, - "lat": 50.8461305, - "lon": -0.1208215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN1 263D" - } -}, -{ - "type": "node", - "id": 8093788180, - "lat": 50.8450575, - "lon": -0.1095873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 236" - } -}, -{ - "type": "node", - "id": 8093828760, - "lat": 50.8390827, - "lon": -0.1089890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 364D" - } -}, -{ - "type": "node", - "id": 8093832463, - "lat": 51.3888202, - "lon": -0.3332122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 128D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8093832464, - "lat": 51.3906533, - "lon": -0.3332950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 196", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8093832471, - "lat": 51.3898474, - "lon": -0.3390165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8093832472, - "lat": 51.3893708, - "lon": -0.3297514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8093832473, - "lat": 51.3869434, - "lon": -0.3298131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT7 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8093832474, - "lat": 51.3846987, - "lon": -0.3332075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8093855643, - "lat": 50.8381194, - "lon": -0.1193053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN2 196D" - } -}, -{ - "type": "node", - "id": 8093962472, - "lat": 55.9023621, - "lon": -3.6473000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH48 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8094094071, - "lat": 51.8724107, - "lon": 0.1514456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "CM23 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094094072, - "lat": 51.8747895, - "lon": 0.1466015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "CM23 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8094094282, - "lat": 52.4423083, - "lon": 1.2145638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094133172, - "lat": 50.8226371, - "lon": -0.3199038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-29", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1422D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8094153753, - "lat": 50.8251646, - "lon": -0.3180014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-29", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8094277725, - "lat": 50.8234799, - "lon": -0.3235760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1392D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8094339290, - "lat": 51.0317345, - "lon": -2.5076187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094362767, - "lat": 53.1935998, - "lon": -3.3360079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094362768, - "lat": 53.2032241, - "lon": -3.3437679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094362769, - "lat": 53.2131457, - "lon": -3.3546851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8094365406, - "lat": 51.0407438, - "lon": -2.4693650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA9 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094365408, - "lat": 51.0408374, - "lon": -2.4505386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA9 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094379317, - "lat": 51.0526691, - "lon": -2.4116680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8094379318, - "lat": 51.0560722, - "lon": -2.4116130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA9 264", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8094379330, - "lat": 51.0545245, - "lon": -2.4087685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 111" - } -}, -{ - "type": "node", - "id": 8094379336, - "lat": 51.0541199, - "lon": -2.4049115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 142D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8094379337, - "lat": 51.0544655, - "lon": -2.4021059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA9 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094422640, - "lat": 50.8320798, - "lon": -0.1048979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094432432, - "lat": 53.2184918, - "lon": -3.3442371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094432435, - "lat": 53.2354219, - "lon": -3.3365840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094432438, - "lat": 53.2335395, - "lon": -3.3704651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "New lamp box replaces wall box that was a few yards south and across the road (now a hole in the wall)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094432439, - "lat": 53.2198979, - "lon": -3.3610622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094433368, - "lat": 51.3767740, - "lon": -0.3298648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 359D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094433369, - "lat": 51.3757489, - "lon": -0.3295564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 242D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8094433370, - "lat": 51.3809745, - "lon": -0.3378993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 340D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8094492249, - "lat": 50.8277974, - "lon": -0.1016205, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492250, - "lat": 50.8273485, - "lon": -0.1052645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492251, - "lat": 50.8241070, - "lon": -0.1055513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492252, - "lat": 50.8217984, - "lon": -0.1027407, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492253, - "lat": 50.8188596, - "lon": -0.1030375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN2 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492254, - "lat": 50.8231255, - "lon": -0.1089753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 298D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8094492255, - "lat": 50.8208479, - "lon": -0.1101322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492256, - "lat": 50.8210363, - "lon": -0.1144649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 297D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8094492257, - "lat": 50.8178497, - "lon": -0.1161241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8095000455, - "lat": 51.5251701, - "lon": 0.1720309, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8096280893, - "lat": 50.8320192, - "lon": -0.2063067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 178D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8096638141, - "lat": 50.9889844, - "lon": -2.4680950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT9 25" - } -}, -{ - "type": "node", - "id": 8097315855, - "lat": 50.8307897, - "lon": -0.1520464, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 153D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8097315856, - "lat": 50.8333131, - "lon": -0.1634130, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8097315857, - "lat": 50.8331453, - "lon": -0.1666818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8097315858, - "lat": 50.8359101, - "lon": -0.1616990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN3 149", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8098320071, - "lat": 53.4370134, - "lon": -2.9313730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L11 707 by Carron Company on the corner of Lowerson Road and Ferguson Road, Norris Green. Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Lowerson Road.jpg" - } -}, -{ - "type": "node", - "id": 8098583212, - "lat": 51.0237071, - "lon": -2.5763610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8098596024, - "lat": 51.0199996, - "lon": -2.5908905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA22 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8098622981, - "lat": 51.0581981, - "lon": -2.6739465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA11 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8098631905, - "lat": 53.4617256, - "lon": -1.4780849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "S35 1507", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8098730306, - "lat": 53.2662244, - "lon": -2.1177387, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8098730307, - "lat": 53.2681000, - "lon": -2.1130055, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8098730308, - "lat": 53.2718940, - "lon": -2.1156292, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8098730309, - "lat": 53.2470894, - "lon": -2.1281254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "SK11 114D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 8098730310, - "lat": 53.2495975, - "lon": -2.1338789, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8098730311, - "lat": 53.2498453, - "lon": -2.1227124, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8098730312, - "lat": 53.2522968, - "lon": -2.1215342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SK11 105", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8098779498, - "lat": 50.7535659, - "lon": -2.9461039, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT7 38D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8098779499, - "lat": 50.7402571, - "lon": -2.9479688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT7 43D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 8100346332, - "lat": 53.2567474, - "lon": -2.1281330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "SK11 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8100346334, - "lat": 53.2575182, - "lon": -2.1262635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK11 42D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8100346335, - "lat": 53.2562944, - "lon": -2.1227862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK11 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8100346336, - "lat": 53.2565754, - "lon": -2.1225500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK11 86", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8100346337, - "lat": 53.2566629, - "lon": -2.1192415, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8100346338, - "lat": 53.2619554, - "lon": -2.1251629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SK10 1666", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8100346339, - "lat": 53.2594356, - "lon": -2.1234845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45, Sa 12:15", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SK11 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8100377301, - "lat": 53.2534150, - "lon": -2.1249234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SK11 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8100592249, - "lat": 51.8517498, - "lon": -2.2118693, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8104075633, - "lat": 51.5632191, - "lon": 0.1467533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8105061057, - "lat": 51.0885217, - "lon": -2.9074475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 85", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8105098993, - "lat": 51.0783982, - "lon": -2.8878386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "394918359390977", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA7 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-28" - } -}, -{ - "type": "node", - "id": 8105098994, - "lat": 51.0800062, - "lon": -2.8816498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 182", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8105159880, - "lat": 51.1115201, - "lon": -2.9269294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA7 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8105159882, - "lat": 51.1074628, - "lon": -2.9293813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA7 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8107865204, - "lat": 53.5958579, - "lon": -2.8388447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "L40 4" - } -}, -{ - "type": "node", - "id": 8107865205, - "lat": 53.5929282, - "lon": -2.8449749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "L40 60" - } -}, -{ - "type": "node", - "id": 8107967635, - "lat": 53.6004248, - "lon": -2.8462607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L40 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8107967636, - "lat": 53.5905226, - "lon": -2.8540527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "L40 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8107967637, - "lat": 53.5978451, - "lon": -2.8507008, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "L40 102", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8109253114, - "lat": 50.9511006, - "lon": -2.5113878, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref:GB:uprn": "10015382254", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8109796525, - "lat": 52.2019240, - "lon": 0.9445066, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8109886935, - "lat": 52.2160109, - "lon": 0.9033556, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8112408668, - "lat": 51.1406234, - "lon": -2.9079947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA7 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8112512902, - "lat": 51.0711732, - "lon": -2.7257319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA11 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8112516784, - "lat": 53.8689939, - "lon": -1.9137959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8112534736, - "lat": 50.9992385, - "lon": -2.6623412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA22 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8112534740, - "lat": 50.9969579, - "lon": -2.6550087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA22 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8112574480, - "lat": 52.0557175, - "lon": -1.3454941, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8113069432, - "lat": 53.5041544, - "lon": -1.5516908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 00:15", - "post_box:type": "lamp", - "ref": "S35 718", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8114274737, - "lat": 53.4569028, - "lon": -2.9090061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L11 816 by Carron Company on Stonebridge Lane at the East Lancs Road end, next to Alt Meadows.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 816", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stonebridge Lane at Alt Meadows.jpg" - } -}, -{ - "type": "node", - "id": 8114411298, - "lat": 53.4604664, - "lon": -2.8939527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR type B post box L11 661 by Carron Company at Malpas Road, Gillmoss.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 661", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Malpas Road, Gillmoss.jpg" - } -}, -{ - "type": "node", - "id": 8114478817, - "lat": 53.4584175, - "lon": -2.9011569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR type B post box L11 259 by Carron Company on Gillmoss Lane.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 259", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box on Gillmoss Lane.jpg" - } -}, -{ - "type": "node", - "id": 8114980500, - "lat": 52.6941142, - "lon": -0.3475685, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "ref": "PE6 190D" - } -}, -{ - "type": "node", - "id": 8115015495, - "lat": 53.4573603, - "lon": -2.8983007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "GVIR type B post box L11 336 by Carron Company at Mossway Post Office Gillmoss/Croxteth.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 336", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Mossway Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8115041798, - "lat": 53.4531271, - "lon": -2.9020210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L11 839 by Carron Company on Altcross Road at Sovereign Road.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Altcross Road.jpg" - } -}, -{ - "type": "node", - "id": 8115223617, - "lat": 53.4512397, - "lon": -2.9031991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L11 173 by Carron Company on Stonebridge Lane near junction of Carr Lane East, Croxteth.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L11 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Stonebridge Lane at Carr Lane East.jpg" - } -}, -{ - "type": "node", - "id": 8117483596, - "lat": 50.9734489, - "lon": -2.3910195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA8 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8117483597, - "lat": 50.9794650, - "lon": -2.3974338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "4461143027249798", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA8 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2021-08-16", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 8117514981, - "lat": 50.9706536, - "lon": -2.3129989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-09", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT10 150D", - "ref:GB:uprn": "10015359230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8117514982, - "lat": 50.9735249, - "lon": -2.3227749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT10 95D", - "ref:GB:uprn": "10015335656", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8117514983, - "lat": 50.9753404, - "lon": -2.3250514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT10 120D", - "ref:GB:uprn": "10015305970", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8118455805, - "lat": 52.9460210, - "lon": -2.7312079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:15", - "ref": "SY13 668" - } -}, -{ - "type": "node", - "id": 8119613266, - "lat": 50.9672433, - "lon": -2.2838681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT10 102", - "ref:GB:uprn": "10015475186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8119717273, - "lat": 50.9306453, - "lon": -2.1872073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 135", - "ref:GB:uprn": "10015308738", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8119717274, - "lat": 50.9497230, - "lon": -2.2381894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref:GB:uprn": "10015449006", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8119743334, - "lat": 50.9141015, - "lon": -2.1057872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2024-03-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 56D", - "ref:GB:uprn": "10015287565", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8120825180, - "lat": 51.1635280, - "lon": -2.9880734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8121057309, - "lat": 51.3037056, - "lon": -0.7083573, - "tags": { - "amenity": "post_box", - "mapillary": "107827048291391", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-10-29" - } -}, -{ - "type": "node", - "id": 8121190869, - "lat": 50.8283842, - "lon": -0.4761837, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN16 1454D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121194065, - "lat": 50.8249694, - "lon": -0.4803892, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1892D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121218056, - "lat": 50.8321171, - "lon": -0.4857324, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN16 1451", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121229510, - "lat": 50.8339322, - "lon": -0.4809925, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1452D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121247875, - "lat": 50.8298479, - "lon": -0.4860370, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN16 1450D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121263064, - "lat": 50.8287706, - "lon": -0.4841856, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1453", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121272766, - "lat": 52.5475041, - "lon": -0.2775735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00" - } -}, -{ - "type": "node", - "id": 8121316200, - "lat": 50.8156445, - "lon": -0.4902343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "last_checked": "2020-09-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8121794271, - "lat": 51.8905646, - "lon": -2.1351383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL51 370D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8121934572, - "lat": 51.3567380, - "lon": -0.3268647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 310D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8121934573, - "lat": 51.3511319, - "lon": -0.3382782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 311", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8122185836, - "lat": 51.6823485, - "lon": -0.3993255, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8122244597, - "lat": 51.8951438, - "lon": -5.0459915, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8124303287, - "lat": 53.3002915, - "lon": -1.4524749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S18 980", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8124640506, - "lat": 51.4172615, - "lon": -0.7469493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG12 43D" - } -}, -{ - "type": "node", - "id": 8125078854, - "lat": 55.9627989, - "lon": -3.6812299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EH49 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8125164109, - "lat": 55.9680738, - "lon": -3.6960029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 214D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8125164115, - "lat": 55.9731393, - "lon": -3.7012617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 210D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8125180240, - "lat": 55.9746965, - "lon": -3.7080500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 91D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8126980144, - "lat": 51.7097642, - "lon": -2.2346654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL5 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8126986993, - "lat": 51.5066849, - "lon": 0.0727056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "577982503952314", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8127014067, - "lat": 51.7284163, - "lon": -2.2558112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8127332885, - "lat": 51.0728525, - "lon": -1.7930751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP1 217D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8127349095, - "lat": 51.6119111, - "lon": -0.2180556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8127410721, - "lat": 51.6070598, - "lon": -0.2180743, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8128848789, - "lat": 50.3675259, - "lon": -4.1505351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8129345850, - "lat": 51.5527296, - "lon": -3.3165117, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 8129345851, - "lat": 51.5521323, - "lon": -3.3214323, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8131403887, - "lat": 51.6422519, - "lon": 0.0738573, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IG10 109" - } -}, -{ - "type": "node", - "id": 8131404188, - "lat": 51.6428215, - "lon": 0.0790531, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "IG10 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8132393618, - "lat": 53.4621910, - "lon": -1.4674134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "Inside shop entrance", - "post_box:type": "pillar", - "ref": "S35 1632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8140162773, - "lat": 51.5072113, - "lon": 0.0657338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8140235489, - "lat": 52.6440429, - "lon": -1.2371656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8142444175, - "lat": 53.2009581, - "lon": -2.8743097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8142444176, - "lat": 53.2076039, - "lon": -2.8705402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8142444177, - "lat": 53.2053703, - "lon": -2.8776433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 45" - } -}, -{ - "type": "node", - "id": 8143382550, - "lat": 51.6074818, - "lon": 0.0827247, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IG7 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8143466775, - "lat": 52.0425138, - "lon": -3.1988215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "680737430145037", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 8143547048, - "lat": 52.0654775, - "lon": -3.1498256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "532712591996300", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 8144028164, - "lat": 51.3666109, - "lon": -0.3459701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8144029047, - "lat": 51.3753417, - "lon": -0.3412762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 313D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8144029048, - "lat": 51.3778162, - "lon": -0.3427662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 236D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8144040243, - "lat": 51.3593401, - "lon": -0.3438840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT10 873D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8144040249, - "lat": 51.3630425, - "lon": -0.3487475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8144040252, - "lat": 51.3611801, - "lon": -0.3473588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT10 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8144040253, - "lat": 51.3586989, - "lon": -0.3474527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 182D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8144040254, - "lat": 51.3558213, - "lon": -0.3448261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8144040255, - "lat": 51.3563037, - "lon": -0.3383801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 177D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8144360616, - "lat": 54.9197569, - "lon": -1.4031737, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8145174970, - "lat": 50.3606300, - "lon": -4.1083515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 668D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-24" - } -}, -{ - "type": "node", - "id": 8145174971, - "lat": 50.3639391, - "lon": -4.1166744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL4 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8146897860, - "lat": 53.4666039, - "lon": -2.9639366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "EIIR type B post box L9 854 on Bull Lane, Orrell Park.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L9 854", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Bull Lane, Orrell Park.jpg" - } -}, -{ - "type": "node", - "id": 8148510807, - "lat": 50.4181828, - "lon": -5.0649057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR7 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8148974085, - "lat": 53.1938769, - "lon": -2.8735130, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 50D" - } -}, -{ - "type": "node", - "id": 8148985351, - "lat": 53.2066399, - "lon": 0.0123165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE23 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8149025126, - "lat": 53.1901657, - "lon": 0.1025650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE23 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8149431504, - "lat": 53.1962934, - "lon": -2.8704674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 462D" - } -}, -{ - "type": "node", - "id": 8149481172, - "lat": 53.1758007, - "lon": -2.8620415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 151" - } -}, -{ - "type": "node", - "id": 8149540251, - "lat": 53.2107301, - "lon": -2.8716565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45; Su off", - "description": "Priority Post Box, additional Covid-19 testing kit collections on Saturday 15:15 and Sunday 15:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 400" - } -}, -{ - "type": "node", - "id": 8150124726, - "lat": 51.6441463, - "lon": -0.5234390, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8150781679, - "lat": 53.6918519, - "lon": -1.3138215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF8 404", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8151172239, - "lat": 50.9399993, - "lon": -2.5299360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref:GB:uprn": "10015319435", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 8151289223, - "lat": 51.5003717, - "lon": -0.2213789, - "tags": { - "amenity": "post_box", - "check_date": "2023-01-16", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "W14 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8151293119, - "lat": 51.4994302, - "lon": -0.2221659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "W6 22D", - "royal_cypher": "no", - "survey:date": "2020-11-22" - } -}, -{ - "type": "node", - "id": 8151806882, - "lat": 51.3705325, - "lon": -0.2035630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM1 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8152028739, - "lat": 53.4669584, - "lon": -2.2907416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8152028740, - "lat": 53.4669604, - "lon": -2.2907520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no" - } -}, -{ - "type": "node", - "id": 8152249591, - "lat": 53.2046898, - "lon": -2.8811852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 61D" - } -}, -{ - "type": "node", - "id": 8152249593, - "lat": 53.1977378, - "lon": -2.8784406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 2D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 8152249594, - "lat": 53.2000097, - "lon": -2.8767575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 74", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8152537288, - "lat": 51.2374546, - "lon": -1.3378089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG28 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8153013463, - "lat": 54.6590308, - "lon": -1.1992213, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8155119800, - "lat": 51.4230587, - "lon": -0.3283996, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8155666748, - "lat": 55.8019767, - "lon": -4.2952983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3335207016701508", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-07-20" - } -}, -{ - "type": "node", - "id": 8157784356, - "lat": 51.4193971, - "lon": -0.1177269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW16 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8157984207, - "lat": 52.3922480, - "lon": -2.2543233, - "tags": { - "amenity": "post_box", - "description": "Double Postbox (Franked and Stamped Mail Sections)" - } -}, -{ - "type": "node", - "id": 8158004719, - "lat": 52.3944078, - "lon": -2.2390697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8158533730, - "lat": 54.1254671, - "lon": -0.7845258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:35; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "YO17" - } -}, -{ - "type": "node", - "id": 8158826953, - "lat": 51.5868299, - "lon": -2.9826714, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 8162135247, - "lat": 52.2121227, - "lon": -0.2708293, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162228590, - "lat": 53.2079690, - "lon": -2.8651378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 404D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162228591, - "lat": 53.2069542, - "lon": -2.8587704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162228592, - "lat": 53.2035986, - "lon": -2.8650181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 32D" - } -}, -{ - "type": "node", - "id": 8162228593, - "lat": 53.2021663, - "lon": -2.8587899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 271" - } -}, -{ - "type": "node", - "id": 8162228594, - "lat": 53.2006546, - "lon": -2.8606324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 366" - } -}, -{ - "type": "node", - "id": 8162607248, - "lat": 51.5149728, - "lon": 0.0181959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E16 22D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8162634608, - "lat": 50.8103810, - "lon": -0.6699333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO22 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8162696695, - "lat": 51.5083866, - "lon": 0.0250038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E16 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8162710571, - "lat": 50.8174738, - "lon": -0.5956516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN18 1309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162734613, - "lat": 50.7914299, - "lon": -0.6939163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO21 88D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8162734615, - "lat": 50.7909331, - "lon": -0.6890213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PO21 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162809517, - "lat": 50.7933887, - "lon": -0.6885455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PO21 65D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8162854211, - "lat": 51.2435039, - "lon": -0.0130315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162887134, - "lat": 51.2325562, - "lon": -0.0313175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162905379, - "lat": 50.7853679, - "lon": -0.7014657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8162905380, - "lat": 50.7869095, - "lon": -0.6930445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PO21 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8165325591, - "lat": 53.4666192, - "lon": -2.9295709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR Type B post box L10 131 by McDowell & Stevens on Karonga Road, Fazakerley", - "manufacturer": "McDowell & Stevens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L10 131", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Karonga Road.jpg" - } -}, -{ - "type": "node", - "id": 8165592643, - "lat": 53.2006080, - "lon": -2.8944643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 100D" - } -}, -{ - "type": "node", - "id": 8165595772, - "lat": 53.4673152, - "lon": -2.9147164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "description": "GR type A post box L10 286 by Carron Company on Copplehouse Lane, Fazakerley", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L10 286", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box on Copplehouse Lane.jpg" - } -}, -{ - "type": "node", - "id": 8165601941, - "lat": 53.4694087, - "lon": -2.9234083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "GR type B post box L10 528 by Carron Company at Longmoor Lane Post Office, Fazakerley", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L10 528", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box at Longmoor Lane Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8165633950, - "lat": 53.4864298, - "lon": -2.9497161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "description": "EIIR post box Type A post box L10 738 at Old Roan Post Office (now inside an estate agents' office)", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L10 738", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Old Roan Post Office.jpg" - } -}, -{ - "type": "node", - "id": 8168250441, - "lat": 51.3334832, - "lon": -0.5000389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "GPS", - "source_1": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 8168312150, - "lat": 51.4254811, - "lon": -0.1224717, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8168715598, - "lat": 53.4671930, - "lon": -2.9073683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR lamp box pier L10 931 by Machan of Scotland on Amanda Road, Fazakerley", - "manufacturer": "Machan, Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L10 931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Amanda Road, Fazakerley.jpg" - } -}, -{ - "type": "node", - "id": 8168772974, - "lat": 53.4786752, - "lon": -2.9298976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "EIIR type B post box L10 893 by Carron Company on Felsted Drive, Aintree", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L10 893", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Felsted Drive, Aintree.jpg" - } -}, -{ - "type": "node", - "id": 8168827783, - "lat": 53.4796143, - "lon": -2.9369269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GR type B post box L10 180 by Carron Company in Aintree Village at Melling Road bridge", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L10 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "File:Post box in Aintree Village.jpg" - } -}, -{ - "type": "node", - "id": 8170136698, - "lat": 53.4854702, - "lon": -2.9416398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "GVIR type B post box L10 809 by Lion Foundry at the junction of Lincoln Drive and Winchester Avenue, Old Roan", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L10 809", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Post box at Winchester Avenue, Old Roan.jpg" - } -}, -{ - "type": "node", - "id": 8170144560, - "lat": 53.4830123, - "lon": -2.9361249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "description": "EIIR type K post box L10 865 by Carronade at Altway Post Office, Aintree.", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "L10 865", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box at Altway Post Office, Aintree.jpg" - } -}, -{ - "type": "node", - "id": 8170164626, - "lat": 51.2344036, - "lon": 0.0065017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8170360693, - "lat": 53.4909089, - "lon": -2.9498805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:30; Sa 11:45", - "description": "Cypherless type PB58 post box L10 370 in the vestibule of ASDA, Switch Island, Aintree", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "L10 370", - "royal_cypher": "no", - "wikimedia_commons": "File:Post box in Asda, Switch Island.jpg" - } -}, -{ - "type": "node", - "id": 8170396437, - "lat": 50.8493120, - "lon": -0.2257907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 660D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8170396656, - "lat": 50.8518657, - "lon": -0.2219369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN41 693D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8170456015, - "lat": 50.8423614, - "lon": -0.2200529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 658", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8170561894, - "lat": 50.8383254, - "lon": -0.2086864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN41 668D" - } -}, -{ - "type": "node", - "id": 8170580063, - "lat": 50.8406654, - "lon": -0.2111931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-03-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN41 657D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8171141151, - "lat": 53.1831701, - "lon": -3.3971657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8171674473, - "lat": 53.2130449, - "lon": -2.8487416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8171674474, - "lat": 53.2211980, - "lon": -2.8326604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8172063557, - "lat": 51.3794669, - "lon": -0.2433454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT4 195;KT4 1951", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8172660367, - "lat": 53.3454211, - "lon": -0.2270649, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8173142216, - "lat": 52.0229103, - "lon": -2.8401366, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8173699472, - "lat": 53.1812126, - "lon": -2.8694521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 375D" - } -}, -{ - "type": "node", - "id": 8173699473, - "lat": 53.1853304, - "lon": -2.8693205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH3 11D" - } -}, -{ - "type": "node", - "id": 8173699474, - "lat": 53.1878668, - "lon": -2.8686267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 130D" - } -}, -{ - "type": "node", - "id": 8173699475, - "lat": 53.1914903, - "lon": -2.8703932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8173735741, - "lat": 53.1901416, - "lon": -2.8651814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 65" - } -}, -{ - "type": "node", - "id": 8173735743, - "lat": 53.1876197, - "lon": -2.8632808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 171D" - } -}, -{ - "type": "node", - "id": 8173735744, - "lat": 53.1815701, - "lon": -2.8624763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 200D" - } -}, -{ - "type": "node", - "id": 8173952500, - "lat": 50.8560286, - "lon": -0.0989097, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN2 233D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8173952501, - "lat": 50.8520785, - "lon": -0.1033121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 234D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8173952502, - "lat": 50.8496097, - "lon": -0.1047273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049045, - "lat": 51.2560098, - "lon": 0.0018252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049046, - "lat": 51.2562893, - "lon": -0.0040143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049047, - "lat": 51.2575012, - "lon": -0.0057627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "metal_wall", - "post_box:type": "wall", - "ref": "RH8 190", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8175049048, - "lat": 51.2598235, - "lon": -0.0024717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049051, - "lat": 51.2575742, - "lon": 0.0149124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "RH8 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049052, - "lat": 51.2574429, - "lon": 0.0080339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 194D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8175049053, - "lat": 51.2533256, - "lon": -0.0039985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049054, - "lat": 51.2509497, - "lon": -0.0071132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH8 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175049055, - "lat": 51.2461736, - "lon": -0.0028351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH8 96D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8175049056, - "lat": 51.2426060, - "lon": 0.0164077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175105431, - "lat": 51.2598470, - "lon": 0.0048803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175105432, - "lat": 51.2634380, - "lon": 0.0040609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "RH8 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175105433, - "lat": 51.2649775, - "lon": -0.0163816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175105434, - "lat": 51.2651730, - "lon": -0.0125487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH8 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175105435, - "lat": 51.2641782, - "lon": -0.0082867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 340D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113299, - "lat": 51.2605041, - "lon": 0.0487384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN16 163", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8175113301, - "lat": 51.2668726, - "lon": 0.0604248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TN16 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113302, - "lat": 51.2679576, - "lon": 0.0655210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN16 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113303, - "lat": 51.2684904, - "lon": 0.0686424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN16 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113304, - "lat": 51.2599133, - "lon": 0.0801015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN16 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113305, - "lat": 51.2620760, - "lon": 0.0784492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "fixme": "Needs to be accessed on foot", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN16 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113306, - "lat": 51.2705468, - "lon": 0.0742335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "colour": "red", - "note": "Collectiion plate slipped, ref not visible 2020-11-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TN16 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113307, - "lat": 51.2772006, - "lon": 0.0740172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN16 160D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8175113308, - "lat": 51.2733221, - "lon": 0.0788147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "note": "Collectiion plate missing 2020-11-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN16 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113309, - "lat": 51.2829239, - "lon": 0.0471810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN16 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113310, - "lat": 51.2831504, - "lon": 0.0650996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TN16 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175113311, - "lat": 51.2763034, - "lon": 0.0187735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228541, - "lat": 51.2477258, - "lon": -0.0136498, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228552, - "lat": 51.2541637, - "lon": -0.0085288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH8 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228553, - "lat": 51.2538090, - "lon": 0.0003460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH8 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228554, - "lat": 51.2502584, - "lon": 0.0029464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228555, - "lat": 51.2498404, - "lon": 0.0088553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH8 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228556, - "lat": 51.2606157, - "lon": 0.0221872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228557, - "lat": 51.2496901, - "lon": 0.0228538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH8 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8175228558, - "lat": 51.2485993, - "lon": 0.0398737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH8 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Photo survey for wheelmap 10/6/24", - "wheelchair": "no", - "wheelchair:description": "Small Posting box on pole, slot at adult head height." - } -}, -{ - "type": "node", - "id": 8175228559, - "lat": 51.2510957, - "lon": 0.0364847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH8 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 8176465715, - "lat": 53.1960064, - "lon": -2.7036648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW6 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8176487817, - "lat": 53.2035781, - "lon": -2.7089953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW6 66D" - } -}, -{ - "type": "node", - "id": 8176487818, - "lat": 53.2042820, - "lon": -2.7137434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW6 418D" - } -}, -{ - "type": "node", - "id": 8176487819, - "lat": 53.2070189, - "lon": -2.7207128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW6 132D" - } -}, -{ - "type": "node", - "id": 8176487820, - "lat": 53.2088762, - "lon": -2.7156721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW6 419" - } -}, -{ - "type": "node", - "id": 8176487821, - "lat": 53.2071960, - "lon": -2.7124836, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW6 90D" - } -}, -{ - "type": "node", - "id": 8176487822, - "lat": 53.2067218, - "lon": -2.7011655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW6 121D" - } -}, -{ - "type": "node", - "id": 8176567363, - "lat": 51.5155396, - "lon": 0.0523121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E6 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8176576055, - "lat": 50.8151923, - "lon": -0.0969192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 212D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8176885669, - "lat": 51.4491186, - "lon": -2.1990891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN13 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8177063649, - "lat": 51.8973508, - "lon": -2.0963379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 129", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8177361207, - "lat": 51.4719945, - "lon": -3.2081331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 6", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361208, - "lat": 51.4728653, - "lon": -3.1994106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 218D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361209, - "lat": 51.4677644, - "lon": -3.1987682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 33D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361210, - "lat": 51.4670775, - "lon": -3.1880662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361211, - "lat": 51.4699321, - "lon": -3.1895371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 470D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361212, - "lat": 51.4702866, - "lon": -3.1857853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 183D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361213, - "lat": 51.4685284, - "lon": -3.1829990, - "tags": { - "amenity": "post_box", - "check_date": "2023-07-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 184D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361214, - "lat": 51.4729474, - "lon": -3.1836576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 195D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361215, - "lat": 51.4582406, - "lon": -3.1821808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361216, - "lat": 51.4559380, - "lon": -3.1851309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 171", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361917, - "lat": 51.4522350, - "lon": -3.1822495, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "colour": "red", - "covered": "yes", - "drive_through": "no", - "indoor": "yes", - "opening_hours": "Mo-Sa 07:00-22:00; Su 10:00-16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 25", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361918, - "lat": 51.4772728, - "lon": -3.1925823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 214D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361919, - "lat": 51.4792446, - "lon": -3.1988334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 216D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361920, - "lat": 51.4819475, - "lon": -3.1970548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CF11 260;CF11 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361921, - "lat": 51.4840590, - "lon": -3.1968699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 204D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikidata": "Q29503554" - } -}, -{ - "type": "node", - "id": 8177361922, - "lat": 51.4843516, - "lon": -3.1924404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF11 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177361923, - "lat": 51.4607731, - "lon": -3.2144276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF11 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8177444924, - "lat": 50.9273650, - "lon": -1.4247485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8177444925, - "lat": 50.9255289, - "lon": -1.4201003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO15 468D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8177527886, - "lat": 50.9311535, - "lon": -1.4331921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 208D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8177543324, - "lat": 50.9363180, - "lon": -1.4550858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8177686613, - "lat": 53.1834217, - "lon": -3.3951284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8177721228, - "lat": 51.0852281, - "lon": -1.3674398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO21 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8177727371, - "lat": 51.0701140, - "lon": -1.3158637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO23 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8177727372, - "lat": 51.0712081, - "lon": -1.3205360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 107", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8179137945, - "lat": 51.9723091, - "lon": -0.2404466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SG6 168D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8179281629, - "lat": 51.6084599, - "lon": 0.0689070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "IG7 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8180047836, - "lat": 55.1817489, - "lon": -1.5453038, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8180551830, - "lat": 53.2081762, - "lon": -2.8864088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH2 397" - } -}, -{ - "type": "node", - "id": 8181272043, - "lat": 52.3959179, - "lon": -2.2329808, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8184081598, - "lat": 53.5799201, - "lon": -2.4741695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8188911800, - "lat": 52.5818145, - "lon": -2.1259620, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8190264047, - "lat": 52.5906276, - "lon": -2.1821238, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8191799107, - "lat": 50.8232745, - "lon": -0.4240764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1640", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8191856207, - "lat": 50.8267607, - "lon": -0.4266213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1815D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8191888395, - "lat": 50.8283965, - "lon": -0.4313497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN13 1817D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8191963701, - "lat": 50.8189217, - "lon": -0.4243183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1637D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8191970398, - "lat": 50.8204740, - "lon": -0.4317325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1638D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8192059983, - "lat": 50.8135963, - "lon": -0.4105643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-10-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1645D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8192098213, - "lat": 53.2163757, - "lon": -2.8949490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 138D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8192154622, - "lat": 53.2125548, - "lon": -2.8881065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH2 16D" - } -}, -{ - "type": "node", - "id": 8192154623, - "lat": 53.2092935, - "lon": -2.8804002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 201D" - } -}, -{ - "type": "node", - "id": 8192154631, - "lat": 53.2139572, - "lon": -2.8808470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 289" - } -}, -{ - "type": "node", - "id": 8192154632, - "lat": 53.2125030, - "lon": -2.8771537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 411D" - } -}, -{ - "type": "node", - "id": 8192154634, - "lat": 53.2098532, - "lon": -2.8761611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 416D" - } -}, -{ - "type": "node", - "id": 8192154637, - "lat": 53.2101216, - "lon": -2.8657907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 383D" - } -}, -{ - "type": "node", - "id": 8193969644, - "lat": 55.8172819, - "lon": -4.2621311, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-14", - "collection_times": "Mo-Fr 16:15, Sa 13:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "G44 438", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8194254468, - "lat": 50.8459914, - "lon": -0.1713210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 244D" - } -}, -{ - "type": "node", - "id": 8194265233, - "lat": 50.8473400, - "lon": -0.1653214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 245D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8195289188, - "lat": 51.5935066, - "lon": -0.1370213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 34D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8195296406, - "lat": 51.2803495, - "lon": -1.0834260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG24 303", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8195405520, - "lat": 51.3025774, - "lon": -1.0458074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8195465220, - "lat": 51.3156509, - "lon": -1.0703880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "378064007315852", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG26 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-05" - } -}, -{ - "type": "node", - "id": 8196261590, - "lat": 50.8349666, - "lon": -0.1853616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 105D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8196263555, - "lat": 50.8334729, - "lon": -0.1868581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 04:30, Sa 11:30", - "note": "COVID priority postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8196268391, - "lat": 50.8307901, - "lon": -0.1884569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:30, Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN3 334", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8196384986, - "lat": 51.4239298, - "lon": 0.2019254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA2 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-12-05" - } -}, -{ - "type": "node", - "id": 8196537672, - "lat": 53.2257728, - "lon": -2.8764679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 483D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8196537673, - "lat": 53.2235843, - "lon": -2.8780648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 146D" - } -}, -{ - "type": "node", - "id": 8196537674, - "lat": 53.2194707, - "lon": -2.8796340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 166" - } -}, -{ - "type": "node", - "id": 8196537675, - "lat": 53.2159211, - "lon": -2.8718988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH2 410D" - } -}, -{ - "type": "node", - "id": 8196537676, - "lat": 53.2226454, - "lon": -2.8553536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH2 267D" - } -}, -{ - "type": "node", - "id": 8196774524, - "lat": 52.3717207, - "lon": 1.0709102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP22 7161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8196853039, - "lat": 50.8219410, - "lon": -0.0700863, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BN2 216D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8196853040, - "lat": 50.8357547, - "lon": -0.0799470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8196853041, - "lat": 50.8346475, - "lon": -0.0890801, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Collection plate states collection times as Mo-Fr 17:15, Sa 11:45, however a label below states \"the last collection from this postbox will be made no earlier than 9am Monday-Friday and 7am on Saturday\".", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN2 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8196864151, - "lat": 53.2462991, - "lon": -2.8289407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH2 357" - } -}, -{ - "type": "node", - "id": 8197551511, - "lat": 51.0955634, - "lon": -1.0817215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO24 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8197579243, - "lat": 51.1447919, - "lon": -1.1017025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SO24 152", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8197580309, - "lat": 51.1164245, - "lon": -1.0632241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "GU34 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8197603464, - "lat": 51.1046710, - "lon": -1.0499648, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU34 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8197749205, - "lat": 51.4271409, - "lon": 0.2014191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA2 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-12-05" - } -}, -{ - "type": "node", - "id": 8199969437, - "lat": 50.8250805, - "lon": -0.3935779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1659", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8200061467, - "lat": 51.7156981, - "lon": -2.4813489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL13 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8200171534, - "lat": 50.8248856, - "lon": -0.3797941, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1716D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8200177880, - "lat": 51.0542632, - "lon": -1.3381869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO22 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8200177885, - "lat": 51.0527002, - "lon": -1.3370852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO22 260D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8200217779, - "lat": 50.8365009, - "lon": -0.3856428, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "note": "This postbox is set back from the road near the bushes.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN14 1776D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8200239795, - "lat": 51.2026309, - "lon": -1.4787984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8200239796, - "lat": 51.2010876, - "lon": -1.4817398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8200239797, - "lat": 51.1985258, - "lon": -1.4873883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP10 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8201331895, - "lat": 51.4297970, - "lon": -1.6572967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:45", - "operator": "Royal Mail", - "ref": "SN8 70" - } -}, -{ - "type": "node", - "id": 8201454235, - "lat": 51.3903558, - "lon": -1.5821332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN8 173" - } -}, -{ - "type": "node", - "id": 8201454236, - "lat": 51.4691548, - "lon": -1.7174560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN8 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8201742347, - "lat": 53.2674390, - "lon": -2.3026531, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-15", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SK11 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8201743391, - "lat": 51.6113747, - "lon": 0.0962345, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG7 105" - } -}, -{ - "type": "node", - "id": 8201997817, - "lat": 53.2280588, - "lon": -2.2903103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "SK11 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8202954712, - "lat": 50.8237102, - "lon": -0.3753950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN14 1721D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8202997753, - "lat": 50.8243479, - "lon": -0.3688633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1738D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8203164044, - "lat": 50.8203980, - "lon": -0.3758933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1722D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8203309953, - "lat": 53.2712580, - "lon": -2.8182784, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 347D" - } -}, -{ - "type": "node", - "id": 8203309954, - "lat": 53.2724581, - "lon": -2.8123220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8203309955, - "lat": 53.2756311, - "lon": -2.8153725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 466D" - } -}, -{ - "type": "node", - "id": 8203317642, - "lat": 53.2228940, - "lon": -2.8328895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 27" - } -}, -{ - "type": "node", - "id": 8203777139, - "lat": 53.2656137, - "lon": -2.2742984, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-22", - "collection_times": "Mo-Fr 16:30, Sa 12:00", - "post_box:type": "wall", - "ref": "SK11 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8203827547, - "lat": 51.2063440, - "lon": -1.4736197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8203841597, - "lat": 51.2012244, - "lon": -1.4468424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8203884758, - "lat": 51.1805280, - "lon": -1.4777966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP11 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8203885430, - "lat": 51.2171535, - "lon": -1.4583660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP10 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8204273320, - "lat": 51.5219785, - "lon": -0.4462282, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8205334821, - "lat": 53.2275307, - "lon": -2.2512682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SK11 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8205356801, - "lat": 53.2350957, - "lon": -2.2392968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "lamp", - "ref": "SK11 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8205395272, - "lat": 53.3928832, - "lon": -2.9622073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George V type B post box L8 51 on Upper Warwick St, although RM list this as Princes Road.", - "manufacturer": "McDowall Stevens & Co.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8205531702, - "lat": 53.2356387, - "lon": -2.1264752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "SK11 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8205542573, - "lat": 53.2336328, - "lon": -2.1269356, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SK11 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8205543768, - "lat": 53.2221326, - "lon": -2.1257426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "wall", - "ref": "SK11 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8205618938, - "lat": 53.2245704, - "lon": -2.1668407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SK11 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8207397342, - "lat": 51.4385122, - "lon": -2.1885673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8207419897, - "lat": 51.9026695, - "lon": 0.3269554, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8207557039, - "lat": 53.2641130, - "lon": -2.8382390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 264" - } -}, -{ - "type": "node", - "id": 8210208718, - "lat": 52.4469757, - "lon": -2.1697383, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8211324472, - "lat": 54.5778303, - "lon": -1.3609355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8212831931, - "lat": 53.3909676, - "lon": -2.9815297, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "George VI post box L8 795 by Carron Company on Sefton Street, Waterfront Business Area, Liverpool", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L8 795", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:George VI post box on Sefton Street, Liverpool.jpg" - } -}, -{ - "type": "node", - "id": 8214356453, - "lat": 56.7946508, - "lon": -2.3368664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "colour": "#9D383A", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "DD10 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8214356454, - "lat": 56.7971153, - "lon": -2.3352463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "#9D383A", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD10 27D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8214997322, - "lat": 51.5501882, - "lon": -0.0866970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N1 71;N1 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8215325403, - "lat": 52.3342412, - "lon": -2.8795378, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8215514359, - "lat": 52.3558589, - "lon": -2.5894113, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8218514087, - "lat": 51.5274346, - "lon": -0.6598871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 140D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8220311192, - "lat": 53.2239289, - "lon": -2.8991682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH2 291D" - } -}, -{ - "type": "node", - "id": 8220311193, - "lat": 53.2238611, - "lon": -2.8940798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH2 352D" - } -}, -{ - "type": "node", - "id": 8220311194, - "lat": 53.2082118, - "lon": -2.8926160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "CH2 475", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8220321894, - "lat": 54.8678414, - "lon": -1.4955153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DH4 130" - } -}, -{ - "type": "node", - "id": 8220521897, - "lat": 50.8182506, - "lon": -0.3713150, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "description": "This postbox is in the entrance to Worthing Morrisons.", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "BN11 1625", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8220811140, - "lat": 50.8179805, - "lon": -0.3686467, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1688D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221023179, - "lat": 50.8182141, - "lon": -0.3627088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1682D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221043383, - "lat": 50.8233956, - "lon": -0.3602269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1679", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221044927, - "lat": 50.8199151, - "lon": -0.3587540, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN11 1681D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221070357, - "lat": 50.8208204, - "lon": -0.3541508, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN11 1680D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221106107, - "lat": 50.8264802, - "lon": -0.3638168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1676D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221117481, - "lat": 50.8250697, - "lon": -0.3643796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1677D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221151414, - "lat": 50.8311029, - "lon": -0.3617778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1735D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8221320813, - "lat": 51.3559922, - "lon": 0.0937533, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8221867617, - "lat": 51.4427668, - "lon": -1.0607075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG31 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8221923025, - "lat": 52.7977408, - "lon": -1.7131316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8222027805, - "lat": 50.8470068, - "lon": -0.1761168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8222081678, - "lat": 50.8451156, - "lon": -0.1654732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 243D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8222704053, - "lat": 51.1131032, - "lon": -0.6130336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8222704055, - "lat": 51.1105647, - "lon": -0.5937821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223240599, - "lat": 52.9648364, - "lon": -2.6790516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 707D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223253453, - "lat": 51.1182050, - "lon": -0.5740437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 48D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8223261508, - "lat": 50.8334210, - "lon": -0.3755161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN14 1730D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8223285595, - "lat": 50.8374971, - "lon": -0.3758992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN14 1731D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8223287074, - "lat": 51.3347832, - "lon": -0.3920028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 121D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223287075, - "lat": 51.3404482, - "lon": -0.3813746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 125D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223287076, - "lat": 51.3401617, - "lon": -0.3739066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8223287091, - "lat": 51.3360521, - "lon": -0.3834869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 103D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223287092, - "lat": 51.3317433, - "lon": -0.3810581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT11 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8223287094, - "lat": 51.3322423, - "lon": -0.3905500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 135D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223287095, - "lat": 51.3299212, - "lon": -0.3878293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT11 136", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223287096, - "lat": 51.3283483, - "lon": -0.3921101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8223325148, - "lat": 52.9639748, - "lon": -2.6866318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY13 616D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8223347505, - "lat": 51.3332496, - "lon": -0.4206136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT11 109D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_date": "2022-11-20" - } -}, -{ - "type": "node", - "id": 8223349626, - "lat": 51.3233412, - "lon": -0.4000139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT11 113D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8223349629, - "lat": 51.3180983, - "lon": -0.3893638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT11 107", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223349630, - "lat": 51.3186940, - "lon": -0.3892027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 137", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8223349682, - "lat": 51.3223997, - "lon": -0.3886893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 117D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223349713, - "lat": 51.3207587, - "lon": -0.3857794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 127D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223349714, - "lat": 51.3232699, - "lon": -0.3844860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223353733, - "lat": 51.3244099, - "lon": -0.3960730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8223381628, - "lat": 51.3335257, - "lon": -0.4182155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 142D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8223381648, - "lat": 51.3309977, - "lon": -0.4122229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT11 870", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223381672, - "lat": 51.3287541, - "lon": -0.4118463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "KT11 868;KT11 8681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223381673, - "lat": 51.3290707, - "lon": -0.4108552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT11 124;KT11 1241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223381690, - "lat": 51.3269381, - "lon": -0.4096678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8223979417, - "lat": 51.5308466, - "lon": -0.0720128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E2 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8223989346, - "lat": 51.7109373, - "lon": -0.1185516, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8223989347, - "lat": 51.7046272, - "lon": -0.1151526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8223989349, - "lat": 51.7083785, - "lon": -0.1081748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8224750584, - "lat": 53.2405365, - "lon": -2.8678645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:15; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH2 145" - } -}, -{ - "type": "node", - "id": 8224750585, - "lat": 53.2458660, - "lon": -2.8724284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH2 34" - } -}, -{ - "type": "node", - "id": 8224750586, - "lat": 53.2365967, - "lon": -2.8480661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH2 359" - } -}, -{ - "type": "node", - "id": 8225357722, - "lat": 53.8812924, - "lon": -1.9195047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8225706209, - "lat": 53.5799421, - "lon": -1.7693003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 135D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8226005660, - "lat": 51.1311102, - "lon": -0.6141682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8227316168, - "lat": 53.2594503, - "lon": -2.3087891, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-04", - "collection_times": "Mo-Fr 17:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "WA16 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8227399558, - "lat": 53.2615770, - "lon": -2.3221583, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WA16 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8227424716, - "lat": 53.2630574, - "lon": -2.3310536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8227426317, - "lat": 51.4083451, - "lon": -0.0506072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR3 216", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8227538070, - "lat": 53.2429233, - "lon": -2.2968632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "post_box:type": "lamp", - "ref": "SK11 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8227746138, - "lat": 53.2685320, - "lon": -2.8031489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "CH2 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8227754417, - "lat": 51.4346430, - "lon": 0.3314226, - "tags": { - "addr:postcode": "DA11 8HB", - "addr:street": "Springhead Road", - "amenity": "post_box", - "name": "Springhead Enterprise Park" - } -}, -{ - "type": "node", - "id": 8228443975, - "lat": 53.1969483, - "lon": -2.8547801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8230678559, - "lat": 51.4443686, - "lon": -1.6016865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1136864823483041", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SN8 104D", - "royal_cypher": "EIIR", - "survey:date": "2021-02-15" - } -}, -{ - "type": "node", - "id": 8230678560, - "lat": 51.4397410, - "lon": -1.6218111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 110", - "ref:GB:uprn": "10015362198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8230958635, - "lat": 51.3588622, - "lon": -1.7776421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 88" - } -}, -{ - "type": "node", - "id": 8231221271, - "lat": 51.5896870, - "lon": -0.2539273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231245174, - "lat": 51.5852954, - "lon": -0.2493827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231256705, - "lat": 51.5776491, - "lon": -0.2566796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231256706, - "lat": 51.5941669, - "lon": -0.2849815, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 759", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231265998, - "lat": 51.5959619, - "lon": -0.2872821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 766", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231265999, - "lat": 51.5955170, - "lon": -0.2792827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 774", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231266000, - "lat": 51.5950414, - "lon": -0.2739396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 739", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231299053, - "lat": 51.5955422, - "lon": -0.2688645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 738", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231299054, - "lat": 51.5970423, - "lon": -0.2634319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 736", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231299055, - "lat": 51.5940478, - "lon": -0.2621602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW9 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8231308542, - "lat": 51.7964523, - "lon": -0.0785957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "SG14 64" - } -}, -{ - "type": "node", - "id": 8231316979, - "lat": 51.4861050, - "lon": -3.1661761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "note": "Also for parcels. No reference code visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CF24 144P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8231328043, - "lat": 52.7231061, - "lon": -1.1386775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE12 64D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 8231328045, - "lat": 52.7208817, - "lon": -1.1383034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE12 54D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 8231328046, - "lat": 52.7175934, - "lon": -1.1456761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8231364158, - "lat": 52.7103018, - "lon": -1.1620899, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8231419334, - "lat": 52.7091882, - "lon": -1.1380177, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8232409788, - "lat": 52.6753089, - "lon": -0.7244094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8234639517, - "lat": 51.5530628, - "lon": -0.0562706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "556319926272828", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8235793882, - "lat": 51.4799732, - "lon": -3.1727807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF10 23", - "royal_cypher": "EIIR", - "survey:date": "2020-12-16" - } -}, -{ - "type": "node", - "id": 8235862613, - "lat": 51.0034730, - "lon": -1.6652032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8235891788, - "lat": 50.9831533, - "lon": -1.6934918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8237279789, - "lat": 53.5464182, - "lon": -2.3416402, - "tags": { - "amenity": "post_box", - "colour": "red" - } -}, -{ - "type": "node", - "id": 8238484417, - "lat": 51.5524583, - "lon": -0.1118907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8238567984, - "lat": 53.2055884, - "lon": -2.8482870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 317D" - } -}, -{ - "type": "node", - "id": 8238567985, - "lat": 53.2074217, - "lon": -2.8295337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 188" - } -}, -{ - "type": "node", - "id": 8238567987, - "lat": 53.2172871, - "lon": -2.7424367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 191", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8238567988, - "lat": 53.2336446, - "lon": -2.7399117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 348D" - } -}, -{ - "type": "node", - "id": 8238567989, - "lat": 53.2238927, - "lon": -2.7957475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 78D" - } -}, -{ - "type": "node", - "id": 8238567991, - "lat": 53.2156562, - "lon": -2.7828361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 376D" - } -}, -{ - "type": "node", - "id": 8238567992, - "lat": 53.2164505, - "lon": -2.7888458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 58D" - } -}, -{ - "type": "node", - "id": 8238567993, - "lat": 53.2106311, - "lon": -2.7947187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8238740033, - "lat": 54.9834547, - "lon": -1.6875782, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8240187224, - "lat": 51.5876291, - "lon": -0.2517807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NW9 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8240187225, - "lat": 51.5859493, - "lon": -0.2753513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "NW9 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8240781017, - "lat": 50.5300484, - "lon": -3.6142792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15, Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "TQ12 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8240783859, - "lat": 53.5475698, - "lon": -2.3356421, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8242280896, - "lat": 51.3865938, - "lon": -2.7863186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BS49 221" - } -}, -{ - "type": "node", - "id": 8242284840, - "lat": 51.3935397, - "lon": -2.7738602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Wall-mounted, within gates of Beauty Time Salon.", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS49 1020D" - } -}, -{ - "type": "node", - "id": 8242630057, - "lat": 51.3315838, - "lon": -0.7573725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "526931238439024", - "post_box:type": "pillar", - "survey:date": "2019-10-20" - } -}, -{ - "type": "node", - "id": 8242804203, - "lat": 51.5966602, - "lon": -3.9956828, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8242981949, - "lat": 54.0185994, - "lon": -0.3898756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "new post box erected here after post office down the road closed down", - "post_box:type": "lamp", - "ref": "YO25 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8242995520, - "lat": 51.4256625, - "lon": 0.2494072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA2 378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8243157764, - "lat": 53.1953544, - "lon": -2.8643120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 432D" - } -}, -{ - "type": "node", - "id": 8243157765, - "lat": 53.1929302, - "lon": -2.8616610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 109D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 8243157766, - "lat": 53.1931935, - "lon": -2.8569130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 128D" - } -}, -{ - "type": "node", - "id": 8243157767, - "lat": 53.1920497, - "lon": -2.8532359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 405D" - } -}, -{ - "type": "node", - "id": 8243157768, - "lat": 53.1927990, - "lon": -2.8501543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 431D" - } -}, -{ - "type": "node", - "id": 8243157772, - "lat": 53.1959034, - "lon": -2.8597314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 403" - } -}, -{ - "type": "node", - "id": 8243157773, - "lat": 53.1997240, - "lon": -2.8533456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 165D" - } -}, -{ - "type": "node", - "id": 8243157774, - "lat": 53.2025275, - "lon": -2.8508918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 93D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8243604746, - "lat": 51.8101845, - "lon": -0.0295805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "note": "Inside Post Office", - "ref": "SG12 18" - } -}, -{ - "type": "node", - "id": 8243887046, - "lat": 50.9754373, - "lon": -1.6536898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8243925332, - "lat": 50.9903925, - "lon": -1.6327599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 374", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8243972710, - "lat": 53.8107783, - "lon": -0.8467600, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8245436955, - "lat": 52.9178340, - "lon": -2.6524950, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8245650081, - "lat": 53.1917279, - "lon": -2.8777437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CH3 81D" - } -}, -{ - "type": "node", - "id": 8245650083, - "lat": 53.1881533, - "lon": -2.8510913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 91D" - } -}, -{ - "type": "node", - "id": 8245650084, - "lat": 53.1854752, - "lon": -2.8590478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 330" - } -}, -{ - "type": "node", - "id": 8245650085, - "lat": 53.1825308, - "lon": -2.8582651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 150D" - } -}, -{ - "type": "node", - "id": 8246592666, - "lat": 52.4053177, - "lon": -2.6568809, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8247922347, - "lat": 54.3469978, - "lon": -1.4478055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "mapillary": "744767382858006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL6 47", - "survey:date": "2020-01-08" - } -}, -{ - "type": "node", - "id": 8249769057, - "lat": 51.9418670, - "lon": -1.5483890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "On exterior wall of building, within the covered passage for the road", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "OX7 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8252434754, - "lat": 55.9219303, - "lon": -3.1350115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EH16 539" - } -}, -{ - "type": "node", - "id": 8252560551, - "lat": 51.5563646, - "lon": -2.2856948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL9 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-04-24" - } -}, -{ - "type": "node", - "id": 8252588086, - "lat": 51.5251600, - "lon": -2.2783730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL9 293", - "survey:date": "2020-12-22" - } -}, -{ - "type": "node", - "id": 8252606622, - "lat": 51.4624205, - "lon": -2.3266059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN14 327" - } -}, -{ - "type": "node", - "id": 8252757705, - "lat": 51.4520263, - "lon": -2.3606853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "drive_through": "no", - "mapillary": "181174307113212", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SN14 13", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 8253673864, - "lat": 53.6375880, - "lon": -2.4046338, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8254204117, - "lat": 51.5852842, - "lon": -0.0791414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8254682800, - "lat": 52.5082365, - "lon": -3.1855597, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8254724051, - "lat": 54.5762987, - "lon": -5.9439996, - "tags": { - "addr:city": "Belfast", - "addr:street": "Malone Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8256186477, - "lat": 52.7613132, - "lon": 1.1248043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:design": "hovis", - "post_box:type": "lamp", - "ref": "NR10 1028", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8256216318, - "lat": 50.3345396, - "lon": -4.8707924, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PL26 163", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8257378472, - "lat": 51.6476826, - "lon": -0.5148659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "WD3 188D" - } -}, -{ - "type": "node", - "id": 8257873986, - "lat": 52.3232191, - "lon": -0.2997060, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8257930673, - "lat": 51.8144491, - "lon": -1.6270481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX18 415D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8258384811, - "lat": 53.1534717, - "lon": -2.8317942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8258384815, - "lat": 53.1394079, - "lon": -2.8421488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 123" - } -}, -{ - "type": "node", - "id": 8258384816, - "lat": 53.1286349, - "lon": -2.8702335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 156" - } -}, -{ - "type": "node", - "id": 8258394818, - "lat": 53.1022527, - "lon": -2.8710013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 157" - } -}, -{ - "type": "node", - "id": 8258394820, - "lat": 53.0822001, - "lon": -2.8712336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 319D" - } -}, -{ - "type": "node", - "id": 8258394821, - "lat": 53.0734208, - "lon": -2.8614293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 24D" - } -}, -{ - "type": "node", - "id": 8258394822, - "lat": 53.0693602, - "lon": -2.8254552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 734" - } -}, -{ - "type": "node", - "id": 8258394823, - "lat": 53.0830049, - "lon": -2.8237180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY14 623" - } -}, -{ - "type": "node", - "id": 8258645641, - "lat": 51.8636351, - "lon": 0.1687483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CM23 175D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8259638197, - "lat": 52.6431704, - "lon": -0.3158280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2020-12-21", - "operator": "Royal Mail", - "photo": "https://www.geograph.org.uk/photo/4772163", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8260334697, - "lat": 52.9674524, - "lon": -2.6725320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 732D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8261061283, - "lat": 53.6382690, - "lon": -2.3972620, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8262068652, - "lat": 51.5699416, - "lon": -0.3176946, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8264606803, - "lat": 51.0537640, - "lon": -2.7329810, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA11 41D" - } -}, -{ - "type": "node", - "id": 8264606806, - "lat": 51.0224596, - "lon": -2.8717353, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA10 392", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8264606808, - "lat": 51.0037256, - "lon": -2.9341286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-03-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "749847830119525", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA3 25D", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 8264869699, - "lat": 53.1378162, - "lon": -3.3212432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8264886222, - "lat": 53.1452108, - "lon": -3.3129868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8264886224, - "lat": 53.1492775, - "lon": -3.2966791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "note": "Box is further south than shown on Google StreetView", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8264886239, - "lat": 53.1419560, - "lon": -3.2906938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8265091060, - "lat": 52.6683920, - "lon": -0.7462539, - "tags": { - "amenity": "post_box", - "source": "GPS waypoint" - } -}, -{ - "type": "node", - "id": 8265121618, - "lat": 51.5557097, - "lon": -0.0983239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2020-12-27", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N5 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8265231798, - "lat": 54.6724195, - "lon": -5.5837281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BT19 609", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8265393270, - "lat": 53.8622256, - "lon": -1.0201354, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8265571471, - "lat": 50.7780500, - "lon": -1.9743101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 05:45, Sa 11:30", - "note": "was on Queen Annes Drive till 2015", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH21 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8267138597, - "lat": 51.1265328, - "lon": -2.7402314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "BA16 15" - } -}, -{ - "type": "node", - "id": 8268155472, - "lat": 51.3100234, - "lon": -0.7323263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8268342714, - "lat": 51.4183469, - "lon": 0.1848989, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-31", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DA2 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8268785635, - "lat": 53.9984074, - "lon": -1.5369859, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8270113141, - "lat": 51.5557279, - "lon": -1.7652241, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Southview Avenue Swindon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 312D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8270617372, - "lat": 55.8367366, - "lon": -4.2793758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8270759655, - "lat": 51.4232776, - "lon": -0.1300338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "SW16 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8270779880, - "lat": 53.4564782, - "lon": -2.6163500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 14", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8272072532, - "lat": 51.3221850, - "lon": -2.3288766, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA2 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8272073814, - "lat": 51.2308236, - "lon": -1.9561371, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP3 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8272123021, - "lat": 50.8067712, - "lon": -0.4964058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1478D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8272130441, - "lat": 50.8070500, - "lon": -0.5031549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN16 1435D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8272142767, - "lat": 50.8025157, - "lon": -0.5227625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN16 1431D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8272167611, - "lat": 50.8182042, - "lon": -0.5222207, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN17 1506D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8272170644, - "lat": 50.8093602, - "lon": -0.5193642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN17 1458D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8272170645, - "lat": 50.8074259, - "lon": -0.5264063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1459D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8272170646, - "lat": 50.8047423, - "lon": -0.5319578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1463D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8272264591, - "lat": 50.8132194, - "lon": -0.5781803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN17 1425D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8272264592, - "lat": 50.8089963, - "lon": -0.5684895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN17 1428D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8272405699, - "lat": 52.7188504, - "lon": -2.5306172, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8275207499, - "lat": 57.1704992, - "lon": -2.1357680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB24 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 8275246019, - "lat": 51.4259962, - "lon": -0.9710150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "parcel_pickup": "yes", - "post_box:type": "meter", - "ref": "RG2 656P" - } -}, -{ - "type": "node", - "id": 8275246033, - "lat": 51.4194770, - "lon": -0.9737754, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RG2 657P" - } -}, -{ - "type": "node", - "id": 8275411106, - "lat": 54.9811211, - "lon": -1.6784599, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8275760181, - "lat": 51.2843959, - "lon": -0.8360157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU51 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8275760182, - "lat": 51.2891937, - "lon": -0.8446638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "807340717228673", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU51 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-19" - } -}, -{ - "type": "node", - "id": 8275785809, - "lat": 51.2771916, - "lon": -0.8217843, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU51 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8275785810, - "lat": 51.2796445, - "lon": -0.8272401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU51 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8276008314, - "lat": 51.2568581, - "lon": -0.7636641, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8276435774, - "lat": 57.1572101, - "lon": -2.1459058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB16 66D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8276437398, - "lat": 51.3855802, - "lon": 0.2437354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DA4 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8276440059, - "lat": 51.3924002, - "lon": 0.2452558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8276500670, - "lat": 51.4295954, - "lon": -0.5214457, - "tags": { - "amenity": "post_box", - "mapillary": "505220964233996", - "post_box:type": "pillar", - "survey:date": "2020-02-22" - } -}, -{ - "type": "node", - "id": 8276707715, - "lat": 51.5463233, - "lon": -0.1759234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW3 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8278573900, - "lat": 57.1773787, - "lon": -2.0895980, - "tags": { - "addr:postcode": "AB23 8EA", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "ref": "AB23 499D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8278573905, - "lat": 57.1900051, - "lon": -2.1019820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AB23 563D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8278867722, - "lat": 57.1909816, - "lon": -2.1126314, - "tags": { - "addr:postcode": "AB22 8UL", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "drive_through": "no", - "ref": "AB22 565D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8278867728, - "lat": 57.1947902, - "lon": -2.1255522, - "tags": { - "addr:postcode": "AB22 8FG", - "amenity": "post_box", - "colour": "red" - } -}, -{ - "type": "node", - "id": 8278925254, - "lat": 51.5557357, - "lon": -0.0392515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8279458013, - "lat": 51.5199120, - "lon": -0.2239376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 30D" - } -}, -{ - "type": "node", - "id": 8279787695, - "lat": 57.1988213, - "lon": -2.1252064, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8279791838, - "lat": 57.1916625, - "lon": -2.1303395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AB22 634D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8279791859, - "lat": 57.1892297, - "lon": -2.1233847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "ref": "AB22 571D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8279837634, - "lat": 57.1657024, - "lon": -2.1378191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB24 145", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 8280212874, - "lat": 53.2176222, - "lon": -4.2072803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL61 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8280238795, - "lat": 51.2831649, - "lon": -0.7700135, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-03-12", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "drive_through": "no", - "post_box:type": "meter", - "ref": "GU14 26P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8280717140, - "lat": 57.1806346, - "lon": -2.0998377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "post_box:type": "pillar", - "ref": "AB22 443D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8280800706, - "lat": 51.3927454, - "lon": -1.5833663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN8 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8280810951, - "lat": 51.4098765, - "lon": -1.5738358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 118" - } -}, -{ - "type": "node", - "id": 8280852793, - "lat": 54.1131842, - "lon": -3.2356881, - "tags": { - "amenity": "post_box", - "post_box:type": "indoor_pillar", - "ref": "LA14 14" - } -}, -{ - "type": "node", - "id": 8280852794, - "lat": 54.1136805, - "lon": -3.2306430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LA14 56" - } -}, -{ - "type": "node", - "id": 8280852795, - "lat": 54.1117765, - "lon": -3.2284311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA14 155" - } -}, -{ - "type": "node", - "id": 8280852796, - "lat": 54.1117625, - "lon": -3.2284597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LA14 156" - } -}, -{ - "type": "node", - "id": 8280852797, - "lat": 54.1135202, - "lon": -3.2250474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "LA14 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8280852798, - "lat": 54.1111482, - "lon": -3.2258771, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA14 152" - } -}, -{ - "type": "node", - "id": 8280852799, - "lat": 54.1094449, - "lon": -3.2141625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA14 118", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8280852800, - "lat": 54.1105682, - "lon": -3.2195561, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LA14 60" - } -}, -{ - "type": "node", - "id": 8280852801, - "lat": 54.1126085, - "lon": -3.2210763, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA14 23" - } -}, -{ - "type": "node", - "id": 8280852802, - "lat": 54.1140097, - "lon": -3.2166847, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "LA14 83" - } -}, -{ - "type": "node", - "id": 8280859338, - "lat": 51.3951710, - "lon": -1.6031542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN8 122" - } -}, -{ - "type": "node", - "id": 8280893186, - "lat": 51.5575152, - "lon": -0.1316689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 29", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8280974693, - "lat": 57.1787415, - "lon": -2.1061667, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB22 8RF", - "addr:street": "Tarbothill Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "AB22 554D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8280974696, - "lat": 57.1792466, - "lon": -2.1104565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB22 909P" - } -}, -{ - "type": "node", - "id": 8280974705, - "lat": 57.1787341, - "lon": -2.1165940, - "tags": { - "addr:postcode": "AB22 8FD", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "AB22 564D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8281937021, - "lat": 54.9101425, - "lon": -2.2652331, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8281937022, - "lat": 54.9006165, - "lon": -2.2641280, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8282108541, - "lat": 53.5436899, - "lon": -2.6204507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN1 282", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8282252739, - "lat": 52.0080955, - "lon": -4.2268484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8282307904, - "lat": 52.0686249, - "lon": 1.1928098, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1332" - } -}, -{ - "type": "node", - "id": 8283534923, - "lat": 52.6649503, - "lon": -0.7389146, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8284035501, - "lat": 51.5583657, - "lon": -0.1200680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N7 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8284035502, - "lat": 51.5604221, - "lon": -0.1280957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N19 8" - } -}, -{ - "type": "node", - "id": 8284854545, - "lat": 51.5412963, - "lon": -0.6630396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 173" - } -}, -{ - "type": "node", - "id": 8284854546, - "lat": 51.5350011, - "lon": -0.6587824, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8284854547, - "lat": 51.5360604, - "lon": -0.6670275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 132" - } -}, -{ - "type": "node", - "id": 8284867725, - "lat": 51.4715825, - "lon": -1.5863724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN8 165" - } -}, -{ - "type": "node", - "id": 8284944249, - "lat": 51.4628530, - "lon": -2.5093289, - "tags": { - "amenity": "post_box", - "note": "Has no plate", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8284957417, - "lat": 52.9645891, - "lon": -2.3931131, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8285023781, - "lat": 51.4825421, - "lon": -1.6151418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 162" - } -}, -{ - "type": "node", - "id": 8285023782, - "lat": 51.4782756, - "lon": -1.6247210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 159" - } -}, -{ - "type": "node", - "id": 8285626060, - "lat": 55.6150712, - "lon": -2.8073406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD1 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8285905097, - "lat": 51.5200931, - "lon": -0.2256741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 40" - } -}, -{ - "type": "node", - "id": 8285917491, - "lat": 51.5170441, - "lon": -0.2199141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W10 19" - } -}, -{ - "type": "node", - "id": 8285931431, - "lat": 51.5171439, - "lon": -0.2156495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W10 5D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8285963830, - "lat": 51.5150970, - "lon": -0.2085642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "127421236436962", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-01-15" - } -}, -{ - "type": "node", - "id": 8286017654, - "lat": 52.7228097, - "lon": -1.1439511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8286039428, - "lat": 51.6208984, - "lon": 0.1176265, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8286073026, - "lat": 51.1809984, - "lon": -1.3770155, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "last_checked": "2021-01-02", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO21 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8286828604, - "lat": 51.4669986, - "lon": 0.0101594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8287490449, - "lat": 52.6401757, - "lon": -0.2776357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 8287491251, - "lat": 52.6559278, - "lon": -0.2931074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PE6 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8287713826, - "lat": 51.5071282, - "lon": -0.1378580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1Y 66D;SW1Y 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box SW1Y 66D and SW1Y 166D" - } -}, -{ - "type": "node", - "id": 8290347336, - "lat": 52.8199171, - "lon": 1.1798702, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8291790287, - "lat": 58.2149965, - "lon": -6.2398230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "HS2 38" - } -}, -{ - "type": "node", - "id": 8293148169, - "lat": 56.4074636, - "lon": -5.4740061, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8293282848, - "lat": 51.7944625, - "lon": 0.4555617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM3 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8293476236, - "lat": 52.3657512, - "lon": -2.2410487, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8293476237, - "lat": 52.3650414, - "lon": -2.2410554, - "tags": { - "amenity": "post_box", - "description": "Parcel box" - } -}, -{ - "type": "node", - "id": 8296347186, - "lat": 53.5369987, - "lon": -2.4310821, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8296376588, - "lat": 51.3513344, - "lon": -1.9946172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-26", - "wikimedia_commons": "File:Devizes Town Hall, Devizes, Wiltshire (geograph 5100760).jpg" - } -}, -{ - "type": "node", - "id": 8296798972, - "lat": 51.7849686, - "lon": 0.4531088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CM3 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8296817185, - "lat": 53.8297973, - "lon": -0.4345047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "drive_through": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8297057313, - "lat": 51.3478682, - "lon": -1.9979843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8297057314, - "lat": 51.3450702, - "lon": -1.9993935, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8297063642, - "lat": 52.6147137, - "lon": -0.2695548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "ref": "PE4 131" - } -}, -{ - "type": "node", - "id": 8297089124, - "lat": 51.3551733, - "lon": -1.9995667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8297641600, - "lat": 51.4487744, - "lon": -0.9372248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG6 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8297894549, - "lat": 52.4680891, - "lon": -2.1622008, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8298342699, - "lat": 53.7223484, - "lon": -2.6624547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR5 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8299954550, - "lat": 53.7240969, - "lon": -2.6810728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PR5 491", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8299954551, - "lat": 53.7331479, - "lon": -2.6811620, - "tags": { - "addr:city": "Preston", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR5 336", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8299954552, - "lat": 53.7392641, - "lon": -2.6821548, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR5 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8300472388, - "lat": 52.1859223, - "lon": -2.8561303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR4 717" - } -}, -{ - "type": "node", - "id": 8300472389, - "lat": 52.1872314, - "lon": -2.8554587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR4 307" - } -}, -{ - "type": "node", - "id": 8301472875, - "lat": 53.7255054, - "lon": -2.6548153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR5 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8301472876, - "lat": 53.7311851, - "lon": -2.6620157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PR5 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8301796792, - "lat": 53.4939195, - "lon": -1.2925528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "note": "there is a disused wall-mounted box behind the pillar box", - "post_box:type": "pillar", - "ref": "S64 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8302191281, - "lat": 53.5382627, - "lon": -2.4191166, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8302634629, - "lat": 53.6651721, - "lon": -1.1949317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "297321042022648", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2020-10-05" - } -}, -{ - "type": "node", - "id": 8303049156, - "lat": 51.4772907, - "lon": -0.9195706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:type": "wall", - "ref": "RG4 89", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8304657464, - "lat": 51.4311556, - "lon": -0.5262443, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8304764961, - "lat": 53.7219078, - "lon": -2.6860219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8304764962, - "lat": 53.7227638, - "lon": -2.6954793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 469", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8304764964, - "lat": 53.7297662, - "lon": -2.6885708, - "tags": { - "addr:city": "Preston", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305094464, - "lat": 51.3958582, - "lon": 0.1754033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR8 463P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8305552501, - "lat": 53.1832365, - "lon": -2.8560172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 472" - } -}, -{ - "type": "node", - "id": 8305693296, - "lat": 53.5308431, - "lon": -2.4335238, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8305792601, - "lat": 51.4861617, - "lon": -3.2160859, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-05-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 255D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792602, - "lat": 51.4892442, - "lon": -3.2141810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 272D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792603, - "lat": 51.4892067, - "lon": -3.2174448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 271D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792604, - "lat": 51.4955348, - "lon": -3.2203536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF5 262D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792605, - "lat": 51.5012160, - "lon": -3.2308736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 264D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792606, - "lat": 51.4940285, - "lon": -3.2287729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 267D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792607, - "lat": 51.4885619, - "lon": -3.2293320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 253D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792608, - "lat": 51.4860089, - "lon": -3.2300842, - "tags": { - "amenity": "post_box", - "check_date": "2023-10-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 246D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792609, - "lat": 51.4857301, - "lon": -3.2222007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 254D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8305792610, - "lat": 51.4827843, - "lon": -3.2153405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 224", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8306592920, - "lat": 53.1845775, - "lon": -2.8374454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 254" - } -}, -{ - "type": "node", - "id": 8306592921, - "lat": 53.1823910, - "lon": -2.8307971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 280D" - } -}, -{ - "type": "node", - "id": 8306592922, - "lat": 53.1823382, - "lon": -2.8361893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 332D" - } -}, -{ - "type": "node", - "id": 8307034357, - "lat": 53.3223923, - "lon": -3.3434121, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8307081438, - "lat": 51.4527876, - "lon": -3.2010573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF64 346D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8307081439, - "lat": 51.4483531, - "lon": -3.1939544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF64 345D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8307081440, - "lat": 51.4460077, - "lon": -3.1858255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF64 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8307090685, - "lat": 51.4997508, - "lon": -2.2240274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SN14 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8307102082, - "lat": 51.5011444, - "lon": -2.2606190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "478218813802174", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 8308409232, - "lat": 56.1815372, - "lon": -5.5353297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PA31 36D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8308491379, - "lat": 52.6278579, - "lon": -1.6767802, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8308816942, - "lat": 53.2012768, - "lon": -2.7975879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 148D" - } -}, -{ - "type": "node", - "id": 8308816943, - "lat": 53.1958098, - "lon": -2.7739555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 265D" - } -}, -{ - "type": "node", - "id": 8308816944, - "lat": 53.1975329, - "lon": -2.7639467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:15, Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 361" - } -}, -{ - "type": "node", - "id": 8308816945, - "lat": 53.1946453, - "lon": -2.7637399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 439D" - } -}, -{ - "type": "node", - "id": 8308816946, - "lat": 53.1973790, - "lon": -2.7421773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8308816951, - "lat": 53.1791039, - "lon": -2.7657417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:45, Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 88" - } -}, -{ - "type": "node", - "id": 8308816952, - "lat": 53.1715416, - "lon": -2.8187720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 192D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 8308816953, - "lat": 53.1668151, - "lon": -2.8234692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 438D" - } -}, -{ - "type": "node", - "id": 8308816954, - "lat": 53.1726489, - "lon": -2.8284786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH3 67D" - } -}, -{ - "type": "node", - "id": 8308922352, - "lat": 50.4609408, - "lon": -4.4255433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:00; Su off" - } -}, -{ - "type": "node", - "id": 8309134834, - "lat": 54.6037294, - "lon": -5.9017508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT3 404" - } -}, -{ - "type": "node", - "id": 8309134835, - "lat": 54.6037044, - "lon": -5.9017480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "description": "Franked mail only.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BT3 395P" - } -}, -{ - "type": "node", - "id": 8311993558, - "lat": 52.8169831, - "lon": 1.0851982, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8312985850, - "lat": 52.7575342, - "lon": -1.2175715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE11 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8314624075, - "lat": 51.5343036, - "lon": -3.0188529, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8314674152, - "lat": 51.4087517, - "lon": -2.4880072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8317080280, - "lat": 53.7331385, - "lon": -2.6988927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "PR1 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8319053675, - "lat": 52.0507790, - "lon": -0.7631941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "MK14 103D" - } -}, -{ - "type": "node", - "id": 8319725387, - "lat": 53.4225841, - "lon": -1.1937161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42264 -1.19377", - "post_box:type": "pillar", - "ref": "S66 173", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8319969600, - "lat": 51.1478959, - "lon": -2.9820223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "324739942353032", - "post_box:type": "lamp", - "ref": "TA6 998", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-05-27", - "survey:date": "2020-05-27" - } -}, -{ - "type": "node", - "id": 8321226016, - "lat": 53.7894886, - "lon": -2.7131418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR2 303", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8321509707, - "lat": 53.7301524, - "lon": -2.6975733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR2 349", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8321543047, - "lat": 51.4818557, - "lon": -3.2027974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8321745770, - "lat": 54.6177845, - "lon": -5.8522675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 569D" - } -}, -{ - "type": "node", - "id": 8321745775, - "lat": 54.6077707, - "lon": -5.8512511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 51D" - } -}, -{ - "type": "node", - "id": 8321745776, - "lat": 54.6035173, - "lon": -5.8622428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 712D" - } -}, -{ - "type": "node", - "id": 8321745777, - "lat": 54.6087004, - "lon": -5.8594757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 549D" - } -}, -{ - "type": "node", - "id": 8321745778, - "lat": 54.6135986, - "lon": -5.8620190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 776D" - } -}, -{ - "type": "node", - "id": 8321876185, - "lat": 56.0918167, - "lon": -3.1640884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY1 13", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8326296910, - "lat": 53.7364230, - "lon": -2.6868826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR5 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8326330008, - "lat": 53.7390645, - "lon": -2.6724549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8327200108, - "lat": 51.1040977, - "lon": 0.7134941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8327416073, - "lat": 52.1349303, - "lon": -2.2150835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WR5 532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8327665713, - "lat": 51.4656349, - "lon": -3.1668223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 178D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8327665715, - "lat": 51.4855155, - "lon": -3.1744270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8327665716, - "lat": 51.4834011, - "lon": -3.1772118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF10 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8327758178, - "lat": 51.3455486, - "lon": -1.9742119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8327931019, - "lat": 53.1543041, - "lon": -2.7703609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00, Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 101" - } -}, -{ - "type": "node", - "id": 8327931020, - "lat": 53.1544211, - "lon": -2.7571537, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 284D" - } -}, -{ - "type": "node", - "id": 8327931021, - "lat": 53.1480606, - "lon": -2.7324734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30, Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 143" - } -}, -{ - "type": "node", - "id": 8327931035, - "lat": 53.1617119, - "lon": -2.7314926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 144D" - } -}, -{ - "type": "node", - "id": 8327931037, - "lat": 53.1702136, - "lon": -2.7359569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00, Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW6 219" - } -}, -{ - "type": "node", - "id": 8328213742, - "lat": 51.1844406, - "lon": -0.3543599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH4 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8329231620, - "lat": 56.1399095, - "lon": -3.2531664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 190D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8329231621, - "lat": 56.1514709, - "lon": -3.2642065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY5 156D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8330319402, - "lat": 51.6773382, - "lon": 0.0920657, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8330369702, - "lat": 51.6707217, - "lon": 0.0955381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CM16 314D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8330371562, - "lat": 51.3502495, - "lon": -1.9844124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8330394123, - "lat": 53.5692247, - "lon": -2.5846946, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8330668532, - "lat": 51.6640542, - "lon": 0.0778374, - "tags": { - "amenity": "post_box", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8331940854, - "lat": 50.1737200, - "lon": -5.1066977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15, Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR10 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8332292365, - "lat": 54.9644867, - "lon": -1.7077521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE21 723" - } -}, -{ - "type": "node", - "id": 8332329799, - "lat": 52.5354452, - "lon": -1.8976457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B42 907", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "royal mail" - } -}, -{ - "type": "node", - "id": 8332354853, - "lat": 51.5852871, - "lon": -0.0181957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E17 29P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8332476979, - "lat": 53.7020561, - "lon": -0.8953822, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8335507232, - "lat": 51.4862434, - "lon": 0.0160632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-07-28", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE10 33", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8335507233, - "lat": 51.4869539, - "lon": 0.0022586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE10 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8336273342, - "lat": 53.7385357, - "lon": -2.7095444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 310", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8338452011, - "lat": 50.3795596, - "lon": -4.1625897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "126921933284509", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL3 161D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 8338452012, - "lat": 50.3824186, - "lon": -4.1639392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "320188646798743", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL3 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 8339138946, - "lat": 54.4279712, - "lon": -1.2171557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8340392341, - "lat": 53.8511883, - "lon": -1.5335504, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8340441135, - "lat": 53.8076088, - "lon": -1.5253510, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8340502087, - "lat": 53.5860887, - "lon": -0.6545222, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8340502088, - "lat": 53.5860987, - "lon": -0.6545286, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8340509583, - "lat": 53.5121307, - "lon": -1.1239364, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8340509584, - "lat": 53.5121253, - "lon": -1.1239477, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8345910222, - "lat": 54.5998613, - "lon": -5.8712476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 743D" - } -}, -{ - "type": "node", - "id": 8345910223, - "lat": 54.6003821, - "lon": -5.8768911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 233" - } -}, -{ - "type": "node", - "id": 8345914379, - "lat": 54.6117382, - "lon": -5.8529864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 742" - } -}, -{ - "type": "node", - "id": 8345914380, - "lat": 54.6003225, - "lon": -5.8591256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 501D" - } -}, -{ - "type": "node", - "id": 8346267946, - "lat": 54.6037757, - "lon": -5.8809348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT4 244" - } -}, -{ - "type": "node", - "id": 8346267947, - "lat": 54.6025630, - "lon": -5.8851821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT4 206" - } -}, -{ - "type": "node", - "id": 8353679774, - "lat": 50.7400979, - "lon": -1.7819920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8355002552, - "lat": 52.6220393, - "lon": -1.6514076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8355002573, - "lat": 52.6158064, - "lon": -1.6555048, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8355002603, - "lat": 52.6219689, - "lon": -1.6638792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8355670340, - "lat": 52.2923847, - "lon": 0.8977587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2197", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8355829339, - "lat": 52.0834612, - "lon": -4.2725485, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8357537831, - "lat": 52.2994645, - "lon": -2.7479477, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8358476298, - "lat": 53.2097111, - "lon": -2.9070791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 307D" - } -}, -{ - "type": "node", - "id": 8358507648, - "lat": 51.4003258, - "lon": -2.8444375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "covered": "no", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS21 41D" - } -}, -{ - "type": "node", - "id": 8360383281, - "lat": 51.5345005, - "lon": 0.0879649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IG11 178P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8360966188, - "lat": 53.8948969, - "lon": -1.9511145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8363984234, - "lat": 52.0428669, - "lon": -4.3084660, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8364446407, - "lat": 53.5286865, - "lon": -2.4170538, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8365299054, - "lat": 50.9432270, - "lon": -2.6685399, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8365428635, - "lat": 55.9247676, - "lon": -4.5853871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PA14 96" - } -}, -{ - "type": "node", - "id": 8365779289, - "lat": 54.5138008, - "lon": -1.2789196, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8365821479, - "lat": 54.4854761, - "lon": -1.8387656, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8365866032, - "lat": 51.6135590, - "lon": -1.8708316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8366731626, - "lat": 52.6092684, - "lon": -1.1430154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LE2 278", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8367639132, - "lat": 55.8907086, - "lon": -4.3585395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:15", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8367783905, - "lat": 53.5065983, - "lon": -2.2175946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "477731586637694", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-01-24" - } -}, -{ - "type": "node", - "id": 8368174464, - "lat": 51.3517718, - "lon": -2.0149347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 77", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8369496616, - "lat": 51.8997689, - "lon": -2.0501012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 49" - } -}, -{ - "type": "node", - "id": 8369597320, - "lat": 51.4152410, - "lon": -0.7706454, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "parcel" - } -}, -{ - "type": "node", - "id": 8370125917, - "lat": 51.5156086, - "lon": -0.1474497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-03-22", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "W1G 119P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8370926818, - "lat": 51.6640723, - "lon": -0.0846968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "ref": "EN2 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8371732697, - "lat": 53.2523025, - "lon": -3.4771311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "note": "Large box for parcels and franked mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "LL17 238", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8372386348, - "lat": 53.5300282, - "lon": -2.4228728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8375181534, - "lat": 51.5204847, - "lon": -0.9800745, - "tags": { - "amenity": "post_box", - "mapillary": "585355552362731", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2021-09-10" - } -}, -{ - "type": "node", - "id": 8376993149, - "lat": 51.8280555, - "lon": -2.2746692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 13:00", - "post_box:apertures": "2", - "post_box:type": "bin", - "ref": "GL2 410" - } -}, -{ - "type": "node", - "id": 8377734527, - "lat": 53.8131966, - "lon": -1.6250780, - "tags": { - "amenity": "post_box", - "fixme": "Survey required to confirm reference number and times" - } -}, -{ - "type": "node", - "id": 8379297492, - "lat": 53.4348932, - "lon": -2.9197131, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8381665362, - "lat": 51.4372180, - "lon": -0.0422254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8381870971, - "lat": 52.7485264, - "lon": -1.1453760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LE12 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8381870972, - "lat": 52.7729423, - "lon": -1.1231533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LE12 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8382216123, - "lat": 51.3215210, - "lon": -2.4366261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BA2 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8383630079, - "lat": 51.5112473, - "lon": -0.4667976, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8384082138, - "lat": 51.6654444, - "lon": -0.0797216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN2 59D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8384444948, - "lat": 51.3545675, - "lon": -1.9927225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8384475676, - "lat": 52.6208977, - "lon": -0.1078231, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8384475677, - "lat": 52.6217428, - "lon": -0.1000908, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8385224263, - "lat": 53.1663154, - "lon": -3.1117595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8385471626, - "lat": 53.7945596, - "lon": -1.7520248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "post_box:type": "meter", - "ref": "BD1 1001P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8387109281, - "lat": 51.0549313, - "lon": -1.3505147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8387445737, - "lat": 54.7912765, - "lon": -2.7291992, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "CA4 111" - } -}, -{ - "type": "node", - "id": 8387478329, - "lat": 53.8498996, - "lon": -1.8171262, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "BD16 630" - } -}, -{ - "type": "node", - "id": 8387662847, - "lat": 55.9836855, - "lon": -4.8336721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Clydebank", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "G84 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8388288935, - "lat": 50.8957930, - "lon": -2.5974091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 37", - "ref:GB:uprn": "10015452508", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8388710940, - "lat": 54.9659628, - "lon": -1.5868913, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "NE8 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8389006614, - "lat": 52.5380456, - "lon": -1.9107114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Priority postbox for covid deliveries on Saturday and Sundays", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "B42 507", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:collection_times": "survey February 2023" - } -}, -{ - "type": "node", - "id": 8390391810, - "lat": 52.7846757, - "lon": -2.9682142, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8394107116, - "lat": 51.6651320, - "lon": -0.0742126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN1 123D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8394107971, - "lat": 51.6698245, - "lon": -0.0803400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "EN2 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8394108919, - "lat": 51.7646417, - "lon": 0.1303056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8394594279, - "lat": 52.2686504, - "lon": 0.1884876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CB25 514", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8394788309, - "lat": 51.3527967, - "lon": -2.0019437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8395880444, - "lat": 55.8461777, - "lon": -4.1756105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "ref": "G32 609" - } -}, -{ - "type": "node", - "id": 8396185382, - "lat": 53.5229034, - "lon": -2.4243222, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8397713408, - "lat": 56.4776937, - "lon": -2.9738496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 13D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8397757268, - "lat": 56.4809961, - "lon": -2.9760665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 193D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8397798497, - "lat": 56.4843263, - "lon": -2.9480830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "DD4 164", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8397798500, - "lat": 56.4917675, - "lon": -2.9841403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 260D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8397798506, - "lat": 56.4916796, - "lon": -2.9734473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 297", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8399184026, - "lat": 53.5329040, - "lon": -2.4992408, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8399367127, - "lat": 51.6046482, - "lon": -3.3285315, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CF37 38", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8400048800, - "lat": 53.0780898, - "lon": -1.2469190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8400214966, - "lat": 53.8600913, - "lon": -2.1416118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BB8 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8400861045, - "lat": 52.4955364, - "lon": 1.3759148, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8400943039, - "lat": 51.2095292, - "lon": -1.5840434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "last_checked": "2021-12-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SP11 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8402903203, - "lat": 51.4644779, - "lon": -2.4055378, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8402953738, - "lat": 51.4790673, - "lon": -2.3770990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SN14 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8403306313, - "lat": 51.4685882, - "lon": -0.0389789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE4 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8403337915, - "lat": 53.7392024, - "lon": -2.7135477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-02-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR1 166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8403483070, - "lat": 53.0792845, - "lon": -1.2423287, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8404824630, - "lat": 52.6292857, - "lon": -2.9551084, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8405340439, - "lat": 52.6572931, - "lon": -2.9407057, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8406674734, - "lat": 53.7354716, - "lon": -2.7140384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2021-02-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 406", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8407519872, - "lat": 51.6666989, - "lon": -0.0156904, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8407519890, - "lat": 51.6690635, - "lon": -0.0164557, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8407970991, - "lat": 52.6274495, - "lon": -2.8497553, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8409334084, - "lat": 51.3654279, - "lon": -1.9741380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8410275096, - "lat": 53.0966825, - "lon": -1.2266788, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8411002034, - "lat": 51.3749514, - "lon": 0.1107634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR5 510D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8411379710, - "lat": 52.7960330, - "lon": -2.7348484, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8414961800, - "lat": 53.2529935, - "lon": -3.5062902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL17 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8416442750, - "lat": 53.6367376, - "lon": -1.6979059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8418512478, - "lat": 51.3512056, - "lon": -2.0187706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "mapillary": "374795383868054", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 82", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-02-23" - } -}, -{ - "type": "node", - "id": 8419204213, - "lat": 51.3564920, - "lon": -1.9418869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8419493125, - "lat": 52.6291898, - "lon": -1.6479012, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8420651396, - "lat": 52.0830853, - "lon": -0.0938177, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8420651573, - "lat": 51.3463932, - "lon": -0.8257289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "ref": "GU46 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8420651574, - "lat": 51.3382393, - "lon": -0.8272515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "GU46 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8420651575, - "lat": 51.3439984, - "lon": -0.8383311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "GU46 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8420651576, - "lat": 51.3410678, - "lon": -0.8459008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU46 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8420739174, - "lat": 52.0700232, - "lon": 0.9926362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1133", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8421022870, - "lat": 51.6811601, - "lon": -2.9641406, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP4 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8421194513, - "lat": 53.8923934, - "lon": -1.7358040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "LS29 880D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8421346231, - "lat": 53.4519898, - "lon": -2.7088843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA9 72" - } -}, -{ - "type": "node", - "id": 8422150738, - "lat": 53.5228058, - "lon": -2.4125132, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8423321826, - "lat": 53.2835185, - "lon": -1.5253009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S18 489", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8423321827, - "lat": 53.3003978, - "lon": -1.4276233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "S18 565D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8423321828, - "lat": 53.2863646, - "lon": -1.4416072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S18 418D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8423335796, - "lat": 53.1247294, - "lon": -2.7706987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 121D" - } -}, -{ - "type": "node", - "id": 8423436758, - "lat": 51.5558442, - "lon": -0.6151948, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8423815982, - "lat": 51.7759376, - "lon": 0.1243044, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8426648074, - "lat": 51.5777989, - "lon": -0.0774381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8428537168, - "lat": 54.8538973, - "lon": -1.8437783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8428627645, - "lat": 53.3754154, - "lon": -2.3424785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8430308060, - "lat": 51.6246985, - "lon": 0.0313153, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8432133618, - "lat": 54.1307775, - "lon": -3.2160556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8433197878, - "lat": 51.5165785, - "lon": -0.1472583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-01-24", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "W1U 120P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8434877849, - "lat": 53.2645868, - "lon": -1.3796244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S43 170D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8434877850, - "lat": 53.2597151, - "lon": -1.3893048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S43 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8434877851, - "lat": 53.2606235, - "lon": -1.4023302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8434877852, - "lat": 53.2546482, - "lon": -1.4085065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S43 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8434924669, - "lat": 51.5017523, - "lon": -3.1178928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "parcel", - "ref": "CF3 37", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8434924670, - "lat": 51.5017619, - "lon": -3.1179172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF3 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8435671785, - "lat": 53.5225328, - "lon": -2.3952883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8436147629, - "lat": 51.4046512, - "lon": -0.7558218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "RG12 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8436167905, - "lat": 51.4035801, - "lon": -0.3492229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 41D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8437133650, - "lat": 57.4323132, - "lon": -6.5742640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 08:45; Sa 08:45; Su off; PH off", - "drive_through": "no", - "inscription": "A later collection is made from Sligachan at 2 pm. Collection arrangements for May day, Christmas and New Year may vary. Please contact your local Customer Service Centre for further details.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV55 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8437593846, - "lat": 51.3252585, - "lon": -0.2696639, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "KT18 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8437637452, - "lat": 51.4069210, - "lon": -0.0173303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8437807717, - "lat": 51.7621997, - "lon": 0.1382174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8439558830, - "lat": 54.5916463, - "lon": -1.0197389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8439558834, - "lat": 54.5944601, - "lon": -1.0190828, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8439659409, - "lat": 53.7432678, - "lon": -1.9381197, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8440233697, - "lat": 53.5222787, - "lon": -2.3908160, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8440690618, - "lat": 51.5483729, - "lon": -0.1101290, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-20", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N7 17", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8440736510, - "lat": 53.3656645, - "lon": -2.3144854, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8440795185, - "lat": 53.3762031, - "lon": -2.3442595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "WA14 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8440863711, - "lat": 51.4885377, - "lon": -1.1873394, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8441051507, - "lat": 51.3661144, - "lon": -1.9673400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8441720053, - "lat": 53.5016204, - "lon": -1.3861843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 505D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8441724856, - "lat": 51.4338878, - "lon": -0.0497714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 26D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724857, - "lat": 51.4308291, - "lon": -0.0432772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724858, - "lat": 51.4300625, - "lon": -0.0342195, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE26 108;SE26 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey--", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 8441724859, - "lat": 51.4272848, - "lon": -0.0346359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724860, - "lat": 51.4246021, - "lon": -0.0319016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 43", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724861, - "lat": 51.4288902, - "lon": -0.0466415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE26 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724862, - "lat": 51.4247396, - "lon": -0.0436477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724863, - "lat": 51.4207396, - "lon": -0.0475607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724864, - "lat": 51.4219567, - "lon": -0.0557475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 34D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724865, - "lat": 51.4267137, - "lon": -0.0499536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724866, - "lat": 51.4292311, - "lon": -0.0524215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724867, - "lat": 51.4302407, - "lon": -0.0553510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724868, - "lat": 51.4328192, - "lon": -0.0562993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 30", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441724869, - "lat": 51.4276191, - "lon": -0.0585861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8441733346, - "lat": 53.5016514, - "lon": -1.3698419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8441733348, - "lat": 53.5057560, - "lon": -1.3780114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8442749619, - "lat": 51.5586848, - "lon": -0.0977689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-02-21", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N5 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8443139803, - "lat": 51.3654179, - "lon": -1.9741545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 650P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8443329287, - "lat": 52.7440338, - "lon": -1.8876038, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8444029044, - "lat": 51.3874455, - "lon": -0.3185448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8444029045, - "lat": 51.3818918, - "lon": -0.3150456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8444076769, - "lat": 51.3841057, - "lon": -0.3485618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 264D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8444076770, - "lat": 51.3876719, - "lon": -0.3497808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT10 173D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8444076771, - "lat": 51.3930304, - "lon": -0.3438525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT7 303D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8445153427, - "lat": 51.4371005, - "lon": -0.2017435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW19 96", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8445200718, - "lat": 51.8038157, - "lon": 0.5151742, - "tags": { - "amenity": "post_box", - "survey:date": "2021-01-31" - } -}, -{ - "type": "node", - "id": 8445200719, - "lat": 51.8384589, - "lon": 0.4921075, - "tags": { - "amenity": "post_box", - "survey:date": "2021-01-31" - } -}, -{ - "type": "node", - "id": 8445548855, - "lat": 52.6983981, - "lon": -2.5733271, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8446141420, - "lat": 51.2468726, - "lon": -0.7191292, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU12 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8447867767, - "lat": 51.9829788, - "lon": -4.7633037, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8447871319, - "lat": 53.4893067, - "lon": -0.1117983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 119" - } -}, -{ - "type": "node", - "id": 8448692192, - "lat": 51.4847499, - "lon": -0.2779992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W4 47D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8449334838, - "lat": 53.7203702, - "lon": -2.6473032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2020-02-23", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR5 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8449334839, - "lat": 53.7203890, - "lon": -2.6473291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2020-02-23", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR5 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8449639435, - "lat": 53.4208134, - "lon": -2.2254637, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8449665490, - "lat": 50.3891077, - "lon": -4.1302023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "PL3 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8449840755, - "lat": 51.4485185, - "lon": -2.2698202, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8450156279, - "lat": 53.5551167, - "lon": -3.0772021, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8450478009, - "lat": 52.6211425, - "lon": -2.1230481, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8450776996, - "lat": 54.5296842, - "lon": -1.3485767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "post_box:type": "pillar", - "ref": "TS16 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8454068040, - "lat": 52.8111364, - "lon": -2.9037060, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8454244536, - "lat": 53.3764503, - "lon": -2.3519050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8454393088, - "lat": 51.4026490, - "lon": -0.0370373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "post_box:type": "pillar", - "ref": "BR3 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8455402991, - "lat": 52.4378808, - "lon": -2.1312806, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8455524869, - "lat": 51.3522118, - "lon": -1.9893106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 76", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8456858552, - "lat": 51.7931936, - "lon": -2.1519396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL6 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8457429526, - "lat": 51.7313934, - "lon": -2.6923014, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP25 823", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8458035099, - "lat": 51.6155460, - "lon": -0.0174823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E4 45;E4 1045", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8458035100, - "lat": 51.6177694, - "lon": -0.0090090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8458908947, - "lat": 50.0968895, - "lon": -5.2704918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8459185915, - "lat": 51.7910390, - "lon": -2.1579979, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8459349929, - "lat": 51.8439886, - "lon": 0.2017876, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8460091192, - "lat": 52.6409561, - "lon": -1.5036635, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8461049329, - "lat": 51.6069058, - "lon": 0.0010159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E4 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8461270446, - "lat": 50.3428079, - "lon": -4.8266210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL25 208D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8462301692, - "lat": 54.1974908, - "lon": -1.1059960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO62 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8462301698, - "lat": 54.2025899, - "lon": -1.0835086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "YO62 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8462325088, - "lat": 54.1754446, - "lon": -1.0537515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:30", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "YO62 378", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8462453907, - "lat": 51.2967503, - "lon": -0.3567778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT22 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8462498477, - "lat": 54.1689847, - "lon": -1.2108664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "YO61 507D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8462572190, - "lat": 54.1206152, - "lon": -1.0378058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "YO61 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8462590606, - "lat": 54.1623798, - "lon": -1.1045154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "post_box:type": "wall", - "ref": "YO61 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8462610848, - "lat": 54.1556358, - "lon": -0.7004823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "YO17 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8463345885, - "lat": 54.2298035, - "lon": -6.3519448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8463465647, - "lat": 53.7468938, - "lon": -2.7129873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PR1 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8463513327, - "lat": 51.3485481, - "lon": -0.1667181, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post:city": "Carshalton", - "post:housename": "Outside Costcutters (Post Office)", - "post:housenumber": "13", - "post:postcode": "SM5 4NS", - "post:street": "Damson Way", - "ref": "SM5 295" - } -}, -{ - "type": "node", - "id": 8463814757, - "lat": 53.1374205, - "lon": -2.7579086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 49D" - } -}, -{ - "type": "node", - "id": 8463814758, - "lat": 53.1310883, - "lon": -2.7426414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 299" - } -}, -{ - "type": "node", - "id": 8463814759, - "lat": 53.1251178, - "lon": -2.7323281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CH3 300D" - } -}, -{ - "type": "node", - "id": 8463814760, - "lat": 53.1214279, - "lon": -2.7674876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH3 223" - } -}, -{ - "type": "node", - "id": 8463814762, - "lat": 53.1266274, - "lon": -2.7633165, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH3 306D" - } -}, -{ - "type": "node", - "id": 8464099260, - "lat": 51.3978711, - "lon": -0.3488521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 148D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8464099261, - "lat": 51.3950546, - "lon": -0.3499679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 262D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8464099262, - "lat": 51.3914437, - "lon": -0.3489876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8464430561, - "lat": 53.2595578, - "lon": -1.3605563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8464430562, - "lat": 53.2555735, - "lon": -1.3706954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S43 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8464451809, - "lat": 51.3982137, - "lon": -0.3428742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 60D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8464453906, - "lat": 53.2636920, - "lon": -1.3590081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8464453907, - "lat": 53.2535770, - "lon": -1.3711459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S43 261D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8464467821, - "lat": 53.2584579, - "lon": -1.3374728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8464467822, - "lat": 53.2741975, - "lon": -1.3476005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S43 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8464920946, - "lat": 51.5696459, - "lon": -1.6211075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN6 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8464923465, - "lat": 51.6422599, - "lon": -1.2077097, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8465123332, - "lat": 50.8367748, - "lon": -4.1511080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30, Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX21 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8465174762, - "lat": 52.9606363, - "lon": -0.5066342, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8467694472, - "lat": 51.9428113, - "lon": 0.3362248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8467983786, - "lat": 51.6464203, - "lon": -0.1539469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 225D" - } -}, -{ - "type": "node", - "id": 8467992306, - "lat": 51.6388947, - "lon": -0.1605390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 90" - } -}, -{ - "type": "node", - "id": 8468005149, - "lat": 53.1642546, - "lon": -2.2508101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8468013532, - "lat": 51.6301796, - "lon": -0.1786900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N20 18D" - } -}, -{ - "type": "node", - "id": 8468772081, - "lat": 52.5409310, - "lon": -3.0148011, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8468809068, - "lat": 50.8560557, - "lon": 0.5524667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8468809069, - "lat": 50.8583609, - "lon": 0.5509341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 29", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8468809070, - "lat": 50.8541917, - "lon": 0.5499808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8468809071, - "lat": 50.8556864, - "lon": 0.5562996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8468809072, - "lat": 50.8568058, - "lon": 0.5585407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 8468809073, - "lat": 50.8586854, - "lon": 0.5559036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8468809074, - "lat": 50.8611050, - "lon": 0.5555332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8468809075, - "lat": 50.8623297, - "lon": 0.5542150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN38 143", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8468809076, - "lat": 50.8524914, - "lon": 0.5527208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN38 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8473507267, - "lat": 52.5443881, - "lon": -0.9474840, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8473708872, - "lat": 54.4171830, - "lon": -1.9938529, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/2399082", - "note": "D at end of photographed reference number probably refers to collection on delivery (hence not included)", - "post_box:type": "wall", - "ref": "DL11 40" - } -}, -{ - "type": "node", - "id": 8474335885, - "lat": 51.5064912, - "lon": 0.2188971, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8476033937, - "lat": 51.4237789, - "lon": -0.0106523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 390D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476033938, - "lat": 51.4247767, - "lon": -0.0081477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 387D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476033939, - "lat": 51.4212850, - "lon": -0.0024052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 121D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476033940, - "lat": 51.4236458, - "lon": -0.0035133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BR1 464;BR1 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476033941, - "lat": 51.4265630, - "lon": -0.0032972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 374D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476033942, - "lat": 51.4307496, - "lon": -0.0034868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476033943, - "lat": 51.4321425, - "lon": 0.0041814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BR1 398D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8476257590, - "lat": 51.6484244, - "lon": -0.4763273, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8476304722, - "lat": 50.1439035, - "lon": -5.0908643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8477234896, - "lat": 53.0359363, - "lon": -2.2489131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8478613513, - "lat": 51.6075152, - "lon": -0.0211755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E4 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8478757580, - "lat": 52.4979179, - "lon": -2.8558643, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8480257909, - "lat": 51.7981155, - "lon": 0.0932557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "CM20 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8480292040, - "lat": 51.7746744, - "lon": -1.1893277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "note": "Priority Postbox during COVID-19 pandemic", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX3 568", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8482148556, - "lat": 53.5308123, - "lon": -2.4125145, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8482920505, - "lat": 52.9066846, - "lon": -2.4447144, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8483222318, - "lat": 52.8286233, - "lon": -2.3578346, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8483461676, - "lat": 50.8892845, - "lon": 0.5565693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 168", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 8483647184, - "lat": 53.7656686, - "lon": -1.8855593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "wall", - "ref": "HX2 150", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8484005436, - "lat": 51.5166961, - "lon": -0.1651817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W2 73D;W2 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8485417142, - "lat": 53.2753514, - "lon": -1.4588527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "S41 298P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8485636085, - "lat": 51.4812058, - "lon": 0.0223658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8485636086, - "lat": 51.4806957, - "lon": 0.0318258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8485636087, - "lat": 51.4763415, - "lon": 0.0349903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE7 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8489074079, - "lat": 53.3792158, - "lon": -2.3464298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00" - } -}, -{ - "type": "node", - "id": 8489137499, - "lat": 51.8544571, - "lon": -2.5967454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "528259214865411", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-07-11" - } -}, -{ - "type": "node", - "id": 8489664547, - "lat": 50.3919443, - "lon": -4.1183671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "pillar", - "ref": "PL3 190", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8491467389, - "lat": 50.7265650, - "lon": -2.9347653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DT7 32", - "ref:GB:uprn": "10015298808", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8491485583, - "lat": 50.7283528, - "lon": -2.9382423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DT7 71", - "ref:GB:uprn": "10015338880" - } -}, -{ - "type": "node", - "id": 8491522535, - "lat": 50.7313056, - "lon": -2.9320786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "drive_through": "no", - "mapillary": "133990885716968", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT7 45", - "ref:GB:uprn": "10015468120", - "source:position": "Mapillary 2022-06-23", - "survey:date": "2022-06-23" - } -}, -{ - "type": "node", - "id": 8492118855, - "lat": 55.8479433, - "lon": -4.4379088, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8492135158, - "lat": 57.4568426, - "lon": -3.3001713, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Sa 12:00; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 52", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8492164066, - "lat": 51.4275351, - "lon": -0.0703189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8492164067, - "lat": 51.4305571, - "lon": -0.0696182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE26 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8492164068, - "lat": 51.4308537, - "lon": -0.0652994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE26 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8492164069, - "lat": 51.4373385, - "lon": -0.0444464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE23 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8492164070, - "lat": 51.4395021, - "lon": -0.0398008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE23 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8493136462, - "lat": 50.7569030, - "lon": -1.8864289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 223", - "ref:GB:uprn": "10015367036", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8493206088, - "lat": 53.2391703, - "lon": -4.4350502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL63 321", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8493237704, - "lat": 53.3002987, - "lon": -4.0682198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL58 82", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8494076907, - "lat": 53.3049946, - "lon": -4.0835941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL58 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8494152128, - "lat": 52.4258072, - "lon": -0.1527335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE26 40" - } -}, -{ - "type": "node", - "id": 8494223530, - "lat": 51.3683519, - "lon": -0.3567834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 186D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8494255556, - "lat": 52.6351020, - "lon": -0.3445395, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8494272600, - "lat": 51.3721571, - "lon": -0.3688648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 246D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8494272601, - "lat": 51.3705653, - "lon": -0.3635774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8494429011, - "lat": 55.9084181, - "lon": -4.3364065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8494578545, - "lat": 51.4609435, - "lon": -0.3183438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 93D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8494824233, - "lat": 53.8002785, - "lon": -1.7689261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8495150269, - "lat": 51.3804093, - "lon": -0.3627168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 347D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8495150342, - "lat": 51.3822622, - "lon": -0.3704862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT10 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8495150343, - "lat": 51.3764249, - "lon": -0.3546377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8495150344, - "lat": 51.3800106, - "lon": -0.3583927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 312D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8495150346, - "lat": 51.3796800, - "lon": -0.3535862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8495150347, - "lat": 51.3849751, - "lon": -0.3544727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 174D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8495150348, - "lat": 51.3857738, - "lon": -0.3605633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 286", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8495150349, - "lat": 51.3818688, - "lon": -0.3563710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT10 271D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8495155603, - "lat": 52.6375852, - "lon": -0.4262063, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8495252928, - "lat": 52.6171930, - "lon": -0.4030717, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8495256521, - "lat": 52.6098883, - "lon": -0.4450657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE8 63" - } -}, -{ - "type": "node", - "id": 8497018505, - "lat": 53.2481901, - "lon": -3.4970021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8497718855, - "lat": 53.9169415, - "lon": -2.1794499, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8497744434, - "lat": 53.9257758, - "lon": -2.1762853, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8498418451, - "lat": 51.7621735, - "lon": -0.0006418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "meter", - "ref": "EN11 200" - } -}, -{ - "type": "node", - "id": 8498449098, - "lat": 51.1852319, - "lon": -0.6162426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "GU7 9501;GU7 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8498451700, - "lat": 52.8238255, - "lon": -3.4062218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "mapillary": "905493654248897", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY10 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-10-06" - } -}, -{ - "type": "node", - "id": 8498470457, - "lat": 53.7049984, - "lon": -2.6718220, - "tags": { - "amenity": "post_box", - "check_date": "2020-03-09", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR25 327", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8499022386, - "lat": 53.4462547, - "lon": -2.6866783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8499159570, - "lat": 55.6172656, - "lon": -2.8091399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 14:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD1 999", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8499703333, - "lat": 50.3673662, - "lon": -4.1212761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "577916086788194", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL4 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-10-30" - } -}, -{ - "type": "node", - "id": 8500287000, - "lat": 51.6116595, - "lon": 0.0183346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG8 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8500287001, - "lat": 51.6102935, - "lon": 0.0061528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E4 16D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8500287002, - "lat": 51.6065796, - "lon": 0.0219297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8501623128, - "lat": 53.1407547, - "lon": -3.8277232, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8502099053, - "lat": 52.9920521, - "lon": -2.1635034, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8502107301, - "lat": 50.4415020, - "lon": -4.0847378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL6 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8503127187, - "lat": 51.4032037, - "lon": -0.3547986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 25", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8503507188, - "lat": 53.4791869, - "lon": -3.0232816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR business box L22 368 on Crosby Road North, Waterloo", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L22 368", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Business post box on Crosby Road North.jpg" - } -}, -{ - "type": "node", - "id": 8503509768, - "lat": 53.4792474, - "lon": -3.0232918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "description": "EIIR Type A post box L22 373 by Carron Company on Crosby Road North, Waterloo", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "L22 373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Crosby Road North.jpg" - } -}, -{ - "type": "node", - "id": 8504756553, - "lat": 51.4810021, - "lon": -0.0262818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE8 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8505005209, - "lat": 51.7547693, - "lon": 0.0064340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 08:00", - "post_box:type": "pillar", - "ref": "EN11 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8505292861, - "lat": 51.3983667, - "lon": -2.8604230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8506133981, - "lat": 53.3977979, - "lon": -1.3239439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S60 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8507468817, - "lat": 53.5266495, - "lon": -2.4098942, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8507890706, - "lat": 53.3985803, - "lon": -1.2851435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "location": "53.39862 -1.28512", - "post_box:type": "wall", - "ref": "S66 165", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8508213894, - "lat": 53.4196552, - "lon": -1.2759354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508213895, - "lat": 53.4113094, - "lon": -1.2754326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S66 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508213896, - "lat": 53.4161714, - "lon": -1.2842813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S66 446", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508213897, - "lat": 53.4201558, - "lon": -1.2952496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S66 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508250667, - "lat": 53.4373311, - "lon": -1.1695781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "S66 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508528847, - "lat": 53.0320702, - "lon": -3.7015531, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508582657, - "lat": 53.0241938, - "lon": -3.7281053, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8508597772, - "lat": 52.9889765, - "lon": -3.5412205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LL21 560", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508602091, - "lat": 53.0406512, - "lon": -3.5930628, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8508630524, - "lat": 52.9952610, - "lon": -3.2110978, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8509431715, - "lat": 53.4605927, - "lon": -2.2138414, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8509555017, - "lat": 53.4284771, - "lon": -2.8413278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L34 874", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8509961190, - "lat": 51.4072666, - "lon": -0.3608859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 335D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8510215908, - "lat": 51.4032819, - "lon": -0.3642594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 349D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8510302432, - "lat": 51.4247616, - "lon": -0.1375601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 26D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8510834063, - "lat": 53.0269020, - "lon": -2.7627089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "lamp", - "ref": "SY14 711D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8511370318, - "lat": 51.3532033, - "lon": -1.9887108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "SN10 90", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8511961462, - "lat": 51.3970854, - "lon": -0.3630665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 317D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8512041553, - "lat": 50.7896762, - "lon": -2.1249157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 74", - "ref:GB:uprn": "10015460907", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8512041594, - "lat": 50.7874647, - "lon": -2.1342681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DT11 31", - "ref:GB:uprn": "10015269650", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8512077799, - "lat": 50.8468117, - "lon": -2.1548525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DT11 112", - "ref:GB:uprn": "10015294724", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8512104362, - "lat": 50.8382910, - "lon": -2.1455543, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT11 53", - "ref:GB:uprn": "10015276498", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8512104363, - "lat": 50.8322400, - "lon": -2.1367909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 29", - "ref:GB:uprn": "10015323266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8512135643, - "lat": 50.8505687, - "lon": -2.1591500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT11 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8512187615, - "lat": 50.8483340, - "lon": -2.1681808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT11 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8513163391, - "lat": 53.4516364, - "lon": -2.6959562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 115", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8513438168, - "lat": 51.9707641, - "lon": -2.7324230, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8514470442, - "lat": 57.3049712, - "lon": -2.0483348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB41 624", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8514582008, - "lat": 52.9413579, - "lon": -4.4200742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8514651727, - "lat": 53.0300993, - "lon": -4.2695121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "LL54 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8514838691, - "lat": 53.2943061, - "lon": -4.0875995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515117158, - "lat": 53.1900003, - "lon": -4.1987712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL56 97", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8515624604, - "lat": 50.8534651, - "lon": -2.1491676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 25", - "ref:GB:uprn": "10015397854", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515642448, - "lat": 50.8614517, - "lon": -2.1850257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "house_wall", - "post_box:type": "wall", - "ref": "DT11 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515661350, - "lat": 52.2725860, - "lon": -2.4397657, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8515669697, - "lat": 50.8591996, - "lon": -2.1598746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 117D", - "ref:GB:uprn": "10015328787", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515669699, - "lat": 50.8597769, - "lon": -2.1552663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT11 137D", - "ref:GB:uprn": "10015376279", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8515669700, - "lat": 50.8620197, - "lon": -2.1594656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DT11 17D", - "ref:GB:uprn": "10015428910", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515669701, - "lat": 50.8644741, - "lon": -2.1600580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 8", - "ref:GB:uprn": "10015389475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515683320, - "lat": 50.8702884, - "lon": -2.1600252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DT11 103", - "ref:GB:uprn": "10024744080", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515683352, - "lat": 50.8697175, - "lon": -2.1541652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT11 102", - "ref:GB:uprn": "10015288350", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515683353, - "lat": 50.8675485, - "lon": -2.1509667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 107", - "ref:GB:uprn": "10015476615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515683354, - "lat": 50.8632175, - "lon": -2.1523896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 174D", - "ref:GB:uprn": "10015430180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8515719072, - "lat": 51.6364188, - "lon": -0.1616347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 119D" - } -}, -{ - "type": "node", - "id": 8516318818, - "lat": 51.5646858, - "lon": -0.1491004, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-01", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "N6 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8518596325, - "lat": 51.6175631, - "lon": -0.3115595, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8518805268, - "lat": 52.6764865, - "lon": -0.4944972, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8518834979, - "lat": 51.4736153, - "lon": -0.0811762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8521008222, - "lat": 51.4869841, - "lon": 0.0237540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE7 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8521008223, - "lat": 51.4890735, - "lon": 0.0226543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE7 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8521591245, - "lat": 53.5187767, - "lon": -2.2716530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8521591266, - "lat": 53.5101794, - "lon": -2.2593968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8522102427, - "lat": 52.0165575, - "lon": -4.8109385, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8522341402, - "lat": 53.3932772, - "lon": -1.2495547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S66 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8522341403, - "lat": 53.3919246, - "lon": -1.2614373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8522341405, - "lat": 53.3895901, - "lon": -1.2711525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S66 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8522341406, - "lat": 53.3967830, - "lon": -1.2575851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "pillar", - "ref": "S66 171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8522341407, - "lat": 53.3911231, - "lon": -1.2570198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S66 141", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8522341408, - "lat": 53.3963711, - "lon": -1.2634845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S66 202", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8522345903, - "lat": 52.5546674, - "lon": -1.1569818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LE8 445" - } -}, -{ - "type": "node", - "id": 8522563605, - "lat": 56.3359011, - "lon": -3.2083029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY14 328D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8524533299, - "lat": 55.8708570, - "lon": -4.3087616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G11 403" - } -}, -{ - "type": "node", - "id": 8525205231, - "lat": 51.4922815, - "lon": -0.2789917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "meter", - "ref": "W4 73P", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8525205232, - "lat": 51.4933673, - "lon": -0.2815376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "W4 67D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8526319663, - "lat": 51.5328027, - "lon": 0.0223622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "mapillary": "773066960680788", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8526321462, - "lat": 51.4892604, - "lon": -0.0067819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8528174595, - "lat": 50.0960229, - "lon": -5.2734010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8528176152, - "lat": 50.0957396, - "lon": -5.2652303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8528176153, - "lat": 50.0927866, - "lon": -5.2652495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR13 79D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8528303993, - "lat": 52.0151705, - "lon": -0.2219141, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "postal_code": "SG5", - "ref": "SG5 110" - } -}, -{ - "type": "node", - "id": 8528730044, - "lat": 51.3557286, - "lon": -1.9775692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8530057090, - "lat": 51.3492510, - "lon": -0.8022584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8530057091, - "lat": 51.3705426, - "lon": -0.7926898, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8530057092, - "lat": 51.3747512, - "lon": -0.7897777, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8530057093, - "lat": 51.4101279, - "lon": -0.7739955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "drive_through": "no", - "post_box:type": "parcel", - "ref": "RG12 208P" - } -}, -{ - "type": "node", - "id": 8532496589, - "lat": 51.4530438, - "lon": 0.0619772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 53", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8533246933, - "lat": 51.4140203, - "lon": -0.3053951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "KT2 364", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8533552088, - "lat": 50.5444896, - "lon": -4.1472040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL19 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8534333456, - "lat": 51.7829542, - "lon": -1.5030767, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8534411081, - "lat": 51.3977535, - "lon": -0.3731677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8534411082, - "lat": 51.3992057, - "lon": -0.3846080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8534411083, - "lat": 51.4003825, - "lon": -0.3797297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 348", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8534411084, - "lat": 51.4017642, - "lon": -0.3782820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8534411085, - "lat": 51.4041387, - "lon": -0.3809753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 370D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8534411086, - "lat": 51.4059845, - "lon": -0.3755736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT8 67D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8534411087, - "lat": 51.4027561, - "lon": -0.3714276, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8536558800, - "lat": 50.3965386, - "lon": -4.1214607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL6 322D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8536558801, - "lat": 50.3969020, - "lon": -4.1149582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3018892641685586", - "post_box:type": "pillar", - "ref": "PL6 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 8536558809, - "lat": 50.3963213, - "lon": -4.1100695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:45", - "mapillary": "4361238480608051", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL6 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 8536558816, - "lat": 50.3965027, - "lon": -4.1047547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL6 301D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8536590325, - "lat": 50.3953419, - "lon": -4.0931417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "mapillary": "1451440815397885", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL6 163P", - "royal_cypher": "no", - "survey:date": "2023-08-13" - } -}, -{ - "type": "node", - "id": 8536987518, - "lat": 52.0683924, - "lon": -4.7476197, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8538140981, - "lat": 58.9521178, - "lon": -2.8495769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8538242264, - "lat": 51.4717234, - "lon": -0.2714222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SW14 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8538971715, - "lat": 51.6417831, - "lon": -0.1591057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 27" - } -}, -{ - "type": "node", - "id": 8541070055, - "lat": 51.4985843, - "lon": -3.1408475, - "tags": { - "amenity": "post_box", - "mapillary": "125906109812477", - "post_box:type": "pillar", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 8541460936, - "lat": 51.4787030, - "lon": -0.9971520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Outside 147 Upper Woodcote Road", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG4 327D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box in Upper Woodcote Road 2021-03-20 16.13.27.jpg" - } -}, -{ - "type": "node", - "id": 8541885468, - "lat": 51.4908219, - "lon": -0.1060707, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8541885471, - "lat": 51.4784533, - "lon": -0.1035247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8541958131, - "lat": 51.2542111, - "lon": -0.7583915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU11 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8543469051, - "lat": 55.8967649, - "lon": -4.3578353, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8543515481, - "lat": 54.8574033, - "lon": -1.5861257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8544301586, - "lat": 51.2789649, - "lon": -0.2164945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 73D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8544488137, - "lat": 51.2839609, - "lon": -0.2801413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT18 29D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8544488138, - "lat": 51.2860036, - "lon": -0.2738173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "KT18 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8544515986, - "lat": 51.2868364, - "lon": -0.2494367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "KT20 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8544515987, - "lat": 51.2768371, - "lon": -0.2469996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 67D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8544515991, - "lat": 51.2806668, - "lon": -0.2495370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 159D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8544515992, - "lat": 51.2780375, - "lon": -0.2425421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT20 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8544913067, - "lat": 54.6363709, - "lon": -2.1211472, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8545189727, - "lat": 54.3249991, - "lon": -5.7120605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 8546971658, - "lat": 53.1693334, - "lon": -1.7803279, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8548459774, - "lat": 53.4717579, - "lon": -1.9717932, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8549517332, - "lat": 51.4794434, - "lon": -0.9936955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG4 441D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Post box on Woodcote Way 2021-03-21 14.37.19.jpg" - } -}, -{ - "type": "node", - "id": 8549578985, - "lat": 51.4540409, - "lon": -2.4920518, - "tags": { - "amenity": "post_box", - "mapillary": "1168933780284505", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 8551411536, - "lat": 51.6071453, - "lon": -0.4823445, - "tags": { - "amenity": "post_box", - "ref": "UB9 94" - } -}, -{ - "type": "node", - "id": 8556997935, - "lat": 53.3826686, - "lon": -1.3020776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S26 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8557948045, - "lat": 52.9233813, - "lon": -4.4471602, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8558040066, - "lat": 51.6538849, - "lon": -0.4488872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8558101476, - "lat": 51.6533243, - "lon": -0.4540546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8558638029, - "lat": 51.4882167, - "lon": -0.2038848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "W14 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8558673635, - "lat": 51.7390839, - "lon": 0.2725369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM5 72", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8561700611, - "lat": 51.3354432, - "lon": 0.0299791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "note": "moved from across the road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "BR2 185", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8561706479, - "lat": 51.4745694, - "lon": -0.0454234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Two slots, only one has a collection plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "SE14 114", - "ref:duplicates": "2", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8561706480, - "lat": 51.4738825, - "lon": -0.0488926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8561706481, - "lat": 51.4724401, - "lon": -0.0469817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8561706482, - "lat": 51.4717310, - "lon": -0.0401361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8561706483, - "lat": 51.4695200, - "lon": -0.0502547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "Pouch EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8561706484, - "lat": 51.4677537, - "lon": -0.0470112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8562109490, - "lat": 51.5846950, - "lon": -0.4066649, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8562225289, - "lat": 51.5942584, - "lon": -0.3796915, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8562285554, - "lat": 51.5646264, - "lon": -0.4450884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not shown", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "UB10 77;UB10 771", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8562318671, - "lat": 51.6522964, - "lon": -0.0843971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 17:30", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8565569648, - "lat": 52.4613344, - "lon": -0.4403705, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8566141900, - "lat": 53.0789574, - "lon": -2.8820422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8566263932, - "lat": 52.0646900, - "lon": -4.7579680, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8566604327, - "lat": 53.5312510, - "lon": -2.4006935, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8566668925, - "lat": 53.5308427, - "lon": -2.4052400, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8566690287, - "lat": 53.5340867, - "lon": -2.4002695, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8566945324, - "lat": 55.8213341, - "lon": -4.2070234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G73 259", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8567130006, - "lat": 51.8940267, - "lon": 0.1979927, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8567475484, - "lat": 51.3444953, - "lon": -0.8430737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "post_box:type": "wall", - "ref": "GU46 65D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8567547191, - "lat": 54.1906880, - "lon": -3.2092221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA16 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8567696752, - "lat": 51.5225690, - "lon": -0.2215558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 39D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8567851696, - "lat": 51.6397743, - "lon": -0.1654319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 89" - } -}, -{ - "type": "node", - "id": 8568220397, - "lat": 51.4886863, - "lon": -0.4786491, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8568369521, - "lat": 51.5437018, - "lon": -0.4876426, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8568404409, - "lat": 51.4786004, - "lon": -3.1694855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "CF24 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8569410006, - "lat": 58.2228085, - "lon": -6.3879785, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8569424687, - "lat": 51.3356959, - "lon": -0.2419732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 119D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8569573902, - "lat": 52.2482435, - "lon": -2.8115046, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8569606485, - "lat": 51.3143038, - "lon": -0.2371006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 199D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8569717809, - "lat": 50.3403228, - "lon": -4.8192762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "PL25 157", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8569793926, - "lat": 52.5102761, - "lon": -1.1728936, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8569984569, - "lat": 51.3238291, - "lon": -0.2370429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "KT17 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8569984570, - "lat": 51.3182941, - "lon": -0.2395357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT17 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8569984571, - "lat": 51.3251328, - "lon": -0.2333079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8569984572, - "lat": 51.3188498, - "lon": -0.2356850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT17 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8569984573, - "lat": 51.3164857, - "lon": -0.2315578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT17 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8570014441, - "lat": 51.3409643, - "lon": -0.2332409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT17 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8570014475, - "lat": 51.3334036, - "lon": -0.2179664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM7 205D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8570014476, - "lat": 51.3364979, - "lon": -0.2270329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM7 230", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8570014477, - "lat": 51.3309548, - "lon": -0.2203911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM7 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8570014478, - "lat": 51.3227141, - "lon": -0.2280702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM7 277D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8570030570, - "lat": 52.5743790, - "lon": -1.0022033, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8571285469, - "lat": 50.0668813, - "lon": -5.0799737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8571339128, - "lat": 50.0788510, - "lon": -5.2586386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR12 92" - } -}, -{ - "type": "node", - "id": 8571339129, - "lat": 50.1159744, - "lon": -5.2769688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Anvower", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8571339130, - "lat": 50.1146998, - "lon": -5.2732622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Lowertown", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 9D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8571395365, - "lat": 53.2668580, - "lon": -1.3534874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S43 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8571398628, - "lat": 51.4769450, - "lon": -0.0497166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE14 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8572768642, - "lat": 55.8083638, - "lon": -4.0377439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "ML4 48", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8572908942, - "lat": 51.4640939, - "lon": -0.1160335, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8574132524, - "lat": 51.5077596, - "lon": -0.1231146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "post_box:type": "meter", - "ref": "WC2N 82" - } -}, -{ - "type": "node", - "id": 8574651634, - "lat": 53.3284818, - "lon": -0.0189687, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8574705971, - "lat": 51.3125484, - "lon": -1.8113061, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8576255172, - "lat": 52.6041139, - "lon": -1.4789873, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8576292155, - "lat": 52.6542850, - "lon": -1.5631137, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8576967586, - "lat": 53.0625977, - "lon": -2.7616175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 662", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-17" - } -}, -{ - "type": "node", - "id": 8577137736, - "lat": 51.8338236, - "lon": 0.1416914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "ref": "CM21 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8580637070, - "lat": 51.5902935, - "lon": -0.1269558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N8 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8580969399, - "lat": 53.6190679, - "lon": -1.1801396, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8580969407, - "lat": 53.6228352, - "lon": -1.1793088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8582363652, - "lat": 51.7151203, - "lon": 0.4631926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8582918520, - "lat": 51.8348172, - "lon": 0.1790582, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8583418899, - "lat": 53.5327934, - "lon": -1.5570813, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-03-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S75 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8583515505, - "lat": 53.8000733, - "lon": -1.7138916, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8583534417, - "lat": 53.8006894, - "lon": -1.7113243, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8584414535, - "lat": 51.8905901, - "lon": 0.3459575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8584720835, - "lat": 52.5026045, - "lon": -0.7555298, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8585708364, - "lat": 52.3093125, - "lon": 1.1016577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP23 7163" - } -}, -{ - "type": "node", - "id": 8586865511, - "lat": 52.6955782, - "lon": -0.9681060, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8587045626, - "lat": 52.6196422, - "lon": -2.0413378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV11 11D" - } -}, -{ - "type": "node", - "id": 8587115297, - "lat": 51.6070642, - "lon": -0.3764940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 71", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8587119480, - "lat": 52.4345265, - "lon": -0.4953513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE8 137D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8587178578, - "lat": 52.6588320, - "lon": -0.9823233, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8587195647, - "lat": 52.6520214, - "lon": -1.0109484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8588215882, - "lat": 51.3230221, - "lon": -0.2438919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8588215883, - "lat": 51.3295043, - "lon": -0.2564239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8588226233, - "lat": 51.3308396, - "lon": -0.2641714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT18 76D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8589313919, - "lat": 53.6950017, - "lon": -2.6606058, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PR25 415", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8589326419, - "lat": 51.6464132, - "lon": -0.4162153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8589528095, - "lat": 52.0890185, - "lon": -3.9556742, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8589540468, - "lat": 52.0882406, - "lon": -3.9797014, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8589595474, - "lat": 52.1198205, - "lon": -3.9458627, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8589606486, - "lat": 52.5454868, - "lon": -1.9352367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B43 4414", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8589937975, - "lat": 51.0766103, - "lon": -0.2031472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH11 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8589942629, - "lat": 51.4524510, - "lon": -0.1477790, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8591253170, - "lat": 53.8107533, - "lon": -1.7728533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 40D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8591253171, - "lat": 53.8090828, - "lon": -1.7685622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8591253172, - "lat": 53.8035775, - "lon": -1.7756358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD8 195D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8591253173, - "lat": 53.8087533, - "lon": -1.7739796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 158D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8591253174, - "lat": 53.8001269, - "lon": -1.7627339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD8 121" - } -}, -{ - "type": "node", - "id": 8591253175, - "lat": 53.8127694, - "lon": -1.7762527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD9 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8591445490, - "lat": 51.3375569, - "lon": -0.2478200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8591445494, - "lat": 51.3278664, - "lon": -0.2457262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8591445495, - "lat": 51.3332889, - "lon": -0.2467688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8591445496, - "lat": 51.3353821, - "lon": -0.2503547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT17 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8591445497, - "lat": 51.3345076, - "lon": -0.2543512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT17 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8591445499, - "lat": 51.3344066, - "lon": -0.2612337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8591445500, - "lat": 51.3332423, - "lon": -0.2574253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 60D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8591445501, - "lat": 51.3311618, - "lon": -0.2549976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8591445502, - "lat": 51.3308626, - "lon": -0.2505076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8591957560, - "lat": 51.2752842, - "lon": -0.2764365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT18 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8592129632, - "lat": 53.4202610, - "lon": -1.2629766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8592129633, - "lat": 53.4275939, - "lon": -1.2627346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42761 -1.26267", - "post_box:type": "lamp", - "ref": "S66 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8592370793, - "lat": 51.3418841, - "lon": -0.3593188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8592370794, - "lat": 51.3395802, - "lon": -0.3561135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8592905072, - "lat": 51.5077127, - "lon": -0.0600422, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8592927407, - "lat": 54.9001143, - "lon": -1.4109482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8592927416, - "lat": 54.9503498, - "lon": -1.3646789, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8593015943, - "lat": 51.5523929, - "lon": 0.2468447, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8593015944, - "lat": 51.5524124, - "lon": 0.2468539, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8593036119, - "lat": 54.8751133, - "lon": -1.4930035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DH4 273" - } -}, -{ - "type": "node", - "id": 8593139037, - "lat": 52.6066633, - "lon": -2.0353246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV12 241D" - } -}, -{ - "type": "node", - "id": 8593139038, - "lat": 52.6110891, - "lon": -2.0293915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV12 103D" - } -}, -{ - "type": "node", - "id": 8593185476, - "lat": 53.3076066, - "lon": -2.2323260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK9 513D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8593250358, - "lat": 53.2903589, - "lon": -2.2809347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 11:00", - "post_box:type": "wall", - "ref": "SK9 95", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8593274022, - "lat": 52.4357384, - "lon": -0.4020070, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8593277939, - "lat": 53.3410051, - "lon": -2.2269811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "SK9 709D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8593277940, - "lat": 53.3499555, - "lon": -2.2154769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "post_box:type": "pillar", - "ref": "SK9 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8593427858, - "lat": 53.2886181, - "lon": -2.2648533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 11:00", - "ref": "SK9 451", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8593529394, - "lat": 53.2687616, - "lon": -2.3500181, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8593610910, - "lat": 53.2782633, - "lon": -2.3020916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 22", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 8593625008, - "lat": 51.3322884, - "lon": -0.3566711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8593625009, - "lat": 51.3359642, - "lon": -0.3530900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "KT22 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8593634195, - "lat": 51.3297024, - "lon": -0.3681211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8593648071, - "lat": 51.3196247, - "lon": -0.3416765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8593648075, - "lat": 51.3172108, - "lon": -0.3633766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT11 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8593648079, - "lat": 51.3164383, - "lon": -0.3806692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT11 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8595100790, - "lat": 51.3382264, - "lon": -1.7682892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8595138571, - "lat": 51.2324231, - "lon": -0.3343789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH4 364D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8595667031, - "lat": 53.1406673, - "lon": -2.2533461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "ref": "CW12 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8595702801, - "lat": 52.2759863, - "lon": -3.5632915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8595726342, - "lat": 51.7604709, - "lon": -1.2094937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-06-29", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "note": "One combined postbox, one aperture for each reference number", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "priority:covid_19": "yes", - "ref": "OX3 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8595965365, - "lat": 51.5553132, - "lon": -0.1965827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW6 36D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8596176280, - "lat": 51.4410019, - "lon": 0.0631676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8596975968, - "lat": 51.3713634, - "lon": -0.2461477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT4 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8597026085, - "lat": 51.3272069, - "lon": -0.3546853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8598472309, - "lat": 51.3121042, - "lon": -0.3355631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "KT22 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599392368, - "lat": 52.6123921, - "lon": -2.0372001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV12 186", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 8599942077, - "lat": 51.3417668, - "lon": -1.7285147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599973799, - "lat": 52.4517526, - "lon": 1.5639639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3482D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599976683, - "lat": 52.4490957, - "lon": 1.5702265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3470", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599976728, - "lat": 52.4451119, - "lon": 1.5679731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3481D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599976737, - "lat": 52.4473670, - "lon": 1.5637892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3479D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599976796, - "lat": 52.4518119, - "lon": 1.5603121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3473", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8599976877, - "lat": 52.4550459, - "lon": 1.5588798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR34 3472D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8600204312, - "lat": 52.5677227, - "lon": -0.4236473, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "PE8 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8600327256, - "lat": 52.6955963, - "lon": -1.6830643, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8600497058, - "lat": 52.4073564, - "lon": -2.1142464, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8600498727, - "lat": 57.1607772, - "lon": -2.1321081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB16 136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8600576386, - "lat": 51.8677447, - "lon": 0.1656570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CM23 19D" - } -}, -{ - "type": "node", - "id": 8600583066, - "lat": 55.7668211, - "lon": -4.2256039, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "note": "Parcel box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8601610789, - "lat": 52.6150411, - "lon": -2.0378085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WV12 391D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8602557760, - "lat": 51.4912498, - "lon": -0.2094017, - "tags": { - "amenity": "post_box", - "ref": "W14 25" - } -}, -{ - "type": "node", - "id": 8603236657, - "lat": 53.5359118, - "lon": -1.5611429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S75 91", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8605711273, - "lat": 51.2886928, - "lon": -2.3772941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8606030494, - "lat": 51.2973495, - "lon": -0.3364939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KT22 349P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8606087323, - "lat": 50.1008067, - "lon": -5.2612985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Pasmore Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8606087324, - "lat": 50.1047295, - "lon": -5.2644636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "description": "Tesco Helston", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8606098589, - "lat": 52.9411352, - "lon": 0.4879689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE36 70D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8606929570, - "lat": 51.4024575, - "lon": -0.5461148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8607067305, - "lat": 53.2162971, - "lon": -3.0655082, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8607619051, - "lat": 51.1698713, - "lon": -0.8471683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU10 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8607620145, - "lat": 51.1420446, - "lon": -0.8145668, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "863873185797958", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-18" - } -}, -{ - "type": "node", - "id": 8607982304, - "lat": 52.5394356, - "lon": -1.4665076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8608036158, - "lat": 50.0034932, - "lon": -5.1769284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Kuggar", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 33D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8608036159, - "lat": 50.0363637, - "lon": -5.1281345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Zoar", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8608036160, - "lat": 50.0472964, - "lon": -5.0922038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "description": "Trekewes Estate", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8608643458, - "lat": 51.2983809, - "lon": 0.1345143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "colour": "red", - "post_box:type": "wall", - "ref": "TN14 279", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8612380664, - "lat": 51.1956551, - "lon": -0.8790873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8612667403, - "lat": 52.6080449, - "lon": -1.1387462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "drive_through": "no", - "ref": "LE2 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8613572204, - "lat": 52.7734057, - "lon": 1.3991784, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8614461069, - "lat": 51.2174660, - "lon": -1.0138549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG25 155", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8614462628, - "lat": 51.1977729, - "lon": -1.0556826, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8614661717, - "lat": 51.5365421, - "lon": -0.0653216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E8 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8614955459, - "lat": 50.7208241, - "lon": -2.9393721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT7 31D", - "ref:GB:uprn": "10015335613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8615863529, - "lat": 57.1612979, - "lon": -2.1271379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB24 52D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8616120734, - "lat": 51.3113168, - "lon": -0.3334368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8616232768, - "lat": 51.3140510, - "lon": -0.3331666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8616241514, - "lat": 51.9054035, - "lon": 0.2516861, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8616259748, - "lat": 51.4933285, - "lon": -0.2388150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8616421054, - "lat": 57.5051500, - "lon": -1.7861780, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "AB42 37" - } -}, -{ - "type": "node", - "id": 8616421055, - "lat": 57.5051122, - "lon": -1.7861608, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AB42 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8616421088, - "lat": 57.5070732, - "lon": -1.7813795, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "AB42 3", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8616421090, - "lat": 57.5067506, - "lon": -1.7770745, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "AB42 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8616421091, - "lat": 57.5044269, - "lon": -1.7736126, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8616502950, - "lat": 57.4908297, - "lon": -1.7934724, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 2GP", - "addr:street": "Towerhill", - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "AB42 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8616587077, - "lat": 51.9302141, - "lon": -2.2740339, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GL19 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8616598318, - "lat": 54.8855497, - "lon": -1.5181788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE38 496" - } -}, -{ - "type": "node", - "id": 8616598319, - "lat": 54.8774758, - "lon": -1.5094989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DH4 30" - } -}, -{ - "type": "node", - "id": 8616598320, - "lat": 54.8750338, - "lon": -1.5010331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH4 199" - } -}, -{ - "type": "node", - "id": 8616598321, - "lat": 54.8755686, - "lon": -1.4878805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DH4 128" - } -}, -{ - "type": "node", - "id": 8616598322, - "lat": 54.8667004, - "lon": -1.5055722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH4 308" - } -}, -{ - "type": "node", - "id": 8617852514, - "lat": 54.0801180, - "lon": -1.7616126, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8617961727, - "lat": 52.4227636, - "lon": -3.1688654, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8617971345, - "lat": 52.4214218, - "lon": -3.0297724, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8618076699, - "lat": 52.3453748, - "lon": -3.0430284, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8618126178, - "lat": 52.4514457, - "lon": 1.5854242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR34 3416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8618206043, - "lat": 53.8207988, - "lon": -0.2248205, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8618222022, - "lat": 51.4726172, - "lon": -0.3917153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8618473556, - "lat": 50.8290529, - "lon": -0.1945279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "ref": "BN3 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8619146317, - "lat": 53.4282230, - "lon": -1.2428834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "post_box:type": "meter", - "ref": "S66 503", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8619146318, - "lat": 53.4282273, - "lon": -1.2428405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "S66 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8619306386, - "lat": 52.7242670, - "lon": -1.0690859, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8620709273, - "lat": 53.4398095, - "lon": -1.2566393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.43979 -1.25662", - "post_box:type": "lamp", - "ref": "S65 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8620714854, - "lat": 53.4386019, - "lon": -1.2668398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "location": "53.43862 -1.26681", - "post_box:type": "pillar", - "ref": "S65 160", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8620714855, - "lat": 53.4316914, - "lon": -1.2684656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.43172 -1.26840", - "post_box:type": "lamp", - "ref": "S65 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8621090870, - "lat": 51.3741157, - "lon": 1.4331370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "note": "New box installed after closure of Reading Street Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CT10 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8621971268, - "lat": 51.8203899, - "lon": -2.2669239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL2 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8622016406, - "lat": 52.6815116, - "lon": -2.7876617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8622110644, - "lat": 51.6448508, - "lon": -0.1661769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN4 102" - } -}, -{ - "type": "node", - "id": 8622427808, - "lat": 52.4540163, - "lon": 1.5679168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR34 3478D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8623002517, - "lat": 51.5438439, - "lon": -0.0628647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 9D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8623283651, - "lat": 51.3612000, - "lon": -0.6568384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU20 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8623283652, - "lat": 51.3640289, - "lon": -0.6636350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU20 149D" - } -}, -{ - "type": "node", - "id": 8623341637, - "lat": 55.9760975, - "lon": -4.0553311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8623811980, - "lat": 51.3058622, - "lon": -0.3271088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8623962922, - "lat": 52.9715921, - "lon": -1.9649248, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8625307076, - "lat": 54.0315887, - "lon": -1.7003699, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8625512488, - "lat": 52.4524923, - "lon": 1.5736320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR34 3430D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8625517146, - "lat": 52.4504527, - "lon": 1.5781702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3417D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8625517160, - "lat": 52.4467003, - "lon": 1.5752401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3471D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8626374010, - "lat": 51.6391229, - "lon": -0.0707883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8626528213, - "lat": 50.8346291, - "lon": -0.1972553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BN3 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8626660504, - "lat": 50.3376151, - "lon": -4.2051590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL10 432", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery", - "survey:date": "2024-05-12" - } -}, -{ - "type": "node", - "id": 8627003224, - "lat": 50.3711381, - "lon": -4.1992032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "drive_through": "no", - "mapillary": "1596499744060009", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL11 434", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 8627003225, - "lat": 50.3741058, - "lon": -4.1998731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "drive_through": "no", - "name": "North Road", - "operator": "Royal Mail", - "ref": "PL11 599", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-12-11" - } -}, -{ - "type": "node", - "id": 8627003226, - "lat": 50.3787446, - "lon": -4.2204119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1344813899335136", - "name": "Borough Park", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 437", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 8628582930, - "lat": 52.4524527, - "lon": 1.6011058, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8629552751, - "lat": 52.9033434, - "lon": 1.0899299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "NR25 2507D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8629600355, - "lat": 52.8643252, - "lon": -1.9120555, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8630029898, - "lat": 52.5902690, - "lon": -1.6621791, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8630114120, - "lat": 52.5921770, - "lon": -2.3417066, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8630200923, - "lat": 51.3953387, - "lon": 0.1070089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 145", - "ref:GB:uprn": "10015445831", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8631931473, - "lat": 51.6169660, - "lon": 0.1021266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG7 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8633108442, - "lat": 51.3048343, - "lon": -0.2628283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "KT18 98D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8633414471, - "lat": 54.0778131, - "lon": -2.5319912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "LA2 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8633714905, - "lat": 51.3017622, - "lon": -0.3242382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8634416797, - "lat": 53.0344990, - "lon": -1.0555860, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8634822923, - "lat": 51.3982235, - "lon": 0.0899851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "BR7 354D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8634822924, - "lat": 51.3995995, - "lon": 0.0935377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "374808043909266", - "post_box:type": "pillar", - "ref": "BR7 245D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-11-12" - } -}, -{ - "type": "node", - "id": 8634959919, - "lat": 51.4932316, - "lon": -2.2812903, - "tags": { - "amenity": "post_box", - "mapillary": "2770836086561998", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-09-05" - } -}, -{ - "type": "node", - "id": 8635160501, - "lat": 53.4356678, - "lon": -1.2790159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "location": "53.43565 -1.27899", - "post_box:type": "lamp", - "ref": "S66 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8635453644, - "lat": 51.4885397, - "lon": -2.2658052, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8637635678, - "lat": 51.5021988, - "lon": -0.9003210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG9 86D" - } -}, -{ - "type": "node", - "id": 8637635679, - "lat": 51.5000491, - "lon": -0.9037798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG9 72" - } -}, -{ - "type": "node", - "id": 8638397370, - "lat": 51.4471061, - "lon": -0.1280088, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8639420316, - "lat": 53.6021844, - "lon": -1.7880705, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "HD9 186D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey:date": "2021-09-15" - } -}, -{ - "type": "node", - "id": 8639818906, - "lat": 55.9780650, - "lon": -4.0574513, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8639935302, - "lat": 51.1236772, - "lon": -2.8384417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA7 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8640894704, - "lat": 53.6081879, - "lon": -1.6754924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8641633204, - "lat": 51.3220549, - "lon": -0.3346840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 91D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8641728204, - "lat": 51.2805315, - "lon": -0.3230499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 59D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8641729742, - "lat": 51.2856559, - "lon": -0.2968682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8641793296, - "lat": 51.2921224, - "lon": -0.3369632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8641796740, - "lat": 51.2824181, - "lon": -0.3511897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT22 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8641796741, - "lat": 51.2881814, - "lon": -0.3462839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT22 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8641834892, - "lat": 53.5059987, - "lon": -1.4276057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "S74 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8641834893, - "lat": 53.5072030, - "lon": -1.4248216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S74 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8641834894, - "lat": 53.4988758, - "lon": -1.4159469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S74 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8641871976, - "lat": 52.3926389, - "lon": -2.6140268, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8645264925, - "lat": 54.3637880, - "lon": -7.8206453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8645292081, - "lat": 51.2974723, - "lon": -0.3215016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 20D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8645294590, - "lat": 51.5304005, - "lon": -0.8867811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG9 44D" - } -}, -{ - "type": "node", - "id": 8645294608, - "lat": 51.5116265, - "lon": -0.8823730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG9 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8645430762, - "lat": 57.3736347, - "lon": -4.1883177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 460", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8645430788, - "lat": 57.4608967, - "lon": -4.1223665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV2 458", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8645452070, - "lat": 51.2945415, - "lon": -0.3233745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8645452071, - "lat": 51.2957472, - "lon": -0.3208244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8645505610, - "lat": 53.7694776, - "lon": -1.8349335, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8645534813, - "lat": 56.7279371, - "lon": -3.3921310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 117", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8647866652, - "lat": 53.7050222, - "lon": -2.0008153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HX7 322" - } -}, -{ - "type": "node", - "id": 8647904532, - "lat": 50.9111505, - "lon": -1.2919638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-04-18", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO30 703", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8649073103, - "lat": 52.3891830, - "lon": -2.6792927, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8649083819, - "lat": 52.3799706, - "lon": -2.6263842, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8649439302, - "lat": 52.7820231, - "lon": -2.9572949, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8651916543, - "lat": 53.8481999, - "lon": -1.6476197, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8652436901, - "lat": 53.5791065, - "lon": -1.7766837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8652937776, - "lat": 52.3929646, - "lon": -2.6435838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8653664663, - "lat": 53.7170812, - "lon": -2.7029161, - "tags": { - "amenity": "post_box", - "check_date": "2021-04-21", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR26 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8656044535, - "lat": 51.2350214, - "lon": -0.7229463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU10 164D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8656117209, - "lat": 51.4982008, - "lon": -0.0107083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "drive_through": "no", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8656214171, - "lat": 50.1125748, - "lon": -5.2679741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR13 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8656214172, - "lat": 50.1116350, - "lon": -5.2709064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR13 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8656214173, - "lat": 50.1116505, - "lon": -5.2709057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR13 123", - "royal_cypher": "no", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8656214174, - "lat": 50.1193407, - "lon": -5.2322976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8657147404, - "lat": 51.3936842, - "lon": -0.3148531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT6 1D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8657253956, - "lat": 51.7754930, - "lon": 0.1090939, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8657370495, - "lat": 51.2905184, - "lon": -0.3250904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT22 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8657370511, - "lat": 51.2864259, - "lon": -0.3241483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT22 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8657388827, - "lat": 51.2921467, - "lon": -0.3199285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_gate_column", - "post_box:type": "wall", - "ref": "KT22 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8657388832, - "lat": 51.2930130, - "lon": -0.3240709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8657409052, - "lat": 51.2564927, - "lon": 1.0863624, - "tags": { - "amenity": "post_box", - "ref": "CT4 29" - } -}, -{ - "type": "node", - "id": 8659545059, - "lat": 51.4924272, - "lon": -0.2112419, - "tags": { - "amenity": "post_box", - "ref": "W14 4" - } -}, -{ - "type": "node", - "id": 8659907531, - "lat": 51.6603460, - "lon": -1.2918770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX14 857" - } -}, -{ - "type": "node", - "id": 8662238389, - "lat": 50.9097423, - "lon": -3.0620192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA20 294" - } -}, -{ - "type": "node", - "id": 8662518014, - "lat": 53.4467607, - "lon": -1.2916627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S65 308D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8662780461, - "lat": 51.4242045, - "lon": -1.0075396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 08:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG30 169" - } -}, -{ - "type": "node", - "id": 8662844053, - "lat": 51.2951935, - "lon": -0.3594549, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8662963212, - "lat": 51.2948791, - "lon": 0.1742078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TN14 273D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8663031866, - "lat": 52.6140056, - "lon": -2.0021404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8663210333, - "lat": 57.1562213, - "lon": -2.1269019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8663628336, - "lat": 52.9193325, - "lon": -1.8818911, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8664256820, - "lat": 52.6070395, - "lon": -2.9846093, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8664278009, - "lat": 52.4649553, - "lon": -2.8375102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY7 462", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8664373641, - "lat": 51.3057010, - "lon": 0.1794894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "mapillary": "962025124542013", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN14 272", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-08-22" - } -}, -{ - "type": "node", - "id": 8664394485, - "lat": 54.6894994, - "lon": -4.8947544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "lamp", - "ref": "DG9 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8664476559, - "lat": 51.2983381, - "lon": -0.3566916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT22 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8664508119, - "lat": 55.6435123, - "lon": -4.5808766, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8664513497, - "lat": 55.5953675, - "lon": -4.6047860, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8664516021, - "lat": 55.6202269, - "lon": -4.6072862, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8664760323, - "lat": 55.5468555, - "lon": -2.2758613, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8665417250, - "lat": 53.1787116, - "lon": -3.4613129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 46", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8665417251, - "lat": 53.1544231, - "lon": -3.5330711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL16 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8665417256, - "lat": 53.1549916, - "lon": -3.5529490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8665420947, - "lat": 51.1486171, - "lon": 0.8706926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TN23 2241;TN23 2242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8665595929, - "lat": 53.0488239, - "lon": -3.6826488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL24 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8665595931, - "lat": 53.0466157, - "lon": -3.6797199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL24 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8665630375, - "lat": 51.4382470, - "lon": 0.0778812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE9 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8665803839, - "lat": 50.8827146, - "lon": -2.8165602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15, Sa 07:15", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA18 136" - } -}, -{ - "type": "node", - "id": 8665803840, - "lat": 50.8744516, - "lon": -2.8031238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:45", - "colour": "red", - "drive_through": "no", - "mapillary": "525980455230326", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA18 95", - "survey:date": "2021-03-18" - } -}, -{ - "type": "node", - "id": 8665950303, - "lat": 51.2999209, - "lon": -0.3123627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8666027097, - "lat": 53.0835583, - "lon": -2.1431706, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8666078597, - "lat": 51.3021554, - "lon": -0.3080507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8667928014, - "lat": 51.4477954, - "lon": -0.1315003, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8668526344, - "lat": 55.6512927, - "lon": -3.1826280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH45 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8669251890, - "lat": 51.9170124, - "lon": 0.3881302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8669251914, - "lat": 51.9042837, - "lon": 0.3394848, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8669371550, - "lat": 55.5402776, - "lon": -3.6738333, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8669531848, - "lat": 51.4101404, - "lon": -0.7739942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "RG12 207" - } -}, -{ - "type": "node", - "id": 8669556896, - "lat": 51.3004907, - "lon": 0.1607448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN13 277", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8670095771, - "lat": 51.3051143, - "lon": -0.3025424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8671966962, - "lat": 52.1518343, - "lon": 1.0538681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP6 1120" - } -}, -{ - "type": "node", - "id": 8674286182, - "lat": 52.6071622, - "lon": -1.9991121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WS3 194D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8674314682, - "lat": 52.5891443, - "lon": -2.0227276, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "WS2 581" - } -}, -{ - "type": "node", - "id": 8674524352, - "lat": 57.6275452, - "lon": -4.7992639, - "tags": { - "amenity": "post_box", - "note": "check location and ref" - } -}, -{ - "type": "node", - "id": 8674624539, - "lat": 52.5645309, - "lon": -0.7108521, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8676225972, - "lat": 53.5468327, - "lon": -2.0015492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OL3 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8676226728, - "lat": 53.5699456, - "lon": -2.0277709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8676416518, - "lat": 53.5488088, - "lon": -2.0039565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OL3 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8676807429, - "lat": 51.4942756, - "lon": -0.0124516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E14 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8677679478, - "lat": 51.4498194, - "lon": -0.1361383, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8677841315, - "lat": 51.3064830, - "lon": -0.2939580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "KT21 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8679046659, - "lat": 53.5765215, - "lon": -1.7710592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 180D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8679046665, - "lat": 53.5737441, - "lon": -1.7825515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD9 90D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8679046690, - "lat": 53.6102615, - "lon": -1.7029386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HD8 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8679046708, - "lat": 53.6055658, - "lon": -1.6981819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD8 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8679882356, - "lat": 52.6589317, - "lon": 1.3465520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "colour": "red", - "operator": "Royal Mail", - "ref": "NR7 745", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8681255917, - "lat": 51.3088586, - "lon": -0.2982787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 183D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8685760164, - "lat": 53.4447465, - "lon": -2.1075382, - "tags": { - "amenity": "post_box", - "description": "Parcel drop off unit.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8685776881, - "lat": 51.8264705, - "lon": 0.3712266, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8685826793, - "lat": 51.9655198, - "lon": -2.1889408, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8685862247, - "lat": 52.2919179, - "lon": -2.0085241, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8685891443, - "lat": 52.6366774, - "lon": -2.0108347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WS6 64D" - } -}, -{ - "type": "node", - "id": 8685891444, - "lat": 52.6515924, - "lon": -2.0118874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WS6 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8685891445, - "lat": 52.6622280, - "lon": -2.0109031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WS6 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8687686682, - "lat": 52.1875178, - "lon": 0.9949855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP14 8056", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8689222567, - "lat": 54.3162199, - "lon": -1.9309380, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DL8 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8689251102, - "lat": 51.1235874, - "lon": -2.7718971, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8689357961, - "lat": 51.9836104, - "lon": -2.2866879, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8690493755, - "lat": 53.5780235, - "lon": -1.7831926, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-09-19", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8690552196, - "lat": 52.9193392, - "lon": -2.1361086, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8690613645, - "lat": 52.9498099, - "lon": -2.0398161, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8690942462, - "lat": 52.0002590, - "lon": -2.1299127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "note": "Only accepts parcels", - "operator": "Royal Mail", - "ref": "GL20 367P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8690942463, - "lat": 51.9993546, - "lon": -2.1309700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "GL20 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8690961799, - "lat": 51.9816718, - "lon": 0.9260751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8691137791, - "lat": 53.1535043, - "lon": -3.3429182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 1", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8691137793, - "lat": 53.1180879, - "lon": -3.3087190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL15 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691137798, - "lat": 53.1252533, - "lon": -3.2721216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691137812, - "lat": 53.1069841, - "lon": -3.2832782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL15 22", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8691138748, - "lat": 51.1136008, - "lon": 0.8776972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "TN23 337" - } -}, -{ - "type": "node", - "id": 8691292602, - "lat": 51.2167397, - "lon": 0.8858585, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TN25 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691292603, - "lat": 51.1367073, - "lon": 0.8785227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "note": "Approximate position. This postbox is in the shopping centre in the open air.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TN24 70", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8691335571, - "lat": 56.1162606, - "lon": -3.3498758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 41D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8691335572, - "lat": 56.1063232, - "lon": -3.3566468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY4 64D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8691335600, - "lat": 56.1175013, - "lon": -3.3424058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 61D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8691395989, - "lat": 51.3927362, - "lon": 0.1107625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 643P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8691413815, - "lat": 51.8434972, - "lon": 0.3281300, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8691445629, - "lat": 51.8560461, - "lon": 0.2449248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8691794860, - "lat": 51.7138010, - "lon": -3.4453116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "mapillary": "329807578578051", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CF44 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691794864, - "lat": 51.7135737, - "lon": -3.4467881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "heritage:operator": "cadw", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company Stirlingshire", - "post_box:type": "pillar", - "ref:cadw": "10837", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691804125, - "lat": 53.5140908, - "lon": -2.4672287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691818261, - "lat": 51.2933166, - "lon": -0.3655998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT22 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691866304, - "lat": 51.2874395, - "lon": -0.3704432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8691891063, - "lat": 51.2786574, - "lon": -0.3681935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT23 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8693527433, - "lat": 52.4741727, - "lon": -3.3175626, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8693886146, - "lat": 52.3611575, - "lon": -3.4934458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD6 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8693979208, - "lat": 51.4125893, - "lon": -0.0435498, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8694090673, - "lat": 50.6407359, - "lon": -3.3850839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8694176689, - "lat": 52.0201323, - "lon": -1.7372511, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8694251624, - "lat": 51.8173042, - "lon": -1.8132337, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8694313202, - "lat": 51.8871080, - "lon": -1.9808719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL54 89D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8694714708, - "lat": 51.9052085, - "lon": -2.2474609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:15", - "post_box:type": "lamp", - "ref": "GL2 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8694720540, - "lat": 52.9662429, - "lon": -2.6835860, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8694787253, - "lat": 51.9630762, - "lon": -2.1391411, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8694796477, - "lat": 52.8915992, - "lon": -1.8764893, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8695353650, - "lat": 56.5885629, - "lon": -3.1627555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH12 208", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8695520564, - "lat": 55.9389808, - "lon": -4.1566233, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8696587434, - "lat": 54.5932425, - "lon": -1.7962821, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8697448074, - "lat": 53.6993779, - "lon": -1.3202074, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WF8 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8699075776, - "lat": 52.5889981, - "lon": -2.7840248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8699133006, - "lat": 51.7458756, - "lon": -3.1327760, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8699189119, - "lat": 51.7966435, - "lon": -3.2106738, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8699190043, - "lat": 51.7408691, - "lon": -3.1821263, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8699199184, - "lat": 51.7847202, - "lon": -3.2750869, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 604", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8699227565, - "lat": 51.8068512, - "lon": -3.2774297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP22 605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8699604195, - "lat": 52.8983734, - "lon": -3.0916574, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8699657538, - "lat": 52.4557472, - "lon": -2.9766097, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8701051827, - "lat": 53.5341400, - "lon": -2.0754163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8701566244, - "lat": 52.6702842, - "lon": -2.8563112, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8702771542, - "lat": 52.2053397, - "lon": 1.4234769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP17 4666" - } -}, -{ - "type": "node", - "id": 8703273755, - "lat": 51.8447428, - "lon": 0.2907555, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8706501272, - "lat": 51.4296835, - "lon": -0.9632919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:phone": "+44 3457 740740", - "operator:website": "https://www.royalmail.com/", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG2 433D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8707506886, - "lat": 57.1495997, - "lon": -2.1354340, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 5HQ", - "addr:street": "Mid Stocket Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB15 123D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8708435387, - "lat": 51.4375480, - "lon": -2.0033371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN11 108D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8710032112, - "lat": 51.4166374, - "lon": 0.0690444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR7 645P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8710151056, - "lat": 51.4195947, - "lon": 0.0661566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8710152334, - "lat": 51.3976776, - "lon": 0.1042389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "mapillary": "962322537873423", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 442", - "ref:GB:uprn": "10015389917", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-11-12" - } -}, -{ - "type": "node", - "id": 8710518218, - "lat": 55.4883740, - "lon": -2.6011965, - "tags": { - "amenity": "post_box", - "post_box:mounting": "phone_box", - "post_box:type": "lamp", - "ref": "TD8 86", - "royal_cypher": "scottish_crown", - "survey:date": "2021-05-07" - } -}, -{ - "type": "node", - "id": 8710804960, - "lat": 52.7349286, - "lon": -2.4723887, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8710854794, - "lat": 52.7133161, - "lon": -2.5728701, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8710869518, - "lat": 52.8180974, - "lon": -2.4295014, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8710935150, - "lat": 53.5416961, - "lon": -2.0048594, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8710954214, - "lat": 52.9295155, - "lon": -0.4124800, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8710961048, - "lat": 52.8794408, - "lon": -2.4068128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8710989062, - "lat": 52.7254079, - "lon": -2.6100351, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8711924414, - "lat": 51.2820213, - "lon": -0.3647576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT23 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8711942187, - "lat": 51.2163420, - "lon": -0.3176929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8711942188, - "lat": 51.2198024, - "lon": -0.3172866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH5 34D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8711972001, - "lat": 51.2795383, - "lon": -0.3813089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT23 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8711972002, - "lat": 51.2866846, - "lon": -0.3826198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT23 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8711972005, - "lat": 51.2692788, - "lon": -0.3872520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "metal_box", - "post_box:type": "pillar", - "ref": "KT23 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8711975659, - "lat": 51.2548368, - "lon": -0.3218855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH5 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8712032095, - "lat": 53.5488472, - "lon": -2.6316186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 10", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8712696527, - "lat": 52.9374065, - "lon": -3.1858972, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8712749345, - "lat": 52.4906990, - "lon": -1.2244940, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8713134700, - "lat": 55.0099373, - "lon": -1.6342026, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8713150323, - "lat": 55.0065999, - "lon": -1.6233941, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-04-30", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 140", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8713150363, - "lat": 55.0012531, - "lon": -1.6785069, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713179415, - "lat": 51.2690124, - "lon": -0.4325639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT24 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713183584, - "lat": 51.2776457, - "lon": -0.4290582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT24 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8713183588, - "lat": 51.2755848, - "lon": -0.4505467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT24 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713353482, - "lat": 51.2604949, - "lon": -0.4285821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT24 87D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8713353484, - "lat": 51.2652433, - "lon": -0.4323386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT24 40", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8713353490, - "lat": 51.2626693, - "lon": -0.4346265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT24 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8713401275, - "lat": 51.2859755, - "lon": -0.4134303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "support": "pole" - } -}, -{ - "type": "node", - "id": 8713401276, - "lat": 51.2917043, - "lon": -0.4214468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT24 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713401277, - "lat": 51.2863261, - "lon": -0.4254305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT24 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713405794, - "lat": 51.2603623, - "lon": -0.4556443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT24 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8713422032, - "lat": 51.2671949, - "lon": -0.3929939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713422033, - "lat": 51.2689108, - "lon": -0.3963745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 19:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT24 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713422034, - "lat": 51.2666696, - "lon": -0.3972398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713422035, - "lat": 51.2627583, - "lon": -0.4102801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT24 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8713422036, - "lat": 51.2696391, - "lon": -0.3990745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT24 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8714444724, - "lat": 51.4002033, - "lon": 0.1077523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 495D", - "ref:GB:uprn": "10015389916", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "support": "pole" - } -}, -{ - "type": "node", - "id": 8714449169, - "lat": 51.4078834, - "lon": 0.1088783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BR5 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8714465809, - "lat": 51.4132563, - "lon": 0.1078477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 414D", - "ref:GB:uprn": "10015469048", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8714556461, - "lat": 50.5256209, - "lon": -4.2159828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8714556462, - "lat": 50.5236760, - "lon": -4.2135311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8714618021, - "lat": 53.5895813, - "lon": -1.7679381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 179D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8714699318, - "lat": 55.5936973, - "lon": -2.4474585, - "tags": { - "amenity": "post_box", - "ref": "TD5 6", - "survey:date": "2021-05-08" - } -}, -{ - "type": "node", - "id": 8714738742, - "lat": 52.5093170, - "lon": -1.2548114, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8714755672, - "lat": 51.5883683, - "lon": -0.1863527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW11 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8714813022, - "lat": 52.6583784, - "lon": -1.4492054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8714893433, - "lat": 58.2114820, - "lon": -6.3576994, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8714914025, - "lat": 52.6001643, - "lon": -1.3850350, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8715009673, - "lat": 51.4422803, - "lon": -0.9623367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 321D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8715183340, - "lat": 50.5160344, - "lon": -4.2245087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8715183341, - "lat": 50.5169652, - "lon": -4.2196500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8715219753, - "lat": 51.3913281, - "lon": -0.6262188, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8715239742, - "lat": 52.0761888, - "lon": 1.0972248, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP8 1231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8715272456, - "lat": 52.4017129, - "lon": 1.4074051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8715537605, - "lat": 53.4781013, - "lon": -2.1289076, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "colour": "red", - "description": "Wall mounted", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8715673017, - "lat": 55.4827078, - "lon": -2.5538227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD8 82D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-05-09" - } -}, -{ - "type": "node", - "id": 8715789887, - "lat": 51.1943558, - "lon": 0.8058697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "One of a small number of Scottish Crown versions in the TN region.", - "post_box:type": "lamp", - "ref": "TN27 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8715814730, - "lat": 53.6393045, - "lon": -1.1030432, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8715837980, - "lat": 52.0956526, - "lon": -2.7612085, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8717811361, - "lat": 53.2416144, - "lon": -0.5071189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LN2 632;LN2 637", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8718074803, - "lat": 53.3746228, - "lon": -2.5299794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Millington House Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 142", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8718416189, - "lat": 53.5016528, - "lon": -1.0187619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN9 491" - } -}, -{ - "type": "node", - "id": 8718888507, - "lat": 57.1496895, - "lon": -2.1313682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB15 75D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8719015915, - "lat": 52.2575854, - "lon": -3.2621133, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8719392242, - "lat": 51.2615185, - "lon": 0.2325760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "colour": "red", - "ref": "TN15 201", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8719733404, - "lat": 51.5828250, - "lon": -0.1625506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8721583403, - "lat": 51.5121307, - "lon": -0.0155512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "note": "Box is inside the entrance to the Post Office.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E14 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8722743818, - "lat": 51.3823892, - "lon": 0.1073154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "ref": "BR6 359", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8722863588, - "lat": 51.3766288, - "lon": 0.0997129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BR6 646P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8722972182, - "lat": 53.4904132, - "lon": -2.0855505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "2362255630601267", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8725151612, - "lat": 51.4445819, - "lon": 0.1175883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8725839739, - "lat": 52.4099747, - "lon": -0.7342129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:30, Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NN16 798", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8725895166, - "lat": 51.2797301, - "lon": 0.1531844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN13 283", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8725895168, - "lat": 51.2794161, - "lon": 0.1595979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "ref": "TN13 284", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8726302206, - "lat": 51.1293784, - "lon": 0.7555423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00", - "drive_through": "no", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8726495727, - "lat": 53.5584339, - "lon": -2.0049278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "787588439597741", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OL3 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-24" - } -}, -{ - "type": "node", - "id": 8728648439, - "lat": 53.4995904, - "lon": -2.0291985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8729135039, - "lat": 52.6139443, - "lon": -2.6947017, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8729161206, - "lat": 50.2994113, - "lon": -3.6417854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 192", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8729302134, - "lat": 52.5117600, - "lon": -2.6311350, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8729339439, - "lat": 52.6005014, - "lon": -2.4037030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "lamp", - "ref": "TF11 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8729413226, - "lat": 52.4989600, - "lon": -2.5765961, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8731048632, - "lat": 51.6560781, - "lon": -0.2079262, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8731469317, - "lat": 51.9863691, - "lon": -2.7757688, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8732600802, - "lat": 51.3139593, - "lon": -2.7986120, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8732626756, - "lat": 51.4911644, - "lon": -0.6108037, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SL4 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8733323075, - "lat": 53.2087863, - "lon": -0.5676072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN6 530D" - } -}, -{ - "type": "node", - "id": 8734576700, - "lat": 51.6647174, - "lon": 0.5991115, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8734578338, - "lat": 51.9329221, - "lon": 0.2477587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM22 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8734711735, - "lat": 53.1888040, - "lon": -3.4102704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8734711736, - "lat": 53.1923869, - "lon": -3.4080284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8734711737, - "lat": 53.1887546, - "lon": -3.4013995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 87", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8734711738, - "lat": 53.1851057, - "lon": -3.4029288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 3", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8734711739, - "lat": 53.1857691, - "lon": -3.4072384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:35; Sa 10:15", - "colour": "red", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL16 73", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8734835116, - "lat": 55.9552435, - "lon": -3.7150660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK1 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8734926932, - "lat": 55.9807476, - "lon": -3.7404565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 92D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8734926943, - "lat": 55.9818909, - "lon": -3.7293957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 171D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8734926947, - "lat": 55.9812029, - "lon": -3.7210862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 213D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8734952816, - "lat": 55.9868477, - "lon": -3.7153912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK2 191D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8734962818, - "lat": 55.9820635, - "lon": -3.7164058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 28", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8734962825, - "lat": 55.9772497, - "lon": -3.7303586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 172D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8734999617, - "lat": 56.0114469, - "lon": -3.7863591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8734999630, - "lat": 56.0132574, - "lon": -3.7764081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FK2 235D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8734999631, - "lat": 56.0072344, - "lon": -3.7745923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 24D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8734999632, - "lat": 56.0016784, - "lon": -3.7630018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 189D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8734999633, - "lat": 55.9914563, - "lon": -3.7494734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 200D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8735032743, - "lat": 51.7575916, - "lon": 0.5023249, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8735101704, - "lat": 51.7556418, - "lon": 0.5058795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8735735723, - "lat": 56.0168078, - "lon": -3.7915519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8735735785, - "lat": 56.0260340, - "lon": -3.7910671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8735735789, - "lat": 56.0266819, - "lon": -3.7756005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8735735790, - "lat": 56.0194186, - "lon": -3.7794819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 215", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8735735791, - "lat": 56.0183369, - "lon": -3.7888455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 183D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8735735792, - "lat": 56.0153913, - "lon": -3.7859481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FK2 168D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8735755765, - "lat": 56.0140753, - "lon": -3.7895168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8735755789, - "lat": 56.0112460, - "lon": -3.7941811, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8735755813, - "lat": 56.0156309, - "lon": -3.7985203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 35D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8735782269, - "lat": 51.4048215, - "lon": 0.1006845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 431D", - "ref:GB:uprn": "10015833667", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8735782564, - "lat": 51.4006563, - "lon": 0.1036419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 429D", - "ref:GB:uprn": "10015340844", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8735802489, - "lat": 51.4037748, - "lon": 0.1054783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 466", - "ref:GB:uprn": "10015327735", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8735848847, - "lat": 51.4067068, - "lon": 0.0953488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 416", - "ref:GB:uprn": "10015455733", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8735862181, - "lat": 51.2651428, - "lon": 0.2467859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8735878477, - "lat": 51.4112959, - "lon": 0.1043960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 428", - "ref:GB:uprn": "10015452480", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8735945948, - "lat": 51.4998006, - "lon": -3.5698762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF31 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8735964153, - "lat": 50.5302122, - "lon": -4.2018571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8736011823, - "lat": 51.8205669, - "lon": -2.2282060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL4 990", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8736080691, - "lat": 56.0052231, - "lon": -3.7759595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK2 54", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8736086389, - "lat": 56.0280379, - "lon": -3.7534236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "FK2 187", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8736143952, - "lat": 51.5165897, - "lon": -0.2670850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8736234951, - "lat": 56.0191600, - "lon": -3.7203754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 113", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8736234952, - "lat": 56.0194404, - "lon": -3.7245882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK3 150", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8736234965, - "lat": 56.0154165, - "lon": -3.7245490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 115D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8736306053, - "lat": 51.5071351, - "lon": -0.2823297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W3 29D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8736309313, - "lat": 56.0132769, - "lon": -3.7209857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 121D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8736322427, - "lat": 51.5063093, - "lon": -0.2746574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W3 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8736323719, - "lat": 56.0148018, - "lon": -3.7163119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK3 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8736366803, - "lat": 53.5378606, - "lon": -2.0636495, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8736687916, - "lat": 53.2018473, - "lon": -3.5915546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL22 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8736778861, - "lat": 53.2181309, - "lon": -3.6075577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8739144362, - "lat": 56.3789748, - "lon": -3.8335692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8739144364, - "lat": 56.3735599, - "lon": -3.8319447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH7 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8739450422, - "lat": 53.5492545, - "lon": -2.0423367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1212665712707052", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8740624235, - "lat": 50.8176157, - "lon": -0.4577798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-02-27", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "indoor": "yes, in the entrance/exit foyer of the Asda store.", - "opening_hours": "Asda superstore opening hours plus Sunday browsing time.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN12 1632", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8740726139, - "lat": 56.0987537, - "lon": -3.3636652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY4 188D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8740726147, - "lat": 56.1157137, - "lon": -3.3535121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY4 201D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8742070850, - "lat": 51.9508698, - "lon": -4.3831828, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8742444986, - "lat": 52.0358000, - "lon": -4.2524211, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8745166050, - "lat": 53.5857221, - "lon": -1.7896900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 406D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8747115690, - "lat": 51.5514273, - "lon": -0.1906348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8749971553, - "lat": 50.7013955, - "lon": -2.3124973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8750814566, - "lat": 51.4961468, - "lon": -0.0520403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "note": "touching gatepost at the back, cannot see manufacturer", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE16 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8750860217, - "lat": 51.5243989, - "lon": -0.0771143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "E1 84P", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2021-05-20" - } -}, -{ - "type": "node", - "id": 8750860317, - "lat": 51.5244153, - "lon": -0.0771173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 15;E1 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-05-20" - } -}, -{ - "type": "node", - "id": 8750894453, - "lat": 51.4725274, - "lon": -0.9978035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG4 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Upper Warren Avenue postbox 2021-04-24 16.01.09.jpg" - } -}, -{ - "type": "node", - "id": 8751152117, - "lat": 51.5254593, - "lon": -0.0764555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E2 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8751378143, - "lat": 51.9276834, - "lon": -2.8579549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR2 200", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 8752298486, - "lat": 52.2735017, - "lon": -3.0063873, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8752381329, - "lat": 52.2764828, - "lon": -3.0141255, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8752863394, - "lat": 51.0602804, - "lon": -1.3183599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "mapillary": "1003007817136133", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SO23 252", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 8753150072, - "lat": 51.2740175, - "lon": -2.7842881, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8754320298, - "lat": 51.3624844, - "lon": -0.2769582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 350D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8754373935, - "lat": 51.3538465, - "lon": -0.2560591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 173D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8754373944, - "lat": 51.3559386, - "lon": -0.2660440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT19 57D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8754413420, - "lat": 51.7172839, - "lon": -1.8758418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8754423119, - "lat": 51.7061102, - "lon": -1.9361835, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8755157170, - "lat": 50.2563553, - "lon": -3.8568915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8755267155, - "lat": 51.4038532, - "lon": -3.2724475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF63 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8755598769, - "lat": 51.5809453, - "lon": -0.1793628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "ref": "N2 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8755598770, - "lat": 51.5790163, - "lon": -0.1760983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N2 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8755598771, - "lat": 51.5755239, - "lon": -0.1749865, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8755598772, - "lat": 51.5743620, - "lon": -0.1714138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "N2 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box N2 21D" - } -}, -{ - "type": "node", - "id": 8755598773, - "lat": 51.5792304, - "lon": -0.1694633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "N2 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box N2 12D" - } -}, -{ - "type": "node", - "id": 8755598774, - "lat": 51.5831147, - "lon": -0.1680258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "N2 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box N2 22D" - } -}, -{ - "type": "node", - "id": 8755671043, - "lat": 52.2272901, - "lon": 1.0290020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00" - } -}, -{ - "type": "node", - "id": 8755842267, - "lat": 51.4152470, - "lon": -3.2914391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "ref": "CF62 112" - } -}, -{ - "type": "node", - "id": 8755955473, - "lat": 52.5790624, - "lon": -1.5988839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV9 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8755998668, - "lat": 50.6944439, - "lon": -2.3293959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT2 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8756254061, - "lat": 51.4186896, - "lon": -0.2745287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 190D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8756254062, - "lat": 51.4198627, - "lon": -0.2675500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8756254063, - "lat": 51.4202837, - "lon": -0.2841876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 76D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8756288603, - "lat": 57.1786358, - "lon": -2.0905593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:30", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB23 380", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8756288607, - "lat": 57.1812646, - "lon": -2.0953430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB23 438D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8757493118, - "lat": 54.9843507, - "lon": -1.6916917, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8757731576, - "lat": 52.2173984, - "lon": -2.7321142, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8757742035, - "lat": 51.4092644, - "lon": -3.2783060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CF62 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8757849150, - "lat": 53.1810972, - "lon": -3.4266215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8757849151, - "lat": 53.1808800, - "lon": -3.4223210, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8757849152, - "lat": 53.1858248, - "lon": -3.4191993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8757849153, - "lat": 53.1851921, - "lon": -3.4132949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 75", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8758098745, - "lat": 51.1703595, - "lon": 0.6246442, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN27 15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN27 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-01-05" - } -}, -{ - "type": "node", - "id": 8758098746, - "lat": 51.1727196, - "lon": 0.6168397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "One of a small number of Scottish Crown versions in the TN region.", - "post_box:type": "lamp", - "ref": "TN27 74", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8758139662, - "lat": 50.8163077, - "lon": -0.5584513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "description": "This postbox is just inside the entrance of this Tesco superstore.", - "indoor": "yes", - "last_checked": "2021-05-08", - "note": "This Postbox has the latest collection in this area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN17 1509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8758388332, - "lat": 52.1524427, - "lon": -2.6672570, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8758456068, - "lat": 52.1217216, - "lon": -2.6739852, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8758457037, - "lat": 51.7196249, - "lon": -1.9003000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8758523322, - "lat": 52.9415513, - "lon": -2.6059949, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8758581260, - "lat": 51.8393127, - "lon": -1.9468549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8758673945, - "lat": 53.4742830, - "lon": -2.1996142, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8758786432, - "lat": 51.8857301, - "lon": -2.0838962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8758808740, - "lat": 51.2870808, - "lon": 0.1882293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8758808741, - "lat": 51.2887386, - "lon": 0.1954179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "colour": "red", - "ref": "TN14 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8758988997, - "lat": 52.7815199, - "lon": -2.9827450, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8759085947, - "lat": 53.7323309, - "lon": -2.1387715, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8759105913, - "lat": 51.7076412, - "lon": -1.8553169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761677209, - "lat": 50.8082334, - "lon": -0.4438133, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN12 1803D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761817992, - "lat": 52.0368120, - "lon": -2.7793023, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8761902808, - "lat": 52.1373340, - "lon": -3.0058363, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8761904493, - "lat": 52.0948649, - "lon": -2.9767773, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8761945662, - "lat": 56.0680698, - "lon": -3.4496585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 110", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761945667, - "lat": 56.0644665, - "lon": -3.4510240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY11 1", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761945669, - "lat": 56.0647504, - "lon": -3.4417091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 438D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761945679, - "lat": 56.0602500, - "lon": -3.4320689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 16D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761945680, - "lat": 56.0571828, - "lon": -3.4460141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KY11 435P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761945681, - "lat": 56.0623880, - "lon": -3.4635144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 69D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761945682, - "lat": 56.0720121, - "lon": -3.4610777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "KY12 436P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8761972618, - "lat": 52.1404560, - "lon": -3.0084836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "HR3 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8762548656, - "lat": 57.1481884, - "lon": -2.1144880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB25 34D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8762676724, - "lat": 51.3138740, - "lon": 0.1669600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "mapillary": "928591777937435", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN14 267", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2020-08-22" - } -}, -{ - "type": "node", - "id": 8762676726, - "lat": 51.3115666, - "lon": 0.1761983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "red", - "ref": "TN14 268", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8762676728, - "lat": 51.3088858, - "lon": 0.1816649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8762782715, - "lat": 52.8040343, - "lon": -2.5148163, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8763629092, - "lat": 54.3767176, - "lon": -1.8271947, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8763876933, - "lat": 51.2820462, - "lon": -2.7737542, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8765783715, - "lat": 56.0682953, - "lon": -3.4302872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 183D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8765783716, - "lat": 56.0692020, - "lon": -3.4344291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 139D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8765784817, - "lat": 56.0758429, - "lon": -3.4385978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY12 70D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8765784819, - "lat": 56.0752564, - "lon": -3.4540469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 205D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8765784829, - "lat": 56.0837509, - "lon": -3.4370752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 140", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8768417633, - "lat": 50.2315939, - "lon": -5.2664094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR15 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8769150616, - "lat": 56.6797409, - "lon": -5.9054312, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8769151217, - "lat": 56.7344576, - "lon": -6.1917490, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PH36 69", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8769151219, - "lat": 56.6978090, - "lon": -6.1044509, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8769151220, - "lat": 56.7244002, - "lon": -6.0460572, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8769871290, - "lat": 52.4794637, - "lon": -2.8014752, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8769944845, - "lat": 52.5222311, - "lon": -2.7187595, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8769960088, - "lat": 51.6747769, - "lon": -0.3872524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WD24 1007P", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8769960089, - "lat": 51.6704520, - "lon": -0.3883721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "WD24 221" - } -}, -{ - "type": "node", - "id": 8770304415, - "lat": 52.4972879, - "lon": 1.7427626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR32 3238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8770304416, - "lat": 52.5030480, - "lon": 1.7347991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2024-08-10", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR32 3255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8771950970, - "lat": 51.4144077, - "lon": -0.3126030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 18", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8772004703, - "lat": 52.2249176, - "lon": -2.7513172, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8773260024, - "lat": 51.3050267, - "lon": 0.2100168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 148", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 8773482117, - "lat": 55.4814087, - "lon": -2.5469568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TD8 113D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-05-27" - } -}, -{ - "type": "node", - "id": 8773873954, - "lat": 50.6661460, - "lon": -2.3300021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8773921189, - "lat": 50.6744867, - "lon": -4.2860789, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8773969822, - "lat": 51.6502349, - "lon": -0.4351512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8774007167, - "lat": 52.4908717, - "lon": 1.7412901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR32 3225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774007168, - "lat": 52.4865632, - "lon": 1.7341635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR32 3218", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774007169, - "lat": 52.4896876, - "lon": 1.7528746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-05-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR32 3241", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774017174, - "lat": 56.0899958, - "lon": -3.4405461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 80D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774017175, - "lat": 56.0850731, - "lon": -3.4620954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 95", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774017179, - "lat": 56.0777337, - "lon": -3.4616415, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 25D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774017180, - "lat": 56.0774884, - "lon": -3.4578100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 105D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774017181, - "lat": 56.0814972, - "lon": -3.4486938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY12 75D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8774038116, - "lat": 51.5012925, - "lon": -1.7308462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 174D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8774061817, - "lat": 51.4984897, - "lon": -1.7416517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 43D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 8774905157, - "lat": 55.7639876, - "lon": -4.1957148, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8776374162, - "lat": 55.8164419, - "lon": -3.9987641, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8776499086, - "lat": 51.4936359, - "lon": 0.0484913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE18 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8776499087, - "lat": 51.4922739, - "lon": 0.0557423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE18 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8777031013, - "lat": 51.5705103, - "lon": -0.1353496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "ref": "N19 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8777594839, - "lat": 51.0735697, - "lon": -2.4116358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA9 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8777594840, - "lat": 51.0586769, - "lon": -2.4139747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA9 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8777604326, - "lat": 51.0494132, - "lon": -2.4170874, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BA9 102", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8778217635, - "lat": 51.1281375, - "lon": -2.3256952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8779184881, - "lat": 57.5216785, - "lon": -2.1255071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB42 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8779242121, - "lat": 51.5641139, - "lon": -0.1444447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "ref": "N19 2", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8779242122, - "lat": 51.5643190, - "lon": -0.1405443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N19 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8779293942, - "lat": 57.1504028, - "lon": -2.2293790, - "tags": { - "amenity": "post_box", - "source": "http://primefour.co.uk/uploads/site_map.jpg" - } -}, -{ - "type": "node", - "id": 8779302614, - "lat": 51.4821046, - "lon": -0.2307351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW13 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8779526024, - "lat": 55.0109961, - "lon": -1.6664736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8779526035, - "lat": 55.0063574, - "lon": -1.6268523, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date:collection_times": "2022-10-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE3 292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8779526037, - "lat": 55.0151540, - "lon": -1.6505435, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8779526039, - "lat": 55.0110134, - "lon": -1.6664450, - "tags": { - "amenity": "post_box", - "check_date": "2024-04-24", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 49P" - } -}, -{ - "type": "node", - "id": 8779833507, - "lat": 51.3397346, - "lon": -0.7343923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "ref": "GU15 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8781476750, - "lat": 53.1827092, - "lon": 0.1937175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "PE23 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8781610531, - "lat": 53.1842700, - "lon": 0.1757456, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8783667670, - "lat": 51.0389439, - "lon": -2.4348030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA9 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8783717764, - "lat": 53.1526756, - "lon": 0.0580005, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8783717765, - "lat": 53.1847409, - "lon": 0.1560728, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8783725586, - "lat": 58.9230217, - "lon": -2.8299615, - "tags": { - "amenity": "post_box", - "ref": "KW17 33" - } -}, -{ - "type": "node", - "id": 8783836599, - "lat": 51.9392854, - "lon": 0.1360209, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8783892805, - "lat": 50.8003370, - "lon": -2.3413492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 180", - "ref:GB:uprn": "10015422629", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8783976049, - "lat": 52.0085800, - "lon": -2.1858121, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8783981091, - "lat": 51.2238367, - "lon": 0.5105169, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "ME17 163", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8785072804, - "lat": 53.3676452, - "lon": 0.0013988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8786128065, - "lat": 52.3259722, - "lon": -2.2539434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "post_box:type": "wall", - "ref": "DY13 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8787259813, - "lat": 51.6944408, - "lon": -2.0588554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8787328623, - "lat": 51.4335847, - "lon": -0.1284375, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8787427918, - "lat": 51.9473349, - "lon": 0.1354192, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8790442456, - "lat": 51.3998744, - "lon": -3.2837618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8790676122, - "lat": 53.7981208, - "lon": -1.7270733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8790676123, - "lat": 53.7941435, - "lon": -1.7158885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8791304302, - "lat": 51.0074946, - "lon": -2.4793401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8791304309, - "lat": 51.0111668, - "lon": -2.4812568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT9 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8791335551, - "lat": 52.0726400, - "lon": -2.7867883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8791335552, - "lat": 52.0724867, - "lon": -2.7973804, - "tags": { - "amenity": "post_box", - "mapillary": "2922382674713320", - "source:position": "Mapillary 2020-10-15", - "survey:date": "2020-10-15" - } -}, -{ - "type": "node", - "id": 8791491996, - "lat": 52.0755531, - "lon": -2.7251555, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8791891983, - "lat": 51.9727200, - "lon": -2.8344808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8791959401, - "lat": 51.5929147, - "lon": -1.2428311, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8792704078, - "lat": 53.2244541, - "lon": 0.3379315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE24 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793044163, - "lat": 50.7701346, - "lon": 0.2946622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 756D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793044164, - "lat": 50.7720921, - "lon": 0.2952193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 755D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8793160857, - "lat": 50.7205346, - "lon": -2.0110868, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 42", - "ref:GB:uprn": "10015406056", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793160858, - "lat": 50.7155958, - "lon": -2.0066937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 159D", - "ref:GB:uprn": "10015275035", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793160859, - "lat": 50.7123125, - "lon": -1.9976375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH15 20", - "ref:GB:uprn": "10015416747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793211652, - "lat": 50.7387132, - "lon": -2.0226176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH16 376D", - "ref:GB:uprn": "10015351523", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8793211653, - "lat": 50.7366542, - "lon": -2.0244737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BH16 294D", - "ref:GB:uprn": "10015301658", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793211654, - "lat": 50.7311670, - "lon": -2.0217070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH16 170", - "ref:GB:uprn": "10015441512", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8793211655, - "lat": 50.7232842, - "lon": -2.0327651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH16 321D", - "ref:GB:uprn": "10015404607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793211656, - "lat": 50.7253995, - "lon": -2.0276320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH16 264", - "ref:GB:uprn": "10015371426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8793277633, - "lat": 53.3669096, - "lon": -0.0066784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8794275718, - "lat": 50.9157072, - "lon": -2.4364007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1131889947299871", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT9 65", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 8794920995, - "lat": 51.2699910, - "lon": 0.1820189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 30", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8795185322, - "lat": 54.2090356, - "lon": -0.2870727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8795568857, - "lat": 51.1894995, - "lon": -0.6664869, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "last_checked": "2021-05-29", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU8 84", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8795620077, - "lat": 51.1495635, - "lon": -0.7027789, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-05-29", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU8 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8795699981, - "lat": 50.8570133, - "lon": 0.5737115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN34 94D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8795718951, - "lat": 51.4586140, - "lon": -0.1023429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 20", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8795941943, - "lat": 51.4487683, - "lon": 0.1973891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8795948505, - "lat": 56.2950127, - "lon": -3.0653861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY15 281", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8795948507, - "lat": 56.2946461, - "lon": -3.0592353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY15 200", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8796159424, - "lat": 53.2271481, - "lon": 0.3364134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE24 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8796159465, - "lat": 53.2313783, - "lon": 0.3357757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE24 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8796433754, - "lat": 51.4196272, - "lon": -0.1310930, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8796757411, - "lat": 50.4184351, - "lon": -4.1846309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "2978427582398998", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-16" - } -}, -{ - "type": "node", - "id": 8797592562, - "lat": 53.2594368, - "lon": 0.3239884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE24 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8797723809, - "lat": 51.3651766, - "lon": -0.7844477, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG45 119D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8797723810, - "lat": 51.3544869, - "lon": -0.8035214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU47 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8800339473, - "lat": 51.4216828, - "lon": -0.3350300, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "TW11 204", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 8804219595, - "lat": 53.4710901, - "lon": -1.3032633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "S64 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8804603353, - "lat": 53.0117679, - "lon": -0.3301459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NG34 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8804603354, - "lat": 52.9916380, - "lon": -0.3402652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NG34 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8805307726, - "lat": 51.3353502, - "lon": -0.7629272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU15 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8806538729, - "lat": 53.6236862, - "lon": -1.8786535, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2017-10-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD7 416D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8806561255, - "lat": 52.2783445, - "lon": -0.1123590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 96" - } -}, -{ - "type": "node", - "id": 8806561257, - "lat": 52.2820152, - "lon": -0.1123846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 240" - } -}, -{ - "type": "node", - "id": 8806581759, - "lat": 53.3662852, - "lon": -0.0047757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8806603003, - "lat": 52.2297149, - "lon": 0.0865389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "postal_code": "CB3 0", - "ref": "CB3 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8806603367, - "lat": 52.3635967, - "lon": 0.0147897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE28 19" - } -}, -{ - "type": "node", - "id": 8806606884, - "lat": 51.3167849, - "lon": -0.7780525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "704493924335308", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU17 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 8806654325, - "lat": 51.2942819, - "lon": -0.6433037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU24 162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8806898536, - "lat": 51.4030756, - "lon": 0.0893616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 415", - "ref:GB:uprn": "10015293398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8806898537, - "lat": 51.3962893, - "lon": 0.0873079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR7 316D", - "ref:GB:uprn": "10015322979", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8807085342, - "lat": 51.4166236, - "lon": 0.0690578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 461", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8807737819, - "lat": 55.0213853, - "lon": -1.7742840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8807737839, - "lat": 54.9897866, - "lon": -1.6676254, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8807737858, - "lat": 55.0004459, - "lon": -1.6959359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE5 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8807965523, - "lat": 53.5922314, - "lon": -2.3234776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8808699675, - "lat": 51.2524297, - "lon": -0.7363024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "ref": "GU12 198D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8808845741, - "lat": 53.4478144, - "lon": -1.2212576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "location": "53.44785 -1.22117", - "post_box:type": "wall", - "ref": "S66 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8808890375, - "lat": 51.7175207, - "lon": -0.1400636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EN6 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8808890381, - "lat": 51.6920234, - "lon": -0.1379769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EN6 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8808890382, - "lat": 51.6993373, - "lon": -0.1675951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8808890383, - "lat": 51.6950194, - "lon": -0.1775188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN6 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8808890384, - "lat": 51.6949698, - "lon": -0.2008229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EN6 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8809183080, - "lat": 53.4614466, - "lon": -1.2193043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "location": "53.46142 -1.21934", - "post_box:type": "wall", - "ref": "S66 45", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8809486935, - "lat": 51.4723000, - "lon": -0.0575164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8809519820, - "lat": 56.2610791, - "lon": -3.7798806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH4 63D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8809590862, - "lat": 50.4322263, - "lon": -4.1253170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 315D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8809696624, - "lat": 56.2996186, - "lon": -3.7182994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 42D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8812014080, - "lat": 51.1285630, - "lon": -0.0175943, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "name": "Park Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8812164228, - "lat": 56.3685523, - "lon": -3.4959698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 78", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8812165260, - "lat": 56.2929471, - "lon": -3.7082291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 64D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8812165268, - "lat": 56.2983045, - "lon": -3.6998230, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH3 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8812434292, - "lat": 51.6940133, - "lon": -1.6917230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL7 84", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8812434293, - "lat": 51.6940133, - "lon": -1.6916396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL7 80", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8814095702, - "lat": 51.4356828, - "lon": -0.3777134, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8814182166, - "lat": 51.4349654, - "lon": -3.2242992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8815157117, - "lat": 52.0537590, - "lon": -2.7235249, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8815671806, - "lat": 51.6073131, - "lon": -1.8030056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN25 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8815790357, - "lat": 52.4001836, - "lon": -2.3043669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "DY12 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8815790362, - "lat": 52.3971958, - "lon": -2.2867481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "wall", - "ref": "DY11 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8816827741, - "lat": 51.5144678, - "lon": -0.0006320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8817723242, - "lat": 53.4902616, - "lon": -1.3162286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8817779083, - "lat": 57.4326528, - "lon": -2.3916915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB53 252", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 8817899381, - "lat": 53.4930639, - "lon": -1.3101920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S64 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8817899382, - "lat": 53.4961853, - "lon": -1.3053234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8817899383, - "lat": 53.4848754, - "lon": -1.3327020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8817899384, - "lat": 53.4883993, - "lon": -1.3255067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8817899386, - "lat": 53.4972503, - "lon": -1.3007050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 128D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8817923601, - "lat": 53.4835120, - "lon": -1.3273191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 110D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8817923603, - "lat": 53.4865756, - "lon": -1.3269474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8818183926, - "lat": 51.6277301, - "lon": -0.4721019, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8818269721, - "lat": 53.4869112, - "lon": -1.3126930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "post_box:type": "wall", - "ref": "S64 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8818269724, - "lat": 53.4905530, - "lon": -1.3103686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8818269726, - "lat": 53.4865077, - "lon": -1.3188233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8818441019, - "lat": 51.2882136, - "lon": 0.1654671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "colour": "red", - "ref": "TN13 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8818600648, - "lat": 56.0400439, - "lon": -3.4353984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KY11 193D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8818861750, - "lat": 51.8692685, - "lon": -2.8726318, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8818876784, - "lat": 53.5944151, - "lon": -1.7806129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HD9 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8821125097, - "lat": 53.5951274, - "lon": -1.7729208, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2018-10-04", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HD9 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8821125100, - "lat": 53.6006546, - "lon": -1.7794889, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD9 454D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-09-15" - } -}, -{ - "type": "node", - "id": 8821226081, - "lat": 56.3903122, - "lon": -3.8559340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8821248878, - "lat": 53.5376729, - "lon": -2.0223021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00" - } -}, -{ - "type": "node", - "id": 8823401709, - "lat": 50.3625203, - "lon": -4.0624089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL9 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 8825723246, - "lat": 51.6801820, - "lon": -0.9512399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX49 526", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8825723247, - "lat": 51.6855043, - "lon": -0.9488877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "OX49 481", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8825816220, - "lat": 51.7245742, - "lon": -1.0541173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX9 367", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8825816221, - "lat": 51.7072698, - "lon": -1.0030187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX9 642", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8825816222, - "lat": 51.7102556, - "lon": -1.0077737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX9 492D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8826000780, - "lat": 51.7856042, - "lon": -1.3729255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX29 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8826137195, - "lat": 51.2959608, - "lon": -0.5748229, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "last_checked": "2021-07-03", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU22 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8826137196, - "lat": 51.3210177, - "lon": -0.5476870, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 157D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8826137197, - "lat": 51.3152921, - "lon": -0.5599192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU22 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8826414572, - "lat": 50.8265698, - "lon": -0.1907984, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BN3 183D" - } -}, -{ - "type": "node", - "id": 8827140471, - "lat": 51.7381768, - "lon": -1.0596918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX9 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8827169242, - "lat": 51.7353784, - "lon": -1.3857280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX29 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8827178492, - "lat": 51.7240538, - "lon": -1.3924369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX29 766D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8827182214, - "lat": 50.8797047, - "lon": -0.3233832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "BN44 1551D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8827191256, - "lat": 51.7104520, - "lon": -1.4175083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX29 725", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8827198735, - "lat": 50.8863026, - "lon": -0.3033122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN44 1548", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8827528328, - "lat": 57.3104377, - "lon": -2.1521978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB41 495", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8827560283, - "lat": 57.3641108, - "lon": -2.0732936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB41 546", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8828058454, - "lat": 55.0209533, - "lon": -1.6926560, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8828058482, - "lat": 55.0112883, - "lon": -1.6296896, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828058491, - "lat": 55.0151818, - "lon": -1.6321830, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8828058511, - "lat": 55.0171467, - "lon": -1.6232915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE3 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828087741, - "lat": 55.0132312, - "lon": -1.6351334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 463D" - } -}, -{ - "type": "node", - "id": 8828087781, - "lat": 55.0231303, - "lon": -1.6945345, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8828087783, - "lat": 55.0150671, - "lon": -1.6217371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8828087800, - "lat": 55.0112449, - "lon": -1.6243687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE3 769P" - } -}, -{ - "type": "node", - "id": 8828087803, - "lat": 55.0090325, - "lon": -1.6927165, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8828087821, - "lat": 55.0023584, - "lon": -1.6592884, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8828087841, - "lat": 55.0374885, - "lon": -1.7101086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE3 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828226916, - "lat": 51.4250481, - "lon": -3.2538186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 70D" - } -}, -{ - "type": "node", - "id": 8828233917, - "lat": 51.4135563, - "lon": -3.2354070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "note": "COVID priority postbox", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "CF63 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828233918, - "lat": 51.4123962, - "lon": -3.2382249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 82D" - } -}, -{ - "type": "node", - "id": 8828233919, - "lat": 51.4176183, - "lon": -3.2432793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF63 38D" - } -}, -{ - "type": "node", - "id": 8828345222, - "lat": 50.5465034, - "lon": -3.4994094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ14 14D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8828439046, - "lat": 51.5483033, - "lon": -3.4832709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828439056, - "lat": 51.5471282, - "lon": -3.5225303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828447661, - "lat": 51.5297978, - "lon": -3.4965236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828447672, - "lat": 51.5255819, - "lon": -3.4980351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF35 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828447673, - "lat": 51.5234729, - "lon": -3.4965719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828447680, - "lat": 51.5207255, - "lon": -3.5026223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF35 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828447704, - "lat": 51.5215620, - "lon": -3.4963372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828447705, - "lat": 51.5216430, - "lon": -3.4835270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF35 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828459547, - "lat": 51.4923077, - "lon": -3.4844758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8828459548, - "lat": 51.4780805, - "lon": -3.4813707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 175", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8828459549, - "lat": 51.4723811, - "lon": -3.4890510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF71 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8829187878, - "lat": 50.5647690, - "lon": -3.5073232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8829187879, - "lat": 50.5491889, - "lon": -3.4923966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 8829187880, - "lat": 50.5498022, - "lon": -3.4997655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 4D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8829187881, - "lat": 50.5398242, - "lon": -3.5192900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge", - "survey:date": "2022-11-12" - } -}, -{ - "type": "node", - "id": 8829187882, - "lat": 50.5595442, - "lon": -3.4825467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 8829187883, - "lat": 50.5469717, - "lon": -3.5120283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8829187884, - "lat": 50.5490503, - "lon": -3.5049542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8829187885, - "lat": 50.5514312, - "lon": -3.5142384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8829187886, - "lat": 50.5457710, - "lon": -3.4956986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "TQ14 222", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge", - "survey:date": "2023-11-29" - } -}, -{ - "type": "node", - "id": 8829755386, - "lat": 53.4475884, - "lon": -2.6259545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA12 34" - } -}, -{ - "type": "node", - "id": 8829755387, - "lat": 53.4484452, - "lon": -2.6233892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA12 262", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8829872645, - "lat": 54.6584665, - "lon": -1.2302707, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8829881487, - "lat": 53.1790192, - "lon": -3.4027285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 63", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8829881488, - "lat": 53.1744106, - "lon": -3.4039973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL16 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8829996843, - "lat": 52.5495737, - "lon": -3.1861330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY15 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8830030874, - "lat": 55.0125301, - "lon": -1.6074834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE3 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8830032761, - "lat": 51.7041651, - "lon": -1.6109562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX18 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8830157815, - "lat": 53.3067820, - "lon": -2.1146746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8830367913, - "lat": 53.4864791, - "lon": -2.0947402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8830367914, - "lat": 53.4864442, - "lon": -2.0947141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 8830389343, - "lat": 51.3972375, - "lon": -3.2779962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "note": "Inside store foyer", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 71" - } -}, -{ - "type": "node", - "id": 8830483876, - "lat": 50.5486068, - "lon": -3.5103112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ14 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483877, - "lat": 50.5382375, - "lon": -3.5034146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483878, - "lat": 50.5547350, - "lon": -3.5380744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ14 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483879, - "lat": 50.5516694, - "lon": -3.5118949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 28D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483880, - "lat": 50.5555031, - "lon": -3.5051994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483881, - "lat": 50.5496869, - "lon": -3.5031308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483882, - "lat": 50.5494828, - "lon": -3.5465349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;local knowledge;aerial imagery" - } -}, -{ - "type": "node", - "id": 8830483884, - "lat": 50.5555598, - "lon": -3.5285812, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830483885, - "lat": 50.5496675, - "lon": -3.5640762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ14 42D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "streetlevel imagery;survey;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8830602835, - "lat": 52.2212094, - "lon": 1.1014332, - "tags": { - "amenity": "post_box", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8830647920, - "lat": 52.1786235, - "lon": 1.0923942, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8831329133, - "lat": 50.5367608, - "lon": -3.5164578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ14 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8831329134, - "lat": 50.5549137, - "lon": -3.4962800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_pillar", - "post_box:type": "lamp", - "ref": "TQ14 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8831329135, - "lat": 50.5511248, - "lon": -3.5026991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "TQ14 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8831329136, - "lat": 50.5536254, - "lon": -3.5525653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TQ14 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8831329137, - "lat": 50.5556780, - "lon": -3.5121177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ14 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8831329138, - "lat": 50.5407122, - "lon": -3.5063306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ14 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8831626306, - "lat": 50.5819400, - "lon": -3.5536131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 61", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8831626307, - "lat": 50.5710702, - "lon": -3.4733378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX7 435D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 8832047306, - "lat": 50.3588654, - "lon": -4.0658976, - "tags": { - "addr:street": "Springfield Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:45", - "fixme": "Pillar two apertures machan 1996?", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL9 645;PL9 6450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 8833441776, - "lat": 53.2152316, - "lon": -2.6477336, - "tags": { - "amenity": "post_box", - "ref": "CW8 78" - } -}, -{ - "type": "node", - "id": 8833650698, - "lat": 51.5281763, - "lon": -3.5639054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833650699, - "lat": 51.5212796, - "lon": -3.5627729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF35 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833650700, - "lat": 51.5175723, - "lon": -3.5493679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF31 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833650701, - "lat": 51.5087863, - "lon": -3.5468600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF31 272D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8833650702, - "lat": 51.5060567, - "lon": -3.5507344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF31 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833656062, - "lat": 51.4948727, - "lon": -3.5244555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833656075, - "lat": 51.4957114, - "lon": -3.4993004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8833663467, - "lat": 51.5106405, - "lon": -3.5338694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "CF35 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8833693355, - "lat": 51.5056778, - "lon": -3.5304268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF35 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833720212, - "lat": 51.5319595, - "lon": -3.5566199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833720213, - "lat": 51.5301762, - "lon": -3.5721861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833734046, - "lat": 51.5474021, - "lon": -3.7041105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833734047, - "lat": 51.5618983, - "lon": -3.7361857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833737819, - "lat": 51.5262690, - "lon": -3.5291024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa off", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833737820, - "lat": 51.5246982, - "lon": -3.5450448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8833758562, - "lat": 51.5720578, - "lon": -3.5297790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833758563, - "lat": 51.5691795, - "lon": -3.5396489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833758564, - "lat": 51.5744337, - "lon": -3.5070667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8833759620, - "lat": 51.5328488, - "lon": -3.4747743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833759621, - "lat": 51.5283294, - "lon": -3.4883617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CF35 112D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8833759637, - "lat": 51.5249394, - "lon": -3.5051188, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF35 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833759645, - "lat": 51.5263311, - "lon": -3.5127463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833762836, - "lat": 51.4970519, - "lon": -3.5621171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF31 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833762840, - "lat": 51.5017780, - "lon": -3.5388482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "CF31 248P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8833762841, - "lat": 51.5017630, - "lon": -3.5388254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF31 247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8835277753, - "lat": 55.5963161, - "lon": -2.4288107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD5 167D", - "survey:date": "2021-06-05" - } -}, -{ - "type": "node", - "id": 8835754653, - "lat": 53.5227014, - "lon": -1.3136083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8835754654, - "lat": 53.5308993, - "lon": -1.3042915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836199029, - "lat": 53.5173698, - "lon": -1.3238613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 133D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8836199031, - "lat": 53.5186245, - "lon": -1.3144251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836575953, - "lat": 52.3482885, - "lon": -2.4967447, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836595854, - "lat": 52.5832296, - "lon": -1.1191329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE18 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743345, - "lat": 54.6646242, - "lon": -5.6534322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 714D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8836743346, - "lat": 54.6641395, - "lon": -5.6565999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 236D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8836743347, - "lat": 54.6657202, - "lon": -5.6615888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT20 276D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8836743348, - "lat": 54.6634088, - "lon": -5.6619428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 555", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8836743349, - "lat": 54.6612935, - "lon": -5.6612776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743350, - "lat": 54.6621964, - "lon": -5.6555672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 519D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8836743351, - "lat": 54.6608591, - "lon": -5.6479015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT20 292D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743352, - "lat": 54.6568717, - "lon": -5.6455438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT20 868D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743353, - "lat": 54.6594969, - "lon": -5.6406058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 754D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743354, - "lat": 54.6575870, - "lon": -5.6315963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 539", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743355, - "lat": 54.6628728, - "lon": -5.6271009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 484D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8836743356, - "lat": 54.6624307, - "lon": -5.6324010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8836743357, - "lat": 54.6654231, - "lon": -5.6377922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 520D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8836987560, - "lat": 52.4241801, - "lon": -2.8831816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY7 146", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8837020821, - "lat": 52.5899126, - "lon": -2.8344069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY6 149", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8837020822, - "lat": 52.5818052, - "lon": -2.8337833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY6 229", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8837043330, - "lat": 52.7593420, - "lon": -3.0898619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY22 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8837060567, - "lat": 51.3993718, - "lon": -3.2885934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 8" - } -}, -{ - "type": "node", - "id": 8837060575, - "lat": 51.3967178, - "lon": -3.2950580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 14D" - } -}, -{ - "type": "node", - "id": 8837060589, - "lat": 51.3956089, - "lon": -3.2990308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8837060590, - "lat": 51.3946489, - "lon": -3.3021440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 43D" - } -}, -{ - "type": "node", - "id": 8837060591, - "lat": 51.3919247, - "lon": -3.2921769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 29D" - } -}, -{ - "type": "node", - "id": 8837060592, - "lat": 51.3947776, - "lon": -3.2884453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8837060593, - "lat": 51.3958262, - "lon": -3.2902267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8837060594, - "lat": 51.4013223, - "lon": -3.2794610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8837060595, - "lat": 51.3979979, - "lon": -3.2847982, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF62 12D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 8837099450, - "lat": 52.4716815, - "lon": -2.3501261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "lamp", - "ref": "WV15 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8837667628, - "lat": 54.3427945, - "lon": -1.4244437, - "tags": { - "amenity": "post_box", - "ref": "DL6 191D" - } -}, -{ - "type": "node", - "id": 8838247964, - "lat": 53.5336574, - "lon": -1.3020519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "post_box:type": "wall", - "ref": "S63 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8838298757, - "lat": 53.5352807, - "lon": -1.2970460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S63 71D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8838298759, - "lat": 53.5302949, - "lon": -1.3072096, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8841353400, - "lat": 51.5498826, - "lon": -3.5717998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF32 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8841358750, - "lat": 51.5460014, - "lon": -3.5676827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "CF32 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8842638502, - "lat": 54.6568004, - "lon": -5.6745842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8842638503, - "lat": 54.6581545, - "lon": -5.6789288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT20 319D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8842638504, - "lat": 54.6608489, - "lon": -5.6774331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 407D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8842638505, - "lat": 54.6631180, - "lon": -5.6757023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 224D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8842638506, - "lat": 54.6623641, - "lon": -5.6718604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 290D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843006008, - "lat": 55.0426252, - "lon": -1.4464516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NE26 687;NE26 1687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 8843062666, - "lat": 52.9387478, - "lon": -3.7357566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL23 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843066154, - "lat": 52.9108675, - "lon": -3.5977522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL23 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843077370, - "lat": 52.9490322, - "lon": -3.9959335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL41 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843256052, - "lat": 51.5868885, - "lon": -3.5725696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF32 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843256053, - "lat": 51.5788160, - "lon": -3.5659486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "CF32 10D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8843256056, - "lat": 51.5744987, - "lon": -3.5705687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843258090, - "lat": 51.5516678, - "lon": -3.5861550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843258091, - "lat": 51.5457437, - "lon": -3.5884168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843259437, - "lat": 51.5734681, - "lon": -3.5887574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843259438, - "lat": 51.5673739, - "lon": -3.5874123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843363050, - "lat": 51.5964576, - "lon": -3.5818739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843363105, - "lat": 51.6291795, - "lon": -3.5904036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843363106, - "lat": 51.6252862, - "lon": -3.5878971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 127", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8843368654, - "lat": 51.6175486, - "lon": -3.5871267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8843368658, - "lat": 51.6147156, - "lon": -3.5857111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 24D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8843368715, - "lat": 51.6090942, - "lon": -3.5832180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843368749, - "lat": 51.6110414, - "lon": -3.5844760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 190", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843368750, - "lat": 51.6102377, - "lon": -3.5825615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8843368751, - "lat": 51.6039135, - "lon": -3.5821478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 53D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8843368752, - "lat": 51.5924440, - "lon": -3.5796527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 40D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8843412922, - "lat": 51.5844245, - "lon": -3.5393418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843412923, - "lat": 51.5781376, - "lon": -3.5460949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8843412924, - "lat": 51.5798277, - "lon": -3.5435797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8845264525, - "lat": 52.9541347, - "lon": -4.0665936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL48 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8845645216, - "lat": 53.2945302, - "lon": -4.5020077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL65 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8845655502, - "lat": 53.2894994, - "lon": -4.5661376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8845655503, - "lat": 53.2932663, - "lon": -4.5603749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8846321122, - "lat": 51.4047022, - "lon": -3.2647917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8846469670, - "lat": 54.6599908, - "lon": -5.6879171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 311", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8846469671, - "lat": 54.6652060, - "lon": -5.6846369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 548D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8846469672, - "lat": 54.6659110, - "lon": -5.6878100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT20 274D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8846765220, - "lat": 51.9221497, - "lon": -2.5737135, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8846875471, - "lat": 51.3677801, - "lon": 0.0558788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "post_box:type": "pillar", - "ref": "BR6 113" - } -}, -{ - "type": "node", - "id": 8847024564, - "lat": 51.6065756, - "lon": -3.5439344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8847024568, - "lat": 51.6001605, - "lon": -3.5445754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847024576, - "lat": 51.6026378, - "lon": -3.5430700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8847024594, - "lat": 51.6022872, - "lon": -3.5421319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847024595, - "lat": 51.5989809, - "lon": -3.5414004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 3D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8847035054, - "lat": 51.5957736, - "lon": -3.5405307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "railings", - "post_box:type": "lamp", - "ref": "CF32 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847035059, - "lat": 51.6440249, - "lon": -3.6417156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847035060, - "lat": 51.6469917, - "lon": -3.6386613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847035061, - "lat": 51.6493333, - "lon": -3.6398998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 511D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847057754, - "lat": 51.6537117, - "lon": -3.6024441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "SA13 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8847057755, - "lat": 51.6582232, - "lon": -3.6070347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8847057757, - "lat": 51.6556570, - "lon": -3.6011063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8847057758, - "lat": 51.6564174, - "lon": -3.6036377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 39", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8847057919, - "lat": 51.6230224, - "lon": -3.5366803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 95D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8847057922, - "lat": 51.6219900, - "lon": -3.5398192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847057923, - "lat": 51.6186906, - "lon": -3.5363974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847057925, - "lat": 51.6245548, - "lon": -3.5402993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847057954, - "lat": 51.6272660, - "lon": -3.5423713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847057962, - "lat": 51.6123864, - "lon": -3.5435146, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847096676, - "lat": 51.6436729, - "lon": -3.7000839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847096677, - "lat": 51.6485724, - "lon": -3.6825643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SA13 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8847096679, - "lat": 51.6564865, - "lon": -3.6643200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847096680, - "lat": 51.6622676, - "lon": -3.6447921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "fixme": "Can't remember the exact lcation in this group of houses", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847096681, - "lat": 51.6777026, - "lon": -3.6290234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847814551, - "lat": 53.2578519, - "lon": -4.4566405, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8847841025, - "lat": 53.1992366, - "lon": -4.2741725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL60 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848003446, - "lat": 57.1568183, - "lon": -2.1528157, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 5QD", - "addr:street": "Mastrick Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB16 186", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8848902028, - "lat": 54.6550569, - "lon": -5.6600217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848902029, - "lat": 54.6464339, - "lon": -5.6596909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 752D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848902030, - "lat": 54.6479567, - "lon": -5.6573535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848902031, - "lat": 54.6425140, - "lon": -5.6577069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 797D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848902032, - "lat": 54.6405284, - "lon": -5.6535001, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848902033, - "lat": 54.6425342, - "lon": -5.6450409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848902034, - "lat": 54.6468474, - "lon": -5.6480484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 853", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8848902035, - "lat": 54.6519598, - "lon": -5.6527846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT20 321D", - "royal_cypher": "crown" - } -}, -{ - "type": "node", - "id": 8848941584, - "lat": 51.3653901, - "lon": 0.0599518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR6 504D" - } -}, -{ - "type": "node", - "id": 8848941586, - "lat": 51.3705692, - "lon": 0.0713984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 99", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 8848941587, - "lat": 51.3873807, - "lon": 0.0909265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 384D" - } -}, -{ - "type": "node", - "id": 8848941589, - "lat": 51.3835961, - "lon": 0.0849832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 97D" - } -}, -{ - "type": "node", - "id": 8848941590, - "lat": 51.3671820, - "lon": 0.0647149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR6 423D" - } -}, -{ - "type": "node", - "id": 8848941591, - "lat": 51.3889109, - "lon": 0.0870260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 450D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848941592, - "lat": 51.3730793, - "lon": 0.0757690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR6 212" - } -}, -{ - "type": "node", - "id": 8848941593, - "lat": 51.3797698, - "lon": 0.0849697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848941594, - "lat": 51.3643328, - "lon": 0.0639297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR6 506" - } -}, -{ - "type": "node", - "id": 8848941595, - "lat": 51.3904751, - "lon": 0.0800648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8848941597, - "lat": 51.3852563, - "lon": 0.0787450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BR5 355" - } -}, -{ - "type": "node", - "id": 8849007597, - "lat": 54.8835459, - "lon": -1.8153608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8849007614, - "lat": 54.8854481, - "lon": -1.8101595, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8849009237, - "lat": 55.0132363, - "lon": -1.6133312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 291D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849009264, - "lat": 55.0135193, - "lon": -1.6193373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8849035103, - "lat": 57.6929520, - "lon": -2.0051535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB43 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8849035104, - "lat": 57.5887617, - "lon": -2.0921785, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB43 39D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8849035105, - "lat": 57.5857314, - "lon": -2.0919791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB43 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8849305882, - "lat": 51.6167036, - "lon": -3.7135442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849316558, - "lat": 51.6115552, - "lon": -3.7603880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA12 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849333884, - "lat": 51.6267265, - "lon": -3.6614124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF34 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849333885, - "lat": 51.6328764, - "lon": -3.6570364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF34 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849333886, - "lat": 51.6356134, - "lon": -3.6555921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF34 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849333887, - "lat": 51.6383147, - "lon": -3.6478988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF34 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849398366, - "lat": 51.5914134, - "lon": -3.7723808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA13 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849398367, - "lat": 51.5910159, - "lon": -3.7758318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SA13 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8849398368, - "lat": 51.5921599, - "lon": -3.7787339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "note": "Reference not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8849398369, - "lat": 51.5921334, - "lon": -3.7787561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SA13 14", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8849398391, - "lat": 51.5960864, - "lon": -3.7833296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SA13 18;SA13 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849942106, - "lat": 51.5731126, - "lon": -3.7571666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SA13 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849942110, - "lat": 51.5762111, - "lon": -3.7565323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849942111, - "lat": 51.5768020, - "lon": -3.7594914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SA13 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849943741, - "lat": 51.5805353, - "lon": -3.7643838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849943747, - "lat": 51.5850549, - "lon": -3.7701385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA13 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849949280, - "lat": 51.5923923, - "lon": -3.7540754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8849965433, - "lat": 51.5909014, - "lon": -3.7663230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SA13 30D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8849965434, - "lat": 51.5872085, - "lon": -3.7687726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SA13 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850006493, - "lat": 51.5990338, - "lon": -3.7797220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850006500, - "lat": 51.6009465, - "lon": -3.7721019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA13 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850039232, - "lat": 51.5938279, - "lon": -3.7722259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "Collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850266024, - "lat": 51.7312927, - "lon": -3.6679852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850266039, - "lat": 51.7074840, - "lon": -3.7145128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA11 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850266040, - "lat": 51.6996860, - "lon": -3.7285106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA11 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850352938, - "lat": 51.4857441, - "lon": 0.2881446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8850760718, - "lat": 52.6577895, - "lon": -2.3933237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TF11 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760719, - "lat": 52.6392484, - "lon": -2.4130835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "TF11 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760720, - "lat": 52.6288436, - "lon": -2.4136170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TF11 143", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8850760721, - "lat": 52.6196691, - "lon": -2.4141739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TF11 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760722, - "lat": 52.6099348, - "lon": -2.4109002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TF11 154", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8850760723, - "lat": 52.5919197, - "lon": -2.3714476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WV15 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760724, - "lat": 52.5847358, - "lon": -2.3561610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WV15 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760725, - "lat": 52.5581783, - "lon": -2.3574968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WV15 106", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8850760731, - "lat": 52.5594176, - "lon": -2.3612747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WV15 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760732, - "lat": 52.5572488, - "lon": -2.3872197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WV15 96", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8850760733, - "lat": 52.6638843, - "lon": -2.3775989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TF11 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760734, - "lat": 52.6747924, - "lon": -2.3800837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:15", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TF11 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850760735, - "lat": 52.6692544, - "lon": -2.3785011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TF11 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8850774348, - "lat": 51.8330386, - "lon": -2.6111023, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8850841755, - "lat": 56.9971468, - "lon": -5.8293481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH41 100", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8850865974, - "lat": 56.9099098, - "lon": -5.8473819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "PH39 87", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8850881454, - "lat": 50.4764451, - "lon": -4.2885076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 678", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8851005218, - "lat": 51.1338150, - "lon": 0.7537296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN26 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8851008039, - "lat": 50.5893977, - "lon": -3.7165330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8851008041, - "lat": 50.5520056, - "lon": -3.7276206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 70", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8851221547, - "lat": 56.7148682, - "lon": -5.5614907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH36 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8851221548, - "lat": 56.7060052, - "lon": -5.5681761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH36 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8851221550, - "lat": 56.7190168, - "lon": -5.2627623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:45; Sa 13:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH33 48", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8851520004, - "lat": 50.5746951, - "lon": -3.7350781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8851520005, - "lat": 50.5369679, - "lon": -3.6472406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ12 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8851520006, - "lat": 50.5217993, - "lon": -3.6090182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8851520007, - "lat": 50.5897073, - "lon": -3.6586029, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8851520008, - "lat": 50.5864714, - "lon": -3.6280463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 279", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8851520009, - "lat": 50.5852423, - "lon": -3.6313194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8853675662, - "lat": 54.6543387, - "lon": -5.6797391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 588D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8853675663, - "lat": 54.6492821, - "lon": -5.6853891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8853675664, - "lat": 54.6549180, - "lon": -5.6887005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT20 304D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8853675665, - "lat": 54.6543026, - "lon": -5.6985919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 795", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8853675666, - "lat": 54.6523867, - "lon": -5.7026209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 617D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8853675667, - "lat": 54.6571666, - "lon": -5.7063189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 869D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8853675668, - "lat": 54.6588623, - "lon": -5.7034938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8853675669, - "lat": 54.6608942, - "lon": -5.7030828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 478D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8853675670, - "lat": 54.6632239, - "lon": -5.7076040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 610D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855161695, - "lat": 52.5748776, - "lon": -3.7974139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY20 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855192254, - "lat": 51.4007893, - "lon": -3.2449336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 48D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8855192255, - "lat": 51.4120501, - "lon": -3.2442141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855192256, - "lat": 51.4151518, - "lon": -3.2453255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855192257, - "lat": 51.4175903, - "lon": -3.2479293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8855192258, - "lat": 51.4146965, - "lon": -3.2506000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF63 33D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8855192262, - "lat": 51.4140776, - "lon": -3.2556204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF63 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855192263, - "lat": 51.4122571, - "lon": -3.2565236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "type A or type B", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF63 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8855192264, - "lat": 51.4126883, - "lon": -3.2504471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF63 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855192265, - "lat": 51.4104136, - "lon": -3.2526744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "On base: A Handyside and Co Ld Derby & London. type_a or type_b", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF63 41D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8855282382, - "lat": 54.6755875, - "lon": -5.6172936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT19 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8855373586, - "lat": 53.1696272, - "lon": -0.3859325, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8856315032, - "lat": 50.9264458, - "lon": -1.6726810, - "tags": { - "amenity": "post_box", - "collection_times": "disused", - "collection_times:signed": "no", - "disused": "yes", - "drive_through": "no", - "operator": "Forestry Commission", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8856368927, - "lat": 54.1569490, - "lon": -3.0747213, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8856643106, - "lat": 51.3554414, - "lon": -2.9855746, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8857251520, - "lat": 51.4121977, - "lon": -0.1232924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8857403965, - "lat": 50.5180097, - "lon": -3.6642665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TQ12 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8857635048, - "lat": 51.8073011, - "lon": 0.1952927, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8857651224, - "lat": 51.2239459, - "lon": -1.5992604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8857700868, - "lat": 51.4787566, - "lon": -0.0647811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8858512908, - "lat": 51.4653719, - "lon": -0.9720701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG4 607D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8858605352, - "lat": 53.8095729, - "lon": -1.9545237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD22 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8858605353, - "lat": 53.8124914, - "lon": -1.9521357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD22 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8858651355, - "lat": 57.4868406, - "lon": -4.1427261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:manufacturer": "McDowall Steven & Co Ltd., London & Falkirk", - "post_box:type": "pillar", - "ref": "IV2 61", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8859833841, - "lat": 51.4712470, - "lon": -0.6182155, - "tags": { - "amenity": "post_box", - "ref": "SL4 45" - } -}, -{ - "type": "node", - "id": 8860435571, - "lat": 53.8092605, - "lon": -1.9497775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD22 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8860479020, - "lat": 53.5795970, - "lon": -2.0457754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8861065365, - "lat": 55.9246950, - "lon": -4.1686652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8861494221, - "lat": 50.5854799, - "lon": -3.6801611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ13 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8861507330, - "lat": 50.5394122, - "lon": -3.7016146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8861507331, - "lat": 50.5409660, - "lon": -3.7012347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8861866901, - "lat": 51.5033803, - "lon": -0.2434235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8862595014, - "lat": 51.6248213, - "lon": -0.2795755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 717D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8862638033, - "lat": 51.6190950, - "lon": -0.2770794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 715D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8862643546, - "lat": 51.6116752, - "lon": -0.2777578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 7011D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8862667142, - "lat": 51.6099322, - "lon": -0.2748019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 753D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8862674734, - "lat": 51.6091153, - "lon": -0.2776493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 705D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8862927517, - "lat": 53.4871087, - "lon": -1.2729864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN12 305D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8863462027, - "lat": 53.6391488, - "lon": -2.3158410, - "tags": { - "amenity": "post_box", - "ref": "BL0 124" - } -}, -{ - "type": "node", - "id": 8863479302, - "lat": 53.6433061, - "lon": -2.3219136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "485772870484469", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BL0 102", - "survey:date": "2024-06-24" - } -}, -{ - "type": "node", - "id": 8864094831, - "lat": 51.4746248, - "lon": -2.2080159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "923366518361796", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN14 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 8864094833, - "lat": 51.4712210, - "lon": -2.2050487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN14 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8864420316, - "lat": 56.7094639, - "lon": -2.4706721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DD10 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8864422320, - "lat": 56.7118959, - "lon": -2.4679564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DD10 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8864422321, - "lat": 56.7141975, - "lon": -2.4679578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DD10 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8864422322, - "lat": 56.7213590, - "lon": -2.4660333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "DD10 4", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8864426948, - "lat": 51.4065272, - "lon": -0.3377533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT8 194", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8864426949, - "lat": 51.4165655, - "lon": -0.3098734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT1 152D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8864444929, - "lat": 51.4259968, - "lon": -0.3169780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8864444930, - "lat": 51.4189636, - "lon": -0.3102403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 182D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8864444931, - "lat": 51.4211840, - "lon": -0.3190462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 209", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8864444932, - "lat": 51.4231906, - "lon": -0.3126620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW11 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8864451120, - "lat": 51.4287657, - "lon": -0.2697849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 8D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8865670298, - "lat": 51.6118917, - "lon": -0.2805140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 7041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865670299, - "lat": 51.6118893, - "lon": -0.2804865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 704", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865670300, - "lat": 51.6145831, - "lon": -0.2756429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 702", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865670770, - "lat": 51.6130259, - "lon": -0.2778005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 700", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865670771, - "lat": 51.6130296, - "lon": -0.2777666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 7001", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865681859, - "lat": 51.6155736, - "lon": -0.2757129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 703D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865689230, - "lat": 51.6061500, - "lon": -0.2643231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 726D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865691665, - "lat": 51.6161095, - "lon": -0.2570216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NW7 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865697014, - "lat": 51.6039008, - "lon": -0.2614141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 727D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865705069, - "lat": 51.6023411, - "lon": -0.2643334, - "tags": { - "addr:street": "The Greenway", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 734D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865712720, - "lat": 51.6002410, - "lon": -0.2668561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 741", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8865722164, - "lat": 51.5981509, - "lon": -0.2703458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 737D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8866510073, - "lat": 56.0155320, - "lon": -5.4481023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA30 34", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8866510075, - "lat": 56.0131892, - "lon": -5.4458626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8866510076, - "lat": 56.0103914, - "lon": -5.4495772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA30 16", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8866518770, - "lat": 51.4990208, - "lon": -0.8705229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG10 170D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 8866543815, - "lat": 51.5082112, - "lon": -0.8682442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG10 108D" - } -}, -{ - "type": "node", - "id": 8866781690, - "lat": 51.5051569, - "lon": -0.9337606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG9 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8866983300, - "lat": 51.5815483, - "lon": -0.2167025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW4 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8867502317, - "lat": 52.0974492, - "lon": -2.7652144, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8867502327, - "lat": 52.0853614, - "lon": -2.7568298, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8867502339, - "lat": 52.1104693, - "lon": -2.8007161, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8867612305, - "lat": 50.9142951, - "lon": 0.9704484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 08:00", - "mapillary": "335822434656437", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN29 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-20" - } -}, -{ - "type": "node", - "id": 8867804221, - "lat": 54.9669854, - "lon": -1.5004499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE32 5" - } -}, -{ - "type": "node", - "id": 8867821232, - "lat": 51.4036435, - "lon": -3.2609466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF63 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8867821233, - "lat": 51.4075949, - "lon": -3.2598736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CF63 49D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8867821234, - "lat": 51.4082908, - "lon": -3.2637813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF63 34D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8867821235, - "lat": 51.4079844, - "lon": -3.2686035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 22D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8867821236, - "lat": 51.4071489, - "lon": -3.2725925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8867995027, - "lat": 51.5051772, - "lon": -1.1235122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "ref": "RG8 258" - } -}, -{ - "type": "node", - "id": 8868405835, - "lat": 54.8761350, - "lon": -1.7033829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH9 262", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2024-02-08" - } -}, -{ - "type": "node", - "id": 8868405855, - "lat": 54.9725686, - "lon": -1.4335305, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE34 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8868405861, - "lat": 54.8930174, - "lon": -1.4032825, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8868405869, - "lat": 54.8758526, - "lon": -1.6991302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH9 326", - "royal_cypher": "EIIR", - "survey:date": "2024-02-08" - } -}, -{ - "type": "node", - "id": 8868405876, - "lat": 54.8631708, - "lon": -1.6851473, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8868405884, - "lat": 54.9344369, - "lon": -1.3685880, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8868405889, - "lat": 54.9181971, - "lon": -1.3710427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8868405894, - "lat": 54.8317846, - "lon": -1.6301473, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8868719737, - "lat": 51.4167413, - "lon": -3.2827727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8868719738, - "lat": 51.4216105, - "lon": -3.2788234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF62 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8868719743, - "lat": 51.4110506, - "lon": -3.2833601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 19D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8868757071, - "lat": 52.3012533, - "lon": -3.5085051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LD6 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8868957019, - "lat": 52.2181257, - "lon": -2.8931267, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8868960072, - "lat": 51.9832822, - "lon": -2.6817954, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869590912, - "lat": 52.0384569, - "lon": -3.2685050, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LD3 418", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869634818, - "lat": 52.0639276, - "lon": -3.2879779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LD3 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869673200, - "lat": 53.2513975, - "lon": -0.8929773, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8869707806, - "lat": 53.1641742, - "lon": -0.8072772, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8869736530, - "lat": 51.8253041, - "lon": -2.2811698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "pillar", - "ref": "GL2 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736535, - "lat": 51.8308969, - "lon": -2.2764607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736536, - "lat": 51.8333345, - "lon": -2.2740532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 10:00", - "post_box:type": "meter", - "ref": "GL2 392P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736537, - "lat": 51.8351117, - "lon": -2.2745441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736539, - "lat": 51.8998583, - "lon": -2.2219735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736541, - "lat": 51.9173578, - "lon": -2.1966246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736548, - "lat": 51.9538395, - "lon": -2.1725196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:15", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 329", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869736549, - "lat": 51.9530617, - "lon": -2.1584889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL19 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869899313, - "lat": 52.4391198, - "lon": 1.2845229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8869974680, - "lat": 51.6863591, - "lon": -2.7347079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP16 394", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8870034093, - "lat": 51.6398695, - "lon": -2.6581711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8870034094, - "lat": 51.6464882, - "lon": -2.6520033, - "tags": { - "amenity": "post_box", - "mapillary": "6169834406436610", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NP16 433", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8870162657, - "lat": 50.5136900, - "lon": -4.1028064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL20 582D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8870162658, - "lat": 50.5112546, - "lon": -4.0896847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Approximate position", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL20 481D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8870313391, - "lat": 50.4265408, - "lon": -3.8345770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "A rare Romec pillar box, which replaced a 2010_pattern lamp box, which itself replaced a GR wall box at postbox TQ10 98", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TQ10 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8870478240, - "lat": 51.3366569, - "lon": -0.5792000, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "last_checked": "2021-06-26", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU24 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8870602311, - "lat": 51.3218529, - "lon": -0.5737350, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-26", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU21 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8870610557, - "lat": 51.3236075, - "lon": -0.5726806, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-26", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU21 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8870658772, - "lat": 50.5846562, - "lon": -3.6090451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8870658773, - "lat": 50.6433321, - "lon": -3.8100605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ13 163", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8871180336, - "lat": 52.2617110, - "lon": -3.1094741, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8871980321, - "lat": 53.5487307, - "lon": -2.5213417, - "tags": { - "amenity": "post_box", - "description": "Post box is located inside the post office.", - "indoor": "yes", - "ref": "BL5 1812" - } -}, -{ - "type": "node", - "id": 8872542339, - "lat": 50.4819603, - "lon": -3.7247998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ13 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8872542341, - "lat": 50.5060100, - "lon": -3.7058602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8872634517, - "lat": 53.1508500, - "lon": -2.2320084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 08:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW12 35", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8873153765, - "lat": 52.3073002, - "lon": -2.7054906, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8873481751, - "lat": 53.5483231, - "lon": -2.0528190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "606786274795104", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2023-03-15" - } -}, -{ - "type": "node", - "id": 8873712180, - "lat": 51.7406119, - "lon": 0.6894800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8874530172, - "lat": 51.4070343, - "lon": -0.4320445, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8874559146, - "lat": 51.4145273, - "lon": -1.2249461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG7 348", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8875267949, - "lat": 52.6974097, - "lon": -2.4768674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TF1 470", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8875486770, - "lat": 51.5108272, - "lon": -1.0234721, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8878093277, - "lat": 51.7765540, - "lon": 0.0891612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8878137785, - "lat": 51.5000316, - "lon": -3.1727901, - "tags": { - "amenity": "post_box", - "mapillary": "308805527478853", - "name": "Decomissioned Post Box", - "post_box:type": "pillar", - "survey:date": "2020-09-12" - } -}, -{ - "type": "node", - "id": 8878137786, - "lat": 51.4976765, - "lon": -3.1698737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Pen-y-Wain Road Postbox" - } -}, -{ - "type": "node", - "id": 8878562806, - "lat": 50.4182013, - "lon": -4.1498567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 13:15", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PL5 291;PL5 2910", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8879600031, - "lat": 51.4865090, - "lon": -1.0927676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "mapillary": "568154547502416", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG8 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-02-14" - } -}, -{ - "type": "node", - "id": 8882938469, - "lat": 50.3608943, - "lon": -4.0581293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL9 477D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 8883754884, - "lat": 51.2184786, - "lon": -1.5977329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "last_checked": "2021-12-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8883791613, - "lat": 51.1916621, - "lon": -1.7553422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8883791614, - "lat": 51.1890480, - "lon": -1.7358774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP4 143", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8883914928, - "lat": 51.9515768, - "lon": -2.8863466, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8883981904, - "lat": 51.7869828, - "lon": 0.1545344, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8885844290, - "lat": 50.5674946, - "lon": -3.8163615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8885844291, - "lat": 50.5594175, - "lon": -3.8272345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8885844292, - "lat": 50.5505993, - "lon": -3.8340750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TQ13 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8885844293, - "lat": 50.5419775, - "lon": -3.8197633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8885844294, - "lat": 50.6270002, - "lon": -3.7730168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ13 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8886937644, - "lat": 51.1157190, - "lon": -0.3316236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8887196150, - "lat": 51.1690102, - "lon": -0.3173295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8887196151, - "lat": 51.1630330, - "lon": -0.3190841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH4 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8887196152, - "lat": 51.1576465, - "lon": -0.3190206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8887816732, - "lat": 50.5634566, - "lon": -3.6875977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 176D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8887816733, - "lat": 50.4060172, - "lon": -3.8637593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ10 80D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8887816734, - "lat": 50.4307104, - "lon": -3.7680827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ10 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8887816735, - "lat": 50.4222703, - "lon": -3.8332093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ10 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8887816736, - "lat": 50.4369242, - "lon": -3.8379762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "TQ10 45D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8887883281, - "lat": 51.6551487, - "lon": -1.9730618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8887930145, - "lat": 51.6581569, - "lon": -2.0027855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8888657372, - "lat": 51.3710366, - "lon": 0.1051575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 334", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8888657373, - "lat": 51.3698263, - "lon": 0.1003917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 328", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8888657374, - "lat": 51.3717480, - "lon": 0.0911616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 157", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8888657375, - "lat": 51.3737861, - "lon": 0.0933655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 358", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8888657376, - "lat": 51.3741146, - "lon": 0.1167518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR5 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8888799436, - "lat": 54.5222663, - "lon": -1.3679715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8888868419, - "lat": 53.2681657, - "lon": -3.9241397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL34 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8888868451, - "lat": 53.2670332, - "lon": -3.9356073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL34 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8888963372, - "lat": 50.3575122, - "lon": -3.5485794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 152", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8888963374, - "lat": 50.3491881, - "lon": -3.5681682, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 248", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8889011587, - "lat": 51.4474767, - "lon": -0.3253231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "image": "https://archive.org/details/twickenham-2019-02-17/Twickenham%202019-02-17/DSCN8780.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, London & Falkirk", - "post_box:type": "pillar", - "ref": "TW1 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8889094639, - "lat": 53.1480308, - "lon": -0.7521473, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8889570433, - "lat": 53.3718077, - "lon": -2.5972500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8889570434, - "lat": 53.3657459, - "lon": -2.5887270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8889665318, - "lat": 50.2266675, - "lon": -3.8114547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 92", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8889665319, - "lat": 50.2313453, - "lon": -3.7992655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8889713815, - "lat": 51.3383262, - "lon": -0.2539634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT17 113D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8890615442, - "lat": 50.5410960, - "lon": -4.9381238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "note": "Re-located from former Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL28 157", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8890739826, - "lat": 54.9258772, - "lon": -1.3808006, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8890739887, - "lat": 54.8473565, - "lon": -1.6012167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8891038345, - "lat": 57.5216638, - "lon": -1.9387492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB42 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8891038346, - "lat": 57.5238685, - "lon": -2.0085800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB42 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8891038347, - "lat": 57.5244844, - "lon": -1.9963443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB42 7D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8891038348, - "lat": 57.5207842, - "lon": -2.1322516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB42 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8891338781, - "lat": 50.7908068, - "lon": -2.7532950, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DT6 76", - "ref:GB:uprn": "10015341009", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8891430483, - "lat": 50.7917361, - "lon": -2.7602874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT6 114", - "ref:GB:uprn": "10015424686", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8891770761, - "lat": 51.4947239, - "lon": -3.1557128, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8892128242, - "lat": 52.7104879, - "lon": -3.2529566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8892129389, - "lat": 52.6810073, - "lon": -3.2203393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY21 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey, Bing", - "survey:date": "2021-06-24" - } -}, -{ - "type": "node", - "id": 8892229331, - "lat": 50.7921393, - "lon": -2.7495076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DT6 69", - "ref:GB:uprn": "10015431581", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8892238738, - "lat": 50.7030461, - "lon": -2.5134759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 62", - "ref:GB:uprn": "10015275621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8892480596, - "lat": 51.3640084, - "lon": 0.1116088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 400", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8892480597, - "lat": 51.3677338, - "lon": 0.0957077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8892480598, - "lat": 51.3612852, - "lon": 0.1130270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 435", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8892480599, - "lat": 51.3654232, - "lon": 0.0933957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8892480600, - "lat": 51.3678207, - "lon": 0.1098810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 477D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8892480601, - "lat": 51.3610098, - "lon": 0.1077291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8892480604, - "lat": 51.3638693, - "lon": 0.1049215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 508", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8892480607, - "lat": 51.3660122, - "lon": 0.1009330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 350", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8892480608, - "lat": 51.3656545, - "lon": 0.1065220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8892480609, - "lat": 51.3627878, - "lon": 0.1003236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 391D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8892955349, - "lat": 50.7810349, - "lon": -2.8987475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT6 18", - "ref:GB:uprn": "10015268637", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8893232997, - "lat": 50.7967002, - "lon": -2.3383448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 120", - "ref:GB:uprn": "10015401615", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8893233357, - "lat": 50.7839617, - "lon": -2.4106716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 14", - "ref:GB:uprn": "10015398264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8893233367, - "lat": 50.7601803, - "lon": -2.3882837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 110", - "ref:GB:uprn": "10015457846", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8893233377, - "lat": 50.7551969, - "lon": -2.3771976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT2 123", - "ref:GB:uprn": "10015478075", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8893238019, - "lat": 51.4410078, - "lon": -0.3326972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "image": "https://archive.org/details/twickenham-2019-02-17/Twickenham%202019-02-17/DSCN8857.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8893387618, - "lat": 50.6727882, - "lon": -2.2772397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 190", - "ref:GB:uprn": "10015352162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8895325125, - "lat": 56.5618338, - "lon": -3.5823823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "PH8 65D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 8895472512, - "lat": 51.8548909, - "lon": -3.1040244, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8895872573, - "lat": 50.2788428, - "lon": -3.8672305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 78", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8895922932, - "lat": 50.2458758, - "lon": -3.8589124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8895922933, - "lat": 50.2478518, - "lon": -3.8533201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8895946940, - "lat": 53.1233227, - "lon": -0.8032609, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8895952696, - "lat": 53.1462592, - "lon": -0.8077213, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8895989502, - "lat": 51.5287523, - "lon": 0.0336056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8895989503, - "lat": 51.5301566, - "lon": 0.0372190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8895996059, - "lat": 51.5002096, - "lon": -0.2393907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "note": "plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "W12 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8897362322, - "lat": 55.5979895, - "lon": -2.5153909, - "tags": { - "amenity": "post_box", - "survey:date": "2021-07-05" - } -}, -{ - "type": "node", - "id": 8898825534, - "lat": 50.8497162, - "lon": -3.0119972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX13 105" - } -}, -{ - "type": "node", - "id": 8898883137, - "lat": 50.8157428, - "lon": -4.5430559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX23 118", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8899284195, - "lat": 54.4152746, - "lon": -8.0898566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8899312118, - "lat": 54.8440148, - "lon": -6.6714402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BT46 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8900017451, - "lat": 52.5795183, - "lon": -1.1310212, - "tags": { - "amenity": "post_box", - "ref": "LE18 468" - } -}, -{ - "type": "node", - "id": 8900017452, - "lat": 52.5795041, - "lon": -1.1310285, - "tags": { - "amenity": "post_box", - "ref": "LE18 776" - } -}, -{ - "type": "node", - "id": 8900566775, - "lat": 50.6319514, - "lon": -2.4654772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 8901965387, - "lat": 51.7714317, - "lon": -1.4266501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX29 308D" - } -}, -{ - "type": "node", - "id": 8902354966, - "lat": 52.7131598, - "lon": -0.4459716, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375031, - "lat": 51.4048048, - "lon": -3.2833794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8902375032, - "lat": 51.4036411, - "lon": -3.2908778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375033, - "lat": 51.4061532, - "lon": -3.2954987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF62 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375034, - "lat": 51.4083238, - "lon": -3.2990777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 50D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8902375035, - "lat": 51.4080528, - "lon": -3.2939858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF62 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375051, - "lat": 51.4064707, - "lon": -3.2866927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF62 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375055, - "lat": 51.4077576, - "lon": -3.2817939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8902375056, - "lat": 51.4111430, - "lon": -3.2723994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375057, - "lat": 51.4130859, - "lon": -3.2690221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "lamp", - "ref": "CF62 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8902375060, - "lat": 51.4122570, - "lon": -3.2641016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF63 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8903765456, - "lat": 54.3615115, - "lon": -5.7647176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 45" - } -}, -{ - "type": "node", - "id": 8904192690, - "lat": 55.6520112, - "lon": -5.6611849, - "tags": { - "amenity": "post_box", - "name": "Tayinloan", - "post_box:type": "lamp", - "ref": "PA29 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8904727367, - "lat": 50.5345792, - "lon": -3.5535970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 258D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8905133411, - "lat": 51.6766205, - "lon": -1.6672199, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8905698107, - "lat": 51.4541707, - "lon": -0.2177831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 36", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8905698108, - "lat": 51.4530478, - "lon": -0.2279218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8905698109, - "lat": 51.4501597, - "lon": -0.2211854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW15 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8905711256, - "lat": 51.4328629, - "lon": -0.3026596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TW10 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8906538447, - "lat": 50.2876135, - "lon": -3.7742817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 57D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8906543967, - "lat": 50.4927474, - "lon": -4.0913740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 647", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8906543968, - "lat": 50.4942801, - "lon": -4.0808032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL20 766D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8906543969, - "lat": 50.6019426, - "lon": -4.0922591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL19 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8906982361, - "lat": 51.4817164, - "lon": -1.0470939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "RG8 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8907389937, - "lat": 51.8698395, - "lon": 0.1722914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CM23 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8907674589, - "lat": 57.4469455, - "lon": -4.2222054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "wall", - "ref": "IV2 97D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8907822191, - "lat": 50.4266837, - "lon": -4.1340288, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL6 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 8908337144, - "lat": 54.1976317, - "lon": -3.1175867, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8909711959, - "lat": 54.1268792, - "lon": -3.1540711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "post_box:type": "wall", - "ref": "LA12 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8909921166, - "lat": 51.9570074, - "lon": -2.9889854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR2 497", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8910149786, - "lat": 53.7983880, - "lon": -1.7740951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8910302450, - "lat": 51.0155137, - "lon": -0.3531662, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8910307337, - "lat": 51.0210204, - "lon": -0.3554222, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8910373365, - "lat": 51.0245773, - "lon": -0.3421175, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-06-06", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8910397898, - "lat": 58.1699892, - "lon": -5.2616329, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8910437387, - "lat": 51.8319151, - "lon": 0.1103566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "lamp", - "ref": "CM21 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8910553015, - "lat": 51.4577875, - "lon": 0.1369331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 11:15", - "image": "hhttps://archive.org/details/bexleyheath-2019-03-28/Bexleyheath-2019-03-28/DSCN9054.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA6 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8910650477, - "lat": 55.7618699, - "lon": -4.2098353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 8911243170, - "lat": 50.7233581, - "lon": -4.1261793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8911277365, - "lat": 50.7078717, - "lon": -4.1669202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX20 201D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8911393667, - "lat": 51.4328183, - "lon": -0.9551807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 405D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8911478046, - "lat": 52.7285065, - "lon": -2.7359087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "indoor": "yes", - "note": "In foyer of Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SY1 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8911486384, - "lat": 51.4300277, - "lon": -0.9571696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 573D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8911496442, - "lat": 51.7820284, - "lon": -2.3162672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL2 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8911496443, - "lat": 51.7940908, - "lon": -2.3066019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL2 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8911780818, - "lat": 52.5458768, - "lon": -2.8224534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SY6 424" - } -}, -{ - "type": "node", - "id": 8914275394, - "lat": 51.4955514, - "lon": -3.1745612, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8914475467, - "lat": 54.1411657, - "lon": -6.3605762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8914731644, - "lat": 51.5229924, - "lon": -3.2156922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "heritage": "2", - "heritage:operator": "cadw", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref:GB:cadw": "25924", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikidata": "Q29502840" - } -}, -{ - "type": "node", - "id": 8914906962, - "lat": 52.4556095, - "lon": 1.4370451, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR35 3501", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8915946952, - "lat": 50.2610396, - "lon": -4.7852470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL26 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8916141457, - "lat": 54.9095218, - "lon": -5.0371028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG9 7D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8917481353, - "lat": 53.4325014, - "lon": -2.0620729, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8917766314, - "lat": 51.7901981, - "lon": 0.1976000, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8917766945, - "lat": 54.1497878, - "lon": -1.6148376, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8917811245, - "lat": 52.8879078, - "lon": -2.2588559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:type": "wall", - "ref": "ST21 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8917828670, - "lat": 51.6257054, - "lon": -2.0666172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "SN16 215", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8920399497, - "lat": 54.2538671, - "lon": -3.1199748, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8920601403, - "lat": 57.1827542, - "lon": -2.1331172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB22 119D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8920745261, - "lat": 51.3433108, - "lon": -0.2471200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8920745262, - "lat": 51.3420726, - "lon": -0.2532133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8920745263, - "lat": 51.3395999, - "lon": -0.2555139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8920745264, - "lat": 51.3337229, - "lon": -0.2636457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8920761560, - "lat": 51.4135947, - "lon": -0.2968716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 46D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8922877847, - "lat": 50.6847042, - "lon": -3.8145869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8922877848, - "lat": 50.6641242, - "lon": -3.8625045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 60", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8922877849, - "lat": 50.6634330, - "lon": -3.8713046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ13 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8922877850, - "lat": 50.6753142, - "lon": -3.8903369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 99", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8922877851, - "lat": 50.6861557, - "lon": -3.8917040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8922877852, - "lat": 50.6520854, - "lon": -3.8527019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 102D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8922933657, - "lat": 53.1281403, - "lon": 0.3410470, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8923016227, - "lat": 53.1365361, - "lon": 0.3299264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 8923360636, - "lat": 51.9059979, - "lon": -2.5965059, - "tags": { - "amenity": "post_box", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 8923641154, - "lat": 51.7549322, - "lon": 0.4558524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 470" - } -}, -{ - "type": "node", - "id": 8923675234, - "lat": 53.3898305, - "lon": -2.5802616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8924653617, - "lat": 51.4215441, - "lon": -0.2987562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 203D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8924653618, - "lat": 51.4259761, - "lon": -0.3048991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT2 202D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8924753555, - "lat": 50.6794369, - "lon": -3.8593349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8925154804, - "lat": 51.7554496, - "lon": 0.4446773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 471" - } -}, -{ - "type": "node", - "id": 8925197838, - "lat": 51.7491150, - "lon": 0.4536844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 394", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8925861795, - "lat": 50.6679926, - "lon": -3.7323272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ13 208", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8925861796, - "lat": 50.6217144, - "lon": -3.7336051, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8925861797, - "lat": 50.6233037, - "lon": -3.7263699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8925910375, - "lat": 52.6328735, - "lon": -0.3448537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE6 133D" - } -}, -{ - "type": "node", - "id": 8926696382, - "lat": 52.2994391, - "lon": -0.6187834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NN10 1063" - } -}, -{ - "type": "node", - "id": 8926712430, - "lat": 51.4867499, - "lon": -1.4736915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8926717018, - "lat": 51.5095243, - "lon": -3.1936680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8926994705, - "lat": 53.4535857, - "lon": -2.7217657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 14", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8927069779, - "lat": 54.1067062, - "lon": -3.2464777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "LA14 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8927091429, - "lat": 54.1235727, - "lon": -3.2278661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LA14 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8927091430, - "lat": 54.1216824, - "lon": -3.2248016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA14 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8927123912, - "lat": 54.1056204, - "lon": -3.2583483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "LA14 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8927123913, - "lat": 54.1143740, - "lon": -3.2631320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA14 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8927775924, - "lat": 50.5555037, - "lon": -3.9141550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 453", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8927793803, - "lat": 50.5192524, - "lon": -3.7609012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8927793804, - "lat": 50.5199001, - "lon": -3.7712847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "TQ13 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8927793805, - "lat": 50.5102046, - "lon": -3.7648817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TQ13 193", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8927793806, - "lat": 50.5229987, - "lon": -3.7406648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ13 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8927793807, - "lat": 50.5263959, - "lon": -3.7638676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ13 132", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8927793808, - "lat": 50.5153644, - "lon": -3.7553596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 255", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8928519693, - "lat": 51.4404352, - "lon": -0.9545043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG2 446D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8928527922, - "lat": 51.4338354, - "lon": -0.9569947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG2 403D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8928527952, - "lat": 51.4444915, - "lon": -0.9535575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG1 352D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8928540754, - "lat": 51.3200710, - "lon": -0.3152782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "KT21 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8928540755, - "lat": 51.3130506, - "lon": -0.3153902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8928588248, - "lat": 51.3129869, - "lon": -0.3023158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8928588256, - "lat": 51.3095649, - "lon": -0.3034470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 152D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8928588270, - "lat": 51.3184970, - "lon": -0.2896229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8928588271, - "lat": 51.3178306, - "lon": -0.2979733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 202D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8928588272, - "lat": 51.3192111, - "lon": -0.3000051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 177D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8928588273, - "lat": 51.3196063, - "lon": -0.2941599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 176D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8928588274, - "lat": 51.3168862, - "lon": -0.3045665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT21 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102195" - } -}, -{ - "type": "node", - "id": 8929097187, - "lat": 51.4851502, - "lon": -3.5594070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929248939, - "lat": 50.9418808, - "lon": -2.6256613, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA20 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8929311502, - "lat": 52.0561207, - "lon": 0.2353972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CB10 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929367703, - "lat": 57.4658879, - "lon": -2.1148715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15, Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB41 408", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8929417544, - "lat": 51.5848810, - "lon": -0.1280031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8929427060, - "lat": 51.5850850, - "lon": -0.1149780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 11D" - } -}, -{ - "type": "node", - "id": 8929427061, - "lat": 51.5814287, - "lon": -0.1119102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 35D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8929427062, - "lat": 51.5777642, - "lon": -0.1179190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8929427063, - "lat": 51.5774272, - "lon": -0.1251030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "N8 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929485870, - "lat": 51.3441703, - "lon": -0.2852972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929485871, - "lat": 51.3457435, - "lon": -0.2815166, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT19 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929485872, - "lat": 51.3385900, - "lon": -0.2953052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929486968, - "lat": 51.3340538, - "lon": -0.2802560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929486969, - "lat": 51.3286313, - "lon": -0.2613095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT18 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929486970, - "lat": 51.3272903, - "lon": -0.2595017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT18 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929486971, - "lat": 51.3240516, - "lon": -0.2624253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "post_box:type": "pillar", - "ref": "KT18 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929488940, - "lat": 51.5864331, - "lon": -0.1123925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "ref": "N8 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929508039, - "lat": 51.3504619, - "lon": -0.2549265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8929508040, - "lat": 51.3499681, - "lon": -0.2613095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT17 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929516248, - "lat": 51.4690570, - "lon": -3.5521439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF35 83", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8929518524, - "lat": 51.3366671, - "lon": -0.2880330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT19 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929529337, - "lat": 51.2947438, - "lon": -1.8079346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SN9 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8929545691, - "lat": 51.4614231, - "lon": -3.5684752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 54", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8929549921, - "lat": 51.4679814, - "lon": -3.5250221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930396225, - "lat": 51.4613095, - "lon": -3.5959417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF32 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930396226, - "lat": 51.4644591, - "lon": -3.5896748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF32 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930396227, - "lat": 51.4627182, - "lon": -3.5917414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF32 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930442768, - "lat": 51.4639816, - "lon": -3.6344951, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930442770, - "lat": 51.4608065, - "lon": -3.6315098, - "tags": { - "addr:city": "Bridgend", - "addr:suburb": "Ogmore-by-Sea", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "mapillary": "1714905112350102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF32 41", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8930718700, - "lat": 54.9055918, - "lon": -5.0304196, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG9 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8930774946, - "lat": 52.8504090, - "lon": -3.0412829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "note": "approx location. In entrance lobby to Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SY11 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8930779610, - "lat": 52.8606291, - "lon": -3.0548107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SY11 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8930800670, - "lat": 50.7705868, - "lon": -2.3032310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DT2 151", - "ref:GB:uprn": "10015437364" - } -}, -{ - "type": "node", - "id": 8930800681, - "lat": 50.7707196, - "lon": -2.3200841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DT2 188", - "ref:GB:uprn": "10015424964", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930800699, - "lat": 50.7832889, - "lon": -2.3389436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DT2 186", - "ref:GB:uprn": "10015368324", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930845037, - "lat": 50.8236549, - "lon": -2.3382714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930845101, - "lat": 50.8558588, - "lon": -2.3512712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DT11 155", - "ref:GB:uprn": "10015280116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930866513, - "lat": 52.6895853, - "lon": -0.8799762, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8930923701, - "lat": 54.1866018, - "lon": -2.9810203, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "LA11 139", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8930974217, - "lat": 51.4191696, - "lon": -0.9593494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "RG2 599", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8931000617, - "lat": 51.4195360, - "lon": -0.9637564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "RG2 398D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8931292288, - "lat": 51.8490029, - "lon": -2.4334607, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8931299581, - "lat": 52.3328896, - "lon": -0.1205779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8931308664, - "lat": 52.2977595, - "lon": -2.9312017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY7 349", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8931354379, - "lat": 51.8867801, - "lon": -2.6841027, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8931363001, - "lat": 52.1853872, - "lon": -2.9276049, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8931390055, - "lat": 52.1941397, - "lon": -2.9709299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR5 466", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8931419973, - "lat": 51.7060654, - "lon": -2.5741273, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8932847141, - "lat": 52.2532216, - "lon": -2.8591058, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00, Su off", - "operator": "Royal Mail", - "source": "survey;gps" - } -}, -{ - "type": "node", - "id": 8933777838, - "lat": 55.9343757, - "lon": -3.1051317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EH15 637D" - } -}, -{ - "type": "node", - "id": 8933905162, - "lat": 56.7454546, - "lon": -6.1745138, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8934046216, - "lat": 53.4515321, - "lon": -2.7389465, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA10 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8934058518, - "lat": 52.9270773, - "lon": -3.0546459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL14 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8934320768, - "lat": 51.4564770, - "lon": 0.1463185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "image": "https://archive.org/details/bexleyheath-2019-03-28/Bexleyheath-2019-03-28/DSCN9187.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "DA6 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8934320769, - "lat": 51.4564853, - "lon": 0.1463175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00", - "fixme": "May have changed more recently, as many meter boxes are now also used as parcel postboxes", - "image": "https://archive.org/details/bexleyheath-2019-03-28/Bexleyheath-2019-03-28/DSCN9184.JPG", - "opening_hours": "Mo-Fr 13:00-18:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DA6 4061" - } -}, -{ - "type": "node", - "id": 8934349471, - "lat": 51.0400620, - "lon": -2.7769232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA10 518", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8935427270, - "lat": 51.3762785, - "lon": -0.9440092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 377D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8935492027, - "lat": 51.3732151, - "lon": -0.9162501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8936537528, - "lat": 54.9040381, - "lon": -5.0327240, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG9 18D" - } -}, -{ - "type": "node", - "id": 8937046679, - "lat": 51.4561642, - "lon": 0.1440420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8939418539, - "lat": 50.4627928, - "lon": -3.4949823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8939418540, - "lat": 50.4656161, - "lon": -3.4948187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8939418541, - "lat": 50.5137436, - "lon": -3.5179687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ1 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8939418542, - "lat": 50.5079979, - "lon": -3.5190137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ1 285D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-12" - } -}, -{ - "type": "node", - "id": 8939418543, - "lat": 50.5009344, - "lon": -3.5240322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8939824117, - "lat": 50.5327267, - "lon": -3.6182409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TQ12 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8939928572, - "lat": 51.8732163, - "lon": 0.1724601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "ref": "CM23 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8940586677, - "lat": 51.8733541, - "lon": 0.1663851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM23 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8941973125, - "lat": 52.0576032, - "lon": -2.7203492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8942743155, - "lat": 50.5610856, - "lon": -3.6648564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8942743156, - "lat": 50.5607219, - "lon": -3.6686972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ12 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8942743157, - "lat": 50.5633488, - "lon": -3.6764617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "ref": "TQ12 183", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8942743158, - "lat": 50.5611068, - "lon": -3.7208362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8942891980, - "lat": 53.7935004, - "lon": -2.8720759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PR4 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8944311615, - "lat": 51.4839390, - "lon": -0.9888679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "recent type: rounded roof small box on black pole.", - "post_box:type": "lamp", - "ref": "RG4 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8944611887, - "lat": 52.2859764, - "lon": 0.8392940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP31 2032D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8944710088, - "lat": 52.2026873, - "lon": 0.9828083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8036", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8944765114, - "lat": 50.9180452, - "lon": -2.7067518, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8944825663, - "lat": 54.9049272, - "lon": -5.0245077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DG9 100", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8946541926, - "lat": 51.1697443, - "lon": -0.1732359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "drive_through": "no", - "name": "Massetts Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH6 243", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8946888747, - "lat": 52.1793822, - "lon": 0.9973110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP14 8014", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8946892361, - "lat": 51.3674243, - "lon": -1.6631889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "mapillary": "1145264732638267", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "SN8 35", - "royal_cypher": "GVIR", - "survey:date": "2021-05-29" - } -}, -{ - "type": "node", - "id": 8947500818, - "lat": 51.7809190, - "lon": 0.0947929, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8948753937, - "lat": 52.1897165, - "lon": 0.9999921, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "IP14 8016", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP14 8016D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-12-20" - } -}, -{ - "type": "node", - "id": 8949802638, - "lat": 51.7506653, - "lon": -2.9278706, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8950624458, - "lat": 50.3910428, - "lon": -4.1136171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL3 220D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8951515767, - "lat": 51.4212768, - "lon": -2.7119082, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8951790972, - "lat": 52.1903324, - "lon": 0.9921662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "IP14 8177D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8951795463, - "lat": 52.1886253, - "lon": 0.9970354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP14 8117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8952116260, - "lat": 50.8589451, - "lon": 0.5597836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 8952346761, - "lat": 50.6697918, - "lon": -2.2685209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DT2 45", - "ref:GB:uprn": "10015272371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8952481334, - "lat": 51.3356705, - "lon": -0.4360200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT11 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-09-06" - } -}, -{ - "type": "node", - "id": 8952481346, - "lat": 51.3366309, - "lon": -0.4206525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT11 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8952482263, - "lat": 56.9843778, - "lon": -3.5039879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_2", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "AB35 238", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8952493621, - "lat": 53.8112047, - "lon": -1.7994698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BD9 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8952523276, - "lat": 51.5748828, - "lon": -0.4254473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "image": "https://archive.org/details/ruislip-2019-04-28/DSCN9332.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "HA4 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "start_date": "2011" - } -}, -{ - "type": "node", - "id": 8952557615, - "lat": 50.6658053, - "lon": -3.7836631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 165", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8952557616, - "lat": 50.5719417, - "lon": -3.7144202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "local knowledge;survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8952565817, - "lat": 50.5810700, - "lon": -3.7201281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 178", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8952565818, - "lat": 50.5812422, - "lon": -3.6955244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:15; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TQ13 15", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8952565819, - "lat": 50.5825441, - "lon": -3.6851132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8952565820, - "lat": 50.5778395, - "lon": -3.6803428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8953710316, - "lat": 50.6111606, - "lon": -3.5917039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 127D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8953734917, - "lat": 50.6031312, - "lon": -3.5977922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8954238630, - "lat": 54.4270465, - "lon": -2.0021775, - "tags": { - "amenity": "post_box", - "flickr": "https://www.flickr.com/photos/32159881@N03/3419684810", - "ref": "DL11 11" - } -}, -{ - "type": "node", - "id": 8954757797, - "lat": 54.9036182, - "lon": -5.0235841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG9 19", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8954977710, - "lat": 52.1048709, - "lon": 1.2574558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8954977711, - "lat": 52.1162131, - "lon": 1.2582310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP13 6273", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8954977712, - "lat": 52.1137746, - "lon": 1.2542291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8954977713, - "lat": 52.1111012, - "lon": 1.2504981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8954977716, - "lat": 52.1244360, - "lon": 1.2980462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955022668, - "lat": 53.0034371, - "lon": -1.5237904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "791480228407020", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-12-24" - } -}, -{ - "type": "node", - "id": 8955035830, - "lat": 52.0154821, - "lon": -2.7976051, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8955283793, - "lat": 52.0933994, - "lon": 1.2486085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955283795, - "lat": 52.0747790, - "lon": 1.2435110, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP13 6379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955283797, - "lat": 52.0788367, - "lon": 1.2612404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6347", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955283799, - "lat": 52.0843656, - "lon": 1.2530778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6287" - } -}, -{ - "type": "node", - "id": 8955283803, - "lat": 52.0903903, - "lon": 1.2598879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955290041, - "lat": 52.0905716, - "lon": 1.2704914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 08:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP13 6327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955290042, - "lat": 52.0884419, - "lon": 1.2868434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP13 6354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955290043, - "lat": 52.1014672, - "lon": 1.2990488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP13 6267D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8955290046, - "lat": 52.1071856, - "lon": 1.2846266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955290047, - "lat": 52.1035554, - "lon": 1.2698831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8955458685, - "lat": 56.1082613, - "lon": -3.9372907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK8 125D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8955458686, - "lat": 56.1055754, - "lon": -3.9402277, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK8 29D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8955458687, - "lat": 56.1030645, - "lon": -3.9391693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:manufacturer": "McDowall, Steven & Co Ltd, Falkirk", - "post_box:type": "wall", - "ref": "FK7 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8955477711, - "lat": 50.6171402, - "lon": -3.6431575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "ref": "TQ13 120", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8955477712, - "lat": 50.6188362, - "lon": -3.6290858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ13 179", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8955838565, - "lat": 51.6510722, - "lon": -0.0406245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN3 120D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8956248087, - "lat": 54.9033573, - "lon": -5.0191566, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG9 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8956286339, - "lat": 53.8657049, - "lon": -2.1404178, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BB8 312D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8956746663, - "lat": 51.3675760, - "lon": -2.2007364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 185D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 8957218594, - "lat": 52.0309289, - "lon": -3.2072179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "644454447085935", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 8958013027, - "lat": 56.1250351, - "lon": -3.9409550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "FK8 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8958017134, - "lat": 51.3178412, - "lon": 0.2207944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8958082531, - "lat": 53.1634891, - "lon": -3.7078939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Unusual wall box set into the window of the former Post Office, now private house", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL22 115D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8958348012, - "lat": 52.5950012, - "lon": -1.1410466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8958411897, - "lat": 50.4458477, - "lon": -3.8089499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ10 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8958411898, - "lat": 50.4398618, - "lon": -3.7758420, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ10 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8958436119, - "lat": 50.4437156, - "lon": -3.8566924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ10 55D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102195", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8958436120, - "lat": 50.4316754, - "lon": -3.7874377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ10 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8958436122, - "lat": 50.4228291, - "lon": -3.8256947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "TQ10 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8958436123, - "lat": 50.3937250, - "lon": -3.8124909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ10 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8959323543, - "lat": 52.4699499, - "lon": -0.1536376, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "PE26 21" - } -}, -{ - "type": "node", - "id": 8960344277, - "lat": 51.3764563, - "lon": -2.2400301, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8960710794, - "lat": 52.4413336, - "lon": -2.3219555, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WV15 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8960745547, - "lat": 52.4416639, - "lon": -2.4838610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DY10 134", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8960766990, - "lat": 52.5747118, - "lon": -3.0052596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY5 343D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8960789952, - "lat": 52.4369401, - "lon": -3.0464476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY7 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8961084082, - "lat": 53.5326278, - "lon": -1.9989299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OL3 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8961113414, - "lat": 53.5536774, - "lon": -2.0189761, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8961282962, - "lat": 50.5884876, - "lon": -3.6777802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ13 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8961282963, - "lat": 50.5912606, - "lon": -3.6779837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8961282964, - "lat": 50.5918812, - "lon": -3.6697686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8961879110, - "lat": 51.4954284, - "lon": -0.2321156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 23", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 8963112119, - "lat": 51.3819511, - "lon": -2.2424312, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8963170554, - "lat": 51.2859865, - "lon": 0.2058203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8963889339, - "lat": 52.3805751, - "lon": -3.0060187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY7 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8963893384, - "lat": 52.4190756, - "lon": -3.0301183, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SY7 434", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8963910392, - "lat": 52.3438628, - "lon": -2.3575001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DY14 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8963924482, - "lat": 53.3104997, - "lon": -3.4063575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL18 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8963945206, - "lat": 52.3504655, - "lon": -2.3718412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DY14 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8964151151, - "lat": 52.3654311, - "lon": -2.1575515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY10 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8964151152, - "lat": 52.3677502, - "lon": -2.1526498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DY10 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8964210757, - "lat": 54.9007299, - "lon": -5.0236003, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG9 1D" - } -}, -{ - "type": "node", - "id": 8964310511, - "lat": 51.3182054, - "lon": -0.5503612, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-07-29", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU22 66D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8964333392, - "lat": 51.2928796, - "lon": -0.5026198, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-06", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU23 148D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8964340682, - "lat": 51.2824815, - "lon": -0.5131068, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU23 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8964348119, - "lat": 53.5932883, - "lon": -0.6468402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN15 27" - } -}, -{ - "type": "node", - "id": 8964351764, - "lat": 51.2875658, - "lon": -0.5048517, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2021-11-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is set back in the bushes at the southern end of the bus stop layby.", - "note_1": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU23 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8964393033, - "lat": 51.2727760, - "lon": 0.2489600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8967748655, - "lat": 52.3913559, - "lon": -2.1162696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DY9 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8967761566, - "lat": 52.3991614, - "lon": -2.1572953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY9 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8967788537, - "lat": 52.4069982, - "lon": -2.1774387, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY10 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8967788541, - "lat": 52.4089658, - "lon": -2.1561018, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DY10 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8968110419, - "lat": 51.4166910, - "lon": -0.9642728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8968180724, - "lat": 54.8982526, - "lon": -5.0236049, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DG9 9D" - } -}, -{ - "type": "node", - "id": 8968279699, - "lat": 52.0382481, - "lon": -3.3707535, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8968614783, - "lat": 51.6227867, - "lon": 0.0468296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG9 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8968686232, - "lat": 50.2262186, - "lon": -5.2597877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR15 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8968716205, - "lat": 51.4203431, - "lon": -0.9473506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG2 188D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8968847111, - "lat": 52.7374122, - "lon": 1.2855479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8968856117, - "lat": 51.5624881, - "lon": -0.0575252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E5 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8968939682, - "lat": 50.5815625, - "lon": -3.4875826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 10", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8968939683, - "lat": 50.5861513, - "lon": -3.4929496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX7 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8971600898, - "lat": 54.0991285, - "lon": -2.6893649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972117059, - "lat": 51.5485073, - "lon": -0.2786650, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8972137560, - "lat": 51.3796721, - "lon": 0.1031026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8972234761, - "lat": 51.5535696, - "lon": 0.1411119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972344343, - "lat": 50.7299401, - "lon": -3.5719459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00; Su off", - "name": "Nadderwater post box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX4 76", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8972438413, - "lat": 50.2249098, - "lon": -3.7525533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ8 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8972826302, - "lat": 53.6809957, - "lon": -2.8002388, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972890710, - "lat": 51.4547774, - "lon": -3.4597412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 211D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8972913772, - "lat": 53.1926258, - "lon": -3.6853518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL22 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8972949776, - "lat": 51.3703923, - "lon": -0.4942600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 202", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8972949777, - "lat": 51.3672973, - "lon": -0.4982852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972949778, - "lat": 51.3657058, - "lon": -0.5183171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT15 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972949779, - "lat": 51.3631924, - "lon": -0.5126848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 29", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8972949780, - "lat": 51.3629221, - "lon": -0.5069070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8972949781, - "lat": 51.3609848, - "lon": -0.5097008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3282151915346483", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KT15 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 8972949782, - "lat": 51.3599215, - "lon": -0.5125520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8972949787, - "lat": 51.3554746, - "lon": -0.5141366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972949789, - "lat": 51.3510511, - "lon": -0.5007124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 92D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8972949791, - "lat": 51.3526234, - "lon": -0.4918102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972949794, - "lat": 51.3417136, - "lon": -0.5154609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT15 163D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8972949795, - "lat": 51.3399166, - "lon": -0.5193488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT15 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972949796, - "lat": 51.3360878, - "lon": -0.5116414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT14 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8972949797, - "lat": 51.3317496, - "lon": -0.5138858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 55D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 8972958689, - "lat": 53.2851453, - "lon": -3.4070077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL18 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8973023270, - "lat": 53.3304409, - "lon": -3.3008152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CH8 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8973025395, - "lat": 53.3492176, - "lon": -3.3216449, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 8973033124, - "lat": 52.9028522, - "lon": -3.2863453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8973051054, - "lat": 53.3080685, - "lon": -3.2910480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8973051069, - "lat": 53.2933568, - "lon": -3.2815128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8973990376, - "lat": 53.3836512, - "lon": -1.4682235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "normal", - "collection_plate:date": "2021-03-11", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S1 569", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-07-26" - } -}, -{ - "type": "node", - "id": 8974789337, - "lat": 51.9906705, - "lon": -1.7452364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL56 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8975505698, - "lat": 52.5097714, - "lon": -3.1745687, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8975515704, - "lat": 53.1900465, - "lon": -3.6856500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8975600971, - "lat": 53.1642057, - "lon": -3.7220910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL22 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8975600987, - "lat": 53.1633869, - "lon": -3.6957362, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL22 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8975600988, - "lat": 53.1533090, - "lon": -3.6894241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL22 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8975600997, - "lat": 53.1386462, - "lon": -3.6816808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "note": "Box has been moved from the position at the junction with Llansannan Road (shown on StreetView)", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL22 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8975627559, - "lat": 53.0818935, - "lon": -0.9016993, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 8975758784, - "lat": 53.0536123, - "lon": -0.9180755, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8976639608, - "lat": 50.4301985, - "lon": -3.8305252, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ10 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8976686217, - "lat": 51.7975016, - "lon": -2.0503311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL53 85D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8976887727, - "lat": 52.9463058, - "lon": 0.4920512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE36 304D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8977701460, - "lat": 51.7045674, - "lon": -0.1766823, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8977841233, - "lat": 52.7156592, - "lon": 0.4139119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8979441095, - "lat": 51.3080290, - "lon": -0.1896047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SM7 294", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8981473486, - "lat": 53.7810130, - "lon": -2.8830311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8981473487, - "lat": 53.7841413, - "lon": -2.8874856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PR4 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8981473488, - "lat": 53.7839252, - "lon": -2.9009447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00, Sa 08:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PR4 321", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8983088718, - "lat": 50.9179558, - "lon": -1.4824294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO40 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8983088719, - "lat": 50.9221217, - "lon": -1.4887507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO40 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8983088720, - "lat": 50.8923431, - "lon": -1.4425457, - "tags": { - "amenity": "post_box", - "note": "Within restricted area: unable to validate reference code", - "ref": "SO40 450" - } -}, -{ - "type": "node", - "id": 8983176061, - "lat": 50.8723432, - "lon": -1.4040114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO45 663", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8983176062, - "lat": 50.8681640, - "lon": -1.3945312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SO45 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8983739693, - "lat": 50.8383936, - "lon": -1.5841250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8983739694, - "lat": 50.8192879, - "lon": -1.5771010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Re-uses box number for Forest Park (which has been removed)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO42 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8983897032, - "lat": 53.7109797, - "lon": -1.2368649, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8984431551, - "lat": 51.9720652, - "lon": -2.9510575, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8985223843, - "lat": 56.3518495, - "lon": -3.2379719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY14 334D", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8985392120, - "lat": 50.8623372, - "lon": -1.5726529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO43 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8985477679, - "lat": 54.9253158, - "lon": -6.9633809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8985745772, - "lat": 52.3689899, - "lon": -2.6973796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8987601183, - "lat": 53.7247565, - "lon": -1.7132924, - "tags": { - "amenity": "post_box", - "colour": "red" - } -}, -{ - "type": "node", - "id": 8988514996, - "lat": 50.9300788, - "lon": -1.6166653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SO43 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8988514997, - "lat": 50.9256199, - "lon": -1.6135151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO43 23", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 8988810206, - "lat": 51.4812832, - "lon": -0.1198231, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW8 10D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 8989444998, - "lat": 51.7728027, - "lon": -2.8318119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2920294388216133", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "survey:date": "2021-04-23" - } -}, -{ - "type": "node", - "id": 8989737346, - "lat": 51.7174782, - "lon": -1.8920444, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 120D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8989737390, - "lat": 51.7150083, - "lon": -1.9055670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "fixme": "Location is slightly from memory as GPS tag on photo is displaced", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 37D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8989916368, - "lat": 54.6630603, - "lon": -1.1884095, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8990262727, - "lat": 52.8858379, - "lon": -2.8859269, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8990357022, - "lat": 52.2853471, - "lon": 0.6767508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2055", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8990432504, - "lat": 51.1259996, - "lon": -0.9406792, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2021-08-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU34 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8990441471, - "lat": 51.4124474, - "lon": -3.2611286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF63 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8990492013, - "lat": 51.4173744, - "lon": -3.2597401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF63 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8990492014, - "lat": 51.4172660, - "lon": -3.2557427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF63 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8990492015, - "lat": 51.4217601, - "lon": -3.2561920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF63 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8990492016, - "lat": 51.4200260, - "lon": -3.2615555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF63 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8990912206, - "lat": 51.3283762, - "lon": 0.2334637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "colour": "red", - "ref": "TN15 131", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 8991361806, - "lat": 51.4453277, - "lon": 0.1028796, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8991425947, - "lat": 56.3415630, - "lon": -2.8086885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "KY16 427", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8991439996, - "lat": 56.3814481, - "lon": -2.8855624, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KY16 358", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8991446373, - "lat": 56.3290647, - "lon": -2.7745782, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KY16 203", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8991457002, - "lat": 51.6962833, - "lon": -0.1686077, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8991518743, - "lat": 56.3203248, - "lon": -2.7799444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 377", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 8991944353, - "lat": 54.3092768, - "lon": -5.6051638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 8992941054, - "lat": 58.1770652, - "lon": -7.0359933, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 8993798991, - "lat": 57.1980613, - "lon": -2.0927678, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB23 8JW", - "addr:street": "Denmore Road", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8993798992, - "lat": 57.1980515, - "lon": -2.0927708, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB23 8JW", - "addr:street": "Denmore Road", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8994191194, - "lat": 51.3878661, - "lon": -2.3636229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA1 128D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8994191195, - "lat": 51.3884211, - "lon": -2.3678761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BA1 1009D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8994191196, - "lat": 51.3903131, - "lon": -2.3693090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA1 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 8994191197, - "lat": 51.3868703, - "lon": -2.3666892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA1 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8994432625, - "lat": 52.2057613, - "lon": -2.7017319, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 8994444709, - "lat": 53.6012787, - "lon": -1.9363555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 8994517076, - "lat": 52.1403486, - "lon": -2.6061405, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8996696117, - "lat": 51.4161553, - "lon": -0.1187450, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 8997221816, - "lat": 50.6699888, - "lon": -3.8390701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 115", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8997243942, - "lat": 50.4207668, - "lon": -3.8398548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ10 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 8997243943, - "lat": 50.6642458, - "lon": -3.8394603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 81", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8997312559, - "lat": 53.0545077, - "lon": -1.8836710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8997384333, - "lat": 51.5912056, - "lon": -2.0873467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN16 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 8998261649, - "lat": 50.4866991, - "lon": -3.5936830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 182", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8998261650, - "lat": 50.4917150, - "lon": -3.5855554, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 8998261651, - "lat": 50.4958212, - "lon": -3.5846378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 114D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 8999406832, - "lat": 50.5212071, - "lon": -3.5561601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 8999768424, - "lat": 50.6731726, - "lon": -3.8398516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ13 245", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8999768425, - "lat": 50.6730779, - "lon": -3.8399328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ13 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 8999770672, - "lat": 53.0969163, - "lon": -1.0094073, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 8999780471, - "lat": 50.6178521, - "lon": -3.7219587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ13 173", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9001139696, - "lat": 50.6096739, - "lon": -3.7098217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ13 129", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 9001139697, - "lat": 50.5978476, - "lon": -3.6771838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9001139698, - "lat": 50.5967566, - "lon": -3.6775803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ13 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9001158390, - "lat": 52.9058356, - "lon": -2.4794995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "TF9 443", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9001754354, - "lat": 55.7360898, - "lon": -1.9923556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9001859592, - "lat": 51.4836005, - "lon": -2.1908255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SN14 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9001859593, - "lat": 51.4737822, - "lon": -2.1724076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SN14 226", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9002229793, - "lat": 50.4050607, - "lon": -4.1270016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL6 279D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9002266153, - "lat": 50.4192560, - "lon": -4.1267159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "ref": "PL6 470D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9004860831, - "lat": 52.2246961, - "lon": -3.1007118, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9004876722, - "lat": 52.4364391, - "lon": -2.6381352, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9004888473, - "lat": 52.8940656, - "lon": -2.8262212, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9005299491, - "lat": 54.4400892, - "lon": -5.4664054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BT22 483", - "survey:date": "2021-12-24", - "wikimedia_commons": "File:Letter box, Cloughey - geograph.org.uk - 2931336.jpg" - } -}, -{ - "type": "node", - "id": 9005330464, - "lat": 52.9705275, - "lon": -2.9352694, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9005376215, - "lat": 53.1553778, - "lon": -3.4529100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9006021560, - "lat": 54.4282482, - "lon": -5.4811495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT22 700" - } -}, -{ - "type": "node", - "id": 9006779871, - "lat": 51.7806962, - "lon": -2.5346458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL15 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9006843741, - "lat": 51.4579863, - "lon": -0.3226633, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9006843742, - "lat": 51.4547143, - "lon": -0.3225423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 97", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9006843743, - "lat": 51.4548780, - "lon": -0.3256283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW1 119D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9006887246, - "lat": 53.8415417, - "lon": -2.1344639, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 9006975323, - "lat": 52.2801811, - "lon": -3.5568314, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9006989897, - "lat": 53.1449332, - "lon": -3.0481696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008174145, - "lat": 53.8975103, - "lon": -3.0190855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "FY7 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008174146, - "lat": 53.8958362, - "lon": -3.0439196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "FY7 27", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008182247, - "lat": 51.0428847, - "lon": -4.2296455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX39 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9008582924, - "lat": 51.4196773, - "lon": -3.2683850, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF62 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008582925, - "lat": 51.4240156, - "lon": -3.2712314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 91", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9008582926, - "lat": 51.4198674, - "lon": -3.2729580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF62 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008582952, - "lat": 51.4166656, - "lon": -3.2873092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF62 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008736065, - "lat": 53.0760666, - "lon": -0.9476649, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008891952, - "lat": 50.3227473, - "lon": -4.8265620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891953, - "lat": 50.3217608, - "lon": -4.8193415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 9008891954, - "lat": 50.3199661, - "lon": -4.8170917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL26 98", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 9008891955, - "lat": 50.3139716, - "lon": -4.8552609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891956, - "lat": 50.3043313, - "lon": -4.8217330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 226", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891957, - "lat": 50.3168742, - "lon": -4.8406434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL26 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008891958, - "lat": 50.3184405, - "lon": -4.8443354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "pillar", - "ref": "PL26 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891959, - "lat": 50.3146866, - "lon": -4.8110342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 200" - } -}, -{ - "type": "node", - "id": 9008891960, - "lat": 50.2360611, - "lon": -4.8617358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL26 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9008891961, - "lat": 50.2424702, - "lon": -4.8580049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL26 54", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891962, - "lat": 50.2407590, - "lon": -4.8321301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 9008891963, - "lat": 50.2371905, - "lon": -4.8189895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "image": "https://archive.org/details/porthluney-photos/Porthluney%20to%20Hemmick%20Beach%202020-08-26/DSCN1991.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 9008891964, - "lat": 50.2403179, - "lon": -4.7958229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-01" - } -}, -{ - "type": "node", - "id": 9008891965, - "lat": 50.2415329, - "lon": -4.7937968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL26 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891966, - "lat": 50.2401960, - "lon": -4.7898307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "image": "https://archive.org/details/2020gorranhaven/Gorran%20Haven%202020-08-24/IMG_20200824_155849.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL26 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-01" - } -}, -{ - "type": "node", - "id": 9008891967, - "lat": 50.2452191, - "lon": -4.8007718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9008891968, - "lat": 50.2526934, - "lon": -4.8260245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 124D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9009495408, - "lat": 52.5800682, - "lon": -1.1271320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9009648892, - "lat": 50.7466029, - "lon": -1.8024117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH23 53D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9010187900, - "lat": 51.5167760, - "lon": -0.3156690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "W13 27", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9010187901, - "lat": 51.5175248, - "lon": -0.3130392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W13 35", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9010209607, - "lat": 51.5217927, - "lon": -0.3172945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "image": "https://www.bing.com/maps?osid=555affa7-b04b-4742-be79-cc017a6244e2&cp=51.52171~-0.317418&lvl=19&dir=72.2479&pi=-2.8708918&style=x&mo=z.0&v=2&sV=2&form=S00027", - "post_box:type": "pillar", - "ref": "W13 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9010501655, - "lat": 50.3950165, - "lon": -4.1301730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL3 247D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-28" - } -}, -{ - "type": "node", - "id": 9010501661, - "lat": 50.3975203, - "lon": -4.1288301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL3 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9010811443, - "lat": 51.4582572, - "lon": -2.3697970, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9010876207, - "lat": 51.0167544, - "lon": -4.2476338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Moved from Abbotsham Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-28" - } -}, -{ - "type": "node", - "id": 9010896279, - "lat": 51.7618126, - "lon": -4.6348183, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SA67 88" - } -}, -{ - "type": "node", - "id": 9010897381, - "lat": 51.8200401, - "lon": -4.6896545, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9010897399, - "lat": 51.8186806, - "lon": -4.6848742, - "tags": { - "amenity": "post_box", - "post_box:design": "off_street_box", - "post_box:mounting": "wall", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9010910350, - "lat": 51.9788561, - "lon": -5.0572935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA64 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9011275953, - "lat": 57.0762349, - "lon": -2.7792934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB34 246", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9012082281, - "lat": 51.2751864, - "lon": 0.1780272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN13 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9012082282, - "lat": 51.2661574, - "lon": 0.1887184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9012082283, - "lat": 51.2623828, - "lon": 0.1927927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9012082284, - "lat": 51.2616267, - "lon": 0.1869133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN13 52", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9012106028, - "lat": 51.5691248, - "lon": -0.7739521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SL7 114", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9012633913, - "lat": 56.3290110, - "lon": -2.8036490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY16 330D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9012640443, - "lat": 51.9648677, - "lon": -2.0472304, - "tags": { - "amenity": "post_box", - "name": "Manor Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL52 341" - } -}, -{ - "type": "node", - "id": 9012640445, - "lat": 51.9639728, - "lon": -2.0533224, - "tags": { - "amenity": "post_box", - "name": "Gotherington", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 138" - } -}, -{ - "type": "node", - "id": 9012725384, - "lat": 50.4092283, - "lon": -4.1295939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL6 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-12" - } -}, -{ - "type": "node", - "id": 9014012184, - "lat": 57.1839705, - "lon": -2.7800922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB33 466", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9015402784, - "lat": 51.5707191, - "lon": -0.7755929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "colour": "gold", - "note": "Painted gold to celebrate Naomi Riches, Gold Medal winner, London 2012 Paralympic Games", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:manufacturer": "Machan Eng Scotland", - "post_box:type": "pillar", - "ref": "SL7 227;SL7 2271", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9016341670, - "lat": 51.5282265, - "lon": -0.4811826, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9017456686, - "lat": 52.5842680, - "lon": -0.2779941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:45", - "manufacturer": "Broadwater Mouldings Limited, Horsham, Eye, Suffolk", - "note:royal_cypher": "crown over EIIR | E & R approx same height as crown;II is half height and spaced half way vertically. Yellow paint on red plastic", - "post_box:material": "plastic", - "post_box:type": "pillar", - "ref": "PE3 445" - } -}, -{ - "type": "node", - "id": 9017556050, - "lat": 55.8211360, - "lon": -3.9774953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML1 116" - } -}, -{ - "type": "node", - "id": 9018027410, - "lat": 51.5151907, - "lon": -0.3256355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W13 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9018125596, - "lat": 51.5186636, - "lon": -0.3280482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9018125597, - "lat": 51.5245070, - "lon": -0.3240653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9018125598, - "lat": 51.5272983, - "lon": -0.3262481, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 39D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9018125599, - "lat": 51.5224428, - "lon": -0.3263870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9018125600, - "lat": 51.5189430, - "lon": -0.3267358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9018125601, - "lat": 51.5284804, - "lon": -0.3299710, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W13 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9018166917, - "lat": 50.5475746, - "lon": -3.6343951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30, Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "TQ12 216", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9018365920, - "lat": 53.0190988, - "lon": -2.1759867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "No collection plate, box number is shown in marker pen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "ST1 188" - } -}, -{ - "type": "node", - "id": 9018404822, - "lat": 53.0587583, - "lon": -0.2830443, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9018442948, - "lat": 54.7967267, - "lon": -1.6659609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH7 194D" - } -}, -{ - "type": "node", - "id": 9018443075, - "lat": 54.7879911, - "lon": -1.7224523, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/4985193", - "ref": "DH7 67D" - } -}, -{ - "type": "node", - "id": 9021308409, - "lat": 56.2641110, - "lon": -2.6206537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "KY10 394", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021318008, - "lat": 56.2905298, - "lon": -2.7493262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 412", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021338231, - "lat": 56.3248033, - "lon": -2.8375404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 376", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021338234, - "lat": 56.3225014, - "lon": -2.8141147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 278", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021348805, - "lat": 56.2049712, - "lon": -2.7661373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY10 160", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021348806, - "lat": 56.2054206, - "lon": -2.7701312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY10 213D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021348808, - "lat": 56.2491419, - "lon": -2.7581489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY10 175", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9021348809, - "lat": 56.2366537, - "lon": -2.7869748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY10 250D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9021348812, - "lat": 56.2327006, - "lon": -2.7781416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY10 176D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9022133586, - "lat": 54.3020646, - "lon": -5.5558351, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9022153291, - "lat": 51.5032042, - "lon": -0.4206747, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 18:15; Sa 11:30", - "last_checked": "2021-07-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB3 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9022924623, - "lat": 51.6923719, - "lon": -0.1793616, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9022924732, - "lat": 51.0442336, - "lon": -4.2207815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "252771697429513", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-25" - } -}, -{ - "type": "node", - "id": 9023660353, - "lat": 53.5866975, - "lon": -1.5890991, - "tags": { - "amenity": "post_box", - "collection:covid19": "priority", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S75 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9023894720, - "lat": 51.6858511, - "lon": -0.1792335, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9025065282, - "lat": 53.7743664, - "lon": -1.5129673, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9025111440, - "lat": 51.4753227, - "lon": -0.1195225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW9 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9025832061, - "lat": 52.7302141, - "lon": 1.5343496, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9027247742, - "lat": 50.4982333, - "lon": -3.8300629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TQ11 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9027247743, - "lat": 50.4972910, - "lon": -3.8118855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ11 74D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9027570562, - "lat": 51.4819158, - "lon": -3.1624115, - "tags": { - "amenity": "post_box", - "mapillary": "477149666878548", - "post_box:apertures": "2", - "post_box:type": "pillar", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 9028092975, - "lat": 51.0788024, - "lon": 1.1525226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "CT20 76D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9028283729, - "lat": 50.5936694, - "lon": -3.6750467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "drive_through": "no", - "note": "inside Spar shop", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "indoor_pillar", - "ref": "TQ13 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9028319560, - "lat": 50.7261198, - "lon": -3.9126495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "drive_through": "no", - "note": "box mounted on rounded pedestal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;local knowledge;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9028319561, - "lat": 50.7132408, - "lon": -3.9040456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9029465521, - "lat": 51.4925033, - "lon": -0.1377176, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-15", - "collection_plate": "WN", - "collection_times": "Mo-Fr 17:45, Sa 12:30", - "manufacturer": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "SW1V 203;SW1V 303" - } -}, -{ - "type": "node", - "id": 9029514845, - "lat": 56.0385606, - "lon": -4.8677386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 14:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G84 33" - } -}, -{ - "type": "node", - "id": 9029994146, - "lat": 52.4394634, - "lon": -0.3752774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9029994147, - "lat": 52.4321429, - "lon": -0.4652516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9030060721, - "lat": 50.4854827, - "lon": -3.7854848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ11 110D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033455567, - "lat": 51.5486877, - "lon": -1.1324810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG8 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9033455571, - "lat": 50.4653007, - "lon": -3.5271942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:45; Su off", - "note": "Box situated indoors on 1st Floor of Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_box", - "ref": "TQ1 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033455572, - "lat": 50.4702846, - "lon": -3.5267382, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ1 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033455573, - "lat": 50.4713788, - "lon": -3.5228038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 51D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033455574, - "lat": 50.4700488, - "lon": -3.5203996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 218D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033456431, - "lat": 51.4708273, - "lon": -1.1416487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG8 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9033456605, - "lat": 50.4556281, - "lon": -3.5171311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 364D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033456606, - "lat": 50.4747733, - "lon": -3.5080036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033456607, - "lat": 50.4689719, - "lon": -3.5069048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033456608, - "lat": 50.4662690, - "lon": -3.4987378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9033504039, - "lat": 51.6070724, - "lon": -1.0778289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX10 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9034105700, - "lat": 52.2277941, - "lon": -0.2624468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "dictaphone;survey" - } -}, -{ - "type": "node", - "id": 9034180021, - "lat": 53.4915506, - "lon": -2.6210153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9034197839, - "lat": 53.4934368, - "lon": -2.6205311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 27", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9034201334, - "lat": 53.4866602, - "lon": -2.6097520, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9034414291, - "lat": 50.7035614, - "lon": -3.7918388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 172", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9034414292, - "lat": 50.7054121, - "lon": -3.7927789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX6 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9034547690, - "lat": 50.7127837, - "lon": -3.8118971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00, Su off", - "note": "Needs a survey to refine location. It's within 30m of actual at present", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX6 167", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9034547691, - "lat": 50.7005580, - "lon": -3.8100497, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX6 169D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9034865581, - "lat": 53.4762054, - "lon": -2.5879593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 76", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9034869359, - "lat": 53.4821720, - "lon": -2.5930354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9035362479, - "lat": 50.5339382, - "lon": -3.7608108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "TQ13 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9036190673, - "lat": 53.4798464, - "lon": -2.5884863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 263", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9036484130, - "lat": 50.4753019, - "lon": -3.5401037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Post box with brick surround in stone wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 13D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9037615738, - "lat": 50.4629557, - "lon": -3.5228473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9037615739, - "lat": 50.4694271, - "lon": -3.5120660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9037615740, - "lat": 50.4596885, - "lon": -3.5210505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ1 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9041448239, - "lat": 52.4531600, - "lon": -3.5379916, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9043413429, - "lat": 51.5287383, - "lon": 0.1699113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9043528383, - "lat": 52.0944008, - "lon": -2.4622882, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9043551579, - "lat": 52.0493964, - "lon": -2.8028185, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9043579801, - "lat": 53.0930476, - "lon": -0.9608075, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9043887689, - "lat": 51.4411681, - "lon": -1.0498925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "covered": "yes", - "description": "Priority postbox", - "drive_through": "yes", - "note": "Priority postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG31 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9044015918, - "lat": 56.2226942, - "lon": -3.3511251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY13 126", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9044171836, - "lat": 57.0496308, - "lon": -3.0394131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "AB35 567", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9044171837, - "lat": 57.0478585, - "lon": -3.0429566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB35 235", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9044425724, - "lat": 51.5983321, - "lon": 0.1758717, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9044442440, - "lat": 53.4453424, - "lon": -2.6109312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9044499745, - "lat": 51.5868047, - "lon": -0.3062435, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9044972031, - "lat": 54.6131782, - "lon": -1.5678547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DL5 61D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9044972032, - "lat": 54.6192172, - "lon": -1.5730298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "DL5 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9045514374, - "lat": 52.8053202, - "lon": -0.1540782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE11 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9045514375, - "lat": 52.8169348, - "lon": -0.1773262, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE11 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9045583479, - "lat": 56.1713550, - "lon": -3.4034793, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY13 421", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9047470366, - "lat": 52.7540323, - "lon": 0.2857062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE34 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9047849526, - "lat": 52.2055471, - "lon": -3.0233216, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9047897168, - "lat": 52.7579696, - "lon": 0.3436460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE34 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9048044874, - "lat": 54.9553316, - "lon": -1.6392613, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9048152703, - "lat": 57.1404472, - "lon": -2.1174520, - "tags": { - "addr:postcode": "AB10 6QL", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB10 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9048641743, - "lat": 51.4044434, - "lon": 0.0373450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR1 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9048641744, - "lat": 51.4073489, - "lon": 0.0397330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR1 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9048997998, - "lat": 52.9556933, - "lon": 1.0471719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR25 2543D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9049299035, - "lat": 50.7236998, - "lon": -3.3232390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 07:00; Su off", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "EX11 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9049351507, - "lat": 52.2989062, - "lon": -3.0218002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "wall", - "ref": "LD8 270", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9051849982, - "lat": 50.8122620, - "lon": -3.6448094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX17 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9051902437, - "lat": 50.7644472, - "lon": -3.5082838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX5 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9052557571, - "lat": 52.2694836, - "lon": -3.5721458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LD6 52D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9053746726, - "lat": 53.8642311, - "lon": -1.8505189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9053746727, - "lat": 53.8681031, - "lon": -1.8615340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9054300413, - "lat": 56.1333353, - "lon": -3.2089801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054300414, - "lat": 56.1394472, - "lon": -3.1794667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 346D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309819, - "lat": 56.1341906, - "lon": -3.1838159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 393D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309820, - "lat": 56.1318258, - "lon": -3.1843303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 39D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309821, - "lat": 56.1326395, - "lon": -3.1886525, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 137D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309822, - "lat": 56.1278815, - "lon": -3.1957782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 136D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309823, - "lat": 56.1266647, - "lon": -3.1905763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 12D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309824, - "lat": 56.1265822, - "lon": -3.1783499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 120D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9054309829, - "lat": 56.1235134, - "lon": -3.1789685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 122D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309830, - "lat": 56.1200331, - "lon": -3.1704065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9054309831, - "lat": 56.1147662, - "lon": -3.1745217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 106D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9054309852, - "lat": 56.1079203, - "lon": -3.1784902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 49D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054309853, - "lat": 56.1116289, - "lon": -3.1719670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "KY2 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054314137, - "lat": 56.0689147, - "lon": -3.1757246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY3 90", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9054675813, - "lat": 52.5991174, - "lon": -1.6662658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9054776637, - "lat": 52.7559887, - "lon": -1.9791433, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9056281638, - "lat": 53.5497050, - "lon": -2.2874857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9056320049, - "lat": 50.5605753, - "lon": -3.6489162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "wall", - "ref": "TQ12 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9057328699, - "lat": 52.6964469, - "lon": -2.7754748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:45", - "ref": "SY3 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9057417652, - "lat": 52.6278427, - "lon": -0.5065236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE9 60" - } -}, -{ - "type": "node", - "id": 9057417653, - "lat": 52.6263376, - "lon": -0.5087560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 83" - } -}, -{ - "type": "node", - "id": 9057417654, - "lat": 52.6240793, - "lon": -0.5083805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE9 16" - } -}, -{ - "type": "node", - "id": 9057417655, - "lat": 52.6168918, - "lon": -0.5238998, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417656, - "lat": 52.6137939, - "lon": -0.5307090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE9 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9057417657, - "lat": 52.5982368, - "lon": -0.5396202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417658, - "lat": 52.5850720, - "lon": -0.5946122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9057417659, - "lat": 52.5748894, - "lon": -0.5671960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417660, - "lat": 52.5506456, - "lon": -0.5691674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417663, - "lat": 52.5627423, - "lon": -0.5155809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9057417664, - "lat": 52.5658564, - "lon": -0.5101159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417665, - "lat": 52.5557388, - "lon": -0.4258972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE8 108" - } -}, -{ - "type": "node", - "id": 9057417666, - "lat": 52.5497534, - "lon": -0.4923809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9057417667, - "lat": 52.5401982, - "lon": -0.4783076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417668, - "lat": 52.5374934, - "lon": -0.4719119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417669, - "lat": 52.5167026, - "lon": -0.4988462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9057417670, - "lat": 52.4892283, - "lon": -0.4697427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE8 277D" - } -}, -{ - "type": "node", - "id": 9057417671, - "lat": 52.4811598, - "lon": -0.4603958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9057417672, - "lat": 52.4811876, - "lon": -0.4623994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417673, - "lat": 52.5044432, - "lon": -0.4637365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE9 169D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9057417674, - "lat": 52.5055432, - "lon": -0.4479799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417675, - "lat": 52.5097127, - "lon": -0.4153428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9057417676, - "lat": 52.4821644, - "lon": -0.4461710, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PE8 138" - } -}, -{ - "type": "node", - "id": 9057417677, - "lat": 52.4769054, - "lon": -0.3650206, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9057417678, - "lat": 52.4713931, - "lon": -0.4282951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9057417679, - "lat": 52.4474879, - "lon": -0.4975233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9057419599, - "lat": 50.5707694, - "lon": -3.6487395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9057419600, - "lat": 50.5708416, - "lon": -3.6549023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:45; Su off", - "note": "Described as a 'business box' and parcel postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TQ12 278", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9057419601, - "lat": 50.5708325, - "lon": -3.6549186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ12 244;TQ12 2440", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9057419602, - "lat": 50.5545252, - "lon": -3.6255293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ12 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9060385393, - "lat": 52.2197910, - "lon": -3.9332557, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9060614548, - "lat": 53.1421892, - "lon": 0.3419437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE25 5D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9061007813, - "lat": 50.3688636, - "lon": -4.7053021, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9061042312, - "lat": 53.5041159, - "lon": -2.4273914, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9061946120, - "lat": 50.4575740, - "lon": -3.7905284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ11 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9061946121, - "lat": 50.4691178, - "lon": -3.7890990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ11 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9061946123, - "lat": 50.4803736, - "lon": -3.7866264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ11 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9061984928, - "lat": 51.1832325, - "lon": -0.7066901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GU8 31D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9061998550, - "lat": 52.5944089, - "lon": -0.2504365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "803451973939935", - "material": "cast_iron", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 12D", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 9061998560, - "lat": 52.5955417, - "lon": -0.2412221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 132D" - } -}, -{ - "type": "node", - "id": 9062001205, - "lat": 52.5708174, - "lon": -0.2183571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "double box, each side different properties, hence two nodes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 5900D" - } -}, -{ - "type": "node", - "id": 9062001206, - "lat": 52.5708174, - "lon": -0.2183527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "Franked mail only", - "note": "double box, each side different properties, hence two nodes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 59D" - } -}, -{ - "type": "node", - "id": 9062065450, - "lat": 53.1433252, - "lon": 0.3345402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE25 17D" - } -}, -{ - "type": "node", - "id": 9062124575, - "lat": 53.1430952, - "lon": 0.3322735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE25 202" - } -}, -{ - "type": "node", - "id": 9062189591, - "lat": 51.4945317, - "lon": -0.1142851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9062189592, - "lat": 51.4846719, - "lon": -0.1105100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9062189593, - "lat": 51.4777694, - "lon": -0.1010743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9062216936, - "lat": 57.4889588, - "lon": -4.1040640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV2 366D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9062242895, - "lat": 53.1450121, - "lon": 0.3445144, - "tags": { - "amenity": "post_box", - "ref": "PE25 7" - } -}, -{ - "type": "node", - "id": 9062734590, - "lat": 53.1431336, - "lon": 0.3389995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PE25 6;PE25 666" - } -}, -{ - "type": "node", - "id": 9062821110, - "lat": 53.5080741, - "lon": -2.5924024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 95", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9063085703, - "lat": 51.5619866, - "lon": 0.6509376, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9063227638, - "lat": 51.5059200, - "lon": -0.6798925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 21:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9063255773, - "lat": 51.5798162, - "lon": -0.7740889, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9063265652, - "lat": 51.6038364, - "lon": -0.8813587, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9063273639, - "lat": 51.5031137, - "lon": -0.6596470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SL4 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9063718577, - "lat": 53.4995626, - "lon": -2.6172523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 218", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9063763709, - "lat": 51.8805934, - "lon": 0.0529699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SG11 68D" - } -}, -{ - "type": "node", - "id": 9063803959, - "lat": 51.4875763, - "lon": -0.1421307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW1V 404", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9063803960, - "lat": 51.4883157, - "lon": -0.1386866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 15;SW1V 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063803962, - "lat": 51.4889710, - "lon": -0.1439387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 13;SW1V 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063803963, - "lat": 51.4871600, - "lon": -0.1450647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW1V 38;SW1V 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063807853, - "lat": 57.5293240, - "lon": -3.8147008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "post_box:type": "lamp", - "ref": "IV12 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9063882878, - "lat": 57.2327915, - "lon": -2.2124503, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9063909280, - "lat": 57.3482288, - "lon": -1.9357801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB41 444", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9063977066, - "lat": 56.8996672, - "lon": -2.4503642, - "tags": { - "addr:country": "GB", - "addr:postcode": "AB30 1XR", - "addr:street": "High Street", - "addr:village": "Auchenblae", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "AB30 43" - } -}, -{ - "type": "node", - "id": 9063995699, - "lat": 51.2865092, - "lon": 0.2569594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "colour": "red", - "ref": "TN15 218", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9063995702, - "lat": 51.2935988, - "lon": 0.2854112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "image": "https://www.bing.com/maps?osid=65ac64f3-db52-436f-9348-c04fbd6523dc&cp=51.293618~0.285373&lvl=19&dir=99.79334&pi=-1.780464&style=x&mo=z.1.02&v=2&sV=2&form=S00027", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN15 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-12-24" - } -}, -{ - "type": "node", - "id": 9063995706, - "lat": 51.2861023, - "lon": 0.2843806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9063995708, - "lat": 51.2797706, - "lon": 0.2837671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "mapillary": "239033091523622", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN15 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-06" - } -}, -{ - "type": "node", - "id": 9063995709, - "lat": 51.2892996, - "lon": 0.2866997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN15 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063995710, - "lat": 51.2855908, - "lon": 0.2738948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "colour": "red", - "ref": "TN15 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063995711, - "lat": 51.2781115, - "lon": 0.2744747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "colour": "red", - "ref": "TN15 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063995713, - "lat": 51.2889870, - "lon": 0.2902928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9063995716, - "lat": 51.2833932, - "lon": 0.2841200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9064104812, - "lat": 51.3514746, - "lon": 0.7413129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "location": "Just inside the supermarket entrance doors.", - "note": "As at Tuesday 15th August 2023 there is a sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "ME10 120", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 9064116908, - "lat": 51.2732484, - "lon": -0.9895718, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "last_checked": "2021-09-04", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG27 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9064242757, - "lat": 56.1132493, - "lon": -3.5665464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 160D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9064242758, - "lat": 56.1128061, - "lon": -3.5470396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9064242759, - "lat": 56.1152259, - "lon": -3.5739620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9064275737, - "lat": 51.5065492, - "lon": -0.2656264, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "W3 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9064275739, - "lat": 51.5040774, - "lon": -0.2721976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "W3 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9064275740, - "lat": 51.5059329, - "lon": -0.2678337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 39D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9064376096, - "lat": 51.1526742, - "lon": -1.7082235, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9064624453, - "lat": 53.4916182, - "lon": -2.6307382, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 165", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9064772914, - "lat": 57.3707329, - "lon": -2.2218105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AB41 361", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9064790165, - "lat": 57.1880235, - "lon": -2.4970219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB51 487", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9064844097, - "lat": 50.5408017, - "lon": -3.6801524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064844098, - "lat": 50.5342470, - "lon": -3.6791754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064844099, - "lat": 50.5283648, - "lon": -3.6967196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064844100, - "lat": 50.5151823, - "lon": -3.6916031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 116", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064844101, - "lat": 50.5084191, - "lon": -3.6614783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 266", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064844102, - "lat": 50.4946392, - "lon": -3.6138790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ12 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064844103, - "lat": 50.5099878, - "lon": -3.6209817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064877748, - "lat": 58.5290281, - "lon": -4.2796260, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9064883466, - "lat": 50.3996054, - "lon": -4.0229128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL7 494", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064883493, - "lat": 50.3972412, - "lon": -4.0370327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 325D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9064887330, - "lat": 57.3803380, - "lon": -2.5962810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "AB52 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9064964662, - "lat": 51.5800210, - "lon": -0.3359940, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 9064964663, - "lat": 51.5800210, - "lon": -0.3359786, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 9066466899, - "lat": 52.6645410, - "lon": 1.4950558, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "09/04/2020", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "note": "Priority postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1375", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9066788356, - "lat": 51.5107104, - "lon": -0.2816284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 26D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9066788357, - "lat": 51.5033406, - "lon": -0.2859056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 55D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9066788358, - "lat": 51.5083772, - "lon": -0.2784975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 27D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9067274385, - "lat": 51.9830610, - "lon": -0.2140939, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-30", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SG6 3P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9067480988, - "lat": 56.1318191, - "lon": -3.1381198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 104D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9067480998, - "lat": 56.1319613, - "lon": -3.1333916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 24D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9067480999, - "lat": 56.1252709, - "lon": -3.1365607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9067481000, - "lat": 56.1245055, - "lon": -3.1407790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY1 10D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9067481010, - "lat": 56.1151014, - "lon": -3.1865847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 392D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9067518721, - "lat": 56.1176709, - "lon": -3.1892914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 347D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9067518725, - "lat": 56.1180339, - "lon": -3.1960115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 409", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9067518726, - "lat": 56.1213704, - "lon": -3.1917820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 158D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9067518730, - "lat": 56.1202038, - "lon": -3.1793945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY2 108", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9067518734, - "lat": 56.1387189, - "lon": -3.1228315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY1 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9067756531, - "lat": 51.9518629, - "lon": -2.0639560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Evesham Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 136" - } -}, -{ - "type": "node", - "id": 9067756532, - "lat": 51.9488226, - "lon": -2.0545656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL52 191" - } -}, -{ - "type": "node", - "id": 9067959883, - "lat": 50.8543213, - "lon": -3.6778425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX17 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9067991746, - "lat": 50.9276274, - "lon": -3.7435752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX17 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9067994051, - "lat": 50.9105340, - "lon": -3.7362260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX17 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9068700810, - "lat": 50.5108335, - "lon": -3.6151872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ12 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9068700811, - "lat": 50.5080995, - "lon": -3.6133687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 125", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9068700812, - "lat": 50.5111794, - "lon": -3.6037162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9068700813, - "lat": 50.5176876, - "lon": -3.6263673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9068700814, - "lat": 50.5199546, - "lon": -3.6253049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TQ12 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9070886498, - "lat": 49.9178044, - "lon": -6.3171743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR21 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9070886499, - "lat": 51.9443073, - "lon": -2.0189007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Cleeve Common", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL52 119" - } -}, -{ - "type": "node", - "id": 9070886501, - "lat": 51.9292265, - "lon": -2.0412936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9070886502, - "lat": 51.9703763, - "lon": -2.0569267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "name": "Woolstone", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 83" - } -}, -{ - "type": "node", - "id": 9070886503, - "lat": 51.9113251, - "lon": -2.0386857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 308" - } -}, -{ - "type": "node", - "id": 9070886506, - "lat": 51.9113572, - "lon": -2.0524717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 135" - } -}, -{ - "type": "node", - "id": 9070886507, - "lat": 51.9064092, - "lon": -2.0638456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 199", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 9070886508, - "lat": 51.9071886, - "lon": -2.0660816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 100", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9070886509, - "lat": 51.9045826, - "lon": -2.0680246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 61" - } -}, -{ - "type": "node", - "id": 9070886510, - "lat": 51.9083904, - "lon": -2.0449279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 218" - } -}, -{ - "type": "node", - "id": 9070886512, - "lat": 51.9063296, - "lon": -2.0474472, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 192" - } -}, -{ - "type": "node", - "id": 9070886513, - "lat": 51.9007650, - "lon": -2.0549000, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 70" - } -}, -{ - "type": "node", - "id": 9070886514, - "lat": 51.8967426, - "lon": -2.0595063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 47" - } -}, -{ - "type": "node", - "id": 9070886515, - "lat": 51.8945194, - "lon": -2.0630345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 63" - } -}, -{ - "type": "node", - "id": 9070886516, - "lat": 51.8960434, - "lon": -2.0678081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 2", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9070917217, - "lat": 51.9034950, - "lon": -2.0641883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "he:inscription_date": "1977-07-06", - "heritage": "2", - "heritage:operator": "Historic England", - "heritage:website": "https://historicengland.org.uk/listing/the-list/list-entry/1387452", - "historic": "yes", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "GL52 73", - "ref:GB:nhle": "1387452", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "wikidata": "Q26667105" - } -}, -{ - "type": "node", - "id": 9070917218, - "lat": 51.9043996, - "lon": -2.0567338, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL52 141", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9070917220, - "lat": 51.9077621, - "lon": -2.0508183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL52 294", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9071078460, - "lat": 51.8938013, - "lon": -2.0731480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 41", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 9071078461, - "lat": 51.8916735, - "lon": -2.0648329, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 357", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9071078462, - "lat": 51.8868604, - "lon": -2.0751327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 113", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9071078463, - "lat": 51.8782496, - "lon": -2.0605471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 353" - } -}, -{ - "type": "node", - "id": 9071078464, - "lat": 51.8800293, - "lon": -2.0545487, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 68" - } -}, -{ - "type": "node", - "id": 9071078465, - "lat": 51.8784259, - "lon": -2.0491770, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 320" - } -}, -{ - "type": "node", - "id": 9071078466, - "lat": 51.8781201, - "lon": -2.0444450, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 347" - } -}, -{ - "type": "node", - "id": 9071078467, - "lat": 51.8833330, - "lon": -2.0400999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL53 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9071078469, - "lat": 51.8522242, - "lon": -2.0872983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 376" - } -}, -{ - "type": "node", - "id": 9071078470, - "lat": 51.8166401, - "lon": -2.0123157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 194" - } -}, -{ - "type": "node", - "id": 9071078471, - "lat": 51.8177498, - "lon": -2.0000767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 147" - } -}, -{ - "type": "node", - "id": 9071078472, - "lat": 51.8127738, - "lon": -2.0466018, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 96" - } -}, -{ - "type": "node", - "id": 9071078473, - "lat": 51.8096113, - "lon": -2.0497701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL53 78D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 9071369608, - "lat": 50.9539443, - "lon": -3.7695926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX36 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9073070922, - "lat": 50.9589538, - "lon": -3.8760884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX37 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9074292919, - "lat": 51.9109556, - "lon": -2.0600643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 266" - } -}, -{ - "type": "node", - "id": 9074292920, - "lat": 51.9138440, - "lon": -2.0771769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 348" - } -}, -{ - "type": "node", - "id": 9074292921, - "lat": 51.8966223, - "lon": -2.0922237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9074292922, - "lat": 51.8899970, - "lon": -2.0829064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL50 152", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9074318593, - "lat": 51.8812642, - "lon": -2.1162340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 245" - } -}, -{ - "type": "node", - "id": 9074318594, - "lat": 51.9221497, - "lon": -2.1209861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 118" - } -}, -{ - "type": "node", - "id": 9074318595, - "lat": 51.9332686, - "lon": -2.1183311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 104" - } -}, -{ - "type": "node", - "id": 9074318596, - "lat": 51.9445850, - "lon": -2.1322274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL51 67" - } -}, -{ - "type": "node", - "id": 9074690981, - "lat": 53.1464653, - "lon": 0.3379817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE25 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9074690986, - "lat": 53.1491223, - "lon": 0.3405845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE25 20" - } -}, -{ - "type": "node", - "id": 9074799687, - "lat": 53.6339742, - "lon": -1.7997131, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "HD1 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-09-08" - } -}, -{ - "type": "node", - "id": 9074799688, - "lat": 53.6367237, - "lon": -1.7991027, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_plate:date": "2017-09-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD1 206D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2021-09-08" - } -}, -{ - "type": "node", - "id": 9074799689, - "lat": 53.6358162, - "lon": -1.7942213, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "HD1 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-09-08" - } -}, -{ - "type": "node", - "id": 9074900943, - "lat": 51.3045775, - "lon": -0.4385489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "KT11 104D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9074900945, - "lat": 51.3357312, - "lon": -0.3994143, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT11 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9074900946, - "lat": 51.3342583, - "lon": -0.4065403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9074900947, - "lat": 51.3366016, - "lon": -0.4046830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT11 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9074900948, - "lat": 51.3365698, - "lon": -0.4065349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9074900949, - "lat": 51.3319844, - "lon": -0.4084678, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 131D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9074900950, - "lat": 51.3342040, - "lon": -0.4122380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT11 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9074900951, - "lat": 51.3219625, - "lon": -0.4120049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "KT11 106D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9074900952, - "lat": 51.3044808, - "lon": -0.4159835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "KT11 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9074900953, - "lat": 51.3106728, - "lon": -0.4094888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT11 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9076706369, - "lat": 54.5916474, - "lon": -1.3130639, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9077125949, - "lat": 50.7376527, - "lon": -1.8351291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH7 324D", - "ref:GB:uprn": "10015406202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9077127236, - "lat": 51.5194015, - "lon": -0.3413357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9077127237, - "lat": 51.5219392, - "lon": -0.3462448, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W7 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9077383891, - "lat": 53.5780219, - "lon": -2.4261462, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "BL1 2021" - } -}, -{ - "type": "node", - "id": 9077405020, - "lat": 54.5999419, - "lon": -7.3023325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9077653439, - "lat": 54.3264483, - "lon": -1.7120941, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "contact:website": "https://www.postoffice.co.uk/branch-finder/7673094/hunton-stop", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9077872531, - "lat": 50.9919120, - "lon": -3.8534278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX36 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9078068023, - "lat": 50.4961103, - "lon": -3.5737458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 113D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9078068024, - "lat": 50.5015377, - "lon": -3.5840897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TQ12 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9078068025, - "lat": 50.5023052, - "lon": -3.5794356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 273D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9078068026, - "lat": 50.5089238, - "lon": -3.5824016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9078226756, - "lat": 51.4356402, - "lon": -3.1754916, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9078579588, - "lat": 53.1452497, - "lon": -2.3762429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW11 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9078836690, - "lat": 53.1429696, - "lon": -2.3626739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "description": "for parcels only", - "ref": "CW11 301P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9078836691, - "lat": 53.1429946, - "lon": -2.3626638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "ref": "CW11 279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9078836692, - "lat": 53.1430096, - "lon": -2.3626434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "ref": "CW11 1279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9079716960, - "lat": 51.5144060, - "lon": -0.2719856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9079716961, - "lat": 51.5133456, - "lon": -0.2697464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9079778115, - "lat": 52.5235329, - "lon": -3.2943763, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9080245888, - "lat": 50.4908098, - "lon": -3.5277781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ1 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-10-15" - } -}, -{ - "type": "node", - "id": 9080301745, - "lat": 55.3090384, - "lon": -1.9168808, - "tags": { - "amenity": "post_box", - "ref": "NE65 92" - } -}, -{ - "type": "node", - "id": 9080826203, - "lat": 51.0270449, - "lon": -3.8279280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX36 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9080826206, - "lat": 51.0154320, - "lon": -3.8395125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX36 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9080997617, - "lat": 53.4769979, - "lon": -2.5966747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 259", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9081168350, - "lat": 50.5263003, - "lon": -3.5358157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ12 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9081168351, - "lat": 50.5386294, - "lon": -3.5302101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9081168352, - "lat": 50.5263167, - "lon": -3.5992976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9081168353, - "lat": 50.5295288, - "lon": -3.6028490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9081679517, - "lat": 51.0539422, - "lon": -3.8022009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX36 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9081706664, - "lat": 51.0342293, - "lon": -3.6382757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX36 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9081718192, - "lat": 51.0238202, - "lon": -3.6526456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX36 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9082184262, - "lat": 51.4940337, - "lon": -0.1093163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE11 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9082350852, - "lat": 52.3897923, - "lon": 0.5305286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP27 3356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9082350856, - "lat": 52.3744869, - "lon": 0.5297445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP27 3207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9082352210, - "lat": 53.4766217, - "lon": -2.5993828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 253", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9083052147, - "lat": 51.7794141, - "lon": 0.1947036, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9083264872, - "lat": 51.0301654, - "lon": -4.1584014, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9083314081, - "lat": 52.0588000, - "lon": 0.5052148, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CO10 1149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9083333272, - "lat": 52.3504207, - "lon": -3.3089925, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9083743303, - "lat": 51.4698555, - "lon": -0.0928308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9083972475, - "lat": 50.5368995, - "lon": -3.6360146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9084024603, - "lat": 50.9929249, - "lon": -3.6433357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX36 140", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9084058311, - "lat": 50.9519255, - "lon": -3.6372981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9084079517, - "lat": 50.9631528, - "lon": -3.6451556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 104", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9084222317, - "lat": 51.5096402, - "lon": -0.2762055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 37D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9084224727, - "lat": 51.5111603, - "lon": -0.2708267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 43D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9084254258, - "lat": 51.5070932, - "lon": -0.2508987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9084254260, - "lat": 51.5066324, - "lon": -0.2470882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 42", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9084274982, - "lat": 51.5048410, - "lon": -0.2502406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 34D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9084274983, - "lat": 51.5065978, - "lon": -0.2537310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9084286634, - "lat": 51.5064041, - "lon": -0.2574629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9084806177, - "lat": 50.9342629, - "lon": -1.2829093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SO32 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9085026170, - "lat": 51.3237656, - "lon": 0.2444186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9085093515, - "lat": 50.5385042, - "lon": -3.6119772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ12 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093516, - "lat": 50.5294099, - "lon": -3.5985915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 13:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ12 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093617, - "lat": 50.5334027, - "lon": -3.6085459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093618, - "lat": 50.5287629, - "lon": -3.6146912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093619, - "lat": 50.5251236, - "lon": -3.5919734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 40D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093620, - "lat": 50.5276575, - "lon": -3.6107659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093621, - "lat": 50.5238436, - "lon": -3.5984760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093622, - "lat": 50.5350560, - "lon": -3.6156953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ12 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093623, - "lat": 50.5219514, - "lon": -3.5902609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085093816, - "lat": 52.1208512, - "lon": -4.0388336, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9085250527, - "lat": 50.2708118, - "lon": -3.8626186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ7 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978390, - "lat": 50.5325341, - "lon": -3.6241847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978391, - "lat": 50.5476697, - "lon": -3.5909036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ12 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978392, - "lat": 50.5274718, - "lon": -3.5981679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 166D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978393, - "lat": 50.5342836, - "lon": -3.6364536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ12 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978394, - "lat": 50.5276782, - "lon": -3.6165877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ12 175D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978395, - "lat": 50.5180869, - "lon": -3.5891116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 212D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978396, - "lat": 50.5237256, - "lon": -3.5776463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978397, - "lat": 50.5184427, - "lon": -3.5841009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085978398, - "lat": 50.5405131, - "lon": -3.6018025, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "indoor_pillar", - "ref": "TQ12 252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9085978399, - "lat": 50.5237767, - "lon": -3.5906792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 270D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085982630, - "lat": 50.4638563, - "lon": -3.5361055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085982631, - "lat": 50.4663246, - "lon": -3.5330342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9085982632, - "lat": 50.4704918, - "lon": -3.5457886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9087434788, - "lat": 51.1867928, - "lon": -2.5061669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1429115714316240", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 9088128320, - "lat": 51.4895341, - "lon": -0.3021411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW8 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9088128322, - "lat": 51.4901489, - "lon": -0.3063915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW8 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9088217893, - "lat": 51.4867882, - "lon": -0.3026726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 206D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9089426310, - "lat": 54.5867587, - "lon": -1.3099947, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9089616673, - "lat": 50.6218532, - "lon": -3.4083031, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9089761858, - "lat": 50.3470635, - "lon": -4.2087570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Believe it's one of the earliest types of wall boxes in the country dating from 1857-59", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL10 436D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9089761859, - "lat": 50.3603319, - "lon": -4.1747684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL10 464", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-13" - } -}, -{ - "type": "node", - "id": 9089761860, - "lat": 50.3343538, - "lon": -4.2012045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL10 508D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-06-08" - } -}, -{ - "type": "node", - "id": 9089761861, - "lat": 50.3476448, - "lon": -4.2175890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "PL10 604D", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9089761862, - "lat": 50.3520715, - "lon": -4.2139690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PL10 651D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9089761863, - "lat": 50.3465974, - "lon": -4.2518114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL10 722", - "royal_cypher": "EIIR", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9089761864, - "lat": 50.3348800, - "lon": -4.2039256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL10 755", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-12" - } -}, -{ - "type": "node", - "id": 9089761865, - "lat": 50.3533368, - "lon": -4.2081930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL10 763", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9089872350, - "lat": 51.6658611, - "lon": -2.7996277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9090461123, - "lat": 52.5809398, - "lon": -0.2426590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "794266037901894", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 23D", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 9090461128, - "lat": 52.5764536, - "lon": -0.2408823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PE1 103;PE1 1030", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9091483474, - "lat": 50.4538070, - "lon": -3.5725347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ3 361D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9091644562, - "lat": 50.6190870, - "lon": -3.4022111, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 4D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644563, - "lat": 50.6167814, - "lon": -3.4027416, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644564, - "lat": 50.6157735, - "lon": -3.3966811, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644565, - "lat": 50.6187309, - "lon": -3.3900071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644566, - "lat": 50.6228937, - "lon": -3.3747661, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 603D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644568, - "lat": 50.6216387, - "lon": -3.3903290, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX8 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 9091644569, - "lat": 50.6206381, - "lon": -3.3961815, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644570, - "lat": 50.6220050, - "lon": -3.4007091, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644571, - "lat": 50.6189397, - "lon": -3.4080051, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 17D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091644572, - "lat": 50.6249863, - "lon": -3.3789095, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 147D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9091740487, - "lat": 50.4564580, - "lon": -3.5528241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 398D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9091993738, - "lat": 51.5265903, - "lon": -0.6675618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 130", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9092449618, - "lat": 51.4050143, - "lon": -0.0163172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR3 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9092458558, - "lat": 51.4104314, - "lon": 0.0565161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15, Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 118", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9092458559, - "lat": 51.4072474, - "lon": 0.0794697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 125", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9092458564, - "lat": 51.4090143, - "lon": 0.0749103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 119D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9092458569, - "lat": 51.4095264, - "lon": 0.0646660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR7 117D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9092467038, - "lat": 50.8582476, - "lon": -3.5118552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX16 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9092578365, - "lat": 50.7828395, - "lon": -3.4977347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX5 161", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9092594420, - "lat": 54.3502844, - "lon": -5.5826358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT30 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9092596995, - "lat": 51.4929280, - "lon": -2.0432250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3987916041244136", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 9094538086, - "lat": 51.4817246, - "lon": -0.3037131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 222D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9094538087, - "lat": 51.4855312, - "lon": -0.3095895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TW8 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9094538088, - "lat": 51.4878743, - "lon": -0.2926436, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9094538089, - "lat": 51.4845356, - "lon": -0.3025737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW8 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9094538090, - "lat": 51.4828275, - "lon": -0.3130933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW8 202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9094538091, - "lat": 51.4874869, - "lon": -0.3096975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TW8 216", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9094538092, - "lat": 51.4828430, - "lon": -0.3131060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "note": "parcels", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TW8 223P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9094841892, - "lat": 50.5268260, - "lon": -3.5809625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9094841893, - "lat": 50.5205588, - "lon": -3.5875074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ12 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9095192461, - "lat": 51.8895487, - "lon": -2.0786792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:50", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL53 1058", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9095319075, - "lat": 53.6045455, - "lon": -1.7879953, - "tags": { - "amenity": "post_box", - "collection:covid19": "normal", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "HD9 71D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2021-09-15" - } -}, -{ - "type": "node", - "id": 9098588337, - "lat": 50.5312492, - "lon": -3.5967641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ12 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9098869779, - "lat": 51.6427185, - "lon": -3.4298043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF43 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9099264374, - "lat": 50.4654359, - "lon": -3.5424599, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 44D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9099264375, - "lat": 50.4559188, - "lon": -3.5462529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 59D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9099264376, - "lat": 50.4823468, - "lon": -3.5545513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "note": "Post box is situated on Level 4 by the main hospital entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_box", - "ref": "TQ2 67", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9099264377, - "lat": 50.4670371, - "lon": -3.5498162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 70D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9099264378, - "lat": 50.4688492, - "lon": -3.5404533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ2 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9099264379, - "lat": 50.4665433, - "lon": -3.5462285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "It is apparently a rare 2010 pillar box. It replaced an earlier GR pillar box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9100499173, - "lat": 57.1772721, - "lon": -2.0954403, - "tags": { - "addr:postcode": "AB23 8EN", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "AB23 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9100499174, - "lat": 57.1868902, - "lon": -2.0835095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB23 620", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9100499175, - "lat": 57.1868845, - "lon": -2.0835232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "AB23 913", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9100499176, - "lat": 57.1857094, - "lon": -2.0887307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB23 633D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9101364381, - "lat": 51.5158906, - "lon": -0.2944428, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9101364382, - "lat": 51.5141189, - "lon": -0.3014299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9101364383, - "lat": 51.5179909, - "lon": -0.3048889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W5 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9102112194, - "lat": 50.3657025, - "lon": -4.1356348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-05-26" - } -}, -{ - "type": "node", - "id": 9103459229, - "lat": 51.3185420, - "lon": -2.1832910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9103626233, - "lat": 53.2945686, - "lon": -0.9332729, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9103627446, - "lat": 53.3539558, - "lon": -0.9069062, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9103696019, - "lat": 53.4097784, - "lon": -1.0198657, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9103829978, - "lat": 53.3452182, - "lon": -0.9037936, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9103940405, - "lat": 53.4444954, - "lon": -0.8099695, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9104016182, - "lat": 51.3185635, - "lon": -2.1933787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9104043588, - "lat": 53.4948729, - "lon": -2.6434596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN4 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9104298340, - "lat": 52.5864957, - "lon": -0.2414247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 24D" - } -}, -{ - "type": "node", - "id": 9105049446, - "lat": 55.6509364, - "lon": -1.9992475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TD15 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9105098928, - "lat": 55.7118459, - "lon": -2.0718871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9105101466, - "lat": 55.7219683, - "lon": -2.0809032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TD15 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9105102918, - "lat": 55.7285238, - "lon": -2.0263580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9105109049, - "lat": 55.6966379, - "lon": -2.1362708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TD15 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9105186072, - "lat": 51.3212232, - "lon": -2.1808311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9105199806, - "lat": 51.3242697, - "lon": -2.1845991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9105308761, - "lat": 55.6771377, - "lon": -3.7680958, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9105384386, - "lat": 51.4795728, - "lon": -0.1258017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SW8 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9106095191, - "lat": 52.0630564, - "lon": -1.3398629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "259943982848816", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-07-31" - } -}, -{ - "type": "node", - "id": 9106260909, - "lat": 50.3670452, - "lon": -4.1622575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9106260910, - "lat": 50.4647385, - "lon": -3.5490495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9106270161, - "lat": 52.8039124, - "lon": -3.8896922, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9108181093, - "lat": 54.2203243, - "lon": -1.3530486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "YO7 20", - "survey_date": "20/09/2021" - } -}, -{ - "type": "node", - "id": 9108367694, - "lat": 52.5779683, - "lon": -0.2251901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 281D" - } -}, -{ - "type": "node", - "id": 9108367700, - "lat": 52.5813810, - "lon": -0.2321413, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "468839294186407", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-04-24" - } -}, -{ - "type": "node", - "id": 9108367707, - "lat": 52.5770025, - "lon": -0.2441313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 4D" - } -}, -{ - "type": "node", - "id": 9108549830, - "lat": 51.6126910, - "lon": -3.0009117, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9108991893, - "lat": 50.4709211, - "lon": -3.5389511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ2 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9108991894, - "lat": 50.4679196, - "lon": -3.5512194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 172D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9108991895, - "lat": 50.4536349, - "lon": -3.5517457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ2 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9109012013, - "lat": 57.3468425, - "lon": -6.0647736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV40 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9109027795, - "lat": 50.4207373, - "lon": -4.9250467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9109504137, - "lat": 51.0003327, - "lon": -3.9780861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "EX37 251", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 9109508740, - "lat": 50.9716691, - "lon": -3.9648497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:30; Su off", - "colour": "red", - "direction": "N", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "EX37 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "dracos" - } -}, -{ - "type": "node", - "id": 9110408780, - "lat": 51.3476148, - "lon": -0.2340992, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM2 276", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9110408781, - "lat": 51.3456991, - "lon": -0.2210321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM2 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9110408782, - "lat": 51.3484422, - "lon": -0.2236205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SM2 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9110408783, - "lat": 51.3390746, - "lon": -0.2113963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 170", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9110408784, - "lat": 51.3550923, - "lon": -0.2127991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SM2 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9111659446, - "lat": 55.7642109, - "lon": -2.0236945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TD15 20", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 9111780018, - "lat": 57.1740905, - "lon": -2.1141655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB24 800", - "royal_cypher": "scottish_crown", - "survey:date": "2021-09-21" - } -}, -{ - "type": "node", - "id": 9112018987, - "lat": 57.4524734, - "lon": -6.7001742, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:45", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "IV55 60", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9112037782, - "lat": 57.4126925, - "lon": -6.1926198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV51 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9112132918, - "lat": 50.4702740, - "lon": -3.5600862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ2 334D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9113923216, - "lat": 57.6884398, - "lon": -4.1700072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IV18 1" - } -}, -{ - "type": "node", - "id": 9115487671, - "lat": 50.4963859, - "lon": -3.5310259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9115487672, - "lat": 50.4983633, - "lon": -3.5390912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 369D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9117074584, - "lat": 51.5176679, - "lon": -0.2807086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 41", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9117091880, - "lat": 51.5188669, - "lon": -0.2811381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9117091882, - "lat": 51.5214580, - "lon": -0.2813002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 54D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9117115945, - "lat": 51.5266732, - "lon": -0.2830201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9118493993, - "lat": 50.4587260, - "lon": -3.5572793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ2 395D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9118805759, - "lat": 50.5367177, - "lon": -3.6142011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ12 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9119557070, - "lat": 51.7412907, - "lon": 0.5107381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "priority": "yes", - "ref": "CM2 467", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9119591760, - "lat": 51.6592032, - "lon": 0.0809817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9119823821, - "lat": 52.5695214, - "lon": -0.2866884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE3 350D" - } -}, -{ - "type": "node", - "id": 9119927855, - "lat": 52.5780437, - "lon": -0.2406435, - "tags": { - "amenity": "post_box", - "note": "parcels/franked mail only: needs a survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9121343850, - "lat": 50.4335224, - "lon": -3.6928648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9121343851, - "lat": 50.4273059, - "lon": -3.6851698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ9 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9121371167, - "lat": 50.4284463, - "lon": -3.6900684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9121371168, - "lat": 50.4288839, - "lon": -3.6677917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ9 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9121371169, - "lat": 50.4320573, - "lon": -3.6763283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ9 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9123191798, - "lat": 52.6414278, - "lon": -1.4158558, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9123210991, - "lat": 51.1771865, - "lon": -0.0170951, - "tags": { - "amenity": "post_box", - "ref": "RH7 94" - } -}, -{ - "type": "node", - "id": 9123217381, - "lat": 52.6332638, - "lon": -1.5458419, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9123227471, - "lat": 52.6440137, - "lon": -1.4657974, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9123799676, - "lat": 57.1465109, - "lon": -2.1183567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 74D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9123865894, - "lat": 53.4655077, - "lon": -2.5703176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9123914604, - "lat": 51.9140862, - "lon": 0.2293557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "gold", - "inscription": "This post box has been painted gold by Royal Mail to celebrate Ben Maher Gold Medal winner London 2012 Olympics Games. Equestrian - Jumping - Team", - "olympics:2012": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM22 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9124136591, - "lat": 52.9356861, - "lon": -4.5260170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "location": "wall", - "operator": "Royal Mail", - "ref": "LL53 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9124341956, - "lat": 52.4732757, - "lon": -1.1378261, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9124472913, - "lat": 53.0228367, - "lon": -0.6549343, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9124537243, - "lat": 56.5947408, - "lon": -3.5249594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 11:30", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 149", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9124596191, - "lat": 51.9257072, - "lon": -0.0115472, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9124662042, - "lat": 53.0247246, - "lon": -2.3003195, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9124676624, - "lat": 52.6953432, - "lon": -2.4990722, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9124721061, - "lat": 53.1804308, - "lon": -4.1361096, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9125205849, - "lat": 50.4367256, - "lon": -3.5711934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ3 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9126998054, - "lat": 50.4610782, - "lon": -3.5980240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:30; Sa 08:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 117", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9127122222, - "lat": 51.5409811, - "lon": -0.0576189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E8 18D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9127214342, - "lat": 51.5335217, - "lon": -0.3221749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB6 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9127991411, - "lat": 52.5527374, - "lon": -1.0860455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 09:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9128019970, - "lat": 52.5476695, - "lon": -1.1948029, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9129611823, - "lat": 50.8085530, - "lon": -0.4173457, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 16:00; Sa 12:30", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN12 1601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9129629163, - "lat": 50.8086424, - "lon": -0.4125807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN12 1600D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9129970190, - "lat": 52.8726920, - "lon": -0.8907035, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9130050761, - "lat": 52.8277670, - "lon": -0.7400942, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9130052313, - "lat": 52.8132511, - "lon": -0.7805447, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9130080088, - "lat": 52.7498348, - "lon": -0.7256597, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9130321398, - "lat": 50.7743687, - "lon": 0.2962446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 753", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9130321399, - "lat": 50.7834534, - "lon": 0.3049618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 862D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9130434182, - "lat": 50.7605557, - "lon": 0.2824004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 733", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9130434183, - "lat": 50.7613857, - "lon": 0.2850615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "Probably a Victorian postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 734", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9130677578, - "lat": 50.4375769, - "lon": -3.6116019, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ3 132", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9130677579, - "lat": 50.4380970, - "lon": -3.5677160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ3 133D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9130677580, - "lat": 50.4419818, - "lon": -3.5585434, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "postal_code": "TQ3 2", - "ref": "TQ3 140D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9131262414, - "lat": 50.4363778, - "lon": -3.5737298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ3 148D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9131351974, - "lat": 51.5106038, - "lon": -0.2612874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9132158097, - "lat": 50.8120275, - "lon": -0.3650922, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1707D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9132176028, - "lat": 51.4438110, - "lon": 0.3578554, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9132176029, - "lat": 51.4438205, - "lon": 0.3578455, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9132577943, - "lat": 51.4454879, - "lon": 0.3573890, - "tags": { - "amenity": "post_box", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9132783990, - "lat": 51.5069892, - "lon": -0.2700354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 65", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9132783991, - "lat": 51.5119537, - "lon": -0.2552780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9132783992, - "lat": 51.5147217, - "lon": -0.2494435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9132832597, - "lat": 51.5127942, - "lon": -0.2733961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W3 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9133388283, - "lat": 50.8126850, - "lon": -0.3951458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN11 1622D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9133388284, - "lat": 50.8093721, - "lon": -0.3963956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BN11 1606D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9133656356, - "lat": 56.2743087, - "lon": -3.1245877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 301", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9135068661, - "lat": 51.5542782, - "lon": -0.2378949, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9135459483, - "lat": 51.6491125, - "lon": -3.3237394, - "tags": { - "amenity": "post_box", - "geograph:id": "3079414", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "Geograph" - } -}, -{ - "type": "node", - "id": 9135831216, - "lat": 51.0328714, - "lon": -0.3646892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH13 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9135853459, - "lat": 51.5820962, - "lon": -2.9616890, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9135893936, - "lat": 50.9925788, - "lon": -0.2908051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9135953674, - "lat": 50.4395227, - "lon": -3.5779513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ3 182D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9136056322, - "lat": 53.4747556, - "lon": -2.5816345, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 207", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 9136066894, - "lat": 53.4683505, - "lon": -2.5721000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 199", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9136453186, - "lat": 52.2368892, - "lon": 0.8606435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP30 2115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9136480219, - "lat": 52.0466902, - "lon": 0.8452239, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9136933813, - "lat": 50.4512565, - "lon": -3.6010924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 221D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9136933814, - "lat": 50.4345107, - "lon": -3.5737583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TQ3 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9136933815, - "lat": 50.4550735, - "lon": -3.5967077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9136933816, - "lat": 50.4346006, - "lon": -3.5777018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 318D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9136968017, - "lat": 50.4336753, - "lon": -3.5820344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ3 405D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9137828078, - "lat": 51.4979878, - "lon": -0.2239577, - "tags": { - "amenity": "post_box", - "description": "Located inside the Tesco store, near the door.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9137828079, - "lat": 51.4934879, - "lon": -0.2057598, - "tags": { - "amenity": "post_box", - "ref": "W14 16" - } -}, -{ - "type": "node", - "id": 9137828080, - "lat": 51.4923185, - "lon": -0.2067795, - "tags": { - "amenity": "post_box", - "ref": "W14 28" - } -}, -{ - "type": "node", - "id": 9137844110, - "lat": 50.4250988, - "lon": -3.5931062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TQ4 83;TQ4 830", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9138370972, - "lat": 51.4770316, - "lon": -0.2024842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 34", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9138427366, - "lat": 50.9113365, - "lon": -0.2244821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN5 1361", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9138427367, - "lat": 50.9101535, - "lon": -0.2449527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN5 1362", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9138427368, - "lat": 50.9189378, - "lon": -0.2459492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN5 1363", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9138427369, - "lat": 50.9164140, - "lon": -0.2657171, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BN5 1373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9138506881, - "lat": 50.8890125, - "lon": -0.2277551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN5 1360", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9138787819, - "lat": 53.6892725, - "lon": -1.8027923, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HD6 419" - } -}, -{ - "type": "node", - "id": 9138981908, - "lat": 52.5423636, - "lon": -0.8545453, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9139012495, - "lat": 52.5212601, - "lon": -0.7765417, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139028249, - "lat": 52.5211123, - "lon": -0.7609278, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9139084024, - "lat": 51.9069069, - "lon": 0.1370903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9139325715, - "lat": 51.4770495, - "lon": -0.8683402, - "tags": { - "addr:street": "polehampton close", - "amenity": "post_box", - "name": "Parcel post box", - "ref": "RG10 654P" - } -}, -{ - "type": "node", - "id": 9139426206, - "lat": 50.8442887, - "lon": -0.2636571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1525D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139426207, - "lat": 50.8411584, - "lon": -0.2605042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1516", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139426210, - "lat": 50.8431400, - "lon": -0.2538040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1526D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139426215, - "lat": 50.8434982, - "lon": -0.2450842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN43 1514D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139458096, - "lat": 50.8243305, - "lon": -0.3148511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1379D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139458097, - "lat": 50.8265679, - "lon": -0.3135422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1421D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139515922, - "lat": 50.8297869, - "lon": -0.3370303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN15 1389", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9139515923, - "lat": 50.8364969, - "lon": -0.3367540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN15 1395D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9139515930, - "lat": 50.8364387, - "lon": -0.3413031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN15 1396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139789178, - "lat": 54.1845898, - "lon": -3.1258420, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9139805754, - "lat": 50.4270502, - "lon": -3.5842865, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "indoor_pillar", - "ref": "TQ4 84", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9139805755, - "lat": 50.4212196, - "lon": -3.5855620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9139873626, - "lat": 50.4315380, - "lon": -3.5886393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ3 384D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9139893713, - "lat": 53.2022996, - "lon": -2.9070375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 427D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139893714, - "lat": 53.2055729, - "lon": -2.9153588, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH1 106D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9139926668, - "lat": 53.2179729, - "lon": -2.5773222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "CW8 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9139991339, - "lat": 52.1920690, - "lon": 1.2158933, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9140871500, - "lat": 51.7287926, - "lon": -2.1431551, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9140939531, - "lat": 51.5392166, - "lon": -3.1298695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9141448354, - "lat": 53.6944065, - "lon": -1.7724906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9142143918, - "lat": 51.4896347, - "lon": -0.2103107, - "tags": { - "amenity": "post_box", - "ref": "W14 14" - } -}, -{ - "type": "node", - "id": 9142357199, - "lat": 50.6300814, - "lon": -3.4063163, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9142357200, - "lat": 50.6341633, - "lon": -3.4008560, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9142357201, - "lat": 50.6369056, - "lon": -3.3912382, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9142357202, - "lat": 50.6331106, - "lon": -3.3898840, - "tags": { - "amenity": "post_box", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9142767982, - "lat": 52.0621063, - "lon": -1.3353873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "last_checked": "2021-08-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX16 1017", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9142775998, - "lat": 51.6109246, - "lon": -1.2429027, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "yes", - "last_checked": "2021-08-20", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9142835185, - "lat": 57.1434494, - "lon": -2.1253771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB10 916P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9143296697, - "lat": 51.4454585, - "lon": -0.0655232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 32", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9143296698, - "lat": 51.4490424, - "lon": -0.0692273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE22 34", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9143296699, - "lat": 51.4581384, - "lon": -0.0753048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "post box at post office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SE22 6", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9143296700, - "lat": 51.4497740, - "lon": -0.0749748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE22 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9143313156, - "lat": 51.7072350, - "lon": -2.6673921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP16 457D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9143434586, - "lat": 51.8230378, - "lon": -2.4982619, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9144792967, - "lat": 51.4817130, - "lon": -0.2701544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9144792968, - "lat": 51.4873404, - "lon": -0.2845135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9144792969, - "lat": 51.4793980, - "lon": -0.2727249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "The plates on this box, and on the one on Thames Road near Magnolia Road, carry the same ref.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 47D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9144792970, - "lat": 51.4770927, - "lon": -0.2703388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W4 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9146649557, - "lat": 51.0840300, - "lon": -2.0155513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9146671503, - "lat": 51.0164377, - "lon": -2.0121691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9146722836, - "lat": 50.9567940, - "lon": -1.9993304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-06-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP5 394D", - "ref:GB:uprn": "10015376121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9148497947, - "lat": 57.1792389, - "lon": -2.1104372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB22 594" - } -}, -{ - "type": "node", - "id": 9149415808, - "lat": 51.7100804, - "lon": -3.4489948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9149807525, - "lat": 51.7621461, - "lon": -2.5204289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL15 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9150217750, - "lat": 54.8627627, - "lon": -1.4813679, - "tags": { - "amenity": "post_box", - "ref": "DH4 380D" - } -}, -{ - "type": "node", - "id": 9150217751, - "lat": 54.8594297, - "lon": -1.4772132, - "tags": { - "amenity": "post_box", - "ref": "DH4 200D" - } -}, -{ - "type": "node", - "id": 9150217772, - "lat": 54.8507177, - "lon": -1.4830175, - "tags": { - "amenity": "post_box", - "ref": "DH4 239" - } -}, -{ - "type": "node", - "id": 9152925585, - "lat": 54.8585933, - "lon": -1.5774782, - "tags": { - "access": "yes", - "amenity": "post_box", - "check_date": "2024-01-04", - "collection_times": "Mo-Fr 17:30, Sa 10:30", - "indoor": "yes", - "level": "0", - "note": "Private posting box", - "opening_hours": "Mo-Sa 06:00-24:00; Su 10:00-16:00", - "ref": "DH2 96", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9156302692, - "lat": 51.9477385, - "lon": 0.4356239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9156360725, - "lat": 51.0105893, - "lon": -2.2802057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP8 57", - "ref:GB:uprn": "10015389121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9156529002, - "lat": 50.4323161, - "lon": -3.5720135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ4 125D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156529003, - "lat": 50.4293117, - "lon": -3.5624803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ4 131D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156529004, - "lat": 50.4201769, - "lon": -3.5971140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ4 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156529005, - "lat": 50.4298817, - "lon": -3.5764075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TQ4 142D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156529006, - "lat": 50.4336783, - "lon": -3.5701991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156538754, - "lat": 50.4285567, - "lon": -3.5660387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156538755, - "lat": 50.4292818, - "lon": -3.5689344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ4 177D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9156538756, - "lat": 50.4280007, - "lon": -3.5625235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 180D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638534, - "lat": 50.4283626, - "lon": -3.6139292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 203", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638535, - "lat": 50.4368171, - "lon": -3.5658336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ4 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638536, - "lat": 50.4264948, - "lon": -3.6009787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 243D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638538, - "lat": 50.4304704, - "lon": -3.6218611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638539, - "lat": 50.4021475, - "lon": -3.5599055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638540, - "lat": 50.4277361, - "lon": -3.5712806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TQ4 317D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638541, - "lat": 50.4084253, - "lon": -3.5601489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638542, - "lat": 50.4260516, - "lon": -3.5912030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638543, - "lat": 50.4108918, - "lon": -3.5605175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 353D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638544, - "lat": 50.4160574, - "lon": -3.5638163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159638545, - "lat": 50.4024109, - "lon": -3.5540799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ4 370D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 9159638546, - "lat": 50.4253254, - "lon": -3.5674523, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 383D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159655256, - "lat": 50.4259816, - "lon": -3.5741899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "ref": "TQ4 390D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159655257, - "lat": 50.4236788, - "lon": -3.5863733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ4 397D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159655258, - "lat": 50.4066000, - "lon": -3.5696440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ4 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9159719683, - "lat": 54.6199632, - "lon": -3.1414915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA12 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9161079701, - "lat": 51.5255288, - "lon": -3.1394371, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9161237863, - "lat": 52.5818216, - "lon": -0.8943054, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9161529722, - "lat": 50.4387795, - "lon": -3.6502511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9161529723, - "lat": 50.3617309, - "lon": -3.7361219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9161604605, - "lat": 52.7904503, - "lon": -0.9839477, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9162197024, - "lat": 50.4759001, - "lon": -3.7157245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 107", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9162197026, - "lat": 50.4424960, - "lon": -3.7120988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9162254627, - "lat": 50.4462868, - "lon": -3.7102059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9162254629, - "lat": 50.4216359, - "lon": -3.6942454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 09:00; Su off", - "drive_through": "no", - "note": "Aperture fitted with brush flap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9162264128, - "lat": 50.5751379, - "lon": -3.4781398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX7 602D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9162264129, - "lat": 50.5791580, - "lon": -3.4671664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9162314767, - "lat": 52.0300179, - "lon": 1.1850400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP3 1046D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9162336431, - "lat": 50.9414165, - "lon": -2.6310405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "BA20 271;BA20 2711", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9162419135, - "lat": 52.3970494, - "lon": -2.9334594, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9162460512, - "lat": 52.4047132, - "lon": -2.9240808, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9162477488, - "lat": 50.7367885, - "lon": -1.8414164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH7 244D", - "ref:GB:uprn": "10015320681", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9163053947, - "lat": 51.6687492, - "lon": -1.0440056, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "OX49 644", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9163154487, - "lat": 51.0740433, - "lon": 1.1479764, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CT20 10D" - } -}, -{ - "type": "node", - "id": 9163334118, - "lat": 50.3453360, - "lon": -3.6562120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9163557060, - "lat": 50.3858343, - "lon": -3.6226405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9163557061, - "lat": 50.3711257, - "lon": -3.7786876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ9 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9163652894, - "lat": 50.2440486, - "lon": -3.8142162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9163654087, - "lat": 49.9574451, - "lon": -6.3494534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR23 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9163654088, - "lat": 49.9534129, - "lon": -6.3373483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa-Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR24 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9163704106, - "lat": 51.5243567, - "lon": -3.1469656, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9165439860, - "lat": 50.6139557, - "lon": -2.4869075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DT4 509P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 9166034039, - "lat": 52.6867528, - "lon": -0.8530717, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9166066249, - "lat": 52.4863766, - "lon": -0.8030170, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9166100091, - "lat": 52.7505047, - "lon": -1.0088413, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9166105536, - "lat": 52.7718311, - "lon": -1.0201492, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9166118083, - "lat": 52.7373750, - "lon": -1.0414935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9166153204, - "lat": 50.4220517, - "lon": -4.1412565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PL6 693D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9166920592, - "lat": 55.8225757, - "lon": -4.2612951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G44 486", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9167288154, - "lat": 51.4460635, - "lon": 0.0780809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa off; Su off", - "drive_through": "no", - "note": "Inside the entrance to student union building", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE9 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9167483834, - "lat": 50.7427330, - "lon": -4.0008286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9168268029, - "lat": 52.0344936, - "lon": -1.4802709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX15 1054D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9168564779, - "lat": 50.3997250, - "lon": -4.1529516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "637823070751193", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 275D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9168602210, - "lat": 51.2128895, - "lon": -2.6724788, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9168611042, - "lat": 52.6186488, - "lon": -0.9391921, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9169050388, - "lat": 51.9973700, - "lon": -1.4872044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX15 1064D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9169050389, - "lat": 51.9970430, - "lon": -1.4822182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX15 1082D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9169879273, - "lat": 55.8432285, - "lon": -4.3095642, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9169933574, - "lat": 50.3899569, - "lon": -3.5231938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 183D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9169968256, - "lat": 50.3997858, - "lon": -3.5552960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ5 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9169968257, - "lat": 50.3974837, - "lon": -3.5545253, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9170413245, - "lat": 50.6761231, - "lon": -3.5024621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX6 121", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9170413276, - "lat": 50.6779456, - "lon": -3.4946729, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX6 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9170413278, - "lat": 50.6807572, - "lon": -3.4972452, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX6 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9170707663, - "lat": 50.3773351, - "lon": -4.1474138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "242769135102567", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL3 118D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-05-21" - } -}, -{ - "type": "node", - "id": 9171867665, - "lat": 52.4729386, - "lon": 1.5255507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "NR34 3414D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9172374408, - "lat": 51.8498987, - "lon": -2.5263391, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9172501712, - "lat": 51.8569150, - "lon": -3.1595363, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9173221205, - "lat": 51.9429279, - "lon": -1.5127783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX7 289D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173221206, - "lat": 51.9500960, - "lon": -1.5229905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OX7 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173311262, - "lat": 51.7872090, - "lon": -2.4562436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL14 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173311263, - "lat": 51.7613514, - "lon": -2.4767466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "662868662485703", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL15 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 9173311264, - "lat": 51.7603570, - "lon": -2.4790883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL15 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173314697, - "lat": 51.8075032, - "lon": -2.4686310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL14 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173314698, - "lat": 51.8130020, - "lon": -2.4744937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL14 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173314699, - "lat": 51.8238609, - "lon": -2.4969154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GL14 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173314895, - "lat": 51.7245427, - "lon": -1.5075678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX18 429", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173333242, - "lat": 51.8339892, - "lon": -1.5393238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX29 760D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9173364971, - "lat": 51.3448308, - "lon": -2.2939752, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9175201916, - "lat": 51.8025356, - "lon": -2.4502219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL14 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9175235717, - "lat": 51.8033088, - "lon": -2.4486223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL14 337D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9175235718, - "lat": 51.8040301, - "lon": -2.4538165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL14 381D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9175235719, - "lat": 51.8061155, - "lon": -2.4519363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL14 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9175276698, - "lat": 51.6991902, - "lon": 0.1919195, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9175519230, - "lat": 51.6133886, - "lon": -1.1650289, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9175551113, - "lat": 51.7767322, - "lon": -1.6130410, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9175557659, - "lat": 55.0117133, - "lon": -3.8979825, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9176131217, - "lat": 51.5044719, - "lon": -0.2130398, - "tags": { - "amenity": "post_box", - "ref": "W14 1" - } -}, -{ - "type": "node", - "id": 9176131218, - "lat": 51.5029526, - "lon": -0.2096052, - "tags": { - "amenity": "post_box", - "ref": "W14 23" - } -}, -{ - "type": "node", - "id": 9176131219, - "lat": 51.5018632, - "lon": -0.2112749, - "tags": { - "amenity": "post_box", - "ref": "W14 26" - } -}, -{ - "type": "node", - "id": 9176131220, - "lat": 51.5019175, - "lon": -0.2191687, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref": "W14 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9176131221, - "lat": 51.5010317, - "lon": -0.2148101, - "tags": { - "amenity": "post_box", - "ref": "W14 18" - } -}, -{ - "type": "node", - "id": 9176131222, - "lat": 51.4998871, - "lon": -0.2063034, - "tags": { - "amenity": "post_box", - "ref": "W14 38" - } -}, -{ - "type": "node", - "id": 9176131223, - "lat": 51.4983268, - "lon": -0.2095382, - "tags": { - "amenity": "post_box", - "ref": "W14 24" - } -}, -{ - "type": "node", - "id": 9176173665, - "lat": 50.3971257, - "lon": -3.8770133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9176486281, - "lat": 56.1945279, - "lon": -4.7497456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "171760859130393", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "G83 84", - "survey:date": "2023-05-24" - } -}, -{ - "type": "node", - "id": 9177654266, - "lat": 52.6944748, - "lon": -3.1558474, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9178094485, - "lat": 53.3160898, - "lon": -4.2265747, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9178111376, - "lat": 51.3835570, - "lon": -0.3939438, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111377, - "lat": 51.3886201, - "lon": -0.4037279, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT12 299D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111378, - "lat": 51.3917475, - "lon": -0.4111709, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KT12 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111379, - "lat": 51.3926990, - "lon": -0.4053971, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111380, - "lat": 51.3922282, - "lon": -0.4189676, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 165D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9178111381, - "lat": 51.3770827, - "lon": -0.4099435, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1-LC", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "KT12 73;KT12 7301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111382, - "lat": 51.3655499, - "lon": -0.4049938, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 149D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9178111383, - "lat": 51.3557617, - "lon": -0.4221746, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 167D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9178111384, - "lat": 51.3662651, - "lon": -0.4224652, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 155", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9178111385, - "lat": 51.3696287, - "lon": -0.4139681, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8ND", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT12 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111386, - "lat": 51.3719449, - "lon": -0.4104812, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9178111387, - "lat": 51.3732103, - "lon": -0.4057461, - "tags": { - "amenity": "post_box", - "collection_plate": "CP15D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "off_street_box", - "ref": "KT12 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111388, - "lat": 51.3738129, - "lon": -0.4072112, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 104D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9178111389, - "lat": 51.3673930, - "lon": -0.4094722, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 105D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9178111390, - "lat": 51.3671588, - "lon": -0.4041376, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 234D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9178111391, - "lat": 51.3671219, - "lon": -0.3952389, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 108D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9178111392, - "lat": 51.3661486, - "lon": -0.3989761, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT12 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111393, - "lat": 51.3645719, - "lon": -0.3995499, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8N", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KT12 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111394, - "lat": 51.3645377, - "lon": -0.4022806, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178111395, - "lat": 51.3511904, - "lon": -0.4309164, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "note": "I have upgraded the 'Mail Drop Box' tag.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KT12 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9178173469, - "lat": 50.3500582, - "lon": -3.5869739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "857629895213217", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2022-05-27", - "survey:date": "2022-05-27" - } -}, -{ - "type": "node", - "id": 9178326379, - "lat": 53.2667990, - "lon": -3.4993562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL18 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178326395, - "lat": 53.2696170, - "lon": -3.5072233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL18 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178326396, - "lat": 53.2675434, - "lon": -3.4967202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL18 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178326499, - "lat": 55.0129325, - "lon": -1.9741616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NE45 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178327602, - "lat": 55.0298308, - "lon": -2.1277021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE46 13D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9178327605, - "lat": 55.0119958, - "lon": -2.0210689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "NE45 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178378891, - "lat": 53.2523183, - "lon": -3.4771463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL17 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178378892, - "lat": 53.2532656, - "lon": -3.4725834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9178380002, - "lat": 50.6293149, - "lon": -3.3266070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX9 5", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9178481053, - "lat": 50.6333148, - "lon": -3.3197225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 9178481062, - "lat": 50.6303879, - "lon": -3.3199438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 60D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9178843363, - "lat": 51.8069322, - "lon": -1.5947993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX18 440D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9178849883, - "lat": 51.9126258, - "lon": -1.6241336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref:signed": "no", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9178909427, - "lat": 51.3205764, - "lon": -0.5289271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-23", - "mapillary": "119825117612497", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU22 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-09-19" - } -}, -{ - "type": "node", - "id": 9178928948, - "lat": 51.3240620, - "lon": -0.5326206, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9178952119, - "lat": 51.8553202, - "lon": -1.8460836, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9179163929, - "lat": 51.9786034, - "lon": -1.4517027, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9179627387, - "lat": 50.3935826, - "lon": -3.5239971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9179627388, - "lat": 50.3865140, - "lon": -3.5134640, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 270", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9179627389, - "lat": 50.3980013, - "lon": -3.5667649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 275D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9179655765, - "lat": 50.3951782, - "lon": -3.5440828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-06-26" - } -}, -{ - "type": "node", - "id": 9180164685, - "lat": 55.1099282, - "lon": -6.6365742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT52 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9180397881, - "lat": 50.2374700, - "lon": -3.7779118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ8 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9180402815, - "lat": 50.6337061, - "lon": -3.3493864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "599705354988486", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX9 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 9180402816, - "lat": 50.6362102, - "lon": -3.3435736, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9180425821, - "lat": 50.6336449, - "lon": -3.3152043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 9180425850, - "lat": 50.6395733, - "lon": -3.3186550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date": "2021-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX9 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9180668573, - "lat": 53.3391338, - "lon": -4.2416212, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9181031717, - "lat": 52.0027269, - "lon": -1.7295152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL56 134", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9181059480, - "lat": 52.0558089, - "lon": -1.7555031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL55 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9181059482, - "lat": 52.0524558, - "lon": -1.7691341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1293323524500153", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL55 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-05" - } -}, -{ - "type": "node", - "id": 9181183668, - "lat": 52.0181094, - "lon": -2.6484864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9181892557, - "lat": 50.2895945, - "lon": -3.8990333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "concrete_pillar", - "post_box:type": "wall", - "ref": "TQ7 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9183687545, - "lat": 51.8420362, - "lon": -1.4902635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX7 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9183687546, - "lat": 51.8427165, - "lon": -1.4774948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX7 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9183777121, - "lat": 51.4170273, - "lon": -1.2332422, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 605D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9186851852, - "lat": 51.0858960, - "lon": -1.8337748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9186894567, - "lat": 55.5865957, - "lon": -2.0039347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE71 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9186912466, - "lat": 55.6694988, - "lon": -2.0993168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TD15 36D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9186924263, - "lat": 55.6916991, - "lon": -2.0910812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Unusual D box with PRIORITY", - "post_box:priority": "yes", - "post_box:type": "wall", - "ref": "TD15 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "sample_collection": "covid19" - } -}, -{ - "type": "node", - "id": 9187441895, - "lat": 51.4923129, - "lon": -0.2774069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 62", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9187505795, - "lat": 51.4904161, - "lon": -0.2846289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9187544050, - "lat": 51.4852232, - "lon": -0.2730227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9189768203, - "lat": 51.6299883, - "lon": -1.7120969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9190043719, - "lat": 55.8611151, - "lon": -4.3715742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "Parcel drop off box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 9190043720, - "lat": 55.8611881, - "lon": -4.3717191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9190967440, - "lat": 52.5537524, - "lon": -1.1375074, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9191001524, - "lat": 52.5444646, - "lon": -0.9964090, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9191070090, - "lat": 52.8979933, - "lon": -0.8602905, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9191094768, - "lat": 52.7712249, - "lon": -0.7855228, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9191372384, - "lat": 52.5954338, - "lon": -0.2590280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE1 99D" - } -}, -{ - "type": "node", - "id": 9191372385, - "lat": 52.6016517, - "lon": -0.2619031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE4 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:collection_times": "Post box near Lincoln Rd x Crown St that promises \"A 4.00pm or later collection from the Postbox at Paston Lane Post Office\". Saturday collection inferred bc these late-collecting boxes always have one" - } -}, -{ - "type": "node", - "id": 9191954562, - "lat": 53.0088493, - "lon": -2.6560975, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9192037479, - "lat": 52.9161883, - "lon": -4.1365476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9193157391, - "lat": 54.0052928, - "lon": -1.3011937, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9193287029, - "lat": 51.3250266, - "lon": -0.5377072, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-09-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193850294, - "lat": 53.2620409, - "lon": -1.1697336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "S80 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9193865363, - "lat": 51.4866834, - "lon": 0.1195002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Inside the gates of the caravan site so may not be continuously accessible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SE2 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865364, - "lat": 51.4877179, - "lon": 0.1256202, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865365, - "lat": 51.4879704, - "lon": 0.1053469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9193865366, - "lat": 51.4894677, - "lon": 0.1019378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE2 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865367, - "lat": 51.5037272, - "lon": 0.1170152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9193865368, - "lat": 51.5066044, - "lon": 0.1245058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE28 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865369, - "lat": 51.5095496, - "lon": 0.1194618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865370, - "lat": 51.5060991, - "lon": 0.1146400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9193865371, - "lat": 51.5070173, - "lon": 0.1060970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 43", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865372, - "lat": 51.5016422, - "lon": 0.1050561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865373, - "lat": 51.4984712, - "lon": 0.1046880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865374, - "lat": 51.4941870, - "lon": 0.0952203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865375, - "lat": 51.4997030, - "lon": 0.0929976, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "RHS is sealed, has number SE28 140", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE28 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865376, - "lat": 51.5003637, - "lon": 0.0869107, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE28 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193865377, - "lat": 51.4967712, - "lon": 0.0875955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "SE28 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9193898587, - "lat": 52.2992563, - "lon": -3.0701101, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9195866525, - "lat": 57.4277150, - "lon": -2.3974603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB53 290", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9195929700, - "lat": 53.5859537, - "lon": -0.6433837, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9195978502, - "lat": 50.6843711, - "lon": -4.6969055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL35 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9195978503, - "lat": 50.6856811, - "lon": -4.6925198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL35 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9195978504, - "lat": 50.7005149, - "lon": -4.6710336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL35 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9195978505, - "lat": 50.6840311, - "lon": -4.6909603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL35 73D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 9195995990, - "lat": 53.3408740, - "lon": -1.1741344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196029679, - "lat": 57.5019018, - "lon": -2.4217915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "AB53 22", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9196055873, - "lat": 51.4512725, - "lon": -1.0245564, - "tags": { - "amenity": "post_box", - "brand": "Hermes", - "name": "Hermes Parcel Shop", - "operator": "Hermes" - } -}, -{ - "type": "node", - "id": 9196147112, - "lat": 57.6917758, - "lon": -2.8260405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB56 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9196147113, - "lat": 57.6905001, - "lon": -2.8181905, - "tags": { - "amenity": "post_box", - "note": "no label for collection times or reference number", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB56 88", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9196201351, - "lat": 51.1294657, - "lon": -3.4526736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA23 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196261862, - "lat": 51.1428397, - "lon": -3.3774765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA23 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196261863, - "lat": 51.1360686, - "lon": -3.3847547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196276497, - "lat": 51.1608679, - "lon": -3.3602285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA23 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196435311, - "lat": 51.4411615, - "lon": -1.0240212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "description": "Priority postbox", - "drive_through": "no", - "note": "Priority postbox", - "ref": "RG30 600", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196442388, - "lat": 53.3622840, - "lon": -1.1628099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9196442390, - "lat": 53.3917717, - "lon": -1.1177586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "pillar", - "ref": "S81 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9196461943, - "lat": 53.3504979, - "lon": -1.1690975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9197004601, - "lat": 51.0213926, - "lon": -3.2471534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA4 13", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9197019345, - "lat": 50.9149613, - "lon": -3.2794794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX15 211", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9197035290, - "lat": 50.9051266, - "lon": -3.3296624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX15 309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9197035291, - "lat": 50.9049645, - "lon": -3.3177625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX15 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9197047117, - "lat": 50.9078753, - "lon": -3.2908613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX15 380D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9197116571, - "lat": 52.3072536, - "lon": -3.8502641, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9197135851, - "lat": 57.6916997, - "lon": -2.8147313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB56 85", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9197166058, - "lat": 51.4508909, - "lon": -1.0470688, - "tags": { - "amenity": "post_box", - "brand": "UPS", - "brand:wikidata": "Q155026", - "drive_through": "no", - "name": "UPS Service Point", - "official_name": "United Parcel Service", - "operator": "UPS", - "operator:type": "private", - "operator:wikidata": "Q155026" - } -}, -{ - "type": "node", - "id": 9197788621, - "lat": 57.6764360, - "lon": -2.2621257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB43 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9198014507, - "lat": 57.6709348, - "lon": -2.3323939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 49D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9198045327, - "lat": 57.6722195, - "lon": -2.3381051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9198111098, - "lat": 50.3605403, - "lon": -4.2378406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL11 616D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9198407334, - "lat": 57.6698725, - "lon": -2.3362446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 49D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9198410708, - "lat": 50.7333408, - "lon": -1.8671987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 133D", - "ref:GB:uprn": "10015340505", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9198457764, - "lat": 50.7404613, - "lon": -1.8730344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 88D", - "ref:GB:uprn": "10015439789", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9198585329, - "lat": 51.5120945, - "lon": -0.3832756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9198585351, - "lat": 51.5106756, - "lon": -0.3717622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9199437362, - "lat": 57.6594382, - "lon": -2.3393496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 60", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9199475636, - "lat": 57.6682372, - "lon": -2.5548577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 364", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9199593908, - "lat": 57.6832899, - "lon": -2.6912661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "AB45 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9199593909, - "lat": 57.6827845, - "lon": -2.6971583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 41D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9199593914, - "lat": 57.6807568, - "lon": -2.6870591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "AB45 32D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9200285793, - "lat": 50.7553477, - "lon": -1.9750324, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH17 219D", - "ref:GB:uprn": "10015426918", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9200300406, - "lat": 50.3945037, - "lon": -3.5278530, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ5 375D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9200346783, - "lat": 50.3951526, - "lon": -3.5216748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ5 389D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9200848042, - "lat": 50.9450822, - "lon": -1.4629390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO16 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9200894165, - "lat": 50.9491505, - "lon": -1.4714666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SO16 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9200895278, - "lat": 50.9831449, - "lon": -1.6006525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SO51 509", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9201224637, - "lat": 52.7115733, - "lon": -0.3864422, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9201253275, - "lat": 50.3879269, - "lon": -3.5194887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ5 414D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201282843, - "lat": 50.3670576, - "lon": -3.7874015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201282844, - "lat": 50.3630921, - "lon": -3.6771832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:45; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TQ9 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9201282845, - "lat": 50.4072393, - "lon": -3.6239880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201282846, - "lat": 50.4218850, - "lon": -3.7594226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201282847, - "lat": 50.4043895, - "lon": -3.8054550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TQ9 42", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201282848, - "lat": 50.4149938, - "lon": -3.7266564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 50D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201324822, - "lat": 52.2969936, - "lon": -0.3888444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "PE28 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9201330468, - "lat": 50.6857903, - "lon": -4.6975458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL35 83D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201330469, - "lat": 50.6825755, - "lon": -4.6472901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL35 85D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201330470, - "lat": 50.6942485, - "lon": -4.6554902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL35 86D", - "royal_cypher": "EIIR", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9201330471, - "lat": 50.6705725, - "lon": -4.6813750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL35 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9201330472, - "lat": 50.6771622, - "lon": -4.7146635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL35 92", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-10-29" - } -}, -{ - "type": "node", - "id": 9201355663, - "lat": 54.5826134, - "lon": -1.0387996, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202423234, - "lat": 53.3547595, - "lon": -1.1229283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S81 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202429490, - "lat": 53.3577266, - "lon": -1.1285250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S81 107", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9202432586, - "lat": 52.4303503, - "lon": -3.7076122, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9202455067, - "lat": 53.3624382, - "lon": -1.1257911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S81 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202455762, - "lat": 53.3642607, - "lon": -1.1234802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "S81 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202455763, - "lat": 53.3575624, - "lon": -1.1127792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S81 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202455764, - "lat": 53.3692011, - "lon": -1.1208247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S81 41", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9202480482, - "lat": 53.3473149, - "lon": -1.1149154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "S81 10", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9202508098, - "lat": 52.9105828, - "lon": -2.7351185, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:15, Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "SY13 636", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202514317, - "lat": 51.5106498, - "lon": -0.3758237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202514318, - "lat": 51.5098380, - "lon": -0.3591417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9202514319, - "lat": 51.5088326, - "lon": -0.3485394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 212", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9202514320, - "lat": 51.5084648, - "lon": -0.3657456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9202514321, - "lat": 51.5072928, - "lon": -0.3462879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202603099, - "lat": 54.0328981, - "lon": -1.2838447, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202647734, - "lat": 50.7264214, - "lon": -1.8638818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "plastic", - "post_box:type": "pillar", - "ref": "BH8 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9202900461, - "lat": 52.0036620, - "lon": -2.1252696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL20 371" - } -}, -{ - "type": "node", - "id": 9202931589, - "lat": 57.6119066, - "lon": -2.6953371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB45 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9202992400, - "lat": 57.2606594, - "lon": -3.7430644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH24 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9203490669, - "lat": 50.6710256, - "lon": -4.7238762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL34 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203490670, - "lat": 50.6624315, - "lon": -4.7488503, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL34 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203490671, - "lat": 50.6591670, - "lon": -4.7326330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL34 89", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203490980, - "lat": 50.3544974, - "lon": -3.5780029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 151D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203539558, - "lat": 50.6466842, - "lon": -4.7369015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL34 95", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203539559, - "lat": 50.6667449, - "lon": -4.7390304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL34 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203539560, - "lat": 50.6447132, - "lon": -4.7581963, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL34 121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203539561, - "lat": 50.6491127, - "lon": -4.7512578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL34 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9203554033, - "lat": 50.6541588, - "lon": -4.7523082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL34 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9203554034, - "lat": 50.6632494, - "lon": -4.7512354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL34 124D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9203554035, - "lat": 50.6440490, - "lon": -4.7121121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 08:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL34 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9203554036, - "lat": 50.6573434, - "lon": -4.7497439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL34 136", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9203554037, - "lat": 50.6664868, - "lon": -4.7296703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL34 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9204666743, - "lat": 50.2717220, - "lon": -3.8296270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9205028011, - "lat": 52.3266760, - "lon": -2.2852579, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9205584540, - "lat": 51.6518245, - "lon": -0.4126307, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9206002337, - "lat": 50.2263194, - "lon": -5.3149708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "TR14 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9206301575, - "lat": 54.7101779, - "lon": -1.7318997, - "tags": { - "amenity": "post_box", - "mapillary": "1160927857753127" - } -}, -{ - "type": "node", - "id": 9206301577, - "lat": 54.7123933, - "lon": -1.7358626, - "tags": { - "amenity": "post_box", - "mapillary": "156619523075370" - } -}, -{ - "type": "node", - "id": 9206301578, - "lat": 54.7171890, - "lon": -1.7476979, - "tags": { - "amenity": "post_box", - "mapillary": "298434851867653" - } -}, -{ - "type": "node", - "id": 9206301579, - "lat": 54.7133528, - "lon": -1.7460497, - "tags": { - "amenity": "post_box", - "mapillary": "211574717208205" - } -}, -{ - "type": "node", - "id": 9206301580, - "lat": 54.7101031, - "lon": -1.7473003, - "tags": { - "amenity": "post_box", - "mapillary": "503191707478596" - } -}, -{ - "type": "node", - "id": 9206301581, - "lat": 54.7099168, - "lon": -1.7398068, - "tags": { - "amenity": "post_box", - "mapillary": "142336554532689" - } -}, -{ - "type": "node", - "id": 9206301585, - "lat": 54.7102794, - "lon": -1.7571406, - "tags": { - "amenity": "post_box", - "mapillary": "764926114207764" - } -}, -{ - "type": "node", - "id": 9206301590, - "lat": 54.7180213, - "lon": -1.7579352, - "tags": { - "amenity": "post_box", - "mapillary": "3008669149378902" - } -}, -{ - "type": "node", - "id": 9206301591, - "lat": 54.7203734, - "lon": -1.7540829, - "tags": { - "amenity": "post_box", - "mapillary": "861577217905347" - } -}, -{ - "type": "node", - "id": 9206301592, - "lat": 54.7048900, - "lon": -1.7837033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "mapillary": "332836578239877", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DL15 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9206301599, - "lat": 54.7486798, - "lon": -1.6256748, - "tags": { - "amenity": "post_box", - "mapillary": "295018935514288" - } -}, -{ - "type": "node", - "id": 9206301600, - "lat": 54.7505390, - "lon": -1.6202728, - "tags": { - "amenity": "post_box", - "mapillary": "767265130482561" - } -}, -{ - "type": "node", - "id": 9206489789, - "lat": 51.5114520, - "lon": -0.3773984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "UB1 48;UB1 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9206545804, - "lat": 51.8014817, - "lon": -4.9706252, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9207459993, - "lat": 50.4199819, - "lon": -4.1611724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "477478600621998", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL5 299D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-23" - } -}, -{ - "type": "node", - "id": 9207514822, - "lat": 51.4142094, - "lon": -0.0368173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR3 229D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9208351744, - "lat": 54.7875279, - "lon": -1.5413703, - "tags": { - "amenity": "post_box", - "fixme": "2nd post box needs ref (https://osm.mathmos.net/postboxes/box-info/?ref=DH1+466)", - "mapillary": "346467803478224", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9208470844, - "lat": 54.7360099, - "lon": -2.1660434, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519622", - "mapillary": "491926422158888", - "ref": "DL13 153" - } -}, -{ - "type": "node", - "id": 9208470854, - "lat": 54.7197088, - "lon": -1.9784094, - "tags": { - "amenity": "post_box", - "mapillary": "487457549062500" - } -}, -{ - "type": "node", - "id": 9208718348, - "lat": 50.3484394, - "lon": -3.6145608, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9208718349, - "lat": 50.3510090, - "lon": -3.5996214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 155D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9208814550, - "lat": 51.9052324, - "lon": -1.9080177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 22" - } -}, -{ - "type": "node", - "id": 9209181784, - "lat": 53.4913677, - "lon": -2.6455907, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 164", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9209731417, - "lat": 50.1561981, - "lon": -5.0709103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR11 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2021-10-29" - } -}, -{ - "type": "node", - "id": 9209932443, - "lat": 51.1435111, - "lon": -0.1125024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "RH10 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9210318650, - "lat": 54.8712692, - "lon": -1.5883385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30, Sa 11:00", - "ref": "DH3 249P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9210365683, - "lat": 53.5004302, - "lon": -1.3532350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9210546258, - "lat": 51.4496267, - "lon": -3.2220096, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9210834093, - "lat": 53.3824007, - "lon": -1.1182171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9210856983, - "lat": 53.3778406, - "lon": -1.1188686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9210874584, - "lat": 53.4982764, - "lon": -2.6684163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 134" - } -}, -{ - "type": "node", - "id": 9210879840, - "lat": 53.3784302, - "lon": -1.1267854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S81 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9210883192, - "lat": 53.3801738, - "lon": -1.1234100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S81 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9210883193, - "lat": 53.3767948, - "lon": -1.1214312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9211027226, - "lat": 50.2862991, - "lon": -5.0601651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9211147604, - "lat": 50.2055507, - "lon": -5.0502184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9211150086, - "lat": 50.2067054, - "lon": -5.0708295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9211184416, - "lat": 50.4005506, - "lon": -4.4866750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL14 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9211186745, - "lat": 50.6116127, - "lon": -4.6778547, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9211224235, - "lat": 52.4790694, - "lon": -2.2584636, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9212281396, - "lat": 54.8482558, - "lon": -1.5640752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "DH3 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9212421595, - "lat": 52.9041958, - "lon": -1.8802547, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9212514617, - "lat": 52.8186067, - "lon": -2.9049248, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9212524810, - "lat": 52.8188194, - "lon": -2.6875860, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9212875533, - "lat": 51.3882653, - "lon": -0.1618039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CR4 18", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9212978741, - "lat": 52.8807311, - "lon": -2.7776189, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9214418395, - "lat": 53.0467866, - "lon": -0.3746196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NG34 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9214437840, - "lat": 52.8150748, - "lon": -0.3620673, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9214457482, - "lat": 52.4377556, - "lon": -3.0690614, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9214479497, - "lat": 52.4582065, - "lon": -3.2154545, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9214548353, - "lat": 52.4350850, - "lon": -2.8690905, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9214857572, - "lat": 50.3667534, - "lon": -4.2996051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 859", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9214857574, - "lat": 50.3728915, - "lon": -4.2936836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:45", - "post_box:type": "lamp", - "ref": "PL11 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9215729586, - "lat": 50.4128683, - "lon": -3.7127182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ9 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9215988293, - "lat": 50.4146272, - "lon": -3.7212260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9215988294, - "lat": 50.3928653, - "lon": -3.7116881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9216052751, - "lat": 51.4672350, - "lon": -2.2774999, - "tags": { - "amenity": "post_box", - "mapillary": "1316568575509147", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 9216120236, - "lat": 50.7518407, - "lon": -1.9768987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 50D", - "ref:GB:uprn": "10015473264", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9216120238, - "lat": 50.7483164, - "lon": -1.9766626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 238D", - "ref:GB:uprn": "10015304483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9216120239, - "lat": 50.7468446, - "lon": -1.9741136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 20:00; Sa 15:15", - "note": "3 apertures but only one reference", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "BH17 2000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9216678591, - "lat": 52.9454655, - "lon": 0.7267013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE31 172", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9217090911, - "lat": 50.3969595, - "lon": -3.7904345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9217090912, - "lat": 50.4033572, - "lon": -3.6213824, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ9 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9217090913, - "lat": 50.4556475, - "lon": -3.6547311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9217209449, - "lat": 53.2688497, - "lon": -3.5399019, - "tags": { - "amenity": "post_box", - "listed_status": "Grade II", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9217209991, - "lat": 53.2557486, - "lon": -3.6705787, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9217284233, - "lat": 53.2287750, - "lon": -3.7938040, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9217286964, - "lat": 51.8626252, - "lon": 0.1502540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CM23 7D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9217307860, - "lat": 53.1818549, - "lon": -3.8049801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "lamp", - "ref": "LL26 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9218548590, - "lat": 53.3585923, - "lon": -1.2188708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "post_box:type": "wall", - "ref": "S25 465", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9218571777, - "lat": 53.3951126, - "lon": -1.2311136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "post_box:type": "wall", - "ref": "S25 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9218571778, - "lat": 53.3592173, - "lon": -1.2273407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S25 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9219031266, - "lat": 50.4327119, - "lon": -3.7148175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9219031267, - "lat": 50.4333297, - "lon": -3.7489674, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ9 108", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9219031268, - "lat": 50.4114821, - "lon": -3.6236487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ9 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9221203490, - "lat": 53.4307690, - "lon": -1.2199208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "location": "53.43079 -1.21986", - "post_box:type": "lamp", - "ref": "S66 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9221203491, - "lat": 53.4322309, - "lon": -1.2110995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.43226 -1.21103", - "post_box:type": "lamp", - "ref": "S66 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9221640057, - "lat": 56.2100686, - "lon": -5.5559461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times:signed": "no", - "direction": "NE", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9221796373, - "lat": 51.7332388, - "lon": -4.7266195, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9222269013, - "lat": 53.5354473, - "lon": -2.5780762, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN2 168" - } -}, -{ - "type": "node", - "id": 9222333393, - "lat": 53.4673992, - "lon": -1.2729998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "S65 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9222511299, - "lat": 52.9615005, - "lon": -0.2964954, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NG34 64", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9222590319, - "lat": 50.3466221, - "lon": -3.6793387, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9222590320, - "lat": 50.3363706, - "lon": -3.6836698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TQ9 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9222590321, - "lat": 50.4345288, - "lon": -3.7112113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9222590322, - "lat": 50.4411226, - "lon": -3.6797807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9222590323, - "lat": 50.3938293, - "lon": -3.7072486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ9 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9225282777, - "lat": 57.0634320, - "lon": -2.1304089, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9225393180, - "lat": 54.6086301, - "lon": -2.0496580, - "tags": { - "amenity": "post_box", - "mapillary": "3006038882952521" - } -}, -{ - "type": "node", - "id": 9225401977, - "lat": 51.0675343, - "lon": 0.6844485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN30 333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9225415604, - "lat": 55.8166967, - "lon": -5.6496793, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA29 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9225552117, - "lat": 51.7673717, - "lon": -1.8499176, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9225552123, - "lat": 50.2877840, - "lon": -3.7815148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9225552124, - "lat": 50.2879808, - "lon": -3.7709734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 2D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-01-09" - } -}, -{ - "type": "node", - "id": 9225552125, - "lat": 50.2399290, - "lon": -3.6830487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9227582970, - "lat": 51.5005943, - "lon": -0.2774002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 69P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9227605373, - "lat": 51.4980688, - "lon": -0.2648776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9227631897, - "lat": 51.5008692, - "lon": -0.2652497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 31", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9227637145, - "lat": 51.5025806, - "lon": -0.2596974, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 45D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9227637146, - "lat": 51.5015644, - "lon": -0.2574618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9228557320, - "lat": 50.3624644, - "lon": -4.3732877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL11 666", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9228557321, - "lat": 50.3668210, - "lon": -4.3490778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL11 740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9230911928, - "lat": 54.8405696, - "lon": -1.7330957, - "tags": { - "amenity": "post_box", - "mapillary": "448605639565937" - } -}, -{ - "type": "node", - "id": 9230912151, - "lat": 54.8337279, - "lon": -1.8803758, - "tags": { - "amenity": "post_box", - "mapillary": "3863396793708971" - } -}, -{ - "type": "node", - "id": 9230912152, - "lat": 54.8318575, - "lon": -1.8772302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "553714689351225", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9230920911, - "lat": 51.0366070, - "lon": -1.8457090, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9230973234, - "lat": 51.4289938, - "lon": -0.1213640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW16 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9231121009, - "lat": 52.6276569, - "lon": -4.0703942, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9231159570, - "lat": 51.3017291, - "lon": -0.5089109, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU23 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9231159571, - "lat": 51.2905746, - "lon": -0.5138753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU23 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9231159572, - "lat": 51.2966163, - "lon": -0.5241459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU23 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9231159573, - "lat": 51.2888622, - "lon": -0.5261163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU23 43D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9231159574, - "lat": 51.2914645, - "lon": -0.5326170, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU23 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9231159575, - "lat": 51.2835872, - "lon": -0.5183326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU23 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9231159576, - "lat": 51.2802727, - "lon": -0.5108140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2022-02-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU23 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9231212417, - "lat": 53.5220458, - "lon": -2.2150272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45" - } -}, -{ - "type": "node", - "id": 9231378106, - "lat": 52.7276050, - "lon": -3.6776642, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9231380470, - "lat": 52.5857807, - "lon": -3.9218930, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9231635704, - "lat": 52.6952476, - "lon": -3.0693347, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9233146275, - "lat": 53.2096904, - "lon": -2.9132168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9233441963, - "lat": 51.4158275, - "lon": 0.2346584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DA4 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9233607753, - "lat": 52.8844847, - "lon": -2.7186012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9233618001, - "lat": 52.8933767, - "lon": -2.7478053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 16:50", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9233847586, - "lat": 52.3786082, - "lon": -2.4815144, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9233859495, - "lat": 51.7518897, - "lon": -0.2374339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AL10 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9233990112, - "lat": 52.4587180, - "lon": -2.8888677, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9234079194, - "lat": 52.9770207, - "lon": -0.2949418, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9234088524, - "lat": 52.6127224, - "lon": -0.2385389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9234098807, - "lat": 50.3292419, - "lon": -3.6242257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ6 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9234098808, - "lat": 50.3152691, - "lon": -3.6239527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 168", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9234098809, - "lat": 50.3243799, - "lon": -3.5995178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TQ6 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9234604634, - "lat": 51.6427167, - "lon": -3.0157672, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9234868230, - "lat": 51.5270219, - "lon": -0.0103843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E3 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9235621751, - "lat": 50.9391728, - "lon": -2.6360844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA20 10", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9235869150, - "lat": 54.8981594, - "lon": -4.9550826, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 9236270728, - "lat": 50.8993490, - "lon": -0.1623860, - "tags": { - "amenity": "post_box", - "mapillary": "509338083699015", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-08-30" - } -}, -{ - "type": "node", - "id": 9236477479, - "lat": 51.8372271, - "lon": -4.4317050, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SA33 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9236670636, - "lat": 52.3162188, - "lon": -2.2914372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:type": "lamp", - "ref": "DY13 158", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9236698351, - "lat": 50.4130819, - "lon": -4.1341590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "346311000712900", - "post_box:type": "pillar", - "ref": "PL6 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-08-12" - } -}, -{ - "type": "node", - "id": 9236698353, - "lat": 50.4161793, - "lon": -4.1385050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "448703163483778", - "post_box:type": "pillar", - "ref": "PL5 290D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-05" - } -}, -{ - "type": "node", - "id": 9236757203, - "lat": 52.5896317, - "lon": -2.4839179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9236767425, - "lat": 52.5721542, - "lon": -2.3177187, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9237839423, - "lat": 52.1760079, - "lon": 0.7535861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP29 2202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9237839424, - "lat": 52.1736264, - "lon": 0.7557184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP29 2156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9238222501, - "lat": 53.4218856, - "lon": -1.1877980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S66 447D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9238268564, - "lat": 51.4837759, - "lon": -0.3533272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 280D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9238268565, - "lat": 51.4826156, - "lon": -0.3479561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9238512996, - "lat": 54.9900781, - "lon": -1.6537995, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9238513001, - "lat": 54.9929110, - "lon": -1.6983550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE5 63" - } -}, -{ - "type": "node", - "id": 9238616529, - "lat": 51.7569876, - "lon": 0.4735600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9239244134, - "lat": 50.3297826, - "lon": -3.5969011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 220D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9239244135, - "lat": 50.3317638, - "lon": -3.5838522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ6 238", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9241239633, - "lat": 51.5690844, - "lon": -3.0032936, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9241589625, - "lat": 51.5235394, - "lon": -0.6814694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9241594388, - "lat": 51.5327925, - "lon": -0.6581582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 138" - } -}, -{ - "type": "node", - "id": 9241614909, - "lat": 51.5305058, - "lon": -0.6667104, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 142" - } -}, -{ - "type": "node", - "id": 9241615467, - "lat": 51.5213513, - "lon": -0.6682721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9241920734, - "lat": 50.3478021, - "lon": -3.6426993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 08:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 247", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9241920735, - "lat": 50.3490132, - "lon": -3.5980699, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ6 273", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9241920736, - "lat": 50.3104937, - "lon": -3.6327508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 08:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ6 354", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9242885426, - "lat": 52.9716122, - "lon": -2.0803797, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9243969321, - "lat": 51.7649391, - "lon": -3.2337865, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 608", - "royal_cypher": "EIIR", - "source": "Bing" - } -}, -{ - "type": "node", - "id": 9244054920, - "lat": 51.7741478, - "lon": -3.2492400, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 607", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9244512412, - "lat": 53.4939331, - "lon": -2.4963670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9244554367, - "lat": 52.0829644, - "lon": -2.8445341, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9244560570, - "lat": 52.4587850, - "lon": -2.8555143, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9244574743, - "lat": 52.0417925, - "lon": -2.9555361, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9244634396, - "lat": 52.0460257, - "lon": -2.8128491, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9244642365, - "lat": 52.0306738, - "lon": -2.9952543, - "tags": { - "amenity": "post_box", - "note": "Hovis style box has been replaced by a more modern one", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9244656231, - "lat": 52.5977712, - "lon": -3.0683010, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9244690510, - "lat": 50.3228381, - "lon": -3.8448775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 7", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9244690511, - "lat": 50.2936275, - "lon": -3.6718231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 9D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9244782938, - "lat": 51.4898291, - "lon": 0.4090548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9244902134, - "lat": 51.6589373, - "lon": -2.6620546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2105838429606456", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP16 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2023-05-03", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 9246434211, - "lat": 51.4917590, - "lon": -0.2626642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "W4 33;W4 233", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9246650943, - "lat": 56.1463469, - "lon": -3.0833697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY1 89", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9247209506, - "lat": 50.2850386, - "lon": -3.7150075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9247209507, - "lat": 50.3189735, - "lon": -3.8558450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ7 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9247338152, - "lat": 55.4035827, - "lon": -2.6554219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD9 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9247339048, - "lat": 51.7995959, - "lon": -4.7392046, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9247746136, - "lat": 53.6682370, - "lon": -1.4122155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "511708273177838", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WF4 165", - "survey:date": "2020-12-18" - } -}, -{ - "type": "node", - "id": 9247893205, - "lat": 53.4887496, - "lon": -2.4997308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9248177779, - "lat": 51.7524676, - "lon": -3.3855352, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-25", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF47 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9248205794, - "lat": 51.7435642, - "lon": -3.3729556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9248563276, - "lat": 51.7431648, - "lon": -3.1501177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9248563292, - "lat": 51.7350868, - "lon": -3.1417894, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9248588718, - "lat": 51.7318775, - "lon": -3.1341358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9248597024, - "lat": 51.7303176, - "lon": -3.1350437, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9248683747, - "lat": 51.3471633, - "lon": -1.5114972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN8 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9248727693, - "lat": 50.3050890, - "lon": -3.7605820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9248727694, - "lat": 50.3039531, - "lon": -3.7510585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9248734830, - "lat": 51.3854507, - "lon": -1.5450972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9248770310, - "lat": 51.4216614, - "lon": -1.3505432, - "tags": { - "amenity": "post_box", - "note": "Royal cypher is inscribed as ER (rather than presumably EVIIR - guessing from the age of postbox))", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 6", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 9249523019, - "lat": 51.5834964, - "lon": -2.9959982, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9250851594, - "lat": 56.1377193, - "lon": -3.1975598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY2 101", - "royal_cypher": "scottish_crown", - "source": "survey", - "start_date": "13/08/2021" - } -}, -{ - "type": "node", - "id": 9251053148, - "lat": 51.4328730, - "lon": -2.1593117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "SN13 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9251053390, - "lat": 50.4019814, - "lon": -4.1469080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-05" - } -}, -{ - "type": "node", - "id": 9251458669, - "lat": 54.6166551, - "lon": -1.7572057, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5919466", - "ref": "DL14 222" - } -}, -{ - "type": "node", - "id": 9251533991, - "lat": 51.3888478, - "lon": -1.3771889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 113", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9251533998, - "lat": 51.3836855, - "lon": -1.3975972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG20 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9251534004, - "lat": 51.3973506, - "lon": -1.4020121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG20 114", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9251534006, - "lat": 51.4050580, - "lon": -1.3854133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG20 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9251607892, - "lat": 50.2370962, - "lon": -3.7346481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TQ8 93", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9251607893, - "lat": 50.2370629, - "lon": -3.7688641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9251628028, - "lat": 50.2342698, - "lon": -3.7723604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-20" - } -}, -{ - "type": "node", - "id": 9251628029, - "lat": 50.2369958, - "lon": -3.7707803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ8 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9251628030, - "lat": 50.2354551, - "lon": -3.7720790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ8 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9251628031, - "lat": 50.2373499, - "lon": -3.7727430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TQ8 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9251628032, - "lat": 50.2338559, - "lon": -3.7584594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 13:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ8 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9251761832, - "lat": 52.2249118, - "lon": -2.0328234, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9252772941, - "lat": 50.3664551, - "lon": -4.4153422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 08:00", - "mapillary": "655197012771943", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL13 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9252772952, - "lat": 50.3591555, - "lon": -4.4411083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL13 88", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9252772960, - "lat": 50.3741647, - "lon": -4.4432813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:15", - "ref": "PL13 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9252772967, - "lat": 50.3656038, - "lon": -4.3871190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL11 558", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9254331908, - "lat": 56.1779223, - "lon": -3.0369632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 178D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254331911, - "lat": 56.1700013, - "lon": -3.0357816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 200D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254331912, - "lat": 56.1696190, - "lon": -3.0338952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 199D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9254331913, - "lat": 56.1718282, - "lon": -3.0326635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9254331914, - "lat": 56.1747399, - "lon": -3.0300378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 234", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254331915, - "lat": 56.1780607, - "lon": -3.0244556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 209D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9254331916, - "lat": 56.1806887, - "lon": -3.0210466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 211D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9254400217, - "lat": 56.1842917, - "lon": -3.0169617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9254400218, - "lat": 56.1836683, - "lon": -3.0135837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 415D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400219, - "lat": 56.1865498, - "lon": -3.0073783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 391", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400220, - "lat": 56.1872896, - "lon": -3.0067620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 204D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400221, - "lat": 56.1896719, - "lon": -3.0066576, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 206D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9254400222, - "lat": 56.1944149, - "lon": -2.9978520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 164D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9254400223, - "lat": 56.1959267, - "lon": -2.9963071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 186", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9254400224, - "lat": 56.1955965, - "lon": -2.9934184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 162D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400225, - "lat": 56.1968508, - "lon": -2.9898837, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9254400226, - "lat": 56.2012457, - "lon": -2.9819510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 235D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400227, - "lat": 56.2004971, - "lon": -2.9905570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 180D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400228, - "lat": 56.1988448, - "lon": -2.9946647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 191D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9254400229, - "lat": 56.2053537, - "lon": -2.9963717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 400D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400230, - "lat": 56.2067197, - "lon": -2.9900767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 227D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9254400231, - "lat": 56.2027611, - "lon": -2.9970269, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 161", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400232, - "lat": 56.1998159, - "lon": -3.0019340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9254400233, - "lat": 56.1986003, - "lon": -2.9981393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 166D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9254400234, - "lat": 56.1967582, - "lon": -2.9998218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 251", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254400235, - "lat": 56.1606042, - "lon": -3.0660262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY1 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9254588043, - "lat": 51.3541237, - "lon": -1.3334549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 213", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9254588044, - "lat": 51.3641210, - "lon": -1.3274440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG20 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9254598831, - "lat": 51.3182141, - "lon": -1.3211918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG20 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9254704426, - "lat": 50.3084352, - "lon": -3.8674137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9254704427, - "lat": 50.2819225, - "lon": -3.7734066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 23D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9254796727, - "lat": 53.4391082, - "lon": -2.2140096, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "M14 397", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9254867310, - "lat": 56.2137757, - "lon": -3.0541672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 192D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9255433173, - "lat": 50.2702804, - "lon": -4.7879964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "PL26 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9255628402, - "lat": 52.4222629, - "lon": -2.1407944, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9256403773, - "lat": 52.5157941, - "lon": -2.0366148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9257670037, - "lat": 51.7263292, - "lon": -2.8827746, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9257695605, - "lat": 50.3593480, - "lon": -4.4556891, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45; Sa 10:45", - "post_box:type": "wall", - "ref": "PL13 24", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9257974296, - "lat": 54.7507282, - "lon": -2.2220338, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519599", - "ref": "DL13 123" - } -}, -{ - "type": "node", - "id": 9257974297, - "lat": 54.7864039, - "lon": -1.7757408, - "tags": { - "amenity": "post_box", - "fixme": "Confirm location", - "image": "https://www.geograph.org.uk/photo/398282" - } -}, -{ - "type": "node", - "id": 9257974304, - "lat": 54.7902219, - "lon": -1.7341849, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/4985171", - "ref": "DH7 36" - } -}, -{ - "type": "node", - "id": 9257979419, - "lat": 50.9245326, - "lon": 0.7104233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN36 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9258139564, - "lat": 52.5166338, - "lon": -3.3165702, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9258139566, - "lat": 52.5150652, - "lon": -3.3152787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "SY16 464", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9258417712, - "lat": 56.3176488, - "lon": -3.0121362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 12P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9258417713, - "lat": 56.3193350, - "lon": -3.0137911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY15 264", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9258417714, - "lat": 56.3166311, - "lon": -3.0182663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 280D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9258417715, - "lat": 56.3219026, - "lon": -3.0001254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 410D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9258417716, - "lat": 56.3211007, - "lon": -3.0051679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 282D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9258421383, - "lat": 54.6653697, - "lon": -1.6191557, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/4811253", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9258421384, - "lat": 54.6760252, - "lon": -1.7698579, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5907737", - "ref": "DL14 164" - } -}, -{ - "type": "node", - "id": 9258421389, - "lat": 54.6644902, - "lon": -1.7352350, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5907724", - "ref": "DL14 139" - } -}, -{ - "type": "node", - "id": 9258421390, - "lat": 54.6625068, - "lon": -1.7275666, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5907712", - "ref": "DL14 45" - } -}, -{ - "type": "node", - "id": 9258421391, - "lat": 54.6545972, - "lon": -1.7186375, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5911224", - "ref": "DL14 11" - } -}, -{ - "type": "node", - "id": 9258421403, - "lat": 54.6488505, - "lon": -1.7640476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "210096220624762", - "not:image": "https://www.geograph.org.uk/photo/5911229", - "note": "image is probably of postbox outside former Toft Hill Post Office (now removed?)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9258421405, - "lat": 54.6489223, - "lon": -1.7453664, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5911231", - "ref": "DL14 168" - } -}, -{ - "type": "node", - "id": 9258421410, - "lat": 54.6451961, - "lon": -1.7269255, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5919460", - "ref": "DL14 218" - } -}, -{ - "type": "node", - "id": 9258421411, - "lat": 54.6121213, - "lon": -1.7508964, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5919387", - "ref": "DL14 6" - } -}, -{ - "type": "node", - "id": 9258421412, - "lat": 54.5975900, - "lon": -1.7637469, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5261101" - } -}, -{ - "type": "node", - "id": 9258424817, - "lat": 56.3164647, - "lon": -3.0250480, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 265D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9258447219, - "lat": 54.5273626, - "lon": -1.9774814, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5604936" - } -}, -{ - "type": "node", - "id": 9258447220, - "lat": 54.6098432, - "lon": -2.0024066, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/3658043", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9258447223, - "lat": 54.6628287, - "lon": -2.2067727, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5683336" - } -}, -{ - "type": "node", - "id": 9258447229, - "lat": 54.6339927, - "lon": -1.8842518, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5911191", - "ref": "DL13 76" - } -}, -{ - "type": "node", - "id": 9258447230, - "lat": 54.6281225, - "lon": -1.8784160, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5916083", - "ref": "DL13 63" - } -}, -{ - "type": "node", - "id": 9258447233, - "lat": 54.6137499, - "lon": -1.8131867, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5916067", - "ref": "DL13 29" - } -}, -{ - "type": "node", - "id": 9258447234, - "lat": 54.6293004, - "lon": -1.8016876, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5916076", - "ref": "DL13 56" - } -}, -{ - "type": "node", - "id": 9258447235, - "lat": 54.6744351, - "lon": -1.8169901, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5911196", - "ref": "DL13 82" - } -}, -{ - "type": "node", - "id": 9258447236, - "lat": 54.6742691, - "lon": -1.8276687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "image": "https://www.geograph.org.uk/photo/5911213", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "DL13 173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9258447237, - "lat": 54.7392068, - "lon": -2.1879450, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519612", - "ref": "DL13 142" - } -}, -{ - "type": "node", - "id": 9258605714, - "lat": 52.9389497, - "lon": -2.2838509, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9258611805, - "lat": 52.0396662, - "lon": -1.7726968, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9258621712, - "lat": 52.7598808, - "lon": -2.3194902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9258647628, - "lat": 52.2225848, - "lon": -2.8521692, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9258651428, - "lat": 52.0762402, - "lon": -1.7479678, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9258660653, - "lat": 51.9530809, - "lon": -1.7814315, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9258794055, - "lat": 52.1758967, - "lon": -3.0991775, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9259396444, - "lat": 55.6182725, - "lon": -2.8769761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD1 27", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9261261872, - "lat": 52.9057653, - "lon": -2.7206825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9261704673, - "lat": 54.7571476, - "lon": -1.7580150, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890820", - "ref": "DL13 92" - } -}, -{ - "type": "node", - "id": 9261704678, - "lat": 54.7025755, - "lon": -1.6565551, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5892218", - "ref": "DL16 131" - } -}, -{ - "type": "node", - "id": 9261704688, - "lat": 54.7106341, - "lon": -1.6916768, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890756", - "ref": "DL15 190" - } -}, -{ - "type": "node", - "id": 9261704696, - "lat": 54.7061225, - "lon": -1.7077343, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890764", - "ref": "DL15 194" - } -}, -{ - "type": "node", - "id": 9261704701, - "lat": 54.7120071, - "lon": -1.7160391, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5890735", - "ref": "DL15 94" - } -}, -{ - "type": "node", - "id": 9261704702, - "lat": 54.6952588, - "lon": -1.7526586, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5907684", - "ref": "DL15 149" - } -}, -{ - "type": "node", - "id": 9261704704, - "lat": 54.6952991, - "lon": -1.7494286, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5519676", - "ref": "DL15 67" - } -}, -{ - "type": "node", - "id": 9261747387, - "lat": 54.8584158, - "lon": -1.6083498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "image": "https://www.geograph.org.uk/photo/5734428", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 240", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9262529845, - "lat": 51.9447160, - "lon": -2.8752832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR2 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9264307380, - "lat": 50.2380621, - "lon": -3.8367111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9264307381, - "lat": 50.3212077, - "lon": -3.7843902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:45; Su off", - "note": "Box looks like it's been embedded into bedrock at the side of the road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "TQ7 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9265306190, - "lat": 50.2706732, - "lon": -3.7370358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9265306191, - "lat": 50.2748410, - "lon": -3.6779979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ7 35D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9266970693, - "lat": 53.6165868, - "lon": -2.1563552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref:GB:uprn": "10015859027" - } -}, -{ - "type": "node", - "id": 9267767902, - "lat": 51.0810863, - "lon": -0.2434266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9268031354, - "lat": 53.4427485, - "lon": -2.2811763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "ref": "M21 641", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9268806970, - "lat": 51.7394487, - "lon": -1.6322162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9268963080, - "lat": 51.6767365, - "lon": -1.7933010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9268970019, - "lat": 50.3899034, - "lon": -4.1553469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "669799624280730", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL2 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-24" - } -}, -{ - "type": "node", - "id": 9269392160, - "lat": 57.1298638, - "lon": -2.1520074, - "tags": { - "addr:postcode": "AB15 7RH", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9269722542, - "lat": 51.1569681, - "lon": -0.6035293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU8 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9270032615, - "lat": 52.7847396, - "lon": -1.4404141, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9270066229, - "lat": 51.3788054, - "lon": 0.0930438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 263", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9270066230, - "lat": 51.3806140, - "lon": 0.0917327, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BR6 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9270072393, - "lat": 56.1736649, - "lon": -3.1438487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY1 100", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9270094635, - "lat": 51.4886396, - "lon": -0.0767899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE1 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9270326414, - "lat": 50.9450063, - "lon": -2.9798973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA19 444D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9271941498, - "lat": 53.4847852, - "lon": -2.6296180, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 166", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9271986722, - "lat": 53.4874435, - "lon": -2.6355494, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 31", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9272108450, - "lat": 54.1406302, - "lon": -3.1127916, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9272361818, - "lat": 57.1573403, - "lon": -2.1361400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB16 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-11-21" - } -}, -{ - "type": "node", - "id": 9272628793, - "lat": 53.9954179, - "lon": -2.7866782, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-24", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "LA2 257D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9272805677, - "lat": 51.5515135, - "lon": 0.0442732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9273191792, - "lat": 50.9119512, - "lon": -0.4243509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH20 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9273330026, - "lat": 50.3380727, - "lon": -4.4898568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL13 49D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 9273330049, - "lat": 50.3566537, - "lon": -4.4611593, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9273433567, - "lat": 51.4842041, - "lon": -0.2022319, - "tags": { - "amenity": "post_box", - "description": "Located at the back of the Co-op store", - "post_box:type": "pillar", - "ref": "SW6 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9273433568, - "lat": 51.4702509, - "lon": -0.1875132, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW6 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9273433569, - "lat": 51.4803957, - "lon": -0.2034858, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "SW6 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9273433570, - "lat": 51.4851862, - "lon": -0.2031036, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SW6 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9274383432, - "lat": 52.2342819, - "lon": -3.1217265, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9274486317, - "lat": 52.3102227, - "lon": -3.1175091, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9274588801, - "lat": 52.3539567, - "lon": -2.9859960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9274794336, - "lat": 50.7329080, - "lon": -3.3291270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "note": "Relocated from B3180 junction", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "EX11 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9274801399, - "lat": 54.4669165, - "lon": -1.5437007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DL2 39D" - } -}, -{ - "type": "node", - "id": 9274827972, - "lat": 51.4591409, - "lon": -2.5236556, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9275768105, - "lat": 52.3890626, - "lon": -3.3271171, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9275819557, - "lat": 52.5521536, - "lon": -2.6381415, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9275831027, - "lat": 52.4617835, - "lon": -2.6197891, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9275995257, - "lat": 52.4844896, - "lon": -2.4739067, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9276005977, - "lat": 52.4918006, - "lon": -2.4388301, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9276249225, - "lat": 51.8214485, - "lon": -1.6983866, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9276269098, - "lat": 51.6978270, - "lon": -1.8276491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9276296292, - "lat": 53.2831735, - "lon": -3.8125760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL31 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9276563284, - "lat": 50.4166549, - "lon": -4.1432867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "526626005845639", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 297D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-16" - } -}, -{ - "type": "node", - "id": 9277296193, - "lat": 52.5544016, - "lon": -0.0331873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "note": "Replaces wall box at Three Horseshoes PH.", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "PE7 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9277842142, - "lat": 50.8167425, - "lon": -0.3518784, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9277842143, - "lat": 50.8161519, - "lon": -0.3590448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9277842144, - "lat": 50.8090093, - "lon": -0.4237871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9277842145, - "lat": 50.8122764, - "lon": -0.4211037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9277842146, - "lat": 50.8275476, - "lon": -0.3988637, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9278304787, - "lat": 51.6484089, - "lon": -1.4531340, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9278465952, - "lat": 54.6144276, - "lon": -2.0074417, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "DL12 229", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9278690442, - "lat": 51.6711331, - "lon": -0.2842896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9279072791, - "lat": 50.2815206, - "lon": -3.7826684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9279072792, - "lat": 50.2850650, - "lon": -3.8839524, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9279072793, - "lat": 50.3153769, - "lon": -3.8393092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TQ7 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9279216770, - "lat": 52.1246658, - "lon": 0.9347507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1239", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9279988174, - "lat": 50.3972314, - "lon": -4.1811824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9279988180, - "lat": 50.3783151, - "lon": -4.1668507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL1 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9279988188, - "lat": 50.3759061, - "lon": -4.1599120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "4759605034076578", - "post_box:type": "pillar", - "ref": "PL1 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-30" - } -}, -{ - "type": "node", - "id": 9280978919, - "lat": 52.7071961, - "lon": -2.7337696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9280979227, - "lat": 52.6982040, - "lon": -3.6436737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "313169333760364", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-08-24" - } -}, -{ - "type": "node", - "id": 9281198216, - "lat": 50.4098629, - "lon": -4.1449476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "246952420774553", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-11-27" - } -}, -{ - "type": "node", - "id": 9283498165, - "lat": 50.3957958, - "lon": -4.1486824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "507825467656059", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL2 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-27" - } -}, -{ - "type": "node", - "id": 9284236603, - "lat": 50.2681403, - "lon": -3.8618363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 50D", - "royal_cypher": "GVIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9284236604, - "lat": 50.2717193, - "lon": -3.8550919, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "fixme": "survey required to confirm location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ7 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9284236605, - "lat": 50.2520829, - "lon": -3.7014662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9284628062, - "lat": 51.3430334, - "lon": -2.4414386, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9285432361, - "lat": 50.6391645, - "lon": -4.1739817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "box mounted on rounded pedestal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9286918959, - "lat": 52.3221127, - "lon": -2.8310823, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9286937525, - "lat": 51.4775666, - "lon": -2.5079798, - "tags": { - "amenity": "post_box", - "mapillary": "1134644353702674", - "post_box:type": "pillar", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 9287202091, - "lat": 50.3799552, - "lon": -4.1517145, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL3 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9287203007, - "lat": 51.7859477, - "lon": -2.1950695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3561145527514261", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-22" - } -}, -{ - "type": "node", - "id": 9288011785, - "lat": 50.2632211, - "lon": -3.8584309, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9288011786, - "lat": 50.3446754, - "lon": -3.7671821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "hedge", - "post_box:type": "wall", - "ref": "TQ7 55", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9288011787, - "lat": 50.2607589, - "lon": -3.8023787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TQ7 60", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9288623348, - "lat": 53.4931197, - "lon": -2.4832792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9288652204, - "lat": 51.6192506, - "lon": -0.0755022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N18 13D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9288652205, - "lat": 51.6181089, - "lon": -0.0727468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "information card missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9288652206, - "lat": 51.6161025, - "lon": -0.0744867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N18 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9288652207, - "lat": 51.6124169, - "lon": -0.0918826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9288652208, - "lat": 51.6129250, - "lon": -0.0861958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9288652209, - "lat": 51.6097690, - "lon": -0.0902023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9288652210, - "lat": 51.6090104, - "lon": -0.0859666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9288652211, - "lat": 51.6105290, - "lon": -0.0820647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 24D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9288652212, - "lat": 51.6086165, - "lon": -0.0675038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N18 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9288652213, - "lat": 51.6099502, - "lon": -0.0617807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9288652214, - "lat": 51.6114970, - "lon": -0.0652139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N18 26;N18 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9288652215, - "lat": 51.6133169, - "lon": -0.0639399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "N18 8", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9288652216, - "lat": 51.6134661, - "lon": -0.0591062, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 9D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9288675717, - "lat": 51.6149918, - "lon": -0.0599065, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 4D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9288675718, - "lat": 51.6168564, - "lon": -0.0636076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 6D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9288675719, - "lat": 51.6179459, - "lon": -0.0576612, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 3D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9288675720, - "lat": 51.6163479, - "lon": -0.0520697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9288675721, - "lat": 51.6140349, - "lon": -0.0537928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "N18 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9288675722, - "lat": 51.6111340, - "lon": -0.0545357, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N18 15D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9288675723, - "lat": 51.6101519, - "lon": -0.0477085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "N18 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9288675724, - "lat": 51.6135027, - "lon": -0.0445114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "N18 10P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9288675725, - "lat": 51.6097659, - "lon": -0.0364765, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "N18 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9288745170, - "lat": 53.4939434, - "lon": -2.5056060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9288921331, - "lat": 51.9277085, - "lon": 0.7007812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO6 344", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9288943375, - "lat": 52.3049180, - "lon": -2.8187211, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9288946104, - "lat": 53.4961749, - "lon": -2.4974324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9288987976, - "lat": 54.9735646, - "lon": -2.1023318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "NE46 178P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9289092730, - "lat": 50.4107753, - "lon": -4.2078091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL12 639D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-20" - } -}, -{ - "type": "node", - "id": 9289136771, - "lat": 50.2380882, - "lon": -3.6614989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 61", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9289136772, - "lat": 50.2482688, - "lon": -3.7202023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9289217732, - "lat": 50.3019390, - "lon": -3.8732423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TQ7 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9289217733, - "lat": 50.3149322, - "lon": -3.9150584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9289217734, - "lat": 50.2987225, - "lon": -3.8107057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9289221150, - "lat": 50.2799666, - "lon": -3.7923293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ7 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9289717546, - "lat": 53.5947415, - "lon": -2.6856067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2063169300749612", - "note": "reference is probably wrong as I surveyed this ref to be a post box at the Brittannia Hotel, Shevington Moor - but there is definiately a box here as I have driven past it many times. Surveyed it and it is WN6 89", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WN6 89", - "royal_cypher": "EIIR", - "survey:date": "2024-04-11" - } -}, -{ - "type": "node", - "id": 9290008864, - "lat": 52.7683119, - "lon": -0.3773829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_c", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9290571643, - "lat": 50.2706625, - "lon": -3.7490997, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9290571644, - "lat": 50.2709599, - "lon": -3.7205405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9290587308, - "lat": 53.4941150, - "lon": -2.4644817, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9290846410, - "lat": 53.5882608, - "lon": -2.6543573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WN6 286", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9290846415, - "lat": 53.5838737, - "lon": -2.6559815, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9291084609, - "lat": 53.3104835, - "lon": -4.6353282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL65 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9291132246, - "lat": 51.1599385, - "lon": 1.3050556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT16 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9291132247, - "lat": 51.1502719, - "lon": 1.2946285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT16 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9291535806, - "lat": 50.2740625, - "lon": -3.6754697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9291535807, - "lat": 50.2731365, - "lon": -3.6944136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9291561846, - "lat": 50.2862214, - "lon": -3.7728501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 88D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9291561847, - "lat": 50.2553521, - "lon": -3.8310901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9291561848, - "lat": 50.2244650, - "lon": -3.7108222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9291573928, - "lat": 50.2864222, - "lon": -3.8465148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TQ7 108", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9292888052, - "lat": 52.1652016, - "lon": 0.7367266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP29 2229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9293283546, - "lat": 50.2827002, - "lon": -3.8929725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9293283547, - "lat": 50.2731951, - "lon": -3.7650355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ7 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9294014184, - "lat": 50.2493195, - "lon": -3.8302785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Survey required to check whether this post box still exists as it is not listed in the Royal Mail database (Nov 2021). It was definitely still there back in 2009 visible in Google Streetview", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ7 99", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9294014185, - "lat": 50.2358574, - "lon": -3.6935303, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9294014186, - "lat": 50.2908858, - "lon": -3.7769006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9294014187, - "lat": 50.2894391, - "lon": -3.7667858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Post box no longer in Royal Mail database in July 2022. It was in place in 2009 (see Google Streetview https://goo.gl/maps/JJWSJ5pUTF18BK3y9) but gone by June 2022 (https://goo.gl/maps/nYcRWbhFPAHytQ7a8)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TQ7 103" - } -}, -{ - "type": "node", - "id": 9294438917, - "lat": 53.2204820, - "lon": -3.8492274, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "LL32 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294438919, - "lat": 53.2075559, - "lon": -3.8547514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "LL32 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9294438920, - "lat": 53.1851838, - "lon": -3.8408207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294438921, - "lat": 53.1893500, - "lon": -3.8432555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL32 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294438922, - "lat": 53.2001946, - "lon": -3.8467182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LL32 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294438923, - "lat": 53.2022813, - "lon": -3.8446301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294501818, - "lat": 53.2695346, - "lon": -3.8445953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294501819, - "lat": 53.2658242, - "lon": -3.8468939, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294521948, - "lat": 53.2771673, - "lon": -3.8400564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL32 15D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9294614670, - "lat": 53.2820343, - "lon": -3.8342481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294614672, - "lat": 53.2752484, - "lon": -3.8504928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL32 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294746689, - "lat": 52.4476391, - "lon": -2.2277466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DY7 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9294817264, - "lat": 50.2910608, - "lon": -3.8745234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9294817265, - "lat": 50.2887466, - "lon": -3.7735264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ7 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9294870425, - "lat": 50.4289439, - "lon": -4.1151505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "227180306082331", - "post_box:type": "pillar", - "ref": "PL6 482D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-10-24" - } -}, -{ - "type": "node", - "id": 9295732246, - "lat": 53.7791348, - "lon": -3.0045782, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY4 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9296514807, - "lat": 50.2842887, - "lon": -3.7718182, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TQ7 110D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9297173956, - "lat": 53.1219800, - "lon": -4.1152236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL55 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9297241592, - "lat": 53.2550481, - "lon": -3.8465105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL32 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9297254257, - "lat": 53.1022314, - "lon": -3.8455170, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9297313708, - "lat": 53.2736478, - "lon": -3.9023672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL34 6D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9297703068, - "lat": 50.2727781, - "lon": -3.6990451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9297703069, - "lat": 50.2745389, - "lon": -3.7691137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TQ7 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9297703070, - "lat": 50.2790225, - "lon": -3.7712278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TQ7 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9297703071, - "lat": 50.2857505, - "lon": -3.7833124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9297703072, - "lat": 50.2792228, - "lon": -3.7781869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TQ7 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-03-02" - } -}, -{ - "type": "node", - "id": 9297736363, - "lat": 53.2772632, - "lon": -3.9044836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "LL34 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9297736364, - "lat": 53.2768936, - "lon": -3.8992627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL34 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9297786949, - "lat": 53.2701377, - "lon": -3.9168969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL34 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9300171036, - "lat": 50.2840874, - "lon": -3.7765987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "meter", - "ref": "TQ7 422", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9300415321, - "lat": 51.4312419, - "lon": -2.4805171, - "tags": { - "amenity": "post_box", - "mapillary": "859494754704929", - "post_box:type": "pillar", - "survey:date": "2021-06-25" - } -}, -{ - "type": "node", - "id": 9300528077, - "lat": 51.4672607, - "lon": -0.4946781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9300984891, - "lat": 52.2568684, - "lon": -0.8347400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NN3 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9301348942, - "lat": 54.7769316, - "lon": -1.7128117, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5026417" - } -}, -{ - "type": "node", - "id": 9301488831, - "lat": 52.7109588, - "lon": -2.8094893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SY3 145D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9301614367, - "lat": 55.8990312, - "lon": -4.3403028, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9301640500, - "lat": 50.3880599, - "lon": -4.1600105, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL2 205D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9306856750, - "lat": 53.5100134, - "lon": -2.6053351, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 56", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9306939566, - "lat": 53.5068657, - "lon": -2.6113713, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 98", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9307400425, - "lat": 50.3863013, - "lon": -4.1426458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "577879030422181", - "post_box:type": "pillar", - "ref": "PL3 55D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-04-16" - } -}, -{ - "type": "node", - "id": 9307401825, - "lat": 50.3890137, - "lon": -4.1380300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "513906320177502", - "post_box:type": "pillar", - "ref": "PL3 231D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 9308295340, - "lat": 50.5957509, - "lon": -3.4475967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX7 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9308295341, - "lat": 50.5844026, - "lon": -3.4698193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX7 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9308295342, - "lat": 50.6030820, - "lon": -3.4840887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX7 175", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9308628928, - "lat": 50.4186677, - "lon": -4.1609993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "675636313456787", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2023-06-06", - "survey:date": "2023-06-06" - } -}, -{ - "type": "node", - "id": 9308628931, - "lat": 50.4192024, - "lon": -4.1559899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "341517921357925", - "post_box:type": "pillar", - "ref": "PL5 293D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 9308631919, - "lat": 50.4223691, - "lon": -4.1649509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "172025085388839", - "post_box:type": "pillar", - "ref": "PL5 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-06" - } -}, -{ - "type": "node", - "id": 9309591818, - "lat": 50.4157641, - "lon": -4.1505586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "246461784190116", - "post_box:type": "pillar", - "ref": "PL5 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-03" - } -}, -{ - "type": "node", - "id": 9310339026, - "lat": 54.3199098, - "lon": -1.6168599, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9310740994, - "lat": 51.7732343, - "lon": 0.1018886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CM20 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9310855718, - "lat": 53.4865557, - "lon": -2.5230162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9311049998, - "lat": 54.6608961, - "lon": -1.2362933, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9311171718, - "lat": 50.4095275, - "lon": -4.1503348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "mapillary": "431855601698082", - "post_box:type": "pillar", - "ref": "PL5 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-04" - } -}, -{ - "type": "node", - "id": 9311174420, - "lat": 50.3665329, - "lon": -4.1675762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "602449347486893", - "post_box:type": "wall", - "ref": "PL1 171D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-04" - } -}, -{ - "type": "node", - "id": 9311178717, - "lat": 50.3678080, - "lon": -4.1670734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3200848450204696", - "post_box:type": "pillar", - "ref": "PL1 334D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 9311211439, - "lat": 51.4738618, - "lon": -0.0825862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SE5 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9311211440, - "lat": 51.4740580, - "lon": -0.0786805, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 51", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9311246223, - "lat": 50.3677538, - "lon": -4.1706323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "703007114090386", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-05" - } -}, -{ - "type": "node", - "id": 9311433137, - "lat": 51.4064666, - "lon": -1.8310391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9311433185, - "lat": 51.4188713, - "lon": -1.8712830, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9311445724, - "lat": 50.1616138, - "lon": -5.0116663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 222D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9311483706, - "lat": 51.9534029, - "lon": 0.3445364, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9311483738, - "lat": 50.7319861, - "lon": -2.9577031, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9311483937, - "lat": 53.2892105, - "lon": -3.0061112, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9311510130, - "lat": 50.5968694, - "lon": -3.4603698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX7 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9311510131, - "lat": 50.6018205, - "lon": -3.4501338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 267", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9311510132, - "lat": 50.5827709, - "lon": -3.4726446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX7 301D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9311510133, - "lat": 50.5848689, - "lon": -3.4637095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX7 601D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9311510134, - "lat": 50.5803695, - "lon": -3.4706840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:45; Su off", - "note": "The old posting suite is still open at the old Post Office which is now a play cafe (Nov 2021)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "EX7 888", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9311873411, - "lat": 55.6954797, - "lon": -3.5701457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9312274443, - "lat": 51.3606769, - "lon": 0.0884073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9312274444, - "lat": 51.3565589, - "lon": 0.0857635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 380D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9312274448, - "lat": 51.3597367, - "lon": 0.0653835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9312274449, - "lat": 51.3626740, - "lon": 0.0593442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9312274451, - "lat": 51.3596734, - "lon": 0.0729024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR6 95", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9312911331, - "lat": 50.3368479, - "lon": -4.5300114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "ref": "PL13 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-05" - } -}, -{ - "type": "node", - "id": 9312912544, - "lat": 52.3440047, - "lon": -2.7293858, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9312926417, - "lat": 50.3360562, - "lon": -4.5244770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "ref": "PL13 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-05" - } -}, -{ - "type": "node", - "id": 9313240536, - "lat": 51.0433282, - "lon": -0.5493003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH14 65", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9315780817, - "lat": 51.2325280, - "lon": 0.4066197, - "tags": { - "addr:housenumber": "ME18 5HE", - "addr:street": "Maidstone Road", - "amenity": "post_box", - "name": "Sunnyside" - } -}, -{ - "type": "node", - "id": 9316460821, - "lat": 50.4063590, - "lon": -4.1573651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "522989966008476", - "post_box:type": "pillar", - "ref": "PL5 260D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-15" - } -}, -{ - "type": "node", - "id": 9316460920, - "lat": 50.4073510, - "lon": -4.1525901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "PL5 303D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-06" - } -}, -{ - "type": "node", - "id": 9316460923, - "lat": 50.4126406, - "lon": -4.1537941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1069008140700434", - "post_box:type": "pillar", - "ref": "PL5 241D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-06-11" - } -}, -{ - "type": "node", - "id": 9316461118, - "lat": 50.4081957, - "lon": -4.1516302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "430420855206087", - "post_box:type": "pillar", - "ref": "PL5 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-06" - } -}, -{ - "type": "node", - "id": 9316484173, - "lat": 53.3938215, - "lon": -2.5998811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9317441136, - "lat": 50.2732671, - "lon": -4.8208726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9318414102, - "lat": 51.1158116, - "lon": -0.4883364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU6 96D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9318414106, - "lat": 51.1269449, - "lon": -0.4909274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU6 78D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9318429565, - "lat": 53.8204364, - "lon": -3.0490507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "FY1 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9318640202, - "lat": 53.3887890, - "lon": -1.9491908, - "tags": { - "amenity": "post_box", - "level": "0", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9319159142, - "lat": 50.2899882, - "lon": -3.7509493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:45; Su off", - "fixme": "next collection says Friday on a Sunday. needs checking againv sometime", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TQ7 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-01-09" - } -}, -{ - "type": "node", - "id": 9319585113, - "lat": 51.7749805, - "lon": 0.6016972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9319680130, - "lat": 50.4111385, - "lon": -4.1029105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "705654784045733", - "post_box:type": "pillar", - "ref": "PL6 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-04" - } -}, -{ - "type": "node", - "id": 9319680631, - "lat": 50.4094167, - "lon": -4.0962933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "PL6 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-07" - } -}, -{ - "type": "node", - "id": 9320298364, - "lat": 53.4949224, - "lon": -2.6377305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 264", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 9320578475, - "lat": 50.4179227, - "lon": -4.1024866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "1075361036430383", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL6 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-19" - } -}, -{ - "type": "node", - "id": 9320972259, - "lat": 53.4413313, - "lon": -1.4450496, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "S35 899", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9321136117, - "lat": 51.4132021, - "lon": -0.9383373, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "mapillary": "681224693288500", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG2 387D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 9321206977, - "lat": 51.4742395, - "lon": -0.3274920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 256", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9321336667, - "lat": 51.4730045, - "lon": -0.3269846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Plate damaged", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9321951758, - "lat": 51.4769558, - "lon": -2.6863988, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BS20 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9322204705, - "lat": 50.7886312, - "lon": -1.9027800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BH22 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9322254670, - "lat": 51.2187868, - "lon": -1.5792644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "last_checked": "2021-12-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9322277509, - "lat": 51.2386380, - "lon": -1.6042694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "last_checked": "2021-12-08", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9322279216, - "lat": 51.2399992, - "lon": -1.6411055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "last_checked": "2021-12-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP11 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9322385921, - "lat": 50.4137855, - "lon": -4.1738138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "483268409967746", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-01-22", - "survey:date": "2022-08-27" - } -}, -{ - "type": "node", - "id": 9322385923, - "lat": 50.4088748, - "lon": -4.1780567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL5 20D", - "survey:date": "2021-12-08" - } -}, -{ - "type": "node", - "id": 9322385924, - "lat": 50.4046501, - "lon": -4.1782202, - "tags": { - "amenity": "post_box", - "ref": "PL5 222D", - "survey:date": "2021-12-08" - } -}, -{ - "type": "node", - "id": 9322386025, - "lat": 50.3981926, - "lon": -4.1566613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "887648541894703", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL2 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2021-12-28", - "survey:date": "2021-12-08" - } -}, -{ - "type": "node", - "id": 9322386320, - "lat": 50.3987435, - "lon": -4.1688561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL2 257D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-08" - } -}, -{ - "type": "node", - "id": 9322474964, - "lat": 50.3698256, - "lon": -4.1590708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL1 30;PL1 3000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-03" - } -}, -{ - "type": "node", - "id": 9324947280, - "lat": 53.9723704, - "lon": -2.8205183, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9325268285, - "lat": 50.9602703, - "lon": -2.3124071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 13:30; Sa 10:45", - "last_checked": "2021-12-09", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT10 105", - "ref:GB:uprn": "10015296292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9325272466, - "lat": 50.9589392, - "lon": -2.3252376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 13:30; Sa 09:00", - "last_checked": "2021-12-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT10 44", - "ref:GB:uprn": "10015378922", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9325749019, - "lat": 50.3694419, - "lon": -4.1733026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL1 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2021-12-09" - } -}, -{ - "type": "node", - "id": 9325860982, - "lat": 52.7320359, - "lon": -0.5950361, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9327328120, - "lat": 51.4991348, - "lon": -0.2494636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 36D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9327352821, - "lat": 51.5031677, - "lon": -0.2472443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 25D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9327352822, - "lat": 51.5015172, - "lon": -0.2492974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 31D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9327389672, - "lat": 51.5129449, - "lon": -0.2285550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9327489425, - "lat": 51.5068354, - "lon": -0.2444656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9327519217, - "lat": 51.4919086, - "lon": -1.0014918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "RG4 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-10" - } -}, -{ - "type": "node", - "id": 9327963658, - "lat": 51.1564992, - "lon": -0.4242101, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "GU6 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9327989428, - "lat": 51.1217246, - "lon": -0.2595037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9327989429, - "lat": 51.1219641, - "lon": -0.2784928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH12 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9328103019, - "lat": 50.3893739, - "lon": -4.0870485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "name": "Inside Sainsbury's", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL3 143", - "royal_cypher": "no", - "survey:date": "2021-12-10" - } -}, -{ - "type": "node", - "id": 9328110120, - "lat": 50.3763822, - "lon": -4.1118885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "637006817511056", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL4 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 9328300062, - "lat": 53.4771271, - "lon": -2.6016837, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 256", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9329374629, - "lat": 53.5048132, - "lon": -2.5926539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 121", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9329509902, - "lat": 51.0336499, - "lon": -0.2588211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 195", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9330877623, - "lat": 50.3368333, - "lon": -4.1207347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "145102731020455", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 675", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-29" - } -}, -{ - "type": "node", - "id": 9330926230, - "lat": 50.3201940, - "lon": -4.1128805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 728D", - "royal_cypher": "EIIR", - "survey:date": "2021-12-11" - } -}, -{ - "type": "node", - "id": 9330926232, - "lat": 50.3217287, - "lon": -4.1141756, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "9am s 7am", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 676D", - "royal_cypher": "EIIR", - "survey:date": "2021-12-11" - } -}, -{ - "type": "node", - "id": 9330928925, - "lat": 50.3530041, - "lon": -4.1131834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL9 670", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2024-05-04" - } -}, -{ - "type": "node", - "id": 9330929220, - "lat": 50.3563544, - "lon": -4.1188075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "469392378436080", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 671D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-05-24" - } -}, -{ - "type": "node", - "id": 9330999169, - "lat": 50.2624314, - "lon": -4.7859966, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL26 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9331744860, - "lat": 50.9708900, - "lon": -0.3027838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9332173566, - "lat": 53.4697283, - "lon": -1.1986399, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9332173574, - "lat": 53.4779255, - "lon": -1.2006493, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9332173580, - "lat": 53.4795873, - "lon": -1.1930844, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9332437307, - "lat": 56.2182113, - "lon": -2.9005962, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 217D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9332437308, - "lat": 56.2203752, - "lon": -2.9298550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 189", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9332437309, - "lat": 56.2161043, - "lon": -2.9479973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 169D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9332475434, - "lat": 56.1927076, - "lon": -2.8218739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9332475435, - "lat": 56.1904823, - "lon": -2.8180414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY9 182D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9332475436, - "lat": 56.1904961, - "lon": -2.8255926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 233D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9332475437, - "lat": 56.1883727, - "lon": -2.8352567, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 184D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9332475438, - "lat": 56.1860887, - "lon": -2.8384875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY9 183D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9332518819, - "lat": 56.2152734, - "lon": -2.7251489, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY10 218D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9332518820, - "lat": 56.2201292, - "lon": -2.7091300, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY10 252D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9332704488, - "lat": 53.5133585, - "lon": -1.1887742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9332761602, - "lat": 53.6046165, - "lon": -1.1695253, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9332800515, - "lat": 53.5678148, - "lon": -1.2677267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN5 201", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9333079129, - "lat": 50.5519299, - "lon": -4.1415345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL19 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079130, - "lat": 50.5905828, - "lon": -4.1098373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "note": "Damaged hood over slot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 3", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079131, - "lat": 50.5522817, - "lon": -4.2589527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL19 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079132, - "lat": 50.5699570, - "lon": -4.2285775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL19 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079133, - "lat": 50.5477203, - "lon": -4.1482500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079134, - "lat": 50.5492019, - "lon": -4.1440398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:15; Su off", - "note": "Both apertures are marked \"Stamped Mail Only\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL19 101;PL19 1010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079135, - "lat": 50.5511858, - "lon": -4.1364453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL19 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333079136, - "lat": 50.5425578, - "lon": -4.1509778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "note": "Post box mounted in a brick pillar in a stone wall with a slate cap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "PL19 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9333119109, - "lat": 51.3243319, - "lon": 0.6563212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ME9 21", - "source": "streetlevel imagery;aerial imagery", - "source_1": "survey" - } -}, -{ - "type": "node", - "id": 9334632617, - "lat": 51.8126500, - "lon": -1.4413628, - "tags": { - "addr:postcode": "OX29 6RA", - "addr:street": "Common Road", - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9335770519, - "lat": 50.3860919, - "lon": -4.1582799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "712880336722331", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL2 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2023-02-04", - "survey:date": "2023-02-04" - } -}, -{ - "type": "node", - "id": 9335777422, - "lat": 50.3883365, - "lon": -4.1660328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "ref": "PL2 137", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-12-13" - } -}, -{ - "type": "node", - "id": 9336100202, - "lat": 52.6371469, - "lon": -0.6308726, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9336165581, - "lat": 54.6834935, - "lon": -1.2957146, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9336622762, - "lat": 51.7671381, - "lon": 0.4720028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9336811291, - "lat": 53.4777076, - "lon": -2.6103743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 260", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9337442877, - "lat": 51.4735703, - "lon": -0.0888999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9337442878, - "lat": 51.4774273, - "lon": -0.0916927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 47", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9337442879, - "lat": 51.4782707, - "lon": -0.0848758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE5 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9337486787, - "lat": 51.4756558, - "lon": -0.0635592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "5/mar/23 - box back in use", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE15 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9337726864, - "lat": 53.5716961, - "lon": -2.1733355, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9338503212, - "lat": 50.8392373, - "lon": -0.3196325, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "disused": "yes", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9338555273, - "lat": 52.7525955, - "lon": -0.9703825, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9338575218, - "lat": 50.4072145, - "lon": -4.1384394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2803541246612589", - "note": "9am sat 7am", - "post_box:type": "pillar", - "ref": "PL5 852D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-12" - } -}, -{ - "type": "node", - "id": 9338575319, - "lat": 50.4023732, - "lon": -4.1403533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1545073512526832", - "note": "9am s 7am", - "post_box:type": "pillar", - "ref": "PL5 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-22" - } -}, -{ - "type": "node", - "id": 9338592470, - "lat": 52.7032556, - "lon": -1.0423645, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9338638763, - "lat": 54.2071622, - "lon": -0.8336081, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9338693627, - "lat": 52.7116502, - "lon": -0.9832262, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9338713674, - "lat": 50.3502560, - "lon": -3.5684826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TQ6 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9338767852, - "lat": 53.9996875, - "lon": -2.3533457, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9338781117, - "lat": 50.3966791, - "lon": -4.1406604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "name": "Inside Morrisons", - "note": "6pm sat 1130am", - "ref": "PL3 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-14" - } -}, -{ - "type": "node", - "id": 9340634741, - "lat": 50.8375285, - "lon": -0.3278743, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9341302979, - "lat": 50.4210257, - "lon": -4.1663492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "mapillary": "634591271321223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL5 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-27" - } -}, -{ - "type": "node", - "id": 9341302980, - "lat": 50.4218691, - "lon": -4.1611511, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "391514986034001", - "post_box:type": "pillar", - "ref": "PL5 295D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-05-16" - } -}, -{ - "type": "node", - "id": 9342029721, - "lat": 50.4293286, - "lon": -4.1259719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "mapillary": "338340958062613", - "post_box:type": "pillar", - "ref": "PL6 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-15" - } -}, -{ - "type": "node", - "id": 9342450024, - "lat": 52.2789229, - "lon": -2.7778439, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9344824017, - "lat": 50.3783248, - "lon": -4.1456001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL4 843P", - "royal_cypher": "no", - "survey:date": "2021-12-16" - } -}, -{ - "type": "node", - "id": 9344824021, - "lat": 50.3871894, - "lon": -4.1311452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL3 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-16" - } -}, -{ - "type": "node", - "id": 9344824118, - "lat": 50.3817544, - "lon": -4.1435540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "463724665506200", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL4 227D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-03-15" - } -}, -{ - "type": "node", - "id": 9344849655, - "lat": 54.6326071, - "lon": -1.6496232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "834268277172727", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9344972085, - "lat": 51.7105045, - "lon": -0.9447699, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9345025158, - "lat": 51.7026791, - "lon": -1.1048962, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9345076817, - "lat": 52.0589654, - "lon": -1.4390120, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9347303982, - "lat": 50.4271613, - "lon": -4.1524421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "556653968964162", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL5 570D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2021-10-17" - } -}, -{ - "type": "node", - "id": 9347478376, - "lat": 50.8161605, - "lon": -0.3590254, - "tags": { - "addr:street": "Lyndhurst Road", - "amenity": "post_box", - "brand": "Royal Mail", - "description": "Royal Mail post box" - } -}, -{ - "type": "node", - "id": 9348856642, - "lat": 51.4898403, - "lon": -0.2289101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9349278365, - "lat": 51.6783837, - "lon": 0.0399179, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9350356267, - "lat": 50.9576631, - "lon": -2.9245144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9350391217, - "lat": 50.4348069, - "lon": -4.1090380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "mapillary": "297495845624851", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL6 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-19" - } -}, -{ - "type": "node", - "id": 9350502237, - "lat": 54.8463697, - "lon": -1.5069664, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/3468104" - } -}, -{ - "type": "node", - "id": 9350662991, - "lat": 53.9421369, - "lon": -0.6784160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "wall", - "ref": "YO42 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9350936217, - "lat": 50.3585242, - "lon": -4.2658212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 09:00", - "mapillary": "151315707288075", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 745", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 9351098599, - "lat": 53.1863582, - "lon": -3.4220850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9352475168, - "lat": 56.6199944, - "lon": -3.8640486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH15 20", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9352475169, - "lat": 56.6199988, - "lon": -3.8640375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH15 21", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9353787017, - "lat": 53.0768500, - "lon": -0.8123063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "516291992709997", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NG24 10", - "survey:date": "2020-03-07" - } -}, -{ - "type": "node", - "id": 9353787018, - "lat": 53.0768383, - "lon": -0.8123264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "624792418438401", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NG24 110P", - "survey:date": "2020-03-07" - } -}, -{ - "type": "node", - "id": 9353854920, - "lat": 53.0757881, - "lon": -0.8037642, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9353879419, - "lat": 50.4102296, - "lon": -4.1365343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "337909808375997", - "post_box:type": "pillar", - "ref": "PL5 245D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 9353892436, - "lat": 50.4033089, - "lon": -4.1364123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "610057856978798", - "post_box:type": "pillar", - "ref": "PL5 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-22" - } -}, -{ - "type": "node", - "id": 9354132546, - "lat": 54.6333530, - "lon": -1.5664225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.geograph.org.uk/photo/3412214", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9354287187, - "lat": 50.5242944, - "lon": -4.1244031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 10:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354287188, - "lat": 50.5518204, - "lon": -4.1480447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP10", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354287189, - "lat": 50.5927537, - "lon": -4.2105918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL19 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354287190, - "lat": 50.5368058, - "lon": -4.1370513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL19 19", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354287192, - "lat": 50.5372055, - "lon": -4.1758122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354287193, - "lat": 50.5924092, - "lon": -4.0916748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354287194, - "lat": 50.5556526, - "lon": -4.1318816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL19 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354344969, - "lat": 50.5798007, - "lon": -4.1601835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PL19 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354344970, - "lat": 50.5566328, - "lon": -4.1953712, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 33", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354344971, - "lat": 50.5370470, - "lon": -4.1474586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "PL19 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354380444, - "lat": 50.5363655, - "lon": -4.1217983, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 38", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354380445, - "lat": 50.5813184, - "lon": -4.2280388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 39", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9354380446, - "lat": 50.5473007, - "lon": -4.1310980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9355429697, - "lat": 50.5512454, - "lon": -4.1859742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL19 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9355429698, - "lat": 50.5398574, - "lon": -4.1133890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL19 44", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9355429699, - "lat": 50.5451737, - "lon": -4.0911602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL19 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9355429700, - "lat": 50.5538703, - "lon": -4.2175386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9355916552, - "lat": 50.6268044, - "lon": -3.4056350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9356392519, - "lat": 50.4039871, - "lon": -4.1212986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-21" - } -}, -{ - "type": "node", - "id": 9356439398, - "lat": 54.8423148, - "lon": -1.4965795, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9356502418, - "lat": 50.3953078, - "lon": -4.0930539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 06:30; Sa 11:30", - "mapillary": "1451440815397885", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL6 155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-13" - } -}, -{ - "type": "node", - "id": 9356652717, - "lat": 50.3976135, - "lon": -4.1016261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-21" - } -}, -{ - "type": "node", - "id": 9356664614, - "lat": 50.3843103, - "lon": -4.7762747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL26 127", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356714817, - "lat": 50.4020930, - "lon": -4.1242990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL6 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-12-21" - } -}, -{ - "type": "node", - "id": 9356856329, - "lat": 50.5637237, - "lon": -4.1255867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856330, - "lat": 50.5519722, - "lon": -4.2541540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL19 51", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856331, - "lat": 50.5341792, - "lon": -4.1925120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pillar", - "post_box:type": "lamp", - "ref": "PL19 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856332, - "lat": 50.6039883, - "lon": -4.2874947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "hedge", - "post_box:type": "wall", - "ref": "PL19 53", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856333, - "lat": 50.5203142, - "lon": -4.1867059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:30; Sa 08:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 56", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856334, - "lat": 50.5648015, - "lon": -4.1867884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Post box no longer in Royal Mail database (Dec 2021). Survey showed box painted black and out of use with posting slot sealed. See Google StreetView image (https://goo.gl/maps/F1Krg3YTqC5roC176) so suggest marking as disused", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL19 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856335, - "lat": 50.5218324, - "lon": -4.1484137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 58", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856336, - "lat": 50.5913536, - "lon": -4.2946473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356856337, - "lat": 50.5471239, - "lon": -4.1421884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL19 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356860153, - "lat": 50.6398925, - "lon": -3.4729742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9356948401, - "lat": 52.6783039, - "lon": -1.4544150, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9356954755, - "lat": 52.7703853, - "lon": -1.3694678, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9357032405, - "lat": 54.2306022, - "lon": -0.6525979, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9357538325, - "lat": 51.4674909, - "lon": -2.4899437, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9358703449, - "lat": 53.5367283, - "lon": -2.0959960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9359101435, - "lat": 56.0816996, - "lon": -3.4984270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 56", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9359468962, - "lat": 51.9414955, - "lon": 0.1118093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "post_box:type": "lamp", - "ref": "SG9 49" - } -}, -{ - "type": "node", - "id": 9360617417, - "lat": 50.3881280, - "lon": -4.0541298, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL7 716;PL7 7160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-08-29" - } -}, -{ - "type": "node", - "id": 9362163928, - "lat": 55.8659651, - "lon": -4.2675229, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9362379206, - "lat": 53.8465222, - "lon": -0.8623472, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9362421912, - "lat": 53.8979133, - "lon": -0.8450551, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9362561973, - "lat": 51.6238388, - "lon": -1.4876318, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9362596721, - "lat": 51.5513929, - "lon": -1.6474424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN6 182D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9362872910, - "lat": 51.3439540, - "lon": 0.7646665, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "ME10 133", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 9362872911, - "lat": 51.3654072, - "lon": 0.7432304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "old_ref": "ME10 132", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME10 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-10-27" - } -}, -{ - "type": "node", - "id": 9363950657, - "lat": 52.4938372, - "lon": -2.1552089, - "tags": { - "amenity": "post_box", - "ref": "DY6 121" - } -}, -{ - "type": "node", - "id": 9363954581, - "lat": 54.4987187, - "lon": -5.6466397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT23 452", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9363954582, - "lat": 54.5186934, - "lon": -5.6886176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT23 283", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9363954583, - "lat": 54.4946228, - "lon": -5.6750550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT23 687", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9363954584, - "lat": 54.4806937, - "lon": -5.6494842, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "not visible", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT23 387", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9363954585, - "lat": 54.4727786, - "lon": -5.6759636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT23 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9363958647, - "lat": 54.6465353, - "lon": -5.6260390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT19 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9364198164, - "lat": 51.4458627, - "lon": -3.4474341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF71 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9364379293, - "lat": 51.4819532, - "lon": -3.5733929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "welsh_pedestal", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF35 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9364436420, - "lat": 51.4855841, - "lon": -3.6085816, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF32 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9365037136, - "lat": 57.1663590, - "lon": -2.1681915, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 7SR", - "addr:street": "Lintmill Terrace", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9366179858, - "lat": 54.7769103, - "lon": -1.5464745, - "tags": { - "amenity": "post_box", - "fixme": "Missing ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9366315762, - "lat": 51.5814075, - "lon": -1.6669808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9366322626, - "lat": 51.6418438, - "lon": -1.6113115, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9366336623, - "lat": 51.6124899, - "lon": -1.6476794, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9366356410, - "lat": 51.6420425, - "lon": -1.6598792, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9367378521, - "lat": 50.8011591, - "lon": -4.0547961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9368262769, - "lat": 53.2888150, - "lon": -2.1163883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9368380536, - "lat": 51.0604188, - "lon": -1.6172768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP5 96", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9368562098, - "lat": 50.7367989, - "lon": -1.8297701, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH7 290D", - "ref:GB:uprn": "10015399340", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9368609617, - "lat": 50.8634939, - "lon": -4.0675600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9369099327, - "lat": 57.1679407, - "lon": -2.1418988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9369394621, - "lat": 51.4651356, - "lon": -2.4929792, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9369828967, - "lat": 52.8264609, - "lon": -1.9453359, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9370115805, - "lat": 51.0620721, - "lon": -1.6817612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 312", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9370157491, - "lat": 51.2545608, - "lon": -2.2603818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 16" - } -}, -{ - "type": "node", - "id": 9370559440, - "lat": 56.0879857, - "lon": -3.6021097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 91", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9370559500, - "lat": 56.0874524, - "lon": -3.5791154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 67D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9370559501, - "lat": 56.0854864, - "lon": -3.5784709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 396D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9371066317, - "lat": 50.4113143, - "lon": -4.1415031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "460050565913650", - "post_box:type": "pillar", - "ref": "PL5 255D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-15" - } -}, -{ - "type": "node", - "id": 9372715115, - "lat": 53.5144178, - "lon": -2.4656947, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9373474105, - "lat": 57.1798710, - "lon": -2.1300088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB22 580D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9373546827, - "lat": 57.1768195, - "lon": -2.1255720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB22 778", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9373591948, - "lat": 56.2775578, - "lon": -3.1281658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 302D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9373591949, - "lat": 56.2781736, - "lon": -3.1309900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 298D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9373591950, - "lat": 56.2910620, - "lon": -3.1158393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY15 294D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9373591951, - "lat": 56.2621141, - "lon": -3.1170247, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY15 307", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9373591952, - "lat": 56.2585599, - "lon": -3.1191047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 306D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9373591953, - "lat": 56.2548355, - "lon": -3.1180250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY15 305D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9373696887, - "lat": 51.7528408, - "lon": 0.1184960, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9373963817, - "lat": 50.3942436, - "lon": -4.1383965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL3 194D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-12-28" - } -}, -{ - "type": "node", - "id": 9374007617, - "lat": 50.3951825, - "lon": -4.1333418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1261093604378988", - "post_box:type": "pillar", - "ref": "PL3 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 9374666997, - "lat": 51.1972350, - "lon": -2.9635513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA9 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9374722715, - "lat": 51.1896927, - "lon": -3.0154815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA6 88", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9374856115, - "lat": 53.2933170, - "lon": -2.5060109, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9374904782, - "lat": 53.8472564, - "lon": -0.1841305, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9374905641, - "lat": 51.9569331, - "lon": 0.0851557, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9375739329, - "lat": 51.2343234, - "lon": -2.9562289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA9 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9375904045, - "lat": 53.5160632, - "lon": -2.4746238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9376487563, - "lat": 52.6585559, - "lon": -1.9502879, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9377038910, - "lat": 56.0438456, - "lon": -3.4264499, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "KY11 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9377844006, - "lat": 51.6797535, - "lon": -1.5031064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN7 137" - } -}, -{ - "type": "node", - "id": 9377848478, - "lat": 51.6248051, - "lon": -1.4499484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX12 1149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9377897583, - "lat": 51.5921446, - "lon": -1.4525032, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9377910524, - "lat": 51.6510455, - "lon": -1.5131233, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9377924885, - "lat": 53.9741007, - "lon": -0.7646213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "post_box:type": "wall", - "ref": "YO42 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379388883, - "lat": 53.8563790, - "lon": -2.9824006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9379424482, - "lat": 51.4182556, - "lon": -0.6803666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL5 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379424491, - "lat": 51.4102153, - "lon": -0.6668497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL5 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379424502, - "lat": 51.4111203, - "lon": -0.6779170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL5 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379463125, - "lat": 51.7486949, - "lon": -2.5725484, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL15 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379463133, - "lat": 51.7505953, - "lon": -2.5729028, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GL15 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379716190, - "lat": 53.5144177, - "lon": -2.4657057, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9379896097, - "lat": 55.6097749, - "lon": -4.6671939, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9379921845, - "lat": 57.1877028, - "lon": -2.1176426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB22 566D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9380344717, - "lat": 53.2752801, - "lon": -4.6085474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL65 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9380344718, - "lat": 53.2714594, - "lon": -4.5983975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9380344719, - "lat": 53.2568161, - "lon": -4.5926809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL65 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9380511717, - "lat": 54.4507024, - "lon": -1.2803751, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9380607116, - "lat": 55.5457915, - "lon": -2.2877821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD5 113", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9381499028, - "lat": 53.1453684, - "lon": -4.1727196, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9381554927, - "lat": 51.2886821, - "lon": -2.9459640, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS24 26D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9381624556, - "lat": 51.2842568, - "lon": -2.9537478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS24 1114", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9381637704, - "lat": 51.2798176, - "lon": -2.9331451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS24 57D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9381637705, - "lat": 51.2857951, - "lon": -2.9396877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS24 160D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382057766, - "lat": 53.2817428, - "lon": -4.6293479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL65 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382057767, - "lat": 53.2999896, - "lon": -4.6358831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382057768, - "lat": 53.3067760, - "lon": -4.6323708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL65 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382057769, - "lat": 53.2726054, - "lon": -4.5855496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382141315, - "lat": 51.4703540, - "lon": -0.1978451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382197536, - "lat": 52.9938757, - "lon": -0.8367034, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9382228748, - "lat": 53.2364209, - "lon": -1.7881218, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382270556, - "lat": 51.6066351, - "lon": -0.3856286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 273D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382270557, - "lat": 51.6042511, - "lon": -0.3888862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HA5 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382277164, - "lat": 53.1806748, - "lon": -4.4288521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL62 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382277165, - "lat": 53.2600317, - "lon": -4.5453331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL65 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382277216, - "lat": 53.4126526, - "lon": -4.4512851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL67 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382360507, - "lat": 54.3744686, - "lon": -2.0352622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DL11 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382360508, - "lat": 54.2484417, - "lon": -1.8890506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DL8 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382417971, - "lat": 51.7258477, - "lon": 0.4663064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382441588, - "lat": 51.8281936, - "lon": -2.4185763, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL14 378D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382613118, - "lat": 50.3948715, - "lon": -4.1672041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "293945199367040", - "post_box:type": "pillar", - "ref": "PL2 201D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-12-31" - } -}, -{ - "type": "node", - "id": 9382653571, - "lat": 53.1565301, - "lon": -2.8824759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653572, - "lat": 53.1493648, - "lon": -2.9169074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 464", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653573, - "lat": 53.1356421, - "lon": -2.9253086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653574, - "lat": 53.1263562, - "lon": -2.9061129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH4 324", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9382653575, - "lat": 53.1198920, - "lon": -2.9764545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL12 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653576, - "lat": 53.1270300, - "lon": -3.0280738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL12 203", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382653577, - "lat": 53.1488416, - "lon": -3.0437419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653578, - "lat": 53.1536900, - "lon": -3.0411463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 444", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653579, - "lat": 53.1434942, - "lon": -3.0035815, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH4 220", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9382653581, - "lat": 53.1471616, - "lon": -3.0006067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653582, - "lat": 53.1522942, - "lon": -2.9810172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653583, - "lat": 53.1544313, - "lon": -2.9228184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 488D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653585, - "lat": 53.1693847, - "lon": -2.9127854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 367D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382653586, - "lat": 53.1768504, - "lon": -2.9014194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 134D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382725697, - "lat": 53.1830258, - "lon": -2.8849009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 135", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382725698, - "lat": 53.1799573, - "lon": -2.8821610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 353D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9382725699, - "lat": 53.1769006, - "lon": -2.8854977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH4 118D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9382924770, - "lat": 51.9104639, - "lon": 0.9179268, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9382924984, - "lat": 55.0569455, - "lon": -1.5924973, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382924985, - "lat": 54.9884153, - "lon": -1.8541020, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382924986, - "lat": 54.9963220, - "lon": -1.7745453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9382924994, - "lat": 54.9935614, - "lon": -1.7357938, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9382951520, - "lat": 53.2737442, - "lon": -1.0452724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "colour": "green", - "post_box:type": "lamp", - "ref": "S80 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9383168918, - "lat": 53.3348854, - "lon": -1.9427986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9383771518, - "lat": 51.9647250, - "lon": 1.3449796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1004" - } -}, -{ - "type": "node", - "id": 9383771539, - "lat": 51.9582818, - "lon": 1.3463509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP11 1248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9383865918, - "lat": 50.9527550, - "lon": -4.1404526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "819365772413714", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX38 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-24" - } -}, -{ - "type": "node", - "id": 9384066208, - "lat": 53.1629029, - "lon": -3.6297180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:45; Sa 10:30", - "description": "Wall box mounted in brick pillar", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL16 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9384574728, - "lat": 50.8177654, - "lon": -3.1293866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "EX14 371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9385565812, - "lat": 55.8383802, - "lon": -4.2745466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9385582878, - "lat": 51.2634069, - "lon": -2.9391593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA9 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9385582880, - "lat": 51.2618981, - "lon": -2.9335977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA9 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9385602412, - "lat": 51.3915381, - "lon": -2.2024579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 180D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9385680661, - "lat": 51.2534540, - "lon": -2.9592906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA9 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9385680664, - "lat": 51.2598436, - "lon": -2.9635821, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA9 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9385680665, - "lat": 51.2652086, - "lon": -2.9555435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA9 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9386149018, - "lat": 50.3239344, - "lon": -4.0711658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "417647496666511", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-29" - } -}, -{ - "type": "node", - "id": 9386350660, - "lat": 53.3035089, - "lon": -3.4034278, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9386929351, - "lat": 51.3435954, - "lon": 0.7319772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "ME10 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9387239062, - "lat": 51.1917864, - "lon": -0.4464766, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9387352415, - "lat": 52.6389833, - "lon": -1.8401036, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9387463974, - "lat": 51.7716625, - "lon": -4.4624763, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9387808031, - "lat": 50.6806223, - "lon": -4.2507517, - "tags": { - "access": "private", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9387808119, - "lat": 50.6609868, - "lon": -4.2182379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 218D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9387808578, - "lat": 50.6538070, - "lon": -4.1847132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 212D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9388156836, - "lat": 51.2433288, - "lon": -2.9459569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA9 35", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9388175263, - "lat": 51.2242827, - "lon": -2.9114132, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA9 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9388195525, - "lat": 51.1839911, - "lon": -2.8577006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TA7 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9388383729, - "lat": 51.4384039, - "lon": -2.2627438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9388876825, - "lat": 50.3423807, - "lon": -4.6104138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL23 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-01-03", - "wikimedia_commons": "File:Cottages, Pont - geograph.org.uk - 2300311.jpg" - } -}, -{ - "type": "node", - "id": 9389449537, - "lat": 57.1826560, - "lon": -2.1019372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB22 617D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9389449547, - "lat": 57.1855786, - "lon": -2.1284091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB22 581D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9389451415, - "lat": 54.1185243, - "lon": -2.5152813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "ref": "LA2 157D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9390792308, - "lat": 51.7407352, - "lon": 0.2187734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM5 73", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9391698464, - "lat": 53.4858716, - "lon": -2.6467611, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 7", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9391747553, - "lat": 55.6123168, - "lon": -2.8033494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD1 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9391863486, - "lat": 51.1978844, - "lon": 0.5542323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME17 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9391970680, - "lat": 53.4906715, - "lon": -2.6403566, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN4 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9392489752, - "lat": 51.4581393, - "lon": -0.3625390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW3 21", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9392621871, - "lat": 56.2942526, - "lon": -3.2372391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY14 27D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9392621876, - "lat": 56.2901897, - "lon": -3.2354889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY14 309D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9392742251, - "lat": 50.8213828, - "lon": -3.8191537, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9392767373, - "lat": 50.7278608, - "lon": -3.8317649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9392767374, - "lat": 50.7337943, - "lon": -3.8113191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9392767375, - "lat": 50.7405565, - "lon": -3.7987133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9392767376, - "lat": 50.7374631, - "lon": -3.7862541, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EX6 322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9392767377, - "lat": 50.7341397, - "lon": -3.7793052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX6 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9392948121, - "lat": 53.4877601, - "lon": -0.5346341, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9392955646, - "lat": 51.1475007, - "lon": -2.8664473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA7 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9392955647, - "lat": 51.1510492, - "lon": -2.8650847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TA7 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9393011959, - "lat": 51.1283877, - "lon": -2.8970759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA7 153", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9393087441, - "lat": 51.6478268, - "lon": -3.2797737, - "tags": { - "amenity": "post_box", - "ref": "CF46 105D" - } -}, -{ - "type": "node", - "id": 9394240710, - "lat": 53.8553520, - "lon": -3.0208739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:45; Sa 13:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FY2 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9394845495, - "lat": 50.6410881, - "lon": -3.3946601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 571D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9395536913, - "lat": 53.8473279, - "lon": -1.0515083, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9395620069, - "lat": 51.7471315, - "lon": 0.1776158, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9397207561, - "lat": 50.7284632, - "lon": -3.7207625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 354D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9397596819, - "lat": 50.3808823, - "lon": -4.1708627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "489090082552734", - "post_box:type": "pillar", - "ref": "PL2 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 9397743775, - "lat": 50.9877976, - "lon": -2.9608108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA3 160", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9397743786, - "lat": 50.9925237, - "lon": -2.9584567, - "tags": { - "amenity": "post_box", - "mapillary": "151850586912918", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA3 379", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:position": "Mapillary 2020-04-08", - "survey:date": "2020-04-08" - } -}, -{ - "type": "node", - "id": 9397885918, - "lat": 50.3834824, - "lon": -4.1660901, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "519383379682022", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL2 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-08-07", - "survey:date": "2022-10-02" - } -}, -{ - "type": "node", - "id": 9397991427, - "lat": 52.7665819, - "lon": 0.1963941, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9398003091, - "lat": 52.7058465, - "lon": -0.4029853, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9400405970, - "lat": 50.7376019, - "lon": -3.6920115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX6 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9400405971, - "lat": 50.7364152, - "lon": -3.6822412, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX6 487", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9400405972, - "lat": 50.7348055, - "lon": -3.6811671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 488D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9400442969, - "lat": 51.7260928, - "lon": 0.2017333, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9401024205, - "lat": 51.7519593, - "lon": -0.4724351, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9401024206, - "lat": 51.7519261, - "lon": -0.4724324, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9402146863, - "lat": 51.6765677, - "lon": -0.3781405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9402497684, - "lat": 51.5433307, - "lon": -0.0053221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E20 904", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9402547971, - "lat": 53.2720598, - "lon": -3.7054914, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9402618163, - "lat": 52.8746167, - "lon": 1.4395345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR11 1157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9402626365, - "lat": 50.4092917, - "lon": -4.1633094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL5 263D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9402988915, - "lat": 52.7483983, - "lon": -3.2191451, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403038922, - "lat": 53.0966770, - "lon": -3.2108699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403110624, - "lat": 52.5745967, - "lon": -3.7486507, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9403147325, - "lat": 52.5877185, - "lon": -3.7315832, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9403157659, - "lat": 52.3574364, - "lon": -3.9458796, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403175810, - "lat": 52.1522115, - "lon": -3.4555054, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "233762166333182", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-09-10" - } -}, -{ - "type": "node", - "id": 9403270166, - "lat": 52.8845375, - "lon": -0.5113672, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9403284911, - "lat": 52.9061277, - "lon": -0.4894524, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9403302424, - "lat": 52.8359898, - "lon": -0.6363944, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9403365092, - "lat": 52.8895401, - "lon": -0.4079162, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9403365122, - "lat": 52.8608251, - "lon": -0.4785017, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403399094, - "lat": 52.8900804, - "lon": -0.4524762, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9403431245, - "lat": 52.7904112, - "lon": -0.4923305, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403599343, - "lat": 53.2398767, - "lon": -0.7665790, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403599840, - "lat": 50.3637501, - "lon": -4.1612973, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL1 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-08" - } -}, -{ - "type": "node", - "id": 9403693570, - "lat": 52.9826111, - "lon": -0.6737875, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9403799962, - "lat": 52.9754990, - "lon": -0.7234166, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9404554517, - "lat": 51.4725290, - "lon": -0.9748713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "ref": "RG4 196D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9404557601, - "lat": 53.8065502, - "lon": -0.1515380, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9404705627, - "lat": 53.1443033, - "lon": -0.1455630, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9404726034, - "lat": 53.2731624, - "lon": -0.7454380, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9404750324, - "lat": 53.1109694, - "lon": -0.6458200, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9404755786, - "lat": 53.3475806, - "lon": 0.1001659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9404771100, - "lat": 53.3454736, - "lon": 0.1175899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN11 60" - } -}, -{ - "type": "node", - "id": 9404813615, - "lat": 53.3693088, - "lon": -0.0847479, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9404911569, - "lat": 53.3018542, - "lon": -0.5743185, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9404950999, - "lat": 53.5250766, - "lon": -0.1949829, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9405105928, - "lat": 51.6410995, - "lon": -0.0360259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EN3 206P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9405105929, - "lat": 51.6431225, - "lon": -0.0389331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "EN3 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9405105930, - "lat": 51.6365327, - "lon": -0.0417861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 35D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9405105931, - "lat": 51.6342431, - "lon": -0.0413702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 33D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9405105932, - "lat": 51.6310776, - "lon": -0.0438771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9405105933, - "lat": 51.6280220, - "lon": -0.0472246, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 2D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9405480605, - "lat": 51.5214489, - "lon": -0.4759566, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9405497434, - "lat": 53.1438104, - "lon": -3.3823487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL16 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9405880100, - "lat": 50.3515452, - "lon": -4.0349314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL8 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9405986257, - "lat": 54.5986513, - "lon": -1.4095361, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9406346380, - "lat": 50.7894094, - "lon": -3.2045888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX14 595" - } -}, -{ - "type": "node", - "id": 9406346381, - "lat": 50.7932817, - "lon": -3.2053063, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX14 399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407033498, - "lat": 51.8290774, - "lon": -2.2875180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "pillar", - "ref": "GL2 398", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9407033499, - "lat": 51.8240920, - "lon": -2.2906168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "post_box:type": "lamp", - "ref": "GL2 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407033500, - "lat": 51.8208021, - "lon": -2.2780036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407033501, - "lat": 51.8160533, - "lon": -2.2855777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "post_box:type": "pillar", - "ref": "GL2 265", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9407229623, - "lat": 50.7256533, - "lon": -3.6887721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX6 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9407229624, - "lat": 50.7289820, - "lon": -3.6570055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX6 600D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9407229625, - "lat": 50.7273197, - "lon": -3.6452405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EX6 439", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9407229626, - "lat": 50.7206644, - "lon": -3.6653466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 392D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9407348316, - "lat": 51.8291679, - "lon": -2.3680120, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:type": "lamp", - "ref": "GL2 85" - } -}, -{ - "type": "node", - "id": 9407374117, - "lat": 51.8380247, - "lon": -2.3572480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "pillar", - "ref": "GL2 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374118, - "lat": 51.8676912, - "lon": -2.3315005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374119, - "lat": 51.8756602, - "lon": -2.3467763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "GL2 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374120, - "lat": 51.8769090, - "lon": -2.2964855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 389" - } -}, -{ - "type": "node", - "id": 9407374121, - "lat": 51.8808129, - "lon": -2.2998372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:15", - "post_box:type": "pillar", - "ref": "GL2 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374122, - "lat": 51.8811591, - "lon": -2.2903196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 390" - } -}, -{ - "type": "node", - "id": 9407374123, - "lat": 51.8402399, - "lon": -2.2589722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "GL2 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374124, - "lat": 51.8447197, - "lon": -2.2631315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "GL2 400", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374125, - "lat": 51.8506120, - "lon": -2.2627204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "GL2 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374126, - "lat": 51.8935741, - "lon": -2.2538396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL2 51", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9407374127, - "lat": 51.9080823, - "lon": -2.2293947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "GL2 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374128, - "lat": 51.9017009, - "lon": -2.1971228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL2 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407374129, - "lat": 51.8747811, - "lon": -2.2104036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GL2 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9407375764, - "lat": 51.8705672, - "lon": -2.2580039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GL1 52", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9407491508, - "lat": 51.8273707, - "lon": -2.2790296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "ref": "GL2 333", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9407571574, - "lat": 51.5089505, - "lon": -0.3466715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 142", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9408186643, - "lat": 50.7410215, - "lon": -1.8320900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BH7 84D", - "ref:GB:uprn": "10015409770", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9408365578, - "lat": 51.8447050, - "lon": -2.7705862, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9408467018, - "lat": 50.3995380, - "lon": -4.1493296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "622110019005743", - "post_box:type": "pillar", - "ref": "PL2 197D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-10" - } -}, -{ - "type": "node", - "id": 9408675952, - "lat": 54.6812259, - "lon": -1.7326038, - "tags": { - "amenity": "post_box", - "mapillary": "265651195294058" - } -}, -{ - "type": "node", - "id": 9411276075, - "lat": 55.7737213, - "lon": -4.3278930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "377989663573553", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-04-12" - } -}, -{ - "type": "node", - "id": 9411276076, - "lat": 55.7776266, - "lon": -4.3237733, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G77 889", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9411276077, - "lat": 55.7803483, - "lon": -4.3191359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9411284659, - "lat": 50.9975032, - "lon": -3.1251443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA3 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9411322358, - "lat": 51.0157667, - "lon": -3.1515389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA4 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9411378039, - "lat": 56.1872181, - "lon": -3.0266101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 202", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9411395877, - "lat": 56.2095080, - "lon": -3.0472796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 165", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411395878, - "lat": 56.2075558, - "lon": -3.0430371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 236D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9411395894, - "lat": 56.2058985, - "lon": -3.0430515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 244D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421030, - "lat": 56.1996792, - "lon": -3.0517970, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY8 229D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9411421031, - "lat": 56.1964826, - "lon": -3.0594414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 212D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421032, - "lat": 56.1956646, - "lon": -3.0593817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 228D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421033, - "lat": 56.1927366, - "lon": -3.0556915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 198", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421034, - "lat": 56.2144966, - "lon": -3.0439768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 241D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9411421035, - "lat": 56.2176970, - "lon": -3.0442507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 205D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421036, - "lat": 56.2194219, - "lon": -3.0397877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 210", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421039, - "lat": 56.1855219, - "lon": -3.0541229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 246D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421040, - "lat": 56.1863106, - "lon": -3.0431119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 230D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421041, - "lat": 56.1880167, - "lon": -3.0384581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 226", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421042, - "lat": 56.1918876, - "lon": -3.0347572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 242D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9411421043, - "lat": 56.1891867, - "lon": -3.0301764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY8 170D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421044, - "lat": 56.1907357, - "lon": -3.0258880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 179", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9411421045, - "lat": 56.1903978, - "lon": -3.0180596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 231D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9411421046, - "lat": 56.1874881, - "lon": -3.0181113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY8 249D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9412084111, - "lat": 51.4598701, - "lon": -2.5148263, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9413875832, - "lat": 57.0411426, - "lon": -3.1777941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB35 100", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9414948264, - "lat": 52.2320780, - "lon": 0.7094914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "IP33 2293" - } -}, -{ - "type": "node", - "id": 9415605338, - "lat": 50.4124680, - "lon": -4.1469106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 13:00", - "drive_through": "no", - "mapillary": "467618654734708", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL5 261", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-28" - } -}, -{ - "type": "node", - "id": 9415857117, - "lat": 53.5470749, - "lon": -2.6348727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WN1 1222", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9415857118, - "lat": 53.5470635, - "lon": -2.6348601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "WN1 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9416435717, - "lat": 50.4049417, - "lon": -4.1504680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "mapillary": "1100693700512117", - "post_box:type": "pillar", - "ref": "PL5 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-23" - } -}, -{ - "type": "node", - "id": 9416480517, - "lat": 50.4117036, - "lon": -4.1378130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "359368499726915", - "post_box:type": "pillar", - "ref": "PL5 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-07" - } -}, -{ - "type": "node", - "id": 9416504618, - "lat": 50.4151164, - "lon": -4.1437621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1793641247487495", - "post_box:type": "pillar", - "ref": "PL5 294D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-13" - } -}, -{ - "type": "node", - "id": 9416565422, - "lat": 53.5480010, - "lon": -2.6335237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9416670274, - "lat": 51.5008545, - "lon": -0.9247043, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9417512575, - "lat": 54.9052194, - "lon": -1.5820313, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9419415298, - "lat": 51.5720396, - "lon": -1.1210902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX10 501D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9419564593, - "lat": 50.5471044, - "lon": -3.9968141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL20 536", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9419590938, - "lat": 50.5213403, - "lon": -4.2139133, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9420812323, - "lat": 50.4165008, - "lon": -4.1785193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "987902708483715", - "post_box:type": "pillar", - "ref": "PL5 278D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-15" - } -}, -{ - "type": "node", - "id": 9420812556, - "lat": 51.4980323, - "lon": -3.2396585, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "CF5 268D" - } -}, -{ - "type": "node", - "id": 9420812557, - "lat": 51.4951713, - "lon": -3.2368253, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "CF5 266D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9420812558, - "lat": 51.4909040, - "lon": -3.2402628, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "brand:wikipedia": "en:Post Office Ltd", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "CF5 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9420833718, - "lat": 50.4189038, - "lon": -4.1790537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "mapillary": "827751685301458", - "post_box:type": "pillar", - "ref": "PL5 274", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-07" - } -}, -{ - "type": "node", - "id": 9420857819, - "lat": 50.4212720, - "lon": -4.1764990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "400467678407089", - "post_box:type": "pillar", - "ref": "PL5 272D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source:position": "Mapillary 2021-10-16", - "survey:date": "2023-05-25" - } -}, -{ - "type": "node", - "id": 9420860254, - "lat": 57.4632044, - "lon": -4.1861645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 459", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9420981317, - "lat": 50.4186175, - "lon": -4.1723108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1240301553389658", - "post_box:type": "pillar", - "ref": "PL5 270D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-07" - } -}, -{ - "type": "node", - "id": 9420985830, - "lat": 54.8614214, - "lon": -1.6380973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DH2 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9421075853, - "lat": 50.5435208, - "lon": -4.1439087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PL19 63D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421075854, - "lat": 50.5716045, - "lon": -4.1125336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP5", - "collection_times": "Mo-Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 66", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421114766, - "lat": 51.5623924, - "lon": 0.6741655, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9421121750, - "lat": 51.4391946, - "lon": -0.0535389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 12:00", - "drive_through": "no", - "note": "Inside WH Smiths, so box access depends on opening hours.", - "opening_hours": "Mo-Fr 08:00-17:30; Sa 09:00-17:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "SE23 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9421186947, - "lat": 50.5441439, - "lon": -4.1334851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421197504, - "lat": 53.0929085, - "lon": 0.0049503, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9421271674, - "lat": 51.2004181, - "lon": -1.7838674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SP4 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9421284052, - "lat": 52.5889914, - "lon": 0.3812822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PE38 402" - } -}, -{ - "type": "node", - "id": 9421324013, - "lat": 52.6729493, - "lon": 0.1161668, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9421364600, - "lat": 52.7230270, - "lon": 0.7927905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE32 410", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9421380576, - "lat": 52.8190696, - "lon": 0.6952653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE31 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9421402634, - "lat": 52.7539929, - "lon": 0.8036575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE32 159", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9421505085, - "lat": 50.5928728, - "lon": -4.1637884, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:45; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505086, - "lat": 50.5617816, - "lon": -4.2481637, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505088, - "lat": 50.5341484, - "lon": -4.1817872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505089, - "lat": 50.6065332, - "lon": -4.2792183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Postbox was present in 2009 (https://goo.gl/maps/8xTKL5sz7WGHaeTFA) but removed by Aug 2021 (https://goo.gl/maps/eo6hCBfGrFGAhHdW8). Also not on Royal Mail list (checked Jan 2022) so suggest removing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "PL19 88" - } -}, -{ - "type": "node", - "id": 9421505090, - "lat": 50.5485917, - "lon": -4.1364872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PL19 97D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505091, - "lat": 50.5983045, - "lon": -4.1031457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505092, - "lat": 50.5409372, - "lon": -4.1471961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 100", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505093, - "lat": 50.5460484, - "lon": -4.1365239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421505094, - "lat": 50.5415751, - "lon": -4.1572311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 103", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421508172, - "lat": 50.6021828, - "lon": -4.1155529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "concrete_pillar", - "post_box:type": "wall", - "ref": "PL19 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421508173, - "lat": 50.5451989, - "lon": -4.2315860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL19 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9421508174, - "lat": 50.5520837, - "lon": -4.1424944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL19 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9422608015, - "lat": 55.0047432, - "lon": -1.7174204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9422632019, - "lat": 54.9943813, - "lon": -1.7533957, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE15 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9422632020, - "lat": 54.9984674, - "lon": -1.7286661, - "tags": { - "amenity": "post_box", - "fixme": "Check exact location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9422632027, - "lat": 54.9915415, - "lon": -1.7541257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE15 382", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9422726490, - "lat": 51.4646359, - "lon": -0.9659435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG4 420D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9423035863, - "lat": 53.2329965, - "lon": -3.4426188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1482512029277322", - "note": "This new box replaces LL17 214 which disappeared in 2019. Same location but different reference number.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL17 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 9423052289, - "lat": 51.5841382, - "lon": -0.0597048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9423062439, - "lat": 54.8967009, - "lon": -1.5719527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9423062444, - "lat": 54.8906039, - "lon": -1.5663777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9423062448, - "lat": 54.8911399, - "lon": -1.5606946, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH3 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9423062451, - "lat": 54.8988067, - "lon": -1.5636846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH3 365D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9423062455, - "lat": 54.8935810, - "lon": -1.5607110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "drive_through": "no", - "note": "Parcels and franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DH3 268P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9423393635, - "lat": 51.6486259, - "lon": 0.0508557, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG10 22" - } -}, -{ - "type": "node", - "id": 9423681426, - "lat": 52.8992111, - "lon": -0.0810966, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9423682553, - "lat": 52.9398316, - "lon": -0.5077949, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9423752859, - "lat": 52.9506036, - "lon": -0.4774592, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9424055399, - "lat": 50.4509182, - "lon": -4.1725732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 402D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-18" - } -}, -{ - "type": "node", - "id": 9424055400, - "lat": 50.4707501, - "lon": -4.0855734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL20 405", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9424055401, - "lat": 50.4909231, - "lon": -4.1128780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL20 406", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9424055402, - "lat": 50.4862683, - "lon": -4.0590623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL20 418", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9424064086, - "lat": 54.5747745, - "lon": -1.3100289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9424064092, - "lat": 54.5905837, - "lon": -1.3050787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9424064096, - "lat": 54.5717605, - "lon": -1.3117140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9424064101, - "lat": 54.7604311, - "lon": -1.3355656, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SR8 305;SR8 1305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9424064102, - "lat": 54.7781868, - "lon": -1.3461333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9424064103, - "lat": 54.5792386, - "lon": -1.3108656, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9424064105, - "lat": 54.6080258, - "lon": -1.2985964, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9424064106, - "lat": 54.5685587, - "lon": -1.3129099, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9424228719, - "lat": 51.6310845, - "lon": -0.1752885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9424256132, - "lat": 50.2103871, - "lon": -5.0936714, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9425334281, - "lat": 50.3643823, - "lon": -4.1406650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL1 225D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9425334282, - "lat": 50.3644459, - "lon": -4.1458575, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL1 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9425334283, - "lat": 50.3650179, - "lon": -4.1506889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "mapillary": "520919742431711", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-20" - } -}, -{ - "type": "node", - "id": 9425334288, - "lat": 50.3706932, - "lon": -4.1386565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "post_box:apertures": "2", - "ref": "PL1 841;PL1 8410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9425334290, - "lat": 50.3693603, - "lon": -4.1773522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9425601004, - "lat": 53.3946335, - "lon": -2.5777946, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 90", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9425794104, - "lat": 53.1889780, - "lon": -2.5241364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 170D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9426166963, - "lat": 51.6376052, - "lon": -0.4965223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD3 257D" - } -}, -{ - "type": "node", - "id": 9426426051, - "lat": 53.2680739, - "lon": -2.8996578, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9426580941, - "lat": 52.5296802, - "lon": -0.0348721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE7 268", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9426613617, - "lat": 50.4220888, - "lon": -4.1181010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "5075220262505690", - "post_box:type": "pillar", - "ref": "PL6 467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 9426613719, - "lat": 50.4266195, - "lon": -4.1197990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-23" - } -}, -{ - "type": "node", - "id": 9426676718, - "lat": 50.4339492, - "lon": -4.1113631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL6 613D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-22" - } -}, -{ - "type": "node", - "id": 9426676819, - "lat": 50.4338237, - "lon": -4.1152150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "mapillary": "309377167736617", - "post_box:type": "pillar", - "ref": "PL6 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-17" - } -}, -{ - "type": "node", - "id": 9426847565, - "lat": 50.4710248, - "lon": -4.1057086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL20 429", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9426847566, - "lat": 50.4885245, - "lon": -4.0965949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL20 439", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9426847567, - "lat": 50.4722507, - "lon": -4.1811194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 440D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-18" - } -}, -{ - "type": "node", - "id": 9426847568, - "lat": 50.4681784, - "lon": -4.2036883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 462", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9426901247, - "lat": 50.1978156, - "lon": -5.1428774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR3 151", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 9426901248, - "lat": 50.1950594, - "lon": -5.1409791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR3 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery;local knowledge" - } -}, -{ - "type": "node", - "id": 9426907192, - "lat": 52.4090801, - "lon": -3.1841607, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9427433678, - "lat": 51.4602251, - "lon": -2.5108599, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9429141079, - "lat": 52.4293453, - "lon": 1.5432738, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9429195838, - "lat": 54.1923409, - "lon": -6.3234381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9429452241, - "lat": 52.7491800, - "lon": 0.8657401, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9429542721, - "lat": 50.4111341, - "lon": -4.1595893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-18" - } -}, -{ - "type": "node", - "id": 9429542724, - "lat": 50.4133223, - "lon": -4.1612019, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "480411373113806", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 262D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-18" - } -}, -{ - "type": "node", - "id": 9429872781, - "lat": 51.6468574, - "lon": -0.1869190, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9430327405, - "lat": 50.6973300, - "lon": -3.8919510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9430327406, - "lat": 50.7006640, - "lon": -3.8866604, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9430459973, - "lat": 51.4597951, - "lon": -2.4947710, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9430868077, - "lat": 50.3939798, - "lon": -4.1758231, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-22", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "mapillary": "5318934201452083", - "post_box:type": "pillar", - "ref": "PL2 121", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 9430868078, - "lat": 50.3904412, - "lon": -4.1636720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "965574277705483", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL2 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-08" - } -}, -{ - "type": "node", - "id": 9430868079, - "lat": 50.3856624, - "lon": -4.1646435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL2 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9430919763, - "lat": 50.4060777, - "lon": -4.1967210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "323972652573484", - "post_box:type": "pillar", - "ref": "PL5 306D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-11-27" - } -}, -{ - "type": "node", - "id": 9430919765, - "lat": 50.4047266, - "lon": -4.1933373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 286D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9430919766, - "lat": 50.4054436, - "lon": -4.1871513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-22" - } -}, -{ - "type": "node", - "id": 9430965839, - "lat": 51.6025440, - "lon": -3.3404358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CF37 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9431851627, - "lat": 51.6469656, - "lon": -0.1885463, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9432194527, - "lat": 50.4276446, - "lon": -4.1273423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL6 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-19" - } -}, -{ - "type": "node", - "id": 9432195227, - "lat": 50.4300463, - "lon": -4.1406842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL6 254D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-19" - } -}, -{ - "type": "node", - "id": 9432195425, - "lat": 50.4304209, - "lon": -4.1317897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 174D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-01-19" - } -}, -{ - "type": "node", - "id": 9433320257, - "lat": 51.6039389, - "lon": -0.1437580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N10 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9434433607, - "lat": 50.3837494, - "lon": -4.1798563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL2 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9435169234, - "lat": 50.3968617, - "lon": -4.1788721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435169237, - "lat": 50.4046798, - "lon": -4.1834158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 269D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435170517, - "lat": 50.4100747, - "lon": -4.1806602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 288D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435170627, - "lat": 50.4015165, - "lon": -4.1760368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL5 271D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435170630, - "lat": 50.3980759, - "lon": -4.1775520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435170632, - "lat": 50.4005431, - "lon": -4.1824254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL5 170D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435170719, - "lat": 50.4023546, - "lon": -4.1817876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL5 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435170720, - "lat": 50.4020631, - "lon": -4.1705492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL5 211D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-01-20" - } -}, -{ - "type": "node", - "id": 9435231342, - "lat": 56.2775936, - "lon": -2.8844763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 341", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9435247965, - "lat": 51.6181825, - "lon": -3.9618273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SA1 182D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9435264327, - "lat": 51.6163039, - "lon": -3.9586147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA1 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9435295250, - "lat": 52.1731875, - "lon": -0.6609793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9437075763, - "lat": 51.6113824, - "lon": -0.1656925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N12 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9437507007, - "lat": 53.7538645, - "lon": -2.0044611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9437507008, - "lat": 53.7419160, - "lon": -2.0120214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9438301228, - "lat": 50.3741920, - "lon": -4.1746922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL1 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-21" - } -}, -{ - "type": "node", - "id": 9438302018, - "lat": 50.3708578, - "lon": -4.1716795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1678299399259139", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2023-05-14", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 9438404337, - "lat": 53.3998010, - "lon": -2.5695482, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 98", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9439277638, - "lat": 51.6517256, - "lon": -0.5011513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD3 79D" - } -}, -{ - "type": "node", - "id": 9439860300, - "lat": 51.2623185, - "lon": -1.7975366, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 07:45", - "drive_through": "no", - "mapillary": "470395038057405", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SN9 72", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 9439900534, - "lat": 50.3738661, - "lon": -4.1791602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "PL1 335", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-21" - } -}, -{ - "type": "node", - "id": 9439907935, - "lat": 51.5351880, - "lon": 0.0324073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9440038017, - "lat": 50.3674351, - "lon": -4.1435474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL1 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-22" - } -}, -{ - "type": "node", - "id": 9440058211, - "lat": 51.7128908, - "lon": 0.5920673, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9440237865, - "lat": 50.7163239, - "lon": -3.5066731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "EX2 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9440317748, - "lat": 54.6051351, - "lon": -1.2999270, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9440317757, - "lat": 54.5762823, - "lon": -1.2323312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS1 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9440317760, - "lat": 54.6124462, - "lon": -1.3002704, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9440317780, - "lat": 54.5796340, - "lon": -1.2338726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS2 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9440317788, - "lat": 54.5765479, - "lon": -1.2403643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9440317797, - "lat": 54.5801313, - "lon": -1.2286515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS2 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9440337943, - "lat": 56.1899968, - "lon": -2.8413213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 190D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9440460708, - "lat": 51.3059041, - "lon": -0.2191854, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9440487792, - "lat": 55.9910564, - "lon": -3.9424400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "396552232171958", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK4 94", - "survey:date": "2021-09-18" - } -}, -{ - "type": "node", - "id": 9440489994, - "lat": 56.2103886, - "lon": -2.8273233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 260D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9440489995, - "lat": 56.2146108, - "lon": -2.8189110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY9 414D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9440508729, - "lat": 56.2222936, - "lon": -2.8282498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 173D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9440508731, - "lat": 56.2205660, - "lon": -2.8473144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 187", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9440508732, - "lat": 56.2200064, - "lon": -2.8435634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY9 247D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9440534349, - "lat": 56.0062194, - "lon": -3.9073423, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9440621453, - "lat": 52.9976960, - "lon": -0.4722416, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9440748962, - "lat": 53.1250193, - "lon": -0.3271097, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9440950193, - "lat": 53.0772518, - "lon": -0.6328150, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9440996205, - "lat": 53.1736684, - "lon": 0.0949082, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9441012789, - "lat": 53.4280914, - "lon": -0.1798573, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9441029561, - "lat": 51.6421316, - "lon": -0.2530493, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9441052180, - "lat": 53.5372865, - "lon": -0.5406213, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9441094777, - "lat": 53.2126995, - "lon": -0.1456258, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN9 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9441246148, - "lat": 54.1524748, - "lon": -6.3458139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9442287363, - "lat": 51.3184951, - "lon": 0.2040200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 262", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9442485593, - "lat": 51.5981457, - "lon": -0.0790087, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N17 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9442523437, - "lat": 51.5979609, - "lon": -0.0872341, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N17 22D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9442523438, - "lat": 51.6019893, - "lon": -0.0866442, - "tags": { - "amenity": "post_box", - "note": "information card missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9442523478, - "lat": 51.6053298, - "lon": -0.0709739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "N17 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9442570690, - "lat": 53.2100896, - "lon": -2.9211819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH1 329D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570691, - "lat": 53.2082824, - "lon": -2.9253367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 2004", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570692, - "lat": 53.2082831, - "lon": -2.9253242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570693, - "lat": 53.2088967, - "lon": -2.9295574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 18D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9442570694, - "lat": 53.2085825, - "lon": -2.9349937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 263D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570695, - "lat": 53.2051778, - "lon": -2.9367650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 333D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570696, - "lat": 53.2027342, - "lon": -2.9302317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 467D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570697, - "lat": 53.1996427, - "lon": -2.9264605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CH1 389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570698, - "lat": 53.2030626, - "lon": -2.9179933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 368D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442570699, - "lat": 53.2053208, - "lon": -2.9268704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9442754882, - "lat": 50.3544657, - "lon": -3.7896980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TQ7 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443064734, - "lat": 55.7622844, - "lon": -2.3717285, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9443186976, - "lat": 50.5153501, - "lon": -4.0927611, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 485D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443186977, - "lat": 50.4819147, - "lon": -4.0940709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 497", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443186978, - "lat": 50.4882950, - "lon": -4.0813522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 501", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443186979, - "lat": 50.4721905, - "lon": -4.0760743, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 502", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443186980, - "lat": 50.5133211, - "lon": -4.1112973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 519", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443403859, - "lat": 51.3102194, - "lon": 0.1901452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN14 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443451876, - "lat": 50.4776312, - "lon": -4.0527074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL20 650", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443456656, - "lat": 50.4979728, - "lon": -4.0947509, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 573D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443456657, - "lat": 50.5062670, - "lon": -4.0999371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL20 576D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443456658, - "lat": 50.4861795, - "lon": -4.1896520, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 593", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443456659, - "lat": 50.4504952, - "lon": -4.1789909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 597D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443456660, - "lat": 50.4634762, - "lon": -4.2092079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL20 600D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443456661, - "lat": 50.5006927, - "lon": -4.0648009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 638", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9443956975, - "lat": 54.8796095, - "lon": -1.3627386, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9443956978, - "lat": 54.8524598, - "lon": -1.3667703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443956982, - "lat": 54.8691953, - "lon": -1.3607068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443956983, - "lat": 54.7818037, - "lon": -1.3186279, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9443956985, - "lat": 54.8925690, - "lon": -1.3756558, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9443956987, - "lat": 54.8661591, - "lon": -1.3659338, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SR2 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443956988, - "lat": 54.7848277, - "lon": -1.3535042, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9443956989, - "lat": 54.8364558, - "lon": -1.4670957, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443956993, - "lat": 54.7603062, - "lon": -1.3335063, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SR8 295" - } -}, -{ - "type": "node", - "id": 9443956994, - "lat": 54.8257542, - "lon": -1.4539415, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9443956995, - "lat": 54.8298589, - "lon": -1.3675733, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9443956996, - "lat": 54.8512524, - "lon": -1.4766454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443956998, - "lat": 54.8213109, - "lon": -1.4523370, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443957002, - "lat": 54.8850544, - "lon": -1.3666249, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9443957003, - "lat": 54.8303769, - "lon": -1.4576199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9443957004, - "lat": 54.7880774, - "lon": -1.3293590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9445140951, - "lat": 53.4105818, - "lon": -2.5758089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 250", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9445413474, - "lat": 53.4153420, - "lon": -2.7974922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9445995226, - "lat": 50.3935719, - "lon": -4.1411571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL3 226D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-01-24" - } -}, -{ - "type": "node", - "id": 9445995234, - "lat": 50.3911097, - "lon": -4.1307500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "958942281489171", - "post_box:type": "pillar", - "ref": "PL3 61D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 9445995421, - "lat": 50.3892142, - "lon": -4.1340098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "944553812938723", - "post_box:type": "pillar", - "ref": "PL3 60D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-01-24" - } -}, -{ - "type": "node", - "id": 9446004104, - "lat": 50.4773253, - "lon": -4.1315771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL20 736", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9446004105, - "lat": 50.4776633, - "lon": -4.1015711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL20 738", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9446004106, - "lat": 50.4758389, - "lon": -4.0890007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL20 741", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9446004107, - "lat": 50.5074870, - "lon": -4.0944706, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "PL20 770D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9446203770, - "lat": 58.5989601, - "lon": -3.5433993, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW14 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9446231259, - "lat": 58.6022315, - "lon": -3.5465080, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW14 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9446264339, - "lat": 58.5310301, - "lon": -4.1480902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "KW14 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9446279418, - "lat": 58.4143677, - "lon": -4.1860683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW14 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9446288024, - "lat": 58.5023137, - "lon": -4.3409030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "post_box:type": "lamp", - "ref": "KW14 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9446949705, - "lat": 50.3760029, - "lon": -4.2094326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "398065512143620", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 832D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-06" - } -}, -{ - "type": "node", - "id": 9448206398, - "lat": 52.6974634, - "lon": 1.6917363, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9448206399, - "lat": 52.6782685, - "lon": 1.7051420, - "tags": { - "amenity": "post_box", - "fixme": "Check precise location", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9448574617, - "lat": 51.9697516, - "lon": 1.1843388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP9 1136" - } -}, -{ - "type": "node", - "id": 9448585325, - "lat": 50.4338203, - "lon": -4.1005166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45; Su off", - "drive_through": "no", - "mapillary": "169829868670908", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL6 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-25" - } -}, -{ - "type": "node", - "id": 9448585627, - "lat": 50.4353354, - "lon": -4.0982040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 210D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-25" - } -}, -{ - "type": "node", - "id": 9448587962, - "lat": 52.1440958, - "lon": 1.1434396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9448592768, - "lat": 52.3025809, - "lon": 1.4221685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5519", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9448596447, - "lat": 52.0270244, - "lon": 0.9649272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1049" - } -}, -{ - "type": "node", - "id": 9448611012, - "lat": 52.2271188, - "lon": 1.0683614, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9448799315, - "lat": 51.8128933, - "lon": 0.2082627, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9450623156, - "lat": 52.9386733, - "lon": -2.6612895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "493809915648632", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 9451193600, - "lat": 52.8365721, - "lon": 1.0260469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NR24 2416" - } -}, -{ - "type": "node", - "id": 9451350539, - "lat": 52.1284568, - "lon": 0.7526024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "concrete_pier", - "post_box:type": "lamp", - "ref": "CO10 1066D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9451388915, - "lat": 50.6719409, - "lon": -3.6518173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9451448001, - "lat": 50.6626467, - "lon": -3.6636002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX6 113D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9451448002, - "lat": 50.6534415, - "lon": -3.6522438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9454331317, - "lat": 50.6704689, - "lon": -3.6150831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:15; Sa 08:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX6 440", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9454331318, - "lat": 50.7085875, - "lon": -3.6084212, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX6 454", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9455784596, - "lat": 50.4283998, - "lon": -3.9487384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 587D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9455784597, - "lat": 50.4151087, - "lon": -3.9814709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL21 517", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9455784598, - "lat": 50.4206596, - "lon": -3.9642727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL21 705", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9455784599, - "lat": 50.4135545, - "lon": -3.9665619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 07:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 792", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9455784600, - "lat": 50.4121094, - "lon": -3.9588360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL21 527", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9455792587, - "lat": 51.1968460, - "lon": -2.5896301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "780239203875595", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 9455914134, - "lat": 51.1594695, - "lon": -2.7069220, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9455914138, - "lat": 51.1467205, - "lon": -2.7178956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA6 242D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9455961165, - "lat": 51.6171811, - "lon": -4.2535926, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9456113273, - "lat": 54.7014866, - "lon": -3.2254480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9456784260, - "lat": 53.0853666, - "lon": -2.7008885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9456799836, - "lat": 53.0230658, - "lon": -2.6526577, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9456816418, - "lat": 50.3755212, - "lon": -4.1664161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL1 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-28" - } -}, -{ - "type": "node", - "id": 9456841152, - "lat": 57.5578500, - "lon": -1.8482647, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9456862386, - "lat": 57.5026199, - "lon": -2.0464807, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9458759842, - "lat": 50.8506401, - "lon": -0.2043641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9458759843, - "lat": 50.8485465, - "lon": -0.2039778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9458759844, - "lat": 50.8462495, - "lon": -0.1994038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 135D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9458759845, - "lat": 50.8456632, - "lon": -0.2016944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9458759846, - "lat": 50.8420028, - "lon": -0.2019463, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9458759847, - "lat": 50.8444540, - "lon": -0.1952965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 124", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9458759848, - "lat": 50.8470061, - "lon": -0.1912267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 126", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9458759849, - "lat": 50.8456713, - "lon": -0.1889316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9458759850, - "lat": 50.8475307, - "lon": -0.1852421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 252D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9458759851, - "lat": 50.8486864, - "lon": -0.1814374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9458930909, - "lat": 52.7926829, - "lon": 0.7761811, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9459139149, - "lat": 52.8929366, - "lon": 0.8726641, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9459194063, - "lat": 52.6515397, - "lon": 0.4779582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9459236136, - "lat": 52.1176470, - "lon": 1.0170699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP8 1117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9459247772, - "lat": 52.0927883, - "lon": -4.2254345, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9459318978, - "lat": 51.7605507, - "lon": -4.8477062, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9459362378, - "lat": 50.3209909, - "lon": -4.0999964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 767D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9459362380, - "lat": 50.3285069, - "lon": -4.0904343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "450873676747615", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL9 511D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-01-29" - } -}, -{ - "type": "node", - "id": 9459822161, - "lat": 54.9700360, - "lon": -1.6121134, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30, Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE1 776", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9459822164, - "lat": 54.9874912, - "lon": -1.8717472, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9459822166, - "lat": 54.9868367, - "lon": -1.7006517, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9460241851, - "lat": 50.7001161, - "lon": -3.2959236, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9460506528, - "lat": 54.7814519, - "lon": -6.5445774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9460559884, - "lat": 50.8541422, - "lon": -0.2241971, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 661D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9460559885, - "lat": 50.8542310, - "lon": -0.2283951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 662", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9460559886, - "lat": 50.8519346, - "lon": -0.2319502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 663D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9460559887, - "lat": 50.8466046, - "lon": -0.2223192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN41 665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9460559888, - "lat": 50.8469418, - "lon": -0.2203609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN41 659D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9460559889, - "lat": 50.8329283, - "lon": -0.2138380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BN41 672D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461092356, - "lat": 53.2130329, - "lon": -2.9435443, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092357, - "lat": 53.2223955, - "lon": -2.9585331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 310D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092358, - "lat": 53.2223065, - "lon": -2.9534180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092359, - "lat": 53.2214598, - "lon": -2.9508049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092360, - "lat": 53.2243052, - "lon": -2.9538468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH1 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092361, - "lat": 53.2262479, - "lon": -2.9565211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30; Su off", - "drive_through": "no", - "note": "Priority Post Box. Attached to the wall with no supporting post.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 428", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092362, - "lat": 53.2289894, - "lon": -2.9521630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 258D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092363, - "lat": 53.2346134, - "lon": -2.9450324, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092364, - "lat": 53.2270258, - "lon": -2.9369809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461092365, - "lat": 53.2124879, - "lon": -2.9698949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461243362, - "lat": 51.4402249, - "lon": -0.0958242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9461243363, - "lat": 51.4440143, - "lon": -0.0948752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9461243364, - "lat": 51.4393997, - "lon": -0.0999440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "EVIIR \"open\" cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9461320125, - "lat": 54.5707156, - "lon": -1.2388185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461320128, - "lat": 54.5667557, - "lon": -1.2460078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TS1 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461320138, - "lat": 54.5666199, - "lon": -1.2405403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461320144, - "lat": 54.5700606, - "lon": -1.2504623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461320160, - "lat": 54.5713855, - "lon": -1.2459771, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461320162, - "lat": 54.6142851, - "lon": -1.2911562, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9461320184, - "lat": 54.8664683, - "lon": -1.4454321, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9461320185, - "lat": 54.5669053, - "lon": -1.2538054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 217D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461320192, - "lat": 54.5674991, - "lon": -1.2489262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS1 198", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461728896, - "lat": 50.3925993, - "lon": -3.9387389, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL21 307", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9461728897, - "lat": 50.3871380, - "lon": -3.9191518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 327D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9461728898, - "lat": 50.3483518, - "lon": -3.8829600, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9461728899, - "lat": 50.3509152, - "lon": -3.8862050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL21 456", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9461728900, - "lat": 50.3858681, - "lon": -3.9479570, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CPR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "Looks like a very early narrow 1850's Victorian wall box with working flap", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 457", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-25" - } -}, -{ - "type": "node", - "id": 9461728902, - "lat": 50.3943136, - "lon": -3.9235901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL21 465D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9461728903, - "lat": 50.3987161, - "lon": -3.8771920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 476", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9461728904, - "lat": 50.3393621, - "lon": -3.8640871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 488", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9461733736, - "lat": 50.8311126, - "lon": -0.1946120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 177", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461733737, - "lat": 50.8341209, - "lon": -0.1925587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15, Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 103", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461733738, - "lat": 50.8356074, - "lon": -0.1958941, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BN3 359D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461733739, - "lat": 50.8379663, - "lon": -0.2012044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9461733740, - "lat": 50.8405244, - "lon": -0.1945635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461733741, - "lat": 50.8386220, - "lon": -0.1871518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 330", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461733742, - "lat": 50.8414852, - "lon": -0.1784283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN3 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9461861832, - "lat": 53.7454990, - "lon": -0.3442656, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9461946802, - "lat": 54.1716978, - "lon": -6.3352211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT34 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9463416423, - "lat": 53.7428206, - "lon": -2.0090136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 291D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9463583474, - "lat": 51.7762490, - "lon": -2.6965294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP25 431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9463591648, - "lat": 53.4190023, - "lon": -2.5232990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 309", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9463647873, - "lat": 51.5382640, - "lon": -3.4389567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 142", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9463674488, - "lat": 51.6372797, - "lon": -2.9878008, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9463675944, - "lat": 51.6087120, - "lon": -2.8659738, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9463749731, - "lat": 51.4213039, - "lon": -3.4149952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF62 85D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9464123528, - "lat": 52.2817360, - "lon": 0.0581022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB24 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9464182979, - "lat": 54.8680307, - "lon": -5.0134799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG9 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9464558639, - "lat": 56.0838348, - "lon": -3.5202845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 157", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9464593482, - "lat": 56.0855854, - "lon": -3.5680478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KY12 111", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9464593483, - "lat": 56.0844188, - "lon": -3.5604872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KY12 178", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9464628030, - "lat": 56.0841387, - "lon": -3.5397634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KY12 112", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9464689311, - "lat": 53.3062407, - "lon": -2.3740302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA16 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9464728453, - "lat": 52.5103068, - "lon": -0.8308472, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9464737715, - "lat": 53.0370816, - "lon": -1.8973010, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9464769896, - "lat": 52.9475074, - "lon": -2.3492680, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9466296201, - "lat": 53.7096054, - "lon": -2.2851633, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9467317803, - "lat": 50.8172798, - "lon": 0.3269841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BN24 979D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9467317809, - "lat": 50.8187270, - "lon": 0.3203791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN24 977D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9467317810, - "lat": 50.8172163, - "lon": 0.3071116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN24 975", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9467317816, - "lat": 50.8182406, - "lon": 0.3148437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN24 976D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9467317817, - "lat": 50.8268491, - "lon": 0.2973859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN24 974", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9467317828, - "lat": 50.8167795, - "lon": 0.2942625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN24 994D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9467318318, - "lat": 50.3955036, - "lon": -4.1707059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "165021546543353", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 9467349619, - "lat": 50.4086484, - "lon": -4.1724210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 259D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-01" - } -}, -{ - "type": "node", - "id": 9468533677, - "lat": 51.1179508, - "lon": -2.7446012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA16 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9468533689, - "lat": 51.1140419, - "lon": -2.7446348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9468533690, - "lat": 51.1159615, - "lon": -2.7407455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9468533691, - "lat": 51.1206816, - "lon": -2.7410969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA16 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9469265235, - "lat": 53.5415871, - "lon": -2.2913103, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9470097961, - "lat": 50.8081255, - "lon": 0.3020047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 877D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470097962, - "lat": 50.8077484, - "lon": 0.3090126, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 886D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470118545, - "lat": 50.8085179, - "lon": 0.2949431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 892", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9470118547, - "lat": 50.8053499, - "lon": 0.2998723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 883", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470118559, - "lat": 50.8020428, - "lon": 0.2997181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 880D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470118560, - "lat": 50.8056055, - "lon": 0.2937991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 884D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470118563, - "lat": 50.8117288, - "lon": 0.2868918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 1153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470118564, - "lat": 50.8114839, - "lon": 0.2925365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 887D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470118578, - "lat": 50.8100806, - "lon": 0.2993144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 885D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9470120803, - "lat": 50.3748171, - "lon": -3.9128296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 506", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9470120804, - "lat": 50.4021848, - "lon": -3.8755501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 512", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9470120805, - "lat": 50.3863058, - "lon": -3.9647191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "PL21 515", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9470120806, - "lat": 50.3730147, - "lon": -3.8845526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL21 516", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9470167018, - "lat": 50.3905320, - "lon": -3.9003095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 537", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9471115305, - "lat": 50.8953042, - "lon": 0.0896290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BN8 549D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9471562434, - "lat": 52.5319764, - "lon": -1.4605291, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV10 143D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9472872783, - "lat": 50.3883236, - "lon": -3.8870048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL21 541D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9472872784, - "lat": 50.3877890, - "lon": -3.9626902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL21 822;PL21 8220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9472872785, - "lat": 50.3878149, - "lon": -3.9627156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL21 551", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9472909740, - "lat": 50.4136417, - "lon": -4.1040868, - "tags": { - "amenity": "post_box", - "check_date": "2024-08-13", - "check_date:collection_times": "2024-08-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 331D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9472910319, - "lat": 50.4075060, - "lon": -4.1003128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 313D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-03" - } -}, -{ - "type": "node", - "id": 9472911818, - "lat": 50.4158799, - "lon": -4.0986376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "mapillary": "554886682480803", - "post_box:type": "pillar", - "ref": "PL6 283", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-03" - } -}, -{ - "type": "node", - "id": 9473017482, - "lat": 53.3203075, - "lon": -1.9193732, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9473791340, - "lat": 51.1226690, - "lon": -2.7469414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 47D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9473791341, - "lat": 51.1206883, - "lon": -2.7498114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9476410084, - "lat": 54.8017644, - "lon": -1.5789845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH1 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422504, - "lat": 51.3446821, - "lon": -0.2545734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 135D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422505, - "lat": 51.3460358, - "lon": -0.2576762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422506, - "lat": 51.3468677, - "lon": -0.2504378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 165", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422507, - "lat": 51.3536023, - "lon": -0.2455937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT17 158D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422508, - "lat": 51.3525992, - "lon": -0.2508109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "KT17 24D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422509, - "lat": 51.3479461, - "lon": -0.2661231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422510, - "lat": 51.3462424, - "lon": -0.2708216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422511, - "lat": 51.3440443, - "lon": -0.2724438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422512, - "lat": 51.3405646, - "lon": -0.2717271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 144D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422513, - "lat": 51.3402054, - "lon": -0.2795505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KT19 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422514, - "lat": 51.3360996, - "lon": -0.2694139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 190D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422515, - "lat": 51.3363972, - "lon": -0.2671952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 70D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476422516, - "lat": 51.3336597, - "lon": -0.2758512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 166D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476426017, - "lat": 51.3406082, - "lon": -0.2684779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476426018, - "lat": 51.3389969, - "lon": -0.2664931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT19 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9476976989, - "lat": 50.3879818, - "lon": -3.9249010, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL21 601D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9476976990, - "lat": 50.3665890, - "lon": -3.9367589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 602", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9476976991, - "lat": 50.3490646, - "lon": -3.8869667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 643", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9476976992, - "lat": 50.3616105, - "lon": -3.9171948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL21 646", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9477261717, - "lat": 50.4157557, - "lon": -4.1220384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-03" - } -}, -{ - "type": "node", - "id": 9477322820, - "lat": 50.3966092, - "lon": -4.1353872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL3 228D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-04" - } -}, -{ - "type": "node", - "id": 9480612083, - "lat": 51.5858620, - "lon": 0.7059006, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SS4 360" - } -}, -{ - "type": "node", - "id": 9481329872, - "lat": 56.7125238, - "lon": -2.8595163, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9481369742, - "lat": 50.4025508, - "lon": -4.1914225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL5 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-06-09" - } -}, -{ - "type": "node", - "id": 9481369746, - "lat": 50.4034753, - "lon": -4.1974845, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "539041687906128", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL5 285D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-08" - } -}, -{ - "type": "node", - "id": 9481369871, - "lat": 50.4048570, - "lon": -4.2013590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL5 282D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 9481474822, - "lat": 50.1682254, - "lon": -5.2525021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR13 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9481521399, - "lat": 50.4971305, - "lon": -4.8267222, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9481524796, - "lat": 51.5931159, - "lon": -0.0694647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "N17 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9481667235, - "lat": 50.5755023, - "lon": -4.3161491, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9481714289, - "lat": 50.5635633, - "lon": -4.4411935, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9481744972, - "lat": 50.4981876, - "lon": -4.9969166, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9481753091, - "lat": 50.4585202, - "lon": -4.3774471, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9481770739, - "lat": 50.5118992, - "lon": -4.2255071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL18 90", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9481803810, - "lat": 50.6837301, - "lon": -4.5680101, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9481820325, - "lat": 50.3977620, - "lon": -4.1886398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL5 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 9481982821, - "lat": 50.4009879, - "lon": -4.1981706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL5 233D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 9481982824, - "lat": 50.4007083, - "lon": -4.1928349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL5 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 9481982827, - "lat": 50.3954644, - "lon": -4.1929455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "200660735672738", - "post_box:type": "lamp", - "ref": "PL5 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-10-24", - "survey:date": "2022-10-24" - } -}, -{ - "type": "node", - "id": 9481986929, - "lat": 50.3513888, - "lon": -4.5679632, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9481990317, - "lat": 50.3996579, - "lon": -4.1958098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL5 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-05" - } -}, -{ - "type": "node", - "id": 9482064809, - "lat": 50.7730268, - "lon": -4.2311257, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9482380016, - "lat": 52.8545827, - "lon": -1.8262245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9482912200, - "lat": 51.1245276, - "lon": -2.7643275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9483259781, - "lat": 54.1364697, - "lon": -1.5232326, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "165305519506592", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HG4 1077", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 9483316864, - "lat": 51.6178679, - "lon": -0.1596706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 27D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9483334749, - "lat": 51.6190668, - "lon": -0.1540084, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9483346076, - "lat": 51.6203191, - "lon": -3.9619239, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9483561027, - "lat": 52.4841204, - "lon": 1.6297410, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9484224264, - "lat": 50.3905800, - "lon": -3.9159700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL21 680D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484224265, - "lat": 50.3885407, - "lon": -3.9212653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PL21 706", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484224266, - "lat": 50.3885408, - "lon": -3.9212695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PL21 7060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484224268, - "lat": 50.3502689, - "lon": -3.8696235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 749D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484245168, - "lat": 50.3884438, - "lon": -3.9285833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL21 771D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484245169, - "lat": 50.4021004, - "lon": -3.9503283, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 10:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL21 781", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484245170, - "lat": 50.3480416, - "lon": -3.8503084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 08:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PL21 782", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9484564226, - "lat": 51.4534198, - "lon": -0.1011594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "SE24 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484564227, - "lat": 51.4556133, - "lon": -0.1031231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 22", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484564228, - "lat": 51.4580298, - "lon": -0.1031249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "SE24 9P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484564229, - "lat": 51.4585293, - "lon": -0.1007638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Pouch", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 13", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484564230, - "lat": 51.4586064, - "lon": -0.0988807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484564231, - "lat": 51.4598399, - "lon": -0.0944689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "missing collection plate on 6th Feb 2022, RM site has ref SE24 17 and collection time https://www.royalmail.com/services-near-you/postbox/130-herne-hill-sdo-se24-9ju/0000SE2417", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484564232, - "lat": 51.4600369, - "lon": -0.0897116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 13", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9484816902, - "lat": 50.9493032, - "lon": -2.7155532, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9484867545, - "lat": 53.4142150, - "lon": -2.5724181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 301", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9484878667, - "lat": 51.8812376, - "lon": 0.1634922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CM23 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9486367333, - "lat": 55.7431840, - "lon": -4.1838553, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9487049013, - "lat": 50.3730371, - "lon": -3.9048698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL21 804", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9487049014, - "lat": 50.3917848, - "lon": -3.9071475, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL21 826", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9487049015, - "lat": 50.3902580, - "lon": -3.9298403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PL21 831D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9487049016, - "lat": 50.3886430, - "lon": -3.9079077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL21 834D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9487115117, - "lat": 50.3875401, - "lon": -3.9394386, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "PL21 836D", - "royal_cypher": "EIIR", - "source": "streetlevel imagery;aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9487115118, - "lat": 50.3971967, - "lon": -3.9716511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 846", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9487115119, - "lat": 50.3931784, - "lon": -3.9330433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL21 847", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-25" - } -}, -{ - "type": "node", - "id": 9487147942, - "lat": 51.1546325, - "lon": -2.7883779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA6 136", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9488081319, - "lat": 50.4249884, - "lon": -4.1395351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "mapillary": "757301731931320", - "post_box:type": "pillar", - "ref": "PL6 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9488085520, - "lat": 50.4254096, - "lon": -4.1449613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "599909137797933", - "post_box:type": "pillar", - "ref": "PL6 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-07" - } -}, -{ - "type": "node", - "id": 9488085539, - "lat": 50.4240401, - "lon": -4.1271512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "ref": "PL6 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-07" - } -}, -{ - "type": "node", - "id": 9488085540, - "lat": 50.4231051, - "lon": -4.1271962, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-07" - } -}, -{ - "type": "node", - "id": 9488090018, - "lat": 50.4230421, - "lon": -4.1412829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-07" - } -}, -{ - "type": "node", - "id": 9488119396, - "lat": 50.7208736, - "lon": -4.0033352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Needs a more recent survey but post box still on Royal Mail list (Feb 2022). Carefully georeferenced from 2007 image https://flic.kr/p/axhkSM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 558D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9488363265, - "lat": 50.8398362, - "lon": -0.2852296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9489680517, - "lat": 50.7128788, - "lon": -2.4691520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 179", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 9490790881, - "lat": 51.1696493, - "lon": -2.7730259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA6 125", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9490790884, - "lat": 51.1708030, - "lon": -2.7880758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "702459578484026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA6 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 9490986433, - "lat": 53.1957124, - "lon": -2.9214527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9490986434, - "lat": 53.1934231, - "lon": -2.9227131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 13:30; Su off", - "drive_through": "yes", - "note": "Priority Post Box. Stamped 2nd Class Mail. This postbox has the latest collection in this area.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "bin", - "ref": "CH1 3477" - } -}, -{ - "type": "node", - "id": 9490986435, - "lat": 53.1934512, - "lon": -2.9227048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "yes", - "note": "Priority Post Box. 2nd Class Meter Mail and parcels.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "bin" - } -}, -{ - "type": "node", - "id": 9490986436, - "lat": 53.1934325, - "lon": -2.9227103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 19:30; Sa 13:30; Su off", - "drive_through": "yes", - "note": "Priority Post Box. Stamped 1st Class Mail.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "bin", - "ref": "CH1 2477P" - } -}, -{ - "type": "node", - "id": 9491017323, - "lat": 50.3803838, - "lon": -4.1781823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL2 185D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-08" - } -}, -{ - "type": "node", - "id": 9491017324, - "lat": 50.3832917, - "lon": -4.1696063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 133D", - "royal_cypher": "EVIIR", - "survey:date": "2022-02-08" - } -}, -{ - "type": "node", - "id": 9491017325, - "lat": 50.3836472, - "lon": -4.1718694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1239601183542200", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL2 126D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-15" - } -}, -{ - "type": "node", - "id": 9491017326, - "lat": 50.3849048, - "lon": -4.1723107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL2 134D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-02-08" - } -}, -{ - "type": "node", - "id": 9492117737, - "lat": 54.1903256, - "lon": -2.9130408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LA11 111D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9494024452, - "lat": 51.6056599, - "lon": -2.9468731, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "covered": "no", - "indoor": "no", - "name": "Ultra Pontem", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9494024459, - "lat": 51.6329784, - "lon": -2.9792204, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "name": "The Lamb Caerleon", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NP18 120", - "support": "ground", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9494024460, - "lat": 51.6312286, - "lon": -2.9755002, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "name": "Ponthir Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NP18 123", - "support": "ground", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9494024461, - "lat": 51.6282845, - "lon": -2.9690788, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "name": "Woodbine Ponthir", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NP18 113", - "support": "ground", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9494128037, - "lat": 50.4004323, - "lon": -4.1261716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 11:30", - "ref": "PL6 318", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-02-09" - } -}, -{ - "type": "node", - "id": 9494608808, - "lat": 51.4458849, - "lon": -2.4688786, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9495267499, - "lat": 51.1820475, - "lon": -0.6214732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU7 14D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9495474767, - "lat": 51.6070157, - "lon": -3.3395376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "phone": "+44 3457 740740", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CF37 78D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9495605857, - "lat": 52.3311464, - "lon": -0.3283988, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9496026739, - "lat": 51.7724597, - "lon": 0.1345662, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9496026769, - "lat": 51.7954165, - "lon": 0.1329731, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9496789628, - "lat": 50.4400107, - "lon": -4.1081250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL6 426D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-10" - } -}, -{ - "type": "node", - "id": 9496789629, - "lat": 50.4412388, - "lon": -4.1081572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL6 425D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-10" - } -}, -{ - "type": "node", - "id": 9496789630, - "lat": 50.4426254, - "lon": -4.1126739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "meter", - "ref": "PL6 11P", - "royal_cypher": "no", - "survey:date": "2022-02-10" - } -}, -{ - "type": "node", - "id": 9496789631, - "lat": 50.4385910, - "lon": -4.1124304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL6 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-10" - } -}, -{ - "type": "node", - "id": 9496795089, - "lat": 51.7415448, - "lon": 0.4998629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CM2 390D" - } -}, -{ - "type": "node", - "id": 9496804091, - "lat": 51.7427359, - "lon": 0.5014965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 18:30; Sa 14:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "priority": "yes", - "ref": "CM2 65" - } -}, -{ - "type": "node", - "id": 9496804092, - "lat": 51.7427525, - "lon": 0.5014268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 18:30; Sa 14:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "parcel_mail_in": "yes", - "priority": "yes", - "ref": "CM2 1001" - } -}, -{ - "type": "node", - "id": 9496907001, - "lat": 50.8946483, - "lon": -2.7519610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9496952612, - "lat": 50.6879116, - "lon": -2.3790392, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9496990228, - "lat": 51.2841398, - "lon": -2.2815325, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9497039838, - "lat": 52.9579254, - "lon": -2.0267020, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9497435277, - "lat": 50.7042845, - "lon": -3.8700826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 147D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9499430090, - "lat": 53.5874805, - "lon": -0.3338346, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN39 314", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9499435649, - "lat": 53.6085654, - "lon": -0.2694417, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-16", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/28YPyynP/DN40-146-D.jpg", - "location": "Chapel Road, Chapel Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN40 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9499441027, - "lat": 53.5318811, - "lon": -0.5385526, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9499465728, - "lat": 53.5622511, - "lon": -0.2918120, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9499478126, - "lat": 50.3886807, - "lon": -4.1799568, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL2 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 9499483219, - "lat": 50.3907277, - "lon": -4.1782437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL2 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 9499530665, - "lat": 53.5453990, - "lon": -2.6324561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WN1 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9499611957, - "lat": 56.7567060, - "lon": -6.0435907, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9499614000, - "lat": 50.3889526, - "lon": -4.1753231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "782968956277303", - "post_box:type": "pillar", - "ref": "PL2 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-26" - } -}, -{ - "type": "node", - "id": 9500390721, - "lat": 51.1397652, - "lon": -2.6904729, - "tags": { - "amenity": "post_box", - "mapillary": "161460996473946", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA6 161", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9500483197, - "lat": 53.2444889, - "lon": -2.5468594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mapillary": "691059511927539", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW8 5", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9500940100, - "lat": 51.0031290, - "lon": -2.1313281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9500940102, - "lat": 51.0031698, - "lon": -2.1396175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9501088343, - "lat": 50.9597778, - "lon": -2.0805941, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9501090884, - "lat": 51.3311593, - "lon": -2.7489310, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9501130709, - "lat": 51.4180838, - "lon": -2.8440663, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9501155723, - "lat": 51.2915792, - "lon": -2.8576147, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9501417252, - "lat": 51.3806815, - "lon": -2.0453759, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9501440868, - "lat": 51.3756220, - "lon": -1.6600876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9501465165, - "lat": 51.3598013, - "lon": -1.8676931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9501763308, - "lat": 50.7377165, - "lon": -4.0028168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "EX20 888", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9501768161, - "lat": 53.7433348, - "lon": -0.3673471, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9501905590, - "lat": 55.8236781, - "lon": -5.4918774, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA29 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9501906373, - "lat": 55.7889873, - "lon": -5.5710790, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PA29 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9501920453, - "lat": 55.8655481, - "lon": -5.3977081, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "PA29 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9501948408, - "lat": 54.2347966, - "lon": -0.5312743, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "YO13 148", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9502390529, - "lat": 51.1395111, - "lon": -2.6625565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "104717415652031", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA6 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-28" - } -}, -{ - "type": "node", - "id": 9502416309, - "lat": 51.1596012, - "lon": -2.6059391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9502434008, - "lat": 51.1631450, - "lon": -2.6451087, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 117D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9502451221, - "lat": 51.1697898, - "lon": -2.6009984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 133D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9502451313, - "lat": 51.1720626, - "lon": -2.6211190, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA4 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9502837012, - "lat": 53.7413262, - "lon": -2.0173419, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HX7 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9502837013, - "lat": 53.7380720, - "lon": -2.0127625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9503169759, - "lat": 53.2289443, - "lon": -2.9292304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 351D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9503169760, - "lat": 53.2304083, - "lon": -2.9199561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 08:00; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9503169762, - "lat": 53.2378162, - "lon": -2.9235594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 07:30; Su off", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH1 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9503169767, - "lat": 53.2393982, - "lon": -2.9499527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "bin", - "ref": "CH1 479D" - } -}, -{ - "type": "node", - "id": 9503346217, - "lat": 50.4323335, - "lon": -4.1508694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "304696811772377", - "post_box:type": "pillar", - "ref": "PL5 490D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 9503346320, - "lat": 50.4343719, - "lon": -4.1524821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:15", - "mapillary": "114071971293102", - "post_box:type": "pillar", - "ref": "PL5 694", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-08-07" - } -}, -{ - "type": "node", - "id": 9503737418, - "lat": 50.7373002, - "lon": -3.9527038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9503759581, - "lat": 56.2432786, - "lon": -4.2128341, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "FK17 59", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9503809728, - "lat": 53.4038094, - "lon": -2.5921778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 304", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9504435695, - "lat": 51.1291669, - "lon": -2.6327196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA6 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9504454709, - "lat": 51.2504573, - "lon": 0.3138177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN11 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9504568060, - "lat": 50.6434965, - "lon": -4.2722416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL16 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9504568061, - "lat": 50.6447590, - "lon": -4.2852453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL16 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9504568062, - "lat": 50.6419519, - "lon": -4.2844580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL16 60D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9504668425, - "lat": 51.5311843, - "lon": -0.0218281, - "tags": { - "access": "private", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "E3 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9505298190, - "lat": 51.2703280, - "lon": 0.2827373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9505298191, - "lat": 51.2446031, - "lon": 0.2791145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "red", - "mapillary": "468227717622728", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN11 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-27" - } -}, -{ - "type": "node", - "id": 9505308306, - "lat": 53.2681862, - "lon": -1.4846227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "post_box:type": "wall", - "ref": "S18 541", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9505567440, - "lat": 51.2592587, - "lon": 0.2945863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9505738532, - "lat": 51.7884500, - "lon": -1.5044484, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9505884735, - "lat": 55.0151918, - "lon": -1.6784151, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE13 287D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9505884738, - "lat": 55.0017203, - "lon": -1.6617527, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9505884739, - "lat": 55.0072214, - "lon": -1.6460797, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9506582664, - "lat": 50.6125689, - "lon": -4.2557651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL16 64D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9506605916, - "lat": 50.6480674, - "lon": -4.2486129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL16 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9506646317, - "lat": 50.7002556, - "lon": -4.2454422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL16 68", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9506646318, - "lat": 50.6154528, - "lon": -4.2170234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL16 105", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9506646319, - "lat": 50.6197135, - "lon": -4.2745405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL16 145D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9506664917, - "lat": 50.6440608, - "lon": -4.3084755, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "PL16 70", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9507333998, - "lat": 51.1129272, - "lon": -2.7060874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA6 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9508207244, - "lat": 51.7396157, - "lon": 0.4738417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9509093030, - "lat": 53.1085941, - "lon": -2.4613902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW1 164D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9509353218, - "lat": 50.3991808, - "lon": -4.1337452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL3 250D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-15" - } -}, -{ - "type": "node", - "id": 9509374917, - "lat": 50.4025353, - "lon": -4.1333644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-15" - } -}, -{ - "type": "node", - "id": 9509375517, - "lat": 50.4052124, - "lon": -4.1330490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 249D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-15" - } -}, -{ - "type": "node", - "id": 9510029202, - "lat": 51.2133306, - "lon": -0.3285351, - "tags": { - "amenity": "post_box", - "brand": "UPS", - "brand:wikidata": "Q155026", - "brand:wikipedia": "en:United Parcel Service", - "drive_through": "no", - "official_name": "United Parcel Service", - "operator": "UPS", - "operator:type": "private", - "operator:wikidata": "Q155026" - } -}, -{ - "type": "node", - "id": 9510200648, - "lat": 51.1789548, - "lon": -2.8079224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9510527868, - "lat": 53.1455179, - "lon": -2.3844459, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "ref": "CW11 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9510918497, - "lat": 51.3506366, - "lon": 0.2563352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN15 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9510918498, - "lat": 51.3441831, - "lon": 0.2633696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9510918499, - "lat": 51.3507899, - "lon": 0.2675834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9510918500, - "lat": 51.3410552, - "lon": 0.2671388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9510918501, - "lat": 51.3295095, - "lon": 0.2594819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "colour": "red", - "fixme": "Check Royal Cypher", - "ref": "TN15 140", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9510918502, - "lat": 51.3354219, - "lon": 0.2498304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "colour": "red", - "ref": "TN15 134", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9510918503, - "lat": 51.3376566, - "lon": 0.2364555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "colour": "red", - "ref": "TN15 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9511506517, - "lat": 51.0570479, - "lon": 0.5739035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN17 199", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9512324228, - "lat": 50.4200333, - "lon": -4.1332444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL6 296D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-09-11" - } -}, -{ - "type": "node", - "id": 9512324377, - "lat": 50.4287441, - "lon": -4.1100884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL6 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-16" - } -}, -{ - "type": "node", - "id": 9512325122, - "lat": 50.4263538, - "lon": -4.1085437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL6 466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-16" - } -}, -{ - "type": "node", - "id": 9512343482, - "lat": 52.6984297, - "lon": 0.3422804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE34 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9513197237, - "lat": 50.4538992, - "lon": -4.0677075, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 696", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-06-19" - } -}, -{ - "type": "node", - "id": 9513197238, - "lat": 50.4494976, - "lon": -4.0542742, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL7 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-06-19" - } -}, -{ - "type": "node", - "id": 9513197239, - "lat": 50.4357349, - "lon": -4.0417284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 808D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9513298917, - "lat": 50.9328874, - "lon": -2.9459002, - "tags": { - "amenity": "post_box", - "mapillary": "822984471651888", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-02-06", - "survey:date": "2021-03-31" - } -}, -{ - "type": "node", - "id": 9513312917, - "lat": 50.8222720, - "lon": -3.1538380, - "tags": { - "amenity": "post_box", - "mapillary": "166987035358972", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-05-06", - "survey:date": "2022-05-23" - } -}, -{ - "type": "node", - "id": 9513317017, - "lat": 50.3619340, - "lon": -4.3701008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 10:00", - "mapillary": "4129168573843057", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 525", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2021-07-08", - "survey:date": "2021-07-08" - } -}, -{ - "type": "node", - "id": 9513348517, - "lat": 51.0026504, - "lon": -3.0822192, - "tags": { - "amenity": "post_box", - "mapillary": "311149163727224", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-02-06", - "survey:date": "2020-05-06" - } -}, -{ - "type": "node", - "id": 9513348518, - "lat": 50.8684904, - "lon": -3.0740502, - "tags": { - "amenity": "post_box", - "mapillary": "807330136888777", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-08-10", - "survey:date": "2020-08-10" - } -}, -{ - "type": "node", - "id": 9513354222, - "lat": 50.5161410, - "lon": -4.2349615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 10:30; Su off", - "drive_through": "no", - "mapillary": "955270302041772", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2021-08-24", - "survey:date": "2021-08-24" - } -}, -{ - "type": "node", - "id": 9514010617, - "lat": 51.3310970, - "lon": -2.6008424, - "tags": { - "amenity": "post_box", - "mapillary": "805883246733792", - "source:position": "Mapillary 2019-04-26", - "survey:date": "2019-04-26" - } -}, -{ - "type": "node", - "id": 9514017617, - "lat": 51.2011227, - "lon": -2.4893086, - "tags": { - "amenity": "post_box", - "mapillary": "1742696285925025", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2021-08-16", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 9514019317, - "lat": 51.3127125, - "lon": -2.6636431, - "tags": { - "amenity": "post_box", - "mapillary": "374820410534118", - "source:position": "Mapillary 2019-04-26", - "survey:date": "2019-04-26" - } -}, -{ - "type": "node", - "id": 9514034917, - "lat": 51.3284930, - "lon": -2.7180060, - "tags": { - "amenity": "post_box", - "mapillary": "109444637888094", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2019-04-26", - "survey:date": "2019-04-26" - } -}, -{ - "type": "node", - "id": 9514066917, - "lat": 51.0859257, - "lon": -2.7429867, - "tags": { - "amenity": "post_box", - "mapillary": "1571074713262563", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-07-28", - "survey:date": "2020-07-28" - } -}, -{ - "type": "node", - "id": 9514070517, - "lat": 50.9251686, - "lon": -2.8177528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 09:00", - "mapillary": "483030066371590", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-04-09", - "survey:date": "2020-07-03" - } -}, -{ - "type": "node", - "id": 9514070518, - "lat": 50.9953357, - "lon": -2.5600367, - "tags": { - "amenity": "post_box", - "mapillary": "1176903019493797", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-03-12", - "survey:date": "2020-03-12" - } -}, -{ - "type": "node", - "id": 9514471430, - "lat": 51.4695904, - "lon": -0.9755021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "description": "In wall on N side of road.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG4 109", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9514929627, - "lat": 54.1733612, - "lon": -6.3413906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9516185342, - "lat": 50.9148519, - "lon": -2.9630942, - "tags": { - "amenity": "post_box", - "mapillary": "1619158378269776", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA19 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9516186305, - "lat": 50.9332204, - "lon": -2.8417760, - "tags": { - "amenity": "post_box", - "mapillary": "526175885430591", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9516202517, - "lat": 50.9286824, - "lon": -2.8569066, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "915567159295157", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 9516207519, - "lat": 50.9127732, - "lon": -2.9269191, - "tags": { - "amenity": "post_box", - "mapillary": "165972438689585", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9516228452, - "lat": 50.9299099, - "lon": -2.9584390, - "tags": { - "amenity": "post_box", - "mapillary": "792593231658606" - } -}, -{ - "type": "node", - "id": 9516390325, - "lat": 53.6992037, - "lon": -1.7793090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9517107401, - "lat": 51.6111342, - "lon": -3.0349000, - "tags": { - "amenity": "post_box", - "mapillary": "2683304368633299", - "post_box:type": "pillar", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 9517323260, - "lat": 51.6894272, - "lon": -0.2446989, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9517420501, - "lat": 51.5866575, - "lon": -3.0370131, - "tags": { - "amenity": "post_box", - "mapillary": "2594437147524530", - "post_box:type": "pillar", - "survey:date": "2020-09-26" - } -}, -{ - "type": "node", - "id": 9517456827, - "lat": 51.5196585, - "lon": -3.1795474, - "tags": { - "amenity": "post_box", - "mapillary": "313967243629751", - "post_box:type": "pillar", - "survey:date": "2020-09-12" - } -}, -{ - "type": "node", - "id": 9518119810, - "lat": 52.1628025, - "lon": -0.3020882, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9518140219, - "lat": 50.4056388, - "lon": -4.1215430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL6 246D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-23" - } -}, -{ - "type": "node", - "id": 9518186507, - "lat": 50.3347596, - "lon": -3.9490969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL8 411", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9518186508, - "lat": 50.3158142, - "lon": -4.0302536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL8 420D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9518240727, - "lat": 51.6070600, - "lon": -3.0350442, - "tags": { - "amenity": "post_box", - "mapillary": "3790633991065790", - "post_box:type": "pillar", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 9519276353, - "lat": 51.0527259, - "lon": -4.1909926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9519348615, - "lat": 51.0514987, - "lon": -4.1933151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9519463551, - "lat": 50.3182962, - "lon": -3.9692226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL8 441", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9519463552, - "lat": 50.3441161, - "lon": -4.0019261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "fixme": "Needs a survey to refine location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL8 447D" - } -}, -{ - "type": "node", - "id": 9519463553, - "lat": 50.3517554, - "lon": -4.0323364, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL8 468D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9519463554, - "lat": 50.3398903, - "lon": -3.9484431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL8 479D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9520349480, - "lat": 53.4895130, - "lon": -2.6494699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 283", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9520404567, - "lat": 52.7177592, - "lon": 0.5048396, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9520437571, - "lat": 52.8427674, - "lon": 1.4453443, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9520455421, - "lat": 52.4061229, - "lon": 1.3791782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP20 7051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9520547634, - "lat": 51.7015181, - "lon": -0.1768565, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9520782620, - "lat": 51.9488189, - "lon": 0.5291905, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9521406317, - "lat": 50.3461653, - "lon": -4.0079187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PL8 495D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9521406318, - "lat": 50.3150889, - "lon": -4.0119012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 522", - "royal_cypher": "VR", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-01-27" - } -}, -{ - "type": "node", - "id": 9521444644, - "lat": 53.7181859, - "lon": -2.1004961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OL14 157D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9521558768, - "lat": 51.4593001, - "lon": -0.1039835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9521837717, - "lat": 50.3761315, - "lon": -4.1823843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL1 857D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-20" - } -}, -{ - "type": "node", - "id": 9521854203, - "lat": 51.3302644, - "lon": -2.1343179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9521892632, - "lat": 51.9047988, - "lon": 0.3345609, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9521962186, - "lat": 50.7643071, - "lon": 0.2065739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN20 703D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9522312371, - "lat": 50.7640087, - "lon": 0.2785373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 731D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9522312405, - "lat": 50.7611181, - "lon": 0.2793910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 732D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9522436366, - "lat": 51.2189650, - "lon": -2.6027778, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9522578948, - "lat": 51.4438072, - "lon": -2.4714014, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9522729956, - "lat": 50.3161131, - "lon": -4.0363163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL8 535D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522729957, - "lat": 50.3137197, - "lon": -4.0443947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL8 574D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522729958, - "lat": 50.3104072, - "lon": -4.0516543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL8 575", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-02-26" - } -}, -{ - "type": "node", - "id": 9522729959, - "lat": 50.3295846, - "lon": -4.0123211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL8 579", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522729960, - "lat": 50.3447830, - "lon": -3.9960254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 586", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522729961, - "lat": 50.3387497, - "lon": -3.9656227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL8 589", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522733290, - "lat": 50.3151721, - "lon": -4.0468213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL8 662D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522733291, - "lat": 50.3516040, - "lon": -4.0460866, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PL8 720D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-04-23" - } -}, -{ - "type": "node", - "id": 9522733292, - "lat": 50.3141123, - "lon": -4.0520654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL8 725D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522733293, - "lat": 50.3486173, - "lon": -3.9979892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL8 735D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522733294, - "lat": 50.3538052, - "lon": -3.9882357, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL8 762", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522733295, - "lat": 50.3111134, - "lon": -4.0379562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL8 774D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522789154, - "lat": 50.6553157, - "lon": -4.0899305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 154D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522789155, - "lat": 50.6608086, - "lon": -4.0882947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "EX20 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522789156, - "lat": 50.6809857, - "lon": -4.0849652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522789157, - "lat": 50.7129262, - "lon": -4.0411294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 121D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522789158, - "lat": 50.7269731, - "lon": -4.0306507, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX20 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9522807975, - "lat": 50.7715863, - "lon": 0.2880967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 860", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9522807976, - "lat": 50.7706553, - "lon": 0.2868911, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 861D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9522807977, - "lat": 50.7663414, - "lon": 0.2875455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 737D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9522834765, - "lat": 50.3352405, - "lon": -4.0446623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 10:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL8 567", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9523034842, - "lat": 53.3981434, - "lon": -2.5875301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA2 54", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9523117903, - "lat": 52.2124115, - "lon": -3.9906917, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9523176186, - "lat": 51.9964104, - "lon": -3.4634557, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9523917622, - "lat": 55.8743449, - "lon": -3.1067239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "SCP8-LC", - "collection_plate:date": "2017-01-20", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "manufacturer": "CARRON CO. FALKIRK", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EH19 25", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9525565491, - "lat": 51.3081585, - "lon": -0.5524453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-02-15" - } -}, -{ - "type": "node", - "id": 9525798024, - "lat": 50.4256023, - "lon": -4.1052940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:type": "pillar", - "ref": "PL6 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-21" - } -}, -{ - "type": "node", - "id": 9525803120, - "lat": 50.4196930, - "lon": -4.0934378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL6 154P", - "royal_cypher": "no", - "survey:date": "2022-02-21" - } -}, -{ - "type": "node", - "id": 9525803121, - "lat": 50.4196744, - "lon": -4.0934699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "post_box:type": "pillar", - "ref": "PL6 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-21" - } -}, -{ - "type": "node", - "id": 9525803517, - "lat": 50.4167635, - "lon": -4.1143458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "PL6 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-21" - } -}, -{ - "type": "node", - "id": 9527270264, - "lat": 51.1921551, - "lon": -0.6018100, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "GU7 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9527453877, - "lat": 53.0021463, - "lon": -1.9201742, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST10 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9528516235, - "lat": 50.3998623, - "lon": -4.1083551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-22" - } -}, -{ - "type": "node", - "id": 9528516241, - "lat": 50.4005023, - "lon": -4.1144544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 239D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-22" - } -}, -{ - "type": "node", - "id": 9528523458, - "lat": 50.5396085, - "lon": -4.2466629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 7", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528523459, - "lat": 50.5286257, - "lon": -4.2404753, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528523460, - "lat": 50.4986948, - "lon": -4.2196738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528523461, - "lat": 50.4974611, - "lon": -4.2098140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528523462, - "lat": 50.4954869, - "lon": -4.2027211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 27", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9528523463, - "lat": 50.5092291, - "lon": -4.2108677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 35", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528523464, - "lat": 50.5165668, - "lon": -4.2456453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "rendered_wall", - "post_box:type": "lamp", - "ref": "PL18 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528537334, - "lat": 55.8242292, - "lon": -4.0525614, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9528582056, - "lat": 50.5253352, - "lon": -4.2564064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "PL18 69", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528582057, - "lat": 50.5030557, - "lon": -4.2164954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 71", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528582058, - "lat": 50.4973357, - "lon": -4.2055041, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL18 84D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528582059, - "lat": 50.4963229, - "lon": -4.2065857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL18 91", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528582061, - "lat": 50.4972716, - "lon": -4.2103167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL18 95", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9528582062, - "lat": 50.5244423, - "lon": -4.2295748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL18 98", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9529763390, - "lat": 50.5119286, - "lon": -4.2195331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "fixme": "Needs a survey to confirm details and refine location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL18 86" - } -}, -{ - "type": "node", - "id": 9530134317, - "lat": 53.0688720, - "lon": -0.8107180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1180147019099464", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source:position": "Mapillary 2017-05-27", - "survey:date": "2019-07-12" - } -}, -{ - "type": "node", - "id": 9530187917, - "lat": 52.5454850, - "lon": -0.1138360, - "tags": { - "amenity": "post_box", - "mapillary": "315412700208825", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "source:position": "Mapillary 2020-08-20", - "survey:date": "2020-08-20" - } -}, -{ - "type": "node", - "id": 9530195217, - "lat": 52.4362380, - "lon": -0.1070680, - "tags": { - "amenity": "post_box", - "mapillary": "221907126048411", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-08-05", - "survey:date": "2020-08-05" - } -}, -{ - "type": "node", - "id": 9530508317, - "lat": 51.5834400, - "lon": -2.9978940, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "mapillary": "279630303864699", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "source:position": "Mapillary 2019-07-07", - "survey:date": "2019-07-07", - "wikidata": "Q29500276" - } -}, -{ - "type": "node", - "id": 9530508717, - "lat": 51.5895620, - "lon": -2.9142144, - "tags": { - "amenity": "post_box", - "mapillary": "1190125928075124", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2019-07-07", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 9530509417, - "lat": 51.6488330, - "lon": -3.0214440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "301896021437473", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source:position": "Mapillary 2020-09-20", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 9530602840, - "lat": 53.3633227, - "lon": -2.5783050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 14", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 9531116522, - "lat": 50.4025025, - "lon": -4.1081979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1745435205646021", - "post_box:type": "pillar", - "ref": "PL6 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-23" - } -}, -{ - "type": "node", - "id": 9531119518, - "lat": 50.4047532, - "lon": -4.1065889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "PL6 320D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-23" - } -}, -{ - "type": "node", - "id": 9531119818, - "lat": 50.4037246, - "lon": -4.1139165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-23" - } -}, -{ - "type": "node", - "id": 9531155286, - "lat": 53.2997297, - "lon": -0.7449484, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9531155834, - "lat": 53.3049829, - "lon": -0.7318846, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9531156329, - "lat": 53.1217390, - "lon": -0.6744043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN6 335" - } -}, -{ - "type": "node", - "id": 9531161703, - "lat": 53.2196077, - "lon": -0.6517990, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9531165711, - "lat": 53.1428384, - "lon": -0.6452771, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9531174529, - "lat": 51.4555544, - "lon": -0.1226600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9531181363, - "lat": 53.3264343, - "lon": -0.7406816, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9531188346, - "lat": 53.3161944, - "lon": -0.5776399, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9531204566, - "lat": 53.2796453, - "lon": -0.7306956, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9531210558, - "lat": 53.3278614, - "lon": -0.5776255, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9531267366, - "lat": 51.4813983, - "lon": -3.2442600, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9531287568, - "lat": 54.2281401, - "lon": -5.9363148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9533214237, - "lat": 51.8569504, - "lon": -2.1915465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9533305840, - "lat": 51.5045192, - "lon": -3.1714330, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9533576719, - "lat": 50.3860392, - "lon": -4.1741332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL2 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-24" - } -}, -{ - "type": "node", - "id": 9533576720, - "lat": 50.3872952, - "lon": -4.1770197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL2 129D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-02-24" - } -}, -{ - "type": "node", - "id": 9533577019, - "lat": 50.3887484, - "lon": -4.1671821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL2 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-24" - } -}, -{ - "type": "node", - "id": 9533577021, - "lat": 50.3869394, - "lon": -4.1702495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "3127642654219014", - "post_box:type": "pillar", - "ref": "PL2 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-05" - } -}, -{ - "type": "node", - "id": 9533578619, - "lat": 50.3986608, - "lon": -4.1801688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL5 119D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-24" - } -}, -{ - "type": "node", - "id": 9533759092, - "lat": 53.3995722, - "lon": -2.5918580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "WA2 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9534485847, - "lat": 50.3784234, - "lon": -4.1245759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "302677475093088", - "post_box:type": "pillar", - "ref": "PL4 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9534485848, - "lat": 50.3782567, - "lon": -4.1307912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "139440791801066", - "post_box:type": "pillar", - "ref": "PL4 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9534485851, - "lat": 50.3711365, - "lon": -4.1329689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "671693904026201", - "post_box:type": "pillar", - "ref": "PL4 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9534485852, - "lat": 50.3788323, - "lon": -4.1060007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "762963157992971", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL4 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-25" - } -}, -{ - "type": "node", - "id": 9534485854, - "lat": 50.3793023, - "lon": -4.1104903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "943658483231671", - "post_box:type": "lamp", - "ref": "PL4 850D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9534485856, - "lat": 50.3785681, - "lon": -4.1176387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "mapillary": "1203123020214593", - "post_box:type": "pillar", - "ref": "PL4 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9534485858, - "lat": 50.3795365, - "lon": -4.1217921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "287410699855604", - "post_box:type": "pillar", - "ref": "PL4 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9534831517, - "lat": 54.1820947, - "lon": -6.3489118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "755926291784227", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source:position": "Mapillary 2020-02-23", - "survey:date": "2020-04-04" - } -}, -{ - "type": "node", - "id": 9535962235, - "lat": 50.4011555, - "lon": -4.0950871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 9535962243, - "lat": 50.4057111, - "lon": -4.0937227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "PL6 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 9535964220, - "lat": 50.4102893, - "lon": -4.0910322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 9535964228, - "lat": 50.4126539, - "lon": -4.0917513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL6 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 9535964230, - "lat": 50.4142323, - "lon": -4.0856729, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "PL6 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-25" - } -}, -{ - "type": "node", - "id": 9536014736, - "lat": 52.5920945, - "lon": -3.8408786, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9536044971, - "lat": 51.6926500, - "lon": -4.8359748, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9536054615, - "lat": 54.3518111, - "lon": -6.2722718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "471825137423090", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9536056402, - "lat": 50.3941117, - "lon": -4.1023906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "674173686921436", - "post_box:type": "pillar", - "ref": "PL3 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9536056403, - "lat": 50.3898296, - "lon": -4.1013760, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "4192492970879082", - "post_box:type": "pillar", - "ref": "PL3 264D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9536056404, - "lat": 50.3888953, - "lon": -4.1099807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "mapillary": "1234031840430339", - "post_box:type": "pillar", - "ref": "PL3 256", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9536056407, - "lat": 50.3849701, - "lon": -4.1037061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "462373958652049", - "post_box:type": "pillar", - "ref": "PL3 277D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9536056408, - "lat": 50.3839714, - "lon": -4.1218648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "623129128931223", - "post_box:type": "lamp", - "ref": "PL3 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9536056409, - "lat": 50.3855620, - "lon": -4.1277334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1373097506487060", - "post_box:type": "pillar", - "ref": "PL3 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9536057818, - "lat": 51.7802281, - "lon": -5.1027133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "SA62 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9536059144, - "lat": 51.6129467, - "lon": -4.9396778, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9536083961, - "lat": 51.3936412, - "lon": -3.4116688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF62 66D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9536986190, - "lat": 53.2255041, - "lon": -2.6278692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ref": "CW8 94", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9537165623, - "lat": 51.2275902, - "lon": 0.1300904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TN14 209", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2021-11-15", - "wikimedia_commons": "File:Cooper’s Corner, postbox № TN14 209 - geograph.org.uk - 2739949.jpg" - } -}, -{ - "type": "node", - "id": 9537165624, - "lat": 51.2300451, - "lon": 0.1398034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "colour": "red", - "ref": "TN14 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9537495957, - "lat": 51.2488044, - "lon": 0.1421547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "red", - "ref": "TN14 211", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9537668520, - "lat": 58.0199424, - "lon": -4.4054924, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "not:operator:wikidata": "Q1783168", - "operator": "Post Office", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9537811901, - "lat": 54.8586860, - "lon": -1.7263186, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9537811911, - "lat": 54.8577886, - "lon": -1.7380472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9537856919, - "lat": 54.9812015, - "lon": -1.4308390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9537856920, - "lat": 54.8267021, - "lon": -1.6295552, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9537856937, - "lat": 54.8625089, - "lon": -1.7200682, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-13", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9537856939, - "lat": 54.8614194, - "lon": -1.7415121, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9537856941, - "lat": 54.8838039, - "lon": -1.7494507, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9537856960, - "lat": 54.8845547, - "lon": -1.7348859, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9537858918, - "lat": 50.3568493, - "lon": -4.7040727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL24 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9537858920, - "lat": 50.3517721, - "lon": -4.6995454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL24 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9537858922, - "lat": 50.3314098, - "lon": -4.6443487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL23 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9537858927, - "lat": 50.3505613, - "lon": -4.6903061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 35D", - "royal_cypher": "VR", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9537858929, - "lat": 50.3590329, - "lon": -4.6929768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9537859319, - "lat": 50.3567017, - "lon": -4.6885441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9538530183, - "lat": 51.4504745, - "lon": -0.0965864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9538530184, - "lat": 51.4554482, - "lon": -0.0988787, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9538530185, - "lat": 51.4549830, - "lon": -0.0943334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9538530186, - "lat": 51.4416434, - "lon": -0.0853934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE21 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9538554638, - "lat": 51.4434545, - "lon": -0.1028993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9538607917, - "lat": 50.3351354, - "lon": -4.6418915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL23 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-26" - } -}, -{ - "type": "node", - "id": 9540343907, - "lat": 51.6153533, - "lon": -0.1517067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 1D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9542768206, - "lat": 51.2780794, - "lon": 0.1238142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45; Su off", - "colour": "red", - "ref": "TN14 180", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9542768207, - "lat": 51.2725203, - "lon": 0.1267506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9542768208, - "lat": 51.2771797, - "lon": 0.1276542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 179", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9542918217, - "lat": 50.4572156, - "lon": -4.1352789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "ref": "PL6 784", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-27" - } -}, -{ - "type": "node", - "id": 9542956863, - "lat": 51.2805233, - "lon": 0.1402430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN14 181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9543051317, - "lat": 50.4423317, - "lon": -4.0779961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "mapillary": "261734716145217", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL6 446", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-02-27" - } -}, -{ - "type": "node", - "id": 9543335217, - "lat": 53.7278080, - "lon": -1.9878414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9543335218, - "lat": 53.7293918, - "lon": -1.9827118, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9543335219, - "lat": 53.7421920, - "lon": -1.9979610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 184D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9543335220, - "lat": 53.7432728, - "lon": -2.0256481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9543335221, - "lat": 53.7420291, - "lon": -2.0226333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9543343974, - "lat": 53.4160189, - "lon": -2.5637100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA2 343", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9543390589, - "lat": 52.4817656, - "lon": -2.5568738, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9543892356, - "lat": 50.4398518, - "lon": -4.0395201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL7 520D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-06-19" - } -}, -{ - "type": "node", - "id": 9543892357, - "lat": 50.4388710, - "lon": -4.0324050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL7 463D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9543892358, - "lat": 50.4348371, - "lon": -4.0154065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 813", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9543892359, - "lat": 50.4315231, - "lon": -4.0206229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "PL7 592D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9543979138, - "lat": 54.2520936, - "lon": -0.5561044, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9544103757, - "lat": 53.4075330, - "lon": -2.5558308, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA2 143", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9544696693, - "lat": 53.0330406, - "lon": -1.4057390, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele": "109", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "DE5 1396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9545244503, - "lat": 51.1931634, - "lon": -0.5986845, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GU7 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9545961080, - "lat": 50.9031597, - "lon": -3.4713303, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9546042373, - "lat": 51.4609811, - "lon": -0.1217909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9546146925, - "lat": 50.3900572, - "lon": -4.1198754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "PL3 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-02-28" - } -}, -{ - "type": "node", - "id": 9546146930, - "lat": 50.3906846, - "lon": -4.1232386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 191D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-28" - } -}, -{ - "type": "node", - "id": 9546147423, - "lat": 50.3886986, - "lon": -4.1250861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 193D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-02-28" - } -}, -{ - "type": "node", - "id": 9546149119, - "lat": 50.3927926, - "lon": -4.1265723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 188D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-02-28" - } -}, -{ - "type": "node", - "id": 9547823129, - "lat": 50.6252345, - "lon": -4.7293238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL33 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823130, - "lat": 50.6217485, - "lon": -4.7338057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL33 99D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823131, - "lat": 50.6209092, - "lon": -4.7269385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL33 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823132, - "lat": 50.6294053, - "lon": -4.7254481, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL33 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823133, - "lat": 50.6414297, - "lon": -4.7506282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL33 102", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9547823134, - "lat": 50.6268626, - "lon": -4.7579543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 11:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL33 103", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823135, - "lat": 50.6076838, - "lon": -4.7250451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL33 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823137, - "lat": 50.6265732, - "lon": -4.7254104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL33 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9547823138, - "lat": 50.6178798, - "lon": -4.7383776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL33 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 9547823139, - "lat": 50.6184890, - "lon": -4.6851645, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL33 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9548007781, - "lat": 50.7971300, - "lon": -3.1980917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX14 296", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9548007782, - "lat": 50.7952626, - "lon": -3.2049664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX14 419", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9548030071, - "lat": 53.4792171, - "lon": -2.6370860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 11", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9548528886, - "lat": 51.5795761, - "lon": -0.5000225, - "tags": { - "access": "yes", - "addr:city": "Denham", - "addr:country": "GB", - "addr:street": "Station Parade", - "amenity": "post_box", - "colour": "red", - "indoor": "no" - } -}, -{ - "type": "node", - "id": 9549503100, - "lat": 52.4209936, - "lon": -2.5885857, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9550087830, - "lat": 53.8110733, - "lon": -1.5373590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS7 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9550746477, - "lat": 51.8998028, - "lon": -3.6286141, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9552942576, - "lat": 53.4957995, - "lon": -2.6499408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 236", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9553100770, - "lat": 50.2617211, - "lon": -5.0522347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TR1 1;TR1 1000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9553100771, - "lat": 50.2617309, - "lon": -5.0522240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR1 248P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9553102921, - "lat": 50.3785540, - "lon": -4.1532440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 117D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-03" - } -}, -{ - "type": "node", - "id": 9553106020, - "lat": 50.3726745, - "lon": -4.1664438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL1 138D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-03-03" - } -}, -{ - "type": "node", - "id": 9553132845, - "lat": 50.4037468, - "lon": -3.9980656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL7 428", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9553675986, - "lat": 51.0170772, - "lon": -3.8222230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX36 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9555198561, - "lat": 57.6800879, - "lon": -2.7495928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB45 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9555198562, - "lat": 57.6847521, - "lon": -2.7480167, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB45 44", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9555972720, - "lat": 51.2979277, - "lon": 0.2492236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "colour": "red", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TN15 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9555972721, - "lat": 51.3064293, - "lon": 0.2524345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "colour": "red", - "ref": "TN15 142", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9556100896, - "lat": 50.2629915, - "lon": -5.0532606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR1 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9556168344, - "lat": 51.4575732, - "lon": -0.5787884, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9556169857, - "lat": 51.5246688, - "lon": -0.7918160, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "SL6 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9556228033, - "lat": 51.4787296, - "lon": -0.7486093, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL6 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9556563659, - "lat": 57.6768701, - "lon": -2.6930250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB45 8D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9556844338, - "lat": 50.8808784, - "lon": -4.1262254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 1D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9556879503, - "lat": 51.0757361, - "lon": -4.0550427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX32 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9556879510, - "lat": 51.0737492, - "lon": -4.0515465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX32 84D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9557001658, - "lat": 50.7169747, - "lon": -3.8628877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9557001659, - "lat": 50.7268956, - "lon": -4.0812872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 9", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9557001660, - "lat": 50.6587114, - "lon": -4.1966838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "EX20 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9557063971, - "lat": 51.9721046, - "lon": 0.0796809, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9557067396, - "lat": 51.9925742, - "lon": -0.0765184, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9557551370, - "lat": 51.2636443, - "lon": -1.0000816, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG27 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9557555477, - "lat": 51.0566804, - "lon": -4.0884704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX31 258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9557585486, - "lat": 51.0076870, - "lon": -4.1120497, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX31 231", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9557605989, - "lat": 50.9194704, - "lon": -4.1445802, - "tags": { - "amenity": "post_box", - "mapillary": "241922138627776", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX38 64D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9558329850, - "lat": 51.5609467, - "lon": 0.0383372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9558503581, - "lat": 51.5999237, - "lon": -3.6415197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "CF34 26D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9558679875, - "lat": 50.7462852, - "lon": -4.1509617, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9558679876, - "lat": 50.7420730, - "lon": -4.1542694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9558679877, - "lat": 50.6552204, - "lon": -4.1689635, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 32D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9559005278, - "lat": 56.7011067, - "lon": -2.4645417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD10 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9559169598, - "lat": 50.3918411, - "lon": -4.0443776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL7 731", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9559243339, - "lat": 51.4286765, - "lon": -2.2256675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN13 296", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9559253822, - "lat": 51.4285286, - "lon": -2.2204131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 275D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9560877318, - "lat": 50.8029486, - "lon": -0.4589332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "pillar", - "ref": "BN16 1470D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9561304784, - "lat": 50.7600390, - "lon": -4.0232746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9561437818, - "lat": 50.3639408, - "lon": -4.1021024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "5574196812640561", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 718D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-25" - } -}, -{ - "type": "node", - "id": 9561438517, - "lat": 50.3660726, - "lon": -4.1050487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL9 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561442517, - "lat": 50.3603062, - "lon": -4.1043883, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1589988041500537", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 627D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-01" - } -}, -{ - "type": "node", - "id": 9561443517, - "lat": 50.3622985, - "lon": -4.1048619, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL9 765D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561446418, - "lat": 50.3602989, - "lon": -4.0991200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 692D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561447030, - "lat": 50.3570086, - "lon": -4.0934597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL9 817D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561449018, - "lat": 50.3550589, - "lon": -4.0996095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "wall", - "ref": "PL9 656D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561449032, - "lat": 50.3594671, - "lon": -4.0941899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "PL9 805", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-04" - } -}, -{ - "type": "node", - "id": 9561451118, - "lat": 50.3550126, - "lon": -4.0959905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "PL9 796D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561452024, - "lat": 50.3640242, - "lon": -4.0913500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL9 729D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561452928, - "lat": 50.3580463, - "lon": -4.0862683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "PL9 423D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561453226, - "lat": 50.3602817, - "lon": -4.0826285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL9 807D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9561454517, - "lat": 50.3635661, - "lon": -4.0991017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "PL9 424D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-07" - } -}, -{ - "type": "node", - "id": 9562199983, - "lat": 50.3617512, - "lon": -4.0772666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "511049636997740", - "post_box:type": "pillar", - "ref": "PL9 628D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9562199988, - "lat": 50.3615054, - "lon": -4.0657540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "255285926537798", - "post_box:type": "wall", - "ref": "PL9 788D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9562199989, - "lat": 50.3557275, - "lon": -4.0732027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "292272012964775", - "post_box:type": "pillar", - "ref": "PL9 569D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9562199993, - "lat": 50.3430281, - "lon": -4.0891543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:00; Su off", - "mapillary": "292272012964775", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-01" - } -}, -{ - "type": "node", - "id": 9562199996, - "lat": 50.3547779, - "lon": -4.0860529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "628698158347909", - "post_box:type": "pillar", - "ref": "PL9 483D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9562199997, - "lat": 50.3520211, - "lon": -4.1068974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "158404133176503", - "post_box:type": "lamp", - "ref": "PL9 669D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9563723909, - "lat": 50.8573167, - "lon": -0.5970573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN18 1332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-03-02" - } -}, -{ - "type": "node", - "id": 9563733127, - "lat": 50.3724635, - "lon": -4.1328343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:50", - "post_box:type": "pillar", - "ref": "PL4 103", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9563733136, - "lat": 50.3762354, - "lon": -4.1156539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL4 97D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9563733148, - "lat": 50.3766404, - "lon": -4.1262101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL4 89D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9563733335, - "lat": 50.3736132, - "lon": -4.1318955, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL4 92D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-08" - } -}, -{ - "type": "node", - "id": 9563742928, - "lat": 50.3888918, - "lon": -4.0741213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 13:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL7 17", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9563801059, - "lat": 50.6392123, - "lon": -4.6838176, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:15", - "mapillary": "1162365251204365", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9565701754, - "lat": 50.3701289, - "lon": -4.1267630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "146138114454510", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL4 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9566597996, - "lat": 50.3744440, - "lon": -4.0254334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL7 603", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566597997, - "lat": 50.3841127, - "lon": -4.0527514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL7 605D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-16" - } -}, -{ - "type": "node", - "id": 9566597998, - "lat": 50.3939145, - "lon": -4.0751295, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 606D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566597999, - "lat": 50.3921724, - "lon": -4.0607616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL7 618D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566598000, - "lat": 50.3838350, - "lon": -4.0465044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL7 661D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2022-11-16" - } -}, -{ - "type": "node", - "id": 9566598001, - "lat": 50.3934293, - "lon": -4.0541082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL7 672D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2024-05-03" - } -}, -{ - "type": "node", - "id": 9566598002, - "lat": 50.3857618, - "lon": -4.0601125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL7 674D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-09-04" - } -}, -{ - "type": "node", - "id": 9566598003, - "lat": 50.3903103, - "lon": -4.0633638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 681D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566598004, - "lat": 50.3853990, - "lon": -4.0657293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "fixme": "Post box definitely still present in 2018 but not in Mar 2022 Royal Mail list. Needs a survey to check whether it is still here", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL7 684", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566622606, - "lat": 50.3935820, - "lon": -3.9861245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL7 733", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566622607, - "lat": 50.3801512, - "lon": -4.0059679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PL7 739", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9566956146, - "lat": 51.5795130, - "lon": -3.0040572, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "mapillary": "743262526349905", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 9566956147, - "lat": 51.5770774, - "lon": -3.0058922, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "mapillary": "295106068909539", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "survey:date": "2019-07-07" - } -}, -{ - "type": "node", - "id": 9567974161, - "lat": 53.4941139, - "lon": -2.4493447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "source": "survey", - "support": "wall_mounted" - } -}, -{ - "type": "node", - "id": 9568586970, - "lat": 51.5781300, - "lon": 0.4206160, - "tags": { - "amenity": "post_box", - "note": "pokemon" - } -}, -{ - "type": "node", - "id": 9568892045, - "lat": 51.3027045, - "lon": -0.7230432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "143112108070002", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "GU16 187D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2021-10-29" - } -}, -{ - "type": "node", - "id": 9568935703, - "lat": 51.2923679, - "lon": -0.7261818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "mapillary": "1365362127171580", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2020-10-11" - } -}, -{ - "type": "node", - "id": 9569131894, - "lat": 51.4695293, - "lon": -0.4020425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569131895, - "lat": 51.4740863, - "lon": -0.3945424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569131915, - "lat": 51.4702572, - "lon": -0.3939577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569131916, - "lat": 51.4724098, - "lon": -0.3921844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569136317, - "lat": 51.4751966, - "lon": -0.4039575, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569136318, - "lat": 51.4753961, - "lon": -0.4053273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569379374, - "lat": 53.2394931, - "lon": -2.5998780, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CW8 67D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9569524430, - "lat": 52.1496429, - "lon": -2.5506762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR7 436", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9569566050, - "lat": 52.0024462, - "lon": -2.5908355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR1 99", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9569566057, - "lat": 52.0040607, - "lon": -2.6042902, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR1 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9569574903, - "lat": 51.9859349, - "lon": -2.5727746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR1 367", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9569628327, - "lat": 51.8878899, - "lon": -2.5030207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9569628328, - "lat": 51.8881254, - "lon": -2.4973740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR9 549D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9569748867, - "lat": 54.5695585, - "lon": -5.7718279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9569855455, - "lat": 50.3939010, - "lon": -4.1151177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 189D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-03-10" - } -}, -{ - "type": "node", - "id": 9569857536, - "lat": 50.3936773, - "lon": -4.1102605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL3 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-10" - } -}, -{ - "type": "node", - "id": 9569907890, - "lat": 50.6817200, - "lon": -3.3196835, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9570338717, - "lat": 50.3315104, - "lon": -4.1037928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL9 472", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9571242667, - "lat": 51.5724484, - "lon": -3.0129674, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9571292137, - "lat": 51.8639674, - "lon": -2.5181913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL17 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9571300222, - "lat": 53.4189408, - "lon": -2.5562988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 72", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9571300568, - "lat": 53.4205027, - "lon": -2.5644137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA2 341", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9571698224, - "lat": 50.3887155, - "lon": -4.1172604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL3 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571703917, - "lat": 50.3899313, - "lon": -4.1149506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "125559516713555", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL3 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-21" - } -}, -{ - "type": "node", - "id": 9571708824, - "lat": 50.3860110, - "lon": -4.1002779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL3 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571709334, - "lat": 50.3879521, - "lon": -4.0983515, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "post_box:type": "pillar", - "ref": "PL3 265", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571709517, - "lat": 50.3922882, - "lon": -4.1018808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1101849483782022", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL3 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-05" - } -}, -{ - "type": "node", - "id": 9571715120, - "lat": 50.3895115, - "lon": -4.0891944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL3 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571838020, - "lat": 50.3851637, - "lon": -4.1065282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL3 147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571838524, - "lat": 50.3859898, - "lon": -4.1079344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL3 298D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571838528, - "lat": 50.3866192, - "lon": -4.1110455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "2956142181305478", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL3 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-11" - } -}, -{ - "type": "node", - "id": 9571900047, - "lat": 50.3869995, - "lon": -4.0241263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PL7 150;PL7 1500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9571900048, - "lat": 50.3876031, - "lon": -4.0176149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL7 521", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9571900049, - "lat": 50.3875655, - "lon": -4.0175800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL7 156", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9572078880, - "lat": 51.1954525, - "lon": -4.0158295, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX34 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9572807582, - "lat": 51.8341151, - "lon": -2.5717825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL17 279", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9572807583, - "lat": 51.8371349, - "lon": -2.5772756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL17 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9572829724, - "lat": 51.6494382, - "lon": -2.6643240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 376", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9572843567, - "lat": 51.8020844, - "lon": -2.5691807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL16 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9572862553, - "lat": 51.6313976, - "lon": -2.6749000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9572862554, - "lat": 51.6340780, - "lon": -2.6764758, - "tags": { - "amenity": "post_box", - "mapillary": "522645055809273", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP16 460", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source:position": "Mapillary 2020-09-26", - "survey:date": "2020-09-26" - } -}, -{ - "type": "node", - "id": 9572862555, - "lat": 51.6396082, - "lon": -2.6756497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP16 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9573022373, - "lat": 52.5394785, - "lon": -1.4097508, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE10 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9573104841, - "lat": 52.5238392, - "lon": -1.2187476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LE9 674D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9573104884, - "lat": 52.5353130, - "lon": -1.2315462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE9 337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9573131641, - "lat": 52.5067700, - "lon": -1.4529814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CV11 185", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9573131642, - "lat": 52.5117755, - "lon": -1.4633081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV11 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9573445815, - "lat": 53.1148904, - "lon": -3.3107827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL15 58", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9573497820, - "lat": 52.0182103, - "lon": -5.0572032, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SA85 39" - } -}, -{ - "type": "node", - "id": 9573929722, - "lat": 53.4516070, - "lon": -2.7171427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 46", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9575138866, - "lat": 53.1225009, - "lon": -1.9808370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "ref": "ST13 721", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9575554912, - "lat": 53.7422933, - "lon": -2.0111662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 176D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9576001641, - "lat": 53.1071671, - "lon": -3.3030261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9576001642, - "lat": 53.1092612, - "lon": -3.3041971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9576001643, - "lat": 53.1189317, - "lon": -3.3032576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9576001644, - "lat": 53.1164271, - "lon": -3.3056512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL15 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9576001645, - "lat": 53.1152430, - "lon": -3.3042608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Set in brick pillar (leaning backwards!)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL15 45D" - } -}, -{ - "type": "node", - "id": 9576001654, - "lat": 53.1135166, - "lon": -3.3061492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL15 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9576001664, - "lat": 53.1131200, - "lon": -3.3104230, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL15 29D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9576001678, - "lat": 53.1153831, - "lon": -3.3146678, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9576197335, - "lat": 53.4401924, - "lon": -0.5197687, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9576315417, - "lat": 50.9581433, - "lon": -4.1310270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "378790001009662", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-07-02" - } -}, -{ - "type": "node", - "id": 9576315418, - "lat": 50.9545570, - "lon": -4.1290804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "mapillary": "487184676293342", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX38 171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2023-06-11", - "survey:date": "2023-06-11" - } -}, -{ - "type": "node", - "id": 9576315617, - "lat": 50.9522979, - "lon": -4.1429456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "224320709865516", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-03-13" - } -}, -{ - "type": "node", - "id": 9576341517, - "lat": 50.9544393, - "lon": -4.1373908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "340287667652298", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-13" - } -}, -{ - "type": "node", - "id": 9576484385, - "lat": 51.4297871, - "lon": -0.1030492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE27 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9576591287, - "lat": 53.4066948, - "lon": -2.5809273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 146" - } -}, -{ - "type": "node", - "id": 9576591288, - "lat": 53.4091601, - "lon": -2.5668234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 302", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9577182878, - "lat": 53.5375614, - "lon": -2.6903119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9577242530, - "lat": 50.3887085, - "lon": -4.0392952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9577242531, - "lat": 50.3855728, - "lon": -4.0245081, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9577878744, - "lat": 51.7779956, - "lon": 0.6746225, - "tags": { - "amenity": "post_box", - "note": "Dual aperature box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM8 2269;CM8 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9577879638, - "lat": 51.1393917, - "lon": -0.0460735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH19 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9579580134, - "lat": 53.3873781, - "lon": -2.5834371, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA1 217", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9580213462, - "lat": 50.3947170, - "lon": -4.0475226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL7 157", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9580213463, - "lat": 50.3946761, - "lon": -4.0475226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL7 818", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9580976487, - "lat": 51.2883124, - "lon": -0.7646694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "note": "Parcel post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU14 60P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9581136844, - "lat": 50.3958798, - "lon": -4.0636093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL7 806", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9581136845, - "lat": 50.3968800, - "lon": -4.0583119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9581415542, - "lat": 50.6334164, - "lon": -3.4055960, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 127D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9581465177, - "lat": 50.6247221, - "lon": -3.4130982, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 41D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9581465178, - "lat": 50.6340501, - "lon": -3.4102108, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-17", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9581465183, - "lat": 50.6420985, - "lon": -3.4119368, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9581465184, - "lat": 50.6383685, - "lon": -3.4088717, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-14", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 604", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9581869594, - "lat": 51.1556694, - "lon": 0.1100365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "wall", - "ref": "TN8 218", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9581872464, - "lat": 53.3811954, - "lon": -2.5935099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 160", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9582004973, - "lat": 53.5161901, - "lon": -2.5972827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 189", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9582863062, - "lat": 50.3894803, - "lon": -4.0589700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "3051481605132705", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL7 555D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9582863063, - "lat": 50.3861173, - "lon": -4.0351641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "mapillary": "459324132583406", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 833D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9582863064, - "lat": 50.3832828, - "lon": -4.0329877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "drive_through": "no", - "mapillary": "4763656610381223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL7 794", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501375, - "lat": 50.3908048, - "lon": -4.0404958, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 317", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501376, - "lat": 50.3884147, - "lon": -4.0314149, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 323D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501377, - "lat": 50.3896004, - "lon": -4.0242431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL7 324D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501378, - "lat": 50.3906400, - "lon": -4.0541626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 326D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501379, - "lat": 50.3793013, - "lon": -4.0271581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 328D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501380, - "lat": 50.3907854, - "lon": -4.0494758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 528D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501381, - "lat": 50.3915689, - "lon": -4.0565493, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL7 577D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583501382, - "lat": 50.4094656, - "lon": -4.0177384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "fixme": "Needs a survey to confirm if box still present. Box present in 2011 Google StreetView (https://goo.gl/maps/dJnKLCtYmPTnge2s5) but not listed by Royal Mail in March 2022 so may have gone", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL7 690", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9583905909, - "lat": 53.4872194, - "lon": -0.7731687, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9583950571, - "lat": 53.4633451, - "lon": -0.7858627, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9583952345, - "lat": 53.5473273, - "lon": -0.8180499, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9583970491, - "lat": 53.1834326, - "lon": -2.6041312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "CW6 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9584020837, - "lat": 53.1641094, - "lon": -2.5477499, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9584041421, - "lat": 50.3866959, - "lon": -4.1235381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-16" - } -}, -{ - "type": "node", - "id": 9584042417, - "lat": 50.3834524, - "lon": -4.1250044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "pillar", - "ref": "PL4 76D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-03-16" - } -}, -{ - "type": "node", - "id": 9584042720, - "lat": 50.3827572, - "lon": -4.1301445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL4 75D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-16" - } -}, -{ - "type": "node", - "id": 9585142524, - "lat": 51.0855544, - "lon": -0.2834874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9585142525, - "lat": 51.1444720, - "lon": -0.1943053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH10 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9585142526, - "lat": 51.1139106, - "lon": -0.2644739, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9586716108, - "lat": 50.3865588, - "lon": -4.0700187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL7 748D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586716109, - "lat": 50.3865907, - "lon": -4.0653077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 751D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-09-04" - } -}, -{ - "type": "node", - "id": 9586716110, - "lat": 50.3928295, - "lon": -4.0697440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 764D", - "royal_cypher": "GVIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586716111, - "lat": 50.3814488, - "lon": -4.0436914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL7 780", - "royal_cypher": "GVIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586716112, - "lat": 50.4007931, - "lon": -4.0393518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PL7 783", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586716113, - "lat": 50.3915247, - "lon": -4.0651317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 798D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586716114, - "lat": 50.3955919, - "lon": -4.0736238, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 802D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586716115, - "lat": 50.3852946, - "lon": -4.0719082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 803", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9586730825, - "lat": 50.3651025, - "lon": -4.1275798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PL4 12;PL4 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-17" - } -}, -{ - "type": "node", - "id": 9586731519, - "lat": 50.3669450, - "lon": -4.1270030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL4 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-17" - } -}, -{ - "type": "node", - "id": 9586735517, - "lat": 53.3797907, - "lon": -2.5210549, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 62", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9586738921, - "lat": 50.3688105, - "lon": -4.1172750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "post_box:type": "meter", - "ref": "PL4 339P", - "royal_cypher": "no", - "survey:date": "2022-03-17" - } -}, -{ - "type": "node", - "id": 9586740421, - "lat": 50.3661948, - "lon": -4.0986993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 11:30", - "indoor": "yes", - "note": "inside Morrisons", - "post_box:type": "pillar", - "ref": "PL9 585", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-17" - } -}, -{ - "type": "node", - "id": 9586819022, - "lat": 51.4834389, - "lon": -0.8057769, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "RG10 254", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9586823805, - "lat": 51.3960911, - "lon": -0.9956354, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9587263431, - "lat": 50.3861301, - "lon": -4.0300553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL7 810D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9587263432, - "lat": 50.3830667, - "lon": -4.0428890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 812D", - "royal_cypher": "GVIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9587412764, - "lat": 51.7148494, - "lon": 0.2453585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9587457880, - "lat": 51.2446478, - "lon": -0.7469709, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU12 87D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9587609789, - "lat": 54.2527794, - "lon": -5.6419984, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 23" - } -}, -{ - "type": "node", - "id": 9588290653, - "lat": 50.3834680, - "lon": -4.0385256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 13:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 819", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9588290654, - "lat": 50.3909910, - "lon": -4.0346572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL7 820D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9588290655, - "lat": 50.3965007, - "lon": -4.0517453, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 821D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9588368502, - "lat": 51.4565111, - "lon": -1.4757638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9588561063, - "lat": 53.5320948, - "lon": -2.8386569, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9588561141, - "lat": 53.3851864, - "lon": -2.5623765, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 181", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9588581106, - "lat": 53.4333982, - "lon": -1.1097747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN11 533" - } -}, -{ - "type": "node", - "id": 9588893522, - "lat": 50.7572112, - "lon": -3.9086973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9588893523, - "lat": 50.8246694, - "lon": -3.9045592, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9588893524, - "lat": 50.7965703, - "lon": -4.0064162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 52D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9588893525, - "lat": 50.7625923, - "lon": -4.0249024, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9589786524, - "lat": 53.4908010, - "lon": -2.3511964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "post_box:type": "pillar", - "ref": "M30 5250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9589837125, - "lat": 50.7306471, - "lon": -4.1663571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 56D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9589837126, - "lat": 50.8086943, - "lon": -3.9481724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 58D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9589837127, - "lat": 50.7261888, - "lon": -3.8761501, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "hedge", - "post_box:type": "wall", - "ref": "EX20 59D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9589837128, - "lat": 50.7773179, - "lon": -4.1390631, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9589837129, - "lat": 50.7998699, - "lon": -3.9050572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 63D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9589837130, - "lat": 50.7844190, - "lon": -3.8934487, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "EX20 64D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590565689, - "lat": 50.8223283, - "lon": -4.0684398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 77D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590565690, - "lat": 50.7473594, - "lon": -3.9106594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "EX20 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590587438, - "lat": 54.9229021, - "lon": -1.4196819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9590587448, - "lat": 54.7606239, - "lon": -1.3866543, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9590587453, - "lat": 54.7756570, - "lon": -1.5410736, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9590587459, - "lat": 54.8029538, - "lon": -1.4187093, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9590587462, - "lat": 54.7519722, - "lon": -1.3453708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9590587491, - "lat": 54.7616756, - "lon": -1.3672771, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 9590590683, - "lat": 50.8547709, - "lon": -4.1071097, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 70D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590590684, - "lat": 50.8745407, - "lon": -4.0769934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 73D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590590685, - "lat": 50.8825964, - "lon": -4.0961004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 75D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590600198, - "lat": 50.7999523, - "lon": -3.8583484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "EX20 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590600199, - "lat": 50.7111780, - "lon": -3.8759211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "EX20 88D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9590823071, - "lat": 50.7996579, - "lon": 0.2872076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 834D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9590972688, - "lat": 57.6761012, - "lon": -4.3040087, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV16 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9591027920, - "lat": 57.6757587, - "lon": -2.8124471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB56 99", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9591093533, - "lat": 51.6628805, - "lon": -0.0775852, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9591155249, - "lat": 54.7633958, - "lon": -1.3315156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9591476786, - "lat": 51.4483327, - "lon": -2.4862238, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9591728994, - "lat": 53.1651534, - "lon": 0.0198293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE23 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9591748190, - "lat": 53.1772200, - "lon": 0.0379154, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9592015633, - "lat": 52.9803260, - "lon": -0.2964304, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9592031096, - "lat": 53.1847325, - "lon": 0.0527001, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9592073583, - "lat": 53.2131633, - "lon": 0.0833128, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9592123860, - "lat": 53.3342205, - "lon": -0.2078315, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9592164362, - "lat": 53.3017257, - "lon": -0.1585362, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9592435049, - "lat": 51.4088096, - "lon": -0.1289802, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9592568937, - "lat": 52.0549447, - "lon": 0.7046874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CO10 1072D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9592653037, - "lat": 50.9533086, - "lon": -2.8282271, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9592658287, - "lat": 50.6278440, - "lon": -3.3989536, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9592658288, - "lat": 50.6289844, - "lon": -3.4009777, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 601", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9592658289, - "lat": 50.6345682, - "lon": -3.3946654, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9592658291, - "lat": 50.6280303, - "lon": -3.3942007, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 145D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9592658302, - "lat": 50.6245520, - "lon": -3.3969936, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 533D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9592658715, - "lat": 54.1032344, - "lon": -6.2600918, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9592725824, - "lat": 50.4073320, - "lon": -4.2073894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "530175155125025", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 620D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592725930, - "lat": 50.4051969, - "lon": -4.2346623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL12 630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-16" - } -}, -{ - "type": "node", - "id": 9592725933, - "lat": 50.4071664, - "lon": -4.2306178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "post_box:type": "lamp", - "ref": "PL12 829D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592726218, - "lat": 50.4016692, - "lon": -4.2360029, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "mapillary": "1439652146958583", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 622", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-03-16" - } -}, -{ - "type": "node", - "id": 9592726219, - "lat": 50.4070011, - "lon": -4.2280521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:15", - "post_box:type": "lamp", - "ref": "PL12 761", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592726320, - "lat": 50.4034611, - "lon": -4.2178325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "PL12 825", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592726722, - "lat": 50.4054464, - "lon": -4.2240430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 10:30", - "post_box:type": "pillar", - "ref": "PL12 621", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592726917, - "lat": 50.4050513, - "lon": -4.2156818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL12 548D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592727218, - "lat": 50.4105307, - "lon": -4.2139371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL12 800D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-20" - } -}, -{ - "type": "node", - "id": 9592754117, - "lat": 54.6918283, - "lon": -6.6701647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9592768937, - "lat": 54.0689707, - "lon": -6.5215119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9593071606, - "lat": 53.5468567, - "lon": -2.6308955, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "940768476703883", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "WN1 111", - "royal_cypher": "yes", - "survey:date": "2021-05-02" - } -}, -{ - "type": "node", - "id": 9593929237, - "lat": 57.1273960, - "lon": -2.8590110, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB34 310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9594279773, - "lat": 51.3899609, - "lon": 0.0499737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9595545317, - "lat": 50.9384710, - "lon": -2.8105895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 07:30", - "mapillary": "522854365558433", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2020-10-30" - } -}, -{ - "type": "node", - "id": 9595545318, - "lat": 50.9397109, - "lon": -2.7987362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TA13 108", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9595545321, - "lat": 50.9334488, - "lon": -2.8050276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TA13 96", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9596077693, - "lat": 50.7998433, - "lon": 0.3229044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 872D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077694, - "lat": 50.8008799, - "lon": 0.3184023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 868D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077695, - "lat": 50.8053389, - "lon": 0.3168923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 867", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077696, - "lat": 50.8010994, - "lon": 0.3106064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 869D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077697, - "lat": 50.7974979, - "lon": 0.3131747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 870D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077698, - "lat": 50.7955194, - "lon": 0.3144488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 871D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077699, - "lat": 50.7953897, - "lon": 0.3117733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 818D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596077701, - "lat": 50.8018343, - "lon": 0.3069882, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 882D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9596083124, - "lat": 50.3820582, - "lon": -4.1171750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL4 266D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-03-21" - } -}, -{ - "type": "node", - "id": 9596083525, - "lat": 50.3832036, - "lon": -4.1150212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL3 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-21" - } -}, -{ - "type": "node", - "id": 9596084621, - "lat": 50.3847888, - "lon": -4.1137103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL3 234D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-21" - } -}, -{ - "type": "node", - "id": 9596084629, - "lat": 50.3819537, - "lon": -4.1206284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "353398136998400", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL4 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-08-21", - "survey:date": "2022-08-05" - } -}, -{ - "type": "node", - "id": 9596084632, - "lat": 50.3818071, - "lon": -4.1273790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL4 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-21" - } -}, -{ - "type": "node", - "id": 9598067401, - "lat": 51.4397507, - "lon": 0.0510747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "this replaces deleted https://www.openstreetmap.org/node/298914504 actual collection plate showed SE9 18 on August 2022 but RMNY shows SE9 20 https://www.royalmail.com/services-near-you/postbox/190-court-road-se9-5ag/00000SE920", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE9 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9598396788, - "lat": 55.6162135, - "lon": -4.4944833, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9598469766, - "lat": 50.2722991, - "lon": -4.7894450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/mevagisseyphotos08-25/Mevagissey%202020-08-25/IMG_20200825_174833.jpg", - "note": "Approx location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL26 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9598551789, - "lat": 54.5230426, - "lon": -6.0155092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9599830127, - "lat": 56.8979381, - "lon": -2.4501074, - "tags": { - "addr:country": "GB", - "addr:postcode": "AB30 1XQ", - "addr:street": "Monboddo Street", - "addr:village": "Auchenblae", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "AB30 39" - } -}, -{ - "type": "node", - "id": 9600180817, - "lat": 51.4352105, - "lon": 0.3479481, - "tags": { - "addr:street": "Park Avenue", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9601152196, - "lat": 54.8452324, - "lon": -1.9751532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DH8 519" - } -}, -{ - "type": "node", - "id": 9601747389, - "lat": 53.3864079, - "lon": -2.6378506, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 115", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9602042771, - "lat": 53.6993945, - "lon": -1.7532114, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9602119251, - "lat": 51.0129189, - "lon": -2.4272594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA8 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9602595000, - "lat": 53.1871137, - "lon": -4.2058513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL56 332" - } -}, -{ - "type": "node", - "id": 9602971663, - "lat": 50.3817134, - "lon": -4.0293555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL7 827D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9604297903, - "lat": 52.6605916, - "lon": -0.9296401, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9604331594, - "lat": 52.7135131, - "lon": -1.1925165, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9604467228, - "lat": 52.7404250, - "lon": -1.1763189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE12 109D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9604475054, - "lat": 52.6482217, - "lon": -1.3677102, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9605929914, - "lat": 52.4855456, - "lon": -1.2946918, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9607735117, - "lat": 50.3585972, - "lon": -4.1173571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL9 513D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-05-24" - } -}, -{ - "type": "node", - "id": 9607740218, - "lat": 50.3506402, - "lon": -4.0997794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:type": "lamp", - "ref": "PL9 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-25" - } -}, -{ - "type": "node", - "id": 9607742317, - "lat": 50.3532860, - "lon": -4.0928783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 811D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-25" - } -}, -{ - "type": "node", - "id": 9607762518, - "lat": 50.3497179, - "lon": -4.0894185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "533104691863284", - "post_box:type": "pillar", - "ref": "PL9 828D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-20" - } -}, -{ - "type": "node", - "id": 9607765118, - "lat": 50.3478807, - "lon": -4.0847519, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 759D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-25" - } -}, -{ - "type": "node", - "id": 9607765717, - "lat": 50.3484436, - "lon": -4.0805945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "133206999145759", - "post_box:type": "pillar", - "ref": "PL9 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-25" - } -}, -{ - "type": "node", - "id": 9607768017, - "lat": 50.3439963, - "lon": -4.0931905, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL9 610D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-25" - } -}, -{ - "type": "node", - "id": 9607769918, - "lat": 50.3533466, - "lon": -4.1171640, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "PL9 814D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-07-25" - } -}, -{ - "type": "node", - "id": 9609935004, - "lat": 50.7794274, - "lon": -3.9095379, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 90D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9609935005, - "lat": 50.6715425, - "lon": -4.1443388, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9609935006, - "lat": 50.8953754, - "lon": -4.0808632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX20 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9609935007, - "lat": 50.8011300, - "lon": -3.9852402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP2", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 101", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9609938807, - "lat": 54.2430178, - "lon": -0.4393194, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9609981356, - "lat": 54.2811432, - "lon": -0.4298472, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9610197531, - "lat": 53.4746655, - "lon": -2.6550683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9610627145, - "lat": 50.7692576, - "lon": -3.9026669, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX20 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9610627146, - "lat": 50.7884112, - "lon": -3.9005411, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9610627147, - "lat": 50.7581228, - "lon": -4.1290395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 107D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9610669021, - "lat": 58.2158884, - "lon": -6.3849550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 12:45", - "note": "both apertures have same ref", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "HS1 12", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9610840657, - "lat": 56.5849428, - "lon": -3.9986204, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 12:45; Sa 12:45", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PH15 60", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9610926651, - "lat": 56.5918269, - "lon": -4.3181191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH15 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9610950147, - "lat": 56.6021441, - "lon": -4.2492400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PH15 26", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9610972018, - "lat": 56.6179477, - "lon": -3.9999401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH15 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9610972023, - "lat": 56.5982487, - "lon": -4.0512219, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 13:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH15 23", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9611013617, - "lat": 50.9519425, - "lon": -2.8037647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "288847642965188", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2020-07-30" - } -}, -{ - "type": "node", - "id": 9611161824, - "lat": 53.4284112, - "lon": -2.7463664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9611193024, - "lat": 50.9528374, - "lon": -4.1509399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "360479662669914", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2022-03-27", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 9611383407, - "lat": 50.6274176, - "lon": -3.3862061, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9611383408, - "lat": 50.6262062, - "lon": -3.3864901, - "tags": { - "amenity": "post_box", - "check_date": "2022-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX8 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 9611566524, - "lat": 56.5874546, - "lon": -4.0027997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "lamp", - "ref": "PH15 62", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9611637929, - "lat": 56.6177937, - "lon": -3.8615267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "PH15 54D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9611712202, - "lat": 51.7577225, - "lon": -3.3816410, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 9611712212, - "lat": 51.7629149, - "lon": -3.3915857, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-11" - } -}, -{ - "type": "node", - "id": 9611736723, - "lat": 51.7625720, - "lon": -3.3808019, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-10", - "collection_times": "Mo-Fr 16:30" - } -}, -{ - "type": "node", - "id": 9611736739, - "lat": 51.7527810, - "lon": -3.3792356, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-10", - "collection_times": "Mo-Fr 09:00" - } -}, -{ - "type": "node", - "id": 9611736740, - "lat": 51.7551010, - "lon": -3.3773819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-02-10", - "collection_times": "Mo-Fr 09:00", - "mapillary": "1184846361929160", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2021-04-23" - } -}, -{ - "type": "node", - "id": 9611736745, - "lat": 51.7457767, - "lon": -3.3720943, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-09", - "collection_times": "Mo-Fr 09:00" - } -}, -{ - "type": "node", - "id": 9611736749, - "lat": 51.7491469, - "lon": -3.3771183, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-09" - } -}, -{ - "type": "node", - "id": 9611736767, - "lat": 51.7440913, - "lon": -3.3784031, - "tags": { - "amenity": "post_box", - "check_date": "2022-02-08", - "collection_times": "Mo-Fr 17:15" - } -}, -{ - "type": "node", - "id": 9612566996, - "lat": 50.7723819, - "lon": -4.0716030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 109D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612660373, - "lat": 50.8069382, - "lon": -4.0387316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 114D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612660374, - "lat": 50.6784394, - "lon": -4.1253373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612660375, - "lat": 50.6223318, - "lon": -4.1800999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 118D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612660376, - "lat": 50.7287161, - "lon": -3.9422030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612660377, - "lat": 50.7825539, - "lon": -4.0722332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "hedge", - "post_box:type": "wall", - "ref": "EX20 125D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612823191, - "lat": 50.7760067, - "lon": -4.0437596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 128D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612823192, - "lat": 50.8895459, - "lon": -4.0959790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "EX20 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612823193, - "lat": 50.7997550, - "lon": -3.8974625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX20 132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612823194, - "lat": 50.7174027, - "lon": -3.8558990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9612830975, - "lat": 50.7928175, - "lon": -3.9514160, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9613456206, - "lat": 52.6923440, - "lon": -2.7564076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "fixme": "check collection times", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY3 563D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9616193888, - "lat": 50.5729687, - "lon": -4.8298346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL29 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9616204344, - "lat": 50.5783622, - "lon": -4.8393080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL29 105", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9620214053, - "lat": 50.3331517, - "lon": -4.6391199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL23 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9620214054, - "lat": 50.3339484, - "lon": -4.6386367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP2D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL23 61D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9620214055, - "lat": 50.3470548, - "lon": -4.6308322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "PL23 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9620214056, - "lat": 50.3530536, - "lon": -4.6062618, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL23 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9621657147, - "lat": 53.2106190, - "lon": -0.0787372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "LN9 283" - } -}, -{ - "type": "node", - "id": 9621698539, - "lat": 54.1910015, - "lon": -2.9141410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LA11 106D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9621824961, - "lat": 53.1581130, - "lon": -0.0955826, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9621917065, - "lat": 51.1997250, - "lon": -2.0080304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA12 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9622054081, - "lat": 51.2297929, - "lon": -1.9508210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SP3 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9622574032, - "lat": 50.4165654, - "lon": -4.2292433, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 859D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-29" - } -}, -{ - "type": "node", - "id": 9622575120, - "lat": 50.4115487, - "lon": -4.2281620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL12 777", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2024-04-17" - } -}, -{ - "type": "node", - "id": 9622575123, - "lat": 50.4152751, - "lon": -4.2337315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "post_box:type": "pillar", - "ref": "PL12 633", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-29" - } -}, -{ - "type": "node", - "id": 9622575125, - "lat": 50.4183645, - "lon": -4.2345923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "pillar", - "ref": "PL12 839", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-03-29" - } -}, -{ - "type": "node", - "id": 9624166124, - "lat": 53.5296512, - "lon": -2.5859787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 154", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9624786038, - "lat": 55.0097869, - "lon": -2.3239994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE47 182D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9625093028, - "lat": 50.9583055, - "lon": -3.1242996, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9625153215, - "lat": 56.0241994, - "lon": -5.6257950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA31 19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9625736011, - "lat": 57.1282013, - "lon": -2.1443151, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 7RL", - "addr:street": "Gordon Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9625736012, - "lat": 57.1263125, - "lon": -2.1506689, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB15 7TR", - "addr:street": "Airyhall Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9626860982, - "lat": 50.9588880, - "lon": -0.0967850, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH15 183" - } -}, -{ - "type": "node", - "id": 9627216209, - "lat": 53.4208853, - "lon": -2.5975070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9627522169, - "lat": 51.2915890, - "lon": -1.9867819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9627525518, - "lat": 51.2947180, - "lon": -2.0264438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9627647034, - "lat": 50.4204137, - "lon": -4.2347432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "PL12 855", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-17" - } -}, -{ - "type": "node", - "id": 9627647347, - "lat": 50.4227464, - "lon": -4.2383128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL12 631D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-03-31" - } -}, -{ - "type": "node", - "id": 9627648918, - "lat": 50.4171518, - "lon": -4.2169379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 07:00", - "post_box:type": "wall", - "ref": "PL12 625", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-03-31" - } -}, -{ - "type": "node", - "id": 9627648923, - "lat": 50.4204246, - "lon": -4.2347194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "post_box:type": "meter", - "ref": "PL12 607P", - "royal_cypher": "no", - "survey:date": "2022-03-31" - } -}, -{ - "type": "node", - "id": 9627796969, - "lat": 51.6423023, - "lon": -3.2370216, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9629005788, - "lat": 51.7820073, - "lon": -1.4972234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "299248861785083", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2021-03-25" - } -}, -{ - "type": "node", - "id": 9630453017, - "lat": 50.3649038, - "lon": -4.1045876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 14:00", - "mapillary": "115946801027346", - "note": "three letterboxes one ref no cypher", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL9 213", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 9630458219, - "lat": 50.3649298, - "lon": -4.0859676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL9 816D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 9630459018, - "lat": 50.3674934, - "lon": -4.0804237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL9 697D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 9630459618, - "lat": 50.3642685, - "lon": -4.0793153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 691D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 9630462318, - "lat": 50.3613293, - "lon": -4.0693168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 799D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 9630463831, - "lat": 50.3582479, - "lon": -4.0729704, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL9 655D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-01" - } -}, -{ - "type": "node", - "id": 9630591452, - "lat": 50.7664057, - "lon": -3.3571121, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9631004177, - "lat": 53.4805332, - "lon": -2.6049345, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-24", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9631132658, - "lat": 51.1801370, - "lon": -0.7086483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU8 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9631262804, - "lat": 56.7313071, - "lon": -2.6542237, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9631327917, - "lat": 50.5660156, - "lon": -4.4090662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "mapillary": "2846982105599752", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9631351717, - "lat": 50.6013390, - "lon": -4.4393232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL15 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9631351817, - "lat": 50.6125934, - "lon": -4.4574598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9631358817, - "lat": 50.6192199, - "lon": -4.5006804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PL15 58D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-04-02" - } -}, -{ - "type": "node", - "id": 9631645867, - "lat": 51.2803118, - "lon": -2.7801799, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9632144001, - "lat": 54.9961188, - "lon": -1.7030174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE5 430D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9632144012, - "lat": 55.0017133, - "lon": -1.6895456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9632159317, - "lat": 54.9964505, - "lon": -1.6964278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE5 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9632159354, - "lat": 54.9927991, - "lon": -1.6895790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633060522, - "lat": 53.5657579, - "lon": -0.0841764, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 17:15; Sa 13:00", - "image": "https://i.postimg.cc/sxVvLzGj/DN31-285.jpg", - "location": "Victoria Street, Haven Street", - "note": "This is a double pillar box (type_c) with two slots but only one collection plate, the other is empty", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN31 285;DN31 286", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9633138419, - "lat": 53.4803703, - "lon": -2.5388854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9633158954, - "lat": 52.0454066, - "lon": -3.2004132, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633170832, - "lat": 52.0454544, - "lon": -3.1966152, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633587245, - "lat": 55.8541287, - "lon": -3.0615349, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH23 200D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9633903475, - "lat": 53.7338373, - "lon": -2.0051383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HX7 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633903476, - "lat": 53.7295669, - "lon": -1.9910227, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 269D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9633903477, - "lat": 53.7337722, - "lon": -1.9910754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 164D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9633903478, - "lat": 53.7312775, - "lon": -1.9802822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633903479, - "lat": 53.7304904, - "lon": -1.9771244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633903480, - "lat": 53.7334459, - "lon": -1.9761248, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 306", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633903481, - "lat": 53.7404699, - "lon": -1.9736250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633937252, - "lat": 53.6337715, - "lon": -2.0951223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OL15 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9633937253, - "lat": 53.3615838, - "lon": -2.2741718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "airport_pillar", - "post_box:type": "pillar", - "ref": "M90 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9634058029, - "lat": 50.3944703, - "lon": -4.2320565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 09:30", - "post_box:type": "lamp", - "ref": "PL12 549", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 9634060936, - "lat": 50.4034691, - "lon": -4.2499009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL12 634D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 9634061321, - "lat": 50.3955537, - "lon": -4.2655672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:45; Sa 10:15", - "post_box:type": "lamp", - "ref": "PL12 685", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 9634062421, - "lat": 50.4102606, - "lon": -4.2312682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL12 815D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-03" - } -}, -{ - "type": "node", - "id": 9634158160, - "lat": 51.2924413, - "lon": 0.0557520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN16 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9634209568, - "lat": 51.8586073, - "lon": -2.1970802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "475398770346949", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "survey:date": "2020-06-17" - } -}, -{ - "type": "node", - "id": 9634281951, - "lat": 52.0262994, - "lon": 0.7441775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CO10 1057D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9634488846, - "lat": 50.7727113, - "lon": -4.1155514, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX20 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9634488847, - "lat": 50.7350078, - "lon": -4.0564361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "EX20 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9634488848, - "lat": 50.7555811, - "lon": -4.0545686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX20 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9634488849, - "lat": 50.8258764, - "lon": -3.9158117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX20 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9634488850, - "lat": 50.7826528, - "lon": -3.9755485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX20 195D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9634488851, - "lat": 50.7918559, - "lon": -4.0917759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9634488852, - "lat": 50.7703825, - "lon": -4.0949141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9635291187, - "lat": 51.4805679, - "lon": -2.6865978, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS20 1012" - } -}, -{ - "type": "node", - "id": 9641775107, - "lat": 51.9859100, - "lon": -2.1452071, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL20 99D" - } -}, -{ - "type": "node", - "id": 9642706239, - "lat": 53.7377618, - "lon": -2.9529228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "FY8 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9642775817, - "lat": 53.7370730, - "lon": -2.9497510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "FY8 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9642775820, - "lat": 53.7433695, - "lon": -2.9444790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "FY8 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9642775821, - "lat": 53.7463125, - "lon": -2.9435656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 239D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9642795470, - "lat": 53.7393704, - "lon": -2.9496070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9642795471, - "lat": 53.7404382, - "lon": -2.9678360, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY8 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9643095027, - "lat": 51.8107924, - "lon": 0.6219452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CM8 314D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9644008552, - "lat": 50.3469997, - "lon": -3.9775826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "PL8 474D", - "source": "aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 9644192036, - "lat": 51.1785729, - "lon": -1.6762868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 450", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9644212532, - "lat": 51.1993040, - "lon": -1.6214061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9644212534, - "lat": 51.1911460, - "lon": -1.6691494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP4 670", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9644404802, - "lat": 50.7801760, - "lon": 0.3005791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN22 746", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9644404810, - "lat": 50.7777906, - "lon": 0.3052005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN22 748D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9644430777, - "lat": 50.7838341, - "lon": 0.2974382, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN22 857D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9644436646, - "lat": 50.7836246, - "lon": 0.2926786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN22 855D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9644436647, - "lat": 50.7813700, - "lon": 0.2933686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN22 854D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9644444435, - "lat": 50.7805178, - "lon": 0.3030078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN22 747D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9644457842, - "lat": 50.3768853, - "lon": -4.2018305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1176732726190792", - "post_box:type": "pillar", - "ref": "PL11 499D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-06" - } -}, -{ - "type": "node", - "id": 9644457843, - "lat": 50.3763710, - "lon": -4.1966088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "fixme": "new times 5:15pm 12:30pm", - "mapillary": "730941261253489", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PL11 673;PL11 6730", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-01-13" - } -}, -{ - "type": "node", - "id": 9645903217, - "lat": 50.9667145, - "lon": -2.8102275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:45", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TA13 189D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9647915845, - "lat": 53.5182637, - "lon": -2.1857496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "167416071980102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-04-14" - } -}, -{ - "type": "node", - "id": 9649008111, - "lat": 53.6733538, - "lon": -1.8418198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 9650286057, - "lat": 53.2686286, - "lon": -1.3508940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S43 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9650354598, - "lat": 53.5654197, - "lon": -0.0860727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 16:15; Sa 12:45", - "image": "https://i.postimg.cc/WpWrZMFq/DN31-289-DN31-313.jpg", - "location": "Victoria Street, Brewery Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN31 289;DN31 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9650436595, - "lat": 53.5782767, - "lon": -1.0697121, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9650441528, - "lat": 50.7731992, - "lon": 0.2935852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 858D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9650441529, - "lat": 50.7789405, - "lon": 0.2924050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN22 853D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9650441530, - "lat": 50.7766000, - "lon": 0.2934980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN22 852D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9650441535, - "lat": 50.7786836, - "lon": 0.2995759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN22 750D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9650596334, - "lat": 53.4978499, - "lon": -1.3402126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9652315719, - "lat": 50.3237714, - "lon": -4.0630971, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL9 653D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-08" - } -}, -{ - "type": "node", - "id": 9652359920, - "lat": 50.3370299, - "lon": -4.0729544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1191776428299217", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL9 679D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-08" - } -}, -{ - "type": "node", - "id": 9652548525, - "lat": 50.3524649, - "lon": -4.0749932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL9 797D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-08" - } -}, -{ - "type": "node", - "id": 9652583017, - "lat": 50.3572119, - "lon": -4.0768513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL9 460D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-04-08" - } -}, -{ - "type": "node", - "id": 9652942320, - "lat": 50.3623873, - "lon": -4.0855916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 801D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-08" - } -}, -{ - "type": "node", - "id": 9653211301, - "lat": 51.4434410, - "lon": -2.4646584, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9654158573, - "lat": 53.5515469, - "lon": -2.6388228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 49", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 9654183522, - "lat": 50.3487820, - "lon": -4.7092896, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL24 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654184917, - "lat": 50.3356679, - "lon": -4.7458231, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL25 128D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654195618, - "lat": 50.3368116, - "lon": -4.7490627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL25 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654256704, - "lat": 51.5638549, - "lon": 0.6390764, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9654256705, - "lat": 51.5656106, - "lon": 0.6396263, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9654305918, - "lat": 50.3300271, - "lon": -4.7704182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL26 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654328317, - "lat": 50.3260761, - "lon": -4.7672397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL26 164D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654384518, - "lat": 50.3215458, - "lon": -4.7703598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654449617, - "lat": 50.3364421, - "lon": -4.7726138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL25 145D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654459017, - "lat": 50.3383811, - "lon": -4.7737998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 103D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 9654480221, - "lat": 50.3392838, - "lon": -4.7621171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "mapillary": "7881572045188735", - "post_box:type": "pillar", - "ref": "PL25 220", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 9654512318, - "lat": 50.3394121, - "lon": -4.7589757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654580219, - "lat": 50.3479861, - "lon": -4.7351685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL24 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654665820, - "lat": 50.3536191, - "lon": -4.7173916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL24 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654678118, - "lat": 50.3561195, - "lon": -4.7180333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL24 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-09" - } -}, -{ - "type": "node", - "id": 9654698843, - "lat": 53.3380344, - "lon": -2.6034186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9654826832, - "lat": 53.3464052, - "lon": -2.3859707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 57", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9654959897, - "lat": 52.7385090, - "lon": -0.6873920, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9655003570, - "lat": 52.5998745, - "lon": -0.7308834, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9655172308, - "lat": 52.6012424, - "lon": -3.7287366, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9655920523, - "lat": 51.6234302, - "lon": -4.0142387, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9655971817, - "lat": 50.3748117, - "lon": -4.2046270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "ref": "PL11 789", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 9656048428, - "lat": 50.3749797, - "lon": -4.1950195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "mapillary": "312964100782876", - "post_box:type": "pillar", - "ref": "PL11 480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 9656055417, - "lat": 50.3743815, - "lon": -4.1973325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "mapillary": "825755095273099", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL11 484", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-08-29" - } -}, -{ - "type": "node", - "id": 9656259726, - "lat": 50.3873011, - "lon": -4.2085519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:15; Sa 08:30", - "post_box:type": "wall", - "ref": "PL11 524", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 9656271219, - "lat": 50.3867731, - "lon": -4.2136232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 08:15", - "post_box:type": "wall", - "ref": "PL11 596", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 9656359617, - "lat": 50.3785406, - "lon": -4.2135157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "mapillary": "139164705339748", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 538", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 9656741254, - "lat": 50.7777379, - "lon": 0.2692772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN21 770D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9656741255, - "lat": 50.7739810, - "lon": 0.2672030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BN21 762", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9656741261, - "lat": 50.7767028, - "lon": 0.2714588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 773D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9656795118, - "lat": 50.3740916, - "lon": -4.2221812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "survey:date": "2022-04-10" - } -}, -{ - "type": "node", - "id": 9657127491, - "lat": 50.7760827, - "lon": 0.2788854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal MailR", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 777D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9657128728, - "lat": 50.7745884, - "lon": 0.2819256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal MailR", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 767", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9657128734, - "lat": 50.7720068, - "lon": 0.2716863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 798D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9657128735, - "lat": 50.7733536, - "lon": 0.2725366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 775D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9657128736, - "lat": 50.7746741, - "lon": 0.2756184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 776D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9657165246, - "lat": 50.7920928, - "lon": 0.2649218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 850D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9657165249, - "lat": 50.7859428, - "lon": 0.2693930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_plastic", - "post_box:type": "pillar", - "ref": "BN21 1166", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9657165250, - "lat": 50.7884015, - "lon": 0.2618037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 822", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9657165251, - "lat": 50.7873723, - "lon": 0.2626111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 821D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9657165252, - "lat": 50.7862260, - "lon": 0.2638891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 820D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9657190920, - "lat": 53.5525438, - "lon": -2.6430879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN6 11", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 9657826702, - "lat": 56.5886396, - "lon": -3.3338109, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "drive_through": "no", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 4", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9657952898, - "lat": 50.7795815, - "lon": -3.9273892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9657952899, - "lat": 50.6686667, - "lon": -4.1813822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9657952900, - "lat": 50.6599865, - "lon": -4.1852689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 209D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9658385365, - "lat": 50.7836935, - "lon": 0.2631758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 825D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9658385366, - "lat": 50.7810928, - "lon": 0.2636046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BN21 760D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9658385367, - "lat": 50.7792675, - "lon": 0.2671813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "BN21 824D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9658628050, - "lat": 50.6413457, - "lon": -4.2231018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9658628051, - "lat": 50.6556825, - "lon": -4.2393975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "hedge", - "post_box:type": "wall", - "ref": "EX20 211D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9658628052, - "lat": 50.6613261, - "lon": -4.1717584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:30; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX20 214D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9659482956, - "lat": 50.7838153, - "lon": 0.2582423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN21 785D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659587782, - "lat": 51.4725485, - "lon": -2.6291233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "BS9 1130D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9659595623, - "lat": 50.6321515, - "lon": -4.1872087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX20 217D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9659595624, - "lat": 50.6562641, - "lon": -4.2137657, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "EX20 219D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9659595625, - "lat": 50.6331554, - "lon": -4.2234088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EX20 220D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9659595626, - "lat": 50.6839020, - "lon": -4.2009030, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "EX20 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9659637333, - "lat": 50.7888407, - "lon": 0.3093740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 878", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637350, - "lat": 50.7870950, - "lon": 0.3136374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 866D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637398, - "lat": 50.7882498, - "lon": 0.3149919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 865D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637399, - "lat": 50.7854523, - "lon": 0.3182233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BN23 864", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637400, - "lat": 50.7832940, - "lon": 0.3160286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 890D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637401, - "lat": 50.7844285, - "lon": 0.3239478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 893", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637402, - "lat": 50.7915977, - "lon": 0.3212683, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 1161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659637403, - "lat": 50.7883219, - "lon": 0.3245607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 894", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659640618, - "lat": 50.7882193, - "lon": 0.3190461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 863D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659640619, - "lat": 50.7917771, - "lon": 0.3143334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BN23 873D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9659714260, - "lat": 53.3972769, - "lon": -2.6400622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA5 390", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9659740585, - "lat": 53.4349579, - "lon": -2.9344092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9661633611, - "lat": 51.4519409, - "lon": -0.1420106, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9661884358, - "lat": 50.6301206, - "lon": -3.4094851, - "tags": { - "amenity": "post_box", - "check_date": "2022-04-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663355059, - "lat": 51.2822556, - "lon": -2.5424308, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9663710441, - "lat": 50.6447557, - "lon": -3.3974402, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 500D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710442, - "lat": 50.6438980, - "lon": -3.3888611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710443, - "lat": 50.6409227, - "lon": -3.3835135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710445, - "lat": 50.6359984, - "lon": -3.3808071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710446, - "lat": 50.6355936, - "lon": -3.3829180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710450, - "lat": 50.6243600, - "lon": -3.3882686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX8 602", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710452, - "lat": 50.6309151, - "lon": -3.3816055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX8 598D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9663710453, - "lat": 50.6271494, - "lon": -3.3809164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX8 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9664149802, - "lat": 50.9442611, - "lon": -2.7871152, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9666157912, - "lat": 55.8618872, - "lon": -3.7095549, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-03-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH47 101D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9668219841, - "lat": 53.1082566, - "lon": -3.4058081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "LL15 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9668415723, - "lat": 50.9334657, - "lon": -2.7906965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 10:15", - "ref": "TA13 113" - } -}, -{ - "type": "node", - "id": 9668728378, - "lat": 51.4642374, - "lon": -0.1525826, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9669874036, - "lat": 51.2771953, - "lon": -0.7452630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GU14 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9669924917, - "lat": 51.5718343, - "lon": -0.0615829, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9670881143, - "lat": 51.6221791, - "lon": -0.0717564, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9670881144, - "lat": 51.6237539, - "lon": -0.0742315, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9670881145, - "lat": 51.6244030, - "lon": -0.0785969, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9670881152, - "lat": 51.6271949, - "lon": -0.0699848, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 5D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9670881153, - "lat": 51.6254302, - "lon": -0.0632398, - "tags": { - "amenity": "post_box", - "collection_plate": "CP3", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 9", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9670881172, - "lat": 51.6255261, - "lon": -0.0595975, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9670881179, - "lat": 51.6228950, - "lon": -0.0597315, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "N9 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9670881180, - "lat": 51.6229115, - "lon": -0.0611945, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "N9 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9672561616, - "lat": 50.7969275, - "lon": -2.6441474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT2 64", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9672573025, - "lat": 50.7794247, - "lon": -2.6222120, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9672832775, - "lat": 53.5852106, - "lon": -0.1355132, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/yxgwSz7K/DN37-295-D-DN37-298-D.jpg", - "location": "Europarc Way", - "manufacturer": "Machan Engineering, Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN37 295D;DN37 298D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9674301939, - "lat": 50.9064286, - "lon": -2.7940004, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA16 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9675194070, - "lat": 51.1951613, - "lon": 0.2752307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15; Su off", - "colour": "Red", - "post_box:type": "meter", - "ref": "TN9 33", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9675678961, - "lat": 51.4212133, - "lon": -0.7732231, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9675733516, - "lat": 51.3060859, - "lon": -0.9005401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "RG27 3162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9676435617, - "lat": 50.4773516, - "lon": -4.7527122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "746663056711247", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2022-04-18", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 9676435817, - "lat": 50.4873098, - "lon": -4.7620846, - "tags": { - "amenity": "post_box", - "mapillary": "667087034518867", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 9676435917, - "lat": 50.5090567, - "lon": -4.8058735, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "survey:date": "2022-04-18" - } -}, -{ - "type": "node", - "id": 9676757091, - "lat": 54.5044828, - "lon": -1.5936388, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9678505240, - "lat": 52.0125569, - "lon": -4.8985177, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9678575428, - "lat": 51.9225505, - "lon": -4.9383978, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9678593142, - "lat": 51.6981312, - "lon": -4.8265519, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9678628544, - "lat": 51.8208189, - "lon": -5.0949539, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9678796654, - "lat": 51.7302918, - "lon": -3.4566602, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9680569447, - "lat": 50.4675655, - "lon": -4.2710769, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "445992603863122", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-24" - } -}, -{ - "type": "node", - "id": 9680569448, - "lat": 50.5085279, - "lon": -4.3136512, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9680569449, - "lat": 50.5194916, - "lon": -4.3159555, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9680569450, - "lat": 50.5292550, - "lon": -4.3280909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "373856648588064", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 9680569451, - "lat": 50.5751660, - "lon": -4.3328155, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9680642255, - "lat": 50.3663737, - "lon": -4.0506826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "post_box:type": "pillar", - "ref": "PL9 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9680930217, - "lat": 50.3284002, - "lon": -4.1142844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL9 756D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-20" - } -}, -{ - "type": "node", - "id": 9681025517, - "lat": 51.9794492, - "lon": -2.1518840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL20 369D" - } -}, -{ - "type": "node", - "id": 9681025617, - "lat": 51.9820665, - "lon": -2.1536147, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL20 55D" - } -}, -{ - "type": "node", - "id": 9681314363, - "lat": 53.9278868, - "lon": -2.9723913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 30D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9681320854, - "lat": 51.2952875, - "lon": 0.3125151, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN15 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9681332962, - "lat": 53.8755232, - "lon": -2.9548188, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9681419774, - "lat": 52.0908254, - "lon": -4.1881337, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9681480019, - "lat": 52.0083540, - "lon": -5.0149077, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9682427444, - "lat": 51.5229007, - "lon": -0.7162735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL6 153" - } -}, -{ - "type": "node", - "id": 9683087884, - "lat": 53.7226175, - "lon": -2.5384721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BB2 175", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9685056164, - "lat": 51.4819039, - "lon": -1.6829099, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:15", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 141" - } -}, -{ - "type": "node", - "id": 9685064148, - "lat": 51.4254993, - "lon": -1.6761119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN8 55" - } -}, -{ - "type": "node", - "id": 9685233005, - "lat": 53.4970095, - "lon": -0.1106049, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/fbZGxyJq/DN37-59D.jpg", - "location": "Waithe Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9685508313, - "lat": 52.7998356, - "lon": -2.1153017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "WOLVERHAMPTON ROAD", - "mapillary": "573510007421204", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9686385808, - "lat": 55.9266822, - "lon": -4.3342091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 1331D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9686960764, - "lat": 50.5622494, - "lon": -4.5670997, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9687048850, - "lat": 52.0270247, - "lon": 0.0383214, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9687093006, - "lat": 50.6470287, - "lon": -4.3719286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "897027895069678", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 9687656488, - "lat": 50.9129076, - "lon": -2.2007022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT11 69", - "ref:GB:uprn": "10015319920", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9687667060, - "lat": 50.9136119, - "lon": -2.2368926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT11 67", - "ref:GB:uprn": "10015602777", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9687730323, - "lat": 50.9691039, - "lon": -2.4646108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1420963241620200", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT9 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9687730324, - "lat": 50.9683632, - "lon": -2.4616577, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT9 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9687733925, - "lat": 51.0002344, - "lon": -2.5733928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA22 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9687733926, - "lat": 50.9993334, - "lon": -2.5799565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "313613794272062", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA22 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-17" - } -}, -{ - "type": "node", - "id": 9687752632, - "lat": 50.9796392, - "lon": -2.5326336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 56", - "ref:GB:uprn": "10015436321", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9687752633, - "lat": 50.9718224, - "lon": -2.5198267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 57", - "ref:GB:uprn": "10015352632", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9688051050, - "lat": 51.0151274, - "lon": -2.6260677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA22 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9688537140, - "lat": 51.9888354, - "lon": -2.1531574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL20 54D" - } -}, -{ - "type": "node", - "id": 9688583475, - "lat": 51.5120550, - "lon": 0.0062851, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E14 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9688648715, - "lat": 51.9103732, - "lon": -4.7379881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9688652883, - "lat": 51.6220622, - "lon": -0.0820691, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N9 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9688674051, - "lat": 51.9307324, - "lon": -4.8002181, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9688684302, - "lat": 52.0204107, - "lon": -4.8406057, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9688905447, - "lat": 52.0459397, - "lon": -4.4363848, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9688905584, - "lat": 52.0778523, - "lon": -4.5373437, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9688937426, - "lat": 52.1987834, - "lon": -4.2660155, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9688940692, - "lat": 52.1001995, - "lon": -4.4142301, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9688940949, - "lat": 52.1855483, - "lon": -4.3809117, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689445002, - "lat": 51.0355820, - "lon": -2.8123525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "960030015031873", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA10 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 9689445003, - "lat": 51.0338632, - "lon": -2.7985606, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "965214071504528", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA10 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 9689445004, - "lat": 51.0334702, - "lon": -2.7735114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "899144628035050", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA10 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 9689445005, - "lat": 51.0298811, - "lon": -2.7610425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA10 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689453085, - "lat": 51.0383835, - "lon": -2.8215364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA10 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689463724, - "lat": 51.0575685, - "lon": -2.8941501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA7 39D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689478252, - "lat": 51.1172798, - "lon": -3.0084676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA6 690D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689567736, - "lat": 51.4709092, - "lon": -0.3414705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 252", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9689567737, - "lat": 51.4722883, - "lon": -0.3361284, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 268", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9689567738, - "lat": 51.4729000, - "lon": -0.3327855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW7 282", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9689730832, - "lat": 51.4786673, - "lon": -0.3426251, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TW7 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689808064, - "lat": 52.0715936, - "lon": -4.1398451, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9689954532, - "lat": 57.1479228, - "lon": -2.0984793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2023-07-29", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "colour": "red", - "description": "Located within WH Smith on the left beside the stairwell.", - "drive_through": "no", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 6767", - "royal_cypher": "no", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9689959199, - "lat": 51.8769361, - "lon": -2.1695362, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey with geotagged photo" - } -}, -{ - "type": "node", - "id": 9690063046, - "lat": 51.3423685, - "lon": 0.1394424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "colour": "red", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TN14 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690063047, - "lat": 51.3402617, - "lon": 0.1482439, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690063048, - "lat": 51.3438048, - "lon": 0.1189169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN14 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690063049, - "lat": 51.3291465, - "lon": 0.1341645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "colour": "red", - "image": "https://www.bing.com/maps?osid=4f190764-7769-4a30-b112-5bb58c2fabb2&cp=51.329069~0.134074&lvl=19&dir=121.42175&pi=-1.52&style=x&mo=z.0&imgid=2c984481-854a-4e40-b661-d67382f452e2&v=2&sV=2&form=S00027", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN14 93", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-06-23" - } -}, -{ - "type": "node", - "id": 9690063050, - "lat": 51.3322015, - "lon": 0.1472509, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN14 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690109437, - "lat": 51.8217919, - "lon": -4.5147955, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690110966, - "lat": 51.8195596, - "lon": -4.4987720, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690127185, - "lat": 52.1438958, - "lon": -4.0153163, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9690132539, - "lat": 52.1796427, - "lon": -3.9569298, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9690494792, - "lat": 53.4216032, - "lon": -2.5348802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA3 237", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9690593819, - "lat": 50.7040741, - "lon": -3.4382737, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "EX5 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690685912, - "lat": 52.1489844, - "lon": -4.0543281, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9690786933, - "lat": 52.2413165, - "lon": -3.9989240, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9690828874, - "lat": 52.3349282, - "lon": -3.9275164, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9693353593, - "lat": 51.1087454, - "lon": -2.6142734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA6 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9693353594, - "lat": 51.0980884, - "lon": -2.6344389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA6 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9693451739, - "lat": 51.1302113, - "lon": -2.7354643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA16 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9693486751, - "lat": 54.8361360, - "lon": -1.6616365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DH7 59" - } -}, -{ - "type": "node", - "id": 9693575205, - "lat": 53.4473307, - "lon": -2.6296502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9693933933, - "lat": 51.6352051, - "lon": -1.1856937, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9695139421, - "lat": 51.0840552, - "lon": -2.5812560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA7 68", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9695139427, - "lat": 51.0877939, - "lon": -2.5655705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA7 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9697301311, - "lat": 50.6888396, - "lon": -1.9566496, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 08:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BH13 318", - "ref:GB:uprn": "10015851132", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9698122643, - "lat": 50.9495356, - "lon": -2.8026745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9698192319, - "lat": 51.2091650, - "lon": -0.5697831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU4 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9698192322, - "lat": 51.1938579, - "lon": -0.5575292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU5 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9698192323, - "lat": 51.1869161, - "lon": -0.5492818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU5 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9698192324, - "lat": 51.1787463, - "lon": -0.5453505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GU5 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9698192325, - "lat": 51.1673870, - "lon": -0.5382748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU5 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9698192326, - "lat": 51.1420021, - "lon": -0.5338972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "GU6 305", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9699800820, - "lat": 55.0836327, - "lon": -1.7641532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE20 613D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9699800824, - "lat": 55.0606281, - "lon": -1.7556332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "NE20 594D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9701252449, - "lat": 51.0911920, - "lon": -2.5086875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1702382253610197", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA7 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 9701252450, - "lat": 51.0945359, - "lon": -2.5131936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA7 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701252458, - "lat": 51.0960368, - "lon": -2.5198804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA7 42", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9701252459, - "lat": 51.0955912, - "lon": -2.5353353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA7 43", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9701284506, - "lat": 51.2370286, - "lon": 0.2381186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "colour": "red", - "ref": "TN15 196", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701302576, - "lat": 51.1108081, - "lon": -2.4827412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA10 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701408307, - "lat": 51.0671660, - "lon": -2.3699127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA9 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701424477, - "lat": 51.1127610, - "lon": -2.4529412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA10 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9701424478, - "lat": 51.1105694, - "lon": -2.4580206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA10 39D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9701491847, - "lat": 51.2225472, - "lon": 0.2294476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN11 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701502167, - "lat": 51.0753224, - "lon": -2.3223880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP8 111", - "ref:GB:uprn": "10015851063", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701504037, - "lat": 51.0640721, - "lon": -2.3140678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP8 113", - "ref:GB:uprn": "10015444809", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9701953714, - "lat": 53.3629982, - "lon": -0.8566657, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9702901775, - "lat": 51.0692037, - "lon": -2.2735812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP8 103", - "ref:GB:uprn": "10015422091", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9702901776, - "lat": 51.0658192, - "lon": -2.2818598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "849880979717638", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SP8 73", - "ref:GB:uprn": "10015398665", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 9704256436, - "lat": 50.2186085, - "lon": -4.8927190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "The post box is just behind the wall on the house side, but since the wall is lower than the post box it doesn't present an obstacle", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 9705024585, - "lat": 51.3350087, - "lon": 0.0762267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15; Su off", - "colour": "red", - "mapillary": "500154364654952", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN14 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2021-12-24" - } -}, -{ - "type": "node", - "id": 9706076623, - "lat": 50.2882067, - "lon": -4.7860614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL26 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 9706078217, - "lat": 50.3056554, - "lon": -4.7629046, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL26 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-04-30" - } -}, -{ - "type": "node", - "id": 9707659389, - "lat": 56.7546880, - "lon": -3.0824292, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DD8 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9707681570, - "lat": 53.0370900, - "lon": -3.5469277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL21 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9707698939, - "lat": 52.9891940, - "lon": -3.5820431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "note": "Appears to be a replacement for the older wall box across the road (seen in StreetView October 2021).", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL21 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9707998381, - "lat": 53.1942313, - "lon": -2.5219886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CW7 208D" - } -}, -{ - "type": "node", - "id": 9708794498, - "lat": 51.0903378, - "lon": -2.2186187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708865674, - "lat": 51.0666266, - "lon": -2.0731920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708865675, - "lat": 51.0670488, - "lon": -2.0804501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP3 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708865676, - "lat": 51.0756114, - "lon": -2.0948683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708884467, - "lat": 51.0718987, - "lon": -2.1780463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708884483, - "lat": 51.0798329, - "lon": -2.1752263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708892957, - "lat": 51.0606476, - "lon": -2.1521187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9708961086, - "lat": 52.8215325, - "lon": -3.4351329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY10 89", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9708981214, - "lat": 51.4565065, - "lon": -0.3591595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9709094876, - "lat": 57.1610614, - "lon": -2.2173526, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9709297427, - "lat": 52.0769167, - "lon": -4.4825346, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9709438063, - "lat": 51.5343894, - "lon": 0.0740090, - "tags": { - "addr:street": "Town Quay", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 7", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9709890017, - "lat": 50.4154670, - "lon": -4.2624934, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 636D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 9710013891, - "lat": 53.7567124, - "lon": -0.2000447, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9710025411, - "lat": 54.6157716, - "lon": -1.2576305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9710064517, - "lat": 50.5587410, - "lon": -4.8727568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45, Sa 10:15", - "post_box:type": "lamp", - "ref": "PL27 146", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 9710064617, - "lat": 50.5558695, - "lon": -4.8880064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "184951560528219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 9710064717, - "lat": 50.5539288, - "lon": -4.8936986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 10:00", - "mapillary": "744354646723710", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 115", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2022-05-02", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 9710064817, - "lat": 50.5503809, - "lon": -4.9020543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30, Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL27 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 9710064917, - "lat": 50.5447297, - "lon": -4.8285086, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 9710119315, - "lat": 50.7070416, - "lon": -3.3649264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9710385487, - "lat": 52.2969773, - "lon": -4.0502415, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9710400087, - "lat": 52.3144047, - "lon": -3.9892045, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9710434267, - "lat": 52.1234635, - "lon": -4.5972278, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9710470363, - "lat": 51.8415125, - "lon": -4.7861549, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9710474669, - "lat": 51.9271682, - "lon": -4.6317285, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9710659002, - "lat": 57.1563853, - "lon": -2.2247375, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9710846000, - "lat": 51.3142195, - "lon": 0.0924609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45; Su off", - "colour": "Red", - "ref": "TN14 70", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9710846001, - "lat": 51.3083829, - "lon": 0.0809846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "red", - "ref": "TN14 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9710846002, - "lat": 51.3267463, - "lon": 0.1196353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN14 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9710846003, - "lat": 51.3125702, - "lon": 0.1102676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "colour": "Red", - "ref": "TN14 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9710846004, - "lat": 51.3099396, - "lon": 0.1042812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN14 89", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9710904477, - "lat": 51.5271599, - "lon": -0.4630184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "UB8 39D" - } -}, -{ - "type": "node", - "id": 9710954829, - "lat": 50.5755165, - "lon": -4.8735135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 08:45", - "post_box:type": "wall", - "ref": "PL27 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-02" - } -}, -{ - "type": "node", - "id": 9712039051, - "lat": 51.0844385, - "lon": -1.9267575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 155D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9712046066, - "lat": 51.0682582, - "lon": -2.0532954, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SP3 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9712096075, - "lat": 51.0636187, - "lon": -1.8103717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP2 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9712114051, - "lat": 53.6666181, - "lon": -2.9011672, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PR9 79", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9713350348, - "lat": 50.7846749, - "lon": -0.6626056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "colour": "red", - "covered": "yes", - "drive_through": "no", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO21 102" - } -}, -{ - "type": "node", - "id": 9717554126, - "lat": 50.4691452, - "lon": -4.7109751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "599636951022475", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL31 144D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9717554127, - "lat": 50.4726334, - "lon": -4.7215394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL31 34D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9717554128, - "lat": 50.4715599, - "lon": -4.7427802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9717554130, - "lat": 50.4561400, - "lon": -4.5569713, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9718445438, - "lat": 51.7440307, - "lon": -3.2843482, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 9718445439, - "lat": 51.7472089, - "lon": -3.2810692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "243892101106882", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 9718447853, - "lat": 53.3829764, - "lon": -2.5591670, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 138", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 9718474996, - "lat": 51.7451638, - "lon": 0.4667113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9718813567, - "lat": 50.7841053, - "lon": -0.6712085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "wall", - "ref": "PO21 9991" - } -}, -{ - "type": "node", - "id": 9718813568, - "lat": 50.7841006, - "lon": -0.6712217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "post_box:type": "wall", - "ref": "PO21 9992" - } -}, -{ - "type": "node", - "id": 9718967726, - "lat": 51.3168874, - "lon": 0.1531095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "Red", - "ref": "TN14 62", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9719966078, - "lat": 50.5151786, - "lon": -4.8285920, - "tags": { - "amenity": "post_box", - "mapillary": "1088959098357491", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9719966083, - "lat": 50.5177950, - "lon": -4.8339877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9719966084, - "lat": 50.5205267, - "lon": -4.8309284, - "tags": { - "amenity": "post_box", - "mapillary": "871279747016997", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9719974628, - "lat": 50.4697483, - "lon": -4.7342320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9719976320, - "lat": 50.4655101, - "lon": -4.7413993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "786772322037349", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-20" - } -}, -{ - "type": "node", - "id": 9720561118, - "lat": 50.9459149, - "lon": -2.8037560, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:15", - "mapillary": "1384714188593961", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA13 56", - "survey:date": "2020-02-06" - } -}, -{ - "type": "node", - "id": 9720655173, - "lat": 53.4109165, - "lon": -2.5410223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA2 340", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9720793017, - "lat": 54.1398569, - "lon": -1.5182535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 28" - } -}, -{ - "type": "node", - "id": 9720881478, - "lat": 54.1300035, - "lon": -1.5282564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 6" - } -}, -{ - "type": "node", - "id": 9720902087, - "lat": 54.2737738, - "lon": -1.6864142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 9" - } -}, -{ - "type": "node", - "id": 9720911840, - "lat": 54.1551284, - "lon": -1.5066296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 8" - } -}, -{ - "type": "node", - "id": 9720934314, - "lat": 54.1424810, - "lon": -1.5241995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "HG4 10", - "survey:date": "2022-08-17", - "wikimedia_commons": "File:Benchmark below letter box outside ^30 Palace Road - geograph.org.uk - 3702156.jpg" - } -}, -{ - "type": "node", - "id": 9720985325, - "lat": 54.1330000, - "lon": -1.5195691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "mapillary": "822069158841057", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HG4 11", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 9721012024, - "lat": 54.1237061, - "lon": -1.5147466, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 17" - } -}, -{ - "type": "node", - "id": 9721081798, - "lat": 50.7539397, - "lon": -3.3947258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9721082680, - "lat": 50.9519257, - "lon": -2.8063112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9721204667, - "lat": 50.7817270, - "lon": -0.6763894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "ref": "PO21 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9721279612, - "lat": 51.1821643, - "lon": -2.0997056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA12 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9721339162, - "lat": 51.1009269, - "lon": -2.6856959, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA6 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9721344489, - "lat": 51.1429222, - "lon": -2.5624712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 125D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9721351019, - "lat": 51.1497385, - "lon": -2.4530076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9721365037, - "lat": 51.1481418, - "lon": -2.5053790, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BA4 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9721365039, - "lat": 51.1516019, - "lon": -2.4949010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9721378392, - "lat": 51.1319787, - "lon": -2.5977530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA4 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9721602672, - "lat": 50.8557241, - "lon": -4.0331285, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9722169681, - "lat": 51.1235966, - "lon": -2.8222552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA7 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9722209217, - "lat": 50.8894659, - "lon": -3.0228925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA20 233", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9722209255, - "lat": 50.8956173, - "lon": -3.0222986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA20 226D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9722213422, - "lat": 50.8012817, - "lon": -2.9900757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX13 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9722562863, - "lat": 51.4510479, - "lon": 0.3200911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "mail:meter": "yes", - "mail:parcel": "yes", - "mail:stamped": "no", - "post_box:type": "meter", - "ref": "DA11 4301P" - } -}, -{ - "type": "node", - "id": 9722562864, - "lat": 51.4510561, - "lon": 0.3200871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DA11 430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9722607618, - "lat": 51.2099997, - "lon": 0.2856687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN10 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9722607619, - "lat": 51.2273763, - "lon": 0.2914099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN11 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9722607620, - "lat": 51.2126458, - "lon": 0.2881066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN10 341", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9722782098, - "lat": 51.7443689, - "lon": -4.7659885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9722891036, - "lat": 51.7028897, - "lon": -4.7768279, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9723126384, - "lat": 53.8752364, - "lon": -2.9395636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "lamp", - "ref": "FY6 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9723265828, - "lat": 51.2289041, - "lon": 0.1953553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN14 206", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9723290140, - "lat": 51.2384075, - "lon": 0.2024887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN14 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9723763368, - "lat": 53.5079452, - "lon": -2.3331515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9723901818, - "lat": 53.9067065, - "lon": -2.9546803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 332D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9723901819, - "lat": 53.8529888, - "lon": -2.9282320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FY6 307D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9724223683, - "lat": 50.7681697, - "lon": -2.9788560, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX13 9", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9724223684, - "lat": 50.7667023, - "lon": -2.9565507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX13 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9724252315, - "lat": 50.7571062, - "lon": -2.9023191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT6 6", - "ref:GB:uprn": "10015441602", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9724678417, - "lat": 50.4220710, - "lon": -4.2906849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 09:45", - "mapillary": "369151208575608", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL12 707", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 9724680519, - "lat": 50.3888820, - "lon": -4.3268632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 07:00", - "ref": "PL11 710", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 9724759617, - "lat": 50.3919157, - "lon": -4.3823018, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 08:00", - "mapillary": "845331936163937", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL11 664", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 9724913022, - "lat": 50.3642690, - "lon": -4.3844378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 09:30", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL11 723", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 9724957718, - "lat": 50.3748455, - "lon": -4.3743941, - "tags": { - "amenity": "post_box", - "ref": "PL11 471", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 9725124818, - "lat": 50.3939621, - "lon": -4.3103993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 09:45", - "post_box:type": "lamp", - "ref": "PL12 773", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 9725143617, - "lat": 50.3915908, - "lon": -4.3043471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:30", - "ref": "PL12 823", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-05-08" - } -}, -{ - "type": "node", - "id": 9726462832, - "lat": 51.4873082, - "lon": -0.2179670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 38D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9726991370, - "lat": 54.1410466, - "lon": -1.5337560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 21" - } -}, -{ - "type": "node", - "id": 9727023835, - "lat": 54.2684231, - "lon": -1.6682954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 25" - } -}, -{ - "type": "node", - "id": 9727032247, - "lat": 54.1081536, - "lon": -1.5049966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 24" - } -}, -{ - "type": "node", - "id": 9727043478, - "lat": 54.1313564, - "lon": -1.5205111, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 29" - } -}, -{ - "type": "node", - "id": 9727535977, - "lat": 50.8399441, - "lon": -0.3196882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9727535978, - "lat": 50.8168643, - "lon": -0.3456378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9727535979, - "lat": 50.8152955, - "lon": -0.3648720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9727535980, - "lat": 50.8155876, - "lon": -0.3684932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9727535981, - "lat": 50.8445383, - "lon": -0.3945881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9727535982, - "lat": 50.8479136, - "lon": -0.3939778, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9727535983, - "lat": 50.8524494, - "lon": -0.3978751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9727537235, - "lat": 50.8400344, - "lon": -0.2712201, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9727537236, - "lat": 50.8402144, - "lon": -0.2773647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9727633317, - "lat": 50.5375003, - "lon": -4.3737068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 09:30", - "fixme": "collection times will change to 0900 / 0700 on 24th april 2023, according to sticker", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL17 416", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9729463577, - "lat": 56.1969888, - "lon": -3.0248667, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9729496130, - "lat": 56.1979215, - "lon": -3.0169390, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9730348599, - "lat": 51.5958138, - "lon": -0.3823699, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9730497540, - "lat": 50.6980903, - "lon": -2.4962340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 104", - "ref:GB:uprn": "10015451431", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9730497541, - "lat": 50.6993637, - "lon": -2.5019230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT2 147", - "ref:GB:uprn": "10015444612", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9730500584, - "lat": 50.7097028, - "lon": -2.5343107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 36", - "ref:GB:uprn": "10015371756", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9730811479, - "lat": 53.5815364, - "lon": -2.6572373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "survey:date": "2022-03-17", - "wheelchair": "yes", - "wikimedia_commons": "File:Houses on Wigan Road, Standish - geograph.org.uk - 3334727.jpg" - } -}, -{ - "type": "node", - "id": 9731401150, - "lat": 50.8905761, - "lon": -4.0342036, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9731920346, - "lat": 50.7074004, - "lon": -2.4419676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 84D", - "ref:GB:uprn": "10015268768", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9733110681, - "lat": 54.1997990, - "lon": -1.4892397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG4 32" - } -}, -{ - "type": "node", - "id": 9733483121, - "lat": 51.8432331, - "lon": -4.1479318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA32 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9733562370, - "lat": 54.7072693, - "lon": -1.2734605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/6609476", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS27 67D" - } -}, -{ - "type": "node", - "id": 9734475402, - "lat": 52.3462522, - "lon": -2.9272422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "ref": "SY7 413", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9735306910, - "lat": 53.2433517, - "lon": -2.5160569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9735398542, - "lat": 51.6095875, - "lon": -0.3999054, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9735415725, - "lat": 51.6053436, - "lon": -0.3981919, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9735426370, - "lat": 51.6080548, - "lon": -0.3778620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 274", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9735457969, - "lat": 51.6065064, - "lon": -0.3901954, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "ref": "HA5 506", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9735475714, - "lat": 54.2842112, - "lon": -1.5931879, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9735654354, - "lat": 51.4583880, - "lon": -0.3571476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW3 64" - } -}, -{ - "type": "node", - "id": 9736053808, - "lat": 53.3675167, - "lon": -0.2432857, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9736061551, - "lat": 53.3543584, - "lon": -0.2947846, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9737680917, - "lat": 51.5165441, - "lon": -0.0768879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 17;E1 117", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-05-13", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9738608538, - "lat": 52.7413895, - "lon": -3.3637887, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9738625680, - "lat": 52.7295157, - "lon": -3.4345762, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9738635009, - "lat": 52.6994289, - "lon": -3.2126201, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9738642360, - "lat": 52.7050624, - "lon": -3.3840348, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9738646058, - "lat": 52.7455341, - "lon": -3.4609489, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9738649655, - "lat": 52.7594633, - "lon": -3.4564315, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9738658282, - "lat": 52.7552712, - "lon": -3.3301192, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9738686051, - "lat": 52.8489889, - "lon": -3.2605123, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9738688324, - "lat": 52.8805947, - "lon": -3.1924278, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9738692906, - "lat": 52.8642468, - "lon": -3.2176713, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9739389712, - "lat": 54.2767099, - "lon": -5.6695504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 62D" - } -}, -{ - "type": "node", - "id": 9739841689, - "lat": 50.7189415, - "lon": -3.2206201, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9739868372, - "lat": 51.4557436, - "lon": -0.3539438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9739868373, - "lat": 51.4495893, - "lon": -0.3488653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9739868374, - "lat": 51.4438409, - "lon": -0.3572944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9739868375, - "lat": 51.4450209, - "lon": -0.3656748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW2 162D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9739868376, - "lat": 51.4368268, - "lon": -0.3562261, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9739868377, - "lat": 51.4495864, - "lon": -0.3628841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9739931770, - "lat": 50.5876620, - "lon": -4.3480213, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 9739993287, - "lat": 50.1604213, - "lon": -5.0744236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 19D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9740301361, - "lat": 51.7477731, - "lon": -4.3410236, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9740378616, - "lat": 51.4754005, - "lon": -0.3754949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429617, - "lat": 51.4688236, - "lon": -0.3718094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429618, - "lat": 51.4710341, - "lon": -0.3804486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9740429619, - "lat": 51.4646123, - "lon": -0.3625720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429620, - "lat": 51.4714945, - "lon": -0.3671005, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429621, - "lat": 51.4584435, - "lon": -0.3694138, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429622, - "lat": 51.4751801, - "lon": -0.3647859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429623, - "lat": 51.4669521, - "lon": -0.3584598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429624, - "lat": 51.4770837, - "lon": -0.3570177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429625, - "lat": 51.4732094, - "lon": -0.3625172, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429626, - "lat": 51.4651134, - "lon": -0.3523724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429627, - "lat": 51.4771787, - "lon": -0.3636723, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429628, - "lat": 51.4627692, - "lon": -0.3514732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429629, - "lat": 51.4696023, - "lon": -0.3526377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429630, - "lat": 51.4710107, - "lon": -0.3738199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429631, - "lat": 51.4640496, - "lon": -0.3561584, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429632, - "lat": 51.4691188, - "lon": -0.3664559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740429633, - "lat": 51.4720785, - "lon": -0.3833510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9740438278, - "lat": 51.4336613, - "lon": -0.3371725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TW1 102D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9740438279, - "lat": 51.4574964, - "lon": -0.3378306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740438280, - "lat": 51.4377542, - "lon": -0.3316173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9740447080, - "lat": 51.4500785, - "lon": 0.3086646, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA10 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9740447305, - "lat": 51.7822024, - "lon": -4.2987564, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9740449682, - "lat": 51.5723368, - "lon": -3.0130124, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9740449683, - "lat": 51.5688778, - "lon": -3.0178350, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "level": "0", - "mapillary": "304878214345612", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "survey:date": "2019-07-07", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9740724601, - "lat": 50.7911214, - "lon": -0.6214400, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9740812082, - "lat": 53.5647531, - "lon": -0.0841101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Kj2w8bCp/DN31-288-D.jpg", - "location": "Abbey Walk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN31 288D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9741566474, - "lat": 50.8839356, - "lon": -2.7957932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "mapillary": "949257625912024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA18 230", - "survey:date": "2020-07-09" - } -}, -{ - "type": "node", - "id": 9741605322, - "lat": 50.8955088, - "lon": -2.7930681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00, Sa 10:30" - } -}, -{ - "type": "node", - "id": 9741623865, - "lat": 50.9130502, - "lon": -2.7893210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 08:45" - } -}, -{ - "type": "node", - "id": 9741631634, - "lat": 50.9097490, - "lon": -2.7946318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00" - } -}, -{ - "type": "node", - "id": 9741663261, - "lat": 50.7787945, - "lon": -2.2741173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "2021-09-14", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 121D", - "ref:GB:uprn": "10015337891", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9741998116, - "lat": 53.0881042, - "lon": -3.2971885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9742042862, - "lat": 53.0927490, - "lon": -3.2830406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9742042867, - "lat": 53.0927719, - "lon": -3.2695938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL15 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9742145315, - "lat": 51.7599563, - "lon": 0.4998571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9742167633, - "lat": 51.1574337, - "lon": -0.5336448, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU5 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9742167635, - "lat": 51.0989608, - "lon": -0.4964104, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9742167636, - "lat": 51.1931667, - "lon": -0.5568225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU5 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9742201586, - "lat": 50.8414359, - "lon": -4.5269593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 62D" - } -}, -{ - "type": "node", - "id": 9742244386, - "lat": 50.2173360, - "lon": -5.1717090, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9742285834, - "lat": 50.0931391, - "lon": -5.1358085, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 9742310158, - "lat": 50.2674885, - "lon": -4.9128781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9743106491, - "lat": 50.9512722, - "lon": -4.1397182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9744144182, - "lat": 50.8686173, - "lon": -4.5226952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Gold lettering", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX23 19D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9744825209, - "lat": 50.8360151, - "lon": -4.4692939, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9744943475, - "lat": 50.7607841, - "lon": -4.5433519, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9745009150, - "lat": 50.7500196, - "lon": -4.3937992, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9745061115, - "lat": 50.6770567, - "lon": -4.4335369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9745062785, - "lat": 50.6691140, - "lon": -4.3781081, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9747545165, - "lat": 52.7664275, - "lon": -0.5039307, - "tags": { - "amenity": "post_box", - "note": "wall box hasbeen replaced by lamp box nearer the road", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9747557111, - "lat": 52.7627470, - "lon": -0.6286303, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9748409226, - "lat": 55.3038778, - "lon": -1.7949192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NE65 101" - } -}, -{ - "type": "node", - "id": 9750104755, - "lat": 57.1607059, - "lon": -2.1425912, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 7GN", - "addr:street": "North Anderson Drive", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB16 158D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9750364584, - "lat": 50.2799430, - "lon": -4.8400401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "PL26 104D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9750463483, - "lat": 56.6819469, - "lon": -3.0050084, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9751075940, - "lat": 51.2386561, - "lon": -2.9981223, - "tags": { - "amenity": "post_box", - "note": "Seeming the same reference as postbox other side of the ATM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA8 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9751075942, - "lat": 51.2386523, - "lon": -2.9981746, - "tags": { - "amenity": "post_box", - "note": "Seeming the same reference as postbox other side of the ATM", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA8 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9751075946, - "lat": 51.2314145, - "lon": -3.0002908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA8 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9751796113, - "lat": 51.4944669, - "lon": -0.2416556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 44D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9751808361, - "lat": 51.4973925, - "lon": -0.2314034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 25", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9751893254, - "lat": 52.0446645, - "lon": -1.1505105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9753136633, - "lat": 51.7283361, - "lon": 0.4766869, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 123D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9753893289, - "lat": 51.2808033, - "lon": -3.0128771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA8 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9754143433, - "lat": 51.6984215, - "lon": 0.2437748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9754317468, - "lat": 51.5752544, - "lon": -0.3594478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "last_collection": "5.30pm, Sat 12.30pm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "HA2", - "ref": "HA2 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9754317469, - "lat": 51.5761004, - "lon": -0.4021741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA4 236D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9754317470, - "lat": 51.5648515, - "lon": -0.4608223, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB10 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9754317471, - "lat": 51.5837273, - "lon": -0.5593777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL9 114D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9754365833, - "lat": 51.5711475, - "lon": -0.7010565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00, Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL8 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9754365834, - "lat": 51.5670353, - "lon": -0.6956857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL8 152D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9754365835, - "lat": 51.5570985, - "lon": -0.6816504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL6 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9754365837, - "lat": 51.5228799, - "lon": -0.6918180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL6 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9756590603, - "lat": 53.5030512, - "lon": -2.3983237, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9756974634, - "lat": 53.3692934, - "lon": -2.4396867, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 58", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9757940510, - "lat": 51.2689142, - "lon": -2.8956994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS26 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9757940511, - "lat": 51.2668726, - "lon": -2.9061339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS26 1104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9758109870, - "lat": 51.2274809, - "lon": -2.8946775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "684723550237206", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA9 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 9758109890, - "lat": 51.2270332, - "lon": -2.8898817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TA9 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9758309531, - "lat": 50.0225702, - "lon": -5.0950092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR12 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9758309532, - "lat": 50.0302248, - "lon": -5.1007677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9759226092, - "lat": 50.8040947, - "lon": -2.7765584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT8 60D", - "ref:GB:uprn": "10015302443", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9759518233, - "lat": 54.8423134, - "lon": -1.5940294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "DH2 362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9759672157, - "lat": 52.6150181, - "lon": -3.4072707, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9759717196, - "lat": 52.6002294, - "lon": -3.7675615, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9759752820, - "lat": 52.6443836, - "lon": -3.3340200, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9759790843, - "lat": 52.6115936, - "lon": -3.6275636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY19 505", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9759849485, - "lat": 52.5647790, - "lon": -3.6544258, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9759876833, - "lat": 52.6264452, - "lon": -3.6190607, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY19 517", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9759884554, - "lat": 52.6240178, - "lon": -3.7453504, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9759887880, - "lat": 52.6560604, - "lon": -3.7050672, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9759929756, - "lat": 52.5832492, - "lon": -3.1907377, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9759989815, - "lat": 52.5697097, - "lon": -3.2117849, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9760115691, - "lat": 57.1563262, - "lon": -2.1699260, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 6QJ", - "addr:street": "Springhill Road", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9760439894, - "lat": 54.2573613, - "lon": -5.9440977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "yellow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9762176277, - "lat": 52.8950583, - "lon": -2.1513909, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9764249072, - "lat": 50.0922958, - "lon": -5.2587368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa-Su off", - "colour": "red", - "drive_through": "no", - "note": "Post box is operated by Flambards Theme Park and not Royal Mail. Post box has collection plated which states \"postcards only\" and the box is emptied on weekdays and contents forwarded to Royal Mail for delivery.", - "operator": "Flambards", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9764451980, - "lat": 51.5788749, - "lon": -3.0369160, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9764837739, - "lat": 56.1911354, - "lon": -4.0748938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9764925818, - "lat": 51.2045541, - "lon": -0.7878047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-06-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "yes", - "drive_through": "no", - "material": "brick", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9765586202, - "lat": 50.0486115, - "lon": -5.1522920, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 15D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9765586203, - "lat": 50.0645970, - "lon": -5.1394900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR12 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9765586204, - "lat": 50.0490536, - "lon": -5.1193641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 24D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9765586205, - "lat": 50.0655575, - "lon": -5.1573683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9766306324, - "lat": 50.4105023, - "lon": -4.1271910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL6 242D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9767883065, - "lat": 55.7682340, - "lon": -2.0043161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-05-19", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9768175497, - "lat": 54.2325498, - "lon": -1.5917857, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9769515747, - "lat": 53.5610863, - "lon": -2.7707700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "Red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 281", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9770801916, - "lat": 55.6904492, - "lon": -3.6681488, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9771055328, - "lat": 50.7918254, - "lon": -0.6692726, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO22 29D", - "source": "survey", - "survey:date": "2022-04-23" - } -}, -{ - "type": "node", - "id": 9771074580, - "lat": 50.7893067, - "lon": -0.6582332, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PO22 80D", - "source": "survey", - "survey:date": "2022-04-23" - } -}, -{ - "type": "node", - "id": 9773050094, - "lat": 51.4730035, - "lon": -0.2866549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9773050095, - "lat": 51.4814408, - "lon": -0.2798465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30", - "note": "Only accessible during National Archives opening hours", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TW9 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9773322505, - "lat": 52.2313537, - "lon": -1.4201505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "note": "collection plate missing but ref number marked on box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9773715677, - "lat": 51.8620291, - "lon": -2.2071280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9775810099, - "lat": 51.7704444, - "lon": -1.9729459, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9775869614, - "lat": 51.3160633, - "lon": -2.1952420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA14 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9775898210, - "lat": 51.3171035, - "lon": -2.2023954, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA14 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9776678777, - "lat": 51.3160661, - "lon": -2.2257920, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9777629855, - "lat": 58.9389874, - "lon": -2.7298659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 68", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9778089972, - "lat": 50.2511560, - "lon": -5.2668275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9778089973, - "lat": 50.2476914, - "lon": -5.2669545, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR16 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778089974, - "lat": 50.2632466, - "lon": -5.2462232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR16 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778089975, - "lat": 50.2072338, - "lon": -5.2583310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "Post box is embedded in a rendered pillar sitting on top of a wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pillar", - "post_box:type": "lamp", - "ref": "TR16 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778089976, - "lat": 50.1821118, - "lon": -5.2393069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778089977, - "lat": 50.1980473, - "lon": -5.2102409, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778166940, - "lat": 50.2026895, - "lon": -5.1996096, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR16 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778166941, - "lat": 50.2121848, - "lon": -5.1673899, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778166942, - "lat": 50.2315386, - "lon": -5.1766124, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9778166943, - "lat": 50.2482756, - "lon": -5.1642368, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9779284343, - "lat": 51.2885582, - "lon": 0.3251142, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "colour": "Red", - "ref": "TN15 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779284344, - "lat": 51.2793193, - "lon": 0.3030274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779284345, - "lat": 51.2760658, - "lon": 0.3107456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "Red", - "ref": "TN15 252", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9779284346, - "lat": 51.2921769, - "lon": 0.3144169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 288", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779284347, - "lat": 51.2906538, - "lon": 0.3122769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779392493, - "lat": 51.2791811, - "lon": 0.3192782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779484090, - "lat": 51.4337487, - "lon": -0.1135359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE27 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9779484091, - "lat": 51.4311758, - "lon": -0.0857649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "note": "short door style", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE21 6D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9779484092, - "lat": 51.4179013, - "lon": -0.0818319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:05; Sa 11:45", - "drive_through": "no", - "note": "No ref on the box but RMNY confirms https://www.royalmail.com/services-near-you/postbox/farquhar-road-jasper-road-se19-1pb/0000SE1929", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "SE19 19", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9779922207, - "lat": 50.8031975, - "lon": -1.8908810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "fixme": "Position relative to Post Office, which I don't think is accurate", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779985245, - "lat": 51.2162024, - "lon": 0.2471021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN11 313", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779985246, - "lat": 51.2271385, - "lon": 0.2603354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:30; Su off", - "colour": "Red", - "ref": "TN11 91", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9779985247, - "lat": 51.2096972, - "lon": 0.2460215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN11 315", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9779985248, - "lat": 51.2086959, - "lon": 0.2528123, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN11 278", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9779985249, - "lat": 51.2011892, - "lon": 0.2446047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:30; Su off", - "colour": "Red", - "ref": "TN11 289", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9781736450, - "lat": 50.2631560, - "lon": -5.1147258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR3 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9782300507, - "lat": 58.9506626, - "lon": -2.8913011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW17 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9783412420, - "lat": 50.6567575, - "lon": -2.3664691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 35", - "ref:GB:uprn": "10015271965", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9783412421, - "lat": 50.6474020, - "lon": -2.3669333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 154", - "ref:GB:uprn": "10015447812", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9783412426, - "lat": 50.6730314, - "lon": -2.3509740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT2 94", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9784105193, - "lat": 50.9982255, - "lon": -4.3989551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 130D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9785328817, - "lat": 53.1557556, - "lon": -3.1691198, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9787572718, - "lat": 53.5625509, - "lon": -0.0996628, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/tCBnfXYh/DN34-233.jpg", - "location": "Littlefield Lane, Rosalind Avenue", - "note": "at the time of my survey there was no info plate on the box plus the letter slot had been much reduced in size", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN34 233", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9788385691, - "lat": 52.8879442, - "lon": -1.5294828, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DE23 971D" - } -}, -{ - "type": "node", - "id": 9788911984, - "lat": 53.0906089, - "lon": -3.0304484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9789155907, - "lat": 53.5080984, - "lon": -2.4285010, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M28 384", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9790990093, - "lat": 51.8741516, - "lon": -5.1970699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9791000966, - "lat": 51.8978196, - "lon": -5.2064071, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9791149560, - "lat": 52.4572826, - "lon": 1.5630680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:design": "indoor", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9791272947, - "lat": 54.6720244, - "lon": -5.9525012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9791426714, - "lat": 50.6380263, - "lon": -4.4360752, - "tags": { - "amenity": "post_box", - "note": "Looks like a genuine Royal Mail lamp box made by Carron Co but not an official postal box. Collection plate states place as Tremuddlewick so very much part of the theme park", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9791868750, - "lat": 50.4672000, - "lon": -4.7347255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "622240303294101", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-06-01" - } -}, -{ - "type": "node", - "id": 9792515108, - "lat": 50.8828284, - "lon": 0.6190876, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9793284015, - "lat": 54.8724696, - "lon": -1.6107074, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "DH2 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9793284016, - "lat": 54.8731982, - "lon": -1.6062016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH2 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9793509134, - "lat": 54.8754192, - "lon": -1.4367153, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9793824719, - "lat": 50.5802203, - "lon": -4.9000553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 09:00", - "post_box:type": "lamp", - "ref": "PL27 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-03" - } -}, -{ - "type": "node", - "id": 9793828500, - "lat": 51.2297698, - "lon": 1.1963663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "CT3 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9793906366, - "lat": 53.5075438, - "lon": -1.0469194, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN3 334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9793950283, - "lat": 50.7385604, - "lon": -1.9922445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 5D", - "ref:GB:uprn": "10015307079", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9793950284, - "lat": 50.7401559, - "lon": -1.9709424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 268D", - "ref:GB:uprn": "10015445764", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9793950285, - "lat": 50.7523240, - "lon": -1.9544056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH17 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9793950288, - "lat": 50.7528248, - "lon": -1.9686372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 16D", - "ref:GB:uprn": "10015302937", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9793950300, - "lat": 50.7980687, - "lon": -1.9705080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH21 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9793981469, - "lat": 50.8522069, - "lon": -2.0897812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 15D", - "ref:GB:uprn": "10015306334", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9793981505, - "lat": 50.8441583, - "lon": -2.1096579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2021-09-14", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 99D", - "ref:GB:uprn": "10015442310", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9793981626, - "lat": 50.8165652, - "lon": -2.1173556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "4064211590374333", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 106D", - "ref:GB:uprn": "10015435855", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 9793981635, - "lat": 50.8234891, - "lon": -2.1276738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "323102706304612", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT11 12D", - "ref:GB:uprn": "10015273148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 9793981684, - "lat": 50.8299982, - "lon": -2.1638808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 116D" - } -}, -{ - "type": "node", - "id": 9793981800, - "lat": 50.8281560, - "lon": -2.1847539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9794031012, - "lat": 52.7984582, - "lon": 1.5505985, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9794048729, - "lat": 52.8163073, - "lon": 0.6554611, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9794200816, - "lat": 54.9056317, - "lon": -5.0156534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DG9 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9794916805, - "lat": 50.9868573, - "lon": -0.2730348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9794916806, - "lat": 50.9897765, - "lon": -0.2721621, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9794925046, - "lat": 50.9919183, - "lon": -0.3039278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "ref": "RH13 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9794925047, - "lat": 50.9893291, - "lon": -0.3136173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "RH13 119D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9794925048, - "lat": 50.9778625, - "lon": -0.3250676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH13 187", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9794925049, - "lat": 50.9598740, - "lon": -0.3044964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH13 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9794925050, - "lat": 50.9628071, - "lon": -0.2819230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 221D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9794925051, - "lat": 50.9760991, - "lon": -0.2796109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH13 146D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9795007459, - "lat": 51.3733151, - "lon": -2.1772534, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN12 186D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9795007460, - "lat": 51.3763259, - "lon": -2.1814162, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 204", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9795335102, - "lat": 54.8653208, - "lon": -1.8520826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9795335105, - "lat": 55.0224286, - "lon": -1.7834282, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9795335108, - "lat": 54.7415674, - "lon": -1.4165260, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9795335112, - "lat": 55.0455581, - "lon": -1.7495984, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9795335116, - "lat": 54.7631475, - "lon": -1.3831690, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9795410418, - "lat": 54.8616837, - "lon": -1.8078078, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9795410420, - "lat": 54.7485747, - "lon": -1.4453721, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9795410421, - "lat": 54.8768978, - "lon": -1.7502929, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9795410422, - "lat": 54.8637546, - "lon": -1.7453078, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9795410426, - "lat": 54.7570161, - "lon": -1.3923211, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9795410427, - "lat": 54.8704087, - "lon": -1.8517937, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9795410432, - "lat": 54.9989277, - "lon": -1.6902444, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9795410435, - "lat": 54.8608881, - "lon": -1.8463241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9795410437, - "lat": 55.0375823, - "lon": -1.7512391, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9795410438, - "lat": 54.8607676, - "lon": -1.8425369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9795511588, - "lat": 54.8816939, - "lon": -4.1844370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DG7 81", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9795528933, - "lat": 53.2607940, - "lon": -1.2113073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9795701348, - "lat": 50.1331689, - "lon": -5.4157694, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:15; Sa 08:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9795701349, - "lat": 50.1177708, - "lon": -5.4254671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9795701350, - "lat": 50.1190829, - "lon": -5.4412880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "TR20 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9795701351, - "lat": 50.1152857, - "lon": -5.3788173, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 08:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9795701352, - "lat": 50.1119462, - "lon": -5.3835340, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 08:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9796284824, - "lat": 50.8791347, - "lon": 0.6106647, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9796613345, - "lat": 51.4900063, - "lon": -3.1618135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 152D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9796613346, - "lat": 51.4917067, - "lon": -3.1639431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 107D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9796616244, - "lat": 51.4882089, - "lon": -3.1737741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF24 51D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9796783303, - "lat": 51.1973086, - "lon": 0.2202959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN11 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9796783304, - "lat": 51.1817693, - "lon": 0.3193015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN11 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9796783305, - "lat": 51.1960373, - "lon": 0.2131401, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN11 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9796784161, - "lat": 57.0405422, - "lon": -3.0663794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 259", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9796894632, - "lat": 51.3071478, - "lon": 0.2746499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "colour": "Red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN15 141", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9797115963, - "lat": 50.6820488, - "lon": -2.3814264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 192", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9797247233, - "lat": 54.8727034, - "lon": -1.3944335, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9797403121, - "lat": 55.0528355, - "lon": -3.3868986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DG11 30", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9799002933, - "lat": 50.4714648, - "lon": -4.7252176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9799454963, - "lat": 51.7642871, - "lon": -2.7589022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9799665176, - "lat": 50.6153841, - "lon": -2.4994138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT3 39D", - "ref:GB:uprn": "10015455059", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 9799745553, - "lat": 50.8587767, - "lon": -2.9446337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA20 212D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9799745554, - "lat": 50.8571394, - "lon": -2.9083166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA20 232D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9799757655, - "lat": 50.8392692, - "lon": -2.8400708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA18 121", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9801382417, - "lat": 54.0818135, - "lon": -1.5568012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG3 Markington Post Box", - "royal_cypher": "EIIR", - "source": "https://www.royalmail.com/services-near-you#/results?&postcode=HG3%203NP&latitude=54.081775&longitude=-1.556449&searchRadius=40&count=7&officeType=postboxes&filters=&selectedName=MARKINGTON%20-%20POST-BOX" - } -}, -{ - "type": "node", - "id": 9801382418, - "lat": 54.0868173, - "lon": -1.5545199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HG3 Waterloo D", - "royal_cypher": "EIIR", - "source": "https://www.royalmail.com/services-near-you#/results?&postcode=HG3%203NP&latitude=54.081775&longitude=-1.556449&searchRadius=40&count=7&officeType=postboxes&filters=&selectedName=WATERLOO%20D" - } -}, -{ - "type": "node", - "id": 9802026206, - "lat": 54.6034041, - "lon": -1.2794620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9802203174, - "lat": 52.3415049, - "lon": 1.5389645, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9802370133, - "lat": 50.8795617, - "lon": -2.9711393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1313914345923870", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA20 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 9802370134, - "lat": 50.8728933, - "lon": -2.9702260, - "tags": { - "amenity": "post_box", - "mapillary": "791127102761459", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TA20 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9802370135, - "lat": 50.8698508, - "lon": -2.9638048, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA20 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9802444537, - "lat": 50.8949662, - "lon": -2.9897082, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "664495602412237", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA20 560D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-08-10" - } -}, -{ - "type": "node", - "id": 9802444538, - "lat": 50.8905649, - "lon": -2.9824930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA20 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9802444539, - "lat": 50.8883103, - "lon": -2.9750057, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA20 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9804227114, - "lat": 50.1839448, - "lon": -5.3495922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR27 121D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9804227115, - "lat": 50.1631208, - "lon": -5.3757056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9804227116, - "lat": 50.1668783, - "lon": -5.3939015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9804242617, - "lat": 50.1791187, - "lon": -5.3562573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR27 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9804242618, - "lat": 50.1467783, - "lon": -5.3709002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR27 149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9804839480, - "lat": 51.7703792, - "lon": -2.4255414, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 17:15; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GL14 186", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9805059679, - "lat": 50.0561933, - "lon": -5.0664544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR12 28D", - "royal_cypher": "EIIR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9805620962, - "lat": 50.2447209, - "lon": -5.2578354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR16 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9807060395, - "lat": 50.1137829, - "lon": -5.4356391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9807060396, - "lat": 50.1312012, - "lon": -5.4283494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:45; Sa 08:45; Su off", - "drive_through": "no", - "note": "A notable very early Victorian post box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR20 116", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9807210259, - "lat": 50.9250923, - "lon": -3.1990774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX15 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9807635127, - "lat": 51.4925698, - "lon": -0.2323839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 8", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9807635128, - "lat": 51.4923552, - "lon": -0.1904194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9807635129, - "lat": 51.4909157, - "lon": -0.1880832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW5 20D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9807635130, - "lat": 51.4793040, - "lon": -0.2225174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9807635145, - "lat": 51.4784045, - "lon": -0.2203260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635146, - "lat": 51.4769202, - "lon": -0.2217570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 49", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635151, - "lat": 51.4776786, - "lon": -0.2167694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 30", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9807635152, - "lat": 51.4750408, - "lon": -0.2141543, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SW6 4;SW6 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9807635157, - "lat": 51.4707746, - "lon": -0.2012046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 36", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635158, - "lat": 51.4662775, - "lon": -0.1975299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SW6 20P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9807635159, - "lat": 51.4675967, - "lon": -0.1944709, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 5", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9807635160, - "lat": 51.4657862, - "lon": -0.1923881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9807635161, - "lat": 51.4789015, - "lon": -0.1924713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 41", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9807635162, - "lat": 51.4741712, - "lon": -0.1878767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 17", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635163, - "lat": 51.4712876, - "lon": -0.1941209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 22", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635177, - "lat": 51.4719968, - "lon": -0.1949778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 50", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635178, - "lat": 51.4757232, - "lon": -0.2006266, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 8", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9807635179, - "lat": 51.4806788, - "lon": -0.2070907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 1", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9807635207, - "lat": 51.4817671, - "lon": -0.2222599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9807635208, - "lat": 51.4848839, - "lon": -0.2197668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9807635209, - "lat": 51.4861500, - "lon": -0.2144507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W6 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9808308504, - "lat": 53.2389240, - "lon": -2.5695317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "CW8 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9809349902, - "lat": 50.9721281, - "lon": -3.2187648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA21 357D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9810546096, - "lat": 51.2377853, - "lon": -0.8334117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU10 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9811231613, - "lat": 57.1203424, - "lon": -2.1436872, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB10 7BB", - "addr:street": "Gaitside Terrace", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB10 161D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9811860462, - "lat": 51.4621388, - "lon": -0.0916500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE5 33D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9811860463, - "lat": 51.4620928, - "lon": -0.0976774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SE24 16", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9811860464, - "lat": 51.4636767, - "lon": -0.1012263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE24 4", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9811860465, - "lat": 51.4683051, - "lon": -0.0940109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "Just inside main entrance on the left", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "SE5 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9811860466, - "lat": 51.4688211, - "lon": -0.0915498, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "note": "private posting box with no plate for collection times/ref Need to be buzzed into the hospital, to left of main desk at end of corridor", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9812206422, - "lat": 52.4768637, - "lon": 1.7537155, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9812206423, - "lat": 52.4768465, - "lon": 1.7536950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:45; Sa 11:45", - "colour": "red", - "note": "This is a meter box adapted to accept parcels. Not sure if the ref needs the P suffix or not.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NR32 3260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9812617503, - "lat": 51.3182943, - "lon": 0.1264395, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 16:00; Su off", - "colour": "Red", - "mapillary": "1082006285770772", - "note": "Obscured by hedge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN14 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9812712388, - "lat": 51.7526488, - "lon": 0.5192119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 19:30", - "drive_through": "yes", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM2 506", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9812714621, - "lat": 50.9298640, - "lon": -2.2604987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT10 4", - "ref:GB:uprn": "10015478318", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9812724031, - "lat": 51.0330873, - "lon": -2.3349538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP8 81D", - "ref:GB:uprn": "10015289318", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9812726431, - "lat": 50.9750129, - "lon": -2.2876737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT10 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9812790517, - "lat": 51.0830416, - "lon": -2.3894933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA9 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9812790518, - "lat": 51.0906301, - "lon": -2.3890020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA9 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9812829159, - "lat": 54.9046060, - "lon": -1.5734643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH3 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9813415196, - "lat": 50.9973452, - "lon": -0.3725560, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "note": "Collection plate seems to have been cut to fit, chopping off the reference", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "no", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9813845170, - "lat": 57.1241652, - "lon": -2.1297035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "ref": "AB10 150", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9813845180, - "lat": 57.1205291, - "lon": -2.1312095, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB10 7DF", - "addr:street": "Craigievar Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "AB10 160D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9814309092, - "lat": 53.2261963, - "lon": -4.1370863, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "LL57 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9815327023, - "lat": 57.4459711, - "lon": -3.1284220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "AB55 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9815563706, - "lat": 55.3117017, - "lon": -4.5521545, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA19 70", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9817003607, - "lat": 51.2559663, - "lon": -0.9560751, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RG29 145D" - } -}, -{ - "type": "node", - "id": 9817176609, - "lat": 53.2808417, - "lon": -3.8273693, - "tags": { - "amenity": "post_box", - "ref": "LL32 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9818584283, - "lat": 53.0650196, - "lon": -2.2015351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "ST6 379" - } -}, -{ - "type": "node", - "id": 9818688696, - "lat": 54.4626452, - "lon": -6.0835784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "silver;purple", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9820295810, - "lat": 53.0644747, - "lon": -3.2761979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9820337256, - "lat": 50.1371723, - "lon": -5.3801779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR20 134", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9820337257, - "lat": 50.1014037, - "lon": -5.3812728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "drive_through": "no", - "mapillary": "1160920584746271", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "source:position": "Mapillary 2022-04-25", - "survey:date": "2022-09-04" - } -}, -{ - "type": "node", - "id": 9820337258, - "lat": 50.1049345, - "lon": -5.3854666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR20 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9820803463, - "lat": 53.2973679, - "lon": -4.0698901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:30, Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL58 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9821303755, - "lat": 51.7972007, - "lon": -4.2156053, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9821308299, - "lat": 52.6635004, - "lon": -1.5909925, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9821311419, - "lat": 51.7778544, - "lon": -4.1711135, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9821781524, - "lat": 50.1287945, - "lon": -5.4121728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:45; Sa 09:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "TR20 42", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9822438321, - "lat": 57.1530292, - "lon": -2.1536288, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB16 6UA", - "addr:street": "Mastrick Drive", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB16 32" - } -}, -{ - "type": "node", - "id": 9822947945, - "lat": 53.2224664, - "lon": -4.2665338, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9822987542, - "lat": 53.2998436, - "lon": -4.6283487, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9823003259, - "lat": 53.2520904, - "lon": -4.3736023, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9823116101, - "lat": 51.5818499, - "lon": -2.0971173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN16 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9823422217, - "lat": 54.0756338, - "lon": -1.6554147, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-16", - "collection_times": "Mo-Fr 16:45; Sa 13:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HG3 139", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9824736021, - "lat": 51.6533156, - "lon": -0.5044089, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD3 182D" - } -}, -{ - "type": "node", - "id": 9826097419, - "lat": 53.5459232, - "lon": -0.1150078, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/bJPGt3zv/DN33-5D.jpg", - "location": "Beechwood Avenue, Pinewood Crescent", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 5D", - "ref:GB:uprn": "10015433327", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9828062317, - "lat": 54.1430584, - "lon": -1.7022433, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9828438694, - "lat": 53.4628663, - "lon": -2.0764609, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK14 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9828562534, - "lat": 57.5169440, - "lon": -4.4579672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV6 158", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9828603439, - "lat": 52.9087650, - "lon": 1.2798751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-04-19", - "operator": "Royal Mail", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "NR11 1168D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9828621475, - "lat": 56.2177112, - "lon": -5.6330993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA34 15D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9828628227, - "lat": 56.2559442, - "lon": -5.6512532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:manufacturer": "W.T. Allen & Co. Ltd. London", - "post_box:type": "wall", - "ref": "PA34 31D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9828628228, - "lat": 56.2491768, - "lon": -5.6501452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA34 75", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9829202069, - "lat": 56.1132698, - "lon": -3.7948306, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9829272720, - "lat": 56.3965052, - "lon": -3.7384390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH7 69D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9829558347, - "lat": 54.2699353, - "lon": -1.3661219, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9829567450, - "lat": 53.5500359, - "lon": -0.4794342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9831016579, - "lat": 57.4701680, - "lon": -1.7889342, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9831656013, - "lat": 54.8764438, - "lon": -1.6010468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH2 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9831660746, - "lat": 53.1008156, - "lon": -0.0472396, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9831675927, - "lat": 51.3354886, - "lon": 0.2959377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9831675928, - "lat": 51.3435219, - "lon": 0.3154792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "colour": "Red", - "mapillary": "335222498023918", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN15 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2019-09-28" - } -}, -{ - "type": "node", - "id": 9831675929, - "lat": 51.3560558, - "lon": 0.2964716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 232", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9831675930, - "lat": 51.3293446, - "lon": 0.3271313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN15 226", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9831675931, - "lat": 51.3359171, - "lon": 0.3053168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN15 234", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9831675932, - "lat": 51.3425092, - "lon": 0.3325208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 228", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9833357651, - "lat": 57.4705246, - "lon": -1.7789325, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9833737815, - "lat": 52.5878772, - "lon": 1.5517160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9835651265, - "lat": 51.6654981, - "lon": -0.3532167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9836895093, - "lat": 51.3812837, - "lon": -2.3751853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal_Mail", - "post_box:type": "pillar", - "ref": "BA2 1020D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9837289958, - "lat": 51.8423937, - "lon": -2.1814569, - "tags": { - "amenity": "post_box", - "fixme": "Ref", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9837370575, - "lat": 57.3936521, - "lon": -7.3709819, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9838006269, - "lat": 50.1252370, - "lon": -5.4360964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR20 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9838006270, - "lat": 50.1129229, - "lon": -5.4001716, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR20 48", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9838006271, - "lat": 50.1158347, - "lon": -5.4185331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9838238562, - "lat": 52.7578783, - "lon": 1.4650916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9838653674, - "lat": 51.6388782, - "lon": -0.5210171, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WD3 137" - } -}, -{ - "type": "node", - "id": 9838968858, - "lat": 57.0550314, - "lon": -2.5033154, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 434", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9839402989, - "lat": 56.2702365, - "lon": -5.4938418, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "362196612957526", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA34 92D", - "royal_cypher": "scottish_crown", - "survey:date": "2023-11-21" - } -}, -{ - "type": "node", - "id": 9839818289, - "lat": 57.6093342, - "lon": -7.4920791, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9839920400, - "lat": 52.4045200, - "lon": -1.5197734, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "As at Sunday 19.06.2022 there is a postbox sticker notice saying that the collection times for this postbox have changed.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CV1 35", - "source": "survey", - "survey_date": "2022-06-19" - } -}, -{ - "type": "node", - "id": 9841525277, - "lat": 57.5411829, - "lon": -3.0819474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB55 61", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9842312032, - "lat": 51.8929296, - "lon": -2.5395588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR9 630", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9842339826, - "lat": 51.8958170, - "lon": -2.5252618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR9 561", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9842376039, - "lat": 51.8045797, - "lon": -2.7154067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP25 482", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9842392632, - "lat": 51.7971721, - "lon": -2.7218011, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP25 528", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9843509237, - "lat": 54.5578818, - "lon": -1.3353454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS18 405D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9844079159, - "lat": 54.5945026, - "lon": -5.8411795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9844196068, - "lat": 53.4282445, - "lon": -2.6606047, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 22", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9844272982, - "lat": 51.4492905, - "lon": -3.1964258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9844389561, - "lat": 50.8007361, - "lon": -3.1851928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9844590395, - "lat": 51.8365535, - "lon": -2.2076016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL4 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9844673224, - "lat": 51.6890729, - "lon": -3.0237749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP4 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9844673225, - "lat": 51.6883533, - "lon": -3.0041693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP4 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9844714959, - "lat": 51.6658080, - "lon": -3.0318323, - "tags": { - "amenity": "post_box", - "mapillary": "186017663275370", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP44 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2020-09-20", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 9845616625, - "lat": 52.8549431, - "lon": 1.4224273, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9845623380, - "lat": 50.9925512, - "lon": -2.3135999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015338734", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9847633847, - "lat": 52.0560186, - "lon": -1.3388987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9848888700, - "lat": 52.8580501, - "lon": -3.6744486, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9850110832, - "lat": 51.0429117, - "lon": -0.2332596, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9850207125, - "lat": 50.1850259, - "lon": -5.1439697, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR3 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9850227678, - "lat": 50.1900334, - "lon": -5.1596890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR3 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9851355582, - "lat": 55.2949226, - "lon": -1.7090580, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9851602915, - "lat": 54.6017300, - "lon": -1.9837685, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9851902840, - "lat": 56.6734673, - "lon": -3.0046903, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9852552424, - "lat": 51.2086728, - "lon": -4.0648232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "gate_pillar", - "post_box:type": "lamp", - "ref": "EX34 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9852552425, - "lat": 51.2056521, - "lon": -4.0666415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX34 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9852552426, - "lat": 51.2006096, - "lon": -4.0616166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX34 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9852552427, - "lat": 51.2009165, - "lon": -4.0608799, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX34 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9853630878, - "lat": 50.9502307, - "lon": -4.1497771, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9853630879, - "lat": 50.9513164, - "lon": -4.1460896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9853630880, - "lat": 50.9489452, - "lon": -4.1541979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9853687393, - "lat": 50.9474994, - "lon": -4.1538916, - "tags": { - "amenity": "post_box", - "mapillary": "410314254315978", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9854112872, - "lat": 51.5857007, - "lon": -2.7506214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP26 912D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9854112873, - "lat": 51.5786372, - "lon": -2.8102081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP26 288D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9854198210, - "lat": 51.5532384, - "lon": -2.8486535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP26 285", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9854204651, - "lat": 51.5921441, - "lon": -2.7157286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NP26 448", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9854278340, - "lat": 51.6208130, - "lon": -2.6960644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NP26 427", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9856308341, - "lat": 54.5934177, - "lon": -2.0105739, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9856565909, - "lat": 51.7829778, - "lon": 0.4730544, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9856565914, - "lat": 51.7720194, - "lon": 0.4346852, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9856639225, - "lat": 57.0031311, - "lon": -7.4804617, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HS9 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9856692251, - "lat": 57.1369585, - "lon": -7.3260720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 12:15", - "old_ref": "U083", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS8 83", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9856724365, - "lat": 56.8454361, - "lon": -2.2835532, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 14:30; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD10 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9856724366, - "lat": 56.8121592, - "lon": -2.3165694, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD10 93", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9856724367, - "lat": 56.8305149, - "lon": -2.2861969, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD10 77", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9856724368, - "lat": 56.8282690, - "lon": -2.2846068, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD10 13D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9856772080, - "lat": 55.5893017, - "lon": -3.5503389, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9856808668, - "lat": 53.5869038, - "lon": -2.7835453, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9856933849, - "lat": 51.4430130, - "lon": 0.3362870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/northfleet-2021-05-30/PXL_20210530_182601535.jpg", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "pillar", - "ref": "DA11 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9857427898, - "lat": 53.5440064, - "lon": -2.6060316, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 58", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9857443702, - "lat": 51.2084254, - "lon": -4.0992226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "image": "https://archive.org/details/ilfracombe-2021-09-04/DSCN3213.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX34 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9857443703, - "lat": 51.2067632, - "lon": -4.1029550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "image": "https://archive.org/details/ilfracombe-2021-09-04/DSCN3172.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:manufacturer": "W.T. Allen & Co, London", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX34 25D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9857443704, - "lat": 51.2062063, - "lon": -4.1042806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX34 19", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9858125947, - "lat": 53.9923586, - "lon": -1.5351272, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9858125948, - "lat": 53.9923996, - "lon": -1.5351057, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 9858125949, - "lat": 53.9924023, - "lon": -1.5350879, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 9858210976, - "lat": 51.7827829, - "lon": 0.4368355, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9858482885, - "lat": 53.5647965, - "lon": -2.8868023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9858482886, - "lat": 53.5691898, - "lon": -2.8847942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "L39 105P" - } -}, -{ - "type": "node", - "id": 9858482887, - "lat": 53.5743195, - "lon": -2.8868667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 80", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9858482888, - "lat": 53.5777446, - "lon": -2.8878216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L39 73D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9858482889, - "lat": 53.5695094, - "lon": -2.8744642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L39 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9858637695, - "lat": 57.5513145, - "lon": -7.2626616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858642938, - "lat": 57.6015442, - "lon": -7.1635220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:45; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "HS6 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858642939, - "lat": 57.5502240, - "lon": -7.2259442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858655576, - "lat": 57.5406980, - "lon": -7.3525411, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS6 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858666824, - "lat": 51.5420621, - "lon": 0.0325103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 12D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9858778840, - "lat": 51.5211952, - "lon": -0.6243471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL1 326" - } -}, -{ - "type": "node", - "id": 9858781215, - "lat": 58.1972015, - "lon": -6.2241052, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 94", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858834797, - "lat": 54.5728782, - "lon": -1.9833938, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9858849388, - "lat": 51.0448510, - "lon": -1.7898783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP2 381", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9858887851, - "lat": 58.2094007, - "lon": -6.3229772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 11:00", - "old_ref": "LH45 Branahuie", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 45", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858887852, - "lat": 58.3561672, - "lon": -6.5543150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:15", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 79", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858887853, - "lat": 58.4920412, - "lon": -6.2308185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:15", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858887854, - "lat": 58.4995909, - "lon": -6.2442758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "HS2 142", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9858975189, - "lat": 50.7419811, - "lon": -1.6977985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "drive_through": "no", - "mapillary": "497813131997768", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BH23 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-08-13" - } -}, -{ - "type": "node", - "id": 9859575182, - "lat": 54.2922914, - "lon": -5.7185457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9859896933, - "lat": 52.7195930, - "lon": 0.5057956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9860240170, - "lat": 51.5482328, - "lon": 0.0399797, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9860240171, - "lat": 51.5393927, - "lon": 0.0259551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9860240172, - "lat": 51.5418082, - "lon": 0.0234016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9860659711, - "lat": 55.6119022, - "lon": -1.9490263, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-28", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 34D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9860735328, - "lat": 55.6512645, - "lon": -1.9086252, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-06-28", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 71D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9862046804, - "lat": 51.0821361, - "lon": -1.7852059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP1 438D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9862046805, - "lat": 51.0839255, - "lon": -1.7819446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 371", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9862100121, - "lat": 51.0850561, - "lon": -1.7908359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9862116758, - "lat": 51.1007968, - "lon": -1.7865685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9862290851, - "lat": 53.4520650, - "lon": -2.0737265, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SK1490" - } -}, -{ - "type": "node", - "id": 9863905097, - "lat": 56.7753986, - "lon": -2.4161356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9864164576, - "lat": 58.1477511, - "lon": -6.8925068, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9864576042, - "lat": 51.4827300, - "lon": -0.1024749, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "SE17 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9866161442, - "lat": 50.4207247, - "lon": -4.1109559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PL6 319", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9866803339, - "lat": 50.9152354, - "lon": -2.5657220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT9 48", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9867481219, - "lat": 50.1618136, - "lon": -5.1835988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9868027090, - "lat": 51.2573302, - "lon": -0.8503593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "GU52 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9868110517, - "lat": 50.7705104, - "lon": -3.5882623, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "479837827719102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 9868751308, - "lat": 50.8110627, - "lon": -2.7319238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT8 72D", - "ref:GB:uprn": "10015442121", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9868880981, - "lat": 50.7002292, - "lon": -3.0883753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX12 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9868890752, - "lat": 50.7286878, - "lon": -2.9451218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT7 35", - "ref:GB:uprn": "10015441353", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9868890753, - "lat": 50.7290855, - "lon": -2.9420453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT7 135", - "ref:GB:uprn": "10015355418", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9868917477, - "lat": 50.6985788, - "lon": -3.1642838, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX12 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9868946722, - "lat": 56.5864015, - "lon": -2.5706371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9869781170, - "lat": 54.3124314, - "lon": -5.6755141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9869781268, - "lat": 54.2772666, - "lon": -5.6408811, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BT30 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9870098550, - "lat": 54.3618884, - "lon": -1.7134077, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9870103109, - "lat": 51.0210909, - "lon": -3.5833317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA22 42D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 9870274326, - "lat": 54.1507110, - "lon": -1.2882382, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9871204344, - "lat": 53.9170000, - "lon": -2.1867471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9871660170, - "lat": 54.4121018, - "lon": -6.4562370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9871735395, - "lat": 50.1635030, - "lon": -5.2977417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR14 115", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9871735396, - "lat": 50.1593238, - "lon": -5.3368771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR14 116", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9872178922, - "lat": 51.6149814, - "lon": -4.2213337, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA3 664", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9872180553, - "lat": 51.6160370, - "lon": -4.2439721, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SA3 665D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9872296692, - "lat": 53.4584142, - "lon": -2.0799662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK14 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9872573720, - "lat": 50.2923640, - "lon": -4.9591771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9873460864, - "lat": 52.3614579, - "lon": -3.1007250, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9874058944, - "lat": 50.7197520, - "lon": -3.2826336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX10 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9875039044, - "lat": 51.1474168, - "lon": 0.2644685, - "tags": { - "amenity": "post_box", - "drive_through": "yes", - "operator": "Royal Mail", - "ref": "TN4 270D" - } -}, -{ - "type": "node", - "id": 9875909264, - "lat": 51.2033233, - "lon": -2.8014413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "264371966218787", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS28 161D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 9875925376, - "lat": 51.3625937, - "lon": -2.5744392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BS39 383D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9875934661, - "lat": 51.2577602, - "lon": -2.7525486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS27 159D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9877610718, - "lat": 50.1071820, - "lon": -5.2950921, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877610719, - "lat": 50.1072980, - "lon": -5.3460209, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877610720, - "lat": 50.0971856, - "lon": -5.3660915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 104D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877610721, - "lat": 50.1146950, - "lon": -5.3669766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 88D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877610722, - "lat": 50.1167382, - "lon": -5.3601304, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 25D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877610723, - "lat": 50.1349314, - "lon": -5.3488917, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877703927, - "lat": 50.1507671, - "lon": -5.2760297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR14 122", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877703928, - "lat": 50.1677214, - "lon": -5.2771847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877703929, - "lat": 50.1956302, - "lon": -5.2610375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "TR14 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877703930, - "lat": 50.1971762, - "lon": -5.3162467, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877703931, - "lat": 50.2046451, - "lon": -5.3139820, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 120", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9877724877, - "lat": 53.4322198, - "lon": -2.6471339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9877737001, - "lat": 52.8891725, - "lon": -4.4169633, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9878510026, - "lat": 51.5669404, - "lon": 0.2999715, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9878603932, - "lat": 50.3316216, - "lon": -4.5188950, - "tags": { - "amenity": "post_box", - "ref": "PL13 119" - } -}, -{ - "type": "node", - "id": 9878839534, - "lat": 52.8867736, - "lon": -1.1408208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9879579680, - "lat": 50.9197092, - "lon": -3.3786647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX16 94D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9879709481, - "lat": 54.5691705, - "lon": -2.8640369, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/3393036", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CA10 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9879818600, - "lat": 50.2208018, - "lon": -5.1875035, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR16 70D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9879850683, - "lat": 51.1156505, - "lon": 0.8344127, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9880437939, - "lat": 50.2163676, - "lon": -5.3157807, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR14 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9881585215, - "lat": 51.3621461, - "lon": -2.2998393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA15 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9881585216, - "lat": 51.3779924, - "lon": -2.2971538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA1 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9881648663, - "lat": 51.3476391, - "lon": -2.3085525, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA2 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9881661978, - "lat": 51.3014130, - "lon": -2.3279509, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BA2 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9881729473, - "lat": 57.4988821, - "lon": -1.8095161, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 2FF", - "addr:street": "Berryden Road", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9881949365, - "lat": 50.7205827, - "lon": -2.4109658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9881949406, - "lat": 50.7450583, - "lon": -2.3459626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 197", - "ref:GB:uprn": "10015268782", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9881949416, - "lat": 50.7487462, - "lon": -2.3443420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DT2 167", - "ref:GB:uprn": "10015276902", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9881949432, - "lat": 50.8274507, - "lon": -2.3350646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:15; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT2 54", - "ref:GB:uprn": "10015399531", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9881991505, - "lat": 51.9427926, - "lon": -3.0381751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 11:00", - "note": "Cast iron. Legend on 'tympanum' = LETTERS ONLY", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LD3 375", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9882600286, - "lat": 51.6266179, - "lon": -0.1735849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N20 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9882740150, - "lat": 51.3409484, - "lon": -1.9367687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9882781823, - "lat": 50.3523828, - "lon": -4.4927719, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL13 121" - } -}, -{ - "type": "node", - "id": 9882893568, - "lat": 51.9295367, - "lon": 0.2458645, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM22 126", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9883303121, - "lat": 54.2740928, - "lon": -7.5443113, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9883670404, - "lat": 51.2596128, - "lon": -2.3569804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA11 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9883828690, - "lat": 52.4104873, - "lon": -3.3706638, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9883861857, - "lat": 52.4348770, - "lon": -3.2954334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD7 214D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9883863826, - "lat": 53.5032016, - "lon": -2.6559435, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 237", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9883966567, - "lat": 52.4745287, - "lon": -3.5465659, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9884016254, - "lat": 52.4493357, - "lon": -3.5706967, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9884021681, - "lat": 52.5333638, - "lon": -3.4436661, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9884029019, - "lat": 52.5264576, - "lon": -3.2406944, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9884060004, - "lat": 53.4906826, - "lon": -0.7770335, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN9 269" - } -}, -{ - "type": "node", - "id": 9884073459, - "lat": 53.4324629, - "lon": -0.2339882, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9884087706, - "lat": 53.4434959, - "lon": -0.1822316, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9884091974, - "lat": 53.4892372, - "lon": -0.1724578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 225" - } -}, -{ - "type": "node", - "id": 9884427355, - "lat": 53.5025137, - "lon": -2.6489721, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "not:operator:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 133", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9884543994, - "lat": 50.1236042, - "lon": -5.2374234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "fixme": "Couldn't see box at garage. Needs a survey to see if it's definitely no longer there", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 125", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9884926404, - "lat": 50.2704925, - "lon": -5.0403808, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 255D", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9885894641, - "lat": 51.8564671, - "lon": -3.1330702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9886012408, - "lat": 53.3467285, - "lon": -2.1240885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9886054608, - "lat": 51.4476023, - "lon": -0.9783616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "description": "Boston Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG1 501", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9886667732, - "lat": 50.1793174, - "lon": -4.9757396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR2 208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9886723142, - "lat": 52.7541345, - "lon": 0.3357723, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9887721928, - "lat": 54.8650493, - "lon": -1.6212767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DH2 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888558162, - "lat": 51.0235827, - "lon": -0.3005871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 07:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH13 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888558163, - "lat": 51.0359501, - "lon": -0.2860254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888558164, - "lat": 51.0266704, - "lon": -0.2668422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888558165, - "lat": 51.0372876, - "lon": -0.2479018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH13 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888582085, - "lat": 50.9772855, - "lon": -0.3430948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "note": "Post box almost completely hidden in bushes down the slip road, access through long grass. Had to ask where it was.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wheelchair": "no" - } -}, -{ - "type": "node", - "id": 9888582088, - "lat": 50.9987090, - "lon": -0.3373750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888625733, - "lat": 51.0254591, - "lon": -0.3620124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888625734, - "lat": 51.0340838, - "lon": -0.3370149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888625735, - "lat": 51.0367171, - "lon": -0.3239398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9888625736, - "lat": 51.0204576, - "lon": -0.3265878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH13 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9890436984, - "lat": 51.5796160, - "lon": -2.8310018, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9890531097, - "lat": 51.7051210, - "lon": -3.2055926, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9890643052, - "lat": 51.6004673, - "lon": -4.2713592, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9890653104, - "lat": 51.5893916, - "lon": -4.1935560, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9890665335, - "lat": 51.5781450, - "lon": -4.1193632, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9890675759, - "lat": 51.6549903, - "lon": -3.8086944, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9891573964, - "lat": 51.2083428, - "lon": -4.1134145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/ilfracombe-2021-09-05/DSCN3962.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co London", - "post_box:type": "wall", - "ref": "EX34 3D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9891574403, - "lat": 51.2065045, - "lon": -4.1111304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/ilfracombe-2021-09-05/DSCN3950.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co London", - "post_box:type": "wall", - "ref": "EX34 40D" - } -}, -{ - "type": "node", - "id": 9892289443, - "lat": 51.4764071, - "lon": -3.7041103, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9892351770, - "lat": 53.5868893, - "lon": -2.6633547, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "description": "ERVII Cypher", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN6 135", - "royal_cypher": "EVIIR", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 9893250469, - "lat": 54.7589166, - "lon": -4.5839857, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9893496719, - "lat": 51.2758659, - "lon": 0.1062890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "drive_through": "no", - "mapillary": "1353382511781887", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TN16 178", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-01-29" - } -}, -{ - "type": "node", - "id": 9893496720, - "lat": 51.2813329, - "lon": 0.1110871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9893540149, - "lat": 51.2765322, - "lon": 0.1110734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN16 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9893563440, - "lat": 56.3740709, - "lon": -3.9875130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH6 60", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9893812899, - "lat": 54.8704184, - "lon": -1.6219375, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DH2 229D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9893911085, - "lat": 55.5715124, - "lon": -5.4959224, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9893983854, - "lat": 57.5114778, - "lon": -1.7924968, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9894813825, - "lat": 52.4122455, - "lon": -2.2533065, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9894858816, - "lat": 53.4635607, - "lon": -2.0545813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SK14 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9895048005, - "lat": 50.1128974, - "lon": -5.2489665, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR13 10D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9895048006, - "lat": 50.1140443, - "lon": -5.3062512, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9895519564, - "lat": 53.6527094, - "lon": -1.7956638, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9895519565, - "lat": 53.6569712, - "lon": -1.8082166, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9895595689, - "lat": 56.3508369, - "lon": -3.2401288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KY14 336", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9896022575, - "lat": 51.3150612, - "lon": -1.9057521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 15", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9896368806, - "lat": 55.8087754, - "lon": -2.3352136, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9898003422, - "lat": 49.9708668, - "lon": -5.2003098, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898123155, - "lat": 50.1372918, - "lon": -5.2466819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898123156, - "lat": 50.1358883, - "lon": -5.2211639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898123157, - "lat": 50.1213549, - "lon": -5.3214013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898123158, - "lat": 50.1312486, - "lon": -5.2513854, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 38D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898123159, - "lat": 50.1265571, - "lon": -5.2731245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR13 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898313171, - "lat": 51.4193689, - "lon": -2.2101536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN13 86D" - } -}, -{ - "type": "node", - "id": 9898531682, - "lat": 50.7025612, - "lon": -2.7268033, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9898990746, - "lat": 50.1333233, - "lon": -5.2951315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 40D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898990747, - "lat": 50.1070470, - "lon": -5.2307454, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR13 83D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9898990748, - "lat": 50.1438299, - "lon": -5.2493927, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR13 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9899637458, - "lat": 53.4661558, - "lon": -0.7233591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9900050060, - "lat": 53.4536582, - "lon": -2.7387494, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 2" - } -}, -{ - "type": "node", - "id": 9900196799, - "lat": 50.1735856, - "lon": -5.3115510, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR14 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9900576301, - "lat": 53.5084057, - "lon": -2.6495741, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 119", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9900803809, - "lat": 54.2761502, - "lon": -3.0480874, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9902088452, - "lat": 54.8376203, - "lon": -4.7525273, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG8 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9903450866, - "lat": 57.5047156, - "lon": -1.7980094, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9903450867, - "lat": 57.5086497, - "lon": -1.8102545, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 1ZB", - "addr:street": "Pentland Place", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9903450868, - "lat": 57.5093878, - "lon": -1.7980530, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 1RD", - "addr:street": "Crossfolds Crescent", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9903450869, - "lat": 57.5137304, - "lon": -1.7894126, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 1NH", - "addr:street": "High Street", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9904466608, - "lat": 53.3911892, - "lon": -2.5831980, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "WA1 356", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9904738207, - "lat": 53.2418539, - "lon": 0.0549907, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9904749228, - "lat": 53.2426811, - "lon": 0.1653335, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9904757964, - "lat": 54.3537209, - "lon": -6.2680744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT32 18" - } -}, -{ - "type": "node", - "id": 9904758357, - "lat": 53.2136655, - "lon": 0.2380901, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9904865200, - "lat": 53.3697744, - "lon": 0.0915871, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "LN11 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9904924247, - "lat": 52.4058089, - "lon": -1.5525732, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV5 102D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey_point": "2022-06-19" - } -}, -{ - "type": "node", - "id": 9904934269, - "lat": 53.3376499, - "lon": 0.1442605, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9904934357, - "lat": 53.2444573, - "lon": 0.2076156, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9904966661, - "lat": 53.3946127, - "lon": 0.0628999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LN11 30", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9904967183, - "lat": 52.4271302, - "lon": -1.5299381, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 335D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9904969254, - "lat": 52.4342722, - "lon": -1.5313193, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV6 56", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-06-19" - } -}, -{ - "type": "node", - "id": 9904969378, - "lat": 53.4005380, - "lon": 0.0492731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN11 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9904992639, - "lat": 53.4328030, - "lon": 0.0119890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9905039164, - "lat": 55.5597508, - "lon": -2.9398513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD7 135", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9905062430, - "lat": 50.1300988, - "lon": -5.3082562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9905062431, - "lat": 50.1237885, - "lon": -5.3343965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR13 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9905062432, - "lat": 50.1254606, - "lon": -5.2608661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR13 34D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9905122939, - "lat": 55.8527095, - "lon": -2.3881339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD11 38", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9905733698, - "lat": 51.2387526, - "lon": -0.7397279, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU12 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9905965188, - "lat": 53.2072719, - "lon": -2.5822654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "ref": "CW7 187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9906071178, - "lat": 53.3660724, - "lon": -2.1896907, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9906142139, - "lat": 53.5406656, - "lon": -2.8431528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9906146755, - "lat": 51.5699439, - "lon": -3.9944188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9906246607, - "lat": 51.6944002, - "lon": -2.2047565, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL6 230" - } -}, -{ - "type": "node", - "id": 9906246615, - "lat": 51.6955447, - "lon": -2.2320505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL6 109" - } -}, -{ - "type": "node", - "id": 9906246616, - "lat": 51.6926169, - "lon": -2.2298693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL6 64" - } -}, -{ - "type": "node", - "id": 9906445213, - "lat": 54.9960018, - "lon": -1.7562732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9906445215, - "lat": 54.8704028, - "lon": -1.8589062, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9906477245, - "lat": 54.8577284, - "lon": -1.8520382, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9906477256, - "lat": 54.9912165, - "lon": -1.7250499, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9906477260, - "lat": 54.8610680, - "lon": -1.8597232, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9906493155, - "lat": 51.3663380, - "lon": -1.9047793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9906611109, - "lat": 51.3549205, - "lon": -2.5564341, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9906676691, - "lat": 50.9101784, - "lon": -2.8246847, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9906781456, - "lat": 55.1285867, - "lon": -3.4411194, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9906820190, - "lat": 53.3319897, - "lon": -2.5686814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 80", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9907301543, - "lat": 50.8759644, - "lon": 0.6427699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN35 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9907301544, - "lat": 50.8819186, - "lon": 0.6441858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN35 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9907358958, - "lat": 50.8946266, - "lon": 0.6611337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN35 146D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9907358960, - "lat": 50.8942189, - "lon": 0.6565079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN35 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9907358961, - "lat": 50.8920952, - "lon": 0.6481357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN35 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9907577894, - "lat": 55.6292090, - "lon": -4.4867603, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9908257315, - "lat": 51.6101310, - "lon": -3.4463751, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF40 195D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9908305790, - "lat": 53.4191813, - "lon": -2.5898080, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 296", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9908381394, - "lat": 51.3231443, - "lon": -0.5098396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU22 75D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-07-17" - } -}, -{ - "type": "node", - "id": 9908474156, - "lat": 50.7480547, - "lon": -1.8851759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 225D", - "ref:GB:uprn": "10015479489", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908474157, - "lat": 50.7449819, - "lon": -1.8864405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 325D", - "ref:GB:uprn": "10015397105", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908474167, - "lat": 50.7440510, - "lon": -1.8747233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 89D", - "ref:GB:uprn": "10015466092", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9908474168, - "lat": 50.7492796, - "lon": -1.8778159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 103", - "ref:GB:uprn": "10024890107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9908474169, - "lat": 50.7502974, - "lon": -1.8815857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 220D", - "ref:GB:uprn": "10015363126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9908474170, - "lat": 50.7496398, - "lon": -1.8512473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 212D", - "ref:GB:uprn": "10015314043", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9908474171, - "lat": 50.7528908, - "lon": -1.8479394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH8 176D", - "ref:GB:uprn": "10015472138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9908474191, - "lat": 50.7435202, - "lon": -1.8489600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH8 265D", - "ref:GB:uprn": "10015476171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908474211, - "lat": 50.7564031, - "lon": -1.8189442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH8 270D", - "ref:GB:uprn": "10015399238", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9908553333, - "lat": 50.7637348, - "lon": -1.8466922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH8 274D", - "ref:GB:uprn": "10015346661", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9908553337, - "lat": 50.7578757, - "lon": -1.8760456, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 319D", - "ref:GB:uprn": "10015406223", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908553338, - "lat": 50.7530316, - "lon": -1.8799590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 247D", - "ref:GB:uprn": "10015463237", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908553339, - "lat": 50.7518289, - "lon": -1.8862514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 141", - "ref:GB:uprn": "10015433131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9908553340, - "lat": 50.7595247, - "lon": -1.8804009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH10 184D", - "ref:GB:uprn": "10015406601", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908553341, - "lat": 50.7614562, - "lon": -1.8826948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH10 291D", - "ref:GB:uprn": "10015303801", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9908553357, - "lat": 50.7460923, - "lon": -1.9625298, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 326D", - "ref:GB:uprn": "10015403605", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9909488941, - "lat": 54.5753379, - "lon": -5.9829553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9909682978, - "lat": 54.9299803, - "lon": -1.3675452, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9909682995, - "lat": 54.9594282, - "lon": -1.3661320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9910271762, - "lat": 55.3319887, - "lon": -4.8238949, - "tags": { - "amenity": "post_box", - "operator": "Postbank", - "ref": "KA26 27D" - } -}, -{ - "type": "node", - "id": 9910319644, - "lat": 50.9517528, - "lon": 0.7266051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN31 26D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9910325963, - "lat": 50.9585171, - "lon": 0.7396071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN31 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9910362717, - "lat": 51.0397335, - "lon": 0.7849780, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN26 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 9910362718, - "lat": 51.0314168, - "lon": 0.7885770, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN26 269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9910534821, - "lat": 58.2051953, - "lon": -6.3537817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9911106785, - "lat": 53.4827212, - "lon": -2.6638650, - "tags": { - "amenity": "post_box", - "height": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN4 127", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 9912529104, - "lat": 51.3167084, - "lon": -1.9152240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 08:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9912708203, - "lat": 53.2450579, - "lon": -2.5109661, - "tags": { - "amenity": "post_box", - "ref": "CW9 7D" - } -}, -{ - "type": "node", - "id": 9913449772, - "lat": 56.6455507, - "lon": -2.8776894, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "DD8 42" - } -}, -{ - "type": "node", - "id": 9913455535, - "lat": 51.8369010, - "lon": 0.7529013, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9915100651, - "lat": 53.4035269, - "lon": -2.5633210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 227", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9915103989, - "lat": 53.4028951, - "lon": -2.5551223, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 129", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9915112526, - "lat": 53.3909256, - "lon": -2.5905255, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "WA1 996", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9915998236, - "lat": 51.6932851, - "lon": -4.0851632, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 9915998293, - "lat": 51.6874272, - "lon": -4.0978660, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9916610439, - "lat": 51.5317117, - "lon": 0.0916953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "reference illegible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9916779251, - "lat": 51.3407267, - "lon": -2.0442203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9916779252, - "lat": 51.3514079, - "lon": -2.0349500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9917143224, - "lat": 53.4618434, - "lon": -2.0651086, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SK14 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9917560080, - "lat": 53.5810413, - "lon": -2.7701636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 182", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9917836895, - "lat": 55.7867193, - "lon": -4.0053289, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9917881280, - "lat": 55.7990515, - "lon": -4.2385450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9918076355, - "lat": 56.2658816, - "lon": -5.6329476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "W.T. Allen & Co. London", - "post_box:type": "wall", - "ref": "PA34 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9919203492, - "lat": 51.6109705, - "lon": -1.2669765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "OX11 1002", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9919319525, - "lat": 51.3680985, - "lon": -1.9809892, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9919760732, - "lat": 53.9132287, - "lon": -1.9374663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9919857211, - "lat": 55.7860955, - "lon": -2.3065855, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9920855991, - "lat": 51.2061751, - "lon": -4.1262507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9920935258, - "lat": 51.2339541, - "lon": -0.7506073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GU11 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9921018521, - "lat": 51.5388353, - "lon": -0.1458483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "LH aperture blocked up, LH collection plate missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "NW1 55D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 55D" - } -}, -{ - "type": "node", - "id": 9921216577, - "lat": 51.7128120, - "lon": -3.4437661, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9921470233, - "lat": 51.3812378, - "lon": -1.9387992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922505732, - "lat": 51.1792323, - "lon": 0.0568345, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "post_box:type": "lamp", - "ref": "TN8 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922752097, - "lat": 50.2125465, - "lon": -3.7074112, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9922863744, - "lat": 51.3274151, - "lon": -2.0043872, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863745, - "lat": 51.3200065, - "lon": -2.0035826, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863746, - "lat": 51.2823707, - "lon": -1.9982959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863747, - "lat": 51.2845776, - "lon": -2.0531042, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 116", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863748, - "lat": 51.2848972, - "lon": -2.0292540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863749, - "lat": 51.2883772, - "lon": -2.0251435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 21", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863750, - "lat": 51.3163973, - "lon": -2.0343354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN10 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863751, - "lat": 51.3170041, - "lon": -2.0470531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863752, - "lat": 51.3294368, - "lon": -2.0512052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922863753, - "lat": 51.3552929, - "lon": -2.0091495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 32D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9922864235, - "lat": 53.4124685, - "lon": -2.5875602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 194", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9923065357, - "lat": 53.4214043, - "lon": -2.8420793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9923185797, - "lat": 50.7521416, - "lon": -1.8293859, - "tags": { - "amenity": "post_box", - "fixme": "Survey again to get collection times and refs", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref:GB:uprn": "10015804848", - "source": "survey;bing" - } -}, -{ - "type": "node", - "id": 9923196581, - "lat": 50.7451962, - "lon": -1.8817822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 211D", - "ref:GB:uprn": "10015393795", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9923196582, - "lat": 50.7506171, - "lon": -1.8672011, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH9 242D", - "ref:GB:uprn": "10015302878", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923196587, - "lat": 50.7488206, - "lon": -1.8655335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:45", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 200", - "ref:GB:uprn": "10025279593", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9923196588, - "lat": 50.7573815, - "lon": -1.8332647, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH8 271D", - "ref:GB:uprn": "10015360046", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9923228600, - "lat": 50.9592812, - "lon": 0.9636822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN28 253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923229317, - "lat": 50.7533562, - "lon": -1.8644662, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 335D", - "ref:GB:uprn": "10015476249", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9923229318, - "lat": 50.7542731, - "lon": -1.8713276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH9 264D", - "ref:GB:uprn": "10015416531", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9923229319, - "lat": 50.7407321, - "lon": -1.9773007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 319D", - "ref:GB:uprn": "10015276499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923229320, - "lat": 50.7444900, - "lon": -1.9750185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 263D", - "ref:GB:uprn": "10015449138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923229324, - "lat": 50.7435299, - "lon": -1.9792416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 231D", - "ref:GB:uprn": "10015336277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923229326, - "lat": 50.7488222, - "lon": -1.9895456, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH17 235", - "ref:GB:uprn": "10015356246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923246243, - "lat": 50.9724228, - "lon": 0.9637599, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN28 92D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9923558941, - "lat": 54.4472740, - "lon": -1.6509403, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9923600485, - "lat": 53.3244333, - "lon": -2.4961946, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9923791868, - "lat": 51.8791917, - "lon": 0.1763406, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM23 218D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9925163731, - "lat": 54.2601727, - "lon": -5.6124363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT30 7D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9925442508, - "lat": 50.9290183, - "lon": 0.9726334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN29 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9925520664, - "lat": 50.9468718, - "lon": 0.8974993, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "TN29 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9925652908, - "lat": 50.9383273, - "lon": 0.7615526, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN31 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9927014049, - "lat": 50.2220506, - "lon": -5.2699158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR15 133", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9927029284, - "lat": 52.7734509, - "lon": 0.4369217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE30 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9927803202, - "lat": 51.6170152, - "lon": -0.1408006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N11 25", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9928000083, - "lat": 51.3644551, - "lon": -2.0205451, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9928000084, - "lat": 51.3291885, - "lon": -2.0068213, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9928947132, - "lat": 51.9550000, - "lon": 0.8119179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "CO6 111D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9928947236, - "lat": 51.9678007, - "lon": 0.8471758, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO6 11", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9929597283, - "lat": 55.1610698, - "lon": -3.7071514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Postbank", - "ref": "DG2 89", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9931029437, - "lat": 54.2628839, - "lon": -5.6099939, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 57D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9931574683, - "lat": 53.1412753, - "lon": -3.7920889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL26 137D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9931781189, - "lat": 53.5324589, - "lon": -2.2089406, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9932592308, - "lat": 51.3229939, - "lon": -2.0072985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9932592313, - "lat": 51.2790440, - "lon": -1.9946358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9932632407, - "lat": 51.4764288, - "lon": -0.1484615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "box", - "post_box:type": "pillar", - "ref": "SW11 14", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9932655635, - "lat": 53.0874258, - "lon": -2.2579448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ST7 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9932672065, - "lat": 50.4201423, - "lon": -5.0670866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR7 12D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9932679980, - "lat": 51.7389095, - "lon": 0.0485691, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "EN9 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9932683195, - "lat": 53.7502346, - "lon": -2.4852525, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB1 164", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9932683196, - "lat": 53.7502410, - "lon": -2.4852784, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BB1 163", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9932692058, - "lat": 50.8155244, - "lon": -0.4470031, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "BN12 1796", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9932733188, - "lat": 53.6267875, - "lon": -2.2109415, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OL11 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9932808740, - "lat": 51.5517630, - "lon": -0.6832044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL6 111" - } -}, -{ - "type": "node", - "id": 9933180140, - "lat": 57.5091728, - "lon": -1.7778221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "AB42 17D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 9933180174, - "lat": 57.5072622, - "lon": -1.7852342, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 1QJ", - "addr:street": "King Street", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9934379097, - "lat": 51.4686918, - "lon": -2.6801663, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "ref": "BS20 261D" - } -}, -{ - "type": "node", - "id": 9934497877, - "lat": 50.9786786, - "lon": -0.6969589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is on the northbound side of Selham Road and is set back by the bushes outside the driveway to Beck House.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU29 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-05" - } -}, -{ - "type": "node", - "id": 9935301008, - "lat": 53.2228939, - "lon": -4.1290390, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9935785202, - "lat": 54.7902266, - "lon": -4.3693642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DG8 69D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9935996155, - "lat": 51.3166894, - "lon": -1.8958143, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9935996160, - "lat": 51.2959139, - "lon": -1.9707354, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN10 31", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9935996161, - "lat": 51.2945305, - "lon": -1.9746696, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 87D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9935996162, - "lat": 51.2983880, - "lon": -1.9794376, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9936151768, - "lat": 51.3082462, - "lon": -0.8745664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 255D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9936151770, - "lat": 51.3152577, - "lon": -0.8891147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9936294952, - "lat": 55.8935091, - "lon": -4.6230273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PA13 46D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9936982526, - "lat": 51.3475059, - "lon": -0.9308030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG27 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9936988443, - "lat": 51.3762492, - "lon": -0.8915364, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "RG40 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9936988444, - "lat": 51.3736808, - "lon": -0.9228328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9937120801, - "lat": 51.3994776, - "lon": -0.8420567, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG41 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9937142384, - "lat": 51.3724334, - "lon": -0.8365944, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "RG40 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9937358169, - "lat": 52.5043669, - "lon": 1.2180736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9939678954, - "lat": 54.7348247, - "lon": -4.4148651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DG8 8D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9939711402, - "lat": 54.7375685, - "lon": -4.4149661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "DG8 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9941119665, - "lat": 51.3610110, - "lon": -0.6934322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU19 143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9941167776, - "lat": 51.9164008, - "lon": -1.9525731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "GL54 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9941167779, - "lat": 51.8977752, - "lon": -1.9400049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL54 196D" - } -}, -{ - "type": "node", - "id": 9941167791, - "lat": 51.8912326, - "lon": -1.9523276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL54 221", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9941167802, - "lat": 51.8939345, - "lon": -1.9530270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL54 27D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9941167803, - "lat": 51.8824667, - "lon": -1.9604011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9941184733, - "lat": 51.8905572, - "lon": -1.8656614, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 355", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9941184739, - "lat": 51.8808507, - "lon": -1.8437880, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9941184744, - "lat": 51.9071856, - "lon": -1.8488172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL54 79D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9942608984, - "lat": 54.8327940, - "lon": -4.4577109, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:30", - "ref": "DG8 58", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9943092302, - "lat": 52.3564274, - "lon": -4.0308736, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9943130040, - "lat": 52.3562538, - "lon": -4.0217460, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9943186199, - "lat": 52.2903638, - "lon": -3.9937733, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9943231256, - "lat": 52.2536755, - "lon": -3.9900624, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9943548210, - "lat": 51.3646598, - "lon": -0.6544409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "no", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9943613735, - "lat": 51.3578045, - "lon": -0.5326237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "KT16 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9943613736, - "lat": 51.3499672, - "lon": -0.5633392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GU24 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9943616826, - "lat": 51.3639565, - "lon": -0.5241030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KT16 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9945241750, - "lat": 51.3239379, - "lon": -2.0832793, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9945889230, - "lat": 56.3804388, - "lon": -3.9528331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH6 33D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 9945894717, - "lat": 51.5637185, - "lon": -0.0579189, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9945987543, - "lat": 50.0507182, - "lon": -5.0719746, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 47D", - "royal_cypher": "GR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9945987544, - "lat": 49.9980909, - "lon": -5.1766647, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 67D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9945987545, - "lat": 49.9852659, - "lon": -5.2094254, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9946195169, - "lat": 53.5925582, - "lon": -2.7022291, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9947229059, - "lat": 50.7227064, - "lon": -2.4643768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 145", - "ref:GB:uprn": "10015448171", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-08-07" - } -}, -{ - "type": "node", - "id": 9948158095, - "lat": 57.9084452, - "lon": -3.9978178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:manufacturer": "Carron Company, Stirlingshire", - "post_box:type": "lamp", - "ref": "IV25 318", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9948302374, - "lat": 50.0892405, - "lon": -5.1008349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 76D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 9948365770, - "lat": 50.0801362, - "lon": -5.1021088, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-29" - } -}, -{ - "type": "node", - "id": 9948365771, - "lat": 50.0193222, - "lon": -5.1342237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR12 81D", - "royal_cypher": "GR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948365772, - "lat": 50.0065413, - "lon": -5.1933776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 82D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948365773, - "lat": 50.0605306, - "lon": -5.1133414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR12 84D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948365774, - "lat": 49.9926608, - "lon": -5.1828591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR12 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948365775, - "lat": 50.0723170, - "lon": -5.1655317, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR12 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948449250, - "lat": 50.1430461, - "lon": -5.1327468, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 39D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948449251, - "lat": 50.1498580, - "lon": -5.0704789, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9948938802, - "lat": 52.0440299, - "lon": -2.6249546, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9949176088, - "lat": 50.4542533, - "lon": -4.9973944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 9949343053, - "lat": 51.2382418, - "lon": -0.7331121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "pillar", - "ref": "GU10 59D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-11" - } -}, -{ - "type": "node", - "id": 9949649447, - "lat": 51.3179819, - "lon": -0.4961651, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU22 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 9949655598, - "lat": 51.3213379, - "lon": -0.5375375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9949655599, - "lat": 51.3213915, - "lon": -0.5354655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU22 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9950861844, - "lat": 51.6789497, - "lon": -1.2913210, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 1202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9951036064, - "lat": 53.3562947, - "lon": -2.6301122, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "WA4 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9951389357, - "lat": 51.7491319, - "lon": 0.0722479, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9951414076, - "lat": 57.8115582, - "lon": -4.0596186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "IV19 2D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9951414083, - "lat": 57.8089330, - "lon": -4.0640053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV19 3D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9951414084, - "lat": 57.8075185, - "lon": -4.0553368, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV19 4D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9951414085, - "lat": 57.8079702, - "lon": -4.0501872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IV19 5D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9952453708, - "lat": 51.4591403, - "lon": -1.7166987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952453709, - "lat": 51.4470575, - "lon": -1.7282926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN8 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952453711, - "lat": 51.4205157, - "lon": -1.7258268, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 48D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9952453712, - "lat": 51.4158394, - "lon": -1.7252953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952679463, - "lat": 51.6777824, - "lon": -1.2767969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 1068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952716023, - "lat": 52.4143268, - "lon": -1.4874090, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "colour": "red", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9952729250, - "lat": 52.4044079, - "lon": -1.4658866, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "colour": "unknown", - "note": "gone missing - waiting for replacement", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9952764100, - "lat": 51.6866985, - "lon": -1.2718690, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:design": "ludlow", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "OX14 1063", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952785588, - "lat": 51.6852245, - "lon": -1.2783718, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "OX14 1191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952793189, - "lat": 51.6834863, - "lon": -1.2865777, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "check_date:collection_times": "2022-08-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 847", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9952939194, - "lat": 51.5800767, - "lon": -4.0012269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9953277112, - "lat": 54.8112933, - "lon": -1.4436026, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9953320119, - "lat": 54.8991182, - "lon": -1.5332900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE38 508P" - } -}, -{ - "type": "node", - "id": 9953320121, - "lat": 54.9489601, - "lon": -1.4168462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9953320137, - "lat": 54.9036864, - "lon": -1.3932214, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9953399098, - "lat": 53.0899456, - "lon": -1.4857949, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "listed_status": "Grade II", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "penfold", - "post_box:type": "pillar", - "ref:signed": "no", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9953496221, - "lat": 50.3683180, - "lon": -4.5746779, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL13 110", - "survey:date": "2022-08-14" - } -}, -{ - "type": "node", - "id": 9953618027, - "lat": 50.8663031, - "lon": -1.4378106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SO45 638D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9955171398, - "lat": 53.4646246, - "lon": -2.0508391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SK14 15D" - } -}, -{ - "type": "node", - "id": 9955213061, - "lat": 51.5671638, - "lon": -0.0604760, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E5 11D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "wikidata": "Q26528870" - } -}, -{ - "type": "node", - "id": 9955376697, - "lat": 54.8904708, - "lon": -1.4938217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9955760356, - "lat": 50.0802012, - "lon": -5.1378384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR12 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9955800140, - "lat": 50.1400817, - "lon": -5.0786438, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_fence", - "post_box:type": "lamp", - "ref": "TR11 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9955800141, - "lat": 50.1475189, - "lon": -5.0604737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 23D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9955800142, - "lat": 50.1489615, - "lon": -5.0550079, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 53D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9955820191, - "lat": 50.1472330, - "lon": -5.0677228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR11 21D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 9955918884, - "lat": 51.4312419, - "lon": -0.9707632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00, Sa 13:30", - "ref": "RG2 650" - } -}, -{ - "type": "node", - "id": 9956731516, - "lat": 52.4542539, - "lon": -2.1131542, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9957379889, - "lat": 50.4547589, - "lon": -4.4650141, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "437294967835893", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-06-13" - } -}, -{ - "type": "node", - "id": 9957379890, - "lat": 50.4547511, - "lon": -4.4650191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1785259645148501", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-06-13" - } -}, -{ - "type": "node", - "id": 9957379892, - "lat": 50.4410797, - "lon": -4.5722594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1044624909661642", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9957379893, - "lat": 50.4406004, - "lon": -4.6046780, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "838202847128387", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-22" - } -}, -{ - "type": "node", - "id": 9957379894, - "lat": 50.4075819, - "lon": -4.6518228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9957379895, - "lat": 50.4068465, - "lon": -4.6711562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9957624362, - "lat": 53.4643727, - "lon": -2.0612649, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9958065690, - "lat": 51.4789691, - "lon": -0.2115378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 12", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9958065691, - "lat": 51.4777229, - "lon": -0.2082400, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW6 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9959533252, - "lat": 53.2828339, - "lon": -1.1871747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "S80 68", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9959646118, - "lat": 50.6525558, - "lon": -3.4254843, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX8 135D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9959646126, - "lat": 50.6475506, - "lon": -3.4194598, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX8 45D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 9959646177, - "lat": 50.6449623, - "lon": -3.4226535, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX8 139D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery", - "survey:date": "2023-01-14" - } -}, -{ - "type": "node", - "id": 9959893243, - "lat": 51.6794292, - "lon": -3.9330866, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9959911936, - "lat": 51.8840804, - "lon": -3.0400764, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218353, - "lat": 51.3175826, - "lon": 0.2948424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN15 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218354, - "lat": 51.3515913, - "lon": 0.2995256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 09:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218355, - "lat": 51.3211462, - "lon": 0.3148260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 09:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218356, - "lat": 51.3121056, - "lon": 0.3086006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218357, - "lat": 51.3107841, - "lon": 0.3032500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 242", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9960218358, - "lat": 51.3091225, - "lon": 0.3042901, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 215", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218359, - "lat": 51.3359511, - "lon": 0.2885759, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 236", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218360, - "lat": 51.3307552, - "lon": 0.2929906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960218361, - "lat": 51.3229375, - "lon": 0.2903038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN15 238", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9960250528, - "lat": 51.2902583, - "lon": 0.3010271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN15 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961019488, - "lat": 51.7932172, - "lon": 0.4602949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961525992, - "lat": 51.4751231, - "lon": 0.3306007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM17 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961623064, - "lat": 53.2784492, - "lon": -4.1229187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961623065, - "lat": 53.2881116, - "lon": -4.1379578, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "mapillary": "374459438000152", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL58 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-15" - } -}, -{ - "type": "node", - "id": 9961623066, - "lat": 53.3052866, - "lon": -4.0694287, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL58 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961626647, - "lat": 53.2940005, - "lon": -4.0921403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL58 121", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9961626648, - "lat": 53.2840612, - "lon": -4.0871085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL58 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961626649, - "lat": 53.2820952, - "lon": -4.0946449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 315", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961626651, - "lat": 53.2773222, - "lon": -4.0913370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9961626653, - "lat": 53.2547295, - "lon": -4.1156307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL58 193", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9962211886, - "lat": 51.3158015, - "lon": 0.0588947, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9962580174, - "lat": 53.5677415, - "lon": -0.0748014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/YSKMbSG6/DN32-7D.jpg", - "location": "Clyde Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN32 7D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9963387016, - "lat": 51.6130878, - "lon": -1.8173821, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN25 461", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 9963984680, - "lat": 51.5452418, - "lon": -1.8475975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SN5 635P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9964045249, - "lat": 50.9258360, - "lon": -2.4816653, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9964334124, - "lat": 51.7809112, - "lon": -3.2889086, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 609", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9964887607, - "lat": 50.7423287, - "lon": -1.7313810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "BH23 65D", - "ref:GB:uprn": "10015349746", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9966274025, - "lat": 51.6561467, - "lon": -0.2043889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EN5 300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9966352621, - "lat": 53.0406011, - "lon": -1.0936351, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9966408937, - "lat": 52.2851873, - "lon": -3.4172947, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9966511726, - "lat": 52.1820082, - "lon": -3.4716102, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9967429894, - "lat": 55.7195773, - "lon": -2.2664818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00, Sa 10:30", - "operator": "Royal Mail", - "ref": "TD11 33", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9967858791, - "lat": 53.2094113, - "lon": -4.1608414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9967885723, - "lat": 51.1414913, - "lon": 0.5936051, - "tags": { - "amenity": "post_box", - "colour": "red", - "post_box:type": "wall", - "ref": "TN17 111", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968056270, - "lat": 53.3027855, - "lon": -1.1178487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968077424, - "lat": 52.9068379, - "lon": -4.4479915, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9968078447, - "lat": 53.2969156, - "lon": -1.1229297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 6", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9968113945, - "lat": 51.3209142, - "lon": 0.0310652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TN16 296", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9968113946, - "lat": 51.3209119, - "lon": 0.0310885, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TN16 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968113947, - "lat": 51.3290217, - "lon": 0.0235748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 88", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968113948, - "lat": 51.3168434, - "lon": 0.0335776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 77", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9968113949, - "lat": 51.2987359, - "lon": 0.0299639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968113950, - "lat": 51.3149232, - "lon": 0.0253377, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 79", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968215736, - "lat": 51.9034198, - "lon": -3.0202773, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9968310636, - "lat": 51.2972483, - "lon": 0.0844873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "colour": "red", - "ref": "TN16 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968310949, - "lat": 51.3143245, - "lon": 0.0335741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "colour": "red", - "mapillary": "195368446146703", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN16 1001", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-06-25" - } -}, -{ - "type": "node", - "id": 9968310950, - "lat": 51.3143185, - "lon": 0.0335762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "colour": "red", - "mapillary": "195368446146703", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN16 1002", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-06-25" - } -}, -{ - "type": "node", - "id": 9968357946, - "lat": 51.2933454, - "lon": 0.0252875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "colour": "Red", - "ref": "TN16 153", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9968551259, - "lat": 53.3209225, - "lon": -1.1916924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "S80 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968569276, - "lat": 53.3084782, - "lon": -1.1158102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968606503, - "lat": 53.3102167, - "lon": -1.1267625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 13", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968644742, - "lat": 53.3029775, - "lon": -1.1346257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968648189, - "lat": 53.3164092, - "lon": -1.1507242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S80 24", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9968669307, - "lat": 53.3096136, - "lon": -1.1193573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 23", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9968704082, - "lat": 53.3118305, - "lon": -1.1263657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S80 20", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9968738731, - "lat": 53.3024625, - "lon": -1.1038048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 37", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9969358002, - "lat": 53.2659628, - "lon": -1.0988115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "lamp", - "ref": "S80 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9969367482, - "lat": 53.3024042, - "lon": -1.1125861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S80 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9969370887, - "lat": 53.2912172, - "lon": -1.1223836, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9969377528, - "lat": 53.3017746, - "lon": -1.1451132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9969406490, - "lat": 53.2995238, - "lon": -1.1155639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S80 57", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9970596201, - "lat": 51.9963715, - "lon": -4.9812302, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA65 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9970651454, - "lat": 55.9995479, - "lon": -3.7705133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 21D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9970654340, - "lat": 55.9953528, - "lon": -3.7592849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 3", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 9970654341, - "lat": 55.9953540, - "lon": -3.7593044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "note": "parcels and franked mail", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "FK1 233P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9970706771, - "lat": 54.8136757, - "lon": -1.5162910, - "tags": { - "amenity": "post_box", - "ref": "DH4 123D" - } -}, -{ - "type": "node", - "id": 9970733902, - "lat": 53.2606482, - "lon": -1.2212700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S80 64", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9970733913, - "lat": 51.7214186, - "lon": -2.6638010, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP16 434D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9970736316, - "lat": 52.5601261, - "lon": -3.5368466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY17 475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9970754335, - "lat": 56.1993008, - "lon": -3.0084248, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9970825530, - "lat": 51.7657279, - "lon": -3.2888127, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP22 581", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9970830394, - "lat": 51.7157609, - "lon": -2.6763367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP16 391D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9970835729, - "lat": 53.2879436, - "lon": -1.2284211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9970885378, - "lat": 53.3078917, - "lon": -1.1076554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S80 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9971630155, - "lat": 53.2946925, - "lon": -1.1147556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971656601, - "lat": 53.2959821, - "lon": -1.1078602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971656913, - "lat": 53.2988729, - "lon": -1.1291283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971691360, - "lat": 53.2643809, - "lon": -1.2241414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971770354, - "lat": 53.3011581, - "lon": -1.0986095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971771639, - "lat": 53.3077925, - "lon": -1.1356876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 112", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971782059, - "lat": 53.3038020, - "lon": -1.1408011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9971812105, - "lat": 53.3061215, - "lon": -1.1118287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972258773, - "lat": 53.3041051, - "lon": -1.1319268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S80 176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972267344, - "lat": 53.3051008, - "lon": -1.1229094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "ref": "S80 100", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9972406833, - "lat": 53.3261280, - "lon": -1.1368480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972472664, - "lat": 53.3171120, - "lon": -1.0555046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "post_box:type": "wall", - "ref": "S81 16", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 9972508223, - "lat": 53.3258268, - "lon": -1.1212734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 17", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9972537903, - "lat": 53.3174700, - "lon": -1.1314051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972564221, - "lat": 53.3171899, - "lon": -1.1100796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 29", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972575687, - "lat": 53.3130121, - "lon": -1.1216261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972738509, - "lat": 53.3178356, - "lon": -1.1212431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 74", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9972759376, - "lat": 53.3269088, - "lon": -1.1428766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972778720, - "lat": 53.3934521, - "lon": -1.1380462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972781958, - "lat": 53.3150688, - "lon": -1.1272531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 53", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972782191, - "lat": 53.3222941, - "lon": -1.1331332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972782454, - "lat": 53.3930512, - "lon": -1.0617069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00", - "post_box:type": "lamp", - "ref": "S81 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972807527, - "lat": 53.3279600, - "lon": -1.1257117, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S81 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972808019, - "lat": 53.3214000, - "lon": -1.1279378, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972899479, - "lat": 53.3242823, - "lon": -1.1325847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 91", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9972907372, - "lat": 53.3145199, - "lon": -1.1047454, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973074567, - "lat": 51.6386327, - "lon": -2.6595323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "756026066243380", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP16 459D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source:position": "Mapillary 2023-05-03", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 9973074568, - "lat": 51.6401741, - "lon": -2.6648806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "925992602028748", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP16 901D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 9973074569, - "lat": 51.6727481, - "lon": -2.6522152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP16 473D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9973280792, - "lat": 53.3235055, - "lon": -1.1137967, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973299937, - "lat": 53.3513852, - "lon": -1.1408708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S81 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973309966, - "lat": 53.3736032, - "lon": -1.0641044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S81 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973377417, - "lat": 53.3121980, - "lon": -1.1170705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 95", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973380806, - "lat": 53.3265239, - "lon": -1.1155192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973423576, - "lat": 53.4993479, - "lon": -2.4600035, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9973451947, - "lat": 51.5679332, - "lon": 0.1805825, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "RM7 513", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973451948, - "lat": 51.5653754, - "lon": 0.1878458, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "RM12 112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9973466872, - "lat": 51.5606973, - "lon": 0.1756129, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RM7 300D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9973466873, - "lat": 51.5653225, - "lon": 0.1759687, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "RM7 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973466904, - "lat": 51.5704275, - "lon": 0.1769748, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RM7 85D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9973466960, - "lat": 51.5717225, - "lon": 0.1812275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RM7 501D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973466961, - "lat": 51.5695967, - "lon": 0.1868128, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "RM1 437D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9973563723, - "lat": 51.4999918, - "lon": -0.9194403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG9 19D" - } -}, -{ - "type": "node", - "id": 9974562345, - "lat": 51.7495342, - "lon": -3.3798033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF47 18D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9975259590, - "lat": 51.2788197, - "lon": 1.2183116, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "320852699695834", - "note": "This postbox is easy to miss. it is low down in the wall of the property \"Broomfield\" opposite entrance to the gravelly car park.", - "old_ref": "CT3 142", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-03-06" - } -}, -{ - "type": "node", - "id": 9975268744, - "lat": 51.2854183, - "lon": 1.2479250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3972832246131708", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "postal_code": "CT3", - "ref": "CT3 144", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 9975453813, - "lat": 51.7142414, - "lon": -3.4900367, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9975636755, - "lat": 51.3523845, - "lon": -1.9916902, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SN10 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9975713803, - "lat": 51.6507099, - "lon": -3.4310845, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9975733669, - "lat": 53.3188176, - "lon": -1.1051941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 141", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9975755025, - "lat": 53.3188735, - "lon": -1.1352589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S81 121", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9975758624, - "lat": 53.3156265, - "lon": -1.1327720, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9975783065, - "lat": 53.3253635, - "lon": -1.1064337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 148", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9975804006, - "lat": 53.3326089, - "lon": -1.1271169, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S81 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9976609418, - "lat": 50.6302259, - "lon": -4.3668617, - "tags": { - "amenity": "post_box", - "mapillary": "499105924766140", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9976609419, - "lat": 50.6412916, - "lon": -4.3649188, - "tags": { - "amenity": "post_box", - "mapillary": "606355467138733", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9977195194, - "lat": 51.8310582, - "lon": -1.3100096, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9978196846, - "lat": 51.7849666, - "lon": -2.6741517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NP25 501D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9978196847, - "lat": 51.8105828, - "lon": -2.7060699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP25 548D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9979807736, - "lat": 53.4942815, - "lon": -2.7107517, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9980013489, - "lat": 53.1748175, - "lon": -3.1120563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9980512562, - "lat": 55.1314827, - "lon": -6.6709461, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT52 12", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9980513072, - "lat": 54.9978955, - "lon": -7.3202178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "note": "no plate on RH aperture", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "BT47 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9980517783, - "lat": 54.9952676, - "lon": -7.3226447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT48 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9980517784, - "lat": 54.9963580, - "lon": -7.3209804, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "sticky label obscuring Saturday collection time 26/08/22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT48 21", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9980751550, - "lat": 53.7248686, - "lon": -0.0717968, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9981874470, - "lat": 53.0948612, - "lon": 0.2370781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PE24 63D" - } -}, -{ - "type": "node", - "id": 9981992786, - "lat": 51.2419674, - "lon": 0.1043564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN16 191", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9982057327, - "lat": 51.3017889, - "lon": 0.0522086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 84", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9982057328, - "lat": 51.3074877, - "lon": 0.0420558, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "mapillary": "448765989949771", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN16 83", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-06-25" - } -}, -{ - "type": "node", - "id": 9982063861, - "lat": 51.3118924, - "lon": 0.0402060, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983245096, - "lat": 51.8498281, - "lon": -3.2859608, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9983309583, - "lat": 51.6414708, - "lon": -2.6714748, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983319922, - "lat": 51.9406304, - "lon": -3.2605260, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983375761, - "lat": 52.0015801, - "lon": -3.3361099, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9983378244, - "lat": 52.0064104, - "lon": -3.3087480, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9983406442, - "lat": 52.0115544, - "lon": -3.2879260, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983889330, - "lat": 53.1419307, - "lon": -1.5510237, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DE4 911D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9983950961, - "lat": 51.4110237, - "lon": -1.8150960, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 74", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9983950962, - "lat": 51.4165366, - "lon": -1.7911738, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983950965, - "lat": 51.4099273, - "lon": -1.7888610, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 77", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983950967, - "lat": 51.4154621, - "lon": -1.7705402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983950971, - "lat": 51.4196121, - "lon": -1.7581175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 157D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9983950975, - "lat": 51.4189942, - "lon": -1.7255311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9985765405, - "lat": 50.9844252, - "lon": -0.6048299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 9985797522, - "lat": 50.9820321, - "lon": -0.6131459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 9985830355, - "lat": 50.9959515, - "lon": -0.6103401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU28 123D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 9985840465, - "lat": 51.0111294, - "lon": -0.6246580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU28 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-25" - } -}, -{ - "type": "node", - "id": 9985938718, - "lat": 50.3704354, - "lon": -4.2509932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 401", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-06-08", - "wikimedia_commons": "File:Antony Village Stores - geograph.org.uk - 4248400.jpg" - } -}, -{ - "type": "node", - "id": 9986121511, - "lat": 53.2669592, - "lon": -3.4260781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL17 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 9986234201, - "lat": 54.3295697, - "lon": -2.7472117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "LA9", - "ref": "LA9 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9986278567, - "lat": 51.7295122, - "lon": -3.3734838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9986731530, - "lat": 50.3745707, - "lon": -4.3062337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "ref": "PL11 545", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-08-29" - } -}, -{ - "type": "node", - "id": 9986882045, - "lat": 55.9390316, - "lon": -4.1626560, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9986882046, - "lat": 55.9363445, - "lon": -4.1600104, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9986995517, - "lat": 51.0594380, - "lon": 0.1602858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TN6 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9987136946, - "lat": 50.9655280, - "lon": -2.1882583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref:GB:uprn": "10015324436" - } -}, -{ - "type": "node", - "id": 9988261452, - "lat": 55.1284458, - "lon": -6.6616404, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 9989009759, - "lat": 51.7956763, - "lon": 0.4479866, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 9989348177, - "lat": 51.8496604, - "lon": 0.4960883, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9989422413, - "lat": 51.1071284, - "lon": -3.6506139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 9989451534, - "lat": 50.8973132, - "lon": -2.9948715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 9990331872, - "lat": 53.7675768, - "lon": -2.7048482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PR1 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9990606579, - "lat": 52.6103925, - "lon": 0.3794796, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE38 501D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9991318197, - "lat": 53.1094984, - "lon": -3.3704232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9991445461, - "lat": 53.4287311, - "lon": -1.2847717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S66 244", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 9991500509, - "lat": 53.4229471, - "lon": -1.2479893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "indoor", - "ref": "S66 1509", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 9991628656, - "lat": 53.2868337, - "lon": -3.0569075, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9991659466, - "lat": 53.1098400, - "lon": -3.3581393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9993147541, - "lat": 55.9379539, - "lon": -4.1718181, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 9993182050, - "lat": 53.4574238, - "lon": -2.5996668, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 201", - "royal_cypher": "EIIR", - "support": "pole" - } -}, -{ - "type": "node", - "id": 9993315424, - "lat": 52.0647492, - "lon": -2.7115368, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 9993480149, - "lat": 53.3823958, - "lon": -1.4683772, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "post_box:apertures": "2", - "ref": "S1 31;S1 3199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9993494446, - "lat": 53.3844430, - "lon": -1.4698555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "2", - "ref": "S1 1912;S1 912", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9993774381, - "lat": 51.1825763, - "lon": -3.3338262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA23 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9993791755, - "lat": 51.3555834, - "lon": -2.5261276, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9995127767, - "lat": 51.4200453, - "lon": -1.7302692, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "SN8 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9995973523, - "lat": 51.1800677, - "lon": -3.3347171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA23 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9998087927, - "lat": 51.7421461, - "lon": 0.4668910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CM1 435D" - } -}, -{ - "type": "node", - "id": 9998116076, - "lat": 51.3612034, - "lon": -1.8043996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9998116077, - "lat": 51.3571619, - "lon": -1.8492139, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9998116078, - "lat": 51.3536260, - "lon": -1.8524621, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9998116079, - "lat": 51.3424804, - "lon": -1.8488800, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 145D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9999467358, - "lat": 51.1690237, - "lon": -3.3307913, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TA23 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9999467359, - "lat": 51.1785422, - "lon": -3.3323892, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 11:30", - "note": "Collection plate worn, no reference visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 9999579665, - "lat": 53.3585943, - "lon": 0.2484966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 9999598837, - "lat": 51.1841657, - "lon": -3.4443416, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA24 77", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 9999962410, - "lat": 52.7997237, - "lon": -0.1537576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE11 34" - } -}, -{ - "type": "node", - "id": 10000357282, - "lat": 53.6114395, - "lon": -1.7517573, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HD4 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10000467321, - "lat": 55.6786638, - "lon": -4.5178984, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10000467386, - "lat": 55.6700941, - "lon": -4.5702727, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10000467389, - "lat": 55.6422625, - "lon": -4.5324956, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10000467393, - "lat": 55.6379212, - "lon": -4.5271915, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10000467395, - "lat": 55.6319577, - "lon": -4.6351743, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10000653188, - "lat": 50.1525254, - "lon": -5.1946585, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR10 83", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10000653189, - "lat": 50.1742446, - "lon": -5.1172773, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 40", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10000653190, - "lat": 50.1796271, - "lon": -5.1160380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:15; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR10 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10000653191, - "lat": 50.1419123, - "lon": -5.1585745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10000653192, - "lat": 50.1643938, - "lon": -5.1329421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR10 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10000682520, - "lat": 51.1709387, - "lon": -1.3408641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SO21 184", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-08-29" - } -}, -{ - "type": "node", - "id": 10000716714, - "lat": 51.3254576, - "lon": -0.5036103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU22 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-08-28" - } -}, -{ - "type": "node", - "id": 10001149267, - "lat": 52.9249699, - "lon": -3.2343848, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL20 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10001418469, - "lat": 53.8891707, - "lon": -3.0093790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "FY5 000" - } -}, -{ - "type": "node", - "id": 10001451121, - "lat": 50.1298557, - "lon": -5.6277690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10001574801, - "lat": 50.1640795, - "lon": -5.1587255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45; Su off", - "drive_through": "no", - "mapillary": "432187108282115", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR10 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10001574802, - "lat": 50.1656711, - "lon": -5.1728577, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15; Su off", - "drive_through": "no", - "mapillary": "526262295876522", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 65", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10001574803, - "lat": 50.1879137, - "lon": -5.1281462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:30; Su off", - "drive_through": "no", - "mapillary": "478967703346058", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10001574804, - "lat": 50.2704448, - "lon": -5.0357263, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "738752497147725", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR1 199D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10002464411, - "lat": 53.3709644, - "lon": -1.5065351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.37093 -1.50654", - "post_box:type": "lamp", - "ref": "S10 133", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10002626660, - "lat": 56.6773378, - "lon": -3.1715395, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD8 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10002715600, - "lat": 53.4185372, - "lon": -1.1956315, - "tags": { - "amenity": "post_box", - "comment": "no collection plate", - "location": "53.41854 -1.19568", - "post_box:type": "pillar", - "ref": "S66 67", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10002749730, - "lat": 53.4058213, - "lon": -1.1834573, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "location": "53.40580 -1.18340", - "post_box:type": "lamp", - "ref": "S66 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10002763970, - "lat": 53.4291956, - "lon": -1.2013961, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.42924 -1.20142", - "post_box:type": "pillar", - "ref": "S66 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10002765342, - "lat": 53.4171632, - "lon": -1.1894814, - "tags": { - "amenity": "post_box", - "comment": "collection plate missing", - "location": "53.41715 -1.18944", - "post_box:type": "lamp", - "ref": "S66 255", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10002784825, - "lat": 53.4209996, - "lon": -1.1974754, - "tags": { - "amenity": "post_box", - "comment": "no collection plate", - "location": "53.42098 -1.19751", - "post_box:type": "pillar", - "ref": "S66 138", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10002793505, - "lat": 53.4299615, - "lon": -1.1946598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "location": "53.42995 -1.19464", - "post_box:type": "lamp", - "ref": "S66 20", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10003071656, - "lat": 50.1646506, - "lon": -5.0700957, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 62", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10004617617, - "lat": 51.3848610, - "lon": -2.8154320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "466089091132008", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-07-18", - "survey:date": "2020-07-18" - } -}, -{ - "type": "node", - "id": 10004645917, - "lat": 50.7322870, - "lon": -2.8208720, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "447228873927732", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref:GB:uprn": "10015464806", - "source:position": "Mapillary 2020-06-26", - "survey:date": "2022-05-23" - } -}, -{ - "type": "node", - "id": 10004810505, - "lat": 51.9053373, - "lon": -3.1936159, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-11-20", - "wikimedia_commons": "File:Queen Elizabeth II postbox and a red phonebox, Cwmdu, Powys - geograph.org.uk - 5774391.jpg" - } -}, -{ - "type": "node", - "id": 10004853460, - "lat": 50.2652342, - "lon": -5.0379478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 262", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10004902962, - "lat": 51.9182679, - "lon": -3.3007738, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10004910163, - "lat": 51.9256283, - "lon": -3.2926294, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10005301834, - "lat": 51.3752618, - "lon": -0.0103157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10005321538, - "lat": 51.9914677, - "lon": -3.3913011, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10005362191, - "lat": 51.9970717, - "lon": -3.5394788, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10005400539, - "lat": 51.9850432, - "lon": -3.5901316, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10005414632, - "lat": 51.9773197, - "lon": -3.4996015, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10005417475, - "lat": 51.9548770, - "lon": -3.5075117, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10005633557, - "lat": 55.0023874, - "lon": -1.6344108, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10005633570, - "lat": 54.9995221, - "lon": -1.6384247, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 445D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10006208217, - "lat": 51.4761140, - "lon": -3.2477040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "461873361721376", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2021-06-27", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10006208218, - "lat": 51.4404230, - "lon": -3.1721900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "514493186328309", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF64 317D", - "royal_cypher": "GR", - "source:position": "Mapillary 2021-06-27", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10006209818, - "lat": 51.4430030, - "lon": -3.1699790, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "866468770652198", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF64 305D", - "royal_cypher": "EIIR", - "source:position": "Mapillary 2021-06-27", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10006210019, - "lat": 51.6522111, - "lon": -3.0544879, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "380001346679395", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2020-09-26", - "survey:date": "2020-09-26" - } -}, -{ - "type": "node", - "id": 10006273036, - "lat": 54.1858005, - "lon": -6.3221781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "mapillary": "205339131250144", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10006273832, - "lat": 54.1766353, - "lon": -6.3280522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "492042132038991", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10006308559, - "lat": 51.6954758, - "lon": -3.0157337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP4 58", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10006308562, - "lat": 51.6989130, - "lon": -3.0332559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "NP4 16D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10006308563, - "lat": 51.7001070, - "lon": -3.0385582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP4 1", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10006324908, - "lat": 51.8494157, - "lon": -3.1503920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP8 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10006324910, - "lat": 51.8527287, - "lon": -3.1465283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP8 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10006524905, - "lat": 53.5089900, - "lon": -1.1014455, - "tags": { - "amenity": "post_box", - "mapillary": "4177003185657930", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10006529060, - "lat": 53.5266052, - "lon": -1.1216380, - "tags": { - "amenity": "post_box", - "mapillary": "262117865611434", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10006556098, - "lat": 53.5567663, - "lon": -1.1245004, - "tags": { - "amenity": "post_box", - "mapillary": "2876668825986550", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10006556487, - "lat": 53.5333046, - "lon": -1.1556534, - "tags": { - "amenity": "post_box", - "mapillary": "521138665552384", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10006561552, - "lat": 53.5277942, - "lon": -1.1311650, - "tags": { - "amenity": "post_box", - "mapillary": "369542724421564", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10006698441, - "lat": 51.8741821, - "lon": -5.1893305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SA62 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10007503767, - "lat": 52.4869958, - "lon": 1.6973546, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10007517293, - "lat": 53.8055692, - "lon": -1.8216667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BD15 416", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10007577300, - "lat": 51.6228196, - "lon": 0.4163669, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM12 2;CM12 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10007640992, - "lat": 57.0187471, - "lon": -2.1637588, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10008515238, - "lat": 53.4010225, - "lon": -1.1543618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "53.40105 -1.15443", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S66 198", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10008999616, - "lat": 57.0395883, - "lon": -3.2138952, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB35 430", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10009019318, - "lat": 50.2248382, - "lon": -5.2155858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10009117546, - "lat": 52.7101173, - "lon": -4.0144488, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10009124415, - "lat": 52.7142950, - "lon": -4.0043046, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10009256689, - "lat": 52.5170353, - "lon": -1.9019464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B42 1239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "estimate" - } -}, -{ - "type": "node", - "id": 10009310969, - "lat": 52.6424416, - "lon": -4.1122623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL37 75D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10009938211, - "lat": 53.4069139, - "lon": -1.1464976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S66 36", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10010093447, - "lat": 53.3457639, - "lon": -2.5758990, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 113", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10010728872, - "lat": 50.1395858, - "lon": -5.0956022, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10010728873, - "lat": 50.1472253, - "lon": -5.1034064, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10010728874, - "lat": 50.1496155, - "lon": -5.1032988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR11 54D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10010751717, - "lat": 50.1199189, - "lon": -5.1804158, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR11 74", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10010751718, - "lat": 50.1075291, - "lon": -5.0957988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 76D", - "royal_cypher": "GR", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10011083801, - "lat": 51.7891573, - "lon": 0.4457826, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10011083802, - "lat": 51.8036105, - "lon": 0.4611003, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10012042817, - "lat": 52.6243717, - "lon": -1.0622025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE5 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-09" - } -}, -{ - "type": "node", - "id": 10012458350, - "lat": 57.3641762, - "lon": -2.0102114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10012467117, - "lat": 56.7296157, - "lon": -2.4693560, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10013339722, - "lat": 52.6377837, - "lon": -1.0555643, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "ref": "LE5 736", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10014263544, - "lat": 57.2897278, - "lon": -2.3964282, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10015527822, - "lat": 51.2911767, - "lon": -0.7495722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "GU14 120D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10016052372, - "lat": 50.6062193, - "lon": -2.4670127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 13D", - "ref:GB:uprn": "10015830970", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016052373, - "lat": 50.6064201, - "lon": -2.4712278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 133D", - "ref:GB:uprn": "10015338511", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016052374, - "lat": 50.6075536, - "lon": -2.4736009, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 63D", - "ref:GB:uprn": "10015411572", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016052375, - "lat": 50.6061039, - "lon": -2.4838885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016052378, - "lat": 50.6044757, - "lon": -2.4844048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 135D", - "ref:GB:uprn": "10015421480", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016052379, - "lat": 50.5985308, - "lon": -2.4832092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 96D", - "ref:GB:uprn": "10015420843", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053622, - "lat": 50.5936537, - "lon": -2.4747904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 30", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053623, - "lat": 50.5925707, - "lon": -2.4774230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT4 93D", - "ref:GB:uprn": "10015288713", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053650, - "lat": 50.5900795, - "lon": -2.4691343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT4 136D", - "ref:GB:uprn": "10015392167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053651, - "lat": 50.5928751, - "lon": -2.4686730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 121D", - "ref:GB:uprn": "10015421755", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053652, - "lat": 50.5952231, - "lon": -2.4683981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 144D", - "ref:GB:uprn": "10015331859", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053653, - "lat": 50.5974625, - "lon": -2.4637404, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 100D", - "ref:GB:uprn": "10015457816", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053654, - "lat": 50.6005111, - "lon": -2.4611371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 84D", - "ref:GB:uprn": "10015358703", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053655, - "lat": 50.6015336, - "lon": -2.4589235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 5D", - "ref:GB:uprn": "10015471649", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053656, - "lat": 50.6000158, - "lon": -2.4666452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times with effect from 2022-10-03. Previously Mo-Fr 16:15, Sa 10:30. Per a label stuck to the information plate.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 130D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053657, - "lat": 50.5980920, - "lon": -2.4715530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 50D", - "ref:GB:uprn": "10015351931", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053658, - "lat": 50.6018249, - "lon": -2.4705965, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT4 66D", - "ref:GB:uprn": "10015463952", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053659, - "lat": 50.6041042, - "lon": -2.4638410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 10D", - "ref:GB:uprn": "10015454002", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10016053660, - "lat": 50.6057973, - "lon": -2.4557468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 3D", - "ref:GB:uprn": "10015512561", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10018080061, - "lat": 55.0038643, - "lon": -1.6292270, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date:collection_times": "2022-10-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 296D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10019089294, - "lat": 53.4856231, - "lon": -2.2307250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 10019122745, - "lat": 57.1635950, - "lon": -2.1391572, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "AB16 639D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10019140064, - "lat": 50.7327926, - "lon": -2.4599209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 70", - "ref:GB:uprn": "10015291903", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019140065, - "lat": 50.7314278, - "lon": -2.4522649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 178", - "ref:GB:uprn": "10015345497", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019140066, - "lat": 50.7305707, - "lon": -2.4490687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019140067, - "lat": 50.7244770, - "lon": -2.4443159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 16", - "ref:GB:uprn": "10015275292", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019153119, - "lat": 50.7183147, - "lon": -2.4433865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 210", - "ref:GB:uprn": "10015402061", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019153120, - "lat": 50.7177530, - "lon": -2.4458206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DT1 510P", - "ref:GB:uprn": "10015281831", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019153121, - "lat": 50.7168648, - "lon": -2.4496595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 200D", - "ref:GB:uprn": "10015401300", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019153124, - "lat": 50.7143762, - "lon": -2.4459339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 56D", - "ref:GB:uprn": "10015338887", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019153127, - "lat": 50.7147666, - "lon": -2.4279289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT1 103D", - "ref:GB:uprn": "10015345310", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10019248656, - "lat": 53.4201833, - "lon": -1.3050351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "off_street_box", - "post_box:mounting": "wall", - "post_box:type": "pillar", - "ref": "S65 1508", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10019289834, - "lat": 53.4197712, - "lon": -2.5690072, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 389", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10019536274, - "lat": 50.9813174, - "lon": 0.5957885, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10019634588, - "lat": 51.5047898, - "lon": -0.5435163, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "drive_through": "no", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10023030120, - "lat": 53.4827703, - "lon": -2.2293427, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M1 171D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10024809174, - "lat": 51.7185598, - "lon": -1.9722013, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "2617630318530099", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "GL7 31", - "royal_cypher": "GR", - "survey:date": "2020-08-01" - } -}, -{ - "type": "node", - "id": 10025286754, - "lat": 51.5380820, - "lon": -3.1921397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10025375987, - "lat": 53.2825953, - "lon": -1.2876605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S43 450P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10025822544, - "lat": 51.1453071, - "lon": -0.7275745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU8 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_point": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10025862193, - "lat": 51.1462725, - "lon": -0.7551322, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "In the wall at the front of the Bel And The Dragon public house.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU10 39D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey_point": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10025863082, - "lat": 51.2936656, - "lon": -2.2077047, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10025870378, - "lat": 51.1365278, - "lon": -0.6915310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU8 89D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey_point": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10025870605, - "lat": 51.1409557, - "lon": -0.7651529, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "GU10 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey_point": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10027927617, - "lat": 52.6230152, - "lon": -1.0814106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE2 265", - "royal_cypher": "EIIR", - "survey:date": "2022-09-15" - } -}, -{ - "type": "node", - "id": 10027927618, - "lat": 52.6209948, - "lon": -1.0761304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "ref": "LE5 412", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-15" - } -}, -{ - "type": "node", - "id": 10028173265, - "lat": 52.5492779, - "lon": -1.8835663, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B44 1465" - } -}, -{ - "type": "node", - "id": 10028227099, - "lat": 51.9533135, - "lon": -2.8930666, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10028536414, - "lat": 52.5952224, - "lon": -1.0144040, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10029967956, - "lat": 50.9621198, - "lon": -2.8234415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10030149947, - "lat": 51.6729368, - "lon": -0.0943418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "EN2 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10031450226, - "lat": 51.5254792, - "lon": -3.2031308, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10031630909, - "lat": 53.6029744, - "lon": -2.8660044, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10031905454, - "lat": 52.6069609, - "lon": -0.2462643, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10031957070, - "lat": 51.4659389, - "lon": 0.0096973, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10032443448, - "lat": 50.7567143, - "lon": -1.9850211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BH18 180", - "ref:GB:uprn": "10015383277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10032443449, - "lat": 50.7402643, - "lon": -1.9891088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH17 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10032443450, - "lat": 50.7396744, - "lon": -1.9795802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "BH17 507P", - "ref:GB:uprn": "10015443451", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10032443455, - "lat": 50.7516440, - "lon": -1.9668746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH17 398", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10032443456, - "lat": 50.7484552, - "lon": -1.9504192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "BH12 399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10033169870, - "lat": 57.4446802, - "lon": -2.7758573, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10033170460, - "lat": 57.4295330, - "lon": -3.3428853, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 11:30; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "AB37 176", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10033663617, - "lat": 52.6364405, - "lon": -1.0900144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "ref": "LE5 349", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-09-18" - } -}, -{ - "type": "node", - "id": 10033793517, - "lat": 52.6374879, - "lon": -1.0803017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "ref": "LE5 550", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-09-18" - } -}, -{ - "type": "node", - "id": 10033867180, - "lat": 55.9464663, - "lon": -4.3135912, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G62 677D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10033986961, - "lat": 51.6331122, - "lon": -0.0994879, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "N21 7;N21 71", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10034841937, - "lat": 58.2174142, - "lon": -6.7506848, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10036358370, - "lat": 52.4633666, - "lon": -1.1984556, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10036770703, - "lat": 53.7504621, - "lon": -1.9968312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HX7 173", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10036792130, - "lat": 53.6448757, - "lon": -1.7811968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HD1 44", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10036792131, - "lat": 53.6452597, - "lon": -1.7849626, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "HD1 330P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10037675789, - "lat": 51.5198767, - "lon": -1.8345397, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 07:15", - "drive_through": "no", - "mapillary": "346530475098526", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN4 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-17" - } -}, -{ - "type": "node", - "id": 10037735040, - "lat": 53.2407739, - "lon": -1.3273248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "post_box:type": "parcel", - "ref": "S44 400P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10037864129, - "lat": 50.9751909, - "lon": -2.6087442, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10038116599, - "lat": 57.1323066, - "lon": -2.1115897, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 147D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10038793020, - "lat": 50.2436662, - "lon": -5.2208893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR15 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10038793021, - "lat": 50.2436609, - "lon": -5.2208916, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR15 79", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10038903852, - "lat": 53.6445420, - "lon": -1.7909389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10039523396, - "lat": 51.9714847, - "lon": 0.8738716, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "CO6 325", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10039691809, - "lat": 51.4793872, - "lon": -0.3629470, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10039866461, - "lat": 52.4560543, - "lon": -1.2015533, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10039875437, - "lat": 51.5035434, - "lon": -3.1974829, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10040732355, - "lat": 50.2322871, - "lon": -5.2213950, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10041307085, - "lat": 50.1064259, - "lon": -5.1293259, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "TR11 77D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10041307086, - "lat": 50.1074128, - "lon": -5.1451652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR11 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10041307087, - "lat": 50.1186984, - "lon": -5.1536700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR11 33", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10041307088, - "lat": 50.1040615, - "lon": -5.1263768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR11 28D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 10041307089, - "lat": 50.1002888, - "lon": -5.1289465, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 95D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-23" - } -}, -{ - "type": "node", - "id": 10041426313, - "lat": 53.1819668, - "lon": -2.8995177, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH4 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10041492464, - "lat": 53.4258462, - "lon": -2.3264947, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10042821679, - "lat": 50.2332496, - "lon": -5.2263229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TR15 9;TR15 9000", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10042973500, - "lat": 51.3370610, - "lon": -2.5799206, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10043387493, - "lat": 52.5107677, - "lon": -1.1954026, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 10043456590, - "lat": 53.3485452, - "lon": -1.4007333, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "comment": "designed for v large letters.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S12 6321", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10043541534, - "lat": 53.4250385, - "lon": -1.3572763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "non-standard box", - "post_box:type": "indoor", - "ref": "S60 326", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10045702731, - "lat": 51.6297758, - "lon": -2.9361876, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10045758866, - "lat": 51.7585714, - "lon": -2.9977367, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10045807093, - "lat": 51.8215940, - "lon": -3.1065978, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10045867093, - "lat": 53.4278864, - "lon": -2.3224730, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10046173576, - "lat": 53.6013801, - "lon": -2.2572945, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10046808523, - "lat": 51.6050950, - "lon": -0.2001941, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "N3 11D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10047669445, - "lat": 51.5649144, - "lon": -0.1037901, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 10048918716, - "lat": 51.1941049, - "lon": 0.0658909, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN8 227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10048950917, - "lat": 51.1955517, - "lon": 0.0690938, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10048950918, - "lat": 51.1888366, - "lon": 0.0676488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "mapillary": "492500475130331", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN8 225", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2020-08-31" - } -}, -{ - "type": "node", - "id": 10048950919, - "lat": 51.1840742, - "lon": 0.0690625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10049176629, - "lat": 51.1978634, - "lon": 0.0644589, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN8 2222", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10049176630, - "lat": 51.1978389, - "lon": 0.0644641, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 11:45; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN8 2221", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10049256194, - "lat": 52.4688338, - "lon": -1.1975922, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10049672282, - "lat": 53.1893395, - "lon": -1.3485906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "post_box:type": "parcel", - "ref": "S42 305P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10049709990, - "lat": 53.1975404, - "lon": -1.3986248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S42 188D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10049718290, - "lat": 53.0575659, - "lon": -4.2176130, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10049795324, - "lat": 53.5748594, - "lon": -0.1650036, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/YCjDzHnF/DN41-48D.jpg", - "location": "Low Road", - "manufacturer": "W.T. Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN41 48D", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10049795325, - "lat": 53.5790668, - "lon": -0.1578891, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/8kHRLR6s/DN41-173-D.jpg", - "location": "Fords Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN41 173D", - "ref:GB:uprn": "10015270758", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10051024708, - "lat": 51.2599860, - "lon": 0.1026100, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10051170591, - "lat": 51.3138409, - "lon": -1.8554860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 134D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10051170592, - "lat": 51.3036853, - "lon": -1.8337305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 5", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10051170593, - "lat": 51.3032550, - "lon": -1.8234148, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "4774658772582517", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN9 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-06-13" - } -}, -{ - "type": "node", - "id": 10051170594, - "lat": 51.2948604, - "lon": -1.8104906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 168D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10051170595, - "lat": 51.2631601, - "lon": -1.7952744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10051170596, - "lat": 51.2628958, - "lon": -1.8003344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10052005722, - "lat": 52.6443532, - "lon": -0.7096553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE15 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10052469729, - "lat": 50.2694944, - "lon": -4.7954502, - "tags": { - "amenity": "post_box", - "ref": "PL26 204", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 10052469926, - "lat": 50.2735868, - "lon": -4.7865095, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL26 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 10052470222, - "lat": 50.2764708, - "lon": -4.7898267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL26 210", - "survey:date": "2022-09-25" - } -}, -{ - "type": "node", - "id": 10053029631, - "lat": 51.5284357, - "lon": 0.0198664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10053471478, - "lat": 50.3337660, - "lon": -4.7883109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1210765282832833", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10053528762, - "lat": 50.3618508, - "lon": -4.7162814, - "tags": { - "amenity": "post_box", - "mapillary": "189617713471453", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10053540511, - "lat": 50.4575764, - "lon": -4.5196016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "322024366795351", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10053816628, - "lat": 52.7581343, - "lon": 0.4179794, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "note": "Inside Tesco store, on the left after going in main entrance.", - "post_box:type": "indoor_pillar", - "ref": "PE30 2" - } -}, -{ - "type": "node", - "id": 10054950472, - "lat": 51.3649390, - "lon": -0.9649781, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10055004732, - "lat": 51.5474892, - "lon": -1.6716702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10055521524, - "lat": 53.1643316, - "lon": -1.3977839, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "wall", - "ref": "S45 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10055929104, - "lat": 50.1537824, - "lon": -5.0881675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10055929105, - "lat": 50.1530422, - "lon": -5.0744876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 4D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10055929106, - "lat": 50.1698357, - "lon": -5.0709761, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR11 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10055929107, - "lat": 50.1543339, - "lon": -5.0709562, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 8", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10056149502, - "lat": 50.5050305, - "lon": -4.3144306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "764666161259212", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10056213757, - "lat": 50.5042380, - "lon": -4.3026146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3012803299049151", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10056232471, - "lat": 50.5033489, - "lon": -4.3117056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "647623046273240", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10056278447, - "lat": 51.3825097, - "lon": -2.6617968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2721667568131481", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2021-08-16" - } -}, -{ - "type": "node", - "id": 10056289775, - "lat": 50.5030766, - "lon": -4.3157495, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00; Su off", - "mapillary": "1148639839212997", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PL17 703", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10056438479, - "lat": 53.1687057, - "lon": -1.4099073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "comment": "NST, full working order (screen)", - "post_box:type": "indoor", - "ref": "S45 2000", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10056462746, - "lat": 53.1645579, - "lon": -1.4126959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S45 148D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10056516157, - "lat": 53.1700202, - "lon": -1.3987093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "post_box:type": "pillar", - "ref": "S45 420", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10056646592, - "lat": 50.6323889, - "lon": -4.3656198, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "604190990879611", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL15 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10056678823, - "lat": 50.6345483, - "lon": -4.3546513, - "tags": { - "amenity": "post_box", - "mapillary": "165694559381813", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10057069144, - "lat": 51.5314406, - "lon": -1.7030664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 187", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10057096148, - "lat": 53.1667460, - "lon": -1.4143827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "lamp", - "ref": "S45 108", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10057218442, - "lat": 50.0852312, - "lon": -5.0991656, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR12 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery", - "survey:date": "2023-07-29" - } -}, -{ - "type": "node", - "id": 10057218443, - "lat": 50.2337911, - "lon": -5.2266825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "TR15 135", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10057253439, - "lat": 51.3454606, - "lon": -2.2812125, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10057320453, - "lat": 51.0408654, - "lon": -2.1561441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10057887200, - "lat": 50.1725708, - "lon": -5.0634622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 14", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10057887201, - "lat": 50.1870235, - "lon": -5.0820518, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10057887202, - "lat": 50.1482221, - "lon": -5.0851482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10057887203, - "lat": 50.1766636, - "lon": -5.0558485, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR11 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10057987736, - "lat": 51.9929828, - "lon": 0.9060489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CO6 336D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10059404025, - "lat": 53.0806742, - "lon": -2.1662273, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10059513828, - "lat": 52.4252149, - "lon": -2.3179227, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10059811832, - "lat": 57.3319634, - "lon": -2.8334751, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10059815843, - "lat": 57.3039387, - "lon": -3.6664741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "post_box:type": "wall", - "ref": "PH26 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10060648807, - "lat": 52.6693843, - "lon": -2.4598256, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10060712713, - "lat": 51.0725079, - "lon": -4.0884585, - "tags": { - "amenity": "post_box", - "mapillary": "216048086688251", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10060734985, - "lat": 54.9822477, - "lon": -1.7056129, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10060734986, - "lat": 54.9989075, - "lon": -1.6725321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10060734996, - "lat": 55.0064619, - "lon": -1.6655073, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10060735009, - "lat": 55.0052140, - "lon": -1.6934823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10060750329, - "lat": 50.9156203, - "lon": -4.0577852, - "tags": { - "amenity": "post_box", - "mapillary": "513392500480252", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10060752612, - "lat": 50.8653982, - "lon": -3.9442109, - "tags": { - "amenity": "post_box", - "mapillary": "676615310244469", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10060770265, - "lat": 51.0724351, - "lon": -4.0767112, - "tags": { - "amenity": "post_box", - "mapillary": "312768523746109", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10061235068, - "lat": 53.6964104, - "lon": -2.8106211, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "483132799673225", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10061247770, - "lat": 53.6787532, - "lon": -2.7868032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "524602508539883", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10063622067, - "lat": 53.5509360, - "lon": -2.6332310, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://kartaview.org/details/2058422/150/track-info", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "WN1 16", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10063622068, - "lat": 53.5509641, - "lon": -2.6331776, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://kartaview.org/details/2058422/150/track-info", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WN1 161", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 10063626298, - "lat": 53.5503949, - "lon": -2.6285192, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "349255733381650", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 93" - } -}, -{ - "type": "node", - "id": 10063628726, - "lat": 53.5607225, - "lon": -2.6286977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "302232124801271", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN1 51", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10063631335, - "lat": 53.5635342, - "lon": -2.6315470, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "915495572625090", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 130", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 10063635191, - "lat": 53.5539363, - "lon": -2.6280087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "937852380333763", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 43", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10063635212, - "lat": 53.5687612, - "lon": -2.6374299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "305066574596465", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN1 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10063880774, - "lat": 53.5479204, - "lon": -2.6299996, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=98959a31-2240-4a19-bb35-e79d1c247b3e&cp=53.54793~-2.630193&lvl=19&dir=89.60773&pi=-3.882337&style=x&mo=z.2.51&v", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 1", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 10063951780, - "lat": 50.1497415, - "lon": -5.0761245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR11 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10063951781, - "lat": 50.1542482, - "lon": -5.0842702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10063951782, - "lat": 50.1342087, - "lon": -5.2089777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR11 34", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10063951783, - "lat": 50.1658101, - "lon": -5.1026286, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10064268203, - "lat": 53.5532122, - "lon": -2.6165445, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?cp=53.552834~-2.616299&lvl=17&dir=28.194&style=x&v=2&sV=1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 97", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10064543727, - "lat": 52.2575852, - "lon": -2.7882682, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10065156996, - "lat": 51.8424381, - "lon": -2.9650122, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10065192103, - "lat": 51.7947347, - "lon": -2.9060796, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10065200941, - "lat": 51.8117939, - "lon": -2.9435361, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10065331020, - "lat": 51.7850953, - "lon": -2.8930781, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10065461323, - "lat": 50.2315472, - "lon": -5.2366516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR15 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10065466501, - "lat": 50.2430735, - "lon": -5.2609432, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR15 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10065523724, - "lat": 50.6331447, - "lon": -4.1137783, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "fixme": "Slot currently sealed with tape (July 2022) so not operational. Needs another survey to check status", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10065527844, - "lat": 50.2293268, - "lon": -5.2622989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR15 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10066930456, - "lat": 53.5682060, - "lon": -1.7541480, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HD9 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453230, - "lat": 51.3325347, - "lon": -1.8767550, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 20:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453231, - "lat": 51.3296681, - "lon": -1.8457045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "mapillary": "762612238902845", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN9 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-18" - } -}, -{ - "type": "node", - "id": 10067453232, - "lat": 51.3234608, - "lon": -1.8375532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 25", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10067453241, - "lat": 51.3289726, - "lon": -1.8052178, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453242, - "lat": 51.3263245, - "lon": -1.7949450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10067453248, - "lat": 51.3320462, - "lon": -1.7935556, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 16D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10067453249, - "lat": 51.3330752, - "lon": -1.7836422, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 49", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453250, - "lat": 51.3347669, - "lon": -1.7616762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453251, - "lat": 51.3382264, - "lon": -1.7729549, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453252, - "lat": 51.3425468, - "lon": -1.7637040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 174D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453253, - "lat": 51.3416722, - "lon": -1.7592689, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10067453254, - "lat": 51.3481350, - "lon": -1.7747882, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN9 20", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10067453255, - "lat": 51.3463290, - "lon": -1.7992151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN9 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10068112592, - "lat": 54.9964071, - "lon": -1.6308384, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-30", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 69D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10068112593, - "lat": 54.9971601, - "lon": -1.6241371, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-30", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NE3 222D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10068112597, - "lat": 55.0024101, - "lon": -1.6228814, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-30", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NE3 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10068497433, - "lat": 54.8328184, - "lon": -1.4737934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10068497438, - "lat": 54.8128013, - "lon": -1.5075102, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10069009612, - "lat": 51.7085133, - "lon": -5.1754654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA62 168", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10069175336, - "lat": 53.5810300, - "lon": -0.1618277, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "image": "https://i.postimg.cc/wjLTmdfz/DN41-147.jpg", - "location": "Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN41 147", - "ref:GB:uprn": "10015846010", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10069183509, - "lat": 51.7556767, - "lon": -2.6766091, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10069253962, - "lat": 51.7490779, - "lon": -2.6805703, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10069298976, - "lat": 51.6619775, - "lon": -2.7468364, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10069719128, - "lat": 51.5054520, - "lon": 0.2762702, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10071157693, - "lat": 55.0000462, - "lon": -1.6248014, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-09-30", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE3 200D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10072446255, - "lat": 54.6876275, - "lon": -1.2131817, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS24 562", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10073148300, - "lat": 50.3444348, - "lon": -4.7644011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "image": "https://www.bing.com/maps?osid=c2724586-14ce-4af4-9827-781ea02e79cb&cp=50.344479~-4.764364&lvl=19&dir=255.1619&pi=4.145&style=x&mo=z.0&v=2&sV=2&form=S00027", - "mapillary": "495882729052407", - "note": "Reference number not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10073198932, - "lat": 50.3379323, - "lon": -4.7857711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "783582309616313", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 26D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10073207552, - "lat": 50.3343032, - "lon": -4.8023610, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?osid=4b5288f7-dd5d-4957-8475-f0765b284267&cp=50.334437~-4.802366&lvl=19&dir=167.73508&pi=-7.798059&style=x&mo=z.2.53&imgid=931ce11a-eb88-4271-a3bd-5c62368be6a8&v=2&sV=2&form=S00027", - "mapillary": "482627610246651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10073607560, - "lat": 50.7446383, - "lon": -2.7353724, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref:GB:uprn": "10015335178" - } -}, -{ - "type": "node", - "id": 10073880502, - "lat": 51.4167722, - "lon": 0.0764562, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10074595429, - "lat": 50.3501099, - "lon": -4.7222167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 23:00", - "mapillary": "171307885567942", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL24 174", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10074636559, - "lat": 50.4071658, - "lon": -4.6694989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10074638591, - "lat": 50.4061288, - "lon": -4.6735683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "186026440578318", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10074639038, - "lat": 50.4074227, - "lon": -4.6642566, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "image": "https://www.bing.com/maps?osid=f73b6222-81c5-4450-833c-e7a637156da5&cp=50.407483~-4.665906&lvl=19.043468&pi=0&style=x&imgid=013fcaec-910f-44b8-84b8-b66a9aceaea3&v=2&sV=2&form=S00027", - "mapillary": "657428902333645", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10074643729, - "lat": 50.2981631, - "lon": -4.8985431, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "108599841806563", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 133D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10074659216, - "lat": 50.2996322, - "lon": -4.9047705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "722643792124506", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 95D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10074676812, - "lat": 50.2775683, - "lon": -4.9959237, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "image": "https://www.bing.com/maps?osid=6a52aa6a-5fa6-4d21-81d5-9f05dac4ebfa&cp=50.27766~-4.996089&lvl=19.88&pi=0&style=x&v=2&sV=2&form=S00027", - "mapillary": "189391070085644", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 10074873347, - "lat": 50.4472440, - "lon": -4.2555408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "709448790021385", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL12 478D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10074889598, - "lat": 50.4882719, - "lon": -4.3300684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1075843789638191", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10075196859, - "lat": 50.9126262, - "lon": -4.2373402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1013397639521776", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10075198960, - "lat": 50.9037179, - "lon": -4.2545036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "632484834947409", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10075203742, - "lat": 50.9199071, - "lon": -4.2041358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "642537826886453", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10075259369, - "lat": 50.8777715, - "lon": -4.3071561, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4510123565766577", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10075609631, - "lat": 52.0631025, - "lon": -3.2220845, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10075902989, - "lat": 51.5508194, - "lon": -0.1550492, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW5 30D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:United Kingdom post box NW5 30D" - } -}, -{ - "type": "node", - "id": 10075928391, - "lat": 51.5570916, - "lon": -0.1955724, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NW3 83", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10075957450, - "lat": 51.4933798, - "lon": -0.5848803, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SL3 176", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10076024253, - "lat": 51.4239321, - "lon": -3.5544978, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10077619273, - "lat": 51.3070252, - "lon": -2.6032195, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10077627947, - "lat": 53.2461444, - "lon": -1.3389318, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 08:30", - "post_box:type": "wall", - "ref": "S44 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10077632375, - "lat": 53.2436589, - "lon": -1.3290679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:30", - "post_box:type": "wall", - "ref": "S44 92", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10077634871, - "lat": 51.7068371, - "lon": -5.1690365, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA62 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10077634872, - "lat": 51.7097003, - "lon": -5.1694424, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SA62 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10079889494, - "lat": 51.4199871, - "lon": 0.2598544, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10079900314, - "lat": 50.2592717, - "lon": -5.1515435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10080366826, - "lat": 52.7797486, - "lon": -2.4269632, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10080589804, - "lat": 51.4160461, - "lon": 0.2642051, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole" - } -}, -{ - "type": "node", - "id": 10080800697, - "lat": 51.5848515, - "lon": -2.9940114, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "Red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10082641775, - "lat": 53.2646049, - "lon": -1.4384522, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S41 418P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10082671876, - "lat": 53.2684649, - "lon": -1.4430577, - "tags": { - "amenity": "post_box", - "comment": "no plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 370", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10082831567, - "lat": 50.1839324, - "lon": -5.1245369, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10082866839, - "lat": 53.5566869, - "lon": -0.1073018, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-28", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "image": "https://i.postimg.cc/d0LRnc4B/DN34-260.jpg", - "location": "Chelmsford Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 260", - "ref:GB:uprn": "10015456612", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10083310222, - "lat": 52.9969424, - "lon": -0.7584992, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10084872003, - "lat": 53.3981385, - "lon": -2.5564515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA1 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10084963930, - "lat": 53.8002398, - "lon": -1.8213580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BD15 408D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10085051934, - "lat": 51.4007417, - "lon": -0.0706642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "note": "ref code damaged on collection plate but confirmed through https://www.royalmail.com/services-near-you/postbox/regina-road-sunny-bank-se25-4tz/0000SE2529", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE25 29", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10085774493, - "lat": 52.6049642, - "lon": -0.3049864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00" - } -}, -{ - "type": "node", - "id": 10085898907, - "lat": 50.1646376, - "lon": -5.1199482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR10 2", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10085898908, - "lat": 50.1539830, - "lon": -5.1636787, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR10 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10085898909, - "lat": 50.1674594, - "lon": -5.0997229, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR10 31", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10085898910, - "lat": 50.1719118, - "lon": -5.1172428, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TR10 16", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10085898911, - "lat": 50.1686276, - "lon": -5.1052394, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR10 60", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10085898912, - "lat": 50.1419093, - "lon": -5.1417828, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR10 59", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10085898913, - "lat": 50.1692742, - "lon": -5.1096425, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR10 41D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10085898914, - "lat": 50.1696881, - "lon": -5.1025819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR10 32", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10086091883, - "lat": 51.5881374, - "lon": -2.8362049, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10086116814, - "lat": 51.5043484, - "lon": -3.5767009, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10087012022, - "lat": 54.1811448, - "lon": -1.6482388, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10087110805, - "lat": 51.4843383, - "lon": -3.1487137, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-21", - "mapillary": "339523224470430", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 10087110806, - "lat": 51.4819284, - "lon": -3.1535859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-21", - "mapillary": "938159130130557", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 10087110809, - "lat": 51.4842530, - "lon": -3.1396190, - "tags": { - "amenity": "post_box", - "check_date": "2018-09-08", - "mapillary": "527251011853651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "mapillary" - } -}, -{ - "type": "node", - "id": 10087110810, - "lat": 51.4872779, - "lon": -3.1419378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2020-09-20", - "mapillary": "167227695332413", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 10087110811, - "lat": 51.4907230, - "lon": -3.1371296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10087141876, - "lat": 51.4891443, - "lon": -3.1522392, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-27", - "mapillary": "1201526013697090", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary" - } -}, -{ - "type": "node", - "id": 10087141877, - "lat": 51.4901325, - "lon": -3.1569135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2017-07-05", - "mapillary": "554568745533039", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10087141878, - "lat": 51.4929552, - "lon": -3.1577543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-27", - "mapillary": "1268812566866784", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10087141879, - "lat": 51.4933082, - "lon": -3.1691596, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-06-27", - "mapillary": "341184061084149", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10087141880, - "lat": 51.4893436, - "lon": -3.1684624, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2020-09-20", - "mapillary": "311459860570434", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 10087141881, - "lat": 51.4929986, - "lon": -3.1777483, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-19", - "mapillary": "241501321117017", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "mapillary", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 10087283446, - "lat": 51.5609110, - "lon": -1.8890721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 136D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10087326676, - "lat": 51.5736995, - "lon": -1.9022296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 274D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10087440570, - "lat": 51.2412983, - "lon": 0.0809086, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN16 169", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10087440571, - "lat": 51.2393871, - "lon": 0.0637972, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 219", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10087440572, - "lat": 51.2423372, - "lon": 0.0730654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 336", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10087595100, - "lat": 50.1691970, - "lon": -5.1296739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10087595101, - "lat": 50.1986272, - "lon": -5.1273114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10087865082, - "lat": 54.8392224, - "lon": -1.3321734, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SR7 177" - } -}, -{ - "type": "node", - "id": 10087876417, - "lat": 50.5783929, - "lon": -4.9171294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL27 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876462, - "lat": 50.5570358, - "lon": -4.9108023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 09:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876470, - "lat": 50.5732360, - "lon": -4.9097255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 210D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876471, - "lat": 50.5258568, - "lon": -4.8339440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PL27 114", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876473, - "lat": 50.5207040, - "lon": -4.8220348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL27 145", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876474, - "lat": 50.4939443, - "lon": -4.7677532, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876519, - "lat": 50.5730938, - "lon": -4.9151864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL27 90", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10087876532, - "lat": 50.5420552, - "lon": -4.8580810, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL27 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-09" - } -}, -{ - "type": "node", - "id": 10089321286, - "lat": 52.4804190, - "lon": 1.7552708, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10089458278, - "lat": 52.5932872, - "lon": -1.4646594, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10089474798, - "lat": 51.5301820, - "lon": 0.1322285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 41D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10090435811, - "lat": 53.2871171, - "lon": -0.5828312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "post_box:type": "wall", - "ref": "LN1 114", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10090443315, - "lat": 53.2779920, - "lon": -0.5746244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "post_box:type": "wall", - "ref": "LN1 21", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10090547742, - "lat": 52.2247229, - "lon": -0.2620114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10090547744, - "lat": 52.2223640, - "lon": -0.2656993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PE19 119", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10090547745, - "lat": 52.2186402, - "lon": -0.2650020, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE19 235D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10092513928, - "lat": 51.4817506, - "lon": -3.2227477, - "tags": { - "amenity": "post_box", - "check_date": "2022-10-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CF11 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10093563403, - "lat": 51.4113000, - "lon": -0.0203615, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10093587879, - "lat": 51.4126776, - "lon": -0.0192046, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10093587928, - "lat": 51.4147482, - "lon": 0.0000376, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10093589152, - "lat": 51.4211878, - "lon": -0.0258520, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BR3 2480", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10093589944, - "lat": 51.4153047, - "lon": -0.0222409, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "BR3 389D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10093589945, - "lat": 51.4147334, - "lon": -0.0298932, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BR3 211D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10093611250, - "lat": 51.4178402, - "lon": -0.0025033, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10093681103, - "lat": 51.0203194, - "lon": -2.5772514, - "tags": { - "amenity": "post_box", - "mapillary": "1022781582404265", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10093707353, - "lat": 53.4429835, - "lon": -2.5231101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 137", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10095065712, - "lat": 51.4270874, - "lon": -0.7732526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "493865555145522", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095065763, - "lat": 51.4179623, - "lon": -0.7611582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "488690246334168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095085285, - "lat": 51.4240708, - "lon": -0.7351870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1179060442913354", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095095169, - "lat": 51.4149481, - "lon": -0.7333771, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3249956661954322", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095098855, - "lat": 51.4194189, - "lon": -0.7856479, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Position is estimated", - "mapillary": "916467279039820", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095105403, - "lat": 51.4035023, - "lon": -0.7475294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "503546881081140", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095110680, - "lat": 51.4202385, - "lon": -0.7350180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1353308461848806", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095115642, - "lat": 51.4078026, - "lon": -0.7506856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2245865918901009", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10095131931, - "lat": 51.4191257, - "lon": -0.7695290, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "643039653436734", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10095210999, - "lat": 51.3192590, - "lon": -2.6759656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10095866596, - "lat": 52.4251224, - "lon": -1.4704551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "#ff4d4d", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10096458553, - "lat": 52.3296493, - "lon": -0.1808272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PE29 2P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10096458554, - "lat": 52.3296204, - "lon": -0.1807886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PE29 4500;PE29 45", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10096458555, - "lat": 52.3312350, - "lon": -0.1815032, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "PE29 3010;PE29 301", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10096458556, - "lat": 52.3304091, - "lon": -0.1828986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE29 302", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10096481873, - "lat": 52.0854341, - "lon": -0.2640924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG18 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10096481874, - "lat": 52.0880993, - "lon": -0.2645895, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SG18 50", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10096481875, - "lat": 52.0843358, - "lon": -0.2554417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SG18 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10096483825, - "lat": 51.4806353, - "lon": 0.4176931, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10098630627, - "lat": 54.6884498, - "lon": -1.2260755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "TS26 22D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10098635698, - "lat": 51.9773406, - "lon": 0.7754931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CO8 174D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10099082151, - "lat": 53.2770986, - "lon": -1.4020919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S43 11D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10099188792, - "lat": 54.2506590, - "lon": -5.6463979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 58D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10099228990, - "lat": 53.4719100, - "lon": -2.5609616, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "WA3 203", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10099364775, - "lat": 51.3106625, - "lon": -2.6550320, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10100552773, - "lat": 55.0022657, - "lon": -1.6179871, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE3 71D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 10100574724, - "lat": 55.0069466, - "lon": -1.6228773, - "tags": { - "FIXME": "Check the alignment of this wrt the neighbouring building", - "amenity": "post_box", - "check_date:collection_times": "2022-10-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE3 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10101869963, - "lat": 51.8794375, - "lon": -3.2341513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10101887217, - "lat": 54.1771033, - "lon": -6.3454314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT35 8" - } -}, -{ - "type": "node", - "id": 10102296502, - "lat": 50.1296488, - "lon": -5.1784203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 08:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR11 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296503, - "lat": 50.1214831, - "lon": -5.1872311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 44", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296504, - "lat": 50.1182694, - "lon": -5.1784844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296505, - "lat": 50.1193589, - "lon": -5.1762323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296506, - "lat": 50.1173094, - "lon": -5.1706341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 92D", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296507, - "lat": 50.1184112, - "lon": -5.1666622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 49D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296508, - "lat": 50.1225110, - "lon": -5.1079123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296509, - "lat": 50.1201532, - "lon": -5.0951553, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR11 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296510, - "lat": 50.1862410, - "lon": -5.0760225, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296511, - "lat": 50.1808678, - "lon": -5.0748033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR11 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102296512, - "lat": 50.1938684, - "lon": -5.0883115, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10102373830, - "lat": 52.4156296, - "lon": -1.4643020, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10102382449, - "lat": 53.3893114, - "lon": -2.5929395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA1 337", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10102396800, - "lat": 53.1803815, - "lon": -4.2130843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 11:00", - "note": "unusual to see Scottish Crown on a post box outside Scotland", - "post_box:type": "wall", - "ref": "LL56 147", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10102898846, - "lat": 51.6929747, - "lon": -1.2501544, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "OX14 912" - } -}, -{ - "type": "node", - "id": 10102992403, - "lat": 51.6863736, - "lon": -1.2643170, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2022-10-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_m", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OX14 930", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103408026, - "lat": 53.2424416, - "lon": -2.5390649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CW8 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103430678, - "lat": 51.2227715, - "lon": 0.1112168, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 319" - } -}, -{ - "type": "node", - "id": 10103430679, - "lat": 51.2017132, - "lon": 0.0585240, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 331", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103430680, - "lat": 51.2156773, - "lon": 0.0989806, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN8 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103430681, - "lat": 51.2063216, - "lon": 0.0502200, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 346", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103430682, - "lat": 51.2061189, - "lon": 0.0271840, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 265", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 10103430683, - "lat": 51.2005685, - "lon": 0.0566875, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 239", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103482501, - "lat": 53.2336252, - "lon": -1.4119445, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S41 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103575479, - "lat": 53.2635473, - "lon": -1.3890579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103576053, - "lat": 53.2337855, - "lon": -1.4036452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103592371, - "lat": 53.2199374, - "lon": -1.4017057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S41 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103684637, - "lat": 51.7485790, - "lon": -3.3923587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF47 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103689104, - "lat": 51.2088144, - "lon": 0.0742075, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "Red", - "ref": "TN8 235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10103750420, - "lat": 53.4145560, - "lon": -1.3420766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "pillar", - "ref": "S60 273", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10104517113, - "lat": 53.3125554, - "lon": -2.5374462, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10104527852, - "lat": 50.8161580, - "lon": -2.3246726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times changes 10/10/2022", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT2 77", - "ref:GB:uprn": "10015372963", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "was:collection_times": "Mo-Fr 12:00; Sa 09:00" - } -}, -{ - "type": "node", - "id": 10106632244, - "lat": 52.1159514, - "lon": -1.3194373, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 08:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX17 1079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10106632245, - "lat": 52.1174399, - "lon": -1.3171948, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "drive-by survey" - } -}, -{ - "type": "node", - "id": 10106643493, - "lat": 55.9171427, - "lon": -4.3193900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 1383" - } -}, -{ - "type": "node", - "id": 10107177928, - "lat": 51.1716624, - "lon": -0.4065706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH4 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107177929, - "lat": 51.1552451, - "lon": -0.3949553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107177930, - "lat": 51.1420993, - "lon": -0.3983603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107177931, - "lat": 51.1377015, - "lon": -0.3818420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107196810, - "lat": 51.1981548, - "lon": -0.3998403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107196811, - "lat": 51.1892590, - "lon": -0.4031937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "RH5 100D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10107196812, - "lat": 51.2013364, - "lon": -0.4315567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH5 115D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10107196813, - "lat": 51.2033812, - "lon": -0.4264940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH5 92D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10107221819, - "lat": 51.1981422, - "lon": -0.4218136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 125D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107221820, - "lat": 51.1937557, - "lon": -0.4128563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 50D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10107221821, - "lat": 51.1853642, - "lon": -0.4098342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH5 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10108066588, - "lat": 50.1709862, - "lon": -5.1251548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR10 114", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10108066589, - "lat": 50.1722259, - "lon": -5.0952932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR10 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10108066590, - "lat": 50.1591607, - "lon": -5.1402913, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR10 99", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10108427959, - "lat": 51.5674902, - "lon": 0.2557252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM14 332D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10108432097, - "lat": 51.6689958, - "lon": 0.4986797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM2 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10108689831, - "lat": 53.2370538, - "lon": -2.5928611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 90D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10110259069, - "lat": 51.3811790, - "lon": -2.1718831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10111519925, - "lat": 53.2600578, - "lon": -1.4310635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S41 281", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10111689971, - "lat": 54.6984630, - "lon": -1.2473418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "TS26 574D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10112206835, - "lat": 50.4591342, - "lon": -4.8805109, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10113630850, - "lat": 54.8768435, - "lon": -1.6867487, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DH9 264", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10114633635, - "lat": 53.4716685, - "lon": -2.5673393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 330", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10115940169, - "lat": 54.8723006, - "lon": -1.6821739, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DH9 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10115940197, - "lat": 54.8691196, - "lon": -1.6969961, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:priority": "yes", - "post_box:type": "pillar", - "ref": "DH9 483", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "sample_collection": "covid19", - "source": "survey", - "survey:date": "2022-10-18" - } -}, -{ - "type": "node", - "id": 10115940198, - "lat": 54.8681310, - "lon": -1.7010299, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DH9 500", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-18" - } -}, -{ - "type": "node", - "id": 10116172225, - "lat": 53.2267735, - "lon": -1.4249303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "S40 74D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10116440647, - "lat": 51.5901844, - "lon": -2.9788829, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NP19 195", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10116440685, - "lat": 51.5901528, - "lon": -2.9812594, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NP19 197" - } -}, -{ - "type": "node", - "id": 10117201931, - "lat": 57.1016974, - "lon": -2.9055282, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB34 311", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10117672714, - "lat": 51.3746719, - "lon": -2.9597775, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10118907328, - "lat": 51.3772168, - "lon": -2.5129330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10119097217, - "lat": 50.3559917, - "lon": -4.4574127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "ref": "PL13 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119110724, - "lat": 50.3559664, - "lon": -4.4613215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL13 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 10119114319, - "lat": 50.3548448, - "lon": -4.4618769, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 27D", - "royal_cypher": "EIIR", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119160920, - "lat": 50.3529846, - "lon": -4.4567504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "ref": "PL13 63", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119161517, - "lat": 50.3523323, - "lon": -4.4586741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "ref": "PL13 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119193318, - "lat": 50.3493681, - "lon": -4.4513021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "mapillary": "715532883698167", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL13 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 10119209717, - "lat": 50.3458365, - "lon": -4.4541737, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "mapillary": "1528969934615637", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL13 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 10119231518, - "lat": 50.3506299, - "lon": -4.4532927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "ref": "PL13 103", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119304927, - "lat": 50.3565190, - "lon": -4.4546257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL13 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119527965, - "lat": 54.6240081, - "lon": -2.0826383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DL12 208D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10119554619, - "lat": 50.3920671, - "lon": -4.4041627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 11:00", - "ref": "PL13 128", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119554621, - "lat": 50.4141440, - "lon": -4.3265914, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL12 713", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119565555, - "lat": 56.7630693, - "lon": -2.7939574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD9 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10119580621, - "lat": 50.3861761, - "lon": -4.4277405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 09:00", - "mapillary": "378293758177418", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 10119580721, - "lat": 50.4058753, - "lon": -4.3499852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "ref": "PL12 431", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119580918, - "lat": 50.3962556, - "lon": -4.4139876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "post_box:type": "lamp", - "ref": "PL13 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-21" - } -}, -{ - "type": "node", - "id": 10119581517, - "lat": 50.4253264, - "lon": -4.2747636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 683D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 10119597347, - "lat": 56.7548165, - "lon": -2.6855931, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10119597600, - "lat": 52.9170677, - "lon": 1.3425530, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10121128523, - "lat": 50.4424373, - "lon": -4.2044276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00; Sa 08:30", - "ref": "PL12 614", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-22" - } -}, -{ - "type": "node", - "id": 10121134617, - "lat": 50.4408305, - "lon": -4.2174750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 09:00", - "mapillary": "5555484254532669", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL12 510", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-22" - } -}, -{ - "type": "node", - "id": 10121218063, - "lat": 51.4241758, - "lon": -0.5722873, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TW20 319D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10121306723, - "lat": 50.4560788, - "lon": -4.2560144, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1292743184875437", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL12 540D", - "royal_cypher": "VR", - "survey:date": "2022-10-22" - } -}, -{ - "type": "node", - "id": 10121451817, - "lat": 50.4365589, - "lon": -4.2572408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL12 410", - "royal_cypher": "EIIR", - "survey:date": "2022-10-22" - } -}, -{ - "type": "node", - "id": 10121919978, - "lat": 50.1587760, - "lon": -5.0855907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121919979, - "lat": 50.1540518, - "lon": -5.0980658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 10:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR11 47", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121919980, - "lat": 50.1608866, - "lon": -5.0828500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121919981, - "lat": 50.1437244, - "lon": -5.0749677, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121919982, - "lat": 50.1550891, - "lon": -5.0920358, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR11 110D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121919983, - "lat": 50.1561565, - "lon": -5.0883590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR11 108D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121919984, - "lat": 50.1517394, - "lon": -5.0765650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR11 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10121983644, - "lat": 51.7861317, - "lon": -3.5697540, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10123268000, - "lat": 50.3117277, - "lon": -5.2034844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR5 147", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10124159260, - "lat": 51.1466236, - "lon": -0.7761809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is of a brand new EIIR lamp design.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10124221228, - "lat": 51.1372148, - "lon": -0.7503087, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU10 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2022-09-10" - } -}, -{ - "type": "node", - "id": 10124859023, - "lat": 50.9716809, - "lon": -0.3421254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10125142139, - "lat": 53.0658331, - "lon": -2.1118678, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10125164877, - "lat": 52.7233078, - "lon": -2.2452712, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10126939684, - "lat": 50.1969845, - "lon": -5.1872838, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10126939685, - "lat": 50.1898917, - "lon": -5.1686788, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR3 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10126977713, - "lat": 50.2159540, - "lon": -5.1128218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TR3 227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127005707, - "lat": 51.4764357, - "lon": 0.2903461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM20 17", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10127027616, - "lat": 51.4759302, - "lon": 0.2761421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RM20 75", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10127029539, - "lat": 50.1907464, - "lon": -5.0591607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "TR11 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127029540, - "lat": 50.1513857, - "lon": -5.0853093, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127029541, - "lat": 50.1589176, - "lon": -5.0882888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR11 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127029542, - "lat": 50.1482200, - "lon": -5.0793835, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR11 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127029543, - "lat": 50.1379313, - "lon": -5.1204937, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 12:00; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR11 87", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127029544, - "lat": 50.1637555, - "lon": -5.0799538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR11 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127029545, - "lat": 50.1565033, - "lon": -5.0773218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR11 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10127111540, - "lat": 51.4741817, - "lon": 0.3246982, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM17 29D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10127111541, - "lat": 51.4741236, - "lon": 0.3211349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RM17 250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10127111657, - "lat": 51.4777334, - "lon": 0.3008687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM20 49", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10127154325, - "lat": 51.4801681, - "lon": 0.3218839, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "RM17 531P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10127154326, - "lat": 51.4801635, - "lon": 0.3218587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "note": "Left aperture reference is not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "RM17 101;RM17 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10127608299, - "lat": 52.7566370, - "lon": -0.3689300, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10128654761, - "lat": 53.2236996, - "lon": -1.4342940, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S40 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10129091665, - "lat": 50.2129247, - "lon": -5.0972321, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10129091666, - "lat": 50.2144778, - "lon": -5.0947314, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR3 165D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10129091667, - "lat": 50.2326408, - "lon": -5.0702077, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR3 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10129997504, - "lat": 50.6085415, - "lon": -2.4846261, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DT4 24D", - "ref:GB:uprn": "10015378102", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130261790, - "lat": 50.6124882, - "lon": -2.4936283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 67", - "ref:GB:uprn": "10015302260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130347887, - "lat": 50.3805561, - "lon": -4.9422415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10130369391, - "lat": 53.8020618, - "lon": -1.8238673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ele:ellipsoid": "283.000", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "BD15 405D" - } -}, -{ - "type": "node", - "id": 10130431453, - "lat": 50.6107262, - "lon": -2.4812438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DT4 108D", - "ref:GB:uprn": "10015417475", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130431454, - "lat": 50.6141685, - "lon": -2.4819895, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DT4 124D", - "ref:GB:uprn": "10015347869", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130431456, - "lat": 50.6166734, - "lon": -2.4873599, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DT4 40D", - "ref:GB:uprn": "10015468277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130431457, - "lat": 50.6139826, - "lon": -2.4869268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "DT4 146", - "ref:GB:uprn": "10015371969", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130431458, - "lat": 50.6142175, - "lon": -2.4910031, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DT4 58D", - "ref:GB:uprn": "10015454925", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130550849, - "lat": 50.3581173, - "lon": -4.4444915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL13 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130577743, - "lat": 50.3615713, - "lon": -4.4356649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 09:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 104", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130788629, - "lat": 50.3631102, - "lon": -4.4520422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:15", - "ref": "PL13 112", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130809217, - "lat": 50.3635285, - "lon": -4.4482254, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-10-26", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "PL13 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10130811919, - "lat": 50.3597424, - "lon": -4.4487897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "ref": "PL13 9", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-10-26" - } -}, -{ - "type": "node", - "id": 10131252898, - "lat": 52.6533914, - "lon": -0.4966504, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 74D" - } -}, -{ - "type": "node", - "id": 10131252900, - "lat": 52.6497348, - "lon": -0.4907750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE9 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10131298611, - "lat": 52.6431675, - "lon": -0.4828103, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE1 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10132295408, - "lat": 50.2171752, - "lon": -5.0337239, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR3 12D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10132295409, - "lat": 50.2183118, - "lon": -5.0599101, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10132295410, - "lat": 50.2246728, - "lon": -5.0617056, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR3 28D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10132322117, - "lat": 50.3734775, - "lon": -4.4237387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 08:15", - "note": "Thin Letters only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-27" - } -}, -{ - "type": "node", - "id": 10132716772, - "lat": 50.6088866, - "lon": -2.4653672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 101D", - "ref:GB:uprn": "10015445092", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;Bing", - "survey:date": "2022-10-27" - } -}, -{ - "type": "node", - "id": 10132716773, - "lat": 50.6109900, - "lon": -2.4715644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 83", - "ref:GB:uprn": "10015348731", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;Bing", - "survey:date": "2022-10-27" - } -}, -{ - "type": "node", - "id": 10133774254, - "lat": 53.3517700, - "lon": -2.5751847, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 210", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10133857409, - "lat": 54.4060424, - "lon": -2.1664544, - "tags": { - "amenity": "post_box", - "ref": "DL11 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10133863319, - "lat": 54.3188987, - "lon": -2.1976101, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DL8 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10135092348, - "lat": 52.2130783, - "lon": -2.9309265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10135148461, - "lat": 51.2525773, - "lon": -0.9508886, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG29 241D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10135506912, - "lat": 50.6166138, - "lon": -2.4568968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DT4 5300D", - "ref:GB:uprn": "10015827149", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 10135566866, - "lat": 50.7110013, - "lon": -2.4508993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 149", - "ref:GB:uprn": "10015378605", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 10135566867, - "lat": 50.7106259, - "lon": -2.4551466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 164", - "ref:GB:uprn": "10015328474", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 10135566868, - "lat": 50.7130114, - "lon": -2.4625006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 300", - "ref:GB:uprn": "10015286868", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 10135566869, - "lat": 50.7133655, - "lon": -2.4552827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 181", - "ref:GB:uprn": "10015308327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 10135566870, - "lat": 50.7166678, - "lon": -2.4534193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 69D", - "ref:GB:uprn": "10015412052", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-28" - } -}, -{ - "type": "node", - "id": 10135625913, - "lat": 56.5008347, - "lon": -3.5152355, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 84", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10135861449, - "lat": 52.0355435, - "lon": 1.1794493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1262" - } -}, -{ - "type": "node", - "id": 10135938651, - "lat": 52.0916851, - "lon": 1.2005184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10137644298, - "lat": 51.7830594, - "lon": -3.0082222, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 10137693254, - "lat": 52.5832141, - "lon": -3.9370912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:00", - "note": "currently the information plate is smashed where the reference number is located, looking it up on https://www.whatdotheyknow.com/request/374/response/1164/attach/html/2/PO%20Boxes%20A%20Z.pdf.html shows the reference number SY20 6 for Cwrt", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY20 6", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10137693255, - "lat": 52.7830850, - "lon": -3.7744233, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL40 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10137693256, - "lat": 52.5898348, - "lon": -3.9193216, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY20 37D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10137796118, - "lat": 50.5360284, - "lon": -4.9366241, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PL28 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137819989, - "lat": 54.0235852, - "lon": -1.5643414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3951185198440694", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-09-07" - } -}, -{ - "type": "node", - "id": 10137854661, - "lat": 50.6117642, - "lon": -2.4623677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 16D", - "ref:GB:uprn": "10015402007", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854662, - "lat": 50.6215324, - "lon": -2.4553800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 35D", - "ref:GB:uprn": "10015348532", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854664, - "lat": 50.6301120, - "lon": -2.4509503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT4 140D", - "ref:GB:uprn": "10015467992", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854665, - "lat": 50.6267006, - "lon": -2.4585450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 47D", - "ref:GB:uprn": "10015823858", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854666, - "lat": 50.6286713, - "lon": -2.4675652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 87D", - "ref:GB:uprn": "10015411591", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854667, - "lat": 50.6300593, - "lon": -2.4679066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 46D", - "ref:GB:uprn": "10015352136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854668, - "lat": 50.6308147, - "lon": -2.4761590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 12D", - "ref:GB:uprn": "10015301399", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854669, - "lat": 50.6272604, - "lon": -2.4776919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT4 18D", - "ref:GB:uprn": "10015304585", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854670, - "lat": 50.6251560, - "lon": -2.4732985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT4 154D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854671, - "lat": 50.6244830, - "lon": -2.4771119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 98", - "ref:GB:uprn": "10015812664", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854709, - "lat": 50.6218651, - "lon": -2.4756420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT4 109D", - "ref:GB:uprn": "10015341770", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854710, - "lat": 50.6207296, - "lon": -2.4747502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT4 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854711, - "lat": 50.6171797, - "lon": -2.4669524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 95D", - "ref:GB:uprn": "10015445143", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854712, - "lat": 50.6140079, - "lon": -2.4700563, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10137854713, - "lat": 50.6143115, - "lon": -2.4728529, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT4 104D", - "ref:GB:uprn": "10015312426", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10138505046, - "lat": 50.5387290, - "lon": -4.9580754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL28 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10138505047, - "lat": 50.5360797, - "lon": -4.9532014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL28 223D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10138505049, - "lat": 50.5372928, - "lon": -4.9421119, - "tags": { - "amenity": "post_box", - "ref": "PL28 190D", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10138505051, - "lat": 50.5367276, - "lon": -4.9397325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/padstow-2021-09-15/2021-09-15_09-45-26_20210915_10_26_47.jpg", - "post_box:type": "wall", - "ref": "PL28 193D", - "royal_cypher": "GVIR", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10138567595, - "lat": 53.1924257, - "lon": -0.1384527, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10138890717, - "lat": 50.5090292, - "lon": -4.9110006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "PL27 188", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 10138890718, - "lat": 50.5130522, - "lon": -4.9429915, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3361319850855031", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 10138890817, - "lat": 50.5098540, - "lon": -4.9232224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "PL27 101", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 10138890818, - "lat": 50.5122715, - "lon": -4.9372686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "ref": "PL27 3", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 10140019381, - "lat": 51.2532452, - "lon": -0.9446271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10140217759, - "lat": 53.4796051, - "lon": -2.2422108, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M2 130", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10140237074, - "lat": 53.5028387, - "lon": -2.1829395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M40 214D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10140639321, - "lat": 53.2342327, - "lon": -3.3055265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH7 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10140639335, - "lat": 53.2461601, - "lon": -3.3070945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CH7 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10141284512, - "lat": 53.5735307, - "lon": -1.4131965, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection:covid19": "normal", - "collection_plate": "missing", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S72 121", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-10-29" - } -}, -{ - "type": "node", - "id": 10141823990, - "lat": 52.9532384, - "lon": -0.8969673, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10141858358, - "lat": 52.6178179, - "lon": -1.3739454, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10143901206, - "lat": 51.1808033, - "lon": -3.2352591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA5 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10144848853, - "lat": 51.1421809, - "lon": -3.2922842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA4 96D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10145066648, - "lat": 52.1330071, - "lon": 1.0190249, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10145066649, - "lat": 52.1281664, - "lon": 1.0160601, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10147258093, - "lat": 50.5129049, - "lon": -4.8716540, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1111748749318233", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10147285051, - "lat": 50.5158490, - "lon": -4.8659823, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Please check if this postbox still exists. Added from 2016 photographs", - "mapillary": "2850327725206249", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10147463846, - "lat": 50.5132653, - "lon": -4.8214094, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1100953113889479", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10147481535, - "lat": 50.5176915, - "lon": -4.8444482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10147661537, - "lat": 50.6344444, - "lon": -4.3569525, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1070692966975240", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10148190325, - "lat": 53.5462827, - "lon": -1.7810654, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HD9 80", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10148284284, - "lat": 54.7443651, - "lon": -2.0005283, - "tags": { - "amenity": "post_box", - "fixme": "Confirm post box in use", - "mapillary": "484025112923935" - } -}, -{ - "type": "node", - "id": 10149294038, - "lat": 50.9246368, - "lon": -0.4468827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10149294039, - "lat": 50.9211481, - "lon": -0.4373285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10149294040, - "lat": 50.9216738, - "lon": -0.4520582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10149294041, - "lat": 50.9195204, - "lon": -0.4564597, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10149294042, - "lat": 50.9213651, - "lon": -0.4623539, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10149294043, - "lat": 50.9200412, - "lon": -0.4679281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10149294044, - "lat": 50.9164864, - "lon": -0.4600766, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10149294045, - "lat": 50.9159508, - "lon": -0.4443356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10151657150, - "lat": 50.8052850, - "lon": -0.4516767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10151657151, - "lat": 50.8077280, - "lon": -0.4272936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10151657152, - "lat": 50.8408995, - "lon": -0.4104186, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10151657153, - "lat": 50.8503522, - "lon": -0.3928478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10151657154, - "lat": 50.8564937, - "lon": -0.3984988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10151657155, - "lat": 50.8148953, - "lon": -0.3830156, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10151657156, - "lat": 50.8200532, - "lon": -0.3485067, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10152127200, - "lat": 51.2023180, - "lon": -0.5877683, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox is in the wall of the house named \"Old Tilthams\". This postbox is on the A3100 Old Portsmouth Road southbound side about 20-25 metres north of its junction with Tilthams Corner Road. Only a small space to stop here.", - "note_1": "It is safer to pull up elsewhere, perhaps on the other side of the A3100.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU7 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey_date": "2022-10-30" - } -}, -{ - "type": "node", - "id": 10153004440, - "lat": 51.0953057, - "lon": -2.1298744, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10153260722, - "lat": 53.6449764, - "lon": -1.7367708, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10154119191, - "lat": 50.2122761, - "lon": -5.1182762, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR3 167", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10154119192, - "lat": 50.2174688, - "lon": -5.1235505, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR3 45D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10154119193, - "lat": 50.2419577, - "lon": -5.1167127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR3 33D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10154984624, - "lat": 57.1846466, - "lon": -2.1141904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB22 267" - } -}, -{ - "type": "node", - "id": 10155645276, - "lat": 50.9976944, - "lon": -3.3966154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10155681032, - "lat": 50.9092656, - "lon": -3.4855621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX16 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10155681033, - "lat": 50.9134238, - "lon": -3.4851836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX16 81D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10155821841, - "lat": 50.2087580, - "lon": -5.0808278, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR3 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821842, - "lat": 50.2103077, - "lon": -5.0670166, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821843, - "lat": 50.2004066, - "lon": -5.0556936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821844, - "lat": 50.2082486, - "lon": -5.0556655, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 170D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821845, - "lat": 50.2131729, - "lon": -5.0480048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR3 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821846, - "lat": 50.2383892, - "lon": -5.0469241, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821847, - "lat": 50.2433818, - "lon": -5.0723964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR3 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10155821848, - "lat": 50.2597000, - "lon": -5.1164511, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 226D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10157358141, - "lat": 51.4511132, - "lon": 0.1794361, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10157590544, - "lat": 52.4675224, - "lon": -1.2101184, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "mapillary": "826765281275703", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2020-08-23" - } -}, -{ - "type": "node", - "id": 10157848192, - "lat": 50.6138667, - "lon": -2.4775488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT4 34D", - "ref:GB:uprn": "10015368343", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey; Bing", - "survey:date": "2022-11-04" - } -}, -{ - "type": "node", - "id": 10157886488, - "lat": 51.6609625, - "lon": -1.7905031, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10157943312, - "lat": 51.6127425, - "lon": -1.7458066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10157982462, - "lat": 51.6373479, - "lon": -1.7479154, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10158039408, - "lat": 51.6067193, - "lon": -1.8433535, - "tags": { - "amenity": "post_box", - "colour": "green", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10158218536, - "lat": 50.2160929, - "lon": -5.1491615, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10158218537, - "lat": 50.2312125, - "lon": -5.1384906, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10158218538, - "lat": 50.2312044, - "lon": -5.1229327, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 175", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10158218539, - "lat": 50.2378544, - "lon": -5.1426652, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box design post box embedded in a wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR4 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159090497, - "lat": 50.2602756, - "lon": -5.0492826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159090498, - "lat": 50.2596278, - "lon": -5.0527581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR1 156D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159106937, - "lat": 50.2580002, - "lon": -5.0553655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR1 61D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159140307, - "lat": 50.3258603, - "lon": -5.0765781, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159142552, - "lat": 50.2627372, - "lon": -5.0588135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159178312, - "lat": 50.2715958, - "lon": -5.0441462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159197747, - "lat": 50.2990489, - "lon": -5.0689673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR4 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10159426219, - "lat": 50.4681846, - "lon": -4.2368369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:45", - "ref": "PL12 486", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159444725, - "lat": 51.2068040, - "lon": -4.1181705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/ilfracombe-2021-09-05/DSCN3937.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "W.T. Allen & Co London", - "post_box:type": "wall", - "ref": "EX34 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10159482220, - "lat": 50.4857987, - "lon": -4.2314061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "ref": "PL12 450", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159590117, - "lat": 50.4977453, - "lon": -4.2528750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:15", - "ref": "PL17 459", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159609117, - "lat": 50.5005460, - "lon": -4.2583422, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL17 412D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159642817, - "lat": 50.5028897, - "lon": -4.2454424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL17 523D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159644020, - "lat": 50.5052774, - "lon": -4.2430338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "ref": "PL17 732", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159738220, - "lat": 50.4859644, - "lon": -4.2414950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:15", - "ref": "PL12 504", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159742618, - "lat": 50.4847478, - "lon": -4.2470196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:00", - "post_box:type": "wall", - "ref": "PL12 660", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159780318, - "lat": 50.4886493, - "lon": -4.2581478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 715", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159791365, - "lat": 51.2071783, - "lon": -4.1146380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "image": "https://archive.org/details/ilfracombe-2021-09-05/DSCN3945.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX34 20", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10159819417, - "lat": 50.4810642, - "lon": -4.2668516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:45", - "ref": "PL12 531", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10159842318, - "lat": 50.4753287, - "lon": -4.2566300, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 12:00", - "ref": "PL12 677", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-11-05" - } -}, -{ - "type": "node", - "id": 10160133034, - "lat": 50.2627266, - "lon": -5.1208190, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR4 155", - "royal_cypher": "no", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10160133035, - "lat": 50.2627161, - "lon": -5.1208108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR4 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10161185430, - "lat": 51.6278712, - "lon": -1.9133492, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10161309913, - "lat": 51.6157008, - "lon": -1.9637582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN16 219D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10161401745, - "lat": 51.4944177, - "lon": -2.0358358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10161723664, - "lat": 50.3999510, - "lon": -4.9700099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10161902667, - "lat": 50.7072806, - "lon": -4.5386249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10161911072, - "lat": 50.4844641, - "lon": -4.8039275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL30 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10161921390, - "lat": 50.7848973, - "lon": -4.5056109, - "tags": { - "amenity": "post_box", - "mapillary": "1165599257416055", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "EX23 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10161927597, - "lat": 50.5577725, - "lon": -4.6897728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL30 85", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10161927598, - "lat": 50.5544014, - "lon": -4.6921666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL30 154", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10161927599, - "lat": 50.5447798, - "lon": -4.7037057, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "PL30 153", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10161932091, - "lat": 50.8016432, - "lon": -4.3948105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX22 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10161932092, - "lat": 50.8053584, - "lon": -4.4044393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX22 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10161941351, - "lat": 50.7514174, - "lon": -4.5003497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX22 66", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10161967942, - "lat": 50.7943224, - "lon": -4.4603325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX22 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10161967943, - "lat": 50.7870230, - "lon": -4.4596687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX22 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10162078928, - "lat": 52.7716289, - "lon": -0.3712729, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10162509880, - "lat": 53.6288008, - "lon": -1.7832465, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10162531355, - "lat": 53.5027929, - "lon": -2.0425215, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10162535017, - "lat": 53.5667842, - "lon": -2.1227889, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10162535018, - "lat": 53.5667757, - "lon": -2.1227824, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10162546244, - "lat": 53.4949980, - "lon": -2.0439436, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10162568568, - "lat": 53.4401395, - "lon": -2.0090242, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10162577643, - "lat": 51.6423250, - "lon": -3.2349680, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10162581841, - "lat": 53.4151035, - "lon": -2.0544271, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10164495874, - "lat": 54.4078512, - "lon": -6.7653112, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10164506893, - "lat": 53.8037785, - "lon": -1.8190889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BD15 400D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10166780607, - "lat": 57.7164045, - "lon": -3.2903218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1697139187341467", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IV31 19D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10166807198, - "lat": 57.6439660, - "lon": -3.3088564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "460353341862230", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10166817936, - "lat": 57.5949430, - "lon": -3.2809904, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "329053701948773", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10166886138, - "lat": 57.5386572, - "lon": -2.9506068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "832988000907879", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB55 3" - } -}, -{ - "type": "node", - "id": 10166886139, - "lat": 57.5404784, - "lon": -2.9561119, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "196237832318616", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "AB55 50", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10166886140, - "lat": 57.5441646, - "lon": -2.9594969, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1881856721990244", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB55 27" - } -}, -{ - "type": "node", - "id": 10166886142, - "lat": 57.5355489, - "lon": -2.9442065, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "490475928820430", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10167134619, - "lat": 51.6179724, - "lon": -0.1852866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 04:15; Sa 10:30", - "ref": "N12 4", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 10167134838, - "lat": 51.6587876, - "lon": -0.2792440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WD6 283D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10169988250, - "lat": 50.8301291, - "lon": -4.1811300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX21 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10169988251, - "lat": 50.8283155, - "lon": -4.1799887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX21 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10171641011, - "lat": 50.2464975, - "lon": -5.0061581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR1 137D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10171721999, - "lat": 53.0419478, - "lon": -2.9971710, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10172019307, - "lat": 51.6177972, - "lon": -3.9722085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "SA2 117", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10172609360, - "lat": 53.8392470, - "lon": -2.4813370, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10172630167, - "lat": 53.8221094, - "lon": -2.6699244, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10172634623, - "lat": 53.8023230, - "lon": -2.4508551, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10172636076, - "lat": 53.7913295, - "lon": -2.4862907, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10173761421, - "lat": 51.1102279, - "lon": -0.0681375, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "description": "This is a private post box, as per the plaque on the box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH10 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10173761458, - "lat": 51.1071066, - "lon": -0.0686632, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH10 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10173761459, - "lat": 51.1039453, - "lon": -0.0853593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH10 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10174079308, - "lat": 51.0737677, - "lon": -2.6731780, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10177424376, - "lat": 51.5103190, - "lon": -1.3846840, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10177482267, - "lat": 51.4685721, - "lon": -1.0868052, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-01-04", - "wikimedia_commons": "File:Old style bus shelter - Tidmarsh - geograph.org.uk - 2999666.jpg" - } -}, -{ - "type": "node", - "id": 10177504801, - "lat": 51.4666817, - "lon": -1.2061646, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10177896630, - "lat": 51.6872675, - "lon": -1.2846559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "OX14 1300" - } -}, -{ - "type": "node", - "id": 10177916512, - "lat": 51.6882618, - "lon": -1.2783827, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "170604555501625", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX14 1179", - "survey:date": "2022-07-25" - } -}, -{ - "type": "node", - "id": 10178015893, - "lat": 50.2775874, - "lon": -5.2399080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR4 178D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10178015894, - "lat": 50.2871973, - "lon": -5.2107819, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR4 8D", - "source": "aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 10178701655, - "lat": 51.6126496, - "lon": -2.8849059, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 10178950795, - "lat": 50.2751829, - "lon": -5.2124399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 187D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10179028122, - "lat": 50.2782650, - "lon": -5.1661858, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10179140011, - "lat": 50.3065842, - "lon": -5.1982979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR5 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10179140012, - "lat": 50.3046660, - "lon": -5.1736260, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10180356170, - "lat": 53.8025369, - "lon": -1.8154611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "wall", - "ref": "BD15 401D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10180579388, - "lat": 50.3559970, - "lon": -5.0933338, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10180859296, - "lat": 50.5652858, - "lon": -2.4464471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT5 42D", - "ref:GB:uprn": "10015315007", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; Bing", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10180859297, - "lat": 50.5491848, - "lon": -2.4218281, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT5 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey; Bing", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10180937593, - "lat": 50.6243941, - "lon": -2.5023387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT3 64", - "ref:GB:uprn": "10015468173", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10180972428, - "lat": 50.6246987, - "lon": -2.5091770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 53D", - "ref:GB:uprn": "10015412181", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10180972429, - "lat": 50.6198362, - "lon": -2.4977133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 149D", - "ref:GB:uprn": "10015289127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10180972430, - "lat": 50.6209942, - "lon": -2.5028215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 72D", - "ref:GB:uprn": "10015398740", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10180972444, - "lat": 50.6196396, - "lon": -2.4950002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 110D", - "ref:GB:uprn": "10015461550", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-11-11" - } -}, -{ - "type": "node", - "id": 10181524602, - "lat": 54.1538601, - "lon": -6.3209722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10183038121, - "lat": 52.5181699, - "lon": -1.7431436, - "tags": { - "amenity": "post_box", - "ref": "B46 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10183439222, - "lat": 51.5756593, - "lon": -0.7796212, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL7 69", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10186402988, - "lat": 57.7121516, - "lon": -3.2989265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV31 31D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10186478234, - "lat": 57.7143857, - "lon": -3.3048319, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV31 16D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10186645645, - "lat": 56.6413536, - "lon": -5.2825251, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10186718135, - "lat": 56.5295106, - "lon": -4.1519488, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_plate:date": "2017-04-21", - "collection_times": "Mo-Fr 12:15; Sa 12:15", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH15 27", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10186726348, - "lat": 56.5916508, - "lon": -3.3404670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "manufacturer": "Carronade Engineering Co Ltd Falkirk", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH10 7", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10186813348, - "lat": 56.5220534, - "lon": -2.9052075, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD5 60D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10186846197, - "lat": 51.2182037, - "lon": -1.4404014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 10187945964, - "lat": 50.3414208, - "lon": -5.1126069, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR4 182", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10187945965, - "lat": 50.3406206, - "lon": -5.1094569, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10188669752, - "lat": 51.5213955, - "lon": -3.1194989, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "survey:date": "2020-09-20" - } -}, -{ - "type": "node", - "id": 10197165403, - "lat": 53.4095940, - "lon": -1.4574420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "post_box:type": "wall", - "ref": "S5 301", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10197246401, - "lat": 51.3628815, - "lon": -2.4635281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10197622885, - "lat": 51.2584347, - "lon": -0.9526661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10198454087, - "lat": 50.2929588, - "lon": -5.1580251, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10198454088, - "lat": 50.3117508, - "lon": -5.0929108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR4 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10199939750, - "lat": 50.7020733, - "lon": -2.4371745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 60D", - "ref:GB:uprn": "10015321939", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 10199939751, - "lat": 50.7051803, - "lon": -2.4399740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DT1 116D", - "ref:GB:uprn": "10015348712", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-11-17" - } -}, -{ - "type": "node", - "id": 10202113775, - "lat": 51.5038096, - "lon": -3.3691740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10202146091, - "lat": 53.0733886, - "lon": -0.8179717, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "RG24 14D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10202321109, - "lat": 50.6261416, - "lon": -2.5286056, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT3 19D", - "ref:GB:uprn": "10015438085", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2022-11-19" - } -}, -{ - "type": "node", - "id": 10202375909, - "lat": 57.3288788, - "lon": -3.6135581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PH26 4D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10202402395, - "lat": 57.3323412, - "lon": -3.6061556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PH26 1D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10202411181, - "lat": 57.3291137, - "lon": -3.6183290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "PH26 61D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10202456320, - "lat": 57.3275988, - "lon": -3.6123213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "PH26 3D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10202466483, - "lat": 57.3306064, - "lon": -3.6086357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "colour": "gold", - "post_box:type": "wall", - "ref": "PH26 58", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10202626630, - "lat": 57.6459854, - "lon": -3.3165708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10202759479, - "lat": 51.5184043, - "lon": -3.3754553, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10203564788, - "lat": 57.7199982, - "lon": -3.2927778, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IV31 102D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10203566061, - "lat": 57.7167529, - "lon": -3.2949752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IV31 121", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10203588233, - "lat": 57.7125600, - "lon": -3.2870323, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "post_box:type": "lamp", - "ref": "IV31 42", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10203641598, - "lat": 57.7223427, - "lon": -3.2841666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "IV31 145", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10203745925, - "lat": 56.3636708, - "lon": -3.6160127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 101", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10203982694, - "lat": 57.7071154, - "lon": -3.4278028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV30 20D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204038834, - "lat": 57.6519268, - "lon": -3.3397272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV30 22D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204069316, - "lat": 54.8505178, - "lon": -4.3116478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "ref": "DG8 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10204072266, - "lat": 57.7011772, - "lon": -3.4800252, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV30 45D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204086712, - "lat": 57.7059455, - "lon": -3.4405733, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV30 31D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204119854, - "lat": 57.7079516, - "lon": -3.4350610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "post_box:type": "wall", - "ref": "IV30 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204139167, - "lat": 57.7005183, - "lon": -3.4868988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "IV30 44D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10204162946, - "lat": 57.6557670, - "lon": -3.4062384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "wall", - "ref": "IV30 100", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10204177272, - "lat": 57.6404504, - "lon": -3.4549741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV30 109", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204182667, - "lat": 57.6418913, - "lon": -3.4510164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "IV30 104", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204576017, - "lat": 50.7757224, - "lon": -3.7274349, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10204658389, - "lat": 57.5881010, - "lon": -3.8449503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV12 33D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10204811160, - "lat": 54.2963647, - "lon": -2.7379218, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10204887065, - "lat": 52.6167962, - "lon": -3.0031074, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10205048478, - "lat": 57.5392054, - "lon": -3.8991923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "post_box:type": "lamp", - "ref": "IV12 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10205234520, - "lat": 51.4685306, - "lon": -3.2649775, - "tags": { - "amenity": "post_box", - "check_date": "2018-01-09", - "mapillary": "1075892189481016", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10205234521, - "lat": 51.4836850, - "lon": -3.2327701, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "292744902394234", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF5 227D", - "survey:date": "2023-03-04" - } -}, -{ - "type": "node", - "id": 10205234522, - "lat": 51.4897121, - "lon": -3.2444371, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234523, - "lat": 51.4890983, - "lon": -3.2505749, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234526, - "lat": 51.4789063, - "lon": -3.2508978, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234527, - "lat": 51.4755700, - "lon": -3.2606721, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234528, - "lat": 51.4738764, - "lon": -3.2696756, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234529, - "lat": 51.4736824, - "lon": -3.2807161, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234530, - "lat": 51.4694364, - "lon": -3.2706632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;aerial imagery" - } -}, -{ - "type": "node", - "id": 10205234531, - "lat": 51.4635561, - "lon": -3.2689339, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234532, - "lat": 51.4699732, - "lon": -3.2565120, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234533, - "lat": 51.4965385, - "lon": -3.2528015, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234534, - "lat": 51.4958653, - "lon": -3.2448668, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234535, - "lat": 51.4994507, - "lon": -3.2451464, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2019-10-29", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10205234536, - "lat": 51.4915746, - "lon": -3.2712090, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-09-10", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "source": "streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10207887732, - "lat": 51.6381797, - "lon": 0.4160627, - "tags": { - "amenity": "post_box", - "colour": "Red", - "description": "Royal Mail ERII Postbox", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10207992363, - "lat": 50.3104136, - "lon": -5.0266151, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10208036486, - "lat": 54.2418140, - "lon": -5.8991664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10208220461, - "lat": 54.1850534, - "lon": -6.3571564, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10208222143, - "lat": 54.1914827, - "lon": -6.3512900, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10208298264, - "lat": 54.1595130, - "lon": -6.3258135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10210415945, - "lat": 51.4980043, - "lon": -3.2086215, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-09", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415946, - "lat": 51.5010277, - "lon": -3.2125770, - "tags": { - "amenity": "post_box", - "check_date": "2020-10-08", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF14 346", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415947, - "lat": 51.5046490, - "lon": -3.2190829, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-09-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "CF14 351D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415949, - "lat": 51.5112806, - "lon": -3.2238137, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-10-08", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415950, - "lat": 51.5100657, - "lon": -3.2329167, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2018-10-15", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415951, - "lat": 51.5127938, - "lon": -3.2093553, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-09", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415952, - "lat": 51.5044647, - "lon": -3.2033968, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2018-10-19", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415953, - "lat": 51.4980061, - "lon": -3.1926352, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2019-10-29", - "mapillary": "412319927235899", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 10210415954, - "lat": 51.5018450, - "lon": -3.1838891, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-10-08", - "mapillary": "480706019836537", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415955, - "lat": 51.5072760, - "lon": -3.1830517, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-09", - "mapillary": "531280007866374", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415956, - "lat": 51.5125579, - "lon": -3.1972556, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-10-08", - "mapillary": "278261250675542", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415957, - "lat": 51.5106980, - "lon": -3.1998650, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-09", - "mapillary": "591510285608616", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 10210415958, - "lat": 51.5117206, - "lon": -3.2021566, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415959, - "lat": 51.5142801, - "lon": -3.1998878, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2019-10-29", - "mapillary": "454312176180587", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415960, - "lat": 51.5165497, - "lon": -3.1865118, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-10-08", - "mapillary": "518322865960486", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415961, - "lat": 51.5152124, - "lon": -3.1937220, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2019-05-01", - "mapillary": "6298489606843603", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "mapillary" - } -}, -{ - "type": "node", - "id": 10210415962, - "lat": 51.5197355, - "lon": -3.1941730, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-09-15", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415963, - "lat": 51.5188553, - "lon": -3.2009639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-03-09", - "mapillary": "2828392030796359", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;mapillary", - "survey:date": "2021-07-21" - } -}, -{ - "type": "node", - "id": 10210415964, - "lat": 51.5179669, - "lon": -3.2080885, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-09-10", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210415965, - "lat": 51.5189646, - "lon": -3.2217768, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-05-19", - "mapillary": "353402086146872", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;mapillary", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 10210415966, - "lat": 51.5194354, - "lon": -3.2305910, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-10-08", - "mapillary": "499003374773221", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "bing;mapillary" - } -}, -{ - "type": "node", - "id": 10210502538, - "lat": 50.7375315, - "lon": -3.4998239, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2023-01-01", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "EX4 319", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10210593129, - "lat": 50.8663556, - "lon": 0.5812582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "TN34 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10210645785, - "lat": 51.4898006, - "lon": -3.2416848, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10211548597, - "lat": 57.2841932, - "lon": -2.3738834, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "AB51 324D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10211548598, - "lat": 57.2797636, - "lon": -2.3721463, - "tags": { - "addr:city": "Inverurie", - "addr:country": "GB", - "addr:postcode": "AB51 3QJ", - "addr:street": "High Street", - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10211548599, - "lat": 57.2774825, - "lon": -2.3700850, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10211768344, - "lat": 51.3814340, - "lon": -2.4278586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10212672996, - "lat": 51.4933031, - "lon": -3.1691777, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3676790405878872", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 10212691572, - "lat": 57.5366881, - "lon": -3.8900089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV12 31D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10212693047, - "lat": 57.7001097, - "lon": -3.3929516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:type": "wall", - "ref": "IV30 89", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10213001302, - "lat": 50.6380479, - "lon": -3.3868015, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-11-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "Wall Box, mounted on top of short post", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "wall", - "ref": "EX8 539D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10213211137, - "lat": 52.0128957, - "lon": -1.7622071, - "tags": { - "amenity": "post_box", - "post_box:design": "type_k", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10213249522, - "lat": 51.9246854, - "lon": -1.7110165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL54 91D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10213266126, - "lat": 52.8061843, - "lon": -1.9269911, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10214254122, - "lat": 51.5107457, - "lon": -3.5673755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF31 259" - } -}, -{ - "type": "node", - "id": 10214254123, - "lat": 51.5059879, - "lon": -3.5689902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF31 199" - } -}, -{ - "type": "node", - "id": 10214254124, - "lat": 51.5095200, - "lon": -3.5720453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CF31 193" - } -}, -{ - "type": "node", - "id": 10217112955, - "lat": 54.6387577, - "lon": -1.5786586, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10217112958, - "lat": 54.6602732, - "lon": -1.5589045, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10218267552, - "lat": 52.9845320, - "lon": -0.8011891, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10218498412, - "lat": 53.3747041, - "lon": -2.0226686, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10218500152, - "lat": 53.3683470, - "lon": -2.0227784, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10218839438, - "lat": 53.0340922, - "lon": -2.3684739, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10219550185, - "lat": 50.3258605, - "lon": -5.1332323, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR4 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10219550186, - "lat": 50.2886734, - "lon": -5.0786180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR4 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10219550187, - "lat": 50.3335044, - "lon": -5.1241007, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 09:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR4 55", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10219550189, - "lat": 50.2723083, - "lon": -5.0775038, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TR4 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10219550190, - "lat": 50.3214323, - "lon": -5.1190831, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR4 112D", - "royal_cypher": "GR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10219550191, - "lat": 50.2953875, - "lon": -5.0992833, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 121D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10219769553, - "lat": 53.3607725, - "lon": -2.6432681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "WA4 311D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10219846477, - "lat": 51.5796292, - "lon": -3.1255731, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "207291241242983", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-05-19" - } -}, -{ - "type": "node", - "id": 10219970991, - "lat": 51.5750578, - "lon": -3.2606504, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10220067391, - "lat": 51.6695090, - "lon": -3.2429524, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10220171900, - "lat": 51.6734117, - "lon": -3.5335895, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10220184883, - "lat": 51.6038017, - "lon": -3.3459820, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10220219879, - "lat": 51.5479636, - "lon": -3.2768658, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10220330327, - "lat": 57.4200675, - "lon": -4.0991440, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "IV2 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10220338160, - "lat": 57.5393669, - "lon": -4.0634671, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV2 94D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10220509000, - "lat": 56.0422965, - "lon": -4.5262592, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10220571184, - "lat": 55.9082048, - "lon": -4.8702350, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10220577125, - "lat": 51.0139728, - "lon": -0.1142715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH17 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10221156217, - "lat": 51.6366163, - "lon": 0.3380644, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10221446664, - "lat": 51.1969678, - "lon": -4.1772012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://archive.org/details/lee-2021-09-06/PXL_20210906_112313236.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Machan, Scotland", - "post_box:type": "lamp", - "ref": "EX34 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10221446798, - "lat": 51.1959885, - "lon": -4.1708989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "image": "https://archive.org/details/lee-2021-09-06/PXL_20210906_111403858.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:manufacturer": "Derby Castings Limited, Derby", - "post_box:type": "wall", - "ref": "EX34 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10221828167, - "lat": 51.4060520, - "lon": -1.7132023, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 133", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10221828184, - "lat": 51.3899543, - "lon": -1.7530331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10221828208, - "lat": 51.4060470, - "lon": -1.7407574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10221900131, - "lat": 51.3606627, - "lon": -1.6718757, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 15", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10221900140, - "lat": 51.3839066, - "lon": -1.6429012, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 56D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10221900141, - "lat": 51.3543683, - "lon": -1.6781602, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10221900144, - "lat": 51.3633943, - "lon": -1.7167987, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10221900145, - "lat": 51.3688426, - "lon": -1.7187923, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10222098296, - "lat": 53.5466810, - "lon": -2.7260400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 175", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10223371348, - "lat": 51.4024423, - "lon": -1.4464316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG17 150D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10224360779, - "lat": 55.6164302, - "lon": -2.8126242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD1 2" - } -}, -{ - "type": "node", - "id": 10224391658, - "lat": 53.1807100, - "lon": -1.4236708, - "tags": { - "amenity": "post_box", - "comment": "plate missing", - "post_box:type": "lamp", - "ref": "S42 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10224482601, - "lat": 56.0840812, - "lon": -3.7820279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "ref": "FK2 105", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10224716228, - "lat": 53.8803489, - "lon": -2.7903120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10224734491, - "lat": 53.7783619, - "lon": -2.1811829, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10225433291, - "lat": 57.6084205, - "lon": -3.6259886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45", - "comment": "Big box;had a screen not working", - "post_box:type": "non-standard", - "ref": "IV36 3", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10225463460, - "lat": 57.6350255, - "lon": -3.5491097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "IV36 82", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10225469224, - "lat": 57.6390258, - "lon": -3.5569230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 11:00", - "post_box:type": "lamp", - "ref": "IV36 116", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10225685483, - "lat": 53.5144158, - "lon": -2.0408898, - "tags": { - "amenity": "post_box", - "fixme": "It's very near here but I'm unsure of its exact location", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10225838273, - "lat": 52.2273544, - "lon": -1.4289733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV47 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10226248704, - "lat": 51.4515590, - "lon": -3.2656233, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-07-12", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10226248710, - "lat": 51.4478817, - "lon": -3.2643299, - "tags": { - "amenity": "post_box", - "check_date": "2020-07-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10226248713, - "lat": 51.4408961, - "lon": -3.2623655, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-07-12", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10226429009, - "lat": 51.5120556, - "lon": -3.2502963, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-08", - "mapillary": "2934483560147196", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;mapillary" - } -}, -{ - "type": "node", - "id": 10226429014, - "lat": 51.5165335, - "lon": -3.2561539, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-10-08", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10226429015, - "lat": 51.5186257, - "lon": -3.2585535, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10226429016, - "lat": 51.5220297, - "lon": -3.2567631, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-08", - "mapillary": "2964368323793343", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "source": "streetside;mapillary" - } -}, -{ - "type": "node", - "id": 10226484617, - "lat": 51.5272140, - "lon": -3.2590919, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-08", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10226625596, - "lat": 55.8829164, - "lon": -4.3646963, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10228021619, - "lat": 51.5948643, - "lon": -0.1595418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N2 26D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10232085524, - "lat": 51.2231595, - "lon": -0.3767894, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10232092761, - "lat": 50.5067275, - "lon": -3.6599673, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10232148732, - "lat": 50.9646065, - "lon": -4.3767059, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10232169960, - "lat": 51.0572051, - "lon": -4.1957925, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10235274226, - "lat": 53.2345870, - "lon": -1.5287228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S42 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10235574843, - "lat": 54.5740103, - "lon": -5.9293121, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10235794782, - "lat": 50.6369175, - "lon": -2.4346170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 139D", - "ref:GB:uprn": "10015328586", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235794791, - "lat": 50.6376341, - "lon": -2.4208163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 107D", - "ref:GB:uprn": "10015382246", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235794792, - "lat": 50.6390970, - "lon": -2.4293290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235794794, - "lat": 50.6467121, - "lon": -2.3905020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT3 62D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235794795, - "lat": 50.6339527, - "lon": -2.3677187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 111D", - "ref:GB:uprn": "10015350132", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235814230, - "lat": 50.6319771, - "lon": -2.3534574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT2 155D", - "ref:GB:uprn": "10015310183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235944517, - "lat": 50.5337774, - "lon": -4.9952262, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL28 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235944613, - "lat": 50.5259184, - "lon": -4.9912862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PL28 170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10235988512, - "lat": 50.5292479, - "lon": -4.9845415, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL28 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236061615, - "lat": 50.5447218, - "lon": -4.9768006, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL28 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236061809, - "lat": 50.5419145, - "lon": -4.9745527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL28 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236138112, - "lat": 51.4483701, - "lon": -1.8570031, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10236138119, - "lat": 51.4872752, - "lon": -1.8429135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10236138120, - "lat": 51.4921060, - "lon": -1.8386930, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 54", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10236138123, - "lat": 51.4744656, - "lon": -1.8557439, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 137", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10236138124, - "lat": 51.4594006, - "lon": -1.8581458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 09:45", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 38", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10236219509, - "lat": 50.4393099, - "lon": -4.8806964, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR9 36D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236219610, - "lat": 50.4089089, - "lon": -4.8325035, - "tags": { - "amenity": "post_box", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236230209, - "lat": 50.4200962, - "lon": -4.8318533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236230309, - "lat": 50.4232378, - "lon": -4.8278223, - "tags": { - "amenity": "post_box", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236239409, - "lat": 50.4345900, - "lon": -4.7767385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PL30 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236254809, - "lat": 50.4584615, - "lon": -4.5927479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:00", - "ref": "PL14 5", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2022-12-03" - } -}, -{ - "type": "node", - "id": 10236374157, - "lat": 50.2791667, - "lon": -5.1270339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 141D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10236539709, - "lat": 50.4951854, - "lon": -4.9244255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "PL27 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-04" - } -}, -{ - "type": "node", - "id": 10236541209, - "lat": 50.4202981, - "lon": -4.8649014, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 72", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-04" - } -}, -{ - "type": "node", - "id": 10237496007, - "lat": 51.9956919, - "lon": -1.4829462, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX15 1004", - "website": "https://www.royalmail.com/services-near-you/postbox/hook-norton-village-shop-ox15-5ln/00OX151004" - } -}, -{ - "type": "node", - "id": 10238011241, - "lat": 50.7138767, - "lon": -2.7693218, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT6 3D", - "ref:GB:uprn": "10015282222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-04" - } -}, -{ - "type": "node", - "id": 10238290156, - "lat": 51.2910951, - "lon": -1.7289675, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 10D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10238985222, - "lat": 55.1404910, - "lon": -3.7791005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:30; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG2 91", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10239239631, - "lat": 52.8861162, - "lon": -2.3167201, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10239259593, - "lat": 52.7614920, - "lon": -2.2959301, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10239317955, - "lat": 52.2054532, - "lon": -2.7704099, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10239318451, - "lat": 52.8904134, - "lon": -2.3497712, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:00", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10239327460, - "lat": 52.9316851, - "lon": -2.4098495, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10239332385, - "lat": 52.1773099, - "lon": -2.7731566, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10239345267, - "lat": 52.2796887, - "lon": -2.8435546, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10239351656, - "lat": 52.1669623, - "lon": -2.9770567, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10239366257, - "lat": 52.2907655, - "lon": -2.7851461, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10240437720, - "lat": 55.0606422, - "lon": -3.6098399, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DG2 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10241023865, - "lat": 54.9204283, - "lon": -4.6451685, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1389822251696038", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2024-07-15" - } -}, -{ - "type": "node", - "id": 10241120430, - "lat": 56.4745759, - "lon": -2.8472361, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 220D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10241120431, - "lat": 56.4840044, - "lon": -2.8367108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD5 92D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10241137254, - "lat": 56.0699805, - "lon": -3.7128310, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "FK10 48D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10241137255, - "lat": 56.0934483, - "lon": -3.6538899, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10241137257, - "lat": 56.1252155, - "lon": -3.6865567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK10 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10241824321, - "lat": 57.2720208, - "lon": -2.3708468, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10241845371, - "lat": 50.2639321, - "lon": -5.1235039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR4 253D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10241845372, - "lat": 50.3339600, - "lon": -5.1066834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10241845373, - "lat": 50.3134262, - "lon": -5.0325221, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10242713506, - "lat": 51.3823411, - "lon": -2.5870131, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10243021445, - "lat": 50.2559636, - "lon": -5.0150881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR1 63D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10243487324, - "lat": 51.1073180, - "lon": -0.3650728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH12 96D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10243487325, - "lat": 51.0985331, - "lon": -0.3537445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH12 62D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10243530538, - "lat": 50.2634161, - "lon": -5.0456733, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR1 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10243530539, - "lat": 50.2645112, - "lon": -5.0478250, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR1 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10243530540, - "lat": 50.2662141, - "lon": -5.0472822, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10243530541, - "lat": 50.2692664, - "lon": -5.0460638, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR1 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10243530542, - "lat": 50.2770803, - "lon": -5.0427257, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 263", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10244323020, - "lat": 52.8273795, - "lon": -1.5844201, - "tags": { - "amenity": "post_box", - "mapillary": "1183253782126772", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10244952626, - "lat": 51.8036698, - "lon": -4.2391740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10245053370, - "lat": 50.2577904, - "lon": -5.0599622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR1 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10245053371, - "lat": 50.2608768, - "lon": -5.0619671, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 19D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10245053372, - "lat": 50.2629019, - "lon": -5.0608959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 29D", - "royal_cypher": "no", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10245053373, - "lat": 50.2636293, - "lon": -5.0658028, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 110D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10245107625, - "lat": 55.0624360, - "lon": -3.5713846, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "ref": "DG1 5", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10245107631, - "lat": 51.6096058, - "lon": -0.3667114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 51", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10245107632, - "lat": 51.6151134, - "lon": -0.3681851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10245123740, - "lat": 56.5402129, - "lon": -3.3713274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH2 10D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10245140533, - "lat": 55.0635558, - "lon": -3.5791282, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q1783168", - "ref": "DG1 14D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10245155035, - "lat": 56.5598537, - "lon": -3.4696111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 10:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH1 158", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10245160360, - "lat": 55.0639594, - "lon": -3.6051272, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DG1 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10245405555, - "lat": 52.6581180, - "lon": -2.4578956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10245809329, - "lat": 55.8834193, - "lon": -4.1997659, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10247078985, - "lat": 51.6106419, - "lon": -0.3744664, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 45", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10247078986, - "lat": 51.6033086, - "lon": -0.3768320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 194", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10248738675, - "lat": 56.5344575, - "lon": -3.4718510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 159D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10248883233, - "lat": 54.8574188, - "lon": -1.8456855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10248883235, - "lat": 54.8636081, - "lon": -1.8583670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10250693000, - "lat": 54.6588456, - "lon": -1.2166786, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "drive_through": "no", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10250918788, - "lat": 51.3433282, - "lon": -1.7035542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10251068783, - "lat": 53.4549807, - "lon": -2.1977848, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "drive_through": "no", - "post_box:type": "lamp", - "ref": "M13 254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10251547642, - "lat": 55.9210595, - "lon": -4.0515529, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10251570556, - "lat": 54.2990466, - "lon": -1.5666354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DL8 222", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10251601164, - "lat": 55.8678998, - "lon": -3.9527557, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10251785012, - "lat": 50.9771916, - "lon": -3.2738292, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10251792089, - "lat": 50.9616800, - "lon": -3.3415307, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10253326011, - "lat": 50.3736890, - "lon": -4.2153245, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "PL11 591D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2022-12-11" - } -}, -{ - "type": "node", - "id": 10253388090, - "lat": 51.6120510, - "lon": -0.3773927, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 40", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10253388091, - "lat": 51.6100351, - "lon": -0.3711551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "HA5 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10253391460, - "lat": 55.0721285, - "lon": -3.6419985, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG2 214", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10253602470, - "lat": 51.7723160, - "lon": -0.9402573, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10253807721, - "lat": 57.0481031, - "lon": -3.1156335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 13:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 394", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10255736110, - "lat": 50.3615531, - "lon": -4.3658167, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:15; Sa 09:30", - "mapillary": "828278514471080", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 564", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-12" - } -}, -{ - "type": "node", - "id": 10255802564, - "lat": 51.3572153, - "lon": -2.0704306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10255830495, - "lat": 50.1866079, - "lon": -5.1735654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR3 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10256346825, - "lat": 50.3616928, - "lon": -4.3137486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30; Sa 10:15", - "ref": "PL11 546", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-12-12" - } -}, -{ - "type": "node", - "id": 10257527109, - "lat": 50.3727748, - "lon": -4.3322682, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "ref": "PL11 562", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-12" - } -}, -{ - "type": "node", - "id": 10257860487, - "lat": 50.3791636, - "lon": -4.3212344, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL11 853", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10257860488, - "lat": 50.3950515, - "lon": -4.3279114, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL12 588", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10257860489, - "lat": 50.4240251, - "lon": -4.2928825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 743D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 10257860490, - "lat": 50.4222327, - "lon": -4.2863263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 10:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 311", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10257872340, - "lat": 52.2839667, - "lon": -1.5449753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "not:operator:wikidata": "Q638098", - "note": "located in entrance lobby", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "CV31 270D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10261135970, - "lat": 50.8444578, - "lon": -3.6072459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10261258020, - "lat": 53.3236344, - "lon": -1.1516823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "S81 120", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10261564628, - "lat": 50.9087680, - "lon": 0.5733007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN35 312D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10262289194, - "lat": 57.0907690, - "lon": -3.1683574, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB35 232", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10262317705, - "lat": 57.0592553, - "lon": -3.0349739, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 609", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10262321690, - "lat": 57.0503384, - "lon": -3.0455043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB35 231", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10262327882, - "lat": 57.0541662, - "lon": -3.0398663, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 576", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10262367715, - "lat": 57.0501049, - "lon": -3.0358242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB35 574", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10262370943, - "lat": 57.0323711, - "lon": -3.2133435, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB35 217", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10263247614, - "lat": 54.1788549, - "lon": -6.2398891, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10263247617, - "lat": 54.1807937, - "lon": -6.2303666, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10265016206, - "lat": 57.0998758, - "lon": -2.2625116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB14 402", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10265059117, - "lat": 57.0960901, - "lon": -2.2662847, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB14 284", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10265059702, - "lat": 57.0969340, - "lon": -2.2574754, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB14 348", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10265071150, - "lat": 57.1023669, - "lon": -2.2746341, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB14 374", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10265077881, - "lat": 57.1809721, - "lon": -3.1118421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB36 299", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265078412, - "lat": 57.0987738, - "lon": -2.2547594, - "tags": { - "addr:city": "Aberdeen", - "addr:country": "GB", - "addr:postcode": "AB14 0RA", - "addr:street": "St Ronan's Drive", - "addr:village": "Peterculter", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB14 455", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10265078479, - "lat": 57.1099235, - "lon": -2.8151571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 221", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265078790, - "lat": 57.2042290, - "lon": -3.0706642, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB36 489", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265089795, - "lat": 57.1973724, - "lon": -3.0434125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB36 300", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265100565, - "lat": 57.1943887, - "lon": -3.0875686, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB36 357", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265103771, - "lat": 57.2026176, - "lon": -3.0600551, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB36 296", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265114316, - "lat": 57.2328507, - "lon": -3.0361874, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB36 435", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265141147, - "lat": 57.0864503, - "lon": -2.6754975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "AB34 419", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265148607, - "lat": 57.0505920, - "lon": -2.6901841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 474", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265154969, - "lat": 57.0618092, - "lon": -2.7321311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB34 210", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265536599, - "lat": 57.0704759, - "lon": -2.7871989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 212", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265545504, - "lat": 57.0755660, - "lon": -2.7875846, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB34 207", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265552535, - "lat": 57.0744665, - "lon": -2.7801267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB34 470", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265565672, - "lat": 57.0775471, - "lon": -2.7659750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB34 561", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265865180, - "lat": 57.2479953, - "lon": -2.7046331, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB33 241", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265870917, - "lat": 57.2614714, - "lon": -2.8712687, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 414", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265871203, - "lat": 57.2235906, - "lon": -2.6328607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "note": "not on RMNY", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB33 491", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265895155, - "lat": 57.1658535, - "lon": -2.7221203, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 478", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265917507, - "lat": 57.2547911, - "lon": -2.8460680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 269", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265955362, - "lat": 57.1980047, - "lon": -2.7275421, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 484", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265963365, - "lat": 57.2118861, - "lon": -2.9351513, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 482", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265966351, - "lat": 57.2584824, - "lon": -2.6494643, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB33 283", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10265996568, - "lat": 57.1697127, - "lon": -2.7514033, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB33 352", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10266015786, - "lat": 51.7057371, - "lon": -1.9792106, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10266017977, - "lat": 57.1839572, - "lon": -2.7041667, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB33 266", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10266323839, - "lat": 51.1877246, - "lon": -3.8993912, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10266903172, - "lat": 51.4711026, - "lon": -0.4879671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "ref": "TW6 1151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10267125745, - "lat": 56.4605407, - "lon": -2.9623263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:45; Sa 11:00", - "manufacturer": "ROMEC", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "pillar", - "ref": "DD1 999", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267146380, - "lat": 56.4620375, - "lon": -2.9733179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD1 1112", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267708330, - "lat": 57.2636980, - "lon": -3.4108281, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Fr 10:00; Sa 10:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 153", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267710249, - "lat": 57.4319525, - "lon": -3.3663092, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 12:15; Sa 11:30; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 172", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267717541, - "lat": 57.3183553, - "lon": -3.3114179, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Sa 12:00; Su off", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 158", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267720377, - "lat": 57.4100917, - "lon": -3.3945718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-26", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 09:15; Sa 09:15", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB37 166", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267721153, - "lat": 57.4264095, - "lon": -3.3182871, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Sa 09:45; Su off", - "manufacturer": "None", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 170", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267739281, - "lat": 57.3578817, - "lon": -3.3513612, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Fr 13:15; Sa 12:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 169", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267744245, - "lat": 57.2779638, - "lon": -3.2580036, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Sa 11:45; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 168", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267751576, - "lat": 57.3409102, - "lon": -3.3142180, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Fr 12:45; Sa 12:00; Su off", - "manufacturer": "WT Allen", - "note": "lamp box in a wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB37 156", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10267766523, - "lat": 57.2936427, - "lon": -3.3113942, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-15", - "collection_times": "Mo-Fr 12:15; Sa 12:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB37 167", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10269556981, - "lat": 53.4761459, - "lon": -2.5526749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA3 205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10269791994, - "lat": 51.5998163, - "lon": -0.3798658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 201D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10269791995, - "lat": 51.6022944, - "lon": -0.3806487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA5 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10269801530, - "lat": 51.3179017, - "lon": -0.6949311, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1626706104185894", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey - see also https://web.archive.org/web/20220930194402/https://westnordost.de/p/113814.jpg", - "survey:date": "2020-12-02" - } -}, -{ - "type": "node", - "id": 10270035511, - "lat": 50.7325241, - "lon": -4.6181076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 180", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270035714, - "lat": 50.7356978, - "lon": -4.6245270, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "bank", - "post_box:type": "wall", - "ref": "EX23 84", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270063037, - "lat": 51.1686190, - "lon": -0.1854463, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "RH6 260", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10270063053, - "lat": 51.1757311, - "lon": -0.1773242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "RH6 333D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10270063054, - "lat": 51.1837439, - "lon": -0.1791340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 360D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10270063055, - "lat": 51.2106919, - "lon": -0.1894686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH2 156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10270361309, - "lat": 50.6964322, - "lon": -4.6279994, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:30, Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL32 127", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361312, - "lat": 50.6348123, - "lon": -4.5015849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361313, - "lat": 50.6312141, - "lon": -4.4629999, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361315, - "lat": 50.6290187, - "lon": -4.3465861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361409, - "lat": 50.6954459, - "lon": -4.6170108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361410, - "lat": 50.6289859, - "lon": -4.4078877, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361509, - "lat": 50.6761467, - "lon": -4.6135157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL32 28", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270361510, - "lat": 50.6271075, - "lon": -4.4103484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-12-17" - } -}, -{ - "type": "node", - "id": 10270490473, - "lat": 52.3384335, - "lon": -2.3944359, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10271584042, - "lat": 51.3602864, - "lon": -2.1295455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 100", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10271584043, - "lat": 51.3602906, - "lon": -2.1295146, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SN12 690P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10271584044, - "lat": 51.3585915, - "lon": -2.1267037, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 246", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10271584047, - "lat": 51.3726023, - "lon": -2.1327400, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 657D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10271584048, - "lat": 51.3802787, - "lon": -2.1235199, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10271584049, - "lat": 51.3830434, - "lon": -2.1265347, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 161D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10271584062, - "lat": 51.3729715, - "lon": -2.1399591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 102", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10271584063, - "lat": 51.3599372, - "lon": -2.1441555, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10271584064, - "lat": 51.3791445, - "lon": -2.1095147, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:45; Sa 10:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10272043203, - "lat": 54.8866752, - "lon": -1.7257526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10272807098, - "lat": 53.7368179, - "lon": -1.7751174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10273763306, - "lat": 53.7149753, - "lon": -1.9372457, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "913585386162958", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-10-30" - } -}, -{ - "type": "node", - "id": 10274539788, - "lat": 53.8994622, - "lon": -2.7758267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PR3 280P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10274566453, - "lat": 53.7662517, - "lon": -2.8114694, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10274584091, - "lat": 53.7764709, - "lon": -2.9155732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10274589546, - "lat": 53.8327695, - "lon": -2.7378691, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10274646334, - "lat": 54.2339046, - "lon": -3.0540156, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10275298730, - "lat": 50.5462161, - "lon": -4.3585083, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4941865709182756", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10275298731, - "lat": 50.5522555, - "lon": -4.3868222, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "368515375200003", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10275419275, - "lat": 50.5574189, - "lon": -4.7218296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "2982320008672474", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10276576910, - "lat": 53.7332957, - "lon": -2.4905149, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10276825336, - "lat": 54.5538841, - "lon": -3.4574710, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CA26 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10276931817, - "lat": 51.4826818, - "lon": 0.1463117, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10277979943, - "lat": 53.4985091, - "lon": -1.2734177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S64 234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278017306, - "lat": 53.4979031, - "lon": -1.2694194, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 272D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278037105, - "lat": 53.4931844, - "lon": -1.2873844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S64 85", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10278044051, - "lat": 53.4934819, - "lon": -1.2761877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "post_box:type": "pillar", - "ref": "S64 102", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10278055870, - "lat": 53.4972307, - "lon": -1.2858755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "post_box:type": "pillar", - "ref": "S64 98", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10278056548, - "lat": 53.4944978, - "lon": -1.2686189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "post_box:type": "pillar", - "ref": "S64 55", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10278056657, - "lat": 53.5007812, - "lon": -1.2697421, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278057170, - "lat": 53.4924774, - "lon": -1.2786904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S64 113D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10278073833, - "lat": 53.4989991, - "lon": -1.2839255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278090319, - "lat": 53.5016519, - "lon": -1.2782208, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 307D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278094619, - "lat": 53.4976435, - "lon": -1.2792923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278106353, - "lat": 53.5000779, - "lon": -1.2949875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 251D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10278125581, - "lat": 53.4878960, - "lon": -1.3032338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 86D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10279118058, - "lat": 51.6638207, - "lon": -0.2808642, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10279800779, - "lat": 51.5326832, - "lon": 0.0546563, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E6 8D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10279843456, - "lat": 51.1735652, - "lon": -0.1643835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RH6 223D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10279843457, - "lat": 51.1780188, - "lon": -0.1666443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH6 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10279863555, - "lat": 51.1557531, - "lon": -0.1240233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:30", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH6 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10279863562, - "lat": 51.1483929, - "lon": -0.1323288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 231", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10279863595, - "lat": 51.1550495, - "lon": -0.1384550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10280157574, - "lat": 51.1252868, - "lon": -0.0882085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH10 57D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10281304953, - "lat": 51.1743072, - "lon": 0.0088438, - "tags": { - "access": "yes", - "amenity": "post_box", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 10281324678, - "lat": 53.4617275, - "lon": -2.5875337, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 202", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10281374954, - "lat": 52.9902321, - "lon": -2.0401332, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10281461131, - "lat": 52.2275311, - "lon": -2.4713878, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10282626336, - "lat": 53.4163979, - "lon": -2.8921616, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10284468602, - "lat": 57.5266318, - "lon": -3.2102315, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB38 29", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284501670, - "lat": 57.5304484, - "lon": -3.2008552, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "manufacturer": "WT Allen", - "note": "Although door says WT Allen this is an older door on a more modern box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 25", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284512155, - "lat": 57.5272684, - "lon": -3.2068922, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "AB38 57", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284522093, - "lat": 53.4512917, - "lon": -2.7363559, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA10 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10284525994, - "lat": 57.5298777, - "lon": -3.2080750, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 12:30; Sa 11:00; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB38 27", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284534510, - "lat": 57.4981649, - "lon": -3.1409296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Sa 10:15; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 117", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284537088, - "lat": 51.3197344, - "lon": -2.2018933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BA14 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10284567653, - "lat": 57.4873546, - "lon": -3.1832582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Sa 09:00; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 61", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284570149, - "lat": 57.4652893, - "lon": -3.2357224, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Sa 09:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 142", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284575477, - "lat": 57.4895910, - "lon": -3.1832536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Sa 09:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 108", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284576082, - "lat": 57.4697739, - "lon": -3.3683318, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 15:45; Sa 11:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 50", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284582074, - "lat": 57.4451247, - "lon": -3.2245722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-02", - "collection_times": "Mo-Sa 09:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 41", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10284588722, - "lat": 57.4521472, - "lon": -3.2697363, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 10:00; Sa 08:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 36", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284594890, - "lat": 57.4685129, - "lon": -3.3451924, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 10:15; Sa 12:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 37", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284600539, - "lat": 57.4596327, - "lon": -3.3504208, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Fr 11:15; Sa 10:30; Su off", - "manufacturer": "Abbot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB38 62", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284600664, - "lat": 57.4641825, - "lon": -3.2985191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-10-09", - "collection_times": "Mo-Sa 12:00; Su off", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB38 597", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284619498, - "lat": 51.6481613, - "lon": -1.9691379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL7 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10284643533, - "lat": 57.1496690, - "lon": -2.7780622, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-07-21", - "collection_times": "Mo-Sa 11:30; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB31 250", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284661418, - "lat": 57.1425705, - "lon": -2.6310711, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-03", - "collection_times": "Mo-Sa 10:00; Su off", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 381", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284661603, - "lat": 57.1086608, - "lon": -2.6315301, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-03", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 392", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284664911, - "lat": 57.1301810, - "lon": -2.6895587, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-16", - "collection_times": "Mo-Sa 11:45; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 643", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284664912, - "lat": 57.1227448, - "lon": -2.7112040, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-16", - "collection_times": "Mo-Sa 09:00; Su off", - "manufacturer": "Machan", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 229", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284670792, - "lat": 57.0195943, - "lon": -2.5818758, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-02", - "collection_times": "Mo-Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 343", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284673298, - "lat": 57.0575587, - "lon": -2.4146405, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-12", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 469", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284677589, - "lat": 57.0525495, - "lon": -2.3489048, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Sa 10:15; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 555", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284681625, - "lat": 57.0910136, - "lon": -2.4740135, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-06-20", - "collection_times": "Mo-Sa 11:00; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB31 223", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284684721, - "lat": 57.1543278, - "lon": -2.6918747, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-03", - "collection_times": "Mo-Sa 11:30; Su off", - "manufacturer": "Abbot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 244", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284686132, - "lat": 57.0148215, - "lon": -2.6720644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-28", - "collection_times": "Mo-Sa 10:45; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 282", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284694147, - "lat": 57.0205660, - "lon": -2.5383236, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-11-02", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "manufacturer": "none", - "note": "Lamp box set in a wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB31 270", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284699313, - "lat": 57.0317073, - "lon": -2.6552385, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-18", - "collection_times": "Mo-Sa 10:30; Su off", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "wall", - "ref": "AB31 398", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284699887, - "lat": 57.0258954, - "lon": -2.6527543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-28", - "collection_times": "Mo-Sa 11:00; Su off", - "note": "English box in Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284709318, - "lat": 57.0212999, - "lon": -2.6320670, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-09-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "AB31 801", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284725980, - "lat": 57.0607991, - "lon": -2.5207163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-08", - "collection_times": "Mo-Fr 16:45; Sa 12:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "AB31 450", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284730106, - "lat": 57.0613052, - "lon": -2.4943680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-08", - "collection_times": "Mo-Fr 16:15; Sa 12:00; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 625", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284731745, - "lat": 57.0599646, - "lon": -2.5410333, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-08", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "AB31 607", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284735618, - "lat": 57.0621610, - "lon": -2.5412693, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-10-08", - "collection_times": "Mo-Sa 10:15; Su off", - "manufacturer": "Carron Company", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 608", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284767287, - "lat": 57.0526303, - "lon": -2.4839370, - "tags": { - "addr:city": "Banchory", - "addr:country": "GB", - "addr:postcode": "AB31 5YA", - "addr:street": "Station Road", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2021-12-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "WT Allen", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "wall", - "ref": "AB31 338", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284774123, - "lat": 57.0580554, - "lon": -2.4722440, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2022-07-14", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "manufacturer": "none", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB31 635", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10284938480, - "lat": 55.0423831, - "lon": -1.8294548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "fixme": "Check exact location", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10284938483, - "lat": 54.9964548, - "lon": -1.7672601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10285180795, - "lat": 53.5484189, - "lon": -2.3932721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10285415098, - "lat": 52.7617643, - "lon": -2.3816806, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10285445324, - "lat": 53.1911329, - "lon": -2.4438209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "CW10 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10285930577, - "lat": 55.9261504, - "lon": -4.3465531, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10285930578, - "lat": 55.9259786, - "lon": -4.3518910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10286144758, - "lat": 52.7586042, - "lon": -0.3917450, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10286575252, - "lat": 53.4783251, - "lon": -1.3091443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "post_box:type": "lamp", - "ref": "S64 323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10286587520, - "lat": 53.5095091, - "lon": -1.2934033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "post_box:type": "lamp", - "ref": "S64 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10286594490, - "lat": 53.4823571, - "lon": -1.3109070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 77D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10286595132, - "lat": 53.4758803, - "lon": -1.3139743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S64 374D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10286600773, - "lat": 53.4758292, - "lon": -1.3069182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S64 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10286860472, - "lat": 53.4200666, - "lon": -2.1237768, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10287569577, - "lat": 51.3212860, - "lon": -2.1974852, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10287638502, - "lat": 56.4772284, - "lon": -2.9662745, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DD3 134", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10287664403, - "lat": 56.4766089, - "lon": -2.9243364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "DD4 41", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10287668109, - "lat": 51.0224898, - "lon": -4.1010979, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "9442476935769809", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-12-26" - } -}, -{ - "type": "node", - "id": 10288176741, - "lat": 51.1928392, - "lon": -0.6072561, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "waggon_top", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "GU7 62D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10288176774, - "lat": 51.2020215, - "lon": -0.6101351, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GU7 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10288561780, - "lat": 53.1254500, - "lon": -1.2612881, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10288646114, - "lat": 53.3544228, - "lon": -2.3391940, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10289348936, - "lat": 51.4670372, - "lon": -3.4294944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "CF71 75D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10289348940, - "lat": 51.4784917, - "lon": -3.4263289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "CF71 106D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10289348941, - "lat": 51.4572301, - "lon": -3.4504341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "CF71 95D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10289348942, - "lat": 51.4589795, - "lon": -3.4421301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "CF71 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10289891592, - "lat": 51.1228985, - "lon": -2.9813330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA6 314D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10290461171, - "lat": 51.7168537, - "lon": -1.9692170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL7 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10290461173, - "lat": 51.7168456, - "lon": -1.9692122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "GL7 555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10290789253, - "lat": 53.3929715, - "lon": -2.3711788, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 54", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 10291272926, - "lat": 51.0185704, - "lon": -2.8713584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA10 236", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10291272927, - "lat": 51.0273756, - "lon": -2.8657539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA10 500D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10291394818, - "lat": 51.0162858, - "lon": -2.8146619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA10 68D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10291632340, - "lat": 51.4214750, - "lon": -2.6260335, - "tags": { - "addr:street": "Donald Road", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "postal_code": "BS13 7BP" - } -}, -{ - "type": "node", - "id": 10293481253, - "lat": 53.4982609, - "lon": -2.0713432, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "colour": "RED", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OL6 150", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10293600025, - "lat": 53.5013072, - "lon": -2.0727972, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "colour": "red", - "material": "metal", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OL6 43", - "royal_cypher": "GR", - "source": "survey;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10293777181, - "lat": 50.9892048, - "lon": -4.2611357, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10293845819, - "lat": 54.6342028, - "lon": -1.6449887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10294268247, - "lat": 57.6920783, - "lon": -2.0148747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10294611662, - "lat": 52.6533467, - "lon": -0.4710650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE9 50D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10294775722, - "lat": 51.7167151, - "lon": -1.9605500, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 123", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10294775723, - "lat": 51.7103456, - "lon": -1.9806021, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 124D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10294914817, - "lat": 51.3175922, - "lon": -0.5611390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "mapillary": "1563477194052891", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10295002225, - "lat": 50.9945228, - "lon": -2.8134307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA12 220", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10295002226, - "lat": 51.0012978, - "lon": -2.8178845, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA10 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10295139820, - "lat": 51.7594890, - "lon": -1.5933582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX18 434", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10295147610, - "lat": 51.7666365, - "lon": -1.5662384, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10295163525, - "lat": 51.7094612, - "lon": -1.7648672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 89", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10295163526, - "lat": 51.6986328, - "lon": -1.7248321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10295163527, - "lat": 51.6954026, - "lon": -1.7003475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10295294246, - "lat": 57.4662546, - "lon": -1.7987534, - "tags": { - "addr:city": "Peterhead", - "addr:country": "GB", - "addr:postcode": "AB42 3BB", - "addr:street": "Lendrum Terrace", - "amenity": "post_box", - "operator": "Royal Mail", - "ref:GB:uprn": "151159946" - } -}, -{ - "type": "node", - "id": 10295351153, - "lat": 52.7653900, - "lon": -0.3682367, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "5660535457369230", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2022-12-28" - } -}, -{ - "type": "node", - "id": 10295715870, - "lat": 52.4532287, - "lon": -2.1557637, - "tags": { - "amenity": "post_box", - "source": "bing, survey" - } -}, -{ - "type": "node", - "id": 10295775233, - "lat": 53.4582800, - "lon": -1.4646700, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "S35 673D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10296062475, - "lat": 53.5232402, - "lon": -2.6520091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10296197262, - "lat": 53.4624076, - "lon": -2.2239790, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10296267990, - "lat": 53.0717367, - "lon": -0.8029080, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10296544623, - "lat": 53.1192458, - "lon": -2.1720255, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST8 399D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10296548077, - "lat": 53.4936271, - "lon": -1.3466277, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 252D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296565989, - "lat": 53.4947361, - "lon": -1.3385469, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 88D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10296568575, - "lat": 53.4961306, - "lon": -1.3510862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296569966, - "lat": 53.5040347, - "lon": -1.3520528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S63 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296572487, - "lat": 53.5025786, - "lon": -1.3181207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "parcel", - "ref": "S63 475", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10296586940, - "lat": 53.5001756, - "lon": -1.3480606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S63 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296590328, - "lat": 53.5025655, - "lon": -1.3180876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "post_box:type": "pillar", - "ref": "S63 474", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296636567, - "lat": 53.5068355, - "lon": -1.3639040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296642314, - "lat": 53.5092417, - "lon": -1.3644948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296657867, - "lat": 50.9759146, - "lon": -2.8377403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA12 48", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10296666740, - "lat": 53.1130404, - "lon": -2.1705140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "ref": "ST8 163", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10296695039, - "lat": 50.9890864, - "lon": -2.8634569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "TA10 243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296701598, - "lat": 53.1161909, - "lon": -2.1761060, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "ref": "ST8 403", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10296714227, - "lat": 50.9518069, - "lon": -2.9672440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA19 304D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10297042110, - "lat": 55.8414336, - "lon": -4.1789889, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "6485777781519590", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-10-13" - } -}, -{ - "type": "node", - "id": 10297093641, - "lat": 53.2783233, - "lon": -2.9014423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CH64 410", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10297093649, - "lat": 53.2841153, - "lon": -2.8952581, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10297175232, - "lat": 50.2659349, - "lon": -5.0500474, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "TR1 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10297175233, - "lat": 50.2643713, - "lon": -5.0968285, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10297183698, - "lat": 52.6702195, - "lon": -2.3725159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15", - "post_box:type": "pillar", - "ref": "TF11 159", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10297249315, - "lat": 52.6997433, - "lon": -2.5197333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10297249316, - "lat": 52.6997412, - "lon": -2.5197548, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 10297633499, - "lat": 52.3233904, - "lon": -2.2118780, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10297663304, - "lat": 53.3945229, - "lon": -2.2156899, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10298089200, - "lat": 53.4918126, - "lon": -1.3417932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:00", - "post_box:type": "pillar", - "ref": "S63 1618", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10298115160, - "lat": 51.8526285, - "lon": -2.2274995, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "GL4 18D", - "source": "survey", - "survey:date": "2022-11-30" - } -}, -{ - "type": "node", - "id": 10298200909, - "lat": 51.8332345, - "lon": -2.2442477, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL4 72D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10298362456, - "lat": 51.4923131, - "lon": -0.0798016, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE1 7", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10298606861, - "lat": 51.7398483, - "lon": -3.6380072, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10298634788, - "lat": 50.3899585, - "lon": -4.8640285, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:45", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10298675845, - "lat": 51.4378210, - "lon": 0.2721188, - "tags": { - "amenity": "post_box", - "level": "0", - "ref": "DA9 428" - } -}, -{ - "type": "node", - "id": 10299358948, - "lat": 53.3719591, - "lon": -2.1402186, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10299757105, - "lat": 51.4245746, - "lon": -0.4827932, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10300034694, - "lat": 53.4527898, - "lon": -2.7316881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "colour": "#ff2600", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10300416369, - "lat": 51.0186891, - "lon": -2.9566592, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TA3 513D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10300416599, - "lat": 54.4232840, - "lon": -2.0021168, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10300802245, - "lat": 57.5194478, - "lon": -2.0385370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB42 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10301373569, - "lat": 52.5976601, - "lon": -1.1804268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "ref": "LE19 356", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10302618018, - "lat": 52.6625239, - "lon": -2.9935829, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10303077428, - "lat": 51.5819214, - "lon": 0.1694856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM7 91D" - } -}, -{ - "type": "node", - "id": 10303078943, - "lat": 51.5416012, - "lon": 0.1141630, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 285", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10303166742, - "lat": 51.5398998, - "lon": 0.1013544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG11 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10303219287, - "lat": 51.5516568, - "lon": 0.1295789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM8 144", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10303286321, - "lat": 51.2922180, - "lon": -0.7835185, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU14 82D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10303286322, - "lat": 51.3006856, - "lon": -0.7779144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU14 113D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10303355549, - "lat": 57.5172652, - "lon": -1.9385776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10303518525, - "lat": 51.5359748, - "lon": 0.0608263, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10303518526, - "lat": 51.5326087, - "lon": 0.0416543, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10303518527, - "lat": 51.5360847, - "lon": 0.0413307, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E6 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10304643618, - "lat": 51.3750239, - "lon": -2.1136536, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN12 107", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10304750596, - "lat": 51.5289028, - "lon": 0.0934482, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10304770078, - "lat": 51.5311769, - "lon": 0.0865548, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 20D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10304871091, - "lat": 51.5246923, - "lon": 0.0953660, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 35", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10304871101, - "lat": 51.5251643, - "lon": 0.1050446, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 48", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10304871102, - "lat": 51.5251641, - "lon": 0.1050628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IG11 50P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10304871105, - "lat": 51.5285317, - "lon": 0.1041991, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10304931574, - "lat": 51.5383526, - "lon": 0.0756681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.geograph.org.uk/photo/6150308", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 1", - "source": "bing;geograph" - } -}, -{ - "type": "node", - "id": 10304931575, - "lat": 51.5379636, - "lon": 0.0687017, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 14D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10304931583, - "lat": 51.5434412, - "lon": 0.0790226, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 2D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10304965620, - "lat": 51.5421627, - "lon": 0.0996426, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 28", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing;streetside;survey" - } -}, -{ - "type": "node", - "id": 10304965622, - "lat": 51.5399715, - "lon": 0.0941953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10304965623, - "lat": 51.5426373, - "lon": 0.0926528, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10304965624, - "lat": 51.5404948, - "lon": 0.0885244, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 22D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10304965625, - "lat": 51.5434379, - "lon": 0.0883161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref not visible", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10304965626, - "lat": 51.5454702, - "lon": 0.1067447, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10305021767, - "lat": 51.5267430, - "lon": 0.0388864, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E13 6", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10305021770, - "lat": 51.5250335, - "lon": 0.0338174, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "877435673593148", - "note": "Security plate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 19", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10305038203, - "lat": 51.5459052, - "lon": 0.0567861, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 9", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10305038204, - "lat": 51.5474335, - "lon": 0.0626255, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E12 18", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10305038206, - "lat": 51.5544621, - "lon": 0.0614002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E12 25", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10305058892, - "lat": 53.5634224, - "lon": -1.7534647, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10307590763, - "lat": 51.3396909, - "lon": -0.7826867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU47 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10308493879, - "lat": 51.5382421, - "lon": 0.1107398, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10308493880, - "lat": 51.5368518, - "lon": 0.1086198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 42D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10308514176, - "lat": 51.5363204, - "lon": 0.0980267, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 38D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10308514531, - "lat": 51.5311417, - "lon": 0.0964981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10308641120, - "lat": 51.5520095, - "lon": 0.1147334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM8 130", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10309350861, - "lat": 52.6830393, - "lon": -0.8023898, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10309381636, - "lat": 53.5177199, - "lon": -1.3293369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309385104, - "lat": 53.5205755, - "lon": -1.3221557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "wall", - "ref": "S63 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309413373, - "lat": 53.5277483, - "lon": -1.3160845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309420513, - "lat": 53.5323542, - "lon": -1.3182926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309425503, - "lat": 53.5232010, - "lon": -1.3202945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 184D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10309431341, - "lat": 53.5330822, - "lon": -1.3116482, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "pillar", - "ref": "S63 207", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10309444000, - "lat": 53.5337858, - "lon": -1.3059697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309462692, - "lat": 53.5266355, - "lon": -1.3108821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 186D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309466034, - "lat": 53.5225487, - "lon": -1.3271468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10309501779, - "lat": 54.6368946, - "lon": -1.2008307, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10311186404, - "lat": 51.5459452, - "lon": 0.1651183, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10311596939, - "lat": 51.4083102, - "lon": -0.8359118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG40 8D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10311596940, - "lat": 51.4047236, - "lon": -0.8211090, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG40 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10312825622, - "lat": 51.4049944, - "lon": -0.9733388, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG7 275", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10312825623, - "lat": 51.4095344, - "lon": -0.9456906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG2 577D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10312884309, - "lat": 53.1796798, - "lon": -2.2114766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW12 80D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10312987805, - "lat": 53.5503564, - "lon": -1.3164124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313002492, - "lat": 53.5456357, - "lon": -1.3115111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313009708, - "lat": 53.5474086, - "lon": -1.3027660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313013859, - "lat": 53.5470642, - "lon": -1.3229236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313018493, - "lat": 53.5515985, - "lon": -1.3022480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313033353, - "lat": 53.5434419, - "lon": -1.2975602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313033615, - "lat": 53.5422290, - "lon": -1.3254969, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S63 427D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313033881, - "lat": 53.5400996, - "lon": -1.3123662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S63 237D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313092420, - "lat": 53.5575710, - "lon": -1.7849768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "post_box:type": "wall", - "ref": "HD9 174", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313134797, - "lat": 54.6561372, - "lon": -7.4235125, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10313160250, - "lat": 53.5506986, - "lon": -1.3465662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S72 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313174134, - "lat": 53.5557472, - "lon": -1.3539099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S72 282D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313181080, - "lat": 53.5526552, - "lon": -1.3485564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 12:00", - "post_box:type": "lamp", - "ref": "S72 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10313202713, - "lat": 53.5409529, - "lon": -1.3495069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "wall", - "ref": "S72 164", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10313354695, - "lat": 51.7074267, - "lon": -1.9572359, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 51D" - } -}, -{ - "type": "node", - "id": 10314890471, - "lat": 55.9399080, - "lon": -4.3156636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G62 1496" - } -}, -{ - "type": "node", - "id": 10315595356, - "lat": 54.2087118, - "lon": -5.8916293, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10415724641, - "lat": 50.7433263, - "lon": -2.4984898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 605D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-26" - } -}, -{ - "type": "node", - "id": 10415724642, - "lat": 50.7406962, - "lon": -2.5122616, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 169D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-26" - } -}, -{ - "type": "node", - "id": 10415724643, - "lat": 50.7360774, - "lon": -2.4847274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT2 140", - "ref:GB:uprn": "10015318169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2022-12-26" - } -}, -{ - "type": "node", - "id": 10537712844, - "lat": 51.7054831, - "lon": -1.9721430, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 146D" - } -}, -{ - "type": "node", - "id": 10537712845, - "lat": 51.7026151, - "lon": -1.9656522, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 102D" - } -}, -{ - "type": "node", - "id": 10537712846, - "lat": 51.7038260, - "lon": -1.9600413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "ref": "GL7 152D;GL7 1152D" - } -}, -{ - "type": "node", - "id": 10537712847, - "lat": 51.7044416, - "lon": -1.9544243, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 114D" - } -}, -{ - "type": "node", - "id": 10537712849, - "lat": 51.7143673, - "lon": -1.9506795, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 133D" - } -}, -{ - "type": "node", - "id": 10537712850, - "lat": 51.7160299, - "lon": -1.9532433, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 116" - } -}, -{ - "type": "node", - "id": 10537712851, - "lat": 51.7182680, - "lon": -1.9508876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 126" - } -}, -{ - "type": "node", - "id": 10537712852, - "lat": 51.7097959, - "lon": -1.9637380, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 148D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10537712853, - "lat": 51.7112302, - "lon": -1.9673256, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 160D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10537712854, - "lat": 51.7146682, - "lon": -1.9618339, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 26D" - } -}, -{ - "type": "node", - "id": 10537870695, - "lat": 51.8581857, - "lon": -2.1856039, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10540200929, - "lat": 51.6441762, - "lon": -1.9390672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "SN6 103D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10540200930, - "lat": 51.6518621, - "lon": -1.9389984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SN6 102", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10540200964, - "lat": 51.6463434, - "lon": -1.9279343, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SN6 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10540200980, - "lat": 51.6421033, - "lon": -1.9315841, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "No ref shown as of 2022-12", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "SN6 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10541076746, - "lat": 54.7093282, - "lon": -1.2440321, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "opening_hours": "Mo-Fr 09:00; Sa 07:00", - "ref": "TS27 8D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10541338207, - "lat": 53.4525104, - "lon": -2.5170813, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 164", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10541879725, - "lat": 57.6970893, - "lon": -2.1131904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB43 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10541975949, - "lat": 51.6440603, - "lon": -0.0467909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EN3 48" - } -}, -{ - "type": "node", - "id": 10542552894, - "lat": 51.5354812, - "lon": -3.3706748, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10542592430, - "lat": 51.5387853, - "lon": -3.3714414, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10550577437, - "lat": 51.7534133, - "lon": 0.4398936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 08:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CM1 63" - } -}, -{ - "type": "node", - "id": 10550598724, - "lat": 51.7147563, - "lon": -1.9688191, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 32", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10550598749, - "lat": 51.7170064, - "lon": -1.9638673, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "GL7 161" - } -}, -{ - "type": "node", - "id": 10550655147, - "lat": 53.5083314, - "lon": -2.4315467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M28 463", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10554294326, - "lat": 53.5695341, - "lon": -1.4086431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S72 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554300391, - "lat": 53.5848272, - "lon": -1.4115738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S72 116D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554309352, - "lat": 53.5902888, - "lon": -1.4042475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S72 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554309766, - "lat": 53.5711834, - "lon": -1.4170606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S72 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554318955, - "lat": 53.5643219, - "lon": -1.4068797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "post_box:type": "lamp", - "ref": "S72 244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554324306, - "lat": 53.5814029, - "lon": -1.4145696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S72 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554345850, - "lat": 53.5945231, - "lon": -1.4103843, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "wall", - "ref": "S72 110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554345959, - "lat": 53.5894073, - "lon": -1.4207156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S72 215D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554375263, - "lat": 53.5806641, - "lon": -1.3966182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S72 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554378654, - "lat": 53.5755061, - "lon": -1.3812126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "post_box:type": "pillar", - "ref": "S72 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554379213, - "lat": 53.5983575, - "lon": -1.4144131, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "wall", - "ref": "S72 222", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10554427651, - "lat": 53.5793367, - "lon": -1.3821209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S72 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554430643, - "lat": 53.5747587, - "lon": -1.3747132, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S72 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554433466, - "lat": 53.5757692, - "lon": -0.1595992, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/ZKZPXfrT/DN41-153-D.jpg", - "location": "Radcliffe Road, Maple Grove", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN41 153D", - "ref:GB:uprn": "10015361042", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10554435635, - "lat": 53.5943581, - "lon": -1.3728916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "post_box:type": "wall", - "ref": "S72 189", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554442791, - "lat": 53.6098346, - "lon": -1.4024764, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "lamp", - "ref": "S72 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554463831, - "lat": 53.6122945, - "lon": -1.4032582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "lamp", - "ref": "S72 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554464617, - "lat": 53.5947832, - "lon": -1.3907260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S72 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10554467822, - "lat": 53.6072961, - "lon": -1.3907562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "post_box:type": "lamp", - "ref": "S72 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10555230877, - "lat": 51.6907793, - "lon": 0.1086831, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10555593036, - "lat": 51.6408227, - "lon": -0.1709891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10556455677, - "lat": 51.0816083, - "lon": -2.3499898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "drive_through": "no", - "ref": "BA9 103" - } -}, -{ - "type": "node", - "id": 10556881079, - "lat": 51.5955994, - "lon": 0.0140940, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E18 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10557411388, - "lat": 53.7542545, - "lon": -1.8912001, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10557431359, - "lat": 52.6858110, - "lon": -1.8139136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10558532501, - "lat": 51.6553171, - "lon": -0.4111072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "WD18 106D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10558624911, - "lat": 51.1622658, - "lon": 0.1410117, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN8 214D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10558631141, - "lat": 51.5538274, - "lon": -0.9920183, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10559063022, - "lat": 51.5057253, - "lon": -0.2120196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "W11 34", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10559197637, - "lat": 50.9415828, - "lon": -0.4481351, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10559413186, - "lat": 51.5931891, - "lon": -0.1820963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "check precise location", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "N2 3D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10559413192, - "lat": 51.5915837, - "lon": -0.1779364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N2 1", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10559413194, - "lat": 51.5904727, - "lon": -0.1730414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "N2 10D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10560118562, - "lat": 52.4789639, - "lon": 1.7333313, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3250", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10560156860, - "lat": 54.7686654, - "lon": -1.6524748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10560241124, - "lat": 51.2101973, - "lon": -2.5691256, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10560479903, - "lat": 51.1987063, - "lon": -4.1235738, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "image": "https://archive.org/details/ilfracombe-2021-09-08/DSCN5292.JPG", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 46", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10560858087, - "lat": 53.5137662, - "lon": -2.1074307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10562707450, - "lat": 56.0714357, - "lon": -4.3371975, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G63 599" - } -}, -{ - "type": "node", - "id": 10562707454, - "lat": 56.0687042, - "lon": -4.3360128, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 15:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G63 820" - } -}, -{ - "type": "node", - "id": 10562840209, - "lat": 51.5345068, - "lon": 0.0879583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:45", - "note": "reference obscured", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10562840370, - "lat": 51.5353100, - "lon": 0.1112958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 225D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10562964895, - "lat": 50.8832544, - "lon": -3.4115032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10562975909, - "lat": 52.4897426, - "lon": 1.7163320, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3221", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10562975910, - "lat": 52.4895397, - "lon": 1.7200516, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3246", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10562975911, - "lat": 52.4907563, - "lon": 1.7253325, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3244", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10562975912, - "lat": 52.4861588, - "lon": 1.7224625, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10563380595, - "lat": 51.2717288, - "lon": -1.5319618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SP11 8", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10563646659, - "lat": 54.8788060, - "lon": -1.6567776, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10564910365, - "lat": 51.5224920, - "lon": 0.1412980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "note": "double aperture, no visible ref codes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10564910368, - "lat": 51.5321702, - "lon": 0.1462953, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 152", - "royal_cypher": "EIIR", - "source": "streetside;bing;mapillary" - } -}, -{ - "type": "node", - "id": 10565470933, - "lat": 51.5388299, - "lon": 0.1271724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "RM9 192", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10565759164, - "lat": 51.5384394, - "lon": 0.1220176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 227D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10565759166, - "lat": 51.5373773, - "lon": 0.1251671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10565759181, - "lat": 51.5355177, - "lon": 0.1221818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 318D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10565759191, - "lat": 51.5390795, - "lon": 0.1172392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 249D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10565759192, - "lat": 51.5434226, - "lon": 0.1188535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10565804637, - "lat": 51.5374729, - "lon": 0.1349082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 155D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10565804683, - "lat": 51.5366734, - "lon": 0.1392608, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 151D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10566067349, - "lat": 51.5533620, - "lon": 0.0876118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 82", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10566106952, - "lat": 52.0511897, - "lon": 1.1777952, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "ludlow", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP3 1171", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10566106953, - "lat": 52.0529767, - "lon": 1.1761744, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1159", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10566106954, - "lat": 52.0461499, - "lon": 1.1649730, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP3 1265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10566106955, - "lat": 52.0395150, - "lon": 1.1815914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1284", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10566106956, - "lat": 52.0373688, - "lon": 1.1705080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1388", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10566106959, - "lat": 52.0326395, - "lon": 1.1808542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP3 1290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10566120398, - "lat": 51.5494928, - "lon": 0.1034172, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 32D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "streetside;survey" - } -}, -{ - "type": "node", - "id": 10566144632, - "lat": 51.5450411, - "lon": 0.1134150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM8 224D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10566144633, - "lat": 51.5474299, - "lon": 0.1188278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10566144634, - "lat": 51.5464738, - "lon": 0.1245628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM8 247D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing;survey" - } -}, -{ - "type": "node", - "id": 10566144635, - "lat": 51.5489160, - "lon": 0.1225672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10566144636, - "lat": 51.5499739, - "lon": 0.1165601, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10566177544, - "lat": 52.0621739, - "lon": 1.2278398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP5 1361" - } -}, -{ - "type": "node", - "id": 10566177545, - "lat": 52.0649731, - "lon": 1.2347134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 1208", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10566177546, - "lat": 52.0601519, - "lon": 1.2463705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 1453" - } -}, -{ - "type": "node", - "id": 10566177547, - "lat": 52.0610821, - "lon": 1.2555352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 8233" - } -}, -{ - "type": "node", - "id": 10566177548, - "lat": 52.0676390, - "lon": 1.2592230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP5 1319" - } -}, -{ - "type": "node", - "id": 10566177549, - "lat": 52.0620836, - "lon": 1.2784226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP5 1362", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10566177550, - "lat": 52.0640657, - "lon": 1.2810943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 1424", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10566177551, - "lat": 52.0627131, - "lon": 1.2840428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "ref": "IP5 1402" - } -}, -{ - "type": "node", - "id": 10566177552, - "lat": 52.0725418, - "lon": 1.2128452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "IP5 1389", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10567165538, - "lat": 53.0608815, - "lon": -2.1765924, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10567686654, - "lat": 51.0970087, - "lon": -0.2626265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH12 201", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10567686655, - "lat": 51.0967901, - "lon": -0.2407306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10567912383, - "lat": 56.4353177, - "lon": -3.3743572, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-06-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH2 222D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10568156902, - "lat": 51.5457039, - "lon": 0.0998893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG11 37D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10568244372, - "lat": 52.4826585, - "lon": 1.7479717, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3214", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10568244373, - "lat": 52.4864546, - "lon": 1.7445893, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10568244374, - "lat": 52.4864198, - "lon": 1.7505277, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3236", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10568244375, - "lat": 52.4867981, - "lon": 1.7578653, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10568244376, - "lat": 52.4835795, - "lon": 1.7523907, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10568309709, - "lat": 52.4828322, - "lon": 1.7561181, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3205", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10568309711, - "lat": 52.4786707, - "lon": 1.7571636, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3206", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10568981728, - "lat": 52.0232493, - "lon": 1.2845510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1224" - } -}, -{ - "type": "node", - "id": 10568981729, - "lat": 51.9961171, - "lon": 1.2708576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP10 8204" - } -}, -{ - "type": "node", - "id": 10568981732, - "lat": 52.0137588, - "lon": 1.3135756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP10 1305" - } -}, -{ - "type": "node", - "id": 10568981733, - "lat": 52.0091215, - "lon": 1.3171566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP10 1149" - } -}, -{ - "type": "node", - "id": 10568981734, - "lat": 52.0052364, - "lon": 1.3222987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP10 1215" - } -}, -{ - "type": "node", - "id": 10568981735, - "lat": 52.0020851, - "lon": 1.3405928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP10 1202", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10568981900, - "lat": 57.0576400, - "lon": -6.5006887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH44 125" - } -}, -{ - "type": "node", - "id": 10569206641, - "lat": 54.5329116, - "lon": -2.6783509, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10569338296, - "lat": 50.7716787, - "lon": -3.9467049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10570390366, - "lat": 51.5344764, - "lon": 0.1188366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary:image": "881570873003959", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM8 118D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "bing;mapillary" - } -}, -{ - "type": "node", - "id": 10570391928, - "lat": 51.5425554, - "lon": 0.1268702, - "tags": { - "amenity": "post_box", - "note": "different position than Royal Mail provided position", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10570545689, - "lat": 53.5775397, - "lon": -1.4786201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 3D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570641075, - "lat": 53.5739832, - "lon": -1.4697931, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10570654284, - "lat": 53.5712211, - "lon": -1.4663550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570663108, - "lat": 53.5795110, - "lon": -1.4800177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "post_box:type": "pillar", - "ref": "S71 188", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570665693, - "lat": 53.5701360, - "lon": -1.4697416, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 288D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570666401, - "lat": 53.5811239, - "lon": -1.4841397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 132D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10570666455, - "lat": 53.5854760, - "lon": -1.4840399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570690326, - "lat": 53.5833221, - "lon": -1.4795915, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 231D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570690762, - "lat": 53.5885800, - "lon": -1.5009271, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 9D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570696699, - "lat": 53.5860304, - "lon": -1.5012021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 666D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570704457, - "lat": 53.5911752, - "lon": -1.5125856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 194D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570715525, - "lat": 53.5835927, - "lon": -1.5114708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 153D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570738164, - "lat": 53.5880241, - "lon": -1.5095638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 245D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570747574, - "lat": 53.5855116, - "lon": -1.5034242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "post_box:type": "pillar", - "ref": "S75 159", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10570749208, - "lat": 51.5561098, - "lon": 0.1227635, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570753343, - "lat": 51.0913827, - "lon": -0.3101183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH12 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570753347, - "lat": 51.1361900, - "lon": -0.2638761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH12 88D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10570762814, - "lat": 51.5546599, - "lon": 0.1175101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570766761, - "lat": 51.5551045, - "lon": 0.1340530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570767112, - "lat": 51.5531862, - "lon": 0.1203956, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570794644, - "lat": 51.5556051, - "lon": 0.1291755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570807108, - "lat": 51.5531163, - "lon": 0.1250222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570818480, - "lat": 51.5556708, - "lon": 0.1397466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570827130, - "lat": 51.5590497, - "lon": 0.1423196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570848848, - "lat": 51.5610202, - "lon": 0.1357107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10570861212, - "lat": 53.5962618, - "lon": -1.5164174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 265D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570868269, - "lat": 53.5952277, - "lon": -1.5292933, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570877667, - "lat": 53.5787775, - "lon": -1.5286653, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00", - "post_box:type": "lamp", - "ref": "S75 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570879877, - "lat": 53.5734746, - "lon": -1.5264952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10570891486, - "lat": 53.5791967, - "lon": -1.5341565, - "tags": { - "amenity": "post_box", - "collection_plate": "missing", - "post_box:type": "lamp", - "ref": "S75 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570895834, - "lat": 53.5662953, - "lon": -1.5174950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 191D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570903119, - "lat": 53.5700622, - "lon": -1.5223141, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570910183, - "lat": 53.5648179, - "lon": -1.5006819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 276D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570980544, - "lat": 52.0030721, - "lon": 1.1760459, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1238" - } -}, -{ - "type": "node", - "id": 10570980545, - "lat": 52.0007085, - "lon": 1.1853047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP9 1218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570980547, - "lat": 51.9577445, - "lon": 1.2686207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP3 1380", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10570980549, - "lat": 51.9901414, - "lon": 1.0742972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP9 1205" - } -}, -{ - "type": "node", - "id": 10571372085, - "lat": 54.9110850, - "lon": -4.4646819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 39", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10571427668, - "lat": 52.5056449, - "lon": 1.7323873, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3251", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571427669, - "lat": 52.5097410, - "lon": 1.7381959, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3254", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571427670, - "lat": 52.5137196, - "lon": 1.7428476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3235", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571427671, - "lat": 52.5149377, - "lon": 1.7471488, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3256", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571459765, - "lat": 52.5168037, - "lon": 1.7238725, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571530186, - "lat": 52.4933230, - "lon": 1.7374629, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571530187, - "lat": 52.4956636, - "lon": 1.7338002, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3242", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571530188, - "lat": 52.5006259, - "lon": 1.7300890, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571530189, - "lat": 52.4962539, - "lon": 1.7464649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571530190, - "lat": 52.4958278, - "lon": 1.7511136, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3243", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10571530191, - "lat": 52.4918517, - "lon": 1.7481634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR32 3232", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10571833045, - "lat": 54.9441214, - "lon": -4.8523714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG8 34", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10571865813, - "lat": 56.3320206, - "lon": -3.8328699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH5 29", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10571965616, - "lat": 54.8179740, - "lon": -4.4853069, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10571994134, - "lat": 54.5099801, - "lon": -1.3546949, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10571994135, - "lat": 54.5099688, - "lon": -1.3546860, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10572045119, - "lat": 51.4421723, - "lon": 0.1509364, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 10572884514, - "lat": 52.9038131, - "lon": 0.4726825, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10572981820, - "lat": 51.4010041, - "lon": -2.5267355, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10573136913, - "lat": 50.7407760, - "lon": -4.6083287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573142411, - "lat": 50.7442612, - "lon": -4.6251530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247539, - "lat": 50.6515574, - "lon": -2.4648441, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 91D", - "ref:GB:uprn": "10015279177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247540, - "lat": 50.6588852, - "lon": -2.4682244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 115D", - "ref:GB:uprn": "10015548823", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247541, - "lat": 50.6628934, - "lon": -2.4695963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 117D", - "ref:GB:uprn": "10015282596", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247545, - "lat": 50.6541193, - "lon": -2.4696158, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 79", - "ref:GB:uprn": "10015371854", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247546, - "lat": 50.6491973, - "lon": -2.4714115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT3 81D", - "ref:GB:uprn": "10015438161", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247547, - "lat": 50.6474477, - "lon": -2.4671005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 48D", - "ref:GB:uprn": "10015355060", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247548, - "lat": 50.6442357, - "lon": -2.4711567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT3 103D", - "ref:GB:uprn": "10015441623", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573247549, - "lat": 50.6372390, - "lon": -2.4646155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 138D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-21" - } -}, -{ - "type": "node", - "id": 10573358327, - "lat": 50.6647937, - "lon": -2.4794471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT3 70D", - "ref:GB:uprn": "10015425252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-05" - } -}, -{ - "type": "node", - "id": 10573658183, - "lat": 54.7921453, - "lon": -4.4332519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10574219017, - "lat": 53.2590666, - "lon": -2.1614453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "ref": "SK11 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575122462, - "lat": 50.7306248, - "lon": -4.5776192, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30, Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575122463, - "lat": 50.6952140, - "lon": -4.5217960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 84D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575122464, - "lat": 50.6904617, - "lon": -4.5174613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575122465, - "lat": 50.6699109, - "lon": -4.5164707, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL15 51D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10575122466, - "lat": 50.6628860, - "lon": -4.5029275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10575122467, - "lat": 50.6622130, - "lon": -4.4711266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 45D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575122468, - "lat": 50.6536985, - "lon": -4.4457902, - "tags": { - "amenity": "post_box", - "mapillary": "3965119313627799", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2023-02-05", - "survey:date": "2023-02-05" - } -}, -{ - "type": "node", - "id": 10575451496, - "lat": 52.9548682, - "lon": 0.9873682, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575702011, - "lat": 54.5328259, - "lon": -1.6533045, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10575740556, - "lat": 54.8429337, - "lon": -1.4628266, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10577954685, - "lat": 50.9145800, - "lon": -3.5842274, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10578795327, - "lat": 54.3775295, - "lon": -6.0168373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10578798685, - "lat": 54.2978895, - "lon": -5.9269213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10580298145, - "lat": 51.5613735, - "lon": 0.1402447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10580362242, - "lat": 51.5604889, - "lon": 0.0965673, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10581197798, - "lat": 51.5659839, - "lon": 0.1062968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IG3 67" - } -}, -{ - "type": "node", - "id": 10581246910, - "lat": 51.5660672, - "lon": 0.1104113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IG3 24" - } -}, -{ - "type": "node", - "id": 10581783376, - "lat": 51.5630824, - "lon": 0.1106604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IG3 50", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10582254481, - "lat": 52.5215894, - "lon": 1.6493981, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582254482, - "lat": 52.5164506, - "lon": 1.6598335, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 10:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3245", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10582254483, - "lat": 52.5137088, - "lon": 1.6786296, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582310161, - "lat": 52.5320595, - "lon": 1.6914163, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-05-24", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3240D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10582310162, - "lat": 52.5390853, - "lon": 1.6896116, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3257", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10582310163, - "lat": 52.5371263, - "lon": 1.7042068, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3258", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582330052, - "lat": 51.5623701, - "lon": 0.0681583, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10582375720, - "lat": 52.5166693, - "lon": 1.7072053, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR32 3230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582375721, - "lat": 52.5191500, - "lon": 1.7111469, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3247", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582375722, - "lat": 52.5203683, - "lon": 1.6988542, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3248", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582375723, - "lat": 52.5119337, - "lon": 1.7183396, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3249", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582605865, - "lat": 53.5317225, - "lon": -1.4577715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 30D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582650526, - "lat": 53.5473923, - "lon": -1.5062735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S70 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582651183, - "lat": 53.5348801, - "lon": -1.4627604, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582658235, - "lat": 53.5474359, - "lon": -1.4900200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "S70 85", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582666265, - "lat": 53.5465252, - "lon": -1.4513211, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582666891, - "lat": 53.5395122, - "lon": -1.4671877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 167D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10582687438, - "lat": 53.5393185, - "lon": -1.4593299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 246D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10583773851, - "lat": 51.5612359, - "lon": 0.0756480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10584356579, - "lat": 54.8721852, - "lon": -1.6780825, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10584604889, - "lat": 50.2721007, - "lon": -5.0617237, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR1 25D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10584606059, - "lat": 52.9543100, - "lon": -1.8360595, - "tags": { - "amenity": "post_box", - "drive_through": "no" - } -}, -{ - "type": "node", - "id": 10584656340, - "lat": 51.5796519, - "lon": 0.0730654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10584656379, - "lat": 51.5823623, - "lon": 0.0753966, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10585410785, - "lat": 51.4980121, - "lon": 0.3297467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM16 104" - } -}, -{ - "type": "node", - "id": 10585448511, - "lat": 54.5866345, - "lon": -1.0835997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "TS10 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10586265625, - "lat": 51.5544421, - "lon": 0.0725906, - "tags": { - "amenity": "post_box", - "fixme": "check if still here or moved nearby - seems to be gone from Mapillary and Bing streetside imagery, but visible on recent aerial imagery still", - "mapillary": "660374742493116", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10586265638, - "lat": 51.5477067, - "lon": 0.0763630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10586265650, - "lat": 51.5510274, - "lon": 0.0743808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 46", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10586304933, - "lat": 51.5521477, - "lon": 0.0815650, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 43D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10586306237, - "lat": 51.5569853, - "lon": 0.0772118, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 19D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 10586324238, - "lat": 51.5558825, - "lon": 0.0858598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10586324239, - "lat": 51.5583307, - "lon": 0.0892891, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10586324241, - "lat": 51.5578453, - "lon": 0.0825686, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 58D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 10586798969, - "lat": 56.4041241, - "lon": -3.4179490, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2021-04-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "post_box has moved further up Dupplin Road, It was attached to a street light, It is now a Pier mounted Lamp (LB3426)", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 13D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10587054610, - "lat": 51.7240601, - "lon": -1.5511264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10587910831, - "lat": 53.5450773, - "lon": -2.0947775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-09-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL4 79D" - } -}, -{ - "type": "node", - "id": 10587961765, - "lat": 50.8462870, - "lon": -2.6521448, - "tags": { - "amenity": "post_box", - "ref:GB:uprn": "10015332838" - } -}, -{ - "type": "node", - "id": 10588805382, - "lat": 51.8730968, - "lon": -4.9693234, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10588882779, - "lat": 53.4970867, - "lon": -1.4799765, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10588912251, - "lat": 53.5367074, - "lon": -1.4227677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10588926903, - "lat": 53.5411381, - "lon": -1.4459364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S70 200D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10588954684, - "lat": 53.4971257, - "lon": -1.4940638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10588963111, - "lat": 53.2617021, - "lon": -2.4991642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10589076036, - "lat": 53.2562477, - "lon": -2.5127526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW9 9D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10589103716, - "lat": 54.1801720, - "lon": -6.4114802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10589205408, - "lat": 50.4312042, - "lon": -4.2489637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL12 451", - "royal_cypher": "VR", - "survey:date": "2023-01-28" - } -}, -{ - "type": "node", - "id": 10589208883, - "lat": 51.5496299, - "lon": 0.1362518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 185D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10589291755, - "lat": 51.5522744, - "lon": 0.1426875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "appears to have been moved here after 2011", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 186D", - "royal_cypher": "GR", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10589319086, - "lat": 51.5453804, - "lon": 0.1413908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10589343239, - "lat": 51.5930849, - "lon": -0.1610593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N2 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10589343240, - "lat": 51.5910477, - "lon": -0.1602513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N2 7D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10589428182, - "lat": 52.2600310, - "lon": -0.2252890, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10589429077, - "lat": 52.2799435, - "lon": -0.2115172, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10589444602, - "lat": 52.2645545, - "lon": -0.2653505, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10589458968, - "lat": 51.5417864, - "lon": 0.1414172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10589458969, - "lat": 51.5394884, - "lon": 0.1376102, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM9 154D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10589999351, - "lat": 51.9861051, - "lon": 0.7342839, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10590034219, - "lat": 54.3640464, - "lon": -5.9858793, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-01-28", - "collection_times": "Mo-Fr 10:00; Sa 09:15", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10590098353, - "lat": 51.1114973, - "lon": -2.5329627, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10590292352, - "lat": 51.4801795, - "lon": -0.6137178, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL4 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10590324018, - "lat": 53.5003820, - "lon": -2.3796962, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10591393108, - "lat": 51.4838229, - "lon": -2.7927346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS20 218D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10591510389, - "lat": 51.5734806, - "lon": 0.0475464, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 120D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10591510390, - "lat": 51.5742892, - "lon": 0.0595829, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10591510391, - "lat": 51.5737197, - "lon": 0.0537670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 101D", - "royal_cypher": "GR", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10591510392, - "lat": 51.5699643, - "lon": 0.0570978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 89D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10591510393, - "lat": 51.5700486, - "lon": 0.0606725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10591510394, - "lat": 51.5701348, - "lon": 0.0645046, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10591510395, - "lat": 51.5671255, - "lon": 0.0607923, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 37D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 10591510396, - "lat": 51.5774592, - "lon": 0.0597595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10592028955, - "lat": 50.6311830, - "lon": -2.4928809, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT3 119D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-01-29" - } -}, -{ - "type": "node", - "id": 10592327491, - "lat": 51.5855525, - "lon": -3.6142577, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10592336361, - "lat": 51.6058350, - "lon": -3.6554518, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10592573769, - "lat": 51.4773601, - "lon": -2.8092768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS20 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10592690269, - "lat": 53.0319728, - "lon": -0.7361581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "NG23 30D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10593777382, - "lat": 54.3470253, - "lon": -6.6356666, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10594194707, - "lat": 51.5617575, - "lon": 0.2669728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10594529415, - "lat": 51.5999772, - "lon": 0.2218864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10594782045, - "lat": 51.4880660, - "lon": 0.3722885, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10594833785, - "lat": 54.4147517, - "lon": -6.9759822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "BT69 41", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10594833786, - "lat": 54.4171154, - "lon": -6.9795914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT69 43" - } -}, -{ - "type": "node", - "id": 10594833787, - "lat": 54.4163242, - "lon": -6.9724780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BT69 54" - } -}, -{ - "type": "node", - "id": 10594840817, - "lat": 54.3972613, - "lon": -6.9287086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BT69 123" - } -}, -{ - "type": "node", - "id": 10594840818, - "lat": 54.4350522, - "lon": -6.9306742, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT69 22" - } -}, -{ - "type": "node", - "id": 10595011465, - "lat": 54.3511021, - "lon": -6.8374642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "BT68 86" - } -}, -{ - "type": "node", - "id": 10595011474, - "lat": 54.3891528, - "lon": -6.8699739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT68 128" - } -}, -{ - "type": "node", - "id": 10595165858, - "lat": 52.0522146, - "lon": 0.5766292, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10595178548, - "lat": 54.4170046, - "lon": -7.1714842, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BT76 53", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10595178554, - "lat": 54.4026690, - "lon": -7.2055283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "BT76 65" - } -}, -{ - "type": "node", - "id": 10595178555, - "lat": 54.4358972, - "lon": -7.1907550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "BT76 63" - } -}, -{ - "type": "node", - "id": 10595178556, - "lat": 54.4447123, - "lon": -7.2319115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "BT76 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10595178557, - "lat": 54.4033254, - "lon": -7.1808438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BT76 37" - } -}, -{ - "type": "node", - "id": 10595184537, - "lat": 52.0739767, - "lon": 1.0988408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1160" - } -}, -{ - "type": "node", - "id": 10595184538, - "lat": 52.0784137, - "lon": 1.0992217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "IP8 1408" - } -}, -{ - "type": "node", - "id": 10595184543, - "lat": 52.0765271, - "lon": 1.1066624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1086" - } -}, -{ - "type": "node", - "id": 10595184547, - "lat": 52.0627054, - "lon": 1.0954485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP8 1229" - } -}, -{ - "type": "node", - "id": 10595184548, - "lat": 52.0606693, - "lon": 1.1004630, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP8 1387" - } -}, -{ - "type": "node", - "id": 10595184549, - "lat": 52.0966055, - "lon": 1.0446552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1210" - } -}, -{ - "type": "node", - "id": 10595184551, - "lat": 52.0393627, - "lon": 1.1027079, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-07-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53844145620", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1445" - } -}, -{ - "type": "node", - "id": 10595184552, - "lat": 52.0383011, - "lon": 1.1087164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1427" - } -}, -{ - "type": "node", - "id": 10595184554, - "lat": 52.0274362, - "lon": 1.1067763, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1042", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10595206871, - "lat": 51.6927932, - "lon": 0.3190131, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10595208380, - "lat": 52.0695584, - "lon": 0.6757099, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10595221176, - "lat": 51.5924395, - "lon": 0.2835603, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596549477, - "lat": 53.5536577, - "lon": -1.5101450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S75 184D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596561096, - "lat": 53.5571568, - "lon": -1.5104184, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 7D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596566257, - "lat": 53.5465208, - "lon": -1.5184773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596575813, - "lat": 53.5370557, - "lon": -1.5197660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 193D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596586501, - "lat": 53.5369129, - "lon": -1.5126572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 90D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596609543, - "lat": 53.5303368, - "lon": -1.5102160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "post_box:type": "wall", - "ref": "S75 208", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10596636705, - "lat": 53.5221023, - "lon": -1.5330215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10596980927, - "lat": 53.5576623, - "lon": -1.5080403, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S75 250", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10597219670, - "lat": 51.7784830, - "lon": 0.4166476, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10597296107, - "lat": 51.7900355, - "lon": 0.4756168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10597324097, - "lat": 51.6832254, - "lon": 0.1479778, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10597374206, - "lat": 51.7825011, - "lon": 0.1487918, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10597399312, - "lat": 51.7732746, - "lon": 0.7962252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM9 241", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10597407459, - "lat": 52.7690454, - "lon": 0.4294200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE30 27" - } -}, -{ - "type": "node", - "id": 10597415887, - "lat": 51.7457142, - "lon": 0.7570509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM9 136", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10597416461, - "lat": 51.5824875, - "lon": 0.7068568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS4 344;SS4 1344" - } -}, -{ - "type": "node", - "id": 10597441848, - "lat": 51.5860725, - "lon": 0.6056522, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10598711825, - "lat": 54.4485377, - "lon": -6.4201002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "website": "https://www.royalmail.com/services-near-you/postbox/carne-road-bt63-5wg-bt63-5pw/0000BT6339" - } -}, -{ - "type": "node", - "id": 10599587951, - "lat": 56.4667998, - "lon": -3.2043902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:15; Sa 10:15", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH14 186", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10599724918, - "lat": 52.0048109, - "lon": -4.3972735, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10599733231, - "lat": 52.0037780, - "lon": -4.4058999, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10599992811, - "lat": 56.4798283, - "lon": -2.9659662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 197D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10600225851, - "lat": 51.9658159, - "lon": 1.3588480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1092", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10600225852, - "lat": 51.9678039, - "lon": 1.3559910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1302", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10600225871, - "lat": 51.9759076, - "lon": 1.3737096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1019" - } -}, -{ - "type": "node", - "id": 10600225879, - "lat": 51.9475378, - "lon": 1.3281873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 8143" - } -}, -{ - "type": "node", - "id": 10600225881, - "lat": 51.9486544, - "lon": 1.3326500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1100" - } -}, -{ - "type": "node", - "id": 10600225882, - "lat": 51.9604956, - "lon": 1.3129318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP11 1407", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351717, - "lat": 52.4364780, - "lon": 1.6978527, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR33 3332", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10601351718, - "lat": 52.4217999, - "lon": 1.6967876, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3333", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351719, - "lat": 52.4238562, - "lon": 1.6672384, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3334", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351720, - "lat": 52.4200241, - "lon": 1.7088934, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR33 3325", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10601351724, - "lat": 52.4186305, - "lon": 1.7163417, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3328", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351725, - "lat": 52.4203624, - "lon": 1.7176676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3323", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351726, - "lat": 52.4197102, - "lon": 1.7270818, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR33 3326", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351727, - "lat": 52.4143549, - "lon": 1.7240515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3330", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351728, - "lat": 52.4079049, - "lon": 1.7265887, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3327", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351729, - "lat": 52.4293297, - "lon": 1.7190774, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR33 3322", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601351730, - "lat": 52.4384528, - "lon": 1.7254109, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR33 3350", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10601455484, - "lat": 52.0388089, - "lon": 1.1166456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 1383", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601455485, - "lat": 52.0413988, - "lon": 1.1163424, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-12-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1116" - } -}, -{ - "type": "node", - "id": 10601455486, - "lat": 52.0431445, - "lon": 1.1158615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP2 8147" - } -}, -{ - "type": "node", - "id": 10601455487, - "lat": 52.0409972, - "lon": 1.1097832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP2 1130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601455488, - "lat": 52.0443549, - "lon": 1.1173853, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-12-16", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53789732528", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1261", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10601455492, - "lat": 52.0460289, - "lon": 1.1127176, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53906072335", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP2 1376D" - } -}, -{ - "type": "node", - "id": 10601455493, - "lat": 52.0458601, - "lon": 1.1228192, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-08-12", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "image": "https://www.flickr.com/photos/200873507@N03/53789732468/", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1351", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10601455494, - "lat": 52.0496421, - "lon": 1.1194756, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53905981119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1341D" - } -}, -{ - "type": "node", - "id": 10601455495, - "lat": 52.0498770, - "lon": 1.1285877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1345" - } -}, -{ - "type": "node", - "id": 10601473606, - "lat": 52.0567228, - "lon": 1.1193081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP2 1110", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10601473611, - "lat": 52.0568401, - "lon": 1.1276097, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53906072275", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1375D" - } -}, -{ - "type": "node", - "id": 10601473612, - "lat": 52.0585503, - "lon": 1.1295935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP2 1050" - } -}, -{ - "type": "node", - "id": 10601473614, - "lat": 52.0602322, - "lon": 1.1289604, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "image": "https://www.flickr.com/photos/200873507@N03/53806980529", - "note": "Franked mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter;parcel", - "ref": "IP2 8173P" - } -}, -{ - "type": "node", - "id": 10601496404, - "lat": 55.9196171, - "lon": -4.3324993, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:25; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G61 514", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10601796842, - "lat": 56.4641394, - "lon": -3.0403051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:15", - "level": "7", - "manufacturer": "Broadwater Mouldings Limited", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:material": "plastic", - "post_box:type": "pillar", - "ref": "DD2 22", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10601973021, - "lat": 54.6191173, - "lon": -1.7599622, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5826842" - } -}, -{ - "type": "node", - "id": 10602401046, - "lat": 51.5861247, - "lon": 0.0547936, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10602401181, - "lat": 51.5810608, - "lon": 0.0588747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10602431169, - "lat": 51.5970654, - "lon": 0.0668996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10602825023, - "lat": 51.5916611, - "lon": 0.0637200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10604146985, - "lat": 51.5611580, - "lon": 0.0730011, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 10D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10604163811, - "lat": 51.5593114, - "lon": 0.0768312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IG1 2", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10604198329, - "lat": 51.1796264, - "lon": -2.1912167, - "tags": { - "amenity": "post_box", - "check_date": "2022-09-10", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "BA12 98", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10604247533, - "lat": 51.5609980, - "lon": 0.0829287, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10604296342, - "lat": 51.5522697, - "lon": 0.0934894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG3 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10604296343, - "lat": 51.5544560, - "lon": 0.0965189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10604296344, - "lat": 51.5584749, - "lon": 0.1094815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10604599777, - "lat": 55.9150497, - "lon": -4.3214316, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 867", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10604914393, - "lat": 51.5776325, - "lon": 0.0991054, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10605173503, - "lat": 52.0592890, - "lon": 1.1616455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1144" - } -}, -{ - "type": "node", - "id": 10605296718, - "lat": 51.8554109, - "lon": 0.1944938, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10605326379, - "lat": 51.5871619, - "lon": 0.0695818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10605845889, - "lat": 51.6050753, - "lon": 0.2351160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10606302940, - "lat": 53.4761556, - "lon": -2.1133906, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "OL7 4" - } -}, -{ - "type": "node", - "id": 10606302941, - "lat": 53.4809765, - "lon": -2.1135858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "OL7 44", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10606302942, - "lat": 53.4836610, - "lon": -2.1088227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "OL7 9", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10606302943, - "lat": 53.4821411, - "lon": -2.1064194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OL7 29" - } -}, -{ - "type": "node", - "id": 10606302946, - "lat": 53.4823128, - "lon": -2.1035544, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OL7 23" - } -}, -{ - "type": "node", - "id": 10606302952, - "lat": 53.4944645, - "lon": -2.1054719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OL7 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606302953, - "lat": 53.4936887, - "lon": -2.1005778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OL7 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606302954, - "lat": 53.4984477, - "lon": -2.1031858, - "tags": { - "amenity": "post_box", - "note": "Very old looking post box embedded in the wall of the Woodman Inn", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "OL7 18" - } -}, -{ - "type": "node", - "id": 10606302956, - "lat": 53.5001902, - "lon": -2.0981820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OL7 109", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606302958, - "lat": 53.5019039, - "lon": -2.1000132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OL7 158", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606302960, - "lat": 53.5008016, - "lon": -2.1044445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "OL7 37", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606302970, - "lat": 53.5001331, - "lon": -2.1110330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OL7 19", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606302976, - "lat": 53.4969603, - "lon": -2.1089650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "OL7 153" - } -}, -{ - "type": "node", - "id": 10606333424, - "lat": 51.5541400, - "lon": 0.0783283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG1 40D", - "royal_cypher": "GR", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10606345566, - "lat": 51.5831548, - "lon": 0.1013101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10606405995, - "lat": 51.5899054, - "lon": 0.0862232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10606519088, - "lat": 51.5841388, - "lon": 0.0849805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10606539723, - "lat": 51.5802406, - "lon": 0.0809454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10606550234, - "lat": 51.5857631, - "lon": 0.0735310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10606566344, - "lat": 51.5909923, - "lon": 0.0754983, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10606569880, - "lat": 51.5964689, - "lon": 0.0782144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10606579013, - "lat": 51.5951991, - "lon": 0.0758904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10606607092, - "lat": 51.6075698, - "lon": 0.1206307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10606607093, - "lat": 51.6081291, - "lon": 0.1218623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "source": "bing;streetside" - } -}, -{ - "type": "node", - "id": 10606784722, - "lat": 51.6207033, - "lon": -0.1060868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10606956749, - "lat": 51.7931018, - "lon": -4.2595752, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606959585, - "lat": 51.7615744, - "lon": -4.2513658, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10606975863, - "lat": 51.7679697, - "lon": -4.3688003, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10607021539, - "lat": 51.7711877, - "lon": -4.3921929, - "tags": { - "addr:city": "Caerfyrddin", - "addr:city:cy": "Caerfyrddin", - "addr:city:en": "Carmarthen", - "addr:country": "GB", - "addr:suburb": "Llansteffan", - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607027220, - "lat": 51.7691996, - "lon": -4.3877738, - "tags": { - "addr:city": "Caerfyrddin", - "addr:city:cy": "Caerfyrddin", - "addr:city:en": "Carmarthen", - "addr:country": "GB", - "addr:suburb": "Llansteffan", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607059700, - "lat": 51.9377006, - "lon": -4.3017262, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607067060, - "lat": 51.8931801, - "lon": -4.5760422, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10607144228, - "lat": 52.0141144, - "lon": -4.4222627, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607153633, - "lat": 51.9430710, - "lon": -4.3077217, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10607187862, - "lat": 51.9556745, - "lon": -3.7879871, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10607191396, - "lat": 55.5220246, - "lon": -4.3882316, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10607216388, - "lat": 52.0067742, - "lon": -3.7043036, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10607370161, - "lat": 52.0161702, - "lon": -4.1197128, - "tags": { - "amenity": "post_box", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607393219, - "lat": 52.0520108, - "lon": -3.7882665, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10607396575, - "lat": 52.0306349, - "lon": -4.0756864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607421719, - "lat": 52.0825609, - "lon": -3.9903843, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607707166, - "lat": 53.5866986, - "lon": -1.5402265, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607728750, - "lat": 53.5588243, - "lon": -1.5305106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 109D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607750306, - "lat": 53.5642061, - "lon": -1.5321460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10607758426, - "lat": 53.5846273, - "lon": -1.5383570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 145D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10607766727, - "lat": 53.5825518, - "lon": -1.5416299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S75 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10608359889, - "lat": 51.9666088, - "lon": -3.8997006, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10608472680, - "lat": 52.1237697, - "lon": 0.9944857, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8086", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10608518565, - "lat": 52.0971104, - "lon": 1.0729978, - "tags": { - "amenity": "post_box", - "operator": "Openreach", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1027", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10608613019, - "lat": 51.8784260, - "lon": 0.0847295, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10608851672, - "lat": 51.4743814, - "lon": -2.8049791, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS20 348D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10608870814, - "lat": 50.7324842, - "lon": -4.5977020, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-05" - } -}, -{ - "type": "node", - "id": 10609171305, - "lat": 50.7014408, - "lon": -4.4734035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "PL15 52D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-02-05" - } -}, -{ - "type": "node", - "id": 10609171405, - "lat": 50.6916518, - "lon": -4.4557155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL15 17D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-02-05" - } -}, -{ - "type": "node", - "id": 10609171505, - "lat": 50.6845054, - "lon": -4.4027785, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "858633222621931", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 37D", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 10609233130, - "lat": 51.8620762, - "lon": -2.1891587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10610478903, - "lat": 53.9846276, - "lon": -1.8770225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BD23 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10610798969, - "lat": 50.6568828, - "lon": -4.6123600, - "tags": { - "amenity": "post_box", - "mapillary": "564421998356512", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10610798970, - "lat": 50.6520915, - "lon": -4.6293125, - "tags": { - "amenity": "post_box", - "mapillary": "453956380019089", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10611500382, - "lat": 52.9033155, - "lon": 0.6238027, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE31 160" - } -}, -{ - "type": "node", - "id": 10611500383, - "lat": 52.8988781, - "lon": 0.6339039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE31 52" - } -}, -{ - "type": "node", - "id": 10611615252, - "lat": 50.6439544, - "lon": -4.3678871, - "tags": { - "amenity": "post_box", - "mapillary": "212111041372389", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10611721353, - "lat": 56.4847738, - "lon": -3.3725200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 168", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10611910690, - "lat": 52.9572289, - "lon": 0.5371068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 264" - } -}, -{ - "type": "node", - "id": 10611933786, - "lat": 52.3761795, - "lon": 1.7032275, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR34 3422", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10611959799, - "lat": 52.4000215, - "lon": 1.6906649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR34 3426", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10612072345, - "lat": 56.0063545, - "lon": -3.8883944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK4 218D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612083962, - "lat": 56.0085252, - "lon": -3.8821837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK4 219D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612093756, - "lat": 52.7982315, - "lon": 0.5527129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 44" - } -}, -{ - "type": "node", - "id": 10612093757, - "lat": 52.8001731, - "lon": 0.5443782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE31 206", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10612109398, - "lat": 56.0019420, - "lon": -3.8923171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK4 83D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612133571, - "lat": 56.0012813, - "lon": -3.8883749, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK4 123", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612138345, - "lat": 52.8623031, - "lon": 0.6275911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE31 72" - } -}, -{ - "type": "node", - "id": 10612517296, - "lat": 55.9959607, - "lon": -3.8938352, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK4 164D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10612517297, - "lat": 56.0002307, - "lon": -3.8795827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK4 226D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612528503, - "lat": 56.0037781, - "lon": -3.8769065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK4 174D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612541709, - "lat": 55.9930933, - "lon": -3.8937206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK4 223", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612748901, - "lat": 55.9875604, - "lon": -3.8912724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK4 277D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612793703, - "lat": 55.9965682, - "lon": -3.8204078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 29D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10612796282, - "lat": 55.9972654, - "lon": -3.8286240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK1 2", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10613062639, - "lat": 51.0957678, - "lon": -2.3299253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10613231906, - "lat": 53.8474565, - "lon": -0.4392397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "HU17 237" - } -}, -{ - "type": "node", - "id": 10616145215, - "lat": 50.4985818, - "lon": -4.4559198, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10616966146, - "lat": 51.1196937, - "lon": -0.8270130, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10617731772, - "lat": 53.4911470, - "lon": -2.5100497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10620358989, - "lat": 57.2411118, - "lon": -2.8932222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "AB33 429", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10621224499, - "lat": 53.5804068, - "lon": -1.4720552, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621307990, - "lat": 53.5902266, - "lon": -1.4966348, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 240D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621365951, - "lat": 53.5828141, - "lon": -1.4705748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621398424, - "lat": 53.5782731, - "lon": -1.4644829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 230D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621401774, - "lat": 53.5871885, - "lon": -1.4503697, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621411805, - "lat": 53.5794620, - "lon": -1.4519648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 10:30", - "post_box:type": "parcel", - "ref": "S71 262P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10621430858, - "lat": 53.5824592, - "lon": -1.4458918, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 123D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621669583, - "lat": 53.5757512, - "lon": -1.4458825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 256D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621670027, - "lat": 53.5691027, - "lon": -1.4431861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621673656, - "lat": 53.5718204, - "lon": -1.4442489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621696823, - "lat": 53.5724122, - "lon": -1.4338335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10621735236, - "lat": 53.5642047, - "lon": -1.4343339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "S71 242D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10622271582, - "lat": 56.4502989, - "lon": -3.2043215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH14 184", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10622764710, - "lat": 56.4837891, - "lon": -3.3050493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 124", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10623051598, - "lat": 56.4766530, - "lon": -3.2926483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 11:15", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "PH2 34", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10623747075, - "lat": 56.4272504, - "lon": -3.2576220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 18", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10627478534, - "lat": 51.9794592, - "lon": 0.0462323, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10632465970, - "lat": 56.3267690, - "lon": -3.4968305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 200", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10632662052, - "lat": 50.3872439, - "lon": -3.8618860, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 15:45; Sa 11:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL21 714", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;streetlevel imagery;aerial imagery" - } -}, -{ - "type": "node", - "id": 10634963501, - "lat": 51.6371956, - "lon": -1.5060261, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10637153038, - "lat": 51.5593154, - "lon": 0.1271604, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10637153039, - "lat": 51.5616898, - "lon": 0.1288645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10637153040, - "lat": 51.5627433, - "lon": 0.1211850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10637153077, - "lat": 51.5645064, - "lon": 0.1259028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10637153086, - "lat": 51.5624326, - "lon": 0.1248597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10637153087, - "lat": 51.5588997, - "lon": 0.1211582, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10637159222, - "lat": 51.5587111, - "lon": 0.1309277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10637159223, - "lat": 51.5649513, - "lon": 0.1319011, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing" - } -}, -{ - "type": "node", - "id": 10642817171, - "lat": 56.4171622, - "lon": -3.2664898, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH2 46", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10642818373, - "lat": 56.4760893, - "lon": -3.3194930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 126D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10647259765, - "lat": 53.5596162, - "lon": -1.4475186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 83D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10647266562, - "lat": 53.5436451, - "lon": -1.4268674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S71 258D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10647283318, - "lat": 53.5535958, - "lon": -1.4568845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 105", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10647307924, - "lat": 53.5600304, - "lon": -1.4366054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "post_box:type": "pillar", - "ref": "S71 57", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10648708627, - "lat": 53.4540094, - "lon": -2.7348302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10649323993, - "lat": 52.4507529, - "lon": 1.5228908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR34 3453", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10649323997, - "lat": 52.2574335, - "lon": 1.3804793, - "tags": { - "amenity": "post_box", - "fixme": "Box number?", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10649348905, - "lat": 52.2969615, - "lon": 1.3384786, - "tags": { - "amenity": "post_box", - "fixme": "Box number?" - } -}, -{ - "type": "node", - "id": 10649348908, - "lat": 52.3303675, - "lon": 1.3406420, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7155", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10649348930, - "lat": 52.2599290, - "lon": 1.1020151, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8029", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10649427603, - "lat": 50.7019671, - "lon": -2.4437204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-11" - } -}, -{ - "type": "node", - "id": 10649427604, - "lat": 50.7033427, - "lon": -2.4526086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 209D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-11" - } -}, -{ - "type": "node", - "id": 10649458716, - "lat": 50.7043751, - "lon": -2.4457924, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 40D", - "ref:GB:uprn": "10015275558", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "survey:date": "2023-02-11" - } -}, -{ - "type": "node", - "id": 10649458717, - "lat": 50.7066908, - "lon": -2.4471885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DT1 32D", - "ref:GB:uprn": "10015428445", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-02-11" - } -}, -{ - "type": "node", - "id": 10651219167, - "lat": 53.5614888, - "lon": -2.8838161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "L39 72D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10651219168, - "lat": 53.5679645, - "lon": -2.8940268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "L39 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10651219169, - "lat": 53.5719302, - "lon": -2.8926983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "L39 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10651219170, - "lat": 53.5760763, - "lon": -2.8918875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "L39 101D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10651219171, - "lat": 53.5651133, - "lon": -2.8265007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "L40 26", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10651219172, - "lat": 53.5763424, - "lon": -2.8257559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:45; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "L40 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10651756889, - "lat": 50.8526308, - "lon": -1.1800637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:45", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10651796128, - "lat": 51.8956598, - "lon": -1.5253012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OX7 96", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10652010771, - "lat": 53.6071238, - "lon": -1.5440437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:15", - "post_box:type": "wall", - "ref": "S75 157", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10652053233, - "lat": 51.8072469, - "lon": 0.0532541, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10652354800, - "lat": 51.9933196, - "lon": 1.3126767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1397" - } -}, -{ - "type": "node", - "id": 10652354801, - "lat": 51.9910671, - "lon": 1.3083360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP11 1043", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10652356901, - "lat": 56.0280015, - "lon": -3.8167842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK5 108D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10652368906, - "lat": 51.9912393, - "lon": 1.3036435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1310" - } -}, -{ - "type": "node", - "id": 10652378576, - "lat": 51.9719339, - "lon": 1.3619397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP11 1394" - } -}, -{ - "type": "node", - "id": 10652378577, - "lat": 51.9690100, - "lon": 1.3666289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP11 1150" - } -}, -{ - "type": "node", - "id": 10652378590, - "lat": 51.9659074, - "lon": 1.3641802, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1313", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10652378591, - "lat": 51.9651049, - "lon": 1.3627156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP11 1156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10652454732, - "lat": 50.5205660, - "lon": -5.0174170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL28 203D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 10652454809, - "lat": 50.5264245, - "lon": -5.0219638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL28 136D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 10652610406, - "lat": 50.5279325, - "lon": -4.9993700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL28 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 10652743505, - "lat": 50.5223180, - "lon": -4.9891508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PL28 204D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 10652762203, - "lat": 51.9689482, - "lon": 1.3502484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1324", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10652762204, - "lat": 51.9705416, - "lon": 1.3460483, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1396", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10652790105, - "lat": 51.9687389, - "lon": 1.3439369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1052", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10652790106, - "lat": 51.9697964, - "lon": 1.3371333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1162", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10652790107, - "lat": 51.9738776, - "lon": 1.3350712, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP11 1178" - } -}, -{ - "type": "node", - "id": 10652790108, - "lat": 51.9794446, - "lon": 1.3175849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP11 1309", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10652806305, - "lat": 50.5113974, - "lon": -4.8540305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL27 206D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-02-12" - } -}, -{ - "type": "node", - "id": 10652928855, - "lat": 51.9688104, - "lon": 1.3300018, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1439" - } -}, -{ - "type": "node", - "id": 10652928856, - "lat": 51.9648311, - "lon": 1.3333504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1359" - } -}, -{ - "type": "node", - "id": 10652928857, - "lat": 51.9602245, - "lon": 1.3373930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1358", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10652928858, - "lat": 51.9576272, - "lon": 1.3421626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1372" - } -}, -{ - "type": "node", - "id": 10652928859, - "lat": 51.9665680, - "lon": 1.3271988, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP11 1435" - } -}, -{ - "type": "node", - "id": 10652928860, - "lat": 51.9618673, - "lon": 1.3252668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP11 1165" - } -}, -{ - "type": "node", - "id": 10652928861, - "lat": 51.9599929, - "lon": 1.3297631, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP11 1370", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10653065514, - "lat": 52.1563922, - "lon": 1.0461831, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1440" - } -}, -{ - "type": "node", - "id": 10653065515, - "lat": 52.1545227, - "lon": 1.0647547, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1393" - } -}, -{ - "type": "node", - "id": 10653065516, - "lat": 52.1497614, - "lon": 1.0564180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 8145" - } -}, -{ - "type": "node", - "id": 10653065517, - "lat": 52.1465177, - "lon": 1.0530456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1013" - } -}, -{ - "type": "node", - "id": 10653065518, - "lat": 52.1490923, - "lon": 1.0485253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1416" - } -}, -{ - "type": "node", - "id": 10653173114, - "lat": 52.5357669, - "lon": -1.4456220, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10653193468, - "lat": 52.5091792, - "lon": -1.4687212, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10653197525, - "lat": 52.5710514, - "lon": -1.6446917, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10653332403, - "lat": 51.0708460, - "lon": 0.6904380, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "TN30 335", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10654275938, - "lat": 50.5258129, - "lon": -4.9532926, - "tags": { - "amenity": "post_box", - "mapillary": "3198854173708902", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10655739778, - "lat": 51.5759600, - "lon": 0.1645097, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RM7 39D" - } -}, -{ - "type": "node", - "id": 10656433763, - "lat": 51.1946927, - "lon": -4.1384004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10656433872, - "lat": 51.1929169, - "lon": -4.1497777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10656467486, - "lat": 52.7207147, - "lon": 0.9307359, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR20 2033" - } -}, -{ - "type": "node", - "id": 10656473081, - "lat": 52.7074556, - "lon": 0.9793106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR20 2020" - } -}, -{ - "type": "node", - "id": 10657448227, - "lat": 51.9718530, - "lon": 1.3399361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP11 1227", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10657687386, - "lat": 52.1100484, - "lon": 1.3346089, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP12 6261" - } -}, -{ - "type": "node", - "id": 10657687387, - "lat": 52.1172421, - "lon": 1.3349538, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP12 8172" - } -}, -{ - "type": "node", - "id": 10657687390, - "lat": 52.1141118, - "lon": 1.3203587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IP12 6225", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10657714849, - "lat": 53.0235811, - "lon": -2.1766478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10658743091, - "lat": 53.5928604, - "lon": -1.4527339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 209", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10658831758, - "lat": 53.5958198, - "lon": -1.4455799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10658856222, - "lat": 53.5966573, - "lon": -1.4396216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10658866224, - "lat": 53.5981169, - "lon": -1.4447238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10658870036, - "lat": 53.6015209, - "lon": -1.4424870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S71 25D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10658871831, - "lat": 53.5957445, - "lon": -1.4643485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10658874510, - "lat": 53.6028191, - "lon": -1.4579974, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10658892637, - "lat": 53.5985604, - "lon": -1.4655066, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "comment": "plate missing", - "post_box:type": "wall", - "ref": "S71 61", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10658893886, - "lat": 53.6014330, - "lon": -1.4689067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S71 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10659298466, - "lat": 51.8096678, - "lon": -1.6481021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX18 539D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10659598550, - "lat": 51.8694289, - "lon": -1.5161119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OX7 371D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10659773652, - "lat": 51.1723947, - "lon": -4.1978651, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10659917621, - "lat": 52.6789390, - "lon": 0.8534873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1925" - } -}, -{ - "type": "node", - "id": 10659917622, - "lat": 52.6743591, - "lon": 0.8621653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1933" - } -}, -{ - "type": "node", - "id": 10659917623, - "lat": 52.6802285, - "lon": 0.8359379, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1932" - } -}, -{ - "type": "node", - "id": 10659917624, - "lat": 52.6863716, - "lon": 0.8057091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR19 1919" - } -}, -{ - "type": "node", - "id": 10659917635, - "lat": 52.6770905, - "lon": 0.8095884, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR19 1931" - } -}, -{ - "type": "node", - "id": 10659954786, - "lat": 52.7781477, - "lon": 1.0062787, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR20 2072", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10664164831, - "lat": 51.3958044, - "lon": -1.1605036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG7 350D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10665823256, - "lat": 52.9437849, - "lon": 0.7307751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE31 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10665823257, - "lat": 52.9400619, - "lon": 0.7293084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE31 477" - } -}, -{ - "type": "node", - "id": 10665823258, - "lat": 52.9603499, - "lon": 0.7223431, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE31 362" - } -}, -{ - "type": "node", - "id": 10665896252, - "lat": 52.1786422, - "lon": 0.1230637, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CB2 97", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10666995229, - "lat": 55.6345362, - "lon": -4.6778951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10669390040, - "lat": 53.5088326, - "lon": -1.3887332, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:15", - "post_box:type": "pillar", - "ref": "S73 281P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10669405483, - "lat": 53.5087287, - "lon": -1.3989776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10669416243, - "lat": 53.5159199, - "lon": -1.3835677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 67D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10669431521, - "lat": 53.5176686, - "lon": -1.3890626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 183D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10669463265, - "lat": 53.5120959, - "lon": -1.3721672, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 151D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10669490069, - "lat": 51.2807100, - "lon": -0.8069628, - "tags": { - "amenity": "post_box", - "collection_times:signed": "no", - "colour": "red", - "drive_through": "no", - "material": "metal", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref:signed": "no", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10670097963, - "lat": 52.4834837, - "lon": -1.4265976, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CV12 573", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10670097964, - "lat": 52.4733664, - "lon": -1.4314088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV12 570D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10671529869, - "lat": 51.2262447, - "lon": -2.8054649, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1764969173955753", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS28 247D", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 10673061507, - "lat": 51.4349219, - "lon": -2.4247374, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1432258123784493", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2020-07-12" - } -}, -{ - "type": "node", - "id": 10673675419, - "lat": 56.3460922, - "lon": -3.4777023, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH2 120D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10674438089, - "lat": 51.7870825, - "lon": -1.5495993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX29 885D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10674438090, - "lat": 51.7927620, - "lon": -1.5479156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OX29 877", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10674457335, - "lat": 52.1607777, - "lon": 1.4613189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP12 6269", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10674473308, - "lat": 51.7578604, - "lon": -1.5979569, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX18 404", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10674494217, - "lat": 51.7329739, - "lon": -1.6629776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "GL7 90D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10674652232, - "lat": 52.7661906, - "lon": -3.2732230, - "tags": { - "amenity": "post_box", - "ref": "SY22 197" - } -}, -{ - "type": "node", - "id": 10674968802, - "lat": 52.0670487, - "lon": 1.2155408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP4 1176", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10674968803, - "lat": 52.0679523, - "lon": 1.1847867, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1282" - } -}, -{ - "type": "node", - "id": 10674968804, - "lat": 52.0720060, - "lon": 1.1715579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1080" - } -}, -{ - "type": "node", - "id": 10675012771, - "lat": 52.5413928, - "lon": 1.3696560, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10675050205, - "lat": 52.0708079, - "lon": 1.1629434, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1356" - } -}, -{ - "type": "node", - "id": 10675050206, - "lat": 52.0683414, - "lon": 1.1676886, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP4 1421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10675050207, - "lat": 52.0582691, - "lon": 1.1651728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1062", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10675050208, - "lat": 52.0543896, - "lon": 1.1710441, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1304", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10675050209, - "lat": 52.0566033, - "lon": 1.1881992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP4 1077", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10675050210, - "lat": 52.0587264, - "lon": 1.1933427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1070", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10675050211, - "lat": 52.0565876, - "lon": 1.1953854, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1297", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10675067942, - "lat": 52.5656417, - "lon": 1.3497208, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10675877511, - "lat": 53.5401007, - "lon": -1.3914453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S73 27D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10675892164, - "lat": 51.6179549, - "lon": -1.9899751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 214", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10675892167, - "lat": 51.6215304, - "lon": -1.9671455, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "541706110424711", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN16 240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-07-22" - } -}, -{ - "type": "node", - "id": 10675915195, - "lat": 51.6150254, - "lon": -2.0445728, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 209", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10675945306, - "lat": 51.6147323, - "lon": -2.0208007, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN16 250", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10676519005, - "lat": 51.1972915, - "lon": -4.1233929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10676519075, - "lat": 51.2009219, - "lon": -4.1256804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10676888478, - "lat": 52.3666671, - "lon": 0.5073552, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP28 2176D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10677097634, - "lat": 52.4744967, - "lon": -0.2459714, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10677123801, - "lat": 51.2028215, - "lon": -4.1274169, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 12D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10677217066, - "lat": 52.6512736, - "lon": 0.0962677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE13 42", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10677299515, - "lat": 51.5125406, - "lon": 0.5962978, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10677822611, - "lat": 53.5108595, - "lon": -2.4159177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10678120560, - "lat": 51.5853932, - "lon": -2.1011178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SN16 150D", - "royal_cypher": "ER" - } -}, -{ - "type": "node", - "id": 10678232756, - "lat": 52.5490408, - "lon": -3.9340670, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30", - "ref": "SY20 93", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10678483240, - "lat": 51.2016032, - "lon": -4.0278739, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX34 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10678483465, - "lat": 51.2061134, - "lon": -4.0376175, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref:signed": "no", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10678736900, - "lat": 52.7534003, - "lon": 0.7980436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE32 348" - } -}, -{ - "type": "node", - "id": 10678766421, - "lat": 52.7644614, - "lon": 0.7432022, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 157" - } -}, -{ - "type": "node", - "id": 10678766423, - "lat": 52.7640933, - "lon": 0.7392815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 284" - } -}, -{ - "type": "node", - "id": 10678766424, - "lat": 52.7580176, - "lon": 0.7398793, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE32 149" - } -}, -{ - "type": "node", - "id": 10678791570, - "lat": 52.9550483, - "lon": 0.8437565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR23 2303" - } -}, -{ - "type": "node", - "id": 10678791571, - "lat": 52.9554270, - "lon": 0.8480207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "NR23 2304" - } -}, -{ - "type": "node", - "id": 10678791572, - "lat": 52.9552518, - "lon": 0.8585868, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR23 2312" - } -}, -{ - "type": "node", - "id": 10678882508, - "lat": 53.2546060, - "lon": -3.3813655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 123", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10679342924, - "lat": 53.7021664, - "lon": -2.4863346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB3 338D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10679458961, - "lat": 50.6528115, - "lon": -3.4120442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX8 27D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-02-19" - } -}, -{ - "type": "node", - "id": 10679474108, - "lat": 51.2037093, - "lon": -4.0313958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10679533902, - "lat": 53.3127818, - "lon": -0.6654491, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10679817344, - "lat": 53.1208859, - "lon": -2.1404226, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10680246730, - "lat": 50.6640998, - "lon": -3.3099665, - "tags": { - "amenity": "post_box", - "mapillary": "554475322720034", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10680247358, - "lat": 50.6716628, - "lon": -3.3972140, - "tags": { - "amenity": "post_box", - "mapillary": "2292068187639142", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10680255822, - "lat": 50.6958570, - "lon": -3.3066872, - "tags": { - "amenity": "post_box", - "mapillary": "814711896134448", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10680255897, - "lat": 50.7014236, - "lon": -3.2863028, - "tags": { - "amenity": "post_box", - "mapillary": "369856661880781", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10680281393, - "lat": 52.2228586, - "lon": -0.2692705, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10681585807, - "lat": 51.5756693, - "lon": -2.2075278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN16 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10681701515, - "lat": 53.2599087, - "lon": -0.5621190, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN1 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10681782900, - "lat": 53.2242295, - "lon": -0.5550634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "note": "inside morrisons, behind checkouts", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "LN6 613", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10681782902, - "lat": 53.2172011, - "lon": -0.5747805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN6 619D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10681782903, - "lat": 53.2141857, - "lon": -0.5789385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LN6 318D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10682115251, - "lat": 51.2094421, - "lon": -2.3788430, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10684424270, - "lat": 52.7785977, - "lon": 0.6626044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE32 257", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10684436074, - "lat": 52.8286175, - "lon": 0.5174671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE35 83" - } -}, -{ - "type": "node", - "id": 10684451424, - "lat": 52.7439547, - "lon": 1.2478451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR10 1063" - } -}, -{ - "type": "node", - "id": 10684451425, - "lat": 52.7432958, - "lon": 1.2591383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR10 1060" - } -}, -{ - "type": "node", - "id": 10684451426, - "lat": 52.7475046, - "lon": 1.2345515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR10 1059" - } -}, -{ - "type": "node", - "id": 10684459302, - "lat": 52.8203006, - "lon": 0.7102642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE31 203", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10684459303, - "lat": 52.8194048, - "lon": 0.7033130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10684468665, - "lat": 53.4221896, - "lon": -2.5698669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 102", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10685954044, - "lat": 53.5090848, - "lon": -1.4407714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "S74 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10685995445, - "lat": 53.5343117, - "lon": -1.3864470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "S73 260D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10686000180, - "lat": 53.5083910, - "lon": -1.3784086, - "tags": { - "amenity": "post_box", - "collection_plate": "no", - "post_box:type": "wall", - "ref": "S73 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10686267773, - "lat": 51.9966321, - "lon": 0.6924800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1106", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10686624176, - "lat": 53.5244652, - "lon": -1.5191470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "S75 199", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10686907627, - "lat": 51.9771122, - "lon": 0.5930125, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO9 36", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10687026961, - "lat": 51.9550826, - "lon": 0.9958655, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 415" - } -}, -{ - "type": "node", - "id": 10687261219, - "lat": 51.1512444, - "lon": -3.0643654, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10687293254, - "lat": 51.0369921, - "lon": -3.5066918, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10687302948, - "lat": 50.9401387, - "lon": -2.7566485, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10688029308, - "lat": 53.3834440, - "lon": -1.3698329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "lamp", - "ref": "S60 987", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10688497812, - "lat": 50.3887949, - "lon": -4.4510686, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10688502325, - "lat": 50.4221491, - "lon": -4.4354259, - "tags": { - "amenity": "post_box", - "mapillary": "977917229693359", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10689567558, - "lat": 52.7435559, - "lon": 0.5638448, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PE32 416" - } -}, -{ - "type": "node", - "id": 10689567562, - "lat": 52.7405993, - "lon": 0.5582715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE32 318" - } -}, -{ - "type": "node", - "id": 10689567567, - "lat": 52.7445459, - "lon": 0.5471921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "PE32 449" - } -}, -{ - "type": "node", - "id": 10689570832, - "lat": 52.7455938, - "lon": 0.5239991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE32 230", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10689570833, - "lat": 52.7398743, - "lon": 0.5167425, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE32 75" - } -}, -{ - "type": "node", - "id": 10690728039, - "lat": 50.2446324, - "lon": -5.0251042, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "TR1 126D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10690728040, - "lat": 50.2562714, - "lon": -5.0422159, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 53D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10690728041, - "lat": 50.2557653, - "lon": -5.0466004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:00; Sa 12:30; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "TR1 249;TR1 2490", - "royal_cypher": "no", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10691197681, - "lat": 50.7908135, - "lon": -3.6603712, - "tags": { - "amenity": "post_box", - "mapillary": "309277234507124", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10691377838, - "lat": 56.4091569, - "lon": -5.4829903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PA34 71D", - "royal_cypher": "scottish_crown", - "support": "pole" - } -}, -{ - "type": "node", - "id": 10691777678, - "lat": 53.3379464, - "lon": -2.7433471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA7 79" - } -}, -{ - "type": "node", - "id": 10692630875, - "lat": 57.0788685, - "lon": -4.0560901, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH21 59D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10693150402, - "lat": 51.8441646, - "lon": 0.6287500, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 08:30", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "priority": "yes", - "ref": "CM8 298", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693150403, - "lat": 51.8468592, - "lon": 0.6223409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "priority": "yes", - "ref": "CM8 264" - } -}, -{ - "type": "node", - "id": 10693150404, - "lat": 51.8491206, - "lon": 0.6258072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM8 278D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693184305, - "lat": 51.8499343, - "lon": 0.6177583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM8 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693301031, - "lat": 51.7318775, - "lon": 0.5126694, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CM2 80D" - } -}, -{ - "type": "node", - "id": 10693301032, - "lat": 51.7389661, - "lon": 0.5082934, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM2 466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693301033, - "lat": 51.7365959, - "lon": 0.5017989, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-02-25", - "collection_times": "Mo-Fr 16:00; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM2 64", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693427989, - "lat": 53.9736877, - "lon": -1.6861773, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/5268930", - "ref": "HG3 149" - } -}, -{ - "type": "node", - "id": 10693472794, - "lat": 51.1978594, - "lon": -4.0218672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693754477, - "lat": 54.5120189, - "lon": -1.3493532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693778615, - "lat": 52.0204639, - "lon": 0.8618224, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10693795151, - "lat": 52.0075763, - "lon": 0.8167209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693815805, - "lat": 52.0720689, - "lon": 0.8045898, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693844490, - "lat": 52.1458813, - "lon": 0.6455864, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP29 2082" - } -}, -{ - "type": "node", - "id": 10693853479, - "lat": 52.0954683, - "lon": 0.8937134, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP7 1187", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10693881386, - "lat": 52.0603635, - "lon": 0.7880158, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10693911702, - "lat": 52.2587531, - "lon": 1.1149876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP14 8081", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10694513550, - "lat": 53.4425958, - "lon": -2.2780336, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "137237848343896", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2020-09-15" - } -}, -{ - "type": "node", - "id": 10696730945, - "lat": 52.0392038, - "lon": 0.5320967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO9 39", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10696730956, - "lat": 52.0559574, - "lon": 0.5133110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO9 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10696730963, - "lat": 52.0557169, - "lon": 0.4920670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO9 16" - } -}, -{ - "type": "node", - "id": 10697004536, - "lat": 54.6830688, - "lon": -1.4372623, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10698012461, - "lat": 51.1323902, - "lon": -1.7324871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP4 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10698055850, - "lat": 51.8374010, - "lon": -1.8052690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "GL54 157D" - } -}, -{ - "type": "node", - "id": 10698261982, - "lat": 53.5656139, - "lon": -1.8023198, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HD9 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10698393757, - "lat": 51.8811029, - "lon": 0.8055166, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CO6 71" - } -}, -{ - "type": "node", - "id": 10698512051, - "lat": 52.2957918, - "lon": 1.4012570, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5555", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10699125948, - "lat": 51.5678740, - "lon": 0.1393231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10699151062, - "lat": 51.5648896, - "lon": 0.1010180, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699152318, - "lat": 51.5581933, - "lon": 0.0967589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699153252, - "lat": 51.5763136, - "lon": 0.1132798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699153253, - "lat": 51.5777473, - "lon": 0.1144369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10699160635, - "lat": 51.5412626, - "lon": 0.0432161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E7 36D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10699160636, - "lat": 51.5421827, - "lon": 0.0374825, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 15D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10699160637, - "lat": 51.5378191, - "lon": 0.0341402, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E7 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10699191312, - "lat": 51.5373654, - "lon": 0.0279691, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E13 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10699223584, - "lat": 51.5762447, - "lon": 0.0481539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG4 139", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10699223585, - "lat": 51.5799468, - "lon": 0.0541655, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG4 7D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10699223586, - "lat": 51.5836670, - "lon": 0.0558682, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699223587, - "lat": 51.5839534, - "lon": 0.0461188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 10699759179, - "lat": 52.5188469, - "lon": -1.8031835, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699903459, - "lat": 51.5372012, - "lon": 0.1690915, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside;bing" - } -}, -{ - "type": "node", - "id": 10699940548, - "lat": 51.5335165, - "lon": 0.1513569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM10 450D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10699940549, - "lat": 51.5368394, - "lon": 0.1512482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM10 136D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10699940550, - "lat": 51.5398733, - "lon": 0.1577849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699940551, - "lat": 51.5412972, - "lon": 0.1537581, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699940552, - "lat": 51.5402490, - "lon": 0.1657982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699940553, - "lat": 51.5398160, - "lon": 0.1722265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10699940554, - "lat": 51.5428408, - "lon": 0.1726362, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004876, - "lat": 51.5443517, - "lon": 0.1518126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004877, - "lat": 51.5461927, - "lon": 0.1550116, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004885, - "lat": 51.5481272, - "lon": 0.1651119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004886, - "lat": 51.5519872, - "lon": 0.1620001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004887, - "lat": 51.5513028, - "lon": 0.1486476, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RM10 211D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10700004888, - "lat": 51.5537419, - "lon": 0.1521160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004889, - "lat": 51.5554031, - "lon": 0.1555269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004890, - "lat": 51.5567819, - "lon": 0.1515377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004895, - "lat": 51.5547624, - "lon": 0.1600676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004896, - "lat": 51.5539203, - "lon": 0.1680967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700004897, - "lat": 51.5602450, - "lon": 0.1547084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10700379371, - "lat": 51.0795445, - "lon": -2.0371673, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP3 385", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10700393717, - "lat": 51.9095799, - "lon": -1.6264395, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "OX7 361D" - } -}, -{ - "type": "node", - "id": 10700400297, - "lat": 51.0103691, - "lon": -1.9702233, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2023-06-22", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP5 61D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10700520300, - "lat": 51.2236053, - "lon": -3.8357574, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10700661444, - "lat": 51.4034767, - "lon": -0.6715289, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "492078915697416", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL5 7", - "source": "Mapillary", - "survey:date": "2022-03-19" - } -}, -{ - "type": "node", - "id": 10700752518, - "lat": 51.9275102, - "lon": 0.8765946, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 67", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10700752520, - "lat": 51.9243842, - "lon": 0.8823051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 216" - } -}, -{ - "type": "node", - "id": 10700833386, - "lat": 51.1972058, - "lon": -0.5463799, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10702287009, - "lat": 52.7146082, - "lon": -1.0503926, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10702831378, - "lat": 51.9647403, - "lon": -1.7398849, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "148383800878244", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2021-06-05" - } -}, -{ - "type": "node", - "id": 10703714051, - "lat": 53.4718984, - "lon": -2.2243494, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "material": "metal", - "post_box:type": "pillar", - "ref": "M12 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10703778832, - "lat": 53.4772231, - "lon": -2.5429241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10704579088, - "lat": 51.5360596, - "lon": 0.0713699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG11 49", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10705195431, - "lat": 51.7197246, - "lon": 0.8243931, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10706513119, - "lat": 50.9489673, - "lon": 0.5980334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN31 55", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10706753906, - "lat": 51.4233263, - "lon": 0.1312040, - "tags": { - "amenity": "post_box", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10708009576, - "lat": 53.0646671, - "lon": -2.0430008, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10709363192, - "lat": 53.2584301, - "lon": -2.5174067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10709735489, - "lat": 52.4008185, - "lon": -0.7271429, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "ref": "NN16 8150", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10711340846, - "lat": 51.5066699, - "lon": -0.6056651, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10711817736, - "lat": 51.5214129, - "lon": -3.2340342, - "tags": { - "amenity": "post_box", - "check_date": "2020-10-08", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10711817741, - "lat": 51.5211470, - "lon": -3.2278749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10711817742, - "lat": 51.5222577, - "lon": -3.2112276, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10711817743, - "lat": 51.5297846, - "lon": -3.2090061, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "bing;streetlevel imagery" - } -}, -{ - "type": "node", - "id": 10711817745, - "lat": 51.5292823, - "lon": -3.1880103, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10711817761, - "lat": 51.5322866, - "lon": -3.1895215, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-10", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10711817762, - "lat": 51.5320785, - "lon": -3.1822320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10711817763, - "lat": 51.5359865, - "lon": -3.1798555, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10711817764, - "lat": 51.5387167, - "lon": -3.1768354, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10711817765, - "lat": 51.5413321, - "lon": -3.1695880, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10711817768, - "lat": 51.5407607, - "lon": -3.1677755, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10711817769, - "lat": 51.5444557, - "lon": -3.1770017, - "tags": { - "amenity": "post_box", - "check_date": "2021-02-18", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10711817770, - "lat": 51.5444607, - "lon": -3.1867399, - "tags": { - "amenity": "post_box", - "check_date": "2018-10-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10711817771, - "lat": 51.5391019, - "lon": -3.2031525, - "tags": { - "amenity": "post_box", - "check_date": "2018-10-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10712065095, - "lat": 54.8600188, - "lon": -1.6946944, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10712065103, - "lat": 54.9253630, - "lon": -1.4727055, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10712432741, - "lat": 51.2796872, - "lon": -0.7505357, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 14:15", - "ref": "GU14 84P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10712539548, - "lat": 52.6870940, - "lon": 1.5545427, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10712575710, - "lat": 51.1708255, - "lon": -2.7931306, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1629289651236419", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA6 127D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 10712587244, - "lat": 51.1274403, - "lon": -2.7278426, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA16 126D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10712587989, - "lat": 51.0574934, - "lon": -2.7335065, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA11 587D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10712738702, - "lat": 51.5746476, - "lon": 0.0447396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IG1 144D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10712751669, - "lat": 52.2174283, - "lon": 0.8671082, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10712766515, - "lat": 51.6079380, - "lon": 0.0377591, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 32", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10712766516, - "lat": 51.6123321, - "lon": 0.0419038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 66D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10712849890, - "lat": 51.6658263, - "lon": -0.2692609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 10712975708, - "lat": 50.3753753, - "lon": -4.4833389, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL14 68", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-05" - } -}, -{ - "type": "node", - "id": 10712975709, - "lat": 50.3885843, - "lon": -4.4807753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00, Sa 09:00", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL14 8", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-03-05" - } -}, -{ - "type": "node", - "id": 10712975713, - "lat": 50.3845775, - "lon": -4.4637338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 75", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-05" - } -}, -{ - "type": "node", - "id": 10712975716, - "lat": 50.3662868, - "lon": -4.4513472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 70", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-05" - } -}, -{ - "type": "node", - "id": 10713040410, - "lat": 51.4440734, - "lon": 0.3107664, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA10 244D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10713040411, - "lat": 51.4359473, - "lon": 0.3160648, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DA10 499", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10713040412, - "lat": 51.4350010, - "lon": 0.3035070, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "DA10 421", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10713040413, - "lat": 51.4393497, - "lon": 0.3116234, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DA10 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10713040414, - "lat": 51.4423882, - "lon": 0.3080744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA10 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10713040415, - "lat": 51.4477189, - "lon": 0.3101821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DA10 419", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10713239776, - "lat": 52.9976190, - "lon": -2.1844482, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10713370448, - "lat": 52.6435033, - "lon": -1.7018574, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10713534913, - "lat": 53.4181656, - "lon": -2.6011199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA2 319", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10717481952, - "lat": 51.7832817, - "lon": -2.6486187, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2023-03-08", - "wikimedia_commons": "File:Unnamed side road in Newland - geograph.org.uk - 4500210.jpg" - } -}, -{ - "type": "node", - "id": 10721503228, - "lat": 56.3427292, - "lon": -3.6799136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 53D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10721575229, - "lat": 56.3620039, - "lon": -3.7015878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH7 100", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10721892145, - "lat": 55.1071871, - "lon": -4.1588388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DG7 6D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10722053726, - "lat": 51.5727572, - "lon": 0.0650561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10722067547, - "lat": 51.5763730, - "lon": 0.0678982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10722081305, - "lat": 51.5880702, - "lon": 0.0611779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10722081306, - "lat": 51.5812825, - "lon": 0.0639414, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10722081307, - "lat": 51.5928671, - "lon": 0.0702056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10722128749, - "lat": 54.9561850, - "lon": -4.4836334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DG8 1D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722128775, - "lat": 54.9576528, - "lon": -4.4824702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG8 12", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10722153037, - "lat": 54.9588233, - "lon": -4.4855953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 3D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722191522, - "lat": 54.9616675, - "lon": -4.4894372, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10722196305, - "lat": 54.9689780, - "lon": -4.4826928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722213109, - "lat": 54.9644256, - "lon": -4.4826224, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 7D" - } -}, -{ - "type": "node", - "id": 10722225767, - "lat": 54.9525967, - "lon": -4.4909801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DG8 6D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722225791, - "lat": 54.9536279, - "lon": -4.4912276, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 68" - } -}, -{ - "type": "node", - "id": 10722235069, - "lat": 54.9606446, - "lon": -4.4761126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 62D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722263043, - "lat": 54.6830219, - "lon": -4.4050777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 52", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722273317, - "lat": 54.8581008, - "lon": -4.4600952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722292007, - "lat": 54.8411010, - "lon": -4.4617206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 57D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722305429, - "lat": 54.6992820, - "lon": -4.3620054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 11D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722318662, - "lat": 54.7006614, - "lon": -4.3662618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10722806458, - "lat": 51.4833795, - "lon": -0.0256236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "SE8 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10723988479, - "lat": 54.7299701, - "lon": -4.4180160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 9D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10724029185, - "lat": 54.7323350, - "lon": -4.4158199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DG8 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10724056920, - "lat": 51.7542581, - "lon": -2.0663036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 22D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10724133347, - "lat": 54.7352941, - "lon": -4.4134958, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 60D" - } -}, -{ - "type": "node", - "id": 10724169393, - "lat": 54.9024771, - "lon": -4.3748391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 61D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10724350982, - "lat": 54.8652175, - "lon": -4.3584193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 38", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10724350996, - "lat": 54.8761198, - "lon": -4.3706247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DG8 27", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10724356707, - "lat": 54.8963854, - "lon": -4.3813227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG8 56D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10724529125, - "lat": 54.8834929, - "lon": -4.1817174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DG7 59D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10724529145, - "lat": 54.8802310, - "lon": -4.1884916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DG7 18D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10724623422, - "lat": 53.3745259, - "lon": -2.2021502, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10725349828, - "lat": 52.4935140, - "lon": 1.2378690, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source": "mapillary", - "survey:date": "2016-02-23" - } -}, -{ - "type": "node", - "id": 10725375468, - "lat": 52.1996802, - "lon": 1.0993355, - "tags": { - "amenity": "post_box", - "fixme": "ref?" - } -}, -{ - "type": "node", - "id": 10725764220, - "lat": 51.6032141, - "lon": 0.0297615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725764222, - "lat": 51.6110720, - "lon": 0.0385726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 33D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10725764223, - "lat": 51.6118325, - "lon": 0.0302224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725764224, - "lat": 51.6140327, - "lon": 0.0298985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725764225, - "lat": 51.6169653, - "lon": 0.0328798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725764230, - "lat": 51.6153249, - "lon": 0.0375520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725773579, - "lat": 51.6222095, - "lon": 0.0696243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725773580, - "lat": 51.6150159, - "lon": 0.0826377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725773581, - "lat": 51.6064154, - "lon": 0.0753901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10725773582, - "lat": 51.6082723, - "lon": 0.1072055, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725773583, - "lat": 51.6156319, - "lon": 0.1166515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725773584, - "lat": 51.6273609, - "lon": 0.0830155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10725773585, - "lat": 51.6341214, - "lon": 0.0862975, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10725809171, - "lat": 51.6298738, - "lon": 0.0352305, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725809173, - "lat": 51.6272789, - "lon": 0.0386099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10725809174, - "lat": 51.6265575, - "lon": 0.0483509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10725809175, - "lat": 51.6297530, - "lon": 0.0500353, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10725963629, - "lat": 50.7627240, - "lon": -2.9418308, - "tags": { - "amenity": "post_box", - "check_date": "2023-03-02", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref:GB:uprn": "10015305586", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "note; wikimedia image" - } -}, -{ - "type": "node", - "id": 10726004013, - "lat": 51.6348190, - "lon": 0.0457921, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004014, - "lat": 51.6363719, - "lon": 0.0508007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004015, - "lat": 51.6414413, - "lon": 0.0480205, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004016, - "lat": 51.6406487, - "lon": 0.0523880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004017, - "lat": 51.6458009, - "lon": 0.0536858, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004018, - "lat": 51.6493423, - "lon": 0.0568131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004019, - "lat": 51.6493577, - "lon": 0.0568214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 10726004022, - "lat": 51.6531430, - "lon": 0.0620309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004023, - "lat": 51.6570433, - "lon": 0.0675918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004024, - "lat": 51.6578631, - "lon": 0.0724870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004025, - "lat": 51.6552304, - "lon": 0.0875036, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004026, - "lat": 51.6497573, - "lon": 0.0837596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10726004027, - "lat": 51.6440745, - "lon": 0.0722778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004028, - "lat": 51.6452351, - "lon": 0.0887314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004029, - "lat": 51.6548210, - "lon": 0.0204020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726004031, - "lat": 51.6615778, - "lon": 0.0244678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10726042639, - "lat": 51.5856132, - "lon": 0.0663734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10726399028, - "lat": 51.9254381, - "lon": 0.6974813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10726496699, - "lat": 51.4249618, - "lon": 0.2856595, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "3323488147916862", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-05-07" - } -}, -{ - "type": "node", - "id": 10726832261, - "lat": 52.1481378, - "lon": 0.9608493, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10726891385, - "lat": 51.2049420, - "lon": -4.0339904, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10727028735, - "lat": 53.3958334, - "lon": -2.5657213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 216" - } -}, -{ - "type": "node", - "id": 10728024796, - "lat": 51.7764077, - "lon": 0.4739153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10728900393, - "lat": 53.3424390, - "lon": -2.7324752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA7 7;WA7 700", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10730472902, - "lat": 51.5734940, - "lon": -3.9973774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 10730680489, - "lat": 51.5521815, - "lon": 0.0626334, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E12 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10732654109, - "lat": 50.8529792, - "lon": -3.8825096, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10733053097, - "lat": 56.3887029, - "lon": -3.7391676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 39", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10733060901, - "lat": 56.3910202, - "lon": -3.8067547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH7 59D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10733113051, - "lat": 56.4040664, - "lon": -3.8187648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 17", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10733148493, - "lat": 56.3591142, - "lon": -3.7912685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH7 65", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10733774880, - "lat": 51.8187959, - "lon": 0.6647332, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10733835169, - "lat": 51.8719299, - "lon": 0.6965506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 262", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10733835170, - "lat": 51.8742663, - "lon": 0.6843130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO6 131", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10733882216, - "lat": 51.8335726, - "lon": 0.6965141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO5 135", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10733898041, - "lat": 51.8016219, - "lon": 0.6389814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CM8 171", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10733985781, - "lat": 51.8445648, - "lon": 0.9439522, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10734395042, - "lat": 50.2634406, - "lon": -5.0502651, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "TR1 56", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10735981094, - "lat": 51.8091720, - "lon": 0.7477706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO5 480" - } -}, -{ - "type": "node", - "id": 10736048807, - "lat": 51.7248584, - "lon": 0.9001079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CM0 323" - } -}, -{ - "type": "node", - "id": 10736048808, - "lat": 51.7295273, - "lon": 0.8983772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM0 486" - } -}, -{ - "type": "node", - "id": 10736048810, - "lat": 51.7338994, - "lon": 0.8899123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM0 243" - } -}, -{ - "type": "node", - "id": 10736048811, - "lat": 51.7281084, - "lon": 0.9109676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CM0 376" - } -}, -{ - "type": "node", - "id": 10736098911, - "lat": 52.0635619, - "lon": 1.1123701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1337", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10736098912, - "lat": 52.0635745, - "lon": 1.1123656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IP1 8171" - } -}, -{ - "type": "node", - "id": 10736098919, - "lat": 52.0636190, - "lon": 1.1204620, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "image": "https://www.flickr.com/photos/200873507@N03/53806729829", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IP1 1465", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10736098925, - "lat": 52.0749676, - "lon": 1.1291401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1273" - } -}, -{ - "type": "node", - "id": 10736098926, - "lat": 52.0715868, - "lon": 1.1328045, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1318" - } -}, -{ - "type": "node", - "id": 10736098932, - "lat": 52.0672422, - "lon": 1.1262856, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP1 1137" - } -}, -{ - "type": "node", - "id": 10736934445, - "lat": 50.2637779, - "lon": -5.0371699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10736934446, - "lat": 50.2800919, - "lon": -5.0415582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR1 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10736934447, - "lat": 50.2665539, - "lon": -5.0389247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TR1 73D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10736934448, - "lat": 50.2668853, - "lon": -5.0605574, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "aerial imagery;survey" - } -}, -{ - "type": "node", - "id": 10736934449, - "lat": 50.2678451, - "lon": -5.0420266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 100D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10736934450, - "lat": 50.2679125, - "lon": -5.0591705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR1 116D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10737286089, - "lat": 51.6696038, - "lon": 0.7263139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CM3 207" - } -}, -{ - "type": "node", - "id": 10737333215, - "lat": 51.6872345, - "lon": 0.6589577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM3 99" - } -}, -{ - "type": "node", - "id": 10737333216, - "lat": 51.6863775, - "lon": 0.6628460, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM3 205" - } -}, -{ - "type": "node", - "id": 10737333218, - "lat": 51.6908764, - "lon": 0.6559603, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM3 208" - } -}, -{ - "type": "node", - "id": 10737339257, - "lat": 51.7811583, - "lon": 0.6797939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM8 338", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10737360815, - "lat": 56.2938260, - "lon": -3.7003929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry Co Ltd Kirkintilloch", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH3 54D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10738029189, - "lat": 52.0846012, - "lon": 1.1338413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1325" - } -}, -{ - "type": "node", - "id": 10738029191, - "lat": 52.0825996, - "lon": 1.1461675, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP1 1392", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10738029193, - "lat": 52.0792933, - "lon": 1.1492143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1098" - } -}, -{ - "type": "node", - "id": 10738032226, - "lat": 52.0766348, - "lon": 1.1406513, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1373", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10738032286, - "lat": 52.0800680, - "lon": 1.1366372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1342", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10738032304, - "lat": 52.0748969, - "lon": 1.1350756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP1 1327", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10738032305, - "lat": 52.0726427, - "lon": 1.1388625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP1 1068", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10738064406, - "lat": 52.0585924, - "lon": 1.1431249, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP1 1065", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10738699089, - "lat": 50.2618742, - "lon": -5.0978805, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10739479541, - "lat": 50.2543115, - "lon": -5.0564759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10739515213, - "lat": 50.2605100, - "lon": -5.0470246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 13:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TR1 258", - "royal_cypher": "EIIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10740211583, - "lat": 51.5350442, - "lon": 0.7726024, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "SS3 211", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10741854461, - "lat": 51.3455770, - "lon": -2.4229893, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10741861028, - "lat": 51.2699670, - "lon": -2.2889055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 319" - } -}, -{ - "type": "node", - "id": 10741875856, - "lat": 51.2664012, - "lon": -2.2840565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 349" - } -}, -{ - "type": "node", - "id": 10741879018, - "lat": 51.2651894, - "lon": -2.2866989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 240" - } -}, -{ - "type": "node", - "id": 10741897079, - "lat": 51.2450391, - "lon": -2.2720268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Is behind a hedge, looks like it's in the garden, but small gate to provide access from the drive (to right/NE). I note label on the postbox (BA11 16D, dated 12/10/22) differs from number mentioned in Survey Me! data from Royal Mail (BA11 6).", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA11 16" - } -}, -{ - "type": "node", - "id": 10741907576, - "lat": 51.2419984, - "lon": -2.2815328, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 35" - } -}, -{ - "type": "node", - "id": 10741978911, - "lat": 51.2436597, - "lon": -2.2924363, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA11 53" - } -}, -{ - "type": "node", - "id": 10742010467, - "lat": 51.2394448, - "lon": -2.2957460, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 75" - } -}, -{ - "type": "node", - "id": 10742020719, - "lat": 51.2366768, - "lon": -2.2992496, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA11 28" - } -}, -{ - "type": "node", - "id": 10742022848, - "lat": 56.4580005, - "lon": -3.1740767, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH14 187", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10743003005, - "lat": 50.3806652, - "lon": -4.1663260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL3 160D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-17" - } -}, -{ - "type": "node", - "id": 10743128302, - "lat": 56.0295303, - "lon": -3.8070774, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 176D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10743554852, - "lat": 51.5296672, - "lon": 0.0235437, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "mapillary": "432237645403154", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E13 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10744046825, - "lat": 57.6939559, - "lon": -2.0187894, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10744890719, - "lat": 50.6837849, - "lon": -3.2418274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX10 162D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-03-18" - } -}, -{ - "type": "node", - "id": 10746446139, - "lat": 54.7087537, - "lon": -1.5719391, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10746446155, - "lat": 54.8799287, - "lon": -1.5482459, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10746446158, - "lat": 54.7087965, - "lon": -1.5719175, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10748234911, - "lat": 52.3107597, - "lon": -2.6140527, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10748598577, - "lat": 59.1411746, - "lon": -2.5985896, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10748598579, - "lat": 59.0948407, - "lon": -2.5814114, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "KW17 50" - } -}, -{ - "type": "node", - "id": 10748636190, - "lat": 56.5184643, - "lon": -3.3018446, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Derby Castings Limited Derby", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH13 119", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10748637748, - "lat": 59.1100127, - "lon": -2.6046134, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KW17 129" - } -}, -{ - "type": "node", - "id": 10748645035, - "lat": 56.5253351, - "lon": -3.2727869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:45", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH13 103", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10748649333, - "lat": 59.1029295, - "lon": -2.6550628, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "KW17 54" - } -}, -{ - "type": "node", - "id": 10748806133, - "lat": 50.6193435, - "lon": -3.4122154, - "tags": { - "amenity": "post_box", - "check_date": "2023-05-07", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "EX8 888", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10749086591, - "lat": 52.6032609, - "lon": -2.0059215, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:45; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS2 270", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10749936739, - "lat": 52.6024617, - "lon": -2.0148533, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10749936740, - "lat": 52.5931299, - "lon": -2.0102538, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:25; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "WS2 345", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10749971528, - "lat": 52.6124883, - "lon": -2.0147910, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:15; Sa 11:30; Su off", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WS3 308", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10750457404, - "lat": 50.7198567, - "lon": -3.3919297, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "142141775065006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10751280430, - "lat": 54.9886781, - "lon": -1.9888642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NE45 154", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10751792190, - "lat": 52.3096218, - "lon": -2.6829215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY8 122", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10751792191, - "lat": 52.3112956, - "lon": -2.6652935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY8 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10751943512, - "lat": 52.1042262, - "lon": -1.1888199, - "tags": { - "amenity": "post_box", - "post_box:design": "type_m", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10754121148, - "lat": 51.5582040, - "lon": 0.0731224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IG1 147" - } -}, -{ - "type": "node", - "id": 10754121149, - "lat": 51.5582108, - "lon": 0.0731200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "IG1 1478" - } -}, -{ - "type": "node", - "id": 10754551961, - "lat": 53.0832871, - "lon": -2.0220318, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10754630914, - "lat": 50.8056154, - "lon": -3.3695177, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10754809790, - "lat": 53.7797338, - "lon": -0.6473902, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10754809791, - "lat": 53.7766370, - "lon": -0.6417331, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10754809792, - "lat": 53.7839206, - "lon": -0.6444833, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10755864323, - "lat": 52.2508612, - "lon": -2.8833780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR6 932", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10756525461, - "lat": 51.4036658, - "lon": -2.4586933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10757726687, - "lat": 57.6813677, - "lon": -6.3402047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV51 73", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10758398014, - "lat": 57.6898032, - "lon": -2.0179271, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10758994074, - "lat": 56.7019723, - "lon": -3.9705037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH16 38" - } -}, -{ - "type": "node", - "id": 10761744644, - "lat": 52.5926634, - "lon": -1.5198124, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10762203086, - "lat": 50.2642670, - "lon": -5.0691921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 216D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762203087, - "lat": 50.2657018, - "lon": -5.0966093, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "TR1 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762203088, - "lat": 50.2729009, - "lon": -5.0403909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 228D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762203089, - "lat": 50.2642465, - "lon": -5.0788911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 236D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762214100, - "lat": 50.2557086, - "lon": -5.0529843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762214101, - "lat": 50.2691603, - "lon": -5.0547842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762214102, - "lat": 50.2682600, - "lon": -5.0350355, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR1 259D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10762214103, - "lat": 50.2720476, - "lon": -5.0339344, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR1 261D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10763579832, - "lat": 57.6856474, - "lon": -2.0213985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10764671279, - "lat": 58.2203676, - "lon": -6.2271129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10764671282, - "lat": 58.2086620, - "lon": -6.2623746, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10764671284, - "lat": 58.2049998, - "lon": -6.2780015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 36", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10764717418, - "lat": 58.0496338, - "lon": -6.4401626, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HS2 96", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10764774514, - "lat": 50.2313328, - "lon": -4.8836886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR2 98D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 10764774706, - "lat": 50.2351394, - "lon": -4.8658112, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR2 173D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery", - "survey:date": "2023-06-04" - } -}, -{ - "type": "node", - "id": 10764774710, - "lat": 50.2228716, - "lon": -4.8894642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 232D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-03-26" - } -}, -{ - "type": "node", - "id": 10764775106, - "lat": 50.2262179, - "lon": -4.8939773, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 90D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery", - "survey:date": "2023-07-10" - } -}, -{ - "type": "node", - "id": 10765559405, - "lat": 51.3558484, - "lon": 1.0242703, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "491479605401994", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "survey:date": "2023-03-27" - } -}, -{ - "type": "node", - "id": 10765607361, - "lat": 57.6839276, - "lon": -2.0172291, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10766825484, - "lat": 56.5794197, - "lon": -3.1964426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:15; Sa 10:30", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH12 91", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10766958189, - "lat": 52.1704963, - "lon": -3.0197796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR5 259", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10767047150, - "lat": 52.1211811, - "lon": -3.0743292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR3 265", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10767047151, - "lat": 52.1207068, - "lon": -3.0681896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR3 747", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10767096722, - "lat": 51.7492977, - "lon": -2.9693086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 24", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10767434795, - "lat": 52.4207180, - "lon": -2.2318691, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10767521746, - "lat": 53.0101051, - "lon": -3.0896346, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10768534931, - "lat": 51.3999251, - "lon": -2.4671007, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10769049108, - "lat": 51.9377299, - "lon": 0.9515571, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10769747960, - "lat": 52.0633994, - "lon": 1.1795483, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP4 1172" - } -}, -{ - "type": "node", - "id": 10769747961, - "lat": 52.0616322, - "lon": 1.1760444, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP4 1024" - } -}, -{ - "type": "node", - "id": 10769747964, - "lat": 52.0610128, - "lon": 1.1721502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP4 1142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10771193446, - "lat": 53.5658927, - "lon": -2.1200283, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10772003655, - "lat": 53.0410947, - "lon": -2.2518066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10772188294, - "lat": 51.5842883, - "lon": -1.4798071, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10772246008, - "lat": 51.6627311, - "lon": -1.3835226, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10772635844, - "lat": 55.7111064, - "lon": -1.9538196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 31D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 10772635845, - "lat": 55.6610844, - "lon": -1.8678429, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 49D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey", - "survey:date": "2023-03-28" - } -}, -{ - "type": "node", - "id": 10772769304, - "lat": 51.4035389, - "lon": -2.4636312, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 10773620349, - "lat": 53.5573608, - "lon": -1.8136105, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "HD9 198D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10773835028, - "lat": 54.8650224, - "lon": -1.4830305, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10774360405, - "lat": 51.7881953, - "lon": -2.8459062, - "tags": { - "addr:postcode": "NP15 2LH", - "amenity": "post_box", - "name": "Tregare", - "name:cy": "Tre’r Gaer" - } -}, -{ - "type": "node", - "id": 10774971400, - "lat": 52.9686076, - "lon": -3.1644462, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL20 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10775342277, - "lat": 58.4401950, - "lon": -3.0883490, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-13", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KW1 2D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10776588566, - "lat": 54.1925065, - "lon": -2.9216237, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/6871116", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10776588571, - "lat": 54.1920483, - "lon": -2.9193471, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/7138061", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10776966424, - "lat": 52.7710492, - "lon": -1.2972580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "LE12 135", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10777609605, - "lat": 52.2173656, - "lon": 0.0857111, - "tags": { - "addr:street": "Turing Way", - "amenity": "post_box", - "name": "Mailboxes for Turing Way apartments" - } -}, -{ - "type": "node", - "id": 10778144311, - "lat": 51.3049973, - "lon": 0.0205304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN16 126", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10778610005, - "lat": 50.7292263, - "lon": -4.5626028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610024, - "lat": 50.8280573, - "lon": -4.5440504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref is EX23 12 confirmed", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX23 12", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-07-11" - } -}, -{ - "type": "node", - "id": 10778610028, - "lat": 50.8279318, - "lon": -4.5491306, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-07-11" - } -}, -{ - "type": "node", - "id": 10778610106, - "lat": 50.7340487, - "lon": -4.5551894, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX23 9D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610137, - "lat": 50.8181696, - "lon": -4.5505978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 134D", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610205, - "lat": 50.7472364, - "lon": -4.5585148, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610215, - "lat": 50.8293605, - "lon": -4.5394978, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 56D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610216, - "lat": 50.8266910, - "lon": -4.5369171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Deep in hedge", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX23 177D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610217, - "lat": 50.8235789, - "lon": -4.5340667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 81D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610411, - "lat": 50.8228872, - "lon": -4.5378975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 176D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778610414, - "lat": 50.8276341, - "lon": -4.5466065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX23 1", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-07-11" - } -}, -{ - "type": "node", - "id": 10778887449, - "lat": 50.7951557, - "lon": -4.5551946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX23 105D", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778887522, - "lat": 50.7935158, - "lon": -4.5534614, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10778887524, - "lat": 50.7900455, - "lon": -4.5519861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 140D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-01" - } -}, -{ - "type": "node", - "id": 10779612683, - "lat": 50.7545164, - "lon": -4.5499478, - "tags": { - "amenity": "post_box", - "note": "Position approximate", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10779695829, - "lat": 51.0631331, - "lon": 0.3225859, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10779830106, - "lat": 52.7988213, - "lon": -2.1317045, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10780164972, - "lat": 53.2637433, - "lon": -3.3928384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL17 218", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10780497529, - "lat": 51.5384947, - "lon": -3.5845014, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "CF32 225D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10781293323, - "lat": 50.7031607, - "lon": -4.4112997, - "tags": { - "amenity": "post_box", - "mapillary": "2340584096122288", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10781293324, - "lat": 50.7471657, - "lon": -4.4548942, - "tags": { - "amenity": "post_box", - "letters_only": "yes", - "mapillary": "594732435903455", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX22 95", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10781293325, - "lat": 50.7875833, - "lon": -4.4955592, - "tags": { - "amenity": "post_box", - "mapillary": "911524873428348", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10781733344, - "lat": 53.2630599, - "lon": -3.4271484, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL17 32", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10781733357, - "lat": 53.2634285, - "lon": -3.4107432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL17 214", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10782198188, - "lat": 50.8140349, - "lon": -4.3508555, - "tags": { - "amenity": "post_box", - "mapillary": "1280618782450535", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10782240815, - "lat": 50.8212719, - "lon": -4.5387521, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "356939639096817", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10782764928, - "lat": 50.9708900, - "lon": 0.5944913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10782831081, - "lat": 50.9399842, - "lon": 0.5942175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10782831083, - "lat": 50.9355421, - "lon": 0.5968465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10783660947, - "lat": 57.6870776, - "lon": -2.0064576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "AB43 4" - } -}, -{ - "type": "node", - "id": 10788365435, - "lat": 52.7290516, - "lon": -2.8374694, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10788365438, - "lat": 52.7335926, - "lon": -2.8444837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY4 280D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10788850879, - "lat": 57.6421918, - "lon": -3.0537114, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10788850881, - "lat": 57.6491924, - "lon": -3.0703098, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10790171237, - "lat": 53.2943329, - "lon": -4.1607383, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL58 270", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10790290654, - "lat": 51.5726491, - "lon": -4.0000454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10791169885, - "lat": 50.9532861, - "lon": 0.6007510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10793297018, - "lat": 51.0583238, - "lon": 0.3445378, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10794072713, - "lat": 50.6842042, - "lon": -3.2348875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "EX10 68D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-04-07" - } -}, -{ - "type": "node", - "id": 10794072739, - "lat": 50.6932717, - "lon": -3.2069704, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX10 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-07" - } -}, -{ - "type": "node", - "id": 10794072743, - "lat": 50.6819919, - "lon": -3.2308912, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX10 85D", - "survey:date": "2023-04-07" - } -}, -{ - "type": "node", - "id": 10794073337, - "lat": 50.6981471, - "lon": -3.1969483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Trow Hill", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX10 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-07" - } -}, -{ - "type": "node", - "id": 10794073505, - "lat": 50.6903905, - "lon": -3.2378960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX10 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-07" - } -}, -{ - "type": "node", - "id": 10795177683, - "lat": 53.5663755, - "lon": -1.7778802, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "HD9 355D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10795233066, - "lat": 56.5635662, - "lon": -3.3023851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:30", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH13 3", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10795233781, - "lat": 56.6264664, - "lon": -3.1592150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH12 171", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10795262494, - "lat": 51.2058256, - "lon": -2.1798949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BA12 111D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10795271331, - "lat": 56.5639469, - "lon": -3.1987932, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH12 227", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10795337435, - "lat": 56.5455126, - "lon": -3.2671993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH13 175D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10795356704, - "lat": 56.5480994, - "lon": -3.2642113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH13 56D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10795443541, - "lat": 56.5155824, - "lon": -3.1530538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DD2 282", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10796780735, - "lat": 55.0077223, - "lon": -1.5936856, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10796983919, - "lat": 51.4622175, - "lon": -3.4604270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF71 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10797048375, - "lat": 53.2810531, - "lon": -2.2666840, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 09:30", - "ref": "SK10 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10797259005, - "lat": 50.4558207, - "lon": -4.3027121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL12 422D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797259006, - "lat": 50.5295238, - "lon": -4.3595559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 08:30", - "fixme": "collectino times will change to 0900 / 0700 24th april 2023 according to sticker", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL17 563", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797259105, - "lat": 50.4981046, - "lon": -4.3128959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL17 654D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797259106, - "lat": 50.5195318, - "lon": -4.3362475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797259107, - "lat": 50.6232683, - "lon": -4.4569607, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 49D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797259305, - "lat": 50.5388689, - "lon": -4.4042026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:30, Sa 10:00", - "fixme": "collection times will change to 9am / 7am 24th april, according to sticker", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797259306, - "lat": 50.5525021, - "lon": -4.4377817, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL15 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-09" - } -}, -{ - "type": "node", - "id": 10797720962, - "lat": 51.6512539, - "lon": -3.0504864, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10797736539, - "lat": 51.6368598, - "lon": -3.0595978, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10797746646, - "lat": 51.4092203, - "lon": -3.4703071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF61 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10797746680, - "lat": 51.4140932, - "lon": -3.4835605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF61 105D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10798947605, - "lat": 54.9142553, - "lon": -1.4492372, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10798947628, - "lat": 54.9166011, - "lon": -1.4415583, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10799026376, - "lat": 51.0313562, - "lon": -0.3956714, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH13 144", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10799026790, - "lat": 56.5484167, - "lon": -3.2678948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH13 205D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10799035264, - "lat": 51.0304011, - "lon": -0.4311852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RH14 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10799563671, - "lat": 51.7992974, - "lon": -1.8856605, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1484474975263849", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-07-22" - } -}, -{ - "type": "node", - "id": 10799586102, - "lat": 54.8748027, - "lon": -1.3705211, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10799716665, - "lat": 52.5248081, - "lon": 1.1671777, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-04-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10800126252, - "lat": 56.4831281, - "lon": -3.0123248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 295", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10800141206, - "lat": 56.4831287, - "lon": -3.0123423, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "DD2 3P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10800147153, - "lat": 56.4798866, - "lon": -3.0102887, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "DD2 44P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10800150478, - "lat": 56.4798866, - "lon": -3.0102660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 230", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10800154376, - "lat": 56.4831296, - "lon": -3.0123609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "DD2 4P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10800374931, - "lat": 54.8833775, - "lon": -1.3731219, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10800398114, - "lat": 54.8792455, - "lon": -1.3703453, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SR2 150", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10801004086, - "lat": 51.5891425, - "lon": -0.0750466, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10801974622, - "lat": 53.9209655, - "lon": -1.8193138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS29 802D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10802229098, - "lat": 52.0360248, - "lon": -2.4196026, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR8 740D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10802533991, - "lat": 54.2552488, - "lon": -2.9883248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LA12 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10802772076, - "lat": 51.2016595, - "lon": 0.1257822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN8 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10803868619, - "lat": 51.1792207, - "lon": 0.1554025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN8 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10803942065, - "lat": 50.7075231, - "lon": -4.3264874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10803949509, - "lat": 50.6441545, - "lon": -4.3656499, - "tags": { - "amenity": "post_box", - "mapillary": "894961558443772", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10804734879, - "lat": 56.5835225, - "lon": -3.6283399, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH8 94", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10805397692, - "lat": 53.5141509, - "lon": -2.6010586, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 131", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10805601768, - "lat": 51.6833352, - "lon": -3.2176696, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10805679081, - "lat": 53.3065102, - "lon": -0.4844197, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN2 188" - } -}, -{ - "type": "node", - "id": 10805679082, - "lat": 53.3004688, - "lon": -0.4714716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN2 549" - } -}, -{ - "type": "node", - "id": 10806889681, - "lat": 51.1526399, - "lon": 0.1542512, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TN8 138", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10807495783, - "lat": 54.8481782, - "lon": -1.5180049, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10809108729, - "lat": 51.4864341, - "lon": -0.1198423, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10809108737, - "lat": 51.4864267, - "lon": -0.1198337, - "tags": { - "amenity": "post_box", - "brand": "DHL", - "brand:wikidata": "Q489815", - "operator": "DHL", - "operator:wikidata": "Q489815" - } -}, -{ - "type": "node", - "id": 10809221087, - "lat": 53.1443159, - "lon": 0.3362319, - "tags": { - "amenity": "post_box", - "colour": "silver", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "PE25 200" - } -}, -{ - "type": "node", - "id": 10809221088, - "lat": 53.1443031, - "lon": 0.3362270, - "tags": { - "amenity": "post_box", - "colour": "silver", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "posting_suite", - "ref": "PE25 2000" - } -}, -{ - "type": "node", - "id": 10809221089, - "lat": 53.1478723, - "lon": 0.3321853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE25 12", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10809221090, - "lat": 53.1489474, - "lon": 0.3269509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE25 24" - } -}, -{ - "type": "node", - "id": 10809221091, - "lat": 53.1443287, - "lon": 0.3259391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE25 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10809221101, - "lat": 53.1442076, - "lon": 0.3309903, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE25 18" - } -}, -{ - "type": "node", - "id": 10809221103, - "lat": 53.1402369, - "lon": 0.3378625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "PE25 16" - } -}, -{ - "type": "node", - "id": 10809388479, - "lat": 52.2994438, - "lon": 1.2880339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7069" - } -}, -{ - "type": "node", - "id": 10809388490, - "lat": 52.2963514, - "lon": 1.2521109, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP21 7111" - } -}, -{ - "type": "node", - "id": 10809388491, - "lat": 52.2886939, - "lon": 1.2383149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7078", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10809388492, - "lat": 52.3132808, - "lon": 1.3018851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP21 7079", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10809388494, - "lat": 52.3142030, - "lon": 1.3146546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP21 7077" - } -}, -{ - "type": "node", - "id": 10809640904, - "lat": 51.1088395, - "lon": -4.1673294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10812136899, - "lat": 53.2204315, - "lon": -0.5530083, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN6 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10812141507, - "lat": 53.2157806, - "lon": -0.5552204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "LN6 159", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812141513, - "lat": 53.2063870, - "lon": -0.5713573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "LN6 431", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10812490356, - "lat": 54.1862396, - "lon": -1.4833319, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10812968754, - "lat": 52.7520936, - "lon": -2.8994597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY4 246D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10812968755, - "lat": 52.7538623, - "lon": -2.9417753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY4 340", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968757, - "lat": 52.7473063, - "lon": -3.0451458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "note": "ref obscured (SY22 3...)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968758, - "lat": 52.7505860, - "lon": -3.0666829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY22 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968760, - "lat": 52.7544230, - "lon": -3.0740925, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY22 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10812968761, - "lat": 52.7579699, - "lon": -3.0790675, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY22 142D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10812968765, - "lat": 52.7598108, - "lon": -3.0981008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SY22 225", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968767, - "lat": 52.7336554, - "lon": -3.1024376, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY22 207", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968768, - "lat": 52.7360302, - "lon": -3.0973186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY22 150", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968769, - "lat": 52.7463522, - "lon": -3.0924517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 11:00", - "post_box:type": "lamp", - "ref": "SY22 52", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968770, - "lat": 52.7493624, - "lon": -2.9094253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY4 466D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10812968771, - "lat": 52.7279784, - "lon": -2.8623518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY4 231D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10812968772, - "lat": 52.7262992, - "lon": -2.8180435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY3 199D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10813001226, - "lat": 55.2930214, - "lon": -6.1935341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 08:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT54 81", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10814002688, - "lat": 52.8210812, - "lon": -2.0090389, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10814096324, - "lat": 52.6585068, - "lon": -0.4538370, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10814414897, - "lat": 51.6524596, - "lon": -1.2744649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "OX14 1044" - } -}, -{ - "type": "node", - "id": 10814414898, - "lat": 51.6519560, - "lon": -1.2680551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "OX14 1198" - } -}, -{ - "type": "node", - "id": 10815293132, - "lat": 52.1474003, - "lon": 0.8362151, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10815382406, - "lat": 50.7692403, - "lon": -3.5842994, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10815411130, - "lat": 50.7074415, - "lon": -3.0724309, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX12 57D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411132, - "lat": 50.7102381, - "lon": -3.0781236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 4D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411135, - "lat": 50.7064645, - "lon": -3.0777079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX12 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411144, - "lat": 50.6966487, - "lon": -3.0979659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 76D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411239, - "lat": 50.7082904, - "lon": -3.0775908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 132D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411241, - "lat": 50.7109870, - "lon": -3.0826537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX12 64D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411248, - "lat": 50.6983972, - "lon": -3.0962997, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_pillar", - "post_box:type": "lamp", - "ref": "EX12 129D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411620, - "lat": 50.7046273, - "lon": -3.0740843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 6D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411623, - "lat": 50.7087037, - "lon": -3.0749625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX12 103D", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411624, - "lat": 50.7080077, - "lon": -3.0811559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815411708, - "lat": 50.6999502, - "lon": -3.0962777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 23D", - "survey:date": "2023-04-15" - } -}, -{ - "type": "node", - "id": 10815638183, - "lat": 56.6031929, - "lon": -3.3413517, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 11:45", - "mapillary": "789952522809039", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 113", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 10816407336, - "lat": 52.0818642, - "lon": 0.9333075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IP7 1253", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816485814, - "lat": 51.2811987, - "lon": -1.6553137, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 67D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816491410, - "lat": 51.9912788, - "lon": 0.9986518, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816761249, - "lat": 53.1153759, - "lon": -3.3239615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 60D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816794050, - "lat": 53.1088566, - "lon": -3.3381268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LL15 48D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816794077, - "lat": 53.0719871, - "lon": -3.3552578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 15", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816794078, - "lat": 53.0771256, - "lon": -3.3711221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 18D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10816794079, - "lat": 53.0600406, - "lon": -3.3931808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 08:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 17", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10816923068, - "lat": 52.0230412, - "lon": 0.9114774, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10817057823, - "lat": 52.0949154, - "lon": 0.8346474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1053D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10817164702, - "lat": 52.1984658, - "lon": 0.7980129, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10819764887, - "lat": 51.5151763, - "lon": -0.3835792, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 208D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10819829631, - "lat": 51.5188461, - "lon": -0.3754466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 111", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10819829632, - "lat": 51.5154940, - "lon": -0.3710869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 82D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10819829633, - "lat": 51.5138247, - "lon": -0.3753674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 29D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10819831992, - "lat": 51.5083181, - "lon": -0.3884833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 70D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10819837120, - "lat": 51.5130913, - "lon": -0.3883342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 11D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10819930306, - "lat": 50.7134463, - "lon": -3.2238125, - "tags": { - "amenity": "post_box", - "mapillary": "298608325098787", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10819930307, - "lat": 50.7030964, - "lon": -3.2657315, - "tags": { - "amenity": "post_box", - "mapillary": "555157206235183", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10819930308, - "lat": 50.7531000, - "lon": -3.2680578, - "tags": { - "amenity": "post_box", - "mapillary": "759242379150792", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10820093876, - "lat": 53.3442713, - "lon": -1.3607904, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "post_box:type": "pillar", - "ref": "S20 1619", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10820447101, - "lat": 53.0434680, - "lon": -2.7039859, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 08:15; Su off", - "drive_through": "no", - "note": "wall box situated in own brick pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY14 681", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 10820484622, - "lat": 54.9388765, - "lon": -3.9322916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DG7 2" - } -}, -{ - "type": "node", - "id": 10822653459, - "lat": 51.0360197, - "lon": -3.5515331, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA22 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10822759535, - "lat": 51.2070304, - "lon": -3.9735559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX34 36D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10822759536, - "lat": 51.2226835, - "lon": -3.8917297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX31 41" - } -}, -{ - "type": "node", - "id": 10824139736, - "lat": 52.8055226, - "lon": -2.1051366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "description": "FAIRWAY PILLAR BOX" - } -}, -{ - "type": "node", - "id": 10824139737, - "lat": 52.8073264, - "lon": -2.1028775, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "description": "LITTLEWORTH POST OFFICE", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10824911087, - "lat": 57.1529806, - "lon": -2.1591480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB16 637" - } -}, -{ - "type": "node", - "id": 10824911088, - "lat": 57.1529813, - "lon": -2.1591718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB16 915" - } -}, -{ - "type": "node", - "id": 10824998655, - "lat": 57.1847633, - "lon": -2.0955892, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "AB23 621", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10824998656, - "lat": 57.1881948, - "lon": -2.0999341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "AB23 593" - } -}, -{ - "type": "node", - "id": 10825208593, - "lat": 51.1951424, - "lon": -4.0078586, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX34 24", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10825245692, - "lat": 51.0768483, - "lon": -3.8669595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX31 138D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10825284417, - "lat": 54.3341842, - "lon": -1.4393247, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10825334680, - "lat": 53.0707569, - "lon": -2.7397803, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY14 675", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-19" - } -}, -{ - "type": "node", - "id": 10825588341, - "lat": 51.6847864, - "lon": -1.3493639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX13 1041", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10826658755, - "lat": 57.1349566, - "lon": -2.1386613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB15 590", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10827457348, - "lat": 55.9106414, - "lon": -4.3241220, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G61 1387D" - } -}, -{ - "type": "node", - "id": 10827482572, - "lat": 51.5285345, - "lon": -0.7082113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "SL6 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10827486688, - "lat": 56.4789105, - "lon": -2.9935339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 292D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10827521859, - "lat": 56.4753882, - "lon": -3.0013902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 183D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10827526579, - "lat": 56.4782071, - "lon": -3.0184499, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD2 155D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10827597678, - "lat": 56.5195710, - "lon": -3.0800775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD3 500", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10827624792, - "lat": 56.4913164, - "lon": -3.0142748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 287D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10827912911, - "lat": 57.2104623, - "lon": -2.1876725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "AB21 322" - } -}, -{ - "type": "node", - "id": 10828004853, - "lat": 51.5452736, - "lon": -0.1651222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10828008397, - "lat": 51.5460803, - "lon": -0.1620091, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NW3 22" - } -}, -{ - "type": "node", - "id": 10828024764, - "lat": 57.2037979, - "lon": -2.2838110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB21 432", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10828948883, - "lat": 53.5123159, - "lon": -2.5606776, - "tags": { - "amenity": "post_box", - "check_date": "2022-12", - "colour": "Red", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10828987595, - "lat": 50.6690830, - "lon": -2.5658298, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT3 45D", - "ref:GB:uprn": "10015457935", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10829798697, - "lat": 51.4062097, - "lon": -2.4839271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10829831980, - "lat": 55.9420140, - "lon": -4.3159956, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "G62 560", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10829995734, - "lat": 51.3971580, - "lon": -2.5003535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10830817938, - "lat": 52.9658289, - "lon": -2.6751273, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY13 709D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 10830839315, - "lat": 52.9665609, - "lon": -2.6954679, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 10830845216, - "lat": 52.9795577, - "lon": -2.6801794, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "drive_through": "no", - "note": "wall box situated in own brick pillar on top of small wall.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY13 740D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "survey:date": "2023-04-21" - } -}, -{ - "type": "node", - "id": 10831804761, - "lat": 51.7673071, - "lon": 0.2916950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM5 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10831837705, - "lat": 53.6042441, - "lon": -1.7920191, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HD9 222", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10832101615, - "lat": 51.6008698, - "lon": -0.2000948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N3 20D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10832291783, - "lat": 53.2497136, - "lon": -2.5307606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW8 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10832506234, - "lat": 53.0047798, - "lon": -2.7848862, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "wall box situated in own brick pillar.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 10832506235, - "lat": 53.0219478, - "lon": -2.7639741, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY14 767D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 10832506236, - "lat": 53.0126756, - "lon": -2.8103661, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "drive_through": "no", - "note": "Lamp box attached to old telegraph pole.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "survey:date": "2023-04-22" - } -}, -{ - "type": "node", - "id": 10832976072, - "lat": 52.6299943, - "lon": -2.1152096, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10832978691, - "lat": 49.9540467, - "lon": -6.3527707, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10833027859, - "lat": 52.5939575, - "lon": -2.1281820, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10833758214, - "lat": 53.2714106, - "lon": -3.4954298, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 07:30", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "name": "Glan Clwyd Hospital", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL18 142", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 10833758215, - "lat": 53.2704851, - "lon": -3.5000681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL18 224", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10833758223, - "lat": 53.2699389, - "lon": -3.5084719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LL18 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10833758224, - "lat": 53.2692097, - "lon": -3.5119228, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL18 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10833758234, - "lat": 53.2721934, - "lon": -3.5254909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 08:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL18 144", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10833784999, - "lat": 53.4466272, - "lon": -2.1237047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10833826454, - "lat": 56.7543026, - "lon": -5.8428844, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10834241873, - "lat": 52.0293596, - "lon": 0.7438141, - "tags": { - "amenity": "post_box", - "fixme": "Check precise location", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10834314994, - "lat": 52.4866300, - "lon": -2.1147005, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10834527400, - "lat": 52.4583630, - "lon": 1.3539347, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP20 7096" - } -}, -{ - "type": "node", - "id": 10834530154, - "lat": 52.4355179, - "lon": 1.3338343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "IP20 7013" - } -}, -{ - "type": "node", - "id": 10835641926, - "lat": 52.3707017, - "lon": 1.3691312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7040", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10835641933, - "lat": 52.3746008, - "lon": 1.3697510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7040", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10835653561, - "lat": 52.3942395, - "lon": 1.4109314, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP20 7204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10835730413, - "lat": 50.2091329, - "lon": -4.9424103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 202D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-23" - } -}, -{ - "type": "node", - "id": 10835730420, - "lat": 50.2099147, - "lon": -4.9525741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box design post box embedded into a house", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "TR2 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-07-10" - } -}, -{ - "type": "node", - "id": 10835730424, - "lat": 50.2207303, - "lon": -4.9114995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR2 194D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "survey:date": "2023-04-23" - } -}, -{ - "type": "node", - "id": 10835730513, - "lat": 50.1973295, - "lon": -4.9736691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 148D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-07-03" - } -}, -{ - "type": "node", - "id": 10835730517, - "lat": 50.2171563, - "lon": -4.9063750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box that's been embedded into the stone wall at the roadside", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR2 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-07-03" - } -}, -{ - "type": "node", - "id": 10835730519, - "lat": 50.2436566, - "lon": -4.9138062, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 70D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-06-04" - } -}, -{ - "type": "node", - "id": 10835737206, - "lat": 50.2182432, - "lon": -4.9225012, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 130", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-07-03" - } -}, -{ - "type": "node", - "id": 10835737208, - "lat": 50.2230861, - "lon": -4.9167734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "note": "Letters only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-07-03" - } -}, -{ - "type": "node", - "id": 10835737405, - "lat": 50.2730514, - "lon": -4.9000081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-04-23" - } -}, -{ - "type": "node", - "id": 10836129879, - "lat": 53.0835988, - "lon": -2.1050123, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10836690451, - "lat": 50.3201890, - "lon": -4.9613542, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30; Su off", - "mapillary": "151136594564401", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TR2 184", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10836701533, - "lat": 50.2655471, - "lon": -4.9184877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Very low to ground. Lamp box design embedded in a rendered wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "lamp", - "ref": "TR2 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10836705288, - "lat": 50.3334617, - "lon": -4.9525317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "mapillary": "1932887020439939", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR2 180D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10836775473, - "lat": 51.6772787, - "lon": -1.5039426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "SN7 138", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10836834165, - "lat": 56.4876981, - "lon": -3.0149799, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "note": "Sticker on top of collection plate: \"From 24th April 2023, the last collection from this postbox will be made no earlier than 9am Monday-Friday and 7am on Saturday\". Previous collection_times were Mo-Fri 16:45; Sa 09:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD2 265", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10837777511, - "lat": 50.7456074, - "lon": -2.7420290, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT6 91D", - "ref:GB:uprn": "10015372058", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10837881207, - "lat": 53.4964912, - "lon": -2.6217083, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN4 200", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10837888542, - "lat": 53.4823065, - "lon": -2.6369810, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-22", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10837899854, - "lat": 53.4997100, - "lon": -2.6534865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 246", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10837926900, - "lat": 53.4918720, - "lon": -2.6693638, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 216", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10837934373, - "lat": 53.4948677, - "lon": -2.6649064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN4 250", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10838102362, - "lat": 53.4788937, - "lon": -2.5708991, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 333", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10838106391, - "lat": 53.4714405, - "lon": -2.6056140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 261", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10838116796, - "lat": 53.4709000, - "lon": -2.5997454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA3 255", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10838139515, - "lat": 53.4753620, - "lon": -2.5639972, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 353", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10840323001, - "lat": 53.4919279, - "lon": -2.4989127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10840342487, - "lat": 53.4904147, - "lon": -2.5127717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10840437378, - "lat": 53.2589218, - "lon": -4.4165195, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10840437386, - "lat": 53.2694768, - "lon": -4.4773665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Stryd Fawr (High Street), Parc Yr Ysgol", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL65 51" - } -}, -{ - "type": "node", - "id": 10840444598, - "lat": 51.2143613, - "lon": 0.2269423, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "TN11 23D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey_date": "2023-04-24" - } -}, -{ - "type": "node", - "id": 10842061622, - "lat": 53.5974646, - "lon": -2.2811208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10844399405, - "lat": 56.5875272, - "lon": -3.3866230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 11:45", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH10 109", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10844399790, - "lat": 56.5755624, - "lon": -3.4793502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:45; Sa 10:30", - "manufacturer": "W T Allen & Co London SE1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PH8 153", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10846090013, - "lat": 55.4289617, - "lon": -5.6009669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10846420403, - "lat": 56.3698121, - "lon": -3.8354434, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 36D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10846516161, - "lat": 56.3694296, - "lon": -3.8468582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH7 18D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10846525418, - "lat": 56.3759353, - "lon": -3.8322725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "A. Handyside & Co. Ltd, Derby and London", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH7 20D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10847033941, - "lat": 51.5158013, - "lon": -3.1818256, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10847043697, - "lat": 51.5908498, - "lon": -1.8661077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN5 151", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10847043698, - "lat": 51.5891154, - "lon": -1.8662515, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "825450913014290", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN5 282", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-07-11" - } -}, -{ - "type": "node", - "id": 10847043699, - "lat": 51.5871339, - "lon": -1.8893681, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "418836196494661", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN5 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 10847079308, - "lat": 51.6338791, - "lon": -1.4146332, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX12 1147D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10847500954, - "lat": 52.0573570, - "lon": -2.2667364, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 16:00; Sa 09:30; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "WR8 27", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10848237731, - "lat": 51.3832210, - "lon": -0.8048384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10852989489, - "lat": 50.7051667, - "lon": -3.5279561, - "tags": { - "amenity": "post_box", - "check_date": "2023-04-27", - "collection_times": "Mo-Fr 18:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "EX2 510P", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10855719263, - "lat": 56.3837273, - "lon": -3.8534164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 24", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10855724141, - "lat": 51.3787755, - "lon": -1.4721807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG17 159D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10855731504, - "lat": 51.6629707, - "lon": -1.2892801, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "OX14 1233", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10855762336, - "lat": 51.6643254, - "lon": -1.2991612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "OX14 850" - } -}, -{ - "type": "node", - "id": 10855793152, - "lat": 56.3663341, - "lon": -3.8531307, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH7 34D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10855799165, - "lat": 56.3776883, - "lon": -3.8530642, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "PH7 14D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10855824607, - "lat": 56.3726049, - "lon": -3.8388336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH7 111", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10856338375, - "lat": 52.7009828, - "lon": 0.3653405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE34 481", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10856338376, - "lat": 52.7118030, - "lon": 0.3627762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE34 435", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10856338378, - "lat": 52.7155635, - "lon": 0.3776494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE34 266", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10857037209, - "lat": 50.7143017, - "lon": -3.0704145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX12 122D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 10857037235, - "lat": 50.7243457, - "lon": -2.9464696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DT7 29D", - "ref:GB:uprn": "10015468240", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-04-29" - } -}, -{ - "type": "node", - "id": 10857587541, - "lat": 56.3762024, - "lon": -3.8407762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH7 25D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10857621701, - "lat": 56.3779204, - "lon": -3.8415881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PH7 23D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10857766473, - "lat": 51.4659378, - "lon": 0.0096884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SE3 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10857779874, - "lat": 51.5179217, - "lon": -0.1009806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "note": "just inside the entry on the right hand side; 1 aperture marked \"Stamped Mail\" and the other \"Meter Mail\"", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "EC1A 115", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10857838499, - "lat": 52.8280252, - "lon": -4.5920517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL53 125", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10857842514, - "lat": 52.8216248, - "lon": -4.6188812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL53 129", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10857887813, - "lat": 54.4865563, - "lon": -6.8892308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT70 135D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10858286082, - "lat": 53.2574946, - "lon": -3.4517593, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL17 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858286083, - "lat": 53.2571269, - "lon": -3.4543032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL17 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858286091, - "lat": 53.2548587, - "lon": -3.4515786, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL17 131D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858286098, - "lat": 53.2617346, - "lon": -3.4530073, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LL17 58D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10858286103, - "lat": 53.2581008, - "lon": -3.4456877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858291609, - "lat": 53.2608721, - "lon": -3.4453959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL17 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858291613, - "lat": 53.2526510, - "lon": -3.4376232, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL17 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858683553, - "lat": 52.0196592, - "lon": 0.5097482, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10858706015, - "lat": 52.0226270, - "lon": 0.4907525, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10858723643, - "lat": 57.9888184, - "lon": -4.1557586, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV28 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10858749518, - "lat": 57.8925991, - "lon": -4.3438049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV24 279", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10858749519, - "lat": 57.8893914, - "lon": -4.3446062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IV24 283" - } -}, -{ - "type": "node", - "id": 10859960443, - "lat": 52.0331433, - "lon": 0.6505032, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10860002714, - "lat": 52.0683053, - "lon": 0.6229022, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10860030941, - "lat": 52.0517989, - "lon": 0.5464111, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10860826983, - "lat": 51.5934269, - "lon": 0.7408108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "SS4 171" - } -}, -{ - "type": "node", - "id": 10860865420, - "lat": 53.5454924, - "lon": -2.1147952, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10860868067, - "lat": 53.2834537, - "lon": 0.1147410, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10860988095, - "lat": 51.5304198, - "lon": -0.7144908, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SL6 37", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10861033801, - "lat": 51.5356127, - "lon": 0.7606583, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS1 169", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10861048507, - "lat": 51.5383672, - "lon": 0.7636223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS1 376" - } -}, -{ - "type": "node", - "id": 10861060195, - "lat": 51.3829729, - "lon": 0.6242507, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "ME8 302D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10861060196, - "lat": 51.3841693, - "lon": 0.5940719, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "ME7 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10861386372, - "lat": 51.4088165, - "lon": -3.4871051, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CF61 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10862352359, - "lat": 51.5991090, - "lon": 0.6592610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS5 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10862909410, - "lat": 53.4531625, - "lon": -2.6568329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10863607251, - "lat": 51.5400445, - "lon": 0.7211565, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS1 44" - } -}, -{ - "type": "node", - "id": 10863607743, - "lat": 51.5511753, - "lon": 0.6145308, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS7 216", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10863607749, - "lat": 51.5505203, - "lon": 0.6187745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS7 61", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10863657552, - "lat": 51.6199978, - "lon": 0.6201271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SS5 7" - } -}, -{ - "type": "node", - "id": 10864293696, - "lat": 51.4054458, - "lon": -2.4894802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10864526482, - "lat": 51.5824585, - "lon": 0.7028577, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SS4 237", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10864526492, - "lat": 51.5786050, - "lon": 0.7072442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "SS4 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10864584369, - "lat": 51.5426919, - "lon": 0.6534073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS9 245;SS9 2455", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10864584370, - "lat": 51.5426918, - "lon": 0.6534242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS9 2456;SS9 2457", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10864986018, - "lat": 51.1548815, - "lon": 0.8621076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "source": "survey", - "survey:date": "2023-05-02" - } -}, -{ - "type": "node", - "id": 10865721208, - "lat": 51.9293409, - "lon": 0.6988266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO6 225" - } -}, -{ - "type": "node", - "id": 10865767758, - "lat": 51.5703444, - "lon": 0.4679259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS14 299", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10865915700, - "lat": 51.5203045, - "lon": 0.5850819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS8 296" - } -}, -{ - "type": "node", - "id": 10865915701, - "lat": 51.5200578, - "lon": 0.5803617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SS8 230", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10865915702, - "lat": 51.5155519, - "lon": 0.5802805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SS8 427", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "http://www.geograph.org.uk/photo/1212390" - } -}, -{ - "type": "node", - "id": 10865936704, - "lat": 51.7294574, - "lon": 0.3719743, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM1 43", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10865992605, - "lat": 51.7225133, - "lon": 0.3740786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM1 11", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10867902478, - "lat": 57.4474218, - "lon": -4.2489959, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV2 461D" - } -}, -{ - "type": "node", - "id": 10869356623, - "lat": 51.7005026, - "lon": 0.1131594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM16 3351;CM16 351", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10869356624, - "lat": 51.7036629, - "lon": 0.1096463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM16 349" - } -}, -{ - "type": "node", - "id": 10869356640, - "lat": 51.7012277, - "lon": 0.1066443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM16 311" - } -}, -{ - "type": "node", - "id": 10869452863, - "lat": 51.7246526, - "lon": 0.1813085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM16 309" - } -}, -{ - "type": "node", - "id": 10870605548, - "lat": 51.7718673, - "lon": 0.0938881, - "tags": { - "amenity": "post_box", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CM20 2223;CM20 223", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10871848370, - "lat": 56.0195925, - "lon": -4.7804583, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10871848371, - "lat": 56.0181695, - "lon": -4.7752441, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10871848372, - "lat": 56.0230564, - "lon": -4.7773827, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10871879053, - "lat": 52.1915282, - "lon": 1.1696152, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10871882793, - "lat": 52.2177028, - "lon": 1.2347841, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10872133850, - "lat": 51.8697420, - "lon": 0.2700860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM22 210", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10872190675, - "lat": 51.1270526, - "lon": -4.2310774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX33 171D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10872204898, - "lat": 51.6196316, - "lon": 0.4175681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM12 490" - } -}, -{ - "type": "node", - "id": 10872228646, - "lat": 52.1793486, - "lon": 1.2741395, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10872327839, - "lat": 52.1600052, - "lon": 1.2954549, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP13 6295" - } -}, -{ - "type": "node", - "id": 10872339195, - "lat": 52.1513648, - "lon": 1.2202828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP6 1269", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10872581406, - "lat": 50.8220048, - "lon": -3.0279224, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10873404525, - "lat": 54.7559352, - "lon": -1.3237863, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10873518618, - "lat": 53.1816205, - "lon": -2.9101789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10873518619, - "lat": 53.1792136, - "lon": -2.9050490, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH4 62D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10873518620, - "lat": 53.1762921, - "lon": -2.9428565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "drive_through": "no", - "note": "Priority Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 51", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10873518622, - "lat": 53.1779099, - "lon": -2.9427806, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH4 393D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10873518623, - "lat": 53.1820629, - "lon": -2.9467597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CH4 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10873877915, - "lat": 53.6011889, - "lon": -1.7958822, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HD9 188D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10874883314, - "lat": 54.2248956, - "lon": -1.7039614, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10874883315, - "lat": 54.2209283, - "lon": -1.7213842, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10875499188, - "lat": 51.7824109, - "lon": -1.4807795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 08:00", - "ref": "OX29 940", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10876248643, - "lat": 53.6200661, - "lon": -1.5670604, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10876371088, - "lat": 53.4957708, - "lon": -2.5743525, - "tags": { - "amenity": "post_box", - "check_date": "2023-05-07", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10876407104, - "lat": 59.1293302, - "lon": -3.1388408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KW17 70", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10876572750, - "lat": 54.5199131, - "lon": -1.4726146, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10876589694, - "lat": 53.5239414, - "lon": -3.0260094, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10876676943, - "lat": 51.1512129, - "lon": 0.8629367, - "tags": { - "amenity": "post_box", - "note": "If travelling in a motor vehicle, this oostbox may be obscured by parked vehicles.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN23 96", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10876744434, - "lat": 53.3183881, - "lon": -3.7816156, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10877049032, - "lat": 51.5232804, - "lon": -2.4852695, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "112291605193492", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BS36 480D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 10877408499, - "lat": 51.5283713, - "lon": 0.1884658, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877415747, - "lat": 51.5514785, - "lon": 0.1550394, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10877425659, - "lat": 51.5152507, - "lon": 0.1737574, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 10877425660, - "lat": 51.5152621, - "lon": 0.1737663, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877449253, - "lat": 51.5357061, - "lon": 0.1861204, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877449254, - "lat": 51.5405273, - "lon": 0.1926260, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877562380, - "lat": 51.5420523, - "lon": 0.1972498, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877562381, - "lat": 51.5364175, - "lon": 0.2001414, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10877822598, - "lat": 51.4977258, - "lon": 0.2286709, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 10877822599, - "lat": 51.4977223, - "lon": 0.2286590, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877822600, - "lat": 51.4951395, - "lon": 0.2510014, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10877845824, - "lat": 51.4827865, - "lon": 0.2318697, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10877845825, - "lat": 51.4804232, - "lon": 0.2378529, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10878158704, - "lat": 54.5046427, - "lon": -1.4577739, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 10879140783, - "lat": 52.6250916, - "lon": -0.4054036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "PE9 55", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10879199921, - "lat": 56.0993354, - "lon": -3.9359956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK7 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10879199929, - "lat": 56.0940676, - "lon": -3.9209497, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK7 200D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10879210183, - "lat": 56.0297158, - "lon": -3.8303339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 74D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10879210185, - "lat": 56.0242949, - "lon": -3.8239731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 67D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10879210186, - "lat": 56.0279855, - "lon": -3.8370951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 192", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10879225549, - "lat": 56.1281794, - "lon": -4.0568861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK8 60D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10879554957, - "lat": 53.1075017, - "lon": -2.9507632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10879554960, - "lat": 53.1082711, - "lon": -2.9428471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10879554962, - "lat": 53.1122147, - "lon": -2.9621590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10879614730, - "lat": 54.5923264, - "lon": -6.8336321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10879639735, - "lat": 53.3987003, - "lon": -2.0733909, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10879654873, - "lat": 54.8808884, - "lon": -6.7190702, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10879666559, - "lat": 54.7498698, - "lon": -6.3192585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10879710216, - "lat": 54.3692097, - "lon": -6.5898685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10879721024, - "lat": 54.5347300, - "lon": -5.9474024, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10881603903, - "lat": 56.0061888, - "lon": -5.1197550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PA23 62D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10881731054, - "lat": 55.9539386, - "lon": -4.8305424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA19 64D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10881747336, - "lat": 55.9792761, - "lon": -4.9457078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PA23 61", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10881764783, - "lat": 55.9525634, - "lon": -4.8219426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA19 103D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10881786761, - "lat": 55.9535707, - "lon": -4.8164870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PA19 34D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10881968542, - "lat": 52.5527427, - "lon": -2.7953213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10883729368, - "lat": 51.6122133, - "lon": -0.5558886, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "pillar", - "ref": "SL9 108D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10884068023, - "lat": 56.7018194, - "lon": -3.7301204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH16 2", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 10884326007, - "lat": 52.0401661, - "lon": -2.7405850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10886485727, - "lat": 52.6650176, - "lon": -2.8361996, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10887590447, - "lat": 53.4863504, - "lon": -2.1894030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M11 457D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10887634351, - "lat": 51.2527929, - "lon": -1.6056329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP11 37", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10887660319, - "lat": 53.4761243, - "lon": -2.1791783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "M11 455D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10887747641, - "lat": 53.4658596, - "lon": -2.1801239, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "post_box:type": "pillar", - "ref": "M18 708D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10889475838, - "lat": 51.4110543, - "lon": -0.4436768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10889504088, - "lat": 51.4127753, - "lon": -0.4435840, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10889600214, - "lat": 54.0378451, - "lon": -2.1557430, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10892628932, - "lat": 53.4786524, - "lon": -2.1827690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M11 399D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10892663646, - "lat": 52.9481769, - "lon": 0.4992510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE36 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10892737547, - "lat": 53.4832744, - "lon": -2.1881041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M11 287D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10892744133, - "lat": 53.4817088, - "lon": -2.1941049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "M11 298D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10893009545, - "lat": 52.9440928, - "lon": 0.4954201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PE36 310D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10893034562, - "lat": 51.0800536, - "lon": -4.0565336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "wall", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10893853477, - "lat": 56.0185180, - "lon": -3.6070008, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date:collection_times": "2024-07-09", - "collection_times": "Mo-Fr 17:15; Sa 12:15", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EH51 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10893870796, - "lat": 52.6472495, - "lon": 1.3230221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:45; Sa 13:30", - "note": "Custom posting suite, including clock", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "NR7 744", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10894784784, - "lat": 51.9357562, - "lon": -3.4149433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LD3 339D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10894974511, - "lat": 51.2291208, - "lon": -3.8263081, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX35 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 10895023776, - "lat": 50.8468673, - "lon": 0.4241281, - "tags": { - "addr:city": "Bexhill-on-Sea", - "addr:street": "Levetts Wood", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TN39 91D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:PB Levetts Wood TN39.jpg" - } -}, -{ - "type": "node", - "id": 10896224607, - "lat": 51.1879675, - "lon": -2.4746723, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10896327105, - "lat": 52.6213615, - "lon": -1.0896178, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LE5 440D", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 10896516380, - "lat": 52.0747275, - "lon": 0.8918278, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1095D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-05-14" - } -}, -{ - "type": "node", - "id": 10896559603, - "lat": 52.0823823, - "lon": 0.9201211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1200", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10896560845, - "lat": 52.0960625, - "lon": 0.9171267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP7 1038", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 10896918614, - "lat": 50.7867720, - "lon": -3.2669804, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10898859028, - "lat": 51.2016237, - "lon": -3.8845472, - "tags": { - "amenity": "post_box", - "mapillary": "280835697614392", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10898878927, - "lat": 51.1286298, - "lon": -4.0125585, - "tags": { - "amenity": "post_box", - "mapillary": "869298733626614", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10900907711, - "lat": 53.3100754, - "lon": -0.5771801, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10903127102, - "lat": 53.2764866, - "lon": -2.9371034, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10905234884, - "lat": 51.5904502, - "lon": 0.5915710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SS6 414", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10905948132, - "lat": 51.5849218, - "lon": 0.5113512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SS13 458", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10905948133, - "lat": 51.5878858, - "lon": 0.5157274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SS13 470;SS13 4701", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10905948134, - "lat": 51.5878629, - "lon": 0.5157318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SS13 4708" - } -}, -{ - "type": "node", - "id": 10906006501, - "lat": 51.6389015, - "lon": 0.4717063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM11 500" - } -}, -{ - "type": "node", - "id": 10906008915, - "lat": 51.6360577, - "lon": 0.4738004, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM11 87", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10906093522, - "lat": 51.6115181, - "lon": 0.5192210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SS12 1139" - } -}, -{ - "type": "node", - "id": 10906093523, - "lat": 51.6115174, - "lon": 0.5192392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "SS12 139", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 10907604240, - "lat": 51.3995508, - "lon": -2.4857389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10908735192, - "lat": 51.8729598, - "lon": 0.3623461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CM6 208", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10909370293, - "lat": 51.1116989, - "lon": -4.0748119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10910827619, - "lat": 53.5237883, - "lon": -2.5976115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 118", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10912245470, - "lat": 51.0875311, - "lon": -2.3243916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA12 71D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10912684751, - "lat": 51.4808211, - "lon": 0.3246637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "RM17 14", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10913127523, - "lat": 56.2953438, - "lon": -2.9778126, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 273", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10913180432, - "lat": 52.5400662, - "lon": 0.0850830, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10913180534, - "lat": 52.5448648, - "lon": 0.0874225, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10914738876, - "lat": 52.5208807, - "lon": -1.0311390, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10915063126, - "lat": 50.1816393, - "lon": -4.9760658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2023-05-20" - } -}, -{ - "type": "node", - "id": 10915605242, - "lat": 57.3310912, - "lon": -2.1704468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB41 360" - } -}, -{ - "type": "node", - "id": 10916674196, - "lat": 53.3749028, - "lon": -4.5478299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 11:30", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL65 39", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10916714855, - "lat": 53.3710934, - "lon": -4.5521071, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10916723766, - "lat": 53.3152669, - "lon": -4.5324946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 10:30", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL65 36", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10916723767, - "lat": 53.3118891, - "lon": -4.5303162, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10918338817, - "lat": 51.8446445, - "lon": 0.7150280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "798604327682822", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO5 134", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10918361197, - "lat": 51.4024012, - "lon": -0.6650047, - "tags": { - "amenity": "post_box", - "ref": "SL5 83" - } -}, -{ - "type": "node", - "id": 10921145585, - "lat": 51.9338609, - "lon": 0.2562768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CM22 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10922102970, - "lat": 50.9648928, - "lon": -2.4594757, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT9 69D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10922102985, - "lat": 50.9733336, - "lon": -2.4619769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT9 75D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10922102995, - "lat": 50.9685811, - "lon": -2.4575043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT9 282D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10922457436, - "lat": 51.7750919, - "lon": 0.0364436, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM19 44D" - } -}, -{ - "type": "node", - "id": 10922721099, - "lat": 51.9444332, - "lon": -0.0214668, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SG9 48" - } -}, -{ - "type": "node", - "id": 10924636060, - "lat": 51.5969746, - "lon": 0.3487301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "CM13 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10924636068, - "lat": 51.5948426, - "lon": 0.3646107, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM13 101", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10926760156, - "lat": 56.4814423, - "lon": -2.9863453, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 164", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10926784905, - "lat": 56.4835909, - "lon": -2.9884028, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 209D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10927643245, - "lat": 52.3693577, - "lon": -2.6248244, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10928138628, - "lat": 53.3188042, - "lon": -0.9542274, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10928138629, - "lat": 53.3172203, - "lon": -0.9576875, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10928878327, - "lat": 52.7253253, - "lon": -3.9197412, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 2D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10928878333, - "lat": 52.7419303, - "lon": -3.8848061, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "note": "Box in wall of Royal Mail delivery office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL40 1", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10929011004, - "lat": 52.6866661, - "lon": -3.4635822, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10929228357, - "lat": 51.4120669, - "lon": -2.4934072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10929306364, - "lat": 54.3257450, - "lon": -1.5421907, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10929770241, - "lat": 59.0881009, - "lon": -3.0485408, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10930127238, - "lat": 51.5696242, - "lon": -4.0020289, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10931187003, - "lat": 51.1431418, - "lon": -0.6458773, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10931672605, - "lat": 51.7836429, - "lon": -1.9022646, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "452029172926070", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-07-22" - } -}, -{ - "type": "node", - "id": 10931676849, - "lat": 54.3237309, - "lon": -1.5380208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10931685880, - "lat": 51.5448507, - "lon": -0.2970739, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10931686552, - "lat": 51.6298055, - "lon": -2.0734458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "566639471013091", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-08-04" - } -}, -{ - "type": "node", - "id": 10931686669, - "lat": 51.7099635, - "lon": 0.2478571, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM5 11" - } -}, -{ - "type": "node", - "id": 10931686671, - "lat": 51.7007335, - "lon": 0.2425941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM5 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10931799281, - "lat": 51.2048531, - "lon": -2.6515010, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10931835436, - "lat": 57.3226049, - "lon": -2.0007524, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB41 254D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10931852311, - "lat": 57.3173589, - "lon": -2.0034519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB41 407", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10933749832, - "lat": 51.3236978, - "lon": -2.1974182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "BA14 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10934377704, - "lat": 53.5646049, - "lon": -2.3155147, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10934471893, - "lat": 50.8582651, - "lon": -2.7511178, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10934581616, - "lat": 55.9978021, - "lon": -3.7830963, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10935062795, - "lat": 51.7014916, - "lon": -2.6122061, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10935175357, - "lat": 51.7051879, - "lon": -3.0453991, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 10935232682, - "lat": 51.6383724, - "lon": -3.8252550, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 10936631278, - "lat": 51.3174858, - "lon": -2.2839092, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10936631279, - "lat": 51.3143514, - "lon": -2.2548711, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10936631280, - "lat": 51.3176280, - "lon": -2.2191870, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "486483629138024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR", - "survey:date": "2021-04-01" - } -}, -{ - "type": "node", - "id": 10937115173, - "lat": 50.6099267, - "lon": -1.9937917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BH19 96D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10937115176, - "lat": 50.6073810, - "lon": -1.9798813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BH19 228D", - "ref:GB:uprn": "10015460171", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10937115183, - "lat": 50.6363123, - "lon": -1.9486833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2021-03-11", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH19 224D", - "ref:GB:uprn": "10015303633", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10937115201, - "lat": 50.6412480, - "lon": -1.9595222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH19 168D", - "ref:GB:uprn": "10015304033", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10937163621, - "lat": 55.7903299, - "lon": -3.9926576, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ML1 500" - } -}, -{ - "type": "node", - "id": 10937211199, - "lat": 55.8119016, - "lon": -4.0149156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10937303310, - "lat": 52.5475136, - "lon": -1.2777668, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10937764884, - "lat": 52.5374746, - "lon": -1.2799056, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10937876780, - "lat": 51.8861793, - "lon": -1.7703936, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10938862203, - "lat": 50.7400071, - "lon": -2.1065935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2022-12-16", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BH16 86D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10940203337, - "lat": 51.4057518, - "lon": -3.4643649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF61 56", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10940203338, - "lat": 51.4031472, - "lon": -3.4781458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF61 111D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10940370303, - "lat": 53.5242001, - "lon": -1.7385607, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "S81 11", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10941549530, - "lat": 50.1826390, - "lon": -5.0096385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10942217184, - "lat": 53.3916843, - "lon": -2.0609370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "SK6 51D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10942547985, - "lat": 51.6790612, - "lon": 0.2932497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM15 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10942547986, - "lat": 51.6811487, - "lon": 0.2901690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM15 137", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10942547988, - "lat": 51.6823972, - "lon": 0.2906067, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CM15 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10943668385, - "lat": 52.8389015, - "lon": -4.6999750, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL53 19D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10944044962, - "lat": 56.2229549, - "lon": -2.7067660, - "tags": { - "amenity": "post_box", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KY10 404" - } -}, -{ - "type": "node", - "id": 10944818758, - "lat": 53.8650933, - "lon": -2.1655110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB8 346D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10944823517, - "lat": 53.8924630, - "lon": -2.3547897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB7 443", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 10944823518, - "lat": 53.8934382, - "lon": -2.3489177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BB7 442D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10945986289, - "lat": 53.5572725, - "lon": -2.1982674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10945986290, - "lat": 53.5580757, - "lon": -2.1953718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10945986291, - "lat": 53.5646745, - "lon": -2.2049652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10946385700, - "lat": 56.4872058, - "lon": -3.0057369, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co Ltd Falkirk", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DD3 229D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10946717694, - "lat": 56.4963779, - "lon": -3.0176732, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD3 300D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10946740078, - "lat": 56.4880831, - "lon": -2.9852335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:45", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "DD3 33", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10946754451, - "lat": 56.4867610, - "lon": -2.9920813, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Eng", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DD3 83D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10946790913, - "lat": 56.4901811, - "lon": -2.9981366, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 57", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10946800366, - "lat": 56.4928634, - "lon": -3.0098145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 154", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10946801767, - "lat": 56.4940199, - "lon": -3.0188914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD3 268D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10948596336, - "lat": 51.7241505, - "lon": 0.4897740, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-06-03", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM2 428", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10948596337, - "lat": 51.7340096, - "lon": 0.4911058, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-06-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM2 304D" - } -}, -{ - "type": "node", - "id": 10948596338, - "lat": 51.7314746, - "lon": 0.4897050, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "check_date:collection_times": "2023-06-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CM2 285D" - } -}, -{ - "type": "node", - "id": 10949109835, - "lat": 51.8711097, - "lon": -2.0922424, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GL51 197D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10950091485, - "lat": 56.1152468, - "lon": -3.8041392, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10951059442, - "lat": 52.3397085, - "lon": -2.0547090, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-04", - "collection_times": "Mo-Fr 17:15; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "B61 757" - } -}, -{ - "type": "node", - "id": 10951446969, - "lat": 53.7026754, - "lon": -2.8407906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR4 27", - "source": "streetlevel_imagery" - } -}, -{ - "type": "node", - "id": 10951460928, - "lat": 53.6801254, - "lon": -2.8313690, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR4 246", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10951479750, - "lat": 51.6370799, - "lon": -3.0255045, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:00", - "colour": "red", - "covered": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "NP44 307", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 10951773493, - "lat": 51.6047430, - "lon": -1.2712632, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-06-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10951982016, - "lat": 53.5575202, - "lon": -1.8194267, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HD9 178D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10954983043, - "lat": 52.7754636, - "lon": -4.0922235, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10955141643, - "lat": 55.7843033, - "lon": -4.0489055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "ML3 24D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10955219189, - "lat": 52.8459787, - "lon": -4.1098420, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10955614062, - "lat": 52.8894353, - "lon": -4.0609806, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10955913335, - "lat": 54.4289618, - "lon": -7.1315784, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10956031104, - "lat": 53.3173005, - "lon": -3.4090162, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10957700435, - "lat": 56.3516252, - "lon": -3.2304843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY14 338D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10957765234, - "lat": 56.3498794, - "lon": -3.2468789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W. T. Allen & Co London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KY14 332D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10958473355, - "lat": 55.7448517, - "lon": -3.8801409, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10958473391, - "lat": 55.7538086, - "lon": -3.8777815, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10958514061, - "lat": 55.7360232, - "lon": -3.8471362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10958514081, - "lat": 55.7377522, - "lon": -3.8430928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "hovis", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "ML8 61", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 10958514083, - "lat": 55.7386206, - "lon": -3.8382124, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML8 120", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10958514084, - "lat": 55.7342138, - "lon": -3.8289485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10960107500, - "lat": 52.7855334, - "lon": -0.3840480, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "#ff0000", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10960137468, - "lat": 52.0743684, - "lon": -3.1252553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HR3 231", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10960227369, - "lat": 51.0432591, - "lon": -2.8218519, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10960232531, - "lat": 51.0402089, - "lon": -2.8266844, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "215053944623734", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "survey:date": "2023-04-08" - } -}, -{ - "type": "node", - "id": 10960232532, - "lat": 51.0445228, - "lon": -2.8241835, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 10960455041, - "lat": 54.2561332, - "lon": -5.7722504, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10960602228, - "lat": 51.0386044, - "lon": -4.2114510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10961085351, - "lat": 50.1578823, - "lon": -5.0090658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 221D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10961260549, - "lat": 51.6113361, - "lon": -0.4231744, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10961398953, - "lat": 51.4163382, - "lon": -2.4933280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10962547229, - "lat": 56.0036200, - "lon": -3.8194754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 10962552052, - "lat": 51.0514390, - "lon": -4.1981484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10963625689, - "lat": 53.6977728, - "lon": -2.8384504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR4 276", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10963625699, - "lat": 53.7084753, - "lon": -2.8465238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PR4 260", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 10964428025, - "lat": 51.6215387, - "lon": -0.2750094, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "HA8 769D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10964428026, - "lat": 51.6180581, - "lon": -0.2806039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "HA8 714D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10967387234, - "lat": 51.8723316, - "lon": -1.1144532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OX25 737D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10967497987, - "lat": 56.8312294, - "lon": -2.4725994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB30 70" - } -}, -{ - "type": "node", - "id": 10967996968, - "lat": 51.0402916, - "lon": -4.2093883, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10969042819, - "lat": 50.9849339, - "lon": -4.3028177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 124D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10969141250, - "lat": 55.8550641, - "lon": -4.3284004, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10969771325, - "lat": 51.4970876, - "lon": 0.1603203, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DA17 4181P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 10969771326, - "lat": 51.4901280, - "lon": 0.1622165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA17 119", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10969771327, - "lat": 51.4887655, - "lon": 0.1497679, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DA17 127D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10969771328, - "lat": 51.4859364, - "lon": 0.1485472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DA17 128D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10969830159, - "lat": 52.6431358, - "lon": -2.0552220, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WV11 504", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10971544170, - "lat": 55.8272005, - "lon": -4.2534956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 10971809463, - "lat": 51.7703889, - "lon": 0.8155627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Georgian Hovis lamp box was knocked down and replaced with this more modern lamp box", - "post_box:type": "lamp", - "ref": "CM9 371D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10971820819, - "lat": 55.8611300, - "lon": -4.5405312, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10973438572, - "lat": 59.0467955, - "lon": -3.0830629, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 10973714371, - "lat": 55.7565278, - "lon": -2.0015401, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 47D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 10973739936, - "lat": 55.7537521, - "lon": -1.9959658, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 12D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 10973741198, - "lat": 55.7590863, - "lon": -2.0026490, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 21D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 10975118409, - "lat": 53.4987107, - "lon": -2.2201056, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10977010584, - "lat": 50.9555796, - "lon": -4.1473672, - "tags": { - "amenity": "post_box", - "mapillary": "870570421278671", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10977010588, - "lat": 50.9005442, - "lon": -4.1655273, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "534316985428363", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX38 64D" - } -}, -{ - "type": "node", - "id": 10977010591, - "lat": 50.9098287, - "lon": -4.1474724, - "tags": { - "amenity": "post_box", - "note": "position aproximate from memory", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 10977010592, - "lat": 50.8942546, - "lon": -4.1692180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "221848634044102", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source:position": "Mapillary 2023-06-11", - "survey:date": "2023-06-11" - } -}, -{ - "type": "node", - "id": 10978309958, - "lat": 50.1609324, - "lon": -5.0168503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR2 224D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10979013974, - "lat": 51.6031968, - "lon": 0.6480430, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10979721436, - "lat": 51.4530782, - "lon": -0.4313559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TW14 436D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 10979721437, - "lat": 51.4595469, - "lon": -0.4146626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "note": "Inside main entrance", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor", - "post_box:type": "pillar", - "ref": "TW14 456", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10980905008, - "lat": 50.8797571, - "lon": -1.0455385, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PO7 380", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10981528985, - "lat": 53.8126890, - "lon": -1.7609407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "note": "This postbox is designed to take parcels, and is separate from the one next to it which takes letters.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BD2 109", - "website": "https://www.royalmail.com/services-near-you/parcel-postbox/hillam-road-business-box-bd2-1qn/0000BD2109" - } -}, -{ - "type": "node", - "id": 10982270705, - "lat": 52.6596464, - "lon": -1.1782153, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 10983078148, - "lat": 55.1066692, - "lon": -6.6091451, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 10983172363, - "lat": 50.1891358, - "lon": -4.9719282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR2 210D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10983172364, - "lat": 50.2161415, - "lon": -4.9860990, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 82D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 10984475957, - "lat": 55.9750297, - "lon": -4.5846918, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 10984543696, - "lat": 55.7788585, - "lon": -3.9543065, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10984552055, - "lat": 55.7806051, - "lon": -3.9574412, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10984552071, - "lat": 55.9500088, - "lon": -4.8127932, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10984552076, - "lat": 55.9575942, - "lon": -4.8135798, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10984594816, - "lat": 55.9617403, - "lon": -4.8180567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10984594817, - "lat": 55.9612350, - "lon": -4.8210999, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10989304914, - "lat": 51.5632919, - "lon": 0.2132336, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10989315608, - "lat": 51.5692415, - "lon": 0.2128098, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 10990007880, - "lat": 56.0721575, - "lon": -3.7153798, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK10 69D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10990017738, - "lat": 56.0676933, - "lon": -3.7189452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK10 31", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 10991635076, - "lat": 56.8287116, - "lon": -2.4724217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB30 19" - } -}, -{ - "type": "node", - "id": 11001543819, - "lat": 55.9405246, - "lon": -4.8077871, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11001575186, - "lat": 55.9449757, - "lon": -4.7765097, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11002081538, - "lat": 52.3399300, - "lon": -3.8966604, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11003111870, - "lat": 51.5802410, - "lon": -3.0202498, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 11003361101, - "lat": 55.9878879, - "lon": -4.8432362, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11003395656, - "lat": 54.0703579, - "lon": -1.8403808, - "tags": { - "amenity": "post_box", - "ref": "HG3 237" - } -}, -{ - "type": "node", - "id": 11003413082, - "lat": 55.9942069, - "lon": -4.8954840, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11003444319, - "lat": 51.4876579, - "lon": -3.2772032, - "tags": { - "amenity": "post_box", - "post_box:design": "hovis", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11004051811, - "lat": 59.0235666, - "lon": -3.0964299, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "KW17 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11004580203, - "lat": 54.9305887, - "lon": -5.0949347, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11004960035, - "lat": 52.9520968, - "lon": -2.8662309, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11004963465, - "lat": 52.9058909, - "lon": -3.9140625, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11004973483, - "lat": 52.9068833, - "lon": 0.7552423, - "tags": { - "amenity": "post_box", - "post_box:design": "ludlow", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11005563715, - "lat": 53.7906728, - "lon": -1.8512667, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11005706901, - "lat": 52.4047791, - "lon": 1.5410357, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11006421763, - "lat": 51.8952631, - "lon": -4.9059563, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11006437239, - "lat": 51.8872610, - "lon": -5.0990375, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11007819491, - "lat": 55.9467243, - "lon": -4.7531520, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11013882582, - "lat": 52.7848866, - "lon": 0.6581202, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE32 96" - } -}, -{ - "type": "node", - "id": 11013955848, - "lat": 52.9278626, - "lon": 0.8338706, - "tags": { - "amenity": "post_box", - "post_box:design": "2010_pattern", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11018087874, - "lat": 52.9802435, - "lon": -3.3775154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LL21 35D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11018779275, - "lat": 50.4094737, - "lon": -4.6626711, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "ref": "PL22 130D" - } -}, -{ - "type": "node", - "id": 11020094760, - "lat": 51.2052580, - "lon": -0.7404022, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "GU10 148D", - "royal_cypher": "GR", - "support": "wall_mounted" - } -}, -{ - "type": "node", - "id": 11020109374, - "lat": 51.2217199, - "lon": -0.1326185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH1 9D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11020109375, - "lat": 51.2312989, - "lon": -0.1302899, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH1 84D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11020109376, - "lat": 51.2344416, - "lon": -0.1358633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH1 61D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11023623378, - "lat": 51.7747838, - "lon": -2.8864117, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11024831200, - "lat": 51.4114267, - "lon": -1.1239449, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG7 358D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11025070660, - "lat": 51.4087799, - "lon": -2.5079814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11025354419, - "lat": 51.8191227, - "lon": 1.1495680, - "tags": { - "amenity": "post_box", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "CO16 195", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11027226781, - "lat": 50.3515707, - "lon": -4.9330384, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 77D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027336845, - "lat": 50.2398407, - "lon": -5.0047183, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR2 79D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027336846, - "lat": 50.2405023, - "lon": -4.9539856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Wall box in side of church lych gate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR2 84D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027336847, - "lat": 50.2666758, - "lon": -4.9123076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 86D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027336849, - "lat": 50.2126570, - "lon": -4.9704838, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 92D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027387735, - "lat": 50.2250638, - "lon": -4.9492305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 142D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027387736, - "lat": 50.2805677, - "lon": -4.9922803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 145D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027392944, - "lat": 50.2930669, - "lon": -4.9365370, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR2 97D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027392945, - "lat": 50.3159425, - "lon": -4.9277090, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027410924, - "lat": 50.2918571, - "lon": -4.9464478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11027410925, - "lat": 50.3355940, - "lon": -4.9087033, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "pillar", - "post_box:type": "wall", - "ref": "TR2 122D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11029947102, - "lat": 56.5583873, - "lon": -5.3998532, - "tags": { - "amenity": "post_box", - "ref": "PA38 14", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11030545012, - "lat": 51.6790215, - "lon": -4.7735425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "SA70 107D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11032136749, - "lat": 53.6071827, - "lon": -1.7780195, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "HD9 457D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11032984800, - "lat": 50.8259512, - "lon": -2.9685634, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-08-17", - "wikimedia_commons": "File:The Trading Post, Tytherleigh - geograph.org.uk - 5272863.jpg" - } -}, -{ - "type": "node", - "id": 11033278039, - "lat": 54.3023285, - "lon": -6.0672541, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11033300694, - "lat": 55.7955077, - "lon": -2.1170264, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 66D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 11033346177, - "lat": 52.5424379, - "lon": -2.0631692, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11033411410, - "lat": 55.8070420, - "lon": -2.3380411, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11034511924, - "lat": 53.7093940, - "lon": -1.9075715, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11034839625, - "lat": 57.3210291, - "lon": -4.4929343, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV63 242", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11035514302, - "lat": 53.7100774, - "lon": -1.9448945, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11035750722, - "lat": 57.3355140, - "lon": -4.4800620, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 15:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IV63 141", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11037614222, - "lat": 55.8190727, - "lon": -4.2191173, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11037743791, - "lat": 50.6768999, - "lon": -2.2455467, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DT2 501", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11037787393, - "lat": 51.8794927, - "lon": 0.7844398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CO6 330", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11038156927, - "lat": 51.5147352, - "lon": -0.1909237, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 29D;W2 229D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11038156928, - "lat": 51.5101093, - "lon": -0.1951984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 37D;W2 237D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11038156930, - "lat": 51.5048685, - "lon": -0.1886109, - "tags": { - "access": "private", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11038156932, - "lat": 51.5111038, - "lon": -0.1997951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 11D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11039309417, - "lat": 51.7366270, - "lon": -4.6998830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA68 34D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 11039309418, - "lat": 51.7357475, - "lon": -4.7153885, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA68 122D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 11039376241, - "lat": 51.7259098, - "lon": -4.6835225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Postbox clearly marked SA69 not SA67 - info plate dated 14/03/2022. Looks like a new postbox.", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA69 130D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 11039443855, - "lat": 51.6512796, - "lon": -4.7680845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "New postbox - visited on 2023-06-08 - Google Streetview confirms it appears between 2011 and 2016.", - "operator": "Royal Mail", - "ref": "SA70 56D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-08" - } -}, -{ - "type": "node", - "id": 11039472125, - "lat": 51.6843458, - "lon": -5.0892308, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA71 41D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-10" - } -}, -{ - "type": "node", - "id": 11039477958, - "lat": 51.7056714, - "lon": -4.9685528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA73 27D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 11039477959, - "lat": 51.7066101, - "lon": -4.9617876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA73 31D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-12" - } -}, -{ - "type": "node", - "id": 11039662592, - "lat": 56.4228995, - "lon": -3.4866658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH1 60D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11039682317, - "lat": 56.4747058, - "lon": -3.0687695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD2 250", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11039823453, - "lat": 55.2572513, - "lon": -1.6011581, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NE61 42", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11039838009, - "lat": 51.4391413, - "lon": -0.5455232, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11039882753, - "lat": 51.5603169, - "lon": -1.7836021, - "tags": { - "access": "yes", - "addr:city": "Swindon", - "addr:street": "Regent Street", - "amenity": "post_box", - "brand": "Type C Double Aperture", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "manufacturer": "Maclan Engineering", - "name": "Regent Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "SN1 14D;SN1 140D", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 11040080954, - "lat": 51.4617894, - "lon": -0.8025791, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1010183736667907", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RG10 225", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 11040362101, - "lat": 51.5566772, - "lon": 0.6837078, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11040421465, - "lat": 51.8310219, - "lon": -3.0086490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11040443173, - "lat": 51.6870537, - "lon": 0.7541127, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11045495080, - "lat": 53.2800544, - "lon": -3.2723768, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CH8 37D" - } -}, -{ - "type": "node", - "id": 11045495081, - "lat": 53.2706971, - "lon": -3.2722313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "CH8 68D" - } -}, -{ - "type": "node", - "id": 11046188195, - "lat": 51.8578940, - "lon": -5.1265812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA62 141D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-15" - } -}, -{ - "type": "node", - "id": 11046189754, - "lat": 52.0876801, - "lon": -4.6819789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SA43 21D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2023-06-20" - } -}, -{ - "type": "node", - "id": 11046221920, - "lat": 52.0098184, - "lon": -4.9919410, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA64 64D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-18" - } -}, -{ - "type": "node", - "id": 11046226420, - "lat": 52.0994982, - "lon": -4.6896970, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SA43 117D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-06-20" - } -}, -{ - "type": "node", - "id": 11047192600, - "lat": 50.6117355, - "lon": -4.6870530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11047197046, - "lat": 52.5901521, - "lon": -0.5993316, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "LE15 52" - } -}, -{ - "type": "node", - "id": 11048045656, - "lat": 51.3637176, - "lon": -0.7989457, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11048472072, - "lat": 52.1361428, - "lon": 1.2646615, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP13 6320", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11048965974, - "lat": 50.9127987, - "lon": -3.5045906, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11049423689, - "lat": 55.7765608, - "lon": -3.9263277, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11049671974, - "lat": 57.1415531, - "lon": -2.1255725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB10 40D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11049695429, - "lat": 51.7298136, - "lon": -2.2164797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GL5 243D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11049747266, - "lat": 51.7221801, - "lon": -2.2128986, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 10:15; Su off", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL5 45", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey", - "support": "wall_mounted" - } -}, -{ - "type": "node", - "id": 11050086930, - "lat": 57.1279718, - "lon": -2.1355059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 143D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11050105220, - "lat": 57.1348505, - "lon": -2.1177782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "AB10 36D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11050165201, - "lat": 58.9803093, - "lon": -2.9697928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 14:00; Sa 13:30", - "note": "royal cypher missing", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "KW15 102", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11050916188, - "lat": 51.0891823, - "lon": -0.3541857, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "RH12 188D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11050993745, - "lat": 51.5920082, - "lon": -3.4727687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 212", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11050993746, - "lat": 51.5986213, - "lon": -3.4687115, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "wall", - "ref": "CF39 207D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11050993747, - "lat": 51.6023625, - "lon": -3.4710360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "render_walll", - "post_box:type": "wall", - "ref": "CF39 209D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11050993748, - "lat": 51.5952758, - "lon": -3.4769556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 210D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11050993751, - "lat": 51.5855274, - "lon": -3.4740320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 211D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051073726, - "lat": 51.5842691, - "lon": -3.4628566, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 194", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11051073727, - "lat": 51.5831166, - "lon": -3.4635526, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 266D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051081880, - "lat": 51.5962649, - "lon": -2.9824488, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "VR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 11051128615, - "lat": 51.4842597, - "lon": 0.1648774, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11051133270, - "lat": 51.5825491, - "lon": -3.4538698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 264D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051318123, - "lat": 55.7940605, - "lon": -4.0109979, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11051572680, - "lat": 53.9891580, - "lon": -1.0736985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "post_box:type": "pillar", - "ref": "YO32 31", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051613673, - "lat": 51.1429853, - "lon": -2.7268383, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1269632300591201", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA6 22D", - "royal_cypher": "EIIR", - "survey:date": "2023-07-06" - } -}, -{ - "type": "node", - "id": 11051659586, - "lat": 52.5999157, - "lon": -2.5594752, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "TF13 67D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051667078, - "lat": 51.1451030, - "lon": -2.7194636, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_plastic", - "post_box:type": "pillar", - "ref": "BA6 23", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11051667083, - "lat": 51.1481800, - "lon": -2.7122554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BA6 114D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051696632, - "lat": 51.1289699, - "lon": -2.7524748, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BA16 262D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051703509, - "lat": 51.1426365, - "lon": -2.7122001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BA6 117D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051704913, - "lat": 51.1402482, - "lon": -2.8322618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TA7 173D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11051717895, - "lat": 50.8011210, - "lon": -3.8150688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EX17 104D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11052389140, - "lat": 53.8125784, - "lon": -1.7815130, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD9 177D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11052989668, - "lat": 53.1039417, - "lon": -2.6908986, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CW6 211D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11053539168, - "lat": 50.7945313, - "lon": -4.3899652, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX22 6D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11053574505, - "lat": 50.8016042, - "lon": -4.4411601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX22 171D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11053578208, - "lat": 50.8106666, - "lon": -4.3583234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX22 175D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11053593887, - "lat": 50.7995292, - "lon": -4.3954680, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX22 2D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11053616631, - "lat": 50.8278225, - "lon": -4.5279068, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "EX21 5", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11053736556, - "lat": 51.7548557, - "lon": -2.8647944, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP15 898D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11053742700, - "lat": 51.7267061, - "lon": -2.7641851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP16 833D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11053750317, - "lat": 51.4747176, - "lon": -0.1813781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "note": "Parcel Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SW10 30P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11054606471, - "lat": 53.1507410, - "lon": 0.3441057, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11055439625, - "lat": 51.1500054, - "lon": -2.7207486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "Mapillary" - } -}, -{ - "type": "node", - "id": 11055645147, - "lat": 51.8273485, - "lon": -3.0215041, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 31D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11055660461, - "lat": 51.9642761, - "lon": -2.9952996, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "HR2 193", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11055862604, - "lat": 58.9711750, - "lon": -3.2936196, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "KW16 7", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11056486317, - "lat": 54.3277736, - "lon": -5.7170563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11056552906, - "lat": 51.9200952, - "lon": -3.3737770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LD3 379D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11057601882, - "lat": 53.5562915, - "lon": -3.0626632, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11059081590, - "lat": 50.2513667, - "lon": -4.9698730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 174D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11059336853, - "lat": 52.7514678, - "lon": -1.1966473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "hovis", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LE12 100", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11059935578, - "lat": 51.5133356, - "lon": -0.1797053, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 17D;W2 217D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11059935579, - "lat": 51.5072876, - "lon": -0.2111475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 21D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11059935580, - "lat": 51.5176562, - "lon": -0.2018389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 14", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11059935581, - "lat": 51.5177696, - "lon": -0.2051193, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11059935582, - "lat": 51.5160471, - "lon": -0.2377711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W12 28", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11060476796, - "lat": 52.6831689, - "lon": -0.3250737, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11060563513, - "lat": 54.3273472, - "lon": -5.7137113, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11060591636, - "lat": 52.6982355, - "lon": -0.3399571, - "tags": { - "amenity": "post_box", - "ref": "PE6 118" - } -}, -{ - "type": "node", - "id": 11061386221, - "lat": 53.0375358, - "lon": -2.9820679, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL13 106D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11061565491, - "lat": 53.3675501, - "lon": -2.5796770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 51", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11063173628, - "lat": 51.6076540, - "lon": -0.1841179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "N3 7D", - "royal_cypher": "crown" - } -}, -{ - "type": "node", - "id": 11063482370, - "lat": 53.6566879, - "lon": -1.7725660, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11064994510, - "lat": 54.2845447, - "lon": -5.5889827, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 13D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11065483803, - "lat": 53.2023231, - "lon": -2.3656235, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW4 263D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11065562996, - "lat": 54.2645960, - "lon": -7.7877154, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11065601563, - "lat": 58.2476092, - "lon": -6.3967095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00" - } -}, -{ - "type": "node", - "id": 11065840259, - "lat": 53.0133633, - "lon": -1.0332178, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11065867407, - "lat": 51.4074381, - "lon": -0.0320001, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "pillar", - "source": "streetlevel_imagery" - } -}, -{ - "type": "node", - "id": 11065959195, - "lat": 51.3965524, - "lon": 0.0282396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "description": "Franked Mail & Parcels", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 641", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11065959196, - "lat": 51.3965808, - "lon": 0.0282906, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BR2 72", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11066481475, - "lat": 50.3179985, - "lon": -4.9298455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11066543461, - "lat": 53.8561113, - "lon": -1.6068035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "LS16 699", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11066817311, - "lat": 54.2593675, - "lon": -5.6061848, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT30 46", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11067056555, - "lat": 51.0290516, - "lon": -0.3857935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH13 31D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11068732231, - "lat": 50.2905632, - "lon": -4.9483571, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-07-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR2 198D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11068778805, - "lat": 51.8125470, - "lon": -2.7251140, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "617259919489290", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2021-06-05", - "survey:date": "2021-06-05", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 11068875205, - "lat": 52.8710390, - "lon": -2.7228900, - "tags": { - "amenity": "post_box", - "source:position": "Mapillary 2019-07-11" - } -}, -{ - "type": "node", - "id": 11069221505, - "lat": 52.6299709, - "lon": -1.0961942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE5 466D", - "royal_cypher": "EIIR", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 11069244305, - "lat": 52.6311728, - "lon": -1.1027250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE5 209D", - "royal_cypher": "EIIR", - "survey:date": "2023-07-26" - } -}, -{ - "type": "node", - "id": 11069711045, - "lat": 54.6149713, - "lon": -1.0556078, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11071058919, - "lat": 51.6463280, - "lon": -2.6860157, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "619246006494177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source:position": "Mapillary 2019-05-01", - "survey:date": "2023-05-03" - } -}, -{ - "type": "node", - "id": 11071059807, - "lat": 51.6237280, - "lon": -2.6642752, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "505626857287367", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "source:position": "Mapillary 2018-12-12", - "survey:date": "2020-09-26" - } -}, -{ - "type": "node", - "id": 11072623688, - "lat": 52.7574702, - "lon": -3.6270514, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11073783052, - "lat": 51.5200078, - "lon": -0.1845199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "ref": "W2 8D;W2 208D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11073783053, - "lat": 51.5209054, - "lon": -0.2006958, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W11 31", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11073783054, - "lat": 51.5204042, - "lon": -0.2010718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 29D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11073783055, - "lat": 51.5192284, - "lon": -0.1989260, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W11 8D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11073783056, - "lat": 51.5141217, - "lon": -0.1876813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "3", - "post_box:type": "wall", - "ref": "W2 142;W2 342;W2 442", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11074903318, - "lat": 53.2329724, - "lon": -2.6070242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 102D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11075129279, - "lat": 50.6932835, - "lon": -2.1186684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "date": "2021-02-03", - "note": "has Post Office sign on top", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH20 267", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11075298022, - "lat": 52.9716574, - "lon": -3.1661573, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11075440715, - "lat": 53.2288902, - "lon": -0.8924076, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11075451469, - "lat": 51.9458480, - "lon": 0.4408707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 26D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11075464513, - "lat": 51.9629418, - "lon": 0.4102707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 63D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11075476497, - "lat": 51.9385802, - "lon": 0.4458609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CM7 109", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11075476498, - "lat": 51.9089760, - "lon": 0.4694697, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 78D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11075476503, - "lat": 51.9270052, - "lon": 0.4630834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 43D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11076533473, - "lat": 53.4979296, - "lon": -2.5322514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11076700448, - "lat": 51.0432322, - "lon": -2.0520974, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11077288880, - "lat": 51.9516549, - "lon": -1.9753869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "no", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GL54 376D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077340143, - "lat": 55.6717557, - "lon": -1.8000800, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:00; Sa 11:15", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD15 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077381577, - "lat": 51.3331981, - "lon": -2.8261094, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077403125, - "lat": 51.9025067, - "lon": 0.4717687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CM7 38D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11077404414, - "lat": 51.8782727, - "lon": 0.4721707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM77 27D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077405060, - "lat": 51.8770374, - "lon": 0.5250934, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM77 89D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077405062, - "lat": 51.8751571, - "lon": 0.5071481, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CM77 41", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11077405063, - "lat": 51.8738837, - "lon": 0.4928009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM77 12D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077405166, - "lat": 51.8829211, - "lon": 0.5441827, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 7D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077405170, - "lat": 51.8788042, - "lon": 0.5400340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CM7 67", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11077411270, - "lat": 51.9165522, - "lon": 0.4867150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 6D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077411281, - "lat": 51.9119671, - "lon": 0.5001234, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 57D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077419364, - "lat": 51.8993322, - "lon": 0.5185870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 60D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11077424024, - "lat": 51.9356805, - "lon": 0.5022725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CM7 42D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11078495271, - "lat": 52.7119681, - "lon": -2.5116676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "note": "Inside entrance hall of hospital", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TF1 332", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11078716544, - "lat": 51.0809112, - "lon": -2.1853981, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11079200741, - "lat": 54.6341767, - "lon": -1.2297533, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "TS25 55D" - } -}, -{ - "type": "node", - "id": 11079233243, - "lat": 51.9476649, - "lon": 0.4643413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 30D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11079257038, - "lat": 51.9702395, - "lon": 0.4528280, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CM7 73D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11079549927, - "lat": 51.8346129, - "lon": -0.4579862, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11080174911, - "lat": 53.1989287, - "lon": -2.3510493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW4 44D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11080249010, - "lat": 53.4978065, - "lon": -2.5405669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11081399337, - "lat": 52.8669233, - "lon": 1.3501134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Label sheet reference missing", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11081407121, - "lat": 51.5546725, - "lon": -0.3727388, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB5 187D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11081477854, - "lat": 51.5245092, - "lon": -0.3643106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB1 100", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11081480498, - "lat": 51.5381595, - "lon": -0.3702991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB5 210D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11081563905, - "lat": 54.0213390, - "lon": -2.8154210, - "tags": { - "amenity": "post_box", - "survey:date": "2023-08-01" - } -}, -{ - "type": "node", - "id": 11081718830, - "lat": 51.1113210, - "lon": 1.1611560, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CT18 94", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-07-10" - } -}, -{ - "type": "node", - "id": 11081811724, - "lat": 52.5740316, - "lon": -0.3451580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE5 250" - } -}, -{ - "type": "node", - "id": 11083827292, - "lat": 51.2827729, - "lon": -0.2471468, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11084122410, - "lat": 51.4802570, - "lon": -0.8565245, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 09:15", - "mapillary": "130475380113334", - "name": "Parcel Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "parcel_mail_in": "yes", - "post_box:type": "meter", - "ref": "RG10 654P", - "royal_cypher": "no", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 11084635759, - "lat": 51.3426664, - "lon": 0.0313043, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "BR2 271D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11084635760, - "lat": 51.3466650, - "lon": 0.0360015, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "BR2 223", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11086670194, - "lat": 51.8985113, - "lon": -1.1177000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX26 340", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11087173076, - "lat": 53.4957770, - "lon": -2.5195130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11087784780, - "lat": 54.4421958, - "lon": -7.5424798, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11088399293, - "lat": 53.3898424, - "lon": -2.6550299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088403497, - "lat": 53.3947422, - "lon": -2.6526811, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088437638, - "lat": 53.3858807, - "lon": -2.6621276, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA5 56", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088437639, - "lat": 53.3820608, - "lon": -2.6716252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 220", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088445910, - "lat": 53.3839765, - "lon": -2.6210711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 59", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088446465, - "lat": 53.3846214, - "lon": -2.6468068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 63", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088449991, - "lat": 53.3828890, - "lon": -2.6508598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 74", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088450419, - "lat": 53.3789946, - "lon": -2.6637130, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA5 107", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088452953, - "lat": 53.3894581, - "lon": -2.6268431, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 103", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088455631, - "lat": 53.3770382, - "lon": -2.6904268, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 108", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088463725, - "lat": 53.4173878, - "lon": -2.6229895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA5 363", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11088464113, - "lat": 53.4128064, - "lon": -2.6163211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA5 317", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088465308, - "lat": 53.3936750, - "lon": -2.6231214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 312", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11088683617, - "lat": 54.0448609, - "lon": -1.9413148, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11089067026, - "lat": 51.0443303, - "lon": -0.3071777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "RH13 173D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11089348992, - "lat": 55.1193095, - "lon": -6.6789727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT51 901D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11089386554, - "lat": 54.2931697, - "lon": -7.5402989, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11091679261, - "lat": 51.5809082, - "lon": -3.4090991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "CF39 200D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11091679288, - "lat": 51.5869731, - "lon": -3.4187242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 230D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091679290, - "lat": 51.5847082, - "lon": -3.4219287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF39 198D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11091706322, - "lat": 51.5857749, - "lon": -3.4259054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CF39 199D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11091706381, - "lat": 51.5840312, - "lon": -3.4302919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "CF39 117D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11091706385, - "lat": 51.5861892, - "lon": -3.4348821, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 280D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091706386, - "lat": 51.5828674, - "lon": -3.4401034, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF39 237D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11091738616, - "lat": 53.3895202, - "lon": -2.6115270, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091743330, - "lat": 53.3942379, - "lon": -2.6126164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 117", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11091754920, - "lat": 53.3986070, - "lon": -2.6067155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 16", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11091757652, - "lat": 53.4007707, - "lon": -2.6086559, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 248", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091759518, - "lat": 53.4037098, - "lon": -2.6046575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 269", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091795528, - "lat": 51.5786489, - "lon": -3.4345364, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 190D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11091795529, - "lat": 51.5774808, - "lon": -3.4391204, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 265D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091795530, - "lat": 51.5714063, - "lon": -3.4316229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 124D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091795562, - "lat": 51.5720507, - "lon": -3.4274038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 192D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091795704, - "lat": 51.5691857, - "lon": -3.4204589, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 202D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091795710, - "lat": 51.5633231, - "lon": -3.4166897, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 10D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11091796307, - "lat": 53.4095717, - "lon": -2.6055076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 246", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091802296, - "lat": 53.3897769, - "lon": -2.6066504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA5 359" - } -}, -{ - "type": "node", - "id": 11091809821, - "lat": 53.4303429, - "lon": -2.6537769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 387", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11091815648, - "lat": 53.4340622, - "lon": -2.6588971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11092985092, - "lat": 51.1565161, - "lon": -2.5258248, - "tags": { - "amenity": "post_box", - "colour": "red", - "ref": "BA4 152" - } -}, -{ - "type": "node", - "id": 11093448235, - "lat": 53.6914124, - "lon": -0.3913401, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11093640026, - "lat": 56.7515861, - "lon": -2.7568281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD9 56" - } -}, -{ - "type": "node", - "id": 11093656315, - "lat": 51.3933820, - "lon": -2.3215021, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11093733303, - "lat": 56.7407188, - "lon": -2.4778012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DD10 23" - } -}, -{ - "type": "node", - "id": 11093739558, - "lat": 56.6900201, - "lon": -2.6109119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD9 84", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11094607692, - "lat": 53.4163464, - "lon": -2.5931302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 268", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11094621304, - "lat": 53.4109671, - "lon": -2.5953636, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA2 122", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11094632969, - "lat": 53.4148059, - "lon": -2.5807257, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 167", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11094633524, - "lat": 53.4014723, - "lon": -2.5820351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 131", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11094638013, - "lat": 53.4109524, - "lon": -2.5799114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 347", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095072822, - "lat": 53.4050493, - "lon": -2.5738561, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 231", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095255227, - "lat": 53.4189185, - "lon": -2.5633931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 109", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095256906, - "lat": 53.3958186, - "lon": -2.5870552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA2 111", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095257210, - "lat": 53.4127652, - "lon": -2.5681845, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 329", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095257270, - "lat": 53.4092921, - "lon": -2.5479602, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA2 100", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11095261818, - "lat": 53.3977734, - "lon": -2.5734347, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 236", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11095262089, - "lat": 53.3976713, - "lon": -2.5640985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 166", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11095268386, - "lat": 53.4039875, - "lon": -2.5266797, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA1 106", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095268387, - "lat": 53.4039941, - "lon": -2.5267666, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA1 368" - } -}, -{ - "type": "node", - "id": 11095269219, - "lat": 53.4130877, - "lon": -2.5622866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA2 306", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095285418, - "lat": 53.3761015, - "lon": -2.5838550, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095291300, - "lat": 53.3901701, - "lon": -2.5845075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA1 252", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11095294414, - "lat": 53.3836492, - "lon": -2.5951683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA1 336", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095299091, - "lat": 53.3702756, - "lon": -2.5729098, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 134", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11095299103, - "lat": 53.3715111, - "lon": -2.5776394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 358", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095301864, - "lat": 53.3776099, - "lon": -2.5926363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 277", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095304304, - "lat": 53.3889003, - "lon": -2.5966141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA1 5", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095304786, - "lat": 53.4079188, - "lon": -2.5337901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA1 362" - } -}, -{ - "type": "node", - "id": 11095308740, - "lat": 53.3822172, - "lon": -2.5908144, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 48", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11095320087, - "lat": 53.3741754, - "lon": -2.5949146, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 276", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11095323977, - "lat": 53.3688336, - "lon": -2.5693807, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 251", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11095325622, - "lat": 53.3722264, - "lon": -2.5856264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 87", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095326787, - "lat": 53.3543595, - "lon": -2.5769423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 36", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095328581, - "lat": 53.3690112, - "lon": -2.5941979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 29", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11095329683, - "lat": 53.3505657, - "lon": -2.5460340, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 22", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11095330067, - "lat": 53.3737784, - "lon": -2.5779783, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095340513, - "lat": 53.3691793, - "lon": -2.5877077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 162", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095341763, - "lat": 53.3744233, - "lon": -2.5642128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 372", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095342533, - "lat": 53.3599654, - "lon": -2.5768698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 245", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11095350092, - "lat": 53.3600569, - "lon": -2.5339881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 161", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095352441, - "lat": 53.3597185, - "lon": -2.5823775, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 130", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095364956, - "lat": 53.3395940, - "lon": -2.5745238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 147", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11095366625, - "lat": 53.3628528, - "lon": -2.5511870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA4 380", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095376003, - "lat": 53.3479385, - "lon": -2.5665447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 371", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095384903, - "lat": 53.3487989, - "lon": -2.5421021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 177", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11095393037, - "lat": 53.3771034, - "lon": -2.5591738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 185", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11095395292, - "lat": 53.3510660, - "lon": -2.5302015, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA4 384", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11096610494, - "lat": 54.0888591, - "lon": -5.9300115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11097420703, - "lat": 53.3738676, - "lon": -2.5579859, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 124", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097426549, - "lat": 53.3740935, - "lon": -2.5493206, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11097427803, - "lat": 53.3774844, - "lon": -2.5489382, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 89" - } -}, -{ - "type": "node", - "id": 11097464742, - "lat": 53.3774055, - "lon": -2.5425612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 66", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11097482194, - "lat": 53.3827209, - "lon": -2.5304882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 198" - } -}, -{ - "type": "node", - "id": 11097490989, - "lat": 53.3732301, - "lon": -2.5380756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 320", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097493811, - "lat": 53.3744350, - "lon": -2.5420265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 228", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11097494672, - "lat": 53.3794840, - "lon": -2.5710016, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 50", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097497966, - "lat": 53.3821182, - "lon": -2.5404894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA4 338", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097498744, - "lat": 53.3837639, - "lon": -2.5542469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 345", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097504110, - "lat": 53.3873261, - "lon": -2.5565108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 226", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11097509602, - "lat": 53.3810596, - "lon": -2.5330261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 270", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097521173, - "lat": 53.3773590, - "lon": -2.5782791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 211" - } -}, -{ - "type": "node", - "id": 11097521188, - "lat": 53.3754428, - "lon": -2.5707706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 182", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11097527703, - "lat": 53.3224487, - "lon": -2.6450910, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 96", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097534232, - "lat": 53.3775754, - "lon": -2.5719238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 305", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097540014, - "lat": 53.2927674, - "lon": -2.5923952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 354", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097552112, - "lat": 53.3801438, - "lon": -2.5623385, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA4 46", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11097554630, - "lat": 53.3122529, - "lon": -2.6211775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 193", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11097566048, - "lat": 53.3234071, - "lon": -2.5836377, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 152", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097569615, - "lat": 53.3096600, - "lon": -2.6433368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 151", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097570412, - "lat": 53.3163546, - "lon": -2.5764552, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 213", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11097580280, - "lat": 53.3534101, - "lon": -2.6364392, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 180", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097581596, - "lat": 53.4190685, - "lon": -2.5270386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "off_street_box", - "post_box:type": "pillar", - "ref": "WA3 377", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11097591408, - "lat": 53.3838537, - "lon": -2.5803199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA4 37", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11097591611, - "lat": 53.3819794, - "lon": -2.5783878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA4 169", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11097698568, - "lat": 53.4345357, - "lon": -2.5438192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 242", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097699642, - "lat": 53.4487923, - "lon": -2.5599998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 97", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11097747275, - "lat": 53.4587949, - "lon": -2.5557472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 293", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098054988, - "lat": 53.4265893, - "lon": -2.4539027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 284", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098060109, - "lat": 53.4565010, - "lon": -2.5185622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 299", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098061025, - "lat": 53.4562631, - "lon": -2.5306469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 69", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098078077, - "lat": 53.4561495, - "lon": -2.5238456, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 282", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098086634, - "lat": 53.4509091, - "lon": -2.5284440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 82", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098092430, - "lat": 53.4502733, - "lon": -2.5180491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 175", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098092432, - "lat": 53.4485042, - "lon": -2.5103796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 287", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098122161, - "lat": 53.4573976, - "lon": -2.5011330, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA3 165", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11098123679, - "lat": 53.4353909, - "lon": -2.4641833, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 286", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098131025, - "lat": 53.4283546, - "lon": -2.4586396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 285", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098134034, - "lat": 53.4087720, - "lon": -2.4699679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA3 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098163570, - "lat": 53.4153404, - "lon": -2.4775175, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 249", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098230243, - "lat": 53.4008589, - "lon": -2.4966088, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA3 92", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098379590, - "lat": 52.5778275, - "lon": -0.2909094, - "tags": { - "amenity": "post_box", - "note": "lamp type" - } -}, -{ - "type": "node", - "id": 11098418070, - "lat": 53.4512351, - "lon": -2.6275498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA12 9", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098419773, - "lat": 53.4398122, - "lon": -2.6247141, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA12 8", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098422521, - "lat": 53.4535142, - "lon": -2.6500178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098424153, - "lat": 53.4502992, - "lon": -2.6204522, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 28", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098428255, - "lat": 53.4569902, - "lon": -2.6260485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA12 5", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11098438307, - "lat": 53.4496699, - "lon": -2.6312861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 33", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11098438340, - "lat": 53.4505851, - "lon": -2.6498217, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098438341, - "lat": 53.4516304, - "lon": -2.6402731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 352", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098439429, - "lat": 53.4612891, - "lon": -2.6350292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 31", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098440118, - "lat": 53.4428330, - "lon": -2.6310474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 36", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098440119, - "lat": 53.4457817, - "lon": -2.6331977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098443418, - "lat": 53.4522061, - "lon": -2.6443558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098447340, - "lat": 53.4590941, - "lon": -2.6308440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA12 12", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098447472, - "lat": 53.4563444, - "lon": -2.6487033, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA12 13", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098447701, - "lat": 53.3748338, - "lon": -2.4903065, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 184", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098448645, - "lat": 53.4588216, - "lon": -2.6445705, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098450196, - "lat": 53.3305244, - "lon": -2.6936035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA7 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098460536, - "lat": 53.4539636, - "lon": -2.6530080, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA12 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098462177, - "lat": 53.3856179, - "lon": -2.4678466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098466858, - "lat": 53.3698058, - "lon": -2.4444386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA13 118", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098468620, - "lat": 53.3775203, - "lon": -2.5044684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 229", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098469479, - "lat": 53.3327254, - "lon": -2.6890063, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098471159, - "lat": 53.3769571, - "lon": -2.4925986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA13 31", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098475493, - "lat": 53.3486284, - "lon": -2.6712926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA7 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098482764, - "lat": 53.3445297, - "lon": -2.6971979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA7 80" - } -}, -{ - "type": "node", - "id": 11098496715, - "lat": 53.3408088, - "lon": -2.6887147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098497605, - "lat": 53.3260551, - "lon": -2.6946177, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098497606, - "lat": 53.3260708, - "lon": -2.6946056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA7 92" - } -}, -{ - "type": "node", - "id": 11098497947, - "lat": 53.3460443, - "lon": -2.6607122, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 73" - } -}, -{ - "type": "node", - "id": 11098498599, - "lat": 53.3419560, - "lon": -2.6637584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA7 89", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11098502461, - "lat": 53.3396175, - "lon": -2.6978103, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098508223, - "lat": 53.3355167, - "lon": -2.6662235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "WA7 74" - } -}, -{ - "type": "node", - "id": 11098514880, - "lat": 53.3306714, - "lon": -2.6739674, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA7 70", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098534427, - "lat": 53.3228826, - "lon": -2.6818885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098534557, - "lat": 53.3201980, - "lon": -2.6847634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098538329, - "lat": 53.3237241, - "lon": -2.6713676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 85", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098538330, - "lat": 53.3162997, - "lon": -2.6762240, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 64", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098555886, - "lat": 53.3312956, - "lon": -2.6693534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA7 22", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098562976, - "lat": 53.3661042, - "lon": -2.7584716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 45", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11098620459, - "lat": 53.3605896, - "lon": -2.7349645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 15", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11098631476, - "lat": 53.3727760, - "lon": -2.7126275, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 14", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098641466, - "lat": 53.3700603, - "lon": -2.7184980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098650088, - "lat": 53.3631609, - "lon": -2.7313417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA8 997" - } -}, -{ - "type": "node", - "id": 11098650091, - "lat": 53.3631795, - "lon": -2.7312940, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 999", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098661451, - "lat": 53.3833567, - "lon": -2.7411973, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 54", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098665994, - "lat": 53.3670638, - "lon": -2.7690765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA8 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098667625, - "lat": 53.3742791, - "lon": -2.7785974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098670443, - "lat": 53.3808647, - "lon": -2.7579035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA8 53" - } -}, -{ - "type": "node", - "id": 11098676851, - "lat": 53.3779216, - "lon": -2.7650502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA8 52", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098678462, - "lat": 53.3782988, - "lon": -2.7524195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA8 58", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098678594, - "lat": 53.3624252, - "lon": -2.7638651, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098678925, - "lat": 53.3660242, - "lon": -2.7501877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 17", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11098686783, - "lat": 53.3720702, - "lon": -2.7682393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 50", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098693466, - "lat": 53.4066548, - "lon": -2.7198664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098695324, - "lat": 53.3678078, - "lon": -2.7772149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 27", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098697515, - "lat": 53.3731091, - "lon": -2.7568957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098697854, - "lat": 53.3778287, - "lon": -2.7718152, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA8 2" - } -}, -{ - "type": "node", - "id": 11098700986, - "lat": 53.3769714, - "lon": -2.7126978, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 48", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098710180, - "lat": 53.3761996, - "lon": -2.7274255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 34", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098716329, - "lat": 53.3896371, - "lon": -2.7474981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 39", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098716444, - "lat": 53.3845712, - "lon": -2.7430802, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 22", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11098718977, - "lat": 53.3715973, - "lon": -2.7512334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 1", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098720075, - "lat": 53.3726064, - "lon": -2.7325922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098731207, - "lat": 53.3976021, - "lon": -2.7010596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 8", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098732383, - "lat": 53.3897508, - "lon": -2.7391849, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA8 16", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11098737665, - "lat": 53.3856527, - "lon": -2.7100352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 9", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11098738652, - "lat": 53.3837150, - "lon": -2.7351044, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 25", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11098743331, - "lat": 53.3786320, - "lon": -2.7092269, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 5", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11098754417, - "lat": 53.3841972, - "lon": -2.7285383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 46", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099197932, - "lat": 53.2900902, - "lon": -4.0897398, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL58 249", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099328273, - "lat": 52.5764936, - "lon": -0.2909838, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Box no dated 05/03/2020. Next line gives another code: CP8", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PE3 322" - } -}, -{ - "type": "node", - "id": 11099357119, - "lat": 55.7724334, - "lon": -4.3336196, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11099615813, - "lat": 53.3497519, - "lon": -2.7350824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 12", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11099619757, - "lat": 53.3518291, - "lon": -2.7720612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA8 33", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099643069, - "lat": 53.3027713, - "lon": -2.7146369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA6 375", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099653081, - "lat": 53.4419364, - "lon": -2.6654642, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA5 23", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099663002, - "lat": 53.2973843, - "lon": -2.7173625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA6 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099705443, - "lat": 53.3833546, - "lon": -2.6573432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA5 239" - } -}, -{ - "type": "node", - "id": 11099710292, - "lat": 53.2599107, - "lon": -2.7244341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA6 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099725937, - "lat": 53.4303711, - "lon": -2.6562919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA5 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099726037, - "lat": 53.4541515, - "lon": -2.6946798, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 105", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11099758719, - "lat": 53.4457227, - "lon": -2.6948417, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 106", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099769239, - "lat": 53.4420823, - "lon": -2.7005438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA9 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099769369, - "lat": 53.4514283, - "lon": -2.6839480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 116", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099774955, - "lat": 53.4279213, - "lon": -2.6831888, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 21", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099783695, - "lat": 53.4324379, - "lon": -2.6855202, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 147", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11099821845, - "lat": 53.4170377, - "lon": -2.7064213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 82", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099960875, - "lat": 53.4172722, - "lon": -2.7108408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 71", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11099984565, - "lat": 53.4163373, - "lon": -2.7198941, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 94", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100035538, - "lat": 53.4181007, - "lon": -2.7280445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 121", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100067756, - "lat": 53.4154670, - "lon": -2.7347848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 118", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100088344, - "lat": 53.4126308, - "lon": -2.7276578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 69", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100137469, - "lat": 53.4217190, - "lon": -2.7202361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 126", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100172400, - "lat": 56.7847050, - "lon": -2.5706727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB30 74", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11100199168, - "lat": 53.4232013, - "lon": -2.7150533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 108", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100216974, - "lat": 53.4263377, - "lon": -2.7205558, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 76", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100219509, - "lat": 51.3242720, - "lon": 0.3641083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "ME19 216D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100241279, - "lat": 50.9212124, - "lon": -1.4713539, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO15 685D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11100241280, - "lat": 50.9130716, - "lon": -1.4342100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO15 195D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11100241281, - "lat": 50.9137347, - "lon": -1.3933021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO14 102D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11100241282, - "lat": 50.9073046, - "lon": -1.3962947, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "SO14 5D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11100523619, - "lat": 53.9349541, - "lon": -2.2631835, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11102317596, - "lat": 53.4277198, - "lon": -2.6018446, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WA2 387", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11102696274, - "lat": 53.4318352, - "lon": -2.5888254, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 297", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11102806618, - "lat": 53.4067855, - "lon": -2.5725049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 342", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11102807197, - "lat": 53.4007873, - "lon": -2.5861870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA2 348", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11103962658, - "lat": 53.4273410, - "lon": -2.7585465, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 149", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11103966456, - "lat": 53.4365327, - "lon": -2.7515828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 129", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11103972485, - "lat": 53.4300966, - "lon": -2.7627875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 136", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11103973526, - "lat": 53.4355488, - "lon": -2.7587421, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 52", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11103979143, - "lat": 53.4323132, - "lon": -2.7607221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 143", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11103985394, - "lat": 53.4329204, - "lon": -2.7470779, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 67", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11103998218, - "lat": 53.4425773, - "lon": -2.7217179, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11103998219, - "lat": 53.4398430, - "lon": -2.7214699, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 33", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11104993703, - "lat": 53.4693740, - "lon": -2.6580853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105015274, - "lat": 53.4376890, - "lon": -2.7019398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105021941, - "lat": 53.4665222, - "lon": -2.6790302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105031846, - "lat": 53.4347686, - "lon": -2.7007219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA9 60", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105033102, - "lat": 53.4329891, - "lon": -2.6979102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA9 35", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105037400, - "lat": 53.4746674, - "lon": -2.6550064, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 139" - } -}, -{ - "type": "node", - "id": 11105047365, - "lat": 53.4735463, - "lon": -2.6695853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 117", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105047366, - "lat": 53.4735700, - "lon": -2.6696653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 140" - } -}, -{ - "type": "node", - "id": 11105047376, - "lat": 53.4663931, - "lon": -2.6762061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 90", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105052981, - "lat": 53.4671998, - "lon": -2.6620717, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 51", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105070339, - "lat": 53.4691608, - "lon": -2.6751623, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105071597, - "lat": 53.4657820, - "lon": -2.6950320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 65" - } -}, -{ - "type": "node", - "id": 11105074269, - "lat": 53.4681183, - "lon": -2.6884847, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 7", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11105082041, - "lat": 53.4644394, - "lon": -2.6916367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105094658, - "lat": 53.4775736, - "lon": -2.6786494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA11 9", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105212224, - "lat": 53.4617807, - "lon": -2.7062106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA11 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105560439, - "lat": 53.4677118, - "lon": -2.7124774, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11105580118, - "lat": 53.4711578, - "lon": -2.7196297, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA11 85", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106063035, - "lat": 51.9285179, - "lon": -4.6641011, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SA34 99", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11106063090, - "lat": 53.4525716, - "lon": -2.7525799, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106075937, - "lat": 53.4526471, - "lon": -2.7454773, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 132", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106079177, - "lat": 53.4433606, - "lon": -2.7612058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 151" - } -}, -{ - "type": "node", - "id": 11106080183, - "lat": 53.4485835, - "lon": -2.7479211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 142", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106084409, - "lat": 53.4570441, - "lon": -2.7460855, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 50", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106084522, - "lat": 53.4547827, - "lon": -2.7496622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA10 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106111684, - "lat": 53.4411638, - "lon": -2.7557556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 43", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106118879, - "lat": 53.4347332, - "lon": -2.7782464, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 79", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106125208, - "lat": 53.4420897, - "lon": -2.7627149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 48", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106642389, - "lat": 53.4363304, - "lon": -2.7660163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 78", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11106855508, - "lat": 53.4408582, - "lon": -2.7717683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA10 83", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11106918607, - "lat": 53.4374404, - "lon": -2.7762367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11106925798, - "lat": 53.4526182, - "lon": -2.7849428, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 53" - } -}, -{ - "type": "node", - "id": 11106936559, - "lat": 53.4524062, - "lon": -2.7784265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 80" - } -}, -{ - "type": "node", - "id": 11106943222, - "lat": 53.4527148, - "lon": -2.7630147, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106950119, - "lat": 53.4564211, - "lon": -2.7783334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 95", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106952879, - "lat": 53.4604062, - "lon": -2.7806818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 141", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11106974715, - "lat": 53.4609574, - "lon": -2.7761375, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 114", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107299658, - "lat": 51.4146311, - "lon": -2.5083796, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11107310356, - "lat": 53.0033804, - "lon": -2.9106129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL13 84", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107404076, - "lat": 52.9169569, - "lon": 1.2987558, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2021-10-12", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR27 2739D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107429254, - "lat": 52.8531759, - "lon": -2.5750025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TF9 420", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107529647, - "lat": 51.0643427, - "lon": -0.4480349, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 35D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107727226, - "lat": 51.0481487, - "lon": -0.4246215, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 185D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107727227, - "lat": 51.0442229, - "lon": -0.4355619, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 8D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107727228, - "lat": 51.0494848, - "lon": -0.4320569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH14 64D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107727230, - "lat": 51.0712875, - "lon": -0.4104174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "RH13 47D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11107748292, - "lat": 55.8146254, - "lon": -4.0057676, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11107824191, - "lat": 53.4604959, - "lon": -2.7644191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 98" - } -}, -{ - "type": "node", - "id": 11107825008, - "lat": 53.4625317, - "lon": -2.7571078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 58", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107827673, - "lat": 53.4624379, - "lon": -2.7531172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 112", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107843502, - "lat": 53.4576963, - "lon": -2.7397807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA10 57", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11107843651, - "lat": 53.4585539, - "lon": -2.7525610, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 31" - } -}, -{ - "type": "node", - "id": 11107843652, - "lat": 53.4594395, - "lon": -2.7454662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107875580, - "lat": 53.4598968, - "lon": -2.7402772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 30", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11107904851, - "lat": 53.4509833, - "lon": -2.7421995, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 138" - } -}, -{ - "type": "node", - "id": 11107904852, - "lat": 53.4509845, - "lon": -2.7421176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 4", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107917172, - "lat": 53.4579214, - "lon": -2.7369163, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107917173, - "lat": 53.4579172, - "lon": -2.7369443, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA10 154", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11107950200, - "lat": 53.4512860, - "lon": -2.7363810, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA10 135", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107953349, - "lat": 53.4567555, - "lon": -2.7296242, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA10 68", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11107954236, - "lat": 53.3903151, - "lon": -2.7634112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA8 55", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107955393, - "lat": 53.4489097, - "lon": -2.7418214, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA10 133", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11107968468, - "lat": 53.3890556, - "lon": -2.7618687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA8 31", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11107997293, - "lat": 53.3903065, - "lon": -2.7569121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA8 51", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11109614418, - "lat": 51.2235455, - "lon": 0.0820770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN8 236", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11109614419, - "lat": 51.2085857, - "lon": 0.0670269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 327", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11109614420, - "lat": 51.2092073, - "lon": 0.0608334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 224", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11110522877, - "lat": 51.8605488, - "lon": 0.1263005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11110717506, - "lat": 50.0501816, - "lon": -5.0878489, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR12 73", - "royal_cypher": "EIIR", - "survey:date": "2023-08-12" - } -}, -{ - "type": "node", - "id": 11110717523, - "lat": 50.3468131, - "lon": -5.0254517, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 97D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-08-12" - } -}, -{ - "type": "node", - "id": 11111343979, - "lat": 51.7786102, - "lon": -3.8797501, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11111766163, - "lat": 51.2085312, - "lon": 0.1103002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 259", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11111784515, - "lat": 51.1058431, - "lon": -0.8237289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU30 104D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11111803118, - "lat": 51.2050780, - "lon": 0.0670615, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 345", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11111845203, - "lat": 51.2117888, - "lon": 0.0602622, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 234", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112110567, - "lat": 53.2869179, - "lon": -3.6324674, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL22 50D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11112371987, - "lat": 53.4860540, - "lon": -2.6414192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN4 109", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112515769, - "lat": 51.2941592, - "lon": -2.1921318, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11112515774, - "lat": 51.2986735, - "lon": -2.2082583, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11112552916, - "lat": 53.4898250, - "lon": -2.6762271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN4 32", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112735902, - "lat": 53.5254559, - "lon": -2.6577101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 28", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112834811, - "lat": 53.5272411, - "lon": -2.6520228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 260", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112837541, - "lat": 53.5241451, - "lon": -2.6420970, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN3 248" - } -}, -{ - "type": "node", - "id": 11112907377, - "lat": 53.5373771, - "lon": -2.6376511, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112922568, - "lat": 53.5331271, - "lon": -2.6547692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 63", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112924372, - "lat": 53.5362193, - "lon": -2.6182917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 59" - } -}, -{ - "type": "node", - "id": 11112947846, - "lat": 53.5374204, - "lon": -2.6218725, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 42", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112950827, - "lat": 53.5323199, - "lon": -2.6489203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 244", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11112956464, - "lat": 53.5382576, - "lon": -2.6133889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 128" - } -}, -{ - "type": "node", - "id": 11112959125, - "lat": 53.5318542, - "lon": -2.6416902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 105", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112977551, - "lat": 53.5566645, - "lon": -2.6341982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 76" - } -}, -{ - "type": "node", - "id": 11112982848, - "lat": 53.5580321, - "lon": -2.6378875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN1 214", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112983268, - "lat": 53.5551714, - "lon": -2.6316264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 2" - } -}, -{ - "type": "node", - "id": 11112984323, - "lat": 53.5345448, - "lon": -2.6225074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN3 240", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112987857, - "lat": 53.6308707, - "lon": -2.2893137, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11112990848, - "lat": 53.5293626, - "lon": -2.6060993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN3 35" - } -}, -{ - "type": "node", - "id": 11113056872, - "lat": 54.8019386, - "lon": -6.3502010, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11113940769, - "lat": 51.7761128, - "lon": -4.1665501, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11114120989, - "lat": 55.9210101, - "lon": -4.3206699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G61 1051D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11114276112, - "lat": 52.6853539, - "lon": -2.8908684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY5 368", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114481222, - "lat": 55.7846921, - "lon": -3.9829097, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11114481227, - "lat": 55.7813754, - "lon": -3.9825254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11114593026, - "lat": 53.5557313, - "lon": -2.6212669, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN1 178", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114614891, - "lat": 53.5498094, - "lon": -2.6126306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN1 278", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114766082, - "lat": 53.5601292, - "lon": -2.6323861, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 173", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11114775578, - "lat": 53.5604140, - "lon": -2.6375653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN1 238", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114809934, - "lat": 53.5623632, - "lon": -2.6745474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 247", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114813439, - "lat": 53.5510523, - "lon": -2.6477930, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114814771, - "lat": 53.5613309, - "lon": -2.6656533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN6 74", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114821023, - "lat": 53.5534588, - "lon": -2.6548267, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114825202, - "lat": 53.5580962, - "lon": -2.6623027, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 14", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114832936, - "lat": 53.5606700, - "lon": -2.6784351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 159", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114837486, - "lat": 50.7270164, - "lon": -3.9178878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX20 42D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11114875076, - "lat": 53.5461067, - "lon": -2.8080149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN8 233", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114875077, - "lat": 53.5491822, - "lon": -2.8042929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 232", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114882667, - "lat": 53.5501403, - "lon": -2.7721875, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WN8 273", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114882668, - "lat": 53.5501403, - "lon": -2.7722037, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WN8 2731" - } -}, -{ - "type": "node", - "id": 11114887993, - "lat": 53.5663249, - "lon": -2.6962645, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 215", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114888046, - "lat": 53.5715574, - "lon": -2.6838694, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 213", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114888823, - "lat": 53.5603183, - "lon": -2.6957183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 158", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114922261, - "lat": 53.5638145, - "lon": -2.6456706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 15", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114934839, - "lat": 53.5786349, - "lon": -2.6860168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN6 193", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114946225, - "lat": 53.5603297, - "lon": -2.6455500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN6 50", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11114953160, - "lat": 53.5479528, - "lon": -2.7967221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 234", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114955802, - "lat": 53.5587930, - "lon": -2.6568106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN6 212", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114955984, - "lat": 53.5447522, - "lon": -2.7805943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 269", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114956132, - "lat": 53.5600698, - "lon": -2.6479501, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN6 140" - } -}, -{ - "type": "node", - "id": 11114969730, - "lat": 53.5447224, - "lon": -2.7734627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 285", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114972818, - "lat": 53.5436967, - "lon": -2.7883695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WN8 275", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114972819, - "lat": 53.5437180, - "lon": -2.7884398, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WN8 2751" - } -}, -{ - "type": "node", - "id": 11114982431, - "lat": 53.5515793, - "lon": -2.8086724, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 262", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114983675, - "lat": 53.5566485, - "lon": -2.7779162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 239", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114983771, - "lat": 53.5518178, - "lon": -2.8183168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN8 231", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11114985867, - "lat": 53.5569064, - "lon": -2.7723819, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 274", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11114987464, - "lat": 53.5514525, - "lon": -2.8002390, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN8 230", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11114999414, - "lat": 53.5557528, - "lon": -2.7918072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 185", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115028067, - "lat": 53.5488421, - "lon": -2.7612952, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 258", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115029721, - "lat": 53.5534057, - "lon": -2.7636424, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 272", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115037020, - "lat": 53.5502732, - "lon": -2.7630213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 228", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115145864, - "lat": 53.4182203, - "lon": -2.6011529, - "tags": { - "amenity": "post_box", - "note": "Business box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA1 365" - } -}, -{ - "type": "node", - "id": 11115234562, - "lat": 53.5259702, - "lon": -2.5923341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN2 40", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11115255788, - "lat": 53.5350459, - "lon": -2.5824476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN2 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115302083, - "lat": 53.5364411, - "lon": -2.5868491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 117", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115337720, - "lat": 53.5172515, - "lon": -2.6041020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 153", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11115359799, - "lat": 53.4137025, - "lon": -2.5338866, - "tags": { - "amenity": "post_box", - "note": "Business box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA3 367" - } -}, -{ - "type": "node", - "id": 11115399514, - "lat": 53.4139905, - "lon": -2.5261850, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "double_type_g", - "post_box:type": "pillar", - "ref": "WA3 1315", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11116130537, - "lat": 54.8091041, - "lon": -5.7781193, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11116132155, - "lat": 52.9534668, - "lon": -2.8736471, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL13 267D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11117712883, - "lat": 53.0267548, - "lon": -2.0751705, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11117825583, - "lat": 51.3522666, - "lon": 0.7162654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 15:00; Sa 11:45; Su off", - "note": "As at Tuesday 15th August 2023 there is a Royal Mail sticker notice saying that from Monday 18th September 2023 the collection times will change to Mo-Fr 09:00; Sa 07:00.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ME10 128", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "streetlevel imagery;aerial imagery;survey", - "source_ref": "survey", - "survey:date": "2023-08-15" - } -}, -{ - "type": "node", - "id": 11118624373, - "lat": 50.2097262, - "lon": -4.9267048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TR2 250D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11118624374, - "lat": 50.3208761, - "lon": -4.9278331, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 244D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11118624375, - "lat": 50.3194392, - "lon": -4.9081171, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR2 213D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11119685047, - "lat": 53.4588506, - "lon": -2.9926523, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11119843550, - "lat": 53.2872243, - "lon": -2.3365490, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 25", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119887836, - "lat": 53.2808852, - "lon": -2.3237708, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119891954, - "lat": 53.3016706, - "lon": -2.3777287, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA16 24", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119894106, - "lat": 53.2884424, - "lon": -2.3463074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 44", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119901720, - "lat": 53.3109833, - "lon": -2.3526556, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WA16 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119906550, - "lat": 53.3069927, - "lon": -2.3497309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 82", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119906748, - "lat": 53.3043682, - "lon": -2.3675326, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 85", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119907045, - "lat": 53.3015083, - "lon": -2.3852246, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 5", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11119909470, - "lat": 53.3055075, - "lon": -2.3554676, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119909611, - "lat": 53.3059752, - "lon": -2.3637342, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 37", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11119951900, - "lat": 53.3029131, - "lon": -2.2972587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 86", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120000318, - "lat": 53.3150147, - "lon": -2.3387463, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 70", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120004257, - "lat": 53.2882900, - "lon": -2.4287356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 36", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120015849, - "lat": 53.3133679, - "lon": -2.3285210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA16 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120027422, - "lat": 53.3127744, - "lon": -2.3169808, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 51", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120028497, - "lat": 53.3098470, - "lon": -2.4199310, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 77", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120030993, - "lat": 53.2708962, - "lon": -2.4070059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 12" - } -}, -{ - "type": "node", - "id": 11120057654, - "lat": 53.2770999, - "lon": -2.4254220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 50" - } -}, -{ - "type": "node", - "id": 11120060905, - "lat": 53.2756699, - "lon": -2.4469735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120066589, - "lat": 53.3481496, - "lon": -2.4456034, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 23", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120066953, - "lat": 53.2693469, - "lon": -2.4165000, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 73", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120072092, - "lat": 53.2542424, - "lon": -2.4112999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120128766, - "lat": 53.3500364, - "lon": -2.4538309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 10", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11120275721, - "lat": 53.2605588, - "lon": -2.3741200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 69", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120350882, - "lat": 53.2481854, - "lon": -2.3718072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120434573, - "lat": 53.2545385, - "lon": -2.3618497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 8", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120486533, - "lat": 53.3365276, - "lon": -2.3885688, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 65", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11120513399, - "lat": 53.3285615, - "lon": -2.3981080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA16 42", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11120555737, - "lat": 53.3295204, - "lon": -2.4090220, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120604372, - "lat": 53.3554116, - "lon": -2.4494078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA16 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120658509, - "lat": 53.3467653, - "lon": -2.4081619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA16 9", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120746680, - "lat": 53.3782433, - "lon": -2.3586974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120753646, - "lat": 53.3798144, - "lon": -2.3741695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 45", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120753651, - "lat": 53.3931121, - "lon": -2.3485515, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 2", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11120774914, - "lat": 53.3830684, - "lon": -2.3567047, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 1", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11120844320, - "lat": 53.3833662, - "lon": -2.3548114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "meter", - "ref": "WA14 116" - } -}, -{ - "type": "node", - "id": 11120844322, - "lat": 53.3762264, - "lon": -2.3553341, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 8", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11120847201, - "lat": 53.3755072, - "lon": -2.3621546, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120847569, - "lat": 53.3861982, - "lon": -2.3620693, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WA14 16", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11120851298, - "lat": 53.3921827, - "lon": -2.3456325, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 66", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120855695, - "lat": 51.5939922, - "lon": -0.2621730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:30", - "ref": "NW9 61", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120857246, - "lat": 53.3783957, - "lon": -2.3477732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 41", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120857247, - "lat": 53.3782515, - "lon": -2.3477981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA14 118" - } -}, -{ - "type": "node", - "id": 11120860748, - "lat": 53.3717482, - "lon": -2.3457873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 18", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11120862386, - "lat": 53.3754926, - "lon": -2.3694228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 101", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11120862878, - "lat": 53.3798685, - "lon": -2.3682822, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WA14 68", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11120863499, - "lat": 53.3776098, - "lon": -2.3677115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120867357, - "lat": 53.3859934, - "lon": -2.3505813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WA14 108", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120875062, - "lat": 53.3923472, - "lon": -2.3518649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA14 40", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11120886140, - "lat": 53.3975663, - "lon": -2.3619846, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WA14 117" - } -}, -{ - "type": "node", - "id": 11120894167, - "lat": 53.5388945, - "lon": -2.6668232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 195", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120895075, - "lat": 53.3746925, - "lon": -2.4264073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 43", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120896197, - "lat": 53.3619612, - "lon": -2.4151475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120907853, - "lat": 53.3747939, - "lon": -2.4105925, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 81", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120908056, - "lat": 53.4054974, - "lon": -2.3480328, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA14 29", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120920784, - "lat": 53.5372340, - "lon": -2.6612950, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 139", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120921799, - "lat": 53.5362062, - "lon": -2.6664133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 85", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120928860, - "lat": 53.5344212, - "lon": -2.6673977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 38", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120928861, - "lat": 53.5336434, - "lon": -2.6814485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 217", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120936443, - "lat": 53.5368620, - "lon": -2.6847391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 129", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120936457, - "lat": 53.5433422, - "lon": -2.6573339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 62", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120937621, - "lat": 53.5362904, - "lon": -2.6818284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 125", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11120939642, - "lat": 53.5425832, - "lon": -2.6866061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WN5 53", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120943273, - "lat": 53.5355323, - "lon": -2.6773317, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 96", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120948378, - "lat": 53.5462069, - "lon": -2.6861885, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 19", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120951049, - "lat": 53.5396341, - "lon": -2.6762032, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 207", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11120951050, - "lat": 53.5407098, - "lon": -2.6762960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 220", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11120970012, - "lat": 53.5451796, - "lon": -2.6823389, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11121927364, - "lat": 54.7991604, - "lon": -5.8305408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11123380574, - "lat": 53.5378562, - "lon": -2.7069366, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN5 205", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11123415797, - "lat": 53.5324634, - "lon": -2.7184688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 78", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123423519, - "lat": 53.5278765, - "lon": -2.7089256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 68", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123428401, - "lat": 53.5333062, - "lon": -2.7121071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 143", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123433086, - "lat": 53.5398730, - "lon": -2.7042085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 90", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123434578, - "lat": 53.5141549, - "lon": -2.7091735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WN5 163", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123441497, - "lat": 53.5268045, - "lon": -2.7149901, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 199", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123454114, - "lat": 53.5465048, - "lon": -2.5987851, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123455774, - "lat": 53.5414453, - "lon": -2.6078507, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 203", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123459382, - "lat": 53.5465072, - "lon": -2.7035987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN5 171", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123461518, - "lat": 53.5405362, - "lon": -2.7156183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 122", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123463253, - "lat": 53.5252033, - "lon": -2.7012741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Winstanley Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN5 181", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123578575, - "lat": 53.5401694, - "lon": -2.5656780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN2 23", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11123951604, - "lat": 51.2213360, - "lon": 0.5935257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "ME17 188D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11124055205, - "lat": 51.2055721, - "lon": 0.5915270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:30; Su off", - "note": "This post box is a lamp box design mounted in a purpose built brick pillar", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "ME17 204", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11124055206, - "lat": 51.1982944, - "lon": 0.5960551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 09:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME17 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11124979278, - "lat": 53.2142483, - "lon": -1.6787628, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "DE45 1271D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11125040763, - "lat": 52.8496851, - "lon": 0.5025038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE31 136D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11125040773, - "lat": 52.8455688, - "lon": 0.5034693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PE31 173", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11125040803, - "lat": 52.8455936, - "lon": 0.5118379, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "PE31 229D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11127571327, - "lat": 52.8434362, - "lon": 0.5052504, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 508D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11127571328, - "lat": 52.8418729, - "lon": 0.5019506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 296D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11127571332, - "lat": 52.8485366, - "lon": 0.4962630, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE31 40D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11128082151, - "lat": 52.9337515, - "lon": -4.5331339, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11128359422, - "lat": 51.1859473, - "lon": -0.6394106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "GU7 58", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11128410568, - "lat": 52.3669089, - "lon": -2.2748769, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11128432683, - "lat": 52.3529935, - "lon": -2.5300779, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11128502481, - "lat": 53.2162985, - "lon": -3.2505951, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11128538020, - "lat": 54.2085628, - "lon": -5.8949754, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT33 70D" - } -}, -{ - "type": "node", - "id": 11128539766, - "lat": 54.2074535, - "lon": -5.9014925, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT33 9D" - } -}, -{ - "type": "node", - "id": 11128568270, - "lat": 56.8958114, - "lon": -2.2173657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB39 390", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11128568725, - "lat": 55.1901489, - "lon": -4.8234957, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11128583535, - "lat": 55.6325108, - "lon": -4.4055258, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA4 129", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11128614133, - "lat": 56.8079010, - "lon": -2.5659641, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11128823436, - "lat": 54.4058425, - "lon": -5.6483869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11128894198, - "lat": 50.4646635, - "lon": -5.0321598, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR8 80D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery", - "survey:date": "2023-08-19" - } -}, -{ - "type": "node", - "id": 11128894202, - "lat": 50.4687162, - "lon": -5.0301005, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-10-25" - } -}, -{ - "type": "node", - "id": 11128895005, - "lat": 50.4723990, - "lon": -5.0281730, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2023-08-19" - } -}, -{ - "type": "node", - "id": 11128895008, - "lat": 50.4754789, - "lon": -4.9823777, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45, Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL27 200", - "royal_cypher": "EIIR", - "survey:date": "2023-08-19" - } -}, -{ - "type": "node", - "id": 11129017767, - "lat": 50.8574420, - "lon": -2.8429907, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11129017772, - "lat": 50.9082429, - "lon": -3.1204269, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11129024743, - "lat": 50.8704088, - "lon": -2.7693397, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11130223177, - "lat": 51.0376968, - "lon": -2.8279156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11131939931, - "lat": 56.6617735, - "lon": -3.0368943, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11131947280, - "lat": 50.8833764, - "lon": -0.2996636, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11132151733, - "lat": 51.6832173, - "lon": 0.2807261, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132154849, - "lat": 52.8902489, - "lon": -2.9913990, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11132177846, - "lat": 51.7435213, - "lon": 0.5740231, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132222805, - "lat": 52.8640025, - "lon": -2.9919523, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11132260123, - "lat": 52.6079883, - "lon": -2.7198552, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132279508, - "lat": 52.5300131, - "lon": -2.9390020, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132332583, - "lat": 51.1447200, - "lon": 0.0935569, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 215", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11132332584, - "lat": 51.1352566, - "lon": 0.0815561, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 230", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11132332585, - "lat": 51.1634507, - "lon": 0.0909804, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 217", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11132332586, - "lat": 51.1316478, - "lon": 0.0751127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 302", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132352783, - "lat": 51.1795045, - "lon": 0.0775057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 165", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132381584, - "lat": 51.1746692, - "lon": 0.0633866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 232", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132383214, - "lat": 51.1727043, - "lon": 0.0882365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 210", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132384351, - "lat": 51.1724318, - "lon": 0.0402832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN8 241", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132385816, - "lat": 51.1813514, - "lon": 0.0951708, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 228", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11132417151, - "lat": 51.0013394, - "lon": -2.5213013, - "tags": { - "amenity": "post_box", - "mapillary": "191581686986087", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11132432157, - "lat": 50.7641335, - "lon": -2.7084013, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref:GB:uprn": "10015438471" - } -}, -{ - "type": "node", - "id": 11132668550, - "lat": 52.0985476, - "lon": -2.8868286, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11132668594, - "lat": 52.1202132, - "lon": -2.8923714, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11132739630, - "lat": 53.5596197, - "lon": -0.0877473, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/38Q7G2mm/DN32-58D.jpg", - "location": "Abbey Park Road, Abbey Drive West", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 58D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11132898863, - "lat": 53.2636177, - "lon": -1.9009426, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11134772296, - "lat": 56.0216462, - "lon": -3.8205660, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 182", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 11135951299, - "lat": 53.0564118, - "lon": -3.2270580, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:30; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL11 216", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11136035205, - "lat": 52.5954328, - "lon": -2.5580391, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TF13 194", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11136169449, - "lat": 54.3857218, - "lon": -5.7750185, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11139169825, - "lat": 54.4256677, - "lon": -5.6605989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11139484093, - "lat": 52.0016085, - "lon": -0.8634580, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "MK17 124", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11139863627, - "lat": 53.4864965, - "lon": -2.3340011, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "M30 534", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11142467400, - "lat": 53.2567339, - "lon": -1.9138612, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11142493907, - "lat": 53.2549308, - "lon": -1.9154516, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11143255119, - "lat": 51.4085277, - "lon": -2.5008478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11143351068, - "lat": 52.6058082, - "lon": 1.4605875, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1332D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11143771907, - "lat": 52.6285507, - "lon": -1.0573663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "LE5 746D", - "royal_cypher": "EIIR", - "survey:date": "2023-08-25" - } -}, -{ - "type": "node", - "id": 11144675682, - "lat": 53.2907627, - "lon": -3.0701547, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH66 358D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11145312470, - "lat": 51.9961298, - "lon": -1.4081554, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11146202064, - "lat": 53.5214733, - "lon": -2.6612127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN3 268", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11146308068, - "lat": 53.6966094, - "lon": -2.1916182, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "OL13 281D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11146375693, - "lat": 51.6139586, - "lon": -1.7829330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 07:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN26 177", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11146516421, - "lat": 51.1911159, - "lon": 0.0286625, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN8 226", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11146528339, - "lat": 56.5601686, - "lon": -2.5836998, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD11 322D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11146536263, - "lat": 56.6480449, - "lon": -2.8870544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD8 21", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11147967749, - "lat": 52.9216742, - "lon": 1.3083803, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR27 2720", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11148040284, - "lat": 56.1768632, - "lon": -5.4351229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA31 18", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11148081674, - "lat": 52.9238428, - "lon": 1.3098942, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NR27 2749D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148156773, - "lat": 53.2419676, - "lon": -2.5550329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 36D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148161484, - "lat": 53.2499560, - "lon": -2.5470984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 35D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148198112, - "lat": 53.2498959, - "lon": -2.5520047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 37D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148432104, - "lat": 57.1220557, - "lon": -2.1324199, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB10 551D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11148471563, - "lat": 53.5403716, - "lon": -2.7482139, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 186", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148473669, - "lat": 53.5419791, - "lon": -2.7581704, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148474092, - "lat": 53.5413452, - "lon": -2.7647119, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "Banksbarn", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 266", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148489726, - "lat": 53.5371207, - "lon": -2.7575211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 257", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148552153, - "lat": 53.5505085, - "lon": -2.7565087, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 251", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148559101, - "lat": 53.5574815, - "lon": -2.7628144, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "WN8 263", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148631688, - "lat": 53.5630850, - "lon": -2.7734290, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "WN8 280", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148649936, - "lat": 53.5634747, - "lon": -2.7832633, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 284", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148711385, - "lat": 53.5414890, - "lon": -2.7222313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 161", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148744112, - "lat": 53.5678664, - "lon": -2.7639476, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 152", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148754955, - "lat": 53.5419213, - "lon": -2.7276115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 67", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148756036, - "lat": 53.5618071, - "lon": -2.7526505, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN8 52", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148765221, - "lat": 53.5364891, - "lon": -2.7320419, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN8 150", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148769773, - "lat": 53.5423819, - "lon": -2.7332200, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 252", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148771141, - "lat": 53.5405234, - "lon": -2.7394582, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "WN8 241", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148773543, - "lat": 53.5192155, - "lon": -2.7584456, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 17", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148775677, - "lat": 53.5308869, - "lon": -2.7430164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WN8 277", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148775678, - "lat": 53.5309231, - "lon": -2.7430457, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "WN8 2771" - } -}, -{ - "type": "node", - "id": 11148776241, - "lat": 53.5265032, - "lon": -2.7427502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "WN8 115", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11148784760, - "lat": 53.5585621, - "lon": -2.7293449, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 39", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11148784930, - "lat": 53.5631068, - "lon": -2.7253698, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WN8 224", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11149223882, - "lat": 55.9407860, - "lon": -4.1588879, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "G66 520", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11149921267, - "lat": 51.3096555, - "lon": 0.0368699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45; Su off", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN16 82", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469066, - "lat": 51.0975395, - "lon": 0.5279221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 328", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469067, - "lat": 51.1038803, - "lon": 0.5397260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 207", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469068, - "lat": 51.0970387, - "lon": 0.5388605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 206", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469069, - "lat": 51.0984773, - "lon": 0.5350734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469070, - "lat": 51.0877097, - "lon": 0.5433761, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 162", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469071, - "lat": 51.0821988, - "lon": 0.5400282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 203", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469072, - "lat": 51.0954991, - "lon": 0.5306864, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 198", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11151469073, - "lat": 51.1256913, - "lon": 0.4631568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 246", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469074, - "lat": 51.1181393, - "lon": 0.5555757, - "tags": { - "amenity": "post_box", - "ref": "TN17 197" - } -}, -{ - "type": "node", - "id": 11151469075, - "lat": 51.0925927, - "lon": 0.5346673, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 324", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11151469076, - "lat": 51.1089958, - "lon": 0.5463508, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 208", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11153736352, - "lat": 51.9658944, - "lon": 0.5989266, - "tags": { - "amenity": "post_box", - "check_date": "2023-08-29", - "colour": "Red", - "image": "https://api.postboxmap.co.uk/images/105703519.MP.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11156427375, - "lat": 51.2060788, - "lon": -1.4816408, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:type": "pillar", - "survey:date": "2022-03-14", - "wikimedia_commons": "File:Andover - Post Office - geograph.org.uk - 3311608.jpg" - } -}, -{ - "type": "node", - "id": 11156638209, - "lat": 52.9319949, - "lon": 1.2461108, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NR27 2741D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11161012679, - "lat": 53.7017184, - "lon": -2.2841555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB4 569", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11161012680, - "lat": 53.7019912, - "lon": -2.2846342, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:45; Sa 13:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BB4 500", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11162860524, - "lat": 54.4649716, - "lon": -6.8458997, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11162880977, - "lat": 50.4435146, - "lon": -4.3351871, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11162885621, - "lat": 51.0963358, - "lon": 0.5349557, - "tags": { - "amenity": "post_box", - "ref": "TN17 9999" - } -}, -{ - "type": "node", - "id": 11162945955, - "lat": 50.3502252, - "lon": -4.7478668, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11163598441, - "lat": 50.8941429, - "lon": 0.6317943, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11164115444, - "lat": 55.9856357, - "lon": -3.7660656, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11164135585, - "lat": 51.6276626, - "lon": 0.3487621, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11164135586, - "lat": 51.6302349, - "lon": 0.3461105, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11164135587, - "lat": 51.6261071, - "lon": 0.3438118, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-09-03", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11164987711, - "lat": 55.0208319, - "lon": -1.4858521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11165029674, - "lat": 53.4286126, - "lon": -2.8727235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "L14 630", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11165068402, - "lat": 52.2889181, - "lon": -3.8903809, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11165072429, - "lat": 52.2914745, - "lon": -3.9017052, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11165382073, - "lat": 53.6895514, - "lon": -2.1749814, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OL13 273D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11165433133, - "lat": 52.8947526, - "lon": -2.7974585, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11168391614, - "lat": 52.7721496, - "lon": 0.5491912, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11169338675, - "lat": 51.9086151, - "lon": 0.8471615, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11169338676, - "lat": 51.9067111, - "lon": 0.8744973, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11169472867, - "lat": 51.4421922, - "lon": 0.3501834, - "tags": { - "amenity": "post_box", - "survey:date": "2023-09-05" - } -}, -{ - "type": "node", - "id": 11169771620, - "lat": 52.6162549, - "lon": 1.4509339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2020-01-14", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1357D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11171336345, - "lat": 52.0845385, - "lon": 1.2306699, - "tags": { - "amenity": "post_box", - "fixme": "ref?", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11172368467, - "lat": 53.0293385, - "lon": -3.5217606, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL21 73D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11172381494, - "lat": 53.6918556, - "lon": -2.1927074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11175518786, - "lat": 56.2121552, - "lon": -2.9408260, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KY8 167D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11175528162, - "lat": 51.3385247, - "lon": -2.3801595, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11175546867, - "lat": 51.0073695, - "lon": -2.6789988, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "survey:date": "2023-01-20", - "wikimedia_commons": "File:Postbox and phonebox, Northover - geograph.org.uk - 4302114.jpg" - } -}, -{ - "type": "node", - "id": 11175556100, - "lat": 50.9389312, - "lon": -2.6991608, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11175621357, - "lat": 51.2053789, - "lon": -2.7270654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "602366225186269", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 11175633538, - "lat": 50.9892215, - "lon": -2.4077491, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11176502437, - "lat": 52.3872035, - "lon": -2.2769178, - "tags": { - "amenity": "post_box", - "name": "Royal Mail Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11177214674, - "lat": 56.1724706, - "lon": -4.1559716, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "FK8 185", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11177214676, - "lat": 56.1736403, - "lon": -4.1501129, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK8 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11177214677, - "lat": 56.1737943, - "lon": -4.1465158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "FK8 49", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11177273322, - "lat": 51.5679086, - "lon": -3.3131279, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11177279074, - "lat": 51.0797444, - "lon": -0.4778473, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RH12 25D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11177856601, - "lat": 51.0837644, - "lon": -1.1731271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11177910491, - "lat": 53.7790267, - "lon": -2.6792902, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11180568731, - "lat": 53.1439931, - "lon": -2.3618478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:00", - "ref": "CW11 133", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11180962402, - "lat": 53.3411938, - "lon": -2.0871548, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11180993217, - "lat": 53.4330764, - "lon": -1.9927730, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11181912554, - "lat": 52.7122936, - "lon": -1.2888002, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11182107909, - "lat": 51.6151982, - "lon": -3.4388743, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CF40 255D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182107917, - "lat": 51.6137709, - "lon": -3.4434280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF40 191D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182107918, - "lat": 51.6143186, - "lon": -3.4479663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF40 203", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182107919, - "lat": 51.6145736, - "lon": -3.4518823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF40 150D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182114606, - "lat": 51.6042431, - "lon": -3.4418290, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF40 173D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182114607, - "lat": 51.5986550, - "lon": -3.4398881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF40 254D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182120176, - "lat": 51.5998939, - "lon": -3.4220917, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 283", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182120184, - "lat": 51.6038561, - "lon": -3.4153157, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF39 120D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11182146661, - "lat": 51.6043442, - "lon": -3.4207305, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF39 267D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11182146662, - "lat": 51.6035820, - "lon": -3.4340154, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "CF40 152D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11183764024, - "lat": 51.4067003, - "lon": 0.8574412, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11184488907, - "lat": 50.3967747, - "lon": -4.8288801, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11184610372, - "lat": 55.8828667, - "lon": -2.3030200, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "note": "the physical collection plate has a mistake the collection_plate:date has been printed as 3/21/2023", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD11 28D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11185435250, - "lat": 51.3542648, - "lon": -2.9743688, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11186012298, - "lat": 52.6238253, - "lon": 1.4917810, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR13 1330D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11186012653, - "lat": 52.6010638, - "lon": 1.4848139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "inscription": "Post office", - "label_date": "2023-03-30", - "operator": "Royal Mail", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "NR13 1331D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11186812289, - "lat": 52.4789647, - "lon": -0.8373469, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11187406284, - "lat": 51.5227189, - "lon": -1.5956906, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2022-08-19", - "collection_times": "Mo-Sa 09:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11187589327, - "lat": 58.1536946, - "lon": -5.2396336, - "tags": { - "amenity": "post_box", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11188190987, - "lat": 53.4236794, - "lon": -2.8529068, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "L36 179", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11189962180, - "lat": 53.8153262, - "lon": -1.7802101, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD9 36D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11190337037, - "lat": 52.5641311, - "lon": 1.5602837, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "inscription": "Post Office", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "NR13 1324D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11190442535, - "lat": 53.4897317, - "lon": -0.8480105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN9 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11190586457, - "lat": 53.4901128, - "lon": -0.8435515, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-22", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN9 267", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11190874990, - "lat": 53.4889021, - "lon": -0.8602641, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN9 108D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11191150420, - "lat": 53.8120280, - "lon": -1.7898554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 328D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11191480420, - "lat": 56.5376992, - "lon": -3.0643491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD3 200D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11191713741, - "lat": 55.5247810, - "lon": -4.0608729, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11192842889, - "lat": 53.6070012, - "lon": -0.6622059, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11192883743, - "lat": 53.5617563, - "lon": -0.6651123, - "tags": { - "amenity": "post_box", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11192891595, - "lat": 53.5941930, - "lon": -1.0299562, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11192898754, - "lat": 53.5594915, - "lon": -1.0798560, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11192907449, - "lat": 53.5779586, - "lon": -1.0007322, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN7 199", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11192944876, - "lat": 53.5644904, - "lon": -0.1388013, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "image": "https://i.postimg.cc/dV2CP0kk/DN37-3.jpg", - "location": "St Nicholas Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN37 3", - "ref:GB:uprn": "10025733494", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11192967645, - "lat": 53.4046138, - "lon": -0.7536670, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11192971067, - "lat": 53.3886259, - "lon": -0.7713906, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11192992443, - "lat": 53.4738385, - "lon": -0.5874185, - "tags": { - "amenity": "post_box", - "mapillary": "532972178061954" - } -}, -{ - "type": "node", - "id": 11193001551, - "lat": 53.5546369, - "lon": -0.0650841, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/rpm6YLqZ/DN32-157-D.jpg", - "location": "Whitby Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 157D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11193007671, - "lat": 53.4096114, - "lon": -1.0706446, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11193010839, - "lat": 53.5666192, - "lon": -0.0624080, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/J4BTjfvX/DN32-77D.jpg", - "location": "Wellington Street, Rutland Street", - "mapillary": "765802734084065", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 77D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11193655538, - "lat": 53.8136823, - "lon": -1.7922085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BD9 312D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11193655539, - "lat": 53.8160688, - "lon": -1.7933279, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD9 800D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11194786100, - "lat": 51.5449497, - "lon": 0.6460552, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11194790032, - "lat": 51.5431279, - "lon": 0.6430720, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11195716905, - "lat": 51.5215182, - "lon": -1.7186415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 9D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11195735799, - "lat": 51.5286458, - "lon": -1.7102878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SN4 243", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11195759792, - "lat": 51.5639813, - "lon": -1.6185106, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN6 179", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11195778940, - "lat": 51.5564288, - "lon": -1.6315187, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN6 26D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11197732126, - "lat": 54.5630622, - "lon": -1.3616490, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11199030929, - "lat": 51.5432443, - "lon": -1.8077601, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "801884085207796", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN1 200D", - "royal_cypher": "EIIR", - "survey:date": "2024-05-20" - } -}, -{ - "type": "node", - "id": 11199940823, - "lat": 51.5463104, - "lon": -3.4949921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "CF35 101", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11200089081, - "lat": 51.1651718, - "lon": -0.1145347, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 251D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11200089083, - "lat": 51.1718604, - "lon": -0.1107530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "RH6 210D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11200089084, - "lat": 51.1925504, - "lon": -0.1191444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RH6 216", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11200089089, - "lat": 51.1829455, - "lon": -0.0881079, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "RH6 226D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11200089090, - "lat": 51.1750855, - "lon": -0.0943425, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH6 197D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11200552570, - "lat": 56.5848211, - "lon": -3.3395935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 1D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11200659037, - "lat": 52.4535528, - "lon": -1.7235670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "B40 1383" - } -}, -{ - "type": "node", - "id": 11200683058, - "lat": 52.0400437, - "lon": -4.1967780, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11200854757, - "lat": 56.5897820, - "lon": -3.3345721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "manufacturer": "Broadwater Mouldings Limited", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:material": "plastic", - "post_box:type": "pillar", - "ref": "PH10 9", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11200914702, - "lat": 51.8774644, - "lon": -2.5209583, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11200937209, - "lat": 57.6982539, - "lon": -2.1187013, - "tags": { - "addr:city": "Fraserburgh", - "addr:country": "GB", - "addr:postcode": "AB43 7JS", - "addr:street": "Mid Street", - "addr:village": "Rosehearty", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB43 26" - } -}, -{ - "type": "node", - "id": 11202578697, - "lat": 52.4509495, - "lon": -3.5354617, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11203135229, - "lat": 51.3383598, - "lon": -0.7760126, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU47 116D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11203458750, - "lat": 52.1599087, - "lon": 0.6669593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP29 2113", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11203503233, - "lat": 51.0926752, - "lon": 0.8562041, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN26 321D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 11203521139, - "lat": 51.0203747, - "lon": 0.8820301, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TN29 110D", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 11203706487, - "lat": 51.5581817, - "lon": 0.1817579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706488, - "lat": 51.5629217, - "lon": 0.1705495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706489, - "lat": 51.5640106, - "lon": 0.1660360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706491, - "lat": 51.5687261, - "lon": 0.1611993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706492, - "lat": 51.5687724, - "lon": 0.1505128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706506, - "lat": 51.5696013, - "lon": 0.1703002, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11203706507, - "lat": 51.5696102, - "lon": 0.1702987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706508, - "lat": 51.5745383, - "lon": 0.1762792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11203706509, - "lat": 51.5744292, - "lon": 0.1703357, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203706511, - "lat": 51.5745112, - "lon": 0.1615279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203710311, - "lat": 51.5779774, - "lon": 0.1759540, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11203710318, - "lat": 51.5778695, - "lon": 0.1712188, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203710319, - "lat": 51.5808458, - "lon": 0.1734939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203710322, - "lat": 51.5823559, - "lon": 0.1648598, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203710324, - "lat": 51.5845300, - "lon": 0.1555009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203710325, - "lat": 51.5910308, - "lon": 0.1578435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203710329, - "lat": 51.5948945, - "lon": 0.1590471, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203717656, - "lat": 51.0043932, - "lon": 0.9728313, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN29 207D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-09-18" - } -}, -{ - "type": "node", - "id": 11203730494, - "lat": 51.5591656, - "lon": 0.1895852, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203730495, - "lat": 51.5617379, - "lon": 0.1889386, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203730496, - "lat": 51.5648233, - "lon": 0.1952756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203730497, - "lat": 51.5509338, - "lon": 0.1990786, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203730498, - "lat": 51.5509538, - "lon": 0.1990873, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11203730505, - "lat": 51.5463522, - "lon": 0.2012404, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203730506, - "lat": 51.5474532, - "lon": 0.1917621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11203730507, - "lat": 51.5390797, - "lon": 0.2010653, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11203797597, - "lat": 52.3820935, - "lon": 1.5659197, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11203826414, - "lat": 52.3234197, - "lon": 1.5583186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP19 5560" - } -}, -{ - "type": "node", - "id": 11204370228, - "lat": 52.0002768, - "lon": -4.2621854, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11204568767, - "lat": 51.6574269, - "lon": -0.4755844, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11205806105, - "lat": 51.9123623, - "lon": -4.3480870, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11207302362, - "lat": 51.5471396, - "lon": 0.2163584, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207302363, - "lat": 51.5556219, - "lon": 0.2153279, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207302364, - "lat": 51.5570039, - "lon": 0.2245426, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207302365, - "lat": 51.5597177, - "lon": 0.2147935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207302366, - "lat": 51.5618721, - "lon": 0.2160751, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11207302367, - "lat": 51.5618791, - "lon": 0.2160685, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11207327077, - "lat": 51.5439483, - "lon": 0.2301985, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11207327078, - "lat": 51.5491178, - "lon": 0.2353975, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11207327079, - "lat": 51.5498854, - "lon": 0.2429788, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207327080, - "lat": 51.5499608, - "lon": 0.2475363, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207327085, - "lat": 51.5429288, - "lon": 0.2519986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207598058, - "lat": 51.5535420, - "lon": 0.2530955, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207598059, - "lat": 51.5543695, - "lon": 0.2580596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207598060, - "lat": 51.5574761, - "lon": 0.2587735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207598061, - "lat": 51.5573457, - "lon": 0.2428462, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207598062, - "lat": 51.5580033, - "lon": 0.2706895, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207605123, - "lat": 51.5433148, - "lon": 0.2887632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11207605125, - "lat": 51.5413250, - "lon": 0.2960085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11207605127, - "lat": 51.5520452, - "lon": 0.2946777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11207605128, - "lat": 51.5608418, - "lon": 0.3072253, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11207700344, - "lat": 51.5601491, - "lon": 0.2479233, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700345, - "lat": 51.5598599, - "lon": 0.2561318, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700346, - "lat": 51.5635464, - "lon": 0.2529971, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700347, - "lat": 51.5644526, - "lon": 0.2593878, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700348, - "lat": 51.5652767, - "lon": 0.2643075, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700355, - "lat": 51.5685980, - "lon": 0.2679127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700365, - "lat": 51.5716238, - "lon": 0.2692329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11207700383, - "lat": 51.5668694, - "lon": 0.2747073, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11207700384, - "lat": 51.5623872, - "lon": 0.2701585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11208120020, - "lat": 53.8060560, - "lon": -1.7955461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BD9 38D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11208507939, - "lat": 53.5341280, - "lon": -2.1353420, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OL9 185", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11208730981, - "lat": 55.8538614, - "lon": -4.1997291, - "tags": { - "amenity": "post_box", - "indoor": "yes", - "level": "0", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210064877, - "lat": 51.5035863, - "lon": 0.2863479, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210100772, - "lat": 51.4786576, - "lon": 0.2522289, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210100810, - "lat": 51.4852398, - "lon": 0.2503121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210112034, - "lat": 51.4859155, - "lon": 0.2717800, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11210115849, - "lat": 51.4725603, - "lon": 0.2748029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11210133510, - "lat": 51.4883302, - "lon": 0.3509530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210161478, - "lat": 51.4823504, - "lon": 0.3721629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210161479, - "lat": 51.4855108, - "lon": 0.3760113, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210170550, - "lat": 51.4936741, - "lon": 0.3607156, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11210177663, - "lat": 51.5087555, - "lon": 0.3961612, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11210270346, - "lat": 51.5684076, - "lon": 0.2026100, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210270347, - "lat": 51.5674626, - "lon": 0.2063690, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11210270348, - "lat": 51.5718233, - "lon": 0.2045696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11210270349, - "lat": 51.5636342, - "lon": 0.2084155, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11210270350, - "lat": 51.5694635, - "lon": 0.1972226, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11210270351, - "lat": 51.5746147, - "lon": 0.1915142, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11210270352, - "lat": 51.5777872, - "lon": 0.1991816, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11210779572, - "lat": 54.4766155, - "lon": -6.0098687, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11211823955, - "lat": 53.1426690, - "lon": -2.3661544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW11 161D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11212069525, - "lat": 51.3137555, - "lon": -0.7703099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "maker": "CARRON COMPANY", - "material": "metal", - "post_box:type": "pillar", - "ref": "GU14 166D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11212225087, - "lat": 53.1702303, - "lon": -2.6245992, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CW6 214D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11212464383, - "lat": 51.5601634, - "lon": 0.4561654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11212464384, - "lat": 51.5658948, - "lon": 0.4678512, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212464385, - "lat": 51.5683091, - "lon": 0.4566977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212488371, - "lat": 53.5210341, - "lon": -0.8230450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN9 366D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11212515461, - "lat": 51.5659064, - "lon": 0.4010898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212515463, - "lat": 51.5642733, - "lon": 0.4079470, - "tags": { - "amenity": "post_box", - "fixme": "looks like it may be a postbox, but not 100%", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11212515469, - "lat": 51.5572408, - "lon": 0.4221624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11212515472, - "lat": 51.5516152, - "lon": 0.4272535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11212574369, - "lat": 51.5164456, - "lon": 0.4388302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212574370, - "lat": 51.5201907, - "lon": 0.4338447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212615030, - "lat": 51.5305614, - "lon": 0.4613761, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212615031, - "lat": 51.5250616, - "lon": 0.4484593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212620450, - "lat": 51.5259828, - "lon": 0.4641482, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11212647004, - "lat": 51.5463259, - "lon": 0.4663118, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11212647005, - "lat": 51.5399005, - "lon": 0.4696136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11213125070, - "lat": 53.4886244, - "lon": -0.8345874, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN9 129D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11215804679, - "lat": 51.5987799, - "lon": -1.2485007, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11215935289, - "lat": 51.5809390, - "lon": -3.3579426, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11215967714, - "lat": 52.8761374, - "lon": 1.3922676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Check precise location", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR11 1195D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11215967727, - "lat": 52.8531171, - "lon": 1.3516242, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11216264916, - "lat": 51.3132711, - "lon": 0.7264736, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8", - "collection_times": "Mo-Fr 16:30; Sa 09:00", - "note": "This postbox is within Kent Science Park which has security staff on the gate. On Friday 6th January 2023 i used this postbox while with a driver making a delivery in Kent Science Park. if you want to patronise this postbox, ask the security staff.", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-01-06" - } -}, -{ - "type": "node", - "id": 11216839896, - "lat": 51.1106677, - "lon": 0.8823159, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN25 75D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-04-10" - } -}, -{ - "type": "node", - "id": 11216929782, - "lat": 54.8594982, - "lon": -1.7052999, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11217367212, - "lat": 51.6325379, - "lon": -3.7425715, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11217367266, - "lat": 51.6336461, - "lon": -3.7319005, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11218004427, - "lat": 51.6136351, - "lon": -3.8165223, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11218066283, - "lat": 57.8221408, - "lon": -3.8143502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 09:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IV19", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11218101136, - "lat": 51.9319301, - "lon": -2.4768039, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11218504063, - "lat": 51.1602471, - "lon": 0.8546593, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN25 316", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN25 316D", - "royal_cypher": "GR", - "source": "survey", - "survey:date": "2023-09-23" - } -}, -{ - "type": "node", - "id": 11218707768, - "lat": 52.1910194, - "lon": 0.9999380, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "IP14 8002D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-20" - } -}, -{ - "type": "node", - "id": 11219419324, - "lat": 53.8065120, - "lon": -1.7858883, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 219D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11219436894, - "lat": 53.8054525, - "lon": -1.7939049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 50D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11219444325, - "lat": 53.8069853, - "lon": -1.7806513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 46", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11219457793, - "lat": 53.8057589, - "lon": -1.7904396, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 150D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11220910902, - "lat": 54.6521779, - "lon": -7.0335355, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11222588963, - "lat": 54.6051650, - "lon": -1.0513550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TS10 458D" - } -}, -{ - "type": "node", - "id": 11222610086, - "lat": 51.6827349, - "lon": -0.4110246, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11225844051, - "lat": 53.5907128, - "lon": -1.0997928, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11225886743, - "lat": 53.6048806, - "lon": -1.0669777, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11227835148, - "lat": 56.7099475, - "lon": -3.4140696, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:45; Sa 10:45", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "lamp", - "ref": "PH10 52", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11227882012, - "lat": 56.6466374, - "lon": -3.4048091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 13:15; Sa 12:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH10 118", - "royal_cypher": "GR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11227889557, - "lat": 56.6781727, - "lon": -3.4684314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:30; Sa 11:30", - "manufacturer": "Derby Castings Limited, Derby", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH10 116", - "royal_cypher": "GR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11227926109, - "lat": 56.7569816, - "lon": -3.5640353, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 10:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH10 114", - "royal_cypher": "EVIIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11228586202, - "lat": 51.5135855, - "lon": -0.1431607, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-02-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1S 83D;W1S 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11228838064, - "lat": 51.4022631, - "lon": -0.0249331, - "tags": { - "amenity": "post_box", - "name": "BR3 240D" - } -}, -{ - "type": "node", - "id": 11229654730, - "lat": 51.4633732, - "lon": 0.3501374, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11229654731, - "lat": 51.4633669, - "lon": 0.3501281, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11229684130, - "lat": 51.4619922, - "lon": 0.3650162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11229695143, - "lat": 51.4625871, - "lon": 0.3546368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11229711540, - "lat": 51.4762230, - "lon": 0.3894769, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11229711541, - "lat": 51.4730209, - "lon": 0.3997309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11229711542, - "lat": 51.4822644, - "lon": 0.3892040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11229714726, - "lat": 51.4626367, - "lon": 0.3692905, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11229714727, - "lat": 51.4633097, - "lon": 0.3765534, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11229714728, - "lat": 51.4683464, - "lon": 0.3694285, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11230112550, - "lat": 52.9390711, - "lon": 0.4939865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "ref": "PE36 507D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11230580633, - "lat": 52.9334219, - "lon": 0.4945913, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11230661324, - "lat": 51.4127743, - "lon": -1.3139071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "RG14 251D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11230661325, - "lat": 51.4099729, - "lon": -1.3119747, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG14 143", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11230680725, - "lat": 51.4939371, - "lon": -1.4042544, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG20 212D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11230798975, - "lat": 51.5873512, - "lon": -0.8540950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "post_box:type": "wall", - "ref": "RG9 34D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11230968806, - "lat": 51.5050017, - "lon": -0.1063826, - "tags": { - "amenity": "post_box", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SE1 77;SE1 177", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11231037448, - "lat": 52.8841368, - "lon": -3.0342705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30; Su off", - "colour": "red", - "indoor": "yes", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "wall", - "ref": "SY11 176", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11231228869, - "lat": 52.9500418, - "lon": -2.7631095, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "operator:wikipedia": "en:Royal Mail", - "post_box:type": "lamp", - "ref": "SY13 632D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11232453040, - "lat": 51.4648266, - "lon": -2.1436847, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-11-16", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "SN14 660P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11232453041, - "lat": 51.4648292, - "lon": -2.1436982, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2019-11-16", - "collection_times": "Mo-Fr 18:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN14 349", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11232467203, - "lat": 53.7397502, - "lon": -1.7686383, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11232672364, - "lat": 51.1647610, - "lon": 0.6418149, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "old_ref": "TN27 112", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "postal_code": "TN27", - "ref": "TN27 112D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2022-12-19" - } -}, -{ - "type": "node", - "id": 11232753221, - "lat": 50.9844233, - "lon": -3.7906349, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11232768460, - "lat": 50.9702309, - "lon": -4.2955464, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11232774721, - "lat": 50.9651399, - "lon": -4.2522923, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11235324726, - "lat": 51.5967494, - "lon": -1.4641387, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX12 1176", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11235324727, - "lat": 51.5892395, - "lon": -1.4519602, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX12 1172D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11236620905, - "lat": 53.7387460, - "lon": -2.5078902, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BB2 93", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11236782737, - "lat": 51.8939770, - "lon": -2.4655179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL17 145", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11238064780, - "lat": 55.8586427, - "lon": -4.3096523, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G51 312D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11240851444, - "lat": 54.2579305, - "lon": -5.9422263, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11240904823, - "lat": 55.7660148, - "lon": -4.0413311, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11241017401, - "lat": 51.4111223, - "lon": -2.4972476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11242260526, - "lat": 51.3475228, - "lon": -0.7856651, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11243625328, - "lat": 51.6459723, - "lon": -1.4338084, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX12 1151D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11243720825, - "lat": 51.7293856, - "lon": -1.4432672, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OX29 291", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11243722763, - "lat": 51.6809439, - "lon": -1.4175049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX13 1239", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11243925630, - "lat": 51.8136282, - "lon": -1.5929747, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX18 423D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11244003769, - "lat": 51.3525056, - "lon": -0.7866890, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU47 104D", - "royal_cypher": "EIIR", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 11244313739, - "lat": 56.5026426, - "lon": -2.9995063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD3 281D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11244317443, - "lat": 56.5050215, - "lon": -3.0142049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DD3 151D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11245711157, - "lat": 51.8928275, - "lon": 0.3353410, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11246043434, - "lat": 51.9261963, - "lon": 0.6156880, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11246254565, - "lat": 52.7010338, - "lon": -2.5191139, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TF1 336", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11246811963, - "lat": 55.1305129, - "lon": -6.5564151, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11246844832, - "lat": 54.9665638, - "lon": -6.2892959, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11246897005, - "lat": 54.7527200, - "lon": -6.0011800, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11246930647, - "lat": 53.4847398, - "lon": -2.5274500, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11247615754, - "lat": 51.5214302, - "lon": -3.2178049, - "tags": { - "amenity": "post_box", - "check_date": "2018-10-19", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615755, - "lat": 51.5318216, - "lon": -3.2042876, - "tags": { - "amenity": "post_box", - "check_date": "2021-07-21", - "mapillary": "1076177782941115", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11247615756, - "lat": 51.5314786, - "lon": -3.2001237, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615757, - "lat": 51.5333038, - "lon": -3.1979838, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615758, - "lat": 51.5282005, - "lon": -3.1836433, - "tags": { - "amenity": "post_box", - "check_date": "2019-10-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615759, - "lat": 51.5228888, - "lon": -3.1931209, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615760, - "lat": 51.5228951, - "lon": -3.1930637, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615761, - "lat": 51.5247692, - "lon": -3.1810529, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-09", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11247615762, - "lat": 51.5361082, - "lon": -3.1735624, - "tags": { - "amenity": "post_box", - "check_date": "2020-09-15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11248243187, - "lat": 52.9621786, - "lon": -1.1362685, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11249189095, - "lat": 54.0996833, - "lon": -6.2511834, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11249189107, - "lat": 54.1005420, - "lon": -6.2542872, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11250593331, - "lat": 51.3932870, - "lon": -0.4363987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11250955868, - "lat": 51.4065169, - "lon": -2.5122969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11251541010, - "lat": 51.5328922, - "lon": -1.0525659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG8 46", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11251557377, - "lat": 51.6315158, - "lon": -1.1030880, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX10 516D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11251557378, - "lat": 51.6443595, - "lon": -1.1036003, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OX10 656D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11251558008, - "lat": 51.4842718, - "lon": -1.1513945, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG8 378D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11251567245, - "lat": 51.5436063, - "lon": -1.0381322, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG8 291", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11253307739, - "lat": 53.9926606, - "lon": -1.5615190, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11254057906, - "lat": 51.0689694, - "lon": -2.6449150, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11254927376, - "lat": 53.3049612, - "lon": -3.3558039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "MARIAN 109, L Type, LL18", - "royal_cypher": "yes", - "source": "https://www.royalmail.com/services-near-you/postbox/marian-ll18-6ea/000LL18109" - } -}, -{ - "type": "node", - "id": 11255976033, - "lat": 52.7781639, - "lon": -0.3807578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11258324661, - "lat": 50.7350228, - "lon": -3.0658286, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX24 82D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11258324662, - "lat": 50.7303988, - "lon": -3.0615994, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX24 116D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11258371571, - "lat": 50.9142571, - "lon": -2.3182373, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT10 38D", - "ref:GB:uprn": "10015299279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11258388544, - "lat": 51.0245110, - "lon": -2.1181726, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 36D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11258388547, - "lat": 51.0109553, - "lon": -2.1330455, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SP7 42D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11258399082, - "lat": 54.0983361, - "lon": -6.2532980, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11258593980, - "lat": 52.8929795, - "lon": 1.0241986, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11259043903, - "lat": 51.1835843, - "lon": -0.0241350, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "RH7 7D" - } -}, -{ - "type": "node", - "id": 11261040938, - "lat": 56.2621867, - "lon": -3.1006414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY15 304D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11261149314, - "lat": 51.5610252, - "lon": -1.1335223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "OX10 393D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11261203938, - "lat": 51.7610852, - "lon": 0.2395238, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11261654421, - "lat": 53.1057381, - "lon": -2.0247280, - "tags": { - "amenity": "post_box", - "colour": "gold", - "note": "painted gold in honour of Anna Watkins' 2012 Olympic success", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11262848008, - "lat": 52.7222935, - "lon": -2.9506606, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11262915692, - "lat": 54.6902500, - "lon": -1.2275471, - "tags": { - "amenity": "post_box", - "opening_hours": "Mo-Fr 09:00; Sa 07:00", - "ref": "TS26 27D" - } -}, -{ - "type": "node", - "id": 11263062876, - "lat": 51.5275318, - "lon": -0.1961701, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 23D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11263062877, - "lat": 51.5263662, - "lon": -0.1972416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 4", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11263062878, - "lat": 51.5263528, - "lon": -0.1954593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 26D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11263062879, - "lat": 51.5198317, - "lon": -0.2178839, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 38D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11263062880, - "lat": 51.5195246, - "lon": -0.2206814, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 36D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11263062881, - "lat": 51.5210985, - "lon": -0.2223820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 9D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11263062882, - "lat": 51.5221866, - "lon": -0.2252224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 28D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11263062883, - "lat": 51.5190148, - "lon": -0.2252224, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 35D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11263062884, - "lat": 51.5176820, - "lon": -0.2225684, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 18D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11263062885, - "lat": 51.5201196, - "lon": -0.2139216, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11263062886, - "lat": 51.5220339, - "lon": -0.2160238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "W10 33", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11263062887, - "lat": 51.5316308, - "lon": -0.2132101, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W10 12", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11263170288, - "lat": 53.3218307, - "lon": -1.1210360, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S81 4", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11264923219, - "lat": 51.5348700, - "lon": -3.1439727, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-02-18", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923221, - "lat": 51.5256149, - "lon": -3.1665365, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-25", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11264923222, - "lat": 51.5229815, - "lon": -3.1729234, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-25", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923223, - "lat": 51.5194163, - "lon": -3.1639618, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-25", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "royal_cypher": "yes", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923224, - "lat": 51.5153287, - "lon": -3.1770828, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-16", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923225, - "lat": 51.5101939, - "lon": -3.1766550, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2021-03-09", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923226, - "lat": 51.5055837, - "lon": -3.1766218, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-09", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11264923227, - "lat": 51.5072104, - "lon": -3.1735088, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-25", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923228, - "lat": 51.5141896, - "lon": -3.1736727, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2020-03-25", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923229, - "lat": 51.5146471, - "lon": -3.1726387, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2019-10-29", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923230, - "lat": 51.5124003, - "lon": -3.1674743, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2019-10-20", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11264923231, - "lat": 51.5086143, - "lon": -3.1650804, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "check_date": "2018-10-19", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "source": "streetside" - } -}, -{ - "type": "node", - "id": 11265405967, - "lat": 51.1914032, - "lon": -0.3888083, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RH5 106D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11265483507, - "lat": 53.8425493, - "lon": -1.7641586, - "tags": { - "amenity": "post_box", - "image": "https://www.geograph.org.uk/photo/2574197", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11265542903, - "lat": 56.8334724, - "lon": -2.4650765, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB30 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11265802973, - "lat": 52.6721664, - "lon": 0.8903545, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11267417848, - "lat": 55.4006759, - "lon": -2.6561312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD9 63" - } -}, -{ - "type": "node", - "id": 11270220842, - "lat": 55.0707487, - "lon": -6.5126942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT53 44D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11275985052, - "lat": 50.9208819, - "lon": -2.0697092, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DT11 57", - "ref:GB:uprn": "10015380174", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11276006018, - "lat": 55.4957405, - "lon": -3.2039195, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD7 95", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11277315038, - "lat": 54.8540619, - "lon": -6.4301622, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11277475140, - "lat": 50.9365307, - "lon": -3.6785458, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX16 63D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11277475148, - "lat": 50.8607085, - "lon": -3.8034427, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX17 5D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11277516787, - "lat": 51.0647697, - "lon": -3.6282403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TA22 77D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11278117849, - "lat": 50.8796471, - "lon": -2.1358504, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 108D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11279053721, - "lat": 53.1453751, - "lon": -2.3611878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW11 273D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11279307371, - "lat": 53.1486518, - "lon": -2.3661161, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW11 130D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11279577775, - "lat": 56.5593398, - "lon": -2.5903782, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "#da222a", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DD11 313D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "File:Arbroath_Royal_Mail_postbox_DD11_313D.jpg" - } -}, -{ - "type": "node", - "id": 11280513134, - "lat": 55.3989105, - "lon": -3.7843639, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11281161758, - "lat": 51.4900466, - "lon": 0.3133721, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11281172527, - "lat": 51.4762276, - "lon": 0.3393385, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11281172529, - "lat": 51.4814683, - "lon": 0.3407942, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11281637758, - "lat": 51.4083223, - "lon": -1.5172203, - "tags": { - "addr:street": "Priory Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG17 202D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11281806698, - "lat": 51.2345714, - "lon": -0.8436225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "GU10 174D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11282340978, - "lat": 55.5176268, - "lon": -2.3639535, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TD5 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11283502070, - "lat": 51.5511892, - "lon": -2.9416512, - "tags": { - "amenity": "post_box", - "colour": "red", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11284448761, - "lat": 51.8773603, - "lon": -2.8640212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11284448763, - "lat": 51.8799748, - "lon": -2.8560618, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP7 18D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11284564676, - "lat": 51.9394929, - "lon": -2.9128750, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "HR2 65", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11285077409, - "lat": 55.7971529, - "lon": -2.2104239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TD11 13", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11285077411, - "lat": 55.8015546, - "lon": -2.2158051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "TD11 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11286665360, - "lat": 51.9757087, - "lon": -3.0141391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "NP7 125", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11288837143, - "lat": 51.5770291, - "lon": 0.4040510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288837144, - "lat": 51.5770386, - "lon": 0.4041212, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11288842704, - "lat": 51.5706510, - "lon": 0.4096836, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288842705, - "lat": 51.5697371, - "lon": 0.4185703, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288842706, - "lat": 51.5678154, - "lon": 0.4233632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288842707, - "lat": 51.5685116, - "lon": 0.4375644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288842708, - "lat": 51.5714796, - "lon": 0.4366692, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288842709, - "lat": 51.5706458, - "lon": 0.4478882, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288842710, - "lat": 51.5767658, - "lon": 0.4386078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11288846201, - "lat": 51.5861875, - "lon": 0.4297841, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11289659234, - "lat": 51.7434164, - "lon": -3.2936977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF81 353D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11289663646, - "lat": 51.7125837, - "lon": -3.3465632, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF48 50", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11289663647, - "lat": 51.7147422, - "lon": -3.3465748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF48 39D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11289663648, - "lat": 51.7243790, - "lon": -3.3562897, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF48 36", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11289673851, - "lat": 51.7412810, - "lon": -3.3670186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF47 69D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11289673852, - "lat": 51.7454083, - "lon": -3.3599804, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "CF47 64D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11289738531, - "lat": 51.7654309, - "lon": -3.3499816, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF48 60", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11291640283, - "lat": 51.7036195, - "lon": 0.2256728, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM5 6", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11292169309, - "lat": 51.7770505, - "lon": -3.2944433, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 576", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11292705719, - "lat": 53.8086801, - "lon": -1.7909149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BD9 149D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11293805264, - "lat": 56.2396305, - "lon": -3.3852602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY13 101D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11294192538, - "lat": 51.7417551, - "lon": -2.5236518, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11294192541, - "lat": 51.7615754, - "lon": -2.4880802, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11294497407, - "lat": 52.3178557, - "lon": -0.1750758, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11294963969, - "lat": 50.9899958, - "lon": -1.5002981, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "fixme": "Check box number is still the same - this is moved from other side of road", - "note": "Two identical freestanding boxes replace previous box in Post Office wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 106" - } -}, -{ - "type": "node", - "id": 11294963970, - "lat": 50.9899940, - "lon": -1.5002827, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "fixme": "Check box number is still the same - this is moved from other side of road", - "note": "Two identical freestanding boxes replace previous box in Post Office wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SO51 106" - } -}, -{ - "type": "node", - "id": 11295318368, - "lat": 51.5924905, - "lon": -0.1977150, - "tags": { - "addr:street": "Stanhope Avenue", - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "N3 21D" - } -}, -{ - "type": "node", - "id": 11295536439, - "lat": 51.3949503, - "lon": -1.3394677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "RG14 178D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11295618732, - "lat": 50.6984800, - "lon": -2.7218071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref:GB:uprn": "10015474454" - } -}, -{ - "type": "node", - "id": 11295646267, - "lat": 51.3701992, - "lon": 0.6422458, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "old_ref": "ME9 82", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 82D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-10-28" - } -}, -{ - "type": "node", - "id": 11295849314, - "lat": 51.8378690, - "lon": -2.5112283, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11297948275, - "lat": 54.7011438, - "lon": -1.1920834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1023967515503077", - "opening_hours": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS24 106D", - "survey:date": "2023-09-04" - } -}, -{ - "type": "node", - "id": 11298631250, - "lat": 51.8778850, - "lon": 0.6919227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11298674336, - "lat": 55.8093336, - "lon": -4.2282209, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "G45 1268", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11298675168, - "lat": 55.8964263, - "lon": -4.4484621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA8 192", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11298675764, - "lat": 51.7795439, - "lon": -3.2487222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP22 585D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11298675765, - "lat": 51.7727047, - "lon": -3.2465458, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP22 613D", - "royal_cypher": "EIIR", - "survey:date": "2023-09-07", - "wikimedia_commons": "File:Ollie's Baguette Bar, Tredegar - geograph.org.uk - 5404166.jpg" - } -}, -{ - "type": "node", - "id": 11298675766, - "lat": 51.7677536, - "lon": -3.2527591, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "NP22 619D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11298739949, - "lat": 51.5479261, - "lon": -3.2659343, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11298739950, - "lat": 51.5488496, - "lon": -3.2711983, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11298770519, - "lat": 54.6207079, - "lon": -6.2173464, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11298987832, - "lat": 51.1015230, - "lon": -3.9536338, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11300302455, - "lat": 55.2025784, - "lon": -6.2470100, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11300792499, - "lat": 50.8262584, - "lon": -2.3103722, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "date": "2021-09-14", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DT11 84D", - "ref:GB:uprn": "10015445005", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11301150882, - "lat": 51.9547182, - "lon": 0.9184907, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11301359211, - "lat": 51.9489229, - "lon": 0.8087648, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11301376017, - "lat": 51.9958994, - "lon": 0.5817234, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11301376018, - "lat": 51.9957598, - "lon": 0.5816086, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11301382599, - "lat": 51.9744717, - "lon": 0.6371160, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11304063886, - "lat": 50.3373877, - "lon": -5.1443928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR6 87D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11304093781, - "lat": 50.3384780, - "lon": -5.1411618, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "TR6 117D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11304742682, - "lat": 51.4415374, - "lon": 0.3458772, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11306340816, - "lat": 53.2062950, - "lon": -3.0236951, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 17:30; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11307553594, - "lat": 51.4107180, - "lon": 0.0276450, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11309763259, - "lat": 50.3849399, - "lon": -4.8870254, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11310752333, - "lat": 54.5413160, - "lon": -6.2039745, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11311082333, - "lat": 51.3748903, - "lon": 0.0448346, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11314861664, - "lat": 54.7859704, - "lon": -1.7364943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11314922202, - "lat": 51.5310293, - "lon": 0.7832066, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11314922203, - "lat": 51.5334619, - "lon": 0.7802912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 218" - } -}, -{ - "type": "node", - "id": 11314922204, - "lat": 51.5310522, - "lon": 0.7685563, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 275" - } -}, -{ - "type": "node", - "id": 11314922205, - "lat": 51.5304428, - "lon": 0.7957160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 310" - } -}, -{ - "type": "node", - "id": 11314922206, - "lat": 51.5480164, - "lon": 0.8116695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SS3 125" - } -}, -{ - "type": "node", - "id": 11314922207, - "lat": 51.5530054, - "lon": 0.8080654, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SS3 8", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11322952099, - "lat": 53.5524788, - "lon": -2.0927784, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-11-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "note": "ref may be incorrect. Taken from https://postboxes.dracos.co.uk as the ref on the box was not ledgible.", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL1 187" - } -}, -{ - "type": "node", - "id": 11327512169, - "lat": 53.2904107, - "lon": -3.0644268, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "ref": "CH64 465", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11328141661, - "lat": 51.3335421, - "lon": -2.0022687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN10 34", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11328291894, - "lat": 51.3888346, - "lon": -2.3504049, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11328615505, - "lat": 53.5477828, - "lon": -2.0958393, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date:collection_times": "2023-11-05", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "colour": "red", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "OL4 225P" - } -}, -{ - "type": "node", - "id": 11329391772, - "lat": 50.6620406, - "lon": -4.3808352, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11329526506, - "lat": 50.2593879, - "lon": -5.1745477, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR4 44D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11329737022, - "lat": 54.6126794, - "lon": -1.2784721, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS23 437D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11329773927, - "lat": 50.5233078, - "lon": -4.4264473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PL14 118D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11331808564, - "lat": 53.5614447, - "lon": -0.0857314, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/9F0Q2CK9/DN32-13D.jpg", - "location": "Wellowgate, Abbey Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 13D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11331864583, - "lat": 51.3459875, - "lon": 0.8167671, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "This postbox has moved to this location.", - "old_ref": "ME9 8", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ME9 8D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-03" - } -}, -{ - "type": "node", - "id": 11332679810, - "lat": 50.3464658, - "lon": -5.1353857, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "note": "Lamp box design post box embedded into a stone wall", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "TR6 143D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11333514708, - "lat": 50.4499478, - "lon": -4.9432069, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR9 11D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11333756790, - "lat": 51.2694856, - "lon": -2.1282537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11334772685, - "lat": 51.3655564, - "lon": -2.3664406, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "BA2 243D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 11334952969, - "lat": 53.4571691, - "lon": -2.7639632, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11336368924, - "lat": 53.4663712, - "lon": -2.9816752, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11336869583, - "lat": 54.7470212, - "lon": -1.2884042, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11339344841, - "lat": 54.7614772, - "lon": -1.3170370, - "tags": { - "amenity": "post_box", - "mapillary": "1983049255406116", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11339488827, - "lat": 53.0955323, - "lon": -2.4419565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW2 6", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 11339494017, - "lat": 54.7675340, - "lon": -1.3215673, - "tags": { - "amenity": "post_box", - "mapillary": "340771845075581", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11339547139, - "lat": 54.7176933, - "lon": -1.2534633, - "tags": { - "amenity": "post_box", - "mapillary": "6768931573156871", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11339603472, - "lat": 55.7115993, - "lon": -4.0947461, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "metal_pole", - "post_box:type": "lamp", - "ref": "ML10 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11341249502, - "lat": 55.7903235, - "lon": -3.9926445, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ML1 1001" - } -}, -{ - "type": "node", - "id": 11341315984, - "lat": 56.2014147, - "lon": -4.7450054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "G83 85", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11341330863, - "lat": 52.6516933, - "lon": -0.4742960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11342339503, - "lat": 56.0077004, - "lon": -4.7487223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "G84 37", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11342357551, - "lat": 55.7961127, - "lon": -4.8627102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KA30 125", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11343512731, - "lat": 51.5269703, - "lon": -0.1840049, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 15D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11343512732, - "lat": 51.5292455, - "lon": -0.1935656, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 28D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11343512734, - "lat": 51.5262043, - "lon": -0.1927060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 19", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11343512735, - "lat": 51.5261326, - "lon": -0.1903792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 32D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11343523150, - "lat": 51.5270245, - "lon": -0.2027643, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W9 1D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11344178718, - "lat": 51.4975699, - "lon": -0.8358456, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11345214346, - "lat": 53.6529663, - "lon": -1.6501394, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11345447382, - "lat": 54.9846893, - "lon": -5.9908935, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT44 110" - } -}, -{ - "type": "node", - "id": 11347302486, - "lat": 52.5274407, - "lon": -2.7749879, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY6 109D" - } -}, -{ - "type": "node", - "id": 11348371588, - "lat": 53.3458823, - "lon": -1.3772693, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "S12 741D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11349268622, - "lat": 52.5325562, - "lon": -2.8029009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY6 483D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11349759181, - "lat": 57.9921531, - "lon": -3.9758176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "KW10 69" - } -}, -{ - "type": "node", - "id": 11349759192, - "lat": 57.9854994, - "lon": -3.9474157, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "KW10 66" - } -}, -{ - "type": "node", - "id": 11349866189, - "lat": 54.5563060, - "lon": -1.5107817, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "meter", - "ref": "DL1 286" - } -}, -{ - "type": "node", - "id": 11350822834, - "lat": 55.7784553, - "lon": -2.0200929, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TD15 5D", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 11351487254, - "lat": 55.7768215, - "lon": -2.0158772, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 3D", - "royal_cypher": "GVIR", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 11351501372, - "lat": 55.7803890, - "lon": -2.0151235, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 89D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 11351504804, - "lat": 55.7787871, - "lon": -2.0109855, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TD15 35D", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 11351509704, - "lat": 55.7844204, - "lon": -2.0114690, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 33D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 11351529105, - "lat": 55.7744557, - "lon": -2.0049888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TD15 101D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2023-11-14" - } -}, -{ - "type": "node", - "id": 11353627355, - "lat": 50.3776429, - "lon": -5.1290726, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wall", - "post_box:type": "wall", - "ref": "TR8 61D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11353627356, - "lat": 50.3621417, - "lon": -5.0963865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355618540, - "lat": 51.6237302, - "lon": 0.3333212, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11355636281, - "lat": 50.3986051, - "lon": -5.0686437, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR8 18D", - "royal_cypher": "VR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355636282, - "lat": 50.4012912, - "lon": -5.0616849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:15; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TR8 46", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355636283, - "lat": 50.4027431, - "lon": -5.0557849, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11355636284, - "lat": 50.4074555, - "lon": -5.0569706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 16D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355636285, - "lat": 50.4034479, - "lon": -5.0285905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 38", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355636286, - "lat": 50.4025822, - "lon": -5.0246225, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 87D", - "royal_cypher": "EIIR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355636287, - "lat": 50.3941665, - "lon": -5.0260338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 49D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11355806288, - "lat": 57.1397458, - "lon": -2.0986910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "272522705763845", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB11 59D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11356103973, - "lat": 50.7884999, - "lon": -0.6316978, - "tags": { - "amenity": "post_box", - "check_date": "2017-08-15", - "mapillary": "1639568833099690", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11356125696, - "lat": 56.4685792, - "lon": -2.9219063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD4 50D", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11356143425, - "lat": 53.5649056, - "lon": -2.5561774, - "tags": { - "amenity": "post_box", - "check_date": "2020-08-13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11356151053, - "lat": 53.5683332, - "lon": -2.5453343, - "tags": { - "amenity": "post_box", - "check_date": "2020-08-13", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11356156109, - "lat": 50.7890510, - "lon": -0.6684695, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-23", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11356157472, - "lat": 53.5346686, - "lon": -2.5186645, - "tags": { - "amenity": "post_box", - "check_date": "2020-08-14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11356760075, - "lat": 55.1489474, - "lon": -6.6767181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "colour": "red", - "level": "0", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT52 159", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11357006821, - "lat": 57.1851483, - "lon": -2.3910617, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB32 256" - } -}, -{ - "type": "node", - "id": 11357038725, - "lat": 55.1489767, - "lon": -6.6768003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "level": "1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT52 16D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11357062512, - "lat": 54.5836753, - "lon": -1.5473691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DL1 62" - } -}, -{ - "type": "node", - "id": 11357263492, - "lat": 50.4492592, - "lon": -4.9977293, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 89D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11357263493, - "lat": 50.4569820, - "lon": -5.0299705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "TR8 35D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11358392989, - "lat": 51.0501159, - "lon": -0.3419099, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH13 208D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11359096395, - "lat": 52.3209412, - "lon": -0.1760460, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11360035492, - "lat": 53.5640661, - "lon": -0.0971375, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/YSzRbSyZ/DN31-630.jpg", - "location": "Cromwell Road, Littlefield Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DN31 630", - "ref:GB:uprn": "10015430252", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360600680, - "lat": 53.5720392, - "lon": -0.0578097, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/nrrjtwmb/DN31-24D.jpg", - "location": "Cleethorpe Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 24D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360608301, - "lat": 53.5740293, - "lon": -0.0660494, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Rq5TQ42d/DN31-1D.jpg", - "location": "Cleethorpe Road, Victor Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 1D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360615336, - "lat": 53.5709801, - "lon": -0.0922734, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/vTJ1996m/DN31-215-D.jpg", - "location": "Freshney Drive, Corporation Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 215D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360615337, - "lat": 53.5678852, - "lon": -0.0947799, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/kMBcVG1y/DN31-118-D.jpg", - "location": "Lord Street, Haycroft Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 118D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360615338, - "lat": 53.5684451, - "lon": -0.0905232, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/N00NfNWY/DN31-73.jpg", - "location": "Yarborough Drive", - "note": "Collection plate missing at time of survey (Nov2023). Additional info gained from https://tinyurl.com/bdz444as", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 73", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey, royal mail website" - } -}, -{ - "type": "node", - "id": 11360615339, - "lat": 53.5663361, - "lon": -0.0922076, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-02", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/HLSB8yQT/DN31-15D.jpg", - "location": "Lord Street, Earl Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360888266, - "lat": 53.5708232, - "lon": -0.1219600, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/MHPJPYyK/DN37-149-D.jpg", - "location": "Cromwell Road, Service Road 6", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN37 149D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360894125, - "lat": 53.5639809, - "lon": -0.0877056, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/05VydM7G/DN31-11.jpg", - "location": "Station Approach", - "note": "at the time of my survey there was no info plate on the box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 11", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360894755, - "lat": 53.5718175, - "lon": -0.0870313, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "image": "https://i.postimg.cc/VLC6bDB9/DN31-14.jpg", - "location": "Rendel Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 14", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360922875, - "lat": 53.5718310, - "lon": -0.0870306, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 17:00; Sa 11:15", - "image": "https://i.postimg.cc/mrgfsgmX/DN31-16.jpg", - "location": "Rendel Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 16", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11360933102, - "lat": 53.5732178, - "lon": -0.1023672, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/44P0BdJ7/DN31-97D.jpg", - "location": "Gilbey Road, outside No.116", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 97D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11361009687, - "lat": 57.5899428, - "lon": -2.1952935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB43 20", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11361632548, - "lat": 53.6131506, - "lon": -0.2562824, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN36 47", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11361632549, - "lat": 53.6064441, - "lon": -0.2690879, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-16", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/sXtyXn14/DN40-68D.jpg", - "location": "Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN40 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11361658172, - "lat": 53.5243197, - "lon": -0.0262186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN36 251" - } -}, -{ - "type": "node", - "id": 11361717339, - "lat": 53.5765313, - "lon": -0.0959909, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/SsFq4r8V/DN31-293-D.jpg", - "location": "Moody Lane, West Coates Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DN31 293D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11361732831, - "lat": 53.5702147, - "lon": -0.0519651, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/hjJn9s4S/DN35-275-D.jpg", - "location": "Grimsby Road, Barcroft Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DN35 275D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11361997253, - "lat": 51.4796322, - "lon": -0.1422469, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SW11 75", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11362943977, - "lat": 53.5684817, - "lon": -0.0540841, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/kXBp5677/DN35-64D.jpg", - "location": "Brereton Avenue, Barcroft Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11362949922, - "lat": 53.5636324, - "lon": -0.0428697, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-19", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/sfcb0CgZ/DN35-241-D.jpg", - "location": "Brereton Avenue, Robson Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 241D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11363087617, - "lat": 50.6104781, - "lon": -1.9726468, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "post_box:type": "pillar", - "ref": "BH19 74", - "ref:GB:uprn": "10015448871", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11363964667, - "lat": 53.5657097, - "lon": -0.1046182, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/X7S202b5/DN34-238-D.jpg", - "location": "Yarborough Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 238D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11364844279, - "lat": 53.5629342, - "lon": -0.0938948, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 17:30; Sa 12:15", - "image": "https://i.postimg.cc/mrH6QmVm/DN34-92.jpg", - "location": "Pelham Road, Dudley Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 92", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11364844280, - "lat": 53.5629087, - "lon": -0.0939149, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "image": "https://i.postimg.cc/25tD3NPK/DN34-287-P.jpg", - "location": "Pelham Road, Dudley Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DN34 287P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11364961417, - "lat": 53.5539468, - "lon": -0.0241050, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/6qCXVHKJ/DN35-114-D.jpg", - "location": "Oxford Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 114D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11364965233, - "lat": 53.5572466, - "lon": -0.0293266, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/7LxPXrtH/DN35-40D.jpg", - "location": "St Peter's Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 40D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11364979939, - "lat": 53.5581603, - "lon": -0.0831686, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/W1L097K1/DN32-51D.jpg", - "location": "Welholme Road, Park Drive/Ainslie Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN32 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11364995425, - "lat": 53.5578520, - "lon": -0.0438783, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/HLxhWJcq/DN35-120-D.jpg", - "location": "Clee Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DN35 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11365026550, - "lat": 53.5681273, - "lon": -0.0451577, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/mrFrNTgz/DN35-107-D.jpg", - "location": "Grimsby Road, Fuller Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 107D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11365053019, - "lat": 53.5715069, - "lon": -0.0783969, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "image": "https://i.postimg.cc/jdgKqDRy/DN31-282-DN31-290.jpg", - "location": "Fotherby Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN31 282;DN31 290", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11365056976, - "lat": 53.5794181, - "lon": -0.0695289, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/02DKDNSh/DN31-183-D.jpg", - "location": "Hutton Road, Surtees Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN31 183D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11365058175, - "lat": 53.5764437, - "lon": -0.0622093, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Dz06yFXm/DN31-39D.jpg", - "location": "Wickham Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 39D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11365295211, - "lat": 53.7509880, - "lon": -1.8761770, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11370679702, - "lat": 51.3645103, - "lon": 0.0865954, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11372241622, - "lat": 54.2100735, - "lon": -5.9019801, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT33 7D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11373061049, - "lat": 54.4028725, - "lon": -5.8979040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11373791516, - "lat": 53.2829767, - "lon": -1.6364478, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-01", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "lamp", - "ref": "S32 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box S32 164D" - } -}, -{ - "type": "node", - "id": 11374318961, - "lat": 55.9394066, - "lon": -4.7326924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11374470863, - "lat": 57.4166696, - "lon": -1.8615771, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB42 15", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11375565401, - "lat": 53.1129487, - "lon": -3.3003993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 42D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11375565429, - "lat": 53.1112432, - "lon": -3.2961304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 41D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11375565431, - "lat": 53.1098349, - "lon": -3.2983794, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL15 52", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11375565432, - "lat": 53.1105710, - "lon": -3.3039562, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 54D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11375565433, - "lat": 53.1144458, - "lon": -3.3196168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL15 16D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11375943673, - "lat": 54.3067342, - "lon": -1.8167529, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11375981270, - "lat": 50.7209494, - "lon": -2.7135604, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11376079328, - "lat": 50.8896101, - "lon": -4.5471354, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 17D", - "royal_cypher": "EIIR", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 11376079335, - "lat": 50.8462385, - "lon": -4.5196905, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 106D", - "royal_cypher": "EIIR", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 11376079342, - "lat": 50.8383885, - "lon": -4.5358709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 117D", - "royal_cypher": "GR", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 11376079346, - "lat": 50.8362139, - "lon": -4.5358911, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 37D", - "royal_cypher": "EIIR", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 11376079363, - "lat": 50.8327422, - "lon": -4.5180919, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 127D", - "royal_cypher": "EIIR", - "survey:date": "2023-11-25" - } -}, -{ - "type": "node", - "id": 11377102496, - "lat": 53.1949559, - "lon": -3.0210762, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11378020790, - "lat": 53.5665133, - "lon": -0.0950696, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "image": "https://i.postimg.cc/xTFxk0rw/DN31-109.jpg", - "location": "Ripon Street, Chantry Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 109", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11378154718, - "lat": 57.3929117, - "lon": -3.4526501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH26 7", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11378546867, - "lat": 51.7757253, - "lon": -4.6049450, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11378639665, - "lat": 50.3526449, - "lon": -5.0071238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "TR8 51D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11378666199, - "lat": 52.6764486, - "lon": -3.4297787, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11378668601, - "lat": 52.3941301, - "lon": -3.3287173, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11378809574, - "lat": 52.8098719, - "lon": -3.2069803, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11378948687, - "lat": 52.5446461, - "lon": -4.0522303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LL35 107", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11379132648, - "lat": 53.5769541, - "lon": -0.1104681, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "image": "https://i.postimg.cc/0N4bDmQY/DN31-265.jpg", - "location": "Estate Road No.2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN31 265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11379132649, - "lat": 53.5769386, - "lon": -0.1104983, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "image": "https://i.postimg.cc/D0JrKBbM/DN31-292-P.jpg", - "location": "Estate Road No.2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "DN31 292P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11379222743, - "lat": 53.5786605, - "lon": -0.1218098, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/jdhmBCWm/DN31.jpg", - "location": "Estate Road No.5", - "note": "Impossible at this time (Nov23) to ascertain the post box reference number due to condensation inside the Perspex panel cover. The DN31 was gained from the Royal Mail website: https://tinyurl.com/4vks832n", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DN31 277", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11379707018, - "lat": 54.5062100, - "lon": -6.0472243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11380340406, - "lat": 53.2475040, - "lon": -0.7142223, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11380985007, - "lat": 51.5054970, - "lon": -0.4191750, - "tags": { - "amenity": "post_box", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11381312665, - "lat": 56.4344812, - "lon": -5.4726340, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11381983705, - "lat": 51.7771832, - "lon": -0.1044760, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11384217560, - "lat": 53.5094478, - "lon": -2.4046691, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11384542491, - "lat": 53.0992447, - "lon": -2.4472851, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CW1 21D", - "royal_cypher": "GVIR", - "source": "survey;Bing" - } -}, -{ - "type": "node", - "id": 11386342494, - "lat": 51.1168485, - "lon": -2.4489953, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BA10", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11386342495, - "lat": 51.1154382, - "lon": -2.4471881, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "BA10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11386342496, - "lat": 51.1073773, - "lon": -2.4595349, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "BA10", - "survey:date": "2024-01-21", - "wikimedia_commons": "File:House front and railway bridge at Legg Bridge - geograph.org.uk - 6169931.jpg" - } -}, -{ - "type": "node", - "id": 11387842608, - "lat": 56.3795989, - "lon": -2.9314762, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "post_box is located at the corner of Hillfield Road and The Mount, Balmullo not Mount Melville", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KY16 373D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11387874154, - "lat": 56.4364546, - "lon": -2.9448626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD6 145D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11388155264, - "lat": 56.5220351, - "lon": -2.9450472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 224D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11388200466, - "lat": 56.5295125, - "lon": -2.9436490, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD4 600D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11388276320, - "lat": 56.4790377, - "lon": -2.9427514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 219D", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11388299005, - "lat": 56.4896099, - "lon": -2.9516431, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 293D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11388707247, - "lat": 57.4494154, - "lon": -2.7889251, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB54 6", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11388707248, - "lat": 57.4478111, - "lon": -2.7856987, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB54 8" - } -}, -{ - "type": "node", - "id": 11390007914, - "lat": 53.5698261, - "lon": -0.0791842, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-02", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "image": "https://i.postimg.cc/VLqjxCZD/DN31-18.jpg", - "indoor": "yes", - "location": "Inside Tesco, Market Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "DN31 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11390091357, - "lat": 50.6963960, - "lon": -2.1062221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH20 2000", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11390091358, - "lat": 50.6963897, - "lon": -2.1062335, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 06:00; Sa 12:30", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "BH20 400P" - } -}, -{ - "type": "node", - "id": 11390091363, - "lat": 50.6867177, - "lon": -2.1101559, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "date": "2023-03-02", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BH20 401", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11390202562, - "lat": 53.2648508, - "lon": -0.4428650, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11390477276, - "lat": 53.5118671, - "lon": -0.0963731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Cheapside, outside No.80", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 222" - } -}, -{ - "type": "node", - "id": 11390570092, - "lat": 53.5213941, - "lon": -0.0977430, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/BbDRKLjL/DN37-248-D.jpg", - "location": "Fairway, outside No.125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN37 248D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11390643758, - "lat": 53.4942252, - "lon": -0.0227411, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-18", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/13CrhNyP/DN36-74D.jpg", - "location": "North End Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11390705276, - "lat": 57.3024064, - "lon": -2.2436920, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB21 377", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11390705374, - "lat": 53.4906703, - "lon": -0.0234244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:45", - "location": "Town Road", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN36 143" - } -}, -{ - "type": "node", - "id": 11390712484, - "lat": 53.4905566, - "lon": -0.0122993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Church Lane", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN36 255" - } -}, -{ - "type": "node", - "id": 11391569019, - "lat": 53.4872244, - "lon": 0.0322502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Lock Road", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN36 159" - } -}, -{ - "type": "node", - "id": 11391686132, - "lat": 53.4818698, - "lon": 0.0299911, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/MGLwhq0Q/DN36-94D.jpg", - "location": "Fleetway", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 94D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11391709741, - "lat": 53.5046810, - "lon": -0.0628039, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Louth Road", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN36 115" - } -}, -{ - "type": "node", - "id": 11391816647, - "lat": 53.5702044, - "lon": -0.0987911, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/K8zRkx6S/DN31-167-D.jpg", - "location": "Boulevard Avenue, outside No.87", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN31 167D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11392193509, - "lat": 53.5555465, - "lon": -0.0801846, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/tgZ5CN1r/DN32-279-D.jpg", - "location": "Legsby Avenue, St Augustine Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN32 279D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11392400427, - "lat": 51.4160425, - "lon": -1.9698174, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN11 138D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11392456393, - "lat": 51.4262516, - "lon": -1.9816516, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN11 231D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11393385018, - "lat": 53.2675824, - "lon": -0.6624255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11393948940, - "lat": 53.3807736, - "lon": -2.1643360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11395113986, - "lat": 55.0731238, - "lon": -4.5711032, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11395700625, - "lat": 53.5617792, - "lon": -0.0957361, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/WpBrRMcT/DN34-283-D.jpg", - "location": "Crompton Drive, Vicarage Gardens", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN34 283D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11395781764, - "lat": 53.5596165, - "lon": -0.0923699, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/BbpN7Wx6/DN34-65D.jpg", - "location": "Augusta Street, Bargate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11395817028, - "lat": 53.5649900, - "lon": -0.0520952, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/1t3zV29S/DN35-17D.jpg", - "location": "Queen Mary Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 17D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11395887261, - "lat": 53.5692909, - "lon": -0.0494438, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/SKqBkQzK/DN35-69.jpg", - "location": "Grimsby Road, Blundell Avenue", - "note": "at the time of my survey there was no info plate on the box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 69", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11395915994, - "lat": 53.5663982, - "lon": -0.0424781, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/xCyLJzYW/DN35-206-D.jpg", - "location": "Grimsby Road, Lestrange Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 206D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11395950321, - "lat": 53.5630051, - "lon": -0.0378755, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/CKmghwQS/DN35-219-D.jpg", - "location": "Grimsby Road, St Helier's Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 219D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11395969427, - "lat": 53.5610026, - "lon": -0.0351088, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/RCHKDkzh/DN35-89D.jpg", - "location": "Princes Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 89D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11396086198, - "lat": 53.5781501, - "lon": -0.2066535, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "DN41 252" - } -}, -{ - "type": "node", - "id": 11396088909, - "lat": 53.5726317, - "lon": -0.2430537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN41 169" - } -}, -{ - "type": "node", - "id": 11396088910, - "lat": 53.5762052, - "lon": -0.2453715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN41 277" - } -}, -{ - "type": "node", - "id": 11396122122, - "lat": 53.5561863, - "lon": -0.2132946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 151" - } -}, -{ - "type": "node", - "id": 11396520443, - "lat": 53.2576718, - "lon": -2.5023960, - "tags": { - "amenity": "post_box", - "ref": "CW9 53D" - } -}, -{ - "type": "node", - "id": 11396879971, - "lat": 55.4153625, - "lon": -5.6938393, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11396939775, - "lat": 51.5176937, - "lon": -0.0396242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "E1 18;E1 118", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11397507518, - "lat": 50.7945498, - "lon": -3.2003636, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11397940082, - "lat": 53.5698708, - "lon": -0.1284803, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/zGf62WBV/DN37-212.jpg", - "location": "Wingate Parade", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN37 212", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11397977170, - "lat": 53.5733783, - "lon": -0.1350298, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/GtQgqhnF/DN37-163-D.jpg", - "location": "Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN37 163D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11398431924, - "lat": 50.9652014, - "lon": -2.7896873, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11398431925, - "lat": 50.9646316, - "lon": -2.7907584, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TA12 186", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11398891814, - "lat": 54.8277899, - "lon": -5.8133227, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11398964065, - "lat": 50.1370488, - "lon": -5.4631803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR20 156D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11399557063, - "lat": 53.6140213, - "lon": -2.1517163, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11399557892, - "lat": 53.6104929, - "lon": -2.1170320, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11399571713, - "lat": 53.6136306, - "lon": -2.1411042, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11402994074, - "lat": 53.5664130, - "lon": -0.1432286, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/28h9Pz2g/DN37-272-D.jpg", - "location": "Gloria Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 272D", - "ref:GB:uprn": "10015493496", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11403145533, - "lat": 53.3237206, - "lon": -0.4209304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11403396317, - "lat": 51.4267564, - "lon": -2.3154372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11405914431, - "lat": 53.5139703, - "lon": -2.4588174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11407813998, - "lat": 54.9325170, - "lon": -6.5786223, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11410441260, - "lat": 50.7183168, - "lon": -3.2885872, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11411899786, - "lat": 53.5625615, - "lon": -0.1106277, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-06", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/7LQRFwqq/DN34-129.jpg", - "note": "at the time of my survey the collection plate was missing from this letter box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 129", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11412154346, - "lat": 53.5585638, - "lon": -0.0355916, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/nVX689yD/DN35-91D.jpg", - "location": "Bentley Street, Fairview Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 91D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11412234212, - "lat": 53.5550916, - "lon": -0.0345737, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Oslear Crescent", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN35 180D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11412464657, - "lat": 53.5551155, - "lon": -0.0286742, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Bvmjg9m2/DN35-41D.jpg", - "location": "Highgate, Thrunscoe Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 41D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11413077446, - "lat": 53.5481272, - "lon": -0.0237711, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP1;CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "image": "https://i.postimg.cc/pXMkGyTb/DN35-36-DN35-317.jpg", - "location": "Hardys Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "DN35 36;DN35 317", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11413078721, - "lat": 53.5512267, - "lon": -0.0198323, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Cromwell Road, outside of number 14", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 259D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11413080546, - "lat": 53.5550701, - "lon": -0.0214872, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-11", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/ZYGJD0fZ/DN35-42D.jpg", - "location": "Kingsway, Segmere Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 42D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11413547770, - "lat": 53.5354516, - "lon": -0.8411065, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DN9 59" - } -}, -{ - "type": "node", - "id": 11413570854, - "lat": 53.5258385, - "lon": -0.8223718, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "DN9 196" - } -}, -{ - "type": "node", - "id": 11413572598, - "lat": 50.7308462, - "lon": -3.3214676, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX11 122D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11413579454, - "lat": 53.5229191, - "lon": -0.8170089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "DN9 55", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11414943330, - "lat": 53.5562269, - "lon": -0.5169301, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "DN20 117" - } -}, -{ - "type": "node", - "id": 11418583256, - "lat": 55.8097993, - "lon": -4.5580707, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11422622815, - "lat": 51.4904512, - "lon": 0.1335232, - "tags": { - "amenity": "post_box", - "mapillary": "550821422579710", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11422655532, - "lat": 51.4786302, - "lon": 0.1389465, - "tags": { - "amenity": "post_box", - "mapillary": "280538196911233", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11422662216, - "lat": 51.4906169, - "lon": 0.1475206, - "tags": { - "amenity": "post_box", - "mapillary": "825617311386682", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11422668989, - "lat": 51.4509901, - "lon": 0.1223421, - "tags": { - "amenity": "post_box", - "mapillary": "165068275551669", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11422672995, - "lat": 51.4498904, - "lon": 0.1841110, - "tags": { - "amenity": "post_box", - "mapillary": "187045896612601", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11422682260, - "lat": 51.4400034, - "lon": 0.1533355, - "tags": { - "amenity": "post_box", - "mapillary": "3618481841726838", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11422695523, - "lat": 51.4617234, - "lon": 0.1138851, - "tags": { - "amenity": "post_box", - "mapillary": "324337129175223", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11422696637, - "lat": 50.9624775, - "lon": -2.3803927, - "tags": { - "amenity": "post_box", - "mapillary": "417338286725903", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11422699992, - "lat": 50.9769626, - "lon": -2.3939483, - "tags": { - "amenity": "post_box", - "mapillary": "637355257246424", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11422703545, - "lat": 51.3930661, - "lon": -2.4001131, - "tags": { - "amenity": "post_box", - "mapillary": "536610517573464", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11422708670, - "lat": 51.3935031, - "lon": -2.4090975, - "tags": { - "amenity": "post_box", - "mapillary": "386463649766816", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11423105700, - "lat": 53.5511734, - "lon": -0.1863076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Church Lane", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN37 29" - } -}, -{ - "type": "node", - "id": 11423382589, - "lat": 58.5666172, - "lon": -4.0112919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KW14 29", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11423530893, - "lat": 50.9807548, - "lon": -0.4867207, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11425096329, - "lat": 51.4127801, - "lon": -3.1838710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11425119536, - "lat": 51.2880512, - "lon": -2.8030897, - "tags": { - "amenity": "post_box", - "mapillary": "352375640620661", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11425149436, - "lat": 51.4195866, - "lon": -3.1785471, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "447426126676218", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-27" - } -}, -{ - "type": "node", - "id": 11425151588, - "lat": 51.4356972, - "lon": -3.1742112, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11425153245, - "lat": 51.4274521, - "lon": -3.1761640, - "tags": { - "amenity": "post_box", - "mapillary": "857440395148853", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11425155817, - "lat": 51.4046978, - "lon": -3.2115469, - "tags": { - "amenity": "post_box", - "mapillary": "4178089152300659", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11425159116, - "lat": 51.4521091, - "lon": -2.5025616, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "795964917790708", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 11425161173, - "lat": 54.5877849, - "lon": -5.9329745, - "tags": { - "amenity": "post_box", - "mapillary": "937225737029338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11425169697, - "lat": 51.4479535, - "lon": -2.5282498, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "4273343642734242", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2021-06-09" - } -}, -{ - "type": "node", - "id": 11425657955, - "lat": 53.2871275, - "lon": -0.3599813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11427455098, - "lat": 50.7619427, - "lon": -2.9664011, - "tags": { - "amenity": "post_box", - "mapillary": "764392564891719", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11427470113, - "lat": 50.7837679, - "lon": -2.9954662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11427470275, - "lat": 50.7967388, - "lon": -2.8680888, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "621684725980545", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11427811363, - "lat": 51.6899280, - "lon": -4.1573500, - "tags": { - "amenity": "post_box", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11427811364, - "lat": 51.6925450, - "lon": -4.1555420, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11428632202, - "lat": 52.5534664, - "lon": -3.2204659, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY15 41D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11428782368, - "lat": 53.3333280, - "lon": -2.6381631, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "WA4 385", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11429898908, - "lat": 54.7083606, - "lon": -1.2282991, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1966094220457236", - "post_box:type": "pillar", - "ref": "TS24 100D" - } -}, -{ - "type": "node", - "id": 11430161407, - "lat": 53.5133552, - "lon": -2.9446233, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11431741538, - "lat": 52.7746797, - "lon": -2.1152540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ST17 443", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11432754354, - "lat": 54.8284388, - "lon": -1.7089914, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11432839240, - "lat": 56.0252106, - "lon": -5.5663292, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA31 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11432840956, - "lat": 55.9846850, - "lon": -4.9055218, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11432861556, - "lat": 56.1281421, - "lon": -4.1756680, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11433178208, - "lat": 53.1663226, - "lon": -0.1451105, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11434663903, - "lat": 53.5393925, - "lon": -0.0454339, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-19", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "image": "https://i.postimg.cc/cLHfWXz7/DN35-284.jpg", - "location": "Inside Tesco's at Hewitts Circus", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor_pillar", - "ref": "DN35 284", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11434711766, - "lat": 53.5415036, - "lon": -0.0432064, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-19", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/FRYZvcrR/DN35-268-D.jpg", - "location": "Oak Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 268D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11434786572, - "lat": 53.5668753, - "lon": -0.0582039, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-19", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Dw2dqK7Q/DN35-62D.jpg", - "location": "Park Street, outside No.141", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 62D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11438449303, - "lat": 53.5656981, - "lon": -0.0751039, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/xjzG4vBg/DN32-8D.jpg", - "location": "Hainton Avenue, outside No.41", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN32 8D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11438550794, - "lat": 53.5639633, - "lon": -0.0713273, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/MG0FtzWb/DN32-52D.jpg", - "location": "Convamore Road, outside No.184", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 52D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11438602337, - "lat": 53.5649096, - "lon": -0.0678009, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/KcJdsDyC/DN32-112-D.jpg", - "location": "Buller Street, opposite to No.45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 112D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11438693185, - "lat": 53.5638656, - "lon": -0.0570710, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Qx8WPLRb/DN32-214-D.jpg", - "location": "Carr Lane, outside No.24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 214D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11438746461, - "lat": 53.5611970, - "lon": -0.0550054, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/2SHNyN52/DN32-247-D.jpg", - "location": "Carr Lane, outside No.96", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 247D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11438814473, - "lat": 53.5571183, - "lon": -0.0519745, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-20", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/VvzvPgCb/DN32-37D.jpg", - "location": "Carr Lane, outside No.205", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 37D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11441821005, - "lat": 50.4033488, - "lon": -4.9969715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 37D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11441821006, - "lat": 50.4444851, - "lon": -5.0398394, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 41D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11443508083, - "lat": 53.4548177, - "lon": 0.0049601, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/CLwk29Z1/LN11-113-D.jpg", - "location": "Main Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 113", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11443722538, - "lat": 51.2596087, - "lon": -2.6796804, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11444113936, - "lat": 55.7479102, - "lon": -5.5583062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11446057373, - "lat": 54.3334479, - "lon": -5.8352396, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11446097859, - "lat": 54.7067549, - "lon": -1.6936133, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11446393582, - "lat": 53.4320286, - "lon": -2.7183794, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "WA9 54", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11446471124, - "lat": 57.4836324, - "lon": -2.4505533, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "AB53 47", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11446574786, - "lat": 51.6263954, - "lon": -3.0096591, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "NP44 105" - } -}, -{ - "type": "node", - "id": 11447950236, - "lat": 51.4266039, - "lon": 0.0210943, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11449652511, - "lat": 54.4003473, - "lon": -5.9040664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11449666007, - "lat": 54.3382869, - "lon": -6.0580348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11449701493, - "lat": 51.3842182, - "lon": -2.1492091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 273", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11449701521, - "lat": 51.3954400, - "lon": -2.1727568, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 170D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11449701529, - "lat": 51.3924054, - "lon": -2.1916254, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN12 181D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11449704912, - "lat": 51.3684803, - "lon": -2.1761699, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN12 171D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11449765738, - "lat": 51.8068681, - "lon": -1.6409544, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "OX18 942D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11449836272, - "lat": 52.9413017, - "lon": -3.5320156, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11450031323, - "lat": 53.1404233, - "lon": -2.5016571, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11450084596, - "lat": 56.9187545, - "lon": -2.3527265, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB39 446", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11450098838, - "lat": 56.9024053, - "lon": -2.2326775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB39 477", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11450738295, - "lat": 53.1299691, - "lon": -1.7701093, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11450898821, - "lat": 51.4784152, - "lon": 0.0757837, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11453033782, - "lat": 51.4379520, - "lon": -3.4404843, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 151D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11453033789, - "lat": 51.4343872, - "lon": -3.4386121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF71 229D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11453818571, - "lat": 57.3456884, - "lon": -1.9374333, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB41 497", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11453922328, - "lat": 57.6912142, - "lon": -2.0060241, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:apertures": "2", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "AB43 7", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11453925311, - "lat": 53.5772400, - "lon": -0.4085373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "King's Road, Windsor Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_l", - "post_box:type": "lamp", - "ref": "DN38 304" - } -}, -{ - "type": "node", - "id": 11456008816, - "lat": 51.9178501, - "lon": -1.7256395, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 255D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11456217839, - "lat": 51.4008924, - "lon": -3.4187248, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF62 109D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11456240669, - "lat": 51.4117386, - "lon": -3.4175956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 96D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11456410112, - "lat": 51.4168182, - "lon": -3.4673922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF61 70D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11456410113, - "lat": 51.4076054, - "lon": -3.4520808, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF62 88D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11456416613, - "lat": 51.3995223, - "lon": -3.3697779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF62 63D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11456416614, - "lat": 51.3911128, - "lon": -3.3874744, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF62 61D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11457481026, - "lat": 53.5556891, - "lon": -0.0910422, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/B6kJKMzR/DN32-2D.jpg", - "location": "Bargate, Bargate Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 2D", - "ref:GB:uprn": "10015320523", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459106291, - "lat": 52.6964149, - "lon": 0.7702069, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11459165258, - "lat": 52.4020674, - "lon": -1.4459702, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11459173660, - "lat": 52.4135531, - "lon": -1.4993039, - "tags": { - "amenity": "post_box", - "check_date": "2021-03-29", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11459250591, - "lat": 53.5511190, - "lon": -0.0881830, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Fzb8MHZV/DN32-245-D.jpg", - "location": "Lansdowne Road, Welholme Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 245D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459271639, - "lat": 53.5540065, - "lon": -0.0851159, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/GpXkmj66/DN32-111-D.jpg", - "location": "Weelsby Road, outside No.27", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 111D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459367380, - "lat": 53.5525708, - "lon": -0.0776064, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/RVYsnxqR/DN32-217.jpg", - "location": "Weelsby Avenue, Dixon Avenue", - "note": "at the time of my survey, no collection plate was in place", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 217", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459453561, - "lat": 53.5557919, - "lon": -0.0720911, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Qx6Hc59Q/DN32-192-D.jpg", - "location": "Heneage Road, Algernon Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 192D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459493238, - "lat": 53.5574330, - "lon": -0.0754673, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/rmbCM7JZ/DN32-71D.jpg", - "location": "Patrick Street, Hainton Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 71D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459550732, - "lat": 52.9048470, - "lon": -2.8189089, - "tags": { - "amenity": "post_box", - "ref": "SY12 29D" - } -}, -{ - "type": "node", - "id": 11459644456, - "lat": 53.5621528, - "lon": -0.0762867, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/GtsHfQmD/DN32-21D.jpg", - "location": "Hainton Avenue, Catherine Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 21D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459669876, - "lat": 53.5706320, - "lon": -0.0735435, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/KYdT2N9m/DN32-20D.jpg", - "location": "Duncombe Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN32 20D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459921169, - "lat": 53.5726938, - "lon": -0.0733034, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:30; Sa 12:15", - "image": "https://i.postimg.cc/c4dwpwwn/DN32-138.jpg", - "location": "Freeman Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 138", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11459980741, - "lat": 53.5700252, - "lon": -0.0595920, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/D0MTHK4x/DN32-78D.jpg", - "location": "Oxford Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 78D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11460024186, - "lat": 53.5597838, - "lon": -0.0578284, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/TwJ0RZgG/DN32-165-D.jpg", - "location": "Colin Avenue, Cartmel Grove", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 165D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463248705, - "lat": 53.5534823, - "lon": -0.0567126, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/cJnDJ07z/DN32-239-D.jpg", - "location": "Vivian Avenue, Weelsby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN32 239D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463368937, - "lat": 53.5519972, - "lon": -0.0475931, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "image": "https://i.postimg.cc/DZbFyZnH/DN35-123.jpg", - "location": "Sandringham Road shops", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 123", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463492007, - "lat": 53.5553908, - "lon": -0.0374577, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/pLhkGknt/DN35-108-D.jpg", - "location": "Beacon Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 108D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463513143, - "lat": 53.5499519, - "lon": -0.0402613, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/zDjGm6Br/DN35-166-D.jpg", - "location": "Sandringham Road, Kenilworth Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 166D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463630215, - "lat": 53.5530553, - "lon": -0.0407696, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-26", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/pTXVfssD/DN35-98D.jpg", - "location": "Solomon Court, Warwick Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN35 98D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463710759, - "lat": 53.5515494, - "lon": -0.1064850, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/XYfF8cMs/DN34-113-D.jpg", - "location": "Laceby Road, Walmsgate", - "note": "This post box would appear to have the wrong collection plate inserted. From my research this box should be ref. DN34 242 and not DN34 113D as it currently is, which is duplicated at Laceby Road/Nuns Corner. https://i.postimg.cc/3NDNmfrL/DN34-113-D-3.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 113D", - "ref:GB:uprn": "10015360430", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11463804861, - "lat": 53.5523836, - "lon": -0.0941978, - "tags": { - "amenity": "post_box", - "check_date": "2023-12-28", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/s2j0p4Hr/DN34-113-D-2.jpg", - "location": "Laceby Road, Nuns Corner", - "note": "a) at this time I cannot find the design of this style of post box. b) two post boxes on Laceby Road at different locations have the same reference number, DN34 113D at the time of my survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN34 113D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11464443612, - "lat": 55.8551050, - "lon": -4.2697472, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "G5 659", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11465877842, - "lat": 51.5853338, - "lon": -1.5120893, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 07:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11466090047, - "lat": 56.3218067, - "lon": -3.0124832, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "ref": "KY15 290D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11466149183, - "lat": 56.3229919, - "lon": -3.0144246, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11466149184, - "lat": 56.3219019, - "lon": -3.0090625, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11466149185, - "lat": 56.3224314, - "lon": -3.0190314, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11466971377, - "lat": 53.1527727, - "lon": -0.6532394, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11467056032, - "lat": 53.3849630, - "lon": -0.3275519, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LN8 33", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11467795266, - "lat": 51.4888305, - "lon": -1.4775162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11469082694, - "lat": 54.4086386, - "lon": -5.9001911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11469507597, - "lat": 53.5908125, - "lon": -0.6583790, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN15 69" - } -}, -{ - "type": "node", - "id": 11469537909, - "lat": 53.5903246, - "lon": -0.6684963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN15 65" - } -}, -{ - "type": "node", - "id": 11469852679, - "lat": 53.5910565, - "lon": -0.6533854, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN15 40" - } -}, -{ - "type": "node", - "id": 11469910605, - "lat": 53.5913339, - "lon": -0.6465103, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN15 302" - } -}, -{ - "type": "node", - "id": 11469946036, - "lat": 54.7146143, - "lon": -5.8099642, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11470859409, - "lat": 53.5219008, - "lon": -0.0730728, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/vH0Wzx44/DN36-93D.jpg", - "location": "Station Road, outside No.208", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN36 93D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11470963055, - "lat": 53.5252912, - "lon": -0.0511102, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/d3GVTwRw/DN36-162-D.jpg", - "location": "Humberston Avenue, Parklands Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11470970149, - "lat": 53.5230915, - "lon": -0.0692768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN36 276" - } -}, -{ - "type": "node", - "id": 11471042881, - "lat": 57.4415539, - "lon": -2.4030957, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB53 289", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11471309995, - "lat": 57.3688839, - "lon": -2.2233575, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB41 596", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11471335185, - "lat": 57.2649405, - "lon": -2.1930727, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB21 653" - } -}, -{ - "type": "node", - "id": 11473164316, - "lat": 53.1737706, - "lon": -3.4338531, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL16 33D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11473164357, - "lat": 53.1347878, - "lon": -3.4548136, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL16 69D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11473301697, - "lat": 53.1423227, - "lon": -3.4302317, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL16 78D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11477093127, - "lat": 57.7405954, - "lon": -4.0722296, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV18 3" - } -}, -{ - "type": "node", - "id": 11477093128, - "lat": 57.7412310, - "lon": -4.0766627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV18 4", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11478843950, - "lat": 51.4090617, - "lon": -2.6208542, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11479198546, - "lat": 58.5062509, - "lon": -3.4914007, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11479353203, - "lat": 57.7738943, - "lon": -3.9651230, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV20 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11479456601, - "lat": 53.4654465, - "lon": 0.0581677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN36 76" - } -}, -{ - "type": "node", - "id": 11479604149, - "lat": 53.4719649, - "lon": 0.0478107, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN36 132" - } -}, -{ - "type": "node", - "id": 11480666933, - "lat": 51.5554037, - "lon": -1.7921644, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN1 11D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11480733470, - "lat": 53.4744081, - "lon": 0.0439131, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 230" - } -}, -{ - "type": "node", - "id": 11482612589, - "lat": 53.4601378, - "lon": 0.0707795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 84" - } -}, -{ - "type": "node", - "id": 11483122569, - "lat": 55.4170814, - "lon": -3.7603539, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "lamp", - "ref": "ML12 37", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11483967052, - "lat": 57.6347032, - "lon": -3.2096922, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV30 129", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11483984869, - "lat": 57.6370550, - "lon": -3.2131670, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV30 71" - } -}, -{ - "type": "node", - "id": 11483984871, - "lat": 57.6350564, - "lon": -3.2225509, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IV30 49" - } -}, -{ - "type": "node", - "id": 11486436930, - "lat": 51.4062426, - "lon": -2.6175658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11486448363, - "lat": 55.9888858, - "lon": -2.5231619, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-01-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "level": "0", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH42 377D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11486557709, - "lat": 51.9182136, - "lon": 1.2220875, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "CO12 125D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11486626145, - "lat": 50.4359505, - "lon": -5.0089030, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "TR8 63D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11489436714, - "lat": 51.8682155, - "lon": -2.4531837, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11493025296, - "lat": 54.2856325, - "lon": -5.9984830, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11494488415, - "lat": 50.3614269, - "lon": -4.9328639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR8 109D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11494499369, - "lat": 50.4283372, - "lon": -4.9646587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_c", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TR8 57D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11494499370, - "lat": 50.4262204, - "lon": -5.0091945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR8 74D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11494591708, - "lat": 54.5935083, - "lon": -7.3127549, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11495641312, - "lat": 52.3082250, - "lon": 0.7352775, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP31 2190" - } -}, -{ - "type": "node", - "id": 11495641317, - "lat": 52.3216461, - "lon": 0.8492652, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11495678298, - "lat": 52.2602647, - "lon": 0.8930683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP31 2072", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11495678334, - "lat": 52.2560281, - "lon": 0.8826271, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP31 2243", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11496722642, - "lat": 50.7515292, - "lon": -3.2806485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11497201582, - "lat": 53.5506188, - "lon": -0.1073393, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/L6MQ98Cp/DN33-281-D.jpg", - "location": "Milton Road/Walmsgate", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN33 281D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11497334725, - "lat": 53.5496810, - "lon": -0.0993611, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "image": "https://i.postimg.cc/zGZYs0kp/DN33-235.jpg", - "location": "Second Avenue, Sutcliffe Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 235", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11497418143, - "lat": 53.5469934, - "lon": -0.1112124, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/gcNbhLxG/DN33-105-D.jpg", - "location": "Winchester Avenue, Raithby Grove", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 105D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11497666417, - "lat": 50.3899390, - "lon": -4.1816624, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11497668391, - "lat": 51.7848412, - "lon": 0.7067020, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11497776562, - "lat": 51.7997486, - "lon": 0.6416578, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11497781678, - "lat": 51.5290763, - "lon": -0.0468150, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "E2 32", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11497935491, - "lat": 51.7718338, - "lon": 0.6068643, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11498089368, - "lat": 57.4245998, - "lon": -2.2379831, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB41 373", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11498125163, - "lat": 53.5412247, - "lon": -0.0995998, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/mgn6hjGt/DN33-316-D.jpg", - "location": "Matthew Telford Park", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 316D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11498397875, - "lat": 50.9363909, - "lon": -4.5387814, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX39 147D", - "royal_cypher": "EIIR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397877, - "lat": 50.9320314, - "lon": -4.5324782, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX39 146D", - "royal_cypher": "EIIR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397878, - "lat": 50.9376528, - "lon": -4.5219371, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 144D", - "royal_cypher": "EIIR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397880, - "lat": 50.9326721, - "lon": -4.5183288, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 145D", - "royal_cypher": "VR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397887, - "lat": 50.9195459, - "lon": -4.5197179, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX23 29D", - "royal_cypher": "EVIIR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397895, - "lat": 50.8983942, - "lon": -4.5330518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 126D", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397896, - "lat": 50.8931501, - "lon": -4.5333244, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 20D", - "royal_cypher": "VR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498397899, - "lat": 50.9068673, - "lon": -4.5231534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 129D", - "royal_cypher": "EIIR", - "survey:date": "2024-01-07" - } -}, -{ - "type": "node", - "id": 11498437710, - "lat": 53.5382528, - "lon": -0.0959735, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/XvXb74p0/DN33-181-D.jpg", - "location": "The Oval", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 181D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11498465527, - "lat": 53.5378678, - "lon": -0.0867909, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/CM8mFfN4/DN33-124-D.jpg", - "location": "St Giles Avenue", - "note": "at the time of my survey there was a reduced size letter slot in place", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 124D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11499560853, - "lat": 53.5366045, - "lon": -0.0930378, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "image": "https://i.postimg.cc/QVGQT1vc/DN33-191.jpg", - "location": "Waltham Road, Springfield Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 191", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11499585509, - "lat": 53.5351483, - "lon": -0.0954209, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/wvDDL0YF/DN33-178-D.jpg", - "location": "Mendip Avenue shops", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 178D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11499641948, - "lat": 53.5338332, - "lon": -0.1008444, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/k50PzWXR/DN33-244-D.jpg", - "location": "Springfield Road, Ancaster Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN33 244D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11499685808, - "lat": 53.5294404, - "lon": -0.1006301, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "image": "https://i.postimg.cc/3J5h1kKb/DN33-194.jpg", - "location": "Coniston Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 194", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11499814774, - "lat": 53.5305566, - "lon": -0.0927937, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/W46Xkb2K/DN33-96D.jpg", - "location": "Waltham Road, Dovedale Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN33 96D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11502620555, - "lat": 53.5501328, - "lon": -2.6684478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11502767433, - "lat": 51.0627015, - "lon": -1.7734859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP1 7", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11502911301, - "lat": 53.5072876, - "lon": -0.1094462, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/6p4zDSZf/DN37-207-D.jpg", - "location": "Waltham Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 207D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11503265235, - "lat": 53.5055907, - "lon": -0.0549209, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/59FPrWYS/DN36-189-D.jpg", - "location": "Tetney Lane, Langton Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_m", - "post_box:type": "pillar", - "ref": "DN36 189D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11503517030, - "lat": 52.4989846, - "lon": -2.1105491, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11503643398, - "lat": 53.5239163, - "lon": -0.0629702, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "image": "https://i.postimg.cc/J02WCyj4/DN36-86.jpg", - "location": "Station Road, outside No.275", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN36 86", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11503763463, - "lat": 53.5271459, - "lon": -0.0312524, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP7", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/TPG8C779/DN36-161.jpg", - "location": "Blackthorn Avenue", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 161", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11503901881, - "lat": 51.4520889, - "lon": -0.8412346, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "674339710806726", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "RG10 417D", - "royal_cypher": "EIIR", - "survey:date": "2023-08-02" - } -}, -{ - "type": "node", - "id": 11503907125, - "lat": 51.5241852, - "lon": -0.0593724, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "E2 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11503921742, - "lat": 51.4321474, - "lon": -0.8221058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG40 9", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11503928250, - "lat": 54.3353120, - "lon": -5.7168818, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11503928393, - "lat": 51.4148823, - "lon": -0.8164416, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG40 215D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11503992884, - "lat": 51.4439039, - "lon": -0.7945494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG42 122D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11503992894, - "lat": 51.4415729, - "lon": -0.7844409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG42 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11503992895, - "lat": 51.4338638, - "lon": -0.7904309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RG42 73D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11505617171, - "lat": 53.5356784, - "lon": -0.0346179, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/zGZSQtRL/DN36-249-D.jpg", - "location": "Grimsby Road, outside No.240", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN36 249D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11505829998, - "lat": 53.5456395, - "lon": -0.0419410, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-08", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/cJ2G1220/DN35-220-D.jpg", - "location": "Middlethorpe Road, Ashby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 220D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11505841802, - "lat": 56.5008320, - "lon": -2.7123730, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11506855555, - "lat": 57.5990427, - "lon": -2.5401485, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB45 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11506855556, - "lat": 57.6068162, - "lon": -2.4739140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB45 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11506915629, - "lat": 51.6528768, - "lon": 0.2574376, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11506937231, - "lat": 51.6692551, - "lon": 0.3112839, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11508354687, - "lat": 53.5369863, - "lon": -0.0194111, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-10", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/pd94fmwS/DN35-197-D.jpg", - "location": "Bedford Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11508438228, - "lat": 53.5467041, - "lon": -0.0219606, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-10", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/LXSYdRCv/DN35-54D.jpg", - "location": "Links Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 54D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11508546067, - "lat": 53.5493615, - "lon": -0.0208287, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-10", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/0Qmv6pHZ/DN35-172-D.jpg", - "location": "Daggett Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 172D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11508586228, - "lat": 53.5520438, - "lon": -0.0315629, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-10", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/hthMLmkq/DN35-234-D.jpg", - "location": "Wendover Rise, Sherburn Street", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 234D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11508632435, - "lat": 53.5481424, - "lon": -0.0287814, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-10", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/65f9x0NV/DN35-211-D.jpg", - "location": "Pearson Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN35 211D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11509168582, - "lat": 54.3842590, - "lon": -6.6703948, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11509197786, - "lat": 55.0729093, - "lon": -6.5140160, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT53 167", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11509213285, - "lat": 53.3579874, - "lon": 0.1004866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 18", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11509571633, - "lat": 51.7569389, - "lon": 0.4621583, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CM1 399D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11509770476, - "lat": 57.3433582, - "lon": -2.4166301, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB51 388", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11510611802, - "lat": 53.5635547, - "lon": -0.0641155, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DN32 83" - } -}, -{ - "type": "node", - "id": 11510715921, - "lat": 51.4055319, - "lon": -2.6093530, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11510789434, - "lat": 52.0902647, - "lon": -1.2802860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11511176442, - "lat": 50.4134057, - "lon": -5.0393779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR8 26D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11512404264, - "lat": 57.6972420, - "lon": -4.2774756, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV17 16", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11512437269, - "lat": 57.6978057, - "lon": -4.2646211, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV17 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11512437274, - "lat": 57.6948396, - "lon": -4.2640659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV17 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11514045932, - "lat": 51.5172570, - "lon": 0.0754684, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E6 47", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11514155722, - "lat": 51.3477716, - "lon": -2.9774689, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "BS23 5D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11514393865, - "lat": 52.4676698, - "lon": -2.9567783, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11515318197, - "lat": 50.6627678, - "lon": -3.3380722, - "tags": { - "amenity": "post_box", - "check_date": "2023-11-16", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "wall", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11516112462, - "lat": 51.5761241, - "lon": -0.9107049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "RG9 71D" - } -}, -{ - "type": "node", - "id": 11516669877, - "lat": 54.6946595, - "lon": -1.2240943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TS24 14D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516698247, - "lat": 51.3559330, - "lon": -2.9817226, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS23 119D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11516705338, - "lat": 53.2799865, - "lon": -3.4729600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL18 183D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11516705339, - "lat": 53.2877200, - "lon": -3.4749238, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL18 101D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516705340, - "lat": 53.2938534, - "lon": -3.4613207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "LL18 73D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11516705343, - "lat": 53.2916244, - "lon": -3.4596295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL18 198D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516765413, - "lat": 51.3301327, - "lon": -1.6092127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 36D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516765450, - "lat": 51.3228226, - "lon": -1.5842754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 34D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516914482, - "lat": 51.3297655, - "lon": -1.5314329, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 142D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516914489, - "lat": 51.3536193, - "lon": -1.5449186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 113D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516914494, - "lat": 51.3642771, - "lon": -1.5508201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN8 111", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11516914551, - "lat": 51.3678371, - "lon": -1.5461153, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN8 112D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11516914654, - "lat": 51.3219445, - "lon": -1.6734280, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "243612871927379", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "SN8 135D", - "royal_cypher": "EIIR", - "survey:date": "2023-07-30" - } -}, -{ - "type": "node", - "id": 11516914655, - "lat": 51.3060969, - "lon": -1.6595795, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN8 58D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11516972082, - "lat": 51.3536735, - "lon": -2.9783662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BS23 64D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11517030984, - "lat": 53.4402851, - "lon": 0.0072057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN11 36" - } -}, -{ - "type": "node", - "id": 11517033331, - "lat": 53.4289031, - "lon": 0.0143691, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN11 42" - } -}, -{ - "type": "node", - "id": 11517039042, - "lat": 53.4162899, - "lon": 0.0301272, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LN11 68" - } -}, -{ - "type": "node", - "id": 11517133600, - "lat": 53.4090680, - "lon": 0.0339564, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN11 43", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11517160930, - "lat": 53.3855153, - "lon": 0.0673024, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LN11 63" - } -}, -{ - "type": "node", - "id": 11517360870, - "lat": 53.7969340, - "lon": -1.5359214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS2 44D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11517563981, - "lat": 53.4519532, - "lon": 0.1317049, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 93" - } -}, -{ - "type": "node", - "id": 11517656871, - "lat": 53.4467112, - "lon": 0.1316571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 82" - } -}, -{ - "type": "node", - "id": 11517695273, - "lat": 53.4459511, - "lon": 0.1395988, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "LN11 90" - } -}, -{ - "type": "node", - "id": 11517879499, - "lat": 51.6964782, - "lon": -3.1503229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP11 677", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11518082987, - "lat": 51.6975217, - "lon": -3.1462984, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP11 797", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11518082996, - "lat": 51.6929025, - "lon": -3.1484397, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 09:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11518604516, - "lat": 53.0961478, - "lon": -1.2432370, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11519562225, - "lat": 53.5646117, - "lon": -0.1125897, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/kgM3NXLn/DN34-10.jpg", - "location": "Sorrel Road (Central Parade)", - "note": "collection plate had been vandalised with spray paint at the time of my survey", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN34 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11519861023, - "lat": 53.5637085, - "lon": -0.1206833, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/L8MPtKhD/DN34-266-D.jpg", - "location": "Yarrow Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN34 266D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11520272215, - "lat": 54.0608548, - "lon": -6.0102329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11521382239, - "lat": 54.0367824, - "lon": -6.0506096, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11521477598, - "lat": 53.5603940, - "lon": -0.1196285, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/d3qsQn0G/DN34-99D.jpg", - "location": "Littlecoates Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN34 99D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11521673631, - "lat": 53.5534313, - "lon": -0.1338771, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/HsCSzFf3/DN34-274.jpg", - "location": "Broadway (Gunners Watch)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "DN34 274", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11521675550, - "lat": 53.5553051, - "lon": -0.1292275, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/wTrgrZPs/DN34-158-D.jpg", - "location": "Broadway, outside No.108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 158D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11521752577, - "lat": 53.5514937, - "lon": -0.1367310, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/907Xj2qN/DN34-273-D.jpg", - "location": "Nelson Way, Victory Way", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN34 273D", - "ref:GB:uprn": "10015519430", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11521821439, - "lat": 53.5504650, - "lon": -0.1397310, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "image": "https://i.postimg.cc/L5Wg4FRZ/DN37-291.jpg", - "location": "inside Morrisons", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "DN37 291", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11523793822, - "lat": 51.6746787, - "lon": -4.7770777, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11524736222, - "lat": 53.5510013, - "lon": -0.1251090, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "image": "https://i.postimg.cc/XqYLRjFC/DN34-19.jpg", - "location": "Bradley Crossroads", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 19", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11524780885, - "lat": 53.5541985, - "lon": -0.1148146, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-15", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "at the time of my survey the collection plate was missing plus the letter slot was much reduced in size", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN34 168", - "ref:GB:uprn": "10015274003", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11524873971, - "lat": 53.5898231, - "lon": -0.1786291, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-16", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/fbPFRV7D/DN41-67D.jpg", - "location": "Station Road, Manor Farm Mews", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DN41 67D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11524954479, - "lat": 53.5854634, - "lon": -0.1906863, - "tags": { - "amenity": "post_box", - "check_date": "2024-01-16", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/mD76bBbr/DN41-141-D.jpg", - "location": "Station Road, Village Shop", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "DN41 141D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11525592440, - "lat": 51.5500962, - "lon": -0.0649590, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 21D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11527587264, - "lat": 51.3205217, - "lon": -2.5089060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11528881733, - "lat": 51.5460141, - "lon": -0.0660473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 35D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11532135562, - "lat": 53.4762926, - "lon": -0.0755900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN36 26", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11532530805, - "lat": 53.3771482, - "lon": 0.0857086, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 99" - } -}, -{ - "type": "node", - "id": 11532621545, - "lat": 53.3808949, - "lon": 0.0732995, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LN11 23", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11532623604, - "lat": 57.6004075, - "lon": -1.9106473, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB43 24", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11532623618, - "lat": 57.6001343, - "lon": -1.9155639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB43 35", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11532635160, - "lat": 57.6573230, - "lon": -1.9489474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB43 17", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11534296876, - "lat": 53.0822774, - "lon": -0.8037883, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11534555232, - "lat": 51.8396102, - "lon": -1.8564444, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL54 44D" - } -}, -{ - "type": "node", - "id": 11535093626, - "lat": 51.5410104, - "lon": -0.0673127, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "E8 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11535252176, - "lat": 57.6510019, - "lon": -2.0506427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB43 25", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11535748628, - "lat": 53.0217296, - "lon": -0.6021050, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11535809180, - "lat": 52.4849320, - "lon": -3.4367219, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11536788163, - "lat": 54.6194910, - "lon": -1.0691473, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "TS10 1;TS10 2", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "File:Double Elizabeth II postbox on Cleveland Street, Redcar - geograph.org.uk - 6070422.jpg" - } -}, -{ - "type": "node", - "id": 11537068039, - "lat": 52.0731139, - "lon": -1.3209894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11537068040, - "lat": 52.0731350, - "lon": -1.3208394, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11537132287, - "lat": 51.4157080, - "lon": -2.6255641, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "postal_code": "BS13 8DZ", - "ref": "BS13 78", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11537261044, - "lat": 53.1398998, - "lon": -0.4038289, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11537286171, - "lat": 53.2086835, - "lon": -0.4121831, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11537394227, - "lat": 53.1246290, - "lon": -0.3230105, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11537676927, - "lat": 53.0567551, - "lon": -0.5826725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LN5 348" - } -}, -{ - "type": "node", - "id": 11538202307, - "lat": 57.3152049, - "lon": -2.0083737, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB41 498", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11538353001, - "lat": 57.2868440, - "lon": -2.3825929, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB51 306", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11538353002, - "lat": 57.2869458, - "lon": -2.3764023, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "AB51 552", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11538528447, - "lat": 52.9986669, - "lon": -0.1034979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE20 136", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11539910593, - "lat": 53.5446179, - "lon": -0.1702948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 280", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11539922806, - "lat": 53.5389282, - "lon": -0.1733036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:type": "lamp", - "ref": "DN37 81" - } -}, -{ - "type": "node", - "id": 11540084349, - "lat": 54.0150229, - "lon": -1.3976723, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11540424892, - "lat": 51.9398135, - "lon": 0.8756769, - "tags": { - "amenity": "post_box", - "mapillary": "170186608440851", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11540457632, - "lat": 52.0133786, - "lon": 0.8251083, - "tags": { - "amenity": "post_box", - "mapillary": "314378420260466", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11541655813, - "lat": 54.6171785, - "lon": -1.0599822, - "tags": { - "amenity": "post_box", - "mapillary": "1700624263661946", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11541655814, - "lat": 54.6177710, - "lon": -1.0635763, - "tags": { - "amenity": "post_box", - "mapillary": "969448620270844", - "post_box:type": "pillar", - "wikimedia_commons": "File:Elizabeth II postbox on High Street, Redcar - geograph.org.uk - 6070660.jpg" - } -}, -{ - "type": "node", - "id": 11541992144, - "lat": 53.0918768, - "lon": -2.4665943, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW2 55D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11543476240, - "lat": 53.5367555, - "lon": -2.1217370, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11543657113, - "lat": 51.5689594, - "lon": 0.1213149, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11543694683, - "lat": 53.0904094, - "lon": -2.4379022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW2 269D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11543694684, - "lat": 53.0950310, - "lon": -2.4376541, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW1 281", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11543694685, - "lat": 53.0949321, - "lon": -2.4574436, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CW2 27D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11543717258, - "lat": 51.5787237, - "lon": 0.2075100, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11543759904, - "lat": 51.5749417, - "lon": 0.2046933, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11543884069, - "lat": 51.5930581, - "lon": 0.0436210, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "IG8 67", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11544905659, - "lat": 52.9595343, - "lon": -2.4034929, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11545457026, - "lat": 50.4075239, - "lon": -5.0878964, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "TR7 96D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11545457027, - "lat": 50.4106021, - "lon": -5.0877570, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 66D" - } -}, -{ - "type": "node", - "id": 11545457028, - "lat": 50.4115440, - "lon": -5.0839377, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "TR7 3D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11547115745, - "lat": 53.2663191, - "lon": -2.5392540, - "tags": { - "amenity": "post_box", - "ref": "CW8 213D" - } -}, -{ - "type": "node", - "id": 11547509806, - "lat": 52.5961439, - "lon": -2.1311201, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11548112337, - "lat": 51.0036034, - "lon": -0.4444184, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11551411853, - "lat": 56.2287916, - "lon": -3.6538879, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2022-07-11", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK14 99D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11551866570, - "lat": 53.1784567, - "lon": -0.8076877, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NG23 180", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11552833359, - "lat": 51.4223939, - "lon": -2.4946594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11553494574, - "lat": 51.8747771, - "lon": 0.7588385, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11554489221, - "lat": 53.7970014, - "lon": -1.8245993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11556307528, - "lat": 53.6773598, - "lon": -0.3326483, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN19 301", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11556322045, - "lat": 53.6431457, - "lon": -0.7479629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "DN17 76", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11556899609, - "lat": 57.2331812, - "lon": -2.3465239, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB51 614", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11556899610, - "lat": 57.2382475, - "lon": -2.3539475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB51 440", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11556914440, - "lat": 51.6051692, - "lon": -1.7816968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN26 171D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11556914441, - "lat": 51.6117981, - "lon": -1.7925242, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN26 184D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11556914442, - "lat": 51.6196302, - "lon": -1.7898866, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN26 169D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11557848568, - "lat": 51.5721815, - "lon": -0.0654142, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 1D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11557873340, - "lat": 57.5600207, - "lon": -2.6297361, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB54 46", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11558384826, - "lat": 53.0297297, - "lon": -1.8938797, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11559957984, - "lat": 53.3169686, - "lon": -0.2477128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11560810068, - "lat": 57.4975488, - "lon": -2.6758435, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "AB54 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11560833997, - "lat": 57.5624855, - "lon": -2.7586935, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB54 69", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11560969361, - "lat": 52.0566600, - "lon": 1.0266799, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53904734327", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1107D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11560969362, - "lat": 52.0495672, - "lon": 1.0396966, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53906072330", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1418D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11560969365, - "lat": 52.0435899, - "lon": 1.0318042, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2024-06-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53805468087", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP8 1209D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11560969366, - "lat": 52.0400135, - "lon": 1.0273384, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP8 1179", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11561027825, - "lat": 52.0445281, - "lon": 1.0789776, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1257", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11561027834, - "lat": 52.0371796, - "lon": 1.0870963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1203" - } -}, -{ - "type": "node", - "id": 11561027835, - "lat": 52.0340506, - "lon": 1.0787094, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP8 1365", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11561027836, - "lat": 52.0305506, - "lon": 1.0820326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1025", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11561160970, - "lat": 52.0383756, - "lon": 1.0455110, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP8 1094", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11561161003, - "lat": 52.0259191, - "lon": 1.0504121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1353" - } -}, -{ - "type": "node", - "id": 11561446791, - "lat": 53.0203436, - "lon": -2.2836377, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "ST5 578", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11561446792, - "lat": 53.0168053, - "lon": -2.2744753, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "ST5 141", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11564088769, - "lat": 51.6643208, - "lon": -0.3913702, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "name": "WD17 347D", - "ref": "WD17 347D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11564928584, - "lat": 53.0579588, - "lon": -3.3309663, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL15 25D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11565030422, - "lat": 53.0435797, - "lon": -3.3333223, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 35D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11565161912, - "lat": 53.0400225, - "lon": -3.3179595, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL15 4D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11565161916, - "lat": 53.0486309, - "lon": -3.3140592, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "LL15 47D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11565457941, - "lat": 51.5643387, - "lon": -0.0627751, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 28D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11565457942, - "lat": 51.5661386, - "lon": -0.0557644, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E5 7D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11565715401, - "lat": 51.1086409, - "lon": -0.8591101, - "tags": { - "access": "yes", - "amenity": "post_box", - "brand": "Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "support": "ground" - } -}, -{ - "type": "node", - "id": 11565746727, - "lat": 57.3378467, - "lon": -2.6171371, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB52 15", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11565746728, - "lat": 57.3452332, - "lon": -2.6180908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB52 57", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11565746729, - "lat": 57.3426393, - "lon": -2.6202252, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_m", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB52 602", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11571126296, - "lat": 51.1736037, - "lon": -2.4140271, - "tags": { - "amenity": "post_box", - "mapillary": "582598720055669", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11571493203, - "lat": 57.6342692, - "lon": -3.0032721, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB56 103", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11575442400, - "lat": 51.5697466, - "lon": -0.0186059, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 13", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11577342553, - "lat": 56.5021628, - "lon": -2.9115798, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD4 169D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11577399214, - "lat": 56.4928336, - "lon": -2.9612495, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 89D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11577475212, - "lat": 56.4914837, - "lon": -2.9472920, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD4 236D", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11577504306, - "lat": 56.4819761, - "lon": -2.9299037, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2020-02-26", - "collection_times": "Mo-Fr 16:15; Sa 11:30", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD4 66", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11577509074, - "lat": 56.4888038, - "lon": -2.9407320, - "tags": { - "amenity": "post_box", - "collection_plate:date": "2020-02-26", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DD4 250", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11579963598, - "lat": 57.4367441, - "lon": -2.3518718, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11580089594, - "lat": 51.6118938, - "lon": -0.5461457, - "tags": { - "amenity": "post_box", - "ref": "SL9 283" - } -}, -{ - "type": "node", - "id": 11580394900, - "lat": 51.6375879, - "lon": 0.3459579, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11580451358, - "lat": 57.5406655, - "lon": -2.9501218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "AB55 62" - } -}, -{ - "type": "node", - "id": 11580865257, - "lat": 52.9628511, - "lon": 0.6433206, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE31 328", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11582563174, - "lat": 57.6687838, - "lon": -2.9577738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB56 639" - } -}, -{ - "type": "node", - "id": 11582563180, - "lat": 57.6703240, - "lon": -2.9531755, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB56 77", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11582563182, - "lat": 57.6742100, - "lon": -2.9522887, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "AB56 78", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11582563183, - "lat": 57.6728338, - "lon": -2.9613492, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB56 93" - } -}, -{ - "type": "node", - "id": 11582563229, - "lat": 57.6768418, - "lon": -2.9569189, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "AB56 83", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11582662394, - "lat": 57.5525770, - "lon": -3.4682974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IV36 94", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11582797056, - "lat": 50.3478170, - "lon": -4.4735667, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL13 41D", - "royal_cypher": "VR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582797060, - "lat": 50.3399071, - "lon": -4.4954386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL13 50D", - "royal_cypher": "EVIIR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582797064, - "lat": 50.3390649, - "lon": -4.5120715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Thin letters only, no packets", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 11D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582811470, - "lat": 50.3345250, - "lon": -4.5112373, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 135D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582811488, - "lat": 50.4145424, - "lon": -4.4777114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL14 66D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582811489, - "lat": 50.4241150, - "lon": -4.4786648, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582823766, - "lat": 50.3460950, - "lon": -4.4832458, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582882826, - "lat": 50.3719723, - "lon": -4.5282706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL13 106D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582926136, - "lat": 50.3545562, - "lon": -4.5031928, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1109678776446366", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11582926137, - "lat": 50.3689581, - "lon": -4.5302527, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-02-03" - } -}, -{ - "type": "node", - "id": 11583969365, - "lat": 53.5141286, - "lon": -2.9012664, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "source": "local knowledge;survey" - } -}, -{ - "type": "node", - "id": 11584112015, - "lat": 53.3596372, - "lon": -0.1411982, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11584237138, - "lat": 53.3656797, - "lon": -0.0340475, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11584262962, - "lat": 54.9664845, - "lon": -1.7042551, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:45; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE21 700" - } -}, -{ - "type": "node", - "id": 11584309938, - "lat": 54.9619688, - "lon": -1.5260938, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NE31 660", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11584356313, - "lat": 53.5237996, - "lon": -0.8592909, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-22", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/qvNvBLZb/DN9-358D.jpg", - "location": "Wroot Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN9 358D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11584366481, - "lat": 51.5649359, - "lon": 0.5048595, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11584377713, - "lat": 53.5107963, - "lon": -0.8255284, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DN9 234", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11584400116, - "lat": 50.4442548, - "lon": -4.4721654, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11584460511, - "lat": 50.4574070, - "lon": -4.5151530, - "tags": { - "amenity": "post_box", - "mapillary": "339997825697052", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11584676879, - "lat": 55.9427556, - "lon": -4.5575492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G82 8D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11584724666, - "lat": 55.9420455, - "lon": -4.5618910, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "note": "inside main entrance", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "G82 73", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11584738784, - "lat": 51.1985398, - "lon": -2.9410816, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11584796622, - "lat": 55.9386615, - "lon": -4.5422392, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G82 25D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11585230354, - "lat": 50.8306198, - "lon": -4.5166657, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11585230355, - "lat": 50.8268226, - "lon": -4.5263217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "EX23 107D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11585325371, - "lat": 54.0074322, - "lon": -1.4373180, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11585494975, - "lat": 50.9922625, - "lon": -2.7585150, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11585505131, - "lat": 51.5657645, - "lon": -0.0377745, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "E10 2", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11585802008, - "lat": 50.9517735, - "lon": -2.8803481, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11586139591, - "lat": 51.5482154, - "lon": 0.0474881, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "E12 10", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11586631994, - "lat": 51.7874549, - "lon": 0.8247081, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11586718723, - "lat": 53.5173818, - "lon": -0.0958715, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/s2HVH0Vx/DN37-294-D.jpg", - "location": "Ings Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 294D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11586748324, - "lat": 53.5302980, - "lon": -0.0248064, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-04", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/jdGvPyB7/DN36-185-D.jpg", - "location": "Midfield Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN36 185D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11586818883, - "lat": 53.5363407, - "lon": -0.0157023, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/8C65KKBT/DN36-190-D.jpg", - "location": "North Sea Lane, Carrington Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 190D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11586989940, - "lat": 53.7366917, - "lon": -2.5045492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "3983991168499840", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BB2 49D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11587486883, - "lat": 52.8588045, - "lon": -2.7883085, - "tags": { - "amenity": "post_box", - "mapillary": "281688660593837", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11589294386, - "lat": 50.9160131, - "lon": -2.8654687, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11589676149, - "lat": 51.5293776, - "lon": 0.7773021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 302" - } -}, -{ - "type": "node", - "id": 11589676150, - "lat": 51.5308920, - "lon": 0.7721869, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 351" - } -}, -{ - "type": "node", - "id": 11589676151, - "lat": 51.5266329, - "lon": 0.7717965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 257" - } -}, -{ - "type": "node", - "id": 11589676152, - "lat": 51.5389859, - "lon": 0.7772039, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SS3 413" - } -}, -{ - "type": "node", - "id": 11589839768, - "lat": 50.8876540, - "lon": -2.9225947, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11589855440, - "lat": 50.8729990, - "lon": -2.9620547, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11589867914, - "lat": 51.5302985, - "lon": 0.7434223, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589867915, - "lat": 51.5299643, - "lon": 0.7365367, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589867916, - "lat": 51.5323421, - "lon": 0.7250679, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589867917, - "lat": 51.5365544, - "lon": 0.7234038, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589867918, - "lat": 51.5423290, - "lon": 0.7411529, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589871176, - "lat": 51.5359425, - "lon": 0.6864912, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589871177, - "lat": 51.5384488, - "lon": 0.6844062, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589871178, - "lat": 51.5369524, - "lon": 0.6775132, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11589871179, - "lat": 51.5388560, - "lon": 0.6707911, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11590314304, - "lat": 53.2551990, - "lon": -3.9773757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL33 47D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11591578857, - "lat": 56.5621642, - "lon": -5.3585832, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11591607176, - "lat": 56.5632208, - "lon": -5.3601014, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11592156018, - "lat": 51.8807614, - "lon": 0.9948139, - "tags": { - "amenity": "post_box", - "mapillary": "911672340144723", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11592947363, - "lat": 55.9363306, - "lon": -4.1522017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G66 1511D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11593074008, - "lat": 53.1770338, - "lon": -4.2157795, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LL56 306", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11594537038, - "lat": 50.4588566, - "lon": -4.9226546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 65D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11594537039, - "lat": 50.4042895, - "lon": -4.9400852, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR9 31D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11597586669, - "lat": 50.4080407, - "lon": -4.9222297, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 56D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11599178795, - "lat": 55.4828759, - "lon": -5.0928639, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11599197879, - "lat": 55.5090878, - "lon": -5.1006228, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1078617983443581", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-03-11" - } -}, -{ - "type": "node", - "id": 11599345270, - "lat": 56.7014239, - "lon": -5.2013076, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "900912741675907", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-10-20" - } -}, -{ - "type": "node", - "id": 11601995257, - "lat": 51.5565533, - "lon": 0.7005466, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11605826518, - "lat": 52.0601925, - "lon": 1.0759494, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP8 1347", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11606158482, - "lat": 55.6831506, - "lon": -4.5223767, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "KA3 201", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11606158534, - "lat": 55.6814024, - "lon": -4.5233085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "KA3 180", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11606158558, - "lat": 55.6776347, - "lon": -4.5252313, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "KA3 153", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11606158562, - "lat": 55.6830678, - "lon": -4.5065805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA3 40", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11607936923, - "lat": 54.4992952, - "lon": -6.4473336, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11608383949, - "lat": 53.4837952, - "lon": -2.5182900, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11609787393, - "lat": 51.5803016, - "lon": -0.5078122, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB9 134D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11609844479, - "lat": 51.5666298, - "lon": -0.4972662, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB9 55D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11609880426, - "lat": 53.5276514, - "lon": 0.0115255, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-09", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/0yM1vRBV/DN36-201-D.jpg", - "location": "Thorpe Park Shop/Cafe", - "note": "Since Thorpe Park is only open during the summer months it is unlikely that letter collections will be made out of this time", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 201D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11609982133, - "lat": 53.5344716, - "lon": 0.0040501, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/KjcXpF8Q/DN36-85D.jpg", - "location": "Outside Fitties Mini-Supermarket (now part of Thope Park)", - "note": "Since Thorpe Park is only open during the summer months it is unlikely that letter collections will be made out of this time + this box has a piece of wood across the letter slot", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 85D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11610337072, - "lat": 52.4560940, - "lon": 1.5050629, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "NR34 3456", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11610337094, - "lat": 52.4965572, - "lon": 1.5786508, - "tags": { - "amenity": "post_box", - "post_box:design": "bantam", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11610337100, - "lat": 52.5125627, - "lon": 1.5872426, - "tags": { - "amenity": "post_box", - "post_box:design": "2010_pattern", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11610723652, - "lat": 50.3678871, - "lon": -4.0966993, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL9 201D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-11" - } -}, -{ - "type": "node", - "id": 11611345188, - "lat": 51.5725695, - "lon": -3.2325052, - "tags": { - "amenity": "post_box", - "mapillary": "303904967949157", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11611351550, - "lat": 51.5601886, - "lon": -3.2719554, - "tags": { - "amenity": "post_box", - "mapillary": "958968171519078", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11611375204, - "lat": 53.3679449, - "lon": -0.0037521, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:manufacturer": "Machan Eng, Scotland", - "post_box:type": "pillar", - "ref": "LN11 120", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11611387037, - "lat": 51.5417513, - "lon": -3.2667036, - "tags": { - "amenity": "post_box", - "mapillary": "1138745149944733", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11611409296, - "lat": 51.5676006, - "lon": -3.2303885, - "tags": { - "amenity": "post_box", - "mapillary": "950981028839448", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11611795469, - "lat": 55.6626719, - "lon": -4.4092079, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KA3 62", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11611795471, - "lat": 55.6570328, - "lon": -4.4401261, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA3 172", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11611795480, - "lat": 55.6609370, - "lon": -4.4444948, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "KA3 63", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11611827925, - "lat": 52.0805165, - "lon": 1.0381140, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP8 1031", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11612156535, - "lat": 52.1064541, - "lon": 1.0525350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP8 1349", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612171386, - "lat": 51.4906651, - "lon": -3.4218620, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF71 32D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612171459, - "lat": 51.4814238, - "lon": -3.4337727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 363D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11612181070, - "lat": 51.4773705, - "lon": -3.4397950, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "CF71 25D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612194566, - "lat": 51.5153875, - "lon": -3.4192275, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF72 171D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612194567, - "lat": 51.5134307, - "lon": -3.4254054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "no", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612196271, - "lat": 51.5141559, - "lon": -3.4325177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 165", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612196273, - "lat": 51.5095811, - "lon": -3.4408032, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "CF72 209D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11612204403, - "lat": 52.1072959, - "lon": 0.9891303, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1279", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612204516, - "lat": 52.1034685, - "lon": 1.0257451, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1061", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11612204525, - "lat": 52.1057671, - "lon": 1.0144302, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "IP8 1198" - } -}, -{ - "type": "node", - "id": 11612248606, - "lat": 53.7614968, - "lon": -0.3499476, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11613498767, - "lat": 53.4326843, - "lon": -1.1073794, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "DN11 279D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11613801552, - "lat": 53.4297782, - "lon": -1.1124681, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN11 281D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11616041133, - "lat": 51.5854908, - "lon": -0.5017452, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "UB9 23D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11618092648, - "lat": 53.5000262, - "lon": 0.0214503, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/kGqjDn1H/DN36-38D.jpg", - "location": "Tetney Lock Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN36 38D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11618118080, - "lat": 50.4238930, - "lon": -5.0564247, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "TR7 52", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11619127279, - "lat": 51.4015019, - "lon": -3.2012909, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CF64 185D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11619176038, - "lat": 50.9124928, - "lon": -3.2282203, - "tags": { - "amenity": "post_box", - "mapillary": "2841046579363108", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11619215799, - "lat": 50.9191548, - "lon": -3.2256079, - "tags": { - "amenity": "post_box", - "mapillary": "250086658022493", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11619217016, - "lat": 51.5186617, - "lon": -3.1328912, - "tags": { - "amenity": "post_box", - "mapillary": "126292926540455", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11620237479, - "lat": 55.4628811, - "lon": -5.6807283, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA28 28", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11621809020, - "lat": 54.8900476, - "lon": -1.7188797, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-13", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11622544827, - "lat": 51.3908637, - "lon": -3.3409011, - "tags": { - "amenity": "post_box", - "mapillary": "108740204818979", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11622897832, - "lat": 52.3825807, - "lon": -2.2362794, - "tags": { - "amenity": "post_box", - "mapillary": "1268363020271408", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11623671042, - "lat": 55.5850086, - "lon": -5.4965789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "ludlow", - "post_box:type": "wall", - "ref": "PA28 13" - } -}, -{ - "type": "node", - "id": 11624795262, - "lat": 51.4387838, - "lon": -1.1699789, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 376D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11624795265, - "lat": 51.4327702, - "lon": -1.1663076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 24D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11624806896, - "lat": 51.4158647, - "lon": -1.1603974, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 236", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11626309368, - "lat": 50.4200247, - "lon": -5.0396601, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 2D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11626314935, - "lat": 50.9198920, - "lon": -2.6954132, - "tags": { - "amenity": "post_box", - "mapillary": "2735171729946366s", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "wikimedia_commons": "File:^96 High Street ('Mill Cottage') beside the A30 - geograph.org.uk - 3671940.jpg" - } -}, -{ - "type": "node", - "id": 11626349035, - "lat": 50.9281416, - "lon": -2.6554054, - "tags": { - "amenity": "post_box", - "mapillary": "844714799838681", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11626500408, - "lat": 53.3635043, - "lon": 0.0845037, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 25" - } -}, -{ - "type": "node", - "id": 11626520688, - "lat": 51.3752989, - "lon": -2.5512783, - "tags": { - "amenity": "post_box", - "mapillary": "3213612745584006", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11626538321, - "lat": 51.3249228, - "lon": -2.5474091, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "445008270700055", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2022-05-28" - } -}, -{ - "type": "node", - "id": 11626559628, - "lat": 51.2688959, - "lon": -2.5866119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11626561617, - "lat": 51.2811718, - "lon": -2.5875901, - "tags": { - "amenity": "post_box", - "mapillary": "251943570260675", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11626565624, - "lat": 51.3099668, - "lon": -2.5317336, - "tags": { - "amenity": "post_box", - "mapillary": "856045478596349", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11626582848, - "lat": 51.2456117, - "lon": -2.5427507, - "tags": { - "amenity": "post_box", - "mapillary": "1444814666024899", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BA3 206D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11627017385, - "lat": 51.2409795, - "lon": -2.5413801, - "tags": { - "amenity": "post_box", - "mapillary": "481656220448317", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11627037885, - "lat": 51.2235589, - "lon": -2.5004301, - "tags": { - "amenity": "post_box", - "mapillary": "301369155332177", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA3 109D" - } -}, -{ - "type": "node", - "id": 11627039992, - "lat": 51.2531958, - "lon": -2.4932050, - "tags": { - "amenity": "post_box", - "mapillary": "1336613123883584", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11627039993, - "lat": 51.2886015, - "lon": -2.4598053, - "tags": { - "amenity": "post_box", - "mapillary": "1426562324868910", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11627048468, - "lat": 51.2296892, - "lon": -2.5116742, - "tags": { - "amenity": "post_box", - "mapillary": "2517514318409583", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11627209376, - "lat": 51.2369525, - "lon": -2.3953418, - "tags": { - "amenity": "post_box", - "mapillary": "477468136698184", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11627353809, - "lat": 56.1627654, - "lon": -4.0619868, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-01-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_pole", - "post_box:type": "lamp", - "ref": "FK9 131D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11627359257, - "lat": 56.2120647, - "lon": -3.9602889, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2022-02-28", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "FK15 101", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11627377468, - "lat": 58.2512843, - "lon": -6.1557702, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11627391004, - "lat": 56.1685461, - "lon": -4.0521772, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2023-01-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "FK9 52D", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11627458243, - "lat": 56.2227700, - "lon": -3.9509926, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2022-02-28", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "FK15 110", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11627469847, - "lat": 56.2641499, - "lon": -3.8790333, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1", - "collection_plate:date": "2022-02-28", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "manufacturer": "Machan Eng Scotland", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK15 152", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11627910773, - "lat": 52.9120078, - "lon": -2.2486527, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11628148775, - "lat": 51.5363829, - "lon": 0.7454187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11628149884, - "lat": 51.5425523, - "lon": 0.7632609, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11628161154, - "lat": 51.5316947, - "lon": 0.7644896, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11629944004, - "lat": 51.5788489, - "lon": -3.2387741, - "tags": { - "amenity": "post_box", - "mapillary": "609556503414999", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11629945593, - "lat": 51.6018039, - "lon": -3.2318564, - "tags": { - "amenity": "post_box", - "mapillary": "399322691785085", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11629973769, - "lat": 51.5846211, - "lon": -3.2419698, - "tags": { - "amenity": "post_box", - "mapillary": "3111692005732114", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11629978758, - "lat": 51.6066812, - "lon": -3.2301309, - "tags": { - "amenity": "post_box", - "mapillary": "126523879761119", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11629985215, - "lat": 51.6037937, - "lon": -3.2310811, - "tags": { - "amenity": "post_box", - "mapillary": "1127125381025588", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11630185203, - "lat": 53.5430721, - "lon": -0.1273836, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-15", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/QMGK0tg3/DN37-32D.jpg", - "location": "Church Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "DN37 32D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11630871536, - "lat": 56.4542701, - "lon": -5.3943852, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11630893389, - "lat": 56.4888142, - "lon": -5.4043330, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "677684711141279", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2023-10-21" - } -}, -{ - "type": "node", - "id": 11630945020, - "lat": 56.4449593, - "lon": -5.4415567, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11630951631, - "lat": 56.5180269, - "lon": -5.3145157, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11630992299, - "lat": 56.4622501, - "lon": -5.2912938, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11631524552, - "lat": 51.4129836, - "lon": -1.1810343, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "RG7 337D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11631552186, - "lat": 51.4342342, - "lon": -1.2071791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG7 287D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11632354082, - "lat": 51.6995100, - "lon": -1.6937949, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11632828704, - "lat": 55.8616607, - "lon": -5.3903590, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA29 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11635046347, - "lat": 53.5957569, - "lon": -2.6734942, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WN6 170", - "royal_cypher": "EIIR", - "source": "streetlevel_imagery" - } -}, -{ - "type": "node", - "id": 11635325391, - "lat": 52.9111690, - "lon": 1.2426642, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11635387013, - "lat": 52.8933588, - "lon": -0.3419989, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11635724509, - "lat": 52.2540726, - "lon": 1.5576369, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP17 4659", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11635770361, - "lat": 52.2458013, - "lon": 1.5548323, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP17 4614" - } -}, -{ - "type": "node", - "id": 11635800879, - "lat": 52.2519105, - "lon": 1.5402284, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP17 4611" - } -}, -{ - "type": "node", - "id": 11635841531, - "lat": 52.2304919, - "lon": 1.5214207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP17 4609", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11635889565, - "lat": 52.2719013, - "lon": 1.5224339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP17 4607", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11635930244, - "lat": 52.2836411, - "lon": 1.5358979, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "IP17 4633" - } -}, -{ - "type": "node", - "id": 11636061862, - "lat": 51.5333952, - "lon": -3.4531201, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 137", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11636061863, - "lat": 51.5346616, - "lon": -3.4433945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF72 173D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636076482, - "lat": 51.5310251, - "lon": -3.4447114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF72 29D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636076567, - "lat": 51.5252957, - "lon": -3.4363000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_walll", - "post_box:type": "wall", - "ref": "CF72 130D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636088430, - "lat": 51.5393881, - "lon": -3.4435634, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 305D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11636088431, - "lat": 51.5401338, - "lon": -3.4531342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 3D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11636088432, - "lat": 51.5388417, - "lon": -3.4630336, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:45", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF72 270", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636090493, - "lat": 51.5348593, - "lon": -3.3809687, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF72 4D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636090494, - "lat": 51.5388367, - "lon": -3.3822488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "woodwn_pole", - "post_box:type": "lamp", - "ref": "CF72 225D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636090495, - "lat": 51.5342120, - "lon": -3.3889979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CF72 364D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636090496, - "lat": 51.5345465, - "lon": -3.3937253, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "CF72 110D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11636090497, - "lat": 51.5294750, - "lon": -3.3993553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "CF72 14D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636111665, - "lat": 52.1981797, - "lon": 1.4503998, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP17 4623", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11636155916, - "lat": 52.1997657, - "lon": 1.4698210, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP17 4675", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11637722121, - "lat": 50.8829071, - "lon": 0.4264270, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "render_wall", - "post_box:type": "lamp", - "ref": "TN33 109", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11637731562, - "lat": 50.8965677, - "lon": 0.4483121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN33 176", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11638258523, - "lat": 56.0670851, - "lon": -3.7103185, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK10 10D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11638291053, - "lat": 56.0652614, - "lon": -3.6963603, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK10 44D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11638316743, - "lat": 56.0726201, - "lon": -3.7210017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK10 22D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11638353284, - "lat": 56.0998306, - "lon": -3.7275450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK10 19D" - } -}, -{ - "type": "node", - "id": 11638375846, - "lat": 50.9046042, - "lon": 0.5552414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_pole", - "post_box:type": "lamp", - "ref": "TN33 236D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11638539945, - "lat": 50.8915715, - "lon": 0.5429609, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 279D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639003, - "lat": 50.8817794, - "lon": 0.5564980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 238D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639004, - "lat": 50.8778151, - "lon": 0.5645869, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TN34 266D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639005, - "lat": 50.8879160, - "lon": 0.5624666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TN37 13D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639006, - "lat": 50.8853847, - "lon": 0.5678236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TN37 7", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639013, - "lat": 50.8830127, - "lon": 0.5815311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN34 33D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639014, - "lat": 50.8827939, - "lon": 0.5626054, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 52D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639015, - "lat": 50.8821543, - "lon": 0.5721038, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 34D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638639016, - "lat": 50.8804222, - "lon": 0.5637936, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_pole", - "post_box:type": "lamp", - "ref": "TN37 112D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11638957101, - "lat": 50.4293547, - "lon": -5.0537330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 98D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957103, - "lat": 50.4262045, - "lon": -5.0546669, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 85D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957121, - "lat": 50.4208772, - "lon": -5.0619044, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 82D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957123, - "lat": 50.4162507, - "lon": -5.0680330, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 95D", - "royal_cypher": "GVIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957127, - "lat": 50.4140072, - "lon": -5.0657216, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 112D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957130, - "lat": 50.4110321, - "lon": -5.0649470, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp", - "ref": "TR7 14D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957133, - "lat": 50.4109919, - "lon": -5.0607937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "note": "Letters only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 81D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957138, - "lat": 50.4035020, - "lon": -5.0611133, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00, Sa 11:00; Su off", - "description": "Parcels and Franked Mail only", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TR7 113P", - "royal_cypher": "no", - "source": "survey;aerial imagery", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957143, - "lat": 50.4049732, - "lon": -5.0716092, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 105D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957144, - "lat": 50.4069668, - "lon": -5.0737296, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 32D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957146, - "lat": 50.4088610, - "lon": -5.0743907, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 15D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638957183, - "lat": 50.4232267, - "lon": -5.0525312, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 17D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11638982575, - "lat": 55.7962913, - "lon": -5.4841874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA29 37" - } -}, -{ - "type": "node", - "id": 11639043707, - "lat": 50.8682476, - "lon": 0.5542195, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TN38 206", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639043730, - "lat": 50.8683227, - "lon": 0.5605180, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "TN37 104D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639043736, - "lat": 50.8748174, - "lon": 0.5587953, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 43D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639043742, - "lat": 50.8719015, - "lon": 0.5585365, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TN37 172D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639043743, - "lat": 50.8722692, - "lon": 0.5541236, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 37D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059574, - "lat": 50.8756031, - "lon": 0.5541390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 248D", - "royal_cypher": "EVIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059577, - "lat": 50.8764959, - "lon": 0.5512181, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 145", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059579, - "lat": 50.8785826, - "lon": 0.5466342, - "tags": { - "amenity": "post_box", - "note": "Collection plate information missing", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059586, - "lat": 50.8821873, - "lon": 0.5435007, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "TN38 85P", - "royal_cypher": "no", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059587, - "lat": 50.8821928, - "lon": 0.5435597, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN38 35", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059588, - "lat": 50.8881038, - "lon": 0.5415715, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 59D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059591, - "lat": 50.8810424, - "lon": 0.5475280, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 40D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639059592, - "lat": 50.8786986, - "lon": 0.5541705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 171D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639082261, - "lat": 50.4196617, - "lon": -5.0510658, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "TR7 39D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11639082262, - "lat": 50.4172491, - "lon": -5.0468818, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30, Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 71", - "royal_cypher": "EIIR", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11639082263, - "lat": 50.4306272, - "lon": -4.9519256, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 103D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11639082264, - "lat": 50.4308993, - "lon": -4.9454135, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 102D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-02-18" - } -}, -{ - "type": "node", - "id": 11639094884, - "lat": 50.8599974, - "lon": 0.5827294, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "TN34 1", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639094896, - "lat": 50.8597193, - "lon": 0.5782487, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TN34 60D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639124756, - "lat": 50.8674954, - "lon": 0.5413945, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN37 44D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639124757, - "lat": 50.8715541, - "lon": 0.5507299, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 255D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639124758, - "lat": 50.8681930, - "lon": 0.5484695, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "TN38 89P", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639124759, - "lat": 50.8630190, - "lon": 0.5564853, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 9D", - "royal_cypher": "no", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195875, - "lat": 50.8529241, - "lon": 0.5551127, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "TN38 102D", - "royal_cypher": "VR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195876, - "lat": 50.8545653, - "lon": 0.5564035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN38 3D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195877, - "lat": 50.8538478, - "lon": 0.5583876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN38 121D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195920, - "lat": 50.8523646, - "lon": 0.5602367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "TN37 1371", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195933, - "lat": 50.8571437, - "lon": 0.5618638, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "render_wall", - "post_box:type": "wall", - "ref": "TN37 76D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195934, - "lat": 50.8544223, - "lon": 0.5618316, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 217D", - "royal_cypher": "GR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11639195935, - "lat": 50.8543533, - "lon": 0.5632491, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "TN37 136D", - "royal_cypher": "EVIIR", - "survey:date": "2024-02-17" - } -}, -{ - "type": "node", - "id": 11640700645, - "lat": 54.3909046, - "lon": -5.8340497, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT30 206D" - } -}, -{ - "type": "node", - "id": 11641218305, - "lat": 51.5721249, - "lon": -3.2043538, - "tags": { - "amenity": "post_box", - "mapillary": "391954072114485", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11641251582, - "lat": 53.4309899, - "lon": -1.1171856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "DN11 364D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11641252723, - "lat": 51.5728478, - "lon": -3.1534481, - "tags": { - "amenity": "post_box", - "mapillary": "1385358061841436", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11641319637, - "lat": 51.5835932, - "lon": -3.2194701, - "tags": { - "amenity": "post_box", - "mapillary": "176623081326765", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11643221328, - "lat": 50.6427122, - "lon": -1.3953609, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11645091996, - "lat": 51.2241192, - "lon": -2.8051821, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1561297861283624", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "survey:date": "2023-11-11" - } -}, -{ - "type": "node", - "id": 11645130261, - "lat": 51.2078011, - "lon": -2.6869578, - "tags": { - "amenity": "post_box", - "mapillary": "123099187530821", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11645131384, - "lat": 51.2073747, - "lon": -2.7582701, - "tags": { - "amenity": "post_box", - "mapillary": "795083802623181", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11645133020, - "lat": 51.2051356, - "lon": -2.7145619, - "tags": { - "amenity": "post_box", - "mapillary": "722796116352371", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11645138679, - "lat": 51.2129598, - "lon": -2.7699300, - "tags": { - "amenity": "post_box", - "mapillary": "234331066271885", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11645155966, - "lat": 51.2096097, - "lon": -2.6591893, - "tags": { - "amenity": "post_box", - "mapillary": "263420575512338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11645161742, - "lat": 51.2054267, - "lon": -2.6964696, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11645167470, - "lat": 51.2081121, - "lon": -2.6710423, - "tags": { - "amenity": "post_box", - "mapillary": "138194359368391", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11645399781, - "lat": 54.9085943, - "lon": -1.5487567, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NE37 546", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11645407405, - "lat": 55.0034479, - "lon": -1.4837342, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE29 709", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11645419596, - "lat": 54.9113779, - "lon": -1.5108999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NE37 741", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11645459328, - "lat": 54.9937984, - "lon": -1.5652114, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NE6 359", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 11645494193, - "lat": 51.2702994, - "lon": 0.1918571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 12:30", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "TN13 1411", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11645699961, - "lat": 51.5230472, - "lon": -3.3909622, - "tags": { - "amenity": "post_box", - "mapillary": "273781865524320", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11645706380, - "lat": 51.5172206, - "lon": -3.4001411, - "tags": { - "amenity": "post_box", - "mapillary": "114106395126801", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11646339234, - "lat": 51.5526914, - "lon": -1.7039937, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 123D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11646339238, - "lat": 51.5166846, - "lon": -1.7309759, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 189", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11646339239, - "lat": 51.5192742, - "lon": -1.7248409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 188D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11646339240, - "lat": 51.5229272, - "lon": -1.7520003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 23D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11646980063, - "lat": 51.5485797, - "lon": 0.6760399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11646998082, - "lat": 53.2475310, - "lon": -3.6393361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "LL22 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11646998110, - "lat": 53.2484201, - "lon": -3.6429967, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 194D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11647010144, - "lat": 53.2383206, - "lon": -3.6055356, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times valid from 11.3.24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 63", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11647010145, - "lat": 53.2518839, - "lon": -3.5966554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 98", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11647010147, - "lat": 53.2551096, - "lon": -3.5610105, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times from 11.3.24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "LL22 51", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11647010148, - "lat": 53.2538581, - "lon": -3.5371227, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "Collection times from 11.3.24", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL22 217", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11647036790, - "lat": 51.5455106, - "lon": 0.6633845, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11647036791, - "lat": 51.5435314, - "lon": 0.6673532, - "tags": { - "amenity": "post_box", - "fixme": "check position, may be on opposite corner", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11648802321, - "lat": 51.5208756, - "lon": -1.8016829, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 100D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11648824298, - "lat": 54.6060663, - "lon": -5.8474016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "wikimedia_commons": "File:Pillar box, Belfast - geograph.org.uk - 2311128.jpg" - } -}, -{ - "type": "node", - "id": 11648857673, - "lat": 54.5907632, - "lon": -5.8073860, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "wikimedia_commons": "File:Letter box, Dundonald - geograph.org.uk - 2707877.jpg" - } -}, -{ - "type": "node", - "id": 11648863152, - "lat": 54.1047384, - "lon": -6.1916805, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11648874239, - "lat": 55.2263097, - "lon": -3.4636755, - "tags": { - "amenity": "post_box", - "mapillary": "186298584152429", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11649645938, - "lat": 54.3976323, - "lon": -1.7371879, - "tags": { - "amenity": "post_box", - "mapillary": "791732655052759", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11649659586, - "lat": 56.5137746, - "lon": -2.8173632, - "tags": { - "amenity": "post_box", - "mapillary": "343248351047044", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11649663223, - "lat": 54.3873327, - "lon": -1.7306482, - "tags": { - "amenity": "post_box", - "mapillary": "1084756735867487", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11649699269, - "lat": 56.4670164, - "lon": -2.9583661, - "tags": { - "amenity": "post_box", - "mapillary": "279045584355462", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11649701689, - "lat": 56.5345521, - "lon": -2.7959768, - "tags": { - "amenity": "post_box", - "mapillary": "346660237380619", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11652328402, - "lat": 51.4845250, - "lon": -2.4308685, - "tags": { - "amenity": "post_box", - "mapillary": "479094636842897", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11652356537, - "lat": 51.4858294, - "lon": -2.4343621, - "tags": { - "amenity": "post_box", - "mapillary": "579671056711761", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11652359475, - "lat": 52.4000246, - "lon": -2.2353486, - "tags": { - "amenity": "post_box", - "mapillary": "428323388634369", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11652496830, - "lat": 50.9173305, - "lon": 0.5768949, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN35 17D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11652496836, - "lat": 50.9111367, - "lon": 0.5767956, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TN35 151", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11652496997, - "lat": 50.9071210, - "lon": 0.5804763, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TN35 142D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11652834969, - "lat": 51.1893766, - "lon": -2.5437860, - "tags": { - "amenity": "post_box", - "mapillary": "1885395598644376", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BA4 49", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11652835729, - "lat": 51.1855004, - "lon": -2.5439538, - "tags": { - "amenity": "post_box", - "mapillary": "6453662334751592", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11653167824, - "lat": 51.1847634, - "lon": -2.5307851, - "tags": { - "amenity": "post_box", - "mapillary": "546980450911726", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11653212624, - "lat": 51.1631967, - "lon": -2.5258469, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11653230242, - "lat": 51.1882621, - "lon": -2.5476501, - "tags": { - "amenity": "post_box", - "mapillary": "370431621991867", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11653232871, - "lat": 51.1936733, - "lon": -2.5457941, - "tags": { - "amenity": "post_box", - "mapillary": "981043062970287", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11653241674, - "lat": 51.1546104, - "lon": -2.5436707, - "tags": { - "amenity": "post_box", - "mapillary": "2428079700707309", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11653254614, - "lat": 51.1390708, - "lon": -2.5163966, - "tags": { - "amenity": "post_box", - "mapillary": "221774647562821", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11653264134, - "lat": 51.1320091, - "lon": -2.5162530, - "tags": { - "amenity": "post_box", - "mapillary": "584323736283732", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11654741736, - "lat": 51.3973784, - "lon": 0.1728341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "BR8 502", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11654767445, - "lat": 52.8808429, - "lon": -0.0464364, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11654832257, - "lat": 52.8573185, - "lon": -2.9002882, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11654882800, - "lat": 53.3652523, - "lon": -0.0083734, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11655866046, - "lat": 50.9398879, - "lon": -2.4708125, - "tags": { - "amenity": "post_box", - "mapillary": "348587033961474", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11655887900, - "lat": 51.3456217, - "lon": -2.2083118, - "tags": { - "amenity": "post_box", - "mapillary": "1554980484907938", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11655898957, - "lat": 51.3960844, - "lon": -2.3425056, - "tags": { - "amenity": "post_box", - "mapillary": "1023432368674718", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11655901169, - "lat": 50.9657687, - "lon": -2.4662089, - "tags": { - "amenity": "post_box", - "mapillary": "825605439259412", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11655904372, - "lat": 51.2959235, - "lon": -2.1711847, - "tags": { - "amenity": "post_box", - "mapillary": "893063377914029", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11655905859, - "lat": 51.3005053, - "lon": -2.1759088, - "tags": { - "amenity": "post_box", - "mapillary": "275607287634293", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11655910125, - "lat": 51.3564833, - "lon": -2.2428752, - "tags": { - "amenity": "post_box", - "mapillary": "234538545899035", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11656107866, - "lat": 56.7444387, - "lon": -5.8325261, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11656133079, - "lat": 56.7667327, - "lon": -5.8313658, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11656484910, - "lat": 51.9512470, - "lon": -1.8717266, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "fixme": "Check location", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL54 229D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11657328218, - "lat": 51.7415917, - "lon": 0.4450497, - "tags": { - "amenity": "post_box", - "mapillary": "588617869293314", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11657328222, - "lat": 56.6814993, - "lon": -5.8663524, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11657346729, - "lat": 51.7126914, - "lon": 0.3774231, - "tags": { - "amenity": "post_box", - "mapillary": "436640101592355", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11657373414, - "lat": 51.4670398, - "lon": 0.1045546, - "tags": { - "amenity": "post_box", - "mapillary": "535917457407641", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11657374124, - "lat": 56.6829123, - "lon": -5.8268116, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11657374832, - "lat": 51.3979243, - "lon": 0.3291653, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps/?cp=51.39788%7E0.329163&lvl=19.0&pi=-19.9&style=x&dir=9.1", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11657387678, - "lat": 51.3954028, - "lon": 0.3270991, - "tags": { - "amenity": "post_box", - "mapillary": "614366920363876", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11657395298, - "lat": 51.4622955, - "lon": 0.1094456, - "tags": { - "amenity": "post_box", - "mapillary": "348362343562904", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11657411465, - "lat": 56.6991301, - "lon": -6.0904773, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11657428018, - "lat": 56.6921633, - "lon": -6.1283985, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11658316239, - "lat": 54.6536976, - "lon": -1.6775864, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11658354482, - "lat": 54.5277735, - "lon": -1.2307246, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11658380878, - "lat": 56.0427490, - "lon": -5.4197480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PA31 7" - } -}, -{ - "type": "node", - "id": 11658380879, - "lat": 56.0360848, - "lon": -5.4243051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA31 9", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11658381027, - "lat": 56.0352243, - "lon": -5.4301442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA31 17", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11658381038, - "lat": 56.0393923, - "lon": -5.4289963, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "PA31 1", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11660354229, - "lat": 50.2661227, - "lon": -5.0934803, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "fixme": "The indoor post box needs to be surveyed again to more precisely locate it", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TR1 254D" - } -}, -{ - "type": "node", - "id": 11660360726, - "lat": 54.2196268, - "lon": -5.8869855, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT33 25D" - } -}, -{ - "type": "node", - "id": 11660845886, - "lat": 54.2581094, - "lon": -5.8425916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11660917586, - "lat": 53.8749140, - "lon": -2.1681616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11660918745, - "lat": 50.2890747, - "lon": -4.8154571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 60D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660918746, - "lat": 50.3012658, - "lon": -4.8001113, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL26 185D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660918747, - "lat": 50.3160838, - "lon": -4.8006985, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "756674442294506", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL26 92D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660918749, - "lat": 50.3382501, - "lon": -4.7797501, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL25 1D", - "royal_cypher": "GR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660918750, - "lat": 50.3365809, - "lon": -4.7801709, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL25 206D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660918751, - "lat": 50.3359019, - "lon": -4.7861314, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 64D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660918759, - "lat": 50.3385076, - "lon": -4.7908205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "location": "High Cross Street", - "note": "Seperate boxes here side-by-side one marked 'Franked' one marked 'Letters'", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 218", - "royal_cypher": "no", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958571, - "lat": 50.3404191, - "lon": -4.7825466, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL25 122D", - "royal_cypher": "GR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958573, - "lat": 50.3418591, - "lon": -4.7847325, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL25 79D", - "royal_cypher": "GR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958574, - "lat": 50.3432083, - "lon": -4.7818334, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL25 196D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958578, - "lat": 50.3460822, - "lon": -4.7827766, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "PL25 52D", - "royal_cypher": "EVIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958583, - "lat": 50.3496814, - "lon": -4.7804176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 89D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958585, - "lat": 50.3455660, - "lon": -4.7782488, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "PL25 8", - "royal_cypher": "GVIR", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11660958593, - "lat": 50.3417352, - "lon": -4.7755084, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 29D", - "royal_cypher": "EIIR", - "survey:date": "2024-02-24", - "wikimedia_commons": "File:Shops on Polkyth Road, St Austell, Cornwall - July 2023.jpg" - } -}, -{ - "type": "node", - "id": 11662306452, - "lat": 52.4344276, - "lon": 1.3995565, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3511D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11662306462, - "lat": 52.4445945, - "lon": 1.4345862, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3512D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11662349172, - "lat": 52.4308892, - "lon": 1.3983884, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3508D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11662821822, - "lat": 52.7979227, - "lon": 0.0788055, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "In right gatepost of the footpath.
Just E of the little car park reserved for church staff.
10m W of main entrance to church of Saint Mary Magdalene./Church End", - "post_box:type": "wall", - "ref": "PE12 40", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11662823460, - "lat": 51.0070223, - "lon": -1.4682442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11663126723, - "lat": 55.2098745, - "lon": -6.6565238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11663368136, - "lat": 54.5374655, - "lon": -1.6766642, - "tags": { - "amenity": "post_box", - "mapillary": "221325753575693", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11663369805, - "lat": 55.2001235, - "lon": -6.6449675, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11663403265, - "lat": 50.7130709, - "lon": -2.5417899, - "tags": { - "amenity": "post_box", - "mapillary": "138152858611666", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11663403268, - "lat": 50.7614566, - "lon": -2.4761029, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps/?cp=50.761198%7E-2.476223&lvl=20.0&pi=-8.9&style=x&dir=114", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11663424595, - "lat": 54.3917440, - "lon": -1.6623099, - "tags": { - "amenity": "post_box", - "mapillary": "1226329518036509", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "lamp_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11663425681, - "lat": 54.6484843, - "lon": -1.7554579, - "tags": { - "amenity": "post_box", - "mapillary": "695683421933752", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11663443023, - "lat": 50.8755520, - "lon": -2.5445564, - "tags": { - "amenity": "post_box", - "mapillary": "1712725489243342", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11663443032, - "lat": 50.8721204, - "lon": -2.5674889, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:30", - "fixme": "Collection times from 2020, needs confirming", - "mapillary": "798619164120966", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11663467082, - "lat": 50.8744456, - "lon": -2.5300318, - "tags": { - "amenity": "post_box", - "mapillary": "693391742829901", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11663489611, - "lat": 50.9180312, - "lon": -2.5067843, - "tags": { - "amenity": "post_box", - "mapillary": "1722407228228675", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11663492387, - "lat": 50.9148392, - "lon": -2.5012688, - "tags": { - "amenity": "post_box", - "mapillary": "347564307580645", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11663510210, - "lat": 50.9538895, - "lon": -2.5275541, - "tags": { - "amenity": "post_box", - "mapillary": "867484568145463", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11663515308, - "lat": 50.9532513, - "lon": -2.5185229, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "825323088583129", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT9 29D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11663523611, - "lat": 50.9569313, - "lon": -2.5138867, - "tags": { - "amenity": "post_box", - "mapillary": "1068754767047986", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11663523612, - "lat": 50.9646743, - "lon": -2.4926951, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "716611757008474", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT9 84D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11663538784, - "lat": 50.9787337, - "lon": -2.5000361, - "tags": { - "amenity": "post_box", - "mapillary": "1096893250856745", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11663579313, - "lat": 54.8552658, - "lon": -1.7514711, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11665292910, - "lat": 52.4467247, - "lon": 1.4421165, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3514D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11665292942, - "lat": 52.4465240, - "lon": 1.4472623, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3551D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11665293020, - "lat": 52.4491020, - "lon": 1.4482111, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR35 3516D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11665293041, - "lat": 52.4525488, - "lon": 1.4539532, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NR35 3510D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11665293090, - "lat": 52.4537007, - "lon": 1.4449207, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "NR35 3503D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11665492555, - "lat": 53.8387316, - "lon": -1.6302856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LS18 59", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11668722738, - "lat": 52.0442330, - "lon": -3.7407315, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Bethel,_Cynghordy_-_geograph.org.uk_-_3078567.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11668807845, - "lat": 51.6137586, - "lon": -3.2266470, - "tags": { - "amenity": "post_box", - "mapillary": "244496907700121", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11668820151, - "lat": 51.6330306, - "lon": -3.2356597, - "tags": { - "amenity": "post_box", - "mapillary": "210915087829462", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11668824049, - "lat": 52.3433577, - "lon": -2.2755173, - "tags": { - "amenity": "post_box", - "mapillary": "492798295404995", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11668839697, - "lat": 54.3745476, - "lon": -1.7214120, - "tags": { - "amenity": "post_box", - "mapillary": "131340838952966", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11668841735, - "lat": 51.6619986, - "lon": -3.2290023, - "tags": { - "amenity": "post_box", - "mapillary": "241588298005485", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11668841915, - "lat": 51.6385722, - "lon": -3.2353104, - "tags": { - "amenity": "post_box", - "mapillary": "433430838127110", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11668844682, - "lat": 53.4324332, - "lon": -1.1001136, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN11 283D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11668846711, - "lat": 51.5474773, - "lon": -3.2080820, - "tags": { - "amenity": "post_box", - "mapillary": "109413731429941", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11668913861, - "lat": 53.4370677, - "lon": -1.1034123, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "DN11 523D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11669047178, - "lat": 53.4366794, - "lon": -1.1111332, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "DN11 280D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11669625341, - "lat": 50.3311673, - "lon": -4.8131773, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?cp=50.331134%7E-4.813271&lvl=19.2&pi=-12.3&style=x&dir=45.3", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11669718327, - "lat": 51.3390538, - "lon": -0.5056064, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "KT14 154" - } -}, -{ - "type": "node", - "id": 11670469596, - "lat": 56.2257068, - "lon": -5.0781620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA32 48" - } -}, -{ - "type": "node", - "id": 11672109379, - "lat": 50.7501965, - "lon": -3.2844012, - "tags": { - "amenity": "post_box", - "mapillary": "1433396960439754", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11672121577, - "lat": 50.7512518, - "lon": -3.3268048, - "tags": { - "amenity": "post_box", - "mapillary": "1179894009410345", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11672150343, - "lat": 50.9468180, - "lon": -2.6364698, - "tags": { - "amenity": "post_box", - "mapillary": "470733085126691", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11672171901, - "lat": 51.0125837, - "lon": -2.4306346, - "tags": { - "amenity": "post_box", - "mapillary": "3033102040252203", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11672261742, - "lat": 50.7817751, - "lon": -2.9999363, - "tags": { - "amenity": "post_box", - "mapillary": "1690513584474844", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11672262775, - "lat": 57.1843482, - "lon": -2.1977987, - "tags": { - "amenity": "post_box", - "mapillary": "2409354069250701", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11672399780, - "lat": 56.4676025, - "lon": -3.0045124, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "RM Manufacturing", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD2 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11672688284, - "lat": 52.9188666, - "lon": 0.5502588, - "tags": { - "amenity": "post_box", - "name": "Trail User Survey Box", - "operator": "Norfolk Trails", - "post_box:type": "survey" - } -}, -{ - "type": "node", - "id": 11672806144, - "lat": 52.2226872, - "lon": 1.5830009, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "IP16 4640", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11673075341, - "lat": 52.5084697, - "lon": -2.0876396, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11673273794, - "lat": 53.2773928, - "lon": -2.5556885, - "tags": { - "amenity": "post_box", - "ref": "CW8 24D" - } -}, -{ - "type": "node", - "id": 11677063703, - "lat": 51.5105539, - "lon": -0.1372123, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-02-29", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1B 109D;W1B 309D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11677814378, - "lat": 55.0689616, - "lon": -6.5230528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT53 40D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11681411458, - "lat": 51.4589988, - "lon": -2.2039312, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11682289099, - "lat": 55.5445537, - "lon": -4.6622478, - "tags": { - "amenity": "post_box", - "brand": "DHL", - "brand:wikidata": "Q489815", - "operator": "DHL", - "operator:wikidata": "Q489815" - } -}, -{ - "type": "node", - "id": 11682649152, - "lat": 56.0277056, - "lon": -3.8109724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK5 69D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11682682106, - "lat": 56.0255487, - "lon": -3.8183150, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK5 73", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11682704294, - "lat": 56.0248330, - "lon": -3.8156649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "FK5 240" - } -}, -{ - "type": "node", - "id": 11682718076, - "lat": 56.0330791, - "lon": -3.8047282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK5 71", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11682734576, - "lat": 56.0359567, - "lon": -3.7966528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "FK2 125D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11683138520, - "lat": 50.5308810, - "lon": -4.6174625, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11683141019, - "lat": 50.5808938, - "lon": -4.3900900, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11684783512, - "lat": 53.1952764, - "lon": -2.3540161, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "975602917393604", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CW4 296D", - "royal_cypher": "EIIR", - "survey:date": "2024-05-19" - } -}, -{ - "type": "node", - "id": 11684829332, - "lat": 52.3664703, - "lon": 0.4887414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2183D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11684829346, - "lat": 52.3708084, - "lon": 0.4848948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2175D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11684865387, - "lat": 52.3787470, - "lon": 0.5015999, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2172D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11684865388, - "lat": 52.3730537, - "lon": 0.4961067, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2261D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11686052042, - "lat": 50.3993559, - "lon": -4.9207928, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "TR9 72D", - "royal_cypher": "GR", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11686052043, - "lat": 50.3808659, - "lon": -4.9289972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 104D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11687529183, - "lat": 53.1504761, - "lon": -2.3915482, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW11 84D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11688139028, - "lat": 50.5464913, - "lon": -4.3161112, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11688210607, - "lat": 55.9638300, - "lon": -3.4707452, - "tags": { - "amenity": "post_box", - "ref": "EH52 30D" - } -}, -{ - "type": "node", - "id": 11688442906, - "lat": 51.3375420, - "lon": -0.9994583, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11688531927, - "lat": 54.8812882, - "lon": -4.8032307, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DG8 25", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11691603203, - "lat": 56.4081302, - "lon": -5.4630184, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691618999, - "lat": 51.3114343, - "lon": -0.6553914, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "collection_times_checked": "2016-04-02", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU24 60", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11691627321, - "lat": 56.3057213, - "lon": -5.5912082, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:manufacturer": "Abbot Engineering", - "post_box:type": "lamp", - "ref": "PA34 32D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11691643818, - "lat": 56.3998714, - "lon": -5.4657048, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691667035, - "lat": 56.4097664, - "lon": -5.4656436, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691707146, - "lat": 56.4041167, - "lon": -5.4634336, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691711336, - "lat": 56.4005242, - "lon": -5.4775519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691714861, - "lat": 56.4060833, - "lon": -5.4697809, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "849481313728672", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "survey:date": "2024-07-14" - } -}, -{ - "type": "node", - "id": 11691718100, - "lat": 56.4173410, - "lon": -5.4700290, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691720436, - "lat": 56.4213720, - "lon": -5.4763386, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11691740113, - "lat": 56.4242666, - "lon": -5.4742108, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11693457891, - "lat": 50.3386926, - "lon": -4.8065475, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PL25 155D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11694029940, - "lat": 50.3399157, - "lon": -4.7998348, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 76D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11698471044, - "lat": 50.4325404, - "lon": -3.6826430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "indoor_pillar", - "ref": "TR9 6", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11698524864, - "lat": 53.2731300, - "lon": -2.5561224, - "tags": { - "amenity": "post_box", - "ref": "CW8 21D" - } -}, -{ - "type": "node", - "id": 11698826077, - "lat": 54.7843016, - "lon": -1.6422749, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "DH7 131" - } -}, -{ - "type": "node", - "id": 11699042238, - "lat": 52.4949669, - "lon": 1.7202356, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR32 3265", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11700380360, - "lat": 51.6526329, - "lon": -0.0478943, - "tags": { - "amenity": "post_box", - "mapillary": "1705628313127641", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11700412118, - "lat": 51.6767846, - "lon": -0.0353233, - "tags": { - "amenity": "post_box", - "mapillary": "822393632453244", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11700423442, - "lat": 51.0182253, - "lon": -2.5765597, - "tags": { - "amenity": "post_box", - "mapillary": "994567528424323", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11700425722, - "lat": 53.5773618, - "lon": -0.1259653, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-04", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/2yNMqP1L/DN37-224-D.jpg", - "location": "Woad Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 224D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11700426009, - "lat": 51.0210526, - "lon": -2.4390069, - "tags": { - "amenity": "post_box", - "mapillary": "447665896710031", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11700432026, - "lat": 51.6803230, - "lon": -0.0363530, - "tags": { - "amenity": "post_box", - "mapillary": "753086332610193", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11700946457, - "lat": 51.7510098, - "lon": -4.2046534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SA15 379", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11703587190, - "lat": 51.8251503, - "lon": -3.0259980, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11703894496, - "lat": 51.3486616, - "lon": -2.6344068, - "tags": { - "amenity": "post_box", - "mapillary": "1025723547971840", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11703895395, - "lat": 51.3898359, - "lon": -2.6634730, - "tags": { - "amenity": "post_box", - "mapillary": "963651057570542", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11703913504, - "lat": 51.3062702, - "lon": -2.8260413, - "tags": { - "amenity": "post_box", - "mapillary": "303660735921215", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11703932926, - "lat": 51.1237993, - "lon": -2.7781544, - "tags": { - "amenity": "post_box", - "mapillary": "1280503192754715", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11704278374, - "lat": 53.5112978, - "lon": -0.1378017, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/QCkRxLJJ/DN37-30D.jpg", - "location": "Chapel Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN37 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11704288185, - "lat": 53.5659824, - "lon": -1.8091972, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11704301812, - "lat": 53.1659968, - "lon": -4.3338653, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11704391808, - "lat": 53.5138663, - "lon": -0.1170476, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-07", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/Fz35r8HF/DN37-164-D.jpg", - "location": "Bradley Road/Barnoldby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN37 164D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11704487621, - "lat": 53.5172123, - "lon": -0.1090533, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-07", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/VNbdyhsN/DN37-271-D.jpg", - "location": "Archer Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN37 271D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11704538573, - "lat": 52.5422607, - "lon": 1.7240242, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3156", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11704629001, - "lat": 52.5569471, - "lon": 1.6851294, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NR31 3146", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324" - } -}, -{ - "type": "node", - "id": 11704704164, - "lat": 52.5872696, - "lon": 1.6609926, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3154", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11704704165, - "lat": 52.5731197, - "lon": 1.6659217, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NR31 3153", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11704704166, - "lat": 52.5684693, - "lon": 1.6655767, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 16:30; Sa 12:00", - "operator": "Royal Mail", - "operator:type": "private", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NR31 3170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11707852099, - "lat": 53.5501825, - "lon": -1.0664819, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN3 119" - } -}, -{ - "type": "node", - "id": 11707863861, - "lat": 53.5142340, - "lon": -0.1110763, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-07", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/PxS1FZVz/DN37-200-D.jpg", - "location": "Westfield Road/Barnoldby Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN37 200D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11707891707, - "lat": 53.5478078, - "lon": -1.0659450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN3 521" - } -}, -{ - "type": "node", - "id": 11708003281, - "lat": 52.5209330, - "lon": -3.3138078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SY16 457D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014086, - "lat": 51.5065321, - "lon": -1.8863370, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 148D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014087, - "lat": 51.5319426, - "lon": -1.9002540, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SN4 117;SN4 1170", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11709014090, - "lat": 51.5371660, - "lon": -1.9002647, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN4 10", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014093, - "lat": 51.5394153, - "lon": -1.8939213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN4 105D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014114, - "lat": 51.5419675, - "lon": -1.9016728, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 308D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014118, - "lat": 51.5481881, - "lon": -1.8983074, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 370D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014119, - "lat": 51.5505744, - "lon": -1.8957546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN4 107D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014160, - "lat": 51.5695656, - "lon": -1.8891514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN4 147D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014161, - "lat": 51.5534913, - "lon": -1.8214514, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 372", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709014162, - "lat": 51.5659897, - "lon": -1.7924768, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 615P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11709458534, - "lat": 53.4084523, - "lon": -2.1934611, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 9D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709474462, - "lat": 53.4135622, - "lon": -2.1446197, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SK1 130D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11709478772, - "lat": 53.4094971, - "lon": -2.2013824, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 13D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709481506, - "lat": 51.3522472, - "lon": -0.7892797, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU47 112D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11709499409, - "lat": 54.9136869, - "lon": -4.6088753, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DG8 43", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11710858583, - "lat": 53.1061329, - "lon": -2.0330213, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST13 712D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11711001829, - "lat": 54.2579904, - "lon": -5.7992089, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT30 27D" - } -}, -{ - "type": "node", - "id": 11716631846, - "lat": 51.1973541, - "lon": -2.3325561, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Eleanor%27s_Well_-_geograph.org.uk_-_136231.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11717251773, - "lat": 51.2060202, - "lon": -2.3322371, - "tags": { - "amenity": "post_box", - "mapillary": "195889976427018", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11717264662, - "lat": 51.2342918, - "lon": -2.3161414, - "tags": { - "amenity": "post_box", - "mapillary": "1173231753128974", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11717273996, - "lat": 51.2108963, - "lon": -2.3173346, - "tags": { - "amenity": "post_box", - "mapillary": "823943199218653", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11717275877, - "lat": 51.2253882, - "lon": -2.3167696, - "tags": { - "amenity": "post_box", - "mapillary": "849392100101131", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11717376370, - "lat": 53.5901486, - "lon": -2.6921587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1049890450068950", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WN6 209", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11717376371, - "lat": 53.5890873, - "lon": -2.6840430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WN6 149", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11718454802, - "lat": 55.8075733, - "lon": -4.5572515, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11722391490, - "lat": 51.3366612, - "lon": -2.9820094, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Post-box_on_Beach_Road_-_geograph.org.uk_-_5717041.jpg", - "mapillary": "2226015167593062", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11722400622, - "lat": 51.3145819, - "lon": -2.8343088, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "352376660532459", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BS25 79D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11722403118, - "lat": 51.3398174, - "lon": -2.9811313, - "tags": { - "amenity": "post_box", - "mapillary": "233445606364817", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11722574724, - "lat": 50.3418289, - "lon": -4.7979153, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "965149075238724", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "survey:date": "2024-03-07" - } -}, -{ - "type": "node", - "id": 11722688351, - "lat": 52.4615153, - "lon": -2.2039635, - "tags": { - "amenity": "post_box", - "mapillary": "1020674488699919", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11723044928, - "lat": 54.3626028, - "lon": -1.5476410, - "tags": { - "amenity": "post_box", - "mapillary": "107570469099651", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11724849897, - "lat": 56.6702844, - "lon": -3.0116343, - "tags": { - "amenity": "post_box", - "mapillary": "648802843634113", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11724851208, - "lat": 57.1902854, - "lon": -2.1794973, - "tags": { - "amenity": "post_box", - "mapillary": "3360303490926189", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11724852068, - "lat": 56.6523508, - "lon": -2.9354975, - "tags": { - "amenity": "post_box", - "mapillary": "1004169987298524", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11724862728, - "lat": 56.6501969, - "lon": -2.8894081, - "tags": { - "amenity": "post_box", - "mapillary": "2884654951831789", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11724869141, - "lat": 57.1827056, - "lon": -2.1789107, - "tags": { - "amenity": "post_box", - "mapillary": "2160248550989995", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11724887444, - "lat": 56.6426248, - "lon": -3.0942436, - "tags": { - "amenity": "post_box", - "mapillary": "668383281482939", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11725220164, - "lat": 53.5866402, - "lon": -2.6747149, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "WN6 180", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11725287453, - "lat": 50.3385013, - "lon": -4.7908420, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00, Sa 12:30", - "location": "High Cross Street", - "note": "Seperate boxes here side-by-side one marked 'Franked' one marked 'Letters'", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PL25 2180", - "royal_cypher": "no", - "survey:date": "2024-02-24" - } -}, -{ - "type": "node", - "id": 11725477932, - "lat": 55.6222261, - "lon": -4.6717040, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "KA11 101D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11725514943, - "lat": 53.5299453, - "lon": -0.3590288, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11725828369, - "lat": 54.8998010, - "lon": -6.9775983, - "tags": { - "addr:housenumber": "715", - "addr:postcode": "BT47 4TB", - "addr:street": "Feeny Road", - "amenity": "post_box", - "colour": "red", - "name": "Post Box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11727048541, - "lat": 50.8201198, - "lon": -2.8001128, - "tags": { - "amenity": "post_box", - "mapillary": "204769515802725", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11727048542, - "lat": 50.8178229, - "lon": -2.7982065, - "tags": { - "amenity": "post_box", - "mapillary": "475475143709347", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DT8 80D" - } -}, -{ - "type": "node", - "id": 11727058640, - "lat": 50.8446669, - "lon": -2.7721412, - "tags": { - "amenity": "post_box", - "mapillary": "1202154937323894", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11727670492, - "lat": 52.3981960, - "lon": -1.4809639, - "tags": { - "amenity": "post_box", - "mapillary": "491045938683025", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11727673166, - "lat": 52.7715317, - "lon": -1.6899313, - "tags": { - "amenity": "post_box", - "mapillary": "141402778300454", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11727692513, - "lat": 52.5886595, - "lon": -1.5842027, - "tags": { - "amenity": "post_box", - "mapillary": "371358171130664", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11728032056, - "lat": 51.2307567, - "lon": -2.3274926, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11728033155, - "lat": 51.7631634, - "lon": -3.3432372, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11728043801, - "lat": 51.2323163, - "lon": -2.3097397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11728064093, - "lat": 53.7443156, - "lon": -2.4824537, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11728080097, - "lat": 53.2902116, - "lon": -2.5550582, - "tags": { - "amenity": "post_box", - "ref": "CW9 107D" - } -}, -{ - "type": "node", - "id": 11730219059, - "lat": 50.7997846, - "lon": -3.1788845, - "tags": { - "amenity": "post_box", - "mapillary": "568331484965220", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11730221923, - "lat": 50.7718624, - "lon": -3.2584457, - "tags": { - "amenity": "post_box", - "mapillary": "543027463991913", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11730240307, - "lat": 51.4781423, - "lon": -3.7124495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11730247505, - "lat": 50.9095859, - "lon": -3.4912292, - "tags": { - "amenity": "post_box", - "mapillary": "1048172755743802", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11730696163, - "lat": 51.7508468, - "lon": 0.4422334, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11730696164, - "lat": 51.7537300, - "lon": 0.4466625, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11730893067, - "lat": 51.5405576, - "lon": -0.1354676, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-14", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "colour": "red", - "note": "the left aperture is blocked", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW1 79D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW1 79D" - } -}, -{ - "type": "node", - "id": 11732320055, - "lat": 51.4865557, - "lon": -0.3694078, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11733629714, - "lat": 53.4683764, - "lon": -0.0242579, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/8PmrbGRt/DN36-257-D.jpg", - "location": "Thoresby Road/Fen Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11733818856, - "lat": 53.4675518, - "lon": -0.0476360, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "BESPOKE", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/prYSG3TK/DN36-82D.jpg", - "location": "Station Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DN36 82D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11733888008, - "lat": 50.9439049, - "lon": -2.6290650, - "tags": { - "amenity": "post_box", - "mapillary": "124303930346530", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11733892505, - "lat": 50.9419796, - "lon": -2.6317650, - "tags": { - "amenity": "post_box", - "mapillary": "599742197883392", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11733892511, - "lat": 50.7344136, - "lon": -2.7445494, - "tags": { - "amenity": "post_box", - "mapillary": "5177178632396608", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11733907784, - "lat": 50.7189089, - "lon": -2.7581731, - "tags": { - "amenity": "post_box", - "mapillary": "908595239963458", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11733920145, - "lat": 50.8133671, - "lon": -2.7445848, - "tags": { - "amenity": "post_box", - "mapillary": "200158812406394", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11733923379, - "lat": 50.7830561, - "lon": -2.7298468, - "tags": { - "amenity": "post_box", - "mapillary": "2202370716636461", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11733943286, - "lat": 53.4662612, - "lon": -0.0634845, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 09:00", - "image": "https://i.postimg.cc/PqZxwwY7/DN36-34D.jpg", - "location": "High Street/A16", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 34D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11733983607, - "lat": 53.4646849, - "lon": -0.0534886, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/7LHX9hvY/DN36-216-D.jpg", - "location": "Ludborough Road/Marfleet Corner", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "DN36 216D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11734012810, - "lat": 53.4538538, - "lon": -0.0036746, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "image": "https://i.postimg.cc/8CbPv1MS/LN11-112.jpg", - "location": "Main Street/Northway", - "note": "out-of-use post box still in the wall of the old post office. Marked Post Office, EIIR. Painted black.", - "operator": "none", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11734175160, - "lat": 56.3414492, - "lon": -5.1489128, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11734180069, - "lat": 56.3431220, - "lon": -5.1238629, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11734246901, - "lat": 53.4546827, - "lon": 0.0023094, - "tags": { - "amenity": "post_box", - "image": "https://i.postimg.cc/rmvDC5qr/LN-private-nonumber.jpg", - "location": "Main Street", - "note": "private VR post box for own use, outside Cherry Tree House", - "operator": "none", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11734335347, - "lat": 50.8340524, - "lon": -2.8142156, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?cp=50.834037%7E-2.81435&lvl=20.0&pi=-6.2&style=x&dir=151.5", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11734344611, - "lat": 50.8240037, - "lon": -2.8582443, - "tags": { - "amenity": "post_box", - "mapillary": "3435615216724702", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11734391611, - "lat": 50.8185450, - "lon": -2.8579166, - "tags": { - "amenity": "post_box", - "mapillary": "808269586835799", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11735412290, - "lat": 55.0736005, - "lon": -4.1407976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG7 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11736373501, - "lat": 53.4669791, - "lon": -0.0563257, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP5", - "collection_times": "Mo-Fr 16:15; Sa 12:00", - "image": "https://i.postimg.cc/LXJ8TH6g/DN36-134.jpg", - "location": "The Square/High Street", - "note": "Post Box not in use currently, there is no next day collection tag inserted plus the letter slot has a wooded stopper in place at time of survey", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "DN36 134", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11736433446, - "lat": 53.4758991, - "lon": 0.0420986, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-14", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/SKWrYJBk/DN36-35D.jpg", - "location": "Duckthorpe Lane", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN36 35D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11736992126, - "lat": 52.5052214, - "lon": -1.4838714, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV10 252D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11736992127, - "lat": 52.5131636, - "lon": -1.4801262, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV10 64D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11736992128, - "lat": 52.5141788, - "lon": -1.4725600, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CV10 121D", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11737267832, - "lat": 51.6544056, - "lon": -0.3157617, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11737267839, - "lat": 51.6485245, - "lon": -0.2814576, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11737700642, - "lat": 52.8272662, - "lon": -2.8554238, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11738580504, - "lat": 56.5806504, - "lon": -3.3276819, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2016-06-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 220D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738580506, - "lat": 56.5826579, - "lon": -3.3347856, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2016-06-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 11D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738601090, - "lat": 51.3709934, - "lon": -2.3580587, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA2 225", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11738674485, - "lat": 56.5908263, - "lon": -3.3299738, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH10 177D", - "royal_cypher": "GVIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738708072, - "lat": 56.5918835, - "lon": -3.3376867, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PH10 101", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738711109, - "lat": 56.5983930, - "lon": -3.3349192, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2016-06-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH10 218D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738716503, - "lat": 56.5920355, - "lon": -3.3455896, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH10 144D", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738721700, - "lat": 56.5962973, - "lon": -3.3219700, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH10 105D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11738938156, - "lat": 51.2202619, - "lon": -2.4827519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA3 252", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11738951492, - "lat": 51.2221686, - "lon": -2.5161984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "BA3 3D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11739264419, - "lat": 51.2660676, - "lon": -2.5770356, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BA3 53", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11739450443, - "lat": 55.1976679, - "lon": -6.6565337, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11739751010, - "lat": 53.4705402, - "lon": -2.3019221, - "tags": { - "access": "private", - "amenity": "post_box", - "check_date": "2024-03-10", - "colour": "red", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11739942823, - "lat": 50.4093481, - "lon": -5.0977250, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 100D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942825, - "lat": 50.4086849, - "lon": -5.0861390, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "metal_post", - "post_box:type": "lamp", - "ref": "TR7 118D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942831, - "lat": 50.4067286, - "lon": -5.0845479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 93D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942833, - "lat": 50.4094313, - "lon": -5.0810706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 83D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942852, - "lat": 50.4142410, - "lon": -5.0798221, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30, Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TR7 1", - "royal_cypher": "EIIR", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942925, - "lat": 50.4115553, - "lon": -5.1010182, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 75D", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942931, - "lat": 50.4111897, - "lon": -5.1093478, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR7 20D", - "royal_cypher": "EIIR", - "source": "survey;aerial imagery", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942937, - "lat": 50.4320537, - "lon": -4.9213337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 115D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11739942938, - "lat": 50.4304144, - "lon": -4.9260510, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "TR9 120D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery", - "survey:date": "2024-03-17" - } -}, -{ - "type": "node", - "id": 11741444689, - "lat": 51.5316140, - "lon": -0.1459043, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-03-18", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "NW1 41D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:United Kingdom post box NW1 41D" - } -}, -{ - "type": "node", - "id": 11741673836, - "lat": 50.9580962, - "lon": -2.6273648, - "tags": { - "amenity": "post_box", - "mapillary": "453735360030268", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11741673843, - "lat": 51.0295855, - "lon": -2.5724462, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?cp=51.029593%7E-2.572524&lvl=20.4&pi=9.5&style=x&dir=115.2", - "mapillary": "1537280110375236", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11741697472, - "lat": 50.9516172, - "lon": -2.6358057, - "tags": { - "amenity": "post_box", - "mapillary": "453020233663561", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11743913374, - "lat": 51.3885377, - "lon": -2.4021365, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11744701546, - "lat": 52.3584994, - "lon": -2.2337850, - "tags": { - "amenity": "post_box", - "mapillary": "260115056005204", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11744706510, - "lat": 52.3720188, - "lon": -2.2045476, - "tags": { - "amenity": "post_box", - "mapillary": "156501700471552", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11744746790, - "lat": 52.4216602, - "lon": -2.2162701, - "tags": { - "amenity": "post_box", - "mapillary": "4600546643290978", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11744778339, - "lat": 54.4864724, - "lon": -1.5328701, - "tags": { - "amenity": "post_box", - "mapillary": "1437631177136132", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11744803346, - "lat": 53.7927069, - "lon": -2.5132047, - "tags": { - "amenity": "post_box", - "mapillary": "849558606557802", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11745266779, - "lat": 54.1025004, - "lon": -6.1957594, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11745266780, - "lat": 54.1009837, - "lon": -6.1980043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11745461107, - "lat": 51.3859958, - "lon": -2.3972176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11745790259, - "lat": 51.3843432, - "lon": -2.3936993, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11747707020, - "lat": 53.5575732, - "lon": -0.1162860, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-18", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/G3krG4H2/DN34-269-D.jpg", - "location": "Magdalene Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DN34 269D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11747747162, - "lat": 53.1331499, - "lon": -2.6687963, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Beeston_Castle_%26_Tarporley_railway_station_(site),_Cheshire_(geograph_7179633).jpg", - "mapillary": "7092357960875495", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11747828953, - "lat": 53.5975907, - "lon": -2.5595717, - "tags": { - "amenity": "post_box", - "mapillary": "419234304113885", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11747853205, - "lat": 53.7398374, - "lon": -2.5014671, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1967601266974795", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11747856666, - "lat": 53.9540554, - "lon": -2.0996471, - "tags": { - "amenity": "post_box", - "mapillary": "284340084414219", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11747925544, - "lat": 53.4522889, - "lon": -0.1290411, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-18", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/C5Yby100/LN8-396D.jpg", - "location": "Wold Newton", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN8 396D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11747967467, - "lat": 52.6297338, - "lon": 0.7533386, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2023-07-13", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE37 327D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11748138852, - "lat": 53.5340994, - "lon": -0.0217688, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-18", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/85Vqpgw1/DN36-46D.jpg", - "location": "Fieldhouse Road", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "DN36 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11748328383, - "lat": 54.3202277, - "lon": -5.7001738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11748747995, - "lat": 53.2759160, - "lon": -2.5447968, - "tags": { - "amenity": "post_box", - "ref": "CW8 58D" - } -}, -{ - "type": "node", - "id": 11748748481, - "lat": 53.2723381, - "lon": -2.5451361, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "CW8 42D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11749940346, - "lat": 51.7442606, - "lon": -3.2789935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "905252063446947", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11749979845, - "lat": 51.7648620, - "lon": -3.3717797, - "tags": { - "amenity": "post_box", - "mapillary": "765640224118545", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11750857147, - "lat": 56.6125705, - "lon": -3.2345808, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. Ltd. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH11 93D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11750941916, - "lat": 56.6220865, - "lon": -3.2298471, - "tags": { - "amenity": "post_box", - "collection_plate": "SWN", - "collection_plate:date": "2017-08-16", - "collection_times": "Mo-Fr 16:45; Sa 12:00", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH11 181", - "royal_cypher": "no", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11750948128, - "lat": 56.6221400, - "lon": -3.2252186, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 213D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751020017, - "lat": 56.6252047, - "lon": -3.2341426, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 87D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751042999, - "lat": 56.6243984, - "lon": -3.2312296, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Smith & Hawkes, Birmingham", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH11 95D", - "royal_cypher": "VR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751103514, - "lat": 56.6258483, - "lon": -3.2276901, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2016-07-20", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH11 282D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751105684, - "lat": 56.6698146, - "lon": -3.2333795, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 17D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751145811, - "lat": 56.6805334, - "lon": -3.2511033, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 177D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751171517, - "lat": 56.7040974, - "lon": -3.2271659, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH11 243D", - "royal_cypher": "EVIIR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751193945, - "lat": 56.7227932, - "lon": -3.2592605, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 158D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751244795, - "lat": 56.7292252, - "lon": -3.2771580, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PH11 237D", - "royal_cypher": "GR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751262698, - "lat": 56.7294378, - "lon": -3.2841630, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 8D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751293021, - "lat": 56.7379062, - "lon": -3.3138399, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-09", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Abbot Engineering", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH11 212D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11751632496, - "lat": 51.5198702, - "lon": 0.5672004, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11752480482, - "lat": 51.1321179, - "lon": -2.4773236, - "tags": { - "amenity": "post_box", - "mapillary": "404593991404730", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11752487517, - "lat": 50.7319585, - "lon": -2.8149973, - "tags": { - "amenity": "post_box", - "mapillary": "793752835130193", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11752487871, - "lat": 52.3719722, - "lon": -2.2439190, - "tags": { - "amenity": "post_box", - "mapillary": "156854656608569", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11753230763, - "lat": 51.1988857, - "lon": -2.2388425, - "tags": { - "amenity": "post_box", - "mapillary": "491221021993900", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11753262027, - "lat": 51.7373033, - "lon": -3.4585432, - "tags": { - "amenity": "post_box", - "mapillary": "141263047939980", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11753276659, - "lat": 54.3082507, - "lon": -1.8241493, - "tags": { - "amenity": "post_box", - "mapillary": "495662361885455", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11753278652, - "lat": 51.7599862, - "lon": -3.5222264, - "tags": { - "amenity": "post_box", - "mapillary": "335091298922600", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11753281013, - "lat": 54.8910162, - "lon": -1.9396853, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Elizabeth_II_postbox,_Kiln_Pit_Hill_-_geograph.org.uk_-_4982777.jpg", - "mapillary": "642957444287493", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11753403856, - "lat": 55.9417135, - "lon": -4.3094905, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-04-04", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G62 444D", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11753438645, - "lat": 55.9764899, - "lon": -3.9629888, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Falkirk", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G68 1453D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11753449644, - "lat": 55.9787190, - "lon": -3.9493659, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "G68 11D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11753490739, - "lat": 55.9702116, - "lon": -3.9576564, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2022-09-21", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G67 1452D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11753492584, - "lat": 56.3661239, - "lon": -3.9843663, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-02-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH6 31D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11753546917, - "lat": 56.3695527, - "lon": -3.9838718, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PH6 19D", - "royal_cypher": "VR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11753550184, - "lat": 56.3723546, - "lon": -3.9825754, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PH6 68D", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11753587169, - "lat": 56.3742524, - "lon": -3.9971691, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH6 8D", - "royal_cypher": "VR", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11754528967, - "lat": 55.9554726, - "lon": -4.5632300, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11755463550, - "lat": 53.9194116, - "lon": -2.1875812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11755463568, - "lat": 53.9222618, - "lon": -2.1830266, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11755636702, - "lat": 54.9740777, - "lon": -5.0810809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG9 26", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11756707422, - "lat": 52.8379566, - "lon": -0.1443455, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE11 69" - } -}, -{ - "type": "node", - "id": 11756932181, - "lat": 50.9944508, - "lon": -4.5152145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 97D", - "royal_cypher": "EVIIR", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 11756932183, - "lat": 50.9771808, - "lon": -4.5136313, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 113D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 11756932184, - "lat": 50.9688779, - "lon": -4.5201576, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 47D", - "royal_cypher": "EVIIR", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 11756932185, - "lat": 50.9576787, - "lon": -4.5160230, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 112D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 11756932186, - "lat": 50.9516607, - "lon": -4.5341706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 138D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 11756932187, - "lat": 50.9365292, - "lon": -4.4968878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 143D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-23" - } -}, -{ - "type": "node", - "id": 11758464640, - "lat": 53.4889336, - "lon": -0.8660813, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-22", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "image": "https://i.postimg.cc/3NY472Fw/DN9-363.jpg", - "location": "Brethergate (outside the Old Post Office)", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN9 363", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11759340394, - "lat": 52.7055134, - "lon": -2.8003813, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11759361085, - "lat": 54.9059935, - "lon": -5.0395221, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG9 13", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11759361120, - "lat": 54.8995784, - "lon": -5.0317953, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG9 12", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11759361121, - "lat": 54.9018490, - "lon": -5.0307102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "DG9 22", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11760474638, - "lat": 53.1489863, - "lon": -1.1793444, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11760529732, - "lat": 50.9118571, - "lon": -4.4825964, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?cp=50.911817%7E-4.482634&lvl=21.4&pi=-9.5&style=x&dir=40.5", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11760532050, - "lat": 50.8106985, - "lon": -4.4962196, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "442245308230142", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX23 137" - } -}, -{ - "type": "node", - "id": 11760758325, - "lat": 51.8894109, - "lon": 1.1091812, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11761487295, - "lat": 56.8191666, - "lon": -5.1092729, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP15", - "collection_times": "Mo-Fr 17:00; Sa 14:00", - "operator": "Royal Mail", - "post_box:type": "indoor_box", - "ref": "PH33 1112", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11761601888, - "lat": 51.6923654, - "lon": -0.1793295, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11762510080, - "lat": 51.3103001, - "lon": -2.5827497, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "BS39 9D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11763160256, - "lat": 53.1711862, - "lon": -1.1965652, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11763357552, - "lat": 56.6406353, - "lon": -2.8889646, - "tags": { - "amenity": "post_box", - "mapillary": "538754597804531", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11763405037, - "lat": 51.2509781, - "lon": -2.3065286, - "tags": { - "amenity": "post_box", - "mapillary": "316650840952287", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11764267158, - "lat": 50.8345058, - "lon": -4.5435045, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?cp=50.834342%7E-4.543294&lvl=19.0&pi=0.6&style=x&dir=315.3", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11764379817, - "lat": 53.8068498, - "lon": -1.6786967, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "LS28 688D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11764587570, - "lat": 55.8513267, - "lon": -4.1052295, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "G69 1490", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11765968346, - "lat": 52.0576658, - "lon": -2.1411414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "WR8 344D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11765983889, - "lat": 53.6147099, - "lon": -1.8143259, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11766604975, - "lat": 52.4935471, - "lon": -2.1462680, - "tags": { - "amenity": "post_box", - "mapillary": "306920688509676", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11766616152, - "lat": 52.4898271, - "lon": -2.1423161, - "tags": { - "amenity": "post_box", - "image": "https://www.bing.com/maps?cp=52.489905%7E-2.1425&lvl=20.4&pi=1.3&style=x&dir=162.2", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11766681915, - "lat": 53.5081405, - "lon": -1.0346306, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "DN3 48" - } -}, -{ - "type": "node", - "id": 11767426162, - "lat": 55.7798045, - "lon": -3.9022232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML2 62", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11767426166, - "lat": 55.7781641, - "lon": -3.8992520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "ML2 42" - } -}, -{ - "type": "node", - "id": 11767594250, - "lat": 55.0531830, - "lon": -3.2117596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 23", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11767624787, - "lat": 51.6055583, - "lon": -0.5682070, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11768777206, - "lat": 55.7987030, - "lon": -4.0866666, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11772013395, - "lat": 53.4128287, - "lon": -2.1923723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SK4 100D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11772184850, - "lat": 55.3457806, - "lon": -4.6182476, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "KA19 109", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11772278997, - "lat": 55.9457282, - "lon": -4.3053401, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11772307912, - "lat": 55.9459349, - "lon": -4.3372229, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11772310752, - "lat": 55.9505053, - "lon": -4.3550306, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11772316185, - "lat": 55.9333183, - "lon": -4.2680496, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11772321049, - "lat": 55.9466253, - "lon": -4.3326871, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11772332674, - "lat": 55.9448162, - "lon": -4.3428418, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11772344371, - "lat": 55.9413219, - "lon": -4.3353589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11772508695, - "lat": 55.3317779, - "lon": -4.7702350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "KA19 135", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11772637054, - "lat": 51.1417562, - "lon": -2.7086108, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "ref": "BA6 311D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11772693390, - "lat": 55.3546385, - "lon": -4.6806680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "ref": "KA19 9" - } -}, -{ - "type": "node", - "id": 11772693391, - "lat": 55.3534270, - "lon": -4.6828499, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA19 66", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11772693393, - "lat": 55.3546319, - "lon": -4.6852299, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "KA19 64", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11773915166, - "lat": 56.0357177, - "lon": -3.8307685, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "type_n", - "post_box:type": "lamp", - "ref": "FK5 66D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11774400838, - "lat": 51.0036144, - "lon": -4.4851903, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 115D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 11774400840, - "lat": 50.9969759, - "lon": -4.4789189, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "EX39 140D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-30", - "waste": "dog_excrement" - } -}, -{ - "type": "node", - "id": 11774400846, - "lat": 50.9922042, - "lon": -4.4800217, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:15, Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 118", - "royal_cypher": "GR", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 11774400851, - "lat": 50.9926307, - "lon": -4.4831100, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX39 109D", - "royal_cypher": "GR", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 11774400856, - "lat": 50.9747748, - "lon": -4.4840820, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EX39 110D", - "royal_cypher": "GVIR", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 11774400857, - "lat": 50.9751902, - "lon": -4.4460980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX39 154D", - "royal_cypher": "EIIR", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 11774400858, - "lat": 50.9472030, - "lon": -4.4636021, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "GR", - "survey:date": "2024-03-30" - } -}, -{ - "type": "node", - "id": 11774450104, - "lat": 52.3479726, - "lon": 0.4640222, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "IP28 2168" - } -}, -{ - "type": "node", - "id": 11774453644, - "lat": 52.3579702, - "lon": 0.4574360, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2180" - } -}, -{ - "type": "node", - "id": 11774453692, - "lat": 52.3662308, - "lon": 0.4564442, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2192" - } -}, -{ - "type": "node", - "id": 11774453763, - "lat": 52.3955342, - "lon": 0.4434114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP28 2170", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11775275874, - "lat": 51.1512978, - "lon": -1.8591419, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP3 343D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11775613011, - "lat": 51.6831296, - "lon": -0.4931554, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "WD3 239", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11776167117, - "lat": 57.6792749, - "lon": -2.3241479, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 12:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB45 48", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11778199435, - "lat": 50.6098706, - "lon": -1.9937346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11778658552, - "lat": 52.5198943, - "lon": -2.0738886, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11778688563, - "lat": 55.9708911, - "lon": -3.9623828, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11778731393, - "lat": 55.9636785, - "lon": -3.9854522, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11778745173, - "lat": 55.9438346, - "lon": -4.3308200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00,16:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G62 1325", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11778745182, - "lat": 55.9416893, - "lon": -4.3301183, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11778747254, - "lat": 55.9488692, - "lon": -4.3273413, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11778749415, - "lat": 55.9516063, - "lon": -4.0036485, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11778776043, - "lat": 55.9644691, - "lon": -3.9945240, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11778782537, - "lat": 55.9470902, - "lon": -4.0283535, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11778796378, - "lat": 55.9684735, - "lon": -4.0093951, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11779152254, - "lat": 54.6814876, - "lon": -1.2095870, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:00", - "name": "Parcel Postbox", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS24 300P" - } -}, -{ - "type": "node", - "id": 11779179869, - "lat": 54.6814594, - "lon": -1.2095835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS24 3" - } -}, -{ - "type": "node", - "id": 11780267866, - "lat": 50.6872034, - "lon": -4.3217096, - "tags": { - "amenity": "post_box", - "mapillary": "1519820942245176", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11780323540, - "lat": 50.6494581, - "lon": -4.3491217, - "tags": { - "amenity": "post_box", - "mapillary": "915851580027816", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11780924024, - "lat": 51.5659769, - "lon": -0.7723941, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11781654645, - "lat": 51.3931039, - "lon": -2.3740143, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-30", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "post_box:type": "wall", - "ref": "BA1 139D", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11782985807, - "lat": 51.3101849, - "lon": -2.8001256, - "tags": { - "amenity": "post_box", - "mapillary": "2869378683302198", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11783012971, - "lat": 50.9424109, - "lon": -2.6099782, - "tags": { - "amenity": "post_box", - "mapillary": "341928508424899", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11783015022, - "lat": 51.3364971, - "lon": -2.1200545, - "tags": { - "amenity": "post_box", - "mapillary": "968697550966999", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11783518608, - "lat": 52.0051506, - "lon": -2.7385359, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11784544325, - "lat": 50.4102214, - "lon": -4.1145792, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "834476427435696", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL6 36D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-03" - } -}, -{ - "type": "node", - "id": 11784660800, - "lat": 54.2740025, - "lon": -5.7937466, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11784678071, - "lat": 51.7964067, - "lon": -2.6198756, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11784703474, - "lat": 53.1471596, - "lon": -1.1999814, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11784703475, - "lat": 53.1471561, - "lon": -1.1999930, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11785308500, - "lat": 51.5544209, - "lon": -0.6122735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 80" - } -}, -{ - "type": "node", - "id": 11786552709, - "lat": 52.7678888, - "lon": -0.3825635, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE10 203" - } -}, -{ - "type": "node", - "id": 11787105365, - "lat": 54.3879792, - "lon": -1.6145290, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Village_Pump,_Bolton-on-Swale.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11787118360, - "lat": 53.5324023, - "lon": -0.5773279, - "tags": { - "amenity": "post_box", - "mapillary": "1045657209454069", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11787146162, - "lat": 51.4228068, - "lon": 0.0934036, - "tags": { - "amenity": "post_box", - "mapillary": "451883283051664", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11787375283, - "lat": 51.5614204, - "lon": -0.6092168, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 242" - } -}, -{ - "type": "node", - "id": 11787375297, - "lat": 51.5642851, - "lon": -0.6134074, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 25" - } -}, -{ - "type": "node", - "id": 11787375314, - "lat": 51.5676693, - "lon": -0.6047218, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 212" - } -}, -{ - "type": "node", - "id": 11787375321, - "lat": 51.5592632, - "lon": -0.6070783, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 49" - } -}, -{ - "type": "node", - "id": 11789178944, - "lat": 51.5362449, - "lon": -0.5891815, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11789179273, - "lat": 51.5374477, - "lon": -0.6179902, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11789179274, - "lat": 51.5431482, - "lon": -0.5975689, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11794225837, - "lat": 53.0504302, - "lon": -2.2567637, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11794225854, - "lat": 53.0434658, - "lon": -2.2521977, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11795102250, - "lat": 53.7155540, - "lon": -2.0971163, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "OL14 147D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11795448167, - "lat": 53.3547249, - "lon": 0.2516661, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "ref": "LN12 887D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11795448168, - "lat": 53.3558599, - "lon": 0.2490852, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "ref": "LN12 891D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11795500195, - "lat": 53.2191800, - "lon": -2.5573036, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW8 129D" - } -}, -{ - "type": "node", - "id": 11795576174, - "lat": 50.4300706, - "lon": -4.3099222, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 571D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 11795838497, - "lat": 51.5612873, - "lon": -0.5605650, - "tags": { - "amenity": "post_box", - "colour": "gold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SL3 127", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11795838498, - "lat": 51.5578853, - "lon": -0.5653600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL3 153", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11796020180, - "lat": 50.4613549, - "lon": -4.2713989, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL12 750D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-06" - } -}, -{ - "type": "node", - "id": 11796223023, - "lat": 51.5440015, - "lon": -0.1545925, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-06", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW3 86D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW3 86D" - } -}, -{ - "type": "node", - "id": 11796226702, - "lat": 55.7711246, - "lon": -4.0452111, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML3 11" - } -}, -{ - "type": "node", - "id": 11796226709, - "lat": 55.7742128, - "lon": -4.0374662, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "ML3 1111" - } -}, -{ - "type": "node", - "id": 11798755414, - "lat": 51.5692517, - "lon": -0.6537264, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SL1 134", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11799650818, - "lat": 53.4058164, - "lon": 0.1972698, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11800132310, - "lat": 51.5509613, - "lon": -0.6116671, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "SL2 75", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11800132311, - "lat": 51.5467936, - "lon": -0.6152083, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 20", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11800132318, - "lat": 51.5477631, - "lon": -0.6270758, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11800132319, - "lat": 51.5509565, - "lon": -0.6181393, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 164" - } -}, -{ - "type": "node", - "id": 11800132324, - "lat": 51.5511086, - "lon": -0.6375056, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SL2 26" - } -}, -{ - "type": "node", - "id": 11800269041, - "lat": 51.4877450, - "lon": -0.2489077, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W4 32D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11800459037, - "lat": 51.1025170, - "lon": -0.3376993, - "tags": { - "amenity": "post_box", - "source": "Photo for Wheelmap survey 2023-03", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 11800594308, - "lat": 52.5172547, - "lon": -2.0592319, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11800622141, - "lat": 51.5570986, - "lon": -0.1349740, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "N19 26D" - } -}, -{ - "type": "node", - "id": 11800628225, - "lat": 53.7114757, - "lon": -2.0955147, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11801610740, - "lat": 55.8698172, - "lon": -4.2140944, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "ref is something like 623 60, but can't make it out on picture", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11801943826, - "lat": 53.0994451, - "lon": 0.2244639, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE24 73" - } -}, -{ - "type": "node", - "id": 11803316348, - "lat": 57.5396360, - "lon": -3.5990766, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11803535974, - "lat": 50.5272038, - "lon": -4.6799275, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11803543878, - "lat": 50.5546678, - "lon": -4.7310947, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11805242374, - "lat": 51.4813252, - "lon": -0.1388047, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SW11 80D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11805499084, - "lat": 53.4668063, - "lon": -2.1575789, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "M18 526D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11806866413, - "lat": 56.1907641, - "lon": -3.9751408, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "FK15 112D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11807177720, - "lat": 56.1855470, - "lon": -3.9767236, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "FK15 55", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11809230316, - "lat": 52.1029948, - "lon": -2.7800693, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11809346645, - "lat": 52.0955984, - "lon": -2.7710984, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11810039931, - "lat": 56.1864776, - "lon": -3.9712043, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "FK15 102D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11810203920, - "lat": 52.0588233, - "lon": -2.6094926, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11811222682, - "lat": 51.6488904, - "lon": -0.1183116, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "location": "Merryhills Drive", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "EN2 58" - } -}, -{ - "type": "node", - "id": 11811491167, - "lat": 56.1845504, - "lon": -3.9681180, - "tags": { - "amenity": "post_box", - "material": "metal", - "post_box:type": "pillar", - "ref": "FK15 169D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11812185880, - "lat": 54.2004135, - "lon": -6.3543232, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11812291315, - "lat": 54.2143794, - "lon": -5.8926809, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BT33 66D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11813603391, - "lat": 53.4695073, - "lon": -2.1590164, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M18 781D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11813667669, - "lat": 51.5832812, - "lon": -3.0097696, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "indoor": "no", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11813834720, - "lat": 51.5153483, - "lon": -0.1019796, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1-NS", - "collection_times": "Mo-Fr 17:00", - "colour": "red", - "manufacturer:wikidata": "Q106782536", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EC4M 405", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box EC4M 405" - } -}, -{ - "type": "node", - "id": 11813867871, - "lat": 51.5153259, - "lon": -0.1019814, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP1-NS", - "collection_times": "Mo-Fr 17:00", - "colour": "red", - "manufacturer:wikidata": "Q106782536", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "EC4M 4051", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box EC4M 4051" - } -}, -{ - "type": "node", - "id": 11814467764, - "lat": 50.3474868, - "lon": -4.7276565, - "tags": { - "amenity": "post_box", - "ref": "PL24 143D", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11814782904, - "lat": 51.5670583, - "lon": -0.1383524, - "tags": { - "amenity": "post_box", - "ref": "N19 38" - } -}, -{ - "type": "node", - "id": 11815082681, - "lat": 51.5602773, - "lon": -0.1410502, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-13", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q125465789", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "NW5 33D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "wikimedia_commons": "Category:United Kingdom post box NW5 33D" - } -}, -{ - "type": "node", - "id": 11815329965, - "lat": 51.5826735, - "lon": -3.0043613, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11815502849, - "lat": 55.0596279, - "lon": -3.2650678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 98", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11815622003, - "lat": 50.3416241, - "lon": -4.7593582, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 13:00", - "description": "Parcels and Franked Mail", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "PL25 222P", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622005, - "lat": 50.3416517, - "lon": -4.7677186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 112D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622010, - "lat": 50.3438030, - "lon": -4.7690013, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "rendered_pillar", - "post_box:type": "wall", - "ref": "PL25 195D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622013, - "lat": 50.3493462, - "lon": -4.7701930, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 56D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622015, - "lat": 50.3491901, - "lon": -4.7659746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 186D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622020, - "lat": 50.3468149, - "lon": -4.7629057, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "renedered_pillar", - "post_box:type": "wall", - "ref": "PL25 106D", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622029, - "lat": 50.3453761, - "lon": -4.7616779, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 230D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622030, - "lat": 50.3454253, - "lon": -4.7577781, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PL25 240D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11815622036, - "lat": 50.3512017, - "lon": -4.7207156, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "PL24 199D", - "royal_cypher": "GVIR", - "survey:date": "2024-04-13" - } -}, -{ - "type": "node", - "id": 11816377503, - "lat": 53.0928848, - "lon": -2.2993472, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 108D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11816869054, - "lat": 51.5827157, - "lon": -3.0027177, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11816889169, - "lat": 51.5862289, - "lon": -3.0134217, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11818033878, - "lat": 52.0112349, - "lon": 0.7501481, - "tags": { - "amenity": "post_box", - "fixme": "Check precise location", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11819959164, - "lat": 51.1801533, - "lon": -3.0023386, - "tags": { - "amenity": "post_box", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11820059138, - "lat": 55.0795427, - "lon": -3.3423931, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG11 87", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11820204549, - "lat": 57.8926536, - "lon": -4.3465823, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11821147738, - "lat": 53.0965629, - "lon": -2.3023594, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 7715", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11821165114, - "lat": 53.0965593, - "lon": -2.3023740, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 715", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11821234361, - "lat": 52.0526949, - "lon": -2.5043701, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11821260959, - "lat": 53.1022970, - "lon": -2.3058844, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 118D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11821297370, - "lat": 52.1294444, - "lon": -2.7426745, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11821419578, - "lat": 55.7913844, - "lon": -2.0888903, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 17D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 11821853392, - "lat": 51.5845912, - "lon": -3.0221796, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11822435562, - "lat": 55.7381182, - "lon": -2.1640722, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CPRD", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "postal_code": "TD15", - "ref": "TD15 16D", - "royal_cypher": "VR", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 11822435563, - "lat": 55.7109079, - "lon": -2.1824484, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 73D", - "royal_cypher": "EIIR", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 11822464165, - "lat": 55.7770180, - "lon": -2.1481581, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "postal_code": "TD15", - "ref": "TD15 57D", - "royal_cypher": "scottish_crown", - "source": "survey", - "survey:date": "2024-04-16" - } -}, -{ - "type": "node", - "id": 11822903837, - "lat": 51.5905008, - "lon": -3.0067259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11822903844, - "lat": 51.5904716, - "lon": -3.0144498, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11822912818, - "lat": 54.9619840, - "lon": -1.6700706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:15; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "NE11 179" - } -}, -{ - "type": "node", - "id": 11823091504, - "lat": 55.2069115, - "lon": -3.3052667, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DG11 14", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11823989622, - "lat": 53.7947374, - "lon": -1.4292413, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "LS15 45", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11824351897, - "lat": 51.3404064, - "lon": -0.5886727, - "tags": { - "amenity": "post_box", - "mapillary": "318402022972735", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11824386904, - "lat": 51.5843862, - "lon": -3.0276374, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11824847508, - "lat": 54.4099396, - "lon": -5.6629172, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11824879497, - "lat": 51.5180292, - "lon": -0.2659813, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 5D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356" - } -}, -{ - "type": "node", - "id": 11824879498, - "lat": 51.5220740, - "lon": -0.2735303, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "W3 30D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11824879499, - "lat": 51.5184673, - "lon": -0.2598350, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "W3 68D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11825248109, - "lat": 52.5238791, - "lon": -2.0569754, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11828368158, - "lat": 51.9146132, - "lon": 1.0863306, - "tags": { - "amenity": "post_box", - "mapillary": "1308495716716758", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11829350535, - "lat": 56.4993997, - "lon": -2.7538497, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Glasgow", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "DD7 222D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829359879, - "lat": 56.5048431, - "lon": -2.7065038, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD7 167D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829360639, - "lat": 56.5022463, - "lon": -2.7032343, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 111D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829366663, - "lat": 56.5060967, - "lon": -2.7206663, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 120D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829366720, - "lat": 56.5046963, - "lon": -2.7005711, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 114D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829371693, - "lat": 56.5089795, - "lon": -2.7072236, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 116D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829389638, - "lat": 56.5257506, - "lon": -2.7113508, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 245D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11829446133, - "lat": 51.4253015, - "lon": -0.5121506, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11829484679, - "lat": 51.4245918, - "lon": -0.8450332, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11829832344, - "lat": 54.9750796, - "lon": -1.6120966, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "NE1 4" - } -}, -{ - "type": "node", - "id": 11829956257, - "lat": 54.9676675, - "lon": -1.6152345, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "NE1 501", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11830007588, - "lat": 51.4875817, - "lon": -0.1420834, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:45, Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SW1V 204", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11831909630, - "lat": 55.1201966, - "lon": -3.3557519, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "DG11 31" - } -}, -{ - "type": "node", - "id": 11832575096, - "lat": 53.4661280, - "lon": -2.1640842, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "M18 521D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11832575097, - "lat": 53.4684323, - "lon": -2.1710530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "M18 529D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11832575098, - "lat": 53.4680652, - "lon": -2.1656179, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11832575099, - "lat": 53.4632975, - "lon": -2.1713414, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M18 532", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11832873114, - "lat": 53.4578964, - "lon": -2.1551385, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M18 544D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11832887815, - "lat": 53.4604034, - "lon": -2.1709152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11833339376, - "lat": 54.6696403, - "lon": -1.2194177, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "TS25 44D" - } -}, -{ - "type": "node", - "id": 11833751832, - "lat": 51.4968853, - "lon": -3.1486175, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11834053293, - "lat": 50.9864463, - "lon": -4.3424555, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX39 18D", - "royal_cypher": "VR", - "survey:date": "2024-04-20" - } -}, -{ - "type": "node", - "id": 11834053299, - "lat": 50.9989273, - "lon": -4.4028822, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "EX39 149D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-20" - } -}, -{ - "type": "node", - "id": 11835181638, - "lat": 51.5465841, - "lon": -1.1365374, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG8 278D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11835181639, - "lat": 51.5383984, - "lon": -1.1342063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG8 389D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11835197451, - "lat": 51.5258762, - "lon": -1.1367770, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "RG8 310D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11835741961, - "lat": 51.5430739, - "lon": -0.5753258, - "tags": { - "amenity": "post_box", - "ref": "SL2 295" - } -}, -{ - "type": "node", - "id": 11835741963, - "lat": 51.5447181, - "lon": -0.5713608, - "tags": { - "amenity": "post_box", - "ref": "SL3 22" - } -}, -{ - "type": "node", - "id": 11835861619, - "lat": 51.5716516, - "lon": -1.7769397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN2", - "ref": "SN2 89", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11835861620, - "lat": 51.5716587, - "lon": -1.7769403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "postal_code": "SN2", - "ref": "SN2 890", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11836737724, - "lat": 52.0298163, - "lon": -2.3496017, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "HR8 303D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11837519282, - "lat": 54.5998977, - "lon": -7.3039748, - "tags": { - "amenity": "post_box", - "mapillary": "636849575265195", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11837537691, - "lat": 54.6002451, - "lon": -7.2998849, - "tags": { - "amenity": "post_box", - "mapillary": "795619419113418", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11837542189, - "lat": 54.6025280, - "lon": -7.3079084, - "tags": { - "amenity": "post_box", - "mapillary": "1004527751095692", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11837567134, - "lat": 51.9503164, - "lon": 0.9959725, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "image": "https://commons.wikimedia.org/wiki/File:Castle_Hill_Postbox_-_geograph.org.uk_-_4740711.jpg", - "mapillary": "1799679843866122", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "CO7 94D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11837654249, - "lat": 50.7689122, - "lon": -4.2049752, - "tags": { - "amenity": "post_box", - "mapillary": "1191050325592107", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11837687363, - "lat": 50.7797687, - "lon": -4.2161283, - "tags": { - "amenity": "post_box", - "mapillary": "1775168449643097", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11838366869, - "lat": 53.1001272, - "lon": -2.3091186, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "ST7 627D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504116, - "lat": 51.0662956, - "lon": 0.6810053, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 179", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504117, - "lat": 51.0629184, - "lon": 0.5573553, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 311", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504118, - "lat": 51.0169383, - "lon": 0.7637968, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 213", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504119, - "lat": 51.0612440, - "lon": 0.7168474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 180", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504120, - "lat": 51.0150730, - "lon": 0.7060587, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 249", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504121, - "lat": 51.0678381, - "lon": 0.5780085, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 10:45; Su off", - "colour": "red", - "ref": "TN17 151", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504122, - "lat": 51.0137625, - "lon": 0.7261492, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 245", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504123, - "lat": 51.0711356, - "lon": 0.5659209, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 172", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504124, - "lat": 51.0459261, - "lon": 0.5801833, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 205", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504125, - "lat": 51.0277062, - "lon": 0.7277698, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "post_box:type": "lamp", - "ref": "TN30 111", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504126, - "lat": 51.0801009, - "lon": 0.5773409, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 158", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11838504127, - "lat": 51.0732690, - "lon": 0.5503071, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN17 190", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11839134772, - "lat": 52.9378009, - "lon": -2.1876045, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11839219018, - "lat": 51.0476621, - "lon": 0.6972022, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 178", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11839240408, - "lat": 51.0225869, - "lon": 0.6928826, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 246", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11839306578, - "lat": 51.0085851, - "lon": 0.7618812, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "colour": "red", - "ref": "TN30 18", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11839326150, - "lat": 51.0911640, - "lon": 0.6901049, - "tags": { - "amenity": "post_box", - "colour": "red", - "ref": "TN30 262", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11840719306, - "lat": 54.6069403, - "lon": -7.3000372, - "tags": { - "amenity": "post_box", - "mapillary": "453839877312325", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11840748278, - "lat": 54.6074133, - "lon": -7.3202383, - "tags": { - "amenity": "post_box", - "mapillary": "1185673169260377", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11840753920, - "lat": 53.6267929, - "lon": -1.8828226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11840754468, - "lat": 54.6028713, - "lon": -7.3014432, - "tags": { - "amenity": "post_box", - "mapillary": "1524698958174998", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11840762238, - "lat": 51.8569148, - "lon": 0.9481649, - "tags": { - "amenity": "post_box", - "mapillary": "1188321842546229", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11840785070, - "lat": 51.7981110, - "lon": 0.9905814, - "tags": { - "amenity": "post_box", - "mapillary": "360848546729728", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11842251885, - "lat": 53.1540581, - "lon": 0.3447327, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11842936945, - "lat": 53.0876040, - "lon": -2.2402572, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "ST7 128D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11843326918, - "lat": 50.9420005, - "lon": -2.5200964, - "tags": { - "amenity": "post_box", - "mapillary": "683782913382442", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11844575636, - "lat": 54.0648346, - "lon": -6.4982185, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11845081225, - "lat": 51.5448313, - "lon": -1.8728916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SN4 154", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11845780401, - "lat": 51.4531493, - "lon": -0.1024403, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-04-24", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "wall", - "ref": "SE24 18", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey", - "wikimedia_commons": "Category:United Kingdom post box SE24 18" - } -}, -{ - "type": "node", - "id": 11846534040, - "lat": 52.1867736, - "lon": -2.5019332, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11847068224, - "lat": 52.2707177, - "lon": -2.6464439, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11850728593, - "lat": 54.8446099, - "lon": -3.2901972, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "918258840070533", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CA7 128", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11851143877, - "lat": 53.4826187, - "lon": -2.2452912, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 18:30; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "M2 3", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11851269022, - "lat": 51.7249351, - "lon": -1.9661590, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GL7 141D" - } -}, -{ - "type": "node", - "id": 11851269031, - "lat": 51.7242308, - "lon": -1.9706916, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GL7 108D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11853861142, - "lat": 52.0602694, - "lon": -2.7101700, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11853861143, - "lat": 52.0602645, - "lon": -2.7101966, - "tags": { - "amenity": "post_box", - "name": "Parcel Box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11854204780, - "lat": 53.1713670, - "lon": -3.1376407, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH7 10D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11854233439, - "lat": 53.1674099, - "lon": -3.1399700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CH7 995D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11854291219, - "lat": 53.1685523, - "lon": -3.1432435, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "CH7 1D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11860314472, - "lat": 51.5072470, - "lon": -1.9602348, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN15 306" - } -}, -{ - "type": "node", - "id": 11860320990, - "lat": 56.1900410, - "lon": -3.9481659, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK15 70D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11860554716, - "lat": 51.5051419, - "lon": -1.9581176, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN15 4" - } -}, -{ - "type": "node", - "id": 11861651392, - "lat": 53.5373076, - "lon": -2.1929713, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11863337698, - "lat": 51.0226381, - "lon": -4.2446694, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EX39 37D", - "royal_cypher": "EVIIR", - "survey:date": "2024-04-28" - } -}, -{ - "type": "node", - "id": 11863337706, - "lat": 50.9955394, - "lon": -4.2757125, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "EX39 127D", - "royal_cypher": "EIIR", - "survey:date": "2024-04-28" - } -}, -{ - "type": "node", - "id": 11863337715, - "lat": 50.9844894, - "lon": -4.3166249, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EX39 73D", - "royal_cypher": "GR", - "survey:date": "2024-04-28" - } -}, -{ - "type": "node", - "id": 11865748293, - "lat": 50.6869274, - "lon": -4.3698078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "1173764620479522", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11865754872, - "lat": 50.6706487, - "lon": -4.3476376, - "tags": { - "amenity": "post_box", - "mapillary": "1719064245167445", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11865775073, - "lat": 53.9851484, - "lon": -1.1488461, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:00", - "ref": "YO26 200", - "royal_cypher": "GVIR", - "survey:date": "2024-04-29" - } -}, -{ - "type": "node", - "id": 11866024994, - "lat": 57.1209106, - "lon": -2.1372063, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB10 183D", - "royal_cypher": "EVIIR", - "survey:date": "2024-04-29" - } -}, -{ - "type": "node", - "id": 11866217888, - "lat": 57.1225705, - "lon": -2.1440302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "AB10 503D", - "royal_cypher": "scottish_crown", - "survey:date": "2024-04-29", - "waste": "dog_excrement" - } -}, -{ - "type": "node", - "id": 11866423423, - "lat": 53.0923129, - "lon": -2.4560408, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "CW2 131D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11869214357, - "lat": 52.1033838, - "lon": 0.6688319, - "tags": { - "amenity": "post_box", - "mapillary": "403622762572298", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11869238767, - "lat": 51.8959735, - "lon": 0.9188032, - "tags": { - "amenity": "post_box", - "mapillary": "1675286653279086", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11869260447, - "lat": 52.0872752, - "lon": 0.6360184, - "tags": { - "amenity": "post_box", - "mapillary": "775665407878880", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11869276019, - "lat": 52.0153633, - "lon": 0.5639863, - "tags": { - "amenity": "post_box", - "mapillary": "857399736194836", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11869279304, - "lat": 51.9992578, - "lon": 0.8952743, - "tags": { - "amenity": "post_box", - "mapillary": "396164933319328", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11869291218, - "lat": 52.1054644, - "lon": 0.6894782, - "tags": { - "amenity": "post_box", - "mapillary": "778318544274024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11869309918, - "lat": 52.0871177, - "lon": 0.6415450, - "tags": { - "amenity": "post_box", - "mapillary": "1685128612297506", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11869313691, - "lat": 52.0059781, - "lon": 0.5682179, - "tags": { - "amenity": "post_box", - "mapillary": "1130739957439369", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11869590793, - "lat": 56.0030612, - "lon": -3.8233526, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "FK1 182D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 11869852780, - "lat": 53.6207228, - "lon": -1.8823763, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11870151119, - "lat": 52.8166531, - "lon": -0.1620398, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11871737365, - "lat": 52.1294146, - "lon": -3.2990925, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11873856651, - "lat": 51.5947805, - "lon": -1.2927000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX11 1228" - } -}, -{ - "type": "node", - "id": 11874511494, - "lat": 56.5738111, - "lon": -4.0836637, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP7", - "collection_times": "Mo-Fr 12:45; Sa 12:45", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH15 57", - "royal_cypher": "scottish_crown", - "source": "survey;local knowledge" - } -}, -{ - "type": "node", - "id": 11874649590, - "lat": 56.5001685, - "lon": -2.7302320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11876197634, - "lat": 55.1220383, - "lon": -3.3513194, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11876270977, - "lat": 51.1048797, - "lon": -2.3214571, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "BA12 65D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11877579482, - "lat": 55.8224583, - "lon": -4.2995963, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:30; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G43 157" - } -}, -{ - "type": "node", - "id": 11877586033, - "lat": 55.8250441, - "lon": -4.2916046, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G43 148" - } -}, -{ - "type": "node", - "id": 11878594499, - "lat": 51.7800702, - "lon": -2.6969696, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11878791894, - "lat": 53.4727315, - "lon": -2.1628447, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M11 301", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370442, - "lat": 52.9374503, - "lon": -4.5174121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL53 94D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370446, - "lat": 52.9952288, - "lon": -4.4050214, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 72D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370447, - "lat": 53.0100347, - "lon": -4.3827921, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 73D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370448, - "lat": 53.0212988, - "lon": -4.3639983, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 119D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370449, - "lat": 53.0452962, - "lon": -4.3390506, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 149D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370452, - "lat": 53.0731942, - "lon": -4.3246426, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 57D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370455, - "lat": 53.0835673, - "lon": -4.3356004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL54 48D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879370456, - "lat": 53.1838664, - "lon": -4.2112035, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL56 327D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879384577, - "lat": 53.1395608, - "lon": -4.2692578, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 53D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879384578, - "lat": 53.1382295, - "lon": -4.2693274, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 32D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11879384579, - "lat": 53.1415753, - "lon": -4.2738985, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 96D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779884, - "lat": 53.2210498, - "lon": -4.1366677, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL57 6D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11879779886, - "lat": 53.1513554, - "lon": -4.2627994, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL55 9D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779887, - "lat": 53.1469373, - "lon": -4.2682536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 24D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779888, - "lat": 53.1333724, - "lon": -4.2705320, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 17:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL55 156", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779889, - "lat": 53.1168086, - "lon": -4.2672000, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL55 118D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779890, - "lat": 53.1020724, - "lon": -4.2757881, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 18D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779891, - "lat": 53.0582073, - "lon": -4.2814734, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 51D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11879779892, - "lat": 53.0543332, - "lon": -4.2836855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL54 58", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11880927719, - "lat": 53.1895605, - "lon": -2.5402048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW7 164D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11880934229, - "lat": 55.9886112, - "lon": -4.8955497, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11880956855, - "lat": 53.2546834, - "lon": -3.9790586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL33 25D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11880956856, - "lat": 53.0788847, - "lon": -4.2805282, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 92D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11880956857, - "lat": 53.0460328, - "lon": -4.2817681, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL54 105D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11880956858, - "lat": 53.0433114, - "lon": -4.2828987, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL54 74D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11880956859, - "lat": 52.7392845, - "lon": -2.8471727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SY4 173D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11880975152, - "lat": 55.9893828, - "lon": -5.0169778, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11881079611, - "lat": 55.8882306, - "lon": -5.0302539, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11881172121, - "lat": 54.0741731, - "lon": -6.3814557, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11881494349, - "lat": 51.5841789, - "lon": -0.2329450, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP3D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 31D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW4 31D" - } -}, -{ - "type": "node", - "id": 11881527702, - "lat": 51.5805009, - "lon": -0.2294603, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 24D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW4 24D" - } -}, -{ - "type": "node", - "id": 11881552933, - "lat": 51.5824559, - "lon": -0.2322744, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 40D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273", - "wikimedia_commons": "Category:United Kingdom post box NW4 40D" - } -}, -{ - "type": "node", - "id": 11881558286, - "lat": 51.5802969, - "lon": -0.2334258, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q120765026", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 19D", - "royal_cypher": "EVIIR", - "royal_cypher:wikidata": "Q33102324", - "wikimedia_commons": "Category:United Kingdom post box NW4 19D" - } -}, -{ - "type": "node", - "id": 11881558381, - "lat": 51.5818092, - "lon": -0.2350727, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-05", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer:wikidata": "Q2940338", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW4 47D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169", - "wikimedia_commons": "Category:United Kingdom post box NW4 47D" - } -}, -{ - "type": "node", - "id": 11881939678, - "lat": 52.0224808, - "lon": 0.6897461, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11882473668, - "lat": 51.4283086, - "lon": -1.9943074, - "tags": { - "amenity": "post_box", - "fixme": "confirm", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11883408617, - "lat": 53.7869001, - "lon": -2.6982513, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PR2 334", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11884065878, - "lat": 52.9736858, - "lon": -3.2593710, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11884159680, - "lat": 52.5249649, - "lon": -2.0471672, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11884933528, - "lat": 51.2673875, - "lon": -2.5041899, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11884939992, - "lat": 51.2787646, - "lon": -2.5157093, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11885037924, - "lat": 51.1453285, - "lon": -2.5473841, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "284866791000510", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2023-07-09" - } -}, -{ - "type": "node", - "id": 11885094176, - "lat": 52.3391678, - "lon": -0.9647705, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NN6 501" - } -}, -{ - "type": "node", - "id": 11885119995, - "lat": 51.1284009, - "lon": -2.7378973, - "tags": { - "access": "private", - "amenity": "post_box", - "collection_times": "Mo-Fr 15:50", - "colour": "black", - "note": "unclear if it's public, private or not in use as it's in a public place, the sign says it's private, it's painted black\nstreetcomplete photo:\nhttps://westnordost.de/p/54718.jpg", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11887410877, - "lat": 55.0751475, - "lon": -6.5209193, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 10:30", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT53 66", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11887755568, - "lat": 55.8261270, - "lon": -4.2857528, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Sa 18:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter", - "ref": "G43 1532", - "royal_cypher": "no", - "royal_cypher:wikidata": "Q33102273", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11888399503, - "lat": 51.3937121, - "lon": 0.5269259, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "wall", - "ref": "ME4 7D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 11889156209, - "lat": 51.5104577, - "lon": -0.1545207, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "W1K 57D;W1K 257D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11890879403, - "lat": 51.5013865, - "lon": -3.1587504, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11891206123, - "lat": 52.9089473, - "lon": 0.4946946, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "PE31 145" - } -}, -{ - "type": "node", - "id": 11891803069, - "lat": 53.1572099, - "lon": -2.3176666, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "original_poi_type_tag": "amenity", - "ref": "CW11 355D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11893070154, - "lat": 52.0987008, - "lon": 0.7855050, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "CO10 1104D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11893218876, - "lat": 52.8656113, - "lon": 0.5017877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 511" - } -}, -{ - "type": "node", - "id": 11893332016, - "lat": 52.8741846, - "lon": 0.4997847, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE31 79" - } -}, -{ - "type": "node", - "id": 11893547875, - "lat": 52.2971444, - "lon": -0.0624505, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE28 167" - } -}, -{ - "type": "node", - "id": 11893547876, - "lat": 52.3008761, - "lon": -0.0690823, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE28 93" - } -}, -{ - "type": "node", - "id": 11893563838, - "lat": 52.1113120, - "lon": 0.8445418, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1082D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11893571831, - "lat": 52.1069072, - "lon": 0.7999581, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 1094D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11894887630, - "lat": 54.0639747, - "lon": -6.0980943, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11896759882, - "lat": 51.0882709, - "lon": -2.5146392, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11896767069, - "lat": 51.1214754, - "lon": -2.4941532, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11896768556, - "lat": 51.9114451, - "lon": -4.6152532, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11897385538, - "lat": 51.0781302, - "lon": -4.0547557, - "tags": { - "amenity": "post_box", - "ref": "EX32 184D", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 11897385545, - "lat": 51.0694052, - "lon": -4.0475095, - "tags": { - "amenity": "post_box", - "ref": "EX32 3D", - "survey:date": "2024-05-11" - } -}, -{ - "type": "node", - "id": 11898195704, - "lat": 51.9751639, - "lon": 0.6548017, - "tags": { - "amenity": "post_box", - "mapillary": "808429017446604", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11898212908, - "lat": 52.2811852, - "lon": -3.3694245, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11898518273, - "lat": 53.3635467, - "lon": -0.0019181, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11898623956, - "lat": 52.7610655, - "lon": -0.8372546, - "tags": { - "amenity": "post_box", - "post_box:design": "waggon_top", - "post_box:type": "lamp", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11899038775, - "lat": 52.4961543, - "lon": -3.3510828, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11899480022, - "lat": 52.8346106, - "lon": -4.1247467, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LL46 12D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11899578987, - "lat": 55.5940923, - "lon": -3.8883081, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "ML11 55" - } -}, -{ - "type": "node", - "id": 11899722774, - "lat": 51.0633492, - "lon": -2.5212352, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11899726699, - "lat": 51.0611264, - "lon": -2.4931238, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11899734610, - "lat": 51.0486530, - "lon": -2.5697078, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11900637097, - "lat": 51.9375150, - "lon": 0.6269995, - "tags": { - "amenity": "post_box", - "mapillary": "982207700165128", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11900708090, - "lat": 51.9392422, - "lon": 0.6542105, - "tags": { - "amenity": "post_box", - "mapillary": "1200073337661550", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11901119377, - "lat": 51.4902078, - "lon": -0.6095226, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11902288648, - "lat": 53.3651551, - "lon": -0.0132136, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11903555290, - "lat": 53.6158413, - "lon": -2.1244532, - "tags": { - "amenity": "post_box", - "check_date": "2024-03-18", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL16 8D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11903555291, - "lat": 53.6295726, - "lon": -2.1514408, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11903555292, - "lat": 53.6270159, - "lon": -2.1492202, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11903572166, - "lat": 52.3063516, - "lon": -3.3559706, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11904120815, - "lat": 53.1439737, - "lon": -2.9567919, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11904395018, - "lat": 54.7859145, - "lon": -7.4600370, - "tags": { - "amenity": "post_box", - "mapillary": "1152746119249053", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11904415927, - "lat": 54.6076469, - "lon": -7.2832326, - "tags": { - "amenity": "post_box", - "mapillary": "806537020919397", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11904434900, - "lat": 54.6088641, - "lon": -7.2694125, - "tags": { - "amenity": "post_box", - "mapillary": "299466879864130", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11904435625, - "lat": 54.5979363, - "lon": -7.3246481, - "tags": { - "amenity": "post_box", - "mapillary": "1270694937236460", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11904837362, - "lat": 51.7320523, - "lon": -0.0735193, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11906589739, - "lat": 51.9194404, - "lon": 0.9167917, - "tags": { - "amenity": "post_box", - "mapillary": "1478192456438456", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11908196899, - "lat": 50.9676151, - "lon": -2.6538045, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11908267828, - "lat": 52.1728537, - "lon": -4.3442377, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11908983600, - "lat": 53.6428526, - "lon": -2.0994502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11909487493, - "lat": 55.8039041, - "lon": -4.2405400, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11909494285, - "lat": 52.0540630, - "lon": 0.7740611, - "tags": { - "amenity": "post_box", - "mapillary": "843300667855024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11909504223, - "lat": 52.0579729, - "lon": 0.7755834, - "tags": { - "amenity": "post_box", - "mapillary": "3802428720033528", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11910258401, - "lat": 53.1506224, - "lon": -3.8239179, - "tags": { - "access": "yes", - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11910768005, - "lat": 51.4641725, - "lon": -3.6346609, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11910861187, - "lat": 53.3604353, - "lon": -0.1658889, - "tags": { - "amenity": "post_box", - "note": "A wall type post box, though just in a brick pillar", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11911017501, - "lat": 53.3997088, - "lon": -0.4949256, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11911644124, - "lat": 53.1386406, - "lon": -2.3724124, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW11 79D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11912620103, - "lat": 55.8247808, - "lon": -4.2957361, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "G43 656", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11913353475, - "lat": 52.0169348, - "lon": 0.5688071, - "tags": { - "amenity": "post_box", - "mapillary": "1493902934533538", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11913353476, - "lat": 52.0283553, - "lon": 0.6810602, - "tags": { - "amenity": "post_box", - "mapillary": "1336681773955221", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11913366199, - "lat": 51.9831939, - "lon": 0.5871536, - "tags": { - "amenity": "post_box", - "mapillary": "795334066077409", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11913366203, - "lat": 51.9813555, - "lon": 0.7031720, - "tags": { - "amenity": "post_box", - "mapillary": "1372902606678387", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11913372667, - "lat": 52.0821593, - "lon": 0.5818576, - "tags": { - "amenity": "post_box", - "mapillary": "1498604534398649", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11913692288, - "lat": 53.1564678, - "lon": -3.8251878, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL27 34", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11913708692, - "lat": 54.6557195, - "lon": -1.2328979, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref": "TS25 36D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11914247365, - "lat": 54.5882131, - "lon": -1.0187163, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11914263070, - "lat": 54.5888075, - "lon": -1.0148782, - "tags": { - "amenity": "post_box", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11914859030, - "lat": 53.6421152, - "lon": -2.1073619, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11915762131, - "lat": 51.4221627, - "lon": -3.3660980, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11915780260, - "lat": 53.1311203, - "lon": -3.1843014, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11915904507, - "lat": 53.4574727, - "lon": -2.1492240, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M34 179D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11915932832, - "lat": 51.4197793, - "lon": -3.3724070, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11915978373, - "lat": 52.3185618, - "lon": -0.1034173, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "PE28 100" - } -}, -{ - "type": "node", - "id": 11916190230, - "lat": 53.1479016, - "lon": -4.1929649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:45", - "operator": "Royal Mail", - "post_box:mounting": "wall", - "post_box:type": "lamp", - "ref": "LL55 139", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11916390576, - "lat": 53.3958152, - "lon": -0.5770484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11916390648, - "lat": 53.3972872, - "lon": -0.5755870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11916463072, - "lat": 54.8665029, - "lon": -1.6985162, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11917458150, - "lat": 51.5126486, - "lon": -0.0822929, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-19", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "gray", - "note": "A postbox number can't be seen because of a collection plate's condition", - "operator": "Royal Mail", - "post_box:apertures": "2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11918676282, - "lat": 52.4887808, - "lon": 0.5271605, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "drive_through": "no", - "operator": "Royal Mail", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP26 3200D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11918702460, - "lat": 53.7473572, - "lon": -1.9027906, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "HX2 58" - } -}, -{ - "type": "node", - "id": 11918721069, - "lat": 53.7253633, - "lon": -1.8003337, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "collection_times": "Mo-Fr 17:15; Sa 11:45", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "HX3 141" - } -}, -{ - "type": "node", - "id": 11919452356, - "lat": 51.9072112, - "lon": 0.8934761, - "tags": { - "amenity": "post_box", - "mapillary": "314460868347619", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11919530187, - "lat": 53.1481254, - "lon": -4.1676417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL55 37D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11919808026, - "lat": 55.7223532, - "lon": -2.3784960, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TD11 19D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11920878572, - "lat": 53.3854749, - "lon": -0.8227710, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11922651783, - "lat": 51.5175519, - "lon": -0.4633778, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11923664932, - "lat": 51.5007021, - "lon": -0.1654646, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "McDowall, Steven & Co Ltd", - "ref": "SW7 21D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11923686150, - "lat": 51.5003425, - "lon": -0.1503718, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "check_date": "2024-05-21", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Lion Foundry", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "SW1X 97D;SW1X 197D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11924970045, - "lat": 52.3415141, - "lon": -3.4839213, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD6 60D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11925916885, - "lat": 51.9134260, - "lon": 0.8911755, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "1440098126598411", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "CO4 320D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11925936393, - "lat": 52.0791685, - "lon": 0.7495325, - "tags": { - "amenity": "post_box", - "mapillary": "1892725034532044", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11925938778, - "lat": 50.8716341, - "lon": -3.8458136, - "tags": { - "amenity": "post_box", - "mapillary": "413170778249638", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11927825655, - "lat": 52.0028956, - "lon": 0.8159708, - "tags": { - "amenity": "post_box", - "mapillary": "1868422726934892", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11927841764, - "lat": 51.9849432, - "lon": 0.8462095, - "tags": { - "amenity": "post_box", - "mapillary": "4174763002562964", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11927847129, - "lat": 51.9155556, - "lon": 0.8911129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "849944226939621", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO4 296D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11929491677, - "lat": 51.5062350, - "lon": -3.5791740, - "tags": { - "access": "yes", - "amenity": "post_box", - "colour": "red", - "covered": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11929529421, - "lat": 52.3785186, - "lon": -3.5018438, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD6 86D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11929535796, - "lat": 52.3640947, - "lon": -3.4947681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LD6 57D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11931067779, - "lat": 51.7541932, - "lon": -3.2770891, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 887", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11931459115, - "lat": 51.2699163, - "lon": -2.9230928, - "tags": { - "amenity": "post_box", - "operator": "Royal Post", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11931515200, - "lat": 52.4092914, - "lon": -3.5156518, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY18 559D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11931651697, - "lat": 53.5070972, - "lon": -2.4830433, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11931698477, - "lat": 54.7716241, - "lon": -5.9968520, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11932988815, - "lat": 53.6507579, - "lon": -2.1002099, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11933097517, - "lat": 51.4846403, - "lon": -0.1820352, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "colour": "red", - "manufacturer": "none", - "ref": "SW10 3", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11933109472, - "lat": 51.4837239, - "lon": -0.1732318, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-25", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "McDowall, Steven Co Ltd London & Falkirk", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW3 18D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11933749891, - "lat": 53.8955865, - "lon": -2.7677736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11933805807, - "lat": 52.4546781, - "lon": -3.5452594, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SY18 537D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11933805808, - "lat": 52.4455975, - "lon": -3.5399178, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY18 546D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11934478499, - "lat": 51.9235935, - "lon": 0.9235977, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "CO4 44;CO4 9044", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11934478504, - "lat": 51.9235869, - "lon": 0.9236342, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 17:30; Sa 11:00", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "parcel", - "ref": "CO4 454P", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11934607574, - "lat": 52.5145886, - "lon": -3.6537319, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY19 511D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11934652676, - "lat": 52.5672129, - "lon": -3.9552605, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY20 90", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11934680990, - "lat": 52.5535335, - "lon": -3.9939447, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL35 26", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11934682302, - "lat": 52.5481041, - "lon": -4.0690143, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11934686156, - "lat": 52.5442723, - "lon": -4.0410121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935116651, - "lat": 51.5476746, - "lon": -1.8415205, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 465D", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11935116652, - "lat": 51.5652550, - "lon": -1.8003855, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 91", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935116653, - "lat": 51.5683097, - "lon": -1.8023438, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN2 230D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11935116654, - "lat": 51.5614430, - "lon": -1.8020865, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN2 47D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935116655, - "lat": 51.5585226, - "lon": -1.8108417, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:45; Sa 10:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN5 416", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935307727, - "lat": 51.0071844, - "lon": -2.2678786, - "tags": { - "amenity": "post_box", - "check_date": "2024-05-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP8 66D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935555911, - "lat": 52.1390225, - "lon": 0.9059899, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP7 1053", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935585011, - "lat": 52.1478391, - "lon": 0.9179203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP7 1168", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11935733686, - "lat": 52.1158388, - "lon": 0.8702521, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "IP7 1123" - } -}, -{ - "type": "node", - "id": 11935752240, - "lat": 51.7555574, - "lon": -3.2813498, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP22 577", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935774644, - "lat": 52.1366803, - "lon": 0.9791853, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8106", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935823025, - "lat": 52.1314349, - "lon": 0.9532812, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP14 8105", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935825488, - "lat": 52.1491430, - "lon": 0.8710071, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1258", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935825507, - "lat": 52.1452587, - "lon": 0.8583203, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1183", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935828842, - "lat": 57.3973094, - "lon": -3.4116987, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 12:00; Sa 07:15", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PH26 6", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11935829641, - "lat": 52.1469083, - "lon": 0.9796735, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "IP14 8097", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935837768, - "lat": 57.2270823, - "lon": -3.6889827, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5", - "collection_plate:date": "2021-05-27", - "collection_times": "Mo-Fr 11:45; Sa 09:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "PH25 19", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11935865595, - "lat": 52.1447711, - "lon": 0.9485243, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8100", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11935865999, - "lat": 52.1491100, - "lon": 1.0021968, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP14 8109", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11936152131, - "lat": 51.2819092, - "lon": -2.9537487, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11937127019, - "lat": 52.8140063, - "lon": -3.8561945, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 18D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11937145785, - "lat": 52.8448667, - "lon": -3.8299061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LL40 17D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11937482972, - "lat": 51.0814385, - "lon": -3.2837556, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11937546806, - "lat": 51.6026940, - "lon": -1.8163320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11937891284, - "lat": 55.7945133, - "lon": -4.0952215, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G72 1141" - } -}, -{ - "type": "node", - "id": 11940113185, - "lat": 54.1336480, - "lon": -6.5498137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11940138580, - "lat": 51.0734585, - "lon": -4.0987128, - "tags": { - "amenity": "post_box", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940256472, - "lat": 53.1270466, - "lon": -0.6354259, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11940479178, - "lat": 52.6023707, - "lon": -3.6067544, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY19 507", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940492790, - "lat": 52.5487284, - "lon": -3.4889960, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY17 477", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940497106, - "lat": 52.7050836, - "lon": -3.6708659, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY20 102D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940511510, - "lat": 52.5121201, - "lon": -3.3348683, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "SY16 471", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940513802, - "lat": 52.5640695, - "lon": -3.5397086, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "SY17 474", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11940732391, - "lat": 51.0727191, - "lon": -3.4975165, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940734514, - "lat": 51.0359562, - "lon": -3.4454442, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11940745396, - "lat": 55.8197271, - "lon": -4.0834486, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "G71 336" - } -}, -{ - "type": "node", - "id": 11940745399, - "lat": 55.8269458, - "lon": -4.0921678, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G71 1455" - } -}, -{ - "type": "node", - "id": 11940750281, - "lat": 51.0916567, - "lon": -3.5349991, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11940810916, - "lat": 51.6883803, - "lon": -0.2778427, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11940810967, - "lat": 51.6915749, - "lon": -0.2808648, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11941640743, - "lat": 51.9706377, - "lon": 0.9722700, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "mapillary": "645012384458594", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 141D" - } -}, -{ - "type": "node", - "id": 11942322485, - "lat": 53.8571510, - "lon": -1.9163735, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BD21 94", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11942322486, - "lat": 53.8585879, - "lon": -1.9188000, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "BD21 110", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11942322489, - "lat": 53.8598314, - "lon": -1.9236337, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BD21 104", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11942322490, - "lat": 54.0875685, - "lon": -2.2736802, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "BD24 71", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11942975753, - "lat": 51.5801557, - "lon": -0.0991255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11943097192, - "lat": 51.5384867, - "lon": -1.7274304, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:30", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "SN3 503" - } -}, -{ - "type": "node", - "id": 11943097193, - "lat": 51.5625853, - "lon": -1.7705089, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 232" - } -}, -{ - "type": "node", - "id": 11943097194, - "lat": 51.5584362, - "lon": -1.7693302, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:00; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 258" - } -}, -{ - "type": "node", - "id": 11943097195, - "lat": 51.5793239, - "lon": -1.7517629, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 12:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 283" - } -}, -{ - "type": "node", - "id": 11943253799, - "lat": 55.8201079, - "lon": -3.9676030, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML1 39", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11943308989, - "lat": 51.7872222, - "lon": -1.4733984, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX28 317" - } -}, -{ - "type": "node", - "id": 11943308991, - "lat": 51.7823447, - "lon": -1.4719081, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "OX28 937" - } -}, -{ - "type": "node", - "id": 11944729718, - "lat": 52.2818135, - "lon": 1.0702141, - "tags": { - "amenity": "post_box", - "ref": "IP23 7068D" - } -}, -{ - "type": "node", - "id": 11944751599, - "lat": 53.4673304, - "lon": -1.9652926, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "SK14 175D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11944936266, - "lat": 53.4646048, - "lon": -1.9713179, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "SK14 170D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11945756870, - "lat": 52.2804947, - "lon": -3.0748510, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "LD8 236", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11945778872, - "lat": 52.2321390, - "lon": -3.0918628, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1074018393278570", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LD8 249", - "royal_cypher": "EIIR", - "survey:date": "2022-09-17" - } -}, -{ - "type": "node", - "id": 11950801748, - "lat": 54.7850088, - "lon": -1.8180931, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11951727035, - "lat": 50.7359700, - "lon": -3.4546560, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX1 300D" - } -}, -{ - "type": "node", - "id": 11952380651, - "lat": 53.4747937, - "lon": -2.1451935, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M43 195D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11952400007, - "lat": 53.4738069, - "lon": -2.1374610, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "M34 264D", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11952494117, - "lat": 51.2110094, - "lon": -3.4765502, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11952603902, - "lat": 51.4599929, - "lon": -0.5368287, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11952603916, - "lat": 51.4736664, - "lon": -0.5431666, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11953375613, - "lat": 51.9947029, - "lon": 0.9263639, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:apertures": "1", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "CO6 164D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11955885761, - "lat": 51.9615395, - "lon": 0.9714602, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO7 105D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11956107138, - "lat": 54.3862921, - "lon": -1.5228584, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11956653850, - "lat": 51.7998493, - "lon": -2.6285594, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11959095027, - "lat": 51.6506361, - "lon": -1.5772634, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11959277127, - "lat": 56.0427965, - "lon": -4.3686223, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11961425372, - "lat": 52.2357014, - "lon": -2.9242185, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11962347656, - "lat": 54.5315026, - "lon": -1.0016558, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11962668593, - "lat": 53.2145984, - "lon": -0.6111807, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11962693169, - "lat": 53.2145668, - "lon": -0.6112145, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11962857937, - "lat": 51.7588443, - "lon": -3.2893715, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NP22 579" - } -}, -{ - "type": "node", - "id": 11962857940, - "lat": 51.7499827, - "lon": -3.2769949, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 621", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11963139753, - "lat": 53.0628067, - "lon": -3.2008018, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL11 239D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11963139754, - "lat": 52.9780129, - "lon": -3.0846339, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL14 118D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11963139755, - "lat": 53.0363026, - "lon": -3.2055001, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL11 261D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11963139756, - "lat": 53.3293776, - "lon": -3.3957754, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL19 76D", - "royal_cypher": "EVIIIR" - } -}, -{ - "type": "node", - "id": 11963139757, - "lat": 53.3201784, - "lon": -3.4916152, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL18 199", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11963139758, - "lat": 53.3379901, - "lon": -3.4051680, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LL19 182", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11963139759, - "lat": 53.3400308, - "lon": -3.3984025, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL19 132", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11963139760, - "lat": 53.3287544, - "lon": -3.2937746, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "CH8 38", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11963139761, - "lat": 53.3158377, - "lon": -3.4117432, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LL19 94D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964341014, - "lat": 54.7145063, - "lon": -1.7406356, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11964348328, - "lat": 51.7606849, - "lon": -3.2857710, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP22 571", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964348329, - "lat": 51.7667276, - "lon": -3.2925968, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "mapillary": "1629401994547125", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NP22 575", - "royal_cypher": "EIIR", - "survey:date": "2024-06-15" - } -}, -{ - "type": "node", - "id": 11964348331, - "lat": 51.7689438, - "lon": -3.2887740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 578", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964348332, - "lat": 51.7738946, - "lon": -3.3003460, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP22 573", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964348333, - "lat": 51.7907535, - "lon": -3.2620382, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 618", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964348334, - "lat": 51.7449440, - "lon": -3.2688442, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 574", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964348337, - "lat": 51.7444182, - "lon": -3.2567579, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 584", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964348338, - "lat": 51.7423271, - "lon": -3.2590013, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP22 572", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964384857, - "lat": 54.8393819, - "lon": -1.8637048, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11964384858, - "lat": 54.8347813, - "lon": -1.8725969, - "tags": { - "amenity": "post_box", - "fixme": "Confirm exact location", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11964403427, - "lat": 54.8432903, - "lon": -1.8549889, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11964411163, - "lat": 54.8582487, - "lon": -2.0148137, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11964411164, - "lat": 54.7697383, - "lon": -2.2454324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11964411165, - "lat": 54.6763248, - "lon": -1.7763016, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11964411166, - "lat": 54.6923147, - "lon": -1.7064978, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11964411168, - "lat": 54.6898645, - "lon": -1.7334124, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11964411678, - "lat": 54.6914799, - "lon": -1.7430221, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11964434527, - "lat": 53.0045776, - "lon": -3.1705518, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 11:00; Sa 09:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL20 168", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439337, - "lat": 51.7756537, - "lon": -3.2461993, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP22 614", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439338, - "lat": 51.7676965, - "lon": -3.2485453, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP22 596", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439339, - "lat": 51.7688633, - "lon": -3.2489069, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 598", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439340, - "lat": 51.7684603, - "lon": -3.2412561, - "tags": { - "amenity": "post_box", - "fixme": "I can't find any post box other then the letter box on the sorting centre itself i tagged it here. there may be a post box nearby that i missed.", - "post_box:type": "wall", - "ref": "NP22 888", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11964439342, - "lat": 51.7668654, - "lon": -3.2391740, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 597", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439343, - "lat": 51.7647600, - "lon": -3.2367489, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 592", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439344, - "lat": 51.7619776, - "lon": -3.2345206, - "tags": { - "amenity": "post_box", - "fixme": "confirmed this is 599, unable to find \"NP22 616\" which is also meant to be on this street", - "post_box:type": "lamp", - "ref": "NP22 599", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439345, - "lat": 51.7596928, - "lon": -3.2307850, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 593", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439347, - "lat": 51.7539351, - "lon": -3.2226969, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 606", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439348, - "lat": 51.7472307, - "lon": -3.2236992, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 610", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439349, - "lat": 51.7713368, - "lon": -3.2399576, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP22 591", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11964439350, - "lat": 51.7739657, - "lon": -3.2379760, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 601", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439351, - "lat": 51.7851617, - "lon": -3.2376702, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 617", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439352, - "lat": 51.7853995, - "lon": -3.2410559, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 889", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439353, - "lat": 51.7827122, - "lon": -3.2381221, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP22 602", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439354, - "lat": 51.7846571, - "lon": -3.2444773, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 603", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439355, - "lat": 51.7846141, - "lon": -3.2483110, - "tags": { - "amenity": "post_box", - "ref": "NP22 615", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439356, - "lat": 51.7859118, - "lon": -3.2527862, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 620", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439357, - "lat": 51.7874464, - "lon": -3.2478771, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 600", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439358, - "lat": 51.7824102, - "lon": -3.2496970, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 612", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439359, - "lat": 51.7849469, - "lon": -3.2576697, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 594", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11964439933, - "lat": 54.8590511, - "lon": -1.8098051, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11964439934, - "lat": 54.8665138, - "lon": -1.8607439, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11964439935, - "lat": 54.8461135, - "lon": -1.8571106, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11964710368, - "lat": 54.8690567, - "lon": -1.8104029, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11964710373, - "lat": 54.8657003, - "lon": -1.8135320, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11964710379, - "lat": 54.8596188, - "lon": -1.8044454, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11964710380, - "lat": 54.8563377, - "lon": -1.8015432, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11965001659, - "lat": 54.8223189, - "lon": -1.7506309, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11965001661, - "lat": 54.8311116, - "lon": -1.7923681, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965001663, - "lat": 54.8315893, - "lon": -1.7033274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037369, - "lat": 54.8343631, - "lon": -1.6792231, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11965037370, - "lat": 54.8584640, - "lon": -1.6151324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037371, - "lat": 54.8726451, - "lon": -1.6346495, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037372, - "lat": 54.8827230, - "lon": -1.5980621, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037375, - "lat": 54.8828865, - "lon": -1.6127969, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037376, - "lat": 54.8424408, - "lon": -1.6448908, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037378, - "lat": 54.8534608, - "lon": -1.6681060, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11965037379, - "lat": 54.8570730, - "lon": -1.6801076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037380, - "lat": 54.8548172, - "lon": -1.7034736, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037383, - "lat": 54.8615602, - "lon": -1.7058407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037384, - "lat": 54.8590777, - "lon": -1.7486407, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037388, - "lat": 54.8651156, - "lon": -1.7383928, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11965037391, - "lat": 54.8652920, - "lon": -1.7072690, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037392, - "lat": 54.8660650, - "lon": -1.6914580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037394, - "lat": 54.8796728, - "lon": -1.7127192, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037430, - "lat": 54.8697204, - "lon": -1.7496613, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037431, - "lat": 54.8770330, - "lon": -1.7606503, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11965037432, - "lat": 54.8743736, - "lon": -1.7697108, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11965037433, - "lat": 54.8910190, - "lon": -1.8395385, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11965037436, - "lat": 54.8796296, - "lon": -1.8293410, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11966222000, - "lat": 53.5941716, - "lon": -2.6502894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "meter" - } -}, -{ - "type": "node", - "id": 11966222001, - "lat": 53.5941739, - "lon": -2.6503403, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11966412495, - "lat": 54.6744800, - "lon": -1.5303290, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11966510960, - "lat": 52.4807798, - "lon": 1.4910170, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 09:30", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "NR35 3520", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11967652244, - "lat": 51.7234559, - "lon": -3.2412736, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP22 555", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11967652245, - "lat": 51.7159864, - "lon": -3.2320548, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP22 553", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11967652246, - "lat": 51.7325345, - "lon": -3.2604487, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP24 559", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 11967652258, - "lat": 51.7213000, - "lon": -3.2466774, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP24 558", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 11967652259, - "lat": 51.7206421, - "lon": -3.2431248, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP24 546", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11967652260, - "lat": 51.7236647, - "lon": -3.2452725, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP24 550", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11967652261, - "lat": 51.7182604, - "lon": -3.2368842, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "ref": "NP24 556", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11967652263, - "lat": 51.7197341, - "lon": -3.2398674, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "ref": "NP24 552", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11967652264, - "lat": 51.7186622, - "lon": -3.2341463, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP24 547", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11967652265, - "lat": 51.7130477, - "lon": -3.2280136, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP24 551", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11967652266, - "lat": 51.7105505, - "lon": -3.2302356, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "ref": "NP24 548", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11967652267, - "lat": 51.7608332, - "lon": -3.2327451, - "tags": { - "amenity": "post_box", - "note": "This post box is in the front garden of number 38. WHY?!, took me over an hour to find it. There is nothing to suggest its not in service.", - "post_box:type": "lamp", - "ref": "NP22 616", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 11968803210, - "lat": 53.5100439, - "lon": -0.2260546, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "LN7 377" - } -}, -{ - "type": "node", - "id": 11968851479, - "lat": 57.1708061, - "lon": -2.0948059, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB24 588D", - "royal_cypher": "scottish_crown", - "survey:date": "2024-06-10" - } -}, -{ - "type": "node", - "id": 11969100676, - "lat": 53.2056912, - "lon": -0.6153089, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11969918217, - "lat": 51.3108038, - "lon": -0.7585381, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "CARRON COMPANY STIRLINGSHIRE", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU14 179D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11970607228, - "lat": 53.3322005, - "lon": -0.9074255, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11970918125, - "lat": 55.6987155, - "lon": -3.9817866, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "ML9 54", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11970918129, - "lat": 55.6954648, - "lon": -3.9870480, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "ML9 52", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11970918214, - "lat": 55.6903005, - "lon": -3.9930119, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML9 53", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 11971972370, - "lat": 52.6176442, - "lon": 0.2306995, - "tags": { - "amenity": "post_box", - "post_box:mounting": "wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11971972381, - "lat": 52.5551957, - "lon": -0.2991481, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11971972388, - "lat": 52.5632584, - "lon": -0.2569114, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11971972389, - "lat": 52.5656262, - "lon": -0.2492228, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11973901631, - "lat": 53.2877741, - "lon": -1.2268719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937522, - "lat": 54.6832107, - "lon": -1.5982506, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937523, - "lat": 54.6751190, - "lon": -1.6093616, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937524, - "lat": 54.6640760, - "lon": -1.6059351, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937532, - "lat": 54.6618640, - "lon": -1.6314120, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11973937542, - "lat": 54.6463996, - "lon": -1.6416876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937548, - "lat": 54.6431520, - "lon": -1.6404954, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937553, - "lat": 54.6443385, - "lon": -1.6488035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11973937554, - "lat": 54.6453031, - "lon": -1.6549397, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937555, - "lat": 54.6355138, - "lon": -1.6562174, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11973937558, - "lat": 54.6324232, - "lon": -1.6563204, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937559, - "lat": 54.6312681, - "lon": -1.6629468, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11973937568, - "lat": 54.6231101, - "lon": -1.6380713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11974001669, - "lat": 54.6245570, - "lon": -1.8705478, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11974001689, - "lat": 54.6222032, - "lon": -1.8398311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11974001692, - "lat": 54.6187125, - "lon": -1.8256898, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11974001698, - "lat": 54.5804417, - "lon": -1.7994102, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11974001700, - "lat": 54.5551802, - "lon": -1.7840391, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11974140191, - "lat": 55.8373078, - "lon": -4.5002452, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PA5 154", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11974140192, - "lat": 55.8369128, - "lon": -4.5086378, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "PA5 2030;PA5 203", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11974185799, - "lat": 55.6118851, - "lon": -4.5048713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "KA1 2" - } -}, -{ - "type": "node", - "id": 11975055529, - "lat": 52.7018241, - "lon": 0.2449661, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE14 175" - } -}, -{ - "type": "node", - "id": 11975056029, - "lat": 51.1854873, - "lon": -1.7830713, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SP4 291D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11975082382, - "lat": 51.2016453, - "lon": -1.7729706, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SP4 447D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11976144758, - "lat": 51.6268545, - "lon": 0.0434627, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "IG9 74D" - } -}, -{ - "type": "node", - "id": 11976483062, - "lat": 56.5008037, - "lon": -2.7187450, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "DD7 194D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11976499814, - "lat": 56.5012181, - "lon": -2.7098752, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "rendered_wall", - "post_box:type": "wall", - "ref": "DD7 170D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11976499845, - "lat": 56.5046085, - "lon": -2.7131100, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carronade", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "DD7 258D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11976505799, - "lat": 54.7031133, - "lon": -1.5167329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505800, - "lat": 54.7022113, - "lon": -1.5220061, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11976505801, - "lat": 54.6979455, - "lon": -1.5143484, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505810, - "lat": 54.6831227, - "lon": -1.4435186, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505811, - "lat": 54.6621426, - "lon": -1.4496341, - "tags": { - "amenity": "post_box", - "fixme": "Two post boxes?", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11976505814, - "lat": 54.6601952, - "lon": -1.4516585, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11976505817, - "lat": 54.6564768, - "lon": -1.4512764, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11976505825, - "lat": 54.6535893, - "lon": -1.4466246, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505830, - "lat": 54.6512588, - "lon": -1.4552830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11976505834, - "lat": 54.6551651, - "lon": -1.5902294, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11976505837, - "lat": 54.6540630, - "lon": -1.5631324, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505839, - "lat": 54.6698612, - "lon": -1.5347399, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505840, - "lat": 54.6810429, - "lon": -1.5328409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11976505848, - "lat": 54.6841876, - "lon": -1.5355150, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976505862, - "lat": 54.6916299, - "lon": -1.5450986, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976506069, - "lat": 54.6843589, - "lon": -1.5486719, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11976506070, - "lat": 54.6904826, - "lon": -1.5505715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11976507527, - "lat": 56.5027697, - "lon": -2.7165335, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-05-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "DD7 115D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11976508469, - "lat": 54.7134865, - "lon": -1.5009277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11976525544, - "lat": 56.5085963, - "lon": -2.7000329, - "tags": { - "amenity": "post_box", - "collection_plate": "CP8D", - "collection_plate:date": "2020-05-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "CARRON CO. FALKIRK", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "DD7 182D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11979190666, - "lat": 52.0385202, - "lon": 0.9826420, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP7 1071", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11979196963, - "lat": 54.7197305, - "lon": -1.4036040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11979196965, - "lat": 54.7212231, - "lon": -1.4122474, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11979208375, - "lat": 54.7121028, - "lon": -1.4285123, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11979208376, - "lat": 54.7019726, - "lon": -1.4264992, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11980478407, - "lat": 53.4339148, - "lon": -2.2272810, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 11981175398, - "lat": 58.0036309, - "lon": -6.7652707, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 11981759501, - "lat": 53.4424275, - "lon": -2.2754639, - "tags": { - "amenity": "post_box", - "post_box:design": "type_c", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11981821856, - "lat": 54.8304106, - "lon": -1.3634828, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11981821857, - "lat": 54.8248818, - "lon": -1.3679274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11981821866, - "lat": 54.8170461, - "lon": -1.3981658, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11981821868, - "lat": 54.7985668, - "lon": -1.3981155, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11981847369, - "lat": 54.7652300, - "lon": -1.3992924, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11981847371, - "lat": 54.7458960, - "lon": -1.4153865, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11981847372, - "lat": 54.7389031, - "lon": -1.4222164, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11982541150, - "lat": 54.8362044, - "lon": -1.3526035, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11982541152, - "lat": 54.8339607, - "lon": -1.3607103, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11982541155, - "lat": 54.8326600, - "lon": -1.3658881, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11982599574, - "lat": 51.9074586, - "lon": 0.9027216, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11982599590, - "lat": 51.9100424, - "lon": 0.8997403, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "CO4 476" - } -}, -{ - "type": "node", - "id": 11982791842, - "lat": 53.6396167, - "lon": -0.2698926, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "DN40 44" - } -}, -{ - "type": "node", - "id": 11983050753, - "lat": 54.8356735, - "lon": -1.3360834, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11983050761, - "lat": 54.8389567, - "lon": -1.3364194, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11983050764, - "lat": 54.8401059, - "lon": -1.3529732, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11983087169, - "lat": 54.8410083, - "lon": -1.3590874, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11983087173, - "lat": 54.8434254, - "lon": -1.3837235, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11983087175, - "lat": 54.8441536, - "lon": -1.3723020, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11983087182, - "lat": 54.8438343, - "lon": -1.3670227, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11983087183, - "lat": 54.8385273, - "lon": -1.3675437, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11983196953, - "lat": 54.7613645, - "lon": -1.3107713, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11983196958, - "lat": 54.7804659, - "lon": -1.3579731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11983196960, - "lat": 54.7846969, - "lon": -1.3573431, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11983509564, - "lat": 51.6008480, - "lon": -1.2644344, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 11983569424, - "lat": 54.3441699, - "lon": -2.7375592, - "tags": { - "amenity": "post_box", - "post_box:type": "meter", - "ref": "LA9 271" - } -}, -{ - "type": "node", - "id": 11983731741, - "lat": 58.1844729, - "lon": -3.5013993, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 11983795952, - "lat": 51.5816582, - "lon": -1.5935004, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN6 28D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11983795953, - "lat": 51.6024853, - "lon": -1.5621665, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 253D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11983795954, - "lat": 51.6129092, - "lon": -1.5425929, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 12D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11983795955, - "lat": 51.6137420, - "lon": -1.4899442, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN7 15D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11983795956, - "lat": 51.5884434, - "lon": -1.4244606, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "OX12 1237", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11983920023, - "lat": 54.7313640, - "lon": -1.3434514, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11983920024, - "lat": 54.7369193, - "lon": -1.3546792, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11983920028, - "lat": 54.7372213, - "lon": -1.3358848, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11983920050, - "lat": 54.7366639, - "lon": -1.2961976, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11984515850, - "lat": 51.4811538, - "lon": -3.6987273, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11985411631, - "lat": 51.4811703, - "lon": -3.7057900, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11986308794, - "lat": 52.7272004, - "lon": -1.1373776, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa 10:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE12 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11986308795, - "lat": 52.7258630, - "lon": -1.1358835, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "LE12 45D", - "royal_cypher": "GVIR", - "royal_cypher:wikidata": "Q33102169" - } -}, -{ - "type": "node", - "id": 11986308796, - "lat": 52.7302330, - "lon": -1.1387503, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 179D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11986308797, - "lat": 52.7310749, - "lon": -1.1418731, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "LE12 71D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 11986308798, - "lat": 52.7342727, - "lon": -1.1474405, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "LE12 46D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 11986388593, - "lat": 51.4404284, - "lon": -3.1747786, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11986919976, - "lat": 51.5978103, - "lon": -2.9997556, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11986944670, - "lat": 51.6107499, - "lon": -3.0005995, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP20 206D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 11988948589, - "lat": 54.7193649, - "lon": -1.3404226, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11988948590, - "lat": 54.7179656, - "lon": -1.3684825, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11988948591, - "lat": 54.7244653, - "lon": -1.3755870, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11988948593, - "lat": 54.7333819, - "lon": -1.3791731, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11988948600, - "lat": 54.7362898, - "lon": -1.3807321, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11988948601, - "lat": 54.7564008, - "lon": -1.3571589, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11988990072, - "lat": 54.7264584, - "lon": -1.3363114, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11989771073, - "lat": 54.2219882, - "lon": -5.8921579, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 11989852876, - "lat": 52.6817018, - "lon": -1.0970545, - "tags": { - "amenity": "post_box", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 11989852877, - "lat": 52.6842594, - "lon": -1.0951316, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11990894090, - "lat": 55.9724955, - "lon": -4.0560514, - "tags": { - "amenity": "post_box", - "post_box:mounting": "concrete_pillar", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 11991007418, - "lat": 51.5450431, - "lon": 0.6462791, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 11992405912, - "lat": 50.4418292, - "lon": -4.0824326, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "survey:date": "2024-06-19" - } -}, -{ - "type": "node", - "id": 11993499424, - "lat": 53.4542616, - "lon": -0.0036301, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-19", - "collection_plate": "CP7D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/DzDMskJb/LN11-112-2.jpg", - "location": "Northway, next to the Cross Keys", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LN11 112D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 11997998872, - "lat": 53.1443875, - "lon": -1.2191519, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 11998776877, - "lat": 53.6929257, - "lon": -1.4885530, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "ref:signed": "no", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 11999419825, - "lat": 51.4155343, - "lon": -1.7049608, - "tags": { - "amenity": "post_box", - "description": "Next to Reception inside Hospital", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12000419399, - "lat": 54.6645199, - "lon": -3.3873952, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CA13 183", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12001390385, - "lat": 57.1275396, - "lon": -2.1250006, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 509D", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 12001538786, - "lat": 52.7388094, - "lon": -1.8734241, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12003457968, - "lat": 51.0434678, - "lon": -0.3585168, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "RH13 67D", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 12003553874, - "lat": 51.1476471, - "lon": -0.9911989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 36D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12003553875, - "lat": 51.1468294, - "lon": -0.9820580, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 30D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12003553876, - "lat": 51.1429987, - "lon": -0.9783277, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 86D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12004767724, - "lat": 55.6741308, - "lon": -3.7833142, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML11 44" - } -}, -{ - "type": "node", - "id": 12006695631, - "lat": 51.3272992, - "lon": -0.7101272, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12007227535, - "lat": 53.4528025, - "lon": 0.0841624, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN11 86" - } -}, -{ - "type": "node", - "id": 12007227697, - "lat": 53.4410573, - "lon": 0.0996474, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN11 95" - } -}, -{ - "type": "node", - "id": 12007403636, - "lat": 51.1603439, - "lon": -0.9568043, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 110D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12009104547, - "lat": 54.6596948, - "lon": -3.3668586, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CA13 89", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 12009807733, - "lat": 51.4836723, - "lon": -1.0849922, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "RG8 242", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12014990639, - "lat": 52.0321050, - "lon": 0.7928365, - "tags": { - "amenity": "post_box", - "image": "https://commons.wikimedia.org/wiki/File:Church_Road_Postbox_-_geograph.org.uk_-_3703903.jpg", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "CO10 1051", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12015476958, - "lat": 51.1628931, - "lon": -0.9678738, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 7D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12015523975, - "lat": 51.1604229, - "lon": -0.9721600, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 111D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12015523976, - "lat": 51.1599822, - "lon": -0.9686939, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU34 107D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12015523981, - "lat": 51.1561548, - "lon": -0.9701409, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "GU34 89D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12015858891, - "lat": 51.6860242, - "lon": -3.0256599, - "tags": { - "access": "customers", - "addr:city": "Griffithstown", - "addr:housenumber": "5", - "addr:postcode": "NP4 5HY", - "addr:street": "Windsor Road", - "amenity": "post_box", - "brand": "DPD", - "brand:wikidata": "Q541030", - "description": "Inside Co-Op", - "indoor": "yes", - "opening_hours": "Mo-Su 07:00-22:00", - "operator": "DPD", - "operator:wikidata": "Q541030", - "phone": "+44 1495 763 614", - "post_box:type": "yes", - "website": "https://www.coop.co.uk/store-finder/NP4-5HY/5-windsor-road" - } -}, -{ - "type": "node", - "id": 12015858894, - "lat": 51.7023861, - "lon": -2.9050409, - "tags": { - "access": "customers", - "addr:city": "Usk", - "addr:housenumber": "51", - "addr:postcode": "NP15 1BQ", - "addr:street": "Bridge Street", - "amenity": "post_box", - "brand": "DPD", - "brand:wikidata": "Q541030", - "description": "Inside Co-Op", - "indoor": "yes", - "opening_hours": "Mo-Su 06:00-22:00", - "operator": "DPD", - "operator:wikidata": "Q541030", - "phone": "+44 1291 673 174", - "post_box:type": "yes", - "website": "https://www.coop.co.uk/store-finder/NP15-1BQ/51-bridge-street" - } -}, -{ - "type": "node", - "id": 12017532458, - "lat": 51.1245907, - "lon": -0.3813457, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RH5 84D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017534423, - "lat": 54.8770357, - "lon": -1.6920649, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "DH9 219", - "survey:date": "2024-06-27" - } -}, -{ - "type": "node", - "id": 12017803098, - "lat": 51.8138872, - "lon": -1.4301381, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 315", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017803099, - "lat": 51.8196522, - "lon": -1.4391803, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX29 654", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017803100, - "lat": 51.8265517, - "lon": -1.3977420, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX29 180", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12017803101, - "lat": 51.8439511, - "lon": -1.4035376, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 738", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017803102, - "lat": 51.8549261, - "lon": -1.4299995, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 811" - } -}, -{ - "type": "node", - "id": 12017803103, - "lat": 51.8105764, - "lon": -1.4802315, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 307" - } -}, -{ - "type": "node", - "id": 12017803104, - "lat": 51.8117123, - "lon": -1.4880165, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "pillar", - "ref": "OX29 314", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017803105, - "lat": 51.8060279, - "lon": -1.5065949, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX29 302", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017803106, - "lat": 51.8143768, - "lon": -1.5550030, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX29 300" - } -}, -{ - "type": "node", - "id": 12017803107, - "lat": 51.8222874, - "lon": -1.5526853, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall", - "ref": "OX29 306", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 12017803108, - "lat": 51.7700510, - "lon": -1.5245911, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 705", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12017803109, - "lat": 51.7400094, - "lon": -1.4801091, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 276" - } -}, -{ - "type": "node", - "id": 12017803195, - "lat": 51.7339764, - "lon": -1.4312067, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "lamp", - "ref": "OX29 690" - } -}, -{ - "type": "node", - "id": 12018251962, - "lat": 51.2599500, - "lon": -0.9708121, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "RG29 239D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12020011292, - "lat": 51.5138848, - "lon": -2.6940048, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS11 287D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12020110056, - "lat": 51.9960476, - "lon": -2.0533450, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:design": "2010_pattern", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "GL20 14D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12020123086, - "lat": 51.8221954, - "lon": -2.4917127, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 12020145757, - "lat": 52.6912069, - "lon": -0.7523532, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12020367452, - "lat": 55.7004439, - "lon": -3.6198161, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML11 65", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12020464959, - "lat": 54.1867070, - "lon": -2.9204579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LA11 116D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12022602998, - "lat": 55.6389623, - "lon": -3.8863532, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "ML11 76" - } -}, -{ - "type": "node", - "id": 12022667472, - "lat": 53.0984793, - "lon": -2.3923486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "ref": "CW1 151D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12022785459, - "lat": 53.5054262, - "lon": -2.4707914, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12023071786, - "lat": 52.2532532, - "lon": -2.1660407, - "tags": { - "amenity": "post_box", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12023076239, - "lat": 52.7408862, - "lon": -1.1633311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 43D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12023124382, - "lat": 52.7491034, - "lon": -1.1755138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 162D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12023125175, - "lat": 52.7425598, - "lon": -1.1788138, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LE12 175D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12023741360, - "lat": 50.1362170, - "lon": -5.6839083, - "tags": { - "amenity": "post_box", - "ref": "TR19 8D", - "survey:date": "2024-06-30" - } -}, -{ - "type": "node", - "id": 12023806973, - "lat": 55.8060449, - "lon": -3.1124736, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2023-03-22", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH23 65D", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12023834046, - "lat": 52.4355931, - "lon": 1.6595706, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "NR34 3443", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12025358909, - "lat": 52.2278665, - "lon": -0.9793304, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12025580612, - "lat": 51.6034165, - "lon": -2.9701311, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12025580616, - "lat": 51.6149233, - "lon": -2.9670473, - "tags": { - "access": "yes", - "amenity": "post_box", - "covered": "no", - "drive_through": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12025580618, - "lat": 51.6035560, - "lon": -2.9778571, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12025717501, - "lat": 55.8763191, - "lon": -3.6290595, - "tags": { - "amenity": "post_box", - "check_date:ref": "2024-06-30", - "collection_plate": "CP7D", - "collection_plate:date": "2019-09-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Machan Scotland", - "note": "This post_box has the correct ref EH47 43D, the post_box on East Main Street should be EH47 41D EAST END", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH47 43D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12025724375, - "lat": 51.4721548, - "lon": -1.5180358, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12025801608, - "lat": 55.8285283, - "lon": -3.7059704, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1-LC", - "collection_times": "Mo-Fr 16:45; Sa 11:00", - "operator": "Royal Mail", - "post_box:type": "indoor_box", - "ref": "EH47 56", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12025804390, - "lat": 51.6028041, - "lon": -2.9929351, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12025824750, - "lat": 55.9142399, - "lon": -3.0949698, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-03-27", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH22 38D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12026059242, - "lat": 55.6235272, - "lon": -3.0162235, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP5-LC", - "collection_times": "Mo-Fr 17:15; Sa 12:30", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "EH43 45", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12026083007, - "lat": 55.8463588, - "lon": -3.2036865, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-11-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH26 108D", - "royal_cypher": "GVIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12026135115, - "lat": 55.8494317, - "lon": -3.2001633, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-11-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W T Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_pillar", - "post_box:type": "wall", - "ref": "EH26 100D", - "royal_cypher": "VR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12026253678, - "lat": 55.8294952, - "lon": -3.2016084, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2023-11-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "EH26 143D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12026354257, - "lat": 55.8811280, - "lon": -3.1934972, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-12-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH10 369D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12026706904, - "lat": 53.2690922, - "lon": -4.5180748, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12029490433, - "lat": 52.9651540, - "lon": -2.7503917, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12030115712, - "lat": 52.2706843, - "lon": 0.9896191, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8089", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12030129436, - "lat": 52.6624536, - "lon": -1.2240490, - "tags": { - "amenity": "post_box", - "post_box:design": "type_g", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12030885059, - "lat": 53.4119069, - "lon": -4.3322060, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "operator": "Post Office", - "operator:wikidata": "Q1783168" - } -}, -{ - "type": "node", - "id": 12031204516, - "lat": 51.9984692, - "lon": -2.2270113, - "tags": { - "amenity": "post_box", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12031549410, - "lat": 53.1140381, - "lon": -2.4533486, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "CW1 112D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12031660185, - "lat": 53.1073527, - "lon": -2.4454140, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "CW1 22D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12031748650, - "lat": 54.7324757, - "lon": -1.2617888, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:15; Sa 12:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS27 91" - } -}, -{ - "type": "node", - "id": 12031810306, - "lat": 54.7136325, - "lon": -1.2422734, - "tags": { - "amenity": "post_box", - "description": "has no label, maybe disused?" - } -}, -{ - "type": "node", - "id": 12031918876, - "lat": 54.6973467, - "lon": -1.2282633, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "TS24 19D" - } -}, -{ - "type": "node", - "id": 12031993717, - "lat": 51.4685191, - "lon": -2.4786211, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12033959179, - "lat": 54.5537140, - "lon": -1.2449933, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS5 44D" - } -}, -{ - "type": "node", - "id": 12034103900, - "lat": 51.5539200, - "lon": -0.5930392, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12034804018, - "lat": 52.0243233, - "lon": 0.9581105, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP7 1195", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 12034829177, - "lat": 52.0151808, - "lon": 0.9471440, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP7 1109" - } -}, -{ - "type": "node", - "id": 12034905716, - "lat": 51.6993448, - "lon": -1.6896944, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12035353029, - "lat": 52.1505206, - "lon": -2.8221900, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12035678967, - "lat": 50.8551774, - "lon": -3.8084311, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_n", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX17 72D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 12035678968, - "lat": 50.8629187, - "lon": -3.8040269, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EX17 118D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 12035764169, - "lat": 50.8526054, - "lon": -3.7938367, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "EX17 89D", - "source": "survey;aerial imagery" - } -}, -{ - "type": "node", - "id": 12036244691, - "lat": 51.5876717, - "lon": -2.9994699, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12036301661, - "lat": 50.8147480, - "lon": -4.1761780, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX21 66", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12036377821, - "lat": 51.5610936, - "lon": -1.7842588, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 13:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 801", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 12036377822, - "lat": 51.5610466, - "lon": -1.7831129, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN1 185", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12036591672, - "lat": 52.7752887, - "lon": -0.9910550, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "pillar", - "ref": "LE14 69D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12037440580, - "lat": 52.1545745, - "lon": -2.7858964, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12037577439, - "lat": 50.8081863, - "lon": -4.5223620, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX23 168D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12037650767, - "lat": 51.5917828, - "lon": -2.9419451, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su Off", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12037776431, - "lat": 51.6044407, - "lon": -3.0088586, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 87D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12037917107, - "lat": 51.3623605, - "lon": -2.3448916, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12038051646, - "lat": 52.6324876, - "lon": -0.7004336, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12038174710, - "lat": 51.9911910, - "lon": -1.3683867, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12038180584, - "lat": 55.4961401, - "lon": -3.7745158, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "ML12 8", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12038409393, - "lat": 51.5365086, - "lon": 0.0515705, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:30; Sa 11:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "E6 1", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12038443222, - "lat": 51.7825637, - "lon": -4.7223743, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12039795431, - "lat": 51.6192136, - "lon": -1.0713068, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 12040036126, - "lat": 50.7152973, - "lon": -2.4658428, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-01", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "DT1 1900D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12040099645, - "lat": 52.6328659, - "lon": -2.4723725, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-07", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TF7 136D", - "royal_cypher": "GR", - "royal_cypher:wikidata": "Q33102273" - } -}, -{ - "type": "node", - "id": 12040152429, - "lat": 53.0468613, - "lon": -2.9967773, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-08", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:apertures": "2", - "post_box:design": "type_c", - "post_box:type": "pillar", - "ref": "LL11 362D;LL11 9362D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12040222034, - "lat": 53.2907520, - "lon": -3.6834227, - "tags": { - "amenity": "post_box", - "check_date": "2024-06-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "LL29 28D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12040371788, - "lat": 51.6030255, - "lon": -2.9327632, - "tags": { - "access": "yes", - "addr:city": "Newport", - "addr:country": "GB", - "addr:place": "Coldra Woods", - "addr:postcode": "NP18 1HQ", - "amenity": "post_box", - "collection_times": "Mo-Fr 16:30; Sa Off; Su Off", - "colour": "red", - "covered": "yes", - "indoor": "yes", - "operator": "Royal Mail", - "operator:type": "business", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 12040402488, - "lat": 53.3084802, - "lon": -0.9429538, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "ref": "DN22 42D" - } -}, -{ - "type": "node", - "id": 12040533287, - "lat": 55.8008984, - "lon": -4.6228677, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA12 182", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12040533300, - "lat": 55.7983936, - "lon": -4.6244076, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PA12 75", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 12040533309, - "lat": 55.7977169, - "lon": -4.6308909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PA12 228", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12040533327, - "lat": 55.7966306, - "lon": -4.6326115, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PA12 166", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12040533328, - "lat": 55.7927161, - "lon": -4.6348354, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "PA12 74", - "royal_cypher": "VR" - } -}, -{ - "type": "node", - "id": 12040548203, - "lat": 51.4084528, - "lon": -2.5811561, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12040591248, - "lat": 51.8198406, - "lon": -2.4945479, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12041299506, - "lat": 51.6198407, - "lon": -2.8577540, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12041630607, - "lat": 51.4863776, - "lon": -3.2727753, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 15:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12042196706, - "lat": 52.6913764, - "lon": 1.7042761, - "tags": { - "amenity": "post_box", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12042705437, - "lat": 52.6736820, - "lon": 0.3934064, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12044059141, - "lat": 55.0187278, - "lon": -1.6459025, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12044539349, - "lat": 52.6345710, - "lon": -1.1426283, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "LE3 409D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12044777426, - "lat": 52.0218198, - "lon": 0.9990578, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall", - "ref": "IP7 1032", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12045231726, - "lat": 50.9344170, - "lon": -4.3301219, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX22 71", - "royal_cypher": "EVIIR" - } -}, -{ - "type": "node", - "id": 12045237435, - "lat": 50.9014800, - "lon": -4.3840680, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "EX23 87", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12045265616, - "lat": 50.8737658, - "lon": -4.4377088, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX23 110D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12045277085, - "lat": 50.9127883, - "lon": -4.3634981, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX22 78D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12047964851, - "lat": 50.9978771, - "lon": -4.1952545, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX39 38D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12047964852, - "lat": 50.9923020, - "lon": -4.2027614, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX39 177D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12047999155, - "lat": 50.8965650, - "lon": -4.1443951, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX38 129D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12048038708, - "lat": 51.5531316, - "lon": -1.7537346, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 311D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12048038709, - "lat": 51.5482136, - "lon": -1.7485234, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 318D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12048038710, - "lat": 51.5516337, - "lon": -1.7460070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 330D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12048038711, - "lat": 51.5502019, - "lon": -1.7534443, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 316D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12048038712, - "lat": 51.5480348, - "lon": -1.7614200, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 317D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12049174183, - "lat": 53.3131699, - "lon": -4.6400396, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12049242905, - "lat": 52.2183087, - "lon": -0.0684876, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:00", - "inscription": "This postbox is the first in the United Kingdom to be installed bearing the cypher of His Majesty Charles III 12 July 2024", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "CIIIR", - "royal_cypher:wikidata": "Q114242600", - "website": "https://www.royalmail.com/services-near-you/postbox/wm-morrisons-cb23-6bj/000CB23552" - } -}, -{ - "type": "node", - "id": 12050180873, - "lat": 54.2458885, - "lon": -1.7020161, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12050226108, - "lat": 52.2087133, - "lon": 1.1921058, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8046", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12050726020, - "lat": 55.8866888, - "lon": -3.7527781, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2017-04-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH48 48D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12050734930, - "lat": 51.5574995, - "lon": -1.7331134, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN3 361D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12050734931, - "lat": 51.5477672, - "lon": -1.7299257, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "SN3 376", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12050734932, - "lat": 51.5518099, - "lon": -1.7370860, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "SN3 360D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12050920741, - "lat": 51.5693882, - "lon": -0.1744318, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-13", - "collection_plate": "CP1D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "manufacturer": "Machan 20 Eng 09 Scotland", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "NW3 25D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12050951949, - "lat": 53.6152095, - "lon": -0.2129003, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:15; Sa 10:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "DN40 152", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12051029648, - "lat": 54.2537233, - "lon": -1.1837227, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12051845719, - "lat": 52.3121556, - "lon": 1.5527040, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5553" - } -}, -{ - "type": "node", - "id": 12051845733, - "lat": 52.3157165, - "lon": 1.5771644, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP19 5518", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12051845759, - "lat": 52.3188610, - "lon": 1.5613149, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5549" - } -}, -{ - "type": "node", - "id": 12051920596, - "lat": 54.8489180, - "lon": -2.7032639, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12051932670, - "lat": 51.5196617, - "lon": -0.8501278, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12052107108, - "lat": 50.5250305, - "lon": -4.7644330, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12052992086, - "lat": 57.1208171, - "lon": -2.1456757, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "AB10 159D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12052992089, - "lat": 57.1237326, - "lon": -2.1370692, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "AB10 517D", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12053288748, - "lat": 54.5609841, - "lon": -0.8251728, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12053330869, - "lat": 51.4587875, - "lon": -0.5477337, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12053333572, - "lat": 51.3122397, - "lon": -0.7414536, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 202D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12054021035, - "lat": 51.4392550, - "lon": -3.1751535, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12055295869, - "lat": 52.9922405, - "lon": -4.4242208, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12055354497, - "lat": 55.9705246, - "lon": -3.3763825, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2022-12-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH29 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12057122071, - "lat": 53.4937321, - "lon": -0.2362409, - "tags": { - "amenity": "post_box", - "check_date": "2024-07-15", - "collection_plate": "CP5D", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://i.postimg.cc/j2C78KQ8/LN7-152D.jpg", - "location": "Cuxwold", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_wall", - "post_box:type": "wall", - "ref": "LN7 152D", - "royal_cypher": "VR", - "royal_cypher:wikidata": "Q33102356", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12058069203, - "lat": 53.0098400, - "lon": -2.8665374, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12058124260, - "lat": 52.0798415, - "lon": 0.9992201, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "IP7 1207", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12058781873, - "lat": 51.1303182, - "lon": -4.2153423, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX33 254D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12058781874, - "lat": 51.1307043, - "lon": -4.2069627, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX33 216D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12058781875, - "lat": 51.1364856, - "lon": -4.1959358, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX33 13", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12058922177, - "lat": 54.8083164, - "lon": -6.5188304, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12059070097, - "lat": 53.8671024, - "lon": -2.2142880, - "tags": { - "amenity": "post_box", - "mapillary": "843045540557433", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12059085378, - "lat": 53.8608884, - "lon": -2.2083830, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "mapillary": "459421720126899", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12059095814, - "lat": 53.8509204, - "lon": -2.2163149, - "tags": { - "amenity": "post_box", - "mapillary": "847347413959583", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12059390847, - "lat": 53.6872016, - "lon": -2.3366805, - "tags": { - "amenity": "post_box", - "mapillary": "1132705834509517", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12059398749, - "lat": 53.6449477, - "lon": -2.3200657, - "tags": { - "amenity": "post_box", - "mapillary": "478335531549913", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 12059411335, - "lat": 53.8467100, - "lon": -2.2181633, - "tags": { - "amenity": "post_box", - "mapillary": "1001167438145257", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12059419186, - "lat": 53.6459203, - "lon": -2.3314558, - "tags": { - "amenity": "post_box", - "mapillary": "1172016160496680", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12059420582, - "lat": 53.9046553, - "lon": -2.2413491, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12059836175, - "lat": 51.3156220, - "lon": -0.7513309, - "tags": { - "Type": "Parcel Post Box", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:45", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 121P" - } -}, -{ - "type": "node", - "id": 12060110259, - "lat": 52.0884192, - "lon": 0.9833545, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12061263726, - "lat": 51.6279074, - "lon": 0.2959246, - "tags": { - "amenity": "post_box", - "mapillary": "460953299881681", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 12061267852, - "lat": 51.6442177, - "lon": 0.2825250, - "tags": { - "amenity": "post_box", - "mapillary": "445990564909687", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12061280653, - "lat": 51.6390288, - "lon": 0.3298171, - "tags": { - "amenity": "post_box", - "mapillary": "1494175071979705", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12061304305, - "lat": 51.6304143, - "lon": 0.3202302, - "tags": { - "amenity": "post_box", - "mapillary": "7798545296891627", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12063648743, - "lat": 51.6086350, - "lon": -3.0073859, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 17:30; Sa 11:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 82", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12063648744, - "lat": 51.6171271, - "lon": -3.0049975, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 205D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063648745, - "lat": 51.6122351, - "lon": -3.0047557, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP20 85D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063648746, - "lat": 51.6163922, - "lon": -3.0132501, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP20 62D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063648747, - "lat": 51.6152814, - "lon": -3.0020948, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 208D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063648750, - "lat": 51.6125944, - "lon": -3.0100825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP20 19D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063648752, - "lat": 51.6002426, - "lon": -3.0024267, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "NP20 88D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063648753, - "lat": 51.6076336, - "lon": -3.0040495, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "NP20 204D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12063680837, - "lat": 51.5718434, - "lon": -2.9446209, - "tags": { - "access": "yes", - "addr:city": "Newport", - "addr:housenumber": "12-13", - "addr:street": "Estuary Road", - "amenity": "post_box", - "collection_times": "Mo-Fr 18:00; Sa 12:30", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12063908792, - "lat": 51.0813260, - "lon": -4.0434019, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "EX32 28D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12065355907, - "lat": 55.9387295, - "lon": -3.1040586, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 17:30; Sa 12:00", - "indoor": "yes", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:design": "indoor_pillar", - "post_box:type": "pillar", - "ref": "EH15 263", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12065365992, - "lat": 56.0711368, - "lon": -4.3314524, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "G63 7" - } -}, -{ - "type": "node", - "id": 12065366031, - "lat": 56.0734592, - "lon": -4.3363072, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "G63 665", - "royal_cypher": "EVIIIR" - } -}, -{ - "type": "node", - "id": 12066600553, - "lat": 55.0729213, - "lon": -6.4782359, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "BT53 164D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12066607881, - "lat": 51.5604274, - "lon": -3.0259723, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12066607950, - "lat": 51.5565488, - "lon": -3.0215719, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Sa 16:00; Sa 11:30", - "covered": "yes", - "indoor": "yes", - "opening_hours": "Mo-Sa 06:00-00:00; Su 10:00-16:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "no" - } -}, -{ - "type": "node", - "id": 12066763822, - "lat": 54.4969748, - "lon": -1.6892243, - "tags": { - "amenity": "post_box", - "post_box:design": "type_n", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12066763845, - "lat": 54.4968289, - "lon": -1.6854352, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12066917302, - "lat": 55.9223632, - "lon": -3.3067176, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 15:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH11 998P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12066945380, - "lat": 55.9223551, - "lon": -3.3067338, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 19:30; Sa 15:00", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "EH11 997P", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12067792771, - "lat": 52.8215103, - "lon": 1.5068121, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2024-04-26", - "operator": "Royal Mail", - "ref": "NR12 1211D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12067793044, - "lat": 52.8364265, - "lon": 1.4872393, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "colour": "red", - "label_date": "2024-04-26", - "operator": "Royal Mail", - "post_box:mounting": "post", - "post_box:type": "lamp", - "ref": "NR28 2863D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12069462985, - "lat": 53.6476367, - "lon": -2.3108528, - "tags": { - "amenity": "post_box", - "mapillary": "1524351321496524", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12069470596, - "lat": 53.6457685, - "lon": -2.3081951, - "tags": { - "amenity": "post_box", - "mapillary": "813579927619526", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 12069476823, - "lat": 53.6316026, - "lon": -2.3000127, - "tags": { - "amenity": "post_box", - "mapillary": "940450384502939", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12069481583, - "lat": 53.2858578, - "lon": -2.4923526, - "tags": { - "amenity": "post_box", - "mapillary": "769991748682766", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "brick_pillar", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12069819420, - "lat": 55.1279812, - "lon": -1.5112370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "collection_times": "Mo-Fr 16:03; Sa 12:15", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "indoor", - "ref": "NE24 759", - "royal_cypher": "no", - "source": "survey", - "survey:date": "2024-07-22" - } -}, -{ - "type": "node", - "id": 12070458887, - "lat": 56.1167459, - "lon": -4.2985028, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "telegraph_pole", - "post_box:type": "lamp", - "ref": "FK8 32", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12070465558, - "lat": 55.9376733, - "lon": -4.2165238, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "G64 588", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12071102946, - "lat": 53.2414301, - "lon": -1.4306036, - "tags": { - "amenity": "post_box", - "not:operator:wikidata": "Q638098", - "operator": "Royal Mail", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12071294199, - "lat": 54.5504774, - "lon": -1.2610654, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "TS5 210D" - } -}, -{ - "type": "node", - "id": 12073264717, - "lat": 51.5683318, - "lon": 0.7839537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "SS3 149D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12073798139, - "lat": 51.5728609, - "lon": -0.3802415, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12073889508, - "lat": 51.3134759, - "lon": -0.7372876, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "colour": "Red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 196D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12073904302, - "lat": 51.3195264, - "lon": -0.7350720, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 109D" - } -}, -{ - "type": "node", - "id": 12073913257, - "lat": 51.3157527, - "lon": -0.7293046, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 5D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12073913258, - "lat": 51.3186088, - "lon": -0.7285073, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 90D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12073924199, - "lat": 51.3217867, - "lon": -0.7297818, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 16:30, Sat 12:30", - "colour": "Red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 200", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12074161904, - "lat": 52.2183469, - "lon": -1.4272868, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "brand:wikidata": "Q638098", - "brand:wikipedia": "en:Royal Mail", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "CV33 205D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12074213920, - "lat": 52.3257806, - "lon": 1.3922187, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5514", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12074213951, - "lat": 52.3132715, - "lon": 1.4334965, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5523", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12074214026, - "lat": 52.3139446, - "lon": 1.4217947, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP19 5515" - } -}, -{ - "type": "node", - "id": 12074575258, - "lat": 53.4209472, - "lon": -2.8675199, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12074575279, - "lat": 53.4188276, - "lon": -2.8659009, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12074575324, - "lat": 53.4196340, - "lon": -2.8538502, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12075008915, - "lat": 51.6659189, - "lon": -3.5179051, - "tags": { - "amenity": "post_box", - "mapillary": "1058758835809594", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12075013634, - "lat": 51.7504829, - "lon": -3.5725364, - "tags": { - "amenity": "post_box", - "mapillary": "985708006683557", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12075471613, - "lat": 53.4180047, - "lon": -2.8441646, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12075837214, - "lat": 51.5551921, - "lon": -3.0961507, - "tags": { - "access": "yes", - "addr:city": "Newport", - "addr:suburb": "Michaelstone-y-Fedw", - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 12077437408, - "lat": 50.8203358, - "lon": -2.9328694, - "tags": { - "amenity": "post_box", - "brand": "Post Office", - "brand:wikidata": "Q1783168", - "fixme": "location approximate", - "operator": "Post Office", - "operator:wikidata": "Q1783168", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12077553407, - "lat": 52.1607191, - "lon": 1.2156274, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "lamp", - "ref": "IP6 1058" - } -}, -{ - "type": "node", - "id": 12077553452, - "lat": 52.1576713, - "lon": 1.2304835, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP6 1126" - } -}, -{ - "type": "node", - "id": 12078412966, - "lat": 51.4139159, - "lon": -2.4826500, - "tags": { - "amenity": "post_box", - "collection_times": "9.00am Monday to Friday 7,00 am Saturday", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "BS31 664D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12078440292, - "lat": 54.1978004, - "lon": -2.8955825, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "LA11 110D" - } -}, -{ - "type": "node", - "id": 12078727497, - "lat": 52.7743396, - "lon": -1.2309579, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "LE11 173D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12079112206, - "lat": 53.6118649, - "lon": -2.1439121, - "tags": { - "amenity": "post_box", - "check_date": "2024-02-10", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OL16 73D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12080577941, - "lat": 51.6644275, - "lon": -3.2938234, - "tags": { - "amenity": "post_box", - "mapillary": "1965511960573511", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12080616335, - "lat": 51.6540258, - "lon": -3.2861172, - "tags": { - "amenity": "post_box", - "mapillary": "820460483541120", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12080694389, - "lat": 51.6538546, - "lon": -3.3375374, - "tags": { - "amenity": "post_box", - "mapillary": "1560938664523522", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "pier", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12080707475, - "lat": 51.6708434, - "lon": -3.2973969, - "tags": { - "amenity": "post_box", - "mapillary": "511529701359878", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "stone_wall", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12080762833, - "lat": 51.6584478, - "lon": -3.3451067, - "tags": { - "amenity": "post_box", - "mapillary": "3318942495079597", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "building", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12081545950, - "lat": 51.8019608, - "lon": -4.9686185, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12081545957, - "lat": 51.8258373, - "lon": -4.4683493, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12081547284, - "lat": 51.7690860, - "lon": -4.4637596, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12081547285, - "lat": 51.7318413, - "lon": -5.1669571, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12081547289, - "lat": 51.7542124, - "lon": -5.1165160, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12081547294, - "lat": 51.8017594, - "lon": -4.5312856, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12081547299, - "lat": 51.7426510, - "lon": -4.5586861, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12081547302, - "lat": 51.8675106, - "lon": -5.1252639, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12081547336, - "lat": 51.7487045, - "lon": -4.5665657, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12081547338, - "lat": 51.7897414, - "lon": -4.5244368, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12081547340, - "lat": 51.7563995, - "lon": -4.5096021, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12081547352, - "lat": 51.7741825, - "lon": -5.0999727, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12081547371, - "lat": 51.7424543, - "lon": -4.5591980, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12081828960, - "lat": 52.1935667, - "lon": 0.6816566, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "IP29 2135", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12082594970, - "lat": 51.3039536, - "lon": -0.7289134, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 17:00; Sa 11:30", - "colour": "Red", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "material": "steel", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "GU16 208", - "royal_cypher": "EIIR", - "source": "survey", - "support": "ground", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 12083874955, - "lat": 51.7830213, - "lon": -1.2799877, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "lamp", - "ref": "OX2 13D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12083959670, - "lat": 51.8029483, - "lon": -4.3592358, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12083959674, - "lat": 51.8444867, - "lon": -4.3443076, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12083959678, - "lat": 51.8384094, - "lon": -4.3466430, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12083959698, - "lat": 51.7983007, - "lon": -4.3653830, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12084139877, - "lat": 52.2508756, - "lon": 1.0823894, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_a", - "post_box:type": "pillar", - "ref": "IP14 8077" - } -}, -{ - "type": "node", - "id": 12084139886, - "lat": 52.2713609, - "lon": 1.0966131, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP23 7057" - } -}, -{ - "type": "node", - "id": 12084637996, - "lat": 51.3128645, - "lon": -0.7247773, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mon-Fri 09:00, Sat 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "material": "steel", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 94D", - "royal_cypher": "EIIR", - "source": "survey", - "support": "pole", - "wheelchair": "yes" - } -}, -{ - "type": "node", - "id": 12084715612, - "lat": 53.7029457, - "lon": -1.7830411, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12085322812, - "lat": 55.9250407, - "lon": -4.3388196, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12085322842, - "lat": 55.9249185, - "lon": -4.3509556, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12085486594, - "lat": 51.6650115, - "lon": -4.1253493, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12087048925, - "lat": 51.3117711, - "lon": -0.7284216, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 110D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12087309135, - "lat": 51.3084237, - "lon": -0.7039425, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 173D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12087355449, - "lat": 51.3115959, - "lon": -0.6975653, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar", - "ref": "GU16 81D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12087355805, - "lat": 51.3226700, - "lon": -0.7331856, - "tags": { - "amenity": "post_box", - "collection_times": "Mon - Fri 09:00, Sat 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "GU16 119D" - } -}, -{ - "type": "node", - "id": 12088247402, - "lat": 51.4791023, - "lon": -0.1329370, - "tags": { - "amenity": "post_box", - "brand": "Royal Mail", - "check_date": "2024-08-02", - "collection_plate": "CP1", - "collection_times": "Mo-Fr 16:00; Sa 12:00", - "colour": "red", - "manufacturer": "ROMEC", - "operator": "Royal Mail", - "post_box:apertures": "1", - "post_box:type": "pillar", - "ref": "SW8 1", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12088832599, - "lat": 51.4146511, - "lon": -1.5201626, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "royal_cypher": "yes" - } -}, -{ - "type": "node", - "id": 12089618320, - "lat": 51.6983068, - "lon": -2.5839191, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12089691587, - "lat": 52.0404953, - "lon": 0.8535916, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 389", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12089691588, - "lat": 52.0416603, - "lon": 0.8573832, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "CO10 102", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12090170059, - "lat": 50.8412412, - "lon": -2.8288876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12090330436, - "lat": 52.5986042, - "lon": 0.3739080, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:mounting": "concrete_post", - "post_box:type": "lamp", - "ref": "PE38 470D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12090860800, - "lat": 51.5867131, - "lon": -1.1204684, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OX10 1227D", - "royal_cypher": "EIIR", - "royal_cypher:wikidata": "Q33102113" - } -}, -{ - "type": "node", - "id": 12091383602, - "lat": 56.1539270, - "lon": -3.6368072, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "note": "reference number not visible", - "operator": "Royal Mail", - "post_box:type": "lamp", - "royal_cypher": "scottish_crown" - } -}, -{ - "type": "node", - "id": 12091445557, - "lat": 55.4286599, - "lon": -2.7787695, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12091540074, - "lat": 52.6251425, - "lon": -0.5595128, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "PE9 90" - } -}, -{ - "type": "node", - "id": 12091540075, - "lat": 52.6284061, - "lon": -0.5568534, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp", - "ref": "PE9 87" - } -}, -{ - "type": "node", - "id": 12091540076, - "lat": 52.6280276, - "lon": -0.5531077, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "PE9 37" - } -}, -{ - "type": "node", - "id": 12091626798, - "lat": 53.7223499, - "lon": -2.1101091, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00; Su off", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "OL14 141D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12092330944, - "lat": 53.6106309, - "lon": -2.1485735, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 18:30; Sa 13:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL16 62", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12092366661, - "lat": 53.6050285, - "lon": -2.1106008, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "wall", - "ref": "OL16 126D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12093080325, - "lat": 51.7150255, - "lon": -4.7331633, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12093080331, - "lat": 51.7213347, - "lon": -4.7273634, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12093080338, - "lat": 51.7245024, - "lon": -4.7187301, - "tags": { - "access": "yes", - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "covered": "no", - "drive_through": "no", - "indoor": "no", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12093691629, - "lat": 52.1344977, - "lon": -3.5334560, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12095032419, - "lat": 57.6822046, - "lon": -2.9476568, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:mounting": "wooden_post", - "post_box:type": "lamp" - } -}, -{ - "type": "node", - "id": 12095363304, - "lat": 52.0499915, - "lon": 1.0423475, - "tags": { - "amenity": "post_box", - "check_date:collection_times": "2023-08-05", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "image": "https://www.flickr.com/photos/200873507@N03/53905981149", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP8 1379D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12095984363, - "lat": 52.9306661, - "lon": -3.1677341, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 10:00", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12097015934, - "lat": 51.4525255, - "lon": -0.5747078, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00, Sa 07:00", - "operator": "Royal Mail" - } -}, -{ - "type": "node", - "id": 12097710238, - "lat": 53.4659543, - "lon": -2.1848597, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_b", - "post_box:type": "pillar", - "ref": "M18 523" - } -}, -{ - "type": "node", - "id": 12097977669, - "lat": 50.8515995, - "lon": -3.5121536, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12097981995, - "lat": 55.0688998, - "lon": -6.5231059, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12098481891, - "lat": 51.1841651, - "lon": -0.6980145, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "GU8 131D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12098593310, - "lat": 51.5365485, - "lon": -0.2350286, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "NW10 18D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12099126595, - "lat": 56.5516918, - "lon": -2.6041820, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098" - } -}, -{ - "type": "node", - "id": 12099590227, - "lat": 52.0470583, - "lon": -4.2465963, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12099607081, - "lat": 53.8299069, - "lon": -2.2169329, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BB9 119", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12099625101, - "lat": 53.8312441, - "lon": -2.2128352, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BB9 132", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12099625106, - "lat": 53.8333613, - "lon": -2.2165782, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "BB9 131", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12099625117, - "lat": 53.8342544, - "lon": -2.2130984, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_k", - "post_box:type": "pillar", - "ref": "BB9 127", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12099625118, - "lat": 53.8349588, - "lon": -2.2188715, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "BB9 112" - } -}, -{ - "type": "node", - "id": 12099625120, - "lat": 53.8358989, - "lon": -2.2157259, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "meter", - "ref": "BB9 227" - } -}, -{ - "type": "node", - "id": 12099625121, - "lat": 53.8359076, - "lon": -2.2157085, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:design": "type_g", - "post_box:type": "pillar", - "ref": "BB9 228" - } -}, -{ - "type": "node", - "id": 12100285274, - "lat": 56.5555145, - "lon": -2.5902128, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12100818832, - "lat": 51.6348564, - "lon": -0.0778909, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12101228760, - "lat": 51.1915156, - "lon": -2.5440012, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "lamp", - "ref": "BA4 2", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12101265681, - "lat": 55.5933444, - "lon": -3.3730497, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2021-07-12", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "Carron Company Stirlingshire", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "ML12 31D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12101293742, - "lat": 55.5861748, - "lon": -3.2652570, - "tags": { - "amenity": "post_box", - "collection_plate": "CP5D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "W.T.Allen & Co. London", - "operator": "Royal Mail", - "post_box:mounting": "stone_wall", - "post_box:type": "wall", - "ref": "EH45 15D", - "royal_cypher": "EVIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12101354109, - "lat": 55.8691316, - "lon": -3.1045798, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7", - "collection_plate:date": "2020-10-14", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH19 250", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12101360327, - "lat": 55.7532701, - "lon": -3.2761497, - "tags": { - "amenity": "post_box", - "collection_plate": "CP7D", - "collection_plate:date": "2024-04-23", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:design": "LB3426", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "EH46 100D", - "royal_cypher": "scottish_crown", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12101367138, - "lat": 52.0427273, - "lon": -2.7155142, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12101436950, - "lat": 52.7376416, - "lon": 0.3209744, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12101517466, - "lat": 52.1644013, - "lon": 0.9711809, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP14 8125", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12101732502, - "lat": 53.6061851, - "lon": -2.1050741, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:mounting": "pole", - "post_box:type": "lamp", - "ref": "OL16 37D", - "royal_cypher": "EIIR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12101746753, - "lat": 53.6195900, - "lon": -2.1374537, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "OL16 131D", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12101797947, - "lat": 54.2012315, - "lon": -5.8914450, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT33 55D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12102736351, - "lat": 53.4985827, - "lon": -0.3337070, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "LN7 388" - } -}, -{ - "type": "node", - "id": 12103161918, - "lat": 54.2041159, - "lon": -5.8924113, - "tags": { - "amenity": "post_box", - "colour": "red", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "lamp", - "ref": "BT33 48D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12103247004, - "lat": 52.6071487, - "lon": -0.4419845, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "post_box:type": "lamp", - "ref": "PE8 64" - } -}, -{ - "type": "node", - "id": 12103437516, - "lat": 52.7064272, - "lon": 0.4638475, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12103464365, - "lat": 52.6709229, - "lon": 0.4252241, - "tags": { - "amenity": "post_box", - "post_box:type": "wall", - "royal_cypher": "GVIR" - } -}, -{ - "type": "node", - "id": 12103894456, - "lat": 54.1977979, - "lon": -5.8871153, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "post_box:type": "wall", - "ref": "BT33 58D", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12103993688, - "lat": 51.5752761, - "lon": -0.3519724, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "post_box:type": "pillar", - "ref": "HA1173D", - "royal_cypher": "GR" - } -}, -{ - "type": "node", - "id": 12104079176, - "lat": 51.8655807, - "lon": -2.4483593, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:type": "wall" - } -}, -{ - "type": "node", - "id": 12105336620, - "lat": 54.5297220, - "lon": -7.5322744, - "tags": { - "amenity": "post_box", - "post_box:type": "lamp", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12105944761, - "lat": 51.9603591, - "lon": -3.3750879, - "tags": { - "amenity": "post_box", - "post_box:type": "pillar" - } -}, -{ - "type": "node", - "id": 12106457222, - "lat": 52.8030677, - "lon": -4.7380485, - "tags": { - "amenity": "post_box", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "operator": "Royal Mail", - "operator:wikidata": "Q638098", - "ref": "LL53 21D" - } -}, -{ - "type": "node", - "id": 12108100470, - "lat": 55.9553307, - "lon": -3.1882356, - "tags": { - "amenity": "post_box", - "collection_plate": "CP1D", - "collection_plate:date": "2023-08-25", - "collection_times": "Mo-Fr 09:00; Sa 07:00", - "manufacturer": "ROMEC", - "operator": "Royal Mail", - "post_box:type": "indoor_pillar", - "ref": "EH1 999D", - "royal_cypher": "no", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12108127731, - "lat": 55.9671878, - "lon": -3.1744875, - "tags": { - "amenity": "post_box", - "collection_plate": "SCP1", - "collection_times": "Mo-Fr 17:00; Sa 12:00", - "manufacturer": "McDowall, Steven & Co. Ltd. London & Falkirk", - "operator": "Royal Mail", - "post_box:type": "pillar", - "ref": "EH6 139", - "royal_cypher": "GR", - "source": "survey" - } -}, -{ - "type": "node", - "id": 12108205099, - "lat": 51.5209092, - "lon": -3.1846678, - "tags": { - "amenity": "post_box" - } -}, -{ - "type": "node", - "id": 12109193583, - "lat": 52.1288896, - "lon": 0.6688989, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "building", - "post_box:type": "wall", - "ref": "IP29 2013", - "royal_cypher": "EIIR" - } -}, -{ - "type": "node", - "id": 12109294242, - "lat": 52.1462026, - "lon": 0.6745876, - "tags": { - "amenity": "post_box", - "operator": "Royal Mail", - "post_box:mounting": "pier", - "post_box:type": "lamp", - "ref": "IP29 2136", - "royal_cypher": "EIIR" - } -} - - ] -} diff --git a/lib/admin/admin_reports_screen.dart b/lib/admin/admin_reports_screen.dart index 4f53630..965295f 100644 --- a/lib/admin/admin_reports_screen.dart +++ b/lib/admin/admin_reports_screen.dart @@ -15,16 +15,28 @@ import 'package:url_launcher/url_launcher.dart'; /// holding the `admin` custom claim (see [AdminAccess]). Accepting a report /// calls the `reviewReport` Cloud Function, which updates the Firestore postbox /// entry, re-scores affected claims, and generates an osmChange file. -class AdminReportsScreen extends StatelessWidget { +class AdminReportsScreen extends StatefulWidget { const AdminReportsScreen({super.key}); + @override + State createState() => _AdminReportsScreenState(); +} + +class _AdminReportsScreenState extends State { static const _statuses = ['pending', 'accepted', 'rejected']; static const _labels = {'pending': 'Pending', 'accepted': 'Accepted', 'rejected': 'Rejected'}; + // Force a token refresh once on entry to pick up a freshly-granted admin + // claim, then cache the result so a Theme/orientation rebuild doesn't + // re-issue `getIdTokenResult(forceRefresh: true)` (a Firebase Auth network + // round-trip). + late final Future _adminCheck = + AdminAccess.isAdmin(forceRefresh: true); + @override Widget build(BuildContext context) { return FutureBuilder( - future: AdminAccess.isAdmin(forceRefresh: true), + future: _adminCheck, builder: (context, snap) { if (!snap.hasData) { return const Scaffold(body: Center(child: CircularProgressIndicator(color: postalRed))); @@ -361,21 +373,57 @@ class _ReviewOutcome extends StatelessWidget { icon: const Icon(Icons.open_in_new, size: 16), label: const Text('OSM editor'), ), - if (accepted && oscPath != null) Text('osmChange: $oscPath', style: Theme.of(context).textTheme.bodySmall), + if (accepted && oscPath != null) + // Match the post-accept dialog: surface the storage path with a + // copy button so the admin can paste it into the Firebase console + // to download the .osc, rather than scraping it from the text. + Row( + children: [ + Expanded( + child: Text('osmChange: $oscPath', + style: Theme.of(context).textTheme.bodySmall), + ), + IconButton( + icon: const Icon(Icons.copy, size: 18), + tooltip: 'Copy storage path', + visualDensity: VisualDensity.compact, + onPressed: () => Clipboard.setData(ClipboardData(text: oscPath)), + ), + ], + ), ], ), ); } } -class _PhotoThumb extends StatelessWidget { +class _PhotoThumb extends StatefulWidget { const _PhotoThumb({required this.photo}); final Map photo; + @override + State<_PhotoThumb> createState() => _PhotoThumbState(); +} + +class _PhotoThumbState extends State<_PhotoThumb> { + /// Cached download URL future — built once per path so a parent rebuild + /// (Accept tap, photo dialog open, sibling busy toggling) doesn't fire a + /// fresh Storage round-trip per thumb on every frame. + Future? _urlFuture; + String? _lastPath; + + Future _urlFor(String path) { + if (_urlFuture == null || _lastPath != path) { + _lastPath = path; + _urlFuture = FirebaseStorage.instance.ref(path).getDownloadURL(); + } + return _urlFuture!; + } + @override Widget build(BuildContext context) { - final path = photo['storagePath'] as String?; - final hasGps = photo['exifLat'] != null && photo['exifLng'] != null; + final path = widget.photo['storagePath'] as String?; + final hasGps = widget.photo['exifLat'] != null && widget.photo['exifLng'] != null; return Padding( padding: const EdgeInsets.only(right: AppSpacing.sm), child: GestureDetector( @@ -390,7 +438,7 @@ class _PhotoThumb extends StatelessWidget { child: path == null ? const ColoredBox(color: Colors.black12, child: Icon(Icons.broken_image_outlined)) : FutureBuilder( - future: FirebaseStorage.instance.ref(path).getDownloadURL(), + future: _urlFor(path), builder: (_, s) => s.hasData // Decode at thumbnail size — uploaded photos can // be 2400 px on the long edge, which would chew @@ -412,11 +460,13 @@ class _PhotoThumb extends StatelessWidget { } Future _open(BuildContext context, String path) async { - final url = await FirebaseStorage.instance.ref(path).getDownloadURL(); + // Reuse the cached URL future (same Storage download URL) instead of + // firing a fresh getDownloadURL request on every tap. + final url = await _urlFor(path); if (!context.mounted) return; - final exifLat = (photo['exifLat'] as num?)?.toDouble(); - final exifLng = (photo['exifLng'] as num?)?.toDouble(); - final takenAt = photo['takenAt'] as String?; + final exifLat = (widget.photo['exifLat'] as num?)?.toDouble(); + final exifLng = (widget.photo['exifLng'] as num?)?.toDouble(); + final takenAt = widget.photo['takenAt'] as String?; showDialog( context: context, builder: (ctx) => Dialog( diff --git a/lib/analytics_service.dart b/lib/analytics_service.dart index 47abc4a..f36fc98 100644 --- a/lib/analytics_service.dart +++ b/lib/analytics_service.dart @@ -10,7 +10,13 @@ class Analytics { static final FirebaseAnalytics _fa = FirebaseAnalytics.instance; - static FirebaseAnalyticsObserver get observer => + // One shared observer for the app lifetime — `navigatorObservers` is read + // on every MaterialApp build, so a getter that returned a fresh + // FirebaseAnalyticsObserver each time would create one new observer per + // PostboxGame rebuild and immediately orphan the previous one. The + // observer holds RouteObserver subscriber lists, so this is wasted work + // and a minor memory churn even though it's not a true leak. + static final FirebaseAnalyticsObserver observer = FirebaseAnalyticsObserver(analytics: _fa); // --------------------------------------------------------------------------- diff --git a/lib/claim.dart b/lib/claim.dart index f9c0ae1..7a88700 100644 --- a/lib/claim.dart +++ b/lib/claim.dart @@ -1,10 +1,6 @@ import 'dart:async'; -import 'package:cloud_functions/cloud_functions.dart'; -import 'package:confetti/confetti.dart'; import 'package:flutter/material.dart'; -import 'package:flutter/services.dart'; -import 'package:flutter_map/flutter_map.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:geolocator/geolocator.dart'; import 'package:latlong2/latlong.dart'; @@ -13,26 +9,35 @@ import 'package:postbox_game/app_preferences.dart'; import 'package:postbox_game/james_controller.dart'; import 'package:postbox_game/james_messages.dart'; import 'package:postbox_game/location_service.dart'; -import 'package:postbox_game/monarch_info.dart'; -import 'package:postbox_game/reports/report_missing_postbox_screen.dart'; -import 'package:postbox_game/services/home_widget_service.dart'; import 'package:postbox_game/streak_service.dart'; import 'package:postbox_game/theme.dart'; -import 'package:postbox_game/widgets/postbox_map.dart'; -import 'package:postbox_game/widgets/postbox_marker.dart'; +import 'package:postbox_game/widgets/claim_quiz_sheet.dart'; -enum ClaimStage { initial, searching, results, empty, quiz, quizFailed, claimed } +// ───────────────────────────────────────────────────────────────────────────── +// Stage enum +// ───────────────────────────────────────────────────────────────────────────── + +/// The three top-level states owned by the [Claim] screen. +/// +/// Everything from `searching` onward is managed by [ClaimQuizSheet]. +enum ClaimStage { initial, scanning, quizzing } + +// ───────────────────────────────────────────────────────────────────────────── +// Theme helpers +// ───────────────────────────────────────────────────────────────────────────── -Color _success(BuildContext c) => Theme.of(c).brightness == Brightness.dark - ? AppColors.successTextDark - : AppColors.successTextLight; Color _warning(BuildContext c) => Theme.of(c).brightness == Brightness.dark ? AppColors.warningTextDark : AppColors.warningTextLight; + Color _error(BuildContext c) => Theme.of(c).brightness == Brightness.dark ? AppColors.errorTextDark : AppColors.errorTextLight; +// ───────────────────────────────────────────────────────────────────────────── +// Widget +// ───────────────────────────────────────────────────────────────────────────── + class Claim extends StatefulWidget { const Claim({super.key, this.autoScan = false}); @@ -44,155 +49,44 @@ class Claim extends StatefulWidget { State createState() => _ClaimState(); } -class _ClaimState extends State with TickerProviderStateMixin { - int _count = 0; - int _maxPoints = 0; - int _minPoints = 0; - int _claimedToday = 0; - Map _postboxes = {}; - String? _quizCipher; - String? _selectedAnswer; - List _quizOptions = []; +class _ClaimState extends State { + ClaimStage _stage = ClaimStage.initial; + LatLng? _scanPosition; DistanceUnit _distanceUnit = DistanceUnit.meters; - int _pointsEarned = 0; - int _claimedCount = 0; - bool _isClaiming = false; - Position? _scanPosition; - - ClaimStage currentStage = ClaimStage.initial; - late AnimationController _successController; - late Animation _successScale; - late AnimationController _pulseController; - late Animation _pulseAnim; - late ConfettiController _confettiController; + final StreakService _streakService = StreakService(); // Cached so StreamBuilder doesn't re-subscribe on every rebuild. late final Stream _streakStream = _streakService.streakStream(); @override void initState() { super.initState(); - _successController = AnimationController( - vsync: this, - duration: const Duration(milliseconds: 600), - ); - _successScale = CurvedAnimation( - parent: _successController, - curve: Curves.elasticOut, - ); - _confettiController = ConfettiController(duration: const Duration(seconds: 3)); - _pulseController = AnimationController( - vsync: this, - duration: const Duration(milliseconds: 1200), - )..repeat(reverse: true); - _pulseAnim = CurvedAnimation(parent: _pulseController, curve: Curves.easeInOut); AppPreferences.getDistanceUnit().then((unit) { if (mounted) setState(() => _distanceUnit = unit); }); if (widget.autoScan) { WidgetsBinding.instance.addPostFrameCallback((_) { - if (mounted) unawaited(_startSearch()); + if (mounted) unawaited(_startScan()); }); } } - @override - void dispose() { - _successController.dispose(); - _pulseController.dispose(); - _confettiController.dispose(); - super.dispose(); - } + // ── Location acquisition ────────────────────────────────────────────────── - final HttpsCallable _callable = - FirebaseFunctions.instance.httpsCallable('nearbyPostboxes'); - final HttpsCallable _claimCallable = - FirebaseFunctions.instance.httpsCallable('startScoring'); - final StreakService _streakService = StreakService(); - final HomeWidgetService _homeWidgetService = HomeWidgetService(); + Future _startScan() async { + if (_stage != ClaimStage.initial) return; + setState(() => _stage = ClaimStage.scanning); - Future _startSearch() async { - // Guard against concurrent calls (e.g. pull-to-refresh + Refresh button - // both firing before the next frame rebuilds the UI). - if (currentStage == ClaimStage.searching) return; - setState(() => currentStage = ClaimStage.searching); - Analytics.scanStarted(); try { _distanceUnit = await AppPreferences.getDistanceUnit(); final position = await getPosition(); - if (mounted) setState(() => _scanPosition = position); - final result = await _callable.call({ - 'lat': position.latitude, - 'lng': position.longitude, - 'meters': AppPreferences.claimRadiusMeters, - }); if (!mounted) return; - final data = Map.from(result.data as Map); - final counts = Map.from(data['counts'] as Map); - final points = Map.from(data['points'] as Map); - final rawPostboxes = data['postboxes'] as Map? ?? {}; - final postboxes = {}; - for (final entry in rawPostboxes.entries) { - postboxes[entry.key as String] = - Map.from(entry.value as Map); - } - // Cloud Functions serialise JS numbers as either int or double; - // assigning a double to a typed int field throws, so normalise via num. - int asInt(dynamic v) => (v as num?)?.toInt() ?? 0; setState(() { - _count = asInt(counts['total']); - _maxPoints = asInt(points['max']); - _minPoints = asInt(points['min']); - _claimedToday = asInt(counts['claimedToday']); - _postboxes = postboxes; - currentStage = _count > 0 ? ClaimStage.results : ClaimStage.empty; + _scanPosition = LatLng(position.latitude, position.longitude); + _stage = ClaimStage.quizzing; }); - if (_count > 0) { - Analytics.scanComplete( - count: _count, - claimedToday: _claimedToday, - minPoints: _minPoints, - maxPoints: _maxPoints, - ); - if (mounted && _claimedToday == _count) { - JamesController.of(context) - ?.show(JamesMessages.claimErrorAlreadyClaimed.resolve()); - } else if (mounted && _claimedToday < _count) { - // Streamline: if there's at least one unclaimed postbox in range, go - // straight to the cipher quiz rather than parking on the results - // page and waiting for a tap. _startQuiz short-circuits to - // _claimPostbox when no nearby unclaimed box has a known cipher, so - // plain-box-only scans skip the quiz entirely. - _startQuiz(); - } - } else { - Analytics.scanEmpty(); - if (mounted) { - JamesController.of(context) - ?.show(JamesMessages.claimScanEmpty.resolve()); - } - } - } on FirebaseFunctionsException catch (e) { - debugPrint('Firebase functions error: ${e.code} ${e.message}'); - final isOffline = e.code == 'unavailable'; - _showErrorSnackBar(isOffline - ? 'No internet connection. Please try again.' - : 'Could not scan for postboxes. Please try again.'); - if (!mounted) return; - JamesController.of(context)?.show( - isOffline - ? JamesMessages.errorOffline.resolve() - : JamesMessages.claimErrorGeneral.resolve(), - ); - setState(() => currentStage = ClaimStage.initial); - } on TimeoutException { - _showErrorSnackBar( - 'GPS signal timed out. Move to an open area and try again.'); - if (!mounted) return; - JamesController.of(context)?.show(JamesMessages.claimErrorGeneral.resolve()); - setState(() => currentStage = ClaimStage.initial); } catch (e) { - debugPrint('Error scanning: $e'); + if (!mounted) return; final raw = e.toString(); if (raw.contains('permanently denied')) { unawaited(Analytics.locationPermissionPermanentlyDenied()); @@ -202,317 +96,43 @@ class _ClaimState extends State with TickerProviderStateMixin { } else { _showErrorSnackBar(raw.startsWith('Exception: ') ? raw.replaceFirst('Exception: ', '') - : 'Could not scan for postboxes. Please try again.'); + : 'Could not get your location. Please try again.'); } - if (!mounted) return; final msg = raw.contains('permission') ? JamesMessages.nearbyErrorPermission.resolve() : JamesMessages.claimErrorGeneral.resolve(); JamesController.of(context)?.show(msg); - setState(() => currentStage = ClaimStage.initial); - } finally { - // Safety net: ensure we never get permanently stuck in 'searching' state - // if an unexpected Dart Error bypasses the catch blocks above. - if (mounted && currentStage == ClaimStage.searching) { - setState(() => currentStage = ClaimStage.initial); - } - } - } - - Future _claimPostbox() async { - // Guard against concurrent calls (e.g. rapid double-tap before the frame - // rebuild disables the button). _isClaiming is set synchronously inside - // setState, so this check is effective even before the next build. - if (_isClaiming) return; - setState(() => _isClaiming = true); - HapticFeedback.mediumImpact(); - try { - final position = await getPosition(); - final result = await _claimCallable.call({ - 'lat': position.latitude, - 'lng': position.longitude, - }); - final claimData = Map.from(result.data as Map); - final found = claimData['found'] == true; - final allClaimedToday = claimData['allClaimedToday'] == true; - final rawClaimed = claimData['claimed'] ?? 0; - final claimedCount = rawClaimed is int ? rawClaimed : (rawClaimed as num).toInt(); - - if (!found) { - // User moved out of range between scan and claim. - Analytics.claimFailed(reason: 'out_of_range'); - if (!mounted) return; - setState(() => _isClaiming = false); - JamesController.of(context)?.show(JamesMessages.claimOutOfRange.resolve()); - await _startSearch(); - return; - } - if (allClaimedToday || claimedCount == 0) { - Analytics.claimFailed(reason: 'already_claimed_today'); - if (!mounted) return; - setState(() => _isClaiming = false); - _showErrorSnackBar('Already claimed today — come back tomorrow!'); - JamesController.of(context)?.show(JamesMessages.claimErrorAlreadyClaimed.resolve()); - await _startSearch(); - return; - } - final points = claimData['points'] ?? 0; - if (!mounted) return; - final earnedPts = points is int ? points : (points as num).toInt(); - Analytics.claimSuccess(pointsEarned: earnedPts, claimedCount: claimedCount); - setState(() { - _pointsEarned = earnedPts; - _claimedCount = claimedCount; - _isClaiming = false; - currentStage = ClaimStage.claimed; - }); - unawaited(_homeWidgetService.refresh()); - _successController.forward(from: 0); - _confettiController.play(); - // Streak update is performed server-side in startScoring (Admin SDK), - // because Firestore rules restrict client writes on users/{uid} to - // the friends array only. The streakStream in this widget reflects - // the updated value via the existing Firestore listener. - if (mounted) { - final String msg; - if (_claimedCount > 1) { - msg = JamesMessages.claimSuccessMulti(_claimedCount, _pointsEarned); - } else { - // Fire the rare message when the per-box score indicates a rare cipher - // (VR=7, EVIIR/CIIIR=9, EVIIIR=12 all score ≥ 7). - final avgPts = _claimedCount > 0 ? _pointsEarned / _claimedCount : 0; - msg = avgPts >= 7 - ? JamesMessages.claimSuccessRare.resolve() - : JamesMessages.claimSuccessStandard.resolve(); - } - JamesController.of(context)?.show(msg); - } - } on FirebaseFunctionsException catch (e) { - debugPrint('Claim error: ${e.code} ${e.message}'); - Analytics.claimFailed(reason: e.code); - final snackMsg = e.code == 'unavailable' - ? 'No internet connection. Please try again.' - : 'Could not claim postbox. Please try again.'; - _showErrorSnackBar(snackMsg); - if (!mounted) return; - setState(() => _isClaiming = false); - final msg = (e.code == 'unavailable') - ? JamesMessages.errorOffline.resolve() - : JamesMessages.claimErrorGeneral.resolve(); - JamesController.of(context)?.show(msg); - } catch (e) { - debugPrint('Claim error: $e'); - final raw = e.toString(); - final isPermission = raw.contains('permission'); - final msg = isPermission - ? JamesMessages.nearbyErrorPermission.resolve() - : JamesMessages.claimErrorGeneral.resolve(); - if (raw.contains('permanently denied')) { - unawaited(Analytics.locationPermissionPermanentlyDenied()); - _showPermissionDeniedSnackBar(); - } else if (raw.contains('services are disabled')) { - _showLocationServicesDisabledSnackBar(); - } else { - _showErrorSnackBar(isPermission - ? raw.replaceFirst('Exception: ', '') - : 'Could not claim postbox. Please try again.'); - } - if (!mounted) return; - setState(() => _isClaiming = false); - JamesController.of(context)?.show(msg); - } finally { - // Safety net: ensure _isClaiming is always cleared even if an unexpected - // Dart Error (not Exception) bypasses the catch blocks above. - if (mounted && _isClaiming) setState(() => _isClaiming = false); + setState(() => _stage = ClaimStage.initial); } } - /// Distinct known ciphers currently on nearby unclaimed postboxes — any of - /// these counts as a correct quiz answer. Recomputed at quiz start. - Set _validQuizCiphers = const {}; + // ── Quiz completion ─────────────────────────────────────────────────────── - Set _collectValidCiphers() { - final ciphers = {}; - for (final p in _postboxes.values) { - final map = p as Map; - if (map['claimedToday'] == true) continue; - final monarch = map['monarch']; - // Only include ciphers in MonarchInfo.all so the quiz can always build - // a valid answer pool. An unknown OSM cipher would appear as the - // "correct" answer but never be in the options list, making the quiz - // unpassable. Postboxes with unknown ciphers are still claimed directly. - if (monarch != null && - monarch is String && - monarch.isNotEmpty && - MonarchInfo.all.contains(monarch)) { - ciphers.add(monarch); - } + /// Called by [ClaimQuizSheet] when the flow reaches any terminal state. + /// Shows a brief SnackBar on success and resets to [ClaimStage.initial]. + void _onQuizCompleted(ClaimQuizResult result) { + if (!mounted) return; + if (result.claimedCount > 0) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(result.claimedCount > 1 + ? '${result.claimedCount} postboxes claimed! +${result.pointsEarned} pts' + : 'Postbox claimed! +${result.pointsEarned} pts'), + ), + ); } - return ciphers; + _resetToInitial(); } - /// Builds 4 quiz options that always include every nearby valid cipher (so - /// the user can pick the one they actually see), padded with distractors - /// from the rest of the catalogue. With more than 4 valid nearby ciphers - /// (very rare) only [maxOptions] of them appear — the rest are still - /// accepted as correct by [_onQuizAnswer], they just don't get an option - /// row in this round. - List _buildQuizOptions(Set validCiphers, - {int maxOptions = 4}) { - final valid = validCiphers.toList()..shuffle(); - final pickedValid = valid.take(maxOptions).toList(); - final pool = List.from(MonarchInfo.all) - ..removeWhere(pickedValid.contains) - ..shuffle(); - final fillers = pool.take(maxOptions - pickedValid.length).toList(); - return ([...pickedValid, ...fillers]..shuffle()); - } - - void _startQuiz() { - final valid = _collectValidCiphers(); - if (valid.isEmpty) { - unawaited(_claimPostbox()); - return; - } - // Track for analytics (which cipher we framed the prompt around) — the - // user can pass by recognising ANY cipher actually on a nearby unclaimed - // box, see _onQuizAnswer. - final ciphers = valid.toList()..shuffle(); - final picked = ciphers.first; - Analytics.quizStarted(cipher: picked); + void _resetToInitial() { + if (!mounted) return; setState(() { - _quizCipher = picked; - _validQuizCiphers = valid; - _quizOptions = _buildQuizOptions(valid); - _selectedAnswer = null; - currentStage = ClaimStage.quiz; + _stage = ClaimStage.initial; + _scanPosition = null; }); } - void _onQuizAnswer(String answer) { - setState(() => _selectedAnswer = answer); - if (_validQuizCiphers.contains(answer)) { - Analytics.quizCorrect(cipher: answer); - HapticFeedback.lightImpact(); - unawaited(_claimPostbox()); - } else { - Analytics.quizIncorrect( - correctCipher: _quizCipher!, - selectedCipher: answer, - ); - HapticFeedback.heavyImpact(); - setState(() => currentStage = ClaimStage.quizFailed); - if (mounted) { - JamesController.of(context) - ?.show(JamesMessages.quizFailed.resolve()); - } - } - } - - Widget _claimRadiusMap(Position position, {bool scanning = false, bool success = false}) { - final center = LatLng(position.latitude, position.longitude); - if (scanning) { - return AnimatedBuilder( - animation: _pulseAnim, - builder: (_, __) { - final alpha = 0.35 + _pulseAnim.value * 0.45; - final strokeWidth = 2.0 + _pulseAnim.value * 3.0; - return Card( - clipBehavior: Clip.antiAlias, - child: SizedBox( - height: 180, - child: PostboxMap( - center: center, - zoom: 17, - interactionOptions: const InteractionOptions(flags: InteractiveFlag.none), - circleMarkers: [ - CircleMarker( - point: center, - radius: AppPreferences.claimRadiusMeters, - useRadiusInMeter: true, - color: postalRed.withValues(alpha: 0.1), - borderColor: postalRed.withValues(alpha: 0.4 + alpha * 0.5), - borderStrokeWidth: strokeWidth, - ), - ], - markers: [userPositionMarker(center)], - bottomPadding: 0, - ), - ), - ); - }, - ); - } - final mutedFill = Theme.of(context).brightness == Brightness.dark - ? AppColors.mutedTextDark - : AppColors.mutedTextLight; - final borderColor = success - ? postalGold.withValues(alpha: 0.7) - : mutedFill.withValues(alpha: 0.6); - final fillColor = success ? postalGold : mutedFill; - return Card( - clipBehavior: Clip.antiAlias, - child: SizedBox( - height: 180, - child: PostboxMap( - center: center, - zoom: 17, - interactionOptions: const InteractionOptions(flags: InteractiveFlag.none), - circleMarkers: [ - CircleMarker( - point: center, - radius: AppPreferences.claimRadiusMeters, - useRadiusInMeter: true, - color: fillColor.withValues(alpha: 0.12), - borderColor: borderColor, - borderStrokeWidth: 3, - ), - ], - markers: [userPositionMarker(center)], - bottomPadding: 0, - ), - ), - ); - } - - Widget _buildAllClaimedBanner(BuildContext context) { - return Container( - padding: const EdgeInsets.symmetric( - horizontal: AppSpacing.md, vertical: AppSpacing.sm), - decoration: BoxDecoration( - color: _warning(context).withValues(alpha: 0.10), - borderRadius: BorderRadius.circular(12), - border: Border.all(color: _warning(context).withValues(alpha: 0.40)), - ), - child: Row( - children: [ - Icon(Icons.lock_clock, color: _warning(context)), - const SizedBox(width: AppSpacing.sm), - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - mainAxisSize: MainAxisSize.min, - children: [ - Text( - 'Already claimed today', - style: TextStyle( - color: _warning(context), - fontWeight: FontWeight.w600), - ), - Text( - 'Resets at midnight · London time', - style: Theme.of(context) - .textTheme - .bodySmall - ?.copyWith(color: _warning(context)), - ), - ], - ), - ), - ], - ), - ); - } + // ── SnackBar helpers ─────────────────────────────────────────────────────── void _showErrorSnackBar(String message) { if (!mounted) return; @@ -554,133 +174,31 @@ class _ClaimState extends State with TickerProviderStateMixin { ); } + // ── Build ───────────────────────────────────────────────────────────────── + @override Widget build(BuildContext context) { - return _buildBody(context); - } - - Widget _buildBody(BuildContext context) { - switch (currentStage) { - case ClaimStage.initial: - return _buildInitial(context); - case ClaimStage.searching: - return _buildSearching(context); - case ClaimStage.results: - return _buildResults(context); - case ClaimStage.empty: - return _buildEmpty(context); - case ClaimStage.quiz: - return _buildQuiz(context); - case ClaimStage.quizFailed: - return _buildQuizFailed(context); - case ClaimStage.claimed: - return _buildClaimed(context); + // While acquiring position, show a brief loading indicator so the user + // gets immediate feedback on tap. + if (_stage == ClaimStage.scanning) { + return const Center(child: CircularProgressIndicator(color: postalRed)); } - } - Widget _buildInitial(BuildContext context) { - return LayoutBuilder( - builder: (context, constraints) => SingleChildScrollView( - padding: const EdgeInsets.only( - top: AppSpacing.xl, - left: AppSpacing.xl, - right: AppSpacing.xl, - bottom: 100, - ), - child: ConstrainedBox( - constraints: BoxConstraints(minHeight: constraints.maxHeight - 100), - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - SvgPicture.asset( - 'assets/postbox.svg', - height: 100, - colorFilter: const ColorFilter.mode(postalRed, BlendMode.srcIn), - ), - const SizedBox(height: AppSpacing.lg), - Text( - 'Find a postbox to claim', - style: Theme.of(context).textTheme.headlineSmall?.copyWith( - fontWeight: FontWeight.bold, - ), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.sm), - Text( - 'Stand within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)} of a postbox, then tap below to check if you can claim it.', - style: Theme.of(context) - .textTheme - .bodyMedium - ?.copyWith(color: Theme.of(context).colorScheme.onSurfaceVariant), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.lg), - // Streak badge — only shown when the user has an active streak. - StreamBuilder( - stream: _streakStream, - builder: (context, snapshot) { - final streak = snapshot.data ?? 0; - if (streak <= 0) return const SizedBox.shrink(); - return Container( - padding: const EdgeInsets.symmetric( - horizontal: AppSpacing.md, vertical: AppSpacing.xs), - decoration: BoxDecoration( - color: _warning(context).withValues(alpha: 0.10), - borderRadius: BorderRadius.circular(20), - border: Border.all(color: _warning(context).withValues(alpha: 0.40)), - ), - child: Row( - mainAxisSize: MainAxisSize.min, - children: [ - const Text('🔥', style: TextStyle(fontSize: 16)), - const SizedBox(width: 6), - Text( - '$streak-day streak', - style: TextStyle( - color: _warning(context), - fontWeight: FontWeight.w600, - fontSize: 14, - ), - ), - ], - ), - ); - }, - ), - const SizedBox(height: AppSpacing.lg), - FilledButton.icon( - onPressed: _startSearch, - icon: const Icon(Icons.radar), - label: const Text('Scan for postboxes nearby'), - ), - ], - ), - ), - ), - ); - } + // Once we have a position, hand off to ClaimQuizSheet for the full flow. + if (_stage == ClaimStage.quizzing && _scanPosition != null) { + return ClaimQuizSheet( + scanPosition: _scanPosition!, + onCompleted: _onQuizCompleted, + onCancel: _resetToInitial, + streakStream: _streakStream, + ); + } - Widget _buildSearching(BuildContext context) { - final pos = _scanPosition; - return Padding( - padding: const EdgeInsets.fromLTRB( - AppSpacing.md, AppSpacing.lg, AppSpacing.md, kJamesStripClearance), - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - if (pos != null) ...[ - _claimRadiusMap(pos, scanning: true), - const SizedBox(height: AppSpacing.md), - ], - const CircularProgressIndicator(color: postalRed), - const SizedBox(height: AppSpacing.md), - Text('Scanning within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)}...'), - ], - ), - ); + // Default: initial state with scan button + streak badge. + return _buildInitial(context); } - Widget _buildEmpty(BuildContext context) { + Widget _buildInitial(BuildContext context) { return LayoutBuilder( builder: (context, constraints) => SingleChildScrollView( padding: const EdgeInsets.only( @@ -693,442 +211,73 @@ class _ClaimState extends State with TickerProviderStateMixin { constraints: BoxConstraints(minHeight: constraints.maxHeight - 100), child: Column( mainAxisAlignment: MainAxisAlignment.center, - children: [ - if (_scanPosition != null) ...[ - _claimRadiusMap(_scanPosition!), - const SizedBox(height: AppSpacing.md), - ], - Icon(Icons.location_off, size: 80, - color: Theme.of(context).colorScheme.onSurface.withValues(alpha: 0.2)), - const SizedBox(height: AppSpacing.md), - Text( - 'No postboxes found within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)}', - style: Theme.of(context) - .textTheme - .titleLarge - ?.copyWith(fontWeight: FontWeight.bold), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.sm), - Text( - 'Try moving closer to a postbox. They have exact locations.', - style: Theme.of(context) - .textTheme - .bodyMedium - ?.copyWith(color: Theme.of(context).colorScheme.onSurfaceVariant), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.xl), - FilledButton.icon( - onPressed: _startSearch, - icon: const Icon(Icons.refresh), - label: const Text('Try again'), - ), - const SizedBox(height: AppSpacing.sm), - OutlinedButton.icon( - onPressed: () => Navigator.of(context).push( - MaterialPageRoute( - builder: (_) => ReportMissingPostboxScreen(initialPosition: _scanPosition), - ), + children: [ + SvgPicture.asset( + 'assets/postbox.svg', + height: 100, + colorFilter: + const ColorFilter.mode(postalRed, BlendMode.srcIn), ), - icon: const Icon(Icons.report_gmailerrorred_outlined), - label: const Text('Report a missing postbox'), - ), - const SizedBox(height: AppSpacing.sm), - TextButton( - onPressed: () => setState(() => currentStage = ClaimStage.initial), - child: const Text('Back'), - ), - ], - ), - ), - ), - ); - } - - Widget _buildResults(BuildContext context) { - return Stack( - children: [ - ListView( - padding: const EdgeInsets.only( - top: AppSpacing.md, - bottom: 164, - ), - children: [ - if (_scanPosition != null) ...[ - Padding( - padding: const EdgeInsets.fromLTRB( - AppSpacing.md, 0, AppSpacing.md, AppSpacing.sm), - child: _claimRadiusMap(_scanPosition!, success: _claimedToday < _count), + const SizedBox(height: AppSpacing.lg), + Text( + 'Find a postbox to claim', + style: Theme.of(context) + .textTheme + .headlineSmall + ?.copyWith(fontWeight: FontWeight.bold), + textAlign: TextAlign.center, ), - ], - _summaryCard(context), - const SizedBox(height: AppSpacing.sm), - Padding( - padding: const EdgeInsets.symmetric(horizontal: AppSpacing.md), - child: OutlinedButton.icon( - // Disable rescan while a claim is in flight: the in-flight - // _claimPostbox call still holds setState callbacks that would - // overwrite whatever state _startSearch transitions to. - onPressed: _isClaiming ? null : _startSearch, - icon: const Icon(Icons.refresh), - label: const Text('Rescan location'), - style: OutlinedButton.styleFrom( - minimumSize: const Size(double.infinity, 48), - ), + const SizedBox(height: AppSpacing.sm), + Text( + 'Stand within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)} of a postbox, then tap below to check if you can claim it.', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant), + textAlign: TextAlign.center, ), - ), - ], - ), - Positioned( - left: AppSpacing.md, - right: AppSpacing.md, - bottom: 100, - child: _claimedToday == _count - ? _buildAllClaimedBanner(context) - : AbsorbPointer( - absorbing: _isClaiming, - child: FilledButton.icon( - onPressed: _isClaiming ? null : _startQuiz, - icon: _isClaiming - ? const SizedBox( - width: 18, - height: 18, - child: CircularProgressIndicator( - color: Colors.white, - strokeWidth: 2, - ), - ) - : const Icon(Icons.check_circle_outline), - label: Text(_isClaiming - ? 'Claiming...' - : (_count - _claimedToday) == 1 - ? 'Claim this postbox!' - : 'Claim ${_count - _claimedToday} postboxes!'), - ), - ), - ), - ], - ); - } - - Widget _summaryCard(BuildContext context) { - final pointsText = _maxPoints == _minPoints - ? '$_maxPoints pts' - : '$_minPoints–$_maxPoints pts'; - return Card( - child: Padding( - padding: const EdgeInsets.all(AppSpacing.md), - child: Row( - children: [ - Container( - padding: const EdgeInsets.all(AppSpacing.sm), - decoration: BoxDecoration( - color: postalRed.withValues(alpha:0.1), - borderRadius: BorderRadius.circular(8), - ), - child: const Icon(Icons.location_on, color: postalRed), - ), - const SizedBox(width: AppSpacing.md), - Expanded( - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Text( - _claimedToday == _count - ? (_count == 1 - ? 'This postbox was claimed today' - : 'All $_count postboxes claimed today') - : _claimedToday > 0 - ? '${_count - _claimedToday} of $_count available · $_claimedToday claimed today' - : '$_count postbox${_count == 1 ? '' : 'es'} within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)}', - style: Theme.of(context).textTheme.titleMedium?.copyWith( - fontWeight: FontWeight.bold, - ), - ), - if (_claimedToday < _count) - Text( - 'Worth $pointsText', - style: Theme.of(context) - .textTheme - .bodySmall - ?.copyWith(color: Theme.of(context).colorScheme.onSurfaceVariant), - ), - ], - ), - ), - ], - ), - ), - ); - } - - Widget _buildQuiz(BuildContext context) { - return LayoutBuilder( - builder: (context, constraints) => SingleChildScrollView( - padding: const EdgeInsets.only( - top: AppSpacing.xl, - left: AppSpacing.xl, - right: AppSpacing.xl, - // Extra clearance so the Back button doesn't hide behind the JamesStrip. - bottom: 100, - ), - child: ConstrainedBox( - constraints: BoxConstraints(minHeight: constraints.maxHeight - 100), - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - const Icon(Icons.help_outline, size: 64, color: postalRed), - const SizedBox(height: AppSpacing.md), - Text( - (_count - _claimedToday) == 1 - ? 'What\'s the cipher on this postbox?' - : 'What\'s the cipher on one of the nearby postboxes?', - style: Theme.of(context).textTheme.headlineSmall?.copyWith( - fontWeight: FontWeight.bold, - ), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.xs), - Text( - (_count - _claimedToday) == 1 - ? 'Look at the postbox and pick the correct royal cipher.' - : 'Look at one of the postboxes and pick its royal cipher.', - style: Theme.of(context) - .textTheme - .bodyMedium - ?.copyWith(color: Theme.of(context).colorScheme.onSurfaceVariant), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.xl), - ..._quizOptions.map((code) { - final isSelected = _selectedAnswer == code; - final isCorrectSelected = isSelected && _isClaiming; - return Padding( - padding: const EdgeInsets.only(bottom: AppSpacing.sm), - child: AnimatedContainer( - duration: const Duration(milliseconds: 200), + const SizedBox(height: AppSpacing.lg), + // Streak badge — only shown when the user has an active streak. + StreamBuilder( + stream: _streakStream, + builder: (context, snapshot) { + final streak = snapshot.data ?? 0; + if (streak <= 0) return const SizedBox.shrink(); + return Container( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, vertical: AppSpacing.xs), decoration: BoxDecoration( - color: isCorrectSelected - ? _success(context).withValues(alpha: 0.10) - : Colors.transparent, - borderRadius: BorderRadius.circular(8), + color: _warning(context).withValues(alpha: 0.10), + borderRadius: BorderRadius.circular(20), + border: Border.all( + color: _warning(context).withValues(alpha: 0.40)), ), - child: OutlinedButton( - onPressed: _isClaiming ? null : () => _onQuizAnswer(code), - style: OutlinedButton.styleFrom( - minimumSize: const Size(double.infinity, 56), - side: BorderSide( - color: isCorrectSelected - ? _success(context) - : (Theme.of(context).brightness == Brightness.dark - ? AppColors.brandTextDark - : AppColors.brandTextLight), - width: isCorrectSelected ? 2 : 1, - ), - ), - child: Row( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - if (isCorrectSelected) ...[ - SizedBox( - width: 16, - height: 16, - child: CircularProgressIndicator( - strokeWidth: 2, - color: _success(context), - ), - ), - const SizedBox(width: AppSpacing.sm), - ], - Column( - children: [ - Text( - isCorrectSelected ? 'Correct! Claiming…' : code, - style: TextStyle( - fontWeight: FontWeight.bold, - fontSize: 16, - color: isCorrectSelected - ? _success(context) - : null, - ), - ), - if (!isCorrectSelected) - Text( - MonarchInfo.labels[code] ?? code, - style: Theme.of(context) - .textTheme - .bodySmall - ?.copyWith(color: Theme.of(context).colorScheme.onSurfaceVariant), - ), - ], + child: Row( + mainAxisSize: MainAxisSize.min, + children: [ + const Text('🔥', style: TextStyle(fontSize: 16)), + const SizedBox(width: 6), + Text( + '$streak-day streak', + style: TextStyle( + color: _warning(context), + fontWeight: FontWeight.w600, + fontSize: 14, ), - ], - ), + ), + ], ), - ), - ); - }), - const SizedBox(height: AppSpacing.md), - TextButton( - onPressed: _isClaiming - ? null - : () => setState(() => currentStage = ClaimStage.results), - child: const Text('Back'), - ), - ], - ), - ), - ), - ); - } - - Widget _buildQuizFailed(BuildContext context) { - return LayoutBuilder( - builder: (context, constraints) => SingleChildScrollView( - padding: const EdgeInsets.only( - top: AppSpacing.xl, - left: AppSpacing.xl, - right: AppSpacing.xl, - bottom: 100, - ), - child: ConstrainedBox( - constraints: BoxConstraints(minHeight: constraints.maxHeight - 100), - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - Icon(Icons.cancel_outlined, size: 80, color: _error(context)), - const SizedBox(height: AppSpacing.lg), - Text( - 'Not quite!', - style: Theme.of(context).textTheme.headlineMedium?.copyWith( - fontWeight: FontWeight.bold, - ), - ), - const SizedBox(height: AppSpacing.sm), - Text( - 'Take another look at the cipher on the postbox and try again.', - style: Theme.of(context) - .textTheme - .bodyMedium - ?.copyWith(color: Theme.of(context).colorScheme.onSurfaceVariant), - textAlign: TextAlign.center, - ), - const SizedBox(height: AppSpacing.xl), - // Return to results (no rescan needed — the postbox hasn't moved). - FilledButton.icon( - onPressed: () => setState(() => currentStage = ClaimStage.results), - icon: const Icon(Icons.arrow_back), - label: const Text('Try again'), - ), - const SizedBox(height: AppSpacing.sm), - TextButton( - onPressed: _startSearch, - child: const Text('Rescan location'), - ), - ], - ), - ), - ), - ); - } - - Widget _buildClaimed(BuildContext context) { - return Stack( - children: [ - LayoutBuilder( - builder: (context, constraints) => SingleChildScrollView( - padding: const EdgeInsets.only( - top: AppSpacing.xl, - left: AppSpacing.xl, - right: AppSpacing.xl, - bottom: 100, - ), - child: ConstrainedBox( - constraints: BoxConstraints(minHeight: constraints.maxHeight - 100), - child: Column( - mainAxisAlignment: MainAxisAlignment.center, - children: [ - ScaleTransition( - scale: _successScale, - child: Icon( - Icons.check_circle, - size: 100, - color: _success(context), + ); + }, ), - ), - const SizedBox(height: AppSpacing.lg), - Text( - _claimedCount > 1 - ? '$_claimedCount postboxes claimed!' - : 'Postbox claimed!', - style: Theme.of(context).textTheme.headlineMedium?.copyWith( - fontWeight: FontWeight.bold, - ), - ), - const SizedBox(height: AppSpacing.sm), - if (_pointsEarned > 0) - Container( - padding: const EdgeInsets.symmetric( - horizontal: AppSpacing.lg, - vertical: AppSpacing.sm, - ), - decoration: BoxDecoration( - color: postalGold.withValues(alpha:0.15), - borderRadius: BorderRadius.circular(20), - ), - child: Text( - '+$_pointsEarned points', - style: Theme.of(context).textTheme.titleLarge?.copyWith( - color: postalGold, - fontWeight: FontWeight.bold, - ), - ), + const SizedBox(height: AppSpacing.lg), + FilledButton.icon( + onPressed: _startScan, + icon: const Icon(Icons.radar), + label: const Text('Scan for postboxes nearby'), ), - StreamBuilder( - stream: _streakStream, - builder: (context, snap) { - final streak = snap.data ?? 0; - if (streak <= 0) return const SizedBox.shrink(); - return Padding( - padding: const EdgeInsets.only(top: AppSpacing.sm), - child: Text( - streak == 1 - ? '🔥 Streak started!' - : '🔥 $streak-day streak!', - style: Theme.of(context).textTheme.titleMedium, - textAlign: TextAlign.center, - ), - ); - }, - ), - const SizedBox(height: AppSpacing.xxl), - FilledButton.icon( - onPressed: () => setState(() => currentStage = ClaimStage.initial), - icon: const Icon(Icons.explore), - label: const Text('Keep exploring'), - ), - ], - ), - ), - ), - ), - // Confetti is last in the Stack so it renders on top of the content. - Align( - alignment: Alignment.topCenter, - child: ConfettiWidget( - confettiController: _confettiController, - blastDirectionality: BlastDirectionality.explosive, - particleDrag: 0.05, - emissionFrequency: 0.07, - numberOfParticles: 20, - maxBlastForce: 20, - minBlastForce: 8, - gravity: 0.3, - colors: const [postalRed, postalGold, Colors.white, royalNavy], + ], ), ), - ], + ), ); } } diff --git a/lib/james_messages.dart b/lib/james_messages.dart index 365493f..d506ec5 100644 --- a/lib/james_messages.dart +++ b/lib/james_messages.dart @@ -1,5 +1,7 @@ import 'dart:math'; +import 'package:flutter/foundation.dart'; + // ───────────────────────────────────────────────────────────────────────────── // i18n NOTE (future) // When adding localisation, replace JamesMessage.resolve() with an @@ -278,6 +280,94 @@ abstract final class JamesMessages { ], ); + // ── Route mode ─────────────────────────────────────────────────────────── + + /// Fires when the user enters Live Route mode. + static const routeStart = JamesMessage( + 'jamesRouteStart', + [ + "Right then, off we trot.", + "Best foot forward, eh?", + "Don't dawdle, there are postboxes to claim.", + "On your marks. Plenty out there, let's go.", + "A fine day for a walk. Let's make it count.", + "Right, I'll keep you company. Off we go.", + "Step lively, the postboxes won't claim themselves.", + "Ready when you are. Lead the way.", + ], + ); + + /// Fires when an unclaimed postbox is within ~50 m (one-shot per postbox). + static const routePostboxNearby = JamesMessage( + 'jamesRoutePostboxNearby', + [ + "Oi, there's one within whistling distance.", + "Look sharp, a claim is just around the corner.", + "Eyes peeled, we're getting close.", + "Hold on... there's one very nearby.", + "Can you smell that? That's the scent of points.", + "Nearly there, keep going.", + "Just a smidge further. You've got this.", + "Almost in range. Don't stop now.", + ], + ); + + /// Returns a direction hint phrase for one of "ahead", "left", "right", + /// "behind". Falls back to the "ahead" pool for unrecognised directions. + static String routeHint(String direction) { + final lists = >{ + 'ahead': [ + "Just keep ploughing on, mate.", + "Bit further straight on.", + "You're heading the right way. Carry on.", + "Straight ahead. Simple as that.", + "Keep going, you're on the right track.", + ], + 'left': [ + "Veer leftward, if you've the time.", + "Bear left a bit, I reckon.", + "Slight left from where you're standing.", + "Left a touch. Trust me on this one.", + "Nudge left and you should be in luck.", + ], + 'right': [ + "Right a bit, I reckon.", + "Bear right from here.", + "Try veering right, see how you get on.", + "Bit to the right. Off you go.", + "Right-ish. You'll figure it out.", + ], + 'behind': [ + "You're past it. Backtrack if you fancy.", + "It was behind you! Turn around.", + "Looks like you overshot. Worth doubling back.", + "Retrace your steps a little. It's back there.", + "Behind you, I'm afraid. No shame in it.", + ], + }; + final pool = lists[direction]; + if (pool == null) { + debugPrint('JamesMessages.routeHint: unrecognised direction "$direction", defaulting to "ahead"'); + return routeHint('ahead'); + } + return pool[_random.nextInt(pool.length)]; + } + + /// Fires when the user arrives at the destination. + static const routeArrival = JamesMessage( + 'jamesRouteArrival', + [ + "Tidy work, that.", + "Well there you go.", + "Right, that's a tidy round.", + "Made it! Not bad at all.", + "You got there in the end. Nicely done.", + "Destination reached. I am quietly impressed.", + "All the way there. Top effort.", + "Job done. Time for a sit-down, I'd say.", + ], + ); + // ── Intro dialogue ─────────────────────────────────────────────────────── static const introStep2 = JamesMessage( diff --git a/lib/location_service.dart b/lib/location_service.dart index 34180a1..b55850c 100644 --- a/lib/location_service.dart +++ b/lib/location_service.dart @@ -48,3 +48,38 @@ Future getPosition({bool forceLocationManager = false}) async { ); return Geolocator.getCurrentPosition(locationSettings: settings); } + +/// Returns a continuous stream of GPS positions for live tracking. +/// +/// Callers must have already acquired location permission (e.g. via +/// [getPosition]) before subscribing. The stream surfaces platform errors +/// (permission denied, services off) directly as stream errors — it does +/// **not** request permissions itself. +/// +/// [accuracy] defaults to [LocationAccuracy.bestForNavigation] for the +/// turn-by-turn fidelity needed by the live-route screen. +/// [distanceFilterMetres] suppresses updates smaller than this distance +/// (default 5 m) to avoid flooding the UI. +/// +/// Pass [forceLocationManager] to bypass Play Services fused location and use +/// Android's core `LocationManager` instead — required on Wear OS where the +/// fused provider is not available. +Stream positionStream({ + LocationAccuracy accuracy = LocationAccuracy.bestForNavigation, + int distanceFilterMetres = 5, + bool forceLocationManager = false, +}) { + final useAndroidManager = + forceLocationManager && !kIsWeb && Platform.isAndroid; + final LocationSettings settings = useAndroidManager + ? AndroidSettings( + accuracy: accuracy, + distanceFilter: distanceFilterMetres, + forceLocationManager: true, + ) + : LocationSettings( + accuracy: accuracy, + distanceFilter: distanceFilterMetres, + ); + return Geolocator.getPositionStream(locationSettings: settings); +} diff --git a/lib/login/google_login_button.dart b/lib/login/google_login_button.dart index b886ae0..eaf1c16 100644 --- a/lib/login/google_login_button.dart +++ b/lib/login/google_login_button.dart @@ -9,16 +9,22 @@ class GoogleLoginButton extends StatelessWidget { @override Widget build(BuildContext context) { - return OutlinedButton.icon( - icon: const FaIcon(FontAwesomeIcons.google, size: 18), - label: const Text('Continue with Google'), - onPressed: () { - BlocProvider.of(context).add(LoginWithGooglePressed()); - }, - style: OutlinedButton.styleFrom( - foregroundColor: const Color(0xFF444444), - side: const BorderSide(color: AppColors.borderLight), - backgroundColor: Colors.white, + // Disable while a sign-in is in flight so a second tap can't dispatch + // another LoginWithGooglePressed (which would re-open the picker on top + // of the in-progress flow). Matches the LoginButton's isSubmitting guard. + return BlocBuilder( + buildWhen: (a, b) => a.isSubmitting != b.isSubmitting, + builder: (context, state) => OutlinedButton.icon( + icon: const FaIcon(FontAwesomeIcons.google, size: 18), + label: const Text('Continue with Google'), + onPressed: state.isSubmitting + ? null + : () => context.read().add(LoginWithGooglePressed()), + style: OutlinedButton.styleFrom( + foregroundColor: const Color(0xFF444444), + side: const BorderSide(color: AppColors.borderLight), + backgroundColor: Colors.white, + ), ), ); } diff --git a/lib/main.dart b/lib/main.dart index 6b356d7..036b64e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -28,6 +28,8 @@ import 'secrets.dart'; import 'analytics_service.dart'; import 'package:postbox_game/admin/admin_access.dart'; import 'package:postbox_game/notification_service.dart'; +import 'package:postbox_game/route/destination_picker_screen.dart'; +import 'package:postbox_game/route/route_notifications.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); @@ -63,6 +65,7 @@ void main() async { ); await HomeWidgetService.init(); await _checkInitialWidgetLaunch(); + await RouteNotifications.initialise(); runApp(const PostboxGame()); } @@ -197,6 +200,7 @@ class _PostboxGameState extends State { '/leaderboard': (context) => _guardRoute(context, () => const LeaderboardScreen()), '/history': (context) => _guardRoute(context, () => const ClaimHistoryScreen()), '/settings': (context) => _guardRoute(context, () => const SettingsScreen()), + '/route': (context) => _guardRoute(context, () => const DestinationPickerScreen()), }), ); } diff --git a/lib/nearby.dart b/lib/nearby.dart index 00b7533..3213d4f 100644 --- a/lib/nearby.dart +++ b/lib/nearby.dart @@ -63,14 +63,22 @@ class _NearbyState extends State { @override void initState() { super.initState(); - _compassSubscription = FlutterCompass.events?.listen((CompassEvent event) { - final heading = event.heading; - if (heading == null) return; - final prev = _headingNotifier.value; - if (prev == null || _headingDelta(prev, heading) >= 5) { - _headingNotifier.value = heading; - } - }); + // FlutterCompass.events is non-null in production but throws a + // MissingPluginException in test environments without the platform + // channel. Wrap so a missing magnetometer (test or e.g. desktop runs) + // doesn't blow up the whole screen on first build. + try { + _compassSubscription = FlutterCompass.events?.listen((CompassEvent event) { + final heading = event.heading; + if (heading == null) return; + final prev = _headingNotifier.value; + if (prev == null || _headingDelta(prev, heading) >= 5) { + _headingNotifier.value = heading; + } + }); + } catch (_) { + _compassSubscription = null; + } AppPreferences.getDistanceUnit().then((unit) { if (mounted) setState(() => _distanceUnit = unit); }); @@ -298,6 +306,13 @@ class _NearbyState extends State { icon: const Icon(Icons.search), label: const Text('Find nearby postboxes'), ), + const SizedBox(height: AppSpacing.sm), + OutlinedButton.icon( + onPressed: () => + Navigator.pushNamed(context, '/route'), + icon: const Icon(Icons.directions_walk), + label: const Text('Walk to a destination'), + ), ], ), ), diff --git a/lib/reports/report_cypher_screen.dart b/lib/reports/report_cypher_screen.dart index c2b2df7..3f5d6b0 100644 --- a/lib/reports/report_cypher_screen.dart +++ b/lib/reports/report_cypher_screen.dart @@ -31,8 +31,10 @@ class _ReportCypherScreenState extends State { bool _submitting = false; String _initialCypher() { - final m = widget.currentMonarch; - if (m != null && MonarchInfo.labels.containsKey(m)) return m; + // Always start at "I'm not sure" — the user is here because they think the + // CURRENT cypher is wrong, so pre-filling the dropdown with the current + // value would let them submit a no-op suggestion (and frame the question + // backwards). return notSureCypher; } diff --git a/lib/route/destination_picker_screen.dart b/lib/route/destination_picker_screen.dart new file mode 100644 index 0000000..cf205b3 --- /dev/null +++ b/lib/route/destination_picker_screen.dart @@ -0,0 +1,593 @@ +import 'dart:async'; + +import 'package:flutter/material.dart'; +import 'package:flutter_map/flutter_map.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/location_service.dart'; +import 'package:postbox_game/route/nominatim_service.dart'; +import 'package:postbox_game/route/route_preview_screen.dart'; +import 'package:postbox_game/route/route_session.dart'; +import 'package:postbox_game/theme.dart'; +import 'package:postbox_game/widgets/postbox_map.dart'; +import 'package:postbox_game/widgets/postbox_marker.dart'; + +/// Allows the user to pick a destination by tapping on a map or by searching +/// for an address. +/// +/// On init, acquires the user's current GPS position and centres the map +/// there. A single tap drops (or moves) a destination pin. Once a pin has +/// been placed the "Set destination" button becomes active and navigates to +/// [RoutePreviewScreen]. +/// +/// An address search bar at the top of the screen queries OSM Nominatim +/// (debounced at 500 ms). Tapping a result drops the pin and centres the map. +/// +/// [initialPosition] can be injected for testing (bypasses the real +/// [getPosition] call). When null the screen calls [getPosition] itself. +/// +/// [nominatimService] can be injected for testing (bypasses real HTTP calls). +class DestinationPickerScreen extends StatefulWidget { + /// Optional pre-resolved position — used in widget tests so the screen + /// can be pumped without a real GPS fix. + final LatLng? initialPosition; + + /// Optional Nominatim service — used in widget tests to inject a mock. + final NominatimService? nominatimService; + + const DestinationPickerScreen({ + super.key, + this.initialPosition, + this.nominatimService, + }); + + @override + State createState() => + _DestinationPickerScreenState(); +} + +class _DestinationPickerScreenState extends State { + /// The user's current position, resolved on init. + LatLng? _userPosition; + + /// The destination the user has tapped on the map. + LatLng? _pickedDestination; + + /// User-friendly label for the picked destination (from Nominatim, when the + /// user chose a result from the search list). Null when the user tapped the + /// map directly. + String? _pickedDestinationLabel; + + /// Non-null when we failed to acquire the user's position. + String? _locationError; + + // ── Search ──────────────────────────────────────────────────────────────── + + late final NominatimService _nominatimService; + final TextEditingController _searchController = TextEditingController(); + final MapController _mapController = MapController(); + + /// Current list of search results (empty when the search field is blank or + /// no results were found). + List _searchResults = const []; + + /// True while a Nominatim query is in-flight. + bool _isSearching = false; + + /// Non-null when the last search attempt produced an error. + String? _searchError; + + /// Timer used to debounce search-field input (500 ms). + Timer? _debounceTimer; + + /// True when we created the NominatimService ourselves (and so are + /// responsible for closing its HTTP client). False when the caller + /// injected one (e.g. tests) and owns its lifecycle. + late final bool _ownsNominatimService; + + @override + void initState() { + super.initState(); + _ownsNominatimService = widget.nominatimService == null; + _nominatimService = widget.nominatimService ?? NominatimService(); + if (widget.initialPosition != null) { + // Injected for tests — skip real GPS. + _userPosition = widget.initialPosition; + } else { + _acquirePosition(); + } + _searchController.addListener(_onSearchChanged); + } + + @override + void dispose() { + // Cancel the debounced search so a fast back-navigation doesn't fire + // a Nominatim HTTP request whose result we'll immediately throw away — + // a wasted slot in the 1-rps throttle and a useless network round-trip. + _debounceTimer?.cancel(); + _searchController.dispose(); + _mapController.dispose(); + if (_ownsNominatimService) _nominatimService.close(); + super.dispose(); + } + + Future _acquirePosition() async { + try { + final pos = await getPosition(); + if (!mounted) return; + setState(() => _userPosition = LatLng(pos.latitude, pos.longitude)); + } catch (e) { + if (!mounted) return; + final raw = e.toString(); + final bool isPermanentlyDenied = raw.contains('permanently denied'); + final bool isServicesDisabled = raw.contains('services are disabled'); + + setState(() { + if (isPermanentlyDenied) { + _locationError = + 'Location permission permanently denied. Enable it in Settings.'; + } else if (isServicesDisabled) { + _locationError = 'Location services are disabled.'; + } else { + _locationError = 'Could not determine your location. Please try again.'; + } + }); + + if (!mounted) return; + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(_locationError!), + backgroundColor: Colors.red.shade700, + action: isPermanentlyDenied + ? SnackBarAction( + label: 'Open Settings', + textColor: Colors.white, + onPressed: Geolocator.openAppSettings, + ) + : isServicesDisabled + ? SnackBarAction( + label: 'Open Settings', + textColor: Colors.white, + onPressed: Geolocator.openLocationSettings, + ) + : null, + ), + ); + } + } + + // ── Search handlers ─────────────────────────────────────────────────────── + + void _onSearchChanged() { + _debounceTimer?.cancel(); + final query = _searchController.text; + if (query.trim().isEmpty) { + setState(() { + _searchResults = const []; + _searchError = null; + _isSearching = false; + }); + return; + } + _debounceTimer = Timer(const Duration(milliseconds: 500), () { + _runSearch(query); + }); + } + + Future _runSearch(String query) async { + if (!mounted) return; + setState(() { + _isSearching = true; + _searchError = null; + }); + try { + final results = await _nominatimService.search(query); + if (!mounted) return; + setState(() { + _searchResults = results; + _isSearching = false; + }); + } catch (e) { + if (!mounted) return; + setState(() { + _searchResults = const []; + _isSearching = false; + _searchError = 'Address search failed. Check your connection.'; + }); + } + } + + void _onSearchResultTap(NominatimResult result) { + setState(() { + _pickedDestination = result.location; + _pickedDestinationLabel = result.displayName; + _searchResults = const []; + _searchError = null; + }); + // Clear the text field and collapse the results list. + _searchController.clear(); + // Move the map to the chosen location. + try { + _mapController.move(result.location, 15.0); + } catch (_) { + // Controller may not be attached if the map hasn't rendered yet. + } + } + + // ── Map tap ─────────────────────────────────────────────────────────────── + + void _onMapTap(TapPosition _, LatLng point) { + setState(() { + _pickedDestination = point; + // A raw map tap clears any Nominatim-derived label. + _pickedDestinationLabel = null; + }); + } + + void _onSetDestination() { + if (_userPosition == null || _pickedDestination == null) return; + final session = RouteSession( + start: _userPosition!, + destination: _pickedDestination!, + destinationLabel: _pickedDestinationLabel, + ); + Navigator.of(context).push( + MaterialPageRoute( + builder: (_) => RoutePreviewScreen(session: session), + ), + ); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: const Text('Pick a destination')), + body: _buildBody(context), + ); + } + + Widget _buildBody(BuildContext context) { + // Still waiting for the GPS fix. + if (_userPosition == null && _locationError == null) { + return const Padding( + padding: EdgeInsets.only(bottom: kJamesStripClearance), + child: Center(child: CircularProgressIndicator(color: postalRed)), + ); + } + + // Location error — show a retry prompt. + if (_locationError != null) { + return Padding( + padding: const EdgeInsets.only(bottom: kJamesStripClearance), + child: Center( + child: Padding( + padding: const EdgeInsets.all(AppSpacing.xl), + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + Icon( + Icons.location_off, + size: 64, + color: Theme.of(context) + .colorScheme + .onSurface + .withValues(alpha: 0.25), + ), + const SizedBox(height: AppSpacing.md), + Text( + _locationError!, + style: Theme.of(context).textTheme.bodyMedium, + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.lg), + FilledButton.icon( + onPressed: () { + setState(() => _locationError = null); + _acquirePosition(); + }, + icon: const Icon(Icons.refresh), + label: const Text('Try again'), + ), + ], + ), + ), + ), + ); + } + + // Happy path — search bar + map + bottom panel. + return Column( + children: [ + _SearchBar( + controller: _searchController, + isSearching: _isSearching, + results: _searchResults, + error: _searchError, + onResultTap: _onSearchResultTap, + ), + Expanded( + child: PostboxMap( + center: _userPosition!, + mapController: _mapController, + onTap: _onMapTap, + markers: [ + userPositionMarker(_userPosition!), + if (_pickedDestination != null) + _destinationMarker(_pickedDestination!), + ], + ), + ), + _PickedLocationPanel( + pickedDestination: _pickedDestination, + destinationLabel: _pickedDestinationLabel, + onSetDestination: + _pickedDestination != null ? _onSetDestination : null, + ), + ], + ); + } + + /// A red pin marker for the chosen destination. + Marker _destinationMarker(LatLng point) { + return Marker( + point: point, + width: 40, + height: 48, + child: const _DestinationPin(), + ); + } +} + +// --------------------------------------------------------------------------- +// Search bar +// --------------------------------------------------------------------------- + +/// Address search bar with debounced Nominatim queries and an inline result +/// list that overlays the map below. +class _SearchBar extends StatelessWidget { + final TextEditingController controller; + final bool isSearching; + final List results; + final String? error; + final ValueChanged onResultTap; + + const _SearchBar({ + required this.controller, + required this.isSearching, + required this.results, + required this.onResultTap, + this.error, + }); + + @override + Widget build(BuildContext context) { + final cs = Theme.of(context).colorScheme; + return Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + // Search text field. + Padding( + padding: const EdgeInsets.fromLTRB( + AppSpacing.md, + AppSpacing.sm, + AppSpacing.md, + AppSpacing.xs, + ), + child: TextField( + controller: controller, + textInputAction: TextInputAction.search, + decoration: InputDecoration( + hintText: 'Search address…', + prefixIcon: const Icon(Icons.search, size: 20), + suffixIcon: isSearching + ? const Padding( + padding: EdgeInsets.all(12), + child: SizedBox( + width: 16, + height: 16, + child: CircularProgressIndicator( + strokeWidth: 2, + color: postalRed, + ), + ), + ) + : controller.text.isNotEmpty + ? IconButton( + icon: const Icon(Icons.clear, size: 18), + onPressed: controller.clear, + tooltip: 'Clear search', + ) + : null, + isDense: true, + border: OutlineInputBorder( + borderRadius: BorderRadius.circular(8), + ), + contentPadding: const EdgeInsets.symmetric( + vertical: AppSpacing.sm, + horizontal: AppSpacing.sm, + ), + ), + ), + ), + // Inline error message. + if (error != null) + Padding( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, + vertical: AppSpacing.xs, + ), + child: Text( + error!, + style: Theme.of(context) + .textTheme + .bodySmall + ?.copyWith(color: cs.error), + ), + ), + // Results list — rendered inline so it doesn't float over the map as + // an overlay, which would require a more complex Stack/Overlay setup. + if (results.isNotEmpty) + Material( + elevation: 2, + child: ListView.separated( + shrinkWrap: true, + physics: const NeverScrollableScrollPhysics(), + itemCount: results.length, + separatorBuilder: (_, __) => const Divider(height: 1), + itemBuilder: (context, i) { + final r = results[i]; + return ListTile( + dense: true, + leading: const Icon(Icons.location_on_outlined, size: 18), + title: Text( + r.displayName, + maxLines: 2, + overflow: TextOverflow.ellipsis, + style: Theme.of(context).textTheme.bodySmall, + ), + onTap: () => onResultTap(r), + ); + }, + ), + ), + ], + ); + } +} + +// --------------------------------------------------------------------------- +// Bottom panel +// --------------------------------------------------------------------------- + +class _PickedLocationPanel extends StatelessWidget { + final LatLng? pickedDestination; + final String? destinationLabel; + final VoidCallback? onSetDestination; + + const _PickedLocationPanel({ + required this.pickedDestination, + required this.onSetDestination, + this.destinationLabel, + }); + + @override + Widget build(BuildContext context) { + final cs = Theme.of(context).colorScheme; + return SafeArea( + top: false, + child: Padding( + padding: const EdgeInsets.fromLTRB( + AppSpacing.md, + AppSpacing.sm, + AppSpacing.md, + AppSpacing.md, + ), + child: Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.stretch, + children: [ + // Coordinate card + Card( + margin: EdgeInsets.zero, + child: Padding( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, + vertical: AppSpacing.sm, + ), + child: pickedDestination == null + ? Row( + children: [ + Icon(Icons.touch_app, + size: 18, + color: cs.onSurface.withValues(alpha: 0.45)), + const SizedBox(width: AppSpacing.sm), + Text( + 'Tap the map to place a destination', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: cs.onSurfaceVariant, + ), + ), + ], + ) + : Row( + children: [ + Icon(Icons.location_on, + size: 18, color: postalRed), + const SizedBox(width: AppSpacing.sm), + Expanded( + child: destinationLabel != null + ? Text( + destinationLabel!, + style: Theme.of(context).textTheme.bodySmall, + maxLines: 2, + overflow: TextOverflow.ellipsis, + ) + : Text( + '${pickedDestination!.latitude.toStringAsFixed(5)}, ' + '${pickedDestination!.longitude.toStringAsFixed(5)}', + style: Theme.of(context) + .textTheme + .bodySmall + ?.copyWith(fontFamily: 'monospace'), + ), + ), + ], + ), + ), + ), + const SizedBox(height: AppSpacing.sm), + FilledButton( + onPressed: onSetDestination, + child: const Text('Set destination'), + ), + ], + ), + ), + ); + } +} + +// --------------------------------------------------------------------------- +// Destination pin widget +// --------------------------------------------------------------------------- + +class _DestinationPin extends StatelessWidget { + const _DestinationPin(); + + @override + Widget build(BuildContext context) { + return Column( + mainAxisSize: MainAxisSize.min, + children: [ + Container( + width: 36, + height: 36, + decoration: BoxDecoration( + color: postalRed, + shape: BoxShape.circle, + border: Border.all(color: Colors.white, width: 2.5), + boxShadow: [ + BoxShadow( + color: postalRed.withValues(alpha: 0.4), + blurRadius: 6, + spreadRadius: 1, + offset: const Offset(0, 2), + ), + ], + ), + child: const Icon(Icons.flag, color: Colors.white, size: 18), + ), + // Stem + Container( + width: 3, + height: 8, + decoration: BoxDecoration( + color: postalRed, + borderRadius: BorderRadius.circular(2), + ), + ), + ], + ); + } +} diff --git a/lib/route/live_route_screen.dart b/lib/route/live_route_screen.dart new file mode 100644 index 0000000..e58f19f --- /dev/null +++ b/lib/route/live_route_screen.dart @@ -0,0 +1,730 @@ +import 'dart:async'; + +import 'package:cloud_functions/cloud_functions.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_compass/flutter_compass.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/app_preferences.dart'; +import 'package:postbox_game/fuzzy_compass.dart'; +import 'package:postbox_game/james_controller.dart'; +import 'package:postbox_game/james_messages.dart'; +import 'package:postbox_game/location_service.dart'; +import 'package:postbox_game/theme.dart'; +import 'package:postbox_game/widgets/claim_quiz_sheet.dart'; + +import 'route_compass_view.dart'; +import 'route_completion_screen.dart'; +import 'route_notifications.dart'; +import 'route_session.dart'; + +// --------------------------------------------------------------------------- +// Constants +// --------------------------------------------------------------------------- + +/// Generous scan radius for the fuzzy compass — shows postboxes well ahead +/// of the user to populate compass sectors. The claim trigger uses the +/// separate [AppPreferences.claimRadiusMeters] (30 m). +/// +/// TODO(route): move to AppPreferences once a Settings UI exists for route mode. +const int _kFuzzyCompassScanRadiusM = 1000; + +/// Minimum distance the user must move before a new scan is forced (metres). +const double _kScanDistanceTriggerM = 20.0; + +/// Minimum time that must elapse before a new scan is allowed (seconds). +const int _kScanTimeTriggerS = 12; + +/// Auto-arrive threshold: navigate to completion screen when the user is +/// within this many metres of the destination. +const double _kArrivalRadiusM = 25.0; + +/// After the claim sheet is dismissed, suppress re-prompting for the same +/// nearby postbox for this many seconds. +const int _kClaimCooldownS = 60; + +// --------------------------------------------------------------------------- +// Typedef for the nearbyPostboxes callable (injectable for testing) +// --------------------------------------------------------------------------- + +/// Matches [HttpsCallable.call] so tests can stub without subclassing the +/// (sealed) [HttpsCallable]. +typedef NearbyCallableFn = Future> Function( + Map payload); + +// --------------------------------------------------------------------------- +// Widget +// --------------------------------------------------------------------------- + +/// Live route screen: streams GPS positions, keeps the fuzzy compass updated, +/// and presents a claim quiz sheet when the user is within range of an +/// unclaimed postbox. +/// +/// Accepts [positionStreamOverride] and [nearbyCallable] for test injection. +class LiveRouteScreen extends StatefulWidget { + final RouteSession session; + + /// Injectable GPS stream (defaults to [positionStream] from LocationService). + final Stream? positionStreamOverride; + + /// Injectable nearbyPostboxes callable (defaults to Firebase). + final NearbyCallableFn? nearbyCallable; + + /// Injectable compass event stream (defaults to [FlutterCompass.events]). + /// Inject an empty stream or null in tests to skip the platform channel. + final Stream? compassStreamOverride; + + /// Injectable `nearbyPostboxes` callable forwarded into [ClaimQuizSheet]. + /// When null, [ClaimQuizSheet] uses the real Firebase callable. + /// Supply in tests to keep the sheet fully headless. + final NearbyPostboxesCallableFn? nearbyCallableForSheet; + + /// Injectable `startScoring` callable forwarded into [ClaimQuizSheet]. + /// When null, [ClaimQuizSheet] uses the real Firebase callable. + /// Supply in tests to keep the sheet fully headless. + final StartScoringCallableFn? startScoringCallableForSheet; + + const LiveRouteScreen({ + super.key, + required this.session, + this.positionStreamOverride, + this.nearbyCallable, + this.compassStreamOverride, + this.nearbyCallableForSheet, + this.startScoringCallableForSheet, + }); + + @override + State createState() => _LiveRouteScreenState(); +} + +class _LiveRouteScreenState extends State { + // ── GPS streaming ───────────────────────────────────────────────────────── + StreamSubscription? _positionSub; + StreamSubscription? _compassSub; + + // Stored so T9 can use the position for a mini-map; suppressed lint for now. + // ignore: unused_field + Position? _currentPosition; + + // ── Compass ──────────────────────────────────────────────────────────────── + double? _deviceHeadingDegrees; + + // ── Destination stats (recomputed on each position update) ──────────────── + double _distanceToDestM = double.infinity; + double _bearingToDestDeg = 0.0; + + // ── Fuzzy compass data (updated after each scan) ────────────────────────── + Map _compassCounts = {}; + Map _claimedCompassCounts = {}; + + // ── Scan throttle ───────────────────────────────────────────────────────── + DateTime? _lastScanAt; + Position? _lastScanPos; + bool _scanInFlight = false; + + // ── Claim sheet state ───────────────────────────────────────────────────── + bool _claimSheetOpen = false; + + /// Postbox IDs dismissed within the last [_kClaimCooldownS] seconds. + /// Maps postbox ID → dismissal time. + final Map _recentDismissals = {}; + + // ── Accumulated route totals ─────────────────────────────────────────────── + int _pointsEarned = 0; + int _claimedCount = 0; + + // ── Session timer ───────────────────────────────────────────────────────── + late final Stopwatch _stopwatch = Stopwatch()..start(); + + // ── Arrived? ────────────────────────────────────────────────────────────── + bool _arrived = false; + + // ── James one-shot flags ────────────────────────────────────────────────── + /// Set to true after the first postbox-nearby James message fires this session. + bool _nearbyJamesFired = false; + + // ── Callable ────────────────────────────────────────────────────────────── + late final NearbyCallableFn _nearby; + + @override + void initState() { + super.initState(); + + _nearby = widget.nearbyCallable ?? + (Map payload) => + FirebaseFunctions.instance + .httpsCallable('nearbyPostboxes') + .call(payload); + + // Request notification permission once at screen mount. + // Failure is silently ignored — the in-app arrival flow still works. + RouteNotifications.requestPermission().ignore(); + + // Fire the route-start James message once the widget is in the tree. + WidgetsBinding.instance.addPostFrameCallback((_) { + if (mounted) { + JamesController.of(context)?.show(JamesMessages.routeStart.resolve()); + } + }); + + // Subscribe to the device compass for heading. + // Use the injected stream (if any) — otherwise fall back to FlutterCompass. + // Wrapped in try-catch: FlutterCompass.events is non-null but will throw a + // MissingPluginException in test environments without the platform channel. + final compassStream = widget.compassStreamOverride ?? FlutterCompass.events; + try { + _compassSub = compassStream?.listen((CompassEvent e) { + final h = e.heading; + if (h == null) return; + final prev = _deviceHeadingDegrees; + // Throttle updates to changes >= 5° to avoid excessive rebuilds. + if (prev == null || _headingDelta(prev, h) >= 5) { + if (mounted) setState(() => _deviceHeadingDegrees = h); + } + }); + } catch (_) { + // Compass not available on this platform/environment. + _compassSub = null; + } + + // Subscribe to the GPS position stream. + final stream = widget.positionStreamOverride ?? + positionStream( + accuracy: LocationAccuracy.bestForNavigation, + distanceFilterMetres: 5, + ); + _positionSub = stream.listen( + _onPosition, + onError: _onPositionError, + ); + } + + @override + void dispose() { + _positionSub?.cancel(); + _compassSub?.cancel(); + _stopwatch.stop(); + super.dispose(); + } + + // ── Heading helper ──────────────────────────────────────────────────────── + + static double _headingDelta(double a, double b) { + final d = (a - b).abs() % 360; + return d > 180 ? 360 - d : d; + } + + // ── Position handler ────────────────────────────────────────────────────── + + void _onPosition(Position pos) { + if (!mounted) return; + // Once arrival has been triggered the screen is unmounting via + // pushReplacement; skip both the setState and any further scans so we + // don't fire a `nearbyPostboxes` call (or update bearing chips) for a + // screen the user is already leaving. + if (_arrived) return; + + final dest = widget.session.destination; + final dist = Geolocator.distanceBetween( + pos.latitude, pos.longitude, + dest.latitude, dest.longitude, + ); + final rawBearing = Geolocator.bearingBetween( + pos.latitude, pos.longitude, + dest.latitude, dest.longitude, + ); + // Normalise to 0..360. + final bearing = rawBearing < 0 ? rawBearing + 360 : rawBearing; + + setState(() { + _currentPosition = pos; + _distanceToDestM = dist; + _bearingToDestDeg = bearing; + }); + + // Arrival detection — only navigate once. + if (dist < _kArrivalRadiusM) { + _arrived = true; + _navigateToCompletion(); + return; + } + + _maybeScan(pos); + } + + void _onPositionError(Object error) { + if (!mounted) return; + debugPrint('LiveRouteScreen position error: $error'); + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: const Text('Location error. Check GPS permissions.'), + backgroundColor: Theme.of(context).colorScheme.error, + ), + ); + } + + // ── Scan logic ──────────────────────────────────────────────────────────── + + Future _maybeScan(Position pos) async { + if (_scanInFlight) return; + + final now = DateTime.now(); + final timeSinceLast = _lastScanAt == null + ? const Duration(days: 1) // Always scan on first call. + : now.difference(_lastScanAt!); + final distSinceLast = _lastScanPos == null + ? double.infinity + : Geolocator.distanceBetween( + pos.latitude, pos.longitude, + _lastScanPos!.latitude, _lastScanPos!.longitude, + ); + + final timeTriggered = timeSinceLast.inSeconds >= _kScanTimeTriggerS; + final distTriggered = distSinceLast >= _kScanDistanceTriggerM; + if (!timeTriggered && !distTriggered) return; + + _scanInFlight = true; + _lastScanAt = now; + _lastScanPos = pos; + + try { + final result = await _nearby({ + 'lat': pos.latitude, + 'lng': pos.longitude, + 'meters': _kFuzzyCompassScanRadiusM, + }); + if (!mounted) return; + + final data = Map.from(result.data as Map); + final compass = data['compass'] != null + ? Map.from(data['compass'] as Map) + : {}; + final claimedCompass = data['claimedCompass'] != null + ? Map.from(data['claimedCompass'] as Map) + : {}; + + int asInt(dynamic v) => (v as num?)?.toInt() ?? 0; + + final newCounts = {}; + final newClaimed = {}; + for (final dir in const [ + 'N', 'NNE', 'NE', 'ENE', 'E', 'ESE', + 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW', + 'W', 'WNW', 'NW', 'NNW', + ]) { + newCounts[dir] = asInt(compass[dir]); + newClaimed[dir] = asInt(claimedCompass[dir]); + } + + if (mounted) { + setState(() { + _compassCounts = newCounts; + _claimedCompassCounts = newClaimed; + }); + } + + // Check for claimable postboxes within 30 m. + _checkForNearbyClaimable(data, pos); + } catch (e) { + debugPrint('LiveRouteScreen scan error: $e'); + // Non-fatal: skip this scan cycle and try next time. + } finally { + _scanInFlight = false; + } + } + + void _checkForNearbyClaimable(Map data, Position pos) { + if (_claimSheetOpen) return; + + final rawPostboxes = data['postboxes'] as Map? ?? {}; + final now = DateTime.now(); + + // Purge expired cooldowns. + _recentDismissals.removeWhere( + (_, t) => now.difference(t).inSeconds > _kClaimCooldownS, + ); + + String? eligibleId; + for (final entry in rawPostboxes.entries) { + final id = entry.key as String; + final box = Map.from(entry.value as Map); + final claimedToday = box['claimedToday'] == true; + final rawDist = box['distance']; + final dist = rawDist is num ? rawDist.toDouble() : double.infinity; + + if (claimedToday) continue; + if (dist > AppPreferences.claimRadiusMeters) continue; + if (_recentDismissals.containsKey(id)) continue; + + eligibleId = id; + break; + } + + if (eligibleId == null) return; + _openClaimSheet(LatLng(pos.latitude, pos.longitude), eligibleId); + } + + void _openClaimSheet(LatLng scanPos, String postboxId) { + if (_claimSheetOpen) return; + _claimSheetOpen = true; + + // Fire postbox-nearby James message once per route session. + if (!_nearbyJamesFired) { + _nearbyJamesFired = true; + JamesController.of(context)?.show(JamesMessages.routePostboxNearby.resolve()); + } + + showModalBottomSheet( + context: context, + isScrollControlled: true, + isDismissible: true, + builder: (_) => DraggableScrollableSheet( + initialChildSize: 0.75, + maxChildSize: 0.95, + minChildSize: 0.4, + expand: false, + builder: (_, scrollController) => ClaimQuizSheet( + scanPosition: scanPos, + compact: true, + nearbyCallable: widget.nearbyCallableForSheet, + startScoringCallable: widget.startScoringCallableForSheet, + onCompleted: (result) { + Navigator.of(context).pop(result); + }, + ), + ), + ).then((result) { + _claimSheetOpen = false; + // Record dismissal to suppress re-prompting for this box. + _recentDismissals[postboxId] = DateTime.now(); + + if (result != null && result.claimedCount > 0) { + if (mounted) { + setState(() { + _pointsEarned += result.pointsEarned; + _claimedCount += result.claimedCount; + }); + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text( + result.claimedCount > 1 + ? '${result.claimedCount} postboxes claimed! +${result.pointsEarned} pts' + : 'Postbox claimed! +${result.pointsEarned} pts', + ), + backgroundColor: Theme.of(context).colorScheme.primaryContainer, + duration: const Duration(seconds: 2), + ), + ); + } + } + }); + } + + // ── Arrival ──────────────────────────────────────────────────────────────── + + void _navigateToCompletion() { + if (!mounted) return; + + // Fire the arrival notification before leaving the screen. + // Wrapped in try/catch so a notification failure never blocks navigation. + try { + RouteNotifications.notifyArrival( + destinationLabel: widget.session.destinationLabel, + pointsEarned: _pointsEarned, + claimedCount: _claimedCount, + ).ignore(); + } catch (_) { + // Non-fatal: proceed to completion screen regardless. + } + + Navigator.of(context).pushReplacement( + MaterialPageRoute( + builder: (_) => RouteCompletionScreen( + session: widget.session, + pointsEarned: _pointsEarned, + claimedCount: _claimedCount, + walkSeconds: _stopwatch.elapsed.inSeconds, + ), + ), + ); + } + + // ── Abandon confirmation ─────────────────────────────────────────────────── + + Future _confirmAbandon() async { + final result = await showDialog( + context: context, + builder: (ctx) => AlertDialog( + title: const Text('End route now?'), + content: const Text('Points already claimed will keep.'), + actions: [ + TextButton( + onPressed: () => Navigator.of(ctx).pop(false), + child: const Text('Keep going'), + ), + FilledButton( + onPressed: () => Navigator.of(ctx).pop(true), + child: const Text('End route'), + ), + ], + ), + ); + return result == true; + } + + // ── Hint logic ───────────────────────────────────────────────────────────── + + /// Returns one of {"ahead", "left", "right", "behind"} relative to the + /// destination bearing, based on which 8-wind sector has the most unclaimed + /// postboxes in the last fuzzy compass scan. + String _pickHintDirection() { + final sectors8 = FuzzyCompass.to8Sectors(_compassCounts); + const order = ['N', 'NE', 'E', 'SE', 'S', 'SW', 'W', 'NW']; + String bestDir = 'N'; + int bestCount = -1; + for (final dir in order) { + final c = sectors8[dir] ?? 0; + if (c > bestCount) { + bestCount = c; + bestDir = dir; + } + } + if (bestCount <= 0) return 'ahead'; // Nothing visible — default. + + const dirBearings = { + 'N': 0.0, 'NE': 45.0, 'E': 90.0, 'SE': 135.0, + 'S': 180.0, 'SW': 225.0, 'W': 270.0, 'NW': 315.0, + }; + final sectorBearing = dirBearings[bestDir] ?? 0.0; + + // Relative angle between the best sector and the destination bearing. + // Positive = clockwise (right), negative = anticlockwise (left). + double rel = (sectorBearing - _bearingToDestDeg) % 360; + if (rel > 180) rel -= 360; // Normalise to -180..180. + + if (rel.abs() <= 45) return 'ahead'; + if (rel > 45 && rel <= 135) return 'right'; + if (rel < -45 && rel >= -135) return 'left'; + return 'behind'; + } + + void _onHintTapped() { + final direction = _pickHintDirection(); + JamesController.of(context)?.show(JamesMessages.routeHint(direction)); + } + + // ── ETA helper ───────────────────────────────────────────────────────────── + + String _etaLabel() { + if (_distanceToDestM.isInfinite || _distanceToDestM.isNaN) return '...'; + final speedKmh = widget.session.speedKmh; + final distKm = _distanceToDestM / 1000.0; + final minutes = (distKm / speedKmh * 60).round(); + final paceLabel = + widget.session.pace == RoutePace.jog ? 'jogging' : 'walking'; + return '≈ $minutes min $paceLabel'; + } + + // ── Bearing label ────────────────────────────────────────────────────────── + + static String _bearingLabel(double deg) { + const labels = [ + 'N', 'NNE', 'NE', 'ENE', + 'E', 'ESE', 'SE', 'SSE', + 'S', 'SSW', 'SW', 'WSW', + 'W', 'WNW', 'NW', 'NNW', + ]; + final idx = ((deg + 11.25) / 22.5).floor() % 16; + return labels[idx]; + } + + // ── Build ────────────────────────────────────────────────────────────────── + + @override + Widget build(BuildContext context) { + return PopScope( + canPop: false, + onPopInvokedWithResult: (didPop, _) async { + if (didPop) return; + final abandon = await _confirmAbandon(); + if (abandon && context.mounted) { + Navigator.of(context).pop(); + } + }, + child: Scaffold( + appBar: AppBar( + title: const Text('Route'), + leading: IconButton( + icon: const Icon(Icons.close), + tooltip: 'End route', + onPressed: () async { + final abandon = await _confirmAbandon(); + if (abandon && context.mounted) { + Navigator.of(context).pop(); + } + }, + ), + ), + body: SafeArea( + child: ListView( + padding: const EdgeInsets.only(bottom: kJamesStripClearance), + children: [ + // ── a. Destination card ───────────────────────────────────── + _DestinationCard( + distanceM: _distanceToDestM, + bearingLabel: _bearingLabel(_bearingToDestDeg), + etaLabel: _etaLabel(), + destinationLabel: widget.session.destinationLabel, + ), + + // ── b. Route compass view ─────────────────────────────────── + RouteCompassView( + compassCounts: _compassCounts, + claimedCompassCounts: _claimedCompassCounts, + deviceHeadingDegrees: _deviceHeadingDegrees, + destinationBearingDegrees: _bearingToDestDeg, + ), + + // ── c. Hint button ────────────────────────────────────────── + Padding( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, + vertical: AppSpacing.sm, + ), + child: FilledButton.tonal( + onPressed: _onHintTapped, + child: const Text('Where now, postie?'), + ), + ), + + // ── d. Status row ─────────────────────────────────────────── + _StatusRow( + pointsEarned: _pointsEarned, + claimedCount: _claimedCount, + ), + ], + ), + ), + ), + ); + } +} + +// --------------------------------------------------------------------------- +// Sub-widgets +// --------------------------------------------------------------------------- + +class _DestinationCard extends StatelessWidget { + final double distanceM; + final String bearingLabel; + final String etaLabel; + final String? destinationLabel; + + const _DestinationCard({ + required this.distanceM, + required this.bearingLabel, + required this.etaLabel, + this.destinationLabel, + }); + + String get _distanceText { + if (distanceM == double.infinity) return '...'; + if (distanceM < 1000) { + return '${distanceM.round()} m'; + } + return '${(distanceM / 1000).toStringAsFixed(2)} km'; + } + + @override + Widget build(BuildContext context) { + return Card( + margin: const EdgeInsets.fromLTRB( + AppSpacing.md, AppSpacing.md, AppSpacing.md, AppSpacing.xs), + child: Padding( + padding: const EdgeInsets.all(AppSpacing.md), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + if (destinationLabel != null) ...[ + Text( + destinationLabel!, + style: Theme.of(context).textTheme.titleSmall?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant, + ), + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), + const SizedBox(height: AppSpacing.xs), + ], + Row( + crossAxisAlignment: CrossAxisAlignment.baseline, + textBaseline: TextBaseline.alphabetic, + children: [ + Text( + _distanceText, + style: Theme.of(context).textTheme.headlineMedium?.copyWith( + fontWeight: FontWeight.bold, + color: Theme.of(context).colorScheme.primary, + ), + ), + const SizedBox(width: AppSpacing.sm), + Chip( + label: Text(bearingLabel), + avatar: const Icon(Icons.navigation, size: 14), + visualDensity: VisualDensity.compact, + ), + ], + ), + const SizedBox(height: AppSpacing.xs), + Text( + etaLabel, + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant, + ), + ), + ], + ), + ), + ); + } +} + +class _StatusRow extends StatelessWidget { + final int pointsEarned; + final int claimedCount; + + const _StatusRow({ + required this.pointsEarned, + required this.claimedCount, + }); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, + vertical: AppSpacing.xs, + ), + child: Row( + children: [ + Chip( + avatar: const Icon(Icons.star, size: 14, color: postalGold), + label: Text( + pointsEarned == 0 ? '0 pts' : '+$pointsEarned pts', + ), + visualDensity: VisualDensity.compact, + ), + const SizedBox(width: AppSpacing.sm), + Chip( + avatar: const Icon(Icons.markunread_mailbox_outlined, size: 14), + label: Text( + '$claimedCount claimed', + ), + visualDensity: VisualDensity.compact, + ), + ], + ), + ); + } +} diff --git a/lib/route/nominatim_service.dart b/lib/route/nominatim_service.dart new file mode 100644 index 0000000..3c06298 --- /dev/null +++ b/lib/route/nominatim_service.dart @@ -0,0 +1,120 @@ +import 'dart:convert'; + +import 'package:http/http.dart' as http; +import 'package:latlong2/latlong.dart'; + +// --------------------------------------------------------------------------- +// Data model +// --------------------------------------------------------------------------- + +class NominatimResult { + final String displayName; + final LatLng location; + + const NominatimResult({required this.displayName, required this.location}); +} + +// --------------------------------------------------------------------------- +// Service +// --------------------------------------------------------------------------- + +/// Thin async wrapper around the OSM Nominatim search endpoint. +/// +/// Usage policy: https://operations.osmfoundation.org/policies/nominatim/ +/// - Maximum 1 request per second from a single client → enforced via +/// [_lastCallAt] delay. +/// - A descriptive User-Agent must be sent with every request. +/// +/// TODO: Read the version string from pubspec.yaml at build time (e.g. via a +/// generated `version.dart`); for now it is hard-coded as 1.0. +/// +/// Cancel-friendliness: the current implementation does not support +/// cancellation. For a future improvement, accept a `CancellationToken` (or +/// expose an `AbortController`-style API) and check it before and after the +/// `await client.get(...)` call. The `http` package itself does not natively +/// support cancellation; the common pattern is to use `http_client_helper` or +/// wrap in a `Completer` that is completed with a `CancellationException`. +class NominatimService { + static const String _userAgent = 'postbox-game/1.0 (richard@agilepixel.io)'; + static const String _baseUrl = 'https://nominatim.openstreetmap.org/search'; + static const Duration _minInterval = Duration(seconds: 1); + + final http.Client _client; + + /// Timestamp of the last HTTP call (null = no call yet). + DateTime? _lastCallAt; + + /// True when [_client] was created by this instance and so should be + /// closed in [close]. False when the caller supplied a client (e.g. test + /// stubs whose lifecycle belongs to the test). + final bool _ownsClient; + + NominatimService({http.Client? client}) + : _client = client ?? http.Client(), + _ownsClient = client == null; + + /// Releases the underlying HTTP client's connection pool. Safe to call + /// multiple times. Callers that create their own [NominatimService] should + /// call this from their `dispose` so screen reopens don't leak clients. + void close() { + if (_ownsClient) _client.close(); + } + + /// Search OSM Nominatim. Returns up to 5 results, UK-biased. + /// + /// Returns an empty list when [query] is blank or when Nominatim returns no + /// matches. Throws on network errors or non-2xx HTTP responses. + Future> search(String query) async { + final trimmed = query.trim(); + if (trimmed.isEmpty) return const []; + + // Enforce 1 rps client-side throttle. + final now = DateTime.now(); + if (_lastCallAt != null) { + final elapsed = now.difference(_lastCallAt!); + if (elapsed < _minInterval) { + await Future.delayed(_minInterval - elapsed); + } + } + _lastCallAt = DateTime.now(); + + final uri = Uri.parse(_baseUrl).replace(queryParameters: { + 'q': trimmed, + 'format': 'json', + 'countrycodes': 'gb', + 'limit': '5', + 'addressdetails': '0', + }); + + final response = await _client.get( + uri, + headers: {'User-Agent': _userAgent}, + ); + + if (response.statusCode != 200) { + throw Exception('Nominatim error: ${response.statusCode}'); + } + + final dynamic decoded; + try { + decoded = jsonDecode(response.body); + } catch (_) { + throw Exception('Nominatim returned non-JSON response'); + } + + if (decoded is! List) { + throw Exception('Nominatim returned unexpected JSON shape'); + } + + return decoded.map((dynamic item) { + final map = item as Map; + return NominatimResult( + displayName: map['display_name'] as String, + location: LatLng( + double.parse(map['lat'] as String), + double.parse(map['lon'] as String), + ), + ); + }).toList(); + } +} diff --git a/lib/route/route_compass_view.dart b/lib/route/route_compass_view.dart new file mode 100644 index 0000000..e660831 --- /dev/null +++ b/lib/route/route_compass_view.dart @@ -0,0 +1,109 @@ +import 'dart:math'; + +import 'package:flutter/material.dart'; +import 'package:postbox_game/fuzzy_compass.dart'; + +/// A composite widget that layers a precise destination arrow on top of the +/// existing [FuzzyCompass]. +/// +/// The fuzzy compass shows unclaimed/claimed sector densities (deliberately +/// imprecise, as always). The destination arrow overlay is precise — it points +/// from the compass centre toward [destinationBearingDegrees], rotated to +/// account for [deviceHeadingDegrees] so that it stays meaningful relative to +/// how the user is holding the device. +/// +/// No streaming/state here — pure stateless widget. The caller must pass fresh +/// values whenever the heading or bearing changes. +class RouteCompassView extends StatelessWidget { + /// 16-wind counts for unclaimed postboxes (N, NNE, NE, ...). + final Map compassCounts; + + /// 16-wind counts for postboxes already claimed today. + final Map claimedCompassCounts; + + /// Device heading in degrees (0 = N). Null when the compass sensor is not + /// available; the compass and arrow are rendered without rotation. + final double? deviceHeadingDegrees; + + /// Absolute bearing from the user's current position to the destination, + /// in degrees (0 = N, clockwise). + final double destinationBearingDegrees; + + const RouteCompassView({ + super.key, + required this.compassCounts, + required this.claimedCompassCounts, + required this.deviceHeadingDegrees, + required this.destinationBearingDegrees, + }); + + @override + Widget build(BuildContext context) { + // Angle of the destination arrow in the canvas coordinate system. + // When the device heading is known, subtract it so the arrow stays + // screen-relative (pointing toward the destination as seen on screen). + final double arrowAngle = ((destinationBearingDegrees - (deviceHeadingDegrees ?? 0)) % 360) * pi / 180; + + return Stack( + alignment: Alignment.center, + children: [ + // Layer 1: fuzzy compass (shows rough sector info, handles heading rotation internally). + FuzzyCompass( + compassCounts: compassCounts, + claimedCompassCounts: claimedCompassCounts, + headingDegrees: deviceHeadingDegrees, + ), + + // Layer 2: precise destination arrow, drawn over the compass rose. + // Positioned at the centre of the compass card — the Card widget adds + // padding so the arrow sits roughly in the middle of the circular disc. + IgnorePointer( + child: Padding( + // Mirror the FuzzyCompass card internals: card padding + title rows + // push the disc down by approximately 70 px from the card top. + // We only need a rough alignment for T8; the precise layout can be + // refined in T9 once the full live UI is assembled. + padding: const EdgeInsets.only(top: 72), + child: _DestinationArrow(angle: arrowAngle), + ), + ), + ], + ); + } +} + +/// A small arrow icon rotated to point in [angle] radians (screen-relative, +/// 0 = up = North on screen when the compass is upright). +class _DestinationArrow extends StatelessWidget { + final double angle; + + const _DestinationArrow({required this.angle}); + + @override + Widget build(BuildContext context) { + final color = Theme.of(context).colorScheme.primary; + return Transform.rotate( + angle: angle, + child: Container( + width: 36, + height: 36, + decoration: BoxDecoration( + color: color.withValues(alpha: 0.90), + shape: BoxShape.circle, + boxShadow: [ + BoxShadow( + color: Colors.black.withValues(alpha: 0.20), + blurRadius: 4, + offset: const Offset(0, 2), + ), + ], + ), + child: const Icon( + Icons.navigation, + color: Colors.white, + size: 20, + ), + ), + ); + } +} diff --git a/lib/route/route_completion_screen.dart b/lib/route/route_completion_screen.dart new file mode 100644 index 0000000..9d7eaa2 --- /dev/null +++ b/lib/route/route_completion_screen.dart @@ -0,0 +1,219 @@ +import 'package:confetti/confetti.dart'; +import 'package:flutter/material.dart'; +import 'package:postbox_game/james_controller.dart'; +import 'package:postbox_game/james_messages.dart'; +import 'package:postbox_game/theme.dart'; + +import 'route_session.dart'; + +/// Shown when the user arrives at the destination (or ends the route early). +/// +/// Displays points earned, postboxes claimed, walking time, and pace. +/// Fires a confetti burst and a Postman James congratulation on first render. +class RouteCompletionScreen extends StatefulWidget { + final RouteSession session; + final int pointsEarned; + final int claimedCount; + + /// Total elapsed walk/jog time in seconds. + final int walkSeconds; + + const RouteCompletionScreen({ + super.key, + required this.session, + this.pointsEarned = 0, + this.claimedCount = 0, + this.walkSeconds = 0, + }); + + @override + State createState() => _RouteCompletionScreenState(); +} + +class _RouteCompletionScreenState extends State { + late final ConfettiController _confetti; + bool _jamesShown = false; + + @override + void initState() { + super.initState(); + _confetti = ConfettiController(duration: const Duration(seconds: 3)); + _confetti.play(); + } + + @override + void dispose() { + _confetti.dispose(); + super.dispose(); + } + + @override + void didChangeDependencies() { + super.didChangeDependencies(); + // Show James once — on the first frame after the screen is in the tree. + if (!_jamesShown) { + _jamesShown = true; + WidgetsBinding.instance.addPostFrameCallback((_) { + if (mounted) { + JamesController.of(context)?.show(JamesMessages.routeArrival.resolve()); + } + }); + } + } + + // ── Time formatting ─────────────────────────────────────────────────────── + + /// Formats [walkSeconds] as "MM min SS sec" or "H h MM min" when >= 1 hour. + static String _formatTime(int totalSeconds) { + final hours = totalSeconds ~/ 3600; + final minutes = (totalSeconds % 3600) ~/ 60; + final seconds = totalSeconds % 60; + + if (hours >= 1) { + return '$hours h ${minutes.toString().padLeft(2, '0')} min'; + } + return '${minutes.toString().padLeft(2, '0')} min ${seconds.toString().padLeft(2, '0')} sec'; + } + + // ── Build ───────────────────────────────────────────────────────────────── + + @override + Widget build(BuildContext context) { + final theme = Theme.of(context); + final paceLabel = + widget.session.pace == RoutePace.jog ? 'Jogging' : 'Walking'; + + return Scaffold( + appBar: AppBar(title: const Text('Route complete')), + body: Stack( + children: [ + // ── Main content ────────────────────────────────────────────────── + SafeArea( + child: Padding( + padding: const EdgeInsets.fromLTRB( + AppSpacing.lg, + AppSpacing.lg, + AppSpacing.lg, + AppSpacing.sm, + ), + child: Column( + children: [ + Expanded( + child: Center( + child: SingleChildScrollView( + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + // ── Success icon ──────────────────────────────── + Icon( + Icons.check_circle_rounded, + size: 80, + color: theme.colorScheme.primary, + ), + const SizedBox(height: AppSpacing.lg), + + // ── Points headline ───────────────────────────── + Container( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.lg, + vertical: AppSpacing.sm, + ), + decoration: BoxDecoration( + color: postalGold.withValues(alpha: 0.15), + borderRadius: BorderRadius.circular(20), + ), + child: Text( + '${widget.pointsEarned} points earned', + style: theme.textTheme.headlineSmall?.copyWith( + color: postalGold, + fontWeight: FontWeight.bold, + ), + textAlign: TextAlign.center, + ), + ), + const SizedBox(height: AppSpacing.md), + + // ── Claimed count ──────────────────────────────── + Text( + widget.claimedCount == 1 + ? '1 postbox claimed' + : '${widget.claimedCount} postboxes claimed', + style: theme.textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.sm), + + // ── Walking time ───────────────────────────────── + Text( + 'Walked for ${_formatTime(widget.walkSeconds)}', + style: theme.textTheme.bodyLarge?.copyWith( + color: theme.colorScheme.onSurfaceVariant, + ), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.md), + + // ── Pace chip ───────────────────────────────────── + Chip( + avatar: Icon( + widget.session.pace == RoutePace.jog + ? Icons.directions_run + : Icons.directions_walk, + size: 16, + ), + label: Text(paceLabel), + visualDensity: VisualDensity.compact, + ), + ], + ), + ), + ), + ), + + // ── Bottom actions ────────────────────────────────────────── + const SizedBox(height: AppSpacing.md), + FilledButton( + onPressed: () => + Navigator.popUntil(context, (r) => r.isFirst), + child: const Text('Done'), + ), + const SizedBox(height: AppSpacing.sm), + TextButton( + onPressed: () { + // Drop everything from this route attempt (preview, + // completion) then push a fresh destination picker, so + // back from there returns to Home rather than peeling + // back through this attempt's stale screens. + Navigator.popUntil(context, (r) => r.isFirst); + Navigator.pushNamed(context, '/route'); + }, + child: const Text('Plan another route'), + ), + const SizedBox(height: kJamesStripClearance), + ], + ), + ), + ), + + // ── Confetti ────────────────────────────────────────────────────── + Align( + alignment: Alignment.topCenter, + child: ConfettiWidget( + confettiController: _confetti, + blastDirectionality: BlastDirectionality.explosive, + particleDrag: 0.05, + emissionFrequency: 0.07, + numberOfParticles: 20, + maxBlastForce: 20, + minBlastForce: 8, + gravity: 0.3, + colors: const [postalRed, postalGold, Colors.white, royalNavy], + ), + ), + ], + ), + ); + } +} diff --git a/lib/route/route_notifications.dart b/lib/route/route_notifications.dart new file mode 100644 index 0000000..90f8750 --- /dev/null +++ b/lib/route/route_notifications.dart @@ -0,0 +1,146 @@ +import 'package:flutter_local_notifications/flutter_local_notifications.dart'; + +/// Manages local notifications fired when the user arrives at their route +/// destination. +/// +/// Backed by [FlutterLocalNotificationsPlugin] with a dedicated +/// "route_arrival" channel (Android) / category (iOS). +/// +/// Call [initialise] once at app startup and [requestPermission] from +/// [LiveRouteScreen] when the user begins navigating. +class RouteNotifications { + static final _plugin = FlutterLocalNotificationsPlugin(); + static bool _initialised = false; + + static const _channelId = 'route_arrival'; + static const _channelName = 'Route arrival'; + + /// Stable notification ID — we only ever show one at a time. + static const _notificationId = 42; + + // ── Lifecycle ────────────────────────────────────────────────────────────── + + /// Initialise the plugin. Safe to call more than once — subsequent calls + /// are no-ops. Call once near app startup (e.g. in [main] after Firebase + /// initialisation). + static Future initialise() async { + if (_initialised) return; + _initialised = true; + + const initSettings = InitializationSettings( + android: AndroidInitializationSettings('@mipmap/ic_launcher'), + // Do NOT request permissions at init time — we do that explicitly via + // [requestPermission] to match the existing NotificationService pattern + // and to give the user a chance to see a rationale first. + iOS: DarwinInitializationSettings( + requestAlertPermission: false, + requestBadgePermission: false, + requestSoundPermission: false, + ), + ); + + try { + await _plugin.initialize(settings: initSettings); + + // Create the Android notification channel. + await _plugin + .resolvePlatformSpecificImplementation< + AndroidFlutterLocalNotificationsPlugin>() + ?.createNotificationChannel( + const AndroidNotificationChannel( + _channelId, + _channelName, + description: 'Shown when you reach your route destination.', + importance: Importance.high, + ), + ); + } catch (_) { + // Initialisation failures are non-fatal: the in-app arrival flow still + // works without notifications. + _initialised = false; + } + } + + // ── Permission ───────────────────────────────────────────────────────────── + + /// Request OS notification permission. Idempotent — safe to call multiple + /// times. + /// + /// Returns [true] if permission is granted (or the platform does not require + /// an explicit user prompt — e.g. Android < 13). + static Future requestPermission() async { + try { + // Android 13+ (API 33) — POST_NOTIFICATIONS runtime permission. + final androidImpl = _plugin + .resolvePlatformSpecificImplementation< + AndroidFlutterLocalNotificationsPlugin>(); + if (androidImpl != null) { + final granted = await androidImpl.requestNotificationsPermission(); + return granted ?? false; + } + + // iOS / macOS. + final darwinImpl = _plugin + .resolvePlatformSpecificImplementation< + IOSFlutterLocalNotificationsPlugin>(); + if (darwinImpl != null) { + final granted = await darwinImpl.requestPermissions( + alert: true, + badge: true, + sound: true, + ); + return granted ?? false; + } + + // Other platforms (e.g. Linux desktop) — assume granted. + return true; + } catch (_) { + return false; + } + } + + // ── Fire notification ────────────────────────────────────────────────────── + + /// Fire an arrival notification immediately. + /// + /// [destinationLabel] is a human-readable destination name shown in the + /// body; pass `null` to fall back to "your destination". + /// [pointsEarned] and [claimedCount] are used to build the notification body. + static Future notifyArrival({ + required String? destinationLabel, + required int pointsEarned, + required int claimedCount, + }) async { + final dest = (destinationLabel != null && destinationLabel.isNotEmpty) + ? destinationLabel + : 'your destination'; + + // Build a human-readable body. + final pointsPart = '$pointsEarned points earned'; + final body = claimedCount > 0 + ? 'Reached $dest. $pointsPart, $claimedCount postbox${claimedCount == 1 ? '' : 'es'} claimed.' + : 'Reached $dest. $pointsPart.'; + + const details = NotificationDetails( + android: AndroidNotificationDetails( + _channelId, + _channelName, + importance: Importance.high, + priority: Priority.high, + ), + iOS: DarwinNotificationDetails(), + ); + + try { + await _plugin.show( + id: _notificationId, + title: "You're here!", + body: body, + notificationDetails: details, + ); + } catch (_) { + // Notification failure is non-fatal: the in-app completion screen still + // shows regardless. + } + } +} diff --git a/lib/route/route_preview_screen.dart b/lib/route/route_preview_screen.dart new file mode 100644 index 0000000..4b874c5 --- /dev/null +++ b/lib/route/route_preview_screen.dart @@ -0,0 +1,574 @@ +import 'dart:async'; + +import 'package:cloud_functions/cloud_functions.dart'; +import 'package:flutter/material.dart'; +import 'package:postbox_game/route/live_route_screen.dart'; +import 'package:postbox_game/route/route_session.dart'; +import 'package:postbox_game/theme.dart'; + +// --------------------------------------------------------------------------- +// Callable function type +// --------------------------------------------------------------------------- + +/// Function signature for calling a Firebase HTTPS callable. +/// +/// Matches the signature of [HttpsCallable.call] so that tests can inject a +/// stub without needing to subclass the (sealed) [HttpsCallable]. +typedef RouteCallableFn = Future> Function( + Map payload); + +// --------------------------------------------------------------------------- +// State helpers +// --------------------------------------------------------------------------- + +enum _HeadlineState { idle, loading, result, error } + +// --------------------------------------------------------------------------- +// Widget +// --------------------------------------------------------------------------- + +/// Lets the user tune pace, corridor width, and detour budget before starting +/// a route. Debounces calls to the `routePostboxes` Cloud Function and shows +/// the resulting postbox count and points estimate. +/// +/// [callableFn] can be injected in tests to bypass the real Firebase function. +class RoutePreviewScreen extends StatefulWidget { + final RouteSession session; + + /// Injectable for testing — defaults to the real `routePostboxes` callable. + final RouteCallableFn? callableFn; + + const RoutePreviewScreen({ + super.key, + required this.session, + this.callableFn, + }); + + @override + State createState() => _RoutePreviewScreenState(); +} + +class _RoutePreviewScreenState extends State { + // ── Callable ─────────────────────────────────────────────────────────────── + late final RouteCallableFn _callableFn; + + // ── Debounce ─────────────────────────────────────────────────────────────── + Timer? _debounceTimer; + + /// Incremented on every debounced trigger; checked after `await` to discard + /// stale responses. + int _requestId = 0; + + // ── UI state ─────────────────────────────────────────────────────────────── + _HeadlineState _headlineState = _HeadlineState.idle; + + /// The most recent error message (non-null when [_headlineState] is error). + String? _errorMessage; + + /// Cached `directDistanceM` from the last successful response. + num? _directDistanceM; + + /// True once at least one successful response has been received. + bool _hasResult = false; + + @override + void initState() { + super.initState(); + _callableFn = widget.callableFn ?? + (payload) => FirebaseFunctions.instance + .httpsCallable('routePostboxes') + .call(payload); + // Fire the initial call immediately. + _scheduleFetch(immediate: true); + } + + @override + void dispose() { + _debounceTimer?.cancel(); + super.dispose(); + } + + // ── Debounce / fetch ──────────────────────────────────────────────────────── + + void _scheduleFetch({bool immediate = false}) { + _debounceTimer?.cancel(); + // Flip to loading right now (not after the debounce) so the headline and + // the Start-route button reflect that the displayed result no longer + // matches the current session params. Without this, a user could tap + // Start within the 400 ms debounce window and begin a route whose stats + // banner shows the previous params' count/points. + if (!immediate && _headlineState != _HeadlineState.loading) { + setState(() { + _headlineState = _HeadlineState.loading; + _errorMessage = null; + }); + } + _debounceTimer = Timer( + immediate ? Duration.zero : const Duration(milliseconds: 400), + _fetch, + ); + } + + Future _fetch() async { + if (!mounted) return; + + final id = ++_requestId; + + setState(() { + _headlineState = _HeadlineState.loading; + _errorMessage = null; + }); + + final session = widget.session; + + final Map payload = { + 'startLat': session.start.latitude, + 'startLng': session.start.longitude, + 'destLat': session.destination.latitude, + 'destLng': session.destination.longitude, + 'mode': session.mode == RouteMode.detour ? 'detour' : 'corridor', + 'speedKmh': session.speedKmh, + }; + + if (session.mode == RouteMode.corridor) { + payload['corridorMetres'] = session.corridorMetres; + } else { + payload['detourMinutes'] = session.detourMinutes; + } + + try { + final result = await _callableFn(payload); + if (!mounted || _requestId != id) return; + + final data = result.data as Map; + final count = (data['count'] as num).toInt(); + final points = (data['points'] as num).toInt(); + final directDistanceM = data['directDistanceM'] as num; + + session.computedCount = count; + session.computedPoints = points; + session.directDistanceM = directDistanceM; + + setState(() { + _directDistanceM = directDistanceM; + _headlineState = _HeadlineState.result; + _hasResult = true; + }); + } on FirebaseFunctionsException catch (e) { + if (!mounted || _requestId != id) return; + final msg = _mapFunctionsError(e); + setState(() { + _headlineState = _HeadlineState.error; + _errorMessage = msg; + }); + } catch (e) { + if (!mounted || _requestId != id) return; + setState(() { + _headlineState = _HeadlineState.error; + _errorMessage = "Couldn't reach the server. Try again."; + }); + } + } + + String _mapFunctionsError(FirebaseFunctionsException e) { + switch (e.code) { + case 'unauthenticated': + return 'Please sign in again.'; + case 'invalid-argument': + if (e.message != null && e.message!.contains('30 km')) { + return 'Destination is too far for a route (30 km limit).'; + } + return e.message ?? 'Invalid request.'; + default: + return "Couldn't reach the server. Try again."; + } + } + + // ── Pace change ───────────────────────────────────────────────────────────── + + void _onPaceChanged(RoutePace pace) { + setState(() => widget.session.pace = pace); + _scheduleFetch(); + } + + // ── Corridor slider ────────────────────────────────────────────────────────── + + void _onCorridorChanged(double value) { + setState(() { + widget.session.corridorMetres = value.round(); + // Corridor slider is only shown when detour == 0, so mode is already corridor. + widget.session.mode = RouteMode.corridor; + }); + _scheduleFetch(); + } + + // ── Detour slider ───────────────────────────────────────────────────────── + + void _onDetourChanged(double value) { + final minutes = value.round(); + setState(() { + widget.session.detourMinutes = minutes; + widget.session.mode = minutes > 0 ? RouteMode.detour : RouteMode.corridor; + }); + _scheduleFetch(); + } + + // ── Time estimate ──────────────────────────────────────────────────────── + + String _timeEstimate() { + final distM = _directDistanceM; + if (distM == null) return '–'; + final speedMps = widget.session.speedKmh * 1000 / 3600; + final minutes = (distM / speedMps / 60).round(); + final label = + widget.session.pace == RoutePace.jog ? 'jogging' : 'walking'; + return '≈ $minutes min $label'; + } + + // ── Build ─────────────────────────────────────────────────────────────────── + + @override + Widget build(BuildContext context) { + final session = widget.session; + final cs = Theme.of(context).colorScheme; + + return Scaffold( + appBar: AppBar(title: const Text('Route preview')), + body: SafeArea( + child: ListView( + padding: const EdgeInsets.symmetric(vertical: AppSpacing.sm), + children: [ + // ── 1. Destination card ──────────────────────────────────────── + _DestinationCard( + label: session.destinationLabel ?? + '${session.destination.latitude.toStringAsFixed(4)}, ' + '${session.destination.longitude.toStringAsFixed(4)}', + directDistanceM: _directDistanceM, + ), + + const SizedBox(height: AppSpacing.sm), + + // ── 2. Pace segmented button ────────────────────────────────── + Padding( + padding: const EdgeInsets.symmetric(horizontal: AppSpacing.md), + child: SegmentedButton( + segments: const [ + ButtonSegment( + value: RoutePace.walk, + label: Text('Walk'), + icon: Icon(Icons.directions_walk), + ), + ButtonSegment( + value: RoutePace.jog, + label: Text('Jog'), + icon: Icon(Icons.directions_run), + ), + ], + selected: {session.pace}, + onSelectionChanged: (s) => _onPaceChanged(s.first), + ), + ), + + // ── 3. Time estimate ────────────────────────────────────────── + Padding( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, + vertical: AppSpacing.sm, + ), + child: Text( + _timeEstimate(), + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: cs.onSurfaceVariant, + ), + ), + ), + + // ── 4. Corridor slider ──────────────────────────────────────── + _SliderSection( + label: + 'Corridor width: ${session.corridorMetres} m', + value: session.corridorMetres.toDouble(), + min: 50, + max: 500, + divisions: 9, + onChanged: _onCorridorChanged, + ), + + // ── 5. Detour slider ────────────────────────────────────────── + _SliderSection( + label: + 'Extra time for detours: ${session.detourMinutes} min', + value: session.detourMinutes.toDouble(), + min: 0, + max: 60, + divisions: 12, + onChanged: _onDetourChanged, + ), + + const SizedBox(height: AppSpacing.sm), + + // ── 6. Headline ──────────────────────────────────────────────── + _HeadlineCard( + state: _headlineState, + count: session.computedCount, + points: session.computedPoints, + errorMessage: _errorMessage, + onRetry: _fetch, + ), + + const SizedBox(height: AppSpacing.md), + + // ── 7. Start route button ───────────────────────────────────── + Padding( + padding: const EdgeInsets.symmetric(horizontal: AppSpacing.md), + child: FilledButton( + onPressed: (_headlineState == _HeadlineState.loading || + _headlineState == _HeadlineState.error || + !_hasResult) + ? null + : () { + Navigator.of(context).push( + MaterialPageRoute( + builder: (_) => + LiveRouteScreen(session: session), + ), + ); + }, + child: const Text('Start route'), + ), + ), + + const SizedBox(height: AppSpacing.md), + ], + ), + ), + ); + } +} + +// --------------------------------------------------------------------------- +// Destination card +// --------------------------------------------------------------------------- + +class _DestinationCard extends StatelessWidget { + final String label; + final num? directDistanceM; + + const _DestinationCard({ + required this.label, + required this.directDistanceM, + }); + + @override + Widget build(BuildContext context) { + final cs = Theme.of(context).colorScheme; + final distLabel = directDistanceM != null + ? '${(directDistanceM! / 1000).toStringAsFixed(2)} km' + : '–'; + + return Card( + child: Padding( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, + vertical: AppSpacing.sm, + ), + child: Row( + children: [ + Icon(Icons.flag, color: postalRed, size: 20), + const SizedBox(width: AppSpacing.sm), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + label, + style: Theme.of(context).textTheme.bodyMedium, + maxLines: 2, + overflow: TextOverflow.ellipsis, + ), + Text( + distLabel, + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: cs.onSurfaceVariant, + ), + ), + ], + ), + ), + ], + ), + ), + ); + } +} + +// --------------------------------------------------------------------------- +// Slider section +// --------------------------------------------------------------------------- + +class _SliderSection extends StatelessWidget { + final String label; + final double value; + final double min; + final double max; + final int divisions; + final ValueChanged onChanged; + + const _SliderSection({ + required this.label, + required this.value, + required this.min, + required this.max, + required this.divisions, + required this.onChanged, + }); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric(horizontal: AppSpacing.md), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text(label, style: Theme.of(context).textTheme.bodySmall), + Slider( + value: value, + min: min, + max: max, + divisions: divisions, + label: value.round().toString(), + onChanged: onChanged, + ), + ], + ), + ); + } +} + +// --------------------------------------------------------------------------- +// Headline card +// --------------------------------------------------------------------------- + +class _HeadlineCard extends StatelessWidget { + final _HeadlineState state; + final int? count; + final int? points; + final String? errorMessage; + final VoidCallback onRetry; + + const _HeadlineCard({ + required this.state, + required this.count, + required this.points, + required this.errorMessage, + required this.onRetry, + }); + + @override + Widget build(BuildContext context) { + return Card( + child: Padding( + padding: const EdgeInsets.all(AppSpacing.md), + child: _buildContent(context), + ), + ); + } + + Widget _buildContent(BuildContext context) { + switch (state) { + case _HeadlineState.idle: + return const SizedBox.shrink(); + + case _HeadlineState.loading: + return const Column( + mainAxisSize: MainAxisSize.min, + children: [ + CircularProgressIndicator(color: postalRed), + SizedBox(height: AppSpacing.sm), + Text('Calculating...'), + ], + ); + + case _HeadlineState.result: + final c = count ?? 0; + final p = points ?? 0; + if (c == 0) { + return Text( + 'Nothing along this route just yet… try widening the corridor or adding detour minutes.', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant, + ), + textAlign: TextAlign.center, + ); + } + return Column( + mainAxisSize: MainAxisSize.min, + children: [ + RichText( + textAlign: TextAlign.center, + text: TextSpan( + style: Theme.of(context).textTheme.titleLarge, + children: [ + TextSpan( + text: '$c', + style: const TextStyle( + fontWeight: FontWeight.w800, + color: postalRed, + ), + ), + const TextSpan(text: ' unclaimed postboxes en-route'), + ], + ), + ), + const SizedBox(height: AppSpacing.xs), + RichText( + textAlign: TextAlign.center, + text: TextSpan( + style: Theme.of(context).textTheme.bodyLarge, + children: [ + const TextSpan(text: 'worth '), + TextSpan( + text: '$p', + style: const TextStyle( + fontWeight: FontWeight.w700, + color: postalGold, + ), + ), + const TextSpan(text: ' points'), + ], + ), + ), + ], + ); + + case _HeadlineState.error: + return Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Icon( + Icons.warning_amber_rounded, + color: postalRed, + size: 22, + ), + const SizedBox(width: AppSpacing.sm), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + errorMessage ?? 'Something went wrong.', + style: Theme.of(context).textTheme.bodyMedium, + ), + const SizedBox(height: AppSpacing.sm), + TextButton( + onPressed: onRetry, + child: const Text('Retry'), + ), + ], + ), + ), + ], + ); + } + } +} diff --git a/lib/route/route_session.dart b/lib/route/route_session.dart new file mode 100644 index 0000000..5464d25 --- /dev/null +++ b/lib/route/route_session.dart @@ -0,0 +1,60 @@ +import 'package:latlong2/latlong.dart'; + +enum RoutePace { walk, jog } // 4.5 km/h vs 8.5 km/h +enum RouteMode { corridor, detour } + +/// Mutable session holder for one user-initiated route attempt. +/// +/// Passed by reference through the route screens so each screen can read and +/// update the user's choices without copying. NOT immutable by design. +class RouteSession { + final LatLng start; + final LatLng destination; + + /// User-friendly name for the destination (e.g. from Nominatim reverse + /// geocoding). Null when the user tapped a raw map point. + String? destinationLabel; + + /// Whether to keep postboxes within a corridor either side of the straight + /// line, or to allow a maximum detour from the direct route. + RouteMode mode; + + /// Half-width of the corridor in metres (corridor mode only). + /// Clamped to [50, 500]; default 200. + int corridorMetres; + + /// Maximum extra minutes over the direct walking time (detour mode only). + /// Clamped to [0, 120]; default 0. + int detourMinutes; + + RoutePace pace; + + // ── Filled in by RoutePreviewScreen after calling routePostboxes ────────── + + /// Number of postboxes found along the route. + int? computedCount; + + /// Total points available along the route. + int? computedPoints; + + /// Straight-line distance between start and destination in metres, + /// returned by the `routePostboxes` callable. + num? directDistanceM; + + RouteSession({ + required this.start, + required this.destination, + this.destinationLabel, + this.mode = RouteMode.corridor, + this.corridorMetres = 200, + this.detourMinutes = 0, + this.pace = RoutePace.walk, + }) { + // Clamp to valid ranges on construction. + corridorMetres = corridorMetres.clamp(50, 500); + detourMinutes = detourMinutes.clamp(0, 120); + } + + /// Walking/jogging speed in km/h based on the chosen [pace]. + double get speedKmh => pace == RoutePace.jog ? 8.5 : 4.5; +} diff --git a/lib/wear/wear_compass_page.dart b/lib/wear/wear_compass_page.dart index 2b5f15c..06747ed 100644 --- a/lib/wear/wear_compass_page.dart +++ b/lib/wear/wear_compass_page.dart @@ -55,15 +55,22 @@ class _WearCompassPageState extends State { void _startCompassListener() { double? lastHeading; - _compassSub = FlutterCompass.events?.listen((event) { - final h = event.heading; - if (h == null) return; - // Throttle updates — skip if heading delta < 5 degrees. Use modular - // distance so 359°→1° (delta = 2°) doesn't trip the naive abs-diff (358°). - if (lastHeading != null && _headingDelta(h, lastHeading!) < 5) return; - lastHeading = h; - if (mounted) setState(() => _heading = h); - }); + // FlutterCompass.events throws a MissingPluginException in test envs + // without the platform channel — guard the listen() call so a missing + // magnetometer doesn't crash the wear page on first build. + try { + _compassSub = FlutterCompass.events?.listen((event) { + final h = event.heading; + if (h == null) return; + // Throttle updates — skip if heading delta < 5 degrees. Use modular + // distance so 359°→1° (delta = 2°) doesn't trip the naive abs-diff (358°). + if (lastHeading != null && _headingDelta(h, lastHeading!) < 5) return; + lastHeading = h; + if (mounted) setState(() => _heading = h); + }); + } catch (_) { + _compassSub = null; + } } Future _scan() async { diff --git a/lib/widgets/claim_quiz_sheet.dart b/lib/widgets/claim_quiz_sheet.dart new file mode 100644 index 0000000..5df1cad --- /dev/null +++ b/lib/widgets/claim_quiz_sheet.dart @@ -0,0 +1,1213 @@ +import 'dart:async'; + +import 'package:cloud_functions/cloud_functions.dart'; +import 'package:confetti/confetti.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:flutter_map/flutter_map.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/analytics_service.dart'; +import 'package:postbox_game/app_preferences.dart'; +import 'package:postbox_game/james_controller.dart'; +import 'package:postbox_game/james_messages.dart'; +import 'package:postbox_game/location_service.dart'; +import 'package:postbox_game/monarch_info.dart'; +import 'package:postbox_game/reports/report_missing_postbox_screen.dart'; +import 'package:postbox_game/services/home_widget_service.dart'; +import 'package:postbox_game/theme.dart'; +import 'package:postbox_game/widgets/postbox_map.dart'; +import 'package:postbox_game/widgets/postbox_marker.dart'; + +// ───────────────────────────────────────────────────────────────────────────── +// Callable typedefs (injectable for testing) +// ───────────────────────────────────────────────────────────────────────────── + +/// Matches the signature of [HttpsCallable.call] for the `nearbyPostboxes` +/// function. Tests can inject a stub without subclassing the sealed +/// [HttpsCallable]. +typedef NearbyPostboxesCallableFn + = Future> Function(Map); + +/// Matches the signature of [HttpsCallable.call] for the `startScoring` +/// function. Tests can inject a stub without subclassing the sealed +/// [HttpsCallable]. +typedef StartScoringCallableFn + = Future> Function(Map); + +// ───────────────────────────────────────────────────────────────────────────── +// Result type +// ───────────────────────────────────────────────────────────────────────────── + +/// Carries the outcome of a complete claim-quiz flow back to the parent. +class ClaimQuizResult { + const ClaimQuizResult({ + this.claimedCount = 0, + this.pointsEarned = 0, + this.quizFailed = false, + this.empty = false, + }); + + /// How many postboxes were claimed in this scan (0 on failure/dismiss). + final int claimedCount; + + /// Total points earned (0 if the user dismissed or failed the quiz). + final int pointsEarned; + + /// True if the user picked the wrong cipher. + final bool quizFailed; + + /// True if the scan found no postboxes within range. + final bool empty; +} + +// ───────────────────────────────────────────────────────────────────────────── +// Internal state enum +// ───────────────────────────────────────────────────────────────────────────── + +enum _QuizStage { searching, results, empty, quiz, quizFailed, claimed } + +// ───────────────────────────────────────────────────────────────────────────── +// Theme helpers (file-private) +// ───────────────────────────────────────────────────────────────────────────── + +Color _success(BuildContext c) => Theme.of(c).brightness == Brightness.dark + ? AppColors.successTextDark + : AppColors.successTextLight; + +Color _warning(BuildContext c) => Theme.of(c).brightness == Brightness.dark + ? AppColors.warningTextDark + : AppColors.warningTextLight; + +Color _error(BuildContext c) => Theme.of(c).brightness == Brightness.dark + ? AppColors.errorTextDark + : AppColors.errorTextLight; + +// ───────────────────────────────────────────────────────────────────────────── +// Widget +// ───────────────────────────────────────────────────────────────────────────── + +/// A self-contained scan-and-quiz flow covering the `searching → results → +/// empty/quiz → quizFailed/claimed` states. +/// +/// The parent is responsible for the `initial` state (the "Scan" button that +/// acquires a position and then renders this widget). This widget takes over +/// from the moment scanning starts and fires [onCompleted] when the flow +/// finishes (success, failure, or empty). +/// +/// Layout: renders a [Column] (or scrollable content) without its own +/// [Scaffold] or [AppBar], so it can be embedded in either a full-screen +/// [Scaffold] body or a modal bottom sheet. +/// +/// Set [compact] to `true` for the route-mode bottom-sheet variant, which +/// uses larger touch targets and extra bottom padding for one-handed reach. +class ClaimQuizSheet extends StatefulWidget { + const ClaimQuizSheet({ + super.key, + required this.scanPosition, + required this.onCompleted, + this.onCancel, + this.compact = false, + this.streakStream, + this.nearbyCallable, + this.startScoringCallable, + }); + + /// The geographic position to scan around (passed in from the Claim screen + /// after it acquires the user's location, or from LiveRouteScreen). + final LatLng scanPosition; + + /// Fired when the flow reaches a terminal state (claimed, quiz-failed, + /// empty, or the user cancels out). + final ValueChanged onCompleted; + + /// Optional hook invoked when the user explicitly cancels (e.g. taps "Back" + /// on the empty or quiz-failed state, or "Rescan location" which hands + /// control back to the parent). If null, cancellation silently fires + /// [onCompleted] with a zero-score result. + final VoidCallback? onCancel; + + /// When `true`, scales up buttons and adds extra bottom padding for + /// one-handed reach in the route-mode bottom sheet. Default: `false`. + final bool compact; + + /// Optional streak stream supplied by the parent. When non-null the claimed + /// screen shows a streak chip driven by this stream. Pass the parent's own + /// cached stream so there is only one [StreakService] subscription at a time. + /// When null the streak chip is omitted from [_buildClaimed]. + final Stream? streakStream; + + /// Injectable stub for the `nearbyPostboxes` Firebase callable. + /// When null, defaults to [FirebaseFunctions.instance.httpsCallable]. + /// Inject in tests to avoid real Firebase initialisation. + final NearbyPostboxesCallableFn? nearbyCallable; + + /// Injectable stub for the `startScoring` Firebase callable. + /// When null, defaults to [FirebaseFunctions.instance.httpsCallable]. + /// Inject in tests to avoid real Firebase initialisation. + final StartScoringCallableFn? startScoringCallable; + + @override + State createState() => _ClaimQuizSheetState(); +} + +class _ClaimQuizSheetState extends State + with TickerProviderStateMixin { + // ── Scan results ──────────────────────────────────────────────────────── + int _count = 0; + int _maxPoints = 0; + int _minPoints = 0; + int _claimedToday = 0; + Map _postboxes = {}; + DistanceUnit _distanceUnit = DistanceUnit.meters; + + // ── Quiz ───────────────────────────────────────────────────────────────── + String? _quizCipher; + String? _selectedAnswer; + List _quizOptions = []; + // Distinct known ciphers on nearby unclaimed-today postboxes — any one is a + // correct answer. The UI prompts the user to look at "one of the nearby + // postboxes" when there are multiple, so locking the answer to a single + // randomly-picked cipher would reject correct identifications of other + // postboxes the user might have looked at. + Set _validQuizCiphers = const {}; + + // ── Claim result ───────────────────────────────────────────────────────── + int _pointsEarned = 0; + int _claimedCount = 0; + bool _isClaiming = false; + + // ── State machine ───────────────────────────────────────────────────────── + _QuizStage _stage = _QuizStage.searching; + + // ── Animations ──────────────────────────────────────────────────────────── + late AnimationController _successController; + late Animation _successScale; + late AnimationController _pulseController; + late Animation _pulseAnim; + late ConfettiController _confettiController; + + // ── Services ────────────────────────────────────────────────────────────── + late final NearbyPostboxesCallableFn _nearbyCallable; + late final StartScoringCallableFn _claimCallable; + final HomeWidgetService _homeWidgetService = HomeWidgetService(); + + @override + void initState() { + super.initState(); + + _nearbyCallable = widget.nearbyCallable ?? + (payload) => FirebaseFunctions.instance + .httpsCallable('nearbyPostboxes') + .call(payload); + _claimCallable = widget.startScoringCallable ?? + (payload) => FirebaseFunctions.instance + .httpsCallable('startScoring') + .call(payload); + + _successController = AnimationController( + vsync: this, + duration: const Duration(milliseconds: 600), + ); + _successScale = CurvedAnimation( + parent: _successController, + curve: Curves.elasticOut, + ); + _confettiController = + ConfettiController(duration: const Duration(seconds: 3)); + _pulseController = AnimationController( + vsync: this, + duration: const Duration(milliseconds: 1200), + )..repeat(reverse: true); + _pulseAnim = + CurvedAnimation(parent: _pulseController, curve: Curves.easeInOut); + + AppPreferences.getDistanceUnit().then((unit) { + if (mounted) setState(() => _distanceUnit = unit); + }); + + // Kick off the scan immediately on first build. + WidgetsBinding.instance.addPostFrameCallback((_) { + if (mounted) unawaited(_runSearch()); + }); + } + + @override + void dispose() { + _successController.dispose(); + _pulseController.dispose(); + _confettiController.dispose(); + super.dispose(); + } + + // ── Search ──────────────────────────────────────────────────────────────── + + Future _runSearch() async { + if (_stage != _QuizStage.searching) { + setState(() => _stage = _QuizStage.searching); + } + + Analytics.scanStarted(); + + try { + _distanceUnit = await AppPreferences.getDistanceUnit(); + + final result = await _nearbyCallable({ + 'lat': widget.scanPosition.latitude, + 'lng': widget.scanPosition.longitude, + 'meters': AppPreferences.claimRadiusMeters, + }); + + if (!mounted) return; + + final data = Map.from(result.data as Map); + final counts = Map.from(data['counts'] as Map); + final points = Map.from(data['points'] as Map); + final rawPostboxes = data['postboxes'] as Map? ?? {}; + final postboxes = {}; + for (final entry in rawPostboxes.entries) { + postboxes[entry.key as String] = + Map.from(entry.value as Map); + } + + // Cloud Functions serialise JS numbers as either int or double; + // assigning a double to a typed int field throws, so normalise via num. + int asInt(dynamic v) => (v as num?)?.toInt() ?? 0; + + setState(() { + _count = asInt(counts['total']); + _maxPoints = asInt(points['max']); + _minPoints = asInt(points['min']); + _claimedToday = asInt(counts['claimedToday']); + _postboxes = postboxes; + _stage = _count > 0 ? _QuizStage.results : _QuizStage.empty; + }); + + if (_count > 0) { + Analytics.scanComplete( + count: _count, + claimedToday: _claimedToday, + minPoints: _minPoints, + maxPoints: _maxPoints, + ); + if (mounted && _claimedToday == _count) { + JamesController.of(context) + ?.show(JamesMessages.claimErrorAlreadyClaimed.resolve()); + } + } else { + Analytics.scanEmpty(); + if (mounted) { + JamesController.of(context) + ?.show(JamesMessages.claimScanEmpty.resolve()); + } + } + } on FirebaseFunctionsException catch (e) { + debugPrint('Firebase functions error: ${e.code} ${e.message}'); + final isOffline = e.code == 'unavailable'; + _showErrorSnackBar(isOffline + ? 'No internet connection. Please try again.' + : 'Could not scan for postboxes. Please try again.'); + if (!mounted) return; + JamesController.of(context)?.show( + isOffline + ? JamesMessages.errorOffline.resolve() + : JamesMessages.claimErrorGeneral.resolve(), + ); + _cancel(); + } on TimeoutException { + _showErrorSnackBar( + 'GPS signal timed out. Move to an open area and try again.'); + if (!mounted) return; + JamesController.of(context) + ?.show(JamesMessages.claimErrorGeneral.resolve()); + _cancel(); + } catch (e) { + debugPrint('Error scanning: $e'); + final raw = e.toString(); + if (raw.contains('permanently denied')) { + unawaited(Analytics.locationPermissionPermanentlyDenied()); + _showPermissionDeniedSnackBar(); + } else if (raw.contains('services are disabled')) { + _showLocationServicesDisabledSnackBar(); + } else { + _showErrorSnackBar(raw.startsWith('Exception: ') + ? raw.replaceFirst('Exception: ', '') + : 'Could not scan for postboxes. Please try again.'); + } + if (!mounted) return; + final msg = raw.contains('permission') + ? JamesMessages.nearbyErrorPermission.resolve() + : JamesMessages.claimErrorGeneral.resolve(); + JamesController.of(context)?.show(msg); + _cancel(); + } finally { + // Safety net: ensure we never get permanently stuck in 'searching' state. + if (mounted && _stage == _QuizStage.searching) { + _cancel(); + } + } + } + + // ── Claim ───────────────────────────────────────────────────────────────── + + Future _claimPostbox() async { + if (_isClaiming) return; + setState(() => _isClaiming = true); + HapticFeedback.mediumImpact(); + try { + final position = await getPosition(); + final result = await _claimCallable({ + 'lat': position.latitude, + 'lng': position.longitude, + }); + final claimData = Map.from(result.data as Map); + final found = claimData['found'] == true; + final allClaimedToday = claimData['allClaimedToday'] == true; + final rawClaimed = claimData['claimed'] ?? 0; + final claimedCount = + rawClaimed is int ? rawClaimed : (rawClaimed as num).toInt(); + + if (!found) { + Analytics.claimFailed(reason: 'out_of_range'); + if (!mounted) return; + setState(() => _isClaiming = false); + JamesController.of(context) + ?.show(JamesMessages.claimOutOfRange.resolve()); + // Re-run the search with the same position (postbox didn't move, + // but the user may have drifted). The parent retains control. + await _runSearch(); + return; + } + if (allClaimedToday || claimedCount == 0) { + Analytics.claimFailed(reason: 'already_claimed_today'); + if (!mounted) return; + setState(() => _isClaiming = false); + _showErrorSnackBar('Already claimed today — come back tomorrow!'); + JamesController.of(context) + ?.show(JamesMessages.claimErrorAlreadyClaimed.resolve()); + await _runSearch(); + return; + } + final points = claimData['points'] ?? 0; + if (!mounted) return; + final earnedPts = + points is int ? points : (points as num).toInt(); + Analytics.claimSuccess(pointsEarned: earnedPts, claimedCount: claimedCount); + setState(() { + _pointsEarned = earnedPts; + _claimedCount = claimedCount; + _isClaiming = false; + _stage = _QuizStage.claimed; + }); + unawaited(_homeWidgetService.refresh()); + _successController.forward(from: 0); + _confettiController.play(); + if (mounted) { + final String msg; + if (_claimedCount > 1) { + msg = JamesMessages.claimSuccessMulti(_claimedCount, _pointsEarned); + } else { + final avgPts = _claimedCount > 0 ? _pointsEarned / _claimedCount : 0; + msg = avgPts >= 7 + ? JamesMessages.claimSuccessRare.resolve() + : JamesMessages.claimSuccessStandard.resolve(); + } + JamesController.of(context)?.show(msg); + } + } on FirebaseFunctionsException catch (e) { + debugPrint('Claim error: ${e.code} ${e.message}'); + Analytics.claimFailed(reason: e.code); + final snackMsg = e.code == 'unavailable' + ? 'No internet connection. Please try again.' + : 'Could not claim postbox. Please try again.'; + _showErrorSnackBar(snackMsg); + if (!mounted) return; + setState(() => _isClaiming = false); + final msg = (e.code == 'unavailable') + ? JamesMessages.errorOffline.resolve() + : JamesMessages.claimErrorGeneral.resolve(); + JamesController.of(context)?.show(msg); + } catch (e) { + debugPrint('Claim error: $e'); + final raw = e.toString(); + final isPermission = raw.contains('permission'); + final msg = isPermission + ? JamesMessages.nearbyErrorPermission.resolve() + : JamesMessages.claimErrorGeneral.resolve(); + if (raw.contains('permanently denied')) { + unawaited(Analytics.locationPermissionPermanentlyDenied()); + _showPermissionDeniedSnackBar(); + } else if (raw.contains('services are disabled')) { + _showLocationServicesDisabledSnackBar(); + } else { + _showErrorSnackBar(isPermission + ? raw.replaceFirst('Exception: ', '') + : 'Could not claim postbox. Please try again.'); + } + if (!mounted) return; + setState(() => _isClaiming = false); + JamesController.of(context)?.show(msg); + } finally { + if (mounted && _isClaiming) setState(() => _isClaiming = false); + } + } + + // ── Quiz helpers ────────────────────────────────────────────────────────── + + Set _collectValidCiphers() { + final ciphers = {}; + for (final p in _postboxes.values) { + final map = p as Map; + if (map['claimedToday'] == true) continue; + final monarch = map['monarch']; + // Only ciphers in MonarchInfo.all so the option pool can always render + // the correct answer; unknown OSM cyphers are accepted via the direct + // claim path (no quiz triggered) elsewhere. + if (monarch != null && + monarch is String && + monarch.isNotEmpty && + MonarchInfo.all.contains(monarch)) { + ciphers.add(monarch); + } + } + return ciphers; + } + + /// Always include every nearby valid cipher (so the user can pick the one + /// they actually see), padded with distractors. With more than [maxOptions] + /// valid nearby ciphers only [maxOptions] of them appear — the rest are + /// still accepted as correct by [_onQuizAnswer], they just don't get a row. + List _buildQuizOptions(Set validCiphers, + {int maxOptions = 4}) { + final valid = validCiphers.toList()..shuffle(); + final pickedValid = valid.take(maxOptions).toList(); + final pool = List.from(MonarchInfo.all) + ..removeWhere(pickedValid.contains) + ..shuffle(); + final fillers = pool.take(maxOptions - pickedValid.length).toList(); + return ([...pickedValid, ...fillers]..shuffle()); + } + + void _startQuiz() { + final valid = _collectValidCiphers(); + if (valid.isEmpty) { + unawaited(_claimPostbox()); + return; + } + final picked = (valid.toList()..shuffle()).first; + Analytics.quizStarted(cipher: picked); + setState(() { + _quizCipher = picked; + _validQuizCiphers = valid; + _quizOptions = _buildQuizOptions(valid); + _selectedAnswer = null; + _stage = _QuizStage.quiz; + }); + } + + void _onQuizAnswer(String answer) { + setState(() => _selectedAnswer = answer); + if (_validQuizCiphers.contains(answer)) { + Analytics.quizCorrect(cipher: answer); + HapticFeedback.lightImpact(); + unawaited(_claimPostbox()); + } else { + Analytics.quizIncorrect( + correctCipher: _quizCipher!, + selectedCipher: answer, + ); + HapticFeedback.heavyImpact(); + setState(() => _stage = _QuizStage.quizFailed); + if (mounted) { + JamesController.of(context)?.show(JamesMessages.quizFailed.resolve()); + } + } + } + + // ── Cancel / completion ──────────────────────────────────────────────────── + + void _cancel() { + if (widget.onCancel != null) { + widget.onCancel!(); + } else { + widget.onCompleted(const ClaimQuizResult()); + } + } + + void _completeSuccess() { + widget.onCompleted(ClaimQuizResult( + claimedCount: _claimedCount, + pointsEarned: _pointsEarned, + )); + } + + void _completeEmpty() { + widget.onCompleted(const ClaimQuizResult(empty: true)); + } + + // ── SnackBar helpers ─────────────────────────────────────────────────────── + + void _showErrorSnackBar(String message) { + if (!mounted) return; + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: Text(message), + backgroundColor: _error(context), + ), + ); + } + + void _showPermissionDeniedSnackBar() { + if (!mounted) return; + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: const Text('Location permission permanently denied.'), + backgroundColor: _error(context), + action: SnackBarAction( + label: 'Open Settings', + textColor: Colors.white, + onPressed: Geolocator.openAppSettings, + ), + ), + ); + } + + void _showLocationServicesDisabledSnackBar() { + if (!mounted) return; + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + content: const Text('Location services are disabled.'), + backgroundColor: _error(context), + action: SnackBarAction( + label: 'Open Settings', + textColor: Colors.white, + onPressed: Geolocator.openLocationSettings, + ), + ), + ); + } + + // ── Layout constants ────────────────────────────────────────────────────── + + double get _bottomPad => widget.compact ? 120.0 : kJamesStripClearance; + double get _buttonHeight => widget.compact ? 60.0 : 52.0; + double get _optionHeight => widget.compact ? 68.0 : 56.0; + + // ── Map helper ───────────────────────────────────────────────────────────── + + Widget _claimRadiusMap({bool scanning = false, bool success = false}) { + final center = widget.scanPosition; + if (scanning) { + return AnimatedBuilder( + animation: _pulseAnim, + builder: (_, __) { + final alpha = 0.35 + _pulseAnim.value * 0.45; + final strokeWidth = 2.0 + _pulseAnim.value * 3.0; + return Card( + clipBehavior: Clip.antiAlias, + child: SizedBox( + height: 180, + child: PostboxMap( + center: center, + zoom: 17, + interactionOptions: + const InteractionOptions(flags: InteractiveFlag.none), + circleMarkers: [ + CircleMarker( + point: center, + radius: AppPreferences.claimRadiusMeters, + useRadiusInMeter: true, + color: postalRed.withValues(alpha: 0.1), + borderColor: + postalRed.withValues(alpha: 0.4 + alpha * 0.5), + borderStrokeWidth: strokeWidth, + ), + ], + markers: [userPositionMarker(center)], + bottomPadding: 0, + ), + ), + ); + }, + ); + } + final mutedFill = Theme.of(context).brightness == Brightness.dark + ? AppColors.mutedTextDark + : AppColors.mutedTextLight; + final borderColor = success + ? postalGold.withValues(alpha: 0.7) + : mutedFill.withValues(alpha: 0.6); + final fillColor = success ? postalGold : mutedFill; + return Card( + clipBehavior: Clip.antiAlias, + child: SizedBox( + height: 180, + child: PostboxMap( + center: center, + zoom: 17, + interactionOptions: + const InteractionOptions(flags: InteractiveFlag.none), + circleMarkers: [ + CircleMarker( + point: center, + radius: AppPreferences.claimRadiusMeters, + useRadiusInMeter: true, + color: fillColor.withValues(alpha: 0.12), + borderColor: borderColor, + borderStrokeWidth: 3, + ), + ], + markers: [userPositionMarker(center)], + bottomPadding: 0, + ), + ), + ); + } + + // ── All-claimed banner ───────────────────────────────────────────────────── + + Widget _buildAllClaimedBanner(BuildContext context) { + return Container( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.md, vertical: AppSpacing.sm), + decoration: BoxDecoration( + color: _warning(context).withValues(alpha: 0.10), + borderRadius: BorderRadius.circular(12), + border: Border.all(color: _warning(context).withValues(alpha: 0.40)), + ), + child: Row( + children: [ + Icon(Icons.lock_clock, color: _warning(context)), + const SizedBox(width: AppSpacing.sm), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisSize: MainAxisSize.min, + children: [ + Text( + 'Already claimed today', + style: TextStyle( + color: _warning(context), fontWeight: FontWeight.w600), + ), + Text( + 'Resets at midnight · London time', + style: Theme.of(context) + .textTheme + .bodySmall + ?.copyWith(color: _warning(context)), + ), + ], + ), + ), + ], + ), + ); + } + + // ── Build ───────────────────────────────────────────────────────────────── + + @override + Widget build(BuildContext context) { + switch (_stage) { + case _QuizStage.searching: + return _buildSearching(context); + case _QuizStage.results: + return _buildResults(context); + case _QuizStage.empty: + return _buildEmpty(context); + case _QuizStage.quiz: + return _buildQuiz(context); + case _QuizStage.quizFailed: + return _buildQuizFailed(context); + case _QuizStage.claimed: + return _buildClaimed(context); + } + } + + // ── Stage builders ──────────────────────────────────────────────────────── + + Widget _buildSearching(BuildContext context) { + return Padding( + padding: EdgeInsets.fromLTRB( + AppSpacing.md, AppSpacing.lg, AppSpacing.md, _bottomPad), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + _claimRadiusMap(scanning: true), + const SizedBox(height: AppSpacing.md), + const CircularProgressIndicator(color: postalRed), + const SizedBox(height: AppSpacing.md), + Text( + 'Scanning within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)}...'), + ], + ), + ); + } + + Widget _buildEmpty(BuildContext context) { + return LayoutBuilder( + builder: (context, constraints) => SingleChildScrollView( + padding: EdgeInsets.only( + top: AppSpacing.xl, + left: AppSpacing.xl, + right: AppSpacing.xl, + bottom: _bottomPad, + ), + child: ConstrainedBox( + constraints: BoxConstraints(minHeight: constraints.maxHeight - _bottomPad), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + _claimRadiusMap(), + const SizedBox(height: AppSpacing.md), + Icon(Icons.location_off, + size: 80, + color: Theme.of(context) + .colorScheme + .onSurface + .withValues(alpha: 0.2)), + const SizedBox(height: AppSpacing.md), + Text( + 'No postboxes found within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)}', + style: Theme.of(context) + .textTheme + .titleLarge + ?.copyWith(fontWeight: FontWeight.bold), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.sm), + Text( + 'Try moving closer to a postbox. They have exact locations.', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.xl), + OutlinedButton.icon( + onPressed: () => Navigator.of(context).push( + MaterialPageRoute( + builder: (_) => ReportMissingPostboxScreen( + // Convert LatLng back to a null Position; the screen + // will use its own live-GPS fix as the authoritative + // location. Pass null so it doesn't prefill with stale + // coords — the user is already in this area anyway. + initialPosition: null, + ), + ), + ), + icon: const Icon(Icons.report_gmailerrorred_outlined), + label: const Text('Report a missing postbox'), + ), + const SizedBox(height: AppSpacing.sm), + TextButton( + onPressed: () { + _completeEmpty(); + }, + child: const Text('Back'), + ), + ], + ), + ), + ), + ); + } + + Widget _buildResults(BuildContext context) { + return Stack( + children: [ + ListView( + padding: EdgeInsets.only( + top: AppSpacing.md, + bottom: _bottomPad + 64, + ), + children: [ + Padding( + padding: const EdgeInsets.fromLTRB( + AppSpacing.md, 0, AppSpacing.md, AppSpacing.sm), + child: + _claimRadiusMap(success: _claimedToday < _count), + ), + _summaryCard(context), + const SizedBox(height: AppSpacing.sm), + Padding( + padding: + const EdgeInsets.symmetric(horizontal: AppSpacing.md), + child: OutlinedButton.icon( + onPressed: _isClaiming ? null : _cancel, + icon: const Icon(Icons.refresh), + label: const Text('Rescan location'), + style: OutlinedButton.styleFrom( + minimumSize: Size(double.infinity, _buttonHeight), + ), + ), + ), + ], + ), + Positioned( + left: AppSpacing.md, + right: AppSpacing.md, + bottom: _bottomPad, + child: _claimedToday == _count + ? _buildAllClaimedBanner(context) + : AbsorbPointer( + absorbing: _isClaiming, + child: FilledButton.icon( + onPressed: _isClaiming ? null : _startQuiz, + style: FilledButton.styleFrom( + minimumSize: Size(double.infinity, _buttonHeight), + ), + icon: _isClaiming + ? const SizedBox( + width: 18, + height: 18, + child: CircularProgressIndicator( + color: Colors.white, + strokeWidth: 2, + ), + ) + : const Icon(Icons.check_circle_outline), + label: Text(_isClaiming + ? 'Claiming...' + : (_count - _claimedToday) == 1 + ? 'Claim this postbox!' + : 'Claim ${_count - _claimedToday} postboxes!'), + ), + ), + ), + ], + ); + } + + Widget _summaryCard(BuildContext context) { + final pointsText = _maxPoints == _minPoints + ? '$_maxPoints pts' + : '$_minPoints–$_maxPoints pts'; + return Card( + child: Padding( + padding: const EdgeInsets.all(AppSpacing.md), + child: Row( + children: [ + Container( + padding: const EdgeInsets.all(AppSpacing.sm), + decoration: BoxDecoration( + color: postalRed.withValues(alpha: 0.1), + borderRadius: BorderRadius.circular(8), + ), + child: const Icon(Icons.location_on, color: postalRed), + ), + const SizedBox(width: AppSpacing.md), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + _claimedToday == _count + ? (_count == 1 + ? 'This postbox was claimed today' + : 'All $_count postboxes claimed today') + : _claimedToday > 0 + ? '${_count - _claimedToday} of $_count available · $_claimedToday claimed today' + : '$_count postbox${_count == 1 ? '' : 'es'} within ${AppPreferences.formatShortDistance(AppPreferences.claimRadiusMeters, _distanceUnit)}', + style: Theme.of(context).textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.bold, + ), + ), + if (_claimedToday < _count) + Text( + 'Worth $pointsText', + style: Theme.of(context).textTheme.bodySmall?.copyWith( + color: + Theme.of(context).colorScheme.onSurfaceVariant), + ), + ], + ), + ), + ], + ), + ), + ); + } + + Widget _buildQuiz(BuildContext context) { + return LayoutBuilder( + builder: (context, constraints) => SingleChildScrollView( + padding: EdgeInsets.only( + top: AppSpacing.xl, + left: AppSpacing.xl, + right: AppSpacing.xl, + bottom: _bottomPad, + ), + child: ConstrainedBox( + constraints: + BoxConstraints(minHeight: constraints.maxHeight - _bottomPad), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Icon(Icons.help_outline, size: 64, color: postalRed), + const SizedBox(height: AppSpacing.md), + Text( + (_count - _claimedToday) == 1 + ? 'What\'s the cipher on this postbox?' + : 'What\'s the cipher on one of the nearby postboxes?', + style: Theme.of(context) + .textTheme + .headlineSmall + ?.copyWith(fontWeight: FontWeight.bold), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.xs), + Text( + (_count - _claimedToday) == 1 + ? 'Look at the postbox and pick the correct royal cipher.' + : 'Look at one of the postboxes and pick its royal cipher.', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.xl), + ..._quizOptions.map((code) { + final isSelected = _selectedAnswer == code; + final isCorrectSelected = isSelected && _isClaiming; + return Padding( + padding: const EdgeInsets.only(bottom: AppSpacing.sm), + child: AnimatedContainer( + duration: const Duration(milliseconds: 200), + decoration: BoxDecoration( + color: isCorrectSelected + ? _success(context).withValues(alpha: 0.10) + : Colors.transparent, + borderRadius: BorderRadius.circular(8), + ), + child: OutlinedButton( + onPressed: + _isClaiming ? null : () => _onQuizAnswer(code), + style: OutlinedButton.styleFrom( + minimumSize: Size(double.infinity, _optionHeight), + side: BorderSide( + color: isCorrectSelected + ? _success(context) + : (Theme.of(context).brightness == + Brightness.dark + ? AppColors.brandTextDark + : AppColors.brandTextLight), + width: isCorrectSelected ? 2 : 1, + ), + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + if (isCorrectSelected) ...[ + SizedBox( + width: 16, + height: 16, + child: CircularProgressIndicator( + strokeWidth: 2, + color: _success(context), + ), + ), + const SizedBox(width: AppSpacing.sm), + ], + Column( + children: [ + Text( + isCorrectSelected ? 'Correct! Claiming…' : code, + style: TextStyle( + fontWeight: FontWeight.bold, + fontSize: 16, + color: isCorrectSelected + ? _success(context) + : null, + ), + ), + if (!isCorrectSelected) + Text( + MonarchInfo.labels[code] ?? code, + style: Theme.of(context) + .textTheme + .bodySmall + ?.copyWith( + color: Theme.of(context) + .colorScheme + .onSurfaceVariant), + ), + ], + ), + ], + ), + ), + ), + ); + }), + const SizedBox(height: AppSpacing.md), + TextButton( + onPressed: _isClaiming + ? null + : () => setState(() => _stage = _QuizStage.results), + child: const Text('Back'), + ), + ], + ), + ), + ), + ); + } + + Widget _buildQuizFailed(BuildContext context) { + return LayoutBuilder( + builder: (context, constraints) => SingleChildScrollView( + padding: EdgeInsets.only( + top: AppSpacing.xl, + left: AppSpacing.xl, + right: AppSpacing.xl, + bottom: _bottomPad, + ), + child: ConstrainedBox( + constraints: + BoxConstraints(minHeight: constraints.maxHeight - _bottomPad), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Icon(Icons.cancel_outlined, size: 80, color: _error(context)), + const SizedBox(height: AppSpacing.lg), + Text( + 'Not quite!', + style: Theme.of(context) + .textTheme + .headlineMedium + ?.copyWith(fontWeight: FontWeight.bold), + ), + const SizedBox(height: AppSpacing.sm), + Text( + 'Take another look at the cipher on the postbox and try again.', + style: Theme.of(context).textTheme.bodyMedium?.copyWith( + color: Theme.of(context).colorScheme.onSurfaceVariant), + textAlign: TextAlign.center, + ), + const SizedBox(height: AppSpacing.xl), + FilledButton.icon( + onPressed: () => setState(() => _stage = _QuizStage.results), + style: FilledButton.styleFrom( + minimumSize: Size(double.infinity, _buttonHeight), + ), + icon: const Icon(Icons.arrow_back), + label: const Text('Try again'), + ), + const SizedBox(height: AppSpacing.sm), + TextButton( + onPressed: _cancel, + child: const Text('Rescan location'), + ), + ], + ), + ), + ), + ); + } + + Widget _buildClaimed(BuildContext context) { + return Stack( + children: [ + LayoutBuilder( + builder: (context, constraints) => SingleChildScrollView( + padding: EdgeInsets.only( + top: AppSpacing.xl, + left: AppSpacing.xl, + right: AppSpacing.xl, + bottom: _bottomPad, + ), + child: ConstrainedBox( + constraints: + BoxConstraints(minHeight: constraints.maxHeight - _bottomPad), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + ScaleTransition( + scale: _successScale, + child: Icon( + Icons.check_circle, + size: 100, + color: _success(context), + ), + ), + const SizedBox(height: AppSpacing.lg), + Text( + _claimedCount > 1 + ? '$_claimedCount postboxes claimed!' + : 'Postbox claimed!', + style: Theme.of(context) + .textTheme + .headlineMedium + ?.copyWith(fontWeight: FontWeight.bold), + ), + const SizedBox(height: AppSpacing.sm), + if (_pointsEarned > 0) + Container( + padding: const EdgeInsets.symmetric( + horizontal: AppSpacing.lg, + vertical: AppSpacing.sm, + ), + decoration: BoxDecoration( + color: postalGold.withValues(alpha: 0.15), + borderRadius: BorderRadius.circular(20), + ), + child: Text( + '+$_pointsEarned points', + style: Theme.of(context) + .textTheme + .titleLarge + ?.copyWith( + color: postalGold, + fontWeight: FontWeight.bold), + ), + ), + if (widget.streakStream != null) + StreamBuilder( + stream: widget.streakStream, + builder: (context, snap) { + final streak = snap.data ?? 0; + if (streak <= 0) return const SizedBox.shrink(); + return Padding( + padding: const EdgeInsets.only(top: AppSpacing.sm), + child: Text( + streak == 1 + ? '🔥 Streak started!' + : '🔥 $streak-day streak!', + style: Theme.of(context).textTheme.titleMedium, + textAlign: TextAlign.center, + ), + ); + }, + ), + const SizedBox(height: AppSpacing.xxl), + FilledButton.icon( + onPressed: _completeSuccess, + style: FilledButton.styleFrom( + minimumSize: Size(double.infinity, _buttonHeight), + ), + icon: const Icon(Icons.explore), + label: const Text('Keep exploring'), + ), + ], + ), + ), + ), + ), + // Confetti is last in the Stack so it renders on top of the content. + Align( + alignment: Alignment.topCenter, + child: ConfettiWidget( + confettiController: _confettiController, + blastDirectionality: BlastDirectionality.explosive, + particleDrag: 0.05, + emissionFrequency: 0.07, + numberOfParticles: 20, + maxBlastForce: 20, + minBlastForce: 8, + gravity: 0.3, + colors: const [postalRed, postalGold, Colors.white, royalNavy], + ), + ), + ], + ); + } +} diff --git a/pubspec.lock b/pubspec.lock index 1108119..26541e0 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -737,7 +737,7 @@ packages: source: hosted version: "1.0.3" http: - dependency: transitive + dependency: "direct main" description: name: http sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412" diff --git a/pubspec.yaml b/pubspec.yaml index 6cec1f4..f7e24ed 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -53,6 +53,7 @@ dependencies: image_picker: ^1.1.0 exif: ^3.3.0 url_launcher: ^6.3.0 + http: ^1.2.0 dev_dependencies: flutter_test: diff --git a/test/nominatim_service_test.dart b/test/nominatim_service_test.dart new file mode 100644 index 0000000..afa708b --- /dev/null +++ b/test/nominatim_service_test.dart @@ -0,0 +1,207 @@ +// Tests for NominatimService. +// +// Uses a mock http.Client so no real network requests are made. + +import 'dart:convert'; + +import 'package:flutter_test/flutter_test.dart'; +import 'package:http/http.dart' as http; +import 'package:http/testing.dart'; +import 'package:postbox_game/route/nominatim_service.dart'; + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +/// Builds a minimal Nominatim JSON response list. +String _nominatimJson(List> items) { + return jsonEncode(items.map((m) => { + 'display_name': m['display_name']!, + 'lat': m['lat']!, + 'lon': m['lon']!, + }).toList()); +} + +const _sampleResults = [ + { + 'display_name': 'Buckingham Palace, Westminster, London, England, SW1A 1AA', + 'lat': '51.5014', + 'lon': '-0.1419', + }, + { + 'display_name': 'Palace Road, London Borough of Bromley, London, England', + 'lat': '51.4052', + 'lon': '-0.0582', + }, +]; + +// --------------------------------------------------------------------------- +// Tests +// --------------------------------------------------------------------------- + +void main() { + group('NominatimService', () { + test('empty query returns [] without hitting the network', () async { + bool wasCalled = false; + final mockClient = MockClient((_) async { + wasCalled = true; + return http.Response('[]', 200); + }); + + final service = NominatimService(client: mockClient); + final results = await service.search(''); + expect(results, isEmpty); + expect(wasCalled, isFalse, + reason: 'No HTTP call should be made for an empty query'); + }); + + test('whitespace-only query returns [] without hitting the network', + () async { + bool wasCalled = false; + final mockClient = MockClient((_) async { + wasCalled = true; + return http.Response('[]', 200); + }); + + final service = NominatimService(client: mockClient); + final results = await service.search(' '); + expect(results, isEmpty); + expect(wasCalled, isFalse); + }); + + test('200 response is parsed into NominatimResult list', () async { + final mockClient = MockClient((_) async { + return http.Response(_nominatimJson(_sampleResults), 200); + }); + + final service = NominatimService(client: mockClient); + final results = await service.search('Buckingham Palace'); + + expect(results, hasLength(2)); + + expect(results[0].displayName, contains('Buckingham Palace')); + expect(results[0].location.latitude, closeTo(51.5014, 0.0001)); + expect(results[0].location.longitude, closeTo(-0.1419, 0.0001)); + + expect(results[1].displayName, contains('Palace Road')); + }); + + test('empty JSON array returns empty list', () async { + final mockClient = MockClient((_) async { + return http.Response('[]', 200); + }); + + final service = NominatimService(client: mockClient); + final results = await service.search('xyzzy nowhere'); + expect(results, isEmpty); + }); + + test('4xx HTTP status throws', () async { + final mockClient = MockClient((_) async { + return http.Response('Not Found', 404); + }); + + final service = NominatimService(client: mockClient); + expect( + () => service.search('London'), + throwsA( + isA().having( + (e) => e.toString(), + 'message', + contains('404'), + ), + ), + ); + }); + + test('5xx HTTP status throws', () async { + final mockClient = MockClient((_) async { + return http.Response('Internal Server Error', 500); + }); + + final service = NominatimService(client: mockClient); + expect( + () => service.search('London'), + throwsA( + isA().having( + (e) => e.toString(), + 'message', + contains('500'), + ), + ), + ); + }); + + test('non-JSON 200 response throws', () async { + final mockClient = MockClient((_) async { + return http.Response('error', 200); + }); + + final service = NominatimService(client: mockClient); + expect( + () => service.search('London'), + throwsA(isA()), + ); + }); + + test('User-Agent header is sent with each request', () async { + http.Request? capturedRequest; + final mockClient = MockClient((request) async { + capturedRequest = request; + return http.Response(_nominatimJson(_sampleResults), 200); + }); + + final service = NominatimService(client: mockClient); + await service.search('London'); + + expect(capturedRequest, isNotNull); + expect(capturedRequest!.headers['User-Agent'], isNotNull); + expect(capturedRequest!.headers['User-Agent'], contains('postbox-game')); + }); + + test('request URL includes GB countrycodes and limit=5', () async { + http.Request? capturedRequest; + final mockClient = MockClient((request) async { + capturedRequest = request; + return http.Response('[]', 200); + }); + + final service = NominatimService(client: mockClient); + await service.search('Oxford'); + + expect(capturedRequest, isNotNull); + final uri = capturedRequest!.url; + expect(uri.queryParameters['countrycodes'], 'gb'); + expect(uri.queryParameters['limit'], '5'); + expect(uri.queryParameters['format'], 'json'); + }); + + test('throttle: two rapid calls are separated by at least 1 second', + () async { + int callCount = 0; + final callTimes = []; + + final mockClient = MockClient((_) async { + callCount++; + callTimes.add(DateTime.now()); + return http.Response('[]', 200); + }); + + final service = NominatimService(client: mockClient); + + // Fire both calls without awaiting the first so they are "rapid". + final f1 = service.search('London'); + final f2 = service.search('Manchester'); + + await f1; + await f2; + + expect(callCount, 2); + final gap = callTimes[1].difference(callTimes[0]); + expect(gap.inMilliseconds, greaterThanOrEqualTo(900), + reason: + 'Second call should be delayed by ≥1 s due to throttle (gap was ' + '${gap.inMilliseconds} ms)'); + }); + }); +} diff --git a/test/route_completion_screen_test.dart b/test/route_completion_screen_test.dart new file mode 100644 index 0000000..d2999c4 --- /dev/null +++ b/test/route_completion_screen_test.dart @@ -0,0 +1,215 @@ +// Tests for RouteCompletionScreen (T9). +// +// Coverage: +// - Points, claims, and walking-time text render correctly. +// - "Done" button triggers popUntil(isFirst). +// - "Plan another route" button also navigates back to first route. +// +// RouteNotifications is NOT tested here — the flutter_local_notifications +// plugin requires a real platform channel that is unavailable in widget tests. +// A single sanity smoke-test for notifyArrival lives below and uses +// ignoreErrors to confirm no Dart-level throws occur. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/route/route_completion_screen.dart'; +import 'package:postbox_game/route/route_session.dart'; +import 'package:postbox_game/theme.dart'; + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +/// Wraps [RouteCompletionScreen] in a minimal [MaterialApp] with a fake +/// preceding route so that [popUntil(isFirst)] has at least one route to pop. +Widget _buildApp({ + required RouteSession session, + int pointsEarned = 0, + int claimedCount = 0, + int walkSeconds = 0, +}) { + return MaterialApp( + theme: AppTheme.light, + home: Navigator( + onGenerateRoute: (settings) => MaterialPageRoute( + builder: (_) => RouteCompletionScreen( + session: session, + pointsEarned: pointsEarned, + claimedCount: claimedCount, + walkSeconds: walkSeconds, + ), + ), + ), + ); +} + +RouteSession _makeSession() => RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.09), + destinationLabel: 'Buckingham Palace', + pace: RoutePace.walk, + ); + +// --------------------------------------------------------------------------- +// Tests +// --------------------------------------------------------------------------- + +void main() { + group('RouteCompletionScreen', () { + testWidgets('shows points earned', (tester) async { + await tester.pumpWidget(_buildApp( + session: _makeSession(), + pointsEarned: 42, + claimedCount: 3, + walkSeconds: 600, + )); + // Use pump rather than pumpAndSettle: the ConfettiWidget animation never + // "settles" so pumpAndSettle would time out. + await tester.pump(); + + expect(find.textContaining('42 points earned'), findsOneWidget); + }); + + testWidgets('shows claimed count — singular', (tester) async { + await tester.pumpWidget(_buildApp( + session: _makeSession(), + pointsEarned: 7, + claimedCount: 1, + walkSeconds: 120, + )); + await tester.pump(); + + expect(find.textContaining('1 postbox claimed'), findsOneWidget); + }); + + testWidgets('shows claimed count — plural', (tester) async { + await tester.pumpWidget(_buildApp( + session: _makeSession(), + pointsEarned: 14, + claimedCount: 2, + walkSeconds: 240, + )); + await tester.pump(); + + expect(find.textContaining('2 postboxes claimed'), findsOneWidget); + }); + + testWidgets('formats walking time — under one hour', (tester) async { + await tester.pumpWidget(_buildApp( + session: _makeSession(), + walkSeconds: 7 * 60 + 33, // 7 min 33 sec + )); + await tester.pump(); + + expect(find.textContaining('07 min 33 sec'), findsOneWidget); + }); + + testWidgets('formats walking time — over one hour', (tester) async { + await tester.pumpWidget(_buildApp( + session: _makeSession(), + walkSeconds: 3700, // 1 h 01 min + )); + await tester.pump(); + + expect(find.textContaining('1 h 01 min'), findsOneWidget); + }); + + testWidgets('shows pace chip', (tester) async { + await tester.pumpWidget(_buildApp( + session: _makeSession()..pace = RoutePace.walk, + )); + await tester.pump(); + + expect(find.textContaining('Walking'), findsOneWidget); + }); + + testWidgets('shows jogging chip for jog pace', (tester) async { + final session = _makeSession()..pace = RoutePace.jog; + await tester.pumpWidget(_buildApp(session: session)); + await tester.pump(); + + expect(find.textContaining('Jogging'), findsOneWidget); + }); + + testWidgets('"Done" button pops to first route', (tester) async { + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + home: Builder( + builder: (context) => ElevatedButton( + onPressed: () => Navigator.push( + context, + MaterialPageRoute( + builder: (_) => RouteCompletionScreen( + session: _makeSession(), + pointsEarned: 10, + claimedCount: 1, + walkSeconds: 60, + ), + ), + ), + child: const Text('Go'), + ), + ), + ), + ); + + // Navigate to the completion screen. + await tester.tap(find.text('Go')); + // Two pumps: one to start the push animation, one to finish it. + await tester.pump(); + await tester.pump(const Duration(milliseconds: 500)); + + await tester.tap(find.text('Done')); + await tester.pump(); + await tester.pump(const Duration(milliseconds: 500)); + + // After Done the navigator should have popped back to the first route + // (the 'Go' button screen). + expect(find.text('Go'), findsOneWidget); + }); + + testWidgets('"Plan another route" pops the route attempt and pushes /route', + (tester) async { + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + // Register /route so the post-pop pushNamed lands somewhere — this + // mirrors main.dart's routes table where /route resolves to the + // destination picker. + routes: { + '/route': (_) => const Scaffold(body: Text('Picker stub')), + }, + home: Builder( + builder: (context) => ElevatedButton( + onPressed: () => Navigator.push( + context, + MaterialPageRoute( + builder: (_) => RouteCompletionScreen( + session: _makeSession(), + ), + ), + ), + child: const Text('Start'), + ), + ), + ), + ); + + await tester.tap(find.text('Start')); + await tester.pump(); + await tester.pump(const Duration(milliseconds: 500)); + + await tester.tap(find.text('Plan another route')); + await tester.pump(); + await tester.pump(const Duration(milliseconds: 500)); + + // The picker is pushed on top of the home (Start) — Start exists in the + // back-stack and the picker stub is now on top. + expect(find.text('Picker stub'), findsOneWidget); + expect(find.byType(RouteCompletionScreen), findsNothing); + }); + }); +} + diff --git a/test/route_destination_picker_test.dart b/test/route_destination_picker_test.dart new file mode 100644 index 0000000..c986a2a --- /dev/null +++ b/test/route_destination_picker_test.dart @@ -0,0 +1,337 @@ +// Tests for DestinationPickerScreen and RouteSession. +// +// Notes on scope: +// - Gesture-based map taps are skipped: FlutterMap renders into a canvas and +// does not expose widget-tree tap targets that flutter_test can find. The +// onTap wiring is a one-liner verified by code review. +// - The loading state and "button disabled until pin dropped" cases are +// covered by injecting `initialPosition` so the screen bypasses the real +// getPosition() call entirely. +// - The NominatimService is injected as a mock to avoid real HTTP calls. + +import 'dart:convert'; + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:http/http.dart' as http; +import 'package:http/testing.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/route/destination_picker_screen.dart'; +import 'package:postbox_game/route/nominatim_service.dart'; +import 'package:postbox_game/route/route_session.dart'; +import 'package:postbox_game/theme.dart'; + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +/// Wraps the screen in the minimal widget tree required for MaterialApp theming. +Widget _buildPicker({ + LatLng? initialPosition, + NominatimService? nominatimService, +}) { + return MaterialApp( + theme: AppTheme.light, + home: DestinationPickerScreen( + initialPosition: initialPosition, + nominatimService: nominatimService, + ), + ); +} + +/// A [NominatimService] backed by a [MockClient] that returns a fixed JSON +/// payload of one result. +NominatimService _mockNominatimService({ + List> results = const [ + { + 'display_name': 'Buckingham Palace, London', + 'lat': '51.5014', + 'lon': '-0.1419', + } + ], + int statusCode = 200, +}) { + final body = statusCode == 200 + ? jsonEncode(results.map((m) => { + 'display_name': m['display_name']!, + 'lat': m['lat']!, + 'lon': m['lon']!, + }).toList()) + : 'error'; + return NominatimService( + client: MockClient((_) async => http.Response(body, statusCode)), + ); +} + +// --------------------------------------------------------------------------- +// RouteSession unit tests +// --------------------------------------------------------------------------- + +void main() { + group('RouteSession', () { + test('defaults are applied correctly', () { + final s = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + ); + expect(s.mode, RouteMode.corridor); + expect(s.corridorMetres, 200); + expect(s.detourMinutes, 0); + expect(s.pace, RoutePace.walk); + expect(s.destinationLabel, isNull); + expect(s.computedCount, isNull); + expect(s.computedPoints, isNull); + expect(s.directDistanceM, isNull); + }); + + test('speedKmh returns 4.5 for walk', () { + final s = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + pace: RoutePace.walk, + ); + expect(s.speedKmh, 4.5); + }); + + test('speedKmh returns 8.5 for jog', () { + final s = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + pace: RoutePace.jog, + ); + expect(s.speedKmh, 8.5); + }); + + test('corridorMetres is clamped to [50, 500]', () { + final lo = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + corridorMetres: 10, + ); + expect(lo.corridorMetres, 50); + + final hi = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + corridorMetres: 9999, + ); + expect(hi.corridorMetres, 500); + }); + + test('detourMinutes is clamped to [0, 120]', () { + final lo = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + detourMinutes: -5, + ); + expect(lo.detourMinutes, 0); + + final hi = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + detourMinutes: 200, + ); + expect(hi.detourMinutes, 120); + }); + + test('fields can be mutated directly (mutable by design)', () { + final s = RouteSession( + start: const LatLng(51.5, -0.1), + destination: const LatLng(51.51, -0.11), + ); + s.computedCount = 7; + s.computedPoints = 42; + s.directDistanceM = 1200; + s.destinationLabel = 'The Pub'; + expect(s.computedCount, 7); + expect(s.computedPoints, 42); + expect(s.directDistanceM, 1200); + expect(s.destinationLabel, 'The Pub'); + }); + }); + + // --------------------------------------------------------------------------- + // DestinationPickerScreen widget tests + // --------------------------------------------------------------------------- + + group('DestinationPickerScreen', () { + // The map plugin (flutter_map) needs tile rendering support; use + // `pumpAndSettle` with a short timeout and ignore any async tile errors. + + testWidgets('shows CircularProgressIndicator while position is loading', + (tester) async { + // No initialPosition supplied → screen starts in loading state. + // We do NOT call getPosition() because the screen only calls it when + // initialPosition == null. In the test the screen is pumped once with + // pump() (not pumpAndSettle) so initState fires but the async + // _acquirePosition() hasn't completed yet, leaving the spinner visible. + // + // We use pump() rather than pumpAndSettle to avoid waiting indefinitely + // for the unresolved Future (getPosition would time out or throw on a + // test device that has no location stub). + // + // Because getPosition() will eventually throw (no permission in tests), + // we wrap in an expectation that doesn't rely on it completing. + await tester.pumpWidget(_buildPicker()); + // After the first pump the loading widget should be visible. + expect(find.byType(CircularProgressIndicator), findsOneWidget); + }); + + testWidgets( + '"Set destination" button is disabled when no pin has been dropped', + (tester) async { + // Supply a position so the screen skips the GPS call and renders the map. + await tester.pumpWidget( + _buildPicker(initialPosition: const LatLng(51.5074, -0.1278)), + ); + // Allow the widget tree to settle (tiles will time out, that's fine). + await tester.pump(const Duration(milliseconds: 100)); + + // The FilledButton labelled "Set destination" should exist but be disabled + // (onPressed is null until a pin is placed). + final button = tester.widget( + find.widgetWithText(FilledButton, 'Set destination'), + ); + expect(button.onPressed, isNull, + reason: 'Button must be disabled until the user drops a pin'); + }); + + testWidgets('shows AppBar with title "Pick a destination"', (tester) async { + await tester.pumpWidget( + _buildPicker(initialPosition: const LatLng(51.5074, -0.1278)), + ); + await tester.pump(const Duration(milliseconds: 100)); + expect(find.text('Pick a destination'), findsOneWidget); + }); + + testWidgets('shows hint text when no pin has been placed', (tester) async { + await tester.pumpWidget( + _buildPicker(initialPosition: const LatLng(51.5074, -0.1278)), + ); + await tester.pump(const Duration(milliseconds: 100)); + expect( + find.text('Tap the map to place a destination'), + findsOneWidget, + ); + }); + + testWidgets('search bar is visible with correct placeholder text', + (tester) async { + await tester.pumpWidget( + _buildPicker( + initialPosition: const LatLng(51.5074, -0.1278), + nominatimService: _mockNominatimService(), + ), + ); + await tester.pump(const Duration(milliseconds: 100)); + + // The search TextField should be present. + expect(find.byType(TextField), findsOneWidget); + // Hint text should be shown when the field is empty. + expect(find.text('Search address…'), findsOneWidget); + }); + + testWidgets( + 'typing into the search field then waiting for debounce shows results', + (tester) async { + await tester.pumpWidget( + _buildPicker( + initialPosition: const LatLng(51.5074, -0.1278), + nominatimService: _mockNominatimService( + results: [ + { + 'display_name': 'Buckingham Palace, London', + 'lat': '51.5014', + 'lon': '-0.1419', + } + ], + ), + ), + ); + await tester.pump(const Duration(milliseconds: 100)); + + // Type into the search field. + await tester.enterText(find.byType(TextField), 'Buckingham'); + // Wait for the 500 ms debounce + async Nominatim response. + await tester.pump(const Duration(milliseconds: 600)); + await tester.pump(const Duration(milliseconds: 100)); + + // The result tile should appear. + expect(find.text('Buckingham Palace, London'), findsOneWidget); + }); + + testWidgets('tapping a result tile sets the destination label', + (tester) async { + await tester.pumpWidget( + _buildPicker( + initialPosition: const LatLng(51.5074, -0.1278), + nominatimService: _mockNominatimService( + results: [ + { + 'display_name': 'Buckingham Palace, London', + 'lat': '51.5014', + 'lon': '-0.1419', + } + ], + ), + ), + ); + await tester.pump(const Duration(milliseconds: 100)); + + // Type and wait for debounce + result. + await tester.enterText(find.byType(TextField), 'Buckingham'); + await tester.pump(const Duration(milliseconds: 600)); + await tester.pump(const Duration(milliseconds: 100)); + + // Tap the result tile. + await tester.tap(find.text('Buckingham Palace, London')); + await tester.pump(); + + // After tapping: + // 1. The result list should collapse (text no longer in a ListTile). + // 2. The destination label should appear in the bottom panel. + // The search field should be cleared. + final textField = tester.widget(find.byType(TextField)); + expect(textField.controller?.text ?? '', isEmpty); + + // The label should show in the bottom card. + expect( + find.text('Buckingham Palace, London'), + findsOneWidget, + reason: 'Destination label should appear in the bottom info card', + ); + }); + + testWidgets( + 'tapping a result enables the Set destination button', + (tester) async { + await tester.pumpWidget( + _buildPicker( + initialPosition: const LatLng(51.5074, -0.1278), + nominatimService: _mockNominatimService(), + ), + ); + await tester.pump(const Duration(milliseconds: 100)); + + // Confirm the button is initially disabled. + var button = tester.widget( + find.widgetWithText(FilledButton, 'Set destination'), + ); + expect(button.onPressed, isNull); + + // Search and tap a result. + await tester.enterText(find.byType(TextField), 'Buckingham'); + await tester.pump(const Duration(milliseconds: 600)); + await tester.pump(const Duration(milliseconds: 100)); + await tester.tap(find.text('Buckingham Palace, London')); + await tester.pump(); + + // Button should now be enabled. + button = tester.widget( + find.widgetWithText(FilledButton, 'Set destination'), + ); + expect(button.onPressed, isNotNull, + reason: 'Button should be enabled after a result is tapped'); + }); + }); +} diff --git a/test/route_live_screen_test.dart b/test/route_live_screen_test.dart new file mode 100644 index 0000000..5a6d8f8 --- /dev/null +++ b/test/route_live_screen_test.dart @@ -0,0 +1,658 @@ +// Tests for LiveRouteScreen (T8 + T11). +// +// Notes on scope: +// - The GPS position stream and nearbyPostboxes callable are injected so no +// real Firebase initialisation or platform channels are needed. +// - ClaimQuizSheet tests (T11) inject nearbyCallableForSheet and +// startScoringCallableForSheet so the sheet never touches real Firebase. +// - FlutterCompass is not exercised (platform sensor channel); deviceHeading +// defaults to null in all tests, which is a valid code path. + +import 'dart:async'; + +import 'package:cloud_functions/cloud_functions.dart'; +import 'package:firebase_core/firebase_core.dart'; +import 'package:firebase_core_platform_interface/test.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_compass/flutter_compass.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:geolocator/geolocator.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/fuzzy_compass.dart'; +import 'package:postbox_game/james_controller.dart'; +import 'package:postbox_game/route/live_route_screen.dart'; +import 'package:postbox_game/route/route_compass_view.dart'; +import 'package:postbox_game/route/route_completion_screen.dart'; +import 'package:postbox_game/route/route_session.dart'; +import 'package:postbox_game/theme.dart'; +import 'package:postbox_game/widgets/claim_quiz_sheet.dart'; +import 'package:shared_preferences/shared_preferences.dart'; + +// --------------------------------------------------------------------------- +// Fake HttpsCallableResult +// --------------------------------------------------------------------------- + +class _FakeResult implements HttpsCallableResult { + _FakeResult(this.data); + @override + final T data; +} + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +/// Constructs a [Position] at the given coordinates with safe dummy values for +/// all required fields. +Position _pos(double lat, double lng) => Position( + latitude: lat, + longitude: lng, + timestamp: DateTime.now(), + accuracy: 5, + altitude: 0, + altitudeAccuracy: 0, + heading: 0, + headingAccuracy: 0, + speed: 0, + speedAccuracy: 0, + ); + +/// A [NearbyCallableFn] that returns a compass-only response (no claimable +/// postboxes within 30 m). +Future> _nearbyCompassOnly( + Map _) async { + return _FakeResult({ + 'compass': {'N': 3, 'NE': 1}, + 'claimedCompass': {'S': 2}, + 'postboxes': {}, + 'counts': {'total': 4, 'claimedToday': 2}, + 'points': {'min': 2, 'max': 7}, + }); +} + +/// A [NearbyCallableFn] that returns a postbox within 30 m that is unclaimed. +/// Used by the claim-sheet trigger tests (T11). +Future> _nearbyClaimableBox( + Map _) async { + return _FakeResult({ + 'compass': {'N': 1}, + 'claimedCompass': {}, + 'postboxes': { + 'pb_test': { + 'distance': 15.0, + 'claimedToday': false, + 'monarch': 'EVIIR', + }, + }, + 'counts': {'total': 1, 'claimedToday': 0}, + 'points': {'min': 9, 'max': 9}, + }); +} + +/// A stub for [NearbyPostboxesCallableFn] injected into [ClaimQuizSheet]. +/// Returns one unclaimed postbox so the sheet reaches the `results` stage. +Future> _sheetNearbyStub( + Map _) async { + return _FakeResult({ + 'counts': {'total': 1, 'claimedToday': 0}, + 'points': {'min': 9, 'max': 9}, + 'postboxes': { + 'pb_test': { + 'distance': 15.0, + 'claimedToday': false, + 'monarch': 'EVIIR', + }, + }, + 'compass': {'N': 1}, + 'claimedCompass': {}, + }); +} + +/// Default [RouteSession] for tests. +RouteSession _session({ + LatLng? destination, +}) => + RouteSession( + start: const LatLng(51.5074, -0.1278), + destination: destination ?? const LatLng(51.5200, -0.1100), + destinationLabel: 'Test Destination', + ); + +/// Wraps [LiveRouteScreen] in the minimal tree needed for Material. +/// +/// No [JamesControllerScope] is included by default — all `?.show()` calls in +/// [LiveRouteScreen] are null-safe so this is a valid configuration. Tests +/// that need to verify James messages should build their own scope manually +/// and drain the idle timer with [drainJamesTimer] before the test ends. +/// +/// Always passes an empty compass stream so FlutterCompass platform channel +/// is never activated (it throws [MissingPluginException] in headless tests). +Widget _buildScreen({ + required RouteSession session, + required StreamController posCtrl, + NearbyCallableFn nearbyCallable = _nearbyCompassOnly, + NearbyPostboxesCallableFn? nearbyCallableForSheet, + StartScoringCallableFn? startScoringCallableForSheet, + List observers = const [], +}) { + return MaterialApp( + theme: AppTheme.light, + navigatorObservers: observers, + home: LiveRouteScreen( + session: session, + positionStreamOverride: posCtrl.stream, + nearbyCallable: nearbyCallable, + nearbyCallableForSheet: nearbyCallableForSheet, + startScoringCallableForSheet: startScoringCallableForSheet, + // Pass an empty stream to bypass the platform compass channel in tests. + compassStreamOverride: const Stream.empty(), + ), + ); +} + +/// Pumps fake time past the maximum JamesController idle timer (5 min + buffer) +/// so no pending timer remains at test teardown. +Future drainJamesTimer(WidgetTester tester) async { + await tester.pump(const Duration(minutes: 6)); +} + + +// --------------------------------------------------------------------------- +// Tests +// --------------------------------------------------------------------------- + +void main() { + // Initialise Firebase mocks once for the whole suite. This lets widgets that + // reference FirebaseAuth / Firestore (e.g. HomeWidgetService inside + // ClaimQuizSheet) construct without throwing MissingPluginException. + setUpAll(() async { + TestWidgetsFlutterBinding.ensureInitialized(); + setupFirebaseCoreMocks(); + await Firebase.initializeApp(); + // Provide a no-op SharedPreferences store so ClaimQuizSheet can call + // AppPreferences.getDistanceUnit() without a platform-channel error. + SharedPreferences.setMockInitialValues({}); + }); + + group('LiveRouteScreen', () { + // ── AppBar and scaffold ───────────────────────────────────────────────── + + testWidgets('renders AppBar with title "Route"', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen(session: _session(), posCtrl: posCtrl)); + await tester.pump(); + + expect(find.text('Route'), findsOneWidget); + }); + + testWidgets('shows "Where now, postie?" hint button', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen(session: _session(), posCtrl: posCtrl)); + await tester.pump(); + + expect(find.text('Where now, postie?'), findsOneWidget); + }); + + testWidgets('shows destination label from session', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen(session: _session(), posCtrl: posCtrl)); + await tester.pump(); + + expect(find.text('Test Destination'), findsOneWidget); + }); + + // ── Distance display ──────────────────────────────────────────────────── + + testWidgets( + 'destination distance updates and renders "km" label when > 1 km away', + (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + // Destination is at 51.52, -0.11 — roughly 1.7 km from 51.5074, -0.1278. + await tester.pumpWidget(_buildScreen( + session: _session(), + posCtrl: posCtrl, + nearbyCallable: _nearbyCompassOnly, + )); + await tester.pump(); + + // Emit a position far from the destination (same as start). + posCtrl.add(_pos(51.5074, -0.1278)); + // Let the runAsync propagation + scan complete. + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 50)); + }); + await tester.pump(); + + // Distance should be rendered as a "km" value (> 1 000 m). + expect(find.textContaining('km'), findsWidgets); + }); + + testWidgets('shows "m" label when within 1 km of destination', + (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + // Use a destination ~450 m north — within 1 km but far enough to avoid + // arrival detection (>25 m). + final farEnough = RouteSession( + start: const LatLng(51.5200, -0.1100), + destination: const LatLng(51.5240, -0.1100), + destinationLabel: 'Not quite there', + ); + + await tester.pumpWidget(_buildScreen( + session: farEnough, + posCtrl: posCtrl, + nearbyCallable: _nearbyCompassOnly, + )); + await tester.pump(); + + posCtrl.add(_pos(51.5200, -0.1100)); // ~450 m from destination + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 50)); + }); + await tester.pump(); + + expect(find.textContaining('m'), findsWidgets); + }); + + // ── Bearing label ─────────────────────────────────────────────────────── + + testWidgets('bearing chip is present after position emit', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen( + session: _session(), + posCtrl: posCtrl, + nearbyCallable: _nearbyCompassOnly, + )); + await tester.pump(); + + posCtrl.add(_pos(51.5074, -0.1278)); + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 50)); + }); + await tester.pump(); + + // A bearing Chip (NE / E / SE etc.) should be visible. + expect(find.byType(Chip), findsWidgets); + }); + + // ── RouteCompassView ──────────────────────────────────────────────────── + + testWidgets('RouteCompassView is present in the widget tree', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen(session: _session(), posCtrl: posCtrl)); + await tester.pump(); + + expect(find.byType(RouteCompassView), findsOneWidget); + }); + + // ── Hint button wires to JamesController ────────────────────────────── + + testWidgets('tapping hint button calls JamesController.show()', + (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + // Build a JamesController and wrap the screen in a scope. + // Drain the idle timer at the end so fake_async sees no pending timers. + final jamesController = JamesController(); + String? lastMessage; + jamesController.addListener(() { + lastMessage = jamesController.pendingMessage; + }); + + await tester.pumpWidget( + JamesControllerScope( + controller: jamesController, + child: MaterialApp( + theme: AppTheme.light, + home: LiveRouteScreen( + session: _session(), + positionStreamOverride: posCtrl.stream, + nearbyCallable: _nearbyCompassOnly, + compassStreamOverride: const Stream.empty(), + ), + ), + ), + ); + await tester.pump(); + + await tester.tap(find.text('Where now, postie?')); + await tester.pump(); + + // A James hint message should have been set (it's a conversational phrase + // from JamesMessages.routeHint — no requirement to contain the literal + // direction word). + expect(lastMessage, isNotNull); + expect(lastMessage, isNotEmpty); + + // Advance fake time past the idle timer (max 5 min) to drain it. + jamesController.dispose(); // cancels the timer + await drainJamesTimer(tester); + }); + + // ── Arrival detection ─────────────────────────────────────────────────── + + testWidgets( + 'position within 25 m of destination navigates to RouteCompletionScreen', + (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + // Spy on route changes. + final observer = _RouteObserver(); + + // Put destination at (51.5100, -0.1200) and emit a position right on top + // of it so distance < 25 m. + const destLat = 51.5100; + const destLng = -0.1200; + final sess = RouteSession( + start: const LatLng(51.5074, -0.1278), + destination: const LatLng(destLat, destLng), + destinationLabel: 'Arrival Test', + ); + + await tester.pumpWidget(_buildScreen( + session: sess, + posCtrl: posCtrl, + nearbyCallable: _nearbyCompassOnly, + observers: [observer], + )); + await tester.pump(); + + // Emit position at (almost) the destination — within 25 m. + posCtrl.add(_pos(destLat + 0.0001, destLng)); // ~11 m north of dest + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 100)); + }); + // RouteCompletionScreen contains a ConfettiWidget that never "settles", + // so use bounded pumps rather than pumpAndSettle to avoid timing out. + await tester.pump(); + await tester.pump(const Duration(milliseconds: 500)); + + // RouteCompletionScreen should be top of stack. + expect(find.byType(RouteCompletionScreen), findsOneWidget); + }); + + // ── Claimable postbox opens ClaimQuizSheet ───────────────────────────── + + testWidgets( + 'position with eligible postbox at 15 m opens ClaimQuizSheet', + (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + // _nearbyClaimableBox returns pb_test at distance 15 m, unclaimed. + // _sheetNearbyStub is forwarded into ClaimQuizSheet so it never touches + // real Firebase. + await tester.pumpWidget(_buildScreen( + session: _session(), + posCtrl: posCtrl, + nearbyCallable: _nearbyClaimableBox, + nearbyCallableForSheet: _sheetNearbyStub, + // startScoringCallable is not invoked until the user taps "Claim", + // so leaving it null (unreachable in this test) is fine. + )); + await tester.pump(); + + // Emit a position far from the destination (> 25 m) so arrival is not + // triggered. The scan fires immediately (first call bypasses time/distance + // throttle). + posCtrl.add(_pos(51.5074, -0.1278)); + // Let the async scan complete. + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 100)); + }); + // ClaimQuizSheet contains an infinitely repeating pulse animation, so + // pumpAndSettle will always time out. Use bounded pumps instead. + await tester.pump(); // process setState from _onPosition + await tester.pump(const Duration(milliseconds: 100)); // open sheet + await tester.pump(const Duration(milliseconds: 300)); // sheet animation + + expect(find.byType(ClaimQuizSheet), findsOneWidget); + }); + + // ── Dedupe: second scan with same eligible postbox ───────────────────── + + testWidgets( + 'second scan within 60 s for same postbox does not reopen sheet', + (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen( + session: _session(), + posCtrl: posCtrl, + nearbyCallable: _nearbyClaimableBox, + nearbyCallableForSheet: _sheetNearbyStub, + )); + await tester.pump(); + + // First position → first scan → sheet opens. + posCtrl.add(_pos(51.5074, -0.1278)); + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 100)); + }); + await tester.pump(); + await tester.pump(const Duration(milliseconds: 100)); + await tester.pump(const Duration(milliseconds: 300)); + + expect(find.byType(ClaimQuizSheet), findsOneWidget); + + // Wait for the sheet's own nearbyPostboxes scan (_runSearch) to complete + // so the sheet transitions from 'searching' to 'results'. Multiple pump + // cycles are needed: + // 1. pump() triggers the addPostFrameCallback in ClaimQuizSheet.initState + // which calls _runSearch() + // 2. runAsync lets the stub's Future resolve + // 3. pump() applies the resulting setState + for (var i = 0; i < 3; i++) { + await tester.pump(const Duration(milliseconds: 50)); + } + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 200)); + }); + for (var i = 0; i < 3; i++) { + await tester.pump(const Duration(milliseconds: 50)); + } + + // Dismiss the sheet by tapping "Rescan location" (the cancel/back path + // in the results stage). This fires onCompleted which calls + // Navigator.of(context).pop(result), causing the modal's .then() + // callback to record the dismissal in _recentDismissals. + await tester.tap(find.text('Rescan location')); + // Need multiple pumps: the pop queues a route transition animation. + await tester.pump(); + await tester.pump(const Duration(milliseconds: 200)); + await tester.pump(const Duration(milliseconds: 300)); + + // Sheet is gone — the dismissal was recorded in _recentDismissals. + expect(find.byType(ClaimQuizSheet), findsNothing); + + // Second position emit (same coordinates — still within the 60 s + // cooldown). The time/distance throttle is also still active, so + // advance fake time by _kScanTimeTriggerS (12 s) to allow a new scan. + await tester.pump(const Duration(seconds: 13)); + posCtrl.add(_pos(51.5074, -0.1278)); + await tester.runAsync(() async { + await Future.delayed(const Duration(milliseconds: 100)); + }); + await tester.pump(); + await tester.pump(const Duration(milliseconds: 100)); + await tester.pump(const Duration(milliseconds: 300)); + + // The dedupe window (60 s) has NOT elapsed — no second sheet. + expect(find.byType(ClaimQuizSheet), findsNothing); + }); + + // ── Abandon dialog ────────────────────────────────────────────────────── + + testWidgets('tapping close icon shows abandon dialog', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen(session: _session(), posCtrl: posCtrl)); + await tester.pump(); + + await tester.tap(find.byIcon(Icons.close)); + await tester.pumpAndSettle(); + + expect(find.text('End route now?'), findsOneWidget); + expect(find.text('Points already claimed will keep.'), findsOneWidget); + + // Tap "Keep going" to dismiss. + await tester.tap(find.text('Keep going')); + await tester.pumpAndSettle(); + + expect(find.text('End route now?'), findsNothing); + }); + + // ── Status row ────────────────────────────────────────────────────────── + + testWidgets('status row shows 0 pts and 0 claimed on start', (tester) async { + final posCtrl = StreamController.broadcast(); + addTearDown(posCtrl.close); + + await tester.pumpWidget(_buildScreen(session: _session(), posCtrl: posCtrl)); + await tester.pump(); + + expect(find.textContaining('0 pts'), findsOneWidget); + expect(find.textContaining('0 claimed'), findsOneWidget); + }); + }); + + // -------------------------------------------------------------------------- + // RouteCompassView unit smoke tests + // -------------------------------------------------------------------------- + + group('RouteCompassView', () { + testWidgets('renders FuzzyCompass widget', (tester) async { + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + home: Scaffold( + body: RouteCompassView( + compassCounts: const {'N': 2, 'NE': 1}, + claimedCompassCounts: const {'S': 1}, + deviceHeadingDegrees: null, + destinationBearingDegrees: 45.0, + ), + ), + ), + ); + expect(find.byType(FuzzyCompass), findsOneWidget); + }); + + testWidgets('renders destination arrow icon', (tester) async { + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + home: Scaffold( + body: RouteCompassView( + compassCounts: const {'N': 2}, + claimedCompassCounts: const {}, + deviceHeadingDegrees: 90.0, + destinationBearingDegrees: 180.0, + ), + ), + ), + ); + expect(find.byIcon(Icons.navigation), findsOneWidget); + }); + + testWidgets('renders without device heading (null)', (tester) async { + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + home: Scaffold( + body: RouteCompassView( + compassCounts: const {}, + claimedCompassCounts: const {}, + deviceHeadingDegrees: null, + destinationBearingDegrees: 270.0, + ), + ), + ), + ); + expect(find.byType(RouteCompassView), findsOneWidget); + expect(find.byIcon(Icons.navigation), findsOneWidget); + }); + }); + + // -------------------------------------------------------------------------- + // RouteCompletionScreen stub tests + // -------------------------------------------------------------------------- + + group('RouteCompletionScreen', () { + testWidgets('renders title and summary values', (tester) async { + final sess = RouteSession( + start: const LatLng(51.5074, -0.1278), + destination: const LatLng(51.52, -0.11), + ); + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + home: RouteCompletionScreen( + session: sess, + pointsEarned: 14, + claimedCount: 3, + walkSeconds: 1200, + ), + ), + ); + // The new RouteCompletionScreen has a ConfettiWidget that never settles, + // so pump() is used instead of pumpAndSettle(). + await tester.pump(); + expect(find.text('Route complete'), findsOneWidget); + // 14 points, 3 postboxes, 1200 s = 20 min 00 sec. + expect(find.textContaining('14 points earned'), findsOneWidget); + expect(find.textContaining('3 postboxes claimed'), findsOneWidget); + expect(find.textContaining('20 min 00 sec'), findsOneWidget); + }); + + testWidgets('Done button is present', (tester) async { + final sess = RouteSession( + start: const LatLng(51.5074, -0.1278), + destination: const LatLng(51.52, -0.11), + ); + await tester.pumpWidget( + MaterialApp( + theme: AppTheme.light, + home: RouteCompletionScreen(session: sess), + ), + ); + expect(find.text('Done'), findsOneWidget); + }); + }); +} + +// --------------------------------------------------------------------------- +// NavigatorObserver spy +// --------------------------------------------------------------------------- + +class _RouteObserver extends NavigatorObserver { + final List> pushed = []; + + @override + void didPush(Route route, Route? previousRoute) { + pushed.add(route); + } + + @override + void didReplace({Route? newRoute, Route? oldRoute}) { + if (newRoute != null) pushed.add(newRoute); + } +} diff --git a/test/route_preview_screen_test.dart b/test/route_preview_screen_test.dart new file mode 100644 index 0000000..2ecf956 --- /dev/null +++ b/test/route_preview_screen_test.dart @@ -0,0 +1,340 @@ +// Tests for RoutePreviewScreen. +// +// The routePostboxes callable is injected via the optional [callableFn] +// constructor parameter (a simple async function), so no real Firebase +// initialisation is needed here. + +import 'dart:async'; + +import 'package:cloud_functions/cloud_functions.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/route/route_preview_screen.dart'; +import 'package:postbox_game/route/route_session.dart'; +import 'package:postbox_game/theme.dart'; + +// --------------------------------------------------------------------------- +// Fake HttpsCallableResult +// --------------------------------------------------------------------------- + +class _FakeCallableResult implements HttpsCallableResult { + _FakeCallableResult(this.data); + @override + final T data; +} + +// --------------------------------------------------------------------------- +// Stub callable function +// --------------------------------------------------------------------------- + +class _CallCounter { + int count = 0; +} + +/// Returns a [RouteCallableFn] that yields [result] after an optional [delay], +/// incrementing [counter] on each invocation. +({RouteCallableFn fn, _CallCounter counter}) _makeStub({ + Map? result, + FirebaseFunctionsException? error, + Duration delay = Duration.zero, +}) { + final counter = _CallCounter(); + Future> fn(Map _) async { + counter.count++; + if (delay > Duration.zero) await Future.delayed(delay); + if (error != null) throw error; + return _FakeCallableResult(result ?? _successPayload()); + } + + return (fn: fn, counter: counter); +} + +// --------------------------------------------------------------------------- +// Default successful payload +// --------------------------------------------------------------------------- + +Map _successPayload({ + int count = 5, + int points = 28, + num directDistanceM = 2700, + num budgetDistanceM = 2700, + List warnings = const [], +}) => + { + 'count': count, + 'points': points, + 'directDistanceM': directDistanceM, + 'budgetDistanceM': budgetDistanceM, + 'warnings': warnings, + }; + +// --------------------------------------------------------------------------- +// Build helper +// --------------------------------------------------------------------------- + +Widget _buildPreview({ + required RouteSession session, + required RouteCallableFn callableFn, +}) { + return MaterialApp( + theme: AppTheme.light, + home: RoutePreviewScreen( + session: session, + callableFn: callableFn, + ), + ); +} + +RouteSession _defaultSession() => RouteSession( + start: const LatLng(51.5074, -0.1278), + destination: const LatLng(51.52, -0.11), + destinationLabel: 'Test Destination', + ); + +/// Pumps through the initial fetch cycle when the callable resolves instantly. +/// +/// Uses [WidgetTester.runAsync] so that the real async machinery (microtask +/// scheduling from an `async` function returning a resolved future) completes +/// before we pump the frame that renders the result. +Future _pumpAndWait(WidgetTester tester) async { + await tester.pump(); // build + initState schedules Timer(Duration.zero) + await tester.pump(Duration.zero); // fire the zero-duration timer; _fetch starts + // Let the async _fetch() complete: it awaits a Future that resolves + // immediately, but 'await' still suspends to the next microtask. + // runAsync drains real async work without the fake-async limitations. + await tester.runAsync(() async { + await Future.delayed(Duration.zero); + }); + await tester.pump(); // rebuild with result state +} + +// --------------------------------------------------------------------------- +// Tests +// --------------------------------------------------------------------------- + +void main() { + group('RoutePreviewScreen', () { + testWidgets('shows AppBar with title "Route preview"', (tester) async { + final (:fn, :counter) = _makeStub(result: _successPayload()); + await tester.pumpWidget(_buildPreview(session: _defaultSession(), callableFn: fn)); + await tester.pump(); + expect(find.text('Route preview'), findsOneWidget); + }); + + testWidgets( + 'shows postbox count and points after debounce settles with success response', + (tester) async { + final (:fn, :counter) = + _makeStub(result: _successPayload(count: 5, points: 28)); + await tester.pumpWidget( + _buildPreview(session: _defaultSession(), callableFn: fn)); + await _pumpAndWait(tester); + + // "5 unclaimed postboxes en-route" and "28 points" are rendered inside + // RichText widgets, so we must pass findRichText: true. + expect(find.textContaining('5', findRichText: true), findsWidgets); + expect(find.textContaining('28', findRichText: true), findsWidgets); + }); + + testWidgets( + 'changing pace from Walk to Jog updates the time estimate label', + (tester) async { + final (:fn, :counter) = _makeStub(result: _successPayload()); + final session = _defaultSession(); + + await tester.pumpWidget(_buildPreview(session: session, callableFn: fn)); + await _pumpAndWait(tester); + + // After a successful response, directDistanceM is set. + // The time estimate should say "walking". + expect(find.textContaining('walking'), findsOneWidget); + + // Tap the Jog segment. + await tester.tap(find.text('Jog')); + await tester.pump(); + + // Time estimate label should now say "jogging". + expect(find.textContaining('jogging'), findsOneWidget); + }); + + testWidgets( + 'changing the corridor slider re-triggers the callable', + (tester) async { + final (:fn, :counter) = _makeStub(result: _successPayload()); + final session = _defaultSession(); + + await tester.pumpWidget(_buildPreview(session: session, callableFn: fn)); + await _pumpAndWait(tester); + + final callsAfterInit = counter.count; + + // Drag the first Slider (corridor slider). + final sliderFinder = find.byType(Slider).first; + await tester.drag(sliderFinder, const Offset(50, 0)); + // Wait for the 400 ms debounce to fire then the async call to complete. + await tester.pump(const Duration(milliseconds: 450)); + await tester.pumpAndSettle(); + + expect(counter.count, greaterThan(callsAfterInit)); + }); + + testWidgets( + 'slider change flips Start route to disabled before the debounce fires', + (tester) async { + // First call resolves immediately so the screen reaches the result + // state with the button enabled; the second is held by a completer so + // we can inspect the in-flight (post-slider, pre-fetch) state. + var callIndex = 0; + final secondCallCompleter = Completer>(); + Future> fn(Map _) { + callIndex++; + if (callIndex == 1) { + return Future.value(_FakeCallableResult(_successPayload())); + } + return secondCallCompleter.future; + } + + await tester + .pumpWidget(_buildPreview(session: _defaultSession(), callableFn: fn)); + await _pumpAndWait(tester); + + // After the first response the button is enabled. + expect( + tester + .widget( + find.widgetWithText(FilledButton, 'Start route')) + .onPressed, + isNotNull, + ); + + // Drag the corridor slider. The debounce timer hasn't fired yet, but the + // headline state must already have flipped to loading so the user can't + // start a route whose headline is showing the previous params' figures. + await tester.drag(find.byType(Slider).first, const Offset(50, 0)); + await tester.pump(); + + expect( + tester + .widget( + find.widgetWithText(FilledButton, 'Start route')) + .onPressed, + isNull, + reason: 'Start route must be disabled while the new result is loading', + ); + + // Complete the held call so pending-timer assertions pass. + await tester.pump(const Duration(milliseconds: 450)); + secondCallCompleter + .complete(_FakeCallableResult(_successPayload())); + await tester.pumpAndSettle(); + }); + + testWidgets('shows error state when callable throws', (tester) async { + final (:fn, :counter) = _makeStub( + error: FirebaseFunctionsException( + code: 'internal', + message: 'Server error', + details: null, + ), + ); + + await tester.pumpWidget( + _buildPreview(session: _defaultSession(), callableFn: fn)); + await _pumpAndWait(tester); + + // Warning icon and Retry button should appear. + expect(find.byIcon(Icons.warning_amber_rounded), findsOneWidget); + expect(find.text('Retry'), findsOneWidget); + }); + + testWidgets( + '"Start route" button is disabled until first successful response', + (tester) async { + // Use a completer so we control exactly when the callable resolves. + final completer = Completer>(); + Future> fn(Map _) => + completer.future; + + await tester.pumpWidget( + _buildPreview(session: _defaultSession(), callableFn: fn)); + await tester.pump(); // build + start timer + await tester.pump(); // timer fires, _fetch starts but hasn't resolved + + // Before the response: button should be disabled. + final button = tester.widget( + find.widgetWithText(FilledButton, 'Start route'), + ); + expect(button.onPressed, isNull, + reason: 'Button must be disabled before any response arrives'); + + // Complete to avoid pending timers warning. + completer.complete( + _FakeCallableResult(_successPayload())); + }); + + testWidgets( + '"Start route" button is enabled after first successful response', + (tester) async { + final (:fn, :counter) = _makeStub(result: _successPayload()); + + await tester.pumpWidget( + _buildPreview(session: _defaultSession(), callableFn: fn)); + await _pumpAndWait(tester); + + final button = tester.widget( + find.widgetWithText(FilledButton, 'Start route'), + ); + expect(button.onPressed, isNotNull, + reason: 'Button should be enabled after a successful response'); + }); + + testWidgets('shows destination label in the destination card', + (tester) async { + final (:fn, :counter) = _makeStub(result: _successPayload()); + final session = RouteSession( + start: const LatLng(51.5074, -0.1278), + destination: const LatLng(51.52, -0.11), + destinationLabel: 'Buckingham Palace', + ); + + await tester.pumpWidget(_buildPreview(session: session, callableFn: fn)); + await tester.pump(); + + expect(find.text('Buckingham Palace'), findsOneWidget); + }); + + testWidgets('shows softer message when count == 0', (tester) async { + final (:fn, :counter) = + _makeStub(result: _successPayload(count: 0, points: 0)); + + await tester.pumpWidget( + _buildPreview(session: _defaultSession(), callableFn: fn)); + await _pumpAndWait(tester); + + expect(find.textContaining('Nothing along this route'), findsOneWidget); + }); + + testWidgets('shows loading indicator while callable is in-flight', + (tester) async { + // Use a completer so we control exactly when the callable resolves. + final completer = Completer>(); + Future> fn(Map _) => + completer.future; + + await tester.pumpWidget( + _buildPreview(session: _defaultSession(), callableFn: fn)); + // Advance past the Timer(Duration.zero) so _fetch fires and setState(loading) + // is called, then pump one more frame so the rebuild happens. + await tester.pump(Duration.zero); // fires the zero timer; _fetch calls setState(loading) + await tester.pump(); // rebuilds with loading state + + // Loading state should be visible. + expect(find.byType(CircularProgressIndicator), findsOneWidget); + expect(find.text('Calculating...'), findsOneWidget); + + // Complete to avoid pending timer warning. + completer.complete(_FakeCallableResult(_successPayload())); + }); + }); +} diff --git a/test/widget_test.dart b/test/widget_test.dart index e8ecf0b..5e0dc25 100644 --- a/test/widget_test.dart +++ b/test/widget_test.dart @@ -20,6 +20,9 @@ import 'package:postbox_game/streak_service.dart'; import 'package:postbox_game/theme.dart'; import 'package:postbox_game/user_profile_page.dart'; import 'package:postbox_game/user_repository.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:postbox_game/nearby.dart'; +import 'package:postbox_game/route/destination_picker_screen.dart'; import 'package:postbox_game/validators.dart'; // --------------------------------------------------------------------------- @@ -818,4 +821,171 @@ void main() { expect(find.text('Added as a friend'), findsOneWidget); }); }); + + // --------------------------------------------------------------------------- + // JamesMessages route-mode unit tests + // --------------------------------------------------------------------------- + + group('JamesMessages route mode', () { + test('routeStart resolves to a non-empty string', () { + expect(JamesMessages.routeStart.resolve(), isNotEmpty); + }); + + test('routeStart pool has at least 4 variants', () { + final seen = {}; + for (var i = 0; i < 50; i++) { + seen.add(JamesMessages.routeStart.resolve()); + } + expect(seen.length, greaterThanOrEqualTo(4)); + }); + + test('routePostboxNearby resolves to a non-empty string', () { + expect(JamesMessages.routePostboxNearby.resolve(), isNotEmpty); + }); + + test('routePostboxNearby pool has at least 4 variants', () { + final seen = {}; + for (var i = 0; i < 50; i++) { + seen.add(JamesMessages.routePostboxNearby.resolve()); + } + expect(seen.length, greaterThanOrEqualTo(4)); + }); + + test('routeHint("ahead") returns a non-empty string', () { + expect(JamesMessages.routeHint('ahead'), isNotEmpty); + }); + + test('routeHint("left") returns a non-empty string', () { + expect(JamesMessages.routeHint('left'), isNotEmpty); + }); + + test('routeHint("right") returns a non-empty string', () { + expect(JamesMessages.routeHint('right'), isNotEmpty); + }); + + test('routeHint("behind") returns a non-empty string', () { + expect(JamesMessages.routeHint('behind'), isNotEmpty); + }); + + test('routeHint with unknown direction falls back to ahead pool', () { + // Should not throw; returns a non-empty string from the "ahead" pool. + expect(JamesMessages.routeHint('diagonal'), isNotEmpty); + }); + + test('routeHint produces distinct lines for different directions', () { + // Sample each direction many times and verify the pools are not identical. + final aheadSamples = {for (var i = 0; i < 30; i++) JamesMessages.routeHint('ahead')}; + final leftSamples = {for (var i = 0; i < 30; i++) JamesMessages.routeHint('left')}; + // The union of both sample sets should be larger than either alone (pools differ). + expect(aheadSamples.union(leftSamples).length, + greaterThan(aheadSamples.length)); + }); + + test('routeArrival resolves to a non-empty string', () { + expect(JamesMessages.routeArrival.resolve(), isNotEmpty); + }); + + test('routeArrival pool has at least 4 variants', () { + final seen = {}; + for (var i = 0; i < 50; i++) { + seen.add(JamesMessages.routeArrival.resolve()); + } + expect(seen.length, greaterThanOrEqualTo(4)); + }); + + test('no route-mode message contains an em-dash', () { + // House style: em-dashes are banned in James dialogue. + const emDash = '—'; + for (var i = 0; i < 20; i++) { + expect(JamesMessages.routeStart.resolve(), isNot(contains(emDash))); + expect(JamesMessages.routePostboxNearby.resolve(), isNot(contains(emDash))); + expect(JamesMessages.routeArrival.resolve(), isNot(contains(emDash))); + for (final dir in ['ahead', 'left', 'right', 'behind']) { + expect(JamesMessages.routeHint(dir), isNot(contains(emDash))); + } + } + }); + }); + + // --------------------------------------------------------------------------- + // /route named-route smoke test + // --------------------------------------------------------------------------- + + group('/route named route', () { + testWidgets('resolves to DestinationPickerScreen when authenticated', + (tester) async { + // Build a minimal MaterialApp with the /route entry (same pattern as + // main.dart). Inject initialPosition so the screen does not attempt a + // real GPS fix (which would hang in a test environment). + const testPosition = LatLng(51.5074, -0.1278); + await tester.pumpWidget( + MaterialApp( + routes: { + '/route': (_) => const DestinationPickerScreen( + initialPosition: testPosition, + ), + }, + home: Builder( + builder: (ctx) => TextButton( + onPressed: () => Navigator.pushNamed(ctx, '/route'), + child: const Text('go'), + ), + ), + ), + ); + await tester.tap(find.text('go')); + // pump once to process the push, then a second time for the route + // animation frames. + await tester.pump(); + await tester.pump(const Duration(seconds: 1)); + expect(find.byType(DestinationPickerScreen), findsOneWidget); + }); + }); + + // --------------------------------------------------------------------------- + // Nearby "Walk to a destination" button test + // --------------------------------------------------------------------------- + + group('Nearby route-mode entry button', () { + testWidgets('tapping "Walk to a destination" pushes /route', + (tester) async { + // Use a NavigatorObserver spy to record pushNamed calls. + final pushedRoutes = []; + + await tester.pumpWidget( + MaterialApp( + navigatorObservers: [ + _RouteNameObserver(pushedRoutes), + ], + // Register /route so Navigator.pushNamed does not throw. + routes: { + '/route': (_) => const Scaffold(body: Text('route screen')), + }, + home: const Scaffold(body: Nearby()), + ), + ); + // Nearby starts in the initial stage where the button is visible. + await tester.pump(); + expect(find.text('Walk to a destination'), findsOneWidget); + await tester.tap(find.text('Walk to a destination')); + await tester.pumpAndSettle(); + expect(pushedRoutes, contains('/route')); + }); + }); +} + +// --------------------------------------------------------------------------- +// Helper: NavigatorObserver spy +// --------------------------------------------------------------------------- + +class _RouteNameObserver extends NavigatorObserver { + _RouteNameObserver(this._pushedRoutes); + + final List _pushedRoutes; + + @override + void didPush(Route route, Route? previousRoute) { + final name = route.settings.name; + if (name != null) _pushedRoutes.add(name); + } }